thor 可以接受类似 unix 的选项(例如 -lv)吗?

发布于 2024-11-16 14:40:22 字数 196 浏览 6 评论 0原文

我最近开始使用雷神。我已经使用一些全局选项设置了脚本,例如 -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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与酒说心事 2024-11-23 14:40:22

标准库中有几个项目可以帮助您支持 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文