我有很多python脚本,通过单击它们来单独运行每个脚本是很痛苦的。如何让批处理文件一次运行它们?
答案 0 :(得分:2)
只需制作一个像这样的脚本来完成每项任务(在Windows上):
start /B python script1.py
start /B python script2.py
start /B python script3.py
on * nix:
python script1.py &
python script2.py &
python script3.py &
假设您的脚本没有需要人工干预才能运行
答案 1 :(得分:1)
使用start
命令启动进程。
@echo off
start "" foo.py
start "" bar.py
start "" baz.py
评论:“有没有办法让这些最小化?”
您可以通过键入命令名称后跟/?
来询问命令的工作原理。在这种情况下,start /?
告诉我们它的命令行选项包括:
MIN Start window minimized.
因此,要最小化启动应用程序,请使用:
start "" /MIN quux.py