从终端并行运行两个python文件

时间:2016-10-11 17:54:31

标签: python multithreading

如果我有两个名为 test1.py test2.py 的python程序,如何在终端中并行运行它们?

python test1.py|python test2.py

那样做?

1 个答案:

答案 0 :(得分:5)

这会将test1.py的输出传递给test2.py。

如果您只想并行运行,请改用:

/

python test1.py &; python test2.py &会将命令分叉到自己的进程中。