0
我測試getopt爲我的伯恩腳本,我發現一些非常有趣的結果。命令行參數與getopt無法正常工作
如果我做到以下幾點:
./myscript -z blah -o legal -p another_legal
正如預期的那樣,我會得到:
getopt: illegal option -- z
getopt: illegal option --
getopt: illegal option -- b
getopt: illegal option -- l
getopt: illegal option -- a
getopt: illegal option -- h
但是,如果我這樣做:
./myscript -o legal -p another_legal -z blah
getopt
不趕這個。任何想法爲什麼?
就是這樣,謝謝! –