From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/bash/job-control-variables.html | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 devdocs/bash/job-control-variables.html (limited to 'devdocs/bash/job-control-variables.html') diff --git a/devdocs/bash/job-control-variables.html b/devdocs/bash/job-control-variables.html new file mode 100644 index 00000000..0da863d4 --- /dev/null +++ b/devdocs/bash/job-control-variables.html @@ -0,0 +1,7 @@ +

Job Control Variables

auto_resume
+

This variable controls how the shell interacts with the user and job control. If this variable exists then single word simple commands without redirections are treated as candidates for resumption of an existing job. There is no ambiguity allowed; if there is more than one job beginning with the string typed, then the most recently accessed job will be selected. The name of a stopped job, in this context, is the command line used to start it. If this variable is set to the value ‘exact’, the string supplied must match the name of a stopped job exactly; if set to ‘substring’, the string supplied needs to match a substring of the name of a stopped job. The ‘substring’ value provides functionality analogous to the ‘%?’ job ID (see Job Control Basics). If set to any other value, the supplied string must be a prefix of a stopped job’s name; this provides functionality analogous to the ‘%’ job ID.

+

+ Copyright © 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
Licensed under the GNU Free Documentation License.
+ https://www.gnu.org/software/bash/manual/html_node/Job-Control-Variables.html +

+
-- cgit v1.2.3