以下批处理文件不是woking。
@echo off
python -c "print('echo text')" > %TEMP%\test.bat
call %TEMP%\test.bat
任何人都可以帮我这个吗?
修改: test.bat
创建后的任何命令都不起作用。
答案 0 :(得分:3)
如果您正在调用的“python”是一个批处理文件(路径中的python.bat可能是?),那么启动批处理文件将在调用之后中止,除非您像使用temp.bat一样使用Call命令
也许吧
@echo off
call python -c "print('echo text')" > %TEMP%\test.bat
call %TEMP%\test.bat
会给你更好的里程吗?