Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在命令行中我给出的输入为
文件名选项
这里选项以连字符开头。
如何传递命令行参数以 -
可以使用全局变量argv访问传递给托管 Tcl 解释器的进程的所有参数列表,您可以对其进行迭代和检查。
argv
存在为命令行参数的“声明性”解析实现现成解决方案的特殊包,cmdline就是一个例子。还可以在 wiki 中搜索替代方案。
cmdline
我认为,您需要来自 tcllib 的 cmdline 包。
文档在这里
http://tcllib.sourceforge.net/doc/cmdline.html
约阿希姆