文章列表
getopt是一个广泛使用的分析命令行参数工具,很多linux程序都是使用的该工具分析命令行参数的。
帮助文档中的原型说明:
getopt(args, shortopts, longopts=[])
getopt(args, options[, long_options]) -> opts, args
基本使用方法:
>>> from getopt import getopt
>>> l = '-a -bc cc -d dd --e --f=ff --g gg h'.split()
>>> ...