分享至
朋友圈
微信
qq空间
qq
微博
复制
#!/bin/sh while [ $# -gt 0 ] do echo $1 echo $# if [ ! -d $1 ] then echo "$1 not dir" fi shift done