Bash - Ampersand (&) - (Asynchronous|Parallel) control operator
If a command is terminated by the control operator ampersand &, the shell executes the command in the background in a subshell. This is known as executing the command in the background. The shell...