创建一个批处理文件以启动带参数的程序。工作正常。我想将test5.coffe
和test2.coffe
放在分开的行中。这是我的问题。它不再采用这些论点了。有办法吗?
工作示例
start "" "C:\Users\Username\AppData\Roaming\npm\coffee.cmd" --join test.js --compile test5.coffe test2.coffe
不工作示例
start "" "C:\Users\Username\AppData\Roaming\npm\coffee.cmd" --join test.js --compile
test5.coffe
test2.coffe
答案 0 :(得分:1)
试试这个:
rem -- do not leave empty spaces after the ^s
start "" "C:\Users\Username\AppData\Roaming\npm\coffee.cmd" --join test.js --compile ^
test5.coffe ^
test2.coffe