Will rc.local block until command finish execution

2019-08-06 12:00发布

问题:

Will rc.local wait for each command to finish, or the commands are executed like exec() ?

回答1:

It's a normal shell script. So they block or not, according to how the script invokes the commands (e.g. with/without &).

But exec also works differently to how you appear to think; exec() doesn't do anything asynchronously.



回答2:

They block. They can be run asynchronously by putting '&' at the end.



标签: linux rc