在CLI上运行两个命令

时间:2013-11-11 20:09:58

标签: ruby-on-rails postgresql heroku command-line-interface

我正在尝试在CLI上运行以下代码:

$ rails new sample_app --skip-test-unit & --database=postgresql
[1] 3452
sh.exe": --database=postgresql:command not found

运行的命令的唯一部分是第一部分(--skip-test-unit)。

如果您有可能出现问题的指导或我可能会如何进一步排查问题,我会很感激。谢谢。

1 个答案:

答案 0 :(得分:2)

不需要&

 rails new sample_app --skip-test-unit --database=postgresql

工作:)