Files
tldr/pages/linux/jobs.md
4G3NT 5e0c7b730f jobs: update page (#10309)
* Few quality of life changes

Similar to my last pull request: #10301

Clarify that some functionality of `jobs` is not exclusive to Bash.

* Update pages/linux/jobs.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* Update pages/linux/jobs.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* Update pages/linux/jobs.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* Update pages/linux/jobs.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* Update pages/linux/jobs.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2023-06-17 18:04:07 +02:00

30 lines
487 B
Markdown

# jobs
> Shell builtin for viewing information about processes spawned by the current shell.
> Options other than `-l` and `-p` are exclusive to `bash`.
> 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 only process IDs:
`jobs -p`
- Display running processes:
`jobs -r`
- Display stopped processes:
`jobs -s`