Windows批处理文件(如果不使用)
抱歉,我是新手。我想以一定的顺序运行具有不同参数的相同bat文件。我写了一个非常简单的批处理文件: @echo off REM Note: to see all command line usage options, run bsearch_headless.bat without any arguments. call behaviorsearch_headless.bat -p test_behaviorsearch.bsearch -o pippo ECHO IF EXIST pippo.finalBests.csv (call behaviorsearch_headless.bat -p test_behaviorsearch.bsearch -o topolino) else goto :eof :eof ECHO Simulatione End! PAUSE 它不起作用,因为else无法识别。 非常感谢您的帮助!