How To Use Bash's Job Control to Manage Foreground and Background Processes | DigitalOcean - 0 views
-
Most processes that you start on a Linux machine will run in the foreground. The command will begin execution, blocking use of the shell for the duration of the process.
-
By default, processes are started in the foreground. Until the program exits or changes state, you will not be able to interact with the shell.
-
stop the process by sending it a signal
- ...17 more annotations...