30
如何在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?