【发布时间】:2011-03-06 06:20:10
【问题描述】:
我想将一段python脚本启动一千次!而不是尝试一个一个地启动它们,我怎样才能从 linux 命令行中做到这一点?
现在,我正在这样做:
nohup python test.py &
nohup python test.py &
nohup python test.py &
nohup python test.py &
nohup python test.py &
...
提前致谢。
【问题讨论】:
标签: python linux shell command-line console