如何获取rake命令后面的输入内容

发布于 2024-12-07 04:26:38 字数 135 浏览 1 评论 0原文

全部。 如何获取rake命令后面的内容,

例如,当我在终端中输入此命令# rake make_file myfile时,它将创建一个名为myfile.txt的文件,我该如何编写耙子任务?

提前致谢。

all.
How do i get the content that follows the rake command ,

for example, when i type this command in terminal # rake make_file myfile so that it will creates a file named myfile.txt, how do i write this rake task ?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

葵雨 2024-12-14 04:26:38

rake task_name some_param 实际上会尝试触发两个 rake 任务:task_namesome_param 除非参数的格式为 param=value,在这种情况下,参数将填充在 ENV 常量中。

因此,rake task_name myfile=/some/file 可以从 ENV["myfile"] 读取。

rake task_name some_param will actually try to fire two rake tasks: task_name and some_param unless the parameters are in the format of param=value, in which case the parameter is populated in the ENV constant.

So, rake task_name myfile=/some/file can be read from ENV["myfile"].

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