summaryrefslogtreecommitdiff
path: root/Doc/help/jobs
diff options
context:
space:
mode:
authorAxel Beckert <abe@deuxchevaux.org>2022-05-14 23:32:19 +0200
committerAxel Beckert <abe@deuxchevaux.org>2022-05-14 23:32:19 +0200
commitd4d203488826181aa4eb360ce57de138417ba680 (patch)
tree5f2939130b24381b6d8b11eec7573732eb52317a /Doc/help/jobs
parent9529af723604dfe1c8152db11e1d216621c898d5 (diff)
parent73d317384c9225e46d66444f93b46f0fbe7084ef (diff)
downloadzsh-d4d203488826181aa4eb360ce57de138417ba680.tar.gz
zsh-d4d203488826181aa4eb360ce57de138417ba680.zip
New upstream version 5.9
Diffstat (limited to 'Doc/help/jobs')
-rw-r--r--Doc/help/jobs26
1 files changed, 13 insertions, 13 deletions
diff --git a/Doc/help/jobs b/Doc/help/jobs
index 56f4e34fd..12dda21d8 100644
--- a/Doc/help/jobs
+++ b/Doc/help/jobs
@@ -1,26 +1,26 @@
jobs [ -dlprs ] [ job ... ]
jobs -Z string
- Lists information about each given job, or all jobs if job is
- omitted. The -l flag lists process IDs, and the -p flag lists
- process groups. If the -r flag is specified only running jobs
+ Lists information about each given job, or all jobs if job is
+ omitted. The -l flag lists process IDs, and the -p flag lists
+ process groups. If the -r flag is specified only running jobs
will be listed and if the -s flag is given only stopped jobs are
- shown. If the -d flag is given, the directory from which the
- job was started (which may not be the current directory of the
+ shown. If the -d flag is given, the directory from which the
+ job was started (which may not be the current directory of the
job) will also be shown.
- The -Z option replaces the shell's argument and environment
- space with the given string, truncated if necessary to fit.
+ The -Z option replaces the shell's argument and environment
+ space with the given string, truncated if necessary to fit.
This will normally be visible in ps (ps(1)) listings. This fea-
ture is typically used by daemons, to indicate their state.
- Full job control is only available in the top-level interactive
+ Full job control is only available in the top-level interactive
shell, not in commands run in the left hand side of pipelines or
- within the (...) construct. However, a snapshot of the job
+ within the (...) construct. However, a snapshot of the job
state at that point is taken, so it is still possible to use the
- jobs builtin, or any parameter providing job information. This
- gives information about the state of jobs at the point the sub-
- shell was created. If background processes are created within
- the subshell, then instead information about those processes is
+ jobs builtin, or any parameter providing job information. This
+ gives information about the state of jobs at the point the sub-
+ shell was created. If background processes are created within
+ the subshell, then instead information about those processes is
provided.
For example,