Linux jobs command (list background processes) [Basic Guide]

The jobs Command in Linux lists processes that are running in the background. If a task number is provided the command will return information relevant only to the task in question.

The task number is provided when the process is placed in the background.

The most common options are:

  • -l Lists the PID of the background processes.
  • -r List only running Jobs
  • -s List only stopped Jobs

In this example, find is stopped. Since we use the -l option, jobs also provides the PID 27159 of the find program:

$ jobs -l 
[1] + 27159 Stopped find/-iname? a* 2> /dev/null

The job number can be used as a parameter in the bg and fg commands, especially if there is more than one job in task management.

Learn much more about Linux in our online course. You can register here. If you already have an account, or want to create one, just log in or create your user here.

Did you like it?

Share

Uirá Endy Ribeiro

Uirá Endy Ribeiro is a Software Developer and Cloud Computing Architect with a 23-year career. He has master's degrees in computer science and fifteen IT certifications and is the author of 11 books recognized in the IT world market. He is also Director at Universidade Salgado de Oliveira and Director of the Linux Professional Institute - LPI Director's Board.

Leave a Reply 0

Your email address will not be published. Required fields are marked *


This site uses Akismet to reduce spam. Learn how your comment data is processed.

Need help?