Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Linux \ jobs command example     - LVM management reduces swap partition space to the root partition (Linux)

- sa weak passwords intrusion prevention (Linux)

- To install Internet security firewall Raiders (Linux)

- Linux kernel socket protocol stack routing lookup cache mechanism (Linux)

- Ceph cluster disk is no workaround for the remaining space (Server)

- Generated characters using Java Videos (Programming)

- Copy files between two Linux hosts (Linux)

- Use ldap implement Windows Remote Desktop Ubuntu Linux (Linux)

- CentOS cross compiler core Raspberry Pi 2 (Linux)

- Zombie process under Linux (Linux)

- DBCA Error: ORA-19809: limit exceeded for recovery files process (Database)

- Laravel 4.2 Laravel5 comprehensive upgrade Raiders (Server)

- Python Dir find a folder several files (Programming)

- CentOS 7 source code to compile and install Nginx process record (Server)

- Timing Nginx logs cut and remove the log records of the specified number of days before (Server)

- Create the best introductory tutorial REST API (Linux)

- After installation of Debian 6.0 do a few things first (Linux)

- 10 Regulation of painless SQL Schema (Database)

- MongoDB relations, references, index query coverage (Database)

- Ubuntu Linux installation GAMIT10.6 (Linux)

 
         
  jobs command example
     
  Add Date : 2018-11-21      
         
         
         
  I am a new Linux / Unix users. How can I use BASH in Linux or Unix-like systems / KSH / TCSH or POSIX-based shell to see the current jobs (job)? How to display the status of the current job on Unix / Linux? (LCTT Annotation: job, often referred to as "task")

Job control is the ability to stop / pause process (command) is executed in accordance with your request to continue / resume their execution. This is done by your operating system and such as bash / ksh, or POSIX shell and other shell to execute.

Jobs currently executing shell will be stored in a table, you can use the jobs command to display.

use

It displays the status of the job in the current shell session.

grammar

The basic syntax is as follows:

jobs
or

jobs jobID
or

jobs [options] jobID
 

Some job to start demonstration

Before you start using the jobs command, you need to first start multiple jobs on the system. Execute the following command to start the job:

### Start xeyes, calculator, text editor and gedit ###
xeyes &
gnome-calculator &
gedit fetch-stock-prices.py &
Finally, run the ping command in the foreground:

ping www.cyberciti.biz
Press Ctrl-Z key to suspend (suspend) ping command job.

jobs command example

To display the job status of the current shell, enter:

$ Jobs
Example output:

[1] 7895Running gpass &
[2] 7906Running gnome-calculator &
[3] -7910Running gedit fetch-stock-prices.py &
[4] + 7946Stoppedping cyberciti.biz
To display the process name to "p" at the beginning of the ID or job name, enter:

$ Jobs -p% p
or

$ Jobs% p
Example output:

[4] -Stoppedping cyberciti.biz
The character% is a designated tasks. In this example, you can use the job name at the beginning of string to suspend it, such as% ping.

How to display the process ID does not contain information other normal?

by jobs -l command (lowercase L) option lists detailed information about each job, run:

$ Jobs -l

Fig.01: Displays the status of jobs in the shell

How to list only the most recent status change process?

First, start a new job as follows:

$ Sleep100 &
Now, only hinted that since the last stop or quit after the operations, enter:

$ Jobs -n
Sample output:

[5] -Runningsleep100 &
 

Display only the process ID (PID)

-p option by jobs command displays only PID:

$ Jobs -p
Sample output:

7895
7906
7910
7946
7949
 

How to display only the job that is running it?

-r option by jobs command displays only running jobs, enter:

$ Jobs -r
Sample output:

[1] Running gpass &
[2] Running gnome-calculator &
[3] -Running gedit fetch-stock-prices.py &
 

How to display only jobs that have stopped working?

-s option through the jobs command displays only stopped working a job, enter:

$ Jobs -s
Sample output:

[4] + Stoppedping cyberciti.biz
To continue with the ping cyberciti.biz job, enter the following command bg:

$ Bg% 4

About / usr / bin / jobs and shell built-in instructions

Enter the following command to find out whether the type jobs command shell builtin or external command or are:

$ Type -a jobs
Example output:

jobs is a shell builtin
jobs is / usr / bin / jobs
In almost all cases, you need to use the BASH / KSH / POSIX shell built-in jobs command. / Usr / bin / jobs command can not be used in the current shell. / Usr / bin / jobs command to work in different environments, and does not share his father bash / ksh shell the job.
     
         
         
         
  More:      
 
- To install Ganglia (Linux)
- Hadoop 1 and 2.x installation notes (Server)
- Oracle ORA-01089 failure analysis (Database)
- Upgrade to Linux Mint 16 petra Mint 17 Qiana (Linux)
- MySQL 5.6.12 binary log path switching binlog (Database)
- CentOS 6.5 configuration SSDB 1.8.0 (Server)
- Linux use chattr and lsattr commands to manage file and directory attributes (Linux)
- Talk about Java in the collection (Programming)
- Search Linux commands and files - which, whereis, locate, find (Linux)
- Linux system security configuration (Linux)
- Installation Elementary OS Freya to do some settings (Linux)
- Oracle Character Set Summary (Database)
- Introduction Linux namespace (Linux)
- About phpwind 5.01-5.3 0day analysis of the article (Linux)
- What is Java EE (Programming)
- 11G ASM disk group does not automatically handle MOUNT (Database)
- Ubuntu 14.04 LTS installed Hadoop 1.2.1 (distributed cluster mode) (Server)
- MongoDB simple replication configuration (Database)
- Why not use the ifconfig command under RedHat Linux 5 (Linux)
- RedHat install GCC problem --- Depends (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.