我有如下的automated.bat:自動運行蝙蝠用命令
cd C:\Users\user\Downloads\megatools-1.9.97-win64\megatools-1.9.97-win64\
megacmd.bat
megals /Root --username [email protected] --password password
megamkdir /Root/testmake2 --username [email protected] --password password
它會高興地說megacmd.bat是Megatools殼,但那麼它不會excecute下面的命令。
我想這可能是因爲megacmd.bat使用不同的編程語言,因此輸入的命令無效。
所以,我想,以適應這一切在與1號線:
cd C:\Users\a\Downloads\megatools-1.9.97-win64\megatools-1.9.97-win64\
megacmd.bat & megals /Root --username [email protected] --password password & megamkdir /Root/testmake2 --username [email protected] --password password
,但沒有做的任何命令,要麼讓我也試過:
cd C:\Users\a\Downloads\megatools-1.9.97-win64\megatools-1.9.97-win64\
megacmd.bat & "megals /Root --username [email protected] --password password" & "megamkdir /Root/testmake2 --username [email protected] --password password"
而且
cd C:\Users\a\Downloads\megatools-1.9.97-win64\megatools-1.9.97-win64\
megacmd.bat "megals /Root --username [email protected] --password password" & "megamkdir /Root/testmake2 --username [email protected] --password password"
和
cd C:\Users\a\Downloads\megatools-1.9.97-win64\megatools-1.9.97-win64\
megacmd.bat megals /Root --username [email protected] --password password & megamkdir /Root/testmake2 --username [email protected] --password password
但我似乎無法得到正確的語法。使megacmd.bat運行並連續執行上述2個命令的命令是什麼?
[如何在.BAT文件中運行多個.BAT文件]的可能重複(http://stackoverflow.com/questions/1103994/how-to-run-multiple-bat-files-within-a-bat -file) –