From b02eda97a5a68ec9de6e389f57c0b7ca16f7def3 Mon Sep 17 00:00:00 2001 From: Cvetomird91 Date: Tue, 5 Jan 2016 00:17:45 +0200 Subject: [PATCH] removed typo - changed witch to with --- pages/linux/jobs.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pages/linux/jobs.md diff --git a/pages/linux/jobs.md b/pages/linux/jobs.md new file mode 100644 index 0000000000..351ac63306 --- /dev/null +++ b/pages/linux/jobs.md @@ -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`