Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前有一个执行 PHP 文件的 Bash 脚本(“Bash Script 1”)。我想要一个可以启动多个“Bash Script 1”实例并让它们同时运行的 Bash 脚本。
这可能吗?我该怎么做?
任何想法或意见将不胜感激。
在后台运行它们,就像在交互式 shell 中一样。
command1 & command2 & command3 & wait # Wait for all background commands to finish
这些命令几乎可以是任何东西,而不仅仅是其他 bash 脚本。
如果要重复相同的命令:
N=10 # number of repetitions for i in $(seq $N) do bash_script_1& done