私のpythonスクリプトはこれです:
def main(argv):
print argv
try:
opts, args = getopt.getopt(argv,"h",["help"])
print opts
print args
for opt, arg in opts:
print opt
しかし、実行すると、opts が空であることがわかります。
./myscript.py debug.lst -s 0 -e 1
['debug.lst', '-s', '0', '-e', '1']
[]
['debug.lst', '-s', '0', '-e', '1']
これを機能させる方法はありますか?