mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-01 19:17:57 +01:00
27 lines
397 B
Markdown
27 lines
397 B
Markdown
# jobs
|
|
|
|
> BASH builtin for viewing information about processes spawned by the current shell.
|
|
|
|
- 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`
|