HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

jobs — Display status of jobs in the current session. More information: <https://manned.org/jobs>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecurrentcommandstatusclijobsdisplay

Problem

How to use the jobs command: Display status of jobs in the current session. More information: <https://manned.org/jobs>.

Solution

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

Code Snippets

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

Context

tldr-pages: common/jobs

Revisions (0)

No revisions yet.