Launch Process and Detach
If you want to launch a long-running process in the shell or a script, but not have it hold up the shell or script’s execution, you can add an asterisk after the command.
process_to_launch &
[!warning] Doing this means that your shell or script will no longer receive exit signals or messages from
stdout
orstderr
from the launched process.