This question already has an answer here:
Is it possible to start the execution of a command and not wait for it to return before continuing.
I.E.
commands
/usr/sbin/thing.sh <-- Don't wait for this to return.
more commands
This question already has an answer here:
Is it possible to start the execution of a command and not wait for it to return before continuing.
I.E.
commands
/usr/sbin/thing.sh <-- Don't wait for this to return.
more commands
Append the & to the end of the command. Tested on:
A single
&
symbol between commands will let each run independently without relying on the previous command having succeeded.