getopts命令格式
getopts optstring name [arg]
- optstring为命令行所有选项组成的字符串,每个字母代表一个选项。如果字母后有冒号:,表明该选项需要选择参数。比如说,执行getopts时,匹配到了-i选项,则将-i相应的参数保存在内置变量OPTARG中。如果字母后无:,表明该选项不要指定值,仅有true/false之分。optstring起始的第一个冒号,则表示执行命令中出现optstring中没有的选项时忽略错误。
- name为变量。每执行一次getopts,会获取执行命令行中的下一个选项。当执行命令的选项与optstring匹配时,将选项放在name中。否则,name被设置为?。
- arg是选项和参数组成的列表。可选项,
代码示例
编写脚本test.sh
#!/bin/bash
while getopts ":i:o:b" i
do
case ${i} in
i) input_dir="$OPTARG";;
o) out_dir="$OPTARG";;
b) relax=true;;
esac
done
echo $input_dir
echo $out_dir
echo $relax
执行test.sh结果
~/tmp$ bash test.sh -i ./input/ -o ./output/ -a -b
./input/
./output/
true
标签:选项,shell,optstring,getopts,命令行,input,dir,name From: https://www.cnblogs.com/chaimy/p/17044513.html