美文网首页
shell 带参数选择的写法 getopts

shell 带参数选择的写法 getopts

作者: SkTj | 来源:发表于2019-03-01 09:26 被阅读4次

!/bin/bash

while getopts "a:bc" arg #选项后面的冒号表示该选项需要参数
do
case arg in a) echo "a's arg:OPTARG" #参数存在$OPTARG中
;;
b)
echo "b"
;;
c)
echo "c"
;;
?) #当有不认识的选项的时候arg为?
echo "unkonw argument"
exit 1
;;


!/bin/bash

while getopts "a:b:cdef" opt; do
case opt in a) echo "this is -a the arg is !OPTARG"
;;
b)
echo "this is -b the arg is ! OPTARG" ;; c|d|e|f) echo "this is -c the arg is !OPTARG"
;;
*)
echo "Invalid option: -$OPTARG"
;;
esac
done

相关文章

网友评论

      本文标题:shell 带参数选择的写法 getopts

      本文链接:https://www.haomeiwen.com/subject/kiyruqtx.html