shell shift 用法 2015/12/10 17457 #!/bin/sh while [ $# -gt 0 ] do echo $1 echo $# if [ ! -d $1 ] then echo "$1 not dir" fi shift done