如何使用Getopt::Long方法?
How can I use Getopt::Long method if the input command execution is like this:
$ testcmd -option check ARG1 ARG2 ARG3
or
$ testcmd ARG1 ARG2 ARG3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
一个简单的例子:
Getopt::Long
在接受的内容方面非常灵活:A quick example:
Getopt::Long
is quite flexible in what it will accept:您需要启用
pass_through
选项。文档引用如下:DVK 发布了一个示例 如何在另一个答案中执行此操作。如果你觉得他的回答有用,我会先投票。
You need to enable the
pass_through
option. Documentation quoted below:DVK's posted an example of how to do this in another answer. I'd upvote his answer first if you find it useful.