为什么只有第一个“耙子”?命令是在批处理文件中执行的吗?

发布于 2024-10-12 00:35:35 字数 231 浏览 2 评论 0原文

我在 Windows 上创建了 reset_db.bat,内容如下:

rake db:drop RAILS_ENV=development
rake db:create
rake db:migrate
rake db:seed

当我键入 reset_db 时,仅执行第一个命令 (drop)。为什么 ?

I created reset_db.bat on Windows with the following content:

rake db:drop RAILS_ENV=development
rake db:create
rake db:migrate
rake db:seed

When I type reset_db only the first command (drop) is executed. Why ?

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

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

发布评论

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

评论(1

一笔一画续写前缘 2024-10-19 00:35:35

我假设 rake 也是一个 .bat 文件。

然后你只需要在它前面加上一个电话

call rake db:drop RAILS_ENV=development
call rake db:create
call rake db:migrate
call rake db:seed

I assume that the rake is also a .bat file.

Then you only have to prepend it with a call

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