1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

Merge pull request #589 from Cvetomird91/jobs

jobs
This commit is contained in:
Felix Yan 2016-01-05 15:31:49 +08:00
commit 3c52dbaeb2

27
pages/linux/jobs.md Normal file
View file

@ -0,0 +1,27 @@
# jobs
> BASH builtin for viewing information about processes spawned by the current shell.
- 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 process id of process group leader
`jobs -p`
- display running processes
`jobs -r`
- display stopped processes
`jobs -s`