shell shift 用法 2015/12/10 51357 清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>> #!/bin/sh while [ $# -gt 0 ] do echo $1 echo $# if [ ! -d $1 ] then echo "$1 not dir" fi shift done