摘要: #!/bin/sh #Filename: repo_sync.sh count=0 ret=1 while [ $ret -ne 0 ] do #输入参数1,用作同步的线程数 #如果什么参数都不输入,默认线程为4 #usage: ./repo_sync.sh 10 if [ $1 -lt 20 ] && [ $1 -gt 0 ]; then echo "start repo t... 阅读全文
posted @ 2016-10-03 08:47 sndnvaps 阅读(856) 评论(1) 推荐(0) 编辑