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.
以下 fork 语句有什么区别?
command &
exec command &
您可以使用wait $!这两个语句。在我的测试中,我发现行为没有区别 - 但也许我错过了一些东西。
wait $!
&覆盖,因为exec您不能同时用新进程替换现有进程并在后台运行新进程。
&
exec