1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages/linux/jobs.md
2021-09-02 20:33:49 +02:00

28 lines
444 B
Markdown

# jobs
> BASH builtin for viewing information about processes spawned by the current shell.
> More information: <https://manned.org/jobs>.
- View jobs spawned by the current shell:
`jobs`
- List jobs and their process IDs:
`jobs -l`
- Display information about jobs with changed status:
`jobs -n`
- Display process ID of process group leader:
`jobs -p`
- Display running processes:
`jobs -r`
- Display stopped processes:
`jobs -s`