bash:run_a_program_in_the_background
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
bash:run_a_program_in_the_background [2020/07/15 09:30] – external edit 127.0.0.1 | bash:run_a_program_in_the_background [2021/02/04 13:27] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== BASH - Run a program in the background ====== | ||
- | |||
- | By default, programs usually run in the foreground. | ||
- | |||
- | To have this first program run in the background: | ||
- | |||
- | Pause the running process by hitting **CTRL-Z**: | ||
- | |||
- | <code bash> | ||
- | CTRL-Z | ||
- | </ | ||
- | |||
- | This will pause the running process: | ||
- | |||
- | Output | ||
- | |||
- | < | ||
- | ^Z | ||
- | [1]+ Stopped | ||
- | </ | ||
- | |||
- | **NOTE**: | ||
- | |||
- | <code bash> | ||
- | bg | ||
- | </ | ||
- | |||
- | You should see a similar line of output, this time without the " | ||
- | |||
- | Output | ||
- | |||
- | < | ||
- | [1]+ sudo ls -R / & | ||
- | </ | ||
- | |||
- | The command is now running in the background. | ||
- | |||
- | Once done, bring the first program out of the background by typing: | ||
- | |||
- | <code bash> | ||
- | fg | ||
- | </ | ||
- | |||
- | Stop the process by holding the control key and hitting " | ||
- | |||
- | <code bash> | ||
- | CTRL-C | ||
- | </ | ||
bash/run_a_program_in_the_background.1594805433.txt.gz · Last modified: 2020/07/15 09:30 by 127.0.0.1