thor 可以接受类似 unix 的选项(例如 -lv)吗?
我最近开始使用雷神。我已经使用一些全局选项设置了脚本,例如 -l
--logging
和 -v
--verbose< /代码>。我希望用户能够使用
-lv
而不是 -l -v
调用我的雷神任务,但这似乎不可能。
I've recently started using thor. I've set my script up with some global options, such as -l
--logging
and -v
--verbose
. I'd like users to be able to call my thor task with -lv
rather than -l -v
, but this doesn't seem possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
标准库中有几个项目可以帮助您支持 Unixy 标志/命令行参数:
getoptlong 让人想起 Perl 的 GetOpt 库,因此如果您使用过该库(或其他语言的众多克隆之一),那么这对您来说可能很容易。
否则, optparse 更加 Ruby 风格,因此可能会感觉使用起来更自然。
There are several items in the standard library and should help you support Unixy flags/command-line arguments:
getoptlong is reminiscent of Perl's GetOpt library, so if you've used that (or one of the many clones in other languages) that may be easy for you.
Otherwise, optparse is more Ruby-ish, and thus might feel more natural to use.