从带参数的批处理启动python脚本并等待

时间:2017-05-29 07:08:04

标签: python windows python-2.7 batch-file

我正在尝试使用批处理中的参数启动python脚本并等待其成功或失败。但是以下批处理脚本不起作用。

start /wait C:\python.exe C:\script.py arg1 arg2 arg3

您是否已经遇到过此问题?

1 个答案:

答案 0 :(得分:0)

在cmd批处理中,您不需要调用start / wait,因为它将在没有start /wait的情况下直接使用它。

C:\python.exe C:\script.py arg1 arg2 arg3