1

创建了一个批处理文件来启动一个带有参数的程序。工作正常。我喜欢把test5.coffetest2.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
4

1 回答 1

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
于 2013-05-23T11:12:32.020 回答