我有一个 python 脚本,我想在 bash for 循环中并行运行。Python 脚本通过 sys.argv[x] 将多个参数作为输入。例如,我想在 bash 中运行 for 循环这些行:
python py_script.py a b c &
python py_script.py d e f &
python py_script.py g h i
我怎么能做到这一点?先感谢您。
我有一个 python 脚本,我想在 bash for 循环中并行运行。Python 脚本通过 sys.argv[x] 将多个参数作为输入。例如,我想在 bash 中运行 for 循环这些行:
python py_script.py a b c &
python py_script.py d e f &
python py_script.py g h i
我怎么能做到这一点?先感谢您。