如何在Bash中解析命令行参数?
说,我有一个用这行调用的脚本:
./myscript -vfd ./foo/bar/someFile -o /fizz/someOtherFile
或者这个:
./myscript -v -f -d -o /fizz/someOtherFile ./foo/bar/someFile
什么是分析这使得在每一种情况下(或两者的组合)的接受的方式$v
,$f
以及 $d
将全部设置为true
和$outFile
将等于/fizz/someOtherFile
?
牧羊人nacy