CU技术文章jishu.blog.chinaunix.net
CU技术文章
全部博文(152)
2012年(6)
2011年(96)
2010年(50)
owinux
likeilin
simon841
send_lin
cuiwei00
CU管理员
zhujiang
独孤毛毛
JustACla
rtl
itchase
sean229
liu_0330
xuequans
格伯纳
Bsolar
冰峰688
王楠w_n
分类: Python/Ruby
2010-10-29 16:11:27
#!/bin/bashbase_dir=""if test $# -lt 3 ; then echo "usage: $0 basedir detpth1_start_num deptth2_end_num depth2_dir_cnt" exit 1fiif test $2 -lt 0; then echo "start num can't less than 0" exit 0fiif test $2 -gt $3; then echo "end_num can't less than start num" exit 0fibase_dir="$1/"base_dir=`echo $base_dir |sed 's/\/*$//g'`for (( i = $2 ; i <= $3; i++ ));do hex=$i newpath="$base_dir/$hex" mkdir -p $newpathdone
上一篇:[linux]在virtualbox上运行moblin 2.1
下一篇:squid内存监控脚本
登录 注册