标签:shell 参数
在使用shell传参数时。
解析参数时请不要用shift
action="$1" case "$action" in status) shift status$@ exit $? ;; ... *) help exit -1 ;; esac
因为就算有双引号,也无法再次传递。
而是应该确定的按参数追逐个传递。
status) status $2 $3 exit $? ;;
本文出自 “熊猫所罗” 博客,请务必保留此出处http://hotcache.blog.51cto.com/3404778/1683620
标签:shell 参数
原文地址:http://hotcache.blog.51cto.com/3404778/1683620