mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-03 20:43:39 +00:00
26 lines
388 B
Plaintext
26 lines
388 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# jobs
|
|
|
|
> Display status of jobs in the current session.
|
|
> More information: <https://manned.org/jobs>.
|
|
|
|
- Show status of all jobs:
|
|
|
|
`jobs`
|
|
|
|
- Show status of a particular job:
|
|
|
|
`jobs %{{job_id}}`
|
|
|
|
- Show status and process IDs of all jobs:
|
|
|
|
`jobs -l`
|
|
|
|
- Show process IDs of all jobs:
|
|
|
|
`jobs -p`
|