标签: python multithreading
如果我有两个名为 test1.py 和 test2.py 的python程序,如何在终端中并行运行它们?
python test1.py|python test2.py
那样做?
答案 0 :(得分:5)
这会将test1.py的输出传递给test2.py。
如果您只想并行运行,请改用:
/
python test1.py &; python test2.py &会将命令分叉到自己的进程中。
python test1.py &; python test2.py &