在初始化/bash 脚本中同时执行多个程序
您好,我正在使用一个使用 rcS 脚本启动的模拟器,这是我的脚本
cd /tests
./test1 &
./test2 &
./test3 &
./test4
exit
我想要的是同时运行所有测试,并且仅当所有先前的测试完成时才执行退出命令。 而且不仅是当测试 4 完成后,这可能吗? 谢谢。
Hello I am working with a simulator that uses rcS scripts to boot, this is my script
cd /tests
./test1 &
./test2 &
./test3 &
./test4
exit
What I want is run all the test at the same time and that the exit command is executed only when all the previous test have finished. And not only when test 4 has finished, is this possible?.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 wait:
从 bash 手册页:
You can use wait:
From the bash man page:
xargs
可以支持并行所以就像这样:
xargs
can support parallelSo just like this:
类似的东西
(我假设是 bash shell)
Something along the lines of
(I am assuming bash shell)