Backgrounding Commands
When working in Linux’s terminal you do not always want to wait for a command to finish executing before continuing to work on the command line. In order to overcome this block background jobs can be used. In order to have a command run in the background, the & symbol can be appended to the command and you will arrive back at your prompt while the command runs in the background. This post will be a quick guide on how to start, manage, and move jobs from the background and foreground. ...