如何获取rake命令后面的输入内容
全部。 如何获取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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
rake task_name some_param
实际上会尝试触发两个 rake 任务:task_name
和some_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
andsome_param
unless the parameters are in the format ofparam=value
, in which case the parameter is populated in theENV
constant.So,
rake task_name myfile=/some/file
can be read fromENV["myfile"]
.