在批处理文件中,我试图在一行中执行多个命令:
start cmd /c "title SomeTitle & python SomeFile.py 1>SomeFile.txt & timeout /t -1"
输出文件SomeFile.txt
被创建为空,所有内容都直接打印到终端。
我尝试将python SomeFile.py 1>SomeFile.txt
部分放在双引号中。
但是,我然后遇到一个The system cannot find the path specified
错误。
有任何解决方法吗?
谢谢!