System Grab Bag

View all TLDR pages from Linux (or from all pages)

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

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.

Other Projects

This TLDR page is also found in other projects: