It is simply saying that appending an &
after a command will run that command in the background. Example:
sleep 10
This will wait for 10 seconds before returning you to the prompt. Add the &
after it and you get the prompt right away.
It is simply saying that appending an &
after a command will run that command in the background. Example:
sleep 10
This will wait for 10 seconds before returning you to the prompt. Add the &
after it and you get the prompt right away.