gpt4 book ai didi

python - 从 linux 命令行一次启动 python 脚本的多个实例

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:14:40 24 4
gpt4 key购买 nike

我想启动一段 python 脚本一千次!而不是尝试一个一个地启动它们,我该如何从 linux 命令行执行此操作?

现在,我是这样做的:

nohup python test.py &
nohup python test.py &
nohup python test.py &
nohup python test.py &
nohup python test.py &
...

提前致谢。

最佳答案

作为单行代码,在 Bash 中:

for i in {1..1000}; do nohup python test.py & done

关于python - 从 linux 命令行一次启动 python 脚本的多个实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3083922/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com