Skip to main content

Command Palette

Search for a command to run...

Linux Background Jobs

Updated
1 min read

Suspend a job and send it to the background:

$ Ctrl+Z

Resumes jobs that have been suspended, and keeps them running in the background:

$ bg

Bring most recently suspended background job to foreground:

$ fg

Display status of jobs in the current session:

$ jobs