mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
removed typo - changed witch to with
This commit is contained in:
parent
1f74ef276d
commit
b02eda97a5
1 changed files with 27 additions and 0 deletions
27
pages/linux/jobs.md
Normal file
27
pages/linux/jobs.md
Normal 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`
|
Loading…
Add table
Reference in a new issue