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.
rc.local 会等待每个命令完成,还是像 exec() 一样执行命令?
他们阻止。它们可以通过在末尾添加“&”来异步运行。
这是一个普通的shell脚本。因此,它们是否阻塞,取决于脚本如何调用命令(例如,有/无&)。
&
但是 exec 的工作方式也与您的想法不同。exec()不会异步执行任何操作。
exec()