]> git.ipfire.org Git - thirdparty/bash.git/commitdiff
remove `(' from chars that can follow `${' command substitution; fix for empty comman...
authorChet Ramey <chet.ramey@case.edu>
Fri, 26 May 2023 21:29:41 +0000 (17:29 -0400)
committerChet Ramey <chet.ramey@case.edu>
Fri, 26 May 2023 21:29:41 +0000 (17:29 -0400)
29 files changed:
CWRU/CWRU.chlog
doc/bash.0
doc/bash.1
doc/bash.html
doc/bash.info
doc/bash.pdf
doc/bash.ps
doc/bashref.dvi
doc/bashref.html
doc/bashref.info
doc/bashref.log
doc/bashref.pdf
doc/bashref.ps
doc/bashref.texi
doc/builtins.0
doc/builtins.ps
doc/rbash.ps
doc/version.texi
eval.c
externs.h
lib/readline/rldefs.h
lib/readline/util.c
make_cmd.c
parse.y
parser.h
shell.c
shell.h
subst.c
tests/comsub2.tests

index 3388ac94190e264d6dd22287f8b6e01519e3ba58..db100a5b94e502fbf91ae62bec99134754b19baa 100644 (file)
@@ -6389,3 +6389,56 @@ subst.c
 subst.c
        - quote_escapes_internal: use ifs_cmap instead of iterating through
          ifs_value to set skip_ctlesc and skip_ctlnul
+
+                                  5/23
+                                  ----
+parser.h
+       - remove `(' from FUNSUB_CHARS
+
+parse.y
+       - parse_comsub: don't bother with `(' as one of the FUNSUB_CHARS
+
+doc/bash.1,doc/bashref.texi
+       - command substitution: remove mention of `(' as a valid character
+         following the open brace in nofork command substitution
+
+                                  5/24
+                                  ----
+parse.y
+       - parse_comsub: avoid adding `;' to an empty ${ command substitution
+       - parse_comsub: if open == '{', push back a newline we read into
+         peekc to get PS2 prompting right.
+         From a report by Grisha Levit <grishalevit@gmail.com>
+
+subst.c
+       - skip_double_quoted: pass the SX_COMPLETE flag down to 
+         extract_dollar_brace_string in case it contains an unclosed command
+         substitution.
+         From a report by Grisha Levit <grishalevit@gmail.com>
+
+                                  5/25
+                                  ----
+shell.c
+       - make sure shell_initialized is set to 1 before running -c command
+
+make_cmd.c
+       - make_function_def: initialize source_file to something other than
+         `main' or `environment' if the shell is not interactive.
+         From a report from Emanuele Torre <torreemanuele6@gmail.com>
+
+parse.y
+       - save_token_state,restore_token_state: save and restore token_to_read
+       - read_token_word: if we read EOF in an interactive shell, set
+         token_to_read to yacc_EOF and EOF_Reached to 1 so the token will
+         be delimited but the next call to read_token returns yacc_EOF
+       - handle_ignoreeof: broke the code that checks eof_encountered and
+         possibly exceeds the ignoreeof limit out into a separate public
+         function, called from handle_eof_input_unit
+
+eval.c
+       - reader_loop: if EOF_Reached is set in an interactive shell after
+         parse_command and execute_command, and ignoreeof has been enabled,
+         check for ignoreeof with handle_ignoreeof and reset EOF_Reached
+         back to 0 if we should not exit. This can occur when EOF delimits
+         a simple command (simple_command_terminator)
+         From a report by Grisha Levit <grishalevit@gmail.com>
index 5cb381366fffae24210f0df40c854e402ccb31f5..1ae611e166c4b1f9ee054f047b7e3e3c0c529594 100644 (file)
@@ -2003,11 +2003,11 @@ E\bEX\bXP\bPA\bAN\bNS\bSI\bIO\bON\bN
        tures its output, again with trailing newlines removed.
 
        The character _\bc following the open brace must be a space, tab, newline,
-       (\b(, or |\b|, and the close brace must be in a  position  where  a  reserved
-       word  may  appear (i.e., preceded by a command terminator such as semi-
-       colon).  B\bBa\bas\bsh\bh allows the close brace to  be  joined  to  the  remaining
-       characters  in the word without being followed by a shell metacharacter
-       as a reserved word would usually require.
+       or |\b|, and the close brace must be in a position where a  reserved  word
+       may  appear (i.e., preceded by a command terminator such as semicolon).
+       B\bBa\bas\bsh\bh allows the close brace to be joined to the remaining characters in
+       the  word without being followed by a shell metacharacter as a reserved
+       word would usually require.
 
        Any side effects of _\bc_\bo_\bm_\bm_\ba_\bn_\bd take effect immediately in the current exe-
        cution  environment  and  persist  in the current environment after the
@@ -2019,16 +2019,13 @@ E\bEX\bXP\bPA\bAN\bNS\bSI\bIO\bON\bN
        plete;  however,  the  rest of the execution environment, including the
        positional parameters, is shared with the caller.
 
-       If the first character following the open brace is a (\b(, _\bc_\bo_\bm_\bm_\ba_\bn_\bd is exe-
-       cuted  in  a  subshell,  and _\bc_\bo_\bm_\bm_\ba_\bn_\bd must be terminated by a )\b). This is
-       similar to the (\b( compound command (see C\bCo\bom\bmp\bpo\bou\bun\bnd\bd  C\bCo\bom\bmm\bma\ban\bnd\bds\bs  above).   If
-       the  first  character is a |\b|, the construct expands to the value of the
-       R\bRE\bEP\bPL\bLY\bY shell variable  after  _\bc_\bo_\bm_\bm_\ba_\bn_\bd  executes,  without  removing  any
-       trailing  newlines, and the standard output of _\bc_\bo_\bm_\bm_\ba_\bn_\bd remains the same
-       as in the calling shell.  B\bBa\bas\bsh\bh creates R\bRE\bEP\bPL\bLY\bY as an initially-unset  lo-
-       cal  variable when _\bc_\bo_\bm_\bm_\ba_\bn_\bd executes, and restores R\bRE\bEP\bPL\bLY\bY to the value it
-       had before the command substitution after _\bc_\bo_\bm_\bm_\ba_\bn_\bd  completes,  as  with
-       any local variable.
+       If the first character following the open brace is a |\b|,  the  construct
+       expands  to  the  value  of the R\bRE\bEP\bPL\bLY\bY shell variable after _\bc_\bo_\bm_\bm_\ba_\bn_\bd exe-
+       cutes, without removing any trailing newlines, and the standard  output
+       of  _\bc_\bo_\bm_\bm_\ba_\bn_\bd remains the same as in the calling shell.  B\bBa\bas\bsh\bh creates R\bRE\bE-\b-
+       P\bPL\bLY\bY as an initially-unset local variable when _\bc_\bo_\bm_\bm_\ba_\bn_\bd executes, and re-
+       stores  R\bRE\bEP\bPL\bLY\bY to the value it had before the command substitution after
+       _\bc_\bo_\bm_\bm_\ba_\bn_\bd completes, as with any local variable.
 
        Command substitutions may be nested.  To nest when using the backquoted
        form, escape the inner backquotes with backslashes.
@@ -2037,175 +2034,175 @@ E\bEX\bXP\bPA\bAN\bNS\bSI\bIO\bON\bN
        word splitting and pathname expansion on the results.
 
    A\bAr\bri\bit\bth\bhm\bme\bet\bti\bic\bc E\bEx\bxp\bpa\ban\bns\bsi\bio\bon\bn
-       Arithmetic  expansion allows the evaluation of an arithmetic expression
-       and the substitution of the result.  The format for  arithmetic  expan-
+       Arithmetic expansion allows the evaluation of an arithmetic  expression
+       and  the  substitution of the result.  The format for arithmetic expan-
        sion is:
 
               $\b$(\b((\b(_\be_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn)\b))\b)
 
-       The  _\be_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn undergoes the same expansions as if it were within dou-
-       ble quotes, but double quote characters in _\be_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn are  not  treated
+       The _\be_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn undergoes the same expansions as if it were within  dou-
+       ble  quotes,  but double quote characters in _\be_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn are not treated
        specially and are removed.  All tokens in the expression undergo param-
-       eter and variable expansion, command substitution, and  quote  removal.
-       The  result  is  treated  as the arithmetic expression to be evaluated.
+       eter  and  variable expansion, command substitution, and quote removal.
+       The result is treated as the arithmetic  expression  to  be  evaluated.
        Arithmetic expansions may be nested.
 
-       The evaluation is performed according to the rules listed  below  under
+       The  evaluation  is performed according to the rules listed below under
        A\bAR\bRI\bIT\bTH\bHM\bME\bET\bTI\bIC\bC E\bEV\bVA\bAL\bLU\bUA\bAT\bTI\bIO\bON\bN.  If _\be_\bx_\bp_\br_\be_\bs_\bs_\bi_\bo_\bn is invalid, b\bba\bas\bsh\bh prints a message
        indicating failure and no substitution occurs.
 
    P\bPr\bro\boc\bce\bes\bss\bs S\bSu\bub\bbs\bst\bti\bit\btu\but\bti\bio\bon\bn
-       _\bP_\br_\bo_\bc_\be_\bs_\b_\bs_\bu_\bb_\bs_\bt_\bi_\bt_\bu_\bt_\bi_\bo_\bn allows a process's input or output to be  referred
-       to  using  a  filename.   It takes the form of <\b<(\b(_\bl_\bi_\bs_\bt)\b) or >\b>(\b(_\bl_\bi_\bs_\bt)\b).  The
-       process _\bl_\bi_\bs_\bt is run asynchronously, and its input or output appears  as
+       _\bP_\br_\bo_\bc_\be_\bs_\b _\bs_\bu_\bb_\bs_\bt_\bi_\bt_\bu_\bt_\bi_\bo_\bn allows a process's input or output to be referred
+       to using a filename.  It takes the form of  <\b<(\b(_\bl_\bi_\bs_\bt)\b)  or  >\b>(\b(_\bl_\bi_\bs_\bt)\b).   The
+       process  _\bl_\bi_\bs_\bt is run asynchronously, and its input or output appears as
        a filename.  This filename is passed as an argument to the current com-
-       mand as the result of the expansion.  If  the  >\b>(\b(_\bl_\bi_\bs_\bt)\b)  form  is  used,
-       writing  to  the file will provide input for _\bl_\bi_\bs_\bt.  If the <\b<(\b(_\bl_\bi_\bs_\bt)\b) form
-       is used, the file passed as an argument should be read  to  obtain  the
+       mand  as  the  result  of  the expansion.  If the >\b>(\b(_\bl_\bi_\bs_\bt)\b) form is used,
+       writing to the file will provide input for _\bl_\bi_\bs_\bt.  If the  <\b<(\b(_\bl_\bi_\bs_\bt)\b form
+       is  used,  the  file passed as an argument should be read to obtain the
        output of _\bl_\bi_\bs_\bt.  Process substitution is supported on systems that sup-
        port named pipes (_\bF_\bI_\bF_\bO_\bs) or the /\b/d\bde\bev\bv/\b/f\bfd\bd method of naming open files.
 
-       When available, process substitution is performed  simultaneously  with
-       parameter  and variable expansion, command substitution, and arithmetic
+       When  available,  process substitution is performed simultaneously with
+       parameter and variable expansion, command substitution, and  arithmetic
        expansion.
 
    W\bWo\bor\brd\bd S\bSp\bpl\bli\bit\btt\bti\bin\bng\bg
-       The shell scans the results of parameter expansion,  command  substitu-
-       tion,  and arithmetic expansion that did not occur within double quotes
+       The  shell  scans the results of parameter expansion, command substitu-
+       tion, and arithmetic expansion that did not occur within double  quotes
        for _\bw_\bo_\br_\bd _\bs_\bp_\bl_\bi_\bt_\bt_\bi_\bn_\bg.
 
-       The shell treats each character of I\bIF\bFS\bS as a delimiter, and  splits  the
-       results  of  the  other expansions into words using these characters as
+       The  shell  treats each character of I\bIF\bFS\bS as a delimiter, and splits the
+       results of the other expansions into words using  these  characters  as
        field terminators.
 
        If I\bIF\bFS\bS is unset, or its value is exactly <\b<s\bsp\bpa\bac\bce\be>\b><\b<t\bta\bab\bb>\b><\b<n\bne\bew\bwl\bli\bin\bne\be>\b>, the de-
-       fault,  then  sequences of s\bsp\bpa\bac\bce\be, t\bta\bab\bb, and n\bne\bew\bwl\bli\bin\bne\be at the beginning and
-       end of the results of the previous expansions are ignored, and any  se-
-       quence  of I\bIF\bFS\bS characters not at the beginning or end serves to delimit
-       words.  If I\bIF\bFS\bS has a value other than the default,  then  sequences  of
-       the  whitespace  characters  s\bsp\bpa\bac\bce\be, t\bta\bab\bb, and n\bne\bew\bwl\bli\bin\bne\be are ignored at the
-       beginning and end of the word, as long as the whitespace  character  is
-       in  the  value  of I\bIF\bFS\bS (an I\bIF\bFS\bS whitespace character).  Any character in
-       I\bIF\bFS\bthat is not I\bIF\bFS\bS whitespace, along with any adjacent I\bIF\bFS\b whitespace
-       characters,  delimits a field.  A sequence of I\bIF\bFS\bS whitespace characters
+       fault, then sequences of s\bsp\bpa\bac\bce\be, t\bta\bab\bb, and n\bne\bew\bwl\bli\bin\bne\be at the  beginning  and
+       end  of the results of the previous expansions are ignored, and any se-
+       quence of I\bIF\bFS\bS characters not at the beginning or end serves to  delimit
+       words.   If  I\bIF\bFS\bS  has a value other than the default, then sequences of
+       the whitespace characters s\bsp\bpa\bac\bce\be, t\bta\bab\bb, and n\bne\bew\bwl\bli\bin\bne\be are  ignored  at  the
+       beginning  and  end of the word, as long as the whitespace character is
+       in the value of I\bIF\bFS\bS (an I\bIF\bFS\bS whitespace character).   Any  character  in
+       I\bIF\bFS\b that is not I\bIF\bFS\bS whitespace, along with any adjacent I\bIF\bFS\bS whitespace
+       characters, delimits a field.  A sequence of I\bIF\bFS\bS whitespace  characters
        is also treated as a delimiter.
 
-       If the value of I\bIF\bFS\bS is null, no word splitting occurs.  If I\bIF\bFS\bS  is  un-
-       set,  word  splitting  behaves  as if it contained the default value of
+       If  the  value of I\bIF\bFS\bS is null, no word splitting occurs.  If I\bIF\bFS\bS is un-
+       set, word splitting behaves as if it contained  the  default  value  of
        <\b<s\bsp\bpa\bac\bce\be>\b><\b<t\bta\bab\bb>\b><\b<n\bne\bew\bwl\bli\bin\bne\be>\b>.
 
-       Explicit null arguments ("\b""\b" or '\b''\b') are retained and passed to  commands
+       Explicit  null arguments ("\b""\b" or '\b''\b') are retained and passed to commands
        as empty strings.  Unquoted implicit null arguments, resulting from the
        expansion of parameters that have no values, are removed.  If a parame-
        ter with no value is expanded within double quotes, a null argument re-
        sults and is retained and passed to a command as an empty string.  When
-       a  quoted  null  argument  appears as part of a word whose expansion is
+       a quoted null argument appears as part of a  word  whose  expansion  is
        non-null, the null argument is removed.  That is, the word -d'' becomes
        -d after word splitting and null argument removal.
 
        Note that if no expansion occurs, no splitting is performed.
 
    P\bPa\bat\bth\bhn\bna\bam\bme\be E\bEx\bxp\bpa\ban\bns\bsi\bio\bon\bn
-       After  word  splitting,  unless  the -\b-f\bf option has been set, b\bba\bas\bsh\bh scans
-       each word for the characters *\b*, ?\b?, and [\b[.  If one of  these  characters
+       After word splitting, unless the -\b-f\bf option has  been  set,  b\bba\bas\bsh\b scans
+       each  word  for the characters *\b*, ?\b?, and [\b[.  If one of these characters
        appears, and is not quoted, then the word is regarded as a _\bp_\ba_\bt_\bt_\be_\br_\bn, and
-       replaced with an alphabetically sorted list of filenames  matching  the
-       pattern  (see  P\bPa\bat\btt\bte\ber\brn\bn  M\bMa\bat\btc\bch\bhi\bin\bng\bg  below).  If no matching filenames are
-       found, and the shell option n\bnu\bul\bll\blg\bgl\blo\bob\bb is not enabled, the word  is  left
-       unchanged.   If  the  n\bnu\bul\bll\blg\bgl\blo\bob\bb option is set, and no matches are found,
-       the word is removed.  If the f\bfa\bai\bil\blg\bgl\blo\bob\bb  shell  option  is  set,  and  no
-       matches  are  found, an error message is printed and the command is not
+       replaced  with  an alphabetically sorted list of filenames matching the
+       pattern (see P\bPa\bat\btt\bte\ber\brn\bn M\bMa\bat\btc\bch\bhi\bin\bng\bg below).  If  no  matching  filenames  are
+       found,  and  the shell option n\bnu\bul\bll\blg\bgl\blo\bob\bb is not enabled, the word is left
+       unchanged.  If the n\bnu\bul\bll\blg\bgl\blo\bob\bb option is set, and no  matches  are  found,
+       the  word  is  removed.   If  the  f\bfa\bai\bil\blg\bgl\blo\bob\bb shell option is set, and no
+       matches are found, an error message is printed and the command  is  not
        executed.  If the shell option n\bno\boc\bca\bas\bse\beg\bgl\blo\bob\bb is enabled, the match is per-
-       formed  without  regard  to  the case of alphabetic characters.  When a
-       pattern is used for pathname expansion, the  character  `\b``\b`.\b.'\b''\b'   at  the
-       start  of  a  name or immediately following a slash must be matched ex-
-       plicitly, unless the shell option d\bdo\bot\btg\bgl\blo\bob\bb is set.  In  order  to  match
+       formed without regard to the case of  alphabetic  characters.   When  a
+       pattern  is  used  for  pathname expansion, the character `\b``\b`.\b.'\b''\b'  at the
+       start of a name or immediately following a slash must  be  matched  ex-
+       plicitly,  unless  the  shell option d\bdo\bot\btg\bgl\blo\bob\bb is set.  In order to match
        the filenames `\b``\b`.\b.'\b''\b'  and `\b``\b`.\b..\b.'\b''\b', the pattern must begin with ``.'' (for
-       example, ``.?''), even if d\bdo\bot\btg\bgl\blo\bob\bb is set.  If  the  g\bgl\blo\bob\bbs\bsk\bki\bip\bpd\bdo\bot\bts\b shell
-       option  is enabled, the filenames `\b``\b`.\b.'\b''\b'  and `\b``\b`.\b..\b.'\b''\b'  are never matched,
-       even if the pattern begins with a `\b``\b`.\b.'\b''\b'.  When not matching  pathnames,
-       the  `\b``\b`.\b.'\b''\b'   character is not treated specially.  When matching a path-
-       name, the slash character must always be matched explicitly by a  slash
-       in  the  pattern, but in other matching contexts it can be matched by a
-       special pattern character as described below  under  P\bPa\bat\btt\bte\ber\brn\b M\bMa\bat\btc\bch\bhi\bin\bng\bg.
-       See  the  description of s\bsh\bho\bop\bpt\bt below under S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS for a
-       description of the n\bno\boc\bca\bas\bse\beg\bgl\blo\bob\bb, n\bnu\bul\bll\blg\bgl\blo\bob\bb,  g\bgl\blo\bob\bbs\bsk\bki\bip\bpd\bdo\bot\bts\bs,  f\bfa\bai\bil\blg\bgl\blo\bob\bb,  and
+       example,  ``.?''),  even  if d\bdo\bot\btg\bgl\blo\bob\bb is set.  If the g\bgl\blo\bob\bbs\bsk\bki\bip\bpd\bdo\bot\bts\bs shell
+       option is enabled, the filenames `\b``\b`.\b.'\b''\b'  and `\b``\b`.\b..\b.'\b''\b'  are never  matched,
+       even  if the pattern begins with a `\b``\b`.\b.'\b''\b'.  When not matching pathnames,
+       the `\b``\b`.\b.'\b''\b'  character is not treated specially.  When matching  a  path-
+       name,  the slash character must always be matched explicitly by a slash
+       in the pattern, but in other matching contexts it can be matched  by  a
+       special  pattern  character  as described below under P\bPa\bat\btt\bte\ber\brn\bn M\bMa\bat\btc\bch\bhi\bin\bng\bg.
+       See the description of s\bsh\bho\bop\bpt\bt below under S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS  for  a
+       description  of  the  n\bno\boc\bca\bas\bse\beg\bgl\blo\bob\bb, n\bnu\bul\bll\blg\bgl\blo\bob\bb, g\bgl\blo\bob\bbs\bsk\bki\bip\bpd\bdo\bot\bts\bs, f\bfa\bai\bil\blg\bgl\blo\bob\bb, and
        d\bdo\bot\btg\bgl\blo\bob\bb shell options.
 
-       The  G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE  shell variable may be used to restrict the set of file
-       names matching a _\bp_\ba_\bt_\bt_\be_\br_\bn.  If G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE is  set,  each  matching  file
-       name  that  also  matches  one of the patterns in G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE is removed
-       from the list of matches.  If the n\bno\boc\bca\bas\bse\beg\bgl\blo\bob\bb option is set, the  match-
-       ing  against  the patterns in G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE is performed without regard to
+       The G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE shell variable may be used to restrict the set  of  file
+       names  matching  a  _\bp_\ba_\bt_\bt_\be_\br_\bn.   If G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE is set, each matching file
+       name that also matches one of the patterns  in  G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE  is  removed
+       from  the list of matches.  If the n\bno\boc\bca\bas\bse\beg\bgl\blo\bob\bb option is set, the match-
+       ing against the patterns in G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE is performed without  regard  to
        case.  The filenames `\b``\b`.\b.'\b''\b'  and `\b``\b`.\b..\b.'\b''\b'  are always ignored when G\bGL\bLO\bOB\bBI\bIG\bG-\b-
-       N\bNO\bOR\bRE\b is  set  and not null.  However, setting G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE to a non-null
+       N\bNO\bOR\bRE\bis set and not null.  However, setting G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE  to  a  non-null
        value has the effect of enabling the d\bdo\bot\btg\bgl\blo\bob\bb shell option, so all other
-       filenames  beginning with a `\b``\b`.\b.'\b''\b'  will match.  To get the old behavior
-       of ignoring filenames beginning with a `\b``\b`.\b.'\b''\b', make `\b``\b`.\b.*\b*'\b''\b'  one  of  the
+       filenames beginning with a `\b``\b`.\b.'\b''\b'  will match.  To get the old  behavior
+       of  ignoring  filenames beginning with a `\b``\b`.\b.'\b''\b', make `\b``\b`.\b.*\b*'\b''\b'  one of the
        patterns in G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE.  The d\bdo\bot\btg\bgl\blo\bob\bb option is disabled when G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE
        is unset.  The pattern matching honors the setting of the e\bex\bxt\btg\bgl\blo\bob\bb shell
        option.
 
-       The  G\bGL\bLO\bOB\bBS\bSO\bOR\bRT\bT  variable  controls how the results of pathname expansion
+       The G\bGL\bLO\bOB\bBS\bSO\bOR\bRT\bT variable controls how the results  of  pathname  expansion
        are sorted, as described above.
 
        P\bPa\bat\btt\bte\ber\brn\bn M\bMa\bat\btc\bch\bhi\bin\bng\bg
 
        Any character that appears in a pattern, other than the special pattern
-       characters  described below, matches itself.  The NUL character may not
-       occur in a pattern.  A backslash escapes the following  character;  the
-       escaping  backslash  is  discarded  when matching.  The special pattern
+       characters described below, matches itself.  The NUL character may  not
+       occur  in  a pattern.  A backslash escapes the following character; the
+       escaping backslash is discarded when  matching.   The  special  pattern
        characters must be quoted if they are to be matched literally.
 
        The special pattern characters have the following meanings:
 
-              *\b*      Matches any string, including the null string.  When  the
-                     g\bgl\blo\bob\bbs\bst\bta\bar\b shell  option  is  enabled,  and *\b* is used in a
-                     pathname expansion context, two adjacent  *\b*s  used  as  a
-                     single  pattern will match all files and zero or more di-
-                     rectories and subdirectories.  If followed by  a  /\b/,  two
-                     adjacent  *\b*s  will match only directories and subdirecto-
+              *\b*      Matches  any string, including the null string.  When the
+                     g\bgl\blo\bob\bbs\bst\bta\bar\bshell option is enabled, and  *\b*  is  used  in  a
+                     pathname  expansion  context,  two  adjacent *\b*s used as a
+                     single pattern will match all files and zero or more  di-
+                     rectories  and  subdirectories.   If followed by a /\b/, two
+                     adjacent *\b*s will match only directories  and  subdirecto-
                      ries.
               ?\b?      Matches any single character.
-              [\b[.\b..\b..\b.]\b]  Matches any one of the enclosed characters.   A  pair  of
-                     characters  separated by a hyphen denotes a _\br_\ba_\bn_\bg_\be _\be_\bx_\bp_\br_\be_\bs_\b-
-                     _\bs_\bi_\bo_\bn; any character that falls between those two  charac-
+              [\b[.\b..\b..\b.]\b]  Matches  any  one  of the enclosed characters.  A pair of
+                     characters separated by a hyphen denotes a _\br_\ba_\bn_\bg_\b _\be_\bx_\bp_\br_\be_\bs_\b-
+                     _\bs_\bi_\bo_\bn;  any character that falls between those two charac-
                      ters, inclusive, using the current locale's collating se-
                      quence and character set, is matched.  If the first char-
-                     acter  following  the [\b[ is a !\b!  or a ^\b^ then any character
+                     acter following the [\b[ is a !\b!  or a ^\b^ then  any  character
                      not enclosed is matched.  The sorting order of characters
-                     in  range expressions, and the characters included in the
-                     range, are determined by the current locale and the  val-
-                     ues  of the L\bLC\bC_\b_C\bCO\bOL\bLL\bLA\bAT\bTE\bE or L\bLC\bC_\b_A\bAL\bLL\bL shell variables, if set.
+                     in range expressions, and the characters included in  the
+                     range,  are determined by the current locale and the val-
+                     ues of the L\bLC\bC_\b_C\bCO\bOL\bLL\bLA\bAT\bTE\bE or L\bLC\bC_\b_A\bAL\bLL\bL shell variables, if  set.
                      To obtain the traditional interpretation of range expres-
-                     sions,  where [\b[a\ba-\b-d\bd]\b] is equivalent to [\b[a\bab\bbc\bcd\bd]\b], set value of
-                     the L\bLC\bC_\b_A\bAL\bLL\bL shell variable to C\bC, or enable  the  g\bgl\blo\bob\bba\bas\bsc\bci\bi-\b-
+                     sions, where [\b[a\ba-\b-d\bd]\b] is equivalent to [\b[a\bab\bbc\bcd\bd]\b], set value  of
+                     the  L\bLC\bC_\b_A\bAL\bLL\bL  shell variable to C\bC, or enable the g\bgl\blo\bob\bba\bas\bsc\bci\bi-\b-
                      i\bir\bra\ban\bng\bge\bes\bs shell option.  A -\b- may be matched by including it
-                     as the first or last character in the set.  A  ]\b]  may  be
-                     matched  by  including  it  as the first character in the
+                     as  the  first  or last character in the set.  A ]\b] may be
+                     matched by including it as the  first  character  in  the
                      set.
 
-                     Within [\b[ and ]\b], _\bc_\bh_\ba_\br_\ba_\bc_\bt_\be_\br _\bc_\bl_\ba_\bs_\bs_\be_\bs can be specified  using
+                     Within  [\b[ and ]\b], _\bc_\bh_\ba_\br_\ba_\bc_\bt_\be_\br _\bc_\bl_\ba_\bs_\bs_\be_\bs can be specified using
                      the syntax [\b[:\b:_\bc_\bl_\ba_\bs_\bs:\b:]\b], where _\bc_\bl_\ba_\bs_\bs is one of the following
                      classes defined in the POSIX standard:
-                     a\bal\bln\bnu\bum\ba\bal\blp\bph\bha\ba a\bas\bsc\bci\bii\bi b\bbl\bla\ban\bnk\bk c\bcn\bnt\btr\brl\bl  d\bdi\big\bgi\bit\bt  g\bgr\bra\bap\bph\bh  l\blo\bow\bwe\ber\b p\bpr\bri\bin\bnt\bt
+                     a\bal\bln\bnu\bum\b a\bal\blp\bph\bha\ba  a\bas\bsc\bci\bii\bi  b\bbl\bla\ban\bnk\bk  c\bcn\bnt\btr\brl\bl d\bdi\big\bgi\bit\bt g\bgr\bra\bap\bph\bh l\blo\bow\bwe\ber\br p\bpr\bri\bin\bnt\bt
                      p\bpu\bun\bnc\bct\bt s\bsp\bpa\bac\bce\be u\bup\bpp\bpe\ber\br w\bwo\bor\brd\bd x\bxd\bdi\big\bgi\bit\bt
                      A character class matches any character belonging to that
                      class.  The w\bwo\bor\brd\bd character class matches letters, digits,
                      and the character _.
 
                      Within [\b[ and ]\b], an _\be_\bq_\bu_\bi_\bv_\ba_\bl_\be_\bn_\bc_\be _\bc_\bl_\ba_\bs_\bs can be specified us-
-                     ing the syntax [\b[=\b=_\bc=\b=]\b], which matches all  characters  with
-                     the  same collation weight (as defined by the current lo-
+                     ing  the  syntax [\b[=\b=_\bc=\b=]\b], which matches all characters with
+                     the same collation weight (as defined by the current  lo-
                      cale) as the character _\bc.
 
                      Within [\b[ and ]\b], the syntax [\b[.\b._\bs_\by_\bm_\bb_\bo_\bl.\b.]\b] matches the collat-
                      ing symbol _\bs_\by_\bm_\bb_\bo_\bl.
 
-       If  the  e\bex\bxt\btg\bgl\blo\bob\bb  shell  option is enabled using the s\bsh\bho\bop\bpt\bt builtin, the
-       shell recognizes several extended pattern matching operators.   In  the
+       If the e\bex\bxt\btg\bgl\blo\bob\bb shell option is enabled using  the  s\bsh\bho\bop\bpt\bt  builtin,  the
+       shell  recognizes  several extended pattern matching operators.  In the
        following description, a _\bp_\ba_\bt_\bt_\be_\br_\bn_\b-_\bl_\bi_\bs_\bt is a list of one or more patterns
-       separated by a |\b|.  Composite patterns may be formed using one  or  more
+       separated  by  a |\b|.  Composite patterns may be formed using one or more
        of the following sub-patterns:
 
               ?\b?(\b(_\bp_\ba_\bt_\bt_\be_\br_\bn_\b-_\bl_\bi_\bs_\bt)\b)
@@ -2220,84 +2217,84 @@ E\bEX\bXP\bPA\bAN\bNS\bSI\bIO\bON\bN
                      Matches anything except one of the given patterns
 
        The e\bex\bxt\btg\bgl\blo\bob\bb option changes the behavior of the parser, since the paren-
-       theses are normally treated as operators with  syntactic  meaning.   To
-       ensure  that extended matching patterns are parsed correctly, make sure
-       that e\bex\bxt\btg\bgl\blo\bob\bb is enabled before parsing constructs containing  the  pat-
+       theses  are  normally  treated as operators with syntactic meaning.  To
+       ensure that extended matching patterns are parsed correctly, make  sure
+       that  e\bex\bxt\btg\bgl\blo\bob\bb  is enabled before parsing constructs containing the pat-
        terns, including shell functions and command substitutions.
 
        When matching filenames, the d\bdo\bot\btg\bgl\blo\bob\bb shell option determines the set of
-       filenames that are tested: when d\bdo\bot\btg\bgl\blo\bob\bb is enabled, the  set  of  file-
-       names  includes  all  files  beginning with ``.'', but ``.'' and ``..''
-       must be matched by a pattern or sub-pattern that  begins  with  a  dot;
-       when  it  is disabled, the set does not include any filenames beginning
-       with ``.'' unless the pattern or sub-pattern begins with a  ``.''.   As
+       filenames  that  are  tested: when d\bdo\bot\btg\bgl\blo\bob\bb is enabled, the set of file-
+       names includes all files beginning with ``.'',  but  ``.''  and  ``..''
+       must  be  matched  by  a pattern or sub-pattern that begins with a dot;
+       when it is disabled, the set does not include any  filenames  beginning
+       with  ``.''  unless the pattern or sub-pattern begins with a ``.''.  As
        above, ``.'' only has a special meaning when matching filenames.
 
        Complicated extended pattern matching against long strings is slow, es-
        pecially when the patterns contain alternations and the strings contain
-       multiple  matches.   Using separate matches against shorter strings, or
+       multiple matches.  Using separate matches against shorter  strings,  or
        using arrays of strings instead of a single long string, may be faster.
 
    Q\bQu\buo\bot\bte\be R\bRe\bem\bmo\bov\bva\bal\bl
        After the preceding expansions, all unquoted occurrences of the charac-
-       ters  \\b\,  '\b', and "\b" that did not result from one of the above expansions
+       ters \\b\, '\b', and "\b" that did not result from one of the  above  expansions
        are removed.
 
 R\bRE\bED\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\bN
-       Before a command is executed, its input and output  may  be  _\br_\be_\bd_\bi_\br_\be_\bc_\bt_\be_\bd
-       using  a special notation interpreted by the shell.  _\bR_\be_\bd_\bi_\br_\be_\bc_\bt_\bi_\bo_\bn allows
-       commands' file handles to be duplicated, opened, closed, made to  refer
+       Before  a  command  is executed, its input and output may be _\br_\be_\bd_\bi_\br_\be_\bc_\bt_\be_\bd
+       using a special notation interpreted by the shell.  _\bR_\be_\bd_\bi_\br_\be_\bc_\bt_\bi_\bo_\b allows
+       commands'  file handles to be duplicated, opened, closed, made to refer
        to different files, and can change the files the command reads from and
-       writes to.  Redirection may also be used to modify file handles in  the
-       current  shell execution environment.  The following redirection opera-
+       writes  to.  Redirection may also be used to modify file handles in the
+       current shell execution environment.  The following redirection  opera-
        tors may precede or appear anywhere within a _\bs_\bi_\bm_\bp_\bl_\be _\bc_\bo_\bm_\bm_\ba_\bn_\bd or may fol-
-       low  a  _\bc_\bo_\bm_\bm_\ba_\bn_\bd.   Redirections are processed in the order they appear,
+       low a _\bc_\bo_\bm_\bm_\ba_\bn_\bd.  Redirections are processed in the  order  they  appear,
        from left to right.
 
-       Each redirection that may be preceded by a file descriptor  number  may
+       Each  redirection  that may be preceded by a file descriptor number may
        instead be preceded by a word of the form {_\bv_\ba_\br_\bn_\ba_\bm_\be}.  In this case, for
        each redirection operator except >&- and <&-, the shell will allocate a
-       file  descriptor  greater than or equal to 10 and assign it to _\bv_\ba_\br_\bn_\ba_\bm_\be.
-       If >&- or <&- is preceded by {_\bv_\ba_\br_\bn_\ba_\bm_\be}, the value  of  _\bv_\ba_\br_\bn_\ba_\bm_\b defines
-       the  file descriptor to close.  If {_\bv_\ba_\br_\bn_\ba_\bm_\be} is supplied, the redirect-
-       ion persists beyond the scope of the command, allowing the  shell  pro-
+       file descriptor greater than or equal to 10 and assign it  to  _\bv_\ba_\br_\bn_\ba_\bm_\be.
+       If  >&-  or  <&- is preceded by {_\bv_\ba_\br_\bn_\ba_\bm_\be}, the value of _\bv_\ba_\br_\bn_\ba_\bm_\be defines
+       the file descriptor to close.  If {_\bv_\ba_\br_\bn_\ba_\bm_\be} is supplied, the  redirect-
+       ion  persists  beyond the scope of the command, allowing the shell pro-
        grammer  to  manage  the  file  descriptor's  lifetime  manually.   The
        v\bva\bar\brr\bre\bed\bdi\bir\br_\b_c\bcl\blo\bos\bse\be shell option manages this behavior.
 
-       In the following descriptions, if the file descriptor number  is  omit-
-       ted,  and the first character of the redirection operator is <\b<, the re-
-       direction refers to the standard input (file  descriptor  0).   If  the
-       first  character  of  the  redirection  operator  is >\b>, the redirection
+       In  the  following descriptions, if the file descriptor number is omit-
+       ted, and the first character of the redirection operator is <\b<, the  re-
+       direction  refers  to  the  standard input (file descriptor 0).  If the
+       first character of the  redirection  operator  is  >\b>,  the  redirection
        refers to the standard output (file descriptor 1).
 
-       The word following the redirection operator in the  following  descrip-
-       tions,  unless  otherwise noted, is subjected to brace expansion, tilde
-       expansion, parameter  and  variable  expansion,  command  substitution,
-       arithmetic  expansion,  quote  removal,  pathname  expansion,  and word
+       The  word  following the redirection operator in the following descrip-
+       tions, unless otherwise noted, is subjected to brace  expansion,  tilde
+       expansion,  parameter  and  variable  expansion,  command substitution,
+       arithmetic expansion,  quote  removal,  pathname  expansion,  and  word
        splitting.  If it expands to more than one word, b\bba\bas\bsh\bh reports an error.
 
-       Note that the order of redirections is significant.  For  example,  the
+       Note  that  the order of redirections is significant.  For example, the
        command
 
               ls >\b> dirlist 2>\b>&\b&1
 
-       directs  both  standard  output and standard error to the file _\bd_\bi_\br_\bl_\bi_\bs_\bt,
+       directs both standard output and standard error to  the  file  _\bd_\bi_\br_\bl_\bi_\bs_\bt,
        while the command
 
               ls 2>\b>&\b&1 >\b> dirlist
 
-       directs only the standard output to file _\bd_\bi_\br_\bl_\bi_\bs_\bt, because the  standard
-       error  was duplicated from the standard output before the standard out-
+       directs  only the standard output to file _\bd_\bi_\br_\bl_\bi_\bs_\bt, because the standard
+       error was duplicated from the standard output before the standard  out-
        put was redirected to _\bd_\bi_\br_\bl_\bi_\bs_\bt.
 
        B\bBa\bas\bsh\bh handles several filenames specially when they are used in redirec-
        tions, as described in the following table.  If the operating system on
        which b\bba\bas\bsh\bh is running provides these special files, bash will use them;
-       otherwise  it  will emulate them internally with the behavior described
+       otherwise it will emulate them internally with the  behavior  described
        below.
 
               /\b/d\bde\bev\bv/\b/f\bfd\bd/\b/_\bf_\bd
-                     If _\bf_\bd is a valid integer, file descriptor  _\bf_\bd  is  dupli-
+                     If  _\bf_\bd  is  a valid integer, file descriptor _\bf_\bd is dupli-
                      cated.
               /\b/d\bde\bev\bv/\b/s\bst\btd\bdi\bin\bn
                      File descriptor 0 is duplicated.
@@ -2307,22 +2304,22 @@ R\bRE\bED\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\bN
                      File descriptor 2 is duplicated.
               /\b/d\bde\bev\bv/\b/t\btc\bcp\bp/\b/_\bh_\bo_\bs_\bt/\b/_\bp_\bo_\br_\bt
                      If _\bh_\bo_\bs_\bt is a valid hostname or Internet address, and _\bp_\bo_\br_\bt
-                     is an integer port number or service name, b\bba\bas\bsh\b attempts
+                     is  an integer port number or service name, b\bba\bas\bsh\bh attempts
                      to open the corresponding TCP socket.
               /\b/d\bde\bev\bv/\b/u\bud\bdp\bp/\b/_\bh_\bo_\bs_\bt/\b/_\bp_\bo_\br_\bt
                      If _\bh_\bo_\bs_\bt is a valid hostname or Internet address, and _\bp_\bo_\br_\bt
-                     is an integer port number or service name, b\bba\bas\bsh\b attempts
+                     is  an integer port number or service name, b\bba\bas\bsh\bh attempts
                      to open the corresponding UDP socket.
 
        A failure to open or create a file causes the redirection to fail.
 
-       Redirections  using file descriptors greater than 9 should be used with
-       care, as they may conflict with file descriptors the shell uses  inter-
+       Redirections using file descriptors greater than 9 should be used  with
+       care,  as they may conflict with file descriptors the shell uses inter-
        nally.
 
    R\bRe\bed\bdi\bir\bre\bec\bct\bti\bin\bng\bg I\bIn\bnp\bpu\but\bt
        Redirection of input causes the file whose name results from the expan-
-       sion of _\bw_\bo_\br_\bd to be opened for reading on  file  descriptor  _\bn,  or  the
+       sion  of  _\bw_\bo_\br_\bd  to  be  opened for reading on file descriptor _\bn, or the
        standard input (file descriptor 0) if _\bn is not specified.
 
        The general format for redirecting input is:
@@ -2330,27 +2327,27 @@ R\bRE\bED\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\bN
               [_\bn]<\b<_\bw_\bo_\br_\bd
 
    R\bRe\bed\bdi\bir\bre\bec\bct\bti\bin\bng\bg O\bOu\but\btp\bpu\but\bt
-       Redirection  of  output causes the file whose name results from the ex-
-       pansion of _\bw_\bo_\br_\bd to be opened for writing on file descriptor _\bn,  or  the
+       Redirection of output causes the file whose name results from  the  ex-
+       pansion  of  _\bw_\bo_\br_\bd to be opened for writing on file descriptor _\bn, or the
        standard output (file descriptor 1) if _\bn is not specified.  If the file
-       does not exist it is created; if it does exist it is truncated to  zero
+       does  not exist it is created; if it does exist it is truncated to zero
        size.
 
        The general format for redirecting output is:
 
               [_\bn]>\b>_\bw_\bo_\br_\bd
 
-       If  the  redirection operator is >\b>, and the n\bno\boc\bcl\blo\bob\bbb\bbe\ber\br option to the s\bse\bet\bt
-       builtin has been enabled, the redirection will fail if the  file  whose
-       name  results  from the expansion of _\bw_\bo_\br_\bd exists and is a regular file.
+       If the redirection operator is >\b>, and the n\bno\boc\bcl\blo\bob\bbb\bbe\ber\br option to  the  s\bse\bet\bt
+       builtin  has  been enabled, the redirection will fail if the file whose
+       name results from the expansion of _\bw_\bo_\br_\bd exists and is a  regular  file.
        If the redirection operator is >\b>|\b|, or the redirection operator is >\b> and
        the n\bno\boc\bcl\blo\bob\bbb\bbe\ber\br option to the s\bse\bet\bt builtin command is not enabled, the re-
        direction is attempted even if the file named by _\bw_\bo_\br_\bd exists.
 
    A\bAp\bpp\bpe\ben\bnd\bdi\bin\bng\bg R\bRe\bed\bdi\bir\bre\bec\bct\bte\bed\bd O\bOu\but\btp\bpu\but\bt
-       Redirection of output in this fashion causes the file  whose  name  re-
+       Redirection  of  output  in this fashion causes the file whose name re-
        sults from the expansion of _\bw_\bo_\br_\bd to be opened for appending on file de-
-       scriptor _\bn, or the standard output (file descriptor  1)  if  _\bn  is  not
+       scriptor  _\bn,  or  the  standard  output (file descriptor 1) if _\bn is not
        specified.  If the file does not exist it is created.
 
        The general format for appending output is:
@@ -2358,11 +2355,11 @@ R\bRE\bED\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\bN
               [_\bn]>\b>>\b>_\bw_\bo_\br_\bd
 
    R\bRe\bed\bdi\bir\bre\bec\bct\bti\bin\bng\bg S\bSt\bta\ban\bnd\bda\bar\brd\bd O\bOu\but\btp\bpu\but\bt a\ban\bnd\bd S\bSt\bta\ban\bnd\bda\bar\brd\bd E\bEr\brr\bro\bor\br
-       This  construct allows both the standard output (file descriptor 1) and
-       the standard error output (file descriptor 2) to be redirected  to  the
+       This construct allows both the standard output (file descriptor 1)  and
+       the  standard  error output (file descriptor 2) to be redirected to the
        file whose name is the expansion of _\bw_\bo_\br_\bd.
 
-       There  are two formats for redirecting standard output and standard er-
+       There are two formats for redirecting standard output and standard  er-
        ror:
 
               &\b&>\b>_\bw_\bo_\br_\bd
@@ -2374,13 +2371,13 @@ R\bRE\bED\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\bN
 
               >\b>_\bw_\bo_\br_\bd 2>\b>&\b&1
 
-       When  using  the second form, _\bw_\bo_\br_\bd may not expand to a number or -\b-.  If
-       it does, other redirection operators apply (see  D\bDu\bup\bpl\bli\bic\bca\bat\bti\bin\bng\bg  F\bFi\bil\ble\b D\bDe\be-\b-
+       When using the second form, _\bw_\bo_\br_\bd may not expand to a number or  -\b-.   If
+       it  does,  other  redirection operators apply (see D\bDu\bup\bpl\bli\bic\bca\bat\bti\bin\bng\bg F\bFi\bil\ble\be D\bDe\be-\b-
        s\bsc\bcr\bri\bip\bpt\bto\bor\brs\bs below) for compatibility reasons.
 
    A\bAp\bpp\bpe\ben\bnd\bdi\bin\bng\bg S\bSt\bta\ban\bnd\bda\bar\brd\bd O\bOu\but\btp\bpu\but\bt a\ban\bnd\bd S\bSt\bta\ban\bnd\bda\bar\brd\bd E\bEr\brr\bro\bor\br
-       This  construct allows both the standard output (file descriptor 1) and
-       the standard error output (file descriptor 2) to  be  appended  to  the
+       This construct allows both the standard output (file descriptor 1)  and
+       the  standard  error  output  (file descriptor 2) to be appended to the
        file whose name is the expansion of _\bw_\bo_\br_\bd.
 
        The format for appending standard output and standard error is:
@@ -2394,10 +2391,10 @@ R\bRE\bED\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\bN
        (see D\bDu\bup\bpl\bli\bic\bca\bat\bti\bin\bng\bg F\bFi\bil\ble\be D\bDe\bes\bsc\bcr\bri\bip\bpt\bto\bor\brs\bs below).
 
    H\bHe\ber\bre\be D\bDo\boc\bcu\bum\bme\ben\bnt\bts\bs
-       This  type  of  redirection  instructs the shell to read input from the
+       This type of redirection instructs the shell to  read  input  from  the
        current source until a line containing only _\bd_\be_\bl_\bi_\bm_\bi_\bt_\be_\br (with no trailing
-       blanks)  is seen.  All of the lines read up to that point are then used
-       as the standard input (or file descriptor _\bn if _\bn is  specified)  for  a
+       blanks) is seen.  All of the lines read up to that point are then  used
+       as  the  standard  input (or file descriptor _\bn if _\bn is specified) for a
        command.
 
        The format of here-documents is:
@@ -2406,19 +2403,19 @@ R\bRE\bED\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\bN
                       _\bh_\be_\br_\be_\b-_\bd_\bo_\bc_\bu_\bm_\be_\bn_\bt
               _\bd_\be_\bl_\bi_\bm_\bi_\bt_\be_\br
 
-       No  parameter  and variable expansion, command substitution, arithmetic
+       No parameter and variable expansion, command  substitution,  arithmetic
        expansion, or pathname expansion is performed on _\bw_\bo_\br_\bd.
 
        If any part of _\bw_\bo_\br_\bd is quoted, the _\bd_\be_\bl_\bi_\bm_\bi_\bt_\be_\br is the result of quote re-
        moval on _\bw_\bo_\br_\bd, and the lines in the here-document are not expanded.  If
-       _\bw_\bo_\br_\bis unquoted, the _\bd_\be_\bl_\bi_\bm_\bi_\bt_\be_\br is _\bw_\bo_\br_\bd itself, all lines of the  here-
-       document  are  subjected  to parameter expansion, command substitution,
+       _\bw_\bo_\br_\b is unquoted, the _\bd_\be_\bl_\bi_\bm_\bi_\bt_\be_\br is _\bw_\bo_\br_\bd itself, all lines of the here-
+       document are subjected to parameter  expansion,  command  substitution,
        and arithmetic expansion, the character sequence \\b\<\b<n\bne\bew\bwl\bli\bin\bne\be>\b> is ignored,
        and \\b\ must be used to quote the characters \\b\, $\b$, and `\b`.
 
        If the redirection operator is <\b<<\b<-\b-, then all leading tab characters are
-       stripped from input lines and the line containing _\bd_\be_\bl_\bi_\bm_\bi_\bt_\be_\br.  This  al-
-       lows  here-documents  within  shell scripts to be indented in a natural
+       stripped  from input lines and the line containing _\bd_\be_\bl_\bi_\bm_\bi_\bt_\be_\br.  This al-
+       lows here-documents within shell scripts to be indented  in  a  natural
        fashion.
 
    H\bHe\ber\bre\be S\bSt\btr\bri\bin\bng\bgs\bs
@@ -2426,9 +2423,9 @@ R\bRE\bED\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\bN
 
               [_\bn]<\b<<\b<<\b<_\bw_\bo_\br_\bd
 
-       The _\bw_\bo_\br_\bd undergoes tilde expansion, parameter and  variable  expansion,
-       command  substitution,  arithmetic expansion, and quote removal.  Path-
-       name expansion and word splitting are not  performed.   The  result  is
+       The  _\bw_\bo_\br_\bd  undergoes tilde expansion, parameter and variable expansion,
+       command substitution, arithmetic expansion, and quote  removal.   Path-
+       name  expansion  and  word  splitting are not performed.  The result is
        supplied as a single string, with a newline appended, to the command on
        its standard input (or file descriptor _\bn if _\bn is specified).
 
@@ -2438,8 +2435,8 @@ R\bRE\bED\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\bN
               [_\bn]<\b<&\b&_\bw_\bo_\br_\bd
 
        is used to duplicate input file descriptors.  If _\bw_\bo_\br_\bd expands to one or
-       more  digits,  the file descriptor denoted by _\bn is made to be a copy of
-       that file descriptor.  If the digits in _\bw_\bo_\br_\bd do not specify a file  de-
+       more digits, the file descriptor denoted by _\bn is made to be a  copy  of
+       that  file descriptor.  If the digits in _\bw_\bo_\br_\bd do not specify a file de-
        scriptor open for input, a redirection error occurs.  If _\bw_\bo_\br_\bd evaluates
        to -\b-, file descriptor _\bn is closed.  If _\bn is not specified, the standard
        input (file descriptor 0) is used.
@@ -2448,12 +2445,12 @@ R\bRE\bED\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\bN
 
               [_\bn]>\b>&\b&_\bw_\bo_\br_\bd
 
-       is  used  similarly  to duplicate output file descriptors.  If _\bn is not
-       specified, the standard output (file descriptor 1)  is  used.   If  the
-       digits  in _\bw_\bo_\br_\bd do not specify a file descriptor open for output, a re-
-       direction error occurs.  If _\bw_\bo_\br_\bd evaluates to -\b-, file descriptor  _\b is
-       closed.   As  a special case, if _\bn is omitted, and _\bw_\bo_\br_\bd does not expand
-       to one or more digits or -\b-, the standard output and standard error  are
+       is used similarly to duplicate output file descriptors.  If  _\bn  is  not
+       specified,  the  standard  output  (file descriptor 1) is used.  If the
+       digits in _\bw_\bo_\br_\bd do not specify a file descriptor open for output, a  re-
+       direction  error  occurs.  If _\bw_\bo_\br_\bd evaluates to -\b-, file descriptor _\bn is
+       closed.  As a special case, if _\bn is omitted, and _\bw_\bo_\br_\bd does  not  expand
+       to  one or more digits or -\b-, the standard output and standard error are
        redirected as described previously.
 
    M\bMo\bov\bvi\bin\bng\bg F\bFi\bil\ble\be D\bDe\bes\bsc\bcr\bri\bip\bpt\bto\bor\brs\bs
@@ -2461,7 +2458,7 @@ R\bRE\bED\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\bN
 
               [_\bn]<\b<&\b&_\bd_\bi_\bg_\bi_\bt-\b-
 
-       moves  the  file descriptor _\bd_\bi_\bg_\bi_\bt to file descriptor _\bn, or the standard
+       moves the file descriptor _\bd_\bi_\bg_\bi_\bt to file descriptor _\bn, or  the  standard
        input (file descriptor 0) if _\bn is not specified.  _\bd_\bi_\bg_\bi_\bt is closed after
        being duplicated to _\bn.
 
@@ -2469,7 +2466,7 @@ R\bRE\bED\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\bN
 
               [_\bn]>\b>&\b&_\bd_\bi_\bg_\bi_\bt-\b-
 
-       moves  the  file descriptor _\bd_\bi_\bg_\bi_\bt to file descriptor _\bn, or the standard
+       moves the file descriptor _\bd_\bi_\bg_\bi_\bt to file descriptor _\bn, or  the  standard
        output (file descriptor 1) if _\bn is not specified.
 
    O\bOp\bpe\ben\bni\bin\bng\bg F\bFi\bil\ble\be D\bDe\bes\bsc\bcr\bri\bip\bpt\bto\bor\brs\bs f\bfo\bor\br R\bRe\bea\bad\bdi\bin\bng\bg a\ban\bnd\bd W\bWr\bri\bit\bti\bin\bng\bg
@@ -2477,30 +2474,30 @@ R\bRE\bED\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\bN
 
               [_\bn]<\b<>\b>_\bw_\bo_\br_\bd
 
-       causes the file whose name is the expansion of _\bw_\bo_\br_\bd to  be  opened  for
-       both  reading and writing on file descriptor _\bn, or on file descriptor 0
+       causes  the  file  whose name is the expansion of _\bw_\bo_\br_\bd to be opened for
+       both reading and writing on file descriptor _\bn, or on file descriptor  0
        if _\bn is not specified.  If the file does not exist, it is created.
 
 A\bAL\bLI\bIA\bAS\bSE\bES\bS
-       _\bA_\bl_\bi_\ba_\bs_\be_\ballow a string to be substituted for a word that is in a  posi-
-       tion  in  the input where it can be the first word of a simple command.
-       Aliases have names and corresponding values that are set and unset  us-
-       ing  the a\bal\bli\bia\bas\bs and u\bun\bna\bal\bli\bia\bas\bs builtin commands (see S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
+       _\bA_\bl_\bi_\ba_\bs_\be_\b allow a string to be substituted for a word that is in a posi-
+       tion in the input where it can be the first word of a  simple  command.
+       Aliases  have names and corresponding values that are set and unset us-
+       ing the a\bal\bli\bia\bas\bs and u\bun\bna\bal\bli\bia\bas\bs builtin commands (see S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\b C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
        below).
 
-       If the shell reads an unquoted word in the right  position,  it  checks
-       the  word  to see if it matches an alias name. If it matches, the shell
-       replaces the word with the alias value, and reads that value as  if  it
+       If  the  shell  reads an unquoted word in the right position, it checks
+       the word to see if it matches an alias name. If it matches,  the  shell
+       replaces  the  word with the alias value, and reads that value as if it
        had been read instead of the word.  The shell doesn't look at any char-
        acters following the word before attempting alias substitution.
 
-       The characters /\b/, $\b$, `\b`, and =\b= and any of the  shell  _\bm_\be_\bt_\ba_\bc_\bh_\ba_\br_\ba_\bc_\bt_\be_\br_\b or
-       quoting  characters  listed above may not appear in an alias name.  The
-       replacement text may contain any valid  shell  input,  including  shell
-       metacharacters.   The  first word of the replacement text is tested for
+       The  characters  /\b/,  $\b$, `\b`, and =\b= and any of the shell _\bm_\be_\bt_\ba_\bc_\bh_\ba_\br_\ba_\bc_\bt_\be_\br_\bs or
+       quoting characters listed above may not appear in an alias  name.   The
+       replacement  text  may  contain  any valid shell input, including shell
+       metacharacters.  The first word of the replacement text is  tested  for
        aliases, but a word that is identical to an alias being expanded is not
        expanded a second time.  This means that one may alias l\bls\bs to l\bls\bs -\b-F\bF, for
-       instance, and b\bba\bas\bsh\bh does not try to recursively expand  the  replacement
+       instance,  and  b\bba\bas\bsh\bh does not try to recursively expand the replacement
        text.
 
        If the last character of the alias value is a _\bb_\bl_\ba_\bn_\bk, then the next com-
@@ -2509,129 +2506,129 @@ A\bAL\bLI\bIA\bAS\bSE\bES\bS
        Aliases are created and listed with the a\bal\bli\bia\bas\bs command, and removed with
        the u\bun\bna\bal\bli\bia\bas\bs command.
 
-       There  is no mechanism for using arguments in the replacement text.  If
+       There is no mechanism for using arguments in the replacement text.   If
        arguments are needed, use a shell function (see F\bFU\bUN\bNC\bCT\bTI\bIO\bON\bNS\bS below).
 
-       Aliases are not expanded when the shell is not interactive, unless  the
-       e\bex\bxp\bpa\ban\bnd\bd_\b_a\bal\bli\bia\bas\bse\bes\b shell option is set using s\bsh\bho\bop\bpt\bt (see the description of
+       Aliases  are not expanded when the shell is not interactive, unless the
+       e\bex\bxp\bpa\ban\bnd\bd_\b_a\bal\bli\bia\bas\bse\bes\bshell option is set using s\bsh\bho\bop\bpt\bt (see the description  of
        s\bsh\bho\bop\bpt\bt under S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below).
 
-       The rules concerning the definition and use  of  aliases  are  somewhat
-       confusing.   B\bBa\bas\bsh\bh always reads at least one complete line of input, and
-       all lines that make up a compound command, before executing any of  the
-       commands  on  that  line or the compound command.  Aliases are expanded
-       when a command is read, not when it is executed.  Therefore,  an  alias
-       definition  appearing on the same line as another command does not take
-       effect until the next line of input is read.   The  commands  following
-       the  alias  definition  on that line are not affected by the new alias.
-       This behavior is also an issue when functions  are  executed.   Aliases
-       are  expanded when a function definition is read, not when the function
-       is executed, because a function definition is itself a command.   As  a
-       consequence,  aliases defined in a function are not available until af-
-       ter that function is executed.  To be safe, always  put  alias  defini-
+       The  rules  concerning  the  definition and use of aliases are somewhat
+       confusing.  B\bBa\bas\bsh\bh always reads at least one complete line of input,  and
+       all  lines that make up a compound command, before executing any of the
+       commands on that line or the compound command.   Aliases  are  expanded
+       when  a  command is read, not when it is executed.  Therefore, an alias
+       definition appearing on the same line as another command does not  take
+       effect  until  the  next line of input is read.  The commands following
+       the alias definition on that line are not affected by  the  new  alias.
+       This  behavior  is  also an issue when functions are executed.  Aliases
+       are expanded when a function definition is read, not when the  function
+       is  executed,  because a function definition is itself a command.  As a
+       consequence, aliases defined in a function are not available until  af-
+       ter  that  function  is executed.  To be safe, always put alias defini-
        tions on a separate line, and do not use a\bal\bli\bia\bas\bs in compound commands.
 
        For almost every purpose, aliases are superseded by shell functions.
 
 F\bFU\bUN\bNC\bCT\bTI\bIO\bON\bNS\bS
-       A  shell  function,  defined  as  described  above under S\bSH\bHE\bEL\bLL\bL G\bGR\bRA\bAM\bMM\bMA\bAR\bR,
-       stores a series of commands for later execution.  When the  name  of  a
-       shell  function  is used as a simple command name, the list of commands
+       A shell function, defined  as  described  above  under  S\bSH\bHE\bEL\bLL\b G\bGR\bRA\bAM\bMM\bMA\bAR\bR,
+       stores  a  series  of commands for later execution.  When the name of a
+       shell function is used as a simple command name, the list  of  commands
        associated with that function name is executed.  Functions are executed
-       in  the  context of the current shell; no new process is created to in-
-       terpret them (contrast this with the  execution  of  a  shell  script).
-       When  a  function is executed, the arguments to the function become the
+       in the context of the current shell; no new process is created  to  in-
+       terpret  them  (contrast  this  with  the execution of a shell script).
+       When a function is executed, the arguments to the function  become  the
        positional parameters during its execution.  The special parameter #\b# is
-       updated  to reflect the change.  Special parameter 0\b0 is unchanged.  The
-       first element of the F\bFU\bUN\bNC\bCN\bNA\bAM\bME\bE variable is set to the name of the  func-
+       updated to reflect the change.  Special parameter 0\b0 is unchanged.   The
+       first  element of the F\bFU\bUN\bNC\bCN\bNA\bAM\bME\bE variable is set to the name of the func-
        tion while the function is executing.
 
-       All  other aspects of the shell execution environment are identical be-
-       tween a function and its caller with these exceptions:  the  D\bDE\bEB\bBU\bUG\b and
-       R\bRE\bET\bTU\bUR\bRN\b traps  (see  the  description  of  the t\btr\bra\bap\bp builtin under S\bSH\bHE\bEL\bLL\bL
-       B\bBU\bUI\bIL\bLT\bTI\bIN\bC\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below) are not inherited unless the function has  been
-       given  the  t\btr\bra\bac\bce\be attribute (see the description of the d\bde\bec\bcl\bla\bar\bre\be builtin
-       below) or the -\b-o\bo f\bfu\bun\bnc\bct\btr\bra\bac\bce\be shell option has been enabled with  the  s\bse\bet\bt
-       builtin  (in  which  case  all  functions  inherit the D\bDE\bEB\bBU\bUG\bG and R\bRE\bET\bTU\bUR\bRN\bN
-       traps), and the E\bER\bRR\bR trap is not inherited unless the -\b-o\bo e\ber\brr\brt\btr\bra\bac\bce\b shell
+       All other aspects of the shell execution environment are identical  be-
+       tween  a  function  and its caller with these exceptions: the D\bDE\bEB\bBU\bUG\bG and
+       R\bRE\bET\bTU\bUR\bRN\btraps (see the description  of  the  t\btr\bra\bap\bp  builtin  under  S\bSH\bHE\bEL\bLL\bL
+       B\bBU\bUI\bIL\bLT\bTI\bIN\b C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below) are not inherited unless the function has been
+       given the t\btr\bra\bac\bce\be attribute (see the description of the  d\bde\bec\bcl\bla\bar\bre\b builtin
+       below)  or  the -\b-o\bo f\bfu\bun\bnc\bct\btr\bra\bac\bce\be shell option has been enabled with the s\bse\bet\bt
+       builtin (in which case all  functions  inherit  the  D\bDE\bEB\bBU\bUG\bG  and  R\bRE\bET\bTU\bUR\bRN\bN
+       traps),  and the E\bER\bRR\bR trap is not inherited unless the -\b-o\bo e\ber\brr\brt\btr\bra\bac\bce\be shell
        option has been enabled.
 
-       Variables  local to the function may be declared with the l\blo\boc\bca\bal\bl builtin
-       command (_\bl_\bo_\bc_\ba_\bl _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be_\bs).  Ordinarily, variables and their values  are
-       shared  between the function and its caller.  If a variable is declared
-       l\blo\boc\bca\bal\bl, the variable's visible scope is restricted to that function  and
+       Variables local to the function may be declared with the l\blo\boc\bca\bal\b builtin
+       command  (_\bl_\bo_\bc_\ba_\bl _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be_\bs).  Ordinarily, variables and their values are
+       shared between the function and its caller.  If a variable is  declared
+       l\blo\boc\bca\bal\bl,  the variable's visible scope is restricted to that function and
        its children (including the functions it calls).
 
        In the following description, the _\bc_\bu_\br_\br_\be_\bn_\bt _\bs_\bc_\bo_\bp_\be is a currently- execut-
        ing function.  Previous scopes consist of that function's caller and so
-       on,  back  to  the "global" scope, where the shell is not executing any
+       on, back to the "global" scope, where the shell is  not  executing  any
        shell function.  Consequently, a local variable at the current scope is
        a variable declared using the l\blo\boc\bca\bal\bl or d\bde\bec\bcl\bla\bar\bre\be builtins in the function
        that is currently executing.
 
-       Local variables "shadow" variables with the same name declared at  pre-
-       vious  scopes.   For  instance, a local variable declared in a function
-       hides a global variable of the same name:  references  and  assignments
-       refer  to  the  local variable, leaving the global variable unmodified.
+       Local  variables "shadow" variables with the same name declared at pre-
+       vious scopes.  For instance, a local variable declared  in  a  function
+       hides  a  global  variable of the same name: references and assignments
+       refer to the local variable, leaving the  global  variable  unmodified.
        When the function returns, the global variable is once again visible.
 
-       The shell uses _\bd_\by_\bn_\ba_\bm_\bi_\bc  _\bs_\bc_\bo_\bp_\bi_\bn_\bg  to  control  a  variable's  visibility
-       within  functions.   With  dynamic scoping, visible variables and their
-       values are a result of the sequence of function calls that caused  exe-
-       cution  to  reach the current function.  The value of a variable that a
-       function sees depends on its value within its caller, if  any,  whether
-       that  caller  is the "global" scope or another shell function.  This is
-       also the value that a local variable  declaration  "shadows",  and  the
+       The  shell  uses  _\bd_\by_\bn_\ba_\bm_\bi_\bc  _\bs_\bc_\bo_\bp_\bi_\bn_\bg  to  control a variable's visibility
+       within functions.  With dynamic scoping, visible  variables  and  their
+       values  are a result of the sequence of function calls that caused exe-
+       cution to reach the current function.  The value of a variable  that  a
+       function  sees  depends on its value within its caller, if any, whether
+       that caller is the "global" scope or another shell function.   This  is
+       also  the  value  that  a local variable declaration "shadows", and the
        value that is restored when the function returns.
 
-       For  example, if a variable _\bv_\ba_\br is declared as local in function _\bf_\bu_\bn_\bc_\b1,
-       and _\bf_\bu_\bn_\bc_\b1 calls another function _\bf_\bu_\bn_\bc_\b2, references  to  _\bv_\ba_\br  made  from
+       For example, if a variable _\bv_\ba_\br is declared as local in function  _\bf_\bu_\bn_\bc_\b1,
+       and  _\bf_\bu_\bn_\bc_\b1  calls  another  function _\bf_\bu_\bn_\bc_\b2, references to _\bv_\ba_\br made from
        within _\bf_\bu_\bn_\bc_\b2 will resolve to the local variable _\bv_\ba_\br from _\bf_\bu_\bn_\bc_\b1, shadow-
        ing any global variable named _\bv_\ba_\br.
 
        The u\bun\bns\bse\bet\bt builtin also acts using the same dynamic scope: if a variable
        is local to the current scope, u\bun\bns\bse\bet\bt will unset it; otherwise the unset
-       will refer to the variable found in  any  calling  scope  as  described
-       above.   If a variable at the current local scope is unset, it will re-
-       main so (appearing as unset) until it is reset in that scope  or  until
-       the  function  returns.  Once the function returns, any instance of the
+       will  refer  to  the  variable  found in any calling scope as described
+       above.  If a variable at the current local scope is unset, it will  re-
+       main  so  (appearing as unset) until it is reset in that scope or until
+       the function returns.  Once the function returns, any instance  of  the
        variable at a previous scope will become visible.  If the unset acts on
-       a  variable  at  a previous scope, any instance of a variable with that
-       name that had been shadowed will become visible (see below how the  l\blo\bo-\b-
+       a variable at a previous scope, any instance of a  variable  with  that
+       name  that had been shadowed will become visible (see below how the l\blo\bo-\b-
        c\bca\bal\blv\bva\bar\br_\b_u\bun\bns\bse\bet\bt shell option changes this behavior).
 
-       The  F\bFU\bUN\bNC\bCN\bNE\bES\bST\bT  variable,  if set to a numeric value greater than 0, de-
-       fines a maximum function nesting level.  Function invocations that  ex-
+       The F\bFU\bUN\bNC\bCN\bNE\bES\bST\bT variable, if set to a numeric value greater  than  0,  de-
+       fines  a maximum function nesting level.  Function invocations that ex-
        ceed the limit cause the entire command to abort.
 
-       If  the  builtin command r\bre\bet\btu\bur\brn\bn is executed in a function, the function
-       completes and execution resumes with the next command after  the  func-
+       If the builtin command r\bre\bet\btu\bur\brn\bn is executed in a function,  the  function
+       completes  and  execution resumes with the next command after the func-
        tion call.  Any command associated with the R\bRE\bET\bTU\bUR\bRN\bN trap is executed be-
-       fore execution resumes.  When a function completes, the values  of  the
-       positional  parameters  and the special parameter #\b# are restored to the
+       fore  execution  resumes.  When a function completes, the values of the
+       positional parameters and the special parameter #\b# are restored  to  the
        values they had prior to the function's execution.
 
-       Function names and definitions may be listed with the -\b-f\bf option to  the
+       Function  names and definitions may be listed with the -\b-f\bf option to the
        d\bde\bec\bcl\bla\bar\bre\be or t\bty\byp\bpe\bes\bse\bet\bt builtin commands.  The -\b-F\bF option to d\bde\bec\bcl\bla\bar\bre\be or t\bty\byp\bpe\be-\b-
-       s\bse\bet\bwill list the function names only (and optionally the  source  file
-       and  line  number, if the e\bex\bxt\btd\bde\beb\bbu\bug\bg shell option is enabled).  Functions
-       may be exported so that child shell processes (those created when  exe-
-       cuting  a  separate  shell  invocation) automatically have them defined
+       s\bse\bet\b will  list the function names only (and optionally the source file
+       and line number, if the e\bex\bxt\btd\bde\beb\bbu\bug\bg shell option is  enabled).   Functions
+       may  be exported so that child shell processes (those created when exe-
+       cuting a separate shell invocation)  automatically  have  them  defined
        with the -\b-f\bf option to the e\bex\bxp\bpo\bor\brt\bt builtin.  A function definition may be
        deleted using the -\b-f\bf option to the u\bun\bns\bse\bet\bt builtin.
 
        Functions may be recursive.  The F\bFU\bUN\bNC\bCN\bNE\bES\bST\bT variable may be used to limit
-       the depth of the function call stack and restrict the number  of  func-
+       the  depth  of the function call stack and restrict the number of func-
        tion invocations.  By default, no limit is imposed on the number of re-
        cursive calls.
 
 A\bAR\bRI\bIT\bTH\bHM\bME\bET\bTI\bIC\bC E\bEV\bVA\bAL\bLU\bUA\bAT\bTI\bIO\bON\bN
-       The shell allows arithmetic expressions to be evaluated, under  certain
-       circumstances  (see  the  l\ble\bet\bt and d\bde\bec\bcl\bla\bar\bre\be builtin commands, the (\b((\b( com-
+       The  shell allows arithmetic expressions to be evaluated, under certain
+       circumstances (see the l\ble\bet\bt and d\bde\bec\bcl\bla\bar\bre\be builtin commands,  the  (\b((\b com-
        pound command, and A\bAr\bri\bit\bth\bhm\bme\bet\bti\bic\bc E\bEx\bxp\bpa\ban\bns\bsi\bio\bon\bn).  Evaluation is done in fixed-
-       width  integers  with  no  check  for overflow, though division by 0 is
-       trapped and flagged as an error.  The operators and  their  precedence,
-       associativity,  and values are the same as in the C language.  The fol-
+       width integers with no check for overflow,  though  division  by  0  is
+       trapped  and  flagged as an error.  The operators and their precedence,
+       associativity, and values are the same as in the C language.  The  fol-
        lowing list of operators is grouped into levels of equal-precedence op-
        erators.  The levels are listed in order of decreasing precedence.
 
@@ -2660,55 +2657,55 @@ A\bAR\bRI\bIT\bTH\bHM\bME\bET\bTI\bIC\bC E\bEV\bVA\bAL\bLU\bUA\bAT\bTI\bIO\bON\bN
        _\be_\bx_\bp_\br_\b1 ,\b, _\be_\bx_\bp_\br_\b2
               comma
 
-       Shell  variables  are  allowed as operands; parameter expansion is per-
+       Shell variables are allowed as operands; parameter  expansion  is  per-
        formed before the expression is evaluated.  Within an expression, shell
-       variables  may  also  be referenced by name without using the parameter
-       expansion syntax.  A shell variable that is null or unset evaluates  to
+       variables may also be referenced by name without  using  the  parameter
+       expansion  syntax.  A shell variable that is null or unset evaluates to
        0 when referenced by name without using the parameter expansion syntax.
-       The value of a variable is evaluated as an arithmetic  expression  when
-       it  is  referenced, or when a variable which has been given the _\bi_\bn_\bt_\be_\bg_\be_\br
+       The  value  of a variable is evaluated as an arithmetic expression when
+       it is referenced, or when a variable which has been given  the  _\bi_\bn_\bt_\be_\bg_\be_\br
        attribute using d\bde\bec\bcl\bla\bar\bre\be -\b-i\bi is assigned a value.  A null value evaluates
-       to  0.   A shell variable need not have its _\bi_\bn_\bt_\be_\bg_\be_\br attribute turned on
+       to 0.  A shell variable need not have its _\bi_\bn_\bt_\be_\bg_\be_\br attribute  turned  on
        to be used in an expression.
 
        Integer constants follow the C language definition, without suffixes or
        character constants.  Constants with a leading 0 are interpreted as oc-
-       tal numbers.  A leading 0x or 0X denotes hexadecimal.  Otherwise,  num-
-       bers  take the form [_\bb_\ba_\bs_\be_\b#]n, where the optional _\bb_\ba_\bs_\be is a decimal num-
-       ber between 2 and 64 representing the arithmetic base, and _\bn is a  num-
-       ber  in  that  base.   If _\bb_\ba_\bs_\be_\b# is omitted, then base 10 is used.  When
+       tal  numbers.  A leading 0x or 0X denotes hexadecimal.  Otherwise, num-
+       bers take the form [_\bb_\ba_\bs_\be_\b#]n, where the optional _\bb_\ba_\bs_\be is a decimal  num-
+       ber  between 2 and 64 representing the arithmetic base, and _\bn is a num-
+       ber in that base.  If _\bb_\ba_\bs_\be_\b# is omitted, then base  10  is  used.   When
        specifying _\bn, if a non-digit is required, the digits greater than 9 are
-       represented  by the lowercase letters, the uppercase letters, @, and _,
-       in that order.  If _\bb_\ba_\bs_\be is less than or equal to 36, lowercase and  up-
-       percase  letters  may  be used interchangeably to represent numbers be-
+       represented by the lowercase letters, the uppercase letters, @, and  _,
+       in  that order.  If _\bb_\ba_\bs_\be is less than or equal to 36, lowercase and up-
+       percase letters may be used interchangeably to  represent  numbers  be-
        tween 10 and 35.
 
-       Operators are evaluated in order  of  precedence.   Sub-expressions  in
-       parentheses  are  evaluated first and may override the precedence rules
+       Operators  are  evaluated  in  order of precedence.  Sub-expressions in
+       parentheses are evaluated first and may override the  precedence  rules
        above.
 
 C\bCO\bON\bND\bDI\bIT\bTI\bIO\bON\bNA\bAL\bL E\bEX\bXP\bPR\bRE\bES\bSS\bSI\bIO\bON\bNS\bS
-       Conditional expressions are used by the [\b[[\b[  compound  command  and  the
-       t\bte\bes\bst\b and [\b[ builtin commands to test file attributes and perform string
-       and arithmetic comparisons.  The t\bte\bes\bst\bt and [\b[  commands  determine  their
-       behavior  based  on  the  number  of arguments; see the descriptions of
+       Conditional  expressions  are  used  by the [\b[[\b[ compound command and the
+       t\bte\bes\bst\band [\b[ builtin commands to test file attributes and perform  string
+       and  arithmetic  comparisons.   The t\bte\bes\bst\bt and [\b[ commands determine their
+       behavior based on the number of  arguments;  see  the  descriptions  of
        those commands for any other command-specific actions.
 
-       Expressions are formed from the following unary  or  binary  primaries.
-       B\bBa\bas\bsh\b handles several filenames specially when they are used in expres-
+       Expressions  are  formed  from the following unary or binary primaries.
+       B\bBa\bas\bsh\bhandles several filenames specially when they are used in  expres-
        sions.  If the operating system on which b\bba\bas\bsh\bh is running provides these
-       special  files,  bash will use them; otherwise it will emulate them in-
-       ternally with this behavior: If any _\bf_\bi_\bl_\be argument to one  of  the  pri-
+       special files, bash will use them; otherwise it will emulate  them  in-
+       ternally  with  this  behavior: If any _\bf_\bi_\bl_\be argument to one of the pri-
        maries is of the form _\b/_\bd_\be_\bv_\b/_\bf_\bd_\b/_\bn, then file descriptor _\bn is checked.  If
-       the _\bf_\bi_\bl_\be argument to  one  of  the  primaries  is  one  of  _\b/_\bd_\be_\bv_\b/_\bs_\bt_\bd_\bi_\bn,
-       _\b/_\bd_\be_\bv_\b/_\bs_\bt_\bd_\bo_\bu_\bt,  or _\b/_\bd_\be_\bv_\b/_\bs_\bt_\bd_\be_\br_\br, file descriptor 0, 1, or 2, respectively,
+       the  _\bf_\bi_\bl_\be  argument  to  one  of  the  primaries  is one of _\b/_\bd_\be_\bv_\b/_\bs_\bt_\bd_\bi_\bn,
+       _\b/_\bd_\be_\bv_\b/_\bs_\bt_\bd_\bo_\bu_\bt, or _\b/_\bd_\be_\bv_\b/_\bs_\bt_\bd_\be_\br_\br, file descriptor 0, 1, or 2,  respectively,
        is checked.
 
        Unless otherwise specified, primaries that operate on files follow sym-
        bolic links and operate on the target of the link, rather than the link
        itself.
 
-       When used with [\b[[\b[, the <\b< and >\b> operators sort  lexicographically  using
+       When  used  with [\b[[\b[, the <\b< and >\b> operators sort lexicographically using
        the current locale.  The t\bte\bes\bst\bt command sorts using ASCII ordering.
 
        -\b-a\ba _\bf_\bi_\bl_\be
@@ -2747,30 +2744,30 @@ C\bCO\bON\bND\bDI\bIT\bTI\bIO\bON\bNA\bAL\bL E\bEX\bXP\bPR\bRE\bES\bSS\bSI\bIO\bON\bNS\bS
        -\b-L\bL _\bf_\bi_\bl_\be
               True if _\bf_\bi_\bl_\be exists and is a symbolic link.
        -\b-N\bN _\bf_\bi_\bl_\be
-              True  if  _\bf_\bi_\bl_\be  exists  and  has been modified since it was last
+              True if _\bf_\bi_\bl_\be exists and has been  modified  since  it  was  last
               read.
        -\b-O\bO _\bf_\bi_\bl_\be
               True if _\bf_\bi_\bl_\be exists and is owned by the effective user id.
        -\b-S\bS _\bf_\bi_\bl_\be
               True if _\bf_\bi_\bl_\be exists and is a socket.
        _\bf_\bi_\bl_\be_\b1 -\b-e\bef\bf _\bf_\bi_\bl_\be_\b2
-              True if _\bf_\bi_\bl_\be_\b1 and _\bf_\bi_\bl_\be_\b2 refer to the same device and inode  num-
+              True  if _\bf_\bi_\bl_\be_\b1 and _\bf_\bi_\bl_\be_\b2 refer to the same device and inode num-
               bers.
        _\bf_\bi_\bl_\be_\b1 -n\bnt\bt _\bf_\bi_\bl_\be_\b2
-              True  if  _\bf_\bi_\bl_\be_\b1  is  newer (according to modification date) than
+              True if _\bf_\bi_\bl_\be_\b1 is newer (according  to  modification  date)  than
               _\bf_\bi_\bl_\be_\b2, or if _\bf_\bi_\bl_\be_\b1 exists and _\bf_\bi_\bl_\be_\b2 does not.
        _\bf_\bi_\bl_\be_\b1 -o\bot\bt _\bf_\bi_\bl_\be_\b2
-              True if _\bf_\bi_\bl_\be_\b1 is older than _\bf_\bi_\bl_\be_\b2, or if _\bf_\bi_\bl_\be_\b2 exists and  _\bf_\bi_\bl_\be_\b1
+              True  if _\bf_\bi_\bl_\be_\b1 is older than _\bf_\bi_\bl_\be_\b2, or if _\bf_\bi_\bl_\be_\b2 exists and _\bf_\bi_\bl_\be_\b1
               does not.
        -\b-o\bo _\bo_\bp_\bt_\bn_\ba_\bm_\be
-              True  if  the  shell option _\bo_\bp_\bt_\bn_\ba_\bm_\be is enabled.  See the list of
-              options under the description  of  the  -\b-o\bo  option  to  the  s\bse\bet\bt
+              True if the shell option _\bo_\bp_\bt_\bn_\ba_\bm_\be is enabled.  See  the  list  of
+              options  under  the  description  of  the  -\b-o\bo  option to the s\bse\bet\bt
               builtin below.
        -\b-v\bv _\bv_\ba_\br_\bn_\ba_\bm_\be
-              True  if  the shell variable _\bv_\ba_\br_\bn_\ba_\bm_\be is set (has been assigned a
+              True if the shell variable _\bv_\ba_\br_\bn_\ba_\bm_\be is set (has been  assigned  a
               value).
        -\b-R\bR _\bv_\ba_\br_\bn_\ba_\bm_\be
-              True if the shell variable _\bv_\ba_\br_\bn_\ba_\bm_\be is set and is a  name  refer-
+              True  if  the shell variable _\bv_\ba_\br_\bn_\ba_\bm_\be is set and is a name refer-
               ence.
        -\b-z\bz _\bs_\bt_\br_\bi_\bn_\bg
               True if the length of _\bs_\bt_\br_\bi_\bn_\bg is zero.
@@ -2780,8 +2777,8 @@ C\bCO\bON\bND\bDI\bIT\bTI\bIO\bON\bNA\bAL\bL E\bEX\bXP\bPR\bRE\bES\bSS\bSI\bIO\bON\bNS\bS
 
        _\bs_\bt_\br_\bi_\bn_\bg_\b1 =\b==\b= _\bs_\bt_\br_\bi_\bn_\bg_\b2
        _\bs_\bt_\br_\bi_\bn_\bg_\b1 =\b= _\bs_\bt_\br_\bi_\bn_\bg_\b2
-              True  if  the strings are equal.  =\b= should be used with the t\bte\bes\bst\bt
-              command for POSIX conformance.  When used with the  [\b[[\b command,
+              True if the strings are equal.  =\b= should be used with  the  t\bte\bes\bst\bt
+              command  for  POSIX conformance.  When used with the [\b[[\b[ command,
               this performs pattern matching as described above (C\bCo\bom\bmp\bpo\bou\bun\bnd\bd C\bCo\bom\bm-\b-
               m\bma\ban\bnd\bds\bs).
 
@@ -2795,113 +2792,113 @@ C\bCO\bON\bND\bDI\bIT\bTI\bIO\bON\bNA\bAL\bL E\bEX\bXP\bPR\bRE\bES\bSS\bSI\bIO\bON\bNS\bS
               True if _\bs_\bt_\br_\bi_\bn_\bg_\b1 sorts after _\bs_\bt_\br_\bi_\bn_\bg_\b2 lexicographically.
 
        _\ba_\br_\bg_\b1 O\bOP\bP _\ba_\br_\bg_\b2
-              O\bOP\bis one of -\b-e\beq\bq, -\b-n\bne\be, -\b-l\blt\bt, -\b-l\ble\be, -\b-g\bgt\bt, or -\b-g\bge\be.  These  arithmetic
-              binary  operators return true if _\ba_\br_\bg_\b1 is equal to, not equal to,
-              less than, less than or equal to, greater than, or greater  than
-              or  equal  to _\ba_\br_\bg_\b2, respectively.  _\bA_\br_\bg_\b1 and _\ba_\br_\bg_\b2 may be positive
-              or negative integers.  When used with the [\b[[\b[ command,  _\bA_\br_\bg_\b and
-              _\bA_\br_\bg_\b are  evaluated  as  arithmetic expressions (see A\bAR\bRI\bIT\bTH\bHM\bME\bET\bTI\bIC\bC
+              O\bOP\b is one of -\b-e\beq\bq, -\b-n\bne\be, -\b-l\blt\bt, -\b-l\ble\be, -\b-g\bgt\bt, or -\b-g\bge\be.  These arithmetic
+              binary operators return true if _\ba_\br_\bg_\b1 is equal to, not equal  to,
+              less  than, less than or equal to, greater than, or greater than
+              or equal to _\ba_\br_\bg_\b2, respectively.  _\bA_\br_\bg_\b1 and _\ba_\br_\bg_\b2 may  be  positive
+              or  negative  integers.  When used with the [\b[[\b[ command, _\bA_\br_\bg_\b1 and
+              _\bA_\br_\bg_\bare evaluated as  arithmetic  expressions  (see  A\bAR\bRI\bIT\bTH\bHM\bME\bET\bTI\bIC\bC
               E\bEV\bVA\bAL\bLU\bUA\bAT\bTI\bIO\bON\bN above).
 
 S\bSI\bIM\bMP\bPL\bLE\bE C\bCO\bOM\bMM\bMA\bAN\bND\bD E\bEX\bXP\bPA\bAN\bNS\bSI\bIO\bON\bN
        When a simple command is executed, the shell performs the following ex-
-       pansions,  assignments,  and  redirections,  from left to right, in the
+       pansions, assignments, and redirections, from left  to  right,  in  the
        following order.
 
-       1.     The words that the parser has  marked  as  variable  assignments
-              (those  preceding  the  command name) and redirections are saved
+       1.     The  words  that  the  parser has marked as variable assignments
+              (those preceding the command name) and  redirections  are  saved
               for later processing.
 
-       2.     The words that are not variable assignments or redirections  are
-              expanded.   If  any words remain after expansion, the first word
-              is taken to be the name of the command and the  remaining  words
+       2.     The  words that are not variable assignments or redirections are
+              expanded.  If any words remain after expansion, the  first  word
+              is  taken  to be the name of the command and the remaining words
               are the arguments.
 
        3.     Redirections are performed as described above under R\bRE\bED\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\bN.
 
        4.     The text after the =\b= in each variable assignment undergoes tilde
               expansion, parameter expansion, command substitution, arithmetic
-              expansion,  and quote removal before being assigned to the vari-
+              expansion, and quote removal before being assigned to the  vari-
               able.
 
        If no command name results, the variable assignments affect the current
-       shell  environment.   In  the case of such a command (one that consists
-       only of assignment statements and redirections), assignment  statements
-       are  performed before redirections.  Otherwise, the variables are added
-       to the environment of the executed command and do not affect  the  cur-
+       shell environment.  In the case of such a command  (one  that  consists
+       only  of assignment statements and redirections), assignment statements
+       are performed before redirections.  Otherwise, the variables are  added
+       to  the  environment of the executed command and do not affect the cur-
        rent shell environment.  If any of the assignments attempts to assign a
-       value to a readonly variable, an error occurs, and  the  command  exits
+       value  to  a  readonly variable, an error occurs, and the command exits
        with a non-zero status.
 
-       If  no command name results, redirections are performed, but do not af-
-       fect the current shell environment.  A  redirection  error  causes  the
+       If no command name results, redirections are performed, but do not  af-
+       fect  the  current  shell  environment.  A redirection error causes the
        command to exit with a non-zero status.
 
-       If  there is a command name left after expansion, execution proceeds as
-       described below.  Otherwise, the command exits.  If one of  the  expan-
-       sions  contained a command substitution, the exit status of the command
-       is the exit status of the  last  command  substitution  performed.   If
+       If there is a command name left after expansion, execution proceeds  as
+       described  below.   Otherwise, the command exits.  If one of the expan-
+       sions contained a command substitution, the exit status of the  command
+       is  the  exit  status  of  the last command substitution performed.  If
        there were no command substitutions, the command exits with a status of
        zero.
 
 C\bCO\bOM\bMM\bMA\bAN\bND\bD E\bEX\bXE\bEC\bCU\bUT\bTI\bIO\bON\bN
-       After a command has been split into words, if it results  in  a  simple
-       command  and an optional list of arguments, the shell performs the fol-
+       After  a  command  has been split into words, if it results in a simple
+       command and an optional list of arguments, the shell performs the  fol-
        lowing actions.
 
-       If the command name contains no slashes, the shell attempts  to  locate
-       it.   If  there  exists a shell function by that name, that function is
-       invoked as described above in F\bFU\bUN\bNC\bCT\bTI\bIO\bON\bNS\bS.  If the name does not match  a
-       function,  the shell searches for it in the list of shell builtins.  If
+       If  the  command name contains no slashes, the shell attempts to locate
+       it.  If there exists a shell function by that name,  that  function  is
+       invoked  as described above in F\bFU\bUN\bNC\bCT\bTI\bIO\bON\bNS\bS.  If the name does not match a
+       function, the shell searches for it in the list of shell builtins.   If
        a match is found, that builtin is invoked.
 
-       If the name is neither a shell function nor a builtin, and contains  no
-       slashes,  b\bba\bas\bsh\bh  searches  each element of the P\bPA\bAT\bTH\bH for a directory con-
+       If  the name is neither a shell function nor a builtin, and contains no
+       slashes, b\bba\bas\bsh\bh searches each element of the P\bPA\bAT\bTH\bH for  a  directory  con-
        taining an executable file by that name.  B\bBa\bas\bsh\bh uses a hash table to re-
-       member  the  full  pathnames  of executable files (see h\bha\bas\bsh\bh under S\bSH\bHE\bEL\bLL\bL
-       B\bBU\bUI\bIL\bLT\bTI\bIN\bC\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below).  A full search of the directories in  P\bPA\bAT\bTH\b is
-       performed  only  if the command is not found in the hash table.  If the
+       member the full pathnames of executable files  (see  h\bha\bas\bsh\bh  under  S\bSH\bHE\bEL\bLL\bL
+       B\bBU\bUI\bIL\bLT\bTI\bIN\b C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS  below).  A full search of the directories in P\bPA\bAT\bTH\bH is
+       performed only if the command is not found in the hash table.   If  the
        search is unsuccessful, the shell searches for a defined shell function
        named c\bco\bom\bmm\bma\ban\bnd\bd_\b_n\bno\bot\bt_\b_f\bfo\bou\bun\bnd\bd_\b_h\bha\ban\bnd\bdl\ble\be.  If that function exists, it is invoked
-       in a separate execution environment with the original command  and  the
-       original  command's arguments as its arguments, and the function's exit
-       status becomes the exit status of that subshell.  If that  function  is
+       in  a  separate execution environment with the original command and the
+       original command's arguments as its arguments, and the function's  exit
+       status  becomes  the exit status of that subshell.  If that function is
        not defined, the shell prints an error message and returns an exit sta-
        tus of 127.
 
-       If the search is successful, or if the command  name  contains  one  or
+       If  the  search  is  successful, or if the command name contains one or
        more slashes, the shell executes the named program in a separate execu-
        tion environment.  Argument 0 is set to the name given, and the remain-
        ing arguments to the command are set to the arguments given, if any.
 
-       If  this  execution fails because the file is not in executable format,
-       and the file is not a directory, it is assumed to be a _\bs_\bh_\be_\bl_\bl _\bs_\bc_\br_\bi_\bp_\bt,  a
+       If this execution fails because the file is not in  executable  format,
+       and  the file is not a directory, it is assumed to be a _\bs_\bh_\be_\bl_\bl _\bs_\bc_\br_\bi_\bp_\bt, a
        file containing shell commands, and the shell creates a new instance of
-       itself to execute it.  This subshell reinitializes itself, so that  the
+       itself  to execute it.  This subshell reinitializes itself, so that the
        effect is as if a new shell had been invoked to handle the script, with
-       the exception that the locations of commands remembered by  the  parent
-       (see  h\bha\bas\bsh\bh  below  under  S\bSH\bHE\bEL\bLL\bL  B\bBU\bUI\bIL\bLT\bTI\bIN\bN  C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS) are retained by the
+       the  exception  that the locations of commands remembered by the parent
+       (see h\bha\bas\bsh\bh below under S\bSH\bHE\bEL\bLL\bL  B\bBU\bUI\bIL\bLT\bTI\bIN\bN  C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS)  are  retained  by  the
        child.
 
-       If the program is a file beginning with #\b#!\b!, the remainder of the  first
-       line  specifies an interpreter for the program.  The shell executes the
+       If  the program is a file beginning with #\b#!\b!, the remainder of the first
+       line specifies an interpreter for the program.  The shell executes  the
        specified interpreter on operating systems that do not handle this exe-
        cutable format themselves.  The arguments to the interpreter consist of
-       a single optional argument following the interpreter name on the  first
-       line  of  the program, followed by the name of the program, followed by
+       a  single optional argument following the interpreter name on the first
+       line of the program, followed by the name of the program,  followed  by
        the command arguments, if any.
 
 C\bCO\bOM\bMM\bMA\bAN\bND\bD E\bEX\bXE\bEC\bCU\bUT\bTI\bIO\bON\bN E\bEN\bNV\bVI\bIR\bRO\bON\bNM\bME\bEN\bNT\bT
-       The shell has an _\be_\bx_\be_\bc_\bu_\bt_\bi_\bo_\bn _\be_\bn_\bv_\bi_\br_\bo_\bn_\bm_\be_\bn_\bt, which consists of  the  follow-
+       The  shell  has an _\be_\bx_\be_\bc_\bu_\bt_\bi_\bo_\bn _\be_\bn_\bv_\bi_\br_\bo_\bn_\bm_\be_\bn_\bt, which consists of the follow-
        ing:
 
-       +\bo      open  files inherited by the shell at invocation, as modified by
+       +\bo      open files inherited by the shell at invocation, as modified  by
               redirections supplied to the e\bex\bxe\bec\bc builtin
 
-       +\bo      the current working directory as set by c\bcd\bd, p\bpu\bus\bsh\bhd\bd, or  p\bpo\bop\bpd\bd,  or
+       +\bo      the  current  working directory as set by c\bcd\bd, p\bpu\bus\bsh\bhd\bd, or p\bpo\bop\bpd\bd, or
               inherited by the shell at invocation
 
-       +\bo      the  file  creation  mode mask as set by u\bum\bma\bas\bsk\bk or inherited from
+       +\bo      the file creation mode mask as set by u\bum\bma\bas\bsk\bk  or  inherited  from
               the shell's parent
 
        +\bo      current traps set by t\btr\bra\bap\bp
@@ -2909,282 +2906,282 @@ C\bCO\bOM\bMM\bMA\bAN\bND\bD E\bEX\bXE\bEC\bCU\bUT\bTI\bIO\bON\bN E\bEN\bNV\bVI\bIR\bRO\bON\bNM\bME\bEN\bN
        +\bo      shell parameters that are set by variable assignment or with s\bse\bet\bt
               or inherited from the shell's parent in the environment
 
-       +\bo      shell  functions  defined during execution or inherited from the
+       +\bo      shell functions defined during execution or inherited  from  the
               shell's parent in the environment
 
-       +\bo      options enabled at invocation (either by default  or  with  com-
+       +\bo      options  enabled  at  invocation (either by default or with com-
               mand-line arguments) or by s\bse\bet\bt
 
        +\bo      options enabled by s\bsh\bho\bop\bpt\bt
 
        +\bo      shell aliases defined with a\bal\bli\bia\bas\bs
 
-       +\bo      various  process  IDs,  including  those of background jobs, the
+       +\bo      various process IDs, including those  of  background  jobs,  the
               value of $\b$$\b$, and the value of P\bPP\bPI\bID\bD
 
-       When a simple command other than a builtin or shell function is  to  be
-       executed,  it  is invoked in a separate execution environment that con-
-       sists of the following.  Unless otherwise noted, the values are  inher-
+       When  a  simple command other than a builtin or shell function is to be
+       executed, it is invoked in a separate execution environment  that  con-
+       sists  of the following.  Unless otherwise noted, the values are inher-
        ited from the shell.
 
 
-       +\bo      the  shell's  open  files,  plus any modifications and additions
+       +\bo      the shell's open files, plus  any  modifications  and  additions
               specified by redirections to the command
 
        +\bo      the current working directory
 
        +\bo      the file creation mode mask
 
-       +\bo      shell variables and functions  marked  for  export,  along  with
+       +\bo      shell  variables  and  functions  marked  for export, along with
               variables exported for the command, passed in the environment
 
        +\bo      traps caught by the shell are reset to the values inherited from
               the shell's parent, and traps ignored by the shell are ignored
 
-       A command invoked  in  this  separate  environment  cannot  affect  the
+       A  command  invoked  in  this  separate  environment  cannot affect the
        shell's execution environment.
 
        A _\bs_\bu_\bb_\bs_\bh_\be_\bl_\bl is a copy of the shell process.
 
-       Command  substitution, commands grouped with parentheses, and asynchro-
+       Command substitution, commands grouped with parentheses, and  asynchro-
        nous commands are invoked in a subshell environment that is a duplicate
        of the shell environment, except that traps caught by the shell are re-
-       set to the values that the shell inherited from its parent  at  invoca-
+       set  to  the values that the shell inherited from its parent at invoca-
        tion.  Builtin commands that are invoked as part of a pipeline are also
        executed in a subshell environment.  Changes made to the subshell envi-
        ronment cannot affect the shell's execution environment.
 
        Subshells spawned to execute command substitutions inherit the value of
-       the -\b-e\be option from the parent shell.  When  not  in  _\bp_\bo_\bs_\bi_\bx  _\bm_\bo_\bd_\be,  b\bba\bas\bsh\bh
+       the  -\b-e\be  option  from  the  parent shell.  When not in _\bp_\bo_\bs_\bi_\bx _\bm_\bo_\bd_\be, b\bba\bas\bsh\bh
        clears the -\b-e\be option in such subshells.
 
-       If  a command is followed by a &\b& and job control is not active, the de-
+       If a command is followed by a &\b& and job control is not active, the  de-
        fault standard input for the command is the empty file _\b/_\bd_\be_\bv_\b/_\bn_\bu_\bl_\bl.  Oth-
-       erwise,  the invoked command inherits the file descriptors of the call-
+       erwise, the invoked command inherits the file descriptors of the  call-
        ing shell as modified by redirections.
 
 E\bEN\bNV\bVI\bIR\bRO\bON\bNM\bME\bEN\bNT\bT
-       When a program is invoked it is given an array of  strings  called  the
+       When  a  program  is invoked it is given an array of strings called the
        _\be_\bn_\bv_\bi_\br_\bo_\bn_\bm_\be_\bn_\bt.   This  is  a  list  of  _\bn_\ba_\bm_\be-_\bv_\ba_\bl_\bu_\be  pairs,  of  the  form
        _\bn_\ba_\bm_\be=_\bv_\ba_\bl_\bu_\be.
 
-       The shell provides several ways to manipulate the environment.  On  in-
-       vocation,  the  shell scans its own environment and creates a parameter
-       for each name found, automatically marking it for _\be_\bx_\bp_\bo_\br_\bt to child  pro-
+       The  shell provides several ways to manipulate the environment.  On in-
+       vocation, the shell scans its own environment and creates  a  parameter
+       for  each name found, automatically marking it for _\be_\bx_\bp_\bo_\br_\bt to child pro-
        cesses.  Executed commands inherit the environment.  The e\bex\bxp\bpo\bor\brt\bt and d\bde\be-\b-
-       c\bcl\bla\bar\bre\b-\b-x\bx commands allow parameters and functions to  be  added  to  and
+       c\bcl\bla\bar\bre\b -\b-x\bx  commands  allow  parameters and functions to be added to and
        deleted from the environment.  If the value of a parameter in the envi-
        ronment is modified, the new value becomes part of the environment, re-
-       placing  the  old.   The  environment inherited by any executed command
-       consists of the shell's initial environment, whose values may be  modi-
-       fied  in  the  shell, less any pairs removed by the u\bun\bns\bse\bet\bt command, plus
+       placing the old.  The environment inherited  by  any  executed  command
+       consists  of the shell's initial environment, whose values may be modi-
+       fied in the shell, less any pairs removed by the  u\bun\bns\bse\bet\bt  command,  plus
        any additions via the e\bex\bxp\bpo\bor\brt\bt and d\bde\bec\bcl\bla\bar\bre\be -\b-x\bx commands.
 
-       The environment for any _\bs_\bi_\bm_\bp_\bl_\be _\bc_\bo_\bm_\bm_\ba_\bn_\bd or  function  may  be  augmented
-       temporarily  by  prefixing  it with parameter assignments, as described
+       The  environment  for  any  _\bs_\bi_\bm_\bp_\bl_\be _\bc_\bo_\bm_\bm_\ba_\bn_\bd or function may be augmented
+       temporarily by prefixing it with parameter  assignments,  as  described
        above in P\bPA\bAR\bRA\bAM\bME\bET\bTE\bER\bRS\bS.  These assignment statements affect only the envi-
        ronment seen by that command.
 
-       If  the  -\b-k\bk option is set (see the s\bse\bet\bt builtin command below), then _\ba_\bl_\bl
-       parameter assignments are placed in the environment for a command,  not
+       If the -\b-k\bk option is set (see the s\bse\bet\bt builtin command below),  then  _\ba_\bl_\bl
+       parameter  assignments are placed in the environment for a command, not
        just those that precede the command name.
 
-       When  b\bba\bas\bsh\bh  invokes  an  external command, the variable _\b_ is set to the
+       When b\bba\bas\bsh\bh invokes an external command, the variable _\b_  is  set  to  the
        full filename of the command and passed to that command in its environ-
        ment.
 
 E\bEX\bXI\bIT\bT S\bST\bTA\bAT\bTU\bUS\bS
-       The  exit  status  of  an executed command is the value returned by the
+       The exit status of an executed command is the  value  returned  by  the
        _\bw_\ba_\bi_\bt_\bp_\bi_\bd system call or equivalent function.  Exit statuses fall between
-       0  and  255, though, as explained below, the shell may use values above
+       0 and 255, though, as explained below, the shell may use  values  above
        125 specially.  Exit statuses from shell builtins and compound commands
        are also limited to this range.  Under certain circumstances, the shell
        will use special values to indicate specific failure modes.
 
        For the shell's purposes, a command which exits with a zero exit status
-       has  succeeded.   An exit status of zero indicates success.  A non-zero
-       exit status indicates failure.  When a command terminates  on  a  fatal
+       has succeeded.  An exit status of zero indicates success.   A  non-zero
+       exit  status  indicates  failure.  When a command terminates on a fatal
        signal _\bN, b\bba\bas\bsh\bh uses the value of 128+_\bN as the exit status.
 
-       If  a command is not found, the child process created to execute it re-
-       turns a status of 127.  If a command is found but  is  not  executable,
+       If a command is not found, the child process created to execute it  re-
+       turns  a  status  of 127.  If a command is found but is not executable,
        the return status is 126.
 
        If a command fails because of an error during expansion or redirection,
        the exit status is greater than zero.
 
-       Shell builtin commands return a status of 0 (_\bt_\br_\bu_\be) if  successful,  and
-       non-zero  (_\bf_\ba_\bl_\bs_\be)  if an error occurs while they execute.  All builtins
-       return an exit status of 2 to indicate incorrect usage,  generally  in-
+       Shell  builtin  commands return a status of 0 (_\bt_\br_\bu_\be) if successful, and
+       non-zero (_\bf_\ba_\bl_\bs_\be) if an error occurs while they execute.   All  builtins
+       return  an  exit status of 2 to indicate incorrect usage, generally in-
        valid options or missing arguments.
 
        The exit status of the last command is available in the special parame-
        ter $?.
 
-       B\bBa\bas\bsh\bitself returns the exit status of the last command  executed,  un-
-       less  a  syntax  error  occurs,  in which case it exits with a non-zero
+       B\bBa\bas\bsh\b itself  returns the exit status of the last command executed, un-
+       less a syntax error occurs, in which case  it  exits  with  a  non-zero
        value.  See also the e\bex\bxi\bit\bt builtin command below.
 
 S\bSI\bIG\bGN\bNA\bAL\bLS\bS
-       When b\bba\bas\bsh\bh is interactive, in the  absence  of  any  traps,  it  ignores
+       When  b\bba\bas\bsh\bh  is  interactive,  in  the  absence of any traps, it ignores
        S\bSI\bIG\bGT\bTE\bER\bRM\bM (so that k\bki\bil\bll\bl 0\b0 does not kill an interactive shell), and S\bSI\bIG\bGI\bIN\bNT\bT
-       is caught and handled (so that the w\bwa\bai\bit\bt builtin is interruptible).   In
+       is  caught and handled (so that the w\bwa\bai\bit\bt builtin is interruptible).  In
        all cases, b\bba\bas\bsh\bh ignores S\bSI\bIG\bGQ\bQU\bUI\bIT\bT.  If job control is in effect, b\bba\bas\bsh\bh ig-
        nores S\bSI\bIG\bGT\bTT\bTI\bIN\bN, S\bSI\bIG\bGT\bTT\bTO\bOU\bU, and S\bSI\bIG\bGT\bTS\bST\bTP\bP.
 
        Non-builtin commands run by b\bba\bas\bsh\bh have signal handlers set to the values
        inherited by the shell from its parent.  When job control is not in ef-
-       fect, asynchronous commands ignore S\bSI\bIG\bGI\bIN\bNT\bT and S\bSI\bIG\bGQ\bQU\bUI\bIT\bT  in  addition  to
-       these  inherited handlers.  Commands run as a result of command substi-
+       fect,  asynchronous  commands  ignore S\bSI\bIG\bGI\bIN\bNT\bT and S\bSI\bIG\bGQ\bQU\bUI\bIT\bT in addition to
+       these inherited handlers.  Commands run as a result of command  substi-
        tution ignore the keyboard-generated job control signals S\bSI\bIG\bGT\bTT\bTI\bIN\bN, S\bSI\bIG\bGT\bT-\b-
        T\bTO\bOU\bU, and S\bSI\bIG\bGT\bTS\bST\bTP\bP.
 
-       The  shell  exits by default upon receipt of a S\bSI\bIG\bGH\bHU\bUP\bP.  Before exiting,
-       an interactive shell  resends  the  S\bSI\bIG\bGH\bHU\bUP\bP  to  all  jobs,  running  or
+       The shell exits by default upon receipt of a S\bSI\bIG\bGH\bHU\bUP\bP.   Before  exiting,
+       an  interactive  shell  resends  the  S\bSI\bIG\bGH\bHU\bUP\bP  to  all  jobs, running or
        stopped.  Stopped jobs are sent S\bSI\bIG\bGC\bCO\bON\bNT\bT to ensure that they receive the
-       S\bSI\bIG\bGH\bHU\bUP\bP.  To prevent the shell from sending the signal to  a  particular
-       job,  it  should be removed from the jobs table with the d\bdi\bis\bso\bow\bwn\bn builtin
-       (see S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below) or marked to not receive S\bSI\bIG\bGH\bHU\bUP\b us-
+       S\bSI\bIG\bGH\bHU\bUP\bP.   To  prevent the shell from sending the signal to a particular
+       job, it should be removed from the jobs table with the  d\bdi\bis\bso\bow\bwn\b builtin
+       (see  S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below) or marked to not receive S\bSI\bIG\bGH\bHU\bUP\bP us-
        ing d\bdi\bis\bso\bow\bwn\bn -\b-h\bh.
 
-       If  the  h\bhu\bup\bpo\bon\bne\bex\bxi\bit\bt  shell  option has been set with s\bsh\bho\bop\bpt\bt, b\bba\bas\bsh\bh sends a
+       If the h\bhu\bup\bpo\bon\bne\bex\bxi\bit\bt shell option has been set with  s\bsh\bho\bop\bpt\bt,  b\bba\bas\bsh\bh  sends  a
        S\bSI\bIG\bGH\bHU\bUP\bP to all jobs when an interactive login shell exits.
 
-       If b\bba\bas\bsh\bh is waiting for a command to complete and receives a signal  for
+       If  b\bba\bas\bsh\bh is waiting for a command to complete and receives a signal for
        which a trap has been set, the trap will not be executed until the com-
-       mand completes.  When b\bba\bas\bsh\bh is waiting for an asynchronous  command  via
-       the  w\bwa\bai\bit\bt  builtin, the reception of a signal for which a trap has been
+       mand  completes.   When b\bba\bas\bsh\bh is waiting for an asynchronous command via
+       the w\bwa\bai\bit\bt builtin, the reception of a signal for which a trap  has  been
        set will cause the w\bwa\bai\bit\bt builtin to return immediately with an exit sta-
        tus greater than 128, immediately after which the trap is executed.
 
-       When  job  control is not enabled, and b\bba\bas\bsh\bh is waiting for a foreground
+       When job control is not enabled, and b\bba\bas\bsh\bh is waiting for  a  foreground
        command to complete, the shell receives keyboard-generated signals such
-       as  S\bSI\bIG\bGI\bIN\bNT\bT (usually generated by ^\b^C\bC) that users commonly intend to send
+       as S\bSI\bIG\bGI\bIN\bNT\bT (usually generated by ^\b^C\bC) that users commonly intend to  send
        to that command.  This happens because the shell and the command are in
        the same process group as the terminal, and ^\b^C\bC sends S\bSI\bIG\bGI\bIN\bNT\bT to all pro-
        cesses in that process group.
 
-       When b\bba\bas\bsh\bh is running without job control enabled  and  receives  S\bSI\bIG\bGI\bIN\bNT\bT
-       while  waiting for a foreground command, it waits until that foreground
+       When  b\bba\bas\bsh\bh  is  running without job control enabled and receives S\bSI\bIG\bGI\bIN\bNT\bT
+       while waiting for a foreground command, it waits until that  foreground
        command terminates and then decides what to do about the S\bSI\bIG\bGI\bIN\bNT\bT:
 
        1.     If the command terminates due to the S\bSI\bIG\bGI\bIN\bNT\bT, b\bba\bas\bsh\bh concludes that
-              the  user meant to end the entire script, and acts on the S\bSI\bIG\bGI\bIN\bNT\bT
+              the user meant to end the entire script, and acts on the  S\bSI\bIG\bGI\bIN\bNT\bT
               (e.g., by running a S\bSI\bIG\bGI\bIN\bNT\bT trap or exiting itself);
 
-       2.     If the command does not terminate due  to  S\bSI\bIG\bGI\bIN\bNT\bT,  the  program
-              handled  the  S\bSI\bIG\bGI\bIN\bNT\bT itself and did not treat it as a fatal sig-
-              nal.  In that case, b\bba\bas\bsh\bh does not treat S\bSI\bIG\bGI\bIN\bNT\bT as a  fatal  sig-
-              nal,  either,  instead assuming that the S\bSI\bIG\bGI\bIN\bNT\bT was used as part
-              of the program's normal operation (e.g., emacs uses it to  abort
+       2.     If  the  command  does  not terminate due to S\bSI\bIG\bGI\bIN\bNT\bT, the program
+              handled the S\bSI\bIG\bGI\bIN\bNT\bT itself and did not treat it as a  fatal  sig-
+              nal.   In  that case, b\bba\bas\bsh\bh does not treat S\bSI\bIG\bGI\bIN\bNT\bT as a fatal sig-
+              nal, either, instead assuming that the S\bSI\bIG\bGI\bIN\bNT\bT was used  as  part
+              of  the program's normal operation (e.g., emacs uses it to abort
               editing commands) or deliberately discarded.  However, b\bba\bas\bsh\bh will
-              run any trap set on S\bSI\bIG\bGI\bIN\bNT\bT, as it does with  any  other  trapped
-              signal  it  receives while it is waiting for the foreground com-
+              run  any  trap  set on S\bSI\bIG\bGI\bIN\bNT\bT, as it does with any other trapped
+              signal it receives while it is waiting for the  foreground  com-
               mand to complete, for compatibility.
 
 J\bJO\bOB\bB C\bCO\bON\bNT\bTR\bRO\bOL\bL
        _\bJ_\bo_\bb _\bc_\bo_\bn_\bt_\br_\bo_\bl refers to the ability to selectively stop (_\bs_\bu_\bs_\bp_\be_\bn_\bd) the ex-
-       ecution  of  processes and continue (_\br_\be_\bs_\bu_\bm_\be) their execution at a later
-       point.  A user typically employs this facility via an  interactive  in-
-       terface  supplied  jointly  by  the  operating system kernel's terminal
+       ecution of processes and continue (_\br_\be_\bs_\bu_\bm_\be) their execution at  a  later
+       point.   A  user typically employs this facility via an interactive in-
+       terface supplied jointly by  the  operating  system  kernel's  terminal
        driver and b\bba\bas\bsh\bh.
 
-       The shell associates a _\bj_\bo_\bb with each pipeline.  It  keeps  a  table  of
-       currently  executing  jobs,  which may be listed with the j\bjo\bob\bbs\bs command.
-       When b\bba\bas\bsh\bh starts a job asynchronously (in the _\bb_\ba_\bc_\bk_\bg_\br_\bo_\bu_\bn_\bd), it prints  a
+       The  shell  associates  a  _\bj_\bo_\bb with each pipeline.  It keeps a table of
+       currently executing jobs, which may be listed with  the  j\bjo\bob\bbs\b command.
+       When  b\bba\bas\bsh\bh starts a job asynchronously (in the _\bb_\ba_\bc_\bk_\bg_\br_\bo_\bu_\bn_\bd), it prints a
        line that looks like:
 
               [1] 25647
 
        indicating that this job is job number 1 and that the process ID of the
        last process in the pipeline associated with this job is 25647.  All of
-       the  processes  in a single pipeline are members of the same job.  B\bBa\bas\bsh\bh
+       the processes in a single pipeline are members of the same  job.   B\bBa\bas\bsh\bh
        uses the _\bj_\bo_\bb abstraction as the basis for job control.
 
-       To facilitate the implementation of the user interface to job  control,
+       To  facilitate the implementation of the user interface to job control,
        the operating system maintains the notion of a _\bc_\bu_\br_\br_\be_\bn_\bt _\bt_\be_\br_\bm_\bi_\bn_\ba_\bl _\bp_\br_\bo_\bc_\be_\bs_\bs
        _\bg_\br_\bo_\bu_\bp _\bI_\bD.  Members of this process group (processes whose process group
        ID is equal to the current terminal process group ID) receive keyboard-
-       generated signals such as S\bSI\bIG\bGI\bIN\bNT\bT.  These processes are said  to  be  in
-       the  _\bf_\bo_\br_\be_\bg_\br_\bo_\bu_\bn_\bd.  _\bB_\ba_\bc_\bk_\bg_\br_\bo_\bu_\bn_\bd processes are those whose process group ID
+       generated  signals  such  as S\bSI\bIG\bGI\bIN\bNT\bT.  These processes are said to be in
+       the _\bf_\bo_\br_\be_\bg_\br_\bo_\bu_\bn_\bd.  _\bB_\ba_\bc_\bk_\bg_\br_\bo_\bu_\bn_\bd processes are those whose process group  ID
        differs from the terminal's; such processes are immune to keyboard-gen-
        erated signals.  Only foreground processes are allowed to read from or,
-       if the user so specifies with  stty  tostop,  write  to  the  terminal.
-       Background  processes  which  attempt  to read from (write to when stty
-       tostop is in effect) the terminal are sent a S\bSI\bIG\bGT\bTT\bTI\bIN\bN  (\b(S\bSI\bIG\bGT\bTT\bTO\bOU\bU)\b signal
-       by  the  kernel's  terminal  driver, which, unless caught, suspends the
+       if  the  user  so  specifies  with  stty tostop, write to the terminal.
+       Background processes which attempt to read from  (write  to  when  stty
+       tostop  is  in effect) the terminal are sent a S\bSI\bIG\bGT\bTT\bTI\bIN\bN (\b(S\bSI\bIG\bGT\bTT\bTO\bOU\bU)\b) signal
+       by the kernel's terminal driver, which,  unless  caught,  suspends  the
        process.
 
-       If the operating system on which b\bba\bas\bsh\bh is running supports job  control,
+       If  the operating system on which b\bba\bas\bsh\bh is running supports job control,
        b\bba\bas\bsh\bh contains facilities to use it.  Typing the _\bs_\bu_\bs_\bp_\be_\bn_\bd character (typ-
        ically ^\b^Z\bZ, Control-Z) while a process is running causes that process to
-       be  stopped  and  returns  control to b\bba\bas\bsh\bh.  Typing the _\bd_\be_\bl_\ba_\by_\be_\bd _\bs_\bu_\bs_\bp_\be_\bn_\bd
-       character (typically ^\b^Y\bY, Control-Y) causes the process  to  be  stopped
+       be stopped and returns control to b\bba\bas\bsh\bh.   Typing  the  _\bd_\be_\bl_\ba_\by_\be_\b _\bs_\bu_\bs_\bp_\be_\bn_\bd
+       character  (typically  ^\b^Y\bY,  Control-Y) causes the process to be stopped
        when it attempts to read input from the terminal, and control to be re-
-       turned to b\bba\bas\bsh\bh.  The user may then manipulate the state  of  this  job,
-       using  the  b\bbg\bg command to continue it in the background, the f\bfg\bg command
+       turned  to  b\bba\bas\bsh\bh.   The user may then manipulate the state of this job,
+       using the b\bbg\bg command to continue it in the background, the  f\bfg\b command
        to continue it in the foreground, or the k\bki\bil\bll\bl command to kill it.  A ^\b^Z\bZ
        takes effect immediately, and has the additional side effect of causing
        pending output and typeahead to be discarded.
 
        There are a number of ways to refer to a job in the shell.  The charac-
-       ter  %\b%  introduces  a job specification (_\bj_\bo_\bb_\bs_\bp_\be_\bc).  Job number _\bn may be
+       ter %\b% introduces a job specification (_\bj_\bo_\bb_\bs_\bp_\be_\bc).  Job number  _\bn  may  be
        referred to as %\b%n\bn.  A job may also be referred to using a prefix of the
        name used to start it, or using a substring that appears in its command
-       line.  For example, %\b%c\bce\be refers to a stopped job whose command name  be-
-       gins  with  c\bce\be.  If a prefix matches more than one job, b\bba\bas\bsh\bh reports an
+       line.   For example, %\b%c\bce\be refers to a stopped job whose command name be-
+       gins with c\bce\be.  If a prefix matches more than one job, b\bba\bas\bsh\bh  reports  an
        error.  Using %\b%?\b?c\bce\be, on the other hand, refers to any job containing the
-       string  c\bce\be in its command line.  If the substring matches more than one
+       string c\bce\be in its command line.  If the substring matches more than  one
        job, b\bba\bas\bsh\bh reports an error.  The symbols %\b%%\b% and %\b%+\b+ refer to the shell's
-       notion  of  the _\bc_\bu_\br_\br_\be_\bn_\bt _\bj_\bo_\bb, which is the last job stopped while it was
-       in the foreground or started in the background.  The _\bp_\br_\be_\bv_\bi_\bo_\bu_\bs  _\bj_\bo_\b may
-       be  referenced  using %\b%-\b-.  If there is only a single job, %\b%+\b+ and %\b%-\b- can
+       notion of the _\bc_\bu_\br_\br_\be_\bn_\bt _\bj_\bo_\bb, which is the last job stopped while  it  was
+       in  the  foreground or started in the background.  The _\bp_\br_\be_\bv_\bi_\bo_\bu_\bs _\bj_\bo_\bb may
+       be referenced using %\b%-\b-.  If there is only a single job, %\b%+\b+ and  %\b%-\b can
        both be used to refer to that job.  In output pertaining to jobs (e.g.,
        the output of the j\bjo\bob\bbs\bs command), the current job is always flagged with
-       a +\b+, and the previous job with a -\b-.  A single % (with  no  accompanying
+       a  +\b+,  and the previous job with a -\b-.  A single % (with no accompanying
        job specification) also refers to the current job.
 
-       Simply  naming a job can be used to bring it into the foreground: %\b%1\b1 is
-       a synonym for `\b``\b`f\bfg\bg %\b%1\b1'\b''\b', bringing job 1 from the  background  into  the
-       foreground.   Similarly,  `\b``\b`%\b%1\b1  &\b&'\b''\b'  resumes  job  1 in the background,
+       Simply naming a job can be used to bring it into the foreground: %\b%1\b is
+       a  synonym  for  `\b``\b`f\bfg\bg %\b%1\b1'\b''\b', bringing job 1 from the background into the
+       foreground.  Similarly, `\b``\b`%\b%1\b1 &\b&'\b''\b'  resumes  job  1  in  the  background,
        equivalent to `\b``\b`b\bbg\bg %\b%1\b1'\b''\b'.
 
-       The shell learns immediately whenever a job changes  state.   Normally,
+       The  shell  learns immediately whenever a job changes state.  Normally,
        b\bba\bas\bsh\bh waits until it is about to print a prompt before reporting changes
-       in a job's status so as to not interrupt any other output.  If  the  -\b-b\bb
+       in  a  job's status so as to not interrupt any other output.  If the -\b-b\bb
        option to the s\bse\bet\bt builtin command is enabled, b\bba\bas\bsh\bh reports such changes
-       immediately.  Any trap on S\bSI\bIG\bGC\bCH\bHL\bLD\bD is executed for each child  that  ex-
+       immediately.   Any  trap on S\bSI\bIG\bGC\bCH\bHL\bLD\bD is executed for each child that ex-
        its.
 
-       If  an  attempt to exit b\bba\bas\bsh\bh is made while jobs are stopped (or, if the
-       c\bch\bhe\bec\bck\bkj\bjo\bob\bbs\bshell option has been enabled using the s\bsh\bho\bop\bpt\bt  builtin,  run-
+       If an attempt to exit b\bba\bas\bsh\bh is made while jobs are stopped (or,  if  the
+       c\bch\bhe\bec\bck\bkj\bjo\bob\bbs\b shell  option has been enabled using the s\bsh\bho\bop\bpt\bt builtin, run-
        ning), the shell prints a warning message, and, if the c\bch\bhe\bec\bck\bkj\bjo\bob\bbs\bs option
-       is enabled, lists the jobs and their statuses.  The  j\bjo\bob\bbs\bs  command  may
-       then  be  used to inspect their status.  If a second attempt to exit is
-       made without an intervening command, the shell does not  print  another
+       is  enabled,  lists  the jobs and their statuses.  The j\bjo\bob\bbs\bs command may
+       then be used to inspect their status.  If a second attempt to  exit  is
+       made  without  an intervening command, the shell does not print another
        warning, and any stopped jobs are terminated.
 
-       When  the shell is waiting for a job or process using the w\bwa\bai\bit\bt builtin,
-       and job control is enabled, w\bwa\bai\bit\bt  will  return  when  the  job  changes
-       state.  The -\b-f\bf option causes w\bwa\bai\bit\bt to wait until the job or process ter-
+       When the shell is waiting for a job or process using the w\bwa\bai\bit\b builtin,
+       and  job  control  is  enabled,  w\bwa\bai\bit\bt  will return when the job changes
+       state. The -\b-f\bf option causes w\bwa\bai\bit\bt to wait until the job or process  ter-
        minates before returning.
 
 P\bPR\bRO\bOM\bMP\bPT\bTI\bIN\bNG\bG
        When executing interactively, b\bba\bas\bsh\bh displays the primary prompt P\bPS\bS1\b1 when
-       it  is  ready  to  read a command, and the secondary prompt P\bPS\bS2\b2 when it
-       needs more input to complete a command.  B\bBa\bas\bsh\bh  displays  P\bPS\bS0\b0  after  it
-       reads  a  command  but  before  executing it.  B\bBa\bas\bsh\bh displays P\bPS\bS4\b4 as de-
-       scribed above before tracing each command when the  -\b-x\bx  option  is  en-
-       abled.   B\bBa\bas\bsh\bh allows these prompt strings to be customized by inserting
-       a number of backslash-escaped special characters that  are  decoded  as
+       it is ready to read a command, and the secondary  prompt  P\bPS\bS2\b2  when  it
+       needs  more  input  to  complete a command.  B\bBa\bas\bsh\bh displays P\bPS\bS0\b0 after it
+       reads a command but before executing it.   B\bBa\bas\bsh\bh  displays  P\bPS\bS4\b4  as  de-
+       scribed  above  before  tracing  each command when the -\b-x\bx option is en-
+       abled.  B\bBa\bas\bsh\bh allows these prompt strings to be customized by  inserting
+       a  number  of  backslash-escaped special characters that are decoded as
        follows:
               \\b\a\ba     an ASCII bell character (07)
-              \\b\d\bd     the  date  in "Weekday Month Date" format (e.g., "Tue May
+              \\b\d\bd     the date in "Weekday Month Date" format (e.g.,  "Tue  May
                      26")
               \\b\D\bD{\b{_\bf_\bo_\br_\bm_\ba_\bt}\b}
                      the _\bf_\bo_\br_\bm_\ba_\bt is passed to _\bs_\bt_\br_\bf_\bt_\bi_\bm_\be(3) and the result is in-
                      serted into the prompt string; an empty _\bf_\bo_\br_\bm_\ba_\bt results in
-                     a locale-specific time representation.   The  braces  are
+                     a  locale-specific  time  representation.  The braces are
                      required
               \\b\e\be     an ASCII escape character (033)
               \\b\h\bh     the hostname up to the first `.'
@@ -3193,7 +3190,7 @@ P\bPR\bRO\bOM\bMP\bPT\bTI\bIN\bNG\bG
               \\b\l\bl     the basename of the shell's terminal device name
               \\b\n\bn     newline
               \\b\r\br     carriage return
-              \\b\s\bs     the  name  of  the shell, the basename of $\b$0\b0 (the portion
+              \\b\s\bs     the name of the shell, the basename of  $\b$0\b0  (the  portion
                      following the final slash)
               \\b\t\bt     the current time in 24-hour HH:MM:SS format
               \\b\T\bT     the current time in 12-hour HH:MM:SS format
@@ -3202,8 +3199,8 @@ P\bPR\bRO\bOM\bMP\bPT\bTI\bIN\bNG\bG
               \\b\u\bu     the username of the current user
               \\b\v\bv     the version of b\bba\bas\bsh\bh (e.g., 2.00)
               \\b\V\bV     the release of b\bba\bas\bsh\bh, version + patch level (e.g., 2.00.0)
-              \\b\w\bw     the value of the P\bPW\bWD\bD shell variable  ($\b$P\bPW\bWD\bD),  with  $\b$H\bHO\bOM\bME\bE
-                     abbreviated   with   a  tilde  (uses  the  value  of  the
+              \\b\w\bw     the  value  of  the P\bPW\bWD\bD shell variable ($\b$P\bPW\bWD\bD), with $\b$H\bHO\bOM\bME\bE
+                     abbreviated  with  a  tilde  (uses  the  value   of   the
                      P\bPR\bRO\bOM\bMP\bPT\bT_\b_D\bDI\bIR\bRT\bTR\bRI\bIM\bM variable)
               \\b\W\bW     the basename of $\b$P\bPW\bWD\bD, with $\b$H\bHO\bOM\bME\bE abbreviated with a tilde
               \\b\!\b!     the history number of this command
@@ -3211,70 +3208,70 @@ P\bPR\bRO\bOM\bMP\bPT\bTI\bIN\bNG\bG
               \\b\$\b$     if the effective UID is 0, a #\b#, otherwise a $\b$
               \\b\_\bn_\bn_\bn   the character corresponding to the octal number _\bn_\bn_\bn
               \\b\\\b\     a backslash
-              \\b\[\b[     begin a sequence of non-printing characters, which  could
-                     be  used  to  embed  a terminal control sequence into the
+              \\b\[\b[     begin  a sequence of non-printing characters, which could
+                     be used to embed a terminal  control  sequence  into  the
                      prompt
               \\b\]\b]     end a sequence of non-printing characters
 
-       The command number and the history number are  usually  different:  the
-       history  number of a command is its position in the history list, which
-       may include commands restored from the history file  (see  H\bHI\bIS\bST\bTO\bOR\bRY\b be-
-       low),  while the command number is the position in the sequence of com-
-       mands executed during the current shell session.  After the  string  is
-       decoded,  it is expanded via parameter expansion, command substitution,
-       arithmetic expansion, and quote removal, subject to the  value  of  the
+       The  command  number  and the history number are usually different: the
+       history number of a command is its position in the history list,  which
+       may  include  commands  restored from the history file (see H\bHI\bIS\bST\bTO\bOR\bRY\bY be-
+       low), while the command number is the position in the sequence of  com-
+       mands  executed  during the current shell session.  After the string is
+       decoded, it is expanded via parameter expansion, command  substitution,
+       arithmetic  expansion,  and  quote removal, subject to the value of the
        p\bpr\bro\bom\bmp\bpt\btv\bva\bar\brs\bs shell option (see the description of the s\bsh\bho\bop\bpt\bt command under
-       S\bSH\bHE\bEL\bLL\bB\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below).  This can have unwanted side effects  if
-       escaped  portions  of  the string appear within command substitution or
+       S\bSH\bHE\bEL\bLL\b B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below).  This can have unwanted side effects if
+       escaped portions of the string appear within  command  substitution  or
        contain characters special to word expansion.
 
 R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
-       This is the library that handles reading input when using  an  interac-
+       This  is  the library that handles reading input when using an interac-
        tive shell, unless the -\b--\b-n\bno\boe\bed\bdi\bit\bti\bin\bng\bg option is given at shell invocation.
        Line editing is also used when using the -\b-e\be option to the r\bre\bea\bad\bd builtin.
        By default, the line editing commands are similar to those of Emacs.  A
        vi-style line editing interface is also available.  Line editing can be
-       enabled  at  any  time  using  the -\b-o\bo e\bem\bma\bac\bcs\bs or -\b-o\bo v\bvi\bi options to the s\bse\bet\bt
-       builtin (see S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below).  To turn off  line  editing
-       after  the  shell  is running, use the +\b+o\bo e\bem\bma\bac\bcs\bs or +\b+o\bo v\bvi\bi options to the
+       enabled at any time using the -\b-o\bo e\bem\bma\bac\bcs\bs or -\b-o\bo  v\bvi\bi  options  to  the  s\bse\bet\bt
+       builtin  (see  S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below).  To turn off line editing
+       after the shell is running, use the +\b+o\bo e\bem\bma\bac\bcs\bs or +\b+o\bo v\bvi\bi  options  to  the
        s\bse\bet\bt builtin.
 
    R\bRe\bea\bad\bdl\bli\bin\bne\be N\bNo\bot\bta\bat\bti\bio\bon\bn
        In this section, the Emacs-style notation is used to denote keystrokes.
-       Control  keys  are  denoted by C-_\bk_\be_\by, e.g., C-n means Control-N.  Simi-
-       larly, _\bm_\be_\bt_\ba keys are denoted by M-_\bk_\be_\by, so M-x means Meta-X.   (On  key-
-       boards  without a _\bm_\be_\bt_\ba key, M-_\bx means ESC _\bx, i.e., press the Escape key
+       Control keys are denoted by C-_\bk_\be_\by, e.g., C-n  means  Control-N.   Simi-
+       larly,  _\bm_\be_\bt_\ba  keys are denoted by M-_\bk_\be_\by, so M-x means Meta-X.  (On key-
+       boards without a _\bm_\be_\bt_\ba key, M-_\bx means ESC _\bx, i.e., press the Escape  key
        then the _\bx key.  This makes ESC the _\bm_\be_\bt_\ba _\bp_\br_\be_\bf_\bi_\bx.  The combination M-C-_\bx
-       means  ESC-Control-_\bx, or press the Escape key then hold the Control key
+       means ESC-Control-_\bx, or press the Escape key then hold the Control  key
        while pressing the _\bx key.)
 
        Readline commands may be given numeric _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs, which normally act as
-       a  repeat  count.   Sometimes,  however, it is the sign of the argument
-       that is significant.  Passing a negative argument  to  a  command  that
-       acts  in the forward direction (e.g., k\bki\bil\bll\bl-\b-l\bli\bin\bne\be) causes that command to
-       act in a backward direction.  Commands whose  behavior  with  arguments
+       a repeat count.  Sometimes, however, it is the  sign  of  the  argument
+       that  is  significant.   Passing  a negative argument to a command that
+       acts in the forward direction (e.g., k\bki\bil\bll\bl-\b-l\bli\bin\bne\be) causes that command  to
+       act  in  a  backward direction.  Commands whose behavior with arguments
        deviates from this are noted below.
 
-       When  a command is described as _\bk_\bi_\bl_\bl_\bi_\bn_\bg text, the text deleted is saved
+       When a command is described as _\bk_\bi_\bl_\bl_\bi_\bn_\bg text, the text deleted is  saved
        for possible future retrieval (_\by_\ba_\bn_\bk_\bi_\bn_\bg).  The killed text is saved in a
        _\bk_\bi_\bl_\bl _\br_\bi_\bn_\bg.  Consecutive kills cause the text to be accumulated into one
        unit, which can be yanked all at once.  Commands which do not kill text
        separate the chunks of text on the kill ring.
 
    R\bRe\bea\bad\bdl\bli\bin\bne\be I\bIn\bni\bit\bti\bia\bal\bli\biz\bza\bat\bti\bio\bon\bn
-       Readline  is  customized  by putting commands in an initialization file
-       (the _\bi_\bn_\bp_\bu_\bt_\br_\bc file).  The name of this file is taken from the  value  of
+       Readline is customized by putting commands in  an  initialization  file
+       (the  _\bi_\bn_\bp_\bu_\bt_\br_\bc  file).  The name of this file is taken from the value of
        the I\bIN\bNP\bPU\bUT\bTR\bRC\bC variable.  If that variable is unset, the default is _\b~_\b/_\b._\bi_\bn_\b-
-       _\bp_\bu_\bt_\br_\bc.  If that file  does not exist or cannot be  read,  the  ultimate
-       default  is  _\b/_\be_\bt_\bc_\b/_\bi_\bn_\bp_\bu_\bt_\br_\bc.   When a program which uses the readline li-
-       brary starts up, the initialization file is read, and the key  bindings
-       and  variables  are set.  There are only a few basic constructs allowed
-       in the readline initialization file.  Blank lines are  ignored.   Lines
-       beginning  with  a  #\b#  are comments.  Lines beginning with a $\b$ indicate
-       conditional constructs.  Other lines denote key bindings  and  variable
+       _\bp_\bu_\bt_\br_\bc.   If  that  file  does not exist or cannot be read, the ultimate
+       default is _\b/_\be_\bt_\bc_\b/_\bi_\bn_\bp_\bu_\bt_\br_\bc.  When a program which uses  the  readline  li-
+       brary  starts up, the initialization file is read, and the key bindings
+       and variables are set.  There are only a few basic  constructs  allowed
+       in  the  readline initialization file.  Blank lines are ignored.  Lines
+       beginning with a #\b# are comments.  Lines beginning  with  a  $\b indicate
+       conditional  constructs.   Other lines denote key bindings and variable
        settings.
 
-       The  default  key-bindings  may be changed with an _\bi_\bn_\bp_\bu_\bt_\br_\bc file.  Other
+       The default key-bindings may be changed with an  _\bi_\bn_\bp_\bu_\bt_\br_\bc  file.   Other
        programs that use this library may add their own commands and bindings.
 
        For example, placing
@@ -3282,18 +3279,18 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
               M-Control-u: universal-argument
        or
               C-Meta-u: universal-argument
-       into the _\bi_\bn_\bp_\bu_\bt_\br_\bc would make M-C-u execute the readline command  _\bu_\bn_\bi_\bv_\be_\br_\b-
+       into  the _\bi_\bn_\bp_\bu_\bt_\br_\bc would make M-C-u execute the readline command _\bu_\bn_\bi_\bv_\be_\br_\b-
        _\bs_\ba_\bl_\b-_\ba_\br_\bg_\bu_\bm_\be_\bn_\bt.
 
-       The  following  symbolic  character  names are recognized: _\bR_\bU_\bB_\bO_\bU_\bT, _\bD_\bE_\bL,
+       The following symbolic character names  are  recognized:  _\bR_\bU_\bB_\bO_\bU_\bT,  _\bD_\bE_\bL,
        _\bE_\bS_\bC, _\bL_\bF_\bD, _\bN_\bE_\bW_\bL_\bI_\bN_\bE, _\bR_\bE_\bT, _\bR_\bE_\bT_\bU_\bR_\bN, _\bS_\bP_\bC, _\bS_\bP_\bA_\bC_\bE, and _\bT_\bA_\bB.
 
-       In addition to command names, readline allows keys to  be  bound  to  a
+       In  addition  to  command  names, readline allows keys to be bound to a
        string that is inserted when the key is pressed (a _\bm_\ba_\bc_\br_\bo).
 
    R\bRe\bea\bad\bdl\bli\bin\bne\be K\bKe\bey\by B\bBi\bin\bnd\bdi\bin\bng\bgs\bs
-       The  syntax for controlling key bindings in the _\bi_\bn_\bp_\bu_\bt_\br_\bc file is simple.
-       All that is required is the name of the command or the text of a  macro
+       The syntax for controlling key bindings in the _\bi_\bn_\bp_\bu_\bt_\br_\bc file is  simple.
+       All  that is required is the name of the command or the text of a macro
        and a key sequence to which it should be bound.  The name may be speci-
        fied in one of two ways: as a symbolic key name, possibly with _\bM_\be_\bt_\ba_\b- or
        _\bC_\bo_\bn_\bt_\br_\bo_\bl_\b- prefixes, or as a key sequence.
@@ -3305,15 +3302,15 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
               Meta-Rubout: backward-kill-word
               Control-o: "> output"
 
-       In the above example, _\bC_\b-_\bu is bound to the function  u\bun\bni\biv\bve\ber\brs\bsa\bal\bl-\b-a\bar\brg\bgu\bum\bme\ben\bnt\bt,
-       _\bM_\b-_\bD_\bE_\b is bound to the function b\bba\bac\bck\bkw\bwa\bar\brd\bd-\b-k\bki\bil\bll\bl-\b-w\bwo\bor\brd\bd, and _\bC_\b-_\bo is bound to
-       run the macro expressed on the right hand side (that is, to insert  the
+       In  the above example, _\bC_\b-_\bu is bound to the function u\bun\bni\biv\bve\ber\brs\bsa\bal\bl-\b-a\bar\brg\bgu\bum\bme\ben\bnt\bt,
+       _\bM_\b-_\bD_\bE_\bis bound to the function b\bba\bac\bck\bkw\bwa\bar\brd\bd-\b-k\bki\bil\bll\bl-\b-w\bwo\bor\brd\bd, and _\bC_\b-_\bo is bound  to
+       run  the macro expressed on the right hand side (that is, to insert the
        text ``> output'' into the line).
 
-       In  the  second  form,  "\b"k\bke\bey\bys\bse\beq\bq"\b":_\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn_\b-_\bn_\ba_\bm_\be or _\bm_\ba_\bc_\br_\bo, k\bke\bey\bys\bse\beq\bq differs
-       from k\bke\bey\byn\bna\bam\bme\be above in that strings denoting an entire key sequence  may
-       be  specified  by  placing the sequence within double quotes.  Some GNU
-       Emacs style key escapes can be used, as in the following  example,  but
+       In the second form, "\b"k\bke\bey\bys\bse\beq\bq"\b":_\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn_\b-_\bn_\ba_\bm_\be  or  _\bm_\ba_\bc_\br_\bo,  k\bke\bey\bys\bse\beq\b differs
+       from  k\bke\bey\byn\bna\bam\bme\be above in that strings denoting an entire key sequence may
+       be specified by placing the sequence within double  quotes.   Some  GNU
+       Emacs  style  key escapes can be used, as in the following example, but
        the symbolic character names are not recognized.
 
               "\C-u": universal-argument
@@ -3321,7 +3318,7 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
               "\e[11~": "Function Key 1"
 
        In this example, _\bC_\b-_\bu is again bound to the function u\bun\bni\biv\bve\ber\brs\bsa\bal\bl-\b-a\bar\brg\bgu\bum\bme\ben\bnt\bt.
-       _\bC_\b-_\b_\bC_\b-_\br is bound to the function r\bre\be-\b-r\bre\bea\bad\bd-\b-i\bin\bni\bit\bt-\b-f\bfi\bil\ble\be, and _\bE_\bS_\bC _\b[ _\b1 _\b1 _\b is
+       _\bC_\b-_\b _\bC_\b-_\br is bound to the function r\bre\be-\b-r\bre\bea\bad\bd-\b-i\bin\bni\bit\bt-\b-f\bfi\bil\ble\be, and _\bE_\bS_\bC _\b[ _\b1 _\b1 _\b~ is
        bound to insert the text ``Function Key 1''.
 
        The full set of GNU Emacs style escape sequences is
@@ -3332,7 +3329,7 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
               \\b\"\b"     literal "
               \\b\'\b'     literal '
 
-       In  addition  to  the GNU Emacs style escape sequences, a second set of
+       In addition to the GNU Emacs style escape sequences, a  second  set  of
        backslash escapes is available:
               \\b\a\ba     alert (bell)
               \\b\b\bb     backspace
@@ -3342,20 +3339,20 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
               \\b\r\br     carriage return
               \\b\t\bt     horizontal tab
               \\b\v\bv     vertical tab
-              \\b\_\bn_\bn_\bn   the eight-bit character whose value is  the  octal  value
+              \\b\_\bn_\bn_\bn   the  eight-bit  character  whose value is the octal value
                      _\bn_\bn_\bn (one to three digits)
-              \\b\x\bx_\bH_\bH   the  eight-bit  character  whose value is the hexadecimal
+              \\b\x\bx_\bH_\bH   the eight-bit character whose value  is  the  hexadecimal
                      value _\bH_\bH (one or two hex digits)
 
        When entering the text of a macro, single or double quotes must be used
        to indicate a macro definition.  Unquoted text is assumed to be a func-
-       tion name.  In the macro body, the backslash  escapes  described  above
-       are  expanded.   Backslash  will quote any other character in the macro
+       tion  name.   In  the macro body, the backslash escapes described above
+       are expanded.  Backslash will quote any other character  in  the  macro
        text, including " and '.
 
-       B\bBa\bas\bsh\ballows the current readline key bindings to be displayed or  modi-
-       fied  with  the b\bbi\bin\bnd\bd builtin command.  The editing mode may be switched
-       during interactive use by using the -\b-o\bo option to the s\bse\bet\bt  builtin  com-
+       B\bBa\bas\bsh\b allows the current readline key bindings to be displayed or modi-
+       fied with the b\bbi\bin\bnd\bd builtin command.  The editing mode may  be  switched
+       during  interactive  use by using the -\b-o\bo option to the s\bse\bet\bt builtin com-
        mand (see S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below).
 
    R\bRe\bea\bad\bdl\bli\bin\bne\be V\bVa\bar\bri\bia\bab\bbl\ble\bes\bs
@@ -3366,106 +3363,106 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
               s\bse\bet\bt _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be_\b-_\bn_\ba_\bm_\be _\bv_\ba_\bl_\bu_\be
        or using the b\bbi\bin\bnd\bd builtin command (see S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below).
 
-       Except  where  noted,  readline variables can take the values O\bOn\bn or O\bOf\bff\bf
-       (without regard to case).  Unrecognized  variable  names  are  ignored.
-       When  a variable value is read, empty or null values, "on" (case-insen-
+       Except where noted, readline variables can take the values  O\bOn\bn  or  O\bOf\bff\bf
+       (without  regard  to  case).   Unrecognized variable names are ignored.
+       When a variable value is read, empty or null values, "on"  (case-insen-
        sitive), and "1" are equivalent to O\bOn\bn.  All other values are equivalent
        to O\bOf\bff\bf.  The variables and their default values are:
 
        a\bac\bct\bti\biv\bve\be-\b-r\bre\beg\bgi\bio\bon\bn-\b-s\bst\bta\bar\brt\bt-\b-c\bco\bol\blo\bor\br
-              A  string  variable  that controls the text color and background
-              when displaying the text in the active region (see the  descrip-
-              tion  of e\ben\bna\bab\bbl\ble\be-\b-a\bac\bct\bti\biv\bve\be-\b-r\bre\beg\bgi\bio\bon\bn below).  This string must not take
+              A string variable that controls the text  color  and  background
+              when  displaying the text in the active region (see the descrip-
+              tion of e\ben\bna\bab\bbl\ble\be-\b-a\bac\bct\bti\biv\bve\be-\b-r\bre\beg\bgi\bio\bon\bn below).  This string must not  take
               up any physical character positions on the display, so it should
-              consist  only of terminal escape sequences.  It is output to the
-              terminal before displaying the text in the active region.   This
-              variable  is  reset  to  the default value whenever the terminal
-              type changes.  The default value is the  string  that  puts  the
-              terminal  in standout mode, as obtained from the terminal's ter-
+              consist only of terminal escape sequences.  It is output to  the
+              terminal  before displaying the text in the active region.  This
+              variable is reset to the default  value  whenever  the  terminal
+              type  changes.   The  default  value is the string that puts the
+              terminal in standout mode, as obtained from the terminal's  ter-
               minfo description.  A sample value might be "\e[01;33m".
        a\bac\bct\bti\biv\bve\be-\b-r\bre\beg\bgi\bio\bon\bn-\b-e\ben\bnd\bd-\b-c\bco\bol\blo\bor\br
-              A string  variable  that  "undoes"  the  effects  of  a\bac\bct\bti\biv\bve\be-\b-r\bre\be-\b-
-              g\bgi\bio\bon\bn-\b-s\bst\bta\bar\brt\bt-\b-c\bco\bol\blo\bor\b and restores "normal" terminal display appear-
-              ance after displaying text in the active  region.   This  string
-              must  not  take  up any physical character positions on the dis-
-              play, so it should consist only of  terminal  escape  sequences.
-              It  is  output  to the terminal after displaying the text in the
-              active region.  This variable is  reset  to  the  default  value
-              whenever  the  terminal  type changes.  The default value is the
-              string that restores the terminal from  standout  mode,  as  ob-
+              A  string  variable  that  "undoes"  the  effects  of a\bac\bct\bti\biv\bve\be-\b-r\bre\be-\b-
+              g\bgi\bio\bon\bn-\b-s\bst\bta\bar\brt\bt-\b-c\bco\bol\blo\bor\band restores "normal" terminal display  appear-
+              ance  after  displaying  text in the active region.  This string
+              must not take up any physical character positions  on  the  dis-
+              play,  so  it  should consist only of terminal escape sequences.
+              It is output to the terminal after displaying the  text  in  the
+              active  region.   This  variable  is  reset to the default value
+              whenever the terminal type changes.  The default  value  is  the
+              string  that  restores  the  terminal from standout mode, as ob-
               tained from the terminal's terminfo description.  A sample value
               might be "\e[0m".
        b\bbe\bel\bll\bl-\b-s\bst\bty\byl\ble\be (\b(a\bau\bud\bdi\bib\bbl\ble\be)\b)
-              Controls what happens when readline wants to ring  the  terminal
+              Controls  what  happens when readline wants to ring the terminal
               bell.  If set to n\bno\bon\bne\be, readline never rings the bell.  If set to
-              v\bvi\bis\bsi\bib\bbl\ble\be, readline uses a visible bell if one is  available.   If
+              v\bvi\bis\bsi\bib\bbl\ble\be,  readline  uses a visible bell if one is available.  If
               set to a\bau\bud\bdi\bib\bbl\ble\be, readline attempts to ring the terminal's bell.
        b\bbi\bin\bnd\bd-\b-t\btt\bty\by-\b-s\bsp\bpe\bec\bci\bia\bal\bl-\b-c\bch\bha\bar\brs\bs (\b(O\bOn\bn)\b)
-              If  set  to O\bOn\bn, readline attempts to bind the control characters
+              If set to O\bOn\bn, readline attempts to bind the  control  characters
               treated specially by the kernel's terminal driver to their read-
               line equivalents.
        b\bbl\bli\bin\bnk\bk-\b-m\bma\bat\btc\bch\bhi\bin\bng\bg-\b-p\bpa\bar\bre\ben\bn (\b(O\bOf\bff\bf)\b)
               If set to O\bOn\bn, readline attempts to briefly move the cursor to an
               opening parenthesis when a closing parenthesis is inserted.
        c\bco\bol\blo\bor\bre\bed\bd-\b-c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bn-\b-p\bpr\bre\bef\bfi\bix\bx (\b(O\bOf\bff\bf)\b)
-              If set to O\bOn\bn, when listing completions,  readline  displays  the
+              If  set  to  O\bOn\bn, when listing completions, readline displays the
               common prefix of the set of possible completions using a differ-
-              ent color.  The color definitions are taken from  the  value  of
+              ent  color.   The  color definitions are taken from the value of
               the L\bLS\bS_\b_C\bCO\bOL\bLO\bOR\bRS\bS environment variable.  If there is a color defini-
-              tion in $\b$L\bLS\bS_\b_C\bCO\bOL\bLO\bOR\bRS\bS for the custom suffix  "readline-colored-com-
-              pletion-prefix",  readline uses this color for the common prefix
+              tion  in $\b$L\bLS\bS_\b_C\bCO\bOL\bLO\bOR\bRS\bS for the custom suffix "readline-colored-com-
+              pletion-prefix", readline uses this color for the common  prefix
               instead of its default.
        c\bco\bol\blo\bor\bre\bed\bd-\b-s\bst\bta\bat\bts\bs (\b(O\bOf\bff\bf)\b)
-              If set to O\bOn\bn, readline displays possible completions using  dif-
-              ferent  colors  to  indicate their file type.  The color defini-
-              tions are taken from the  value  of  the  L\bLS\bS_\b_C\bCO\bOL\bLO\bOR\bRS\b environment
+              If  set to O\bOn\bn, readline displays possible completions using dif-
+              ferent colors to indicate their file type.   The  color  defini-
+              tions  are  taken  from  the  value of the L\bLS\bS_\b_C\bCO\bOL\bLO\bOR\bRS\bS environment
               variable.
        c\bco\bom\bmm\bme\ben\bnt\bt-\b-b\bbe\beg\bgi\bin\bn (\b(`\b``\b`#\b#'\b''\b')\b)
-              The  string  that  is  inserted when the readline i\bin\bns\bse\ber\brt\bt-\b-c\bco\bom\bmm\bme\ben\bnt\bt
+              The string that is inserted  when  the  readline  i\bin\bns\bse\ber\brt\bt-\b-c\bco\bom\bmm\bme\ben\bnt\bt
               command is executed.  This command is bound to M\bM-\b-#\b# in emacs mode
               and to #\b# in vi command mode.
        c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bn-\b-d\bdi\bis\bsp\bpl\bla\bay\by-\b-w\bwi\bid\bdt\bth\bh (\b(-\b-1\b1)\b)
-              The  number  of  screen columns used to display possible matches
-              when performing completion.  The value is ignored if it is  less
-              than  0 or greater than the terminal screen width.  A value of 0
-              will cause matches to be displayed one per  line.   The  default
+              The number of screen columns used to  display  possible  matches
+              when  performing completion.  The value is ignored if it is less
+              than 0 or greater than the terminal screen width.  A value of  0
+              will  cause  matches  to be displayed one per line.  The default
               value is -1.
        c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bn-\b-i\big\bgn\bno\bor\bre\be-\b-c\bca\bas\bse\be (\b(O\bOf\bff\bf)\b)
               If set to O\bOn\bn, readline performs filename matching and completion
               in a case-insensitive fashion.
        c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bn-\b-m\bma\bap\bp-\b-c\bca\bas\bse\be (\b(O\bOf\bff\bf)\b)
-              If set to O\bOn\bn, and c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bn-\b-i\big\bgn\bno\bor\bre\be-\b-c\bca\bas\bse\be  is  enabled,  readline
-              treats  hyphens  (_\b-) and underscores (_\b_) as equivalent when per-
+              If  set  to  O\bOn\bn, and c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bn-\b-i\big\bgn\bno\bor\bre\be-\b-c\bca\bas\bse\be is enabled, readline
+              treats hyphens (_\b-) and underscores (_\b_) as equivalent  when  per-
               forming case-insensitive filename matching and completion.
        c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bn-\b-p\bpr\bre\bef\bfi\bix\bx-\b-d\bdi\bis\bsp\bpl\bla\bay\by-\b-l\ble\ben\bng\bgt\bth\bh (\b(0\b0)\b)
-              The length in characters of the common prefix of a list of  pos-
-              sible  completions that is displayed without modification.  When
-              set to a value greater than zero, common  prefixes  longer  than
-              this  value are replaced with an ellipsis when displaying possi-
+              The  length in characters of the common prefix of a list of pos-
+              sible completions that is displayed without modification.   When
+              set  to  a  value greater than zero, common prefixes longer than
+              this value are replaced with an ellipsis when displaying  possi-
               ble completions.
        c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bn-\b-q\bqu\bue\ber\bry\by-\b-i\bit\bte\bem\bms\bs (\b(1\b10\b00\b0)\b)
-              This determines when the user is queried about viewing the  num-
-              ber  of  possible  completions generated by the p\bpo\bos\bss\bsi\bib\bbl\ble\be-\b-c\bco\bom\bmp\bpl\ble\be-\b-
-              t\bti\bio\bon\bns\bcommand.  It may be set to any integer value greater  than
-              or  equal  to  zero.   If  the number of possible completions is
-              greater than or equal to the value of  this  variable,  readline
-              will  ask whether or not the user wishes to view them; otherwise
-              they are simply listed on the  terminal.   A  zero  value  means
+              This  determines when the user is queried about viewing the num-
+              ber of possible completions generated  by  the  p\bpo\bos\bss\bsi\bib\bbl\ble\be-\b-c\bco\bom\bmp\bpl\ble\be-\b-
+              t\bti\bio\bon\bns\b command.  It may be set to any integer value greater than
+              or equal to zero.  If the  number  of  possible  completions  is
+              greater  than  or  equal to the value of this variable, readline
+              will ask whether or not the user wishes to view them;  otherwise
+              they  are  simply  listed  on  the terminal.  A zero value means
               readline should never ask; negative values are treated as zero.
        c\bco\bon\bnv\bve\ber\brt\bt-\b-m\bme\bet\bta\ba (\b(O\bOn\bn)\b)
-              If  set  to O\bOn\bn, readline will convert characters with the eighth
+              If set to O\bOn\bn, readline will convert characters with  the  eighth
               bit set to an ASCII key sequence by stripping the eighth bit and
-              prefixing  an  escape  character (in effect, using escape as the
-              _\bm_\be_\bt_\b_\bp_\br_\be_\bf_\bi_\bx).  The default is _\bO_\bn, but readline will  set  it  to
-              _\bO_\bf_\b if the locale contains eight-bit characters.  This variable
-              is dependent on the L\bLC\bC_\b_C\bCT\bTY\bYP\bPE\bE locale category, and may change  if
+              prefixing an escape character (in effect, using  escape  as  the
+              _\bm_\be_\bt_\b _\bp_\br_\be_\bf_\bi_\bx).   The  default is _\bO_\bn, but readline will set it to
+              _\bO_\bf_\bif the locale contains eight-bit characters.  This  variable
+              is  dependent on the L\bLC\bC_\b_C\bCT\bTY\bYP\bPE\bE locale category, and may change if
               the locale is changed.
        d\bdi\bis\bsa\bab\bbl\ble\be-\b-c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bn (\b(O\bOf\bff\bf)\b)
               If set to O\bOn\bn, readline will inhibit word completion.  Completion
-              characters will be inserted into the line as if  they  had  been
+              characters  will  be  inserted into the line as if they had been
               mapped to s\bse\bel\blf\bf-\b-i\bin\bns\bse\ber\brt\bt.
        e\bec\bch\bho\bo-\b-c\bco\bon\bnt\btr\bro\bol\bl-\b-c\bch\bha\bar\bra\bac\bct\bte\ber\brs\bs (\b(O\bOn\bn)\b)
-              When  set to O\bOn\bn, on operating systems that indicate they support
+              When set to O\bOn\bn, on operating systems that indicate they  support
               it, readline echoes a character corresponding to a signal gener-
               ated from the keyboard.
        e\bed\bdi\bit\bti\bin\bng\bg-\b-m\bmo\bod\bde\be (\b(e\bem\bma\bac\bcs\bs)\b)
@@ -3473,29 +3470,29 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
               ilar to _\bE_\bm_\ba_\bc_\bs or _\bv_\bi.  e\bed\bdi\bit\bti\bin\bng\bg-\b-m\bmo\bod\bde\be can be set to either e\bem\bma\bac\bcs\bs or
               v\bvi\bi.
        e\bem\bma\bac\bcs\bs-\b-m\bmo\bod\bde\be-\b-s\bst\btr\bri\bin\bng\bg (\b(@\b@)\b)
-              If  the  _\bs_\bh_\bo_\bw_\b-_\bm_\bo_\bd_\be_\b-_\bi_\bn_\b-_\bp_\br_\bo_\bm_\bp_\bt variable is enabled, this string is
+              If the _\bs_\bh_\bo_\bw_\b-_\bm_\bo_\bd_\be_\b-_\bi_\bn_\b-_\bp_\br_\bo_\bm_\bp_\bt variable is enabled, this  string  is
               displayed immediately before the last line of the primary prompt
               when emacs editing mode is active.  The value is expanded like a
-              key binding, so the standard set of meta- and  control  prefixes
-              and  backslash escape sequences is available.  Use the \1 and \2
-              escapes to begin and end sequences of  non-printing  characters,
-              which  can be used to embed a terminal control sequence into the
+              key  binding,  so the standard set of meta- and control prefixes
+              and backslash escape sequences is available.  Use the \1 and  \2
+              escapes  to  begin and end sequences of non-printing characters,
+              which can be used to embed a terminal control sequence into  the
               mode string.
        e\ben\bna\bab\bbl\ble\be-\b-a\bac\bct\bti\biv\bve\be-\b-r\bre\beg\bgi\bio\bon\bn (\b(O\bOn\bn)\b)
-              The _\bp_\bo_\bi_\bn_\bt is the current cursor position, and _\bm_\ba_\br_\bk refers  to  a
-              saved  cursor  position.  The text between the point and mark is
-              referred to as the _\br_\be_\bg_\bi_\bo_\bn.  When this variable  is  set  to  _\bO_\bn,
-              readline  allows certain commands to designate the region as _\ba_\bc_\b-
-              _\bt_\bi_\bv_\be.  When the region is active, readline highlights  the  text
-              in  the region using the value of the a\bac\bct\bti\biv\bve\be-\b-r\bre\beg\bgi\bio\bon\bn-\b-s\bst\bta\bar\brt\bt-\b-c\bco\bol\blo\bor\br,
-              which defaults to the string that enables the terminal's  stand-
-              out  mode.   The active region shows the text inserted by brack-
-              eted-paste and any matching text found by incremental  and  non-
+              The  _\bp_\bo_\bi_\bn_\bt  is the current cursor position, and _\bm_\ba_\br_\bk refers to a
+              saved cursor position.  The text between the point and  mark  is
+              referred  to  as  the  _\br_\be_\bg_\bi_\bo_\bn.  When this variable is set to _\bO_\bn,
+              readline allows certain commands to designate the region as  _\ba_\bc_\b-
+              _\bt_\bi_\bv_\be.   When  the region is active, readline highlights the text
+              in the region using the value of the  a\bac\bct\bti\biv\bve\be-\b-r\bre\beg\bgi\bio\bon\bn-\b-s\bst\bta\bar\brt\bt-\b-c\bco\bol\blo\bor\br,
+              which  defaults to the string that enables the terminal's stand-
+              out mode.  The active region shows the text inserted  by  brack-
+              eted-paste  and  any matching text found by incremental and non-
               incremental history searches.
        e\ben\bna\bab\bbl\ble\be-\b-b\bbr\bra\bac\bck\bke\bet\bte\bed\bd-\b-p\bpa\bas\bst\bte\be (\b(O\bOn\bn)\b)
-              When  set to O\bOn\bn, readline configures the terminal to insert each
-              paste into the editing buffer as a single string of  characters,
-              instead  of  treating each character as if it had been read from
+              When set to O\bOn\bn, readline configures the terminal to insert  each
+              paste  into the editing buffer as a single string of characters,
+              instead of treating each character as if it had been  read  from
               the keyboard.  This prevents readline from executing any editing
               commands bound to key sequences appearing in the pasted text.
        e\ben\bna\bab\bbl\ble\be-\b-k\bke\bey\byp\bpa\bad\bd (\b(O\bOf\bff\bf)\b)
@@ -3503,195 +3500,195 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
               pad when it is called.  Some systems need this to enable the ar-
               row keys.
        e\ben\bna\bab\bbl\ble\be-\b-m\bme\bet\bta\ba-\b-k\bke\bey\by (\b(O\bOn\bn)\b)
-              When  set  to  O\bOn\bn, readline will try to enable any meta modifier
-              key the terminal claims to support when it is called.   On  many
+              When set to O\bOn\bn, readline will try to enable  any  meta  modifier
+              key  the  terminal claims to support when it is called.  On many
               terminals, the meta key is used to send eight-bit characters.
        e\bex\bxp\bpa\ban\bnd\bd-\b-t\bti\bil\bld\bde\be (\b(O\bOf\bff\bf)\b)
-              If  set  to  O\bOn\bn,  tilde expansion is performed when readline at-
+              If set to O\bOn\bn, tilde expansion is  performed  when  readline  at-
               tempts word completion.
        h\bhi\bis\bst\bto\bor\bry\by-\b-p\bpr\bre\bes\bse\ber\brv\bve\be-\b-p\bpo\boi\bin\bnt\bt (\b(O\bOf\bff\bf)\b)
-              If set to O\bOn\bn, the history code attempts to place  point  at  the
-              same  location on each history line retrieved with p\bpr\bre\bev\bvi\bio\bou\bus\bs-\b-h\bhi\bis\bs-\b-
+              If  set  to  O\bOn\bn, the history code attempts to place point at the
+              same location on each history line retrieved with  p\bpr\bre\bev\bvi\bio\bou\bus\bs-\b-h\bhi\bis\bs-\b-
               t\bto\bor\bry\by or n\bne\bex\bxt\bt-\b-h\bhi\bis\bst\bto\bor\bry\by.
        h\bhi\bis\bst\bto\bor\bry\by-\b-s\bsi\biz\bze\be (\b(u\bun\bns\bse\bet\bt)\b)
-              Set the maximum number of history entries saved in  the  history
-              list.   If set to zero, any existing history entries are deleted
+              Set  the  maximum number of history entries saved in the history
+              list.  If set to zero, any existing history entries are  deleted
               and no new entries are saved.  If set to a value less than zero,
-              the  number  of history entries is not limited.  By default, the
-              number of history entries is set to the value  of  the  H\bHI\bIS\bST\bTS\bSI\bIZ\bZE\bE
-              shell  variable.  If an attempt is made to set _\bh_\bi_\bs_\bt_\bo_\br_\by_\b-_\bs_\bi_\bz_\be to a
+              the number of history entries is not limited.  By  default,  the
+              number  of  history  entries is set to the value of the H\bHI\bIS\bST\bTS\bSI\bIZ\bZE\bE
+              shell variable.  If an attempt is made to set _\bh_\bi_\bs_\bt_\bo_\br_\by_\b-_\bs_\bi_\bz_\be to  a
               non-numeric value, the maximum number of history entries will be
               set to 500.
        h\bho\bor\bri\biz\bzo\bon\bnt\bta\bal\bl-\b-s\bsc\bcr\bro\bol\bll\bl-\b-m\bmo\bod\bde\be (\b(O\bOf\bff\bf)\b)
-              When  set  to  O\bOn\bn, makes readline use a single line for display,
+              When set to O\bOn\bn, makes readline use a single  line  for  display,
               scrolling the input horizontally on a single screen line when it
-              becomes  longer  than the screen width rather than wrapping to a
-              new line.  This setting is automatically enabled  for  terminals
+              becomes longer than the screen width rather than wrapping  to  a
+              new  line.   This setting is automatically enabled for terminals
               of height 1.
        i\bin\bnp\bpu\but\bt-\b-m\bme\bet\bta\ba (\b(O\bOf\bff\bf)\b)
-              If  set to O\bOn\bn, readline will enable eight-bit input (that is, it
+              If set to O\bOn\bn, readline will enable eight-bit input (that is,  it
               will not strip the eighth bit from the characters it reads), re-
-              gardless  of  what the terminal claims it can support.  The name
-              m\bme\bet\bta\ba-\b-f\bfl\bla\bag\bis a synonym for this variable.  The default  is  _\bO_\bf_\bf,
-              but  readline will set it to _\bO_\bn if the locale contains eight-bit
-              characters.  This variable is dependent on the  L\bLC\bC_\b_C\bCT\bTY\bYP\bPE\b locale
+              gardless of what the terminal claims it can support.   The  name
+              m\bme\bet\bta\ba-\b-f\bfl\bla\bag\b is  a synonym for this variable.  The default is _\bO_\bf_\bf,
+              but readline will set it to _\bO_\bn if the locale contains  eight-bit
+              characters.   This  variable is dependent on the L\bLC\bC_\b_C\bCT\bTY\bYP\bPE\bE locale
               category, and may change if the locale is changed.
        i\bis\bse\bea\bar\brc\bch\bh-\b-t\bte\ber\brm\bmi\bin\bna\bat\bto\bor\brs\bs (\b(`\b``\b`C\bC-\b-[\b[C\bC-\b-J\bJ'\b''\b')\b)
-              The  string  of  characters that should terminate an incremental
-              search without subsequently executing the character  as  a  com-
-              mand.   If this variable has not been given a value, the charac-
+              The string of characters that should  terminate  an  incremental
+              search  without  subsequently  executing the character as a com-
+              mand.  If this variable has not been given a value, the  charac-
               ters _\bE_\bS_\bC and _\bC_\b-_\bJ will terminate an incremental search.
        k\bke\bey\bym\bma\bap\bp (\b(e\bem\bma\bac\bcs\bs)\b)
-              Set the current readline keymap.  The set of valid keymap  names
-              is  _\be_\bm_\ba_\bc_\bs_\b,  _\be_\bm_\ba_\bc_\bs_\b-_\bs_\bt_\ba_\bn_\bd_\ba_\br_\bd_\b,  _\be_\bm_\ba_\bc_\bs_\b-_\bm_\be_\bt_\ba_\b, _\be_\bm_\ba_\bc_\bs_\b-_\bc_\bt_\bl_\bx_\b, _\bv_\bi_\b, _\bv_\bi_\b-_\bc_\bo_\bm_\b-
-              _\bm_\ba_\bn_\bd, and _\bv_\bi_\b-_\bi_\bn_\bs_\be_\br_\bt.  _\bv_\bi is equivalent to _\bv_\bi_\b-_\bc_\bo_\bm_\bm_\ba_\bn_\bd;  _\be_\bm_\ba_\bc_\b is
-              equivalent  to  _\be_\bm_\ba_\bc_\bs_\b-_\bs_\bt_\ba_\bn_\bd_\ba_\br_\bd.  The default value is _\be_\bm_\ba_\bc_\bs; the
+              Set  the current readline keymap.  The set of valid keymap names
+              is _\be_\bm_\ba_\bc_\bs_\b, _\be_\bm_\ba_\bc_\bs_\b-_\bs_\bt_\ba_\bn_\bd_\ba_\br_\bd_\b, _\be_\bm_\ba_\bc_\bs_\b-_\bm_\be_\bt_\ba_\b,  _\be_\bm_\ba_\bc_\bs_\b-_\bc_\bt_\bl_\bx_\b,  _\bv_\bi_\b _\bv_\bi_\b-_\bc_\bo_\bm_\b-
+              _\bm_\ba_\bn_\bd,  and  _\bv_\bi_\b-_\bi_\bn_\bs_\be_\br_\bt.  _\bv_\bi is equivalent to _\bv_\bi_\b-_\bc_\bo_\bm_\bm_\ba_\bn_\bd; _\be_\bm_\ba_\bc_\bs is
+              equivalent to _\be_\bm_\ba_\bc_\bs_\b-_\bs_\bt_\ba_\bn_\bd_\ba_\br_\bd.  The default value is  _\be_\bm_\ba_\bc_\bs;  the
               value of e\bed\bdi\bit\bti\bin\bng\bg-\b-m\bmo\bod\bde\be also affects the default keymap.
        k\bke\bey\bys\bse\beq\bq-\b-t\bti\bim\bme\beo\bou\but\bt (\b(5\b50\b00\b0)\b)
-              Specifies the duration _\br_\be_\ba_\bd_\bl_\bi_\bn_\be will wait for a  character  when
-              reading  an ambiguous key sequence (one that can form a complete
+              Specifies  the  duration _\br_\be_\ba_\bd_\bl_\bi_\bn_\be will wait for a character when
+              reading an ambiguous key sequence (one that can form a  complete
               key sequence using the input read so far, or can take additional
-              input  to  complete  a longer key sequence).  If no input is re-
-              ceived within the timeout, _\br_\be_\ba_\bd_\bl_\bi_\bn_\be will  use  the  shorter  but
-              complete  key sequence.  The value is specified in milliseconds,
-              so a value of 1000 means that _\br_\be_\ba_\bd_\bl_\bi_\bn_\be will wait one second  for
-              additional  input.  If this variable is set to a value less than
-              or equal to zero, or to a non-numeric value, _\br_\be_\ba_\bd_\bl_\bi_\bn_\be will  wait
-              until  another  key  is  pressed to decide which key sequence to
+              input to complete a longer key sequence).  If no  input  is  re-
+              ceived  within  the  timeout,  _\br_\be_\ba_\bd_\bl_\bi_\bn_\be will use the shorter but
+              complete key sequence.  The value is specified in  milliseconds,
+              so  a value of 1000 means that _\br_\be_\ba_\bd_\bl_\bi_\bn_\be will wait one second for
+              additional input.  If this variable is set to a value less  than
+              or  equal to zero, or to a non-numeric value, _\br_\be_\ba_\bd_\bl_\bi_\bn_\be will wait
+              until another key is pressed to decide  which  key  sequence  to
               complete.
        m\bma\bar\brk\bk-\b-d\bdi\bir\bre\bec\bct\bto\bor\bri\bie\bes\bs (\b(O\bOn\bn)\b)
               If set to O\bOn\bn, completed directory names have a slash appended.
        m\bma\bar\brk\bk-\b-m\bmo\bod\bdi\bif\bfi\bie\bed\bd-\b-l\bli\bin\bne\bes\bs (\b(O\bOf\bff\bf)\b)
-              If set to O\bOn\bn, history lines that have  been  modified  are  dis-
+              If  set  to  O\bOn\bn,  history lines that have been modified are dis-
               played with a preceding asterisk (*\b*).
        m\bma\bar\brk\bk-\b-s\bsy\bym\bml\bli\bin\bnk\bke\bed\bd-\b-d\bdi\bir\bre\bec\bct\bto\bor\bri\bie\bes\bs (\b(O\bOf\bff\bf)\b)
               If set to O\bOn\bn, completed names which are symbolic links to direc-
-              tories have a slash appended (subject to the value  of  m\bma\bar\brk\bk-\b-d\bdi\bi-\b-
+              tories  have  a slash appended (subject to the value of m\bma\bar\brk\bk-\b-d\bdi\bi-\b-
               r\bre\bec\bct\bto\bor\bri\bie\bes\bs).
        m\bma\bat\btc\bch\bh-\b-h\bhi\bid\bdd\bde\ben\bn-\b-f\bfi\bil\ble\bes\bs (\b(O\bOn\bn)\b)
-              This  variable,  when  set to O\bOn\bn, causes readline to match files
-              whose names begin with a  `.'  (hidden  files)  when  performing
-              filename  completion.   If  set  to O\bOf\bff\bf, the leading `.' must be
+              This variable, when set to O\bOn\bn, causes readline  to  match  files
+              whose  names  begin  with  a  `.' (hidden files) when performing
+              filename completion.  If set to O\bOf\bff\bf, the  leading  `.'  must  be
               supplied by the user in the filename to be completed.
        m\bme\ben\bnu\bu-\b-c\bco\bom\bmp\bpl\ble\bet\bte\be-\b-d\bdi\bis\bsp\bpl\bla\bay\by-\b-p\bpr\bre\bef\bfi\bix\bx (\b(O\bOf\bff\bf)\b)
-              If set to O\bOn\bn, menu completion displays the common prefix of  the
+              If  set to O\bOn\bn, menu completion displays the common prefix of the
               list of possible completions (which may be empty) before cycling
               through the list.
        o\bou\but\btp\bpu\but\bt-\b-m\bme\bet\bta\ba (\b(O\bOf\bff\bf)\b)
-              If set to O\bOn\bn, readline will display characters with  the  eighth
+              If  set  to O\bOn\bn, readline will display characters with the eighth
               bit set directly rather than as a meta-prefixed escape sequence.
               The default is _\bO_\bf_\bf, but readline will set it to _\bO_\bn if the locale
-              contains  eight-bit  characters.   This variable is dependent on
-              the L\bLC\bC_\b_C\bCT\bTY\bYP\bPE\bE locale category, and may change if  the  locale  is
+              contains eight-bit characters.  This variable  is  dependent  on
+              the  L\bLC\bC_\b_C\bCT\bTY\bYP\bPE\bE  locale  category, and may change if the locale is
               changed.
        p\bpa\bag\bge\be-\b-c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bns\bs (\b(O\bOn\bn)\b)
-              If  set to O\bOn\bn, readline uses an internal _\bm_\bo_\br_\be-like pager to dis-
+              If set to O\bOn\bn, readline uses an internal _\bm_\bo_\br_\be-like pager to  dis-
               play a screenful of possible completions at a time.
        p\bpr\bri\bin\bnt\bt-\b-c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bns\bs-\b-h\bho\bor\bri\biz\bzo\bon\bnt\bta\bal\bll\bly\by (\b(O\bOf\bff\bf)\b)
-              If set to O\bOn\bn, readline will  display  completions  with  matches
-              sorted  horizontally in alphabetical order, rather than down the
+              If  set  to  O\bOn\bn,  readline will display completions with matches
+              sorted horizontally in alphabetical order, rather than down  the
               screen.
        r\bre\bev\bve\ber\brt\bt-\b-a\bal\bll\bl-\b-a\bat\bt-\b-n\bne\bew\bwl\bli\bin\bne\be (\b(O\bOf\bff\bf)\b)
-              If set to O\bOn\bn, readline will undo all changes  to  history  lines
+              If  set  to  O\bOn\bn, readline will undo all changes to history lines
               before returning when a\bac\bcc\bce\bep\bpt\bt-\b-l\bli\bin\bne\be is executed.  By default, his-
-              tory lines may be modified  and  retain  individual  undo  lists
+              tory  lines  may  be  modified  and retain individual undo lists
               across calls to r\bre\bea\bad\bdl\bli\bin\bne\be.
        s\bse\bea\bar\brc\bch\bh-\b-i\big\bgn\bno\bor\bre\be-\b-c\bca\bas\bse\be (\b(O\bOf\bff\bf)\b)
-              If  set to O\bOn\bn, readline performs incremental and non-incremental
+              If set to O\bOn\bn, readline performs incremental and  non-incremental
               history list searches in a case-insensitive fashion.
        s\bsh\bho\bow\bw-\b-a\bal\bll\bl-\b-i\bif\bf-\b-a\bam\bmb\bbi\big\bgu\buo\bou\bus\bs (\b(O\bOf\bff\bf)\b)
-              This alters the default behavior of  the  completion  functions.
+              This  alters  the  default behavior of the completion functions.
               If set to O\bOn\bn, words which have more than one possible completion
-              cause the matches to be listed immediately  instead  of  ringing
+              cause  the  matches  to be listed immediately instead of ringing
               the bell.
        s\bsh\bho\bow\bw-\b-a\bal\bll\bl-\b-i\bif\bf-\b-u\bun\bnm\bmo\bod\bdi\bif\bfi\bie\bed\bd (\b(O\bOf\bff\bf)\b)
-              This  alters the default behavior of the completion functions in
+              This alters the default behavior of the completion functions  in
               a fashion similar to s\bsh\bho\bow\bw-\b-a\bal\bll\bl-\b-i\bif\bf-\b-a\bam\bmb\bbi\big\bgu\buo\bou\bus\bs.  If set to O\bOn\bn, words
-              which  have more than one possible completion without any possi-
-              ble partial completion (the possible completions don't  share  a
-              common  prefix)  cause  the matches to be listed immediately in-
+              which have more than one possible completion without any  possi-
+              ble  partial  completion (the possible completions don't share a
+              common prefix) cause the matches to be  listed  immediately  in-
               stead of ringing the bell.
        s\bsh\bho\bow\bw-\b-m\bmo\bod\bde\be-\b-i\bin\bn-\b-p\bpr\bro\bom\bmp\bpt\bt (\b(O\bOf\bff\bf)\b)
-              If set to O\bOn\bn, add a string to the beginning of the prompt  indi-
-              cating  the  editing  mode:  emacs, vi command, or vi insertion.
+              If  set to O\bOn\bn, add a string to the beginning of the prompt indi-
+              cating the editing mode: emacs, vi  command,  or  vi  insertion.
               The mode strings are user-settable (e.g., _\be_\bm_\ba_\bc_\bs_\b-_\bm_\bo_\bd_\be_\b-_\bs_\bt_\br_\bi_\bn_\bg).
        s\bsk\bki\bip\bp-\b-c\bco\bom\bmp\bpl\ble\bet\bte\bed\bd-\b-t\bte\bex\bxt\bt (\b(O\bOf\bff\bf)\b)
-              If set to O\bOn\bn, this alters the default completion  behavior  when
-              inserting  a  single match into the line.  It's only active when
-              performing completion in the middle  of  a  word.   If  enabled,
-              readline  does  not  insert  characters from the completion that
-              match characters after point in the  word  being  completed,  so
+              If  set  to O\bOn\bn, this alters the default completion behavior when
+              inserting a single match into the line.  It's only  active  when
+              performing  completion  in  the  middle  of a word.  If enabled,
+              readline does not insert characters  from  the  completion  that
+              match  characters  after  point  in the word being completed, so
               portions of the word following the cursor are not duplicated.
        v\bvi\bi-\b-c\bcm\bmd\bd-\b-m\bmo\bod\bde\be-\b-s\bst\btr\bri\bin\bng\bg (\b((\b(c\bcm\bmd\bd)\b))\b)
-              If  the  _\bs_\bh_\bo_\bw_\b-_\bm_\bo_\bd_\be_\b-_\bi_\bn_\b-_\bp_\br_\bo_\bm_\bp_\bt variable is enabled, this string is
+              If the _\bs_\bh_\bo_\bw_\b-_\bm_\bo_\bd_\be_\b-_\bi_\bn_\b-_\bp_\br_\bo_\bm_\bp_\bt variable is enabled, this  string  is
               displayed immediately before the last line of the primary prompt
-              when  vi  editing mode is active and in command mode.  The value
+              when vi editing mode is active and in command mode.   The  value
               is expanded like a key binding, so the standard set of meta- and
-              control  prefixes  and  backslash escape sequences is available.
-              Use the \1 and \2 escapes to begin and  end  sequences  of  non-
-              printing  characters, which can be used to embed a terminal con-
+              control prefixes and backslash escape  sequences  is  available.
+              Use  the  \1  and  \2 escapes to begin and end sequences of non-
+              printing characters, which can be used to embed a terminal  con-
               trol sequence into the mode string.
        v\bvi\bi-\b-i\bin\bns\bs-\b-m\bmo\bod\bde\be-\b-s\bst\btr\bri\bin\bng\bg (\b((\b(i\bin\bns\bs)\b))\b)
-              If the _\bs_\bh_\bo_\bw_\b-_\bm_\bo_\bd_\be_\b-_\bi_\bn_\b-_\bp_\br_\bo_\bm_\bp_\bt variable is enabled, this  string  is
+              If  the  _\bs_\bh_\bo_\bw_\b-_\bm_\bo_\bd_\be_\b-_\bi_\bn_\b-_\bp_\br_\bo_\bm_\bp_\bt variable is enabled, this string is
               displayed immediately before the last line of the primary prompt
               when vi editing mode is active and in insertion mode.  The value
               is expanded like a key binding, so the standard set of meta- and
-              control prefixes and backslash escape  sequences  is  available.
-              Use  the  \1  and  \2 escapes to begin and end sequences of non-
-              printing characters, which can be used to embed a terminal  con-
+              control  prefixes  and  backslash escape sequences is available.
+              Use the \1 and \2 escapes to begin and  end  sequences  of  non-
+              printing  characters, which can be used to embed a terminal con-
               trol sequence into the mode string.
        v\bvi\bis\bsi\bib\bbl\ble\be-\b-s\bst\bta\bat\bts\bs (\b(O\bOf\bff\bf)\b)
-              If  set to O\bOn\bn, a character denoting a file's type as reported by
-              _\bs_\bt_\ba_\bt(2) is appended to the filename when listing  possible  com-
+              If set to O\bOn\bn, a character denoting a file's type as reported  by
+              _\bs_\bt_\ba_\bt(2)  is  appended to the filename when listing possible com-
               pletions.
 
    R\bRe\bea\bad\bdl\bli\bin\bne\be C\bCo\bon\bnd\bdi\bit\bti\bio\bon\bna\bal\bl C\bCo\bon\bns\bst\btr\bru\buc\bct\bts\bs
-       Readline  implements  a  facility  similar in spirit to the conditional
-       compilation features of the C preprocessor which  allows  key  bindings
-       and  variable  settings  to be performed as the result of tests.  There
+       Readline implements a facility similar in  spirit  to  the  conditional
+       compilation  features  of  the C preprocessor which allows key bindings
+       and variable settings to be performed as the result  of  tests.   There
        are four parser directives used.
 
-       $\b$i\bif\bf    The $\b$i\bif\bf construct allows bindings to be made based on the  edit-
-              ing  mode,  the  terminal  being  used, or the application using
+       $\b$i\bif\bf    The  $\b$i\bif\bf construct allows bindings to be made based on the edit-
+              ing mode, the terminal being  used,  or  the  application  using
               readline.  The text of the test, after any comparison operator,
-               extends to the end of the  line;  unless  otherwise  noted,  no
+               extends  to  the  end  of  the line; unless otherwise noted, no
               characters are required to isolate it.
 
-              m\bmo\bod\bde\be   The  m\bmo\bod\bde\be=\b=  form  of  the  $\b$i\bif\bf  directive is used to test
-                     whether readline is in emacs or vi  mode.   This  may  be
-                     used  in conjunction with the s\bse\bet\bt k\bke\bey\bym\bma\bap\bp command, for in-
-                     stance,  to  set  bindings  in  the  _\be_\bm_\ba_\bc_\bs_\b-_\bs_\bt_\ba_\bn_\bd_\ba_\br_\b  and
-                     _\be_\bm_\ba_\bc_\bs_\b-_\bc_\bt_\bl_\b keymaps  only  if readline is starting out in
+              m\bmo\bod\bde\be   The m\bmo\bod\bde\be=\b= form of the  $\b$i\bif\bf  directive  is  used  to  test
+                     whether  readline  is  in  emacs or vi mode.  This may be
+                     used in conjunction with the s\bse\bet\bt k\bke\bey\bym\bma\bap\bp command, for  in-
+                     stance,   to  set  bindings  in  the  _\be_\bm_\ba_\bc_\bs_\b-_\bs_\bt_\ba_\bn_\bd_\ba_\br_\bd  and
+                     _\be_\bm_\ba_\bc_\bs_\b-_\bc_\bt_\bl_\bkeymaps only if readline is  starting  out  in
                      emacs mode.
 
-              t\bte\ber\brm\bm   The t\bte\ber\brm\bm=\b= form may be used to  include  terminal-specific
+              t\bte\ber\brm\bm   The  t\bte\ber\brm\bm=\b=  form may be used to include terminal-specific
                      key bindings, perhaps to bind the key sequences output by
                      the terminal's function keys.  The word on the right side
                      of the =\b= is tested against both the full name of the ter-
-                     minal and the portion of the  terminal  name  before  the
-                     first  -\b-.  This allows _\bs_\bu_\bn to match both _\bs_\bu_\bn and _\bs_\bu_\bn_\b-_\bc_\bm_\bd,
+                     minal  and  the  portion  of the terminal name before the
+                     first -\b-.  This allows _\bs_\bu_\bn to match both _\bs_\bu_\bn and  _\bs_\bu_\bn_\b-_\bc_\bm_\bd,
                      for instance.
 
               v\bve\ber\brs\bsi\bio\bon\bn
-                     The v\bve\ber\brs\bsi\bio\bon\bn test  may  be  used  to  perform  comparisons
-                     against  specific readline versions.  The v\bve\ber\brs\bsi\bio\bon\bn expands
-                     to the current readline version.  The set  of  comparison
-                     operators  includes  =\b=,  (and  =\b==\b=), !\b!=\b=, <\b<=\b=, >\b>=\b=, <\b<, and >\b>.
-                     The version number supplied on the right side of the  op-
-                     erator  consists  of  a major version number, an optional
+                     The  v\bve\ber\brs\bsi\bio\bon\bn  test  may  be  used  to perform comparisons
+                     against specific readline versions.  The v\bve\ber\brs\bsi\bio\bon\b expands
+                     to  the  current readline version.  The set of comparison
+                     operators includes =\b=, (and =\b==\b=), !\b!=\b=, <\b<=\b=,  >\b>=\b=,  <\b<,  and  >\b>.
+                     The  version number supplied on the right side of the op-
+                     erator consists of a major version  number,  an  optional
                      decimal point, and an optional minor version (e.g., 7\b7.\b.1\b1).
-                     If  the  minor version is omitted, it is assumed to be 0\b0.
+                     If the minor version is omitted, it is assumed to  be  0\b0.
                      The operator may be separated from the string v\bve\ber\brs\bsi\bio\bon\bn and
                      from the version number argument by whitespace.
 
               a\bap\bpp\bpl\bli\bic\bca\bat\bti\bio\bon\bn
                      The a\bap\bpp\bpl\bli\bic\bca\bat\bti\bio\bon\bn construct is used to include application-
-                     specific settings.  Each program using the  readline  li-
-                     brary  sets  the  _\ba_\bp_\bp_\bl_\bi_\bc_\ba_\bt_\bi_\bo_\bn _\bn_\ba_\bm_\be, and an initialization
+                     specific  settings.   Each program using the readline li-
+                     brary sets the _\ba_\bp_\bp_\bl_\bi_\bc_\ba_\bt_\bi_\bo_\bn _\bn_\ba_\bm_\be,  and  an  initialization
                      file can test for a particular value.  This could be used
-                     to  bind key sequences to functions useful for a specific
-                     program.  For instance, the following command adds a  key
-                     sequence  that  quotes  the  current  or previous word in
+                     to bind key sequences to functions useful for a  specific
+                     program.   For instance, the following command adds a key
+                     sequence that quotes the  current  or  previous  word  in
                      b\bba\bas\bsh\bh:
 
                      $\b$i\bif\bf Bash
@@ -3701,12 +3698,12 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
 
               _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be
                      The _\bv_\ba_\br_\bi_\ba_\bb_\bl_\be construct provides simple equality tests for
-                     readline  variables and values.  The permitted comparison
-                     operators are _\b=, _\b=_\b=, and _\b!_\b=.  The variable name  must  be
+                     readline variables and values.  The permitted  comparison
+                     operators  are  _\b=, _\b=_\b=, and _\b!_\b=.  The variable name must be
                      separated from the comparison operator by whitespace; the
-                     operator may be separated from the  value  on  the  right
-                     hand  side  by whitespace.  Both string and boolean vari-
-                     ables may be tested. Boolean  variables  must  be  tested
+                     operator  may  be  separated  from the value on the right
+                     hand side by whitespace.  Both string and  boolean  vari-
+                     ables  may  be  tested.  Boolean variables must be tested
                      against the values _\bo_\bn and _\bo_\bf_\bf.
 
        $\b$e\ben\bnd\bdi\bif\bf This command, as seen in the previous example, terminates an $\b$i\bif\bf
@@ -3716,51 +3713,51 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
               test fails.
 
        $\b$i\bin\bnc\bcl\blu\bud\bde\be
-              This  directive takes a single filename as an argument and reads
-              commands and bindings from that file.  For example, the  follow-
+              This directive takes a single filename as an argument and  reads
+              commands  and bindings from that file.  For example, the follow-
               ing directive would read _\b/_\be_\bt_\bc_\b/_\bi_\bn_\bp_\bu_\bt_\br_\bc:
 
               $\b$i\bin\bnc\bcl\blu\bud\bde\be  _\b/_\be_\bt_\bc_\b/_\bi_\bn_\bp_\bu_\bt_\br_\bc
 
    S\bSe\bea\bar\brc\bch\bhi\bin\bng\bg
-       Readline  provides  commands  for searching through the command history
+       Readline provides commands for searching through  the  command  history
        (see H\bHI\bIS\bST\bTO\bOR\bRY\bY below) for lines containing a specified string.  There are
        two search modes: _\bi_\bn_\bc_\br_\be_\bm_\be_\bn_\bt_\ba_\bl and _\bn_\bo_\bn_\b-_\bi_\bn_\bc_\br_\be_\bm_\be_\bn_\bt_\ba_\bl.
 
-       Incremental  searches  begin  before  the  user has finished typing the
-       search string.  As each character of the search string is typed,  read-
+       Incremental searches begin before the  user  has  finished  typing  the
+       search  string.  As each character of the search string is typed, read-
        line displays the next entry from the history matching the string typed
-       so far.  An incremental search requires  only  as  many  characters  as
-       needed  to  find  the desired history entry.  The characters present in
-       the value of the i\bis\bse\bea\bar\brc\bch\bh-\b-t\bte\ber\brm\bmi\bin\bna\bat\bto\bor\brs\bs variable are used to terminate  an
+       so  far.   An  incremental  search  requires only as many characters as
+       needed to find the desired history entry.  The  characters  present  in
+       the  value of the i\bis\bse\bea\bar\brc\bch\bh-\b-t\bte\ber\brm\bmi\bin\bna\bat\bto\bor\brs\bs variable are used to terminate an
        incremental search.  If that variable has not been assigned a value the
-       Escape and Control-J characters will terminate an  incremental  search.
-       Control-G  will  abort  an  incremental search and restore the original
-       line.  When the search is terminated, the history entry containing  the
+       Escape  and  Control-J characters will terminate an incremental search.
+       Control-G will abort an incremental search  and  restore  the  original
+       line.   When the search is terminated, the history entry containing the
        search string becomes the current line.
 
-       To  find  other matching entries in the history list, type Control-S or
-       Control-R as appropriate.  This will search backward or forward in  the
-       history  for  the  next  entry matching the search string typed so far.
-       Any other key sequence bound to a readline command will  terminate  the
-       search  and  execute that command.  For instance, a _\bn_\be_\bw_\bl_\bi_\bn_\be will termi-
+       To find other matching entries in the history list, type  Control-S  or
+       Control-R  as appropriate.  This will search backward or forward in the
+       history for the next entry matching the search  string  typed  so  far.
+       Any  other  key sequence bound to a readline command will terminate the
+       search and execute that command.  For instance, a _\bn_\be_\bw_\bl_\bi_\bn_\be  will  termi-
        nate the search and accept the line, thereby executing the command from
        the history list.
 
        Readline remembers the last incremental search string.  If two Control-
-       Rs are typed without any intervening characters defining a  new  search
+       Rs  are  typed without any intervening characters defining a new search
        string, any remembered search string is used.
 
-       Non-incremental  searches read the entire search string before starting
-       to search for matching history lines.  The search string may  be  typed
+       Non-incremental searches read the entire search string before  starting
+       to  search  for matching history lines.  The search string may be typed
        by the user or be part of the contents of the current line.
 
    R\bRe\bea\bad\bdl\bli\bin\bne\be C\bCo\bom\bmm\bma\ban\bnd\bd N\bNa\bam\bme\bes\bs
-       The  following  is  a list of the names of the commands and the default
+       The following is a list of the names of the commands  and  the  default
        key sequences to which they are bound.  Command names without an accom-
        panying key sequence are unbound by default.  In the following descrip-
-       tions, _\bp_\bo_\bi_\bn_\bt refers to the current cursor position, and _\bm_\ba_\br_\bk refers  to
-       a  cursor position saved by the s\bse\bet\bt-\b-m\bma\bar\brk\bk command.  The text between the
+       tions,  _\bp_\bo_\bi_\bn_\bt refers to the current cursor position, and _\bm_\ba_\br_\bk refers to
+       a cursor position saved by the s\bse\bet\bt-\b-m\bma\bar\brk\bk command.  The text between  the
        point and mark is referred to as the _\br_\be_\bg_\bi_\bo_\bn.
 
    C\bCo\bom\bmm\bma\ban\bnd\bds\bs f\bfo\bor\br M\bMo\bov\bvi\bin\bng\bg
@@ -3776,33 +3773,33 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
               Move forward to the end of the next word.  Words are composed of
               alphanumeric characters (letters and digits).
        b\bba\bac\bck\bkw\bwa\bar\brd\bd-\b-w\bwo\bor\brd\bd (\b(M\bM-\b-b\bb)\b)
-              Move  back  to the start of the current or previous word.  Words
+              Move back to the start of the current or previous  word.   Words
               are composed of alphanumeric characters (letters and digits).
        s\bsh\bhe\bel\bll\bl-\b-f\bfo\bor\brw\bwa\bar\brd\bd-\b-w\bwo\bor\brd\bd
-              Move forward to the end of the next word.  Words  are  delimited
+              Move  forward  to the end of the next word.  Words are delimited
               by non-quoted shell metacharacters.
        s\bsh\bhe\bel\bll\bl-\b-b\bba\bac\bck\bkw\bwa\bar\brd\bd-\b-w\bwo\bor\brd\bd
-              Move  back  to the start of the current or previous word.  Words
+              Move back to the start of the current or previous  word.   Words
               are delimited by non-quoted shell metacharacters.
        p\bpr\bre\bev\bvi\bio\bou\bus\bs-\b-s\bsc\bcr\bre\bee\ben\bn-\b-l\bli\bin\bne\be
-              Attempt to move point to the same physical screen column on  the
-              previous  physical  screen  line. This will not have the desired
-              effect if the current readline line does not take up  more  than
-              one  physical line or if point is not greater than the length of
+              Attempt  to move point to the same physical screen column on the
+              previous physical screen line. This will not  have  the  desired
+              effect  if  the current readline line does not take up more than
+              one physical line or if point is not greater than the length  of
               the prompt plus the screen width.
        n\bne\bex\bxt\bt-\b-s\bsc\bcr\bre\bee\ben\bn-\b-l\bli\bin\bne\be
-              Attempt to move point to the same physical screen column on  the
+              Attempt  to move point to the same physical screen column on the
               next physical screen line. This will not have the desired effect
-              if the current readline line does not  take  up  more  than  one
-              physical  line  or if the length of the current readline line is
+              if  the  current  readline  line  does not take up more than one
+              physical line or if the length of the current readline  line  is
               not greater than the length of the prompt plus the screen width.
        c\bcl\ble\bea\bar\br-\b-d\bdi\bis\bsp\bpl\bla\bay\by (\b(M\bM-\b-C\bC-\b-l\bl)\b)
-              Clear the screen and, if  possible,  the  terminal's  scrollback
-              buffer,  then  redraw the current line, leaving the current line
+              Clear  the  screen  and,  if possible, the terminal's scrollback
+              buffer, then redraw the current line, leaving the  current  line
               at the top of the screen.
        c\bcl\ble\bea\bar\br-\b-s\bsc\bcr\bre\bee\ben\bn (\b(C\bC-\b-l\bl)\b)
               Clear the screen, then redraw the current line, leaving the cur-
-              rent  line  at the top of the screen.  With an argument, refresh
+              rent line at the top of the screen.  With an  argument,  refresh
               the current line without clearing the screen.
        r\bre\bed\bdr\bra\baw\bw-\b-c\bcu\bur\brr\bre\ben\bnt\bt-\b-l\bli\bin\bne\be
               Refresh the current line.
@@ -3810,158 +3807,158 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
    C\bCo\bom\bmm\bma\ban\bnd\bds\bs f\bfo\bor\br M\bMa\ban\bni\bip\bpu\bul\bla\bat\bti\bin\bng\bg t\bth\bhe\be H\bHi\bis\bst\bto\bor\bry\by
        a\bac\bcc\bce\bep\bpt\bt-\b-l\bli\bin\bne\be (\b(N\bNe\bew\bwl\bli\bin\bne\be,\b, R\bRe\bet\btu\bur\brn\bn)\b)
               Accept the line regardless of where the cursor is.  If this line
-              is  non-empty, add it to the history list according to the state
-              of the H\bHI\bIS\bST\bTC\bCO\bON\bNT\bTR\bRO\bOL\bL variable.  If the line is a modified  history
+              is non-empty, add it to the history list according to the  state
+              of  the H\bHI\bIS\bST\bTC\bCO\bON\bNT\bTR\bRO\bOL\bL variable.  If the line is a modified history
               line, then restore the history line to its original state.
        p\bpr\bre\bev\bvi\bio\bou\bus\bs-\b-h\bhi\bis\bst\bto\bor\bry\by (\b(C\bC-\b-p\bp)\b)
               Fetch the previous command from the history list, moving back in
               the list.
        n\bne\bex\bxt\bt-\b-h\bhi\bis\bst\bto\bor\bry\by (\b(C\bC-\b-n\bn)\b)
-              Fetch the next command from the history list, moving forward  in
+              Fetch  the next command from the history list, moving forward in
               the list.
        b\bbe\beg\bgi\bin\bnn\bni\bin\bng\bg-\b-o\bof\bf-\b-h\bhi\bis\bst\bto\bor\bry\by (\b(M\bM-\b-<\b<)\b)
               Move to the first line in the history.
        e\ben\bnd\bd-\b-o\bof\bf-\b-h\bhi\bis\bst\bto\bor\bry\by (\b(M\bM-\b->\b>)\b)
-              Move  to  the end of the input history, i.e., the line currently
+              Move to the end of the input history, i.e., the  line  currently
               being entered.
        o\bop\bpe\ber\bra\bat\bte\be-\b-a\ban\bnd\bd-\b-g\bge\bet\bt-\b-n\bne\bex\bxt\bt (\b(C\bC-\b-o\bo)\b)
-              Accept the current line for execution and fetch  the  next  line
-              relative  to  the  current line from the history for editing.  A
-              numeric argument, if supplied, specifies the  history  entry  to
+              Accept  the  current  line for execution and fetch the next line
+              relative to the current line from the history  for  editing.   A
+              numeric  argument,  if  supplied, specifies the history entry to
               use instead of the current line.
        f\bfe\bet\btc\bch\bh-\b-h\bhi\bis\bst\bto\bor\bry\by
-              With  a numeric argument, fetch that entry from the history list
+              With a numeric argument, fetch that entry from the history  list
               and make it the current line.  Without an argument, move back to
               the first entry in the history list.
        r\bre\bev\bve\ber\brs\bse\be-\b-s\bse\bea\bar\brc\bch\bh-\b-h\bhi\bis\bst\bto\bor\bry\by (\b(C\bC-\b-r\br)\b)
-              Search  backward  starting  at  the current line and moving `up'
-              through the  history  as  necessary.   This  is  an  incremental
+              Search backward starting at the current  line  and  moving  `up'
+              through  the  history  as  necessary.   This  is  an incremental
               search.
        f\bfo\bor\brw\bwa\bar\brd\bd-\b-s\bse\bea\bar\brc\bch\bh-\b-h\bhi\bis\bst\bto\bor\bry\by (\b(C\bC-\b-s\bs)\b)
-              Search  forward  starting  at the current line and moving `down'
-              through the  history  as  necessary.   This  is  an  incremental
+              Search forward starting at the current line  and  moving  `down'
+              through  the  history  as  necessary.   This  is  an incremental
               search.
        n\bno\bon\bn-\b-i\bin\bnc\bcr\bre\bem\bme\ben\bnt\bta\bal\bl-\b-r\bre\bev\bve\ber\brs\bse\be-\b-s\bse\bea\bar\brc\bch\bh-\b-h\bhi\bis\bst\bto\bor\bry\by (\b(M\bM-\b-p\bp)\b)
               Search backward through the history starting at the current line
-              using a non-incremental search for  a  string  supplied  by  the
+              using  a  non-incremental  search  for  a string supplied by the
               user.
        n\bno\bon\bn-\b-i\bin\bnc\bcr\bre\bem\bme\ben\bnt\bta\bal\bl-\b-f\bfo\bor\brw\bwa\bar\brd\bd-\b-s\bse\bea\bar\brc\bch\bh-\b-h\bhi\bis\bst\bto\bor\bry\by (\b(M\bM-\b-n\bn)\b)
-              Search  forward  through  the  history  using  a non-incremental
+              Search forward  through  the  history  using  a  non-incremental
               search for a string supplied by the user.
        h\bhi\bis\bst\bto\bor\bry\by-\b-s\bse\bea\bar\brc\bch\bh-\b-f\bfo\bor\brw\bwa\bar\brd\bd
-              Search forward through the history for the string of  characters
-              between  the start of the current line and the point.  This is a
+              Search  forward through the history for the string of characters
+              between the start of the current line and the point.  This is  a
               non-incremental search.
        h\bhi\bis\bst\bto\bor\bry\by-\b-s\bse\bea\bar\brc\bch\bh-\b-b\bba\bac\bck\bkw\bwa\bar\brd\bd
               Search backward through the history for the string of characters
-              between  the start of the current line and the point.  This is a
+              between the start of the current line and the point.  This is  a
               non-incremental search.
        h\bhi\bis\bst\bto\bor\bry\by-\b-s\bsu\bub\bbs\bst\btr\bri\bin\bng\bg-\b-s\bse\bea\bar\brc\bch\bh-\b-b\bba\bac\bck\bkw\bwa\bar\brd\bd
               Search backward through the history for the string of characters
               between the start of the current line and the current cursor po-
-              sition (the _\bp_\bo_\bi_\bn_\bt).  The search string may match anywhere  in  a
+              sition  (the  _\bp_\bo_\bi_\bn_\bt).  The search string may match anywhere in a
               history line.  This is a non-incremental search.
        h\bhi\bis\bst\bto\bor\bry\by-\b-s\bsu\bub\bbs\bst\btr\bri\bin\bng\bg-\b-s\bse\bea\bar\brc\bch\bh-\b-f\bfo\bor\brw\bwa\bar\brd\bd
-              Search  forward through the history for the string of characters
+              Search forward through the history for the string of  characters
               between the start of the current line and the point.  The search
-              string  may match anywhere in a history line.  This is a non-in-
+              string may match anywhere in a history line.  This is a  non-in-
               cremental search.
        y\bya\ban\bnk\bk-\b-n\bnt\bth\bh-\b-a\bar\brg\bg (\b(M\bM-\b-C\bC-\b-y\by)\b)
-              Insert the first argument to the previous command  (usually  the
+              Insert  the  first argument to the previous command (usually the
               second word on the previous line) at point.  With an argument _\bn,
-              insert the _\bnth word from the previous command (the words in  the
-              previous  command  begin  with word 0).  A negative argument in-
-              serts the _\bnth word from the end of the previous  command.   Once
-              the  argument _\bn is computed, the argument is extracted as if the
+              insert  the _\bnth word from the previous command (the words in the
+              previous command begin with word 0).  A  negative  argument  in-
+              serts  the  _\bnth word from the end of the previous command.  Once
+              the argument _\bn is computed, the argument is extracted as if  the
               "!_\bn" history expansion had been specified.
        y\bya\ban\bnk\bk-\b-l\bla\bas\bst\bt-\b-a\bar\brg\bg (\b(M\bM-\b-.\b.,\b, M\bM-\b-_\b_)\b)
-              Insert the last argument to the previous command (the last  word
+              Insert  the last argument to the previous command (the last word
               of the previous history entry).  With a numeric argument, behave
-              exactly like y\bya\ban\bnk\bk-\b-n\bnt\bth\bh-\b-a\bar\brg\bg.  Successive  calls  to  y\bya\ban\bnk\bk-\b-l\bla\bas\bst\bt-\b-a\bar\brg\bg
-              move  back through the history list, inserting the last word (or
-              the word specified by the argument to the first  call)  of  each
+              exactly  like  y\bya\ban\bnk\bk-\b-n\bnt\bth\bh-\b-a\bar\brg\bg.   Successive calls to y\bya\ban\bnk\bk-\b-l\bla\bas\bst\bt-\b-a\bar\brg\bg
+              move back through the history list, inserting the last word  (or
+              the  word  specified  by the argument to the first call) of each
               line in turn.  Any numeric argument supplied to these successive
-              calls determines the direction to move through the  history.   A
-              negative  argument  switches  the  direction through the history
+              calls  determines  the direction to move through the history.  A
+              negative argument switches the  direction  through  the  history
               (back or forward).  The history expansion facilities are used to
               extract the last word, as if the "!$" history expansion had been
               specified.
        s\bsh\bhe\bel\bll\bl-\b-e\bex\bxp\bpa\ban\bnd\bd-\b-l\bli\bin\bne\be (\b(M\bM-\b-C\bC-\b-e\be)\b)
-              Expand the line by performing shell word expansions.  This  per-
+              Expand  the line by performing shell word expansions.  This per-
               forms alias and history expansion, $\b$'_\bs_\bt_\br_\bi_\bn_\bg' and $\b$"_\bs_\bt_\br_\bi_\bn_\bg" quot-
-              ing, tilde expansion, parameter and variable  expansion,  arith-
+              ing,  tilde  expansion, parameter and variable expansion, arith-
               metic expansion, word splitting, and quote removal.  See H\bHI\bIS\bST\bTO\bOR\bRY\bY
               E\bEX\bXP\bPA\bAN\bNS\bSI\bIO\bON\bN below for a description of history expansion.
        h\bhi\bis\bst\bto\bor\bry\by-\b-e\bex\bxp\bpa\ban\bnd\bd-\b-l\bli\bin\bne\be (\b(M\bM-\b-^\b^)\b)
-              Perform history expansion on the current line.  See H\bHI\bIS\bST\bTO\bOR\bRY\b E\bEX\bX-\b-
+              Perform  history expansion on the current line.  See H\bHI\bIS\bST\bTO\bOR\bRY\bY E\bEX\bX-\b-
               P\bPA\bAN\bNS\bSI\bIO\bON\bN below for a description of history expansion.
        m\bma\bag\bgi\bic\bc-\b-s\bsp\bpa\bac\bce\be
-              Perform  history  expansion  on  the  current  line and insert a
+              Perform history expansion on  the  current  line  and  insert  a
               space.  See H\bHI\bIS\bST\bTO\bOR\bRY\bY E\bEX\bXP\bPA\bAN\bNS\bSI\bIO\bON\bN below for a description of history
               expansion.
        a\bal\bli\bia\bas\bs-\b-e\bex\bxp\bpa\ban\bnd\bd-\b-l\bli\bin\bne\be
-              Perform  alias expansion on the current line.  See A\bAL\bLI\bIA\bAS\bSE\bES\bS above
+              Perform alias expansion on the current line.  See A\bAL\bLI\bIA\bAS\bSE\bES\b above
               for a description of alias expansion.
        h\bhi\bis\bst\bto\bor\bry\by-\b-a\ban\bnd\bd-\b-a\bal\bli\bia\bas\bs-\b-e\bex\bxp\bpa\ban\bnd\bd-\b-l\bli\bin\bne\be
               Perform history and alias expansion on the current line.
        i\bin\bns\bse\ber\brt\bt-\b-l\bla\bas\bst\bt-\b-a\bar\brg\bgu\bum\bme\ben\bnt\bt (\b(M\bM-\b-.\b.,\b, M\bM-\b-_\b_)\b)
               A synonym for y\bya\ban\bnk\bk-\b-l\bla\bas\bst\bt-\b-a\bar\brg\bg.
        e\bed\bdi\bit\bt-\b-a\ban\bnd\bd-\b-e\bex\bxe\bec\bcu\but\bte\be-\b-c\bco\bom\bmm\bma\ban\bnd\bd (\b(C\bC-\b-x\bx C\bC-\b-e\be)\b)
-              Invoke an editor on the current command line,  and  execute  the
+              Invoke  an  editor  on the current command line, and execute the
               result as shell commands.  B\bBa\bas\bsh\bh attempts to invoke $\b$V\bVI\bIS\bSU\bUA\bAL\bL, $\b$E\bED\bD-\b-
               I\bIT\bTO\bOR\bR, and _\be_\bm_\ba_\bc_\bs as the editor, in that order.
 
    C\bCo\bom\bmm\bma\ban\bnd\bds\bs f\bfo\bor\br C\bCh\bha\ban\bng\bgi\bin\bng\bg T\bTe\bex\bxt\bt
        _\be_\bn_\bd_\b-_\bo_\bf_\b-_\bf_\bi_\bl_\be (\b(u\bus\bsu\bua\bal\bll\bly\by C\bC-\b-d\bd)\b)
-              The character indicating end-of-file as  set,  for  example,  by
-              ``stty''.   If  this character is read when there are no charac-
-              ters on the line, and point is at the  beginning  of  the  line,
+              The  character  indicating  end-of-file  as set, for example, by
+              ``stty''.  If this character is read when there are  no  charac-
+              ters  on  the  line,  and point is at the beginning of the line,
               readline interprets it as the end of input and returns E\bEO\bOF\bF.
        d\bde\bel\ble\bet\bte\be-\b-c\bch\bha\bar\br (\b(C\bC-\b-d\bd)\b)
               Delete the character at point.  If this function is bound to the
               same character as the tty E\bEO\bOF\bF character, as C\bC-\b-d\bd commonly is, see
               above for the effects.
        b\bba\bac\bck\bkw\bwa\bar\brd\bd-\b-d\bde\bel\ble\bet\bte\be-\b-c\bch\bha\bar\br (\b(R\bRu\bub\bbo\bou\but\bt)\b)
-              Delete  the  character  behind the cursor.  When given a numeric
+              Delete the character behind the cursor.  When  given  a  numeric
               argument, save the deleted text on the kill ring.
        f\bfo\bor\brw\bwa\bar\brd\bd-\b-b\bba\bac\bck\bkw\bwa\bar\brd\bd-\b-d\bde\bel\ble\bet\bte\be-\b-c\bch\bha\bar\br
-              Delete the character under the cursor, unless the cursor  is  at
+              Delete  the  character under the cursor, unless the cursor is at
               the end of the line, in which case the character behind the cur-
               sor is deleted.
        q\bqu\buo\bot\bte\bed\bd-\b-i\bin\bns\bse\ber\brt\bt (\b(C\bC-\b-q\bq,\b, C\bC-\b-v\bv)\b)
-              Add the next character typed to the line verbatim.  This is  how
+              Add  the next character typed to the line verbatim.  This is how
               to insert characters like C\bC-\b-q\bq, for example.
        t\bta\bab\bb-\b-i\bin\bns\bse\ber\brt\bt (\b(C\bC-\b-v\bv T\bTA\bAB\bB)\b)
               Insert a tab character.
        s\bse\bel\blf\bf-\b-i\bin\bns\bse\ber\brt\bt (\b(a\ba,\b, b\bb,\b, A\bA,\b, 1\b1,\b, !\b!,\b, .\b..\b..\b.)\b)
               Insert the character typed.
        t\btr\bra\ban\bns\bsp\bpo\bos\bse\be-\b-c\bch\bha\bar\brs\bs (\b(C\bC-\b-t\bt)\b)
-              Drag  the  character  before point forward over the character at
-              point, moving point forward as well.  If point is at the end  of
-              the  line, then this transposes the two characters before point.
+              Drag the character before point forward over  the  character  at
+              point,  moving point forward as well.  If point is at the end of
+              the line, then this transposes the two characters before  point.
               Negative arguments have no effect.
        t\btr\bra\ban\bns\bsp\bpo\bos\bse\be-\b-w\bwo\bor\brd\bds\bs (\b(M\bM-\b-t\bt)\b)
-              Drag the word before point past the  word  after  point,  moving
-              point  over  that  word  as well.  If point is at the end of the
+              Drag  the  word  before  point past the word after point, moving
+              point over that word as well.  If point is at  the  end  of  the
               line, this transposes the last two words on the line.
        u\bup\bpc\bca\bas\bse\be-\b-w\bwo\bor\brd\bd (\b(M\bM-\b-u\bu)\b)
-              Uppercase the current (or following) word.  With a negative  ar-
+              Uppercase  the current (or following) word.  With a negative ar-
               gument, uppercase the previous word, but do not move point.
        d\bdo\bow\bwn\bnc\bca\bas\bse\be-\b-w\bwo\bor\brd\bd (\b(M\bM-\b-l\bl)\b)
-              Lowercase  the current (or following) word.  With a negative ar-
+              Lowercase the current (or following) word.  With a negative  ar-
               gument, lowercase the previous word, but do not move point.
        c\bca\bap\bpi\bit\bta\bal\bli\biz\bze\be-\b-w\bwo\bor\brd\bd (\b(M\bM-\b-c\bc)\b)
               Capitalize the current (or following) word.  With a negative ar-
               gument, capitalize the previous word, but do not move point.
        o\bov\bve\ber\brw\bwr\bri\bit\bte\be-\b-m\bmo\bod\bde\be
-              Toggle  overwrite mode.  With an explicit positive numeric argu-
+              Toggle overwrite mode.  With an explicit positive numeric  argu-
               ment, switches to overwrite mode.  With an explicit non-positive
               numeric argument, switches to insert mode.  This command affects
-              only e\bem\bma\bac\bcs\bs mode; v\bvi\bi mode does overwrite differently.  Each  call
+              only  e\bem\bma\bac\bcs\bs mode; v\bvi\bi mode does overwrite differently.  Each call
               to _\br_\be_\ba_\bd_\bl_\bi_\bn_\be_\b(_\b) starts in insert mode.  In overwrite mode, charac-
-              ters bound to s\bse\bel\blf\bf-\b-i\bin\bns\bse\ber\brt\bt replace the text at point rather  than
-              pushing  the  text  to  the  right.   Characters  bound to b\bba\bac\bck\bk-\b-
-              w\bwa\bar\brd\bd-\b-d\bde\bel\ble\bet\bte\be-\b-c\bch\bha\bar\breplace  the  character  before  point  with  a
+              ters  bound to s\bse\bel\blf\bf-\b-i\bin\bns\bse\ber\brt\bt replace the text at point rather than
+              pushing the text  to  the  right.   Characters  bound  to  b\bba\bac\bck\bk-\b-
+              w\bwa\bar\brd\bd-\b-d\bde\bel\ble\bet\bte\be-\b-c\bch\bha\bar\b replace  the  character  before  point  with a
               space.  By default, this command is unbound.
 
    K\bKi\bil\bll\bli\bin\bng\bg a\ban\bnd\bd Y\bYa\ban\bnk\bki\bin\bng\bg
@@ -3970,31 +3967,31 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
        b\bba\bac\bck\bkw\bwa\bar\brd\bd-\b-k\bki\bil\bll\bl-\b-l\bli\bin\bne\be (\b(C\bC-\b-x\bx R\bRu\bub\bbo\bou\but\bt)\b)
               Kill backward to the beginning of the line.
        u\bun\bni\bix\bx-\b-l\bli\bin\bne\be-\b-d\bdi\bis\bsc\bca\bar\brd\bd (\b(C\bC-\b-u\bu)\b)
-              Kill  backward  from  point  to  the beginning of the line.  The
+              Kill backward from point to the  beginning  of  the  line.   The
               killed text is saved on the kill-ring.
        k\bki\bil\bll\bl-\b-w\bwh\bho\bol\ble\be-\b-l\bli\bin\bne\be
-              Kill all characters on the current line, no matter  where  point
+              Kill  all  characters on the current line, no matter where point
               is.
        k\bki\bil\bll\bl-\b-w\bwo\bor\brd\bd (\b(M\bM-\b-d\bd)\b)
-              Kill  from  point  to the end of the current word, or if between
-              words, to the end of the next word.   Word  boundaries  are  the
+              Kill from point to the end of the current word,  or  if  between
+              words,  to  the  end  of the next word.  Word boundaries are the
               same as those used by f\bfo\bor\brw\bwa\bar\brd\bd-\b-w\bwo\bor\brd\bd.
        b\bba\bac\bck\bkw\bwa\bar\brd\bd-\b-k\bki\bil\bll\bl-\b-w\bwo\bor\brd\bd (\b(M\bM-\b-R\bRu\bub\bbo\bou\but\bt)\b)
-              Kill  the  word  behind  point.  Word boundaries are the same as
+              Kill the word behind point.  Word boundaries  are  the  same  as
               those used by b\bba\bac\bck\bkw\bwa\bar\brd\bd-\b-w\bwo\bor\brd\bd.
        s\bsh\bhe\bel\bll\bl-\b-k\bki\bil\bll\bl-\b-w\bwo\bor\brd\bd
-              Kill from point to the end of the current word,  or  if  between
-              words,  to  the  end  of the next word.  Word boundaries are the
+              Kill  from  point  to the end of the current word, or if between
+              words, to the end of the next word.   Word  boundaries  are  the
               same as those used by s\bsh\bhe\bel\bll\bl-\b-f\bfo\bor\brw\bwa\bar\brd\bd-\b-w\bwo\bor\brd\bd.
        s\bsh\bhe\bel\bll\bl-\b-b\bba\bac\bck\bkw\bwa\bar\brd\bd-\b-k\bki\bil\bll\bl-\b-w\bwo\bor\brd\bd
-              Kill the word behind point.  Word boundaries  are  the  same  as
+              Kill  the  word  behind  point.  Word boundaries are the same as
               those used by s\bsh\bhe\bel\bll\bl-\b-b\bba\bac\bck\bkw\bwa\bar\brd\bd-\b-w\bwo\bor\brd\bd.
        u\bun\bni\bix\bx-\b-w\bwo\bor\brd\bd-\b-r\bru\bub\bbo\bou\but\bt (\b(C\bC-\b-w\bw)\b)
-              Kill  the  word behind point, using white space as a word bound-
+              Kill the word behind point, using white space as a  word  bound-
               ary.  The killed text is saved on the kill-ring.
        u\bun\bni\bix\bx-\b-f\bfi\bil\ble\ben\bna\bam\bme\be-\b-r\bru\bub\bbo\bou\but\bt
-              Kill the word behind point, using  white  space  and  the  slash
-              character  as  the word boundaries.  The killed text is saved on
+              Kill  the  word  behind  point,  using white space and the slash
+              character as the word boundaries.  The killed text is  saved  on
               the kill-ring.
        d\bde\bel\ble\bet\bte\be-\b-h\bho\bor\bri\biz\bzo\bon\bnt\bta\bal\bl-\b-s\bsp\bpa\bac\bce\be (\b(M\bM-\b-\\b\)\b)
               Delete all spaces and tabs around point.
@@ -4003,64 +4000,64 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
        c\bco\bop\bpy\by-\b-r\bre\beg\bgi\bio\bon\bn-\b-a\bas\bs-\b-k\bki\bil\bll\bl
               Copy the text in the region to the kill buffer.
        c\bco\bop\bpy\by-\b-b\bba\bac\bck\bkw\bwa\bar\brd\bd-\b-w\bwo\bor\brd\bd
-              Copy the word before point to the kill buffer.  The word  bound-
+              Copy  the word before point to the kill buffer.  The word bound-
               aries are the same as b\bba\bac\bck\bkw\bwa\bar\brd\bd-\b-w\bwo\bor\brd\bd.
        c\bco\bop\bpy\by-\b-f\bfo\bor\brw\bwa\bar\brd\bd-\b-w\bwo\bor\brd\bd
-              Copy  the  word  following  point  to the kill buffer.  The word
+              Copy the word following point to  the  kill  buffer.   The  word
               boundaries are the same as f\bfo\bor\brw\bwa\bar\brd\bd-\b-w\bwo\bor\brd\bd.
        y\bya\ban\bnk\bk (\b(C\bC-\b-y\by)\b)
               Yank the top of the kill ring into the buffer at point.
        y\bya\ban\bnk\bk-\b-p\bpo\bop\bp (\b(M\bM-\b-y\by)\b)
-              Rotate the kill ring, and yank the new top.  Only works  follow-
+              Rotate  the kill ring, and yank the new top.  Only works follow-
               ing y\bya\ban\bnk\bk or y\bya\ban\bnk\bk-\b-p\bpo\bop\bp.
 
    N\bNu\bum\bme\ber\bri\bic\bc A\bAr\brg\bgu\bum\bme\ben\bnt\bts\bs
        d\bdi\big\bgi\bit\bt-\b-a\bar\brg\bgu\bum\bme\ben\bnt\bt (\b(M\bM-\b-0\b0,\b, M\bM-\b-1\b1,\b, .\b..\b..\b.,\b, M\bM-\b--\b-)\b)
-              Add  this digit to the argument already accumulating, or start a
+              Add this digit to the argument already accumulating, or start  a
               new argument.  M-- starts a negative argument.
        u\bun\bni\biv\bve\ber\brs\bsa\bal\bl-\b-a\bar\brg\bgu\bum\bme\ben\bnt\bt
-              This is another way to specify an argument.  If this command  is
-              followed  by one or more digits, optionally with a leading minus
-              sign, those digits define the argument.  If the command is  fol-
+              This  is another way to specify an argument.  If this command is
+              followed by one or more digits, optionally with a leading  minus
+              sign,  those digits define the argument.  If the command is fol-
               lowed by digits, executing u\bun\bni\biv\bve\ber\brs\bsa\bal\bl-\b-a\bar\brg\bgu\bum\bme\ben\bnt\bt again ends the nu-
               meric argument, but is otherwise ignored.  As a special case, if
               this command is immediately followed by a character that is nei-
-              ther a digit nor minus sign, the argument  count  for  the  next
-              command  is multiplied by four.  The argument count is initially
-              one, so executing this function the first time makes  the  argu-
+              ther  a  digit  nor  minus sign, the argument count for the next
+              command is multiplied by four.  The argument count is  initially
+              one,  so  executing this function the first time makes the argu-
               ment count four, a second time makes the argument count sixteen,
               and so on.
 
    C\bCo\bom\bmp\bpl\ble\bet\bti\bin\bng\bg
        c\bco\bom\bmp\bpl\ble\bet\bte\be (\b(T\bTA\bAB\bB)\b)
-              Attempt to perform completion on the text  before  point.   B\bBa\bas\bsh\bh
+              Attempt  to  perform  completion on the text before point.  B\bBa\bas\bsh\bh
               attempts completion treating the text as a variable (if the text
-              begins with $\b$), username (if the text begins with  ~\b~),  hostname
-              (if  the  text begins with @\b@), or command (including aliases and
+              begins  with  $\b$), username (if the text begins with ~\b~), hostname
+              (if the text begins with @\b@), or command (including  aliases  and
               functions) in turn.  If none of these produces a match, filename
               completion is attempted.
        p\bpo\bos\bss\bsi\bib\bbl\ble\be-\b-c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bns\bs (\b(M\bM-\b-?\b?)\b)
               List the possible completions of the text before point.
        i\bin\bns\bse\ber\brt\bt-\b-c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bns\bs (\b(M\bM-\b-*\b*)\b)
-              Insert  all completions of the text before point that would have
+              Insert all completions of the text before point that would  have
               been generated by p\bpo\bos\bss\bsi\bib\bbl\ble\be-\b-c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bns\bs.
        m\bme\ben\bnu\bu-\b-c\bco\bom\bmp\bpl\ble\bet\bte\be
-              Similar to c\bco\bom\bmp\bpl\ble\bet\bte\be, but replaces the word to be completed  with
-              a  single match from the list of possible completions.  Repeated
-              execution of m\bme\ben\bnu\bu-\b-c\bco\bom\bmp\bpl\ble\bet\bte\be steps through the  list  of  possible
-              completions,  inserting  each  match in turn.  At the end of the
+              Similar  to c\bco\bom\bmp\bpl\ble\bet\bte\be, but replaces the word to be completed with
+              a single match from the list of possible completions.   Repeated
+              execution  of  m\bme\ben\bnu\bu-\b-c\bco\bom\bmp\bpl\ble\bet\bte\be  steps through the list of possible
+              completions, inserting each match in turn.  At the  end  of  the
               list of completions, the bell is rung (subject to the setting of
               b\bbe\bel\bll\bl-\b-s\bst\bty\byl\ble\be) and the original text is restored.  An argument of _\bn
               moves _\bn positions forward in the list of matches; a negative ar-
               gument may be used to move backward through the list.  This com-
               mand is intended to be bound to T\bTA\bAB\bB, but is unbound by default.
        m\bme\ben\bnu\bu-\b-c\bco\bom\bmp\bpl\ble\bet\bte\be-\b-b\bba\bac\bck\bkw\bwa\bar\brd\bd
-              Identical to m\bme\ben\bnu\bu-\b-c\bco\bom\bmp\bpl\ble\bet\bte\be, but moves backward through the  list
-              of  possible  completions,  as if m\bme\ben\bnu\bu-\b-c\bco\bom\bmp\bpl\ble\bet\bte\be had been given a
+              Identical  to m\bme\ben\bnu\bu-\b-c\bco\bom\bmp\bpl\ble\bet\bte\be, but moves backward through the list
+              of possible completions, as if m\bme\ben\bnu\bu-\b-c\bco\bom\bmp\bpl\ble\bet\bte\be had  been  given  a
               negative argument.  This command is unbound by default.
        d\bde\bel\ble\bet\bte\be-\b-c\bch\bha\bar\br-\b-o\bor\br-\b-l\bli\bis\bst\bt
-              Deletes the character under the cursor if not at  the  beginning
-              or  end  of  the  line (like d\bde\bel\ble\bet\bte\be-\b-c\bch\bha\bar\br).  If at the end of the
+              Deletes  the  character under the cursor if not at the beginning
+              or end of the line (like d\bde\bel\ble\bet\bte\be-\b-c\bch\bha\bar\br).  If at  the  end  of  the
               line, behaves identically to p\bpo\bos\bss\bsi\bib\bbl\ble\be-\b-c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bns\bs.  This command
               is unbound by default.
        c\bco\bom\bmp\bpl\ble\bet\bte\be-\b-f\bfi\bil\ble\ben\bna\bam\bme\be (\b(M\bM-\b-/\b/)\b)
@@ -4069,67 +4066,67 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
               List the possible completions of the text before point, treating
               it as a filename.
        c\bco\bom\bmp\bpl\ble\bet\bte\be-\b-u\bus\bse\ber\brn\bna\bam\bme\be (\b(M\bM-\b-~\b~)\b)
-              Attempt completion on the text before point, treating  it  as  a
+              Attempt  completion  on  the text before point, treating it as a
               username.
        p\bpo\bos\bss\bsi\bib\bbl\ble\be-\b-u\bus\bse\ber\brn\bna\bam\bme\be-\b-c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bns\bs (\b(C\bC-\b-x\bx ~\b~)\b)
               List the possible completions of the text before point, treating
               it as a username.
        c\bco\bom\bmp\bpl\ble\bet\bte\be-\b-v\bva\bar\bri\bia\bab\bbl\ble\be (\b(M\bM-\b-$\b$)\b)
-              Attempt completion on the text before point, treating  it  as  a
+              Attempt  completion  on  the text before point, treating it as a
               shell variable.
        p\bpo\bos\bss\bsi\bib\bbl\ble\be-\b-v\bva\bar\bri\bia\bab\bbl\ble\be-\b-c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bns\bs (\b(C\bC-\b-x\bx $\b$)\b)
               List the possible completions of the text before point, treating
               it as a shell variable.
        c\bco\bom\bmp\bpl\ble\bet\bte\be-\b-h\bho\bos\bst\btn\bna\bam\bme\be (\b(M\bM-\b-@\b@)\b)
-              Attempt completion on the text before point, treating  it  as  a
+              Attempt  completion  on  the text before point, treating it as a
               hostname.
        p\bpo\bos\bss\bsi\bib\bbl\ble\be-\b-h\bho\bos\bst\btn\bna\bam\bme\be-\b-c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bns\bs (\b(C\bC-\b-x\bx @\b@)\b)
               List the possible completions of the text before point, treating
               it as a hostname.
        c\bco\bom\bmp\bpl\ble\bet\bte\be-\b-c\bco\bom\bmm\bma\ban\bnd\bd (\b(M\bM-\b-!\b!)\b)
-              Attempt completion on the text before point, treating  it  as  a
-              command  name.   Command  completion  attempts to match the text
-              against  aliases,  reserved  words,   shell   functions,   shell
+              Attempt  completion  on  the text before point, treating it as a
+              command name.  Command completion attempts  to  match  the  text
+              against   aliases,   reserved   words,  shell  functions,  shell
               builtins, and finally executable filenames, in that order.
        p\bpo\bos\bss\bsi\bib\bbl\ble\be-\b-c\bco\bom\bmm\bma\ban\bnd\bd-\b-c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bns\bs (\b(C\bC-\b-x\bx !\b!)\b)
               List the possible completions of the text before point, treating
               it as a command name.
        d\bdy\byn\bna\bam\bmi\bic\bc-\b-c\bco\bom\bmp\bpl\ble\bet\bte\be-\b-h\bhi\bis\bst\bto\bor\bry\by (\b(M\bM-\b-T\bTA\bAB\bB)\b)
-              Attempt completion on the text before point, comparing the  text
-              against  lines  from  the  history  list for possible completion
+              Attempt  completion on the text before point, comparing the text
+              against lines from the  history  list  for  possible  completion
               matches.
        d\bda\bab\bbb\bbr\bre\bev\bv-\b-e\bex\bxp\bpa\ban\bnd\bd
-              Attempt menu completion on the text before point, comparing  the
+              Attempt  menu completion on the text before point, comparing the
               text against lines from the history list for possible completion
               matches.
        c\bco\bom\bmp\bpl\ble\bet\bte\be-\b-i\bin\bnt\bto\bo-\b-b\bbr\bra\bac\bce\bes\bs (\b(M\bM-\b-{\b{)\b)
               Perform filename completion and insert the list of possible com-
-              pletions  enclosed within braces so the list is available to the
+              pletions enclosed within braces so the list is available to  the
               shell (see B\bBr\bra\bac\bce\be E\bEx\bxp\bpa\ban\bns\bsi\bio\bon\bn above).
 
    K\bKe\bey\byb\bbo\boa\bar\brd\bd M\bMa\bac\bcr\bro\bos\bs
        s\bst\bta\bar\brt\bt-\b-k\bkb\bbd\bd-\b-m\bma\bac\bcr\bro\bo (\b(C\bC-\b-x\bx (\b()\b)
-              Begin saving the characters  typed  into  the  current  keyboard
+              Begin  saving  the  characters  typed  into the current keyboard
               macro.
        e\ben\bnd\bd-\b-k\bkb\bbd\bd-\b-m\bma\bac\bcr\bro\bo (\b(C\bC-\b-x\bx )\b))\b)
               Stop saving the characters typed into the current keyboard macro
               and store the definition.
        c\bca\bal\bll\bl-\b-l\bla\bas\bst\bt-\b-k\bkb\bbd\bd-\b-m\bma\bac\bcr\bro\bo (\b(C\bC-\b-x\bx e\be)\b)
-              Re-execute the last keyboard macro defined, by making the  char-
+              Re-execute  the last keyboard macro defined, by making the char-
               acters in the macro appear as if typed at the keyboard.
        p\bpr\bri\bin\bnt\bt-\b-l\bla\bas\bst\bt-\b-k\bkb\bbd\bd-\b-m\bma\bac\bcr\bro\bo (\b()\b)
-              Print  the  last keyboard macro defined in a format suitable for
+              Print the last keyboard macro defined in a format  suitable  for
               the _\bi_\bn_\bp_\bu_\bt_\br_\bc file.
 
    M\bMi\bis\bsc\bce\bel\bll\bla\ban\bne\beo\bou\bus\bs
        r\bre\be-\b-r\bre\bea\bad\bd-\b-i\bin\bni\bit\bt-\b-f\bfi\bil\ble\be (\b(C\bC-\b-x\bx C\bC-\b-r\br)\b)
-              Read in the contents of the _\bi_\bn_\bp_\bu_\bt_\br_\bc file,  and  incorporate  any
+              Read  in  the  contents of the _\bi_\bn_\bp_\bu_\bt_\br_\bc file, and incorporate any
               bindings or variable assignments found there.
        a\bab\bbo\bor\brt\bt (\b(C\bC-\b-g\bg)\b)
-              Abort  the  current editing command and ring the terminal's bell
+              Abort the current editing command and ring the  terminal's  bell
               (subject to the setting of b\bbe\bel\bll\bl-\b-s\bst\bty\byl\ble\be).
        d\bdo\bo-\b-l\blo\bow\bwe\ber\brc\bca\bas\bse\be-\b-v\bve\ber\brs\bsi\bio\bon\bn (\b(M\bM-\b-A\bA,\b, M\bM-\b-B\bB,\b, M\bM-\b-_\bx,\b, .\b..\b..\b.)\b)
-              If the metafied character _\bx is uppercase, run the  command  that
+              If  the  metafied character _\bx is uppercase, run the command that
               is bound to the corresponding metafied lowercase character.  The
               behavior is undefined if _\bx is already lowercase.
        p\bpr\bre\bef\bfi\bix\bx-\b-m\bme\bet\bta\ba (\b(E\bES\bSC\bC)\b)
@@ -4137,204 +4134,204 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
        u\bun\bnd\bdo\bo (\b(C\bC-\b-_\b_,\b, C\bC-\b-x\bx C\bC-\b-u\bu)\b)
               Incremental undo, separately remembered for each line.
        r\bre\bev\bve\ber\brt\bt-\b-l\bli\bin\bne\be (\b(M\bM-\b-r\br)\b)
-              Undo all changes made to this line.  This is like executing  the
-              u\bun\bnd\bdo\b command  enough  times  to  return the line to its initial
+              Undo  all changes made to this line.  This is like executing the
+              u\bun\bnd\bdo\bcommand enough times to return  the  line  to  its  initial
               state.
        t\bti\bil\bld\bde\be-\b-e\bex\bxp\bpa\ban\bnd\bd (\b(M\bM-\b-&\b&)\b)
               Perform tilde expansion on the current word.
        s\bse\bet\bt-\b-m\bma\bar\brk\bk (\b(C\bC-\b-@\b@,\b, M\bM-\b-<\b<s\bsp\bpa\bac\bce\be>\b>)\b)
-              Set the mark to the point.  If a numeric argument  is  supplied,
+              Set  the  mark to the point.  If a numeric argument is supplied,
               the mark is set to that position.
        e\bex\bxc\bch\bha\ban\bng\bge\be-\b-p\bpo\boi\bin\bnt\bt-\b-a\ban\bnd\bd-\b-m\bma\bar\brk\bk (\b(C\bC-\b-x\bx C\bC-\b-x\bx)\b)
-              Swap  the  point  with the mark.  The current cursor position is
-              set to the saved position, and the old cursor position is  saved
+              Swap the point with the mark.  The current  cursor  position  is
+              set  to the saved position, and the old cursor position is saved
               as the mark.
        c\bch\bha\bar\bra\bac\bct\bte\ber\br-\b-s\bse\bea\bar\brc\bch\bh (\b(C\bC-\b-]\b])\b)
               A character is read and point is moved to the next occurrence of
-              that character.  A negative argument searches for  previous  oc-
+              that  character.   A negative argument searches for previous oc-
               currences.
        c\bch\bha\bar\bra\bac\bct\bte\ber\br-\b-s\bse\bea\bar\brc\bch\bh-\b-b\bba\bac\bck\bkw\bwa\bar\brd\bd (\b(M\bM-\b-C\bC-\b-]\b])\b)
-              A  character  is  read and point is moved to the previous occur-
-              rence of that character.  A negative argument searches for  sub-
+              A character is read and point is moved to  the  previous  occur-
+              rence  of that character.  A negative argument searches for sub-
               sequent occurrences.
        s\bsk\bki\bip\bp-\b-c\bcs\bsi\bi-\b-s\bse\beq\bqu\bue\ben\bnc\bce\be
-              Read  enough  characters to consume a multi-key sequence such as
-              those defined for keys like Home and End.  Such sequences  begin
+              Read enough characters to consume a multi-key sequence  such  as
+              those  defined for keys like Home and End.  Such sequences begin
               with a Control Sequence Indicator (CSI), usually ESC-[.  If this
-              sequence is bound to "\[", keys producing  such  sequences  will
-              have  no  effect  unless explicitly bound to a readline command,
-              instead of inserting stray characters into the  editing  buffer.
+              sequence  is  bound  to "\[", keys producing such sequences will
+              have no effect unless explicitly bound to  a  readline  command,
+              instead  of  inserting stray characters into the editing buffer.
               This is unbound by default, but usually bound to ESC-[.
        i\bin\bns\bse\ber\brt\bt-\b-c\bco\bom\bmm\bme\ben\bnt\bt (\b(M\bM-\b-#\b#)\b)
-              Without  a  numeric  argument,  the  value  of the readline c\bco\bom\bm-\b-
-              m\bme\ben\bnt\bt-\b-b\bbe\beg\bgi\bin\bvariable is inserted at the beginning of the  current
+              Without a numeric argument,  the  value  of  the  readline  c\bco\bom\bm-\b-
+              m\bme\ben\bnt\bt-\b-b\bbe\beg\bgi\bin\b variable is inserted at the beginning of the current
               line.  If a numeric argument is supplied, this command acts as a
-              toggle: if the characters at the beginning of the  line  do  not
-              match  the value of c\bco\bom\bmm\bme\ben\bnt\bt-\b-b\bbe\beg\bgi\bin\bn, the value is inserted, other-
+              toggle:  if  the  characters at the beginning of the line do not
+              match the value of c\bco\bom\bmm\bme\ben\bnt\bt-\b-b\bbe\beg\bgi\bin\bn, the value is inserted,  other-
               wise the characters in c\bco\bom\bmm\bme\ben\bnt\bt-\b-b\bbe\beg\bgi\bin\bn are deleted from the begin-
-              ning  of the line.  In either case, the line is accepted as if a
-              newline had been typed.   The  default  value  of  c\bco\bom\bmm\bme\ben\bnt\bt-\b-b\bbe\beg\bgi\bin\bn
-              causes  this  command  to make the current line a shell comment.
-              If a numeric argument causes the comment  character  to  be  re-
+              ning of the line.  In either case, the line is accepted as if  a
+              newline  had  been  typed.   The  default value of c\bco\bom\bmm\bme\ben\bnt\bt-\b-b\bbe\beg\bgi\bin\bn
+              causes this command to make the current line  a  shell  comment.
+              If  a  numeric  argument  causes the comment character to be re-
               moved, the line will be executed by the shell.
        s\bsp\bpe\bel\bll\bl-\b-c\bco\bor\brr\bre\bec\bct\bt-\b-w\bwo\bor\brd\bd (\b(C\bC-\b-x\bx s\bs)\b)
-              Perform  spelling correction on the current word, treating it as
-              a directory or filename, in the same way as  the  c\bcd\bds\bsp\bpe\bel\bll\b shell
-              option.    Word  boundaries  are  the  same  as  those  used  by
+              Perform spelling correction on the current word, treating it  as
+              a  directory  or  filename, in the same way as the c\bcd\bds\bsp\bpe\bel\bll\bl shell
+              option.   Word  boundaries  are  the  same  as  those  used   by
               s\bsh\bhe\bel\bll\bl-\b-f\bfo\bor\brw\bwa\bar\brd\bd-\b-w\bwo\bor\brd\bd.
        g\bgl\blo\bob\bb-\b-c\bco\bom\bmp\bpl\ble\bet\bte\be-\b-w\bwo\bor\brd\bd (\b(M\bM-\b-g\bg)\b)
-              The word before point is treated as a pattern for  pathname  ex-
-              pansion,  with an asterisk implicitly appended.  This pattern is
-              used to generate a list of matching filenames for possible  com-
+              The  word  before point is treated as a pattern for pathname ex-
+              pansion, with an asterisk implicitly appended.  This pattern  is
+              used  to generate a list of matching filenames for possible com-
               pletions.
        g\bgl\blo\bob\bb-\b-e\bex\bxp\bpa\ban\bnd\bd-\b-w\bwo\bor\brd\bd (\b(C\bC-\b-x\bx *\b*)\b)
-              The  word  before point is treated as a pattern for pathname ex-
+              The word before point is treated as a pattern for  pathname  ex-
               pansion, and the list of matching filenames is inserted, replac-
               ing the word.  If a numeric argument is supplied, an asterisk is
               appended before pathname expansion.
        g\bgl\blo\bob\bb-\b-l\bli\bis\bst\bt-\b-e\bex\bxp\bpa\ban\bns\bsi\bio\bon\bns\bs (\b(C\bC-\b-x\bx g\bg)\b)
-              The list  of  expansions  that  would  have  been  generated  by
-              g\bgl\blo\bob\bb-\b-e\bex\bxp\bpa\ban\bnd\bd-\b-w\bwo\bor\brd\b is  displayed,  and the line is redrawn.  If a
-              numeric argument is supplied, an  asterisk  is  appended  before
+              The  list  of  expansions  that  would  have  been  generated by
+              g\bgl\blo\bob\bb-\b-e\bex\bxp\bpa\ban\bnd\bd-\b-w\bwo\bor\brd\bis displayed, and the line is  redrawn.   If  a
+              numeric  argument  is  supplied,  an asterisk is appended before
               pathname expansion.
        d\bdu\bum\bmp\bp-\b-f\bfu\bun\bnc\bct\bti\bio\bon\bns\bs
-              Print  all  of the functions and their key bindings to the read-
+              Print all of the functions and their key bindings to  the  read-
               line output stream.  If a numeric argument is supplied, the out-
-              put  is  formatted  in such a way that it can be made part of an
+              put is formatted in such a way that it can be made  part  of  an
               _\bi_\bn_\bp_\bu_\bt_\br_\bc file.
        d\bdu\bum\bmp\bp-\b-v\bva\bar\bri\bia\bab\bbl\ble\bes\bs
               Print all of the settable readline variables and their values to
-              the  readline output stream.  If a numeric argument is supplied,
-              the output is formatted in such a way that it can be  made  part
+              the readline output stream.  If a numeric argument is  supplied,
+              the  output  is formatted in such a way that it can be made part
               of an _\bi_\bn_\bp_\bu_\bt_\br_\bc file.
        d\bdu\bum\bmp\bp-\b-m\bma\bac\bcr\bro\bos\bs
-              Print  all of the readline key sequences bound to macros and the
-              strings they output.  If a numeric  argument  is  supplied,  the
+              Print all of the readline key sequences bound to macros and  the
+              strings  they  output.   If  a numeric argument is supplied, the
               output is formatted in such a way that it can be made part of an
               _\bi_\bn_\bp_\bu_\bt_\br_\bc file.
        d\bdi\bis\bsp\bpl\bla\bay\by-\b-s\bsh\bhe\bel\bll\bl-\b-v\bve\ber\brs\bsi\bio\bon\bn (\b(C\bC-\b-x\bx C\bC-\b-v\bv)\b)
               Display version information about the current instance of b\bba\bas\bsh\bh.
 
    P\bPr\bro\bog\bgr\bra\bam\bmm\bma\bab\bbl\ble\be C\bCo\bom\bmp\bpl\ble\bet\bti\bio\bon\bn
-       When word completion is attempted for an  argument  to  a  command  for
-       which  a  completion  specification (a _\bc_\bo_\bm_\bp_\bs_\bp_\be_\bc) has been defined using
-       the c\bco\bom\bmp\bpl\ble\bet\bte\be builtin (see S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below),  the  program-
+       When  word  completion  is  attempted  for an argument to a command for
+       which a completion specification (a _\bc_\bo_\bm_\bp_\bs_\bp_\be_\bc) has  been  defined  using
+       the  c\bco\bom\bmp\bpl\ble\bet\bte\be  builtin (see S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below), the program-
        mable completion facilities are invoked.
 
-       First,  the  command  name  is  identified.  If the command word is the
-       empty string (completion attempted at the beginning of an empty  line),
-       any  compspec  defined  with  the  -\b-E\bE option to c\bco\bom\bmp\bpl\ble\bet\bte\be is used.  If a
-       compspec has been defined for that command, the  compspec  is  used  to
+       First, the command name is identified.  If  the  command  word  is  the
+       empty  string (completion attempted at the beginning of an empty line),
+       any compspec defined with the -\b-E\bE option to  c\bco\bom\bmp\bpl\ble\bet\bte\be  is  used.   If  a
+       compspec  has  been  defined  for that command, the compspec is used to
        generate the list of possible completions for the word.  If the command
-       word is a full pathname, a compspec for the full pathname  is  searched
-       for  first.   If no compspec is found for the full pathname, an attempt
-       is made to find a compspec for the portion following the  final  slash.
-       If  those  searches  do  not result in a compspec, any compspec defined
-       with the -\b-D\bD option to c\bco\bom\bmp\bpl\ble\bet\bte\be is used as the default.  If there is  no
-       default  compspec, b\bba\bas\bsh\bh attempts alias expansion on the command word as
-       a final resort, and attempts to find a compspec for  the  command  word
+       word  is  a full pathname, a compspec for the full pathname is searched
+       for first.  If no compspec is found for the full pathname,  an  attempt
+       is  made  to find a compspec for the portion following the final slash.
+       If those searches do not result in a  compspec,  any  compspec  defined
+       with  the -\b-D\bD option to c\bco\bom\bmp\bpl\ble\bet\bte\be is used as the default.  If there is no
+       default compspec, b\bba\bas\bsh\bh attempts alias expansion on the command word  as
+       a  final  resort,  and attempts to find a compspec for the command word
        from any successful expansion.
 
-       Once  a  compspec  has  been  found, it is used to generate the list of
-       matching words.  If a compspec is not found, the default  b\bba\bas\bsh\b comple-
+       Once a compspec has been found, it is used  to  generate  the  list  of
+       matching  words.   If a compspec is not found, the default b\bba\bas\bsh\bh comple-
        tion as described above under C\bCo\bom\bmp\bpl\ble\bet\bti\bin\bng\bg is performed.
 
-       First,  the  actions  specified by the compspec are used.  Only matches
-       which are prefixed by the word being completed are returned.  When  the
-       -\b-f\b or -\b-d\bd option is used for filename or directory name completion, the
+       First, the actions specified by the compspec are  used.   Only  matches
+       which  are prefixed by the word being completed are returned.  When the
+       -\b-f\bor -\b-d\bd option is used for filename or directory name completion,  the
        shell variable F\bFI\bIG\bGN\bNO\bOR\bRE\bE is used to filter the matches.
 
        Any completions specified by a pathname expansion pattern to the -\b-G\bG op-
-       tion  are  generated next.  The words generated by the pattern need not
-       match the word being completed.  The G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE shell variable  is  not
+       tion are generated next.  The words generated by the pattern  need  not
+       match  the  word being completed.  The G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE shell variable is not
        used to filter the matches, but the F\bFI\bIG\bGN\bNO\bOR\bRE\bE variable is used.
 
-       Next,  the string specified as the argument to the -\b-W\bW option is consid-
-       ered.  The string is first split using the characters in the  I\bIF\bFS\b spe-
-       cial  variable  as delimiters.  Shell quoting is honored.  Each word is
-       then expanded using brace expansion,  tilde  expansion,  parameter  and
-       variable  expansion, command substitution, and arithmetic expansion, as
+       Next, the string specified as the argument to the -\b-W\bW option is  consid-
+       ered.   The  string is first split using the characters in the I\bIF\bFS\bS spe-
+       cial variable as delimiters.  Shell quoting is honored.  Each  word  is
+       then  expanded  using  brace  expansion, tilde expansion, parameter and
+       variable expansion, command substitution, and arithmetic expansion,  as
        described above under E\bEX\bXP\bPA\bAN\bNS\bSI\bIO\bON\bN.  The results are split using the rules
        described above under W\bWo\bor\brd\bd S\bSp\bpl\bli\bit\btt\bti\bin\bng\bg.  The results of the expansion are
        prefix-matched against the word being completed, and the matching words
        become the possible completions.
 
-       After  these matches have been generated, any shell function or command
-       specified with the -\b-F\bF and -\b-C\bC options is invoked.  When the  command  or
+       After these matches have been generated, any shell function or  command
+       specified  with  the -\b-F\bF and -\b-C\bC options is invoked.  When the command or
        function is invoked, the C\bCO\bOM\bMP\bP_\b_L\bLI\bIN\bNE\bE, C\bCO\bOM\bMP\bP_\b_P\bPO\bOI\bIN\bNT\bT, C\bCO\bOM\bMP\bP_\b_K\bKE\bEY\bY, and C\bCO\bOM\bMP\bP_\b_T\bTY\bYP\bPE\bE
        variables are assigned values as described above under S\bSh\bhe\bel\bll\bl V\bVa\bar\bri\bia\bab\bbl\ble\bes\bs.
-       If  a  shell  function  is being invoked, the C\bCO\bOM\bMP\bP_\b_W\bWO\bOR\bRD\bDS\bS and C\bCO\bOM\bMP\bP_\b_C\bCW\bWO\bOR\bRD\bD
-       variables are also set.  When the function or command is  invoked,  the
-       first  argument ($\b$1\b1) is the name of the command whose arguments are be-
-       ing completed, the second argument ($\b$2\b2) is the  word  being  completed,
-       and  the  third argument ($\b$3\b3) is the word preceding the word being com-
+       If a shell function is being invoked,  the  C\bCO\bOM\bMP\bP_\b_W\bWO\bOR\bRD\bDS\bS  and  C\bCO\bOM\bMP\bP_\b_C\bCW\bWO\bOR\bRD\bD
+       variables  are  also set.  When the function or command is invoked, the
+       first argument ($\b$1\b1) is the name of the command whose arguments are  be-
+       ing  completed,  the  second argument ($\b$2\b2) is the word being completed,
+       and the third argument ($\b$3\b3) is the word preceding the word  being  com-
        pleted on the current command line.  No filtering of the generated com-
        pletions against the word being completed is performed; the function or
        command has complete freedom in generating the matches.
 
-       Any function specified with -\b-F\bF is invoked first.  The function may  use
-       any  of  the  shell facilities, including the c\bco\bom\bmp\bpg\bge\ben\bn builtin described
-       below, to generate the matches.  It must put the  possible  completions
+       Any  function specified with -\b-F\bF is invoked first.  The function may use
+       any of the shell facilities, including the  c\bco\bom\bmp\bpg\bge\ben\bn  builtin  described
+       below,  to  generate the matches.  It must put the possible completions
        in the C\bCO\bOM\bMP\bPR\bRE\bEP\bPL\bLY\bY array variable, one per array element.
 
-       Next,  any  command specified with the -\b-C\bC option is invoked in an envi-
-       ronment equivalent to command substitution.  It should print a list  of
-       completions,  one  per  line, to the standard output.  Backslash may be
+       Next, any command specified with the -\b-C\bC option is invoked in  an  envi-
+       ronment  equivalent to command substitution.  It should print a list of
+       completions, one per line, to the standard output.   Backslash  may  be
        used to escape a newline, if necessary.
 
-       After all of the possible completions are generated, any filter  speci-
-       fied  with  the -\b-X\bX option is applied to the list.  The filter is a pat-
-       tern as used for pathname expansion; a &\b& in  the  pattern  is  replaced
-       with  the text of the word being completed.  A literal &\b& may be escaped
-       with a backslash; the backslash is removed before attempting  a  match.
-       Any  completion that matches the pattern will be removed from the list.
+       After  all of the possible completions are generated, any filter speci-
+       fied with the -\b-X\bX option is applied to the list.  The filter is  a  pat-
+       tern  as  used  for  pathname expansion; a &\b& in the pattern is replaced
+       with the text of the word being completed.  A literal &\b& may be  escaped
+       with  a  backslash; the backslash is removed before attempting a match.
+       Any completion that matches the pattern will be removed from the  list.
        A leading !\b! negates the pattern; in this case any completion not match-
-       ing  the  pattern  will be removed.  If the n\bno\boc\bca\bas\bse\bem\bma\bat\btc\bch\bh shell option is
-       enabled, the match is performed without regard to the  case  of  alpha-
+       ing the pattern will be removed.  If the n\bno\boc\bca\bas\bse\bem\bma\bat\btc\bch\bh  shell  option  is
+       enabled,  the  match  is performed without regard to the case of alpha-
        betic characters.
 
        Finally, any prefix and suffix specified with the -\b-P\bP and -\b-S\bS options are
        added to each member of the completion list, and the result is returned
        to the readline completion code as the list of possible completions.
 
-       If  the previously-applied actions do not generate any matches, and the
-       -\b-o\bd\bdi\bir\brn\bna\bam\bme\bes\bs option was supplied to c\bco\bom\bmp\bpl\ble\bet\bte\be when the compspec  was  de-
+       If the previously-applied actions do not generate any matches, and  the
+       -\b-o\b d\bdi\bir\brn\bna\bam\bme\bes\bs  option was supplied to c\bco\bom\bmp\bpl\ble\bet\bte\be when the compspec was de-
        fined, directory name completion is attempted.
 
-       If  the  -\b-o\bo  p\bpl\blu\bus\bsd\bdi\bir\brs\bs option was supplied to c\bco\bom\bmp\bpl\ble\bet\bte\be when the compspec
+       If the -\b-o\bo p\bpl\blu\bus\bsd\bdi\bir\brs\bs option was supplied to c\bco\bom\bmp\bpl\ble\bet\bte\be  when  the  compspec
        was defined, directory name completion is attempted and any matches are
        added to the results of the other actions.
 
-       By  default,  if a compspec is found, whatever it generates is returned
-       to the completion code as the full set of  possible  completions.   The
+       By default, if a compspec is found, whatever it generates  is  returned
+       to  the  completion  code as the full set of possible completions.  The
        default b\bba\bas\bsh\bh completions are not attempted, and the readline default of
        filename completion is disabled.  If the -\b-o\bo b\bba\bas\bsh\bhd\bde\bef\bfa\bau\bul\blt\bt option was sup-
-       plied  to c\bco\bom\bmp\bpl\ble\bet\bte\be when the compspec was defined, the b\bba\bas\bsh\bh default com-
+       plied to c\bco\bom\bmp\bpl\ble\bet\bte\be when the compspec was defined, the b\bba\bas\bsh\bh default  com-
        pletions are attempted if the compspec generates no matches.  If the -\b-o\bo
-       d\bde\bef\bfa\bau\bul\blt\b option was supplied to c\bco\bom\bmp\bpl\ble\bet\bte\be when the compspec was defined,
-       readline's default completion will be performed if the  compspec  (and,
+       d\bde\bef\bfa\bau\bul\blt\boption was supplied to c\bco\bom\bmp\bpl\ble\bet\bte\be when the compspec was  defined,
+       readline's  default  completion will be performed if the compspec (and,
        if attempted, the default b\bba\bas\bsh\bh completions) generate no matches.
 
-       When  a  compspec  indicates that directory name completion is desired,
-       the programmable completion functions force readline to append a  slash
-       to  completed names which are symbolic links to directories, subject to
-       the value of the m\bma\bar\brk\bk-\b-d\bdi\bir\bre\bec\bct\bto\bor\bri\bie\bes\bs readline variable, regardless of  the
+       When a compspec indicates that directory name  completion  is  desired,
+       the  programmable completion functions force readline to append a slash
+       to completed names which are symbolic links to directories, subject  to
+       the  value of the m\bma\bar\brk\bk-\b-d\bdi\bir\bre\bec\bct\bto\bor\bri\bie\bes\bs readline variable, regardless of the
        setting of the m\bma\bar\brk\bk-\b-s\bsy\bym\bml\bli\bin\bnk\bke\bed\bd-\b-d\bdi\bir\bre\bec\bct\bto\bor\bri\bie\bes\bs readline variable.
 
-       There  is  some support for dynamically modifying completions.  This is
-       most useful when used in combination with a default  completion  speci-
-       fied  with  c\bco\bom\bmp\bpl\ble\bet\bte\be -\b-D\bD.  It's possible for shell functions executed as
-       completion handlers to indicate that completion should  be  retried  by
-       returning  an exit status of 124.  If a shell function returns 124, and
+       There is some support for dynamically modifying completions.   This  is
+       most  useful  when used in combination with a default completion speci-
+       fied with c\bco\bom\bmp\bpl\ble\bet\bte\be -\b-D\bD.  It's possible for shell functions  executed  as
+       completion  handlers  to  indicate that completion should be retried by
+       returning an exit status of 124.  If a shell function returns 124,  and
        changes the compspec associated with the command on which completion is
-       being  attempted  (supplied  as the first argument when the function is
+       being attempted (supplied as the first argument when  the  function  is
        executed), programmable completion restarts from the beginning, with an
-       attempt  to find a new compspec for that command.  This allows a set of
-       completions to be built dynamically as completion is attempted,  rather
+       attempt to find a new compspec for that command.  This allows a set  of
+       completions  to be built dynamically as completion is attempted, rather
        than being loaded all at once.
 
-       For  instance, assuming that there is a library of compspecs, each kept
-       in a file corresponding to the name of the command, the  following  de-
+       For instance, assuming that there is a library of compspecs, each  kept
+       in  a  file corresponding to the name of the command, the following de-
        fault completion function would load completions dynamically:
 
        _completion_loader()
@@ -4345,167 +4342,167 @@ R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
 
 
 H\bHI\bIS\bST\bTO\bOR\bRY\bY
-       When  the  -\b-o\bo  h\bhi\bis\bst\bto\bor\bry\by  option to the s\bse\bet\bt builtin is enabled, the shell
+       When the -\b-o\bo h\bhi\bis\bst\bto\bor\bry\by option to the s\bse\bet\bt builtin  is  enabled,  the  shell
        provides access to the _\bc_\bo_\bm_\bm_\ba_\bn_\bd _\bh_\bi_\bs_\bt_\bo_\br_\by, the list of commands previously
-       typed.   The  value  of  the H\bHI\bIS\bST\bTS\bSI\bIZ\bZE\bE variable is used as the number of
+       typed.  The value of the H\bHI\bIS\bST\bTS\bSI\bIZ\bZE\bE variable is used  as  the  number  of
        commands to save in a history list.  The text of the last H\bHI\bIS\bST\bTS\bSI\bIZ\bZE\bE com-
-       mands  (default  500)  is  saved.  The shell stores each command in the
-       history list prior to parameter and variable expansion  (see  E\bEX\bXP\bPA\bAN\bNS\bSI\bIO\bON\bN
-       above)  but after history expansion is performed, subject to the values
+       mands (default 500) is saved.  The shell stores  each  command  in  the
+       history  list  prior to parameter and variable expansion (see E\bEX\bXP\bPA\bAN\bNS\bSI\bIO\bON\bN
+       above) but after history expansion is performed, subject to the  values
        of the shell variables H\bHI\bIS\bST\bTI\bIG\bGN\bNO\bOR\bRE\bE and H\bHI\bIS\bST\bTC\bCO\bON\bNT\bTR\bRO\bOL\bL.
 
        On startup, the history is initialized from the file named by the vari-
-       able  H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE  (default _\b~_\b/_\b._\bb_\ba_\bs_\bh_\b__\bh_\bi_\bs_\bt_\bo_\br_\by).  The file named by the value
-       of H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE is truncated, if necessary, to contain  no  more  than  the
-       number  of  lines specified by the value of H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bES\bSI\bIZ\bZE\bE.  If H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE-\b-
-       S\bSI\bIZ\bZE\bis unset, or set to null, a non-numeric value, or a numeric  value
-       less  than  zero,  the history file is not truncated.  When the history
-       file is read, lines beginning with the history comment  character  fol-
+       able H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE (default _\b~_\b/_\b._\bb_\ba_\bs_\bh_\b__\bh_\bi_\bs_\bt_\bo_\br_\by).  The file named by  the  value
+       of  H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE  is  truncated,  if necessary, to contain no more than the
+       number of lines specified by the value of H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bES\bSI\bIZ\bZE\bE.   If  H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE-\b-
+       S\bSI\bIZ\bZE\b is unset, or set to null, a non-numeric value, or a numeric value
+       less than zero, the history file is not truncated.   When  the  history
+       file  is  read, lines beginning with the history comment character fol-
        lowed immediately by a digit are interpreted as timestamps for the fol-
        lowing history line.  These timestamps are optionally displayed depend-
-       ing  on  the  value  of the H\bHI\bIS\bST\bTT\bTI\bIM\bME\bEF\bFO\bOR\bRM\bMA\bAT\bT variable.  When a shell with
-       history enabled exits, the last $\b$H\bHI\bIS\bST\bTS\bSI\bIZ\bZE\bE lines  are  copied  from  the
-       history  list  to $\b$H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE.  If the h\bhi\bis\bst\bta\bap\bpp\bpe\ben\bnd\bd shell option is enabled
-       (see the description of s\bsh\bho\bop\bpt\bt under S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below),  the
-       lines  are  appended to the history file, otherwise the history file is
-       overwritten.  If H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE is unset, or  if  the  history  file  is  un-
-       writable,  the history is not saved.  If the H\bHI\bIS\bST\bTT\bTI\bIM\bME\bEF\bFO\bOR\bRM\bMA\bAT\bT variable is
-       set, time stamps are written to the history file, marked with the  his-
+       ing on the value of the H\bHI\bIS\bST\bTT\bTI\bIM\bME\bEF\bFO\bOR\bRM\bMA\bAT\bT variable.   When  a  shell  with
+       history  enabled  exits,  the  last $\b$H\bHI\bIS\bST\bTS\bSI\bIZ\bZE\bE lines are copied from the
+       history list to $\b$H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE.  If the h\bhi\bis\bst\bta\bap\bpp\bpe\ben\bnd\bd shell option  is  enabled
+       (see  the description of s\bsh\bho\bop\bpt\bt under S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below), the
+       lines are appended to the history file, otherwise the history  file  is
+       overwritten.   If  H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE  is  unset,  or  if the history file is un-
+       writable, the history is not saved.  If the H\bHI\bIS\bST\bTT\bTI\bIM\bME\bEF\bFO\bOR\bRM\bMA\bAT\bT variable  is
+       set,  time stamps are written to the history file, marked with the his-
        tory comment character, so they may be preserved across shell sessions.
-       This uses the history comment character to distinguish timestamps  from
-       other  history  lines.   After  saving the history, the history file is
-       truncated to contain no more than H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bES\bSI\bIZ\bZE\bE lines.  If  H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bES\bSI\bIZ\bZE\bE
-       is  unset, or set to null, a non-numeric value, or a numeric value less
+       This  uses the history comment character to distinguish timestamps from
+       other history lines.  After saving the history,  the  history  file  is
+       truncated  to contain no more than H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bES\bSI\bIZ\bZE\bE lines.  If H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bES\bSI\bIZ\bZE\bE
+       is unset, or set to null, a non-numeric value, or a numeric value  less
        than zero, the history file is not truncated.
 
-       The builtin command f\bfc\bc (see S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below) may  be  used
+       The  builtin  command f\bfc\bc (see S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below) may be used
        to list or edit and re-execute a portion of the history list.  The h\bhi\bis\bs-\b-
-       t\bto\bor\bry\bbuiltin may be used to display or modify the history list and  ma-
-       nipulate  the  history  file.   When using command-line editing, search
-       commands are available in each editing mode that provide access to  the
+       t\bto\bor\bry\b builtin may be used to display or modify the history list and ma-
+       nipulate the history file.  When  using  command-line  editing,  search
+       commands  are available in each editing mode that provide access to the
        history list.
 
-       The  shell  allows control over which commands are saved on the history
+       The shell allows control over which commands are saved on  the  history
        list.  The H\bHI\bIS\bST\bTC\bCO\bON\bNT\bTR\bRO\bOL\bL and H\bHI\bIS\bST\bTI\bIG\bGN\bNO\bOR\bRE\bE variables may be set to cause the
        shell to save only a subset of the commands entered.  The c\bcm\bmd\bdh\bhi\bis\bst\bt shell
-       option, if enabled, causes the shell to attempt to save each line of  a
-       multi-line  command  in the same history entry, adding semicolons where
-       necessary to preserve syntactic correctness.  The l\bli\bit\bth\bhi\bis\bst\bt shell  option
-       causes  the shell to save the command with embedded newlines instead of
+       option,  if enabled, causes the shell to attempt to save each line of a
+       multi-line command in the same history entry, adding  semicolons  where
+       necessary  to preserve syntactic correctness.  The l\bli\bit\bth\bhi\bis\bst\bt shell option
+       causes the shell to save the command with embedded newlines instead  of
        semicolons.  See the description of the s\bsh\bho\bop\bpt\bt builtin below under S\bSH\bHE\bEL\bLL\bL
-       B\bBU\bUI\bIL\bLT\bTI\bIN\b C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS  for  information  on setting and unsetting shell op-
+       B\bBU\bUI\bIL\bLT\bTI\bIN\bC\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS for information on setting  and  unsetting  shell  op-
        tions.
 
 H\bHI\bIS\bST\bTO\bOR\bRY\bY E\bEX\bXP\bPA\bAN\bNS\bSI\bIO\bON\bN
-       The shell supports a history expansion feature that is similar  to  the
-       history  expansion in c\bcs\bsh\bh.  This section describes what syntax features
-       are available.  This feature is  enabled  by  default  for  interactive
+       The  shell  supports a history expansion feature that is similar to the
+       history expansion in c\bcs\bsh\bh.  This section describes what syntax  features
+       are  available.   This  feature  is  enabled by default for interactive
        shells, and can be disabled using the +\b+H\bH option to the s\bse\bet\bt builtin com-
        mand (see S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS below).  Non-interactive shells do not
        perform history expansion by default.
 
        History expansions introduce words from the history list into the input
-       stream, making it easy to repeat commands, insert the  arguments  to  a
+       stream,  making  it  easy to repeat commands, insert the arguments to a
        previous command into the current input line, or fix errors in previous
        commands quickly.
 
-       History expansion is performed immediately after  a  complete  line  is
-       read,  before  the shell breaks it into words, and is performed on each
-       line individually without taking quoting on  previous  lines  into  ac-
-       count.   It  takes place in two parts.  The first is to determine which
-       line from the history list to use during substitution.  The  second  is
-       to  select  portions  of  that line for inclusion into the current one.
-       The line selected from the history is the _\be_\bv_\be_\bn_\bt, and  the  portions  of
-       that  line that are acted upon are _\bw_\bo_\br_\bd_\bs.  Various _\bm_\bo_\bd_\bi_\bf_\bi_\be_\br_\bs are avail-
-       able to manipulate the selected words.  The line is broken  into  words
-       in  the same fashion as when reading input, so that several _\bm_\be_\bt_\ba_\bc_\bh_\ba_\br_\ba_\bc_\b-
+       History  expansion  is  performed  immediately after a complete line is
+       read, before the shell breaks it into words, and is performed  on  each
+       line  individually  without  taking  quoting on previous lines into ac-
+       count.  It takes place in two parts.  The first is to  determine  which
+       line  from  the history list to use during substitution.  The second is
+       to select portions of that line for inclusion  into  the  current  one.
+       The  line  selected  from the history is the _\be_\bv_\be_\bn_\bt, and the portions of
+       that line that are acted upon are _\bw_\bo_\br_\bd_\bs.  Various _\bm_\bo_\bd_\bi_\bf_\bi_\be_\br_\bs are  avail-
+       able  to  manipulate the selected words.  The line is broken into words
+       in the same fashion as when reading input, so that several  _\bm_\be_\bt_\ba_\bc_\bh_\ba_\br_\ba_\bc_\b-
        _\bt_\be_\br-separated words surrounded by quotes are considered one word.  His-
-       tory  expansions are introduced by the appearance of the history expan-
-       sion character, which is !\b! by default.  Only backslash (\\b\)  and  single
-       quotes  can  quote the history expansion character, but the history ex-
-       pansion character is also treated as quoted if it immediately  precedes
+       tory expansions are introduced by the appearance of the history  expan-
+       sion  character,  which is !\b! by default.  Only backslash (\\b\) and single
+       quotes can quote the history expansion character, but the  history  ex-
+       pansion  character is also treated as quoted if it immediately precedes
        the closing double quote in a double-quoted string.
 
-       Several  characters inhibit history expansion if found immediately fol-
-       lowing the history expansion character, even if it is unquoted:  space,
-       tab,  newline,  carriage return, and =\b=.  If the e\bex\bxt\btg\bgl\blo\bob\bb shell option is
+       Several characters inhibit history expansion if found immediately  fol-
+       lowing  the history expansion character, even if it is unquoted: space,
+       tab, newline, carriage return, and =\b=.  If the e\bex\bxt\btg\bgl\blo\bob\bb shell  option  is
        enabled, (\b( will also inhibit expansion.
 
-       Several shell options settable with the s\bsh\bho\bop\bpt\bt builtin may  be  used  to
-       tailor  the behavior of history expansion.  If the h\bhi\bis\bst\btv\bve\ber\bri\bif\bfy\by shell op-
-       tion is enabled (see the description of the s\bsh\bho\bop\bpt\bt builtin  below),  and
-       r\bre\bea\bad\bdl\bli\bin\bne\b is  being  used,  history  substitutions  are not immediately
-       passed to the shell parser.  Instead, the  expanded  line  is  reloaded
+       Several  shell  options  settable with the s\bsh\bho\bop\bpt\bt builtin may be used to
+       tailor the behavior of history expansion.  If the h\bhi\bis\bst\btv\bve\ber\bri\bif\bfy\by shell  op-
+       tion  is  enabled (see the description of the s\bsh\bho\bop\bpt\bt builtin below), and
+       r\bre\bea\bad\bdl\bli\bin\bne\bis being  used,  history  substitutions  are  not  immediately
+       passed  to  the  shell  parser.  Instead, the expanded line is reloaded
        into the r\bre\bea\bad\bdl\bli\bin\bne\be editing buffer for further modification.  If r\bre\bea\bad\bdl\bli\bin\bne\be
-       is being used, and the h\bhi\bis\bst\btr\bre\bee\bed\bdi\bit\bt shell option  is  enabled,  a  failed
-       history  substitution will be reloaded into the r\bre\bea\bad\bdl\bli\bin\bne\be editing buffer
-       for correction.  The -\b-p\bp option to the h\bhi\bis\bst\bto\bor\bry\by builtin  command  may  be
-       used  to  see what a history expansion will do before using it.  The -\b-s\bs
+       is  being  used,  and  the h\bhi\bis\bst\btr\bre\bee\bed\bdi\bit\bt shell option is enabled, a failed
+       history substitution will be reloaded into the r\bre\bea\bad\bdl\bli\bin\bne\be editing  buffer
+       for  correction.   The  -\b-p\bp option to the h\bhi\bis\bst\bto\bor\bry\by builtin command may be
+       used to see what a history expansion will do before using it.   The  -\b-s\bs
        option to the h\bhi\bis\bst\bto\bor\bry\by builtin may be used to add commands to the end of
-       the  history  list  without  actually  executing them, so that they are
+       the history list without actually executing  them,  so  that  they  are
        available for subsequent recall.
 
-       The shell allows control of the various characters used by the  history
+       The  shell allows control of the various characters used by the history
        expansion mechanism (see the description of h\bhi\bis\bst\btc\bch\bha\bar\brs\bs above under S\bSh\bhe\bel\bll\bl
-       V\bVa\bar\bri\bia\bab\bbl\ble\bes\bs).  The shell uses the history comment character to mark  his-
+       V\bVa\bar\bri\bia\bab\bbl\ble\bes\bs).   The shell uses the history comment character to mark his-
        tory timestamps when writing the history file.
 
    E\bEv\bve\ben\bnt\bt D\bDe\bes\bsi\big\bgn\bna\bat\bto\bor\brs\bs
-       An  event designator is a reference to a command line entry in the his-
-       tory list.  Unless the reference is absolute, events  are  relative  to
+       An event designator is a reference to a command line entry in the  his-
+       tory  list.   Unless  the reference is absolute, events are relative to
        the current position in the history list.
 
-       !\b!      Start  a  history substitution, except when followed by a b\bbl\bla\ban\bnk\bk,
-              newline, carriage return, = or ( (when the e\bex\bxt\btg\bgl\blo\bob\bb shell  option
+       !\b!      Start a history substitution, except when followed by  a  b\bbl\bla\ban\bnk\bk,
+              newline,  carriage return, = or ( (when the e\bex\bxt\btg\bgl\blo\bob\bb shell option
               is enabled using the s\bsh\bho\bop\bpt\bt builtin).
        !\b!_\bn     Refer to command line _\bn.
        !\b!-\b-_\bn    Refer to the current command minus _\bn.
        !\b!!\b!     Refer to the previous command.  This is a synonym for `!-1'.
        !\b!_\bs_\bt_\br_\bi_\bn_\bg
-              Refer  to the most recent command preceding the current position
+              Refer to the most recent command preceding the current  position
               in the history list starting with _\bs_\bt_\br_\bi_\bn_\bg.
        !\b!?\b?_\bs_\bt_\br_\bi_\bn_\bg[\b[?\b?]\b]
-              Refer to the most recent command preceding the current  position
-              in  the  history  list containing _\bs_\bt_\br_\bi_\bn_\bg.  The trailing ?\b? may be
-              omitted if _\bs_\bt_\br_\bi_\bn_\bg is followed  immediately  by  a  newline.   If
-              _\bs_\bt_\br_\bi_\bn_\b is  missing,  the  string from the most recent search is
+              Refer  to the most recent command preceding the current position
+              in the history list containing _\bs_\bt_\br_\bi_\bn_\bg.  The trailing  ?\b?  may  be
+              omitted  if  _\bs_\bt_\br_\bi_\bn_\bg  is  followed  immediately by a newline.  If
+              _\bs_\bt_\br_\bi_\bn_\bis missing, the string from the  most  recent  search  is
               used; it is an error if there is no previous search string.
        ^\b^_\bs_\bt_\br_\bi_\bn_\bg_\b1^\b^_\bs_\bt_\br_\bi_\bn_\bg_\b2^\b^
-              Quick substitution.   Repeat  the  previous  command,  replacing
-              _\bs_\bt_\br_\bi_\bn_\bg_\b with  _\bs_\bt_\br_\bi_\bn_\bg_\b2.  Equivalent to ``!!:s^_\bs_\bt_\br_\bi_\bn_\bg_\b1^_\bs_\bt_\br_\bi_\bn_\bg_\b2^''
+              Quick  substitution.   Repeat  the  previous  command, replacing
+              _\bs_\bt_\br_\bi_\bn_\bg_\bwith _\bs_\bt_\br_\bi_\bn_\bg_\b2.  Equivalent  to  ``!!:s^_\bs_\bt_\br_\bi_\bn_\bg_\b1^_\bs_\bt_\br_\bi_\bn_\bg_\b2^''
               (see M\bMo\bod\bdi\bif\bfi\bie\ber\brs\bs below).
        !\b!#\b#     The entire command line typed so far.
 
    W\bWo\bor\brd\bd D\bDe\bes\bsi\big\bgn\bna\bat\bto\bor\brs\bs
-       Word designators are used to select desired words from the event.  A  :\b:
-       separates  the event specification from the word designator.  It may be
-       omitted if the word designator begins with a ^\b^, $\b$, *\b*, -\b-, or  %\b%.   Words
-       are  numbered from the beginning of the line, with the first word being
-       denoted by 0 (zero).  Words are inserted into the  current  line  sepa-
+       Word  designators are used to select desired words from the event.  A :\b:
+       separates the event specification from the word designator.  It may  be
+       omitted  if  the word designator begins with a ^\b^, $\b$, *\b*, -\b-, or %\b%.  Words
+       are numbered from the beginning of the line, with the first word  being
+       denoted  by  0  (zero).  Words are inserted into the current line sepa-
        rated by single spaces.
 
        0\b0 (\b(z\bze\ber\bro\bo)\b)
               The zeroth word.  For the shell, this is the command word.
        _\bn      The _\bnth word.
        ^\b^      The first argument.  That is, word 1.
-       $\b$      The  last word.  This is usually the last argument, but will ex-
+       $\b$      The last word.  This is usually the last argument, but will  ex-
               pand to the zeroth word if there is only one word in the line.
-       %\b%      The first word matched by the most recent `?_\bs_\bt_\br_\bi_\bn_\bg?' search,  if
-              the  search  string  begins  with  a character that is part of a
+       %\b%      The  first word matched by the most recent `?_\bs_\bt_\br_\bi_\bn_\bg?' search, if
+              the search string begins with a character  that  is  part  of  a
               word.
        _\bx-\b-_\by    A range of words; `-_\by' abbreviates `0-_\by'.
-       *\b*      All of the words but the zeroth.  This is a synonym  for  `_\b1_\b-_\b$'.
-              It  is  not  an  error to use *\b* if there is just one word in the
+       *\b*      All  of  the words but the zeroth.  This is a synonym for `_\b1_\b-_\b$'.
+              It is not an error to use *\b* if there is just  one  word  in  the
               event; the empty string is returned in that case.
        x\bx*\b*     Abbreviates _\bx_\b-_\b$.
        x\bx-\b-     Abbreviates _\bx_\b-_\b$ like x\bx*\b*, but omits the last word.  If x\bx is miss-
               ing, it defaults to 0.
 
-       If  a  word  designator is supplied without an event specification, the
+       If a word designator is supplied without an  event  specification,  the
        previous command is used as the event.
 
    M\bMo\bod\bdi\bif\bfi\bie\ber\brs\bs
-       After the optional word designator, there may appear a sequence of  one
+       After  the optional word designator, there may appear a sequence of one
        or more of the following modifiers, each preceded by a `:'.  These mod-
        ify, or edit, the word or words selected from the history event.
 
@@ -4515,24 +4512,24 @@ H\bHI\bIS\bST\bTO\bOR\bRY\bY E\bEX\bXP\bPA\bAN\bNS\bSI\bIO\bON\bN
        e\be      Remove all but the trailing suffix.
        p\bp      Print the new command but do not execute it.
        q\bq      Quote the substituted words, escaping further substitutions.
-       x\bx      Quote the substituted words as with q\bq, but break into  words  at
-              b\bbl\bla\ban\bnk\bks\b and newlines.  The q\bq and x\bx modifiers are mutually exclu-
+       x\bx      Quote  the  substituted words as with q\bq, but break into words at
+              b\bbl\bla\ban\bnk\bks\band newlines.  The q\bq and x\bx modifiers are mutually  exclu-
               sive; the last one supplied is used.
        s\bs/\b/_\bo_\bl_\bd/\b/_\bn_\be_\bw/\b/
-              Substitute _\bn_\be_\bw for the first occurrence  of  _\bo_\bl_\bd  in  the  event
+              Substitute  _\bn_\be_\bw  for  the  first  occurrence of _\bo_\bl_\bd in the event
               line.  Any character may be used as the delimiter in place of /.
-              The final delimiter is optional if it is the last  character  of
+              The  final  delimiter is optional if it is the last character of
               the event line.  The delimiter may be quoted in _\bo_\bl_\bd and _\bn_\be_\bw with
               a single backslash.  If & appears in _\bn_\be_\bw, it is replaced by _\bo_\bl_\bd.
-              A  single backslash will quote the &.  If _\bo_\bl_\bd is null, it is set
-              to the last _\bo_\bl_\bd substituted, or, if no previous history  substi-
-              tutions  took  place,  the last _\bs_\bt_\br_\bi_\bn_\bg in a !\b!?\b?_\bs_\bt_\br_\bi_\bn_\bg[\b[?\b?]\b]  search.
+              A single backslash will quote the &.  If _\bo_\bl_\bd is null, it is  set
+              to  the last _\bo_\bl_\bd substituted, or, if no previous history substi-
+              tutions took place, the last _\bs_\bt_\br_\bi_\bn_\bg in  a  !\b!?\b?_\bs_\bt_\br_\bi_\bn_\bg[\b[?\b?]\b  search.
               If _\bn_\be_\bw is null, each matching _\bo_\bl_\bd is deleted.
        &\b&      Repeat the previous substitution.
        g\bg      Cause changes to be applied over the entire event line.  This is
-              used  in  conjunction  with `:\b:s\bs' (e.g., `:\b:g\bgs\bs/\b/_\bo_\bl_\bd/\b/_\bn_\be_\bw/\b/') or `:\b:&\b&'.
-              If used with `:\b:s\bs', any delimiter can be used in place of /,  and
-              the  final  delimiter is optional if it is the last character of
+              used in conjunction with `:\b:s\bs' (e.g.,  `:\b:g\bgs\bs/\b/_\bo_\bl_\bd/\b/_\bn_\be_\bw/\b/')  or  `:\b:&\b&'.
+              If  used with `:\b:s\bs', any delimiter can be used in place of /, and
+              the final delimiter is optional if it is the last  character  of
               the event line.  An a\ba may be used as a synonym for g\bg.
        G\bG      Apply the following `s\bs' or `&\b&' modifier once to each word in the
               event line.
@@ -4541,56 +4538,56 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
        Unless otherwise noted, each builtin command documented in this section
        as accepting options preceded by -\b- accepts -\b--\b- to signify the end of the
        options.  The :\b:, t\btr\bru\bue\be, f\bfa\bal\bls\bse\be, and t\bte\bes\bst\bt/[\b[ builtins do not accept options
-       and do not treat -\b--\b- specially.  The e\bex\bxi\bit\bt, l\blo\bog\bgo\bou\but\bt, r\bre\bet\btu\bur\brn\bn,  b\bbr\bre\bea\bak\bk,  c\bco\bon\bn-\b-
-       t\bti\bin\bnu\bue\be,  l\ble\bet\bt,  and s\bsh\bhi\bif\bft\bt builtins accept and process arguments beginning
-       with -\b- without requiring -\b--\b-.  Other builtins that accept arguments  but
-       are  not  specified  as accepting options interpret arguments beginning
-       with -\b- as invalid options and require -\b--\b- to  prevent  this  interpreta-
+       and  do  not treat -\b--\b- specially.  The e\bex\bxi\bit\bt, l\blo\bog\bgo\bou\but\bt, r\bre\bet\btu\bur\brn\bn, b\bbr\bre\bea\bak\bk, c\bco\bon\bn-\b-
+       t\bti\bin\bnu\bue\be, l\ble\bet\bt, and s\bsh\bhi\bif\bft\bt builtins accept and process  arguments  beginning
+       with  -\b- without requiring -\b--\b-.  Other builtins that accept arguments but
+       are not specified as accepting options  interpret  arguments  beginning
+       with  -\b-  as  invalid options and require -\b--\b- to prevent this interpreta-
        tion.
        :\b: [_\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs]
-              No  effect;  the command does nothing beyond expanding _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs
+              No effect; the command does nothing beyond  expanding  _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs
               and performing any specified redirections.  The return status is
               zero.
 
         .\b.  _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be [_\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs]
        s\bso\bou\bur\brc\bce\be _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be [_\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs]
               Read and execute commands from _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be in the current shell en-
-              vironment and return the exit status of the  last  command  exe-
-              cuted  from  _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be.   If  _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be  does not contain a slash,
-              filenames in P\bPA\bAT\bTH\bH are used  to  find  the  directory  containing
+              vironment  and  return  the exit status of the last command exe-
+              cuted from _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be.  If _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be  does  not  contain  a  slash,
+              filenames  in  P\bPA\bAT\bTH\bH  are  used  to find the directory containing
               _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be, but _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be does not need to be executable.  The file
-              searched for in P\bPA\bAT\bTH\bH need not be executable.  When b\bba\bas\bsh\bh  is  not
-              in  _\bp_\bo_\bs_\bi_\bx  _\bm_\bo_\bd_\be, it searches the current directory if no file is
-              found in P\bPA\bAT\bTH\bH.  If the s\bso\bou\bur\brc\bce\bep\bpa\bat\bth\bh option to  the  s\bsh\bho\bop\bpt\b builtin
-              command  is  turned off, the P\bPA\bAT\bTH\bH is not searched.  If any _\ba_\br_\bg_\bu_\b-
-              _\bm_\be_\bn_\bt_\bare supplied, they become the positional  parameters  when
-              _\bf_\bi_\bl_\be_\bn_\ba_\bm_\b is  executed.  Otherwise the positional parameters are
-              unchanged.  If the -\b-T\bT option is enabled, .\b. inherits any trap  on
+              searched  for  in P\bPA\bAT\bTH\bH need not be executable.  When b\bba\bas\bsh\bh is not
+              in _\bp_\bo_\bs_\bi_\bx _\bm_\bo_\bd_\be, it searches the current directory if no  file  is
+              found  in  P\bPA\bAT\bTH\bH.   If the s\bso\bou\bur\brc\bce\bep\bpa\bat\bth\bh option to the s\bsh\bho\bop\bpt\bt builtin
+              command is turned off, the P\bPA\bAT\bTH\bH is not searched.  If  any  _\ba_\br_\bg_\bu_\b-
+              _\bm_\be_\bn_\bt_\b are  supplied, they become the positional parameters when
+              _\bf_\bi_\bl_\be_\bn_\ba_\bm_\bis executed.  Otherwise the positional  parameters  are
+              unchanged.   If the -\b-T\bT option is enabled, .\b. inherits any trap on
               D\bDE\bEB\bBU\bUG\bG; if it is not, any D\bDE\bEB\bBU\bUG\bG trap string is saved and restored
-              around the call to .\b., and .\b. unsets the D\bDE\bEB\bBU\bUG\bG trap while it  exe-
+              around  the call to .\b., and .\b. unsets the D\bDE\bEB\bBU\bUG\bG trap while it exe-
               cutes.  If -\b-T\bT is not set, and the sourced file changes the D\bDE\bEB\bBU\bUG\bG
-              trap, the new value is retained when .\b.  completes.   The  return
-              status  is  the  status  of  the  last command exited within the
+              trap,  the  new  value is retained when .\b. completes.  The return
+              status is the status of  the  last  command  exited  within  the
               script (0 if no commands are executed), and false if _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be is
               not found or cannot be read.
 
        a\bal\bli\bia\bas\bs [-\b-p\bp] [_\bn_\ba_\bm_\be[=_\bv_\ba_\bl_\bu_\be] ...]
               A\bAl\bli\bia\bas\bs with no arguments or with the -\b-p\bp option prints the list of
-              aliases in the form a\bal\bli\bia\bas\bs _\bn_\ba_\bm_\be=_\bv_\ba_\bl_\bu_\be on standard  output.   When
-              arguments  are supplied, an alias is defined for each _\bn_\ba_\bm_\be whose
-              _\bv_\ba_\bl_\bu_\bis given.  A trailing space in _\bv_\ba_\bl_\bu_\be causes the next  word
+              aliases  in  the form a\bal\bli\bia\bas\bs _\bn_\ba_\bm_\be=_\bv_\ba_\bl_\bu_\be on standard output.  When
+              arguments are supplied, an alias is defined for each _\bn_\ba_\bm_\b whose
+              _\bv_\ba_\bl_\bu_\b is given.  A trailing space in _\bv_\ba_\bl_\bu_\be causes the next word
               to be checked for alias substitution when the alias is expanded.
-              For each _\bn_\ba_\bm_\be in the argument list for which no  _\bv_\ba_\bl_\bu_\be  is  sup-
-              plied,  the  name  and value of the alias is printed.  A\bAl\bli\bia\bas\bs re-
-              turns true unless a _\bn_\ba_\bm_\be is given for which no  alias  has  been
+              For  each  _\bn_\ba_\bm_\be  in the argument list for which no _\bv_\ba_\bl_\bu_\be is sup-
+              plied, the name and value of the alias is  printed.   A\bAl\bli\bia\bas\b re-
+              turns  true  unless  a _\bn_\ba_\bm_\be is given for which no alias has been
               defined.
 
        b\bbg\bg [_\bj_\bo_\bb_\bs_\bp_\be_\bc ...]
-              Resume  each  suspended  job _\bj_\bo_\bb_\bs_\bp_\be_\bc in the background, as if it
+              Resume each suspended job _\bj_\bo_\bb_\bs_\bp_\be_\bc in the background,  as  if  it
               had been started with &\b&.  If _\bj_\bo_\bb_\bs_\bp_\be_\bc is not present, the shell's
-              notion  of the _\bc_\bu_\br_\br_\be_\bn_\bt _\bj_\bo_\bb is used.  b\bbg\bg _\bj_\bo_\bb_\bs_\bp_\be_\bc returns 0 unless
-              run when job control is disabled or, when run with  job  control
-              enabled,  any  specified  _\bj_\bo_\bb_\bs_\bp_\be_\bc  was  not found or was started
+              notion of the _\bc_\bu_\br_\br_\be_\bn_\bt _\bj_\bo_\bb is used.  b\bbg\bg _\bj_\bo_\bb_\bs_\bp_\be_\bc returns 0  unless
+              run  when  job control is disabled or, when run with job control
+              enabled, any specified _\bj_\bo_\bb_\bs_\bp_\be_\bc was  not  found  or  was  started
               without job control.
 
        b\bbi\bin\bnd\bd [-\b-m\bm _\bk_\be_\by_\bm_\ba_\bp] [-\b-l\blp\bps\bsv\bvP\bPS\bSV\bVX\bX]
@@ -4600,30 +4597,30 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
        b\bbi\bin\bnd\bd [-\b-m\bm _\bk_\be_\by_\bm_\ba_\bp] _\bk_\be_\by_\bs_\be_\bq:_\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn_\b-_\bn_\ba_\bm_\be
        b\bbi\bin\bnd\bd [-\b-m\bm _\bk_\be_\by_\bm_\ba_\bp] _\bk_\be_\by_\bs_\be_\bq:_\br_\be_\ba_\bd_\bl_\bi_\bn_\be_\b-_\bc_\bo_\bm_\bm_\ba_\bn_\bd
        b\bbi\bin\bnd\bd _\br_\be_\ba_\bd_\bl_\bi_\bn_\be_\b-_\bc_\bo_\bm_\bm_\ba_\bn_\bd_\b-_\bl_\bi_\bn_\be
-              Display current r\bre\bea\bad\bdl\bli\bin\bne\be key and function bindings, bind  a  key
-              sequence  to  a  r\bre\bea\bad\bdl\bli\bin\bne\be  function  or macro, or set a r\bre\bea\bad\bdl\bli\bin\bne\be
+              Display  current  r\bre\bea\bad\bdl\bli\bin\bne\be key and function bindings, bind a key
+              sequence to a r\bre\bea\bad\bdl\bli\bin\bne\be function or  macro,  or  set  a  r\bre\bea\bad\bdl\bli\bin\bne\be
               variable.  Each non-option argument is a command as it would ap-
-              pear  in  a  r\bre\bea\bad\bdl\bli\bin\bne\be  initialization file such as _\b._\bi_\bn_\bp_\bu_\bt_\br_\bc, but
-              each binding or command must be passed as a  separate  argument;
-              e.g.,  '"\C-x\C-r":  re-read-init-file'.   Options, if supplied,
+              pear in a r\bre\bea\bad\bdl\bli\bin\bne\be initialization file  such  as  _\b._\bi_\bn_\bp_\bu_\bt_\br_\bc,  but
+              each  binding  or command must be passed as a separate argument;
+              e.g., '"\C-x\C-r": re-read-init-file'.   Options,  if  supplied,
               have the following meanings:
               -\b-m\bm _\bk_\be_\by_\bm_\ba_\bp
                      Use _\bk_\be_\by_\bm_\ba_\bp as the keymap to be affected by the subsequent
                      bindings.  Acceptable _\bk_\be_\by_\bm_\ba_\bp names are _\be_\bm_\ba_\bc_\bs_\b, _\be_\bm_\ba_\bc_\bs_\b-_\bs_\bt_\ba_\bn_\b-
-                     _\bd_\ba_\br_\bd_\b_\be_\bm_\ba_\bc_\bs_\b-_\bm_\be_\bt_\ba_\b, _\be_\bm_\ba_\bc_\bs_\b-_\bc_\bt_\bl_\bx_\b,  _\bv_\bi_\b,  _\bv_\bi_\b-_\bm_\bo_\bv_\be_\b _\bv_\bi_\b-_\bc_\bo_\bm_\bm_\ba_\bn_\bd,
-                     and  _\bv_\bi_\b-_\bi_\bn_\bs_\be_\br_\bt.   _\bv_\bi is equivalent to _\bv_\bi_\b-_\bc_\bo_\bm_\bm_\ba_\bn_\bd (_\bv_\bi_\b-_\bm_\bo_\bv_\be
-                     is also a synonym); _\be_\bm_\ba_\bc_\bs is  equivalent  to  _\be_\bm_\ba_\bc_\bs_\b-_\bs_\bt_\ba_\bn_\b-
+                     _\bd_\ba_\br_\bd_\b _\be_\bm_\ba_\bc_\bs_\b-_\bm_\be_\bt_\ba_\b,  _\be_\bm_\ba_\bc_\bs_\b-_\bc_\bt_\bl_\bx_\b,  _\bv_\bi_\b, _\bv_\bi_\b-_\bm_\bo_\bv_\be_\b, _\bv_\bi_\b-_\bc_\bo_\bm_\bm_\ba_\bn_\bd,
+                     and _\bv_\bi_\b-_\bi_\bn_\bs_\be_\br_\bt.  _\bv_\bi is equivalent to  _\bv_\bi_\b-_\bc_\bo_\bm_\bm_\ba_\bn_\b (_\bv_\bi_\b-_\bm_\bo_\bv_\be
+                     is  also  a  synonym); _\be_\bm_\ba_\bc_\bs is equivalent to _\be_\bm_\ba_\bc_\bs_\b-_\bs_\bt_\ba_\bn_\b-
                      _\bd_\ba_\br_\bd.
               -\b-l\bl     List the names of all r\bre\bea\bad\bdl\bli\bin\bne\be functions.
-              -\b-p\bp     Display  r\bre\bea\bad\bdl\bli\bin\bne\be  function  names and bindings in such a
+              -\b-p\bp     Display r\bre\bea\bad\bdl\bli\bin\bne\be function names and bindings  in  such  a
                      way that they can be re-read.
               -\b-P\bP     List current r\bre\bea\bad\bdl\bli\bin\bne\be function names and bindings.
-              -\b-s\bs     Display r\bre\bea\bad\bdl\bli\bin\bne\be key sequences bound to  macros  and  the
-                     strings  they  output  in such a way that they can be re-
+              -\b-s\bs     Display  r\bre\bea\bad\bdl\bli\bin\bne\be  key  sequences bound to macros and the
+                     strings they output in such a way that they  can  be  re-
                      read.
-              -\b-S\bS     Display r\bre\bea\bad\bdl\bli\bin\bne\be key sequences bound to  macros  and  the
+              -\b-S\bS     Display  r\bre\bea\bad\bdl\bli\bin\bne\be  key  sequences bound to macros and the
                      strings they output.
-              -\b-v\bv     Display  r\bre\bea\bad\bdl\bli\bin\bne\be variable names and values in such a way
+              -\b-v\bv     Display r\bre\bea\bad\bdl\bli\bin\bne\be variable names and values in such a  way
                      that they can be re-read.
               -\b-V\bV     List current r\bre\bea\bad\bdl\bli\bin\bne\be variable names and values.
               -\b-f\bf _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be
@@ -4636,190 +4633,190 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
                      Remove any current binding for _\bk_\be_\by_\bs_\be_\bq.
               -\b-x\bx _\bk_\be_\by_\bs_\be_\bq:\b:_\bs_\bh_\be_\bl_\bl_\b-_\bc_\bo_\bm_\bm_\ba_\bn_\bd
                      Cause _\bs_\bh_\be_\bl_\bl_\b-_\bc_\bo_\bm_\bm_\ba_\bn_\bd to be executed whenever _\bk_\be_\by_\bs_\be_\bq is en-
-                     tered.   When  _\bs_\bh_\be_\bl_\bl_\b-_\bc_\bo_\bm_\bm_\ba_\bn_\bd  is executed, the shell sets
-                     the R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE_\b_L\bLI\bIN\bNE\bE variable to the contents of  the  r\bre\bea\bad\bd-\b-
+                     tered.  When _\bs_\bh_\be_\bl_\bl_\b-_\bc_\bo_\bm_\bm_\ba_\bn_\bd is executed,  the  shell  sets
+                     the  R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE_\b_L\bLI\bIN\bNE\bE  variable to the contents of the r\bre\bea\bad\bd-\b-
                      l\bli\bin\bne\be line buffer and the R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE_\b_P\bPO\bOI\bIN\bNT\bT and R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE_\b_M\bMA\bAR\bRK\bK
-                     variables to the current location of the insertion  point
-                     and  the  saved insertion point (the mark), respectively.
-                     The shell assigns any numeric argument the user  supplied
+                     variables  to the current location of the insertion point
+                     and the saved insertion point (the  mark),  respectively.
+                     The  shell assigns any numeric argument the user supplied
                      to the R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE_\b_A\bAR\bRG\bGU\bUM\bME\bEN\bNT\bT variable.  If there was no argu-
-                     ment, that variable is not set.  If the executed  command
-                     changes   the   value  of  any  of  R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE_\b_L\bLI\bIN\bNE\bE,  R\bRE\bEA\bAD\bD-\b-
-                     L\bLI\bIN\bNE\bE_\b_P\bPO\bOI\bIN\bNT\bT, or R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE_\b_M\bMA\bAR\bRK\bK, those new  values  will  be
+                     ment,  that variable is not set.  If the executed command
+                     changes  the  value  of  any  of   R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE_\b_L\bLI\bIN\bNE\bE,   R\bRE\bEA\bAD\bD-\b-
+                     L\bLI\bIN\bNE\bE_\b_P\bPO\bOI\bIN\bNT\bT,  or  R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE_\b_M\bMA\bAR\bRK\bK,  those new values will be
                      reflected in the editing state.
-              -\b-X\bX     List  all  key  sequences bound to shell commands and the
+              -\b-X\bX     List all key sequences bound to shell  commands  and  the
                      associated commands in a format that can be reused as in-
                      put.
 
-              The  return value is 0 unless an unrecognized option is given or
+              The return value is 0 unless an unrecognized option is given  or
               an error occurred.
 
        b\bbr\bre\bea\bak\bk [_\bn]
-              Exit from within a f\bfo\bor\br, w\bwh\bhi\bil\ble\be, u\bun\bnt\bti\bil\bl, or s\bse\bel\ble\bec\bct\bt loop.  If  _\b is
-              specified,  break  _\bn  levels.   _\bn must be >= 1.  If _\bn is greater
-              than the number of enclosing loops, all enclosing loops are  ex-
-              ited.   The  return  value  is 0 unless _\bn is not greater than or
+              Exit  from  within a f\bfo\bor\br, w\bwh\bhi\bil\ble\be, u\bun\bnt\bti\bil\bl, or s\bse\bel\ble\bec\bct\bt loop.  If _\bn is
+              specified, break _\bn levels.  _\bn must be >= 1.   If  _\bn  is  greater
+              than  the number of enclosing loops, all enclosing loops are ex-
+              ited.  The return value is 0 unless _\bn is  not  greater  than  or
               equal to 1.
 
        b\bbu\bui\bil\blt\bti\bin\bn _\bs_\bh_\be_\bl_\bl_\b-_\bb_\bu_\bi_\bl_\bt_\bi_\bn [_\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs]
-              Execute the specified shell builtin, passing it  _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs,  and
+              Execute  the  specified shell builtin, passing it _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs, and
               return its exit status.  This is useful when defining a function
-              whose name is the same as a shell builtin, retaining  the  func-
+              whose  name  is the same as a shell builtin, retaining the func-
               tionality of the builtin within the function.  The c\bcd\bd builtin is
-              commonly redefined this way.  The  return  status  is  false  if
+              commonly  redefined  this  way.   The  return status is false if
               _\bs_\bh_\be_\bl_\bl_\b-_\bb_\bu_\bi_\bl_\bt_\bi_\bn is not a shell builtin command.
 
        c\bca\bal\bll\ble\ber\br [_\be_\bx_\bp_\br]
               Returns the context of any active subroutine call (a shell func-
               tion or a script executed with the .\b. or s\bso\bou\bur\brc\bce\be builtins).  With-
               out _\be_\bx_\bp_\br, c\bca\bal\bll\ble\ber\br displays the line number and source filename of
-              the current subroutine call.  If a non-negative integer is  sup-
+              the  current subroutine call.  If a non-negative integer is sup-
               plied as _\be_\bx_\bp_\br, c\bca\bal\bll\ble\ber\br displays the line number, subroutine name,
-              and source file corresponding to that position  in  the  current
-              execution  call  stack.  This extra information may be used, for
-              example, to print a stack trace.  The current frame is frame  0.
-              The  return  value is 0 unless the shell is not executing a sub-
-              routine call or _\be_\bx_\bp_\br does not correspond to a valid position  in
+              and  source  file  corresponding to that position in the current
+              execution call stack.  This extra information may be  used,  for
+              example,  to print a stack trace.  The current frame is frame 0.
+              The return value is 0 unless the shell is not executing  a  sub-
+              routine  call or _\be_\bx_\bp_\br does not correspond to a valid position in
               the call stack.
 
        c\bcd\bd [-\b-L\bL|[-\b-P\bP [-\b-e\be]]] [-@] [_\bd_\bi_\br]
-              Change  the  current  directory to _\bd_\bi_\br.  if _\bd_\bi_\br is not supplied,
-              the value of the H\bHO\bOM\bME\bE shell variable is the default.  The  vari-
+              Change the current directory to _\bd_\bi_\br.  if _\bd_\bi_\br  is  not  supplied,
+              the  value of the H\bHO\bOM\bME\bE shell variable is the default.  The vari-
               able C\bCD\bDP\bPA\bAT\bTH\bH defines the search path for the directory containing
-              _\bd_\bi_\br: each directory name in C\bCD\bDP\bPA\bAT\bTH\bH is searched for _\bd_\bi_\br.   Alter-
-              native  directory  names in C\bCD\bDP\bPA\bAT\bTH\bH are separated by a colon (:).
-              A null directory name in C\bCD\bDP\bPA\bAT\bTH\bH is the same as the  current  di-
-              rectory,  i.e., ``.\b.''.  If _\bd_\bi_\br begins with a slash (/), then C\bCD\bD-\b-
-              P\bPA\bAT\bTH\bis not used.  The -\b-P\bP option causes c\bcd\bd to use  the  physical
+              _\bd_\bi_\br:  each directory name in C\bCD\bDP\bPA\bAT\bTH\bH is searched for _\bd_\bi_\br.  Alter-
+              native directory names in C\bCD\bDP\bPA\bAT\bTH\bH are separated by a  colon  (:).
+              A  null  directory name in C\bCD\bDP\bPA\bAT\bTH\bH is the same as the current di-
+              rectory, i.e., ``.\b.''.  If _\bd_\bi_\br begins with a slash (/), then  C\bCD\bD-\b-
+              P\bPA\bAT\bTH\b is  not used.  The -\b-P\bP option causes c\bcd\bd to use the physical
               directory structure by resolving symbolic links while traversing
-              _\bd_\bi_\band before processing instances of _\b._\b. in _\bd_\bi_\br (see  also  the
+              _\bd_\bi_\b and  before processing instances of _\b._\b. in _\bd_\bi_\br (see also the
               -\b-P\bP option to the s\bse\bet\bt builtin command); the -\b-L\bL option forces sym-
-              bolic links to be followed by resolving the link after  process-
-              ing  instances  of  _\b._\b. in _\bd_\bi_\br.  If _\b._\b. appears in _\bd_\bi_\br, it is pro-
-              cessed by removing the immediately previous  pathname  component
-              from  _\bd_\bi_\br,  back  to a slash or the beginning of _\bd_\bi_\br.  If the -\b-e\be
-              option is supplied with -\b-P\bP, and the  current  working  directory
-              cannot  be  successfully determined after a successful directory
-              change, c\bcd\bd will return an unsuccessful status.  On systems  that
+              bolic  links to be followed by resolving the link after process-
+              ing instances of _\b._\b. in _\bd_\bi_\br.  If _\b._\b. appears in _\bd_\bi_\br,  it  is  pro-
+              cessed  by  removing the immediately previous pathname component
+              from _\bd_\bi_\br, back to a slash or the beginning of _\bd_\bi_\br.   If  the  -\b-e\be
+              option  is  supplied  with -\b-P\bP, and the current working directory
+              cannot be successfully determined after a  successful  directory
+              change,  c\bcd\bd will return an unsuccessful status.  On systems that
               support it, the -\b-@\b@ option presents the extended attributes asso-
-              ciated with a file as a directory.  An argument  of  -\b-  is  con-
-              verted  to $\b$O\bOL\bLD\bDP\bPW\bWD\bD before the directory change is attempted.  If
-              a non-empty directory name from C\bCD\bDP\bPA\bAT\bTH\bH is used, or if -\b-  is  the
-              first  argument, and the directory change is successful, the ab-
-              solute pathname of the new working directory is written  to  the
+              ciated  with  a  file  as a directory.  An argument of -\b- is con-
+              verted to $\b$O\bOL\bLD\bDP\bPW\bWD\bD before the directory change is attempted.   If
+              a  non-empty  directory name from C\bCD\bDP\bPA\bAT\bTH\bH is used, or if -\b- is the
+              first argument, and the directory change is successful, the  ab-
+              solute  pathname  of the new working directory is written to the
               standard output.  If the directory change is successful, c\bcd\bd sets
-              the value of the P\bPW\bWD\bD environment variable to the  new  directory
-              name,  and  sets the O\bOL\bLD\bDP\bPW\bWD\bD environment variable to the value of
-              the current working directory before  the  change.   The  return
-              value  is  true if the directory was successfully changed; false
+              the  value  of the P\bPW\bWD\bD environment variable to the new directory
+              name, and sets the O\bOL\bLD\bDP\bPW\bWD\bD environment variable to the  value  of
+              the  current  working  directory  before the change.  The return
+              value is true if the directory was successfully  changed;  false
               otherwise.
 
        c\bco\bom\bmm\bma\ban\bnd\bd [-\b-p\bpV\bVv\bv] _\bc_\bo_\bm_\bm_\ba_\bn_\bd [_\ba_\br_\bg ...]
-              Run _\bc_\bo_\bm_\bm_\ba_\bn_\bd with _\ba_\br_\bg_\bs  suppressing  the  normal  shell  function
+              Run  _\bc_\bo_\bm_\bm_\ba_\bn_\bd  with  _\ba_\br_\bg_\bs  suppressing  the normal shell function
               lookup.  Only builtin commands or commands found in the P\bPA\bAT\bTH\bH are
-              executed.  If the -\b-p\bp option is given, the search for _\bc_\bo_\bm_\bm_\ba_\bn_\b is
-              performed  using  a default value for P\bPA\bAT\bTH\bH that is guaranteed to
-              find all of the standard utilities.  If either the -\b-V\bV or -\b-v\b op-
-              tion  is  supplied, a description of _\bc_\bo_\bm_\bm_\ba_\bn_\bd is printed.  The -\b-v\bv
-              option causes a single word indicating the command  or  filename
+              executed.   If the -\b-p\bp option is given, the search for _\bc_\bo_\bm_\bm_\ba_\bn_\bd is
+              performed using a default value for P\bPA\bAT\bTH\bH that is  guaranteed  to
+              find  all of the standard utilities.  If either the -\b-V\bV or -\b-v\bv op-
+              tion is supplied, a description of _\bc_\bo_\bm_\bm_\ba_\bn_\bd is printed.   The  -\b-v\bv
+              option  causes  a single word indicating the command or filename
               used to invoke _\bc_\bo_\bm_\bm_\ba_\bn_\bd to be displayed; the -\b-V\bV option produces a
-              more verbose description.  If the -\b-V\bV or -\b-v\bv option  is  supplied,
-              the  exit  status  is  0 if _\bc_\bo_\bm_\bm_\ba_\bn_\bd was found, and 1 if not.  If
+              more  verbose  description.  If the -\b-V\bV or -\b-v\bv option is supplied,
+              the exit status is 0 if _\bc_\bo_\bm_\bm_\ba_\bn_\bd was found, and  1  if  not.   If
               neither option is supplied and an error occurred or _\bc_\bo_\bm_\bm_\ba_\bn_\bd can-
-              not  be found, the exit status is 127.  Otherwise, the exit sta-
+              not be found, the exit status is 127.  Otherwise, the exit  sta-
               tus of the c\bco\bom\bmm\bma\ban\bnd\bd builtin is the exit status of _\bc_\bo_\bm_\bm_\ba_\bn_\bd.
 
        c\bco\bom\bmp\bpg\bge\ben\bn [-\b-V\bV _\bv_\ba_\br_\bn_\ba_\bm_\be] [_\bo_\bp_\bt_\bi_\bo_\bn] [_\bw_\bo_\br_\bd]
-              Generate possible completion matches for _\bw_\bo_\br_\bd according  to  the
-              _\bo_\bp_\bt_\bi_\bo_\bns,  which  may  be  any  option  accepted  by the c\bco\bom\bmp\bpl\ble\bet\bte\be
+              Generate  possible  completion matches for _\bw_\bo_\br_\bd according to the
+              _\bo_\bp_\bt_\bi_\bo_\bns, which may  be  any  option  accepted  by  the  c\bco\bom\bmp\bpl\ble\bet\bte\be
               builtin with the exceptions of -\b-p\bp, -\b-r\br, -\b-D\bD, -\b-E\bE, and -\b-I\bI, and write
-              the  matches  to  the standard output.  If the -\b-V\bV option is sup-
+              the matches to the standard output.  If the -\b-V\bV  option  is  sup-
               plied, c\bco\bom\bmp\bpg\bge\ben\bn stores the generated completions into the indexed
-              array  variable  _\bv_\ba_\br_\bn_\ba_\bm_\be instead of writing them to the standard
-              output.  When using the -\b-F\bF or  -\b-C\bC  options,  the  various  shell
-              variables  set  by the programmable completion facilities, while
+              array variable _\bv_\ba_\br_\bn_\ba_\bm_\be instead of writing them to  the  standard
+              output.   When  using  the  -\b-F\bF  or -\b-C\bC options, the various shell
+              variables set by the programmable completion  facilities,  while
               available, will not have useful values.
 
               The matches will be generated in the same way as if the program-
               mable completion code had generated them directly from a comple-
-              tion specification with the same flags.  If _\bw_\bo_\br_\bd  is  specified,
+              tion  specification  with the same flags.  If _\bw_\bo_\br_\bd is specified,
               only those completions matching _\bw_\bo_\br_\bd will be displayed.
 
-              The  return  value is true unless an invalid option is supplied,
+              The return value is true unless an invalid option  is  supplied,
               or no matches were generated.
 
        c\bco\bom\bmp\bpl\ble\bet\bte\be [-\b-a\bab\bbc\bcd\bde\bef\bfg\bgj\bjk\bks\bsu\buv\bv] [-\b-o\bo _\bc_\bo_\bm_\bp_\b-_\bo_\bp_\bt_\bi_\bo_\bn] [-\b-D\bDE\bEI\bI] [-\b-A\bA _\ba_\bc_\bt_\bi_\bo_\bn]
               [-\b-G\bG _\bg_\bl_\bo_\bb_\bp_\ba_\bt] [-\b-W\bW _\bw_\bo_\br_\bd_\bl_\bi_\bs_\bt] [-\b-F\bF _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn] [-\b-C\bC _\bc_\bo_\bm_\bm_\ba_\bn_\bd]
               [-\b-X\bX _\bf_\bi_\bl_\bt_\be_\br_\bp_\ba_\bt] [-\b-P\bP _\bp_\br_\be_\bf_\bi_\bx] [-\b-S\bS _\bs_\bu_\bf_\bf_\bi_\bx] _\bn_\ba_\bm_\be [_\bn_\ba_\bm_\be _\b._\b._\b.]
        c\bco\bom\bmp\bpl\ble\bet\bte\be -\b-p\bpr\br [-\b-D\bDE\bEI\bI] [_\bn_\ba_\bm_\be ...]
-              Specify how arguments to each _\bn_\ba_\bm_\be should be completed.  If  the
-              -\b-p\b option  is supplied, or if no options are supplied, existing
-              completion specifications are printed in a way that allows  them
+              Specify  how arguments to each _\bn_\ba_\bm_\be should be completed.  If the
+              -\b-p\boption is supplied, or if no options are  supplied,  existing
+              completion  specifications are printed in a way that allows them
               to be reused as input.  The -\b-r\br option removes a completion spec-
-              ification for each _\bn_\ba_\bm_\be, or, if no _\bn_\ba_\bm_\bes are supplied, all  com-
+              ification  for each _\bn_\ba_\bm_\be, or, if no _\bn_\ba_\bm_\bes are supplied, all com-
               pletion specifications.  The -\b-D\bD option indicates that other sup-
-              plied options and actions should apply to the  ``default''  com-
-              mand  completion; that is, completion attempted on a command for
-              which no completion has previously been defined.  The -\b-E\b option
-              indicates  that  other supplied options and actions should apply
-              to ``empty'' command completion; that is,  completion  attempted
-              on  a  blank  line.  The -\b-I\bI option indicates that other supplied
-              options and actions should apply to completion  on  the  initial
-              non-assignment  word  on  the line, or after a command delimiter
-              such as ;\b; or |\b|, which is usually command  name  completion.   If
-              multiple  options  are  supplied, the -\b-D\bD option takes precedence
+              plied  options  and actions should apply to the ``default'' com-
+              mand completion; that is, completion attempted on a command  for
+              which  no completion has previously been defined.  The -\b-E\bE option
+              indicates that other supplied options and actions  should  apply
+              to  ``empty''  command completion; that is, completion attempted
+              on a blank line.  The -\b-I\bI option indicates  that  other  supplied
+              options  and  actions  should apply to completion on the initial
+              non-assignment word on the line, or after  a  command  delimiter
+              such  as  ;\b;  or |\b|, which is usually command name completion.  If
+              multiple options are supplied, the -\b-D\bD  option  takes  precedence
               over -\b-E\bE, and both take precedence over -\b-I\bI.  If any of -\b-D\bD, -\b-E\bE, or
-              -\b-I\b are  supplied,  any  other _\bn_\ba_\bm_\be arguments are ignored; these
+              -\b-I\bare supplied, any other _\bn_\ba_\bm_\be  arguments  are  ignored;  these
               completions only apply to the case specified by the option.
 
-              The process of applying  these  completion  specifications  when
-              word  completion  is attempted is described above under P\bPr\bro\bog\bgr\bra\bam\bm-\b-
+              The  process  of  applying  these completion specifications when
+              word completion is attempted is described above  under  P\bPr\bro\bog\bgr\bra\bam\bm-\b-
               m\bma\bab\bbl\ble\be C\bCo\bom\bmp\bpl\ble\bet\bti\bio\bon\bn.
 
-              Other options, if specified, have the following  meanings.   The
-              arguments  to the -\b-G\bG, -\b-W\bW, and -\b-X\bX options (and, if necessary, the
-              -\b-P\band -\b-S\bS options) should be quoted to protect them from  expan-
+              Other  options,  if specified, have the following meanings.  The
+              arguments to the -\b-G\bG, -\b-W\bW, and -\b-X\bX options (and, if necessary,  the
+              -\b-P\b and -\b-S\bS options) should be quoted to protect them from expan-
               sion before the c\bco\bom\bmp\bpl\ble\bet\bte\be builtin is invoked.
               -\b-o\bo _\bc_\bo_\bm_\bp_\b-_\bo_\bp_\bt_\bi_\bo_\bn
-                      The  _\bc_\bo_\bm_\bp_\b-_\bo_\bp_\bt_\bi_\bo_\bn  controls  several aspects of the comp-
-                      spec's behavior beyond the simple generation of  comple-
+                      The _\bc_\bo_\bm_\bp_\b-_\bo_\bp_\bt_\bi_\bo_\bn controls several aspects  of  the  comp-
+                      spec's  behavior beyond the simple generation of comple-
                       tions.  _\bc_\bo_\bm_\bp_\b-_\bo_\bp_\bt_\bi_\bo_\bn may be one of:
                       b\bba\bas\bsh\bhd\bde\bef\bfa\bau\bul\blt\bt
                               Perform the rest of the default b\bba\bas\bsh\bh completions
                               if the compspec generates no matches.
-                      d\bde\bef\bfa\bau\bul\blt\bt Use readline's default  filename  completion  if
+                      d\bde\bef\bfa\bau\bul\blt\bt Use  readline's  default  filename completion if
                               the compspec generates no matches.
                       d\bdi\bir\brn\bna\bam\bme\bes\bs
-                              Perform  directory  name completion if the comp-
+                              Perform directory name completion if  the  comp-
                               spec generates no matches.
                       f\bfi\bil\ble\ben\bna\bam\bme\bes\bs
-                              Tell readline that the compspec generates  file-
-                              names,  so  it can perform any filename-specific
-                              processing (like adding  a  slash  to  directory
-                              names,  quoting special characters, or suppress-
-                              ing trailing spaces).  Intended to be used  with
+                              Tell  readline that the compspec generates file-
+                              names, so it can perform  any  filename-specific
+                              processing  (like  adding  a  slash to directory
+                              names, quoting special characters, or  suppress-
+                              ing  trailing spaces).  Intended to be used with
                               shell functions.
-                      n\bno\boq\bqu\buo\bot\bte\be Tell  readline  not to quote the completed words
-                              if they are filenames (quoting filenames is  the
+                      n\bno\boq\bqu\buo\bot\bte\be Tell readline not to quote the  completed  words
+                              if  they are filenames (quoting filenames is the
                               default).
-                      n\bno\bos\bso\bor\brt\bt  Tell  readline  not to sort the list of possible
+                      n\bno\bos\bso\bor\brt\bt  Tell readline not to sort the list  of  possible
                               completions alphabetically.
-                      n\bno\bos\bsp\bpa\bac\bce\be Tell readline not to append  a  space  (the  de-
-                              fault)  to  words  completed  at  the end of the
+                      n\bno\bos\bsp\bpa\bac\bce\be Tell  readline  not  to  append a space (the de-
+                              fault) to words completed  at  the  end  of  the
                               line.
                       p\bpl\blu\bus\bsd\bdi\bir\brs\bs
-                              After any matches defined by  the  compspec  are
+                              After  any  matches  defined by the compspec are
                               generated,  directory  name  completion  is  at-
                               tempted and any matches are added to the results
                               of the other actions.
               -\b-A\bA _\ba_\bc_\bt_\bi_\bo_\bn
-                      The  _\ba_\bc_\bt_\bi_\bo_\bn  may  be  one of the following to generate a
+                      The _\ba_\bc_\bt_\bi_\bo_\bn may be one of the  following  to  generate  a
                       list of possible completions:
                       a\bal\bli\bia\bas\bs   Alias names.  May also be specified as -\b-a\ba.
                       a\bar\brr\bra\bay\byv\bva\bar\br
                               Array variable names.
                       b\bbi\bin\bnd\bdi\bin\bng\bg R\bRe\bea\bad\bdl\bli\bin\bne\be key binding names.
-                      b\bbu\bui\bil\blt\bti\bin\bn Names of shell builtin commands.   May  also  be
+                      b\bbu\bui\bil\blt\bti\bin\bn Names  of  shell  builtin commands.  May also be
                               specified as -\b-b\bb.
                       c\bco\bom\bmm\bma\ban\bnd\bd Command names.  May also be specified as -\b-c\bc.
                       d\bdi\bir\bre\bec\bct\bto\bor\bry\by
@@ -4827,7 +4824,7 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
                       d\bdi\bis\bsa\bab\bbl\ble\bed\bd
                               Names of disabled shell builtins.
                       e\ben\bna\bab\bbl\ble\bed\bd Names of enabled shell builtins.
-                      e\bex\bxp\bpo\bor\brt\bt  Names  of exported shell variables.  May also be
+                      e\bex\bxp\bpo\bor\brt\bt  Names of exported shell variables.  May also  be
                               specified as -\b-e\be.
                       f\bfi\bil\ble\be    File names.  May also be specified as -\b-f\bf.
                       f\bfu\bun\bnc\bct\bti\bio\bon\bn
@@ -4836,17 +4833,17 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
                       h\bhe\bel\blp\bpt\bto\bop\bpi\bic\bc
                               Help topics as accepted by the h\bhe\bel\blp\bp builtin.
                       h\bho\bos\bst\btn\bna\bam\bme\be
-                              Hostnames, as taken from the file  specified  by
+                              Hostnames,  as  taken from the file specified by
                               the H\bHO\bOS\bST\bTF\bFI\bIL\bLE\bE shell variable.
-                      j\bjo\bob\bb     Job  names,  if job control is active.  May also
+                      j\bjo\bob\bb     Job names, if job control is active.   May  also
                               be specified as -\b-j\bj.
-                      k\bke\bey\byw\bwo\bor\brd\bd Shell reserved words.  May also be specified  as
+                      k\bke\bey\byw\bwo\bor\brd\bd Shell  reserved words.  May also be specified as
                               -\b-k\bk.
                       r\bru\bun\bnn\bni\bin\bng\bg Names of running jobs, if job control is active.
                       s\bse\ber\brv\bvi\bic\bce\be Service names.  May also be specified as -\b-s\bs.
-                      s\bse\bet\bto\bop\bpt\bt  Valid  arguments  for  the  -\b-o\bo option to the s\bse\bet\bt
+                      s\bse\bet\bto\bop\bpt\bt  Valid arguments for the -\b-o\bo  option  to  the  s\bse\bet\bt
                               builtin.
-                      s\bsh\bho\bop\bpt\bt   Shell option names  as  accepted  by  the  s\bsh\bho\bop\bpt\bt
+                      s\bsh\bho\bop\bpt\bt   Shell  option  names  as  accepted  by the s\bsh\bho\bop\bpt\bt
                               builtin.
                       s\bsi\big\bgn\bna\bal\bl  Signal names.
                       s\bst\bto\bop\bpp\bpe\bed\bd Names of stopped jobs, if job control is active.
@@ -4855,198 +4852,198 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
                               Names of all shell variables.  May also be spec-
                               ified as -\b-v\bv.
               -\b-C\bC _\bc_\bo_\bm_\bm_\ba_\bn_\bd
-                      _\bc_\bo_\bm_\bm_\ba_\bn_\bis executed in a subshell environment,  and  its
-                      output  is  used as the possible completions.  Arguments
+                      _\bc_\bo_\bm_\bm_\ba_\bn_\b is  executed in a subshell environment, and its
+                      output is used as the possible  completions.   Arguments
                       are passed as with the -\b-F\bF option.
               -\b-F\bF _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn
-                      The shell function _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn is executed in  the  current
-                      shell  environment.   When the function is executed, the
+                      The  shell  function _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn is executed in the current
+                      shell environment.  When the function is  executed,  the
                       first argument ($\b$1\b1) is the name of the command whose ar-
                       guments are being completed, the second argument ($\b$2\b2) is
                       the word being completed, and the third argument ($\b$3\b3) is
-                      the  word preceding the word being completed on the cur-
-                      rent command line.  When it finishes, the possible  com-
-                      pletions  are  retrieved from the value of the C\bCO\bOM\bMP\bPR\bRE\bEP\bPL\bLY\bY
+                      the word preceding the word being completed on the  cur-
+                      rent  command line.  When it finishes, the possible com-
+                      pletions are retrieved from the value of  the  C\bCO\bOM\bMP\bPR\bRE\bEP\bPL\bLY\bY
                       array variable.
               -\b-G\bG _\bg_\bl_\bo_\bb_\bp_\ba_\bt
-                      The pathname expansion pattern _\bg_\bl_\bo_\bb_\bp_\ba_\bt  is  expanded  to
+                      The  pathname  expansion  pattern _\bg_\bl_\bo_\bb_\bp_\ba_\bt is expanded to
                       generate the possible completions.
               -\b-P\bP _\bp_\br_\be_\bf_\bi_\bx
-                      _\bp_\br_\be_\bf_\bi_\b is  added at the beginning of each possible com-
+                      _\bp_\br_\be_\bf_\bi_\bis added at the beginning of each  possible  com-
                       pletion after all other options have been applied.
               -\b-S\bS _\bs_\bu_\bf_\bf_\bi_\bx
                       _\bs_\bu_\bf_\bf_\bi_\bx is appended to each possible completion after all
                       other options have been applied.
               -\b-W\bW _\bw_\bo_\br_\bd_\bl_\bi_\bs_\bt
-                      The  _\bw_\bo_\br_\bd_\bl_\bi_\bs_\bt  is  split using the characters in the I\bIF\bFS\bS
-                      special variable as delimiters, and each resultant  word
-                      is  expanded.  Shell quoting is honored within _\bw_\bo_\br_\bd_\bl_\bi_\bs_\bt,
+                      The _\bw_\bo_\br_\bd_\bl_\bi_\bs_\bt is split using the characters  in  the  I\bIF\bFS\bS
+                      special  variable as delimiters, and each resultant word
+                      is expanded.  Shell quoting is honored within  _\bw_\bo_\br_\bd_\bl_\bi_\bs_\bt,
                       in order to provide a mechanism for the words to contain
-                      shell  metacharacters or characters in the value of I\bIF\bFS\bS.
-                      The possible completions are the members of  the  resul-
+                      shell metacharacters or characters in the value of  I\bIF\bFS\bS.
+                      The  possible  completions are the members of the resul-
                       tant list which match the word being completed.
               -\b-X\bX _\bf_\bi_\bl_\bt_\be_\br_\bp_\ba_\bt
-                      _\bf_\bi_\bl_\bt_\be_\br_\bp_\ba_\b is  a pattern as used for pathname expansion.
+                      _\bf_\bi_\bl_\bt_\be_\br_\bp_\ba_\bis a pattern as used for  pathname  expansion.
                       It is applied to the list of possible completions gener-
-                      ated  by  the  preceding options and arguments, and each
-                      completion matching _\bf_\bi_\bl_\bt_\be_\br_\bp_\ba_\bt is removed from the  list.
-                      A  leading  !\b!  in _\bf_\bi_\bl_\bt_\be_\br_\bp_\ba_\bt negates the pattern; in this
+                      ated by the preceding options and  arguments,  and  each
+                      completion  matching _\bf_\bi_\bl_\bt_\be_\br_\bp_\ba_\bt is removed from the list.
+                      A leading !\b! in _\bf_\bi_\bl_\bt_\be_\br_\bp_\ba_\bt negates the  pattern;  in  this
                       case, any completion not matching _\bf_\bi_\bl_\bt_\be_\br_\bp_\ba_\bt is removed.
 
-              The return value is true unless an invalid option  is  supplied,
+              The  return  value is true unless an invalid option is supplied,
               an option other than -\b-p\bp, -\b-r\br, -\b-D\bD, -\b-E\bE, or -\b-I\bI is supplied without a
-              _\bn_\ba_\bm_\bargument, an attempt is made to remove a completion  speci-
+              _\bn_\ba_\bm_\b argument, an attempt is made to remove a completion speci-
               fication for a _\bn_\ba_\bm_\be for which no specification exists, or an er-
               ror occurs adding a completion specification.
 
        c\bco\bom\bmp\bpo\bop\bpt\bt [-\b-o\bo _\bo_\bp_\bt_\bi_\bo_\bn] [-\b-D\bDE\bEI\bI] [+\b+o\bo _\bo_\bp_\bt_\bi_\bo_\bn] [_\bn_\ba_\bm_\be]
-              Modify completion options for each _\bn_\ba_\bm_\be  according  to  the  _\bo_\bp_\b-
+              Modify  completion  options  for  each _\bn_\ba_\bm_\be according to the _\bo_\bp_\b-
               _\bt_\bi_\bo_\bns, or for the currently-executing completion if no _\bn_\ba_\bm_\bes are
-              supplied.  If no _\bo_\bp_\bt_\bi_\bo_\bns are given, display the  completion  op-
-              tions  for  each  _\bn_\ba_\bm_\be  or the current completion.  The possible
-              values of _\bo_\bp_\bt_\bi_\bo_\bn are those valid for the  c\bco\bom\bmp\bpl\ble\bet\bte\be  builtin  de-
-              scribed  above.  The -\b-D\bD option indicates that other supplied op-
-              tions should apply to the ``default'' command  completion;  that
-              is,  completion  attempted  on a command for which no completion
+              supplied.   If  no _\bo_\bp_\bt_\bi_\bo_\bns are given, display the completion op-
+              tions for each _\bn_\ba_\bm_\be or the  current  completion.   The  possible
+              values  of  _\bo_\bp_\bt_\bi_\bo_\bn  are those valid for the c\bco\bom\bmp\bpl\ble\bet\bte\be builtin de-
+              scribed above.  The -\b-D\bD option indicates that other supplied  op-
+              tions  should  apply to the ``default'' command completion; that
+              is, completion attempted on a command for  which  no  completion
               has previously been defined.  The -\b-E\bE option indicates that other
-              supplied  options  should apply to ``empty'' command completion;
-              that is, completion attempted on a blank line.   The  -\b-I\b option
+              supplied options should apply to ``empty''  command  completion;
+              that  is,  completion  attempted on a blank line.  The -\b-I\bI option
               indicates that other supplied options should apply to completion
-              on the initial non-assignment word on the line, or after a  com-
-              mand  delimiter  such  as  ;\b; or |\b|, which is usually command name
+              on  the initial non-assignment word on the line, or after a com-
+              mand delimiter such as ;\b; or |\b|, which  is  usually  command  name
               completion.
 
-              The return value is true unless an invalid option  is  supplied,
+              The  return  value is true unless an invalid option is supplied,
               an attempt is made to modify the options for a _\bn_\ba_\bm_\be for which no
               completion specification exists, or an output error occurs.
 
        c\bco\bon\bnt\bti\bin\bnu\bue\be [_\bn]
               Resume the next iteration of the enclosing f\bfo\bor\br, w\bwh\bhi\bil\ble\be, u\bun\bnt\bti\bil\bl, or
-              s\bse\bel\ble\bec\bct\b loop.   If  _\bn  is specified, resume at the _\bnth enclosing
-              loop.  _\bn must be >= 1.  If _\bn is greater than the number  of  en-
-              closing  loops, the last enclosing loop (the ``top-level'' loop)
-              is resumed.  The return value is 0 unless _\bn is not greater  than
+              s\bse\bel\ble\bec\bct\bloop.  If _\bn is specified, resume  at  the  _\bnth  enclosing
+              loop.   _\bn  must be >= 1.  If _\bn is greater than the number of en-
+              closing loops, the last enclosing loop (the ``top-level''  loop)
+              is  resumed.  The return value is 0 unless _\bn is not greater than
               or equal to 1.
 
        d\bde\bec\bcl\bla\bar\bre\be [-\b-a\baA\bAf\bfF\bFg\bgi\biI\bIl\bln\bnr\brt\btu\bux\bx] [-\b-p\bp] [_\bn_\ba_\bm_\be[=_\bv_\ba_\bl_\bu_\be] ...]
        t\bty\byp\bpe\bes\bse\bet\bt [-\b-a\baA\bAf\bfF\bFg\bgi\biI\bIl\bln\bnr\brt\btu\bux\bx] [-\b-p\bp] [_\bn_\ba_\bm_\be[=_\bv_\ba_\bl_\bu_\be] ...]
-              Declare  variables and/or give them attributes.  If no _\bn_\ba_\bm_\bes are
-              given then display the values of variables.  The -\b-p\bp option  will
+              Declare variables and/or give them attributes.  If no _\bn_\ba_\bm_\bes  are
+              given  then display the values of variables.  The -\b-p\bp option will
               display the attributes and values of each _\bn_\ba_\bm_\be.  When -\b-p\bp is used
-              with _\bn_\ba_\bm_\be arguments, additional options, other than -\b-f\bf  and  -\b-F\bF,
-              are  ignored.   When  -\b-p\bp  is supplied without _\bn_\ba_\bm_\be arguments, it
-              will display the attributes and values of all  variables  having
+              with  _\bn_\ba_\bm_\be  arguments, additional options, other than -\b-f\bf and -\b-F\bF,
+              are ignored.  When -\b-p\bp is supplied  without  _\bn_\ba_\bm_\be  arguments,  it
+              will  display  the attributes and values of all variables having
               the attributes specified by the additional options.  If no other
-              options are supplied with  -\b-p\bp,  d\bde\bec\bcl\bla\bar\bre\be  will  display  the  at-
-              tributes  and values of all shell variables.  The -\b-f\bf option will
+              options  are  supplied  with  -\b-p\bp,  d\bde\bec\bcl\bla\bar\bre\be  will display the at-
+              tributes and values of all shell variables.  The -\b-f\bf option  will
               restrict the display to shell functions.  The -\b-F\bF option inhibits
-              the  display of function definitions; only the function name and
+              the display of function definitions; only the function name  and
               attributes are printed.  If the e\bex\bxt\btd\bde\beb\bbu\bug\bg shell option is enabled
-              using  s\bsh\bho\bop\bpt\bt,  the  source  file name and line number where each
-              _\bn_\ba_\bm_\bis defined are displayed as well.  The  -\b-F\bF  option  implies
+              using s\bsh\bho\bop\bpt\bt, the source file name and  line  number  where  each
+              _\bn_\ba_\bm_\b is  defined  are displayed as well.  The -\b-F\bF option implies
               -\b-f\bf.  The -\b-g\bg option forces variables to be created or modified at
               the global scope, even when d\bde\bec\bcl\bla\bar\bre\be is executed in a shell func-
-              tion.   It  is ignored in all other cases.  The -\b-I\bI option causes
-              local variables to inherit the attributes  (except  the  _\bn_\ba_\bm_\be_\br_\be_\bf
+              tion.  It is ignored in all other cases.  The -\b-I\bI  option  causes
+              local  variables  to  inherit the attributes (except the _\bn_\ba_\bm_\be_\br_\be_\bf
               attribute) and value of any existing variable with the same _\bn_\ba_\bm_\be
-              at a surrounding scope.  If there is no existing  variable,  the
+              at  a  surrounding scope.  If there is no existing variable, the
               local variable is initially unset.  The following options can be
-              used to restrict output to variables with the  specified  attri-
+              used  to  restrict output to variables with the specified attri-
               bute or to give variables attributes:
-              -\b-a\ba     Each  _\bn_\ba_\bm_\be  is  an  indexed  array  variable  (see A\bAr\brr\bra\bay\bys\bs
+              -\b-a\ba     Each _\bn_\ba_\bm_\be  is  an  indexed  array  variable  (see  A\bAr\brr\bra\bay\bys\bs
                      above).
-              -\b-A\bA     Each _\bn_\ba_\bm_\be is an associative array  variable  (see  A\bAr\brr\bra\bay\bys\bs
+              -\b-A\bA     Each  _\bn_\ba_\bm_\be  is  an associative array variable (see A\bAr\brr\bra\bay\bys\bs
                      above).
               -\b-f\bf     Use function names only.
               -\b-i\bi     The variable is treated as an integer; arithmetic evalua-
-                     tion (see A\bAR\bRI\bIT\bTH\bHM\bME\bET\bTI\bIC\bC E\bEV\bVA\bAL\bLU\bUA\bAT\bTI\bIO\bON\bN above) is performed  when
+                     tion  (see A\bAR\bRI\bIT\bTH\bHM\bME\bET\bTI\bIC\bC E\bEV\bVA\bAL\bLU\bUA\bAT\bTI\bIO\bON\bN above) is performed when
                      the variable is assigned a value.
-              -\b-l\bl     When  the  variable  is  assigned a value, all upper-case
-                     characters are converted to lower-case.   The  upper-case
+              -\b-l\bl     When the variable is assigned  a  value,  all  upper-case
+                     characters  are  converted to lower-case.  The upper-case
                      attribute is disabled.
-              -\b-n\bn     Give  each  _\bn_\ba_\bm_\be  the _\bn_\ba_\bm_\be_\br_\be_\bf attribute, making it a name
-                     reference to another variable.  That  other  variable  is
-                     defined  by  the  value of _\bn_\ba_\bm_\be.  All references, assign-
-                     ments, and attribute modifications to _\bn_\ba_\bm_\be, except  those
-                     using  or changing the -\b-n\bn attribute itself, are performed
-                     on the variable referenced by _\bn_\ba_\bm_\be's value.  The  nameref
+              -\b-n\bn     Give each _\bn_\ba_\bm_\be the _\bn_\ba_\bm_\be_\br_\be_\bf attribute, making  it  a  name
+                     reference  to  another  variable.  That other variable is
+                     defined by the value of _\bn_\ba_\bm_\be.   All  references,  assign-
+                     ments,  and attribute modifications to _\bn_\ba_\bm_\be, except those
+                     using or changing the -\b-n\bn attribute itself, are  performed
+                     on  the variable referenced by _\bn_\ba_\bm_\be's value.  The nameref
                      attribute cannot be applied to array variables.
               -\b-r\br     Make _\bn_\ba_\bm_\bes readonly.  These names cannot then be assigned
                      values by subsequent assignment statements or unset.
               -\b-t\bt     Give each _\bn_\ba_\bm_\be the _\bt_\br_\ba_\bc_\be attribute.  Traced functions in-
-                     herit  the D\bDE\bEB\bBU\bUG\bG and R\bRE\bET\bTU\bUR\bRN\bN traps from the calling shell.
+                     herit the D\bDE\bEB\bBU\bUG\bG and R\bRE\bET\bTU\bUR\bRN\bN traps from the calling  shell.
                      The trace attribute has no special meaning for variables.
-              -\b-u\bu     When the variable is assigned  a  value,  all  lower-case
-                     characters  are  converted to upper-case.  The lower-case
+              -\b-u\bu     When  the  variable  is  assigned a value, all lower-case
+                     characters are converted to upper-case.   The  lower-case
                      attribute is disabled.
-              -\b-x\bx     Mark _\bn_\ba_\bm_\bes for export to subsequent commands via the  en-
+              -\b-x\bx     Mark  _\bn_\ba_\bm_\bes for export to subsequent commands via the en-
                      vironment.
 
-              Using  `+'  instead of `-' turns off the attribute instead, with
-              the exceptions that +\b+a\ba and +\b+A\bA may not be used to  destroy  array
-              variables  and  +\b+r\br will not remove the readonly attribute.  When
+              Using `+' instead of `-' turns off the attribute  instead,  with
+              the  exceptions  that +\b+a\ba and +\b+A\bA may not be used to destroy array
+              variables and +\b+r\br will not remove the readonly  attribute.   When
               used in a function, d\bde\bec\bcl\bla\bar\bre\be and t\bty\byp\bpe\bes\bse\bet\bt make each _\bn_\ba_\bm_\be local, as
-              with  the l\blo\boc\bca\bal\bl command, unless the -\b-g\bg option is supplied.  If a
-              variable name is followed by =_\bv_\ba_\bl_\bu_\be, the value of  the  variable
-              is  set  to _\bv_\ba_\bl_\bu_\be.  When using -\b-a\ba or -\b-A\bA and the compound assign-
-              ment syntax to create array variables, additional attributes  do
-              not  take effect until subsequent assignments.  The return value
+              with the l\blo\boc\bca\bal\bl command, unless the -\b-g\bg option is supplied.  If  a
+              variable  name  is followed by =_\bv_\ba_\bl_\bu_\be, the value of the variable
+              is set to _\bv_\ba_\bl_\bu_\be.  When using -\b-a\ba or -\b-A\bA and the  compound  assign-
+              ment  syntax to create array variables, additional attributes do
+              not take effect until subsequent assignments.  The return  value
               is 0 unless an invalid option is encountered, an attempt is made
               to define a function using ``-f foo=bar'', an attempt is made to
               assign a value to a readonly variable, an attempt is made to as-
               sign a value to an array variable without using the compound as-
-              signment syntax (see A\bAr\brr\bra\bay\bys\bs above), one of the _\bn_\ba_\bm_\be_\bs  is  not  a
-              valid  shell variable name, an attempt is made to turn off read-
-              only status for a readonly variable, an attempt is made to  turn
+              signment  syntax  (see  A\bAr\brr\bra\bay\bys\bs above), one of the _\bn_\ba_\bm_\be_\bs is not a
+              valid shell variable name, an attempt is made to turn off  read-
+              only  status for a readonly variable, an attempt is made to turn
               off array status for an array variable, or an attempt is made to
               display a non-existent function with -\b-f\bf.
 
        d\bdi\bir\brs\bs [\b[-\b-c\bcl\blp\bpv\bv]\b] [\b[+\b+_\bn]\b] [\b[-\b-_\bn]\b]
-              Without options, displays the list of currently  remembered  di-
-              rectories.   The default display is on a single line with direc-
-              tory names separated by spaces.  Directories are  added  to  the
-              list  with  the  p\bpu\bus\bsh\bhd\bd command; the p\bpo\bop\bpd\bd command removes entries
+              Without  options,  displays the list of currently remembered di-
+              rectories.  The default display is on a single line with  direc-
+              tory  names  separated  by spaces.  Directories are added to the
+              list with the p\bpu\bus\bsh\bhd\bd command; the p\bpo\bop\bpd\bd  command  removes  entries
               from the list.  The current directory is always the first direc-
               tory in the stack.
-              -\b-c\bc     Clears  the  directory  stack  by deleting all of the en-
+              -\b-c\bc     Clears the directory stack by deleting  all  of  the  en-
                      tries.
-              -\b-l\bl     Produces a listing  using  full  pathnames;  the  default
+              -\b-l\bl     Produces  a  listing  using  full  pathnames; the default
                      listing format uses a tilde to denote the home directory.
               -\b-p\bp     Print the directory stack with one entry per line.
-              -\b-v\bv     Print  the  directory stack with one entry per line, pre-
+              -\b-v\bv     Print the directory stack with one entry per  line,  pre-
                      fixing each entry with its index in the stack.
               +\b+_\bn     Displays the _\bnth entry counting from the left of the list
                      shown by d\bdi\bir\brs\bs when invoked without options, starting with
                      zero.
-              -\b-_\bn     Displays the _\bnth entry counting from  the  right  of  the
+              -\b-_\bn     Displays  the  _\bnth  entry  counting from the right of the
                      list shown by d\bdi\bir\brs\bs when invoked without options, starting
                      with zero.
 
-              The return value is 0 unless an invalid option is supplied or  _\bn
+              The  return value is 0 unless an invalid option is supplied or _\bn
               indexes beyond the end of the directory stack.
 
        d\bdi\bis\bso\bow\bwn\bn [-\b-a\bar\br] [-\b-h\bh] [_\bj_\bo_\bb_\bs_\bp_\be_\bc ... | _\bp_\bi_\bd ... ]
-              Without  options,  remove  each _\bj_\bo_\bb_\bs_\bp_\be_\bc from the table of active
-              jobs.  If _\bj_\bo_\bb_\bs_\bp_\be_\bc is not present, and neither the -\b-a\ba nor the  -\b-r\br
-              option  is  supplied, the _\bc_\bu_\br_\br_\be_\bn_\bt _\bj_\bo_\bb is used.  If the -\b-h\bh option
-              is given, each _\bj_\bo_\bb_\bs_\bp_\be_\bc is not removed from  the  table,  but  is
-              marked  so  that  S\bSI\bIG\bGH\bHU\bUP\bP is not sent to the job if the shell re-
+              Without options, remove each _\bj_\bo_\bb_\bs_\bp_\be_\bc from the  table  of  active
+              jobs.   If _\bj_\bo_\bb_\bs_\bp_\be_\bc is not present, and neither the -\b-a\ba nor the -\b-r\br
+              option is supplied, the _\bc_\bu_\br_\br_\be_\bn_\bt _\bj_\bo_\bb is used.  If the  -\b-h\b option
+              is  given,  each  _\bj_\bo_\bb_\bs_\bp_\be_\bc  is not removed from the table, but is
+              marked so that S\bSI\bIG\bGH\bHU\bUP\bP is not sent to the job if  the  shell  re-
               ceives a S\bSI\bIG\bGH\bHU\bUP\bP.  If no _\bj_\bo_\bb_\bs_\bp_\be_\bc is supplied, the -\b-a\ba option means
-              to  remove or mark all jobs; the -\b-r\br option without a _\bj_\bo_\bb_\bs_\bp_\be_\bc ar-
+              to remove or mark all jobs; the -\b-r\br option without a _\bj_\bo_\bb_\bs_\bp_\be_\b ar-
               gument restricts operation to running jobs.  The return value is
               0 unless a _\bj_\bo_\bb_\bs_\bp_\be_\bc does not specify a valid job.
 
        e\bec\bch\bho\bo [-\b-n\bne\beE\bE] [_\ba_\br_\bg ...]
-              Output  the  _\ba_\br_\bgs,  separated  by spaces, followed by a newline.
-              The return status is 0 unless a write error occurs.   If  -\b-n\b is
+              Output the _\ba_\br_\bgs, separated by spaces,  followed  by  a  newline.
+              The  return  status  is 0 unless a write error occurs.  If -\b-n\bn is
               specified, the trailing newline is suppressed.  If the -\b-e\be option
-              is given,  interpretation  of  the  following  backslash-escaped
-              characters  is  enabled.  The -\b-E\bE option disables the interpreta-
-              tion of these escape characters, even on systems where they  are
-              interpreted  by  default.  The x\bxp\bpg\bg_\b_e\bec\bch\bho\bo shell option may be used
-              to dynamically determine whether or not e\bec\bch\bho\bo expands  these  es-
-              cape  characters by default.  e\bec\bch\bho\bo does not interpret -\b--\b- to mean
-              the end of options.  e\bec\bch\bho\bo interprets the  following  escape  se-
+              is  given,  interpretation  of  the  following backslash-escaped
+              characters is enabled.  The -\b-E\bE option disables  the  interpreta-
+              tion  of these escape characters, even on systems where they are
+              interpreted by default.  The x\bxp\bpg\bg_\b_e\bec\bch\bho\bo shell option may  be  used
+              to  dynamically  determine whether or not e\bec\bch\bho\bo expands these es-
+              cape characters by default.  e\bec\bch\bho\bo does not interpret -\b--\b- to  mean
+              the  end  of  options.  e\bec\bch\bho\bo interprets the following escape se-
               quences:
               \\b\a\ba     alert (bell)
               \\b\b\bb     backspace
@@ -5059,202 +5056,202 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
               \\b\t\bt     horizontal tab
               \\b\v\bv     vertical tab
               \\b\\\b\     backslash
-              \\b\0\b0_\bn_\bn_\bn  the  eight-bit  character  whose value is the octal value
+              \\b\0\b0_\bn_\bn_\bn  the eight-bit character whose value is  the  octal  value
                      _\bn_\bn_\bn (zero to three octal digits)
-              \\b\x\bx_\bH_\bH   the eight-bit character whose value  is  the  hexadecimal
+              \\b\x\bx_\bH_\bH   the  eight-bit  character  whose value is the hexadecimal
                      value _\bH_\bH (one or two hex digits)
-              \\b\u\bu_\bH_\bH_\bH_\bH the  Unicode (ISO/IEC 10646) character whose value is the
+              \\b\u\bu_\bH_\bH_\bH_\bH the Unicode (ISO/IEC 10646) character whose value is  the
                      hexadecimal value _\bH_\bH_\bH_\bH (one to four hex digits)
               \\b\U\bU_\bH_\bH_\bH_\bH_\bH_\bH_\bH_\bH
-                     the Unicode (ISO/IEC 10646) character whose value is  the
+                     the  Unicode (ISO/IEC 10646) character whose value is the
                      hexadecimal value _\bH_\bH_\bH_\bH_\bH_\bH_\bH_\bH (one to eight hex digits)
 
        e\ben\bna\bab\bbl\ble\be [-\b-a\ba] [-\b-d\bdn\bnp\bps\bs] [-\b-f\bf _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be] [_\bn_\ba_\bm_\be ...]
-              Enable  and disable builtin shell commands.  Disabling a builtin
+              Enable and disable builtin shell commands.  Disabling a  builtin
               allows a disk command which has the same name as a shell builtin
-              to  be  executed without specifying a full pathname, even though
-              the shell normally searches for builtins before  disk  commands.
-              If  -\b-n\bn  is used, each _\bn_\ba_\bm_\be is disabled; otherwise, _\bn_\ba_\bm_\be_\bs are en-
-              abled.  For example, to use the t\bte\bes\bst\bt binary found via  the  P\bPA\bAT\bTH\bH
-              instead  of  the  shell builtin version, run ``enable -n test''.
-              The -\b-f\bf option means to load the new builtin  command  _\bn_\ba_\bm_\b from
+              to be executed without specifying a full pathname,  even  though
+              the  shell  normally searches for builtins before disk commands.
+              If -\b-n\bn is used, each _\bn_\ba_\bm_\be is disabled; otherwise, _\bn_\ba_\bm_\be_\bs  are  en-
+              abled.   For  example, to use the t\bte\bes\bst\bt binary found via the P\bPA\bAT\bTH\bH
+              instead of the shell builtin version, run  ``enable  -n  test''.
+              The  -\b-f\bf  option  means to load the new builtin command _\bn_\ba_\bm_\be from
               shared object _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be, on systems that support dynamic loading.
               Bash will use the value of the B\bBA\bAS\bSH\bH_\b_L\bLO\bOA\bAD\bDA\bAB\bBL\bLE\bES\bS_\b_P\bPA\bAT\bTH\bH variable as a
               colon-separated list of directories in which to search for _\bf_\bi_\bl_\be_\b-
-              _\bn_\ba_\bm_\be.  The default is  system-dependent.   The  -\b-d\bd  option  will
-              delete  a  builtin  previously loaded with -\b-f\bf.  If no _\bn_\ba_\bm_\be argu-
-              ments are given, or if the -\b-p\bp option  is  supplied,  a  list  of
-              shell  builtins is printed.  With no other option arguments, the
+              _\bn_\ba_\bm_\be.   The  default  is  system-dependent.   The -\b-d\bd option will
+              delete a builtin previously loaded with -\b-f\bf.  If  no  _\bn_\ba_\bm_\b argu-
+              ments  are  given,  or  if  the -\b-p\bp option is supplied, a list of
+              shell builtins is printed.  With no other option arguments,  the
               list consists of all enabled shell builtins.  If -\b-n\bn is supplied,
               only disabled builtins are printed.  If -\b-a\ba is supplied, the list
-              printed includes all builtins, with an indication of whether  or
-              not  each  is  enabled.   If  -\b-s\bs  is supplied, the output is re-
-              stricted to the POSIX _\bs_\bp_\be_\bc_\bi_\ba_\bl builtins.  If no options are  sup-
-              plied  and a _\bn_\ba_\bm_\be is not a shell builtin, e\ben\bna\bab\bbl\ble\be will attempt to
-              load _\bn_\ba_\bm_\be from a shared object named _\bn_\ba_\bm_\be,  as  if  the  command
-              were  ``enable  -f  _\bn_\ba_\bm_\be  _\bn_\ba_\bm_\be .  The return value is 0 unless a
-              _\bn_\ba_\bm_\bis not a shell builtin or there is an error loading  a  new
+              printed  includes all builtins, with an indication of whether or
+              not each is enabled.  If -\b-s\bs  is  supplied,  the  output  is  re-
+              stricted  to the POSIX _\bs_\bp_\be_\bc_\bi_\ba_\bl builtins.  If no options are sup-
+              plied and a _\bn_\ba_\bm_\be is not a shell builtin, e\ben\bna\bab\bbl\ble\be will attempt  to
+              load  _\bn_\ba_\bm_\be  from  a  shared object named _\bn_\ba_\bm_\be, as if the command
+              were ``enable -f _\bn_\ba_\bm_\be _\bn_\ba_\bm_\be .  The return value  is  0  unless  a
+              _\bn_\ba_\bm_\b is  not a shell builtin or there is an error loading a new
               builtin from a shared object.
 
        e\bev\bva\bal\bl [_\ba_\br_\bg ...]
-              The  _\ba_\br_\bgs  are read and concatenated together into a single com-
-              mand.  This command is then read and executed by the shell,  and
-              its  exit status is returned as the value of e\bev\bva\bal\bl.  If there are
+              The _\ba_\br_\bgs are read and concatenated together into a  single  com-
+              mand.   This command is then read and executed by the shell, and
+              its exit status is returned as the value of e\bev\bva\bal\bl.  If there  are
               no _\ba_\br_\bg_\bs, or only null arguments, e\bev\bva\bal\bl returns 0.
 
        e\bex\bxe\bec\bc [-\b-c\bcl\bl] [-\b-a\ba _\bn_\ba_\bm_\be] [_\bc_\bo_\bm_\bm_\ba_\bn_\bd [_\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs]]
-              If _\bc_\bo_\bm_\bm_\ba_\bn_\bd is specified, it replaces the shell.  No new  process
-              is  created.  The _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs become the arguments to _\bc_\bo_\bm_\bm_\ba_\bn_\bd.  If
+              If  _\bc_\bo_\bm_\bm_\ba_\bn_\bd is specified, it replaces the shell.  No new process
+              is created.  The _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs become the arguments to _\bc_\bo_\bm_\bm_\ba_\bn_\bd.   If
               the -\b-l\bl option is supplied, the shell places a dash at the begin-
               ning of the zeroth argument passed to _\bc_\bo_\bm_\bm_\ba_\bn_\bd.  This is what _\bl_\bo_\b-
-              _\bg_\bi_\bn(1) does.  The -\b-c\bc option causes _\bc_\bo_\bm_\bm_\ba_\bn_\bd to be  executed  with
-              an  empty environment.  If -\b-a\ba is supplied, the shell passes _\bn_\ba_\bm_\be
+              _\bg_\bi_\bn(1)  does.   The -\b-c\bc option causes _\bc_\bo_\bm_\bm_\ba_\bn_\bd to be executed with
+              an empty environment.  If -\b-a\ba is supplied, the shell passes  _\bn_\ba_\bm_\be
               as the zeroth argument to the executed command.  If _\bc_\bo_\bm_\bm_\ba_\bn_\bd can-
-              not  be executed for some reason, a non-interactive shell exits,
-              unless the e\bex\bxe\bec\bcf\bfa\bai\bil\bl shell option is enabled.  In that  case,  it
-              returns  failure.   An  interactive shell returns failure if the
-              file cannot be executed.  A subshell  exits  unconditionally  if
-              e\bex\bxe\bec\b fails.  If _\bc_\bo_\bm_\bm_\ba_\bn_\bd is not specified, any redirections take
-              effect in the current shell, and the return  status  is  0.   If
+              not be executed for some reason, a non-interactive shell  exits,
+              unless  the  e\bex\bxe\bec\bcf\bfa\bai\bil\bl shell option is enabled.  In that case, it
+              returns failure.  An interactive shell returns  failure  if  the
+              file  cannot  be  executed.  A subshell exits unconditionally if
+              e\bex\bxe\bec\bfails.  If _\bc_\bo_\bm_\bm_\ba_\bn_\bd is not specified, any redirections  take
+              effect  in  the  current  shell, and the return status is 0.  If
               there is a redirection error, the return status is 1.
 
        e\bex\bxi\bit\bt [_\bn]
-              Cause  the  shell  to exit with a status of _\bn.  If _\bn is omitted,
+              Cause the shell to exit with a status of _\bn.  If  _\bn  is  omitted,
               the exit status is that of the last command executed.  A trap on
               E\bEX\bXI\bIT\bT is executed before the shell terminates.
 
        e\bex\bxp\bpo\bor\brt\bt [-\b-f\bfn\bn] [_\bn_\ba_\bm_\be[=_\bw_\bo_\br_\bd]] ...
        e\bex\bxp\bpo\bor\brt\bt -\b-p\bp
-              The  supplied _\bn_\ba_\bm_\be_\bs are marked for automatic export to the envi-
-              ronment of subsequently executed commands.  If the -\b-f\bf option  is
-              given,  the _\bn_\ba_\bm_\be_\bs refer to functions.  If no _\bn_\ba_\bm_\be_\bs are given, or
-              if the -\b-p\bp option is supplied, a list of names  of  all  exported
-              variables  is printed.  The -\b-n\bn option causes the export property
+              The supplied _\bn_\ba_\bm_\be_\bs are marked for automatic export to the  envi-
+              ronment  of subsequently executed commands.  If the -\b-f\bf option is
+              given, the _\bn_\ba_\bm_\be_\bs refer to functions.  If no _\bn_\ba_\bm_\be_\bs are given,  or
+              if  the  -\b-p\bp  option is supplied, a list of names of all exported
+              variables is printed.  The -\b-n\bn option causes the export  property
               to be removed from each _\bn_\ba_\bm_\be.  If a variable name is followed by
               =_\bw_\bo_\br_\bd, the value of the variable is set to _\bw_\bo_\br_\bd.  e\bex\bxp\bpo\bor\brt\bt returns
               an exit status of 0 unless an invalid option is encountered, one
-              of  the  _\bn_\ba_\bm_\be_\bs is not a valid shell variable name, or -\b-f\bf is sup-
+              of the _\bn_\ba_\bm_\be_\bs is not a valid shell variable name, or -\b-f\bf  is  sup-
               plied with a _\bn_\ba_\bm_\be that is not a function.
 
        f\bfa\bal\bls\bse\be  Does nothing, returns a non-zero status.
 
        f\bfc\bc [-\b-e\be _\be_\bn_\ba_\bm_\be] [-\b-l\bln\bnr\br] [_\bf_\bi_\br_\bs_\bt] [_\bl_\ba_\bs_\bt]
        f\bfc\bc -\b-s\bs [_\bp_\ba_\bt=_\br_\be_\bp] [_\bc_\bm_\bd]
-              The first form selects a range of commands from  _\bf_\bi_\br_\bs_\bt  to  _\bl_\ba_\bs_\bt
-              from  the  history  list  and  displays or edits and re-executes
-              them.  _\bF_\bi_\br_\bs_\bt and _\bl_\ba_\bs_\bt may be specified as a  string  (to  locate
-              the  last command beginning with that string) or as a number (an
-              index into the history list, where a negative number is used  as
-              an  offset  from  the  current command number).  When listing, a
-              _\bf_\bi_\br_\bs_\bor _\bl_\ba_\bs_\bt of 0 is equivalent to -1 and -0 is  equivalent  to
-              the  current  command  (usually  the f\bfc\bc command); otherwise 0 is
-              equivalent to -1 and -0 is invalid.  If _\bl_\ba_\bs_\bt is  not  specified,
-              it  is  set  to the current command for listing (so that ``fc -l
-              -10'' prints the last 10 commands) and to _\bf_\bi_\br_\bs_\bt  otherwise.   If
-              _\bf_\bi_\br_\bs_\b is  not  specified, it is set to the previous command for
+              The  first  form  selects a range of commands from _\bf_\bi_\br_\bs_\bt to _\bl_\ba_\bs_\bt
+              from the history list and  displays  or  edits  and  re-executes
+              them.   _\bF_\bi_\br_\bs_\bt  and  _\bl_\ba_\bs_\bt may be specified as a string (to locate
+              the last command beginning with that string) or as a number  (an
+              index  into the history list, where a negative number is used as
+              an offset from the current command  number).   When  listing,  a
+              _\bf_\bi_\br_\bs_\b or  _\bl_\ba_\bs_\bt of 0 is equivalent to -1 and -0 is equivalent to
+              the current command (usually the f\bfc\bc  command);  otherwise  0  is
+              equivalent  to  -1 and -0 is invalid.  If _\bl_\ba_\bs_\bt is not specified,
+              it is set to the current command for listing (so  that  ``fc  -l
+              -10''  prints  the last 10 commands) and to _\bf_\bi_\br_\bs_\bt otherwise.  If
+              _\bf_\bi_\br_\bs_\bis not specified, it is set to the  previous  command  for
               editing and -16 for listing.
 
-              The -\b-n\bn option suppresses the command numbers when listing.   The
-              -\b-r\b option reverses the order of the commands.  If the -\b-l\bl option
-              is given, the commands are listed on  standard  output.   Other-
-              wise,  the editor given by _\be_\bn_\ba_\bm_\be is invoked on a file containing
-              those commands.  If _\be_\bn_\ba_\bm_\be is not given, the value of the  F\bFC\bCE\bED\bDI\bIT\bT
-              variable  is used, and the value of E\bED\bDI\bIT\bTO\bOR\bR if F\bFC\bCE\bED\bDI\bIT\bT is not set.
-              If neither variable is set, _\bv_\bi is used.  When  editing  is  com-
+              The  -\b-n\bn option suppresses the command numbers when listing.  The
+              -\b-r\boption reverses the order of the commands.  If the -\b-l\b option
+              is  given,  the  commands are listed on standard output.  Other-
+              wise, the editor given by _\be_\bn_\ba_\bm_\be is invoked on a file  containing
+              those  commands.  If _\be_\bn_\ba_\bm_\be is not given, the value of the F\bFC\bCE\bED\bDI\bIT\bT
+              variable is used, and the value of E\bED\bDI\bIT\bTO\bOR\bR if F\bFC\bCE\bED\bDI\bIT\bT is not  set.
+              If  neither  variable  is set, _\bv_\bi is used.  When editing is com-
               plete, the edited commands are echoed and executed.
 
-              In  the  second form, _\bc_\bo_\bm_\bm_\ba_\bn_\bd is re-executed after each instance
-              of _\bp_\ba_\bt is replaced by _\br_\be_\bp.  _\bC_\bo_\bm_\bm_\ba_\bn_\bd is interpreted the  same  as
-              _\bf_\bi_\br_\bs_\b above.  A useful alias to use with this is ``r="fc -s"'',
-              so that typing ``r cc'' runs the  last  command  beginning  with
+              In the second form, _\bc_\bo_\bm_\bm_\ba_\bn_\bd is re-executed after  each  instance
+              of  _\bp_\ba_\bt  is replaced by _\br_\be_\bp.  _\bC_\bo_\bm_\bm_\ba_\bn_\bd is interpreted the same as
+              _\bf_\bi_\br_\bs_\babove.  A useful alias to use with this is ``r="fc  -s"'',
+              so  that  typing  ``r  cc'' runs the last command beginning with
               ``cc'' and typing ``r'' re-executes the last command.
 
-              If  the  first form is used, the return value is 0 unless an in-
-              valid option is encountered or _\bf_\bi_\br_\bs_\bt  or  _\bl_\ba_\bs_\bt  specify  history
-              lines  out  of  range.  If the -\b-e\be option is supplied, the return
+              If the first form is used, the return value is 0 unless  an  in-
+              valid  option  is  encountered  or _\bf_\bi_\br_\bs_\bt or _\bl_\ba_\bs_\bt specify history
+              lines out of range.  If the -\b-e\be option is  supplied,  the  return
               value is the value of the last command executed or failure if an
               error occurs with the temporary file of commands.  If the second
-              form is used, the return status is that of the  command  re-exe-
-              cuted,  unless  _\bc_\bm_\bd  does  not  specify a valid history line, in
+              form  is  used, the return status is that of the command re-exe-
+              cuted, unless _\bc_\bm_\bd does not specify  a  valid  history  line,  in
               which case f\bfc\bc returns failure.
 
        f\bfg\bg [_\bj_\bo_\bb_\bs_\bp_\be_\bc]
-              Resume _\bj_\bo_\bb_\bs_\bp_\be_\bc in the foreground, and make it the  current  job.
+              Resume  _\bj_\bo_\bb_\bs_\bp_\be_\bc  in the foreground, and make it the current job.
               If _\bj_\bo_\bb_\bs_\bp_\be_\bc is not present, the shell's notion of the _\bc_\bu_\br_\br_\be_\bn_\bt _\bj_\bo_\bb
-              is used.  The return value is that of the  command  placed  into
-              the  foreground,  or failure if run when job control is disabled
+              is  used.   The  return value is that of the command placed into
+              the foreground, or failure if run when job control  is  disabled
               or, when run with job control enabled, if _\bj_\bo_\bb_\bs_\bp_\be_\bc does not spec-
-              ify  a  valid  job  or  _\bj_\bo_\bb_\bs_\bp_\be_\bc specifies a job that was started
+              ify a valid job or _\bj_\bo_\bb_\bs_\bp_\be_\bc specifies  a  job  that  was  started
               without job control.
 
        g\bge\bet\bto\bop\bpt\bts\bs _\bo_\bp_\bt_\bs_\bt_\br_\bi_\bn_\bg _\bn_\ba_\bm_\be [_\ba_\br_\bg _\b._\b._\b.]
-              g\bge\bet\bto\bop\bpt\bts\bis used by shell procedures to parse positional  parame-
-              ters.   _\bo_\bp_\bt_\bs_\bt_\br_\bi_\bn_\bg  contains  the  option characters to be recog-
-              nized; if a character is followed by a colon, the option is  ex-
+              g\bge\bet\bto\bop\bpt\bts\b is used by shell procedures to parse positional parame-
+              ters.  _\bo_\bp_\bt_\bs_\bt_\br_\bi_\bn_\bg contains the option  characters  to  be  recog-
+              nized;  if a character is followed by a colon, the option is ex-
               pected to have an argument, which should be separated from it by
-              white space.  The colon and question mark characters may not  be
-              used  as  option  characters.   Each time it is invoked, g\bge\bet\bto\bop\bpt\bts\bs
-              places the next option in the shell variable _\bn_\ba_\bm_\be,  initializing
+              white  space.  The colon and question mark characters may not be
+              used as option characters.  Each time  it  is  invoked,  g\bge\bet\bto\bop\bpt\bts\bs
+              places  the next option in the shell variable _\bn_\ba_\bm_\be, initializing
               _\bn_\ba_\bm_\be if it does not exist, and the index of the next argument to
               be processed into the variable O\bOP\bPT\bTI\bIN\bND\bD.  O\bOP\bPT\bTI\bIN\bND\bD is initialized to
               1 each time the shell or a shell script is invoked.  When an op-
               tion requires an argument, g\bge\bet\bto\bop\bpt\bts\bs places that argument into the
               variable O\bOP\bPT\bTA\bAR\bRG\bG.  The shell does not reset O\bOP\bPT\bTI\bIN\bND\bD automatically;
-              it must be manually reset  between  multiple  calls  to  g\bge\bet\bto\bop\bpt\bts\bs
-              within  the  same shell invocation if a new set of parameters is
+              it  must  be  manually  reset  between multiple calls to g\bge\bet\bto\bop\bpt\bts\bs
+              within the same shell invocation if a new set of  parameters  is
               to be used.
 
               When the end of options is encountered, g\bge\bet\bto\bop\bpt\bts\bs exits with a re-
               turn value greater than zero.  O\bOP\bPT\bTI\bIN\bND\bD is set to the index of the
               first non-option argument, and _\bn_\ba_\bm_\be is set to ?.
 
-              g\bge\bet\bto\bop\bpt\bts\bnormally parses the positional parameters, but  if  more
-              arguments  are  supplied as _\ba_\br_\bg values, g\bge\bet\bto\bop\bpt\bts\bs parses those in-
+              g\bge\bet\bto\bop\bpt\bts\b normally  parses the positional parameters, but if more
+              arguments are supplied as _\ba_\br_\bg values, g\bge\bet\bto\bop\bpt\bts\bs parses  those  in-
               stead.
 
-              g\bge\bet\bto\bop\bpt\bts\bcan report errors in two ways.  If the  first  character
-              of  _\bo_\bp_\bt_\bs_\bt_\br_\bi_\bn_\bg  is  a  colon, _\bs_\bi_\bl_\be_\bn_\bt error reporting is used.  In
-              normal operation, diagnostic messages are printed  when  invalid
-              options  or  missing  option  arguments are encountered.  If the
-              variable O\bOP\bPT\bTE\bER\bRR\bR is set to 0, no  error  messages  will  be  dis-
+              g\bge\bet\bto\bop\bpt\bts\b can  report errors in two ways.  If the first character
+              of _\bo_\bp_\bt_\bs_\bt_\br_\bi_\bn_\bg is a colon, _\bs_\bi_\bl_\be_\bn_\bt error  reporting  is  used.   In
+              normal  operation,  diagnostic messages are printed when invalid
+              options or missing option arguments  are  encountered.   If  the
+              variable  O\bOP\bPT\bTE\bER\bRR\bR  is  set  to  0, no error messages will be dis-
               played, even if the first character of _\bo_\bp_\bt_\bs_\bt_\br_\bi_\bn_\bg is not a colon.
 
               If an invalid option is seen, g\bge\bet\bto\bop\bpt\bts\bs places ? into _\bn_\ba_\bm_\be and, if
-              not silent, prints an  error  message  and  unsets  O\bOP\bPT\bTA\bAR\bRG\bG.   If
-              g\bge\bet\bto\bop\bpt\bts\b is  silent, the option character found is placed in O\bOP\bP-\b-
+              not  silent,  prints  an  error  message  and unsets O\bOP\bPT\bTA\bAR\bRG\bG.  If
+              g\bge\bet\bto\bop\bpt\bts\bis silent, the option character found is placed  in  O\bOP\bP-\b-
               T\bTA\bAR\bRG\bG and no diagnostic message is printed.
 
-              If a required argument is not found, and g\bge\bet\bto\bop\bpt\bts\bs is not  silent,
-              a  question  mark  (?\b?) is placed in _\bn_\ba_\bm_\be, O\bOP\bPT\bTA\bAR\bRG\bG is unset, and a
-              diagnostic message is printed.  If g\bge\bet\bto\bop\bpt\bts\bs  is  silent,  then  a
-              colon  (:\b:)  is  placed  in  _\bn_\ba_\bm_\be and O\bOP\bPT\bTA\bAR\bRG\bG is set to the option
+              If  a required argument is not found, and g\bge\bet\bto\bop\bpt\bts\bs is not silent,
+              a question mark (?\b?) is placed in _\bn_\ba_\bm_\be, O\bOP\bPT\bTA\bAR\bRG\bG is  unset,  and  a
+              diagnostic  message  is  printed.   If g\bge\bet\bto\bop\bpt\bts\bs is silent, then a
+              colon (:\b:) is placed in _\bn_\ba_\bm_\be and O\bOP\bPT\bTA\bAR\bRG\bG  is  set  to  the  option
               character found.
 
-              g\bge\bet\bto\bop\bpt\bts\breturns true if an option, specified or unspecified,  is
+              g\bge\bet\bto\bop\bpt\bts\b returns true if an option, specified or unspecified, is
               found.  It returns false if the end of options is encountered or
               an error occurs.
 
        h\bha\bas\bsh\bh [-\b-l\blr\br] [-\b-p\bp _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be] [-\b-d\bdt\bt] [_\bn_\ba_\bm_\be]
               Each time h\bha\bas\bsh\bh is invoked, the full pathname of the command _\bn_\ba_\bm_\be
-              is  determined  by searching the directories in $\b$P\bPA\bAT\bTH\bH and remem-
+              is determined by searching the directories in $\b$P\bPA\bAT\bTH\bH  and  remem-
               bered.  Any previously-remembered pathname is discarded.  If the
               -\b-p\bp option is supplied, no path search is performed, and _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be
-              is used as the full filename of  the  command.   The  -\b-r\b option
+              is  used  as  the  full  filename of the command.  The -\b-r\br option
               causes the shell to forget all remembered locations.  The -\b-d\bd op-
-              tion causes the shell to forget the remembered location of  each
-              _\bn_\ba_\bm_\be.   If the -\b-t\bt option is supplied, the full pathname to which
-              each _\bn_\ba_\bm_\be corresponds is printed.  If  multiple  _\bn_\ba_\bm_\b arguments
+              tion  causes the shell to forget the remembered location of each
+              _\bn_\ba_\bm_\be.  If the -\b-t\bt option is supplied, the full pathname to  which
+              each  _\bn_\ba_\bm_\be  corresponds  is printed.  If multiple _\bn_\ba_\bm_\be arguments
               are supplied with -\b-t\bt, the _\bn_\ba_\bm_\be is printed before the hashed full
               pathname.  The -\b-l\bl option causes output to be displayed in a for-
-              mat  that may be reused as input.  If no arguments are given, or
+              mat that may be reused as input.  If no arguments are given,  or
               if only -\b-l\bl is supplied, information about remembered commands is
-              printed.   The  return status is true unless a _\bn_\ba_\bm_\be is not found
+              printed.  The return status is true unless a _\bn_\ba_\bm_\be is  not  found
               or an invalid option is supplied.
 
        h\bhe\bel\blp\bp [-\b-d\bdm\bms\bs] [_\bp_\ba_\bt_\bt_\be_\br_\bn]
-              Display helpful information about builtin commands.  If  _\bp_\ba_\bt_\bt_\be_\br_\bn
-              is  specified, h\bhe\bel\blp\bp gives detailed help on all commands matching
-              _\bp_\ba_\bt_\bt_\be_\br_\bn; otherwise help for all the builtins and  shell  control
+              Display  helpful information about builtin commands.  If _\bp_\ba_\bt_\bt_\be_\br_\bn
+              is specified, h\bhe\bel\blp\bp gives detailed help on all commands  matching
+              _\bp_\ba_\bt_\bt_\be_\br_\bn;  otherwise  help for all the builtins and shell control
               structures is printed.
               -\b-d\bd     Display a short description of each _\bp_\ba_\bt_\bt_\be_\br_\bn
               -\b-m\bm     Display the description of each _\bp_\ba_\bt_\bt_\be_\br_\bn in a manpage-like
@@ -5272,54 +5269,54 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
        h\bhi\bis\bst\bto\bor\bry\by -\b-s\bs _\ba_\br_\bg [_\ba_\br_\bg _\b._\b._\b.]
               With no options, display the command history list with line num-
               bers.  Lines listed with a *\b* have been modified.  An argument of
-              _\blists only the last _\bn lines.  If the shell variable  H\bHI\bIS\bST\bTT\bTI\bIM\bME\bE-\b-
-              F\bFO\bOR\bRM\bMA\bAT\b is  set  and not null, it is used as a format string for
-              _\bs_\bt_\br_\bf_\bt_\bi_\bm_\be(3) to display the time stamp associated with each  dis-
-              played  history  entry.  No intervening blank is printed between
-              the formatted time stamp and the history line.  If  _\bf_\bi_\bl_\be_\bn_\ba_\bm_\b is
-              supplied,  it  is  used as the name of the history file; if not,
-              the value of H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE is used.  Options, if supplied,  have  the
+              _\b lists only the last _\bn lines.  If the shell variable H\bHI\bIS\bST\bTT\bTI\bIM\bME\bE-\b-
+              F\bFO\bOR\bRM\bMA\bAT\bis set and not null, it is used as a  format  string  for
+              _\bs_\bt_\br_\bf_\bt_\bi_\bm_\be(3)  to display the time stamp associated with each dis-
+              played history entry.  No intervening blank is  printed  between
+              the  formatted  time stamp and the history line.  If _\bf_\bi_\bl_\be_\bn_\ba_\bm_\be is
+              supplied, it is used as the name of the history  file;  if  not,
+              the  value  of H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE is used.  Options, if supplied, have the
               following meanings:
               -\b-c\bc     Clear the history list by deleting all the entries.
               -\b-d\bd _\bo_\bf_\bf_\bs_\be_\bt
-                     Delete  the  history entry at position _\bo_\bf_\bf_\bs_\be_\bt.  If _\bo_\bf_\bf_\bs_\be_\bt
+                     Delete the history entry at position _\bo_\bf_\bf_\bs_\be_\bt.   If  _\bo_\bf_\bf_\bs_\be_\bt
                      is negative, it is interpreted as relative to one greater
                      than the last history position, so negative indices count
-                     back from the end of the history,  and  an  index  of  -1
+                     back  from  the  end  of  the history, and an index of -1
                      refers to the current h\bhi\bis\bst\bto\bor\bry\by -\b-d\bd command.
               -\b-d\bd _\bs_\bt_\ba_\br_\bt-_\be_\bn_\bd
-                     Delete  the  range  of  history entries between positions
-                     _\bs_\bt_\ba_\br_\band _\be_\bn_\bd, inclusive.  Positive and  negative  values
+                     Delete the range of  history  entries  between  positions
+                     _\bs_\bt_\ba_\br_\b and  _\be_\bn_\bd, inclusive.  Positive and negative values
                      for _\bs_\bt_\ba_\br_\bt and _\be_\bn_\bd are interpreted as described above.
-              -\b-a\ba     Append  the  ``new''  history  lines to the history file.
-                     These are history lines entered since  the  beginning  of
+              -\b-a\ba     Append the ``new'' history lines  to  the  history  file.
+                     These  are  history  lines entered since the beginning of
                      the current b\bba\bas\bsh\bh session, but not already appended to the
                      history file.
-              -\b-n\bn     Read the history lines not already read from the  history
-                     file  into the current history list.  These are lines ap-
-                     pended to the history file since  the  beginning  of  the
+              -\b-n\bn     Read  the history lines not already read from the history
+                     file into the current history list.  These are lines  ap-
+                     pended  to  the  history  file since the beginning of the
                      current b\bba\bas\bsh\bh session.
-              -\b-r\br     Read  the contents of the history file and append them to
+              -\b-r\br     Read the contents of the history file and append them  to
                      the current history list.
               -\b-w\bw     Write the current history list to the history file, over-
                      writing the history file's contents.
-              -\b-p\bp     Perform  history  substitution  on the following _\ba_\br_\bg_\bs and
-                     display the result on  the  standard  output.   Does  not
-                     store  the results in the history list.  Each _\ba_\br_\bg must be
+              -\b-p\bp     Perform history substitution on the  following  _\ba_\br_\bg_\b and
+                     display  the  result  on  the  standard output.  Does not
+                     store the results in the history list.  Each _\ba_\br_\bg must  be
                      quoted to disable normal history expansion.
-              -\b-s\bs     Store the _\ba_\br_\bg_\bs in the history list  as  a  single  entry.
-                     The  last  command  in the history list is removed before
+              -\b-s\bs     Store  the  _\ba_\br_\bg_\bs  in  the history list as a single entry.
+                     The last command in the history list  is  removed  before
                      the _\ba_\br_\bg_\bs are added.
 
-              If the H\bHI\bIS\bST\bTT\bTI\bIM\bME\bEF\bFO\bOR\bRM\bMA\bAT\bT variable is set, the time  stamp  informa-
-              tion  associated  with each history entry is written to the his-
-              tory file, marked with the history comment character.  When  the
-              history  file  is read, lines beginning with the history comment
-              character followed immediately by a  digit  are  interpreted  as
+              If  the  H\bHI\bIS\bST\bTT\bTI\bIM\bME\bEF\bFO\bOR\bRM\bMA\bAT\bT variable is set, the time stamp informa-
+              tion associated with each history entry is written to  the  his-
+              tory  file, marked with the history comment character.  When the
+              history file is read, lines beginning with the  history  comment
+              character  followed  immediately  by  a digit are interpreted as
               timestamps for the following history entry.  The return value is
               0 unless an invalid option is encountered, an error occurs while
-              reading  or writing the history file, an invalid _\bo_\bf_\bf_\bs_\be_\bt or range
-              is supplied as an argument to -\b-d\bd, or the history expansion  sup-
+              reading or writing the history file, an invalid _\bo_\bf_\bf_\bs_\be_\bt or  range
+              is  supplied as an argument to -\b-d\bd, or the history expansion sup-
               plied as an argument to -\b-p\bp fails.
 
        j\bjo\bob\bbs\bs [-\b-l\bln\bnp\bpr\brs\bs] [ _\bj_\bo_\bb_\bs_\bp_\be_\bc ... ]
@@ -5327,15 +5324,15 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
               The first form lists the active jobs.  The options have the fol-
               lowing meanings:
               -\b-l\bl     List process IDs in addition to the normal information.
-              -\b-n\bn     Display information only about  jobs  that  have  changed
+              -\b-n\bn     Display  information  only  about  jobs that have changed
                      status since the user was last notified of their status.
-              -\b-p\bp     List  only  the  process  ID  of  the job's process group
+              -\b-p\bp     List only the process  ID  of  the  job's  process  group
                      leader.
               -\b-r\br     Display only running jobs.
               -\b-s\bs     Display only stopped jobs.
 
-              If _\bj_\bo_\bb_\bs_\bp_\be_\bc is given, output is restricted to  information  about
-              that  job.   The  return status is 0 unless an invalid option is
+              If  _\bj_\bo_\bb_\bs_\bp_\be_\bc  is given, output is restricted to information about
+              that job.  The return status is 0 unless an  invalid  option  is
               encountered or an invalid _\bj_\bo_\bb_\bs_\bp_\be_\bc is supplied.
 
               If the -\b-x\bx option is supplied, j\bjo\bob\bbs\bs replaces any _\bj_\bo_\bb_\bs_\bp_\be_\bc found in
@@ -5344,263 +5341,263 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
 
        k\bki\bil\bll\bl [-\b-s\bs _\bs_\bi_\bg_\bs_\bp_\be_\bc | -\b-n\bn _\bs_\bi_\bg_\bn_\bu_\bm | -\b-_\bs_\bi_\bg_\bs_\bp_\be_\bc] [_\bp_\bi_\bd | _\bj_\bo_\bb_\bs_\bp_\be_\bc] ...
        k\bki\bil\bll\bl -\b-l\bl|-\b-L\bL [_\bs_\bi_\bg_\bs_\bp_\be_\bc | _\be_\bx_\bi_\bt_\b__\bs_\bt_\ba_\bt_\bu_\bs]
-              Send the signal named by _\bs_\bi_\bg_\bs_\bp_\be_\bc  or  _\bs_\bi_\bg_\bn_\bu_\bm  to  the  processes
-              named  by  _\bp_\bi_\bd or _\bj_\bo_\bb_\bs_\bp_\be_\bc.  _\bs_\bi_\bg_\bs_\bp_\be_\bc is either a case-insensitive
-              signal name such as S\bSI\bIG\bGK\bKI\bIL\bLL\bL (with or without the S\bSI\bIG\bG prefix)  or
-              a  signal  number; _\bs_\bi_\bg_\bn_\bu_\bm is a signal number.  If _\bs_\bi_\bg_\bs_\bp_\be_\bc is not
-              present, then S\bSI\bIG\bGT\bTE\bER\bRM\bM is assumed.  An argument of -\b-l\bl  lists  the
-              signal  names.   If any arguments are supplied when -\b-l\bl is given,
-              the names of the signals  corresponding  to  the  arguments  are
+              Send  the  signal  named  by  _\bs_\bi_\bg_\bs_\bp_\be_\bc or _\bs_\bi_\bg_\bn_\bu_\bm to the processes
+              named by _\bp_\bi_\bd or _\bj_\bo_\bb_\bs_\bp_\be_\bc.  _\bs_\bi_\bg_\bs_\bp_\be_\bc is either  a  case-insensitive
+              signal  name such as S\bSI\bIG\bGK\bKI\bIL\bLL\bL (with or without the S\bSI\bIG\bG prefix) or
+              a signal number; _\bs_\bi_\bg_\bn_\bu_\bm is a signal number.  If _\bs_\bi_\bg_\bs_\bp_\be_\bc  is  not
+              present,  then  S\bSI\bIG\bGT\bTE\bER\bRM\bM is assumed.  An argument of -\b-l\bl lists the
+              signal names.  If any arguments are supplied when -\b-l\bl  is  given,
+              the  names  of  the  signals  corresponding to the arguments are
               listed, and the return status is 0.  The _\be_\bx_\bi_\bt_\b__\bs_\bt_\ba_\bt_\bu_\bs argument to
-              -\b-l\bis a number specifying either a signal  number  or  the  exit
-              status  of  a  process terminated by a signal.  The -\b-L\bL option is
-              equivalent to -\b-l\bl.  k\bki\bil\bll\bl returns true if at least one signal  was
+              -\b-l\b is  a  number  specifying either a signal number or the exit
+              status of a process terminated by a signal.  The  -\b-L\bL  option  is
+              equivalent  to -\b-l\bl.  k\bki\bil\bll\bl returns true if at least one signal was
               successfully sent, or false if an error occurs or an invalid op-
               tion is encountered.
 
        l\ble\bet\bt _\ba_\br_\bg [_\ba_\br_\bg ...]
               Each _\ba_\br_\bg is an arithmetic expression to be evaluated (see A\bAR\bRI\bIT\bTH\bH-\b-
-              M\bME\bET\bTI\bIC\b E\bEV\bVA\bAL\bLU\bUA\bAT\bTI\bIO\bON\bN  above).   If the last _\ba_\br_\bg evaluates to 0, l\ble\bet\bt
+              M\bME\bET\bTI\bIC\bE\bEV\bVA\bAL\bLU\bUA\bAT\bTI\bIO\bON\bN above).  If the last _\ba_\br_\bg evaluates  to  0,  l\ble\bet\bt
               returns 1; 0 is returned otherwise.
 
        l\blo\boc\bca\bal\bl [_\bo_\bp_\bt_\bi_\bo_\bn] [_\bn_\ba_\bm_\be[=_\bv_\ba_\bl_\bu_\be] ... | - ]
-              For each argument, a local variable named _\bn_\ba_\bm_\be is  created,  and
-              assigned  _\bv_\ba_\bl_\bu_\be.   The _\bo_\bp_\bt_\bi_\bo_\bn can be any of the options accepted
+              For  each  argument, a local variable named _\bn_\ba_\bm_\be is created, and
+              assigned _\bv_\ba_\bl_\bu_\be.  The _\bo_\bp_\bt_\bi_\bo_\bn can be any of the  options  accepted
               by d\bde\bec\bcl\bla\bar\bre\be.  When l\blo\boc\bca\bal\bl is used within a function, it causes the
-              variable  _\bn_\ba_\bm_\be  to have a visible scope restricted to that func-
-              tion and its children.  If _\bn_\ba_\bm_\be is -, the set of  shell  options
-              is  made  local to the function in which l\blo\boc\bca\bal\bl is invoked: shell
-              options changed using the s\bse\bet\bt builtin inside the function  after
+              variable _\bn_\ba_\bm_\be to have a visible scope restricted to  that  func-
+              tion  and  its children.  If _\bn_\ba_\bm_\be is -, the set of shell options
+              is made local to the function in which l\blo\boc\bca\bal\bl is  invoked:  shell
+              options  changed using the s\bse\bet\bt builtin inside the function after
               the call to l\blo\boc\bca\bal\bl are restored to their original values when the
               function returns.  The restore is effected as if a series of s\bse\bet\bt
-              commands  were executed to restore the values that were in place
-              before the function.  With no operands, l\blo\boc\bca\bal\bl writes a  list  of
-              local  variables  to the standard output.  It is an error to use
+              commands were executed to restore the values that were in  place
+              before  the  function.  With no operands, l\blo\boc\bca\bal\bl writes a list of
+              local variables to the standard output.  It is an error  to  use
               l\blo\boc\bca\bal\bl when not within a function.  The return status is 0 unless
-              l\blo\boc\bca\bal\b is  used outside a function, an invalid _\bn_\ba_\bm_\be is supplied,
+              l\blo\boc\bca\bal\bis used outside a function, an invalid _\bn_\ba_\bm_\be  is  supplied,
               or _\bn_\ba_\bm_\be is a readonly variable.
 
        l\blo\bog\bgo\bou\but\bt Exit a login shell.
 
-       m\bma\bap\bpf\bfi\bil\ble\b[-\b-d\bd _\bd_\be_\bl_\bi_\bm] [-\b-n\bn _\bc_\bo_\bu_\bn_\bt] [-\b-O\bO _\bo_\br_\bi_\bg_\bi_\bn] [-\b-s\bs _\bc_\bo_\bu_\bn_\bt] [-\b-t\bt] [-\b-u\bu  _\bf_\bd]  [-\b-C\bC
+       m\bma\bap\bpf\bfi\bil\ble\b [-\b-d\bd  _\bd_\be_\bl_\bi_\bm] [-\b-n\bn _\bc_\bo_\bu_\bn_\bt] [-\b-O\bO _\bo_\br_\bi_\bg_\bi_\bn] [-\b-s\bs _\bc_\bo_\bu_\bn_\bt] [-\b-t\bt] [-\b-u\bu _\bf_\bd] [-\b-C\bC
        _\bc_\ba_\bl_\bl_\bb_\ba_\bc_\bk] [-\b-c\bc _\bq_\bu_\ba_\bn_\bt_\bu_\bm] [_\ba_\br_\br_\ba_\by]
        r\bre\bea\bad\bda\bar\brr\bra\bay\by [-\b-d\bd _\bd_\be_\bl_\bi_\bm] [-\b-n\bn _\bc_\bo_\bu_\bn_\bt] [-\b-O\bO _\bo_\br_\bi_\bg_\bi_\bn] [-\b-s\bs _\bc_\bo_\bu_\bn_\bt] [-\b-t\bt] [-\b-u\bu _\bf_\bd] [-\b-C\bC
        _\bc_\ba_\bl_\bl_\bb_\ba_\bc_\bk] [-\b-c\bc _\bq_\bu_\ba_\bn_\bt_\bu_\bm] [_\ba_\br_\br_\ba_\by]
-              Read lines from the standard input into the indexed array  vari-
-              able  _\ba_\br_\br_\ba_\by, or from file descriptor _\bf_\bd if the -\b-u\bu option is sup-
-              plied.  The variable M\bMA\bAP\bPF\bFI\bIL\bLE\bE is the default _\ba_\br_\br_\ba_\by.  Options,  if
+              Read  lines from the standard input into the indexed array vari-
+              able _\ba_\br_\br_\ba_\by, or from file descriptor _\bf_\bd if the -\b-u\bu option is  sup-
+              plied.   The variable M\bMA\bAP\bPF\bFI\bIL\bLE\bE is the default _\ba_\br_\br_\ba_\by.  Options, if
               supplied, have the following meanings:
-              -\b-d\bd     The  first  character  of _\bd_\be_\bl_\bi_\bm is used to terminate each
-                     input line, rather than newline.  If _\bd_\be_\bl_\bi_\bm is  the  empty
+              -\b-d\bd     The first character of _\bd_\be_\bl_\bi_\bm is used  to  terminate  each
+                     input  line,  rather than newline.  If _\bd_\be_\bl_\bi_\bm is the empty
                      string, m\bma\bap\bpf\bfi\bil\ble\be will terminate a line when it reads a NUL
                      character.
-              -\b-n\bn     Copy at most _\bc_\bo_\bu_\bn_\bt lines.  If _\bc_\bo_\bu_\bn_\bt is 0, all  lines  are
+              -\b-n\bn     Copy  at  most _\bc_\bo_\bu_\bn_\bt lines.  If _\bc_\bo_\bu_\bn_\bt is 0, all lines are
                      copied.
-              -\b-O\bO     Begin  assigning  to  _\ba_\br_\br_\ba_\by at index _\bo_\br_\bi_\bg_\bi_\bn.  The default
+              -\b-O\bO     Begin assigning to _\ba_\br_\br_\ba_\by at index  _\bo_\br_\bi_\bg_\bi_\bn.   The  default
                      index is 0.
               -\b-s\bs     Discard the first _\bc_\bo_\bu_\bn_\bt lines read.
-              -\b-t\bt     Remove a trailing _\bd_\be_\bl_\bi_\bm (default newline) from each  line
+              -\b-t\bt     Remove  a trailing _\bd_\be_\bl_\bi_\bm (default newline) from each line
                      read.
-              -\b-u\bu     Read  lines  from file descriptor _\bf_\bd instead of the stan-
+              -\b-u\bu     Read lines from file descriptor _\bf_\bd instead of  the  stan-
                      dard input.
-              -\b-C\bC     Evaluate _\bc_\ba_\bl_\bl_\bb_\ba_\bc_\bk each time _\bq_\bu_\ba_\bn_\bt_\bu_\bm lines are read.   The
+              -\b-C\bC     Evaluate  _\bc_\ba_\bl_\bl_\bb_\ba_\bc_\bk each time _\bq_\bu_\ba_\bn_\bt_\bu_\bm lines are read.  The
                      -\b-c\bc option specifies _\bq_\bu_\ba_\bn_\bt_\bu_\bm.
-              -\b-c\bc     Specify  the  number  of  lines read between each call to
+              -\b-c\bc     Specify the number of lines read  between  each  call  to
                      _\bc_\ba_\bl_\bl_\bb_\ba_\bc_\bk.
 
-              If -\b-C\bC is specified without -\b-c\bc,  the  default  quantum  is  5000.
+              If  -\b-C\bC  is  specified  without  -\b-c\bc, the default quantum is 5000.
               When _\bc_\ba_\bl_\bl_\bb_\ba_\bc_\bk is evaluated, it is supplied the index of the next
               array element to be assigned and the line to be assigned to that
-              element  as  additional  arguments.  _\bc_\ba_\bl_\bl_\bb_\ba_\bc_\bk is evaluated after
+              element as additional arguments.  _\bc_\ba_\bl_\bl_\bb_\ba_\bc_\bk  is  evaluated  after
               the line is read but before the array element is assigned.
 
-              If not supplied with an explicit origin, m\bma\bap\bpf\bfi\bil\ble\be will clear  _\ba_\br_\b-
+              If  not supplied with an explicit origin, m\bma\bap\bpf\bfi\bil\ble\be will clear _\ba_\br_\b-
               _\br_\ba_\by before assigning to it.
 
-              m\bma\bap\bpf\bfi\bil\ble\b returns successfully unless an invalid option or option
-              argument is supplied, _\ba_\br_\br_\ba_\by is invalid or  unassignable,  or  if
+              m\bma\bap\bpf\bfi\bil\ble\breturns successfully unless an invalid option or  option
+              argument  is  supplied,  _\ba_\br_\br_\ba_\by is invalid or unassignable, or if
               _\ba_\br_\br_\ba_\by is not an indexed array.
 
        p\bpo\bop\bpd\bd [-n\bn] [+_\bn] [-_\bn]
               Removes entries from the directory stack.  The elements are num-
-              bered from 0 starting at the first  directory  listed  by  d\bdi\bir\brs\bs.
-              With  no  arguments,  p\bpo\bop\bpd\bd  removes  the  top directory from the
+              bered  from  0  starting  at the first directory listed by d\bdi\bir\brs\bs.
+              With no arguments, p\bpo\bop\bpd\bd  removes  the  top  directory  from  the
               stack, and changes to the new top directory.  Arguments, if sup-
               plied, have the following meanings:
-              -\b-n\bn     Suppresses  the  normal change of directory when removing
+              -\b-n\bn     Suppresses the normal change of directory  when  removing
                      directories from the stack, so that only the stack is ma-
                      nipulated.
-              +\b+_\bn     Removes  the _\bnth entry counting from the left of the list
-                     shown by d\bdi\bir\brs\bs, starting with zero, from the  stack.   For
-                     example:  ``popd +0'' removes the first directory, ``popd
+              +\b+_\bn     Removes the _\bnth entry counting from the left of the  list
+                     shown  by  d\bdi\bir\brs\bs, starting with zero, from the stack.  For
+                     example: ``popd +0'' removes the first directory,  ``popd
                      +1'' the second.
               -\b-_\bn     Removes the _\bnth entry counting from the right of the list
-                     shown  by  d\bdi\bir\brs\bs, starting with zero.  For example: ``popd
-                     -0'' removes the last directory, ``popd -1'' the next  to
+                     shown by d\bdi\bir\brs\bs, starting with zero.  For  example:  ``popd
+                     -0''  removes the last directory, ``popd -1'' the next to
                      last.
 
-              If  the  top element of the directory stack is modified, and the
-              _\b-_\boption was not supplied, p\bpo\bop\bpd\bd uses the c\bcd\bd builtin  to  change
+              If the top element of the directory stack is modified,  and  the
+              _\b-_\b option  was not supplied, p\bpo\bop\bpd\bd uses the c\bcd\bd builtin to change
               to the directory at the top of the stack.  If the c\bcd\bd fails, p\bpo\bop\bpd\bd
               returns a non-zero value.
 
-              Otherwise, p\bpo\bop\bpd\bd returns false if an invalid  option  is  encoun-
+              Otherwise,  p\bpo\bop\bpd\bd  returns  false if an invalid option is encoun-
               tered, the directory stack is empty, or a non-existent directory
               stack entry is specified.
 
-              If the p\bpo\bop\bpd\bd command is successful, bash runs d\bdi\bir\brs\bs  to  show  the
-              final  contents of the directory stack, and the return status is
+              If  the  p\bpo\bop\bpd\bd  command is successful, bash runs d\bdi\bir\brs\bs to show the
+              final contents of the directory stack, and the return status  is
               0.
 
        p\bpr\bri\bin\bnt\btf\bf [-\b-v\bv _\bv_\ba_\br] _\bf_\bo_\br_\bm_\ba_\bt [_\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs]
-              Write the formatted _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs to the standard output  under  the
-              control  of  the  _\bf_\bo_\br_\bm_\ba_\bt.  The -\b-v\bv option causes the output to be
-              assigned to the variable _\bv_\ba_\br rather than being  printed  to  the
+              Write  the  formatted _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs to the standard output under the
+              control of the _\bf_\bo_\br_\bm_\ba_\bt.  The -\b-v\bv option causes the  output  to  be
+              assigned  to  the  variable _\bv_\ba_\br rather than being printed to the
               standard output.
 
-              The  _\bf_\bo_\br_\bm_\ba_\bt  is a character string which contains three types of
-              objects: plain characters, which are simply copied  to  standard
-              output,  character  escape  sequences,  which  are converted and
-              copied to the standard output, and format  specifications,  each
-              of  which  causes  printing of the next successive _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt.  In
+              The _\bf_\bo_\br_\bm_\ba_\bt is a character string which contains three  types  of
+              objects:  plain  characters, which are simply copied to standard
+              output, character escape  sequences,  which  are  converted  and
+              copied  to  the standard output, and format specifications, each
+              of which causes printing of the next  successive  _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt.   In
               addition to the standard _\bp_\br_\bi_\bn_\bt_\bf(3) format characters c\bcs\bsn\bnd\bdi\bio\bou\bux\bxX\bXe\be-\b-
               E\bEf\bfF\bFg\bgG\bGa\baA\bA, p\bpr\bri\bin\bnt\btf\bf interprets the following additional format spec-
               ifiers:
               %\b%b\bb     causes p\bpr\bri\bin\bnt\btf\bf to expand backslash escape sequences in the
                      corresponding _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt in the same way as e\bec\bch\bho\bo -\b-e\be.
-              %\b%q\bq     causes  p\bpr\bri\bin\bnt\btf\bf  to output the corresponding _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt in a
-                     format that can be reused as shell input.  %\b%q\bq and %\b%Q\b use
-                     the  $\b$'\b''\b'  quoting style if any characters in the argument
-                     string require it, and backslash quoting  otherwise.   If
-                     the  format  string uses the _\bp_\br_\bi_\bn_\bt_\bf alternate form, these
+              %\b%q\bq     causes p\bpr\bri\bin\bnt\btf\bf to output the corresponding _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt  in  a
+                     format  that can be reused as shell input.  %\b%q\bq and %\b%Q\bQ use
+                     the $\b$'\b''\b' quoting style if any characters in  the  argument
+                     string  require  it, and backslash quoting otherwise.  If
+                     the format string uses the _\bp_\br_\bi_\bn_\bt_\bf alternate  form,  these
                      two  formats  quote  the  argument  string  using  single
                      quotes.
-              %\b%Q\bQ     like  %\b%q\bq, but applies any supplied precision to the _\ba_\br_\bg_\bu_\b-
+              %\b%Q\bQ     like %\b%q\bq, but applies any supplied precision to the  _\ba_\br_\bg_\bu_\b-
                      _\bm_\be_\bn_\bt before quoting it.
               %\b%(\b(_\bd_\ba_\bt_\be_\bf_\bm_\bt)\b)T\bT
-                     causes p\bpr\bri\bin\bnt\btf\bf to output the  date-time  string  resulting
-                     from  using  _\bd_\ba_\bt_\be_\bf_\bm_\bt  as a format string for _\bs_\bt_\br_\bf_\bt_\bi_\bm_\be(3).
+                     causes  p\bpr\bri\bin\bnt\btf\bf  to  output the date-time string resulting
+                     from using _\bd_\ba_\bt_\be_\bf_\bm_\bt as a format  string  for  _\bs_\bt_\br_\bf_\bt_\bi_\bm_\be(3).
                      The corresponding _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt is an integer representing the
-                     number  of seconds since the epoch.  Two special argument
-                     values may be used: -1 represents the current  time,  and
-                     -2  represents the time the shell was invoked.  If no ar-
+                     number of seconds since the epoch.  Two special  argument
+                     values  may  be used: -1 represents the current time, and
+                     -2 represents the time the shell was invoked.  If no  ar-
                      gument is specified, conversion behaves as if -1 had been
-                     given.   This  is an exception to the usual p\bpr\bri\bin\bnt\btf\bf behav-
+                     given.  This is an exception to the usual  p\bpr\bri\bin\bnt\btf\b behav-
                      ior.
 
               The %b, %q, and %T format specifiers all use the field width and
               precision arguments from the format specification and write that
-              many bytes from (or use that wide a field for) the expanded  ar-
-              gument,  which  usually contains more characters than the origi-
+              many  bytes from (or use that wide a field for) the expanded ar-
+              gument, which usually contains more characters than  the  origi-
               nal.
 
               The %n format specifier accepts a corresponding argument that is
               treated as a shell variable name.
 
-              The  %s  and  %c  format specifiers accept an l (long) modifier,
+              The %s and %c format specifiers accept  an  l  (long)  modifier,
               which forces them to convert the argument string to a wide-char-
               acter string and apply any supplied field width and precision in
               terms of characters, not bytes.
 
-              Arguments to non-string format specifiers are treated as C  con-
+              Arguments  to non-string format specifiers are treated as C con-
               stants, except that a leading plus or minus sign is allowed, and
-              if the leading character is a single or double quote, the  value
+              if  the leading character is a single or double quote, the value
               is the ASCII value of the following character.
 
-              The  _\bf_\bo_\br_\bm_\ba_\bt  is  reused as necessary to consume all of the _\ba_\br_\bg_\bu_\b-
+              The _\bf_\bo_\br_\bm_\ba_\bt is reused as necessary to consume all  of  the  _\ba_\br_\bg_\bu_\b-
               _\bm_\be_\bn_\bt_\bs.  If the _\bf_\bo_\br_\bm_\ba_\bt requires more _\ba_\br_\bg_\bu_\bm_\be_\bn_\bt_\bs than are supplied,
-              the  extra  format  specifications  behave as if a zero value or
-              null string, as appropriate,  had  been  supplied.   The  return
-              value  is zero on success, non-zero if an invalid option is sup-
+              the extra format specifications behave as if  a  zero  value  or
+              null  string,  as  appropriate,  had  been supplied.  The return
+              value is zero on success, non-zero if an invalid option is  sup-
               plied or a write or assignment error occurs.
 
        p\bpu\bus\bsh\bhd\bd [-\b-n\bn] [+_\bn] [-_\bn]
        p\bpu\bus\bsh\bhd\bd [-\b-n\bn] [_\bd_\bi_\br]
-              Adds a directory to the top of the directory stack,  or  rotates
-              the  stack,  making the new top of the stack the current working
-              directory.  With no arguments, p\bpu\bus\bsh\bhd\bd exchanges the top two  ele-
-              ments  of the directory stack.  Arguments, if supplied, have the
+              Adds  a  directory to the top of the directory stack, or rotates
+              the stack, making the new top of the stack the  current  working
+              directory.   With no arguments, p\bpu\bus\bsh\bhd\bd exchanges the top two ele-
+              ments of the directory stack.  Arguments, if supplied, have  the
               following meanings:
-              -\b-n\bn     Suppresses the normal change of directory  when  rotating
-                     or  adding  directories  to  the  stack, so that only the
+              -\b-n\bn     Suppresses  the  normal change of directory when rotating
+                     or adding directories to the  stack,  so  that  only  the
                      stack is manipulated.
-              +\b+_\bn     Rotates the stack so that  the  _\bnth  directory  (counting
-                     from  the  left  of the list shown by d\bdi\bir\brs\bs, starting with
+              +\b+_\bn     Rotates  the  stack  so  that the _\bnth directory (counting
+                     from the left of the list shown by  d\bdi\bir\brs\bs,  starting  with
                      zero) is at the top.
-              -\b-_\bn     Rotates the stack so that  the  _\bnth  directory  (counting
-                     from  the  right of the list shown by d\bdi\bir\brs\bs, starting with
+              -\b-_\bn     Rotates  the  stack  so  that the _\bnth directory (counting
+                     from the right of the list shown by d\bdi\bir\brs\bs,  starting  with
                      zero) is at the top.
               _\bd_\bi_\br    Adds _\bd_\bi_\br to the directory stack at the top
 
               After the stack has been modified, if the -\b-n\bn option was not sup-
-              plied,  p\bpu\bus\bsh\bhd\bd  uses the c\bcd\bd builtin to change to the directory at
+              plied, p\bpu\bus\bsh\bhd\bd uses the c\bcd\bd builtin to change to the  directory  at
               the top of the stack.  If the c\bcd\bd fails, p\bpu\bus\bsh\bhd\bd returns a non-zero
               value.
 
-              Otherwise,  if no arguments are supplied, p\bpu\bus\bsh\bhd\bd returns 0 unless
-              the directory stack  is  empty.   When  rotating  the  directory
-              stack,  p\bpu\bus\bsh\bhd\bd returns 0 unless the directory stack is empty or a
+              Otherwise, if no arguments are supplied, p\bpu\bus\bsh\bhd\bd returns 0  unless
+              the  directory  stack  is  empty.   When  rotating the directory
+              stack, p\bpu\bus\bsh\bhd\bd returns 0 unless the directory stack is empty or  a
               non-existent directory stack element is specified.
 
-              If the p\bpu\bus\bsh\bhd\bd command is successful, bash runs d\bdi\bir\brs\bs to  show  the
+              If  the  p\bpu\bus\bsh\bhd\bd command is successful, bash runs d\bdi\bir\brs\bs to show the
               final contents of the directory stack.
 
        p\bpw\bwd\bd [-\b-L\bLP\bP]
-              Print  the  absolute  pathname of the current working directory.
+              Print the absolute pathname of the  current  working  directory.
               The pathname printed contains no symbolic links if the -\b-P\bP option
               is supplied or the -\b-o\bo p\bph\bhy\bys\bsi\bic\bca\bal\bl option to the s\bse\bet\bt builtin command
-              is enabled.  If the -\b-L\bL option is used, the pathname printed  may
-              contain  symbolic links.  The return status is 0 unless an error
+              is  enabled.  If the -\b-L\bL option is used, the pathname printed may
+              contain symbolic links.  The return status is 0 unless an  error
               occurs while reading the name of the current directory or an in-
               valid option is supplied.
 
        r\bre\bea\bad\bd [-\b-e\ber\brs\bs] [-\b-a\ba _\ba_\bn_\ba_\bm_\be] [-\b-d\bd _\bd_\be_\bl_\bi_\bm] [-\b-i\bi _\bt_\be_\bx_\bt] [-\b-n\bn _\bn_\bc_\bh_\ba_\br_\bs] [-\b-N\bN _\bn_\bc_\bh_\ba_\br_\bs] [-\b-p\bp
        _\bp_\br_\bo_\bm_\bp_\bt] [-\b-t\bt _\bt_\bi_\bm_\be_\bo_\bu_\bt] [-\b-u\bu _\bf_\bd] [_\bn_\ba_\bm_\be ...]
-              One line is read from the standard input, or from the  file  de-
+              One  line  is read from the standard input, or from the file de-
               scriptor _\bf_\bd supplied as an argument to the -\b-u\bu option, split into
-              words as described above under W\bWo\bor\brd\bd  S\bSp\bpl\bli\bit\btt\bti\bin\bng\bg,  and  the  first
-              word  is assigned to the first _\bn_\ba_\bm_\be, the second word to the sec-
-              ond _\bn_\ba_\bm_\be, and so on.  If there are more words  than  names,  the
+              words  as  described  above  under W\bWo\bor\brd\bd S\bSp\bpl\bli\bit\btt\bti\bin\bng\bg, and the first
+              word is assigned to the first _\bn_\ba_\bm_\be, the second word to the  sec-
+              ond  _\bn_\ba_\bm_\be,  and  so on.  If there are more words than names, the
               remaining words and their intervening delimiters are assigned to
-              the last _\bn_\ba_\bm_\be.  If there are fewer words  read  from  the  input
-              stream  than  names, the remaining names are assigned empty val-
-              ues.  The characters in I\bIF\bFS\bS are used  to  split  the  line  into
-              words  using  the  same  rules the shell uses for expansion (de-
-              scribed above under W\bWo\bor\brd\bd S\bSp\bpl\bli\bit\btt\bti\bin\bng\bg).   The  backslash  character
+              the  last  _\bn_\ba_\bm_\be.   If  there are fewer words read from the input
+              stream than names, the remaining names are assigned  empty  val-
+              ues.   The  characters  in  I\bIF\bFS\bS  are used to split the line into
+              words using the same rules the shell  uses  for  expansion  (de-
+              scribed  above  under  W\bWo\bor\brd\bd S\bSp\bpl\bli\bit\btt\bti\bin\bng\bg).  The backslash character
               (\\b\) may be used to remove any special meaning for the next char-
-              acter read and for line  continuation.   Options,  if  supplied,
+              acter  read  and  for  line continuation.  Options, if supplied,
               have the following meanings:
               -\b-a\ba _\ba_\bn_\ba_\bm_\be
                      The words are assigned to sequential indices of the array
                      variable _\ba_\bn_\ba_\bm_\be, starting at 0.  _\ba_\bn_\ba_\bm_\be is unset before any
-                     new  values  are  assigned.  Other _\bn_\ba_\bm_\be arguments are ig-
+                     new values are assigned.  Other _\bn_\ba_\bm_\be  arguments  are  ig-
                      nored.
               -\b-d\bd _\bd_\be_\bl_\bi_\bm
                      The first character of _\bd_\be_\bl_\bi_\bm is used to terminate the in-
-                     put  line,  rather  than  newline.  If _\bd_\be_\bl_\bi_\bm is the empty
-                     string, r\bre\bea\bad\bd will terminate a line when it  reads  a  NUL
+                     put line, rather than newline.  If  _\bd_\be_\bl_\bi_\bm  is  the  empty
+                     string,  r\bre\bea\bad\bd  will  terminate a line when it reads a NUL
                      character.
               -\b-e\be     If the standard input is coming from a terminal, r\bre\bea\bad\bdl\bli\bin\bne\be
-                     (see R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE above) is used to obtain the  line.   Read-
-                     line  uses  the  current (or default, if line editing was
-                     not previously active) editing settings, but  uses  read-
+                     (see  R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE  above) is used to obtain the line.  Read-
+                     line uses the current (or default, if  line  editing  was
+                     not  previously  active) editing settings, but uses read-
                      line's default filename completion.
               -\b-i\bi _\bt_\be_\bx_\bt
-                     If  r\bre\bea\bad\bdl\bli\bin\bne\be  is  being  used  to  read the line, _\bt_\be_\bx_\bt is
+                     If r\bre\bea\bad\bdl\bli\bin\bne\be is being used  to  read  the  line,  _\bt_\be_\bx_\b is
                      placed into the editing buffer before editing begins.
               -\b-n\bn _\bn_\bc_\bh_\ba_\br_\bs
-                     r\bre\bea\bad\breturns after reading _\bn_\bc_\bh_\ba_\br_\bs characters rather  than
+                     r\bre\bea\bad\b returns after reading _\bn_\bc_\bh_\ba_\br_\bs characters rather than
                      waiting for a complete line of input, but honors a delim-
-                     iter if fewer than _\bn_\bc_\bh_\ba_\br_\bs characters are read before  the
+                     iter  if fewer than _\bn_\bc_\bh_\ba_\br_\bs characters are read before the
                      delimiter.
               -\b-N\bN _\bn_\bc_\bh_\ba_\br_\bs
-                     r\bre\bea\bad\b returns  after  reading  exactly  _\bn_\bc_\bh_\ba_\br_\bs characters
-                     rather than waiting for a complete line of input,  unless
-                     EOF  is encountered or r\bre\bea\bad\bd times out.  Delimiter charac-
-                     ters encountered in the input are not  treated  specially
-                     and  do  not cause r\bre\bea\bad\bd to return until _\bn_\bc_\bh_\ba_\br_\bs characters
-                     are read.  The result is not split on the  characters  in
-                     I\bIF\bFS\bS;  the intent is that the variable is assigned exactly
+                     r\bre\bea\bad\breturns  after  reading  exactly  _\bn_\bc_\bh_\ba_\br_\b characters
+                     rather  than waiting for a complete line of input, unless
+                     EOF is encountered or r\bre\bea\bad\bd times out.  Delimiter  charac-
+                     ters  encountered  in the input are not treated specially
+                     and do not cause r\bre\bea\bad\bd to return until  _\bn_\bc_\bh_\ba_\br_\b characters
+                     are  read.   The result is not split on the characters in
+                     I\bIF\bFS\bS; the intent is that the variable is assigned  exactly
                      the characters read (with the exception of backslash; see
                      the -\b-r\br option below).
               -\b-p\bp _\bp_\br_\bo_\bm_\bp_\bt
@@ -5608,133 +5605,133 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
                      line, before attempting to read any input.  The prompt is
                      displayed only if input is coming from a terminal.
               -\b-r\br     Backslash does not act as an escape character.  The back-
-                     slash is considered to be part of the line.  In  particu-
-                     lar,  a  backslash-newline pair may not then be used as a
+                     slash  is considered to be part of the line.  In particu-
+                     lar, a backslash-newline pair may not then be used  as  a
                      line continuation.
               -\b-s\bs     Silent mode.  If input is coming from a terminal, charac-
                      ters are not echoed.
               -\b-t\bt _\bt_\bi_\bm_\be_\bo_\bu_\bt
-                     Cause  r\bre\bea\bad\bd  to time out and return failure if a complete
-                     line of input (or a specified number  of  characters)  is
-                     not  read within _\bt_\bi_\bm_\be_\bo_\bu_\bt seconds.  _\bt_\bi_\bm_\be_\bo_\bu_\bt may be a deci-
-                     mal number with a fractional portion following the  deci-
-                     mal  point.   This  option  is  only effective if r\bre\bea\bad\bd is
-                     reading input from a terminal,  pipe,  or  other  special
-                     file;  it  has no effect when reading from regular files.
+                     Cause r\bre\bea\bad\bd to time out and return failure if  a  complete
+                     line  of  input  (or a specified number of characters) is
+                     not read within _\bt_\bi_\bm_\be_\bo_\bu_\bt seconds.  _\bt_\bi_\bm_\be_\bo_\bu_\bt may be a  deci-
+                     mal  number with a fractional portion following the deci-
+                     mal point.  This option is  only  effective  if  r\bre\bea\bad\b is
+                     reading  input  from  a  terminal, pipe, or other special
+                     file; it has no effect when reading from  regular  files.
                      If r\bre\bea\bad\bd times out, r\bre\bea\bad\bd saves any partial input read into
-                     the  specified  variable _\bn_\ba_\bm_\be.  If _\bt_\bi_\bm_\be_\bo_\bu_\bt is 0, r\bre\bea\bad\bd re-
-                     turns immediately, without trying to read any data.   The
-                     exit  status  is 0 if input is available on the specified
-                     file descriptor, or the read will  return  EOF,  non-zero
-                     otherwise.   The  exit  status is greater than 128 if the
+                     the specified variable _\bn_\ba_\bm_\be.  If _\bt_\bi_\bm_\be_\bo_\bu_\bt is 0,  r\bre\bea\bad\b re-
+                     turns  immediately, without trying to read any data.  The
+                     exit status is 0 if input is available on  the  specified
+                     file  descriptor,  or  the read will return EOF, non-zero
+                     otherwise.  The exit status is greater than  128  if  the
                      timeout is exceeded.
               -\b-u\bu _\bf_\bd  Read input from file descriptor _\bf_\bd.
 
-              If no _\bn_\ba_\bm_\be_\bs are supplied, the line read, without the ending  de-
-              limiter  but  otherwise  unmodified, is assigned to the variable
-              R\bRE\bEP\bPL\bLY\bY.  The exit status is zero, unless end-of-file  is  encoun-
-              tered,  r\bre\bea\bad\bd times out (in which case the status is greater than
-              128), a variable assignment error (such as assigning to a  read-
+              If  no _\bn_\ba_\bm_\be_\bs are supplied, the line read, without the ending de-
+              limiter but otherwise unmodified, is assigned  to  the  variable
+              R\bRE\bEP\bPL\bLY\bY.   The  exit status is zero, unless end-of-file is encoun-
+              tered, r\bre\bea\bad\bd times out (in which case the status is greater  than
+              128),  a variable assignment error (such as assigning to a read-
               only variable) occurs, or an invalid file descriptor is supplied
               as the argument to -\b-u\bu.
 
        r\bre\bea\bad\bdo\bon\bnl\bly\by [-\b-a\baA\bAf\bf] [-\b-p\bp] [_\bn_\ba_\bm_\be[=_\bw_\bo_\br_\bd] ...]
-              The given _\bn_\ba_\bm_\be_\bs are marked readonly; the values of  these  _\bn_\ba_\bm_\be_\bs
-              may  not  be changed by subsequent assignment.  If the -\b-f\bf option
-              is supplied, the functions corresponding to  the  _\bn_\ba_\bm_\be_\bs  are  so
-              marked.   The  -\b-a\ba  option restricts the variables to indexed ar-
-              rays; the -\b-A\bA option restricts the variables to  associative  ar-
+              The  given  _\bn_\ba_\bm_\be_\bs are marked readonly; the values of these _\bn_\ba_\bm_\be_\bs
+              may not be changed by subsequent assignment.  If the  -\b-f\b option
+              is  supplied,  the  functions  corresponding to the _\bn_\ba_\bm_\be_\bs are so
+              marked.  The -\b-a\ba option restricts the variables  to  indexed  ar-
+              rays;  the  -\b-A\bA option restricts the variables to associative ar-
               rays.  If both options are supplied, -\b-A\bA takes precedence.  If no
-              _\bn_\ba_\bm_\barguments are given, or if the -\b-p\bp  option  is  supplied,  a
+              _\bn_\ba_\bm_\b arguments  are  given,  or if the -\b-p\bp option is supplied, a
               list of all readonly names is printed.  The other options may be
-              used to restrict the output to a subset of the set  of  readonly
-              names.   The -\b-p\bp option causes output to be displayed in a format
-              that may be reused as input.  If a variable name is followed  by
-              =_\bw_\bo_\br_\bd,  the  value  of  the variable is set to _\bw_\bo_\br_\bd.  The return
-              status is 0 unless an invalid option is encountered, one of  the
+              used  to  restrict the output to a subset of the set of readonly
+              names.  The -\b-p\bp option causes output to be displayed in a  format
+              that  may be reused as input.  If a variable name is followed by
+              =_\bw_\bo_\br_\bd, the value of the variable is set  to  _\bw_\bo_\br_\bd.   The  return
+              status  is 0 unless an invalid option is encountered, one of the
               _\bn_\ba_\bm_\be_\bs is not a valid shell variable name, or -\b-f\bf is supplied with
               a _\bn_\ba_\bm_\be that is not a function.
 
        r\bre\bet\btu\bur\brn\bn [_\bn]
-              Causes a function to stop executing and return the value  speci-
-              fied  by _\bn to its caller.  If _\bn is omitted, the return status is
-              that of the last command executed in the function body.  If  r\bre\be-\b-
+              Causes  a function to stop executing and return the value speci-
+              fied by _\bn to its caller.  If _\bn is omitted, the return status  is
+              that  of the last command executed in the function body.  If r\bre\be-\b-
               t\btu\bur\brn\bn is executed by a trap handler, the last command used to de-
-              termine the status is the last command executed before the  trap
-              handler.   If  r\bre\bet\btu\bur\brn\bn  is executed during a D\bDE\bEB\bBU\bUG\bG trap, the last
-              command used to determine the status is the  last  command  exe-
-              cuted  by the trap handler before r\bre\bet\btu\bur\brn\bn was invoked.  If r\bre\bet\btu\bur\brn\bn
-              is used outside a function, but during execution of a script  by
-              the  .\b.   (s\bso\bou\bur\brc\bce\be) command, it causes the shell to stop executing
-              that script and return either _\bn or the exit status of  the  last
-              command  executed  within  the  script as the exit status of the
+              termine  the status is the last command executed before the trap
+              handler.  If r\bre\bet\btu\bur\brn\bn is executed during a D\bDE\bEB\bBU\bUG\bG  trap,  the  last
+              command  used  to  determine the status is the last command exe-
+              cuted by the trap handler before r\bre\bet\btu\bur\brn\bn was invoked.  If  r\bre\bet\btu\bur\brn\bn
+              is  used outside a function, but during execution of a script by
+              the .\b.  (s\bso\bou\bur\brc\bce\be) command, it causes the shell to  stop  executing
+              that  script  and return either _\bn or the exit status of the last
+              command executed within the script as the  exit  status  of  the
               script.  If _\bn is supplied, the return value is its least signif-
-              icant  8  bits.  The return status is non-zero if r\bre\bet\btu\bur\brn\bn is sup-
-              plied a non-numeric argument, or is used outside a function  and
-              not  during  execution  of a script by .\b. or s\bso\bou\bur\brc\bce\be.  Any command
+              icant 8 bits.  The return status is non-zero if r\bre\bet\btu\bur\brn\bn  is  sup-
+              plied  a non-numeric argument, or is used outside a function and
+              not during execution of a script by .\b. or  s\bso\bou\bur\brc\bce\be.   Any  command
               associated with the R\bRE\bET\bTU\bUR\bRN\bN trap is executed before execution re-
               sumes after the function or script.
 
        s\bse\bet\bt [-\b-a\bab\bbe\bef\bfh\bhk\bkm\bmn\bnp\bpt\btu\buv\bvx\bxB\bBC\bCE\bEH\bHP\bPT\bT] [-\b-o\bo _\bo_\bp_\bt_\bi_\bo_\bn_\b-_\bn_\ba_\bm_\be] [-\b--\b-] [-\b-] [_\ba_\br_\bg ...]
        s\bse\bet\bt [+\b+a\bab\bbe\bef\bfh\bhk\bkm\bmn\bnp\bpt\btu\buv\bvx\bxB\bBC\bCE\bEH\bHP\bPT\bT] [+\b+o\bo _\bo_\bp_\bt_\bi_\bo_\bn_\b-_\bn_\ba_\bm_\be] [-\b--\b-] [-\b-] [_\ba_\br_\bg ...]
-              Without  options, display the name and value of each shell vari-
-              able in a format that can be reused as input for setting or  re-
+              Without options, display the name and value of each shell  vari-
+              able  in a format that can be reused as input for setting or re-
               setting the currently-set variables.  Read-only variables cannot
-              be reset.  In _\bp_\bo_\bs_\bi_\bx _\bm_\bo_\bd_\be, only shell variables are listed.   The
-              output  is sorted according to the current locale.  When options
-              are specified, they set or unset shell  attributes.   Any  argu-
-              ments  remaining  after  option processing are treated as values
+              be  reset.  In _\bp_\bo_\bs_\bi_\bx _\bm_\bo_\bd_\be, only shell variables are listed.  The
+              output is sorted according to the current locale.  When  options
+              are  specified,  they  set or unset shell attributes.  Any argu-
+              ments remaining after option processing are  treated  as  values
               for the positional parameters and are assigned, in order, to $\b$1\b1,
-              $\b$2\b2,  .\b..\b..\b.   $\b$_\bn.   Options, if specified, have the following mean-
+              $\b$2\b2, .\b..\b..\b.  $\b$_\bn.  Options, if specified, have  the  following  mean-
               ings:
               -\b-a\ba      Each variable or function that is created or modified is
-                      given  the export attribute and marked for export to the
+                      given the export attribute and marked for export to  the
                       environment of subsequent commands.
-              -\b-b\bb      Report the status of terminated background jobs  immedi-
+              -\b-b\bb      Report  the status of terminated background jobs immedi-
                       ately, rather than before the next primary prompt.  This
                       is effective only when job control is enabled.
-              -\b-e\be      Exit immediately if a _\bp_\bi_\bp_\be_\bl_\bi_\bn_\be (which may consist  of  a
-                      single  _\bs_\bi_\bm_\bp_\bl_\be  _\bc_\bo_\bm_\bm_\ba_\bn_\bd),  a _\bl_\bi_\bs_\bt, or a _\bc_\bo_\bm_\bp_\bo_\bu_\bn_\bd _\bc_\bo_\bm_\bm_\ba_\bn_\bd
+              -\b-e\be      Exit  immediately  if a _\bp_\bi_\bp_\be_\bl_\bi_\bn_\be (which may consist of a
+                      single _\bs_\bi_\bm_\bp_\bl_\be _\bc_\bo_\bm_\bm_\ba_\bn_\bd), a _\bl_\bi_\bs_\bt, or  a  _\bc_\bo_\bm_\bp_\bo_\bu_\bn_\b _\bc_\bo_\bm_\bm_\ba_\bn_\bd
                       (see S\bSH\bHE\bEL\bLL\bL G\bGR\bRA\bAM\bMM\bMA\bAR\bR above), exits with a non-zero status.
-                      The  shell  does  not  exit if the command that fails is
-                      part of the command list immediately following  a  w\bwh\bhi\bil\ble\be
-                      or  u\bun\bnt\bti\bil\bl  keyword, part of the test following the i\bif\bf or
-                      e\bel\bli\bif\breserved words, part of any command executed  in  a
-                      &\b&&\b or |\b||\b| list except the command following the final &\b&&\b&
+                      The shell does not exit if the  command  that  fails  is
+                      part  of  the command list immediately following a w\bwh\bhi\bil\ble\be
+                      or u\bun\bnt\bti\bil\bl keyword, part of the test following the  i\bif\b or
+                      e\bel\bli\bif\b reserved  words, part of any command executed in a
+                      &\b&&\bor |\b||\b| list except the command following the final  &\b&&\b&
                       or |\b||\b|, any command in a pipeline but the last, or if the
-                      command's  return  value is being inverted with !\b!.  If a
-                      compound command other than a subshell  returns  a  non-
-                      zero  status because a command failed while -\b-e\be was being
-                      ignored, the shell does not exit.  A  trap  on  E\bER\bRR\bR,  if
-                      set,  is  executed  before the shell exits.  This option
+                      command's return value is being inverted with !\b!.   If  a
+                      compound  command  other  than a subshell returns a non-
+                      zero status because a command failed while -\b-e\be was  being
+                      ignored,  the  shell  does  not exit.  A trap on E\bER\bRR\bR, if
+                      set, is executed before the shell  exits.   This  option
                       applies to the shell environment and each subshell envi-
-                      ronment  separately  (see  C\bCO\bOM\bMM\bMA\bAN\bND\bD E\bEX\bXE\bEC\bCU\bUT\bTI\bIO\bON\bN E\bEN\bNV\bVI\bIR\bRO\bON\bNM\bME\bEN\bNT\bT
+                      ronment separately (see  C\bCO\bOM\bMM\bMA\bAN\bND\bD  E\bEX\bXE\bEC\bCU\bUT\bTI\bIO\bON\b E\bEN\bNV\bVI\bIR\bRO\bON\bNM\bME\bEN\bNT\bT
                       above), and may cause subshells to exit before executing
                       all the commands in the subshell.
 
-                      If  a  compound  command or shell function executes in a
-                      context where -\b-e\be is being ignored, none of the  commands
-                      executed  within  the  compound command or function body
-                      will be affected by the -\b-e\be setting, even if  -\b-e\be  is  set
-                      and  a  command returns a failure status.  If a compound
-                      command or shell function sets -\b-e\be while executing  in  a
-                      context  where -\b-e\be is ignored, that setting will not have
-                      any effect until the compound  command  or  the  command
+                      If a compound command or shell function  executes  in  a
+                      context  where -\b-e\be is being ignored, none of the commands
+                      executed within the compound command  or  function  body
+                      will  be  affected  by the -\b-e\be setting, even if -\b-e\be is set
+                      and a command returns a failure status.  If  a  compound
+                      command  or  shell function sets -\b-e\be while executing in a
+                      context where -\b-e\be is ignored, that setting will not  have
+                      any  effect  until  the  compound command or the command
                       containing the function call completes.
               -\b-f\bf      Disable pathname expansion.
-              -\b-h\bh      Remember  the location of commands as they are looked up
+              -\b-h\bh      Remember the location of commands as they are looked  up
                       for execution.  This is enabled by default.
-              -\b-k\bk      All arguments in the form of assignment  statements  are
-                      placed  in the environment for a command, not just those
+              -\b-k\bk      All  arguments  in the form of assignment statements are
+                      placed in the environment for a command, not just  those
                       that precede the command name.
-              -\b-m\bm      Monitor mode.  Job control is enabled.  This  option  is
-                      on  by  default  for  interactive shells on systems that
-                      support it (see J\bJO\bOB\bB C\bCO\bON\bNT\bTR\bRO\bOL\bL above).  All  processes  run
+              -\b-m\bm      Monitor  mode.   Job control is enabled.  This option is
+                      on by default for interactive  shells  on  systems  that
+                      support  it  (see J\bJO\bOB\bB C\bCO\bON\bNT\bTR\bRO\bOL\bL above).  All processes run
                       in a separate process group.  When a background job com-
                       pletes, the shell prints a line containing its exit sta-
                       tus.
               -\b-n\bn      Read commands but do not execute them.  This may be used
-                      to check a shell script for syntax errors.  This is  ig-
+                      to  check a shell script for syntax errors.  This is ig-
                       nored by interactive shells.
               -\b-o\bo _\bo_\bp_\bt_\bi_\bo_\bn_\b-_\bn_\ba_\bm_\be
                       The _\bo_\bp_\bt_\bi_\bo_\bn_\b-_\bn_\ba_\bm_\be can be one of the following:
@@ -5742,10 +5739,10 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
                               Same as -\b-a\ba.
                       b\bbr\bra\bac\bce\bee\bex\bxp\bpa\ban\bnd\bd
                               Same as -\b-B\bB.
-                      e\bem\bma\bac\bcs\bs   Use  an  emacs-style command line editing inter-
+                      e\bem\bma\bac\bcs\bs   Use an emacs-style command line  editing  inter-
                               face.  This is enabled by default when the shell
                               is interactive, unless the shell is started with
-                              the -\b--\b-n\bno\boe\bed\bdi\bit\bti\bin\bng\bg option.  This also  affects  the
+                              the  -\b--\b-n\bno\boe\bed\bdi\bit\bti\bin\bng\bg  option.  This also affects the
                               editing interface used for r\bre\bea\bad\bd -\b-e\be.
                       e\ber\brr\bre\bex\bxi\bit\bt Same as -\b-e\be.
                       e\ber\brr\brt\btr\bra\bac\bce\be
@@ -5759,8 +5756,8 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
                               H\bHI\bIS\bST\bTO\bOR\bRY\bY.  This option is on by default in inter-
                               active shells.
                       i\big\bgn\bno\bor\bre\bee\beo\bof\bf
-                              The  effect  is  as  if  the shell command ``IG-
-                              NOREEOF=10'' had been executed (see S\bSh\bhe\bel\bll\b V\bVa\bar\bri\bi-\b-
+                              The effect is as  if  the  shell  command  ``IG-
+                              NOREEOF=10''  had been executed (see S\bSh\bhe\bel\bll\bl V\bVa\bar\bri\bi-\b-
                               a\bab\bbl\ble\bes\bs above).
                       k\bke\bey\byw\bwo\bor\brd\bd Same as -\b-k\bk.
                       m\bmo\bon\bni\bit\bto\bor\br Same as -\b-m\bm.
@@ -5775,176 +5772,176 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
                       p\bph\bhy\bys\bsi\bic\bca\bal\bl
                               Same as -\b-P\bP.
                       p\bpi\bip\bpe\bef\bfa\bai\bil\bl
-                              If  set,  the  return value of a pipeline is the
-                              value of the last (rightmost)  command  to  exit
-                              with  a non-zero status, or zero if all commands
-                              in the pipeline exit successfully.  This  option
+                              If set, the return value of a  pipeline  is  the
+                              value  of  the  last (rightmost) command to exit
+                              with a non-zero status, or zero if all  commands
+                              in  the pipeline exit successfully.  This option
                               is disabled by default.
-                      p\bpo\bos\bsi\bix\bx   Change  the  behavior  of b\bba\bas\bsh\bh where the default
-                              operation differs from  the  POSIX  standard  to
-                              match  the  standard (_\bp_\bo_\bs_\bi_\bx _\bm_\bo_\bd_\be).  See S\bSE\bEE\bE A\bAL\bLS\bSO\bO
+                      p\bpo\bos\bsi\bix\bx   Change the behavior of b\bba\bas\bsh\bh  where  the  default
+                              operation  differs  from  the  POSIX standard to
+                              match the standard (_\bp_\bo_\bs_\bi_\bx _\bm_\bo_\bd_\be).  See  S\bSE\bEE\b A\bAL\bLS\bSO\bO
                               below for a reference to a document that details
                               how posix mode affects bash's behavior.
                       p\bpr\bri\biv\bvi\bil\ble\beg\bge\bed\bd
                               Same as -\b-p\bp.
                       v\bve\ber\brb\bbo\bos\bse\be Same as -\b-v\bv.
-                      v\bvi\bi      Use  a  vi-style command line editing interface.
+                      v\bvi\bi      Use a vi-style command line  editing  interface.
                               This also affects the editing interface used for
                               r\bre\bea\bad\bd -\b-e\be.
                       x\bxt\btr\bra\bac\bce\be  Same as -\b-x\bx.
                       If -\b-o\bo is supplied with no _\bo_\bp_\bt_\bi_\bo_\bn_\b-_\bn_\ba_\bm_\be, the values of the
-                      current options are printed.  If +\b+o\bo is supplied with  no
-                      _\bo_\bp_\bt_\bi_\bo_\bn_\b-_\bn_\ba_\bm_\be,  a  series  of s\bse\bet\bt commands to recreate the
-                      current option settings is  displayed  on  the  standard
+                      current  options are printed.  If +\b+o\bo is supplied with no
+                      _\bo_\bp_\bt_\bi_\bo_\bn_\b-_\bn_\ba_\bm_\be, a series of s\bse\bet\bt commands  to  recreate  the
+                      current  option  settings  is  displayed on the standard
                       output.
-              -\b-p\bp      Turn  on  _\bp_\br_\bi_\bv_\bi_\bl_\be_\bg_\be_\bd  mode.   In this mode, the $\b$E\bEN\bNV\bV and
-                      $\b$B\bBA\bAS\bSH\bH_\b_E\bEN\bNV\bfiles are not processed, shell  functions  are
-                      not  inherited  from the environment, and the S\bSH\bHE\bEL\bLL\bLO\bOP\bPT\bTS\bS,
-                      B\bBA\bAS\bSH\bHO\bOP\bPT\bTS\bS, C\bCD\bDP\bPA\bAT\bTH\bH, and G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE variables, if they  ap-
-                      pear  in  the environment, are ignored.  If the shell is
-                      started with the effective user (group) id not equal  to
-                      the  real user (group) id, and the -\b-p\bp option is not sup-
+              -\b-p\bp      Turn on _\bp_\br_\bi_\bv_\bi_\bl_\be_\bg_\be_\bd mode.  In this  mode,  the  $\b$E\bEN\bNV\b and
+                      $\b$B\bBA\bAS\bSH\bH_\b_E\bEN\bNV\b files  are not processed, shell functions are
+                      not inherited from the environment, and  the  S\bSH\bHE\bEL\bLL\bLO\bOP\bPT\bTS\bS,
+                      B\bBA\bAS\bSH\bHO\bOP\bPT\bTS\bS,  C\bCD\bDP\bPA\bAT\bTH\bH, and G\bGL\bLO\bOB\bBI\bIG\bGN\bNO\bOR\bRE\bE variables, if they ap-
+                      pear in the environment, are ignored.  If the  shell  is
+                      started  with the effective user (group) id not equal to
+                      the real user (group) id, and the -\b-p\bp option is not  sup-
                       plied, these actions are taken and the effective user id
-                      is  set  to  the real user id.  If the -\b-p\bp option is sup-
-                      plied at startup, the effective user id  is  not  reset.
-                      Turning  this  option  off causes the effective user and
+                      is set to the real user id.  If the -\b-p\bp  option  is  sup-
+                      plied  at  startup,  the effective user id is not reset.
+                      Turning this option off causes the  effective  user  and
                       group ids to be set to the real user and group ids.
               -\b-r\br      Enable restricted shell mode.  This option cannot be un-
                       set once it has been set.
               -\b-t\bt      Exit after reading and executing one command.
               -\b-u\bu      Treat unset variables and parameters other than the spe-
-                      cial parameters "@" and "*",  or  array  variables  sub-
-                      scripted  with  "@"  or "*", as an error when performing
-                      parameter expansion.  If expansion is  attempted  on  an
-                      unset  variable  or parameter, the shell prints an error
-                      message, and, if not interactive, exits with a  non-zero
+                      cial  parameters  "@"  and  "*", or array variables sub-
+                      scripted with "@" or "*", as an  error  when  performing
+                      parameter  expansion.   If  expansion is attempted on an
+                      unset variable or parameter, the shell prints  an  error
+                      message,  and, if not interactive, exits with a non-zero
                       status.
               -\b-v\bv      Print shell input lines as they are read.
-              -\b-x\bx      After  expanding  each _\bs_\bi_\bm_\bp_\bl_\be _\bc_\bo_\bm_\bm_\ba_\bn_\bd, f\bfo\bor\br command, c\bca\bas\bse\be
+              -\b-x\bx      After expanding each _\bs_\bi_\bm_\bp_\bl_\be _\bc_\bo_\bm_\bm_\ba_\bn_\bd, f\bfo\bor\br  command,  c\bca\bas\bse\be
                       command, s\bse\bel\ble\bec\bct\bt command, or arithmetic f\bfo\bor\br command, dis-
-                      play  the expanded value of P\bPS\bS4\b4, followed by the command
-                      and its expanded arguments or associated word  list,  to
+                      play the expanded value of P\bPS\bS4\b4, followed by the  command
+                      and  its  expanded arguments or associated word list, to
                       standard error.
-              -\b-B\bB      The  shell performs brace expansion (see B\bBr\bra\bac\bce\be E\bEx\bxp\bpa\ban\bns\bsi\bio\bon\bn
+              -\b-B\bB      The shell performs brace expansion (see B\bBr\bra\bac\bce\b E\bEx\bxp\bpa\ban\bns\bsi\bio\bon\bn
                       above).  This is on by default.
-              -\b-C\bC      If set, b\bba\bas\bsh\bh does not overwrite an  existing  file  with
-                      the  >\b>,  >\b>&\b&,  and <\b<>\b> redirection operators.  This may be
+              -\b-C\bC      If  set,  b\bba\bas\bsh\bh  does not overwrite an existing file with
+                      the >\b>, >\b>&\b&, and <\b<>\b> redirection operators.   This  may  be
                       overridden when creating output files by using the redi-
                       rection operator >\b>|\b| instead of >\b>.
               -\b-E\bE      If set, any trap on E\bER\bRR\bR is inherited by shell functions,
-                      command substitutions, and commands executed in  a  sub-
-                      shell  environment.  The E\bER\bRR\bR trap is normally not inher-
+                      command  substitutions,  and commands executed in a sub-
+                      shell environment.  The E\bER\bRR\bR trap is normally not  inher-
                       ited in such cases.
               -\b-H\bH      Enable !\b!  style history substitution.  This option is on
                       by default when the shell is interactive.
-              -\b-P\bP      If  set,  the shell does not resolve symbolic links when
-                      executing commands such as c\bcd\bd that  change  the  current
+              -\b-P\bP      If set, the shell does not resolve symbolic  links  when
+                      executing  commands  such  as c\bcd\bd that change the current
                       working  directory.   It  uses  the  physical  directory
                       structure instead.  By default, b\bba\bas\bsh\bh follows the logical
-                      chain  of  directories  when  performing  commands which
+                      chain of  directories  when  performing  commands  which
                       change the current directory.
-              -\b-T\bT      If set, any traps on D\bDE\bEB\bBU\bUG\bG and R\bRE\bET\bTU\bUR\bRN\bN are  inherited  by
+              -\b-T\bT      If  set,  any traps on D\bDE\bEB\bBU\bUG\bG and R\bRE\bET\bTU\bUR\bRN\bN are inherited by
                       shell functions, command substitutions, and commands ex-
-                      ecuted in a subshell environment.  The D\bDE\bEB\bBU\bUG\bG and  R\bRE\bET\bTU\bUR\bRN\bN
+                      ecuted  in a subshell environment.  The D\bDE\bEB\bBU\bUG\bG and R\bRE\bET\bTU\bUR\bRN\bN
                       traps are normally not inherited in such cases.
-              -\b--\b-      If  no arguments follow this option, then the positional
+              -\b--\b-      If no arguments follow this option, then the  positional
                       parameters are unset.  Otherwise, the positional parame-
-                      ters  are  set  to  the _\ba_\br_\bgs, even if some of them begin
+                      ters are set to the _\ba_\br_\bgs, even if  some  of  them  begin
                       with a -\b-.
-              -\b-       Signal the end of options, cause all remaining  _\ba_\br_\bgs  to
+              -\b-       Signal  the  end of options, cause all remaining _\ba_\br_\bgs to
                       be assigned to the positional parameters.  The -\b-x\bx and -\b-v\bv
                       options are turned off.  If there are no _\ba_\br_\bgs, the posi-
                       tional parameters remain unchanged.
 
-              The  options are off by default unless otherwise noted.  Using +
-              rather than - causes these options to be turned  off.   The  op-
+              The options are off by default unless otherwise noted.  Using  +
+              rather  than  -  causes these options to be turned off.  The op-
               tions can also be specified as arguments to an invocation of the
-              shell.  The current set of options may be found in $\b$-\b-.  The  re-
-              turn  status  is always true unless an invalid option is encoun-
+              shell.   The current set of options may be found in $\b$-\b-.  The re-
+              turn status is always true unless an invalid option  is  encoun-
               tered.
 
        s\bsh\bhi\bif\bft\bt [_\bn]
-              The positional parameters from _\bn+1 ... are renamed  to  $\b$1\b .\b..\b..\b..\b.
-              Parameters  represented by the numbers $\b$#\b# down to $\b$#\b#-_\bn+1 are un-
-              set.  _\bn must be a non-negative number less than or equal to  $\b$#\b#.
-              If  _\bn is 0, no parameters are changed.  If _\bn is not given, it is
+              The  positional  parameters  from _\bn+1 ... are renamed to $\b$1\b1 .\b..\b..\b..\b.
+              Parameters represented by the numbers $\b$#\b# down to $\b$#\b#-_\bn+1 are  un-
+              set.   _\bn must be a non-negative number less than or equal to $\b$#\b#.
+              If _\bn is 0, no parameters are changed.  If _\bn is not given, it  is
               assumed to be 1.  If _\bn is greater than $\b$#\b#, the positional param-
-              eters  are  not changed.  The return status is greater than zero
+              eters are not changed.  The return status is greater  than  zero
               if _\bn is greater than $\b$#\b# or less than zero; otherwise 0.
 
        s\bsh\bho\bop\bpt\bt [-\b-p\bpq\bqs\bsu\bu] [-\b-o\bo] [_\bo_\bp_\bt_\bn_\ba_\bm_\be ...]
-              Toggle the values of settings controlling optional shell  behav-
-              ior.   The settings can be either those listed below, or, if the
+              Toggle  the values of settings controlling optional shell behav-
+              ior.  The settings can be either those listed below, or, if  the
               -\b-o\bo option is used, those available with the -\b-o\bo option to the s\bse\bet\bt
               builtin command.  With no options, or with the -\b-p\bp option, a list
-              of all settable options is  displayed,  with  an  indication  of
+              of  all  settable  options  is  displayed, with an indication of
               whether or not each is set; if _\bo_\bp_\bt_\bn_\ba_\bm_\be_\bs are supplied, the output
-              is restricted to those options.  The -\b-p\bp option causes output  to
-              be  displayed  in a form that may be reused as input.  Other op-
+              is  restricted to those options.  The -\b-p\bp option causes output to
+              be displayed in a form that may be reused as input.   Other  op-
               tions have the following meanings:
               -\b-s\bs     Enable (set) each _\bo_\bp_\bt_\bn_\ba_\bm_\be.
               -\b-u\bu     Disable (unset) each _\bo_\bp_\bt_\bn_\ba_\bm_\be.
-              -\b-q\bq     Suppresses normal output (quiet mode); the return  status
+              -\b-q\bq     Suppresses  normal output (quiet mode); the return status
                      indicates whether the _\bo_\bp_\bt_\bn_\ba_\bm_\be is set or unset.  If multi-
-                     ple _\bo_\bp_\bt_\bn_\ba_\bm_\be arguments are given with -\b-q\bq, the return  sta-
-                     tus  is zero if all _\bo_\bp_\bt_\bn_\ba_\bm_\be_\bs are enabled; non-zero other-
+                     ple  _\bo_\bp_\bt_\bn_\ba_\bm_\be arguments are given with -\b-q\bq, the return sta-
+                     tus is zero if all _\bo_\bp_\bt_\bn_\ba_\bm_\be_\bs are enabled; non-zero  other-
                      wise.
-              -\b-o\bo     Restricts the values of _\bo_\bp_\bt_\bn_\ba_\bm_\be to be those  defined  for
+              -\b-o\bo     Restricts  the  values of _\bo_\bp_\bt_\bn_\ba_\bm_\be to be those defined for
                      the -\b-o\bo option to the s\bse\bet\bt builtin.
 
-              If  either  -\b-s\bs  or  -\b-u\bu  is used with no _\bo_\bp_\bt_\bn_\ba_\bm_\be arguments, s\bsh\bho\bop\bpt\bt
-              shows only those options which are set or  unset,  respectively.
-              Unless  otherwise  noted, the s\bsh\bho\bop\bpt\bt options are disabled (unset)
+              If either -\b-s\bs or -\b-u\bu is used  with  no  _\bo_\bp_\bt_\bn_\ba_\bm_\be  arguments,  s\bsh\bho\bop\bpt\bt
+              shows  only  those options which are set or unset, respectively.
+              Unless otherwise noted, the s\bsh\bho\bop\bpt\bt options are  disabled  (unset)
               by default.
 
-              The return status when listing options is zero if  all  _\bo_\bp_\bt_\bn_\ba_\bm_\be_\bs
-              are  enabled, non-zero otherwise.  When setting or unsetting op-
-              tions, the return status is zero unless  an  _\bo_\bp_\bt_\bn_\ba_\bm_\be  is  not  a
+              The  return  status when listing options is zero if all _\bo_\bp_\bt_\bn_\ba_\bm_\be_\bs
+              are enabled, non-zero otherwise.  When setting or unsetting  op-
+              tions,  the  return  status  is  zero unless an _\bo_\bp_\bt_\bn_\ba_\bm_\be is not a
               valid shell option.
 
               The list of s\bsh\bho\bop\bpt\bt options is:
 
               a\bas\bss\bso\boc\bc_\b_e\bex\bxp\bpa\ban\bnd\bd_\b_o\bon\bnc\bce\be
-                      If  set, the shell suppresses multiple evaluation of as-
-                      sociative array subscripts during arithmetic  expression
-                      evaluation,  while  executing  builtins that can perform
-                      variable assignments, and while executing builtins  that
+                      If set, the shell suppresses multiple evaluation of  as-
+                      sociative  array subscripts during arithmetic expression
+                      evaluation, while executing builtins  that  can  perform
+                      variable  assignments, and while executing builtins that
                       perform array dereferencing.
-              a\bau\but\bto\boc\bcd\bd  If  set,  a command name that is the name of a directory
-                      is executed as if it were the argument to  the  c\bcd\b com-
+              a\bau\but\bto\boc\bcd\bd  If set, a command name that is the name of  a  directory
+                      is  executed  as  if it were the argument to the c\bcd\bd com-
                       mand.  This option is only used by interactive shells.
               c\bcd\bda\bab\bbl\ble\be_\b_v\bva\bar\brs\bs
-                      If  set,  an  argument to the c\bcd\bd builtin command that is
-                      not a directory is assumed to be the name of a  variable
+                      If set, an argument to the c\bcd\bd builtin  command  that  is
+                      not  a directory is assumed to be the name of a variable
                       whose value is the directory to change to.
               c\bcd\bds\bsp\bpe\bel\bll\bl If set, minor errors in the spelling of a directory com-
-                      ponent in a c\bcd\bd command will be  corrected.   The  errors
+                      ponent  in  a  c\bcd\bd command will be corrected.  The errors
                       checked for are transposed characters, a missing charac-
-                      ter, and one character too many.   If  a  correction  is
-                      found,  the  corrected filename is printed, and the com-
-                      mand proceeds.  This option is only used by  interactive
+                      ter,  and  one  character  too many.  If a correction is
+                      found, the corrected filename is printed, and  the  com-
+                      mand  proceeds.  This option is only used by interactive
                       shells.
               c\bch\bhe\bec\bck\bkh\bha\bas\bsh\bh
                       If set, b\bba\bas\bsh\bh checks that a command found in the hash ta-
-                      ble exists before trying to execute  it.   If  a  hashed
-                      command  no  longer exists, a normal path search is per-
+                      ble  exists  before  trying  to execute it.  If a hashed
+                      command no longer exists, a normal path search  is  per-
                       formed.
               c\bch\bhe\bec\bck\bkj\bjo\bob\bbs\bs
                       If set, b\bba\bas\bsh\bh lists the status of any stopped and running
-                      jobs  before  exiting an interactive shell.  If any jobs
+                      jobs before exiting an interactive shell.  If  any  jobs
                       are running, this causes the exit to be deferred until a
-                      second  exit is attempted without an intervening command
+                      second exit is attempted without an intervening  command
                       (see J\bJO\bOB\bB C\bCO\bON\bNT\bTR\bRO\bOL\bL above).  The shell always postpones ex-
                       iting if any jobs are stopped.
               c\bch\bhe\bec\bck\bkw\bwi\bin\bns\bsi\biz\bze\be
-                      If  set, b\bba\bas\bsh\bh checks the window size after each external
-                      (non-builtin) command and,  if  necessary,  updates  the
-                      values  of L\bLI\bIN\bNE\bES\bS and C\bCO\bOL\bLU\bUM\bMN\bNS\bS.  This option is enabled by
+                      If set, b\bba\bas\bsh\bh checks the window size after each  external
+                      (non-builtin)  command  and,  if  necessary, updates the
+                      values of L\bLI\bIN\bNE\bES\bS and C\bCO\bOL\bLU\bUM\bMN\bNS\bS.  This option is enabled  by
                       default.
-              c\bcm\bmd\bdh\bhi\bis\bst\bt If set, b\bba\bas\bsh\bh attempts to save all lines of  a  multiple-
-                      line  command  in  the  same history entry.  This allows
-                      easy re-editing of multi-line commands.  This option  is
-                      enabled  by  default,  but only has an effect if command
+              c\bcm\bmd\bdh\bhi\bis\bst\bt If  set,  b\bba\bas\bsh\bh attempts to save all lines of a multiple-
+                      line command in the same  history  entry.   This  allows
+                      easy  re-editing of multi-line commands.  This option is
+                      enabled by default, but only has an  effect  if  command
                       history is enabled, as described above under H\bHI\bIS\bST\bTO\bOR\bRY\bY.
               c\bco\bom\bmp\bpa\bat\bt3\b31\b1
               c\bco\bom\bmp\bpa\bat\bt3\b32\b2
@@ -5954,122 +5951,122 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
               c\bco\bom\bmp\bpa\bat\bt4\b43\b3
               c\bco\bom\bmp\bpa\bat\bt4\b44\b4
               c\bco\bom\bmp\bpa\bat\bt5\b50\b0
-                      These control aspects of the shell's compatibility  mode
+                      These  control aspects of the shell's compatibility mode
                       (see S\bSH\bHE\bEL\bLL\bL C\bCO\bOM\bMP\bPA\bAT\bTI\bIB\bBI\bIL\bLI\bIT\bTY\bY M\bMO\bOD\bDE\bE below).
 
               c\bco\bom\bmp\bpl\ble\bet\bte\be_\b_f\bfu\bul\bll\blq\bqu\buo\bot\bte\be
-                      If  set,  b\bba\bas\bsh\bh  quotes all shell metacharacters in file-
-                      names and directory names  when  performing  completion.
+                      If set, b\bba\bas\bsh\bh quotes all shell  metacharacters  in  file-
+                      names  and  directory  names when performing completion.
                       If not set, b\bba\bas\bsh\bh removes metacharacters such as the dol-
-                      lar sign from the set of characters that will be  quoted
-                      in  completed filenames when these metacharacters appear
-                      in shell variable references in words to  be  completed.
-                      This  means that dollar signs in variable names that ex-
-                      pand to directories will not  be  quoted;  however,  any
-                      dollar  signs appearing in filenames will not be quoted,
-                      either.  This is active only when bash  is  using  back-
-                      slashes  to quote completed filenames.  This variable is
-                      set by default, which is the default  bash  behavior  in
+                      lar  sign from the set of characters that will be quoted
+                      in completed filenames when these metacharacters  appear
+                      in  shell  variable references in words to be completed.
+                      This means that dollar signs in variable names that  ex-
+                      pand  to  directories  will  not be quoted; however, any
+                      dollar signs appearing in filenames will not be  quoted,
+                      either.   This  is  active only when bash is using back-
+                      slashes to quote completed filenames.  This variable  is
+                      set  by  default,  which is the default bash behavior in
                       versions through 4.2.
 
               d\bdi\bir\bre\bex\bxp\bpa\ban\bnd\bd
-                      If  set,  b\bba\bas\bsh\bh replaces directory names with the results
-                      of word expansion when performing  filename  completion.
-                      This  changes  the contents of the readline editing buf-
-                      fer.  If not set, b\bba\bas\bsh\bh attempts  to  preserve  what  the
+                      If set, b\bba\bas\bsh\bh replaces directory names with  the  results
+                      of  word  expansion when performing filename completion.
+                      This changes the contents of the readline  editing  buf-
+                      fer.   If  not  set,  b\bba\bas\bsh\bh attempts to preserve what the
                       user typed.
 
               d\bdi\bir\brs\bsp\bpe\bel\bll\bl
-                      If  set,  b\bba\bas\bsh\bh attempts spelling correction on directory
-                      names during word completion if the directory name  ini-
+                      If set, b\bba\bas\bsh\bh attempts spelling correction  on  directory
+                      names  during word completion if the directory name ini-
                       tially supplied does not exist.
 
-              d\bdo\bot\btg\bgl\blo\bob\bb If  set, b\bba\bas\bsh\bh includes filenames beginning with a `.' in
-                      the results of pathname expansion.  The filenames  `\b``\b`.\b.'\b''\b'
-                      and  `\b``\b`.\b..\b.'\b''\b'   must always be matched explicitly, even if
+              d\bdo\bot\btg\bgl\blo\bob\bb If set, b\bba\bas\bsh\bh includes filenames beginning with a `.'  in
+                      the  results of pathname expansion.  The filenames `\b``\b`.\b.'\b''\b'
+                      and `\b``\b`.\b..\b.'\b''\b'  must always be matched explicitly,  even  if
                       d\bdo\bot\btg\bgl\blo\bob\bb is set.
 
               e\bex\bxe\bec\bcf\bfa\bai\bil\bl
                       If set, a non-interactive shell will not exit if it can-
-                      not  execute  the  file  specified as an argument to the
-                      e\bex\bxe\bec\bbuiltin command.  An  interactive  shell  does  not
+                      not execute the file specified as  an  argument  to  the
+                      e\bex\bxe\bec\b builtin  command.   An  interactive shell does not
                       exit if e\bex\bxe\bec\bc fails.
 
               e\bex\bxp\bpa\ban\bnd\bd_\b_a\bal\bli\bia\bas\bse\bes\bs
-                      If  set,  aliases  are expanded as described above under
+                      If set, aliases are expanded as  described  above  under
                       A\bAL\bLI\bIA\bAS\bSE\bES\bS.  This option is enabled by default for interac-
                       tive shells.
 
               e\bex\bxt\btd\bde\beb\bbu\bug\bg
-                      If  set at shell invocation, or in a shell startup file,
+                      If set at shell invocation, or in a shell startup  file,
                       arrange to execute the debugger profile before the shell
-                      starts,  identical to the -\b--\b-d\bde\beb\bbu\bug\bgg\bge\ber\br option.  If set af-
-                      ter invocation, behavior intended for use  by  debuggers
+                      starts, identical to the -\b--\b-d\bde\beb\bbu\bug\bgg\bge\ber\br option.  If set  af-
+                      ter  invocation,  behavior intended for use by debuggers
                       is enabled:
 
                       1\b1.\b.     The -\b-F\bF option to the d\bde\bec\bcl\bla\bar\bre\be builtin displays the
                              source file name and line number corresponding to
                              each function name supplied as an argument.
 
-                      2\b2.\b.     If  the  command  run by the D\bDE\bEB\bBU\bUG\bG trap returns a
-                             non-zero value, the next command is  skipped  and
+                      2\b2.\b.     If the command run by the D\bDE\bEB\bBU\bUG\bG  trap  returns  a
+                             non-zero  value,  the next command is skipped and
                              not executed.
 
-                      3\b3.\b.     If  the  command  run by the D\bDE\bEB\bBU\bUG\bG trap returns a
-                             value of 2, and the shell is executing in a  sub-
-                             routine  (a shell function or a shell script exe-
-                             cuted by the .\b. or  s\bso\bou\bur\brc\bce\be  builtins),  the  shell
+                      3\b3.\b.     If the command run by the D\bDE\bEB\bBU\bUG\bG  trap  returns  a
+                             value  of 2, and the shell is executing in a sub-
+                             routine (a shell function or a shell script  exe-
+                             cuted  by  the  .\b.  or s\bso\bou\bur\brc\bce\be builtins), the shell
                              simulates a call to r\bre\bet\btu\bur\brn\bn.
 
-                      4\b4.\b.     B\bBA\bAS\bSH\bH_\b_A\bAR\bRG\bGC\b and B\bBA\bAS\bSH\bH_\b_A\bAR\bRG\bGV\bV are updated as described
+                      4\b4.\b.     B\bBA\bAS\bSH\bH_\b_A\bAR\bRG\bGC\band B\bBA\bAS\bSH\bH_\b_A\bAR\bRG\bGV\bV are updated as  described
                              in their descriptions above).
 
-                      5\b5.\b.     Function tracing is  enabled:  command  substitu-
+                      5\b5.\b.     Function  tracing  is  enabled: command substitu-
                              tion, shell functions, and subshells invoked with
                              (\b( _\bc_\bo_\bm_\bm_\ba_\bn_\bd )\b) inherit the D\bDE\bEB\bBU\bUG\bG and R\bRE\bET\bTU\bUR\bRN\bN traps.
 
-                      6\b6.\b.     Error tracing is enabled:  command  substitution,
-                             shell  functions,  and  subshells  invoked with (\b(
+                      6\b6.\b.     Error  tracing  is enabled: command substitution,
+                             shell functions, and  subshells  invoked  with  (\b(
                              _\bc_\bo_\bm_\bm_\ba_\bn_\bd )\b) inherit the E\bER\bRR\bR trap.
 
               e\bex\bxt\btg\bgl\blo\bob\bb If set, the extended pattern matching features described
                       above under P\bPa\bat\bth\bhn\bna\bam\bme\be E\bEx\bxp\bpa\ban\bns\bsi\bio\bon\bn are enabled.
 
               e\bex\bxt\btq\bqu\buo\bot\bte\be
-                      If  set,  $\b$'_\bs_\bt_\br_\bi_\bn_\bg'  and  $\b$"_\bs_\bt_\br_\bi_\bn_\bg" quoting is performed
-                      within  $\b${\b{_\bp_\ba_\br_\ba_\bm_\be_\bt_\be_\br}\b}  expansions  enclosed   in   double
+                      If set, $\b$'_\bs_\bt_\br_\bi_\bn_\bg' and  $\b$"_\bs_\bt_\br_\bi_\bn_\bg"  quoting  is  performed
+                      within   $\b${\b{_\bp_\ba_\br_\ba_\bm_\be_\bt_\be_\br}\b}   expansions  enclosed  in  double
                       quotes.  This option is enabled by default.
 
               f\bfa\bai\bil\blg\bgl\blo\bob\bb
-                      If  set,  patterns  which fail to match filenames during
+                      If set, patterns which fail to  match  filenames  during
                       pathname expansion result in an expansion error.
 
               f\bfo\bor\brc\bce\be_\b_f\bfi\big\bgn\bno\bor\bre\be
-                      If set, the suffixes  specified  by  the  F\bFI\bIG\bGN\bNO\bOR\bRE\b shell
-                      variable  cause words to be ignored when performing word
+                      If  set,  the  suffixes  specified  by the F\bFI\bIG\bGN\bNO\bOR\bRE\bE shell
+                      variable cause words to be ignored when performing  word
                       completion even if the ignored words are the only possi-
-                      ble  completions.   See  S\bSH\bHE\bEL\bLL\bL V\bVA\bAR\bRI\bIA\bAB\bBL\bLE\bES\bS above for a de-
-                      scription of F\bFI\bIG\bGN\bNO\bOR\bRE\bE.  This option  is  enabled  by  de-
+                      ble completions.  See S\bSH\bHE\bEL\bLL\bL V\bVA\bAR\bRI\bIA\bAB\bBL\bLE\bES\bS above  for  a  de-
+                      scription  of  F\bFI\bIG\bGN\bNO\bOR\bRE\bE.   This  option is enabled by de-
                       fault.
 
               g\bgl\blo\bob\bba\bas\bsc\bci\bii\bir\bra\ban\bng\bge\bes\bs
-                      If  set,  range  expressions  used  in  pattern matching
-                      bracket expressions (see P\bPa\bat\btt\bte\ber\brn\bn M\bMa\bat\btc\bch\bhi\bin\bng\bg above)  behave
-                      as  if  in the traditional C locale when performing com-
-                      parisons.  That is, the current locale's  collating  se-
-                      quence  is not taken into account, so b\bb will not collate
-                      between A\bA and B\bB, and  upper-case  and  lower-case  ASCII
+                      If set,  range  expressions  used  in  pattern  matching
+                      bracket  expressions (see P\bPa\bat\btt\bte\ber\brn\bn M\bMa\bat\btc\bch\bhi\bin\bng\bg above) behave
+                      as if in the traditional C locale when  performing  com-
+                      parisons.   That  is, the current locale's collating se-
+                      quence is not taken into account, so b\bb will not  collate
+                      between  A\bA  and  B\bB,  and upper-case and lower-case ASCII
                       characters will collate together.
 
               g\bgl\blo\bob\bbs\bsk\bki\bip\bpd\bdo\bot\bts\bs
-                      If  set,  pathname  expansion will never match the file-
+                      If set, pathname expansion will never  match  the  file-
                       names `\b``\b`.\b.'\b''\b'  and `\b``\b`.\b..\b.'\b''\b', even if the pattern begins with
                       a `\b``\b`.\b.'\b''\b'.  This option is enabled by default.
 
               g\bgl\blo\bob\bbs\bst\bta\bar\br
                       If set, the pattern *\b**\b* used in a pathname expansion con-
-                      text will match all files and zero or  more  directories
-                      and  subdirectories.  If the pattern is followed by a /\b/,
+                      text  will  match all files and zero or more directories
+                      and subdirectories.  If the pattern is followed by a  /\b/,
                       only directories and subdirectories match.
 
               g\bgn\bnu\bu_\b_e\ber\brr\brf\bfm\bmt\bt
@@ -6077,25 +6074,25 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
                       GNU error message format.
 
               h\bhi\bis\bst\bta\bap\bpp\bpe\ben\bnd\bd
-                      If  set,  the history list is appended to the file named
+                      If set, the history list is appended to the  file  named
                       by the value of the H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE variable when the shell ex-
                       its, rather than overwriting the file.
 
               h\bhi\bis\bst\btr\bre\bee\bed\bdi\bit\bt
-                      If  set, and r\bre\bea\bad\bdl\bli\bin\bne\be is being used, a user is given the
+                      If set, and r\bre\bea\bad\bdl\bli\bin\bne\be is being used, a user is given  the
                       opportunity to re-edit a failed history substitution.
 
               h\bhi\bis\bst\btv\bve\ber\bri\bif\bfy\by
-                      If set, and r\bre\bea\bad\bdl\bli\bin\bne\be is being used, the results of  his-
-                      tory  substitution  are  not  immediately  passed to the
-                      shell parser.  Instead, the  resulting  line  is  loaded
+                      If  set, and r\bre\bea\bad\bdl\bli\bin\bne\be is being used, the results of his-
+                      tory substitution are  not  immediately  passed  to  the
+                      shell  parser.   Instead,  the  resulting line is loaded
                       into the r\bre\bea\bad\bdl\bli\bin\bne\be editing buffer, allowing further modi-
                       fication.
 
               h\bho\bos\bst\btc\bco\bom\bmp\bpl\ble\bet\bte\be
                       If set, and r\bre\bea\bad\bdl\bli\bin\bne\be is being used, b\bba\bas\bsh\bh will attempt to
-                      perform  hostname  completion when a word containing a @\b@
-                      is  being  completed  (see  C\bCo\bom\bmp\bpl\ble\bet\bti\bin\bng\bg  under   R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
+                      perform hostname completion when a word containing  a  @\b@
+                      is   being  completed  (see  C\bCo\bom\bmp\bpl\ble\bet\bti\bin\bng\bg  under  R\bRE\bEA\bAD\bDL\bLI\bIN\bNE\bE
                       above).  This is enabled by default.
 
               h\bhu\bup\bpo\bon\bne\bex\bxi\bit\bt
@@ -6103,23 +6100,23 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
                       active login shell exits.
 
               i\bin\bnh\bhe\ber\bri\bit\bt_\b_e\ber\brr\bre\bex\bxi\bit\bt
-                      If set, command substitution inherits the value  of  the
-                      e\ber\brr\bre\bex\bxi\bit\b option, instead of unsetting it in the subshell
-                      environment.  This option is enabled when _\bp_\bo_\bs_\bi_\bx _\bm_\bo_\bd_\b is
+                      If  set,  command substitution inherits the value of the
+                      e\ber\brr\bre\bex\bxi\bit\boption, instead of unsetting it in the  subshell
+                      environment.   This option is enabled when _\bp_\bo_\bs_\bi_\bx _\bm_\bo_\bd_\be is
                       enabled.
 
               i\bin\bnt\bte\ber\bra\bac\bct\bti\biv\bve\be_\b_c\bco\bom\bmm\bme\ben\bnt\bts\bs
                       If set, allow a word beginning with #\b# to cause that word
-                      and all remaining characters on that line to be  ignored
-                      in  an interactive shell (see C\bCO\bOM\bMM\bME\bEN\bNT\bTS\bS above).  This op-
+                      and  all remaining characters on that line to be ignored
+                      in an interactive shell (see C\bCO\bOM\bMM\bME\bEN\bNT\bTS\bS above).  This  op-
                       tion is enabled by default.
 
               l\bla\bas\bst\btp\bpi\bip\bpe\be
-                      If set, and job control is not active,  the  shell  runs
+                      If  set,  and  job control is not active, the shell runs
                       the last command of a pipeline not executed in the back-
                       ground in the current shell environment.
 
-              l\bli\bit\bth\bhi\bis\bst\bt If set, and the c\bcm\bmd\bdh\bhi\bis\bst\bt option  is  enabled,  multi-line
+              l\bli\bit\bth\bhi\bis\bst\bt If  set,  and  the c\bcm\bmd\bdh\bhi\bis\bst\bt option is enabled, multi-line
                       commands are saved to the history with embedded newlines
                       rather than using semicolon separators where possible.
 
@@ -6130,54 +6127,54 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
                       tribute is not inherited.
 
               l\blo\boc\bca\bal\blv\bva\bar\br_\b_u\bun\bns\bse\bet\bt
-                      If  set,  calling  u\bun\bns\bse\bet\bt  on local variables in previous
-                      function scopes marks them so  subsequent  lookups  find
-                      them  unset until that function returns. This is identi-
-                      cal to the behavior of unsetting local variables at  the
+                      If set, calling u\bun\bns\bse\bet\bt on  local  variables  in  previous
+                      function  scopes  marks  them so subsequent lookups find
+                      them unset until that function returns. This is  identi-
+                      cal  to the behavior of unsetting local variables at the
                       current function scope.
 
               l\blo\bog\bgi\bin\bn_\b_s\bsh\bhe\bel\bll\bl
-                      The  shell  sets this option if it is started as a login
-                      shell (see I\bIN\bNV\bVO\bOC\bCA\bAT\bTI\bIO\bON\bN above).   The  value  may  not  be
+                      The shell sets this option if it is started as  a  login
+                      shell  (see  I\bIN\bNV\bVO\bOC\bCA\bAT\bTI\bIO\bON\bN  above).   The  value may not be
                       changed.
 
               m\bma\bai\bil\blw\bwa\bar\brn\bn
-                      If  set,  and  a file that b\bba\bas\bsh\bh is checking for mail has
-                      been accessed since the last time it  was  checked,  the
-                      message  ``The  mail in _\bm_\ba_\bi_\bl_\bf_\bi_\bl_\be has been read'' is dis-
+                      If set, and a file that b\bba\bas\bsh\bh is checking  for  mail  has
+                      been  accessed  since  the last time it was checked, the
+                      message ``The mail in _\bm_\ba_\bi_\bl_\bf_\bi_\bl_\be has been read''  is  dis-
                       played.
 
               n\bno\bo_\b_e\bem\bmp\bpt\bty\by_\b_c\bcm\bmd\bd_\b_c\bco\bom\bmp\bpl\ble\bet\bti\bio\bon\bn
-                      If set, and r\bre\bea\bad\bdl\bli\bin\bne\be is being used, b\bba\bas\bsh\bh  will  not  at-
-                      tempt  to  search the P\bPA\bAT\bTH\bH for possible completions when
+                      If  set,  and  r\bre\bea\bad\bdl\bli\bin\bne\be is being used, b\bba\bas\bsh\bh will not at-
+                      tempt to search the P\bPA\bAT\bTH\bH for possible  completions  when
                       completion is attempted on an empty line.
 
               n\bno\boc\bca\bas\bse\beg\bgl\blo\bob\bb
-                      If set, b\bba\bas\bsh\bh matches  filenames  in  a  case-insensitive
+                      If  set,  b\bba\bas\bsh\bh  matches  filenames in a case-insensitive
                       fashion when performing pathname expansion (see P\bPa\bat\bth\bhn\bna\bam\bme\be
                       E\bEx\bxp\bpa\ban\bns\bsi\bio\bon\bn above).
 
               n\bno\boc\bca\bas\bse\bem\bma\bat\btc\bch\bh
-                      If set, b\bba\bas\bsh\bh  matches  patterns  in  a  case-insensitive
+                      If  set,  b\bba\bas\bsh\bh  matches  patterns  in a case-insensitive
                       fashion when performing matching while executing c\bca\bas\bse\be or
                       [\b[[\b[ conditional commands, when performing pattern substi-
-                      tution  word expansions, or when filtering possible com-
+                      tution word expansions, or when filtering possible  com-
                       pletions as part of programmable completion.
 
               n\bno\boe\bex\bxp\bpa\ban\bnd\bd_\b_t\btr\bra\ban\bns\bsl\bla\bat\bti\bio\bon\bn
-                      If set, b\bba\bas\bsh\bh encloses the translated results  of  $"..."
-                      quoting  in  single quotes instead of double quotes.  If
+                      If  set,  b\bba\bas\bsh\bh encloses the translated results of $"..."
+                      quoting in single quotes instead of double  quotes.   If
                       the string is not translated, this has no effect.
 
               n\bnu\bul\bll\blg\bgl\blo\bob\bb
-                      If set, b\bba\bas\bsh\bh allows patterns which match no  files  (see
-                      P\bPa\bat\bth\bhn\bna\bam\bme\b E\bEx\bxp\bpa\ban\bns\bsi\bio\bon\bn  above)  to expand to a null string,
+                      If  set,  b\bba\bas\bsh\bh allows patterns which match no files (see
+                      P\bPa\bat\bth\bhn\bna\bam\bme\bE\bEx\bxp\bpa\ban\bns\bsi\bio\bon\bn above) to expand to  a  null  string,
                       rather than themselves.
 
               p\bpa\bat\bts\bsu\bub\bb_\b_r\bre\bep\bpl\bla\bac\bce\bem\bme\ben\bnt\bt
                       If set, b\bba\bas\bsh\bh expands occurrences of &\b& in the replacement
-                      string  of  pattern  substitution to the text matched by
-                      the pattern,  as  described  under  P\bPa\bar\bra\bam\bme\bet\bte\ber\b E\bEx\bxp\bpa\ban\bns\bsi\bio\bon\bn
+                      string of pattern substitution to the  text  matched  by
+                      the  pattern,  as  described  under  P\bPa\bar\bra\bam\bme\bet\bte\ber\br E\bEx\bxp\bpa\ban\bns\bsi\bio\bon\bn
                       above.  This option is enabled by default.
 
               p\bpr\bro\bog\bgc\bco\bom\bmp\bp
@@ -6186,69 +6183,69 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
                       enabled by default.
 
               p\bpr\bro\bog\bgc\bco\bom\bmp\bp_\b_a\bal\bli\bia\bas\bs
-                      If  set,  and  programmable  completion is enabled, b\bba\bas\bsh\bh
-                      treats a command name that doesn't have any  completions
-                      as  a possible alias and attempts alias expansion. If it
-                      has an alias, b\bba\bas\bsh\bh attempts programmable completion  us-
+                      If set, and programmable  completion  is  enabled,  b\bba\bas\bsh\bh
+                      treats  a command name that doesn't have any completions
+                      as a possible alias and attempts alias expansion. If  it
+                      has  an alias, b\bba\bas\bsh\bh attempts programmable completion us-
                       ing the command word resulting from the expanded alias.
 
               p\bpr\bro\bom\bmp\bpt\btv\bva\bar\brs\bs
                       If set, prompt strings undergo parameter expansion, com-
-                      mand substitution, arithmetic expansion, and  quote  re-
-                      moval  after  being  expanded  as described in P\bPR\bRO\bOM\bMP\bPT\bTI\bIN\bNG\bG
+                      mand  substitution,  arithmetic expansion, and quote re-
+                      moval after being expanded  as  described  in  P\bPR\bRO\bOM\bMP\bPT\bTI\bIN\bNG\bG
                       above.  This option is enabled by default.
 
               r\bre\bes\bst\btr\bri\bic\bct\bte\bed\bd_\b_s\bsh\bhe\bel\bll\bl
-                      The shell sets this option  if  it  is  started  in  re-
-                      stricted  mode  (see R\bRE\bES\bST\bTR\bRI\bIC\bCT\bTE\bED\bD S\bSH\bHE\bEL\bLL\bL below).  The value
-                      may not be changed.  This is not reset when the  startup
-                      files  are  executed, allowing the startup files to dis-
+                      The  shell  sets  this  option  if  it is started in re-
+                      stricted mode (see R\bRE\bES\bST\bTR\bRI\bIC\bCT\bTE\bED\bD S\bSH\bHE\bEL\bLL\bL below).   The  value
+                      may  not be changed.  This is not reset when the startup
+                      files are executed, allowing the startup files  to  dis-
                       cover whether or not a shell is restricted.
 
               s\bsh\bhi\bif\bft\bt_\b_v\bve\ber\brb\bbo\bos\bse\be
-                      If set, the s\bsh\bhi\bif\bft\bt builtin prints an error  message  when
+                      If  set,  the s\bsh\bhi\bif\bft\bt builtin prints an error message when
                       the shift count exceeds the number of positional parame-
                       ters.
 
               s\bso\bou\bur\brc\bce\bep\bpa\bat\bth\bh
                       If set, the .\b. (s\bso\bou\bur\brc\bce\be) builtin uses the value of P\bPA\bAT\bTH\bH to
-                      find  the  directory  containing the file supplied as an
+                      find the directory containing the file  supplied  as  an
                       argument.  This option is enabled by default.
 
               v\bva\bar\brr\bre\bed\bdi\bir\br_\b_c\bcl\blo\bos\bse\be
-                      If set, the shell automatically closes file  descriptors
+                      If  set, the shell automatically closes file descriptors
                       assigned using the _\b{_\bv_\ba_\br_\bn_\ba_\bm_\be_\b} redirection syntax (see R\bRE\bE-\b-
-                      D\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\babove) instead of leaving them open  when  the
+                      D\bDI\bIR\bRE\bEC\bCT\bTI\bIO\bON\b above)  instead of leaving them open when the
                       command completes.
 
               x\bxp\bpg\bg_\b_e\bec\bch\bho\bo
-                      If  set,  the  e\bec\bch\bho\bo builtin expands backslash-escape se-
+                      If set, the e\bec\bch\bho\bo builtin  expands  backslash-escape  se-
                       quences by default.
 
        s\bsu\bus\bsp\bpe\ben\bnd\bd [-\b-f\bf]
-              Suspend the execution of this shell until it receives a  S\bSI\bIG\bGC\bCO\bON\bNT\bT
-              signal.   A login shell, or a shell without job control enabled,
-              cannot be suspended; the -\b-f\bf option can be used to override  this
-              and  force  the  suspension.   The return status is 0 unless the
-              shell is a login shell or job control is not enabled and  -\b-f\b is
+              Suspend  the execution of this shell until it receives a S\bSI\bIG\bGC\bCO\bON\bNT\bT
+              signal.  A login shell, or a shell without job control  enabled,
+              cannot  be suspended; the -\b-f\bf option can be used to override this
+              and force the suspension.  The return status  is  0  unless  the
+              shell  is  a login shell or job control is not enabled and -\b-f\bf is
               not supplied.
 
        t\bte\bes\bst\bt _\be_\bx_\bp_\br
        [\b[ _\be_\bx_\bp_\br ]\b]
               Return a status of 0 (true) or 1 (false) depending on the evalu-
               ation of the conditional expression _\be_\bx_\bp_\br.  Each operator and op-
-              erand  must be a separate argument.  Expressions are composed of
-              the primaries described  above  under  C\bCO\bON\bND\bDI\bIT\bTI\bIO\bON\bNA\bAL\b E\bEX\bXP\bPR\bRE\bES\bSS\bSI\bIO\bON\bNS\bS.
-              t\bte\bes\bst\b does not accept any options, nor does it accept and ignore
+              erand must be a separate argument.  Expressions are composed  of
+              the  primaries  described  above  under C\bCO\bON\bND\bDI\bIT\bTI\bIO\bON\bNA\bAL\bL E\bEX\bXP\bPR\bRE\bES\bSS\bSI\bIO\bON\bNS\bS.
+              t\bte\bes\bst\bdoes not accept any options, nor does it accept and  ignore
               an argument of -\b--\b- as signifying the end of options.
 
-              Expressions may  be  combined  using  the  following  operators,
-              listed  in  decreasing  order of precedence.  The evaluation de-
-              pends on the number of arguments; see  below.   Operator  prece-
+              Expressions  may  be  combined  using  the  following operators,
+              listed in decreasing order of precedence.   The  evaluation  de-
+              pends  on  the  number of arguments; see below.  Operator prece-
               dence is used when there are five or more arguments.
               !\b! _\be_\bx_\bp_\br True if _\be_\bx_\bp_\br is false.
               (\b( _\be_\bx_\bp_\br )\b)
-                     Returns  the value of _\be_\bx_\bp_\br.  This may be used to override
+                     Returns the value of _\be_\bx_\bp_\br.  This may be used to  override
                      the normal precedence of operators.
               _\be_\bx_\bp_\br_\b1 -a\ba _\be_\bx_\bp_\br_\b2
                      True if both _\be_\bx_\bp_\br_\b1 and _\be_\bx_\bp_\br_\b2 are true.
@@ -6265,159 +6262,159 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
                      null.
               2 arguments
                      If the first argument is !\b!, the expression is true if and
-                     only  if the second argument is null.  If the first argu-
-                     ment is one of the  unary  conditional  operators  listed
-                     above  under  C\bCO\bON\bND\bDI\bIT\bTI\bIO\bON\bNA\bAL\bL  E\bEX\bXP\bPR\bRE\bES\bSS\bSI\bIO\bON\bNS\bS, the expression is
+                     only if the second argument is null.  If the first  argu-
+                     ment  is  one  of  the unary conditional operators listed
+                     above under C\bCO\bON\bND\bDI\bIT\bTI\bIO\bON\bNA\bAL\bL E\bEX\bXP\bPR\bRE\bES\bSS\bSI\bIO\bON\bNS\bS,  the  expression  is
                      true if the unary test is true.  If the first argument is
                      not a valid unary conditional operator, the expression is
                      false.
               3 arguments
                      The following conditions are applied in the order listed.
-                     If  the  second argument is one of the binary conditional
+                     If the second argument is one of the  binary  conditional
                      operators listed above under C\bCO\bON\bND\bDI\bIT\bTI\bIO\bON\bNA\bAL\bL E\bEX\bXP\bPR\bRE\bES\bSS\bSI\bIO\bON\bNS\bS, the
                      result of the expression is the result of the binary test
-                     using the first and third arguments as operands.  The  -\b-a\ba
-                     and  -\b-o\bo  operators  are  considered binary operators when
-                     there are three arguments.  If the first argument  is  !\b!,
-                     the  value is the negation of the two-argument test using
+                     using  the first and third arguments as operands.  The -\b-a\ba
+                     and -\b-o\bo operators are  considered  binary  operators  when
+                     there  are  three arguments.  If the first argument is !\b!,
+                     the value is the negation of the two-argument test  using
                      the second and third arguments.  If the first argument is
                      exactly (\b( and the third argument is exactly )\b), the result
-                     is the one-argument test of the second argument.   Other-
+                     is  the one-argument test of the second argument.  Other-
                      wise, the expression is false.
               4 arguments
                      The following conditions are applied in the order listed.
                      If the first argument is !\b!, the result is the negation of
-                     the  three-argument  expression composed of the remaining
-                     arguments.  the two-argument test using  the  second  and
-                     third  arguments.  If the first argument is exactly (\b( and
-                     the fourth argument is exactly )\b), the result is the  two-
-                     argument  test of the second and third arguments.  Other-
+                     the three-argument expression composed of  the  remaining
+                     arguments.   the  two-argument  test using the second and
+                     third arguments.  If the first argument is exactly (\b and
+                     the  fourth argument is exactly )\b), the result is the two-
+                     argument test of the second and third arguments.   Other-
                      wise, the expression is parsed and evaluated according to
                      precedence using the rules listed above.
               5 or more arguments
-                     The  expression  is  parsed  and  evaluated  according to
+                     The expression  is  parsed  and  evaluated  according  to
                      precedence using the rules listed above.
 
-              When used with t\bte\bes\bst\bt or [\b[, the <\b< and  >\b>  operators  sort  lexico-
+              When  used  with  t\bte\bes\bst\bt  or [\b[, the <\b< and >\b> operators sort lexico-
               graphically using ASCII ordering.
 
-       t\bti\bim\bme\bes\bs  Print  the  accumulated  user and system times for the shell and
+       t\bti\bim\bme\bes\bs  Print the accumulated user and system times for  the  shell  and
               for processes run from the shell.  The return status is 0.
 
        t\btr\bra\bap\bp [-\b-l\blp\bp] [[_\ba_\bc_\bt_\bi_\bo_\bn] _\bs_\bi_\bg_\bs_\bp_\be_\bc ...]
               The _\ba_\bc_\bt_\bi_\bo_\bn is a command that is read and executed when the shell
               receives signal(s) _\bs_\bi_\bg_\bs_\bp_\be_\bc.  If _\ba_\bc_\bt_\bi_\bo_\bn is absent (and there is a
-              single _\bs_\bi_\bg_\bs_\bp_\be_\bc) or -\b-, each specified  signal  is  reset  to  its
-              original  disposition  (the  value  it  had upon entrance to the
-              shell).  If _\ba_\bc_\bt_\bi_\bo_\bn is the null string the  signal  specified  by
-              each  _\bs_\bi_\bg_\bs_\bp_\be_\bc is ignored by the shell and by the commands it in-
+              single  _\bs_\bi_\bg_\bs_\bp_\be_\bc)  or  -\b-,  each  specified signal is reset to its
+              original disposition (the value it  had  upon  entrance  to  the
+              shell).   If  _\ba_\bc_\bt_\bi_\bo_\bn  is the null string the signal specified by
+              each _\bs_\bi_\bg_\bs_\bp_\be_\bc is ignored by the shell and by the commands it  in-
               vokes.
 
-              If no arguments are supplied, t\btr\bra\bap\bp displays the actions  associ-
+              If  no arguments are supplied, t\btr\bra\bap\bp displays the actions associ-
               ated with each trapped signal as a set of t\btr\bra\bap\bp commands that can
-              be reused as shell input to restore the current signal  disposi-
-              tions.   If  -\b-p\bp  is  given, and _\ba_\bc_\bt_\bi_\bo_\bn is not present, then t\btr\bra\bap\bp
-              displays the actions associated with each _\bs_\bi_\bg_\bs_\bp_\be_\bc  or,  if  none
+              be  reused as shell input to restore the current signal disposi-
+              tions.  If -\b-p\bp is given, and _\ba_\bc_\bt_\bi_\bo_\bn is  not  present,  then  t\btr\bra\bap\bp
+              displays  the  actions  associated with each _\bs_\bi_\bg_\bs_\bp_\be_\bc or, if none
               are supplied, for all trapped signals, as a set of t\btr\bra\bap\bp commands
-              that can be reused as shell input to restore the current  signal
-              dispositions.   The  -\b-P\bP  option  behaves similarly, but displays
-              only the actions associated with each _\bs_\bi_\bg_\bs_\bp_\be_\bc argument.  -\b-P\b re-
-              quires  at  least one _\bs_\bi_\bg_\bs_\bp_\be_\bc argument.  The -\b-P\bP or -\b-p\bp options to
-              t\btr\bra\bap\bmay be used in a subshell environment (e.g.,  command  sub-
-              stitution)  and, as long as they are used before t\btr\bra\bap\bp is used to
-              change a signal's handling, will display the state of  its  par-
+              that  can be reused as shell input to restore the current signal
+              dispositions.  The -\b-P\bP option  behaves  similarly,  but  displays
+              only  the actions associated with each _\bs_\bi_\bg_\bs_\bp_\be_\bc argument.  -\b-P\bP re-
+              quires at least one _\bs_\bi_\bg_\bs_\bp_\be_\bc argument.  The -\b-P\bP or -\b-p\bp  options  to
+              t\btr\bra\bap\b may  be used in a subshell environment (e.g., command sub-
+              stitution) and, as long as they are used before t\btr\bra\bap\bp is used  to
+              change  a  signal's handling, will display the state of its par-
               ent's traps.
 
-              The  -\b-l\bl  option  causes t\btr\bra\bap\bp to print a list of signal names and
-              their corresponding numbers.  Each _\bs_\bi_\bg_\bs_\bp_\be_\bc is  either  a  signal
-              name  defined  in  <_\bs_\bi_\bg_\bn_\ba_\bl_\b._\bh>, or a signal number.  Signal names
+              The -\b-l\bl option causes t\btr\bra\bap\bp to print a list of  signal  names  and
+              their  corresponding  numbers.   Each _\bs_\bi_\bg_\bs_\bp_\be_\bc is either a signal
+              name defined in <_\bs_\bi_\bg_\bn_\ba_\bl_\b._\bh>, or a signal  number.   Signal  names
               are case insensitive and the S\bSI\bIG\bG prefix is optional.
 
-              If a _\bs_\bi_\bg_\bs_\bp_\be_\bc is E\bEX\bXI\bIT\bT (0) the command _\ba_\bc_\bt_\bi_\bo_\bn is executed on  exit
-              from  the  shell.   If a _\bs_\bi_\bg_\bs_\bp_\be_\bc is D\bDE\bEB\bBU\bUG\bG, the command _\ba_\bc_\bt_\bi_\bo_\bn is
+              If  a _\bs_\bi_\bg_\bs_\bp_\be_\bc is E\bEX\bXI\bIT\bT (0) the command _\ba_\bc_\bt_\bi_\bo_\bn is executed on exit
+              from the shell.  If a _\bs_\bi_\bg_\bs_\bp_\be_\bc is D\bDE\bEB\bBU\bUG\bG, the  command  _\ba_\bc_\bt_\bi_\bo_\b is
               executed before every _\bs_\bi_\bm_\bp_\bl_\be _\bc_\bo_\bm_\bm_\ba_\bn_\bd, _\bf_\bo_\br command, _\bc_\ba_\bs_\be command,
-              _\bs_\be_\bl_\be_\bc_\b command,  (( arithmetic command, [[ conditional command,
+              _\bs_\be_\bl_\be_\bc_\bcommand, (( arithmetic command, [[  conditional  command,
               arithmetic _\bf_\bo_\br command, and before the first command executes in
-              a  shell  function  (see S\bSH\bHE\bEL\bLL\bL G\bGR\bRA\bAM\bMM\bMA\bAR\bR above).  Refer to the de-
-              scription of the e\bex\bxt\btd\bde\beb\bbu\bug\bg option to the s\bsh\bho\bop\bpt\bt  builtin  for  de-
-              tails  of its effect on the D\bDE\bEB\bBU\bUG\bG trap.  If a _\bs_\bi_\bg_\bs_\bp_\be_\bc is R\bRE\bET\bTU\bUR\bRN\bN,
-              the command _\ba_\bc_\bt_\bi_\bo_\bn is executed each time a shell function  or  a
-              script  executed  with the .\b. or s\bso\bou\bur\brc\bce\be builtins finishes execut-
+              a shell function (see S\bSH\bHE\bEL\bLL\bL G\bGR\bRA\bAM\bMM\bMA\bAR\bR above).  Refer  to  the  de-
+              scription  of  the  e\bex\bxt\btd\bde\beb\bbu\bug\bg option to the s\bsh\bho\bop\bpt\bt builtin for de-
+              tails of its effect on the D\bDE\bEB\bBU\bUG\bG trap.  If a _\bs_\bi_\bg_\bs_\bp_\be_\bc is  R\bRE\bET\bTU\bUR\bRN\bN,
+              the  command  _\ba_\bc_\bt_\bi_\bo_\bn is executed each time a shell function or a
+              script executed with the .\b. or s\bso\bou\bur\brc\bce\be builtins  finishes  execut-
               ing.
 
-              If a _\bs_\bi_\bg_\bs_\bp_\be_\bc is E\bER\bRR\bR, the command _\ba_\bc_\bt_\bi_\bo_\bn is executed  whenever  a
+              If  a  _\bs_\bi_\bg_\bs_\bp_\be_\bc is E\bER\bRR\bR, the command _\ba_\bc_\bt_\bi_\bo_\bn is executed whenever a
               pipeline (which may consist of a single simple command), a list,
               or a compound command returns a non-zero exit status, subject to
-              the  following  conditions.  The E\bER\bRR\bR trap is not executed if the
+              the following conditions.  The E\bER\bRR\bR trap is not executed  if  the
               failed command is part of the command list immediately following
-              a  w\bwh\bhi\bil\ble\be  or u\bun\bnt\bti\bil\bl keyword, part of the test in an _\bi_\bf statement,
+              a w\bwh\bhi\bil\ble\be or u\bun\bnt\bti\bil\bl keyword, part of the test in an  _\bi_\b statement,
               part of a command executed in a &\b&&\b& or |\b||\b| list except the command
-              following  the final &\b&&\b& or |\b||\b|, any command in a pipeline but the
-              last, or if the command's return value is being  inverted  using
+              following the final &\b&&\b& or |\b||\b|, any command in a pipeline but  the
+              last,  or  if the command's return value is being inverted using
               !\b!.  These are the same conditions obeyed by the e\ber\brr\bre\bex\bxi\bit\bt (-\b-e\be) op-
               tion.
 
               When the shell is not interactive, signals ignored upon entry to
               the shell cannot be trapped or reset.  Interactive shells permit
               trapping signals ignored on entry.  Trapped signals that are not
-              being  ignored  are reset to their original values in a subshell
-              or subshell environment when one is created.  The return  status
+              being ignored are reset to their original values in  a  subshell
+              or  subshell environment when one is created.  The return status
               is false if any _\bs_\bi_\bg_\bs_\bp_\be_\bc is invalid; otherwise t\btr\bra\bap\bp returns true.
 
        t\btr\bru\bue\be   Does nothing, returns a 0 status.
 
        t\bty\byp\bpe\be [-\b-a\baf\bft\btp\bpP\bP] _\bn_\ba_\bm_\be [_\bn_\ba_\bm_\be ...]
-              With  no options, indicate how each _\bn_\ba_\bm_\be would be interpreted if
+              With no options, indicate how each _\bn_\ba_\bm_\be would be interpreted  if
               used as a command name.  If the -\b-t\bt option is used, t\bty\byp\bpe\be prints a
-              string  which  is  one  of _\ba_\bl_\bi_\ba_\bs, _\bk_\be_\by_\bw_\bo_\br_\bd, _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn, _\bb_\bu_\bi_\bl_\bt_\bi_\bn, or
-              _\bf_\bi_\bl_\bif  _\bn_\ba_\bm_\be  is  an  alias,  shell  reserved  word,  function,
-              builtin,  or executable disk file, respectively.  If the _\bn_\ba_\bm_\be is
-              not found, then nothing is printed, and t\bty\byp\bpe\be returns a  non-zero
-              exit  status.  If the -\b-p\bp option is used, t\bty\byp\bpe\be either returns the
-              name of the executable file that would  be  found  by  searching
-              $\b$P\bPA\bAT\bTH\b if  _\bn_\ba_\bm_\be  were specified as a command name, or nothing if
-              ``type -t name'' would not return _\bf_\bi_\bl_\be.  The -\b-P\bP option forces  a
-              P\bPA\bAT\bTH\b search  for  each _\bn_\ba_\bm_\be, even if ``type -t name'' would not
+              string which is one of _\ba_\bl_\bi_\ba_\bs,  _\bk_\be_\by_\bw_\bo_\br_\bd,  _\bf_\bu_\bn_\bc_\bt_\bi_\bo_\bn,  _\bb_\bu_\bi_\bl_\bt_\bi_\bn,  or
+              _\bf_\bi_\bl_\b if  _\bn_\ba_\bm_\be  is  an  alias,  shell  reserved  word, function,
+              builtin, or executable disk file, respectively.  If the _\bn_\ba_\bm_\b is
+              not  found, then nothing is printed, and t\bty\byp\bpe\be returns a non-zero
+              exit status.  If the -\b-p\bp option is used, t\bty\byp\bpe\be either returns  the
+              name  of  the  executable  file that would be found by searching
+              $\b$P\bPA\bAT\bTH\bif _\bn_\ba_\bm_\be were specified as a command name,  or  nothing  if
+              ``type  -t name'' would not return _\bf_\bi_\bl_\be.  The -\b-P\bP option forces a
+              P\bPA\bAT\bTH\bsearch for each _\bn_\ba_\bm_\be, even if ``type -t  name''  would  not
               return _\bf_\bi_\bl_\be.  If a command is hashed, -\b-p\bp and -\b-P\bP print the hashed
-              value,  which  is not necessarily the file that appears first in
-              P\bPA\bAT\bTH\bH.  If the -\b-a\ba option is used, t\bty\byp\bpe\be prints all of  the  places
-              that  contain  a command named _\bn_\ba_\bm_\be.  This includes aliases, re-
-              served words, functions, and builtins, but the path  search  op-
+              value, which is not necessarily the file that appears  first  in
+              P\bPA\bAT\bTH\bH.   If  the -\b-a\ba option is used, t\bty\byp\bpe\be prints all of the places
+              that contain a command named _\bn_\ba_\bm_\be.  This includes  aliases,  re-
+              served  words,  functions, and builtins, but the path search op-
               tions (-\b-p\bp and -\b-P\bP) can be supplied to restrict the output to exe-
-              cutable files.  t\bty\byp\bpe\be does not consult the table of  hashed  com-
+              cutable  files.   t\bty\byp\bpe\be does not consult the table of hashed com-
               mands when using -\b-a\ba with -\b-p\bp, and only performs a P\bPA\bAT\bTH\bH search for
-              _\bn_\ba_\bm_\be.  The -\b-f\bf option suppresses shell function lookup,  as  with
-              the  c\bco\bom\bmm\bma\ban\bnd\bd builtin.  t\bty\byp\bpe\be returns true if all of the arguments
+              _\bn_\ba_\bm_\be.   The  -\b-f\bf option suppresses shell function lookup, as with
+              the c\bco\bom\bmm\bma\ban\bnd\bd builtin.  t\bty\byp\bpe\be returns true if all of the  arguments
               are found, false if any are not found.
 
        u\bul\bli\bim\bmi\bit\bt [-\b-H\bHS\bS] -\b-a\ba
        u\bul\bli\bim\bmi\bit\bt [-\b-H\bHS\bS] [-\b-b\bbc\bcd\bde\bef\bfi\bik\bkl\blm\bmn\bnp\bpq\bqr\brs\bst\btu\buv\bvx\bxP\bPR\bRT\bT [_\bl_\bi_\bm_\bi_\bt]]
-              Provides control over the resources available to the  shell  and
-              to  processes started by it, on systems that allow such control.
+              Provides  control  over the resources available to the shell and
+              to processes started by it, on systems that allow such  control.
               The -\b-H\bH and -\b-S\bS options specify that the hard or soft limit is set
-              for  the  given resource.  A hard limit cannot be increased by a
-              non-root user once it is set; a soft limit may be  increased  up
-              to  the value of the hard limit.  If neither -\b-H\bH nor -\b-S\bS is speci-
+              for the given resource.  A hard limit cannot be increased  by  a
+              non-root  user  once it is set; a soft limit may be increased up
+              to the value of the hard limit.  If neither -\b-H\bH nor -\b-S\bS is  speci-
               fied, both the soft and hard limits are set.  The value of _\bl_\bi_\bm_\bi_\bt
               can be a number in the unit specified for the resource or one of
               the special values h\bha\bar\brd\bd, s\bso\bof\bft\bt, or u\bun\bnl\bli\bim\bmi\bit\bte\bed\bd, which stand for the
-              current  hard  limit,  the current soft limit, and no limit, re-
-              spectively.  If _\bl_\bi_\bm_\bi_\bt is omitted, the current value of the  soft
+              current hard limit, the current soft limit, and  no  limit,  re-
+              spectively.   If _\bl_\bi_\bm_\bi_\bt is omitted, the current value of the soft
               limit of the resource is printed, unless the -\b-H\bH option is given.
-              When more than one resource is specified,  the  limit  name  and
-              unit,  if  appropriate, are printed before the value.  Other op-
+              When  more  than  one  resource is specified, the limit name and
+              unit, if appropriate, are printed before the value.   Other  op-
               tions are interpreted as follows:
               -\b-a\ba     All current limits are reported; no limits are set
               -\b-b\bb     The maximum socket buffer size
               -\b-c\bc     The maximum size of core files created
               -\b-d\bd     The maximum size of a process's data segment
               -\b-e\be     The maximum scheduling priority ("nice")
-              -\b-f\bf     The maximum size of files written by the  shell  and  its
+              -\b-f\bf     The  maximum  size  of files written by the shell and its
                      children
               -\b-i\bi     The maximum number of pending signals
               -\b-k\bk     The maximum number of kqueues that may be allocated
               -\b-l\bl     The maximum size that may be locked into memory
-              -\b-m\bm     The  maximum resident set size (many systems do not honor
+              -\b-m\bm     The maximum resident set size (many systems do not  honor
                      this limit)
               -\b-n\bn     The maximum number of open file descriptors (most systems
                      do not allow this value to be set)
@@ -6426,134 +6423,134 @@ S\bSH\bHE\bEL\bLL\bL B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
               -\b-r\br     The maximum real-time scheduling priority
               -\b-s\bs     The maximum stack size
               -\b-t\bt     The maximum amount of cpu time in seconds
-              -\b-u\bu     The  maximum  number  of  processes available to a single
+              -\b-u\bu     The maximum number of processes  available  to  a  single
                      user
-              -\b-v\bv     The maximum amount of virtual  memory  available  to  the
+              -\b-v\bv     The  maximum  amount  of  virtual memory available to the
                      shell and, on some systems, to its children
               -\b-x\bx     The maximum number of file locks
               -\b-P\bP     The maximum number of pseudoterminals
-              -\b-R\bR     The  maximum  time  a  real-time  process  can run before
+              -\b-R\bR     The maximum time  a  real-time  process  can  run  before
                      blocking, in microseconds
               -\b-T\bT     The maximum number of threads
 
-              If _\bl_\bi_\bm_\bi_\bt is given, and the -\b-a\ba option is not used, _\bl_\bi_\bm_\bi_\bt  is  the
-              new  value  of  the  specified resource.  If no option is given,
-              then -\b-f\bf is assumed.  Values are in 1024-byte increments,  except
-              for  -\b-t\bt,  which is in seconds; -\b-R\bR, which is in microseconds; -\b-p\bp,
-              which is in units of 512-byte blocks; -\b-P\bP, -\b-T\bT, -\b-b\bb,  -\b-k\bk,  -\b-n\bn,  and
-              -\b-u\bu,  which  are unscaled values; and, when in posix mode, -\b-c\bc and
-              -\b-f\bf, which are in 512-byte increments.  The return  status  is  0
-              unless  an  invalid  option or argument is supplied, or an error
+              If  _\bl_\bi_\bm_\bi_\bt  is given, and the -\b-a\ba option is not used, _\bl_\bi_\bm_\bi_\bt is the
+              new value of the specified resource.  If  no  option  is  given,
+              then  -\b-f\bf is assumed.  Values are in 1024-byte increments, except
+              for -\b-t\bt, which is in seconds; -\b-R\bR, which is in  microseconds;  -\b-p\bp,
+              which  is  in  units of 512-byte blocks; -\b-P\bP, -\b-T\bT, -\b-b\bb, -\b-k\bk, -\b-n\bn, and
+              -\b-u\bu, which are unscaled values; and, when in posix mode,  -\b-c\b and
+              -\b-f\bf,  which  are  in 512-byte increments.  The return status is 0
+              unless an invalid option or argument is supplied,  or  an  error
               occurs while setting a new limit.
 
        u\bum\bma\bas\bsk\bk [-\b-p\bp] [-\b-S\bS] [_\bm_\bo_\bd_\be]
               The user file-creation mask is set to _\bm_\bo_\bd_\be.  If _\bm_\bo_\bd_\be begins with
-              a  digit,  it is interpreted as an octal number; otherwise it is
-              interpreted as a symbolic mode mask similar to that accepted  by
-              _\bc_\bh_\bm_\bo_\bd(1).   If _\bm_\bo_\bd_\be is omitted, the current value of the mask is
-              printed.  The -\b-S\bS option causes the mask to be  printed  in  sym-
-              bolic  form;  the  default output is an octal number.  If the -\b-p\bp
+              a digit, it is interpreted as an octal number; otherwise  it  is
+              interpreted  as a symbolic mode mask similar to that accepted by
+              _\bc_\bh_\bm_\bo_\bd(1).  If _\bm_\bo_\bd_\be is omitted, the current value of the mask  is
+              printed.   The  -\b-S\bS  option causes the mask to be printed in sym-
+              bolic form; the default output is an octal number.   If  the  -\b-p\bp
               option is supplied, and _\bm_\bo_\bd_\be is omitted, the output is in a form
               that may be reused as input.  The return status is 0 if the mode
-              was successfully changed or if no _\bm_\bo_\bd_\be  argument  was  supplied,
+              was  successfully  changed  or if no _\bm_\bo_\bd_\be argument was supplied,
               and false otherwise.
 
        u\bun\bna\bal\bli\bia\bas\bs [-a\ba] [_\bn_\ba_\bm_\be ...]
-              Remove  each  _\bn_\ba_\bm_\be  from  the list of defined aliases.  If -\b-a\ba is
-              supplied, all alias definitions are removed.  The  return  value
+              Remove each _\bn_\ba_\bm_\be from the list of defined  aliases.   If  -\b-a\b is
+              supplied,  all  alias definitions are removed.  The return value
               is true unless a supplied _\bn_\ba_\bm_\be is not a defined alias.
 
        u\bun\bns\bse\bet\bt [-f\bfv\bv] [-n\bn] [_\bn_\ba_\bm_\be ...]
-              For  each  _\bn_\ba_\bm_\be,  remove the corresponding variable or function.
+              For each _\bn_\ba_\bm_\be, remove the corresponding  variable  or  function.
               If the -\b-v\bv option is given, each _\bn_\ba_\bm_\be refers to a shell variable,
-              and  that  variable  is removed.  Read-only variables may not be
-              unset.  If -\b-f\bf is specified, each _\bn_\ba_\bm_\be refers to  a  shell  func-
-              tion,  and the function definition is removed.  If the -\b-n\bn option
-              is supplied, and _\bn_\ba_\bm_\be is a variable with the _\bn_\ba_\bm_\be_\br_\be_\b attribute,
-              _\bn_\ba_\bm_\b will  be unset rather than the variable it references.  -\b-n\bn
-              has no effect if the -\b-f\bf option is supplied.  If no  options  are
-              supplied,  each  _\bn_\ba_\bm_\be refers to a variable; if there is no vari-
-              able by that name, a function with that name, if any, is  unset.
-              Each  unset variable or function is removed from the environment
-              passed  to  subsequent  commands.   If  any   of   B\bBA\bAS\bSH\bH_\b_A\bAL\bLI\bIA\bAS\bSE\bES\bS,
+              and that variable is removed.  Read-only variables  may  not  be
+              unset.   If  -\b-f\bf  is specified, each _\bn_\ba_\bm_\be refers to a shell func-
+              tion, and the function definition is removed.  If the -\b-n\b option
+              is  supplied, and _\bn_\ba_\bm_\be is a variable with the _\bn_\ba_\bm_\be_\br_\be_\bf attribute,
+              _\bn_\ba_\bm_\bwill be unset rather than the variable it  references.   -\b-n\bn
+              has  no  effect if the -\b-f\bf option is supplied.  If no options are
+              supplied, each _\bn_\ba_\bm_\be refers to a variable; if there is  no  vari-
+              able  by that name, a function with that name, if any, is unset.
+              Each unset variable or function is removed from the  environment
+              passed   to   subsequent  commands.   If  any  of  B\bBA\bAS\bSH\bH_\b_A\bAL\bLI\bIA\bAS\bSE\bES\bS,
               B\bBA\bAS\bSH\bH_\b_A\bAR\bRG\bGV\bV0\b0,  B\bBA\bAS\bSH\bH_\b_C\bCM\bMD\bDS\bS,  B\bBA\bAS\bSH\bH_\b_C\bCO\bOM\bMM\bMA\bAN\bND\bD,  B\bBA\bAS\bSH\bH_\b_S\bSU\bUB\bBS\bSH\bHE\bEL\bLL\bL,  B\bBA\bAS\bSH\bHP\bPI\bID\bD,
-              C\bCO\bOM\bMP\bP_\b_W\bWO\bOR\bRD\bDB\bBR\bRE\bEA\bAK\bKS\bS, D\bDI\bIR\bRS\bST\bTA\bAC\bCK\bK,  E\bEP\bPO\bOC\bCH\bHR\bRE\bEA\bAL\bLT\bTI\bIM\bME\bE,  E\bEP\bPO\bOC\bCH\bHS\bSE\bEC\bCO\bON\bND\bDS\bS,  F\bFU\bUN\bNC\bC-\b-
-              N\bNA\bAM\bME\bE,  G\bGR\bRO\bOU\bUP\bPS\bS,  H\bHI\bIS\bST\bTC\bCM\bMD\bD, L\bLI\bIN\bNE\bEN\bNO\bO, R\bRA\bAN\bND\bDO\bOM\bM, S\bSE\bEC\bCO\bON\bND\bDS\bS, or S\bSR\bRA\bAN\bND\bDO\bOM\bM are
+              C\bCO\bOM\bMP\bP_\b_W\bWO\bOR\bRD\bDB\bBR\bRE\bEA\bAK\bKS\bS,  D\bDI\bIR\bRS\bST\bTA\bAC\bCK\bK,  E\bEP\bPO\bOC\bCH\bHR\bRE\bEA\bAL\bLT\bTI\bIM\bME\bE,  E\bEP\bPO\bOC\bCH\bHS\bSE\bEC\bCO\bON\bND\bDS\bS, F\bFU\bUN\bNC\bC-\b-
+              N\bNA\bAM\bME\bE, G\bGR\bRO\bOU\bUP\bPS\bS, H\bHI\bIS\bST\bTC\bCM\bMD\bD, L\bLI\bIN\bNE\bEN\bNO\bO, R\bRA\bAN\bND\bDO\bOM\bM, S\bSE\bEC\bCO\bON\bND\bDS\bS, or  S\bSR\bRA\bAN\bND\bDO\bOM\b are
               unset, they lose their special properties, even if they are sub-
               sequently reset.  The exit status is true unless a _\bn_\ba_\bm_\be is read-
               only or may not be unset.
 
        w\bwa\bai\bit\bt [-\b-f\bfn\bn] [-\b-p\bp _\bv_\ba_\br_\bn_\ba_\bm_\be] [_\bi_\bd _\b._\b._\b.]
               Wait for each specified child process and return its termination
-              status.   Each _\bi_\bd may be a process ID or a job specification; if
-              a job spec is given, all processes in that  job's  pipeline  are
-              waited  for.   If  _\bi_\bd  is  not given, w\bwa\bai\bit\bt waits for all running
-              background jobs and the last-executed process  substitution,  if
+              status.  Each _\bi_\bd may be a process ID or a job specification;  if
+              a  job  spec  is given, all processes in that job's pipeline are
+              waited for.  If _\bi_\bd is not given,  w\bwa\bai\bit\bt  waits  for  all  running
+              background  jobs  and the last-executed process substitution, if
               its process id is the same as $\b$!\b!, and the return status is zero.
-              If the -\b-n\bn option is supplied, w\bwa\bai\bit\bt waits for a single  job  from
+              If  the  -\b-n\bn option is supplied, w\bwa\bai\bit\bt waits for a single job from
               the list of _\bi_\bds or, if no _\bi_\bds are supplied, any job, to complete
-              and returns its exit status.  If none of the supplied  arguments
+              and  returns its exit status.  If none of the supplied arguments
               is a child of the shell, or if no arguments are supplied and the
-              shell has no unwaited-for children, the exit status is 127.   If
-              the  -\b-p\bp option is supplied, the process or job identifier of the
-              job for which the exit status is returned  is  assigned  to  the
-              variable  _\bv_\ba_\br_\bn_\ba_\bm_\be  named  by  the option argument.  The variable
-              will be unset initially, before any assignment.  This is  useful
-              only  when  the -\b-n\bn option is supplied.  Supplying the -\b-f\bf option,
-              when job control is enabled, forces w\bwa\bai\bit\bt to wait for _\bi_\bd to  ter-
+              shell  has no unwaited-for children, the exit status is 127.  If
+              the -\b-p\bp option is supplied, the process or job identifier of  the
+              job  for  which  the  exit status is returned is assigned to the
+              variable _\bv_\ba_\br_\bn_\ba_\bm_\be named by the  option  argument.   The  variable
+              will  be unset initially, before any assignment.  This is useful
+              only when the -\b-n\bn option is supplied.  Supplying the  -\b-f\b option,
+              when  job control is enabled, forces w\bwa\bai\bit\bt to wait for _\bi_\bd to ter-
               minate before returning its status, instead of returning when it
-              changes status.  If _\bi_\bd specifies a non-existent process or  job,
-              the  return  status is 127.  If w\bwa\bai\bit\bt is interrupted by a signal,
-              the return status will be greater than 128, as  described  under
-              S\bSI\bIG\bGN\bNA\bAL\bLS\b above.  Otherwise, the return status is the exit status
+              changes  status.  If _\bi_\bd specifies a non-existent process or job,
+              the return status is 127.  If w\bwa\bai\bit\bt is interrupted by  a  signal,
+              the  return  status will be greater than 128, as described under
+              S\bSI\bIG\bGN\bNA\bAL\bLS\babove.  Otherwise, the return status is the exit  status
               of the last process or job waited for.
 
 S\bSH\bHE\bEL\bLL\bL C\bCO\bOM\bMP\bPA\bAT\bTI\bIB\bBI\bIL\bLI\bIT\bTY\bY M\bMO\bOD\bDE\bE
-       Bash-4.0 introduced the concept of a _\bs_\bh_\be_\bl_\bl _\bc_\bo_\bm_\bp_\ba_\bt_\bi_\bb_\bi_\bl_\bi_\bt_\by _\bl_\be_\bv_\be_\bl,  speci-
-       fied  as  a  set  of options to the shopt builtin ( c\bco\bom\bmp\bpa\bat\bt3\b31\b1, c\bco\bom\bmp\bpa\bat\bt3\b32\b2,
-       c\bco\bom\bmp\bpa\bat\bt4\b40\b0, c\bco\bom\bmp\bpa\bat\bt4\b41\b1, and so on).  There is only one current  compatibil-
-       ity  level  --  each  option  is mutually exclusive.  The compatibility
-       level is intended to allow users to select behavior from previous  ver-
-       sions  that  is  incompatible  with  newer  versions while they migrate
-       scripts to use current features and behavior. It's  intended  to  be  a
+       Bash-4.0  introduced the concept of a _\bs_\bh_\be_\bl_\bl _\bc_\bo_\bm_\bp_\ba_\bt_\bi_\bb_\bi_\bl_\bi_\bt_\by _\bl_\be_\bv_\be_\bl, speci-
+       fied as a set of options to the shopt  builtin  (  c\bco\bom\bmp\bpa\bat\bt3\b31\b1,  c\bco\bom\bmp\bpa\bat\bt3\b32\b2,
+       c\bco\bom\bmp\bpa\bat\bt4\b40\b0,  c\bco\bom\bmp\bpa\bat\bt4\b41\b1, and so on).  There is only one current compatibil-
+       ity level -- each option  is  mutually  exclusive.   The  compatibility
+       level  is intended to allow users to select behavior from previous ver-
+       sions that is incompatible  with  newer  versions  while  they  migrate
+       scripts  to  use  current  features and behavior. It's intended to be a
        temporary solution.
 
-       This  section does not mention behavior that is standard for a particu-
-       lar version (e.g., setting c\bco\bom\bmp\bpa\bat\bt3\b32\b2 means that quoting the rhs  of  the
-       regexp  matching operator quotes special regexp characters in the word,
+       This section does not mention behavior that is standard for a  particu-
+       lar  version  (e.g., setting c\bco\bom\bmp\bpa\bat\bt3\b32\b2 means that quoting the rhs of the
+       regexp matching operator quotes special regexp characters in the  word,
        which is default behavior in bash-3.2 and subsequent versions).
 
-       If a user enables, say, c\bco\bom\bmp\bpa\bat\bt3\b32\b2, it may affect the behavior  of  other
-       compatibility  levels  up  to  and  including the current compatibility
-       level.  The idea is that each  compatibility  level  controls  behavior
-       that  changed  in that version of b\bba\bas\bsh\bh, but that behavior may have been
-       present in earlier versions.  For instance, the change to  use  locale-
-       based  comparisons  with  the  [\b[[\b[ command came in bash-4.1, and earlier
+       If  a  user enables, say, c\bco\bom\bmp\bpa\bat\bt3\b32\b2, it may affect the behavior of other
+       compatibility levels up to  and  including  the  current  compatibility
+       level.   The  idea  is  that each compatibility level controls behavior
+       that changed in that version of b\bba\bas\bsh\bh, but that behavior may  have  been
+       present  in  earlier versions.  For instance, the change to use locale-
+       based comparisons with the [\b[[\b[ command came  in  bash-4.1,  and  earlier
        versions used ASCII-based comparisons, so enabling c\bco\bom\bmp\bpa\bat\bt3\b32\b2 will enable
-       ASCII-based  comparisons  as  well.  That granularity may not be suffi-
-       cient for all uses, and as a result users should  employ  compatibility
-       levels  carefully.   Read the documentation for a particular feature to
+       ASCII-based comparisons as well.  That granularity may  not  be  suffi-
+       cient  for  all uses, and as a result users should employ compatibility
+       levels carefully.  Read the documentation for a particular  feature  to
        find out the current behavior.
 
-       Bash-4.3 introduced a new shell variable: B\bBA\bAS\bSH\bH_\b_C\bCO\bOM\bMP\bPA\bAT\bT.  The  value  as-
+       Bash-4.3  introduced  a new shell variable: B\bBA\bAS\bSH\bH_\b_C\bCO\bOM\bMP\bPA\bAT\bT.  The value as-
        signed to this variable (a decimal version number like 4.2, or an inte-
-       ger corresponding to the c\bco\bom\bmp\bpa\bat\bt_\bN_\bN option, like 42) determines the  com-
+       ger  corresponding to the c\bco\bom\bmp\bpa\bat\bt_\bN_\bN option, like 42) determines the com-
        patibility level.
 
-       Starting  with bash-4.4, Bash has begun deprecating older compatibility
-       levels.  Eventually, the options will be removed in favor of  B\bBA\bAS\bSH\bH_\b_C\bCO\bOM\bM-\b-
+       Starting with bash-4.4, Bash has begun deprecating older  compatibility
+       levels.   Eventually, the options will be removed in favor of B\bBA\bAS\bSH\bH_\b_C\bCO\bOM\bM-\b-
        P\bPA\bAT\bT.
 
-       Bash-5.0  is  the  final  version for which there will be an individual
-       shopt option for the previous version. Users should use B\bBA\bAS\bSH\bH_\b_C\bCO\bOM\bMP\bPA\bAT\b on
+       Bash-5.0 is the final version for which there  will  be  an  individual
+       shopt  option for the previous version. Users should use B\bBA\bAS\bSH\bH_\b_C\bCO\bOM\bMP\bPA\bAT\bT on
        bash-5.0 and later versions.
 
-       The  following  table describes the behavior changes controlled by each
+       The following table describes the behavior changes controlled  by  each
        compatibility level setting.  The c\bco\bom\bmp\bpa\bat\bt_\bN_\bN tag is used as shorthand for
        setting the compatibility level to _\bN_\bN using one of the following mecha-
-       nisms.  For versions prior to bash-5.0, the compatibility level may  be
-       set  using  the  corresponding c\bco\bom\bmp\bpa\bat\bt_\bN_\bN shopt option.  For bash-4.3 and
-       later versions, the B\bBA\bAS\bSH\bH_\b_C\bCO\bOM\bMP\bPA\bAT\bT variable is preferred, and  it  is  re-
+       nisms.   For versions prior to bash-5.0, the compatibility level may be
+       set using the corresponding c\bco\bom\bmp\bpa\bat\bt_\bN_\bN shopt option.   For  bash-4.3  and
+       later  versions,  the  B\bBA\bAS\bSH\bH_\b_C\bCO\bOM\bMP\bPA\bAT\bT variable is preferred, and it is re-
        quired for bash-5.1 and later versions.
 
        c\bco\bom\bmp\bpa\bat\bt3\b31\b1
@@ -6561,114 +6558,114 @@ S\bSH\bHE\bEL\bLL\bL C\bCO\bOM\bMP\bPA\bAT\bTI\bIB\bBI\bIL\bLI\bIT\bTY\bY M\bMO\bOD\bDE\bE
                      ator (=~) has no special effect
 
        c\bco\bom\bmp\bpa\bat\bt3\b32\b2
-              +\bo      interrupting a command list such as "a ; b  ;  c"  causes
-                     the  execution  of  the  next  command  in  the  list (in
-                     bash-4.0 and later versions, the shell acts as if it  re-
-                     ceived  the  interrupt,  so interrupting one command in a
+              +\bo      interrupting  a  command  list such as "a ; b ; c" causes
+                     the execution  of  the  next  command  in  the  list  (in
+                     bash-4.0  and later versions, the shell acts as if it re-
+                     ceived the interrupt, so interrupting one  command  in  a
                      list aborts the execution of the entire list)
 
        c\bco\bom\bmp\bpa\bat\bt4\b40\b0
-              +\bo      the <\b< and >\b> operators to the [\b[[\b[ command do  not  consider
+              +\bo      the  <\b<  and >\b> operators to the [\b[[\b[ command do not consider
                      the current locale when comparing strings; they use ASCII
                      ordering.  Bash versions prior to bash-4.1 use ASCII col-
-                     lation  and _\bs_\bt_\br_\bc_\bm_\bp(3); bash-4.1 and later use the current
+                     lation and _\bs_\bt_\br_\bc_\bm_\bp(3); bash-4.1 and later use the  current
                      locale's collation sequence and _\bs_\bt_\br_\bc_\bo_\bl_\bl(3).
 
        c\bco\bom\bmp\bpa\bat\bt4\b41\b1
-              +\bo      in _\bp_\bo_\bs_\bi_\bx mode, t\bti\bim\bme\be may be followed by options and  still
+              +\bo      in  _\bp_\bo_\bs_\bi_\bx mode, t\bti\bim\bme\be may be followed by options and still
                      be recognized as a reserved word (this is POSIX interpre-
                      tation 267)
               +\bo      in _\bp_\bo_\bs_\bi_\bx mode, the parser requires that an even number of
-                     single  quotes  occur  in  the  _\bw_\bo_\br_\bd portion of a double-
-                     quoted parameter expansion and treats them specially,  so
-                     that  characters  within the single quotes are considered
+                     single quotes occur in the  _\bw_\bo_\br_\bd  portion  of  a  double-
+                     quoted  parameter expansion and treats them specially, so
+                     that characters within the single quotes  are  considered
                      quoted (this is POSIX interpretation 221)
 
        c\bco\bom\bmp\bpa\bat\bt4\b42\b2
               +\bo      the replacement string in double-quoted pattern substitu-
-                     tion  does  not undergo quote removal, as it does in ver-
+                     tion does not undergo quote removal, as it does  in  ver-
                      sions after bash-4.2
-              +\bo      in posix mode, single quotes are considered special  when
-                     expanding  the  _\bw_\bo_\br_\bd portion of a double-quoted parameter
-                     expansion and can be used to quote  a  closing  brace  or
-                     other  special character (this is part of POSIX interpre-
-                     tation 221); in later versions,  single  quotes  are  not
+              +\bo      in  posix mode, single quotes are considered special when
+                     expanding the _\bw_\bo_\br_\bd portion of a  double-quoted  parameter
+                     expansion  and  can  be  used to quote a closing brace or
+                     other special character (this is part of POSIX  interpre-
+                     tation  221);  in  later  versions, single quotes are not
                      special within double-quoted word expansions
 
        c\bco\bom\bmp\bpa\bat\bt4\b43\b3
-              +\bo      the  shell does not print a warning message if an attempt
-                     is made to use a quoted compound assignment as  an  argu-
-                     ment  to  declare  (e.g.,  declare -a foo='(1 2)'). Later
+              +\bo      the shell does not print a warning message if an  attempt
+                     is  made  to use a quoted compound assignment as an argu-
+                     ment to declare (e.g., declare  -a  foo='(1  2)').  Later
                      versions warn that this usage is deprecated
-              +\bo      word expansion errors  are  considered  non-fatal  errors
-                     that  cause  the  current  command to fail, even in posix
-                     mode (the default behavior is to make them  fatal  errors
+              +\bo      word  expansion  errors  are  considered non-fatal errors
+                     that cause the current command to  fail,  even  in  posix
+                     mode  (the  default behavior is to make them fatal errors
                      that cause the shell to exit)
-              +\bo      when   executing   a   shell  function,  the  loop  state
+              +\bo      when  executing  a  shell  function,   the   loop   state
                      (while/until/etc.)  is not reset, so b\bbr\bre\bea\bak\bk or c\bco\bon\bnt\bti\bin\bnu\bue\be in
                      that function will break or continue loops in the calling
-                     context. Bash-4.4 and later reset the loop state to  pre-
+                     context.  Bash-4.4 and later reset the loop state to pre-
                      vent this
 
        c\bco\bom\bmp\bpa\bat\bt4\b44\b4
-              +\bo      the  shell  sets  up  the  values  used  by B\bBA\bAS\bSH\bH_\b_A\bAR\bRG\bGV\bV and
-                     B\bBA\bAS\bSH\bH_\b_A\bAR\bRG\bGC\bso they can expand to  the  shell's  positional
+              +\bo      the shell sets  up  the  values  used  by  B\bBA\bAS\bSH\bH_\b_A\bAR\bRG\bGV\b and
+                     B\bBA\bAS\bSH\bH_\b_A\bAR\bRG\bGC\b so  they  can expand to the shell's positional
                      parameters even if extended debugging mode is not enabled
-              +\bo      a  subshell  inherits  loops  from its parent context, so
-                     b\bbr\bre\bea\bak\bor  c\bco\bon\bnt\bti\bin\bnu\bue\be  will  cause  the  subshell  to  exit.
-                     Bash-5.0  and  later  reset the loop state to prevent the
+              +\bo      a subshell inherits loops from  its  parent  context,  so
+                     b\bbr\bre\bea\bak\b or  c\bco\bon\bnt\bti\bin\bnu\bue\be  will  cause  the  subshell  to exit.
+                     Bash-5.0 and later reset the loop state  to  prevent  the
                      exit
-              +\bo      variable assignments preceding builtins like  e\bex\bxp\bpo\bor\brt\b and
+              +\bo      variable  assignments  preceding builtins like e\bex\bxp\bpo\bor\brt\bt and
                      r\bre\bea\bad\bdo\bon\bnl\bly\by that set attributes continue to affect variables
                      with the same name in the calling environment even if the
                      shell is not in posix mode
 
        c\bco\bom\bmp\bpa\bat\bt5\b50\b0
-              +\bo      Bash-5.1  changed  the way $\b$R\bRA\bAN\bND\bDO\bOM\bM is generated to intro-
+              +\bo      Bash-5.1 changed the way $\b$R\bRA\bAN\bND\bDO\bOM\bM is generated  to  intro-
                      duce slightly more randomness. If the shell compatibility
-                     level  is  set  to  50 or lower, it reverts to the method
-                     from bash-5.0 and previous versions, so seeding the  ran-
-                     dom  number generator by assigning a value to R\bRA\bAN\bND\bDO\bOM\bM will
+                     level is set to 50 or lower, it  reverts  to  the  method
+                     from  bash-5.0 and previous versions, so seeding the ran-
+                     dom number generator by assigning a value to R\bRA\bAN\bND\bDO\bOM\b will
                      produce the same sequence as in bash-5.0
-              +\bo      If the command hash table is empty, bash  versions  prior
-                     to  bash-5.1 printed an informational message to that ef-
-                     fect, even when producing output that can  be  reused  as
-                     input.  Bash-5.1  suppresses that message when the -\b-l\bl op-
+              +\bo      If  the  command hash table is empty, bash versions prior
+                     to bash-5.1 printed an informational message to that  ef-
+                     fect,  even  when  producing output that can be reused as
+                     input. Bash-5.1 suppresses that message when the  -\b-l\b op-
                      tion is supplied.
 
        c\bco\bom\bmp\bpa\bat\bt5\b51\b1
-              +\bo      The u\bun\bns\bse\bet\bt builtin treats attempts  to  unset  array  sub-
-                     scripts  @\b@ and *\b* differently depending on whether the ar-
-                     ray is indexed or associative, and  differently  than  in
+              +\bo      The  u\bun\bns\bse\bet\bt  builtin  treats  attempts to unset array sub-
+                     scripts @\b@ and *\b* differently depending on whether the  ar-
+                     ray  is  indexed  or associative, and differently than in
                      previous versions.
 
 R\bRE\bES\bST\bTR\bRI\bIC\bCT\bTE\bED\bD S\bSH\bHE\bEL\bLL\bL
        If b\bba\bas\bsh\bh is started with the name r\brb\bba\bas\bsh\bh, or the -\b-r\br option is supplied at
-       invocation, the shell becomes restricted.  A restricted shell  is  used
-       to  set  up an environment more controlled than the standard shell.  It
-       behaves identically to b\bba\bas\bsh\bh with the exception that the  following  are
+       invocation,  the  shell becomes restricted.  A restricted shell is used
+       to set up an environment more controlled than the standard  shell.   It
+       behaves  identically  to b\bba\bas\bsh\bh with the exception that the following are
        disallowed or not performed:
 
        +\bo      changing directories with c\bcd\bd
 
-       +\bo      setting  or  unsetting the values of S\bSH\bHE\bEL\bLL\bL, P\bPA\bAT\bTH\bH, H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE, E\bEN\bNV\bV,
+       +\bo      setting or unsetting the values of S\bSH\bHE\bEL\bLL\bL, P\bPA\bAT\bTH\bH,  H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE,  E\bEN\bNV\bV,
               or B\bBA\bAS\bSH\bH_\b_E\bEN\bNV\bV
 
        +\bo      specifying command names containing /\b/
 
-       +\bo      specifying a filename containing a /\b/ as an  argument  to  the  .\b.
+       +\bo      specifying  a  filename  containing  a /\b/ as an argument to the .\b.
               builtin command
 
-       +\bo      specifying  a  filename containing a slash as an argument to the
+       +\bo      specifying a filename containing a slash as an argument  to  the
               h\bhi\bis\bst\bto\bor\bry\by builtin command
 
-       +\bo      specifying a filename containing a slash as an argument  to  the
+       +\bo      specifying  a  filename containing a slash as an argument to the
               -\b-p\bp option to the h\bha\bas\bsh\bh builtin command
 
-       +\bo      importing  function  definitions  from  the shell environment at
+       +\bo      importing function definitions from  the  shell  environment  at
               startup
 
-       +\bo      parsing the value of S\bSH\bHE\bEL\bLL\bLO\bOP\bPT\bTS\bS from  the  shell  environment  at
+       +\bo      parsing  the  value  of  S\bSH\bHE\bEL\bLL\bLO\bOP\bPT\bTS\bS from the shell environment at
               startup
 
        +\bo      redirecting output using the >, >|, <>, >&, &>, and >> redirect-
@@ -6677,28 +6674,28 @@ R\bRE\bES\bST\bTR\bRI\bIC\bCT\bTE\bED\bD S\bSH\bHE\bEL\bLL\bL
        +\bo      using the e\bex\bxe\bec\bc builtin command to replace the shell with another
               command
 
-       +\bo      adding  or  deleting builtin commands with the -\b-f\bf and -\b-d\bd options
+       +\bo      adding or deleting builtin commands with the -\b-f\bf and  -\b-d\b options
               to the e\ben\bna\bab\bbl\ble\be builtin command
 
-       +\bo      using the  e\ben\bna\bab\bbl\ble\be  builtin  command  to  enable  disabled  shell
+       +\bo      using  the  e\ben\bna\bab\bbl\ble\be  builtin  command  to  enable  disabled shell
               builtins
 
        +\bo      specifying the -\b-p\bp option to the c\bco\bom\bmm\bma\ban\bnd\bd builtin command
 
-       +\bo      turning  off  restricted  mode  with  s\bse\bet\bt  +\b+r\br  or  s\bsh\bho\bop\bpt\bt  -\b-u\bu r\bre\be-\b-
+       +\bo      turning off  restricted  mode  with  s\bse\bet\bt  +\b+r\br  or  s\bsh\bho\bop\bpt\bt  -\b-u\b r\bre\be-\b-
               s\bst\btr\bri\bic\bct\bte\bed\bd_\b_s\bsh\bhe\bel\bll\bl.
 
        These restrictions are enforced after any startup files are read.
 
        When a command that is found to be a shell script is executed (see C\bCO\bOM\bM-\b-
-       M\bMA\bAN\bND\b E\bEX\bXE\bEC\bCU\bUT\bTI\bIO\bON\bN  above),  r\brb\bba\bas\bsh\bh turns off any restrictions in the shell
+       M\bMA\bAN\bND\bE\bEX\bXE\bEC\bCU\bUT\bTI\bIO\bON\bN above), r\brb\bba\bas\bsh\bh turns off any restrictions  in  the  shell
        spawned to execute the script.
 
 S\bSE\bEE\bE A\bAL\bLS\bSO\bO
        _\bB_\ba_\bs_\bh _\bR_\be_\bf_\be_\br_\be_\bn_\bc_\be _\bM_\ba_\bn_\bu_\ba_\bl, Brian Fox and Chet Ramey
        _\bT_\bh_\be _\bG_\bn_\bu _\bR_\be_\ba_\bd_\bl_\bi_\bn_\be _\bL_\bi_\bb_\br_\ba_\br_\by, Brian Fox and Chet Ramey
        _\bT_\bh_\be _\bG_\bn_\bu _\bH_\bi_\bs_\bt_\bo_\br_\by _\bL_\bi_\bb_\br_\ba_\br_\by, Brian Fox and Chet Ramey
-       _\bP_\bo_\br_\bt_\ba_\bb_\bl_\b_\bO_\bp_\be_\br_\ba_\bt_\bi_\bn_\bg _\bS_\by_\bs_\bt_\be_\bm _\bI_\bn_\bt_\be_\br_\bf_\ba_\bc_\be _\b(_\bP_\bO_\bS_\bI_\bX_\b) _\bP_\ba_\br_\bt _\b2_\b:  _\bS_\bh_\be_\bl_\bl  _\ba_\bn_\b _\bU_\bt_\bi_\bl_\bi_\b-
+       _\bP_\bo_\br_\bt_\ba_\bb_\bl_\b _\bO_\bp_\be_\br_\ba_\bt_\bi_\bn_\bg  _\bS_\by_\bs_\bt_\be_\bm  _\bI_\bn_\bt_\be_\br_\bf_\ba_\bc_\be _\b(_\bP_\bO_\bS_\bI_\bX_\b) _\bP_\ba_\br_\bt _\b2_\b: _\bS_\bh_\be_\bl_\bl _\ba_\bn_\bd _\bU_\bt_\bi_\bl_\bi_\b-
        _\bt_\bi_\be_\bs, IEEE --
               http://pubs.opengroup.org/onlinepubs/9699919799/
        http://tiswww.case.edu/~chet/bash/POSIX -- a description of posix mode
@@ -6716,10 +6713,10 @@ F\bFI\bIL\bLE\bES\bS
        _\b~_\b/_\b._\bb_\ba_\bs_\bh_\br_\bc
               The individual per-interactive-shell startup file
        _\b~_\b/_\b._\bb_\ba_\bs_\bh_\b__\bl_\bo_\bg_\bo_\bu_\bt
-              The  individual  login shell cleanup file, executed when a login
+              The individual login shell cleanup file, executed when  a  login
               shell exits
        _\b~_\b/_\b._\bb_\ba_\bs_\bh_\b__\bh_\bi_\bs_\bt_\bo_\br_\by
-              The default value of H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE, the file in which bash saves  the
+              The  default value of H\bHI\bIS\bST\bTF\bFI\bIL\bLE\bE, the file in which bash saves the
               command history
        _\b~_\b/_\b._\bi_\bn_\bp_\bu_\bt_\br_\bc
               Individual _\br_\be_\ba_\bd_\bl_\bi_\bn_\be initialization file
@@ -6733,15 +6730,15 @@ A\bAU\bUT\bTH\bHO\bOR\bRS\bS
 
 B\bBU\bUG\bG R\bRE\bEP\bPO\bOR\bRT\bTS\bS
        If you find a bug in b\bba\bas\bsh\bh,\b, you should report it.  But first, you should
-       make sure that it really is a bug, and that it appears  in  the  latest
-       version   of  b\bba\bas\bsh\bh.   The  latest  version  is  always  available  from
+       make  sure  that  it really is a bug, and that it appears in the latest
+       version  of  b\bba\bas\bsh\bh.   The  latest  version  is  always  available   from
        _\bf_\bt_\bp_\b:_\b/_\b/_\bf_\bt_\bp_\b._\bg_\bn_\bu_\b._\bo_\br_\bg_\b/_\bp_\bu_\bb_\b/_\bg_\bn_\bu_\b/_\bb_\ba_\bs_\bh_\b/          and          _\bh_\bt_\bt_\bp_\b:_\b/_\b/_\bg_\bi_\bt_\b._\bs_\ba_\bv_\ba_\bn_\b-
        _\bn_\ba_\bh_\b._\bg_\bn_\bu_\b._\bo_\br_\bg_\b/_\bc_\bg_\bi_\bt_\b/_\bb_\ba_\bs_\bh_\b._\bg_\bi_\bt_\b/_\bs_\bn_\ba_\bp_\bs_\bh_\bo_\bt_\b/_\bb_\ba_\bs_\bh_\b-_\bm_\ba_\bs_\bt_\be_\br_\b._\bt_\ba_\br_\b._\bg_\bz.
 
-       Once  you  have  determined that a bug actually exists, use the _\bb_\ba_\bs_\bh_\bb_\bu_\bg
-       command to submit a bug report.  If you have a fix, you are  encouraged
-       to  mail that as well!  Suggestions and `philosophical' bug reports may
-       be mailed  to  _\bb_\bu_\bg_\b-_\bb_\ba_\bs_\bh_\b@_\bg_\bn_\bu_\b._\bo_\br_\bg  or  posted  to  the  Usenet  newsgroup
+       Once you have determined that a bug actually exists,  use  the  _\bb_\ba_\bs_\bh_\bb_\bu_\bg
+       command  to submit a bug report.  If you have a fix, you are encouraged
+       to mail that as well!  Suggestions and `philosophical' bug reports  may
+       be  mailed  to  _\bb_\bu_\bg_\b-_\bb_\ba_\bs_\bh_\b@_\bg_\bn_\bu_\b._\bo_\br_\bg  or  posted  to  the  Usenet newsgroup
        g\bgn\bnu\bu.\b.b\bba\bas\bsh\bh.\b.b\bbu\bug\bg.
 
        ALL bug reports should include:
@@ -6752,7 +6749,7 @@ B\bBU\bUG\bG R\bRE\bEP\bPO\bOR\bRT\bTS\bS
        A description of the bug behaviour
        A short script or `recipe' which exercises the bug
 
-       _\bb_\ba_\bs_\bh_\bb_\bu_\b inserts  the first three items automatically into the template
+       _\bb_\ba_\bs_\bh_\bb_\bu_\binserts the first three items automatically into  the  template
        it provides for filing a bug report.
 
        Comments and bug reports concerning this manual page should be directed
@@ -6769,10 +6766,10 @@ B\bBU\bUG\bGS\bS
        Shell builtin commands and functions are not stoppable/restartable.
 
        Compound commands and command sequences of the form `a ; b ; c' are not
-       handled  gracefully  when  process  suspension  is  attempted.   When a
-       process is stopped, the shell immediately executes the next command  in
-       the  sequence.   It  suffices to place the sequence of commands between
-       parentheses to force it into a subshell, which  may  be  stopped  as  a
+       handled gracefully  when  process  suspension  is  attempted.   When  a
+       process  is stopped, the shell immediately executes the next command in
+       the sequence.  It suffices to place the sequence  of  commands  between
+       parentheses  to  force  it  into  a subshell, which may be stopped as a
        unit.
 
        Array variables may not (yet) be exported.
@@ -6781,4 +6778,4 @@ B\bBU\bUG\bGS\bS
 
 
 
-GNU Bash 5.2                      2023 May 14                          BASH(1)
+GNU Bash 5.2                      2023 May 23                          BASH(1)
index 367beede2122a2ffbc6d7eff6be9567a8d5e5165..ea23fc1eb057c9a106ecf0da6f92b108b3c6f04b 100644 (file)
@@ -5,12 +5,12 @@
 .\"    Case Western Reserve University
 .\"    chet.ramey@case.edu
 .\"
-.\"    Last Change: Sun May 14 15:32:59 EDT 2023
+.\"    Last Change: Tue May 23 11:29:30 EDT 2023
 .\"
 .\" bash_builtins, strip all but Built-Ins section
 .if \n(zZ=1 .ig zZ
 .if \n(zY=1 .ig zY
-.TH BASH 1 "2023 May 14" "GNU Bash 5.2"
+.TH BASH 1 "2023 May 23" "GNU Bash 5.2"
 .\"
 .\" There's some problem with having a `@'
 .\" in a tagged paragraph with the BSD man macros.
@@ -3622,7 +3622,7 @@ which executes \fIcommand\fP in the current execution environment
 and captures its output, again with trailing newlines removed.
 .PP
 The character \fIc\fP following the open brace must be a space, tab,
-newline, \fB(\fP, or \fB|\fP, and the close brace must be in a position
+newline, or \fB|\fP, and the close brace must be in a position
 where a reserved word may appear (i.e., preceded by a command terminator
 such as semicolon).
 \fBBash\fP allows the close brace to be joined to the remaining characters in
@@ -3641,11 +3641,8 @@ function is executing, and the \fBreturn\fP builtin forces
 however, the rest of the execution environment,
 including the positional parameters, is shared with the caller.
 .PP
-If the first character following the open brace is a \fB(\fP,
-\fIcommand\fP is executed in a subshell, and \fIcommand\fP must be
-terminated by a \fB)\fP. This is similar to the \fB(\fP compound
-command (see \fBCompound Commands\fP above).
-If the first character is a \fB|\fP, the construct expands to the
+If the first character following the open brace
+is a \fB|\fP, the construct expands to the
 value of the \fBREPLY\fP shell variable after \fIcommand\fP executes,
 without removing any trailing newlines,
 and the standard output of \fIcommand\fP remains the same as in the
index 3a5501f372c3933bbfe2e84eb6bf367258323245..d2e5effbfde33208c1701b32a256dfd47da6284c 100644 (file)
@@ -3,7 +3,7 @@
 </HEAD>
 <BODY><TABLE WIDTH=100%>
 <TR>
-<TH ALIGN=LEFT width=33%>BASH(1)<TH ALIGN=CENTER width=33%>2023 May 14<TH ALIGN=RIGHT width=33%>BASH(1)
+<TH ALIGN=LEFT width=33%>BASH(1)<TH ALIGN=CENTER width=33%>2023 May 23<TH ALIGN=RIGHT width=33%>BASH(1)
 </TR>
 </TABLE>
 <BR><A HREF="#index">Index</A>
@@ -4520,7 +4520,7 @@ and captures its output, again with trailing newlines removed.
 <P>
 
 The character <I>c</I> following the open brace must be a space, tab,
-newline, <B>(</B>, or <B>|</B>, and the close brace must be in a position
+newline, or <B>|</B>, and the close brace must be in a position
 where a reserved word may appear (i.e., preceded by a command terminator
 such as semicolon).
 <B>Bash</B> allows the close brace to be joined to the remaining characters in
@@ -4542,11 +4542,8 @@ however, the rest of the execution environment,
 including the positional parameters, is shared with the caller.
 <P>
 
-If the first character following the open brace is a <B>(</B>,
-<I>command</I> is executed in a subshell, and <I>command</I> must be
-terminated by a <B>)</B>. This is similar to the <B>(</B> compound
-command (see <B>Compound Commands</B> above).
-If the first character is a <B>|</B>, the construct expands to the
+If the first character following the open brace
+is a <B>|</B>, the construct expands to the
 value of the <B>REPLY</B> shell variable after <I>command</I> executes,
 without removing any trailing newlines,
 and the standard output of <I>command</I> remains the same as in the
@@ -15002,7 +14999,7 @@ There may be only one active coprocess at a time.
 <HR>
 <TABLE WIDTH=100%>
 <TR>
-<TH ALIGN=LEFT width=33%>GNU Bash 5.2<TH ALIGN=CENTER width=33%>2023 May 14<TH ALIGN=RIGHT width=33%>BASH(1)
+<TH ALIGN=LEFT width=33%>GNU Bash 5.2<TH ALIGN=CENTER width=33%>2023 May 23<TH ALIGN=RIGHT width=33%>BASH(1)
 </TR>
 </TABLE>
 <HR>
@@ -15108,7 +15105,7 @@ There may be only one active coprocess at a time.
 <DT><A HREF="#lbDI">BUGS</A><DD>
 </DL>
 <HR>
-This document was created by man2html from /usr/local/src/bash/bash-20230515/doc/bash.1.<BR>
-Time: 20 May 2023 11:02:33 EDT
+This document was created by man2html from /usr/local/src/bash/bash-20230522/doc/bash.1.<BR>
+Time: 23 May 2023 11:31:51 EDT
 </BODY>
 </HTML>
index 58733b18c73179f5e191a2ad1c06d54067743b16..a52e838f1e1e3b55e39842cc047c08c1fabcbbed 100644 (file)
@@ -1,9 +1,9 @@
 This is bash.info, produced by makeinfo version 6.8 from bashref.texi.
 
 This text is a brief description of the features that are present in the
-Bash shell (version 5.2, 14 May 2023).
+Bash shell (version 5.2, 23 May 2023).
 
-   This is Edition 5.2, last updated 14 May 2023, of 'The GNU Bash
+   This is Edition 5.2, last updated 23 May 2023, of 'The GNU Bash
 Reference Manual', for 'Bash', Version 5.2.
 
    Copyright (C) 1988-2023 Free Software Foundation, Inc.
@@ -26,10 +26,10 @@ Bash Features
 *************
 
 This text is a brief description of the features that are present in the
-Bash shell (version 5.2, 14 May 2023).  The Bash home page is
+Bash shell (version 5.2, 23 May 2023).  The Bash home page is
 <http://www.gnu.org/software/bash/>.
 
-   This is Edition 5.2, last updated 14 May 2023, of 'The GNU Bash
+   This is Edition 5.2, last updated 23 May 2023, of 'The GNU Bash
 Reference Manual', for 'Bash', Version 5.2.
 
    Bash contains features that appear in other popular shells, and some
@@ -2266,7 +2266,7 @@ which executes COMMAND in the current execution environment and captures
 its output, again with trailing newlines removed.
 
    The character C following the open brace must be a space, tab,
-newline, '(', or '|', and the close brace must be in a position where a
+newline, or '|', and the close brace must be in a position where a
 reserved word may appear (i.e., preceded by a command terminator such as
 semicolon).  Bash allows the close brace to be joined to the remaining
 characters in the word without being followed by a shell metacharacter
@@ -2282,20 +2282,18 @@ function is executing, and the 'return' builtin forces COMMAND to
 complete; however, the rest of the execution environment, including the
 positional parameters, is shared with the caller.
 
-   If the first character following the open brace is a '(', COMMAND is
-executed in a subshell, and COMMAND must be terminated by a ')'.  This
-is similar to the '(' compound command (*note Command Grouping::).  If
-the first character is a '|', the construct expands to the value of the
-'REPLY' shell variable after COMMAND executes, without removing any
-trailing newlines, and the standard output of COMMAND remains the same
-as in the calling shell.  Bash creates 'REPLY' as an initially-unset
-local variable when COMMAND executes, and restores 'REPLY' to the value
-it had before the command substitution after COMMAND completes, as with
-any local variable.
+   If the first character following the open brace is a '|', the
+construct expands to the value of the 'REPLY' shell variable after
+COMMAND executes, without removing any trailing newlines, and the
+standard output of COMMAND remains the same as in the calling shell.
+Bash creates 'REPLY' as an initially-unset local variable when COMMAND
+executes, and restores 'REPLY' to the value it had before the command
+substitution after COMMAND completes, as with any local variable.
 
    For example, this construct expands to '12345', and leaves the shell
 variable 'X' unchanged in the current execution environment:
 
+
      ${ local X=12345 ; echo $X; }
 
 (not declaring 'X' as local would modify its value in the current
@@ -12805,102 +12803,102 @@ Node: Brace Expansion\7f72539
 Node: Tilde Expansion\7f75270
 Node: Shell Parameter Expansion\7f77888
 Node: Command Substitution\7f96287
-Node: Arithmetic Expansion\7f99936
-Node: Process Substitution\7f100901
-Node: Word Splitting\7f102018
-Node: Filename Expansion\7f104063
-Node: Pattern Matching\7f106993
-Node: Quote Removal\7f111992
-Node: Redirections\7f112284
-Node: Executing Commands\7f121974
-Node: Simple Command Expansion\7f122641
-Node: Command Search and Execution\7f124748
-Node: Command Execution Environment\7f127132
-Node: Environment\7f130164
-Node: Exit Status\7f131824
-Node: Signals\7f133605
-Node: Shell Scripts\7f137051
-Node: Shell Builtin Commands\7f140075
-Node: Bourne Shell Builtins\7f142110
-Node: Bash Builtins\7f164441
-Node: Modifying Shell Behavior\7f196437
-Node: The Set Builtin\7f196779
-Node: The Shopt Builtin\7f207374
-Node: Special Builtins\7f223283
-Node: Shell Variables\7f224259
-Node: Bourne Shell Variables\7f224693
-Node: Bash Variables\7f226794
-Node: Bash Features\7f260856
-Node: Invoking Bash\7f261866
-Node: Bash Startup Files\7f267876
-Node: Interactive Shells\7f273004
-Node: What is an Interactive Shell?\7f273412
-Node: Is this Shell Interactive?\7f274058
-Node: Interactive Shell Behavior\7f274870
-Node: Bash Conditional Expressions\7f278496
-Node: Shell Arithmetic\7f283135
-Node: Aliases\7f286093
-Node: Arrays\7f288984
-Node: The Directory Stack\7f295544
-Node: Directory Stack Builtins\7f296325
-Node: Controlling the Prompt\7f300582
-Node: The Restricted Shell\7f303544
-Node: Bash POSIX Mode\7f306151
-Node: Shell Compatibility Mode\7f321941
-Node: Job Control\7f330182
-Node: Job Control Basics\7f330639
-Node: Job Control Builtins\7f335638
-Node: Job Control Variables\7f341430
-Node: Command Line Editing\7f342583
-Node: Introduction and Notation\7f344251
-Node: Readline Interaction\7f345871
-Node: Readline Bare Essentials\7f347059
-Node: Readline Movement Commands\7f348845
-Node: Readline Killing Commands\7f349802
-Node: Readline Arguments\7f351720
-Node: Searching\7f352761
-Node: Readline Init File\7f354944
-Node: Readline Init File Syntax\7f356202
-Node: Conditional Init Constructs\7f379990
-Node: Sample Init File\7f384183
-Node: Bindable Readline Commands\7f387304
-Node: Commands For Moving\7f388505
-Node: Commands For History\7f390553
-Node: Commands For Text\7f395544
-Node: Commands For Killing\7f399190
-Node: Numeric Arguments\7f402220
-Node: Commands For Completion\7f403356
-Node: Keyboard Macros\7f407544
-Node: Miscellaneous Commands\7f408229
-Node: Readline vi Mode\7f414264
-Node: Programmable Completion\7f415168
-Node: Programmable Completion Builtins\7f422945
-Node: A Programmable Completion Example\7f433930
-Node: Using History Interactively\7f439175
-Node: Bash History Facilities\7f439856
-Node: Bash History Builtins\7f442858
-Node: History Interaction\7f447879
-Node: Event Designators\7f451496
-Node: Word Designators\7f452847
-Node: Modifiers\7f454604
-Node: Installing Bash\7f456409
-Node: Basic Installation\7f457543
-Node: Compilers and Options\7f461262
-Node: Compiling For Multiple Architectures\7f462000
-Node: Installation Names\7f463689
-Node: Specifying the System Type\7f465795
-Node: Sharing Defaults\7f466509
-Node: Operation Controls\7f467179
-Node: Optional Features\7f468134
-Node: Reporting Bugs\7f479350
-Node: Major Differences From The Bourne Shell\7f480681
-Node: GNU Free Documentation License\7f497527
-Node: Indexes\7f522701
-Node: Builtin Index\7f523152
-Node: Reserved Word Index\7f530250
-Node: Variable Index\7f532695
-Node: Function Index\7f549680
-Node: Concept Index\7f563461
+Node: Arithmetic Expansion\7f99748
+Node: Process Substitution\7f100713
+Node: Word Splitting\7f101830
+Node: Filename Expansion\7f103875
+Node: Pattern Matching\7f106805
+Node: Quote Removal\7f111804
+Node: Redirections\7f112096
+Node: Executing Commands\7f121786
+Node: Simple Command Expansion\7f122453
+Node: Command Search and Execution\7f124560
+Node: Command Execution Environment\7f126944
+Node: Environment\7f129976
+Node: Exit Status\7f131636
+Node: Signals\7f133417
+Node: Shell Scripts\7f136863
+Node: Shell Builtin Commands\7f139887
+Node: Bourne Shell Builtins\7f141922
+Node: Bash Builtins\7f164253
+Node: Modifying Shell Behavior\7f196249
+Node: The Set Builtin\7f196591
+Node: The Shopt Builtin\7f207186
+Node: Special Builtins\7f223095
+Node: Shell Variables\7f224071
+Node: Bourne Shell Variables\7f224505
+Node: Bash Variables\7f226606
+Node: Bash Features\7f260668
+Node: Invoking Bash\7f261678
+Node: Bash Startup Files\7f267688
+Node: Interactive Shells\7f272816
+Node: What is an Interactive Shell?\7f273224
+Node: Is this Shell Interactive?\7f273870
+Node: Interactive Shell Behavior\7f274682
+Node: Bash Conditional Expressions\7f278308
+Node: Shell Arithmetic\7f282947
+Node: Aliases\7f285905
+Node: Arrays\7f288796
+Node: The Directory Stack\7f295356
+Node: Directory Stack Builtins\7f296137
+Node: Controlling the Prompt\7f300394
+Node: The Restricted Shell\7f303356
+Node: Bash POSIX Mode\7f305963
+Node: Shell Compatibility Mode\7f321753
+Node: Job Control\7f329994
+Node: Job Control Basics\7f330451
+Node: Job Control Builtins\7f335450
+Node: Job Control Variables\7f341242
+Node: Command Line Editing\7f342395
+Node: Introduction and Notation\7f344063
+Node: Readline Interaction\7f345683
+Node: Readline Bare Essentials\7f346871
+Node: Readline Movement Commands\7f348657
+Node: Readline Killing Commands\7f349614
+Node: Readline Arguments\7f351532
+Node: Searching\7f352573
+Node: Readline Init File\7f354756
+Node: Readline Init File Syntax\7f356014
+Node: Conditional Init Constructs\7f379802
+Node: Sample Init File\7f383995
+Node: Bindable Readline Commands\7f387116
+Node: Commands For Moving\7f388317
+Node: Commands For History\7f390365
+Node: Commands For Text\7f395356
+Node: Commands For Killing\7f399002
+Node: Numeric Arguments\7f402032
+Node: Commands For Completion\7f403168
+Node: Keyboard Macros\7f407356
+Node: Miscellaneous Commands\7f408041
+Node: Readline vi Mode\7f414076
+Node: Programmable Completion\7f414980
+Node: Programmable Completion Builtins\7f422757
+Node: A Programmable Completion Example\7f433742
+Node: Using History Interactively\7f438987
+Node: Bash History Facilities\7f439668
+Node: Bash History Builtins\7f442670
+Node: History Interaction\7f447691
+Node: Event Designators\7f451308
+Node: Word Designators\7f452659
+Node: Modifiers\7f454416
+Node: Installing Bash\7f456221
+Node: Basic Installation\7f457355
+Node: Compilers and Options\7f461074
+Node: Compiling For Multiple Architectures\7f461812
+Node: Installation Names\7f463501
+Node: Specifying the System Type\7f465607
+Node: Sharing Defaults\7f466321
+Node: Operation Controls\7f466991
+Node: Optional Features\7f467946
+Node: Reporting Bugs\7f479162
+Node: Major Differences From The Bourne Shell\7f480493
+Node: GNU Free Documentation License\7f497339
+Node: Indexes\7f522513
+Node: Builtin Index\7f522964
+Node: Reserved Word Index\7f530062
+Node: Variable Index\7f532507
+Node: Function Index\7f549492
+Node: Concept Index\7f563273
 \1f
 End Tag Table
 
index d76fbc890c81386cc1d13857f6f103ef30f95717..66f376059c617ce58e919994d562cbf0e4f80276 100644 (file)
Binary files a/doc/bash.pdf and b/doc/bash.pdf differ
index d5f4395d764e7f2c76d2e84b79635ac89af73008..8f21705abb947c2fa17b946b4841799e53b51bb1 100644 (file)
@@ -1,6 +1,6 @@
 %!PS-Adobe-3.0
 %%Creator: groff version 1.22.4
-%%CreationDate: Sat May 20 11:03:03 2023
+%%CreationDate: Tue May 23 11:31:59 2023
 %%DocumentNeededResources: font Times-Roman
 %%+ font Times-Bold
 %%+ font Times-Italic
@@ -340,7 +340,7 @@ F .475(xtended deb)-.15 F(ug-)-.2 E
 (~/.bashr)3.598 E(c)-.37 E F0 1.598(if the)4.408 F(shell is interacti)
 144 710.4 Q .3 -.15(ve \()-.25 H(see).15 E F4(INV)2.5 E(OCA)-.405 E
 (TION)-.855 E F0(belo)2.25 E(w\).)-.25 E(GNU Bash 5.2)72 768 Q
-(2023 May 14)148.175 E(1)202.335 E 0 Cg EP
+(2023 May 23)148.175 E(1)202.335 E 0 Cg EP
 %%Page: 2 2
 %%BeginPageSetup
 BP
@@ -463,7 +463,7 @@ F2(~/.bashr)108 691.2 Q(c)-.37 E F0 2.535(,i)C 2.535(ft)-2.535 G .035
 Q F1(bash)5.306 E F0 2.806(is started non-interacti)5.306 F -.15(ve)-.25
 G(ly).15 E 5.306(,t)-.65 G 5.306(or)-5.306 G 2.806
 (un a shell script, for e)-5.306 F 2.805(xample, it looks for the v)-.15
-F(ariable)-.25 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(2)202.335 E
+F(ariable)-.25 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(2)202.335 E
 0 Cg EP
 %%Page: 3 3
 %%BeginPageSetup
@@ -595,7 +595,7 @@ F2(case)3.144 E F0(or)3.144 E F2(select)3.143 E F0 .643(command \(only)
 669.6 R F6(SHELL GRAMMAR)72 686.4 Q F0
 (This section describes the syntax of the v)108 698.4 Q
 (arious forms of shell commands.)-.25 E(GNU Bash 5.2)72 768 Q
-(2023 May 14)148.175 E(3)202.335 E 0 Cg EP
+(2023 May 23)148.175 E(3)202.335 E 0 Cg EP
 %%Page: 4 4
 %%BeginPageSetup
 BP
@@ -718,7 +718,7 @@ or more pipelines separated by the)108 650.4 R F1(&&)2.671 E F0(and)
 G(cuted if, and only if,).15 E F2(command1)2.7 E F0(returns an e)2.5 E
 (xit status of zero \(success\).)-.15 E(An OR list has the form)108
 712.8 Q F2(command1)144 729.6 Q F1(||)2.5 E F2(command2)2.5 E F0
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(4)202.335 E 0 Cg EP
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(4)202.335 E 0 Cg EP
 %%Page: 5 5
 %%BeginPageSetup
 BP
@@ -854,7 +854,7 @@ ormal quoting and pattern characters lose their meanings between brack)
 .583(with inde)144 720 R 3.083(x0)-.15 G .582
 (contains the portion of the string matching the entire re)-.001 F .582
 (gular e)-.15 F 3.082(xpression. Substrings)-.15 F(GNU Bash 5.2)72 768 Q
-(2023 May 14)148.175 E(5)202.335 E 0 Cg EP
+(2023 May 23)148.175 E(5)202.335 E 0 Cg EP
 %%Page: 6 6
 %%BeginPageSetup
 BP
@@ -998,7 +998,7 @@ F0 .254(in place of)2.754 F F3(;;)2.754 E F0 .254(causes e)2.754 F -.15
 (Using)144 720 Q F3(;;&)3.378 E F0 .878(in place of)3.378 F F3(;;)3.378
 E F0 .878(causes the shell to test the ne)3.378 F .878
 (xt pattern list in the statement, if an)-.15 F 2.178 -.65(y, a)-.15 H
-(nd).65 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(6)202.335 E 0 Cg
+(nd).65 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(6)202.335 E 0 Cg
 EP
 %%Page: 7 7
 %%BeginPageSetup
@@ -1124,7 +1124,7 @@ Q F0 2.698(As)108 691.2 S .198
 (cutes a compound command with).15 F 2.5(an)108 703.2 S .5 -.25(ew s)
 -2.5 H(et of positional parameters.).25 E
 (Shell functions are declared as follo)5 E(ws:)-.25 E(GNU Bash 5.2)72
-768 Q(2023 May 14)148.175 E(7)202.335 E 0 Cg EP
+768 Q(2023 May 23)148.175 E(7)202.335 E 0 Cg EP
 %%Page: 8 8
 %%BeginPageSetup
 BP
@@ -1257,7 +1257,7 @@ E F2(@)2.5 E F0(ha)2.5 E .3 -.15(ve s)-.2 H
 (replaced as speci\214ed by the ANSI C standard.)3.027 F
 (Backslash escape sequences, if present, are decoded as follo)108 684 Q
 (ws:)-.25 E F2(\\a)144 696 Q F0(alert \(bell\))180 696 Q F2(\\b)144 708
-Q F0(backspace)180 708 Q(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(8)
+Q F0(backspace)180 708 Q(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(8)
 202.335 E 0 Cg EP
 %%Page: 9 9
 %%BeginPageSetup
@@ -1373,7 +1373,7 @@ F0 2.664(commands\). When)2.664 F .164(+= is)2.664 F .132
 (sion and added to the v)108 722.4 R(ariable')-.25 E 3.726(sc)-.55 G
 1.227(urrent v)-3.726 F 1.227(alue, which is also e)-.25 F -.25(va)-.25
 G 3.727(luated. When).25 F 1.227(+= is applied to an array)3.727 F
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(9)202.335 E 0 Cg EP
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(9)202.335 E 0 Cg EP
 %%Page: 10 10
 %%BeginPageSetup
 BP
@@ -1515,7 +1515,7 @@ E(ground pipeline.)-.15 E F1<ad>108 703.2 Q F0 .882
 R -.2(vo)-.4 G .881(cation, by the).2 F F1(set)3.381 E F0 -.2(bu)3.381 G
 .881(iltin command, or).2 F(those set by the shell itself \(such as the)
 144 715.2 Q F1<ad69>2.5 E F0(option\).)2.5 E(GNU Bash 5.2)72 768 Q
-(2023 May 14)148.175 E(10)197.335 E 0 Cg EP
+(2023 May 23)148.175 E(10)197.335 E 0 Cg EP
 %%Page: 11 11
 %%BeginPageSetup
 BP
@@ -1643,7 +1643,7 @@ F F1($0)2.751 E F0 2.751(;s)C(ee)-2.751 E .041
 (f)-5.216 E F1 -.3(BA)2.716 G(SH_ARGV0).3 E F0 .216
 (is unset, it loses its special properties, e)2.716 F -.15(ve)-.25 G
 2.716(ni).15 G(f)-2.716 E(it is subsequently reset.)144 705.6 Q
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(11)197.335 E 0 Cg EP
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(11)197.335 E 0 Cg EP
 %%Page: 12 12
 %%BeginPageSetup
 BP
@@ -1748,7 +1748,7 @@ H(he current completion function.).1 E F1(COMP_LINE)108 690 Q F0 1.208
 (yt)-3.537 G 1.037(he programmable completion f)-3.537 F 1.037
 (acilities \(see)-.1 F F1(Pr)3.537 E 1.037(ogrammable Completion)-.18 F
 F0(be-)3.537 E(lo)144 726 Q(w\).)-.25 E(GNU Bash 5.2)72 768 Q
-(2023 May 14)148.175 E(12)197.335 E 0 Cg EP
+(2023 May 23)148.175 E(12)197.335 E 0 Cg EP
 %%Page: 13 13
 %%BeginPageSetup
 BP
@@ -1871,7 +1871,7 @@ F1(]})A F0 -.1(wa)2.512 G 2.512(sc).1 G .012(alled from the \214le)
 (at line number)144 702 R F1(${B)3.684 E(ASH_LINENO[)-.3 E F2($i)A F1
 (]})A F0 6.184(.T)C(he)-6.184 E F1(caller)3.683 E F0 -.2(bu)3.683 G
 1.183(iltin displays the current call stack using).2 F
-(this information.)144 714 Q(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E
+(this information.)144 714 Q(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E
 (13)197.335 E 0 Cg EP
 %%Page: 14 14
 %%BeginPageSetup
@@ -1966,7 +1966,7 @@ F0 1.547(line b)4.047 F(uf)-.2 E(fer)-.25 E 4.047(,f)-.4 G 1.547
 3.517 F(UIL)-.09 E 1.017(TIN COMMANDS)-.828 F F0(belo)3.267 E 3.516
 (w\). The)-.25 F 1.016(characters between the insertion point and the)
 3.516 F(mark are often called the)144 720 Q F3 -.37(re)2.5 G(gion)-.03 E
-F0(.)A(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(14)197.335 E 0 Cg EP
+F0(.)A(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(14)197.335 E 0 Cg EP
 %%Page: 15 15
 %%BeginPageSetup
 BP
@@ -2089,7 +2089,7 @@ E F0 3.748(command. This)3.748 F 1.247
 (is a colon-separated list of directories in which the)3.748 F 3.795
 (shell looks for destination directories speci\214ed by the)144 729.6 R
 F1(cd)6.295 E F0 6.296(command. A)6.296 F 3.796(sample v)6.296 F 3.796
-(alue is)-.25 F(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(15)197.335 E
+(alue is)-.25 F(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(15)197.335 E
 0 Cg EP
 %%Page: 16 16
 %%BeginPageSetup
@@ -2205,7 +2205,7 @@ F F5(nosort)3.464 E F0(disables)3.464 E .497
 F5(-)2.96 E F0 .46(sorts by name in descending order)2.96 F 5.46(.A)-.55
 G .76 -.15(ny i)-5.46 H -1.95 -.4(nv a).15 H .46(lid v).4 F .46
 (alue restores the historical sorting be-)-.25 F(ha)144 696 Q(vior)-.2 E
-(.)-.55 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(16)197.335 E 0 Cg
+(.)-.55 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(16)197.335 E 0 Cg
 EP
 %%Page: 17 17
 %%BeginPageSetup
@@ -2337,7 +2337,7 @@ F0 .503(Controls the action of an interacti)144 708 R .803 -.15(ve s)
 144 720 R .426(alue is the number of consecuti)-.25 F -.15(ve)-.25 G F3
 (EOF)3.076 E F0 .426
 (characters which must be typed as the \214rst characters)2.676 F
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(17)197.335 E 0 Cg EP
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(17)197.335 E 0 Cg EP
 %%Page: 18 18
 %%BeginPageSetup
 BP
@@ -2440,7 +2440,7 @@ ser mail \214les that it uses is system dependent \(e.g., /v)144 576 Q
 -.1 F(administrator who installs)144 684 Q F1(bash)2.5 E F0 5(.A)C
 (common v)-2.5 E(alue is)-.25 E/F5 10/Courier@0 SF
 (/usr/local/bin:/usr/lo-)2.5 E(cal/sbin:/usr/bin:/usr/sbin:/bin:/sbin)
-144 696 Q F0(.)A(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(18)197.335
+144 696 Q F0(.)A(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(18)197.335
 E 0 Cg EP
 %%Page: 19 19
 %%BeginPageSetup
@@ -2555,7 +2555,7 @@ G(iltin.).2 E(The)144 680.4 Q F1(select)2.81 E F0 .31
 S 1.05(it for a line of input after issuing the primary prompt.).1 F F1
 (Bash)6.05 E F0 1.05(terminates after w)3.55 F 1.05(aiting for that)-.1
 F(number of seconds if a complete line of input does not arri)144 716.4
-Q -.15(ve)-.25 G(.).15 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(19)
+Q -.15(ve)-.25 G(.).15 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(19)
 197.335 E 0 Cg EP
 %%Page: 20 20
 %%BeginPageSetup
@@ -2704,7 +2704,7 @@ F 3.133(wt)-.25 G .633(he remaining w)-3.133 F .633(ords are inter)-.1 F
 (syntax introduced abo)6.22 F -.15(ve)-.15 G 8.72(.W).15 G 3.72
 (hen assigning to an inde)-8.72 F -.15(xe)-.15 G 6.22(da).15 G(rray)
 -6.22 E 6.22(,i)-.65 G(f)-6.22 E F2(name)6.58 E F0(is)6.4 E
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(20)197.335 E 0 Cg EP
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(20)197.335 E 0 Cg EP
 %%Page: 21 21
 %%BeginPageSetup
 BP
@@ -2858,7 +2858,7 @@ E(formed at the same time as tilde, parameter)108 688.8 Q 2.5(,v)-.4 G
 -.15 F .003(ord are remo)-.1 F -.15(ve)-.15 G 2.503(du).15 G .003
 (nless the)-2.503 F(y)-.15 E(ha)108 717.6 Q .3 -.15(ve b)-.2 H
 (een quoted themselv).15 E(es \()-.15 E F1(quote r)A(emo)-.37 E(val)-.1
-E F0(\).)A(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(21)197.335 E 0 Cg
+E F0(\).)A(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(21)197.335 E 0 Cg
 EP
 %%Page: 22 22
 %%BeginPageSetup
@@ -2995,7 +2995,7 @@ with the speci\214ed login name.)108 679.2 Q .092
 (tilde in the tilde-pre\214x consist of a number)108 720 R F2(N)4.141 E
 F0 4.142(,o)C 1.642(ptionally pre\214x)-4.142 F 1.642
 (ed by a `+' or a `\255', the tilde-pre\214x is)-.15 F(GNU Bash 5.2)72
-768 Q(2023 May 14)148.175 E(22)197.335 E 0 Cg EP
+768 Q(2023 May 23)148.175 E(22)197.335 E 0 Cg EP
 %%Page: 23 23
 %%BeginPageSetup
 BP
@@ -3122,7 +3122,7 @@ F F4(pa-)4.561 E -.15(ra)144 612 S(meter).15 E F0 5.741(.T).73 G .741
 (alue)-.92 E F0 5.745(.I)C(f)-5.745 E F4(par)4.495 E(ameter)-.15 E F0
 .745(is null or unset, nothing is substituted, otherwise the e)3.975 F
 (xpan-)-.15 E(sion of)144 708 Q F4(wor)2.84 E(d)-.37 E F0
-(is substituted.)3.27 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(23)
+(is substituted.)3.27 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(23)
 197.335 E 0 Cg EP
 %%Page: 24 24
 %%BeginPageSetup
@@ -3254,7 +3254,7 @@ F0(belo)3.132 E 4.432 -.65(w. I)-.25 H 3.132(ft).65 G .632
 (then the result of the e)144 727.2 R 1.151(xpansion is the e)-.15 F
 1.151(xpanded v)-.15 F 1.151(alue of)-.25 F F1(par)4.901 E(ameter)-.15 E
 F0 1.151(with the shortest matching)4.381 F(GNU Bash 5.2)72 768 Q
-(2023 May 14)148.175 E(24)197.335 E 0 Cg EP
+(2023 May 23)148.175 E(24)197.335 E 0 Cg EP
 %%Page: 25 25
 %%BeginPageSetup
 BP
@@ -3386,7 +3386,7 @@ E F0(or)3.236 E F1(*)3.236 E F0 3.236(,t)C .736
 2.847(,t)C .348(he substitution operation is applied to each member of \
 the array in turn,)-2.847 F(and the e)144 681.6 Q
 (xpansion is the resultant list.)-.15 E(${)108 698.4 Q F2(par)A(ameter)
--.15 E F1(^)A F2(pattern)A F0(})A(GNU Bash 5.2)72 768 Q(2023 May 14)
+-.15 E F1(^)A F2(pattern)A F0(})A(GNU Bash 5.2)72 768 Q(2023 May 23)
 148.175 E(25)197.335 E 0 Cg EP
 %%Page: 26 26
 %%BeginPageSetup
@@ -3503,7 +3503,7 @@ Q F2($\()144 679.2 Q F1(command)A F2(\))1.666 E F0(or \(deprecated\))108
 F0 .089(performs the e)2.589 F .089(xpansion by e)-.15 F -.15(xe)-.15 G
 (cuting).15 E F1(command)2.589 E F0 .088(in a subshell en)2.589 F .088
 (vironment and replacing the command)-.4 F(GNU Bash 5.2)72 768 Q
-(2023 May 14)148.175 E(26)197.335 E 0 Cg EP
+(2023 May 23)148.175 E(26)197.335 E 0 Cg EP
 %%Page: 27 27
 %%BeginPageSetup
 BP
@@ -3533,17 +3533,16 @@ F 2.592(eu)-.1 G 2.592(pt)-2.592 G .092(he command; none are)-2.592 F
 211.2 R -.15(xe)-.15 G(cutes).15 E F2(command)3.14 E F0 .639
 (in the current e)3.14 F -.15(xe)-.15 G .639(cution en).15 F .639
 (vironment and captures its output, ag)-.4 F .639(ain with trailing)-.05
-F(ne)108 223.2 Q(wlines remo)-.25 E -.15(ve)-.15 G(d.).15 E .363
-(The character)108 240 R F2(c)2.863 E F0(follo)2.863 E .364
-(wing the open brace must be a space, tab, ne)-.25 F(wline,)-.25 E F1
-(\()2.864 E F0 2.864(,o)C(r)-2.864 E F1(|)2.864 E F0 2.864(,a)C .364
-(nd the close brace must be)-2.864 F 1.152(in a position where a reserv)
-108 252 R 1.152(ed w)-.15 F 1.152
-(ord may appear \(i.e., preceded by a command terminator such as semi-)
--.1 F(colon\).)108 264 Q F1(Bash)5.226 E F0(allo)2.726 E .227
+F(ne)108 223.2 Q(wlines remo)-.25 E -.15(ve)-.15 G(d.).15 E .27
+(The character)108 240 R F2(c)2.771 E F0(follo)2.771 E .271
+(wing the open brace must be a space, tab, ne)-.25 F .271(wline, or)-.25
+F F1(|)2.771 E F0 2.771(,a)C .271(nd the close brace must be in)-2.771 F
+2.822(ap)108 252 S .322(osition where a reserv)-2.822 F .321(ed w)-.15 F
+.321(ord may appear \(i.e., preceded by a command terminator such as se\
+micolon\).)-.1 F F1(Bash)108 264 Q F0(allo)2.709 E .209
 (ws the close brace to be joined to the remaining characters in the w)
--.25 F .227(ord without being fol-)-.1 F(lo)108 276 Q
-(wed by a shell metacharacter as a reserv)-.25 E(ed w)-.15 E(ord w)-.1 E
+-.25 F .21(ord without being follo)-.1 F .21(wed by)-.25 F 2.5(as)108
+276 S(hell metacharacter as a reserv)-2.5 E(ed w)-.15 E(ord w)-.1 E
 (ould usually require.)-.1 E(An)108 292.8 Q 3.384(ys)-.15 G .884(ide ef)
 -3.384 F .884(fects of)-.25 F F2(command)3.384 E F0(tak)3.384 E 3.384
 (ee)-.1 G -.25(ff)-3.384 G .884(ect immediately in the current e).25 F
@@ -3560,4123 +3559,4118 @@ R -.15(xe)-.15 G .221(cuting an unnamed shell function: local v).15 F
 -.25 G 2.52 -.4(r, t).15 H 1.72(he rest of the e).4 F -.15(xe)-.15 G
 1.721(cution en).15 F 1.721
 (vironment, including the positional parameters, is shared with the)-.4
-F(caller)108 357.6 Q(.)-.55 E .183(If the \214rst character follo)108
-374.4 R .183(wing the open brace is a)-.25 F F1(\()2.683 E F0(,)A F2
-(command)2.683 E F0 .182(is e)2.683 F -.15(xe)-.15 G .182
-(cuted in a subshell, and).15 F F2(command)2.682 E F0(must)2.682 E .497
-(be terminated by a)108 386.4 R F1(\))2.997 E F0 2.997(.T)C .497
-(his is similar to the)-2.997 F F1(\()2.997 E F0 .497
-(compound command \(see)2.997 F F1 .497(Compound Commands)2.997 F F0
-(abo)2.997 E -.15(ve)-.15 G 2.998(\). If).15 F .152
-(the \214rst character is a)108 398.4 R F1(|)2.652 E F0 2.652(,t)C .152
-(he construct e)-2.652 F .152(xpands to the v)-.15 F .151(alue of the)
--.25 F F1(REPL)2.651 E(Y)-.92 E F0 .151(shell v)2.651 F .151
-(ariable after)-.25 F F2(command)2.651 E F0 -.15(exe)2.651 G(-).15 E
-.336(cutes, without remo)108 410.4 R .336(ving an)-.15 F 2.836(yt)-.15 G
-.336(railing ne)-2.836 F .336(wlines, and the standard output of)-.25 F
-F2(command)2.836 E F0 .337(remains the same as in)2.836 F .126
-(the calling shell.)108 422.4 R F1(Bash)5.126 E F0(creates)2.626 E F1
-(REPL)2.626 E(Y)-.92 E F0 .125(as an initially-unset local v)2.625 F
-.125(ariable when)-.25 F F2(command)2.625 E F0 -.15(exe)2.625 G .125
-(cutes, and re-).15 F(stores)108 434.4 Q F1(REPL)3.11 E(Y)-.92 E F0 .61
-(to the v)3.11 F .61(alue it had before the command substitution after)
--.25 F F2(command)3.11 E F0 .61(completes, as with an)3.11 F(y)-.15 E
-(local v)108 446.4 Q(ariable.)-.25 E .894
-(Command substitutions may be nested.)108 463.2 R 2.494 -.8(To n)5.894 H
-.894(est when using the backquoted form, escape the inner back-).8 F
-(quotes with backslashes.)108 475.2 Q .004
-(If the substitution appears within double quotes,)108 492 R F1(bash)
+F(caller)108 357.6 Q(.)-.55 E .392(If the \214rst character follo)108
+374.4 R .392(wing the open brace is a)-.25 F F1(|)2.892 E F0 2.892(,t)C
+.392(he construct e)-2.892 F .392(xpands to the v)-.15 F .392
+(alue of the)-.25 F F1(REPL)2.892 E(Y)-.92 E F0(shell)2.892 E -.25(va)
+108 386.4 S .505(riable after).25 F F2(command)3.005 E F0 -.15(exe)3.005
+G .505(cutes, without remo).15 F .505(ving an)-.15 F 3.005(yt)-.15 G
+.505(railing ne)-3.005 F .505(wlines, and the standard output of)-.25 F
+F2(com-)3.005 E(mand)108 398.4 Q F0 1.208
+(remains the same as in the calling shell.)3.709 F F1(Bash)6.208 E F0
+(creates)3.708 E F1(REPL)3.708 E(Y)-.92 E F0 1.208
+(as an initially-unset local v)3.708 F(ariable)-.25 E(when)108 410.4 Q
+F2(command)3.514 E F0 -.15(exe)3.514 G 1.014(cutes, and restores).15 F
+F1(REPL)3.514 E(Y)-.92 E F0 1.014(to the v)3.514 F 1.014
+(alue it had before the command substitution after)-.25 F F2(command)108
+422.4 Q F0(completes, as with an)2.5 E 2.5(yl)-.15 G(ocal v)-2.5 E
+(ariable.)-.25 E .894(Command substitutions may be nested.)108 439.2 R
+2.494 -.8(To n)5.894 H .894
+(est when using the backquoted form, escape the inner back-).8 F
+(quotes with backslashes.)108 451.2 Q .004
+(If the substitution appears within double quotes,)108 468 R F1(bash)
 2.504 E F0 .004(does not perform w)2.504 F .004
 (ord splitting and pathname e)-.1 F(xpan-)-.15 E(sion on the results.)
-108 504 Q F1(Arithmetic Expansion)87 520.8 Q F0 1.035(Arithmetic e)108
-532.8 R 1.035(xpansion allo)-.15 F 1.035(ws the e)-.25 F -.25(va)-.25 G
+108 480 Q F1(Arithmetic Expansion)87 496.8 Q F0 1.035(Arithmetic e)108
+508.8 R 1.035(xpansion allo)-.15 F 1.035(ws the e)-.25 F -.25(va)-.25 G
 1.034(luation of an arithmetic e).25 F 1.034
 (xpression and the substitution of the result.)-.15 F
-(The format for arithmetic e)108 544.8 Q(xpansion is:)-.15 E F1($\(\()
-144 561.6 Q F2 -.2(ex)C(pr).2 E(ession)-.37 E F1(\)\))A F0(The)108 578.4
+(The format for arithmetic e)108 520.8 Q(xpansion is:)-.15 E F1($\(\()
+144 537.6 Q F2 -.2(ex)C(pr).2 E(ession)-.37 E F1(\)\))A F0(The)108 554.4
 Q F2 -.2(ex)2.735 G(pr).2 E(ession)-.37 E F0(under)2.975 E .235
 (goes the same e)-.18 F .236
 (xpansions as if it were within double quotes, b)-.15 F .236
-(ut double quote charac-)-.2 F .421(ters in)108 590.4 R F2 -.2(ex)2.921
+(ut double quote charac-)-.2 F .421(ters in)108 566.4 R F2 -.2(ex)2.921
 G(pr).2 E(ession)-.37 E F0 .421(are not treated specially and are remo)
 2.921 F -.15(ve)-.15 G 2.921(d. All).15 F(tok)2.92 E .42(ens in the e)
 -.1 F .42(xpression under)-.15 F .42(go parame-)-.18 F 1.209(ter and v)
-108 602.4 R 1.209(ariable e)-.25 F 1.209
+108 578.4 R 1.209(ariable e)-.25 F 1.209
 (xpansion, command substitution, and quote remo)-.15 F -.25(va)-.15 G
 3.709(l. The).25 F 1.21(result is treated as the arith-)3.709 F(metic e)
-108 614.4 Q(xpression to be e)-.15 E -.25(va)-.25 G 2.5
+108 590.4 Q(xpression to be e)-.15 E -.25(va)-.25 G 2.5
 (luated. Arithmetic).25 F -.15(ex)2.5 G(pansions may be nested.).15 E
-1.379(The e)108 631.2 R -.25(va)-.25 G 1.378
+1.379(The e)108 607.2 R -.25(va)-.25 G 1.378
 (luation is performed according to the rules listed belo).25 F 3.878(wu)
 -.25 G(nder)-3.878 E/F3 9/Times-Bold@0 SF 1.378(ARITHMETIC EV)3.878 F
 (ALU)-1.215 E -.855(AT)-.54 G(ION).855 E/F4 9/Times-Roman@0 SF(.)A F0
-(If)5.878 E F2 -.2(ex)108 643.2 S(pr).2 E(ession)-.37 E F0(is in)2.74 E
+(If)5.878 E F2 -.2(ex)108 619.2 S(pr).2 E(ession)-.37 E F0(is in)2.74 E
 -.25(va)-.4 G(lid,).25 E F1(bash)2.5 E F0(prints a message indicating f)
-2.5 E(ailure and no substitution occurs.)-.1 E F1(Pr)87 660 Q
-(ocess Substitution)-.18 E F2(Pr)108 672 Q .405(ocess substitution)-.45
+2.5 E(ailure and no substitution occurs.)-.1 E F1(Pr)87 636 Q
+(ocess Substitution)-.18 E F2(Pr)108 648 Q .405(ocess substitution)-.45
 F F0(allo)2.905 E .405(ws a process')-.25 F 2.905(si)-.55 G .405
 (nput or output to be referred to using a \214lename.)-2.905 F .405
-(It tak)5.405 F .405(es the form)-.1 F(of)108 684 Q F1(<\()3.251 E F2
+(It tak)5.405 F .405(es the form)-.1 F(of)108 660 Q F1(<\()3.251 E F2
 (list)A F1(\)).833 E F0(or)3.251 E F1(>\()3.251 E F2(list)A F1(\)).833 E
 F0 5.751(.T)C .751(he process)-5.751 F F2(list)3.251 E F0 .751
 (is run asynchronously)3.251 F 3.251(,a)-.65 G .751
 (nd its input or output appears as a \214lename.)-3.251 F .147
-(This \214lename is passed as an ar)108 696 R .148
+(This \214lename is passed as an ar)108 672 R .148
 (gument to the current command as the result of the e)-.18 F 2.648
 (xpansion. If)-.15 F(the)2.648 E F1(>\()2.648 E F2(list)A F1(\)).833 E
-F0 .56(form is used, writing to the \214le will pro)108 708 R .56
+F0 .56(form is used, writing to the \214le will pro)108 684 R .56
 (vide input for)-.15 F F2(list)3.059 E F0 5.559(.I)C 3.059(ft)-5.559 G
 (he)-3.059 E F1(<\()3.059 E F2(list)A F1(\)).833 E F0 .559
-(form is used, the \214le passed as an)3.059 F(ar)108 720 Q 1.56
-(gument should be read to obtain the output of)-.18 F F2(list)4.06 E F0
-6.56(.P)C 1.56(rocess substitution is supported on systems that)-6.56 F
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(27)197.335 E 0 Cg EP
+(form is used, the \214le passed as an)3.059 F(ar)108 696 Q .308
+(gument should be read to obtain the output of)-.18 F F2(list)2.808 E F0
+5.308(.P)C .309(rocess substitution is supported on systems that sup-)
+-5.308 F(port named pipes \()108 708 Q F2(FIFOs)A F0 2.5(\)o)C 2.5(rt)
+-2.5 G(he)-2.5 E F1(/de)2.5 E(v/fd)-.15 E F0
+(method of naming open \214les.)2.5 E .897(When a)108 724.8 R -.25(va)
+-.2 G .896(ilable, process substitution is performed simultaneously wit\
+h parameter and v).25 F .896(ariable e)-.25 F(xpansion,)-.15 E
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(27)197.335 E 0 Cg EP
 %%Page: 28 28
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
 (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E
-(support named pipes \()108 84 Q/F1 10/Times-Italic@0 SF(FIFOs)A F0 2.5
-(\)o)C 2.5(rt)-2.5 G(he)-2.5 E/F2 10/Times-Bold@0 SF(/de)2.5 E(v/fd)-.15
-E F0(method of naming open \214les.)2.5 E .897(When a)108 100.8 R -.25
-(va)-.2 G .896(ilable, process substitution is performed simultaneously\
- with parameter and v).25 F .896(ariable e)-.25 F(xpansion,)-.15 E
-(command substitution, and arithmetic e)108 112.8 Q(xpansion.)-.15 E F2
--.75(Wo)87 129.6 S(rd Splitting).75 E F0 1.142
-(The shell scans the results of parameter e)108 141.6 R 1.143
+(command substitution, and arithmetic e)108 84 Q(xpansion.)-.15 E/F1 10
+/Times-Bold@0 SF -.75(Wo)87 100.8 S(rd Splitting).75 E F0 1.142
+(The shell scans the results of parameter e)108 112.8 R 1.143
 (xpansion, command substitution, and arithmetic e)-.15 F 1.143
-(xpansion that)-.15 F(did not occur within double quotes for)108 153.6 Q
-F1(wor)2.84 E 2.5(ds)-.37 G(plitting)-2.5 E F0(.).22 E .063
-(The shell treats each character of)108 170.4 R/F3 9/Times-Bold@0 SF
-(IFS)2.563 E F0 .063(as a delimiter)2.313 F 2.563(,a)-.4 G .063
-(nd splits the results of the other e)-2.563 F .063(xpansions into w)
--.15 F(ords)-.1 E(using these characters as \214eld terminators.)108
-182.4 Q(If)108 199.2 Q F3(IFS)3.082 E F0 .582(is unset, or its v)2.832 F
-.582(alue is e)-.25 F(xactly)-.15 E F2(<space><tab><newline>)3.082 E F0
-3.082(,t)C .582(he def)-3.082 F .583(ault, then sequences of)-.1 F F2
-(space)3.083 E F0(,)A F2(tab)3.083 E F0(,)A(and)108 211.2 Q F2(newline)
-3.627 E F0 1.126(at the be)3.627 F 1.126
-(ginning and end of the results of the pre)-.15 F 1.126(vious e)-.25 F
-1.126(xpansions are ignored, and an)-.15 F 3.626(ys)-.15 G(e-)-3.626 E
-.428(quence of)108 223.2 R F3(IFS)2.928 E F0 .428
+(xpansion that)-.15 F(did not occur within double quotes for)108 124.8 Q
+/F2 10/Times-Italic@0 SF(wor)2.84 E 2.5(ds)-.37 G(plitting)-2.5 E F0(.)
+.22 E .063(The shell treats each character of)108 141.6 R/F3 9
+/Times-Bold@0 SF(IFS)2.563 E F0 .063(as a delimiter)2.313 F 2.563(,a)-.4
+G .063(nd splits the results of the other e)-2.563 F .063
+(xpansions into w)-.15 F(ords)-.1 E
+(using these characters as \214eld terminators.)108 153.6 Q(If)108 170.4
+Q F3(IFS)3.082 E F0 .582(is unset, or its v)2.832 F .582(alue is e)-.25
+F(xactly)-.15 E F1(<space><tab><newline>)3.082 E F0 3.082(,t)C .582
+(he def)-3.082 F .583(ault, then sequences of)-.1 F F1(space)3.083 E F0
+(,)A F1(tab)3.083 E F0(,)A(and)108 182.4 Q F1(newline)3.627 E F0 1.126
+(at the be)3.627 F 1.126(ginning and end of the results of the pre)-.15
+F 1.126(vious e)-.25 F 1.126(xpansions are ignored, and an)-.15 F 3.626
+(ys)-.15 G(e-)-3.626 E .428(quence of)108 194.4 R F3(IFS)2.928 E F0 .428
 (characters not at the be)2.678 F .428(ginning or end serv)-.15 F .428
 (es to delimit w)-.15 F 2.928(ords. If)-.1 F F3(IFS)2.928 E F0 .428
-(has a v)2.678 F .429(alue other than)-.25 F .582(the def)108 235.2 R
-.582(ault, then sequences of the whitespace characters)-.1 F F2(space)
-3.081 E F0(,)A F2(tab)3.081 E F0 3.081(,a)C(nd)-3.081 E F2(newline)3.081
+(has a v)2.678 F .429(alue other than)-.25 F .582(the def)108 206.4 R
+.582(ault, then sequences of the whitespace characters)-.1 F F1(space)
+3.081 E F0(,)A F1(tab)3.081 E F0 3.081(,a)C(nd)-3.081 E F1(newline)3.081
 E F0 .581(are ignored at the be)3.081 F(gin-)-.15 E .007
-(ning and end of the w)108 247.2 R .007
+(ning and end of the w)108 218.4 R .007
 (ord, as long as the whitespace character is in the v)-.1 F .007
 (alue of)-.25 F F3(IFS)2.508 E F0(\(an)2.258 E F3(IFS)2.508 E F0 .008
-(whitespace char)2.258 F(-)-.2 E 2.815(acter\). An)108 259.2 R 2.815(yc)
+(whitespace char)2.258 F(-)-.2 E 2.815(acter\). An)108 230.4 R 2.815(yc)
 -.15 G .315(haracter in)-2.815 F F3(IFS)2.815 E F0 .315(that is not)
 2.565 F F3(IFS)2.815 E F0 .315(whitespace, along with an)2.565 F 2.815
 (ya)-.15 G(djacent)-2.815 E F3(IFS)2.815 E F0 .314
-(whitespace characters,)2.564 F(delimits a \214eld.)108 271.2 Q 2.5(As)5
+(whitespace characters,)2.564 F(delimits a \214eld.)108 242.4 Q 2.5(As)5
 G(equence of)-2.5 E F3(IFS)2.5 E F0
 (whitespace characters is also treated as a delimiter)2.25 E(.)-.55 E
-.161(If the v)108 288 R .161(alue of)-.25 F F3(IFS)2.661 E F0 .161
+.161(If the v)108 259.2 R .161(alue of)-.25 F F3(IFS)2.661 E F0 .161
 (is null, no w)2.411 F .161(ord splitting occurs.)-.1 F(If)5.161 E F3
 (IFS)2.661 E F0 .161(is unset, w)2.411 F .161(ord splitting beha)-.1 F
 -.15(ve)-.2 G 2.661(sa).15 G 2.661(si)-2.661 G 2.661(fi)-2.661 G 2.662
-(tc)-2.661 G(ontained)-2.662 E(the def)108 300 Q(ault v)-.1 E(alue of)
--.25 E F2(<space><tab><newline>)2.5 E F0(.)A .783(Explicit null ar)108
-316.8 R .783(guments \()-.18 F F2 .833("").833 G F0(or)2.449 E F2 .833
+(tc)-2.661 G(ontained)-2.662 E(the def)108 271.2 Q(ault v)-.1 E(alue of)
+-.25 E F1(<space><tab><newline>)2.5 E F0(.)A .783(Explicit null ar)108
+288 R .783(guments \()-.18 F F1 .833("").833 G F0(or)2.449 E F1 .833
 <0808>4.115 G F0 3.282(\)a)C .782
 (re retained and passed to commands as empty strings.)-3.282 F .782
-(Unquoted im-)5.782 F .178(plicit null ar)108 328.8 R .179
+(Unquoted im-)5.782 F .178(plicit null ar)108 300 R .179
 (guments, resulting from the e)-.18 F .179
 (xpansion of parameters that ha)-.15 F .479 -.15(ve n)-.2 H 2.679(ov).15
 G .179(alues, are remo)-2.929 F -.15(ve)-.15 G 2.679(d. If).15 F 2.679
-(ap)2.679 G(a-)-2.679 E .319(rameter with no v)108 340.8 R .319
-(alue is e)-.25 F .319(xpanded within double quotes, a null ar)-.15 F
-.319(gument results and is retained and passed)-.18 F
-(to a command as an empty string.)108 352.8 Q(When a quoted null ar)5 E
+(ap)2.679 G(a-)-2.679 E .319(rameter with no v)108 312 R .319(alue is e)
+-.25 F .319(xpanded within double quotes, a null ar)-.15 F .319
+(gument results and is retained and passed)-.18 F
+(to a command as an empty string.)108 324 Q(When a quoted null ar)5 E
 .001(gument appears as part of a w)-.18 F .001(ord whose e)-.1 F
-(xpansion)-.15 E .984(is non-null, the null ar)108 364.8 R .984
+(xpansion)-.15 E .984(is non-null, the null ar)108 336 R .984
 (gument is remo)-.18 F -.15(ve)-.15 G 3.483(d. That).15 F .983
 (is, the w)3.483 F(ord)-.1 E/F4 10/Courier@0 SF -5.167<ad64082008>3.483
 F F0(becomes)3.483 E F4<ad64>3.483 E F0 .983(after w)3.483 F .983
-(ord splitting and)-.1 F(null ar)108 376.8 Q(gument remo)-.18 E -.25(va)
--.15 G(l.).25 E(Note that if no e)108 393.6 Q
-(xpansion occurs, no splitting is performed.)-.15 E F2 -.1(Pa)87 410.4 S
-(thname Expansion).1 E F0 .37(After w)108 422.4 R .37
-(ord splitting, unless the)-.1 F F2<ad66>2.87 E F0 .37
-(option has been set,)2.87 F F2(bash)2.87 E F0 .371(scans each w)2.871 F
-.371(ord for the characters)-.1 F F2(*)2.871 E F0(,)A F2(?)2.871 E F0
-2.871(,a)C(nd)-2.871 E F2([)2.871 E F0(.)A .634
+(ord splitting and)-.1 F(null ar)108 348 Q(gument remo)-.18 E -.25(va)
+-.15 G(l.).25 E(Note that if no e)108 364.8 Q
+(xpansion occurs, no splitting is performed.)-.15 E F1 -.1(Pa)87 381.6 S
+(thname Expansion).1 E F0 .37(After w)108 393.6 R .37
+(ord splitting, unless the)-.1 F F1<ad66>2.87 E F0 .37
+(option has been set,)2.87 F F1(bash)2.87 E F0 .371(scans each w)2.871 F
+.371(ord for the characters)-.1 F F1(*)2.871 E F0(,)A F1(?)2.871 E F0
+2.871(,a)C(nd)-2.871 E F1([)2.871 E F0(.)A .634
 (If one of these characters appears, and is not quoted, then the w)108
-434.4 R .634(ord is re)-.1 F -.05(ga)-.15 G .633(rded as a).05 F F1
+405.6 R .634(ord is re)-.1 F -.05(ga)-.15 G .633(rded as a).05 F F2
 (pattern)4.383 E F0 3.133(,a).24 G .633(nd replaced)-3.133 F 1.34(with \
 an alphabetically sorted list of \214lenames matching the pattern \(see)
-108 446.4 R F3 -.09(Pa)3.84 G(tter).09 E 3.59(nM)-.135 G(atching)-3.59 E
+108 417.6 R F3 -.09(Pa)3.84 G(tter).09 E 3.59(nM)-.135 G(atching)-3.59 E
 F0(belo)3.59 E 3.84(w\). If)-.25 F(no)3.84 E .534
-(matching \214lenames are found, and the shell option)108 458.4 R F2
+(matching \214lenames are found, and the shell option)108 429.6 R F1
 (nullglob)3.034 E F0 .534(is not enabled, the w)3.034 F .534
-(ord is left unchanged.)-.1 F(If)5.534 E(the)108 470.4 Q F2(nullglob)
+(ord is left unchanged.)-.1 F(If)5.534 E(the)108 441.6 Q F1(nullglob)
 3.284 E F0 .785(option is set, and no matches are found, the w)3.284 F
-.785(ord is remo)-.1 F -.15(ve)-.15 G 3.285(d. If).15 F(the)3.285 E F2
+.785(ord is remo)-.1 F -.15(ve)-.15 G 3.285(d. If).15 F(the)3.285 E F1
 (failglob)3.285 E F0 .785(shell option is)3.285 F .754(set, and no matc\
 hes are found, an error message is printed and the command is not e)108
-482.4 R -.15(xe)-.15 G 3.254(cuted. If).15 F .754(the shell)3.254 F
-(option)108 494.4 Q F2(nocaseglob)3.263 E F0 .763
+453.6 R -.15(xe)-.15 G 3.254(cuted. If).15 F .754(the shell)3.254 F
+(option)108 465.6 Q F1(nocaseglob)3.263 E F0 .763
 (is enabled, the match is performed without re)3.263 F -.05(ga)-.15 G
 .764(rd to the case of alphabetic characters.).05 F .039
-(When a pattern is used for pathname e)108 506.4 R .039
-(xpansion, the character)-.15 F F2 -.63(``)2.539 G -.55(.').63 G(')-.08
+(When a pattern is used for pathname e)108 477.6 R .039
+(xpansion, the character)-.15 F F1 -.63(``)2.539 G -.55(.').63 G(')-.08
 E F0 .039(at the start of a name or immediately fol-)5.039 F(lo)108
-518.4 Q .19(wing a slash must be matched e)-.25 F(xplicitly)-.15 E 2.69
-(,u)-.65 G .19(nless the shell option)-2.69 F F2(dotglob)2.691 E F0 .191
+489.6 Q .19(wing a slash must be matched e)-.25 F(xplicitly)-.15 E 2.69
+(,u)-.65 G .19(nless the shell option)-2.69 F F1(dotglob)2.691 E F0 .191
 (is set.)2.691 F .191(In order to match the \214le-)5.191 F(names)108
-530.4 Q F2 -.63(``)3.645 G -.55(.').63 G(')-.08 E F0(and)6.145 E F2 -.63
+501.6 Q F1 -.63(``)3.645 G -.55(.').63 G(')-.08 E F0(and)6.145 E F1 -.63
 (``)3.645 G(..).63 E -.63('')-.55 G F0 3.645(,t).63 G 1.145
 (he pattern must be)-3.645 F 1.145(gin with `)-.15 F(`.)-.74 E 2.625
 -.74('' \()-.7 H 1.145(for e).74 F 1.145(xample, `)-.15 F(`.?')-.74 E
-1.145('\), e)-.74 F -.15(ve)-.25 G 3.645(ni).15 G(f)-3.645 E F2(dotglob)
-3.644 E F0 1.144(is set.)3.644 F 1.144(If the)6.144 F F2(globskipdots)
-108 542.4 Q F0 .153(shell option is enabled, the \214lenames)2.653 F F2
--.63(``)2.653 G -.55(.').63 G(')-.08 E F0(and)5.153 E F2 -.63(``)2.654 G
+1.145('\), e)-.74 F -.15(ve)-.25 G 3.645(ni).15 G(f)-3.645 E F1(dotglob)
+3.644 E F0 1.144(is set.)3.644 F 1.144(If the)6.144 F F1(globskipdots)
+108 513.6 Q F0 .153(shell option is enabled, the \214lenames)2.653 F F1
+-.63(``)2.653 G -.55(.').63 G(')-.08 E F0(and)5.153 E F1 -.63(``)2.654 G
 (..).63 E -.63('')-.55 G F0 .154(are ne)5.784 F -.15(ve)-.25 G 2.654(rm)
 .15 G .154(atched, e)-2.654 F -.15(ve)-.25 G 2.654(ni).15 G 2.654(ft)
--2.654 G .154(he pattern be-)-2.654 F .12(gins with a)108 554.4 R F2
+-2.654 G .154(he pattern be-)-2.654 F .12(gins with a)108 525.6 R F1
 -.63(``)2.62 G -.55(.').63 G(')-.08 E F0 5.12(.W)C .12
-(hen not matching pathnames, the)-5.12 F F2 -.63(``)2.62 G -.55(.').63 G
+(hen not matching pathnames, the)-5.12 F F1 -.63(``)2.62 G -.55(.').63 G
 (')-.08 E F0 .12(character is not treated specially)5.12 F 5.12(.W)-.65
-G .12(hen matching)-5.12 F 3.54(ap)108 566.4 S 1.04
+G .12(hen matching)-5.12 F 3.54(ap)108 537.6 S 1.04
 (athname, the slash character must al)-3.54 F -.1(wa)-.1 G 1.04
 (ys be matched e).1 F 1.041(xplicitly by a slash in the pattern, b)-.15
-F 1.041(ut in other)-.2 F .132(matching conte)108 578.4 R .132
+F 1.041(ut in other)-.2 F .132(matching conte)108 549.6 R .132
 (xts it can be matched by a special pattern character as described belo)
 -.15 F 2.631(wu)-.25 G(nder)-2.631 E F3 -.09(Pa)2.631 G(tter).09 E 2.381
-(nM)-.135 G(atch-)-2.381 E(ing)108 590.4 Q/F5 9/Times-Roman@0 SF(.)A F0
-.605(See the description of)5.105 F F2(shopt)3.105 E F0(belo)3.105 E
+(nM)-.135 G(atch-)-2.381 E(ing)108 561.6 Q/F5 9/Times-Roman@0 SF(.)A F0
+.605(See the description of)5.105 F F1(shopt)3.105 E F0(belo)3.105 E
 3.106(wu)-.25 G(nder)-3.106 E F3 .606(SHELL B)3.106 F(UIL)-.09 E .606
-(TIN COMMANDS)-.828 F F0 .606(for a description of the)2.856 F F2(no-)
-3.106 E(caseglob)108 602.4 Q F0(,)A F2(nullglob)2.5 E F0(,)A F2
-(globskipdots)2.5 E F0(,)A F2(failglob)2.5 E F0 2.5(,a)C(nd)-2.5 E F2
-(dotglob)2.5 E F0(shell options.)2.5 E(The)108 619.2 Q F3(GLOBIGNORE)
+(TIN COMMANDS)-.828 F F0 .606(for a description of the)2.856 F F1(no-)
+3.106 E(caseglob)108 573.6 Q F0(,)A F1(nullglob)2.5 E F0(,)A F1
+(globskipdots)2.5 E F0(,)A F1(failglob)2.5 E F0 2.5(,a)C(nd)-2.5 E F1
+(dotglob)2.5 E F0(shell options.)2.5 E(The)108 590.4 Q F3(GLOBIGNORE)
 2.562 E F0 .062(shell v)2.312 F .061
 (ariable may be used to restrict the set of \214le names matching a)-.25
-F F1(pattern)3.811 E F0 5.061(.I).24 G(f)-5.061 E F3(GLO-)2.561 E
-(BIGNORE)108 631.2 Q F0 1.096(is set, each matching \214le name that al\
+F F2(pattern)3.811 E F0 5.061(.I).24 G(f)-5.061 E F3(GLO-)2.561 E
+(BIGNORE)108 602.4 Q F0 1.096(is set, each matching \214le name that al\
 so matches one of the patterns in)3.346 F F3(GLOBIGNORE)3.597 E F0 1.097
-(is re-)3.347 F(mo)108 643.2 Q -.15(ve)-.15 G 2.851(df).15 G .351
-(rom the list of matches.)-2.851 F .351(If the)5.351 F F2(nocaseglob)
+(is re-)3.347 F(mo)108 614.4 Q -.15(ve)-.15 G 2.851(df).15 G .351
+(rom the list of matches.)-2.851 F .351(If the)5.351 F F1(nocaseglob)
 2.851 E F0 .351(option is set, the matching ag)2.851 F .351
-(ainst the patterns in)-.05 F F3(GLO-)2.85 E(BIGNORE)108 655.2 Q F0 1.48
+(ainst the patterns in)-.05 F F3(GLO-)2.85 E(BIGNORE)108 626.4 Q F0 1.48
 (is performed without re)3.73 F -.05(ga)-.15 G 1.48(rd to case.).05 F
-1.48(The \214lenames)6.48 F F2 -.63(``)3.98 G -.55(.').63 G(')-.08 E F0
-(and)6.48 E F2 -.63(``)3.98 G(..).63 E -.63('')-.55 G F0 1.481(are al)
-7.11 F -.1(wa)-.1 G 1.481(ys ignored when).1 F F3(GLOBIGNORE)108 667.2 Q
+1.48(The \214lenames)6.48 F F1 -.63(``)3.98 G -.55(.').63 G(')-.08 E F0
+(and)6.48 E F1 -.63(``)3.98 G(..).63 E -.63('')-.55 G F0 1.481(are al)
+7.11 F -.1(wa)-.1 G 1.481(ys ignored when).1 F F3(GLOBIGNORE)108 638.4 Q
 F0 .827(is set and not null.)3.077 F(Ho)5.827 E(we)-.25 E -.15(ve)-.25 G
 1.627 -.4(r, s).15 H(etting).4 E F3(GLOBIGNORE)3.327 E F0 .827
 (to a non-null v)3.077 F .827(alue has the ef)-.25 F .827(fect of)-.25 F
-.682(enabling the)108 679.2 R F2(dotglob)3.182 E F0 .682
+.682(enabling the)108 650.4 R F1(dotglob)3.182 E F0 .682
 (shell option, so all other \214lenames be)3.182 F .682(ginning with a)
--.15 F F2 -.63(``)3.182 G -.55(.').63 G(')-.08 E F0 .682(will match.)
-5.682 F 2.283 -.8(To g)5.683 H .683(et the old).8 F(beha)108 691.2 Q
+-.15 F F1 -.63(``)3.182 G -.55(.').63 G(')-.08 E F0 .682(will match.)
+5.682 F 2.283 -.8(To g)5.683 H .683(et the old).8 F(beha)108 662.4 Q
 1.185(vior of ignoring \214lenames be)-.2 F 1.185(ginning with a)-.15 F
-F2 -.63(``)3.684 G -.55(.').63 G(')-.08 E F0 3.684(,m)C(ak)-3.684 E(e)
--.1 E F2 -.63(``)3.684 G(.*').63 E(')-.63 E F0 1.184
+F1 -.63(``)3.684 G -.55(.').63 G(')-.08 E F0 3.684(,m)C(ak)-3.684 E(e)
+-.1 E F1 -.63(``)3.684 G(.*').63 E(')-.63 E F0 1.184
 (one of the patterns in)6.184 F F3(GLOBIGNORE)3.684 E F5(.)A F0(The)108
-703.2 Q F2(dotglob)3.131 E F0 .631(option is disabled when)3.131 F F3
+674.4 Q F1(dotglob)3.131 E F0 .631(option is disabled when)3.131 F F3
 (GLOBIGNORE)3.132 E F0 .632(is unset.)2.882 F .632
-(The pattern matching honors the setting of)5.632 F(the)108 715.2 Q F2
-(extglob)2.5 E F0(shell option.)2.5 E(GNU Bash 5.2)72 768 Q(2023 May 14)
-148.175 E(28)197.335 E 0 Cg EP
+(The pattern matching honors the setting of)5.632 F(the)108 686.4 Q F1
+(extglob)2.5 E F0(shell option.)2.5 E(The)108 703.2 Q F3(GLOBSOR)2.5 E
+(T)-.36 E F0 -.25(va)2.25 G(riable controls ho).25 E 2.5(wt)-.25 G
+(he results of pathname e)-2.5 E(xpansion are sorted, as described abo)
+-.15 E -.15(ve)-.15 G(.).15 E F1 -.1(Pa)108 720 S(tter).1 E 2.5(nM)-.15
+G(atching)-2.5 E F0(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(28)
+197.335 E 0 Cg EP
 %%Page: 29 29
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(The)108 84 Q/F1 9
-/Times-Bold@0 SF(GLOBSOR)2.5 E(T)-.36 E F0 -.25(va)2.25 G
-(riable controls ho).25 E 2.5(wt)-.25 G(he results of pathname e)-2.5 E
-(xpansion are sorted, as described abo)-.15 E -.15(ve)-.15 G(.).15 E/F2
-10/Times-Bold@0 SF -.1(Pa)108 100.8 S(tter).1 E 2.5(nM)-.15 G(atching)
--2.5 E F0(An)108 117.6 Q 3.138(yc)-.15 G .638(haracter that appears in \
-a pattern, other than the special pattern characters described belo)
--3.138 F 1.938 -.65(w, m)-.25 H(atches).65 E 2.721(itself. The)108 129.6
-R .221(NUL character may not occur in a pattern.)2.721 F 2.721(Ab)5.221
-G .221(ackslash escapes the follo)-2.721 F .222(wing character; the es-)
--.25 F .418(caping backslash is discarded when matching.)108 141.6 R
-.418(The special pattern characters must be quoted if the)5.418 F 2.918
-(ya)-.15 G .418(re to)-2.918 F(be matched literally)108 153.6 Q(.)-.65 E
-(The special pattern characters ha)108 170.4 Q .3 -.15(ve t)-.2 H
-(he follo).15 E(wing meanings:)-.25 E F2(*)144 187.2 Q F0 .376
-(Matches an)180 187.2 R 2.876(ys)-.15 G .376
-(tring, including the null string.)-2.876 F .376(When the)5.376 F F2
-(globstar)2.876 E F0 .377(shell option is enabled,)2.876 F(and)180 199.2
-Q F2(*)3.275 E F0 .775(is used in a pathname e)3.275 F .775
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(An)108 84 Q 3.138
+(yc)-.15 G .638(haracter that appears in a pattern, other than the spec\
+ial pattern characters described belo)-3.138 F 1.938 -.65(w, m)-.25 H
+(atches).65 E 2.721(itself. The)108 96 R .221
+(NUL character may not occur in a pattern.)2.721 F 2.721(Ab)5.221 G .221
+(ackslash escapes the follo)-2.721 F .222(wing character; the es-)-.25 F
+.418(caping backslash is discarded when matching.)108 108 R .418
+(The special pattern characters must be quoted if the)5.418 F 2.918(ya)
+-.15 G .418(re to)-2.918 F(be matched literally)108 120 Q(.)-.65 E
+(The special pattern characters ha)108 136.8 Q .3 -.15(ve t)-.2 H
+(he follo).15 E(wing meanings:)-.25 E/F1 10/Times-Bold@0 SF(*)144 153.6
+Q F0 .376(Matches an)180 153.6 R 2.876(ys)-.15 G .376
+(tring, including the null string.)-2.876 F .376(When the)5.376 F F1
+(globstar)2.876 E F0 .377(shell option is enabled,)2.876 F(and)180 165.6
+Q F1(*)3.275 E F0 .775(is used in a pathname e)3.275 F .775
 (xpansion conte)-.15 F .775(xt, tw)-.15 F 3.275(oa)-.1 G(djacent)-3.275
-E F2(*)3.275 E F0 3.275(su)C .775(sed as a single pattern)-3.275 F 1.058
+E F1(*)3.275 E F0 3.275(su)C .775(sed as a single pattern)-3.275 F 1.058
 (will match all \214les and zero or more directories and subdirectories\
-.)180 211.2 R 1.058(If follo)6.058 F 1.058(wed by a)-.25 F F2(/)3.558 E
-F0(,)A(tw)180 223.2 Q 2.5(oa)-.1 G(djacent)-2.5 E F2(*)2.5 E F0 2.5(sw)C
-(ill match only directories and subdirectories.)-2.5 E F2(?)144 235.2 Q
-F0(Matches an)180 235.2 Q 2.5(ys)-.15 G(ingle character)-2.5 E(.)-.55 E
-F2([...])144 247.2 Q F0 .579(Matches an)180 247.2 R 3.079(yo)-.15 G .579
+.)180 177.6 R 1.058(If follo)6.058 F 1.058(wed by a)-.25 F F1(/)3.558 E
+F0(,)A(tw)180 189.6 Q 2.5(oa)-.1 G(djacent)-2.5 E F1(*)2.5 E F0 2.5(sw)C
+(ill match only directories and subdirectories.)-2.5 E F1(?)144 201.6 Q
+F0(Matches an)180 201.6 Q 2.5(ys)-.15 G(ingle character)-2.5 E(.)-.55 E
+F1([...])144 213.6 Q F0 .579(Matches an)180 213.6 R 3.079(yo)-.15 G .579
 (ne of the enclosed characters.)-3.079 F 3.079(Ap)5.579 G .578
 (air of characters separated by a h)-3.079 F(yphen)-.05 E .684
-(denotes a)180 259.2 R/F3 10/Times-Italic@0 SF -.15(ra)3.184 G(ng).15 E
+(denotes a)180 225.6 R/F2 10/Times-Italic@0 SF -.15(ra)3.184 G(ng).15 E
 3.184(ee)-.1 G(xpr)-3.384 E(ession)-.37 E F0 3.184(;a)C .984 -.15(ny c)
 -3.184 H .684(haracter that f).15 F .684(alls between those tw)-.1 F
-3.185(oc)-.1 G .685(haracters, inclu-)-3.185 F(si)180 271.2 Q -.15(ve)
+3.185(oc)-.1 G .685(haracters, inclu-)-3.185 F(si)180 237.6 Q -.15(ve)
 -.25 G 3.713(,u).15 G 1.213(sing the current locale')-3.713 F 3.712(sc)
 -.55 G 1.212(ollating sequence and character set, is matched.)-3.712 F
-1.212(If the)6.212 F 1.123(\214rst character follo)180 283.2 R 1.123
-(wing the)-.25 F F2([)3.623 E F0 1.123(is a)3.623 F F2(!)3.623 E F0
-1.124(or a)6.123 F F2(^)3.624 E F0 1.124(then an)3.624 F 3.624(yc)-.15 G
+1.212(If the)6.212 F 1.123(\214rst character follo)180 249.6 R 1.123
+(wing the)-.25 F F1([)3.623 E F0 1.123(is a)3.623 F F1(!)3.623 E F0
+1.124(or a)6.123 F F1(^)3.624 E F0 1.124(then an)3.624 F 3.624(yc)-.15 G
 1.124(haracter not enclosed is matched.)-3.624 F 1.045
-(The sorting order of characters in range e)180 295.2 R 1.044
+(The sorting order of characters in range e)180 261.6 R 1.044
 (xpressions, and the characters included in the)-.15 F 2.34
-(range, are determined by the current locale and the v)180 307.2 R 2.341
-(alues of the)-.25 F F1(LC_COLLA)4.841 E(TE)-.855 E F0(or)4.591 E F1
-(LC_ALL)180 319.2 Q F0 1.079(shell v)3.329 F 1.079(ariables, if set.)
--.25 F 2.679 -.8(To o)6.079 H 1.079
+(range, are determined by the current locale and the v)180 273.6 R 2.341
+(alues of the)-.25 F/F3 9/Times-Bold@0 SF(LC_COLLA)4.841 E(TE)-.855 E F0
+(or)4.591 E F3(LC_ALL)180 285.6 Q F0 1.079(shell v)3.329 F 1.079
+(ariables, if set.)-.25 F 2.679 -.8(To o)6.079 H 1.079
 (btain the traditional interpretation of range e).8 F(xpres-)-.15 E .392
-(sions, where)180 331.2 R F2([a\255d])2.892 E F0 .392(is equi)2.892 F
--.25(va)-.25 G .392(lent to).25 F F2([abcd])2.893 E F0 2.893(,s)C .393
-(et v)-2.893 F .393(alue of the)-.25 F F2(LC_ALL)2.893 E F0 .393
-(shell v)2.893 F .393(ariable to)-.25 F F2(C)2.893 E F0(,)A .9
-(or enable the)180 343.2 R F2(globasciiranges)3.4 E F0 .9(shell option.)
-3.4 F(A)5.899 E F2<ad>3.399 E F0 .899
+(sions, where)180 297.6 R F1([a\255d])2.892 E F0 .392(is equi)2.892 F
+-.25(va)-.25 G .392(lent to).25 F F1([abcd])2.893 E F0 2.893(,s)C .393
+(et v)-2.893 F .393(alue of the)-.25 F F1(LC_ALL)2.893 E F0 .393
+(shell v)2.893 F .393(ariable to)-.25 F F1(C)2.893 E F0(,)A .9
+(or enable the)180 309.6 R F1(globasciiranges)3.4 E F0 .9(shell option.)
+3.4 F(A)5.899 E F1<ad>3.399 E F0 .899
 (may be matched by including it as the)3.399 F .405
-(\214rst or last character in the set.)180 355.2 R(A)5.405 E F2(])2.905
+(\214rst or last character in the set.)180 321.6 R(A)5.405 E F1(])2.905
 E F0 .405(may be matched by including it as the \214rst character)2.905
-F(in the set.)180 367.2 Q -.4(Wi)180 385.2 S(thin).4 E F2([)3.071 E F0
-(and)3.071 E F2(])3.071 E F0(,)A F3 -.15(ch)3.071 G(ar).15 E .571
+F(in the set.)180 333.6 Q -.4(Wi)180 351.6 S(thin).4 E F1([)3.071 E F0
+(and)3.071 E F1(])3.071 E F0(,)A F2 -.15(ch)3.071 G(ar).15 E .571
 (acter classes)-.15 F F0 .571(can be speci\214ed using the syntax)3.071
-F F2([:)3.07 E F3(class)A F2(:])A F0 3.07(,w)C(here)-3.07 E F3(class)
-3.07 E F0(is one of the follo)180 397.2 Q
-(wing classes de\214ned in the POSIX standard:)-.25 E F2 5.889
-(alnum alpha ascii blank cntrl digit graph lo)180 409.2 R 5.889
-(wer print punct space up-)-.1 F 5(per w)180 421.2 R 5(ord xdigit)-.1 F
-F0 4.29(Ac)180 433.2 S 1.789(haracter class matches an)-4.29 F 4.289(yc)
--.15 G 1.789(haracter belonging to that class.)-4.289 F(The)6.789 E F2
+F F1([:)3.07 E F2(class)A F1(:])A F0 3.07(,w)C(here)-3.07 E F2(class)
+3.07 E F0(is one of the follo)180 363.6 Q
+(wing classes de\214ned in the POSIX standard:)-.25 E F1 5.889
+(alnum alpha ascii blank cntrl digit graph lo)180 375.6 R 5.889
+(wer print punct space up-)-.1 F 5(per w)180 387.6 R 5(ord xdigit)-.1 F
+F0 4.29(Ac)180 399.6 S 1.789(haracter class matches an)-4.29 F 4.289(yc)
+-.15 G 1.789(haracter belonging to that class.)-4.289 F(The)6.789 E F1
 -.1(wo)4.289 G(rd).1 E F0(character)4.289 E
-(class matches letters, digits, and the character _.)180 445.2 Q -.4(Wi)
-180 463.2 S(thin).4 E F2([)4.536 E F0(and)4.536 E F2(])4.536 E F0 4.536
-(,a)C(n)-4.536 E F3 2.036(equivalence class)4.536 F F0 2.037
-(can be speci\214ed using the syntax)4.536 F F2([=)4.537 E F3(c)A F2(=])
+(class matches letters, digits, and the character _.)180 411.6 Q -.4(Wi)
+180 429.6 S(thin).4 E F1([)4.536 E F0(and)4.536 E F1(])4.536 E F0 4.536
+(,a)C(n)-4.536 E F2 2.036(equivalence class)4.536 F F0 2.037
+(can be speci\214ed using the syntax)4.536 F F1([=)4.537 E F2(c)A F1(=])
 A F0 4.537(,w)C(hich)-4.537 E .125(matches all characters with the same\
- collation weight \(as de\214ned by the current locale\) as)180 475.2 R
-(the character)180 487.2 Q F3(c)2.5 E F0(.)A -.4(Wi)180 505.2 S(thin).4
-E F2([)2.5 E F0(and)2.5 E F2(])2.5 E F0 2.5(,t)C(he syntax)-2.5 E F2([.)
-2.5 E F3(symbol)A F2(.])A F0(matches the collating symbol)2.5 E F3
-(symbol)2.5 E F0(.)A .539(If the)108 522 R F2(extglob)3.039 E F0 .539
-(shell option is enabled using the)3.039 F F2(shopt)3.039 E F0 -.2(bu)
+ collation weight \(as de\214ned by the current locale\) as)180 441.6 R
+(the character)180 453.6 Q F2(c)2.5 E F0(.)A -.4(Wi)180 471.6 S(thin).4
+E F1([)2.5 E F0(and)2.5 E F1(])2.5 E F0 2.5(,t)C(he syntax)-2.5 E F1([.)
+2.5 E F2(symbol)A F1(.])A F0(matches the collating symbol)2.5 E F2
+(symbol)2.5 E F0(.)A .539(If the)108 488.4 R F1(extglob)3.039 E F0 .539
+(shell option is enabled using the)3.039 F F1(shopt)3.039 E F0 -.2(bu)
 3.039 G .54(iltin, the shell recognizes se).2 F -.15(ve)-.25 G .54
-(ral e).15 F .54(xtended pattern)-.15 F .038(matching operators.)108 534
-R .038(In the follo)5.038 F .038(wing description, a)-.25 F F3
+(ral e).15 F .54(xtended pattern)-.15 F .038(matching operators.)108
+500.4 R .038(In the follo)5.038 F .038(wing description, a)-.25 F F2
 (pattern-list)2.538 E F0 .037
-(is a list of one or more patterns separated by)2.538 F(a)108 546 Q F2
+(is a list of one or more patterns separated by)2.538 F(a)108 512.4 Q F1
 (|)2.5 E F0 5(.C)C
 (omposite patterns may be formed using one or more of the follo)-5 E
-(wing sub-patterns:)-.25 E F2(?\()144 570 Q F3(pattern-list).833 E F2
-(\)).833 E F0(Matches zero or one occurrence of the gi)180 582 Q -.15
-(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F2(*\()144 594 Q F3(pattern-list)
-.833 E F2(\)).833 E F0(Matches zero or more occurrences of the gi)180
-606 Q -.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F2(+\()144 618 Q F3
-(pattern-list).833 E F2(\)).833 E F0
-(Matches one or more occurrences of the gi)180 630 Q -.15(ve)-.25 G 2.5
-(np).15 G(atterns)-2.5 E F2(@\()144 642 Q F3(pattern-list).833 E F2(\))
-.833 E F0(Matches one of the gi)180 654 Q -.15(ve)-.25 G 2.5(np).15 G
-(atterns)-2.5 E F2(!\()144 666 Q F3(pattern-list).833 E F2(\)).833 E F0
-(Matches an)180 678 Q(ything e)-.15 E(xcept one of the gi)-.15 E -.15
-(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E(The)108 694.8 Q F2(extglob)2.791
-E F0 .291(option changes the beha)2.791 F .291(vior of the parser)-.2 F
-2.791(,s)-.4 G .292(ince the parentheses are normally treated as opera-)
--2.791 F .105(tors with syntactic meaning.)108 706.8 R 1.705 -.8(To e)
-5.105 H .105(nsure that e).8 F .105
+(wing sub-patterns:)-.25 E F1(?\()144 536.4 Q F2(pattern-list).833 E F1
+(\)).833 E F0(Matches zero or one occurrence of the gi)180 548.4 Q -.15
+(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(*\()144 560.4 Q F2
+(pattern-list).833 E F1(\)).833 E F0
+(Matches zero or more occurrences of the gi)180 572.4 Q -.15(ve)-.25 G
+2.5(np).15 G(atterns)-2.5 E F1(+\()144 584.4 Q F2(pattern-list).833 E F1
+(\)).833 E F0(Matches one or more occurrences of the gi)180 596.4 Q -.15
+(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(@\()144 608.4 Q F2
+(pattern-list).833 E F1(\)).833 E F0(Matches one of the gi)180 620.4 Q
+-.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(!\()144 632.4 Q F2
+(pattern-list).833 E F1(\)).833 E F0(Matches an)180 644.4 Q(ything e)
+-.15 E(xcept one of the gi)-.15 E -.15(ve)-.25 G 2.5(np).15 G(atterns)
+-2.5 E(The)108 661.2 Q F1(extglob)2.791 E F0 .291
+(option changes the beha)2.791 F .291(vior of the parser)-.2 F 2.791(,s)
+-.4 G .292(ince the parentheses are normally treated as opera-)-2.791 F
+.105(tors with syntactic meaning.)108 673.2 R 1.705 -.8(To e)5.105 H
+.105(nsure that e).8 F .105
 (xtended matching patterns are parsed correctly)-.15 F 2.604(,m)-.65 G
-(ak)-2.604 E 2.604(es)-.1 G .104(ure that)-2.604 F F2(extglob)108 718.8
+(ak)-2.604 E 2.604(es)-.1 G .104(ure that)-2.604 F F1(extglob)108 685.2
 Q F0 1.355(is enabled before parsing constructs containing the patterns\
 , including shell functions and com-)3.854 F(mand substitutions.)108
-730.8 Q(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(29)197.335 E 0 Cg EP
+697.2 Q .988(When matching \214lenames, the)108 714 R F1(dotglob)3.488 E
+F0 .988
+(shell option determines the set of \214lenames that are tested: when)
+3.488 F F1(dotglob)108 726 Q F0 1.391
+(is enabled, the set of \214lenames includes all \214les be)3.891 F
+1.392(ginning with `)-.15 F(`.)-.74 E -.74('')-.7 G 3.892(,b).74 G 1.392
+(ut `)-4.092 F(`.)-.74 E 2.872 -.74('' a)-.7 H 1.392(nd `).74 F(`..)-.74
+E 2.872 -.74('' m)-.7 H 1.392(ust be).74 F(GNU Bash 5.2)72 768 Q
+(2023 May 23)148.175 E(29)197.335 E 0 Cg EP
 %%Page: 30 30
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .988
-(When matching \214lenames, the)108 84 R/F1 10/Times-Bold@0 SF(dotglob)
-3.488 E F0 .988
-(shell option determines the set of \214lenames that are tested: when)
-3.488 F F1(dotglob)108 96 Q F0 1.391
-(is enabled, the set of \214lenames includes all \214les be)3.891 F
-1.392(ginning with `)-.15 F(`.)-.74 E -.74('')-.7 G 3.892(,b).74 G 1.392
-(ut `)-4.092 F(`.)-.74 E 2.872 -.74('' a)-.7 H 1.392(nd `).74 F(`..)-.74
-E 2.872 -.74('' m)-.7 H 1.392(ust be).74 F .298
-(matched by a pattern or sub-pattern that be)108 108 R .298
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .298
+(matched by a pattern or sub-pattern that be)108 84 R .298
 (gins with a dot; when it is disabled, the set does not include an)-.15
-F(y)-.15 E .327(\214lenames be)108 120 R .327(ginning with `)-.15 F(`.)
+F(y)-.15 E .327(\214lenames be)108 96 R .327(ginning with `)-.15 F(`.)
 -.74 E 1.807 -.74('' u)-.7 H .327(nless the pattern or sub-pattern be)
 .74 F .327(gins with a `)-.15 F(`.)-.74 E -.74('')-.7 G 5.327(.A).74 G
 2.827(sa)-5.327 G(bo)-2.827 E -.15(ve)-.15 G 2.828(,`).15 G(`.)-3.568 E
 1.808 -.74('' o)-.7 H .328(nly has a).74 F
-(special meaning when matching \214lenames.)108 132 Q .969
-(Complicated e)108 148.8 R .969(xtended pattern matching ag)-.15 F .969
+(special meaning when matching \214lenames.)108 108 Q .969
+(Complicated e)108 124.8 R .969(xtended pattern matching ag)-.15 F .969
 (ainst long strings is slo)-.05 F 2.268 -.65(w, e)-.25 H .968
 (specially when the patterns contain).65 F .09
-(alternations and the strings contain multiple matches.)108 160.8 R .091
+(alternations and the strings contain multiple matches.)108 136.8 R .091
 (Using separate matches ag)5.091 F .091(ainst shorter strings, or us-)
 -.05 F(ing arrays of strings instead of a single long string, may be f)
-108 172.8 Q(aster)-.1 E(.)-.55 E F1(Quote Remo)87 189.6 Q -.1(va)-.1 G
-(l).1 E F0 1.113(After the preceding e)108 201.6 R 1.113
-(xpansions, all unquoted occurrences of the characters)-.15 F F1(\\)
-3.613 E F0(,)A F1<08>3.612 E F0 3.612(,a)C(nd)-3.612 E F1(")4.445 E F0
-1.112(that did not result)4.445 F(from one of the abo)108 213.6 Q .3
+108 148.8 Q(aster)-.1 E(.)-.55 E/F1 10/Times-Bold@0 SF(Quote Remo)87
+165.6 Q -.1(va)-.1 G(l).1 E F0 1.113(After the preceding e)108 177.6 R
+1.113(xpansions, all unquoted occurrences of the characters)-.15 F F1
+(\\)3.613 E F0(,)A F1<08>3.612 E F0 3.612(,a)C(nd)-3.612 E F1(")4.445 E
+F0 1.112(that did not result)4.445 F(from one of the abo)108 189.6 Q .3
 -.15(ve ex)-.15 H(pansions are remo).15 E -.15(ve)-.15 G(d.).15 E/F2
-10.95/Times-Bold@0 SF(REDIRECTION)72 230.4 Q F0 .545
-(Before a command is e)108 242.4 R -.15(xe)-.15 G .545
+10.95/Times-Bold@0 SF(REDIRECTION)72 206.4 Q F0 .545
+(Before a command is e)108 218.4 R -.15(xe)-.15 G .545
 (cuted, its input and output may be).15 F/F3 10/Times-Italic@0 SF -.37
 (re)3.045 G(dir).37 E(ected)-.37 E F0 .545
 (using a special notation interpreted)3.815 F .429(by the shell.)108
-254.4 R F3(Redir)5.428 E(ection)-.37 E F0(allo)2.928 E .428(ws commands\
+230.4 R F3(Redir)5.428 E(ection)-.37 E F0(allo)2.928 E .428(ws commands\
 ' \214le handles to be duplicated, opened, closed, made to refer to)-.25
-F(dif)108 266.4 Q 1.019(ferent \214les, and can change the \214les the \
+F(dif)108 242.4 Q 1.019(ferent \214les, and can change the \214les the \
 command reads from and writes to.)-.25 F 1.02(Redirection may also be)
 6.02 F .215(used to modify \214le handles in the current shell e)108
-278.4 R -.15(xe)-.15 G .215(cution en).15 F 2.715(vironment. The)-.4 F
+254.4 R -.15(xe)-.15 G .215(cution en).15 F 2.715(vironment. The)-.4 F
 (follo)2.715 E .215(wing redirection operators)-.25 F .862
-(may precede or appear an)108 290.4 R .862(ywhere within a)-.15 F F3
+(may precede or appear an)108 266.4 R .862(ywhere within a)-.15 F F3
 .862(simple command)3.702 F F0 .862(or may follo)4.132 F 3.362(wa)-.25 G
 F3(command).2 E F0 5.862(.R).77 G .862(edirections are)-5.862 F
-(processed in the order the)108 302.4 Q 2.5(ya)-.15 G(ppear)-2.5 E 2.5
+(processed in the order the)108 278.4 Q 2.5(ya)-.15 G(ppear)-2.5 E 2.5
 (,f)-.4 G(rom left to right.)-2.5 E .771(Each redirection that may be p\
 receded by a \214le descriptor number may instead be preceded by a w)108
-319.2 R .771(ord of)-.1 F .292(the form {)108 331.2 R F3(varname)A F0
+295.2 R .771(ord of)-.1 F .292(the form {)108 307.2 R F3(varname)A F0
 2.793(}. In)B .293(this case, for each redirection operator e)2.793 F
 .293(xcept >&- and <&-, the shell will allocate)-.15 F 3.18<618c>108
-343.2 S .679(le descriptor greater than or equal to 10 and assign it to)
+319.2 S .679(le descriptor greater than or equal to 10 and assign it to)
 -3.18 F F3(varname)3.179 E F0 5.679(.I)C 3.179(f>)-5.679 G .679
-(&- or <&- is preceded by {)-3.179 F F3(var)A(-)-.2 E(name)108 355.2 Q
+(&- or <&- is preceded by {)-3.179 F F3(var)A(-)-.2 E(name)108 331.2 Q
 F0 .599(}, the v)B .599(alue of)-.25 F F3(varname)3.099 E F0 .599
 (de\214nes the \214le descriptor to close.)3.099 F .6(If {)5.6 F F3
 (varname)A F0 3.1(}i)C 3.1(ss)-3.1 G .6(upplied, the redirection)-3.1 F
-.794(persists be)108 367.2 R .794(yond the scope of the command, allo)
+.794(persists be)108 343.2 R .794(yond the scope of the command, allo)
 -.15 F .793(wing the shell programmer to manage the \214le descriptor')
--.25 F(s)-.55 E(lifetime manually)108 379.2 Q 5(.T)-.65 G(he)-5 E F1 -.1
+-.25 F(s)-.55 E(lifetime manually)108 355.2 Q 5(.T)-.65 G(he)-5 E F1 -.1
 (va)2.5 G(rr).1 E(edir_close)-.18 E F0(shell option manages this beha)
-2.5 E(vior)-.2 E(.)-.55 E .283(In the follo)108 396 R .284(wing descrip\
+2.5 E(vior)-.2 E(.)-.55 E .283(In the follo)108 372 R .284(wing descrip\
 tions, if the \214le descriptor number is omitted, and the \214rst char\
-acter of the redirect-)-.25 F .513(ion operator is)108 408 R F1(<)3.012
+acter of the redirect-)-.25 F .513(ion operator is)108 384 R F1(<)3.012
 E F0 3.012(,t)C .512
 (he redirection refers to the standard input \(\214le descriptor 0\).)
 -3.012 F .512(If the \214rst character of the)5.512 F
-(redirection operator is)108 420 Q F1(>)2.5 E F0 2.5(,t)C
+(redirection operator is)108 396 Q F1(>)2.5 E F0 2.5(,t)C
 (he redirection refers to the standard output \(\214le descriptor 1\).)
--2.5 E .824(The w)108 436.8 R .824(ord follo)-.1 F .824
+-2.5 E .824(The w)108 412.8 R .824(ord follo)-.1 F .824
 (wing the redirection operator in the follo)-.25 F .825
 (wing descriptions, unless otherwise noted, is sub-)-.25 F .463
-(jected to brace e)108 448.8 R .463(xpansion, tilde e)-.15 F .462
+(jected to brace e)108 424.8 R .463(xpansion, tilde e)-.15 F .462
 (xpansion, parameter and v)-.15 F .462(ariable e)-.25 F .462
-(xpansion, command substitution, arith-)-.15 F .866(metic e)108 460.8 R
+(xpansion, command substitution, arith-)-.15 F .866(metic e)108 436.8 R
 .866(xpansion, quote remo)-.15 F -.25(va)-.15 G .866(l, pathname e).25 F
 .867(xpansion, and w)-.15 F .867(ord splitting.)-.1 F .867(If it e)5.867
-F .867(xpands to more than one)-.15 F -.1(wo)108 472.8 S(rd,).1 E F1
+F .867(xpands to more than one)-.15 F -.1(wo)108 448.8 S(rd,).1 E F1
 (bash)2.5 E F0(reports an error)2.5 E(.)-.55 E
-(Note that the order of redirections is signi\214cant.)108 489.6 Q -.15
-(Fo)5 G 2.5(re).15 G(xample, the command)-2.65 E(ls)144 506.4 Q F1(>)2.5
+(Note that the order of redirections is signi\214cant.)108 465.6 Q -.15
+(Fo)5 G 2.5(re).15 G(xample, the command)-2.65 E(ls)144 482.4 Q F1(>)2.5
 E F0(dirlist 2)2.5 E F1(>&)A F0(1)A
-(directs both standard output and standard error to the \214le)108 523.2
-Q F3(dirlist)2.85 E F0 2.5(,w).68 G(hile the command)-2.5 E(ls 2)144 540
+(directs both standard output and standard error to the \214le)108 499.2
+Q F3(dirlist)2.85 E F0 2.5(,w).68 G(hile the command)-2.5 E(ls 2)144 516
 Q F1(>&)A F0(1)A F1(>)2.5 E F0(dirlist)2.5 E .505
-(directs only the standard output to \214le)108 556.8 R F3(dirlist)3.355
+(directs only the standard output to \214le)108 532.8 R F3(dirlist)3.355
 E F0 3.005(,b).68 G .505(ecause the standard error w)-3.005 F .505
 (as duplicated from the standard)-.1 F
-(output before the standard output w)108 568.8 Q(as redirected to)-.1 E
-F3(dirlist)2.85 E F0(.).68 E F1(Bash)108 585.6 Q F0 .598(handles se)
+(output before the standard output w)108 544.8 Q(as redirected to)-.1 E
+F3(dirlist)2.85 E F0(.).68 E F1(Bash)108 561.6 Q F0 .598(handles se)
 3.098 F -.15(ve)-.25 G .598(ral \214lenames specially when the).15 F
 3.099(ya)-.15 G .599(re used in redirections, as described in the follo)
--3.099 F(wing)-.25 E 3.478(table. If)108 597.6 R .978
+-3.099 F(wing)-.25 E 3.478(table. If)108 573.6 R .978
 (the operating system on which)3.478 F F1(bash)3.478 E F0 .978
 (is running pro)3.478 F .977
 (vides these special \214les, bash will use them;)-.15 F
-(otherwise it will emulate them internally with the beha)108 609.6 Q
-(vior described belo)-.2 E -.65(w.)-.25 G F1(/de)144 626.4 Q(v/fd/)-.15
-E F3(fd)A F0(If)180 638.4 Q F3(fd)2.5 E F0(is a v)2.5 E(alid inte)-.25 E
+(otherwise it will emulate them internally with the beha)108 585.6 Q
+(vior described belo)-.2 E -.65(w.)-.25 G F1(/de)144 602.4 Q(v/fd/)-.15
+E F3(fd)A F0(If)180 614.4 Q F3(fd)2.5 E F0(is a v)2.5 E(alid inte)-.25 E
 (ger)-.15 E 2.5<2c8c>-.4 G(le descriptor)-2.5 E F3(fd)2.5 E F0
-(is duplicated.)2.5 E F1(/de)144 650.4 Q(v/stdin)-.15 E F0
-(File descriptor 0 is duplicated.)180 662.4 Q F1(/de)144 674.4 Q
-(v/stdout)-.15 E F0(File descriptor 1 is duplicated.)180 686.4 Q F1(/de)
-144 698.4 Q(v/stderr)-.15 E F0(File descriptor 2 is duplicated.)180
-710.4 Q(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(30)197.335 E 0 Cg EP
+(is duplicated.)2.5 E F1(/de)144 626.4 Q(v/stdin)-.15 E F0
+(File descriptor 0 is duplicated.)180 638.4 Q F1(/de)144 650.4 Q
+(v/stdout)-.15 E F0(File descriptor 1 is duplicated.)180 662.4 Q F1(/de)
+144 674.4 Q(v/stderr)-.15 E F0(File descriptor 2 is duplicated.)180
+686.4 Q F1(/de)144 698.4 Q(v/tcp/)-.15 E F3(host)A F1(/)A F3(port)A F0
+(If)180 710.4 Q F3(host)2.996 E F0 .496(is a v)2.996 F .496
+(alid hostname or Internet address, and)-.25 F F3(port)2.997 E F0 .497
+(is an inte)2.997 F .497(ger port number or ser)-.15 F(-)-.2 E
+(vice name,)180 722.4 Q F1(bash)2.5 E F0
+(attempts to open the corresponding TCP sock)2.5 E(et.)-.1 E
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(30)197.335 E 0 Cg EP
 %%Page: 31 31
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
 (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
-SF(/de)144 84 Q(v/tcp/)-.15 E/F2 10/Times-Italic@0 SF(host)A F1(/)A F2
-(port)A F0(If)180 96 Q F2(host)2.996 E F0 .496(is a v)2.996 F .496
-(alid hostname or Internet address, and)-.25 F F2(port)2.997 E F0 .497
-(is an inte)2.997 F .497(ger port number or ser)-.15 F(-)-.2 E
-(vice name,)180 108 Q F1(bash)2.5 E F0
-(attempts to open the corresponding TCP sock)2.5 E(et.)-.1 E F1(/de)144
-120 Q(v/udp/)-.15 E F2(host)A F1(/)A F2(port)A F0(If)180 132 Q F2(host)
-2.997 E F0 .497(is a v)2.997 F .497
+SF(/de)144 84 Q(v/udp/)-.15 E/F2 10/Times-Italic@0 SF(host)A F1(/)A F2
+(port)A F0(If)180 96 Q F2(host)2.997 E F0 .497(is a v)2.997 F .497
 (alid hostname or Internet address, and)-.25 F F2(port)2.996 E F0 .496
 (is an inte)2.996 F .496(ger port number or ser)-.15 F(-)-.2 E
-(vice name,)180 144 Q F1(bash)2.5 E F0
+(vice name,)180 108 Q F1(bash)2.5 E F0
 (attempts to open the corresponding UDP sock)2.5 E(et.)-.1 E 2.5(Af)108
-160.8 S(ailure to open or create a \214le causes the redirection to f)
+124.8 S(ailure to open or create a \214le causes the redirection to f)
 -2.6 E(ail.)-.1 E .045(Redirections using \214le descriptors greater th\
-an 9 should be used with care, as the)108 177.6 R 2.546(ym)-.15 G .046
+an 9 should be used with care, as the)108 141.6 R 2.546(ym)-.15 G .046
 (ay con\215ict with \214le de-)-2.546 F
-(scriptors the shell uses internally)108 189.6 Q(.)-.65 E F1(Redir)87
-206.4 Q(ecting Input)-.18 E F0 .391
+(scriptors the shell uses internally)108 153.6 Q(.)-.65 E F1(Redir)87
+170.4 Q(ecting Input)-.18 E F0 .391
 (Redirection of input causes the \214le whose name results from the e)
-108 218.4 R .391(xpansion of)-.15 F F2(wor)3.231 E(d)-.37 E F0 .391
-(to be opened for read-)3.661 F(ing on \214le descriptor)108 230.4 Q F2
+108 182.4 R .391(xpansion of)-.15 F F2(wor)3.231 E(d)-.37 E F0 .391
+(to be opened for read-)3.661 F(ing on \214le descriptor)108 194.4 Q F2
 (n)2.86 E F0 2.5(,o).24 G 2.5(rt)-2.5 G
 (he standard input \(\214le descriptor 0\) if)-2.5 E F2(n)2.86 E F0
 (is not speci\214ed.)2.74 E
-(The general format for redirecting input is:)108 247.2 Q([)144 264 Q F2
-(n)A F0(])A F1(<)A F2(wor)A(d)-.37 E F1(Redir)87 280.8 Q(ecting Output)
+(The general format for redirecting input is:)108 211.2 Q([)144 228 Q F2
+(n)A F0(])A F1(<)A F2(wor)A(d)-.37 E F1(Redir)87 244.8 Q(ecting Output)
 -.18 E F0 .174
 (Redirection of output causes the \214le whose name results from the e)
-108 292.8 R .175(xpansion of)-.15 F F2(wor)3.015 E(d)-.37 E F0 .175
-(to be opened for writ-)3.445 F .084(ing on \214le descriptor)108 304.8
+108 256.8 R .175(xpansion of)-.15 F F2(wor)3.015 E(d)-.37 E F0 .175
+(to be opened for writ-)3.445 F .084(ing on \214le descriptor)108 268.8
 R F2(n)2.944 E F0 2.583(,o).24 G 2.583(rt)-2.583 G .083
 (he standard output \(\214le descriptor 1\) if)-2.583 F F2(n)2.943 E F0
 .083(is not speci\214ed.)2.823 F .083(If the \214le does not e)5.083 F
-(x-)-.15 E(ist it is created; if it does e)108 316.8 Q
+(x-)-.15 E(ist it is created; if it does e)108 280.8 Q
 (xist it is truncated to zero size.)-.15 E
-(The general format for redirecting output is:)108 333.6 Q([)144 350.4 Q
+(The general format for redirecting output is:)108 297.6 Q([)144 314.4 Q
 F2(n)A F0(])A F1(>)A F2(wor)A(d)-.37 E F0 .154
-(If the redirection operator is)108 367.2 R F1(>)2.654 E F0 2.654(,a)C
+(If the redirection operator is)108 331.2 R F1(>)2.654 E F0 2.654(,a)C
 .154(nd the)-2.654 F F1(noclob)2.654 E(ber)-.1 E F0 .154(option to the)
 2.654 F F1(set)2.655 E F0 -.2(bu)2.655 G .155
-(iltin has been enabled, the redirection).2 F .658(will f)108 379.2 R
+(iltin has been enabled, the redirection).2 F .658(will f)108 343.2 R
 .658(ail if the \214le whose name results from the e)-.1 F .658
 (xpansion of)-.15 F F2(wor)3.158 E(d)-.37 E F0 -.15(ex)3.158 G .657
 (ists and is a re).15 F .657(gular \214le.)-.15 F .657(If the redi-)
-5.657 F .408(rection operator is)108 391.2 R F1(>|)2.909 E F0 2.909(,o)C
+5.657 F .408(rection operator is)108 355.2 R F1(>|)2.909 E F0 2.909(,o)C
 2.909(rt)-2.909 G .409(he redirection operator is)-2.909 F F1(>)2.909 E
 F0 .409(and the)2.909 F F1(noclob)2.909 E(ber)-.1 E F0 .409
 (option to the)2.909 F F1(set)2.909 E F0 -.2(bu)2.909 G .409
 (iltin command).2 F(is not enabled, the redirection is attempted e)108
-403.2 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he \214le named by)
+367.2 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he \214le named by)
 -2.5 E F2(wor)2.5 E(d)-.37 E F0 -.15(ex)2.5 G(ists.).15 E F1 -.25(Ap)87
-420 S(pending Redir).25 E(ected Output)-.18 E F0 .642
-(Redirection of output in this f)108 432 R .642
+384 S(pending Redir).25 E(ected Output)-.18 E F0 .642
+(Redirection of output in this f)108 396 R .642
 (ashion causes the \214le whose name results from the e)-.1 F .641
 (xpansion of)-.15 F F2(wor)3.481 E(d)-.37 E F0 .641(to be)3.911 F .454
-(opened for appending on \214le descriptor)108 444 R F2(n)3.315 E F0
+(opened for appending on \214le descriptor)108 408 R F2(n)3.315 E F0
 2.955(,o).24 G 2.955(rt)-2.955 G .455
 (he standard output \(\214le descriptor 1\) if)-2.955 F F2(n)3.315 E F0
 .455(is not speci\214ed.)3.195 F(If)5.455 E(the \214le does not e)108
-456 Q(xist it is created.)-.15 E
-(The general format for appending output is:)108 472.8 Q([)144 489.6 Q
-F2(n)A F0(])A F1(>>)A F2(wor)A(d)-.37 E F1(Redir)87 506.4 Q
+420 Q(xist it is created.)-.15 E
+(The general format for appending output is:)108 436.8 Q([)144 453.6 Q
+F2(n)A F0(])A F1(>>)A F2(wor)A(d)-.37 E F1(Redir)87 470.4 Q
 (ecting Standard Output and Standard Err)-.18 E(or)-.18 E F0 .249
-(This construct allo)108 518.4 R .249(ws both the standard output \(\
+(This construct allo)108 482.4 R .249(ws both the standard output \(\
 \214le descriptor 1\) and the standard error output \(\214le descrip-)
 -.25 F(tor 2\) to be redirected to the \214le whose name is the e)108
-530.4 Q(xpansion of)-.15 E F2(wor)2.84 E(d)-.37 E F0(.).77 E
-(There are tw)108 547.2 Q 2.5(of)-.1 G
+494.4 Q(xpansion of)-.15 E F2(wor)2.84 E(d)-.37 E F0(.).77 E
+(There are tw)108 511.2 Q 2.5(of)-.1 G
 (ormats for redirecting standard output and standard error:)-2.5 E F1
-(&>)144 564 Q F2(wor)A(d)-.37 E F0(and)108 576 Q F1(>&)144 588 Q F2(wor)
-A(d)-.37 E F0(Of the tw)108 604.8 Q 2.5(of)-.1 G
+(&>)144 528 Q F2(wor)A(d)-.37 E F0(and)108 540 Q F1(>&)144 552 Q F2(wor)
+A(d)-.37 E F0(Of the tw)108 568.8 Q 2.5(of)-.1 G
 (orms, the \214rst is preferred.)-2.5 E(This is semantically equi)5 E
--.25(va)-.25 G(lent to).25 E F1(>)144 621.6 Q F2(wor)A(d)-.37 E F0(2)2.5
-E F1(>&)A F0(1)A .114(When using the second form,)108 638.4 R F2(wor)
+-.25(va)-.25 G(lent to).25 E F1(>)144 585.6 Q F2(wor)A(d)-.37 E F0(2)2.5
+E F1(>&)A F0(1)A .114(When using the second form,)108 602.4 R F2(wor)
 2.614 E(d)-.37 E F0 .114(may not e)2.614 F .114(xpand to a number or)
 -.15 F F1<ad>2.614 E F0 5.114(.I)C 2.614(fi)-5.114 G 2.615(td)-2.614 G
-.115(oes, other redirection operators)-2.615 F(apply \(see)108 650.4 Q
+.115(oes, other redirection operators)-2.615 F(apply \(see)108 614.4 Q
 F1(Duplicating File Descriptors)2.5 E F0(belo)2.5 E
-(w\) for compatibility reasons.)-.25 E F1 -.25(Ap)87 667.2 S
+(w\) for compatibility reasons.)-.25 E F1 -.25(Ap)87 631.2 S
 (pending Standard Output and Standard Err).25 E(or)-.18 E F0 .249
-(This construct allo)108 679.2 R .249(ws both the standard output \(\
+(This construct allo)108 643.2 R .249(ws both the standard output \(\
 \214le descriptor 1\) and the standard error output \(\214le descrip-)
 -.25 F(tor 2\) to be appended to the \214le whose name is the e)108
-691.2 Q(xpansion of)-.15 E F2(wor)2.84 E(d)-.37 E F0(.).77 E
-(The format for appending standard output and standard error is:)108 708
-Q F1(&>>)144 724.8 Q F2(wor)A(d)-.37 E F0(GNU Bash 5.2)72 768 Q
-(2023 May 14)148.175 E(31)197.335 E 0 Cg EP
+655.2 Q(xpansion of)-.15 E F2(wor)2.84 E(d)-.37 E F0(.).77 E
+(The format for appending standard output and standard error is:)108 672
+Q F1(&>>)144 688.8 Q F2(wor)A(d)-.37 E F0(This is semantically equi)108
+705.6 Q -.25(va)-.25 G(lent to).25 E F1(>>)144 722.4 Q F2(wor)A(d)-.37 E
+F0(2)2.5 E F1(>&)A F0(1)A(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E
+(31)197.335 E 0 Cg EP
 %%Page: 32 32
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E
-(This is semantically equi)108 84 Q -.25(va)-.25 G(lent to).25 E/F1 10
-/Times-Bold@0 SF(>>)144 100.8 Q/F2 10/Times-Italic@0 SF(wor)A(d)-.37 E
-F0(2)2.5 E F1(>&)A F0(1)A(\(see)108 117.6 Q F1
-(Duplicating File Descriptors)2.5 E F0(belo)2.5 E(w\).)-.25 E F1(Her)87
-134.4 Q 2.5(eD)-.18 G(ocuments)-2.5 E F0 .33(This type of redirection i\
-nstructs the shell to read input from the current source until a line c\
-ontaining only)108 146.4 R F2(delimiter)108.35 158.4 Q F0 .615
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(\(see)108 84 Q/F1
+10/Times-Bold@0 SF(Duplicating File Descriptors)2.5 E F0(belo)2.5 E
+(w\).)-.25 E F1(Her)87 100.8 Q 2.5(eD)-.18 G(ocuments)-2.5 E F0 .33(Thi\
+s type of redirection instructs the shell to read input from the curren\
+t source until a line containing only)108 112.8 R/F2 10/Times-Italic@0
+SF(delimiter)108.35 124.8 Q F0 .615
 (\(with no trailing blanks\) is seen.)3.845 F .615
 (All of the lines read up to that point are then used as the stan-)5.615
-F(dard input \(or \214le descriptor)108 170.4 Q F2(n)2.5 E F0(if)2.5 E
+F(dard input \(or \214le descriptor)108 136.8 Q F2(n)2.5 E F0(if)2.5 E
 F2(n)2.5 E F0(is speci\214ed\) for a command.)2.5 E
-(The format of here-documents is:)108 187.2 Q([)144 204 Q F2(n)A F0(])A
-F1(<<)A F0([)A F1<ad>A F0(])A F2(wor)A(d)-.37 E(her)164 216 Q
-(e-document)-.37 E(delimiter)144 228 Q F0 .301(No parameter and v)108
-244.8 R .302(ariable e)-.25 F .302
+(The format of here-documents is:)108 153.6 Q([)144 170.4 Q F2(n)A F0(])
+A F1(<<)A F0([)A F1<ad>A F0(])A F2(wor)A(d)-.37 E(her)164 182.4 Q
+(e-document)-.37 E(delimiter)144 194.4 Q F0 .301(No parameter and v)108
+211.2 R .302(ariable e)-.25 F .302
 (xpansion, command substitution, arithmetic e)-.15 F .302
 (xpansion, or pathname e)-.15 F(xpansion)-.15 E(is performed on)108
-256.8 Q F2(wor)2.84 E(d)-.37 E F0(.).77 E .053(If an)108 273.6 R 2.553
-(yp)-.15 G .053(art of)-2.553 F F2(wor)2.893 E(d)-.37 E F0 .053
+223.2 Q F2(wor)2.84 E(d)-.37 E F0(.).77 E .053(If an)108 240 R 2.553(yp)
+-.15 G .053(art of)-2.553 F F2(wor)2.893 E(d)-.37 E F0 .053
 (is quoted, the)3.323 F F2(delimiter)2.902 E F0 .052
 (is the result of quote remo)3.282 F -.25(va)-.15 G 2.552(lo).25 G(n)
 -2.552 E F2(wor)2.892 E(d)-.37 E F0 2.552(,a).77 G .052
-(nd the lines in the here-)-2.552 F .027(document are not e)108 285.6 R
+(nd the lines in the here-)-2.552 F .027(document are not e)108 252 R
 2.527(xpanded. If)-.15 F F2(wor)2.527 E(d)-.37 E F0 .028
 (is unquoted, the)2.527 F F2(delimiter)2.878 E F0(is)3.258 E F2(wor)
 2.528 E(d)-.37 E F0 .028(itself, all lines of the here-document)2.528 F
-1.195(are subjected to parameter e)108 297.6 R 1.194
+1.195(are subjected to parameter e)108 264 R 1.194
 (xpansion, command substitution, and arithmetic e)-.15 F 1.194
-(xpansion, the character se-)-.15 F(quence)108 309.6 Q F1(\\<newline>)
-2.5 E F0(is ignored, and)2.5 E F1(\\)2.5 E F0
+(xpansion, the character se-)-.15 F(quence)108 276 Q F1(\\<newline>)2.5
+E F0(is ignored, and)2.5 E F1(\\)2.5 E F0
 (must be used to quote the characters)2.5 E F1(\\)2.5 E F0(,)A F1($)2.5
 E F0 2.5(,a)C(nd)-2.5 E F1<92>2.5 E F0(.)A .601
-(If the redirection operator is)108 326.4 R F1(<<\255)3.101 E F0 3.101
+(If the redirection operator is)108 292.8 R F1(<<\255)3.101 E F0 3.101
 (,t)C .601(hen all leading tab characters are stripped from input lines\
- and the line)-3.101 F(containing)108 338.4 Q F2(delimiter)2.85 E F0 5
+ and the line)-3.101 F(containing)108 304.8 Q F2(delimiter)2.85 E F0 5
 (.T).73 G(his allo)-5 E
 (ws here-documents within shell scripts to be indented in a natural f)
--.25 E(ashion.)-.1 E F1(Her)87 355.2 Q 2.5(eS)-.18 G(trings)-2.5 E F0
-2.5(Av)108 367.2 S(ariant of here documents, the format is:)-2.75 E([)
-144 384 Q F2(n)A F0(])A F1(<<<)A F2(wor)A(d)-.37 E F0(The)108 400.8 Q F2
-(wor)3.292 E(d)-.37 E F0(under)3.292 E .792(goes tilde e)-.18 F .792
+-.25 E(ashion.)-.1 E F1(Her)87 321.6 Q 2.5(eS)-.18 G(trings)-2.5 E F0
+2.5(Av)108 333.6 S(ariant of here documents, the format is:)-2.75 E([)
+144 350.4 Q F2(n)A F0(])A F1(<<<)A F2(wor)A(d)-.37 E F0(The)108 367.2 Q
+F2(wor)3.292 E(d)-.37 E F0(under)3.292 E .792(goes tilde e)-.18 F .792
 (xpansion, parameter and v)-.15 F .792(ariable e)-.25 F .791
-(xpansion, command substitution, arithmetic)-.15 F -.15(ex)108 412.8 S
+(xpansion, command substitution, arithmetic)-.15 F -.15(ex)108 379.2 S
 1.187(pansion, and quote remo).15 F -.25(va)-.15 G 3.687(l. P).25 F
 1.187(athname e)-.15 F 1.187(xpansion and w)-.15 F 1.187
 (ord splitting are not performed.)-.1 F 1.188(The result is)6.187 F .375
-(supplied as a single string, with a ne)108 424.8 R .374(wline appended\
+(supplied as a single string, with a ne)108 391.2 R .374(wline appended\
 , to the command on its standard input \(or \214le descrip-)-.25 F(tor)
-108 436.8 Q F2(n)2.5 E F0(if)2.5 E F2(n)2.5 E F0(is speci\214ed\).)2.5 E
-F1(Duplicating File Descriptors)87 453.6 Q F0(The redirection operator)
-108 465.6 Q([)144 482.4 Q F2(n)A F0(])A F1(<&)A F2(wor)A(d)-.37 E F0
-.126(is used to duplicate input \214le descriptors.)108 499.2 R(If)5.127
-F2(wor)2.967 E(d)-.37 E F0 -.15(ex)3.397 G .127
+108 403.2 Q F2(n)2.5 E F0(if)2.5 E F2(n)2.5 E F0(is speci\214ed\).)2.5 E
+F1(Duplicating File Descriptors)87 420 Q F0(The redirection operator)108
+432 Q([)144 448.8 Q F2(n)A F0(])A F1(<&)A F2(wor)A(d)-.37 E F0 .126
+(is used to duplicate input \214le descriptors.)108 465.6 R(If)5.127 E
+F2(wor)2.967 E(d)-.37 E F0 -.15(ex)3.397 G .127
 (pands to one or more digits, the \214le descriptor denoted).15 F(by)108
-511.2 Q F2(n)3.318 E F0 .458(is made to be a cop)3.198 F 2.958(yo)-.1 G
+477.6 Q F2(n)3.318 E F0 .458(is made to be a cop)3.198 F 2.958(yo)-.1 G
 2.958(ft)-2.958 G .457(hat \214le descriptor)-2.958 F 5.457(.I)-.55 G
 2.957(ft)-5.457 G .457(he digits in)-2.957 F F2(wor)3.297 E(d)-.37 E F0
 .457(do not specify a \214le descriptor open)3.727 F .149
-(for input, a redirection error occurs.)108 523.2 R(If)5.149 E F2(wor)
+(for input, a redirection error occurs.)108 489.6 R(If)5.149 E F2(wor)
 2.989 E(d)-.37 E F0 -.25(eva)3.419 G .149(luates to).25 F F1<ad>2.649 E
 F0 2.65<2c8c>C .15(le descriptor)-2.65 F F2(n)3.01 E F0 .15(is closed.)
 2.89 F(If)5.15 E F2(n)3.01 E F0 .15(is not speci\214ed,)2.89 F
-(the standard input \(\214le descriptor 0\) is used.)108 535.2 Q
-(The operator)108 552 Q([)144 568.8 Q F2(n)A F0(])A F1(>&)A F2(wor)A(d)
--.37 E F0 .444
-(is used similarly to duplicate output \214le descriptors.)108 585.6 R
-(If)5.444 E F2(n)3.304 E F0 .443
+(the standard input \(\214le descriptor 0\) is used.)108 501.6 Q
+(The operator)108 518.4 Q([)144 535.2 Q F2(n)A F0(])A F1(>&)A F2(wor)A
+(d)-.37 E F0 .444
+(is used similarly to duplicate output \214le descriptors.)108 552 R(If)
+5.444 E F2(n)3.304 E F0 .443
 (is not speci\214ed, the standard output \(\214le descrip-)3.183 F .565
-(tor 1\) is used.)108 597.6 R .565(If the digits in)5.565 F F2(wor)3.406
-E(d)-.37 E F0 .566(do not specify a \214le descriptor open for output, \
-a redirection error oc-)3.836 F 3.204(curs. If)108 609.6 R F2(wor)3.544
-E(d)-.37 E F0 -.25(eva)3.974 G .704(luates to).25 F F1<ad>3.204 E F0
+(tor 1\) is used.)108 564 R .565(If the digits in)5.565 F F2(wor)3.406 E
+(d)-.37 E F0 .566(do not specify a \214le descriptor open for output, a\
+ redirection error oc-)3.836 F 3.204(curs. If)108 576 R F2(wor)3.544 E
+(d)-.37 E F0 -.25(eva)3.974 G .704(luates to).25 F F1<ad>3.204 E F0
 3.204<2c8c>C .704(le descriptor)-3.204 F F2(n)3.563 E F0 .703
 (is closed.)3.443 F .703(As a special case, if)5.703 F F2(n)3.203 E F0
 .703(is omitted, and)3.203 F F2(wor)3.203 E(d)-.37 E F0(does)3.203 E
-.965(not e)108 621.6 R .965(xpand to one or more digits or)-.15 F F1<ad>
+.965(not e)108 588 R .965(xpand to one or more digits or)-.15 F F1<ad>
 3.465 E F0 3.466(,t)C .966
 (he standard output and standard error are redirected as described)
--3.466 F(pre)108 633.6 Q(viously)-.25 E(.)-.65 E F1(Mo)87 650.4 Q
-(ving File Descriptors)-.1 E F0(The redirection operator)108 662.4 Q([)
-144 679.2 Q F2(n)A F0(])A F1(<&)A F2(digit)A F1<ad>A F0(mo)108 696 Q
+-3.466 F(pre)108 600 Q(viously)-.25 E(.)-.65 E F1(Mo)87 616.8 Q
+(ving File Descriptors)-.1 E F0(The redirection operator)108 628.8 Q([)
+144 645.6 Q F2(n)A F0(])A F1(<&)A F2(digit)A F1<ad>A F0(mo)108 662.4 Q
 -.15(ve)-.15 G 3.018(st).15 G .518(he \214le descriptor)-3.018 F F2
 (digit)3.018 E F0 .518(to \214le descriptor)3.018 F F2(n)3.378 E F0
 3.018(,o).24 G 3.018(rt)-3.018 G .517
 (he standard input \(\214le descriptor 0\) if)-3.018 F F2(n)3.017 E F0
-.517(is not speci-)3.017 F(\214ed.)108 708 Q F2(digit)5 E F0
+.517(is not speci-)3.017 F(\214ed.)108 674.4 Q F2(digit)5 E F0
 (is closed after being duplicated to)2.5 E F2(n)2.5 E F0(.)A(Similarly)
-108 724.8 Q 2.5(,t)-.65 G(he redirection operator)-2.5 E(GNU Bash 5.2)72
-768 Q(2023 May 14)148.175 E(32)197.335 E 0 Cg EP
+108 691.2 Q 2.5(,t)-.65 G(he redirection operator)-2.5 E([)144 708 Q F2
+(n)A F0(])A F1(>&)A F2(digit)A F1<ad>A F0(mo)108 724.8 Q -.15(ve)-.15 G
+4.17(st).15 G 1.67(he \214le descriptor)-4.17 F F2(digit)4.17 E F0 1.67
+(to \214le descriptor)4.17 F F2(n)4.53 E F0 4.17(,o).24 G 4.17(rt)-4.17
+G 1.67(he standard output \(\214le descriptor 1\) if)-4.17 F F2(n)4.17 E
+F0 1.67(is not)4.17 F(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(32)
+197.335 E 0 Cg EP
 %%Page: 33 33
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E([)144 84 Q/F1 10
-/Times-Italic@0 SF(n)A F0(])A/F2 10/Times-Bold@0 SF(>&)A F1(digit)A F2
-<ad>A F0(mo)108 100.8 Q -.15(ve)-.15 G 2.767(st).15 G .267
-(he \214le descriptor)-2.767 F F1(digit)2.767 E F0 .267
-(to \214le descriptor)2.767 F F1(n)3.127 E F0 2.767(,o).24 G 2.767(rt)
--2.767 G .268(he standard output \(\214le descriptor 1\) if)-2.767 F F1
-(n)2.768 E F0 .268(is not speci-)2.768 F(\214ed.)108 112.8 Q F2
-(Opening File Descriptors f)87 129.6 Q(or Reading and Writing)-.25 E F0
-(The redirection operator)108 141.6 Q([)144 158.4 Q F1(n)A F0(])A F2(<>)
-A F1(wor)A(d)-.37 E F0 .518(causes the \214le whose name is the e)108
-175.2 R .518(xpansion of)-.15 F F1(wor)3.358 E(d)-.37 E F0 .518
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(speci\214ed.)108
+84 Q/F1 10/Times-Bold@0 SF(Opening File Descriptors f)87 100.8 Q
+(or Reading and Writing)-.25 E F0(The redirection operator)108 112.8 Q
+([)144 129.6 Q/F2 10/Times-Italic@0 SF(n)A F0(])A F1(<>)A F2(wor)A(d)
+-.37 E F0 .518(causes the \214le whose name is the e)108 146.4 R .518
+(xpansion of)-.15 F F2(wor)3.358 E(d)-.37 E F0 .518
 (to be opened for both reading and writing on \214le de-)3.788 F
-(scriptor)108 187.2 Q F1(n)2.86 E F0 2.5(,o).24 G 2.5(ro)-2.5 G 2.5
-<6e8c>-2.5 G(le descriptor 0 if)-2.5 E F1(n)2.86 E F0
+(scriptor)108 158.4 Q F2(n)2.86 E F0 2.5(,o).24 G 2.5(ro)-2.5 G 2.5
+<6e8c>-2.5 G(le descriptor 0 if)-2.5 E F2(n)2.86 E F0
 (is not speci\214ed.)2.74 E(If the \214le does not e)5 E
-(xist, it is created.)-.15 E/F3 10.95/Times-Bold@0 SF(ALIASES)72 204 Q
-F1(Aliases)108 216 Q F0(allo)3.001 E 3.001(was)-.25 G .501
+(xist, it is created.)-.15 E/F3 10.95/Times-Bold@0 SF(ALIASES)72 175.2 Q
+F2(Aliases)108 187.2 Q F0(allo)3.001 E 3.001(was)-.25 G .501
 (tring to be substituted for a w)-3.001 F .502
 (ord that is in a position in the input where it can be the \214rst)-.1
-F -.1(wo)108 228 S .556(rd of a simple command. Aliases ha).1 F .855
+F -.1(wo)108 199.2 S .556(rd of a simple command. Aliases ha).1 F .855
 -.15(ve n)-.2 H .555(ames and corresponding v).15 F .555
-(alues that are set and unset using the)-.25 F F2(alias)108 240 Q F0
-(and)2.5 E F2(unalias)2.5 E F0 -.2(bu)2.5 G(iltin commands \(see).2 E/F4
+(alues that are set and unset using the)-.25 F F1(alias)108 211.2 Q F0
+(and)2.5 E F1(unalias)2.5 E F0 -.2(bu)2.5 G(iltin commands \(see).2 E/F4
 9/Times-Bold@0 SF(SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)
-2.25 E(w\).)-.25 E 1.033(If the shell reads an unquoted w)108 256.8 R
+2.25 E(w\).)-.25 E 1.033(If the shell reads an unquoted w)108 228 R
 1.033(ord in the right position, it checks the w)-.1 F 1.034
 (ord to see if it matches an alias)-.1 F .657
-(name. If it matches, the shell replaces the w)108 268.8 R .657
+(name. If it matches, the shell replaces the w)108 240 R .657
 (ord with the alias v)-.1 F .657(alue, and reads that v)-.25 F .657
-(alue as if it had been)-.25 F 1.081(read instead of the w)108 280.8 R
+(alue as if it had been)-.25 F 1.081(read instead of the w)108 252 R
 3.582(ord. The)-.1 F 1.082(shell doesn')3.582 F 3.582(tl)-.18 G 1.082
 (ook at an)-3.582 F 3.582(yc)-.15 G 1.082(haracters follo)-3.582 F 1.082
 (wing the w)-.25 F 1.082(ord before attempting)-.1 F
-(alias substitution.)108 292.8 Q .265(The characters)108 309.6 R F2(/)
-2.765 E F0(,)A F2($)2.765 E F0(,)A F2<92>2.765 E F0 2.764(,a)C(nd)-2.764
-E F2(=)2.764 E F0 .264(and an)2.764 F 2.764(yo)-.15 G 2.764(ft)-2.764 G
-.264(he shell)-2.764 F F1(metac)2.764 E(har)-.15 E(acter)-.15 E(s)-.1 E
+(alias substitution.)108 264 Q .265(The characters)108 280.8 R F1(/)
+2.765 E F0(,)A F1($)2.765 E F0(,)A F1<92>2.765 E F0 2.764(,a)C(nd)-2.764
+E F1(=)2.764 E F0 .264(and an)2.764 F 2.764(yo)-.15 G 2.764(ft)-2.764 G
+.264(he shell)-2.764 F F2(metac)2.764 E(har)-.15 E(acter)-.15 E(s)-.1 E
 F0 .264(or quoting characters listed abo)2.764 F .564 -.15(ve m)-.15 H
-.264(ay not).15 F .298(appear in an alias name.)108 321.6 R .298
+.264(ay not).15 F .298(appear in an alias name.)108 292.8 R .298
 (The replacement te)5.298 F .298(xt may contain an)-.15 F 2.798(yv)-.15
 G .298(alid shell input, including shell metachar)-3.048 F(-)-.2 E 2.626
-(acters. The)108 333.6 R .126(\214rst w)2.626 F .126
+(acters. The)108 304.8 R .126(\214rst w)2.626 F .126
 (ord of the replacement te)-.1 F .125(xt is tested for aliases, b)-.15 F
 .125(ut a w)-.2 F .125(ord that is identical to an alias be-)-.1 F .666
-(ing e)108 345.6 R .666(xpanded is not e)-.15 F .666
+(ing e)108 316.8 R .666(xpanded is not e)-.15 F .666
 (xpanded a second time.)-.15 F .666(This means that one may alias)5.666
-F F2(ls)3.166 E F0(to)3.166 E F2 .666(ls \255F)3.166 F F0 3.166(,f)C
-.666(or instance, and)-3.166 F F2(bash)108 357.6 Q F0
+F F1(ls)3.166 E F0(to)3.166 E F1 .666(ls \255F)3.166 F F0 3.166(,f)C
+.666(or instance, and)-3.166 F F1(bash)108 328.8 Q F0
 (does not try to recursi)2.5 E -.15(ve)-.25 G(ly e).15 E
 (xpand the replacement te)-.15 E(xt.)-.15 E .858
-(If the last character of the alias v)108 374.4 R .858(alue is a)-.25 F
-F1(blank)3.628 E F0 3.358(,t).67 G .858(hen the ne)-3.358 F .858
+(If the last character of the alias v)108 345.6 R .858(alue is a)-.25 F
+F2(blank)3.628 E F0 3.358(,t).67 G .858(hen the ne)-3.358 F .858
 (xt command w)-.15 F .858(ord follo)-.1 F .858(wing the alias is also)
--.25 F(check)108 386.4 Q(ed for alias e)-.1 E(xpansion.)-.15 E
-(Aliases are created and listed with the)108 403.2 Q F2(alias)2.5 E F0
-(command, and remo)2.5 E -.15(ve)-.15 G 2.5(dw).15 G(ith the)-2.5 E F2
+-.25 F(check)108 357.6 Q(ed for alias e)-.1 E(xpansion.)-.15 E
+(Aliases are created and listed with the)108 374.4 Q F1(alias)2.5 E F0
+(command, and remo)2.5 E -.15(ve)-.15 G 2.5(dw).15 G(ith the)-2.5 E F1
 (unalias)2.5 E F0(command.)2.5 E .741
-(There is no mechanism for using ar)108 420 R .741
+(There is no mechanism for using ar)108 391.2 R .741
 (guments in the replacement te)-.18 F 3.241(xt. If)-.15 F(ar)3.241 E
-.742(guments are needed, use a shell)-.18 F(function \(see)108 432 Q F4
-(FUNCTIONS)2.5 E F0(belo)2.25 E(w\).)-.25 E .283(Aliases are not e)108
-448.8 R .283(xpanded when the shell is not interacti)-.15 F -.15(ve)-.25
-G 2.782(,u).15 G .282(nless the)-2.782 F F2(expand_aliases)2.782 E F0
-.282(shell option is set us-)2.782 F(ing)108 460.8 Q F2(shopt)2.5 E F0
-(\(see the description of)2.5 E F2(shopt)2.5 E F0(under)2.5 E F4
+.742(guments are needed, use a shell)-.18 F(function \(see)108 403.2 Q
+F4(FUNCTIONS)2.5 E F0(belo)2.25 E(w\).)-.25 E .283(Aliases are not e)108
+420 R .283(xpanded when the shell is not interacti)-.15 F -.15(ve)-.25 G
+2.782(,u).15 G .282(nless the)-2.782 F F1(expand_aliases)2.782 E F0 .282
+(shell option is set us-)2.782 F(ing)108 432 Q F1(shopt)2.5 E F0
+(\(see the description of)2.5 E F1(shopt)2.5 E F0(under)2.5 E F4
 (SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25
 E .435
 (The rules concerning the de\214nition and use of aliases are some)108
-477.6 R .436(what confusing.)-.25 F F2(Bash)5.436 E F0(al)2.936 E -.1
+448.8 R .436(what confusing.)-.25 F F1(Bash)5.436 E F0(al)2.936 E -.1
 (wa)-.1 G .436(ys reads at least).1 F .67
-(one complete line of input, and all lines that mak)108 489.6 R 3.17(eu)
+(one complete line of input, and all lines that mak)108 460.8 R 3.17(eu)
 -.1 G 3.17(pac)-3.17 G .67(ompound command, before e)-3.17 F -.15(xe)
 -.15 G .67(cuting an).15 F 3.17(yo)-.15 G 3.17(ft)-3.17 G(he)-3.17 E
-1.058(commands on that line or the compound command.)108 501.6 R 1.059
+1.058(commands on that line or the compound command.)108 472.8 R 1.059
 (Aliases are e)6.059 F 1.059(xpanded when a command is read, not)-.15 F
-.075(when it is e)108 513.6 R -.15(xe)-.15 G 2.575(cuted. Therefore,).15
+.075(when it is e)108 484.8 R -.15(xe)-.15 G 2.575(cuted. Therefore,).15
 F .075(an alias de\214nition appearing on the same line as another comm\
-and does not)2.575 F(tak)108 525.6 Q 2.837(ee)-.1 G -.25(ff)-2.837 G
+and does not)2.575 F(tak)108 496.8 Q 2.837(ee)-.1 G -.25(ff)-2.837 G
 .337(ect until the ne).25 F .337(xt line of input is read.)-.15 F .337
 (The commands follo)5.337 F .338
 (wing the alias de\214nition on that line are)-.25 F .552(not af)108
-537.6 R .551(fected by the ne)-.25 F 3.051(wa)-.25 G 3.051(lias. This)
+508.8 R .551(fected by the ne)-.25 F 3.051(wa)-.25 G 3.051(lias. This)
 -3.051 F(beha)3.051 E .551(vior is also an issue when functions are e)
 -.2 F -.15(xe)-.15 G 3.051(cuted. Aliases).15 F .551(are e)3.051 F(x-)
 -.15 E .425(panded when a function de\214nition is read, not when the f\
-unction is e)108 549.6 R -.15(xe)-.15 G .426
+unction is e)108 520.8 R -.15(xe)-.15 G .426
 (cuted, because a function de\214nition).15 F .404(is itself a command.)
-108 561.6 R .403
+108 532.8 R .403
 (As a consequence, aliases de\214ned in a function are not a)5.404 F
 -.25(va)-.2 G .403(ilable until after that func-).25 F .862(tion is e)
-108 573.6 R -.15(xe)-.15 G 3.362(cuted. T).15 F 3.362(ob)-.8 G 3.362(es)
+108 544.8 R -.15(xe)-.15 G 3.362(cuted. T).15 F 3.362(ob)-.8 G 3.362(es)
 -3.362 G .862(afe, al)-3.362 F -.1(wa)-.1 G .862
-(ys put alias de\214nitions on a separate line, and do not use).1 F F2
-(alias)3.362 E F0 .862(in com-)3.362 F(pound commands.)108 585.6 Q -.15
-(Fo)108 602.4 S 2.5(ra).15 G(lmost e)-2.5 E -.15(ve)-.25 G
+(ys put alias de\214nitions on a separate line, and do not use).1 F F1
+(alias)3.362 E F0 .862(in com-)3.362 F(pound commands.)108 556.8 Q -.15
+(Fo)108 573.6 S 2.5(ra).15 G(lmost e)-2.5 E -.15(ve)-.25 G
 (ry purpose, aliases are superseded by shell functions.).15 E F3
-(FUNCTIONS)72 619.2 Q F0 3.468(As)108 631.2 S .968
+(FUNCTIONS)72 590.4 Q F0 3.468(As)108 602.4 S .968
 (hell function, de\214ned as described abo)-3.468 F 1.267 -.15(ve u)-.15
 H(nder).15 E F4 .967(SHELL GRAMMAR)3.467 F/F5 9/Times-Roman@0 SF(,)A F0
-.967(stores a series of commands for)3.217 F 1.001(later e)108 643.2 R
+.967(stores a series of commands for)3.217 F 1.001(later e)108 614.4 R
 -.15(xe)-.15 G 3.501(cution. When).15 F 1.002(the name of a shell funct\
 ion is used as a simple command name, the list of com-)3.501 F .316
-(mands associated with that function name is e)108 655.2 R -.15(xe)-.15
+(mands associated with that function name is e)108 626.4 R -.15(xe)-.15
 G 2.816(cuted. Functions).15 F .316(are e)2.816 F -.15(xe)-.15 G .315
 (cuted in the conte).15 F .315(xt of the current)-.15 F .035
-(shell; no ne)108 667.2 R 2.535(wp)-.25 G .036
+(shell; no ne)108 638.4 R 2.535(wp)-.25 G .036
 (rocess is created to interpret them \(contrast this with the e)-2.535 F
 -.15(xe)-.15 G .036(cution of a shell script\).).15 F .036(When a)5.036
-F .64(function is e)108 679.2 R -.15(xe)-.15 G .64(cuted, the ar).15 F
+F .64(function is e)108 650.4 R -.15(xe)-.15 G .64(cuted, the ar).15 F
 .639
 (guments to the function become the positional parameters during its e)
--.18 F -.15(xe)-.15 G(cution.).15 E .532(The special parameter)108 691.2
-R F2(#)3.032 E F0 .532(is updated to re\215ect the change.)3.032 F .532
-(Special parameter)5.532 F F2(0)3.033 E F0 .533(is unchanged.)3.033 F
-.533(The \214rst ele-)5.533 F(ment of the)108 703.2 Q F4(FUNCN)2.5 E
+-.18 F -.15(xe)-.15 G(cution.).15 E .532(The special parameter)108 662.4
+R F1(#)3.032 E F0 .532(is updated to re\215ect the change.)3.032 F .532
+(Special parameter)5.532 F F1(0)3.033 E F0 .533(is unchanged.)3.033 F
+.533(The \214rst ele-)5.533 F(ment of the)108 674.4 Q F4(FUNCN)2.5 E
 (AME)-.18 E F0 -.25(va)2.25 G
 (riable is set to the name of the function while the function is e).25 E
 -.15(xe)-.15 G(cuting.).15 E 1.25(All other aspects of the shell e)108
-720 R -.15(xe)-.15 G 1.25(cution en).15 F 1.25
+691.2 R -.15(xe)-.15 G 1.25(cution en).15 F 1.25
 (vironment are identical between a function and its caller with)-.4 F
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(33)197.335 E 0 Cg EP
+1.214(these e)108 703.2 R 1.214(xceptions: the)-.15 F F4(DEB)3.714 E(UG)
+-.09 E F0(and)3.464 E F1(RETURN)3.715 E F0 1.215
+(traps \(see the description of the)3.715 F F1(trap)3.715 E F0 -.2(bu)
+3.715 G 1.215(iltin under).2 F F4(SHELL)3.715 E -.09(BU)108 715.2 S(IL)
+.09 E .479(TIN COMMANDS)-.828 F F0(belo)2.729 E .479
+(w\) are not inherited unless the function has been gi)-.25 F -.15(ve)
+-.25 G 2.978(nt).15 G(he)-2.978 E F1(trace)2.978 E F0(attrib)2.978 E
+.478(ute \(see)-.2 F .42(the description of the)108 727.2 R F4(declar)
+2.92 E(e)-.162 E F0 -.2(bu)2.67 G .42(iltin belo).2 F .42(w\) or the)
+-.25 F F1 .42(\255o functrace)2.92 F F0 .42
+(shell option has been enabled with the)2.92 F F1(set)2.921 E F0
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(33)197.335 E 0 Cg EP
 %%Page: 34 34
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.214(these e)108
-84 R 1.214(xceptions: the)-.15 F/F1 9/Times-Bold@0 SF(DEB)3.714 E(UG)
--.09 E F0(and)3.464 E/F2 10/Times-Bold@0 SF(RETURN)3.715 E F0 1.215
-(traps \(see the description of the)3.715 F F2(trap)3.715 E F0 -.2(bu)
-3.715 G 1.215(iltin under).2 F F1(SHELL)3.715 E -.09(BU)108 96 S(IL).09
-E .479(TIN COMMANDS)-.828 F F0(belo)2.729 E .479
-(w\) are not inherited unless the function has been gi)-.25 F -.15(ve)
--.25 G 2.978(nt).15 G(he)-2.978 E F2(trace)2.978 E F0(attrib)2.978 E
-.478(ute \(see)-.2 F .42(the description of the)108 108 R F1(declar)2.92
-E(e)-.162 E F0 -.2(bu)2.67 G .42(iltin belo).2 F .42(w\) or the)-.25 F
-F2 .42(\255o functrace)2.92 F F0 .42
-(shell option has been enabled with the)2.92 F F2(set)2.921 E F0 -.2(bu)
-108 120 S .072(iltin \(in which case all functions inherit the).2 F F2
-(DEB)2.572 E(UG)-.1 E F0(and)2.572 E F2(RETURN)2.572 E F0 .072
-(traps\), and the)2.572 F F1(ERR)2.571 E F0 .071(trap is not inher)2.321
-F(-)-.2 E(ited unless the)108 132 Q F2(\255o errtrace)2.5 E F0
-(shell option has been enabled.)2.5 E -1.11(Va)108 148.8 S .368
-(riables local to the function may be declared with the)1.11 F F2(local)
-2.868 E F0 -.2(bu)2.868 G .368(iltin command \().2 F/F3 10
-/Times-Italic@0 SF .368(local variables)B F0 2.868(\). Ordinar)B(-)-.2 E
-(ily)108 160.8 Q 2.88(,v)-.65 G .38(ariables and their v)-3.13 F .38
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.2(bu)108 84 S
+.072(iltin \(in which case all functions inherit the).2 F/F1 10
+/Times-Bold@0 SF(DEB)2.572 E(UG)-.1 E F0(and)2.572 E F1(RETURN)2.572 E
+F0 .072(traps\), and the)2.572 F/F2 9/Times-Bold@0 SF(ERR)2.571 E F0
+.071(trap is not inher)2.321 F(-)-.2 E(ited unless the)108 96 Q F1
+(\255o errtrace)2.5 E F0(shell option has been enabled.)2.5 E -1.11(Va)
+108 112.8 S .368(riables local to the function may be declared with the)
+1.11 F F1(local)2.868 E F0 -.2(bu)2.868 G .368(iltin command \().2 F/F3
+10/Times-Italic@0 SF .368(local variables)B F0 2.868(\). Ordinar)B(-)-.2
+E(ily)108 124.8 Q 2.88(,v)-.65 G .38(ariables and their v)-3.13 F .38
 (alues are shared between the function and its caller)-.25 F 5.38(.I)
--.55 G 2.88(fav)-5.38 G .38(ariable is declared)-3.13 F F2(local)2.88 E
-F0(,)A(the v)108 172.8 Q(ariable')-.25 E 2.5(sv)-.55 G(isible scope is \
+-.55 G 2.88(fav)-5.38 G .38(ariable is declared)-3.13 F F1(local)2.88 E
+F0(,)A(the v)108 136.8 Q(ariable')-.25 E 2.5(sv)-.55 G(isible scope is \
 restricted to that function and its children \(including the functions \
-it calls\).)-2.5 E .726(In the follo)108 189.6 R .726
+it calls\).)-2.5 E .726(In the follo)108 153.6 R .726
 (wing description, the)-.25 F F3(curr)3.226 E .726(ent scope)-.37 F F0
 .727(is a currently- e)3.226 F -.15(xe)-.15 G .727(cuting function.).15
 F(Pre)5.727 E .727(vious scopes consist)-.25 F 1.004(of that function')
-108 201.6 R 3.504(sc)-.55 G 1.004
+108 165.6 R 3.504(sc)-.55 G 1.004
 (aller and so on, back to the "global" scope, where the shell is not e)
 -3.504 F -.15(xe)-.15 G 1.003(cuting an).15 F 3.503(ys)-.15 G(hell)
--3.503 E 3.409(function. Consequently)108 213.6 R 3.409(,al)-.65 G .909
+-3.503 E 3.409(function. Consequently)108 177.6 R 3.409(,al)-.65 G .909
 (ocal v)-3.409 F .909(ariable at the current scope is a v)-.25 F .91
-(ariable declared using the)-.25 F F2(local)3.41 E F0(or)3.41 E F2(de-)
-3.41 E(clar)108 225.6 Q(e)-.18 E F0 -.2(bu)2.5 G
+(ariable declared using the)-.25 F F1(local)3.41 E F0(or)3.41 E F1(de-)
+3.41 E(clar)108 189.6 Q(e)-.18 E F0 -.2(bu)2.5 G
 (iltins in the function that is currently e).2 E -.15(xe)-.15 G(cuting.)
-.15 E .636(Local v)108 242.4 R .636(ariables "shado)-.25 F .636(w" v)
+.15 E .636(Local v)108 206.4 R .636(ariables "shado)-.25 F .636(w" v)
 -.25 F .635(ariables with the same name declared at pre)-.25 F .635
 (vious scopes.)-.25 F -.15(Fo)5.635 G 3.135(ri).15 G .635
-(nstance, a local)-3.135 F -.25(va)108 254.4 S .58
+(nstance, a local)-3.135 F -.25(va)108 218.4 S .58
 (riable declared in a function hides a global v).25 F .581
 (ariable of the same name: references and assignments refer)-.25 F .183
-(to the local v)108 266.4 R .183(ariable, lea)-.25 F .183
+(to the local v)108 230.4 R .183(ariable, lea)-.25 F .183
 (ving the global v)-.2 F .183(ariable unmodi\214ed.)-.25 F .182
 (When the function returns, the global v)5.183 F(ariable)-.25 E
-(is once ag)108 278.4 Q(ain visible.)-.05 E .726(The shell uses)108
-295.2 R F3 .726(dynamic scoping)3.226 F F0 .726(to control a v)3.226 F
+(is once ag)108 242.4 Q(ain visible.)-.05 E .726(The shell uses)108
+259.2 R F3 .726(dynamic scoping)3.226 F F0 .726(to control a v)3.226 F
 (ariable')-.25 E 3.227(sv)-.55 G .727(isibility within functions.)-3.227
-F -.4(Wi)5.727 G .727(th dynamic scoping,).4 F .008(visible v)108 307.2
+F -.4(Wi)5.727 G .727(th dynamic scoping,).4 F .008(visible v)108 271.2
 R .008(ariables and their v)-.25 F .007
 (alues are a result of the sequence of function calls that caused e)-.25
 F -.15(xe)-.15 G .007(cution to reach).15 F .813(the current function.)
-108 319.2 R .813(The v)5.813 F .813(alue of a v)-.25 F .813
+108 283.2 R .813(The v)5.813 F .813(alue of a v)-.25 F .813
 (ariable that a function sees depends on its v)-.25 F .814
-(alue within its caller)-.25 F 3.314(,i)-.4 G(f)-3.314 E(an)108 331.2 Q
+(alue within its caller)-.25 F 3.314(,i)-.4 G(f)-3.314 E(an)108 295.2 Q
 2.117 -.65(y, w)-.15 H .817
 (hether that caller is the "global" scope or another shell function.).65
 F .816(This is also the v)5.816 F .816(alue that a local)-.25 F -.25(va)
-108 343.2 S(riable declaration "shado).25 E(ws", and the v)-.25 E
-(alue that is restored when the function returns.)-.25 E -.15(Fo)108 360
+108 307.2 S(riable declaration "shado).25 E(ws", and the v)-.25 E
+(alue that is restored when the function returns.)-.25 E -.15(Fo)108 324
 S 2.723(re).15 G .223(xample, if a v)-2.873 F(ariable)-.25 E F3(var)
 2.723 E F0 .223(is declared as local in function)2.723 F F3(func1)2.723
 E F0 2.724(,a)C(nd)-2.724 E F3(func1)2.724 E F0 .224
 (calls another function)2.724 F F3(func2)2.724 E F0(,)A .464
-(references to)108 372 R F3(var)2.964 E F0 .464(made from within)2.964 F
+(references to)108 336 R F3(var)2.964 E F0 .464(made from within)2.964 F
 F3(func2)2.964 E F0 .464(will resolv)2.964 F 2.964(et)-.15 G 2.963(ot)
 -2.964 G .463(he local v)-2.963 F(ariable)-.25 E F3(var)2.963 E F0(from)
 2.963 E F3(func1)2.963 E F0 2.963(,s)C(hado)-2.963 E .463(wing an)-.25 F
-(y)-.15 E(global v)108 384 Q(ariable named)-.25 E F3(var)2.5 E F0(.)A
-(The)108 400.8 Q F2(unset)2.982 E F0 -.2(bu)2.982 G .482
+(y)-.15 E(global v)108 348 Q(ariable named)-.25 E F3(var)2.5 E F0(.)A
+(The)108 364.8 Q F1(unset)2.982 E F0 -.2(bu)2.982 G .482
 (iltin also acts using the same dynamic scope: if a v).2 F .483
-(ariable is local to the current scope,)-.25 F F2(unset)2.983 E F0 .19
-(will unset it; otherwise the unset will refer to the v)108 412.8 R .19
+(ariable is local to the current scope,)-.25 F F1(unset)2.983 E F0 .19
+(will unset it; otherwise the unset will refer to the v)108 376.8 R .19
 (ariable found in an)-.25 F 2.69(yc)-.15 G .19
 (alling scope as described abo)-2.69 F -.15(ve)-.15 G 5.19(.I).15 G(f)
--5.19 E 3.324(av)108 424.8 S .824(ariable at the current local scope is\
+-5.19 E 3.324(av)108 388.8 S .824(ariable at the current local scope is\
  unset, it will remain so \(appearing as unset\) until it is reset in t\
-hat)-3.574 F 1.142(scope or until the function returns.)108 436.8 R
+hat)-3.574 F 1.142(scope or until the function returns.)108 400.8 R
 1.141(Once the function returns, an)6.141 F 3.641(yi)-.15 G 1.141
 (nstance of the v)-3.641 F 1.141(ariable at a pre)-.25 F(vious)-.25 E
-.976(scope will become visible.)108 448.8 R .976
+.976(scope will become visible.)108 412.8 R .976
 (If the unset acts on a v)5.976 F .976(ariable at a pre)-.25 F .977
 (vious scope, an)-.25 F 3.477(yi)-.15 G .977(nstance of a v)-3.477 F
-(ariable)-.25 E .008(with that name that had been shado)108 460.8 R .007
+(ariable)-.25 E .008(with that name that had been shado)108 424.8 R .007
 (wed will become visible \(see belo)-.25 F 2.507(wh)-.25 G .507 -.25
-(ow t)-2.507 H(he).25 E F2(localv)2.507 E(ar_unset)-.1 E F0 .007
-(shell option)2.507 F(changes this beha)108 472.8 Q(vior\).)-.2 E(The)
-108 489.6 Q F2(FUNCNEST)3.528 E F0 -.25(va)3.528 G 1.028
+(ow t)-2.507 H(he).25 E F1(localv)2.507 E(ar_unset)-.1 E F0 .007
+(shell option)2.507 F(changes this beha)108 436.8 Q(vior\).)-.2 E(The)
+108 453.6 Q F1(FUNCNEST)3.528 E F0 -.25(va)3.528 G 1.028
 (riable, if set to a numeric v).25 F 1.028
 (alue greater than 0, de\214nes a maximum function nesting)-.25 F(le)108
-501.6 Q -.15(ve)-.25 G 2.5(l. Function).15 F(in)2.5 E -.2(vo)-.4 G
+465.6 Q -.15(ve)-.25 G 2.5(l. Function).15 F(in)2.5 E -.2(vo)-.4 G
 (cations that e).2 E(xceed the limit cause the entire command to abort.)
--.15 E .044(If the b)108 518.4 R .043(uiltin command)-.2 F F2 -.18(re)
+-.15 E .044(If the b)108 482.4 R .043(uiltin command)-.2 F F1 -.18(re)
 2.543 G(tur).18 E(n)-.15 E F0 .043(is e)2.543 F -.15(xe)-.15 G .043
 (cuted in a function, the function completes and e).15 F -.15(xe)-.15 G
-.043(cution resumes with).15 F 1.011(the ne)108 530.4 R 1.011
+.043(cution resumes with).15 F 1.011(the ne)108 494.4 R 1.011
 (xt command after the function call.)-.15 F(An)6.011 E 3.511(yc)-.15 G
-1.011(ommand associated with the)-3.511 F F2(RETURN)3.512 E F0 1.012
-(trap is e)3.512 F -.15(xe)-.15 G(cuted).15 E .214(before e)108 542.4 R
+1.011(ommand associated with the)-3.511 F F1(RETURN)3.512 E F0 1.012
+(trap is e)3.512 F -.15(xe)-.15 G(cuted).15 E .214(before e)108 506.4 R
 -.15(xe)-.15 G .214(cution resumes.).15 F .213
 (When a function completes, the v)5.214 F .213
 (alues of the positional parameters and the spe-)-.25 F(cial parameter)
-108 554.4 Q F2(#)2.5 E F0(are restored to the v)2.5 E(alues the)-.25 E
+108 518.4 Q F1(#)2.5 E F0(are restored to the v)2.5 E(alues the)-.25 E
 2.5(yh)-.15 G(ad prior to the function')-2.5 E 2.5(se)-.55 G -.15(xe)
 -2.65 G(cution.).15 E 1.358
-(Function names and de\214nitions may be listed with the)108 571.2 R F2
-<ad66>3.858 E F0 1.358(option to the)3.858 F F2(declar)3.858 E(e)-.18 E
-F0(or)3.859 E F2(typeset)3.859 E F0 -.2(bu)3.859 G 1.359(iltin com-).2 F
-3.39(mands. The)108 583.2 R F2<ad46>3.39 E F0 .89(option to)3.39 F F2
-(declar)3.39 E(e)-.18 E F0(or)3.39 E F2(typeset)3.39 E F0 .89
+(Function names and de\214nitions may be listed with the)108 535.2 R F1
+<ad66>3.858 E F0 1.358(option to the)3.858 F F1(declar)3.858 E(e)-.18 E
+F0(or)3.859 E F1(typeset)3.859 E F0 -.2(bu)3.859 G 1.359(iltin com-).2 F
+3.39(mands. The)108 547.2 R F1<ad46>3.39 E F0 .89(option to)3.39 F F1
+(declar)3.39 E(e)-.18 E F0(or)3.39 E F1(typeset)3.39 E F0 .89
 (will list the function names only \(and optionally the source)3.39 F
-.046(\214le and line number)108 595.2 R 2.546(,i)-.4 G 2.546(ft)-2.546 G
-(he)-2.546 E F2(extdeb)2.546 E(ug)-.2 E F0 .046
+.046(\214le and line number)108 559.2 R 2.546(,i)-.4 G 2.546(ft)-2.546 G
+(he)-2.546 E F1(extdeb)2.546 E(ug)-.2 E F0 .046
 (shell option is enabled\).)2.546 F .046(Functions may be e)5.046 F .046
 (xported so that child shell)-.15 F .493
-(processes \(those created when e)108 607.2 R -.15(xe)-.15 G .492
+(processes \(those created when e)108 571.2 R -.15(xe)-.15 G .492
 (cuting a separate shell in).15 F -.2(vo)-.4 G .492
 (cation\) automatically ha).2 F .792 -.15(ve t)-.2 H .492
-(hem de\214ned with).15 F(the)108 619.2 Q F2<ad66>3.2 E F0 .7
-(option to the)3.2 F F2(export)3.2 E F0 -.2(bu)3.2 G 3.2(iltin. A).2 F
-.701(function de\214nition may be deleted using the)3.2 F F2<ad66>3.201
-E F0 .701(option to the)3.201 F F2(unset)3.201 E F0 -.2(bu)108 631.2 S
-(iltin.).2 E .372(Functions may be recursi)108 648 R -.15(ve)-.25 G
-5.371(.T).15 G(he)-5.371 E F2(FUNCNEST)2.871 E F0 -.25(va)2.871 G .371
+(hem de\214ned with).15 F(the)108 583.2 Q F1<ad66>3.2 E F0 .7
+(option to the)3.2 F F1(export)3.2 E F0 -.2(bu)3.2 G 3.2(iltin. A).2 F
+.701(function de\214nition may be deleted using the)3.2 F F1<ad66>3.201
+E F0 .701(option to the)3.201 F F1(unset)3.201 E F0 -.2(bu)108 595.2 S
+(iltin.).2 E .372(Functions may be recursi)108 612 R -.15(ve)-.25 G
+5.371(.T).15 G(he)-5.371 E F1(FUNCNEST)2.871 E F0 -.25(va)2.871 G .371
 (riable may be used to limit the depth of the function call).25 F .322
-(stack and restrict the number of function in)108 660 R -.2(vo)-.4 G
+(stack and restrict the number of function in)108 624 R -.2(vo)-.4 G
 2.822(cations. By).2 F(def)2.822 E .322
-(ault, no limit is imposed on the number of re-)-.1 F(cursi)108 672 Q .3
+(ault, no limit is imposed on the number of re-)-.1 F(cursi)108 636 Q .3
 -.15(ve c)-.25 H(alls.).15 E/F4 10.95/Times-Bold@0 SF(ARITHMETIC EV)72
-688.8 Q(ALU)-1.478 E -1.04(AT)-.657 G(ION)1.04 E F0 1.089
-(The shell allo)108 700.8 R 1.089(ws arithmetic e)-.25 F 1.089
+652.8 Q(ALU)-1.478 E -1.04(AT)-.657 G(ION)1.04 E F0 1.089
+(The shell allo)108 664.8 R 1.089(ws arithmetic e)-.25 F 1.089
 (xpressions to be e)-.15 F -.25(va)-.25 G 1.089
-(luated, under certain circumstances \(see the).25 F F2(let)3.588 E F0
-(and)3.588 E F2(de-)3.588 E(clar)108 712.8 Q(e)-.18 E F0 -.2(bu)3.452 G
-.952(iltin commands, the).2 F F2(\(\()3.452 E F0 .952
-(compound command, and)3.452 F F2 .952(Arithmetic Expansion)3.452 F F0
-3.453(\). Ev)B .953(aluation is done in)-.25 F<8c78>108 724.8 Q 1.058
+(luated, under certain circumstances \(see the).25 F F1(let)3.588 E F0
+(and)3.588 E F1(de-)3.588 E(clar)108 676.8 Q(e)-.18 E F0 -.2(bu)3.452 G
+.952(iltin commands, the).2 F F1(\(\()3.452 E F0 .952
+(compound command, and)3.452 F F1 .952(Arithmetic Expansion)3.452 F F0
+3.453(\). Ev)B .953(aluation is done in)-.25 F<8c78>108 688.8 Q 1.058
 (ed-width inte)-.15 F 1.057(gers with no check for o)-.15 F -.15(ve)-.15
 G(r\215o).15 E 2.357 -.65(w, t)-.25 H 1.057(hough di).65 F 1.057
-(vision by 0 is trapped and \215agged as an error)-.25 F(.)-.55 E
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(34)197.335 E 0 Cg EP
+(vision by 0 is trapped and \215agged as an error)-.25 F(.)-.55 E .828
+(The operators and their precedence, associati)108 700.8 R(vity)-.25 E
+3.329(,a)-.65 G .829(nd v)-3.329 F .829
+(alues are the same as in the C language.)-.25 F .829(The fol-)5.829 F
+(lo)108 712.8 Q .44(wing list of operators is grouped into le)-.25 F
+-.15(ve)-.25 G .439(ls of equal-precedence operators.).15 F .439(The le)
+5.439 F -.15(ve)-.25 G .439(ls are listed in order).15 F
+(of decreasing precedence.)108 724.8 Q(GNU Bash 5.2)72 768 Q
+(2023 May 23)148.175 E(34)197.335 E 0 Cg EP
 %%Page: 35 35
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .828
-(The operators and their precedence, associati)108 84 R(vity)-.25 E
-3.329(,a)-.65 G .829(nd v)-3.329 F .829
-(alues are the same as in the C language.)-.25 F .829(The fol-)5.829 F
-(lo)108 96 Q .44(wing list of operators is grouped into le)-.25 F -.15
-(ve)-.25 G .439(ls of equal-precedence operators.).15 F .439(The le)
-5.439 F -.15(ve)-.25 G .439(ls are listed in order).15 F
-(of decreasing precedence.)108 108 Q/F1 10/Times-Italic@0 SF(id)108
-124.8 Q/F2 10/Times-Bold@0 SF(++)A F1(id)2.5 E F2<adad>A F0 -.25(va)144
-136.8 S(riable post-increment and post-decrement).25 E F2 2.5<ad2b>108
-148.8 S F0(unary minus and plus)144 148.8 Q F2(++)108 160.8 Q F1(id)A F2
-<adad>2.5 E F1(id)A F0 -.25(va)144 172.8 S
-(riable pre-increment and pre-decrement).25 E F2 2.5(!~)108 184.8 S F0
-(logical and bitwise ne)144 184.8 Q -.05(ga)-.15 G(tion).05 E F2(**)108
-196.8 Q F0 -.15(ex)144 196.8 S(ponentiation).15 E F2 2.5(*/%)108 208.8 S
-F0(multiplication, di)144 208.8 Q(vision, remainder)-.25 E F2 2.5<2bad>
-108 220.8 S F0(addition, subtraction)144 220.8 Q F2(<< >>)108 232.8 Q F0
-(left and right bitwise shifts)144 232.8 Q F2(<= >= < >)108 244.8 Q F0
-(comparison)144 256.8 Q F2(== !=)108 268.8 Q F0(equality and inequality)
-144 268.8 Q F2(&)108 280.8 Q F0(bitwise AND)144 280.8 Q F2(^)108 292.8 Q
-F0(bitwise e)144 292.8 Q(xclusi)-.15 E .3 -.15(ve O)-.25 H(R).15 E F2(|)
-108 304.8 Q F0(bitwise OR)144 304.8 Q F2(&&)108 316.8 Q F0(logical AND)
-144 316.8 Q F2(||)108 328.8 Q F0(logical OR)144 328.8 Q F1 -.2(ex)108
-340.8 S(pr).2 E F2(?)A F1 -.2(ex)C(pr).2 E F2(:)A F1 -.2(ex)C(pr).2 E F0
-(conditional operator)144 352.8 Q F2 2.5(=*)108 364.8 S 2.5(=/)-2.5 G
-2.5(=%)-2.5 G 2.5(=+)-2.5 G 2.5<3dad>-2.5 G 2.5(=<)-2.5 G
-(<= >>= &= ^= |=)-2.5 E F0(assignment)144 376.8 Q F1 -.2(ex)108 388.8 S
-(pr1).2 E F2(,)2.5 E F1 -.2(ex)2.5 G(pr2).2 E F0(comma)144 400.8 Q .68
-(Shell v)108 417.6 R .68(ariables are allo)-.25 F .68
-(wed as operands; parameter e)-.25 F .68
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10
+/Times-Italic@0 SF(id)108 84 Q/F2 10/Times-Bold@0 SF(++)A F1(id)2.5 E F2
+<adad>A F0 -.25(va)144 96 S(riable post-increment and post-decrement).25
+E F2 2.5<ad2b>108 108 S F0(unary minus and plus)144 108 Q F2(++)108 120
+Q F1(id)A F2<adad>2.5 E F1(id)A F0 -.25(va)144 132 S
+(riable pre-increment and pre-decrement).25 E F2 2.5(!~)108 144 S F0
+(logical and bitwise ne)144 144 Q -.05(ga)-.15 G(tion).05 E F2(**)108
+156 Q F0 -.15(ex)144 156 S(ponentiation).15 E F2 2.5(*/%)108 168 S F0
+(multiplication, di)144 168 Q(vision, remainder)-.25 E F2 2.5<2bad>108
+180 S F0(addition, subtraction)144 180 Q F2(<< >>)108 192 Q F0
+(left and right bitwise shifts)144 192 Q F2(<= >= < >)108 204 Q F0
+(comparison)144 216 Q F2(== !=)108 228 Q F0(equality and inequality)144
+228 Q F2(&)108 240 Q F0(bitwise AND)144 240 Q F2(^)108 252 Q F0
+(bitwise e)144 252 Q(xclusi)-.15 E .3 -.15(ve O)-.25 H(R).15 E F2(|)108
+264 Q F0(bitwise OR)144 264 Q F2(&&)108 276 Q F0(logical AND)144 276 Q
+F2(||)108 288 Q F0(logical OR)144 288 Q F1 -.2(ex)108 300 S(pr).2 E F2
+(?)A F1 -.2(ex)C(pr).2 E F2(:)A F1 -.2(ex)C(pr).2 E F0
+(conditional operator)144 312 Q F2 2.5(=*)108 324 S 2.5(=/)-2.5 G 2.5
+(=%)-2.5 G 2.5(=+)-2.5 G 2.5<3dad>-2.5 G 2.5(=<)-2.5 G(<= >>= &= ^= |=)
+-2.5 E F0(assignment)144 336 Q F1 -.2(ex)108 348 S(pr1).2 E F2(,)2.5 E
+F1 -.2(ex)2.5 G(pr2).2 E F0(comma)144 360 Q .68(Shell v)108 376.8 R .68
+(ariables are allo)-.25 F .68(wed as operands; parameter e)-.25 F .68
 (xpansion is performed before the e)-.15 F .68(xpression is e)-.15 F
--.25(va)-.25 G(lu-).25 E 3.508(ated. W)108 429.6 R 1.008(ithin an e)-.4
+-.25(va)-.25 G(lu-).25 E 3.508(ated. W)108 388.8 R 1.008(ithin an e)-.4
 F 1.008(xpression, shell v)-.15 F 1.007
 (ariables may also be referenced by name without using the parameter)
--.25 F -.15(ex)108 441.6 S .165(pansion syntax.).15 F 2.665(As)5.165 G
+-.25 F -.15(ex)108 400.8 S .165(pansion syntax.).15 F 2.665(As)5.165 G
 .165(hell v)-2.665 F .165(ariable that is null or unset e)-.25 F -.25
 (va)-.25 G .165(luates to 0 when referenced by name without us-).25 F
-.421(ing the parameter e)108 453.6 R .421(xpansion syntax.)-.15 F .421
+.421(ing the parameter e)108 412.8 R .421(xpansion syntax.)-.15 F .421
 (The v)5.421 F .421(alue of a v)-.25 F .421(ariable is e)-.25 F -.25(va)
 -.25 G .42(luated as an arithmetic e).25 F .42(xpression when)-.15 F
-.153(it is referenced, or when a v)108 465.6 R .154
+.153(it is referenced, or when a v)108 424.8 R .154
 (ariable which has been gi)-.25 F -.15(ve)-.25 G 2.654(nt).15 G(he)
 -2.654 E F1(inte)2.654 E -.1(ge)-.4 G(r).1 E F0(attrib)2.654 E .154
 (ute using)-.2 F F2(declar)2.654 E 2.654<65ad>-.18 G(i)-2.654 E F0 .154
-(is assigned a)2.654 F -.25(va)108 477.6 S 2.857(lue. A).25 F .357
+(is assigned a)2.654 F -.25(va)108 436.8 S 2.857(lue. A).25 F .357
 (null v)2.857 F .357(alue e)-.25 F -.25(va)-.25 G .357(luates to 0.).25
 F 2.857(As)5.357 G .357(hell v)-2.857 F .357(ariable need not ha)-.25 F
 .657 -.15(ve i)-.2 H(ts).15 E F1(inte)2.857 E -.1(ge)-.4 G(r).1 E F0
-(attrib)2.857 E .357(ute turned on to be used)-.2 F(in an e)108 489.6 Q
-(xpression.)-.15 E(Inte)108 506.4 Q .517(ger constants follo)-.15 F
+(attrib)2.857 E .357(ute turned on to be used)-.2 F(in an e)108 448.8 Q
+(xpression.)-.15 E(Inte)108 465.6 Q .517(ger constants follo)-.15 F
 3.017(wt)-.25 G .518(he C language de\214nition, without suf)-3.017 F
 <8c78>-.25 E .518(es or character constants.)-.15 F .518(Constants with)
-5.518 F 3.283(al)108 518.4 S .783
+5.518 F 3.283(al)108 477.6 S .783
 (eading 0 are interpreted as octal numbers.)-3.283 F 3.282(Al)5.783 G
 .782(eading 0x or 0X denotes he)-3.282 F 3.282(xadecimal. Otherwise,)
--.15 F(num-)3.282 E .815(bers tak)108 530.4 R 3.315(et)-.1 G .815
+-.15 F(num-)3.282 E .815(bers tak)108 489.6 R 3.315(et)-.1 G .815
 (he form [)-3.315 F F1(base#)A F0 .815(]n, where the optional)B F1(base)
 3.315 E F0 .816(is a decimal number between 2 and 64 representing)3.315
-F .35(the arithmetic base, and)108 542.4 R F1(n)2.85 E F0 .35
+F .35(the arithmetic base, and)108 501.6 R F1(n)2.85 E F0 .35
 (is a number in that base.)2.85 F(If)5.35 E F1(base#)2.849 E F0 .349
 (is omitted, then base 10 is used.)2.849 F .349(When speci-)5.349 F
-(fying)108 554.4 Q F1(n)2.974 E F0 2.974(,i)C 2.974(fan)-2.974 G .474(o\
+(fying)108 513.6 Q F1(n)2.974 E F0 2.974(,i)C 2.974(fan)-2.974 G .474(o\
 n-digit is required, the digits greater than 9 are represented by the l\
 o)-2.974 F .475(wercase letters, the up-)-.25 F .518
-(percase letters, @, and _, in that order)108 566.4 R 5.518(.I)-.55 G(f)
+(percase letters, @, and _, in that order)108 525.6 R 5.518(.I)-.55 G(f)
 -5.518 E F1(base)3.018 E F0 .518(is less than or equal to 36, lo)3.018 F
 .518(wercase and uppercase letters)-.25 F
 (may be used interchangeably to represent numbers between 10 and 35.)108
-578.4 Q .234(Operators are e)108 595.2 R -.25(va)-.25 G .234
+537.6 Q .234(Operators are e)108 554.4 R -.25(va)-.25 G .234
 (luated in order of precedence.).25 F(Sub-e)5.234 E .234
 (xpressions in parentheses are e)-.15 F -.25(va)-.25 G .235
-(luated \214rst and may).25 F -.15(ove)108 607.2 S
+(luated \214rst and may).25 F -.15(ove)108 566.4 S
 (rride the precedence rules abo).15 E -.15(ve)-.15 G(.).15 E/F3 10.95
-/Times-Bold@0 SF(CONDITION)72 624 Q(AL EXPRESSIONS)-.219 E F0 .256
-(Conditional e)108 636 R .256(xpressions are used by the)-.15 F F2([[)
+/Times-Bold@0 SF(CONDITION)72 583.2 Q(AL EXPRESSIONS)-.219 E F0 .256
+(Conditional e)108 595.2 R .256(xpressions are used by the)-.15 F F2([[)
 2.755 E F0 .255(compound command and the)2.755 F F2(test)2.755 E F0(and)
 2.755 E F2([)2.755 E F0 -.2(bu)2.755 G .255(iltin commands to test).2 F
-.133(\214le attrib)108 648 R .133
+.133(\214le attrib)108 607.2 R .133
 (utes and perform string and arithmetic comparisons.)-.2 F(The)5.133 E
 F2(test)2.633 E F0(and)2.633 E F2([)2.634 E F0 .134
-(commands determine their be-)2.634 F(ha)108 660 Q .198
+(commands determine their be-)2.634 F(ha)108 619.2 Q .198
 (vior based on the number of ar)-.2 F .197
 (guments; see the descriptions of those commands for an)-.18 F 2.697(yo)
--.15 G .197(ther command-)-2.697 F(speci\214c actions.)108 672 Q .234
-(Expressions are formed from the follo)108 688.8 R .234
+-.15 G .197(ther command-)-2.697 F(speci\214c actions.)108 631.2 Q .234
+(Expressions are formed from the follo)108 648 R .234
 (wing unary or binary primaries.)-.25 F F2(Bash)5.234 E F0 .235
 (handles se)2.735 F -.15(ve)-.25 G .235(ral \214lenames spe-).15 F .425
-(cially when the)108 700.8 R 2.925(ya)-.15 G .425(re used in e)-2.925 F
+(cially when the)108 660 R 2.925(ya)-.15 G .425(re used in e)-2.925 F
 2.925(xpressions. If)-.15 F .425(the operating system on which)2.925 F
 F2(bash)2.924 E F0 .424(is running pro)2.924 F .424(vides these)-.15 F
 .344(special \214les, bash will use them; otherwise it will emulate the\
-m internally with this beha)108 712.8 R .345(vior: If an)-.2 F(y)-.15 E
-F1(\214le)2.845 E F0(ar)2.845 E(-)-.2 E 2.081
-(gument to one of the primaries is of the form)108 724.8 R F1(/de)4.581
-E(v/fd/n)-.15 E F0 4.58(,t)C 2.08(hen \214le descriptor)-4.58 F F1(n)
-4.58 E F0 2.08(is check)4.58 F 4.58(ed. If)-.1 F(the)4.58 E F1(\214le)
-4.58 E F0(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(35)197.335 E 0 Cg
-EP
+m internally with this beha)108 672 R .345(vior: If an)-.2 F(y)-.15 E F1
+(\214le)2.845 E F0(ar)2.845 E(-)-.2 E .806
+(gument to one of the primaries is of the form)108 684 R F1(/de)3.306 E
+(v/fd/n)-.15 E F0 3.305(,t)C .805(hen \214le descriptor)-3.305 F F1(n)
+3.305 E F0 .805(is check)3.305 F 3.305(ed. If)-.1 F(the)3.305 E F1
+(\214le)3.305 E F0(ar)3.305 E(gu-)-.18 E .029
+(ment to one of the primaries is one of)108 696 R F1(/de)2.529 E
+(v/stdin)-.15 E F0(,)A F1(/de)2.529 E(v/stdout)-.15 E F0 2.53(,o)C(r)
+-2.53 E F1(/de)2.53 E(v/stderr)-.15 E F0 2.53<2c8c>C .03
+(le descriptor 0, 1, or 2, respec-)-2.53 F(ti)108 708 Q -.15(ve)-.25 G
+(ly).15 E 2.5(,i)-.65 G 2.5(sc)-2.5 G(heck)-2.5 E(ed.)-.1 E .722
+(Unless otherwise speci\214ed, primaries that operate on \214les follo)
+108 724.8 R 3.221(ws)-.25 G .721(ymbolic links and operate on the tar)
+-3.221 F(get)-.18 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(35)
+197.335 E 0 Cg EP
 %%Page: 36 36
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(ar)108 84 Q .039
-(gument to one of the primaries is one of)-.18 F/F1 10/Times-Italic@0 SF
-(/de)2.539 E(v/stdin)-.15 E F0(,)A F1(/de)2.539 E(v/stdout)-.15 E F0
-2.539(,o)C(r)-2.539 E F1(/de)2.539 E(v/stderr)-.15 E F0 2.539<2c8c>C
-.039(le descriptor 0, 1, or 2, re-)-2.539 F(specti)108 96 Q -.15(ve)-.25
-G(ly).15 E 2.5(,i)-.65 G 2.5(sc)-2.5 G(heck)-2.5 E(ed.)-.1 E .722
-(Unless otherwise speci\214ed, primaries that operate on \214les follo)
-108 112.8 R 3.221(ws)-.25 G .721(ymbolic links and operate on the tar)
--3.221 F(get)-.18 E(of the link, rather than the link itself.)108 124.8
-Q 1.095(When used with)108 142.8 R/F2 10/Times-Bold@0 SF([[)3.595 E F0
-3.595(,t)C(he)-3.595 E F2(<)3.595 E F0(and)3.595 E F2(>)3.595 E F0 1.095
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E
+(of the link, rather than the link itself.)108 84 Q 1.095
+(When used with)108 102 R/F1 10/Times-Bold@0 SF([[)3.595 E F0 3.595(,t)C
+(he)-3.595 E F1(<)3.595 E F0(and)3.595 E F1(>)3.595 E F0 1.095
 (operators sort le)3.595 F 1.095
-(xicographically using the current locale.)-.15 F(The)6.096 E F2(test)
-3.596 E F0(com-)3.596 E(mand sorts using ASCII ordering.)108 154.8 Q F2
-<ad61>108 178.8 Q F1(\214le)2.5 E F0 -.35(Tr)144 178.8 S(ue if).35 E F1
-(\214le)2.5 E F0 -.15(ex)2.5 G(ists.).15 E F2<ad62>108 190.8 Q F1
-(\214le)2.5 E F0 -.35(Tr)144 190.8 S(ue if).35 E F1(\214le)2.5 E F0 -.15
-(ex)2.5 G(ists and is a block special \214le.).15 E F2<ad63>108 202.8 Q
-F1(\214le)2.5 E F0 -.35(Tr)144 202.8 S(ue if).35 E F1(\214le)2.5 E F0
--.15(ex)2.5 G(ists and is a character special \214le.).15 E F2<ad64>108
-214.8 Q F1(\214le)2.5 E F0 -.35(Tr)144 214.8 S(ue if).35 E F1(\214le)2.5
-E F0 -.15(ex)2.5 G(ists and is a directory).15 E(.)-.65 E F2<ad65>108
-226.8 Q F1(\214le)2.5 E F0 -.35(Tr)144 226.8 S(ue if).35 E F1(\214le)2.5
-E F0 -.15(ex)2.5 G(ists.).15 E F2<ad66>108 238.8 Q F1(\214le)2.5 E F0
--.35(Tr)144 238.8 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G
-(ists and is a re).15 E(gular \214le.)-.15 E F2<ad67>108 250.8 Q F1
-(\214le)2.5 E F0 -.35(Tr)144 250.8 S(ue if).35 E F1(\214le)2.5 E F0 -.15
-(ex)2.5 G(ists and is set-group-id.).15 E F2<ad68>108 262.8 Q F1(\214le)
-2.5 E F0 -.35(Tr)144 262.8 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5
-G(ists and is a symbolic link.).15 E F2<ad6b>108 274.8 Q F1(\214le)2.5 E
-F0 -.35(Tr)144 274.8 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G
+(xicographically using the current locale.)-.15 F(The)6.096 E F1(test)
+3.596 E F0(com-)3.596 E(mand sorts using ASCII ordering.)108 114 Q F1
+<ad61>108 138 Q/F2 10/Times-Italic@0 SF(\214le)2.5 E F0 -.35(Tr)144 138
+S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G(ists.).15 E F1<ad62>108
+150 Q F2(\214le)2.5 E F0 -.35(Tr)144 150 S(ue if).35 E F2(\214le)2.5 E
+F0 -.15(ex)2.5 G(ists and is a block special \214le.).15 E F1<ad63>108
+162 Q F2(\214le)2.5 E F0 -.35(Tr)144 162 S(ue if).35 E F2(\214le)2.5 E
+F0 -.15(ex)2.5 G(ists and is a character special \214le.).15 E F1<ad64>
+108 174 Q F2(\214le)2.5 E F0 -.35(Tr)144 174 S(ue if).35 E F2(\214le)2.5
+E F0 -.15(ex)2.5 G(ists and is a directory).15 E(.)-.65 E F1<ad65>108
+186 Q F2(\214le)2.5 E F0 -.35(Tr)144 186 S(ue if).35 E F2(\214le)2.5 E
+F0 -.15(ex)2.5 G(ists.).15 E F1<ad66>108 198 Q F2(\214le)2.5 E F0 -.35
+(Tr)144 198 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G
+(ists and is a re).15 E(gular \214le.)-.15 E F1<ad67>108 210 Q F2
+(\214le)2.5 E F0 -.35(Tr)144 210 S(ue if).35 E F2(\214le)2.5 E F0 -.15
+(ex)2.5 G(ists and is set-group-id.).15 E F1<ad68>108 222 Q F2(\214le)
+2.5 E F0 -.35(Tr)144 222 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G
+(ists and is a symbolic link.).15 E F1<ad6b>108 234 Q F2(\214le)2.5 E F0
+-.35(Tr)144 234 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G
 (ists and its `).15 E(`stick)-.74 E(y')-.15 E 2.5('b)-.74 G(it is set.)
--2.5 E F2<ad70>108 286.8 Q F1(\214le)2.5 E F0 -.35(Tr)144 286.8 S(ue if)
-.35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G
-(ists and is a named pipe \(FIFO\).).15 E F2<ad72>108 298.8 Q F1(\214le)
-2.5 E F0 -.35(Tr)144 298.8 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5
-G(ists and is readable.).15 E F2<ad73>108 310.8 Q F1(\214le)2.5 E F0
--.35(Tr)144 310.8 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G
-(ists and has a size greater than zero.).15 E F2<ad74>108 322.8 Q F1(fd)
-2.5 E F0 -.35(Tr)144 322.8 S(ue if \214le descriptor).35 E F1(fd)4.47 E
-F0(is open and refers to a terminal.)3.27 E F2<ad75>108 334.8 Q F1
-(\214le)2.5 E F0 -.35(Tr)144 334.8 S(ue if).35 E F1(\214le)2.5 E F0 -.15
-(ex)2.5 G(ists and its set-user).15 E(-id bit is set.)-.2 E F2<ad77>108
-346.8 Q F1(\214le)2.5 E F0 -.35(Tr)144 346.8 S(ue if).35 E F1(\214le)2.5
-E F0 -.15(ex)2.5 G(ists and is writable.).15 E F2<ad78>108 358.8 Q F1
-(\214le)2.5 E F0 -.35(Tr)144 358.8 S(ue if).35 E F1(\214le)2.5 E F0 -.15
-(ex)2.5 G(ists and is e).15 E -.15(xe)-.15 G(cutable.).15 E F2<ad47>108
-370.8 Q F1(\214le)2.5 E F0 -.35(Tr)144 370.8 S(ue if).35 E F1(\214le)2.5
-E F0 -.15(ex)2.5 G(ists and is o).15 E(wned by the ef)-.25 E(fecti)-.25
-E .3 -.15(ve g)-.25 H(roup id.).15 E F2<ad4c>108 382.8 Q F1(\214le)2.5 E
-F0 -.35(Tr)144 382.8 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G
-(ists and is a symbolic link.).15 E F2<ad4e>108 394.8 Q F1(\214le)2.5 E
-F0 -.35(Tr)144 394.8 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G
-(ists and has been modi\214ed since it w).15 E(as last read.)-.1 E F2
-<ad4f>108 406.8 Q F1(\214le)2.5 E F0 -.35(Tr)144 406.8 S(ue if).35 E F1
+-2.5 E F1<ad70>108 246 Q F2(\214le)2.5 E F0 -.35(Tr)144 246 S(ue if).35
+E F2(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is a named pipe \(FIFO\).)
+.15 E F1<ad72>108 258 Q F2(\214le)2.5 E F0 -.35(Tr)144 258 S(ue if).35 E
+F2(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is readable.).15 E F1<ad73>108
+270 Q F2(\214le)2.5 E F0 -.35(Tr)144 270 S(ue if).35 E F2(\214le)2.5 E
+F0 -.15(ex)2.5 G(ists and has a size greater than zero.).15 E F1<ad74>
+108 282 Q F2(fd)2.5 E F0 -.35(Tr)144 282 S(ue if \214le descriptor).35 E
+F2(fd)4.47 E F0(is open and refers to a terminal.)3.27 E F1<ad75>108 294
+Q F2(\214le)2.5 E F0 -.35(Tr)144 294 S(ue if).35 E F2(\214le)2.5 E F0
+-.15(ex)2.5 G(ists and its set-user).15 E(-id bit is set.)-.2 E F1<ad77>
+108 306 Q F2(\214le)2.5 E F0 -.35(Tr)144 306 S(ue if).35 E F2(\214le)2.5
+E F0 -.15(ex)2.5 G(ists and is writable.).15 E F1<ad78>108 318 Q F2
+(\214le)2.5 E F0 -.35(Tr)144 318 S(ue if).35 E F2(\214le)2.5 E F0 -.15
+(ex)2.5 G(ists and is e).15 E -.15(xe)-.15 G(cutable.).15 E F1<ad47>108
+330 Q F2(\214le)2.5 E F0 -.35(Tr)144 330 S(ue if).35 E F2(\214le)2.5 E
+F0 -.15(ex)2.5 G(ists and is o).15 E(wned by the ef)-.25 E(fecti)-.25 E
+.3 -.15(ve g)-.25 H(roup id.).15 E F1<ad4c>108 342 Q F2(\214le)2.5 E F0
+-.35(Tr)144 342 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G
+(ists and is a symbolic link.).15 E F1<ad4e>108 354 Q F2(\214le)2.5 E F0
+-.35(Tr)144 354 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G
+(ists and has been modi\214ed since it w).15 E(as last read.)-.1 E F1
+<ad4f>108 366 Q F2(\214le)2.5 E F0 -.35(Tr)144 366 S(ue if).35 E F2
 (\214le)2.5 E F0 -.15(ex)2.5 G(ists and is o).15 E(wned by the ef)-.25 E
-(fecti)-.25 E .3 -.15(ve u)-.25 H(ser id.).15 E F2<ad53>108 418.8 Q F1
-(\214le)2.5 E F0 -.35(Tr)144 418.8 S(ue if).35 E F1(\214le)2.5 E F0 -.15
-(ex)2.5 G(ists and is a sock).15 E(et.)-.1 E F1(\214le1)108 430.8 Q F2
-(\255ef)2.5 E F1(\214le2)2.5 E F0 -.35(Tr)144 442.8 S(ue if).35 E F1
-(\214le1)2.5 E F0(and)2.5 E F1(\214le2)2.5 E F0(refer to the same de)2.5
-E(vice and inode numbers.)-.25 E F1(\214le1)108 454.8 Q F0<ad>2.5 E F2
-(nt)A F1(\214le2)2.5 E F0 -.35(Tr)144 466.8 S(ue if).35 E F1(\214le1)2.5
-E F0(is ne)2.5 E(wer \(according to modi\214cation date\) than)-.25 E F1
-(\214le2)2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G(f)-2.5 E F1(\214le1)2.5 E F0
--.15(ex)2.5 G(ists and).15 E F1(\214le2)2.5 E F0(does not.)2.5 E F1
-(\214le1)108 478.8 Q F0<ad>2.5 E F2(ot)A F1(\214le2)2.5 E F0 -.35(Tr)144
-490.8 S(ue if).35 E F1(\214le1)2.5 E F0(is older than)2.5 E F1(\214le2)
-2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G(f)-2.5 E F1(\214le2)2.5 E F0 -.15(ex)2.5
-G(ists and).15 E F1(\214le1)2.5 E F0(does not.)2.5 E F2<ad6f>108 502.8 Q
-F1(optname)2.5 E F0 -.35(Tr)144 514.8 S .263(ue if the shell option).35
-F F1(optname)2.992 E F0 .262(is enabled.)2.942 F .262
-(See the list of options under the description of the)5.262 F F2<ad6f>
-2.762 E F0(option to the)144 526.8 Q F2(set)2.5 E F0 -.2(bu)2.5 G
-(iltin belo).2 E -.65(w.)-.25 G F2<ad76>108 538.8 Q F1(varname)2.5 E F0
--.35(Tr)144 550.8 S(ue if the shell v).35 E(ariable)-.25 E F1(varname)
-2.79 E F0(is set \(has been assigned a v)2.68 E(alue\).)-.25 E F2<ad52>
-108 562.8 Q F1(varname)2.5 E F0 -.35(Tr)144 574.8 S(ue if the shell v)
-.35 E(ariable)-.25 E F1(varname)2.79 E F0
-(is set and is a name reference.)2.68 E F2<ad7a>108 586.8 Q F1(string)
-2.5 E F0 -.35(Tr)144 598.8 S(ue if the length of).35 E F1(string)2.5 E
-F0(is zero.)2.5 E F1(string)108 610.8 Q F2<ad6e>108 622.8 Q F1(string)
-2.5 E F0 -.35(Tr)144 634.8 S(ue if the length of).35 E F1(string)2.84 E
-F0(is non-zero.)2.72 E F1(string1)108 651.6 Q F2(==)2.5 E F1(string2)2.5
-E(string1)108 663.6 Q F2(=)2.5 E F1(string2)2.5 E F0 -.35(Tr)144 675.6 S
-.861(ue if the strings are equal.).35 F F2(=)5.861 E F0 .861
-(should be used with the)3.361 F F2(test)3.361 E F0 .862
+(fecti)-.25 E .3 -.15(ve u)-.25 H(ser id.).15 E F1<ad53>108 378 Q F2
+(\214le)2.5 E F0 -.35(Tr)144 378 S(ue if).35 E F2(\214le)2.5 E F0 -.15
+(ex)2.5 G(ists and is a sock).15 E(et.)-.1 E F2(\214le1)108 390 Q F1
+(\255ef)2.5 E F2(\214le2)2.5 E F0 -.35(Tr)144 402 S(ue if).35 E F2
+(\214le1)2.5 E F0(and)2.5 E F2(\214le2)2.5 E F0(refer to the same de)2.5
+E(vice and inode numbers.)-.25 E F2(\214le1)108 414 Q F0<ad>2.5 E F1(nt)
+A F2(\214le2)2.5 E F0 -.35(Tr)144 426 S(ue if).35 E F2(\214le1)2.5 E F0
+(is ne)2.5 E(wer \(according to modi\214cation date\) than)-.25 E F2
+(\214le2)2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G(f)-2.5 E F2(\214le1)2.5 E F0
+-.15(ex)2.5 G(ists and).15 E F2(\214le2)2.5 E F0(does not.)2.5 E F2
+(\214le1)108 438 Q F0<ad>2.5 E F1(ot)A F2(\214le2)2.5 E F0 -.35(Tr)144
+450 S(ue if).35 E F2(\214le1)2.5 E F0(is older than)2.5 E F2(\214le2)2.5
+E F0 2.5(,o)C 2.5(ri)-2.5 G(f)-2.5 E F2(\214le2)2.5 E F0 -.15(ex)2.5 G
+(ists and).15 E F2(\214le1)2.5 E F0(does not.)2.5 E F1<ad6f>108 462 Q F2
+(optname)2.5 E F0 -.35(Tr)144 474 S .263(ue if the shell option).35 F F2
+(optname)2.992 E F0 .262(is enabled.)2.942 F .262
+(See the list of options under the description of the)5.262 F F1<ad6f>
+2.762 E F0(option to the)144 486 Q F1(set)2.5 E F0 -.2(bu)2.5 G
+(iltin belo).2 E -.65(w.)-.25 G F1<ad76>108 498 Q F2(varname)2.5 E F0
+-.35(Tr)144 510 S(ue if the shell v).35 E(ariable)-.25 E F2(varname)2.79
+E F0(is set \(has been assigned a v)2.68 E(alue\).)-.25 E F1<ad52>108
+522 Q F2(varname)2.5 E F0 -.35(Tr)144 534 S(ue if the shell v).35 E
+(ariable)-.25 E F2(varname)2.79 E F0(is set and is a name reference.)
+2.68 E F1<ad7a>108 546 Q F2(string)2.5 E F0 -.35(Tr)144 558 S
+(ue if the length of).35 E F2(string)2.5 E F0(is zero.)2.5 E F2(string)
+108 570 Q F1<ad6e>108 582 Q F2(string)2.5 E F0 -.35(Tr)144 594 S
+(ue if the length of).35 E F2(string)2.84 E F0(is non-zero.)2.72 E F2
+(string1)108 610.8 Q F1(==)2.5 E F2(string2)2.5 E(string1)108 622.8 Q F1
+(=)2.5 E F2(string2)2.5 E F0 -.35(Tr)144 634.8 S .861
+(ue if the strings are equal.).35 F F1(=)5.861 E F0 .861
+(should be used with the)3.361 F F1(test)3.361 E F0 .862
 (command for POSIX conformance.)3.362 F .447(When used with the)144
-687.6 R F2([[)2.946 E F0 .446
+646.8 R F1([[)2.946 E F0 .446
 (command, this performs pattern matching as described abo)2.946 F .746
--.15(ve \()-.15 H F2(Compound).15 E(Commands)144 699.6 Q F0(\).)A
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(36)197.335 E 0 Cg EP
+-.15(ve \()-.15 H F1(Compound).15 E(Commands)144 658.8 Q F0(\).)A F2
+(string1)108 675.6 Q F1(!=)2.5 E F2(string2)2.5 E F0 -.35(Tr)144 687.6 S
+(ue if the strings are not equal.).35 E F2(string1)108 704.4 Q F1(<)2.5
+E F2(string2)2.5 E F0 -.35(Tr)144 716.4 S(ue if).35 E F2(string1)2.5 E
+F0(sorts before)2.5 E F2(string2)2.5 E F0(le)2.5 E(xicographically)-.15
+E(.)-.65 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(36)197.335 E 0 Cg
+EP
 %%Page: 37 37
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
 (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10
-/Times-Italic@0 SF(string1)108 84 Q/F2 10/Times-Bold@0 SF(!=)2.5 E F1
-(string2)2.5 E F0 -.35(Tr)144 96 S(ue if the strings are not equal.).35
-E F1(string1)108 112.8 Q F2(<)2.5 E F1(string2)2.5 E F0 -.35(Tr)144
-124.8 S(ue if).35 E F1(string1)2.5 E F0(sorts before)2.5 E F1(string2)
-2.5 E F0(le)2.5 E(xicographically)-.15 E(.)-.65 E F1(string1)108 141.6 Q
-F2(>)2.5 E F1(string2)2.5 E F0 -.35(Tr)144 153.6 S(ue if).35 E F1
-(string1)2.5 E F0(sorts after)2.5 E F1(string2)2.5 E F0(le)2.5 E
-(xicographically)-.15 E(.)-.65 E F1(ar)108.33 170.4 Q(g1)-.37 E F2(OP)
-2.5 E F1(ar)2.5 E(g2)-.37 E/F3 9/Times-Bold@0 SF(OP)144 182.4 Q F0 .385
-(is one of)2.634 F F2(\255eq)2.885 E F0(,)A F2(\255ne)2.885 E F0(,)A F2
-(\255lt)2.885 E F0(,)A F2(\255le)2.885 E F0(,)A F2(\255gt)2.885 E F0
-2.885(,o)C(r)-2.885 E F2(\255ge)2.885 E F0 5.385(.T)C .385
+/Times-Italic@0 SF(string1)108 84 Q/F2 10/Times-Bold@0 SF(>)2.5 E F1
+(string2)2.5 E F0 -.35(Tr)144 96 S(ue if).35 E F1(string1)2.5 E F0
+(sorts after)2.5 E F1(string2)2.5 E F0(le)2.5 E(xicographically)-.15 E
+(.)-.65 E F1(ar)108.33 112.8 Q(g1)-.37 E F2(OP)2.5 E F1(ar)2.5 E(g2)-.37
+E/F3 9/Times-Bold@0 SF(OP)144 124.8 Q F0 .385(is one of)2.634 F F2
+(\255eq)2.885 E F0(,)A F2(\255ne)2.885 E F0(,)A F2(\255lt)2.885 E F0(,)A
+F2(\255le)2.885 E F0(,)A F2(\255gt)2.885 E F0 2.885(,o)C(r)-2.885 E F2
+(\255ge)2.885 E F0 5.385(.T)C .385
 (hese arithmetic binary operators return true if)-5.385 F F1(ar)2.885 E
 (g1)-.37 E F0 .845(is equal to, not equal to, less than, less than or e\
-qual to, greater than, or greater than or equal to)144 194.4 R F1(ar)144
-206.4 Q(g2)-.37 E F0 3.589(,r)C(especti)-3.589 E -.15(ve)-.25 G(ly).15 E
+qual to, greater than, or greater than or equal to)144 136.8 R F1(ar)144
+148.8 Q(g2)-.37 E F0 3.589(,r)C(especti)-3.589 E -.15(ve)-.25 G(ly).15 E
 (.)-.65 E F1(Ar)7.099 E(g1)-.37 E F0(and)3.589 E F1(ar)3.919 E(g2)-.37 E
 F0 1.089(may be positi)3.609 F 1.389 -.15(ve o)-.25 H 3.589(rn).15 G
 -2.25 -.15(eg a)-3.589 H(ti).15 E 1.389 -.15(ve i)-.25 H(nte).15 E 3.59
 (gers. When)-.15 F 1.09(used with the)3.59 F F2([[)3.59 E F0(command,)
-144 218.4 Q F1(Ar)4.447 E(g1)-.37 E F0(and)3.437 E F1(Ar)4.447 E(g2)-.37
+144 160.8 Q F1(Ar)4.447 E(g1)-.37 E F0(and)3.437 E F1(Ar)4.447 E(g2)-.37
 E F0 .937(are e)3.457 F -.25(va)-.25 G .937(luated as arithmetic e).25 F
 .937(xpressions \(see)-.15 F F3 .937(ARITHMETIC EV)3.437 F(ALU)-1.215 E
-(A-)-.54 E(TION)144 230.4 Q F0(abo)2.25 E -.15(ve)-.15 G(\).).15 E/F4
-10.95/Times-Bold@0 SF(SIMPLE COMMAND EXP)72 247.2 Q(ANSION)-.81 E F0
-.613(When a simple command is e)108 259.2 R -.15(xe)-.15 G .614
+(A-)-.54 E(TION)144 172.8 Q F0(abo)2.25 E -.15(ve)-.15 G(\).).15 E/F4
+10.95/Times-Bold@0 SF(SIMPLE COMMAND EXP)72 189.6 Q(ANSION)-.81 E F0
+.613(When a simple command is e)108 201.6 R -.15(xe)-.15 G .614
 (cuted, the shell performs the follo).15 F .614(wing e)-.25 F .614
 (xpansions, assignments, and redi-)-.15 F
-(rections, from left to right, in the follo)108 271.2 Q(wing order)-.25
-E(.)-.55 E(1.)108 288 Q 1.849(The w)144 288 R 1.849
+(rections, from left to right, in the follo)108 213.6 Q(wing order)-.25
+E(.)-.55 E(1.)108 230.4 Q 1.849(The w)144 230.4 R 1.849
 (ords that the parser has mark)-.1 F 1.848(ed as v)-.1 F 1.848
 (ariable assignments \(those preceding the command)-.25 F
-(name\) and redirections are sa)144 300 Q -.15(ve)-.2 G 2.5(df).15 G
-(or later processing.)-2.5 E(2.)108 316.8 Q .179(The w)144 316.8 R .179
+(name\) and redirections are sa)144 242.4 Q -.15(ve)-.2 G 2.5(df).15 G
+(or later processing.)-2.5 E(2.)108 259.2 Q .179(The w)144 259.2 R .179
 (ords that are not v)-.1 F .179
 (ariable assignments or redirections are e)-.25 F 2.68(xpanded. If)-.15
 F(an)2.68 E 2.68(yw)-.15 G .18(ords remain af-)-2.78 F .347(ter e)144
-328.8 R .347(xpansion, the \214rst w)-.15 F .347(ord is tak)-.1 F .347
+271.2 R .347(xpansion, the \214rst w)-.15 F .347(ord is tak)-.1 F .347
 (en to be the name of the command and the remaining w)-.1 F .346
-(ords are)-.1 F(the ar)144 340.8 Q(guments.)-.18 E(3.)108 357.6 Q
-(Redirections are performed as described abo)144 357.6 Q .3 -.15(ve u)
--.15 H(nder).15 E F3(REDIRECTION)2.5 E/F5 9/Times-Roman@0 SF(.)A F0(4.)
-108 374.4 Q .716(The te)144 374.4 R .717(xt after the)-.15 F F2(=)3.217
-E F0 .717(in each v)3.217 F .717(ariable assignment under)-.25 F .717
+(ords are)-.1 F(the ar)144 283.2 Q(guments.)-.18 E(3.)108 300 Q
+(Redirections are performed as described abo)144 300 Q .3 -.15(ve u)-.15
+H(nder).15 E F3(REDIRECTION)2.5 E/F5 9/Times-Roman@0 SF(.)A F0(4.)108
+316.8 Q .716(The te)144 316.8 R .717(xt after the)-.15 F F2(=)3.217 E F0
+.717(in each v)3.217 F .717(ariable assignment under)-.25 F .717
 (goes tilde e)-.18 F .717(xpansion, parameter e)-.15 F(xpansion,)-.15 E
-.34(command substitution, arithmetic e)144 386.4 R .339
+.34(command substitution, arithmetic e)144 328.8 R .339
 (xpansion, and quote remo)-.15 F -.25(va)-.15 G 2.839(lb).25 G .339
-(efore being assigned to the v)-2.839 F(ari-)-.25 E(able.)144 398.4 Q
-.586(If no command name results, the v)108 415.2 R .586
+(efore being assigned to the v)-2.839 F(ari-)-.25 E(able.)144 340.8 Q
+.586(If no command name results, the v)108 357.6 R .586
 (ariable assignments af)-.25 F .586(fect the current shell en)-.25 F
 3.087(vironment. In)-.4 F .587(the case of)3.087 F .371(such a command \
 \(one that consists only of assignment statements and redirections\), a\
-ssignment statements)108 427.2 R .835
-(are performed before redirections.)108 439.2 R .835(Otherwise, the v)
+ssignment statements)108 369.6 R .835
+(are performed before redirections.)108 381.6 R .835(Otherwise, the v)
 5.835 F .835(ariables are added to the en)-.25 F .835
 (vironment of the e)-.4 F -.15(xe)-.15 G(cuted).15 E .839
-(command and do not af)108 451.2 R .838(fect the current shell en)-.25 F
+(command and do not af)108 393.6 R .838(fect the current shell en)-.25 F
 3.338(vironment. If)-.4 F(an)3.338 E 3.338(yo)-.15 G 3.338(ft)-3.338 G
-.838(he assignments attempts to assign a)-3.338 F -.25(va)108 463.2 S
+.838(he assignments attempts to assign a)-3.338 F -.25(va)108 405.6 S
 (lue to a readonly v).25 E(ariable, an error occurs, and the command e)
 -.25 E(xits with a non-zero status.)-.15 E .149
-(If no command name results, redirections are performed, b)108 480 R
+(If no command name results, redirections are performed, b)108 422.4 R
 .149(ut do not af)-.2 F .15(fect the current shell en)-.25 F 2.65
-(vironment. A)-.4 F(redirection error causes the command to e)108 492 Q
-(xit with a non-zero status.)-.15 E 1.064
-(If there is a command name left after e)108 508.8 R 1.064(xpansion, e)
+(vironment. A)-.4 F(redirection error causes the command to e)108 434.4
+Q(xit with a non-zero status.)-.15 E 1.064
+(If there is a command name left after e)108 451.2 R 1.064(xpansion, e)
 -.15 F -.15(xe)-.15 G 1.064(cution proceeds as described belo).15 F
 4.864 -.65(w. O)-.25 H 1.064(therwise, the).65 F .068(command e)108
-520.8 R 2.568(xits. If)-.15 F .069(one of the e)2.568 F .069
+463.2 R 2.568(xits. If)-.15 F .069(one of the e)2.568 F .069
 (xpansions contained a command substitution, the e)-.15 F .069
-(xit status of the command)-.15 F .467(is the e)108 532.8 R .466
+(xit status of the command)-.15 F .467(is the e)108 475.2 R .466
 (xit status of the last command substitution performed.)-.15 F .466
-(If there were no command substitutions, the)5.466 F(command e)108 544.8
-Q(xits with a status of zero.)-.15 E F4(COMMAND EXECUTION)72 561.6 Q F0
-.546(After a command has been split into w)108 573.6 R .547
+(If there were no command substitutions, the)5.466 F(command e)108 487.2
+Q(xits with a status of zero.)-.15 E F4(COMMAND EXECUTION)72 504 Q F0
+.546(After a command has been split into w)108 516 R .547
 (ords, if it results in a simple command and an optional list of ar)-.1
-F(gu-)-.18 E(ments, the shell performs the follo)108 585.6 Q
+F(gu-)-.18 E(ments, the shell performs the follo)108 528 Q
 (wing actions.)-.25 E .379(If the command name contains no slashes, the\
- shell attempts to locate it.)108 602.4 R .379(If there e)5.379 F .379
+ shell attempts to locate it.)108 544.8 R .379(If there e)5.379 F .379
 (xists a shell function by)-.15 F .246(that name, that function is in)
-108 614.4 R -.2(vo)-.4 G -.1(ke).2 G 2.746(da).1 G 2.746(sd)-2.746 G
+108 556.8 R -.2(vo)-.4 G -.1(ke).2 G 2.746(da).1 G 2.746(sd)-2.746 G
 .246(escribed abo)-2.746 F .546 -.15(ve i)-.15 H(n).15 E F3(FUNCTIONS)
 2.746 E F5(.)A F0 .246(If the name does not match a func-)4.746 F
-(tion, the shell searches for it in the list of shell b)108 626.4 Q 2.5
+(tion, the shell searches for it in the list of shell b)108 568.8 Q 2.5
 (uiltins. If)-.2 F 2.5(am)2.5 G(atch is found, that b)-2.5 E
 (uiltin is in)-.2 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E .31
-(If the name is neither a shell function nor a b)108 643.2 R .309
+(If the name is neither a shell function nor a b)108 585.6 R .309
 (uiltin, and contains no slashes,)-.2 F F2(bash)2.809 E F0 .309
-(searches each element of)2.809 F(the)108 655.2 Q F3 -.666(PA)3.162 G
+(searches each element of)2.809 F(the)108 597.6 Q F3 -.666(PA)3.162 G
 (TH)-.189 E F0 .662(for a directory containing an e)2.912 F -.15(xe)-.15
 G .662(cutable \214le by that name.).15 F F2(Bash)5.662 E F0 .663
 (uses a hash table to remember)3.162 F 1.915(the full pathnames of e)108
-667.2 R -.15(xe)-.15 G 1.915(cutable \214les \(see).15 F F2(hash)4.415 E
+609.6 R -.15(xe)-.15 G 1.915(cutable \214les \(see).15 F F2(hash)4.415 E
 F0(under)4.415 E F3 1.915(SHELL B)4.415 F(UIL)-.09 E 1.914(TIN COMMANDS)
 -.828 F F0(belo)4.164 E 4.414(w\). A)-.25 F(full)4.414 E .719
-(search of the directories in)108 679.2 R F3 -.666(PA)3.219 G(TH)-.189 E
+(search of the directories in)108 621.6 R F3 -.666(PA)3.219 G(TH)-.189 E
 F0 .72(is performed only if the command is not found in the hash table.)
 2.969 F .72(If the)5.72 F .956(search is unsuccessful, the shell search\
-es for a de\214ned shell function named)108 691.2 R F2(command_not_f)
-3.455 E(ound_han-)-.25 E(dle)108 703.2 Q F0 6.005(.I)C 3.505(ft)-6.005 G
+es for a de\214ned shell function named)108 633.6 R F2(command_not_f)
+3.455 E(ound_han-)-.25 E(dle)108 645.6 Q F0 6.005(.I)C 3.505(ft)-6.005 G
 1.005(hat function e)-3.505 F 1.005(xists, it is in)-.15 F -.2(vo)-.4 G
 -.1(ke).2 G 3.506(di).1 G 3.506(nas)-3.506 G 1.006(eparate e)-3.506 F
 -.15(xe)-.15 G 1.006(cution en).15 F 1.006
 (vironment with the original command)-.4 F .256
-(and the original command')108 715.2 R 2.756(sa)-.55 G -.18(rg)-2.756 G
+(and the original command')108 657.6 R 2.756(sa)-.55 G -.18(rg)-2.756 G
 .256(uments as its ar).18 F .256(guments, and the function')-.18 F 2.755
 (se)-.55 G .255(xit status becomes the e)-2.905 F .255(xit sta-)-.15 F
-1.168(tus of that subshell.)108 727.2 R 1.169(If that function is not d\
-e\214ned, the shell prints an error message and returns an e)6.168 F
-(xit)-.15 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(37)197.335 E 0
-Cg EP
+.263(tus of that subshell.)108 669.6 R .263(If that function is not de\
+\214ned, the shell prints an error message and returns an e)5.263 F .263
+(xit sta-)-.15 F(tus of 127.)108 681.6 Q 1.089(If the search is success\
+ful, or if the command name contains one or more slashes, the shell e)
+108 698.4 R -.15(xe)-.15 G 1.089(cutes the).15 F .197
+(named program in a separate e)108 710.4 R -.15(xe)-.15 G .197
+(cution en).15 F 2.698(vironment. Ar)-.4 F .198
+(gument 0 is set to the name gi)-.18 F -.15(ve)-.25 G .198
+(n, and the remain-).15 F(ing ar)108 722.4 Q
+(guments to the command are set to the ar)-.18 E(guments gi)-.18 E -.15
+(ve)-.25 G(n, if an).15 E -.65(y.)-.15 G(GNU Bash 5.2)72 768 Q
+(2023 May 23)148.175 E(37)197.335 E 0 Cg EP
 %%Page: 38 38
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(status of 127.)108
-84 Q 1.089(If the search is successful, or if the command name contains\
- one or more slashes, the shell e)108 100.8 R -.15(xe)-.15 G 1.089
-(cutes the).15 F .197(named program in a separate e)108 112.8 R -.15(xe)
--.15 G .197(cution en).15 F 2.698(vironment. Ar)-.4 F .198
-(gument 0 is set to the name gi)-.18 F -.15(ve)-.25 G .198
-(n, and the remain-).15 F(ing ar)108 124.8 Q
-(guments to the command are set to the ar)-.18 E(guments gi)-.18 E -.15
-(ve)-.25 G(n, if an).15 E -.65(y.)-.15 G 1.049(If this e)108 141.6 R
--.15(xe)-.15 G 1.049(cution f).15 F 1.049
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.049(If this e)
+108 84 R -.15(xe)-.15 G 1.049(cution f).15 F 1.049
 (ails because the \214le is not in e)-.1 F -.15(xe)-.15 G 1.048
 (cutable format, and the \214le is not a directory).15 F 3.548(,i)-.65 G
 3.548(ti)-3.548 G 3.548(sa)-3.548 G(s-)-3.548 E .143(sumed to be a)108
-153.6 R/F1 10/Times-Italic@0 SF .143(shell script)2.643 F F0 2.643
-(,a\214)C .143(le containing shell commands, and the shell creates a ne)
--2.643 F 2.643(wi)-.25 G .143(nstance of itself to)-2.643 F -.15(exe)108
-165.6 S .137(cute it.).15 F .137
+96 R/F1 10/Times-Italic@0 SF .143(shell script)2.643 F F0 2.643(,a\214)C
+.143(le containing shell commands, and the shell creates a ne)-2.643 F
+2.643(wi)-.25 G .143(nstance of itself to)-2.643 F -.15(exe)108 108 S
+.137(cute it.).15 F .137
 (This subshell reinitializes itself, so that the ef)5.137 F .136
 (fect is as if a ne)-.25 F 2.636(ws)-.25 G .136(hell had been in)-2.636
 F -.2(vo)-.4 G -.1(ke).2 G 2.636(dt).1 G 2.636(oh)-2.636 G(andle)-2.636
-E .865(the script, with the e)108 177.6 R .866
+E .865(the script, with the e)108 120 R .866
 (xception that the locations of commands remembered by the parent \(see)
 -.15 F/F2 10/Times-Bold@0 SF(hash)3.366 E F0(belo)3.366 E(w)-.25 E
-(under)108 189.6 Q/F3 9/Times-Bold@0 SF(SHELL B)2.5 E(UIL)-.09 E
+(under)108 132 Q/F3 9/Times-Bold@0 SF(SHELL B)2.5 E(UIL)-.09 E
 (TIN COMMANDS)-.828 E/F4 9/Times-Roman@0 SF(\))A F0
 (are retained by the child.)2.25 E .348(If the program is a \214le be)
-108 206.4 R .348(ginning with)-.15 F F2(#!)2.848 E F0 2.848(,t)C .347(h\
+108 148.8 R .348(ginning with)-.15 F F2(#!)2.848 E F0 2.848(,t)C .347(h\
 e remainder of the \214rst line speci\214es an interpreter for the pro-)
--2.848 F 3.178(gram. The)108 218.4 R .678(shell e)3.178 F -.15(xe)-.15 G
+-2.848 F 3.178(gram. The)108 160.8 R .678(shell e)3.178 F -.15(xe)-.15 G
 .678(cutes the speci\214ed interpreter on operating systems that do not\
  handle this e).15 F -.15(xe)-.15 G(cutable).15 E .206(format themselv)
-108 230.4 R 2.706(es. The)-.15 F(ar)2.706 E .206
+108 172.8 R 2.706(es. The)-.15 F(ar)2.706 E .206
 (guments to the interpreter consist of a single optional ar)-.18 F .206
 (gument follo)-.18 F .206(wing the in-)-.25 F .267
-(terpreter name on the \214rst line of the program, follo)108 242.4 R
+(terpreter name on the \214rst line of the program, follo)108 184.8 R
 .268(wed by the name of the program, follo)-.25 F .268(wed by the com-)
--.25 F(mand ar)108 254.4 Q(guments, if an)-.18 E -.65(y.)-.15 G/F5 10.95
-/Times-Bold@0 SF(COMMAND EXECUTION ENVIR)72 271.2 Q(ONMENT)-.329 E F0
-(The shell has an)108 283.2 Q F1 -.2(ex)2.5 G(ecution en).2 E(vir)-.4 E
+-.25 F(mand ar)108 196.8 Q(guments, if an)-.18 E -.65(y.)-.15 G/F5 10.95
+/Times-Bold@0 SF(COMMAND EXECUTION ENVIR)72 213.6 Q(ONMENT)-.329 E F0
+(The shell has an)108 225.6 Q F1 -.2(ex)2.5 G(ecution en).2 E(vir)-.4 E
 (onment)-.45 E F0 2.5(,w)C(hich consists of the follo)-2.5 E(wing:)-.25
-E<83>108 300 Q 1.406(open \214les inherited by the shell at in)144 300 R
--.2(vo)-.4 G 1.405
+E<83>108 242.4 Q 1.406(open \214les inherited by the shell at in)144
+242.4 R -.2(vo)-.4 G 1.405
 (cation, as modi\214ed by redirections supplied to the).2 F F2(exec)
-3.905 E F0 -.2(bu)144 312 S(iltin).2 E<83>108 328.8 Q(the current w)144
-328.8 Q(orking directory as set by)-.1 E F2(cd)2.5 E F0(,)A F2(pushd)2.5
-E F0 2.5(,o)C(r)-2.5 E F2(popd)2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G
-(nherited by the shell at in)-2.5 E -.2(vo)-.4 G(cation).2 E<83>108
-345.6 Q(the \214le creation mode mask as set by)144 345.6 Q F2(umask)2.5
-E F0(or inherited from the shell')2.5 E 2.5(sp)-.55 G(arent)-2.5 E<83>
-108 362.4 Q(current traps set by)144 362.4 Q F2(trap)2.5 E F0<83>108
-379.2 Q .256(shell parameters that are set by v)144 379.2 R .256
+3.905 E F0 -.2(bu)144 254.4 S(iltin).2 E<83>108 271.2 Q(the current w)
+144 271.2 Q(orking directory as set by)-.1 E F2(cd)2.5 E F0(,)A F2
+(pushd)2.5 E F0 2.5(,o)C(r)-2.5 E F2(popd)2.5 E F0 2.5(,o)C 2.5(ri)-2.5
+G(nherited by the shell at in)-2.5 E -.2(vo)-.4 G(cation).2 E<83>108 288
+Q(the \214le creation mode mask as set by)144 288 Q F2(umask)2.5 E F0
+(or inherited from the shell')2.5 E 2.5(sp)-.55 G(arent)-2.5 E<83>108
+304.8 Q(current traps set by)144 304.8 Q F2(trap)2.5 E F0<83>108 321.6 Q
+.256(shell parameters that are set by v)144 321.6 R .256
 (ariable assignment or with)-.25 F F2(set)2.756 E F0 .257
 (or inherited from the shell')2.756 F 2.757(sp)-.55 G(arent)-2.757 E
-(in the en)144 391.2 Q(vironment)-.4 E<83>108 408 Q
-(shell functions de\214ned during e)144 408 Q -.15(xe)-.15 G
+(in the en)144 333.6 Q(vironment)-.4 E<83>108 350.4 Q
+(shell functions de\214ned during e)144 350.4 Q -.15(xe)-.15 G
 (cution or inherited from the shell').15 E 2.5(sp)-.55 G
-(arent in the en)-2.5 E(vironment)-.4 E<83>108 424.8 Q
-(options enabled at in)144 424.8 Q -.2(vo)-.4 G(cation \(either by def)
+(arent in the en)-2.5 E(vironment)-.4 E<83>108 367.2 Q
+(options enabled at in)144 367.2 Q -.2(vo)-.4 G(cation \(either by def)
 .2 E(ault or with command-line ar)-.1 E(guments\) or by)-.18 E F2(set)
-2.5 E F0<83>108 441.6 Q(options enabled by)144 441.6 Q F2(shopt)2.5 E F0
-<83>108 458.4 Q(shell aliases de\214ned with)144 458.4 Q F2(alias)2.5 E
-F0<83>108 475.2 Q -.25(va)144 475.2 S
+2.5 E F0<83>108 384 Q(options enabled by)144 384 Q F2(shopt)2.5 E F0<83>
+108 400.8 Q(shell aliases de\214ned with)144 400.8 Q F2(alias)2.5 E F0
+<83>108 417.6 Q -.25(va)144 417.6 S
 (rious process IDs, including those of background jobs, the v).25 E
 (alue of)-.25 E F2($$)2.5 E F0 2.5(,a)C(nd the v)-2.5 E(alue of)-.25 E
-F3(PPID)2.5 E F0 .427(When a simple command other than a b)108 492 R
+F3(PPID)2.5 E F0 .427(When a simple command other than a b)108 434.4 R
 .426(uiltin or shell function is to be e)-.2 F -.15(xe)-.15 G .426
 (cuted, it is in).15 F -.2(vo)-.4 G -.1(ke).2 G 2.926(di).1 G 2.926(nas)
--2.926 G(eparate)-2.926 E -.15(exe)108 504 S .133(cution en).15 F .133
+-2.926 G(eparate)-2.926 E -.15(exe)108 446.4 S .133(cution en).15 F .133
 (vironment that consists of the follo)-.4 F 2.634(wing. Unless)-.25 F
 .134(otherwise noted, the v)2.634 F .134(alues are inherited from)-.25 F
-(the shell.)108 516 Q<83>108 532.8 Q 1.056(the shell')144 532.8 R 3.556
-(so)-.55 G 1.056(pen \214les, plus an)-3.556 F 3.556(ym)-.15 G 1.056
+(the shell.)108 458.4 Q<83>108 475.2 Q 1.056(the shell')144 475.2 R
+3.556(so)-.55 G 1.056(pen \214les, plus an)-3.556 F 3.556(ym)-.15 G
+1.056
 (odi\214cations and additions speci\214ed by redirections to the com-)
--3.556 F(mand)144 544.8 Q<83>108 561.6 Q(the current w)144 561.6 Q
-(orking directory)-.1 E<83>108 578.4 Q(the \214le creation mode mask)144
-578.4 Q<83>108 595.2 Q .856(shell v)144 595.2 R .857
+-3.556 F(mand)144 487.2 Q<83>108 504 Q(the current w)144 504 Q
+(orking directory)-.1 E<83>108 520.8 Q(the \214le creation mode mask)144
+520.8 Q<83>108 537.6 Q .856(shell v)144 537.6 R .857
 (ariables and functions mark)-.25 F .857(ed for e)-.1 F .857
 (xport, along with v)-.15 F .857(ariables e)-.25 F .857
-(xported for the command,)-.15 F(passed in the en)144 607.2 Q(vironment)
--.4 E<83>108 624 Q .307(traps caught by the shell are reset to the v)144
-624 R .306(alues inherited from the shell')-.25 F 2.806(sp)-.55 G .306
-(arent, and traps ignored)-2.806 F(by the shell are ignored)144 636 Q
-2.5(Ac)108 652.8 S(ommand in)-2.5 E -.2(vo)-.4 G -.1(ke).2 G 2.5(di).1 G
-2.5(nt)-2.5 G(his separate en)-2.5 E(vironment cannot af)-.4 E
+(xported for the command,)-.15 F(passed in the en)144 549.6 Q(vironment)
+-.4 E<83>108 566.4 Q .307(traps caught by the shell are reset to the v)
+144 566.4 R .306(alues inherited from the shell')-.25 F 2.806(sp)-.55 G
+.306(arent, and traps ignored)-2.806 F(by the shell are ignored)144
+578.4 Q 2.5(Ac)108 595.2 S(ommand in)-2.5 E -.2(vo)-.4 G -.1(ke).2 G 2.5
+(di).1 G 2.5(nt)-2.5 G(his separate en)-2.5 E(vironment cannot af)-.4 E
 (fect the shell')-.25 E 2.5(se)-.55 G -.15(xe)-2.65 G(cution en).15 E
-(vironment.)-.4 E(A)108 669.6 Q F1(subshell)2.5 E F0(is a cop)2.5 E 2.5
+(vironment.)-.4 E(A)108 612 Q F1(subshell)2.5 E F0(is a cop)2.5 E 2.5
 (yo)-.1 G 2.5(ft)-2.5 G(he shell process.)-2.5 E .577(Command substitut\
 ion, commands grouped with parentheses, and asynchronous commands are i\
-n)108 686.4 R -.2(vo)-.4 G -.1(ke).2 G 3.078(di).1 G(n)-3.078 E 2.745
-(as)108 698.4 S .245(ubshell en)-2.745 F .245
+n)108 628.8 R -.2(vo)-.4 G -.1(ke).2 G 3.078(di).1 G(n)-3.078 E 2.745
+(as)108 640.8 S .245(ubshell en)-2.745 F .245
 (vironment that is a duplicate of the shell en)-.4 F .244(vironment, e)
 -.4 F .244(xcept that traps caught by the shell are)-.15 F .358
-(reset to the v)108 710.4 R .358
+(reset to the v)108 652.8 R .358
 (alues that the shell inherited from its parent at in)-.25 F -.2(vo)-.4
 G 2.858(cation. Builtin).2 F .359(commands that are in)2.859 F -.2(vo)
--.4 G -.1(ke).2 G(d).1 E 3.159(as part of a pipeline are also e)108
-722.4 R -.15(xe)-.15 G 3.159(cuted in a subshell en).15 F 5.659
-(vironment. Changes)-.4 F 3.158(made to the subshell)5.658 F
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(38)197.335 E 0 Cg EP
+-.4 G -.1(ke).2 G(d).1 E .857(as part of a pipeline are also e)108 664.8
+R -.15(xe)-.15 G .856(cuted in a subshell en).15 F 3.356
+(vironment. Changes)-.4 F .856(made to the subshell en)3.356 F(viron-)
+-.4 E(ment cannot af)108 676.8 Q(fect the shell')-.25 E 2.5(se)-.55 G
+-.15(xe)-2.65 G(cution en).15 E(vironment.)-.4 E 1.376(Subshells spa)108
+693.6 R 1.376(wned to e)-.15 F -.15(xe)-.15 G 1.377
+(cute command substitutions inherit the v).15 F 1.377(alue of the)-.25 F
+F2<ad65>3.877 E F0 1.377(option from the parent)3.877 F 2.5(shell. When)
+108 705.6 R(not in)2.5 E F1(posix mode)2.5 E F0(,)A F2(bash)2.5 E F0
+(clears the)2.5 E F2<ad65>2.5 E F0(option in such subshells.)2.5 E .405
+(If a command is follo)108 722.4 R .405(wed by a)-.25 F F2(&)2.905 E F0
+.404(and job control is not acti)2.905 F -.15(ve)-.25 G 2.904(,t).15 G
+.404(he def)-2.904 F .404(ault standard input for the command)-.1 F
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(38)197.335 E 0 Cg EP
 %%Page: 39 39
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(en)108 84 Q
-(vironment cannot af)-.4 E(fect the shell')-.25 E 2.5(se)-.55 G -.15(xe)
--2.65 G(cution en).15 E(vironment.)-.4 E 1.376(Subshells spa)108 100.8 R
-1.376(wned to e)-.15 F -.15(xe)-.15 G 1.377
-(cute command substitutions inherit the v).15 F 1.377(alue of the)-.25 F
-/F1 10/Times-Bold@0 SF<ad65>3.877 E F0 1.377(option from the parent)
-3.877 F 2.5(shell. When)108 112.8 R(not in)2.5 E/F2 10/Times-Italic@0 SF
-(posix mode)2.5 E F0(,)A F1(bash)2.5 E F0(clears the)2.5 E F1<ad65>2.5 E
-F0(option in such subshells.)2.5 E .405(If a command is follo)108 129.6
-R .405(wed by a)-.25 F F1(&)2.905 E F0 .404(and job control is not acti)
-2.905 F -.15(ve)-.25 G 2.904(,t).15 G .404(he def)-2.904 F .404
-(ault standard input for the command)-.1 F .197(is the empty \214le)108
-141.6 R F2(/de)2.697 E(v/null)-.15 E F0 5.197(.O)C .197
-(therwise, the in)-5.197 F -.2(vo)-.4 G -.1(ke).2 G 2.697(dc).1 G .198
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .197
+(is the empty \214le)108 84 R/F1 10/Times-Italic@0 SF(/de)2.697 E
+(v/null)-.15 E F0 5.197(.O)C .197(therwise, the in)-5.197 F -.2(vo)-.4 G
+-.1(ke).2 G 2.697(dc).1 G .198
 (ommand inherits the \214le descriptors of the calling shell)-2.697 F
-(as modi\214ed by redirections.)108 153.6 Q/F3 10.95/Times-Bold@0 SF
-(ENVIR)72 170.4 Q(ONMENT)-.329 E F0 2.344(When a program is in)108 182.4
-R -.2(vo)-.4 G -.1(ke).2 G 4.843(di).1 G 4.843(ti)-4.843 G 4.843(sg)
--4.843 G -2.15 -.25(iv e)-4.843 H 4.843(na).25 G 4.843(na)-4.843 G 2.343
-(rray of strings called the)-4.843 F F2(en)5.033 E(vir)-.4 E(onment)-.45
-E F0 7.343(.T).68 G 2.343(his is a list of)-7.343 F F2(name)108 194.4 Q
-F0<ad>A F2(value)A F0(pairs, of the form)2.5 E F2(name)2.86 E F0(=)A F2
-(value)A F0(.).18 E .438(The shell pro)108 211.2 R .438(vides se)-.15 F
+(as modi\214ed by redirections.)108 96 Q/F2 10.95/Times-Bold@0 SF(ENVIR)
+72 112.8 Q(ONMENT)-.329 E F0 2.344(When a program is in)108 124.8 R -.2
+(vo)-.4 G -.1(ke).2 G 4.843(di).1 G 4.843(ti)-4.843 G 4.843(sg)-4.843 G
+-2.15 -.25(iv e)-4.843 H 4.843(na).25 G 4.843(na)-4.843 G 2.343
+(rray of strings called the)-4.843 F F1(en)5.033 E(vir)-.4 E(onment)-.45
+E F0 7.343(.T).68 G 2.343(his is a list of)-7.343 F F1(name)108 136.8 Q
+F0<ad>A F1(value)A F0(pairs, of the form)2.5 E F1(name)2.86 E F0(=)A F1
+(value)A F0(.).18 E .438(The shell pro)108 153.6 R .438(vides se)-.15 F
 -.15(ve)-.25 G .438(ral w).15 F .438(ays to manipulate the en)-.1 F
 2.938(vironment. On)-.4 F(in)2.938 E -.2(vo)-.4 G .438
 (cation, the shell scans its o).2 F .439(wn en-)-.25 F .709(vironment a\
 nd creates a parameter for each name found, automatically marking it fo\
-r)108 223.2 R F2 -.2(ex)3.208 G(port).2 E F0 .708(to child pro-)3.888 F
-2.703(cesses. Ex)108 235.2 R .203(ecuted commands inherit the en)-.15 F
-2.703(vironment. The)-.4 F F1(export)2.703 E F0(and)2.703 E F1(declar)
-2.703 E 2.703<65ad>-.18 G(x)-2.703 E F0 .203(commands allo)2.703 F 2.704
-(wp)-.25 G(aram-)-2.704 E .332
-(eters and functions to be added to and deleted from the en)108 247.2 R
+r)108 165.6 R F1 -.2(ex)3.208 G(port).2 E F0 .708(to child pro-)3.888 F
+2.703(cesses. Ex)108 177.6 R .203(ecuted commands inherit the en)-.15 F
+2.703(vironment. The)-.4 F/F3 10/Times-Bold@0 SF(export)2.703 E F0(and)
+2.703 E F3(declar)2.703 E 2.703<65ad>-.18 G(x)-2.703 E F0 .203
+(commands allo)2.703 F 2.704(wp)-.25 G(aram-)-2.704 E .332
+(eters and functions to be added to and deleted from the en)108 189.6 R
 2.832(vironment. If)-.4 F .332(the v)2.832 F .332
 (alue of a parameter in the en-)-.25 F .131
-(vironment is modi\214ed, the ne)108 259.2 R 2.631(wv)-.25 G .131
+(vironment is modi\214ed, the ne)108 201.6 R 2.631(wv)-.25 G .131
 (alue becomes part of the en)-2.881 F .132
 (vironment, replacing the old.)-.4 F .132(The en)5.132 F(vironment)-.4 E
-.321(inherited by an)108 271.2 R 2.821(ye)-.15 G -.15(xe)-2.971 G .321
+.321(inherited by an)108 213.6 R 2.821(ye)-.15 G -.15(xe)-2.971 G .321
 (cuted command consists of the shell').15 F 2.821(si)-.55 G .321
 (nitial en)-2.821 F .32(vironment, whose v)-.4 F .32(alues may be modi-)
--.25 F .533(\214ed in the shell, less an)108 283.2 R 3.033(yp)-.15 G
+-.25 F .533(\214ed in the shell, less an)108 225.6 R 3.033(yp)-.15 G
 .534(airs remo)-3.033 F -.15(ve)-.15 G 3.034(db).15 G 3.034(yt)-3.034 G
-(he)-3.034 E F1(unset)3.034 E F0 .534(command, plus an)3.034 F 3.034(ya)
--.15 G .534(dditions via the)-3.034 F F1(export)3.034 E F0(and)3.034 E
-F1(de-)3.034 E(clar)108 295.2 Q 2.5<65ad>-.18 G(x)-2.5 E F0(commands.)
-2.5 E .563(The en)108 312 R .563(vironment for an)-.4 F(y)-.15 E F2 .563
-(simple command)3.403 F F0 .562
+(he)-3.034 E F3(unset)3.034 E F0 .534(command, plus an)3.034 F 3.034(ya)
+-.15 G .534(dditions via the)-3.034 F F3(export)3.034 E F0(and)3.034 E
+F3(de-)3.034 E(clar)108 237.6 Q 2.5<65ad>-.18 G(x)-2.5 E F0(commands.)
+2.5 E .563(The en)108 254.4 R .563(vironment for an)-.4 F(y)-.15 E F1
+.563(simple command)3.403 F F0 .562
 (or function may be augmented temporarily by pre\214xing it with)3.833 F
-.202(parameter assignments, as described abo)108 324 R .502 -.15(ve i)
+.202(parameter assignments, as described abo)108 266.4 R .502 -.15(ve i)
 -.15 H(n).15 E/F4 9/Times-Bold@0 SF -.666(PA)2.702 G(RAMETERS).666 E/F5
 9/Times-Roman@0 SF(.)A F0 .202(These assignment statements af)4.702 F
-.203(fect only the)-.25 F(en)108 336 Q(vironment seen by that command.)
--.4 E .81(If the)108 352.8 R F1<ad6b>3.31 E F0 .81
-(option is set \(see the)3.31 F F1(set)3.31 E F0 -.2(bu)3.31 G .81
-(iltin command belo).2 F .81(w\), then)-.25 F F2(all)3.64 E F0 .81
-(parameter assignments are placed in)3.82 F(the en)108 364.8 Q
+.203(fect only the)-.25 F(en)108 278.4 Q
+(vironment seen by that command.)-.4 E .81(If the)108 295.2 R F3<ad6b>
+3.31 E F0 .81(option is set \(see the)3.31 F F3(set)3.31 E F0 -.2(bu)
+3.31 G .81(iltin command belo).2 F .81(w\), then)-.25 F F1(all)3.64 E F0
+.81(parameter assignments are placed in)3.82 F(the en)108 307.2 Q
 (vironment for a command, not just those that precede the command name.)
--.4 E(When)108 381.6 Q F1(bash)3.585 E F0(in)3.585 E -.2(vo)-.4 G -.1
-(ke).2 G 3.585(sa).1 G 3.585(ne)-3.585 G 1.085(xternal command, the v)
--3.735 F(ariable)-.25 E F1(_)3.585 E F0 1.086
+-.4 E(When)108 324 Q F3(bash)3.585 E F0(in)3.585 E -.2(vo)-.4 G -.1(ke)
+.2 G 3.585(sa).1 G 3.585(ne)-3.585 G 1.085(xternal command, the v)-3.735
+F(ariable)-.25 E F3(_)3.585 E F0 1.086
 (is set to the full \214lename of the command and)3.586 F
-(passed to that command in its en)108 393.6 Q(vironment.)-.4 E F3
-(EXIT ST)72 410.4 Q -1.04(AT)-.986 G(US)1.04 E F0 .151(The e)108 422.4 R
-.151(xit status of an e)-.15 F -.15(xe)-.15 G .151
-(cuted command is the v).15 F .15(alue returned by the)-.25 F F2
-(waitpid)2.65 E F0 .15(system call or equi)2.65 F -.25(va)-.25 G .15
-(lent func-).25 F 2.847(tion. Exit)108 434.4 R .347(statuses f)2.847 F
-.347(all between 0 and 255, though, as e)-.1 F .347(xplained belo)-.15 F
+(passed to that command in its en)108 336 Q(vironment.)-.4 E F2(EXIT ST)
+72 352.8 Q -1.04(AT)-.986 G(US)1.04 E F0 .151(The e)108 364.8 R .151
+(xit status of an e)-.15 F -.15(xe)-.15 G .151(cuted command is the v)
+.15 F .15(alue returned by the)-.25 F F1(waitpid)2.65 E F0 .15
+(system call or equi)2.65 F -.25(va)-.25 G .15(lent func-).25 F 2.847
+(tion. Exit)108 376.8 R .347(statuses f)2.847 F .347
+(all between 0 and 255, though, as e)-.1 F .347(xplained belo)-.15 F
 1.647 -.65(w, t)-.25 H .347(he shell may use v).65 F .348(alues abo)-.25
-F .648 -.15(ve 1)-.15 H(25).15 E(specially)108 446.4 Q 5.507(.E)-.65 G
+F .648 -.15(ve 1)-.15 H(25).15 E(specially)108 388.8 Q 5.507(.E)-.65 G
 .507(xit statuses from shell b)-5.507 F .507
 (uiltins and compound commands are also limited to this range.)-.2 F
 (Under)5.506 E(certain circumstances, the shell will use special v)108
-458.4 Q(alues to indicate speci\214c f)-.25 E(ailure modes.)-.1 E -.15
-(Fo)108 475.2 S 3.372(rt).15 G .872(he shell')-3.372 F 3.372(sp)-.55 G
+400.8 Q(alues to indicate speci\214c f)-.25 E(ailure modes.)-.1 E -.15
+(Fo)108 417.6 S 3.372(rt).15 G .872(he shell')-3.372 F 3.372(sp)-.55 G
 .873(urposes, a command which e)-3.372 F .873(xits with a zero e)-.15 F
 .873(xit status has succeeded.)-.15 F .873(An e)5.873 F .873
-(xit status of)-.15 F .049(zero indicates success.)108 487.2 R 2.549(An)
+(xit status of)-.15 F .049(zero indicates success.)108 429.6 R 2.549(An)
 5.049 G .049(on-zero e)-2.549 F .049(xit status indicates f)-.15 F 2.549
 (ailure. When)-.1 F 2.549(ac)2.549 G .048(ommand terminates on a f)
--2.549 F .048(atal sig-)-.1 F(nal)108 499.2 Q F2(N)2.5 E F0(,)A F1(bash)
-2.5 E F0(uses the v)2.5 E(alue of 128+)-.25 E F2(N)A F0(as the e)2.5 E
+-2.549 F .048(atal sig-)-.1 F(nal)108 441.6 Q F1(N)2.5 E F0(,)A F3(bash)
+2.5 E F0(uses the v)2.5 E(alue of 128+)-.25 E F1(N)A F0(as the e)2.5 E
 (xit status.)-.15 E .404
-(If a command is not found, the child process created to e)108 516 R
+(If a command is not found, the child process created to e)108 458.4 R
 -.15(xe)-.15 G .404(cute it returns a status of 127.).15 F .405
-(If a command is)5.405 F(found b)108 528 Q(ut is not e)-.2 E -.15(xe)
--.15 G(cutable, the return status is 126.).15 E(If a command f)108 544.8
+(If a command is)5.405 F(found b)108 470.4 Q(ut is not e)-.2 E -.15(xe)
+-.15 G(cutable, the return status is 126.).15 E(If a command f)108 487.2
 Q(ails because of an error during e)-.1 E
 (xpansion or redirection, the e)-.15 E(xit status is greater than zero.)
--.15 E .081(Shell b)108 561.6 R .081
-(uiltin commands return a status of 0 \()-.2 F F2(true)A F0 2.581(\)i)C
-2.581(fs)-2.581 G .08(uccessful, and non-zero \()-2.581 F F2(false)A F0
+-.15 E .081(Shell b)108 504 R .081
+(uiltin commands return a status of 0 \()-.2 F F1(true)A F0 2.581(\)i)C
+2.581(fs)-2.581 G .08(uccessful, and non-zero \()-2.581 F F1(false)A F0
 2.58(\)i)C 2.58(fa)-2.58 G 2.58(ne)-2.58 G .08(rror occurs while)-2.58 F
-(the)108 573.6 Q 2.967(ye)-.15 G -.15(xe)-3.117 G 2.967(cute. All).15 F
+(the)108 516 Q 2.967(ye)-.15 G -.15(xe)-3.117 G 2.967(cute. All).15 F
 -.2(bu)2.967 G .467(iltins return an e).2 F .468
 (xit status of 2 to indicate incorrect usage, generally in)-.15 F -.25
-(va)-.4 G .468(lid options or).25 F(missing ar)108 585.6 Q(guments.)-.18
-E(The e)108 602.4 Q(xit status of the last command is a)-.15 E -.25(va)
--.2 G(ilable in the special parameter $?.).25 E F1(Bash)108 619.2 Q F0
+(va)-.4 G .468(lid options or).25 F(missing ar)108 528 Q(guments.)-.18 E
+(The e)108 544.8 Q(xit status of the last command is a)-.15 E -.25(va)
+-.2 G(ilable in the special parameter $?.).25 E F3(Bash)108 561.6 Q F0
 .202(itself returns the e)2.702 F .202(xit status of the last command e)
 -.15 F -.15(xe)-.15 G .201
-(cuted, unless a syntax error occurs, in which case).15 F(it e)108 631.2
-Q(xits with a non-zero v)-.15 E 2.5(alue. See)-.25 F(also the)2.5 E F1
-(exit)2.5 E F0 -.2(bu)2.5 G(iltin command belo).2 E -.65(w.)-.25 G F3
-(SIGN)72 648 Q(ALS)-.219 E F0(When)108 660 Q F1(bash)2.502 E F0 .002
+(cuted, unless a syntax error occurs, in which case).15 F(it e)108 573.6
+Q(xits with a non-zero v)-.15 E 2.5(alue. See)-.25 F(also the)2.5 E F3
+(exit)2.5 E F0 -.2(bu)2.5 G(iltin command belo).2 E -.65(w.)-.25 G F2
+(SIGN)72 590.4 Q(ALS)-.219 E F0(When)108 602.4 Q F3(bash)2.502 E F0 .002
 (is interacti)2.502 F -.15(ve)-.25 G 2.502(,i).15 G 2.502(nt)-2.502 G
 .002(he absence of an)-2.502 F 2.502(yt)-.15 G .002(raps, it ignores)
--2.502 F F4(SIGTERM)2.502 E F0 .002(\(so that)2.252 F F1 .002(kill 0)
-2.502 F F0 .002(does not kill an in-)2.502 F(teracti)108 672 Q 1.216
+-2.502 F F4(SIGTERM)2.502 E F0 .002(\(so that)2.252 F F3 .002(kill 0)
+2.502 F F0 .002(does not kill an in-)2.502 F(teracti)108 614.4 Q 1.216
 -.15(ve s)-.25 H .916(hell\), and).15 F F4(SIGINT)3.416 E F0 .915
-(is caught and handled \(so that the)3.166 F F1(wait)3.415 E F0 -.2(bu)
+(is caught and handled \(so that the)3.166 F F3(wait)3.415 E F0 -.2(bu)
 3.415 G .915(iltin is interruptible\).).2 F .915(In all cases,)5.915 F
-F1(bash)108 684 Q F0(ignores)2.5 E F4(SIGQ)2.5 E(UIT)-.09 E F5(.)A F0
-(If job control is in ef)4.5 E(fect,)-.25 E F1(bash)2.5 E F0(ignores)2.5
+F3(bash)108 626.4 Q F0(ignores)2.5 E F4(SIGQ)2.5 E(UIT)-.09 E F5(.)A F0
+(If job control is in ef)4.5 E(fect,)-.25 E F3(bash)2.5 E F0(ignores)2.5
 E F4(SIGTTIN)2.5 E F5(,)A F4(SIGTT)2.25 E(OU)-.162 E F5(,)A F0(and)2.25
-E F4(SIGTSTP)2.5 E F5(.)A F0(Non-b)108 700.8 Q 1.064
-(uiltin commands run by)-.2 F F1(bash)3.564 E F0(ha)3.564 E 1.365 -.15
+E F4(SIGTSTP)2.5 E F5(.)A F0(Non-b)108 643.2 Q 1.064
+(uiltin commands run by)-.2 F F3(bash)3.564 E F0(ha)3.564 E 1.365 -.15
 (ve s)-.2 H 1.065(ignal handlers set to the v).15 F 1.065
 (alues inherited by the shell from its)-.25 F 3.248(parent. When)108
-712.8 R .748(job control is not in ef)3.248 F .747
+655.2 R .748(job control is not in ef)3.248 F .747
 (fect, asynchronous commands ignore)-.25 F F4(SIGINT)3.247 E F0(and)
 2.997 E F4(SIGQ)3.247 E(UIT)-.09 E F0 .747(in addi-)2.997 F .652
-(tion to these inherited handlers.)108 724.8 R .653
+(tion to these inherited handlers.)108 667.2 R .653
 (Commands run as a result of command substitution ignore the k)5.652 F
--.15(ey)-.1 G(board-).15 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E
-(39)197.335 E 0 Cg EP
+-.15(ey)-.1 G(board-).15 E(generated job control signals)108 679.2 Q F4
+(SIGTTIN)2.5 E F5(,)A F4(SIGTT)2.25 E(OU)-.162 E F5(,)A F0(and)2.25 E F4
+(SIGTSTP)2.5 E F5(.)A F0 2.046(The shell e)108 696 R 2.046(xits by def)
+-.15 F 2.045(ault upon receipt of a)-.1 F F4(SIGHUP)4.545 E F5(.)A F0
+2.045(Before e)6.545 F 2.045(xiting, an interacti)-.15 F 2.345 -.15
+(ve s)-.25 H 2.045(hell resends the).15 F F4(SIGHUP)108 708 Q F0 1.004
+(to all jobs, running or stopped.)3.254 F 1.004(Stopped jobs are sent)
+6.004 F F4(SIGCONT)3.505 E F0 1.005(to ensure that the)3.255 F 3.505(yr)
+-.15 G(ecei)-3.505 E 1.305 -.15(ve t)-.25 H(he).15 E F4(SIGHUP)108 720 Q
+F5(.)A F0 2.53 -.8(To p)5.43 H(re).8 E -.15(ve)-.25 G .93(nt the shell \
+from sending the signal to a particular job, it should be remo).15 F
+-.15(ve)-.15 G 3.429(df).15 G .929(rom the)-3.429 F(GNU Bash 5.2)72 768
+Q(2023 May 23)148.175 E(39)197.335 E 0 Cg EP
 %%Page: 40 40
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E
-(generated job control signals)108 84 Q/F1 9/Times-Bold@0 SF(SIGTTIN)2.5
-E/F2 9/Times-Roman@0 SF(,)A F1(SIGTT)2.25 E(OU)-.162 E F2(,)A F0(and)
-2.25 E F1(SIGTSTP)2.5 E F2(.)A F0 2.046(The shell e)108 100.8 R 2.046
-(xits by def)-.15 F 2.045(ault upon receipt of a)-.1 F F1(SIGHUP)4.545 E
-F2(.)A F0 2.045(Before e)6.545 F 2.045(xiting, an interacti)-.15 F 2.345
--.15(ve s)-.25 H 2.045(hell resends the).15 F F1(SIGHUP)108 112.8 Q F0
-1.004(to all jobs, running or stopped.)3.254 F 1.004
-(Stopped jobs are sent)6.004 F F1(SIGCONT)3.505 E F0 1.005
-(to ensure that the)3.255 F 3.505(yr)-.15 G(ecei)-3.505 E 1.305 -.15
-(ve t)-.25 H(he).15 E F1(SIGHUP)108 124.8 Q F2(.)A F0 2.53 -.8(To p)5.43
-H(re).8 E -.15(ve)-.25 G .93(nt the shell from sending the signal to a \
-particular job, it should be remo).15 F -.15(ve)-.15 G 3.429(df).15 G
-.929(rom the)-3.429 F 1.356(jobs table with the)108 136.8 R/F3 10
-/Times-Bold@0 SF(diso)3.856 E(wn)-.1 E F0 -.2(bu)3.856 G 1.356
-(iltin \(see).2 F F1 1.356(SHELL B)3.856 F(UIL)-.09 E 1.356
-(TIN COMMANDS)-.828 F F0(belo)3.607 E 1.357(w\) or mark)-.25 F 1.357
-(ed to not recei)-.1 F -.15(ve)-.25 G F1(SIGHUP)108 148.8 Q F0(using)
-2.25 E F3(diso)2.5 E(wn \255h)-.1 E F0(.)A .166(If the)108 165.6 R F3
-(huponexit)2.666 E F0 .166(shell option has been set with)2.666 F F3
-(shopt)2.666 E F0(,)A F3(bash)2.666 E F0 .166(sends a)2.666 F F1(SIGHUP)
-2.666 E F0 .166(to all jobs when an interacti)2.416 F -.15(ve)-.25 G
-(login shell e)108 177.6 Q(xits.)-.15 E(If)108 194.4 Q F3(bash)3.046 E
-F0 .546(is w)3.046 F .546(aiting for a command to complete and recei)-.1
-F -.15(ve)-.25 G 3.046(sas).15 G .546
-(ignal for which a trap has been set, the trap)-3.046 F .663
-(will not be e)108 206.4 R -.15(xe)-.15 G .663
-(cuted until the command completes.).15 F(When)5.663 E F3(bash)3.163 E
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.356
+(jobs table with the)108 84 R/F1 10/Times-Bold@0 SF(diso)3.856 E(wn)-.1
+E F0 -.2(bu)3.856 G 1.356(iltin \(see).2 F/F2 9/Times-Bold@0 SF 1.356
+(SHELL B)3.856 F(UIL)-.09 E 1.356(TIN COMMANDS)-.828 F F0(belo)3.607 E
+1.357(w\) or mark)-.25 F 1.357(ed to not recei)-.1 F -.15(ve)-.25 G F2
+(SIGHUP)108 96 Q F0(using)2.25 E F1(diso)2.5 E(wn \255h)-.1 E F0(.)A
+.166(If the)108 112.8 R F1(huponexit)2.666 E F0 .166
+(shell option has been set with)2.666 F F1(shopt)2.666 E F0(,)A F1(bash)
+2.666 E F0 .166(sends a)2.666 F F2(SIGHUP)2.666 E F0 .166
+(to all jobs when an interacti)2.416 F -.15(ve)-.25 G(login shell e)108
+124.8 Q(xits.)-.15 E(If)108 141.6 Q F1(bash)3.046 E F0 .546(is w)3.046 F
+.546(aiting for a command to complete and recei)-.1 F -.15(ve)-.25 G
+3.046(sas).15 G .546(ignal for which a trap has been set, the trap)
+-3.046 F .663(will not be e)108 153.6 R -.15(xe)-.15 G .663
+(cuted until the command completes.).15 F(When)5.663 E F1(bash)3.163 E
 F0 .662(is w)3.163 F .662(aiting for an asynchronous command)-.1 F .326
-(via the)108 218.4 R F3(wait)2.826 E F0 -.2(bu)2.826 G .327(iltin, the \
+(via the)108 165.6 R F1(wait)2.826 E F0 -.2(bu)2.826 G .327(iltin, the \
 reception of a signal for which a trap has been set will cause the).2 F
-F3(wait)2.827 E F0 -.2(bu)2.827 G .327(iltin to re-).2 F
-(turn immediately with an e)108 230.4 Q
+F1(wait)2.827 E F0 -.2(bu)2.827 G .327(iltin to re-).2 F
+(turn immediately with an e)108 177.6 Q
 (xit status greater than 128, immediately after which the trap is e)-.15
 E -.15(xe)-.15 G(cuted.).15 E .499(When job control is not enabled, and)
-108 247.2 R F3(bash)2.998 E F0 .498(is w)2.998 F .498(aiting for a fore)
+108 194.4 R F1(bash)2.998 E F0 .498(is w)2.998 F .498(aiting for a fore)
 -.1 F .498(ground command to complete, the shell re-)-.15 F(cei)108
-259.2 Q -.15(ve)-.25 G 2.605(sk).15 G -.15(ey)-2.705 G .105
-(board-generated signals such as).15 F F1(SIGINT)2.605 E F0 .105
-(\(usually generated by)2.355 F F3(^C)2.605 E F0 2.605(\)t)C .105
+206.4 Q -.15(ve)-.25 G 2.605(sk).15 G -.15(ey)-2.705 G .105
+(board-generated signals such as).15 F F2(SIGINT)2.605 E F0 .105
+(\(usually generated by)2.355 F F1(^C)2.605 E F0 2.605(\)t)C .105
 (hat users commonly intend to)-2.605 F .424(send to that command.)108
-271.2 R .424(This happens because the shell and the command are in the \
-same process group as)5.424 F(the terminal, and)108 283.2 Q F3(^C)2.5 E
-F0(sends)2.5 E F1(SIGINT)2.5 E F0
-(to all processes in that process group.)2.25 E(When)108 300 Q F3(bash)
-3.8 E F0 1.3(is running without job control enabled and recei)3.8 F -.15
-(ve)-.25 G(s).15 E F1(SIGINT)3.8 E F0 1.3(while w)3.55 F 1.3
-(aiting for a fore)-.1 F(ground)-.15 E .81(command, it w)108 312 R .81
+218.4 R .424(This happens because the shell and the command are in the \
+same process group as)5.424 F(the terminal, and)108 230.4 Q F1(^C)2.5 E
+F0(sends)2.5 E F2(SIGINT)2.5 E F0
+(to all processes in that process group.)2.25 E(When)108 247.2 Q F1
+(bash)3.8 E F0 1.3(is running without job control enabled and recei)3.8
+F -.15(ve)-.25 G(s).15 E F2(SIGINT)3.8 E F0 1.3(while w)3.55 F 1.3
+(aiting for a fore)-.1 F(ground)-.15 E .81(command, it w)108 259.2 R .81
 (aits until that fore)-.1 F .81
 (ground command terminates and then decides what to do about the)-.15 F
-F1(SIG-)3.309 E(INT)108 324 Q F2(:)A F0(1.)108 340.8 Q .002
-(If the command terminates due to the)144 340.8 R F1(SIGINT)2.502 E F2
-(,)A F3(bash)2.252 E F0 .003
+F2(SIG-)3.309 E(INT)108 271.2 Q/F3 9/Times-Roman@0 SF(:)A F0(1.)108 288
+Q .002(If the command terminates due to the)144 288 R F2(SIGINT)2.502 E
+F3(,)A F1(bash)2.252 E F0 .003
 (concludes that the user meant to end the entire)2.502 F
-(script, and acts on the)144 352.8 Q F1(SIGINT)2.5 E F0
-(\(e.g., by running a)2.25 E F1(SIGINT)2.5 E F0(trap or e)2.25 E
-(xiting itself\);)-.15 E(2.)108 369.6 Q .289
-(If the command does not terminate due to)144 369.6 R F1(SIGINT)2.788 E
-F2(,)A F0 .288(the program handled the)2.538 F F1(SIGINT)2.788 E F0 .288
-(itself and did)2.538 F .728(not treat it as a f)144 381.6 R .728
-(atal signal.)-.1 F .728(In that case,)5.728 F F3(bash)3.228 E F0 .728
-(does not treat)3.228 F F1(SIGINT)3.228 E F0 .728(as a f)2.978 F .728
+(script, and acts on the)144 300 Q F2(SIGINT)2.5 E F0
+(\(e.g., by running a)2.25 E F2(SIGINT)2.5 E F0(trap or e)2.25 E
+(xiting itself\);)-.15 E(2.)108 316.8 Q .289
+(If the command does not terminate due to)144 316.8 R F2(SIGINT)2.788 E
+F3(,)A F0 .288(the program handled the)2.538 F F2(SIGINT)2.788 E F0 .288
+(itself and did)2.538 F .728(not treat it as a f)144 328.8 R .728
+(atal signal.)-.1 F .728(In that case,)5.728 F F1(bash)3.228 E F0 .728
+(does not treat)3.228 F F2(SIGINT)3.228 E F0 .728(as a f)2.978 F .728
 (atal signal, either)-.1 F 3.229(,i)-.4 G(n-)-3.229 E .772
-(stead assuming that the)144 393.6 R F1(SIGINT)3.272 E F0 -.1(wa)3.022 G
+(stead assuming that the)144 340.8 R F2(SIGINT)3.272 E F0 -.1(wa)3.022 G
 3.272(su).1 G .771(sed as part of the program')-3.272 F 3.271(sn)-.55 G
 .771(ormal operation \(e.g., emacs)-3.271 F .409
 (uses it to abort editing commands\) or deliberately discarded.)144
-405.6 R(Ho)5.409 E(we)-.25 E -.15(ve)-.25 G -.4(r,).15 G F3(bash)3.309 E
+352.8 R(Ho)5.409 E(we)-.25 E -.15(ve)-.25 G -.4(r,).15 G F1(bash)3.309 E
 F0 .41(will run an)2.91 F 2.91(yt)-.15 G .41(rap set)-2.91 F(on)144
-417.6 Q F1(SIGINT)3.789 E F2(,)A F0 1.289(as it does with an)3.539 F
+364.8 Q F2(SIGINT)3.789 E F3(,)A F0 1.289(as it does with an)3.539 F
 3.789(yo)-.15 G 1.288(ther trapped signal it recei)-3.789 F -.15(ve)-.25
 G 3.788(sw).15 G 1.288(hile it is w)-3.788 F 1.288(aiting for the fore-)
--.1 F(ground command to complete, for compatibility)144 429.6 Q(.)-.65 E
-/F4 10.95/Times-Bold@0 SF(JOB CONTR)72 446.4 Q(OL)-.329 E/F5 10
-/Times-Italic@0 SF -.25(Jo)108 458.4 S 3.368(bc).25 G(ontr)-3.368 E(ol)
+-.1 F(ground command to complete, for compatibility)144 376.8 Q(.)-.65 E
+/F4 10.95/Times-Bold@0 SF(JOB CONTR)72 393.6 Q(OL)-.329 E/F5 10
+/Times-Italic@0 SF -.25(Jo)108 405.6 S 3.368(bc).25 G(ontr)-3.368 E(ol)
 -.45 E F0 .868(refers to the ability to selecti)3.878 F -.15(ve)-.25 G
 .868(ly stop \().15 F F5(suspend)A F0 3.368(\)t)C .868(he e)-3.368 F
 -.15(xe)-.15 G .868(cution of processes and continue \().15 F F5 -.37
-(re)C(-).37 E(sume)108 470.4 Q F0 2.665(\)t)C .165(heir e)-2.665 F -.15
+(re)C(-).37 E(sume)108 417.6 Q F0 2.665(\)t)C .165(heir e)-2.665 F -.15
 (xe)-.15 G .165(cution at a later point.).15 F 2.665(Au)5.165 G .165
 (ser typically emplo)-2.665 F .165(ys this f)-.1 F .164
 (acility via an interacti)-.1 F .464 -.15(ve i)-.25 H(nterf).15 E .164
-(ace sup-)-.1 F(plied jointly by the operating system k)108 482.4 Q
+(ace sup-)-.1 F(plied jointly by the operating system k)108 429.6 Q
 (ernel')-.1 E 2.5(st)-.55 G(erminal dri)-2.5 E -.15(ve)-.25 G 2.5(ra).15
-G(nd)-2.5 E F3(bash)2.5 E F0(.)A .784(The shell associates a)108 499.2 R
+G(nd)-2.5 E F1(bash)2.5 E F0(.)A .784(The shell associates a)108 446.4 R
 F5(job)5.024 E F0 .784(with each pipeline.)3.514 F .784(It k)5.784 F
 .785(eeps a table of currently e)-.1 F -.15(xe)-.15 G .785
-(cuting jobs, which may be).15 F .325(listed with the)108 511.2 R F3
-(jobs)2.825 E F0 2.825(command. When)2.825 F F3(bash)2.825 E F0 .325
+(cuting jobs, which may be).15 F .325(listed with the)108 458.4 R F1
+(jobs)2.825 E F0 2.825(command. When)2.825 F F1(bash)2.825 E F0 .325
 (starts a job asynchronously \(in the)2.825 F F5(bac)3.094 E(kgr)-.2 E
-(ound)-.45 E F0 .324(\), it prints a line).77 F(that looks lik)108 523.2
-Q(e:)-.1 E([1] 25647)144 540 Q .241(indicating that this job is job num\
-ber 1 and that the process ID of the last process in the pipeline assoc\
-iated)108 556.8 R .733(with this job is 25647.)108 568.8 R .732
+(ound)-.45 E F0 .324(\), it prints a line).77 F(that looks lik)108 470.4
+Q(e:)-.1 E([1] 25647)144 487.2 Q .241(indicating that this job is job n\
+umber 1 and that the process ID of the last process in the pipeline ass\
+ociated)108 504 R .733(with this job is 25647.)108 516 R .732
 (All of the processes in a single pipeline are members of the same job)
-5.733 F(.)-.4 E F3(Bash)5.732 E F0(uses)3.232 E(the)108 580.8 Q F5(job)
+5.733 F(.)-.4 E F1(Bash)5.732 E F0(uses)3.232 E(the)108 528 Q F5(job)
 4.24 E F0(abstraction as the basis for job control.)2.73 E 1.981 -.8
-(To f)108 597.6 T .382(acilitate the implementation of the user interf)
+(To f)108 544.8 T .382(acilitate the implementation of the user interf)
 .7 F .382(ace to job control, the operating system maintains the no-)-.1
-F 1.538(tion of a)108 609.6 R F5(curr)4.038 E 1.538(ent terminal pr)-.37
+F 1.538(tion of a)108 556.8 R F5(curr)4.038 E 1.538(ent terminal pr)-.37
 F 1.537(ocess gr)-.45 F 1.537(oup ID)-.45 F F0 6.537(.M)C 1.537
 (embers of this process group \(processes whose process)-6.537 F .023
 (group ID is equal to the current terminal process group ID\) recei)108
-621.6 R .323 -.15(ve k)-.25 H -.15(ey).05 G .023
-(board-generated signals such as).15 F F1(SIG-)2.523 E(INT)108 633.6 Q
-F2(.)A F0 1.215(These processes are said to be in the)5.716 F F5(for)
+568.8 R .323 -.15(ve k)-.25 H -.15(ey).05 G .023
+(board-generated signals such as).15 F F2(SIG-)2.523 E(INT)108 580.8 Q
+F3(.)A F0 1.215(These processes are said to be in the)5.716 F F5(for)
 5.685 E -.4(eg)-.37 G -.45(ro).4 G(und).45 E F0(.).77 E F5(Bac)6.795 E
 (kgr)-.2 E(ound)-.45 E F0 1.215(processes are those whose process)4.485
-F .145(group ID dif)108 645.6 R .145(fers from the terminal')-.25 F .146
+F .145(group ID dif)108 592.8 R .145(fers from the terminal')-.25 F .146
 (s; such processes are immune to k)-.55 F -.15(ey)-.1 G .146
 (board-generated signals.).15 F .146(Only fore-)5.146 F .16
-(ground processes are allo)108 657.6 R .16(wed to read from or)-.25 F
+(ground processes are allo)108 604.8 R .16(wed to read from or)-.25 F
 2.66(,i)-.4 G 2.66(ft)-2.66 G .16(he user so speci\214es with)-2.66 F/F6
 10/Courier@0 SF .16(stty tostop)2.66 F F0 2.66(,w)C .16(rite to the ter)
--2.66 F(-)-.2 E 3.051(minal. Background)108 669.6 R .551
+-2.66 F(-)-.2 E 3.051(minal. Background)108 616.8 R .551
 (processes which attempt to read from \(write to when)3.051 F F6 .551
 (stty tostop)3.051 F F0 .552(is in ef)3.052 F .552(fect\) the)-.25 F
-.718(terminal are sent a)108 681.6 R F1 .718(SIGTTIN \(SIGTT)3.218 F
+.718(terminal are sent a)108 628.8 R F2 .718(SIGTTIN \(SIGTT)3.218 F
 (OU\))-.162 E F0 .718(signal by the k)2.968 F(ernel')-.1 E 3.217(st)-.55
 G .717(erminal dri)-3.217 F -.15(ve)-.25 G 1.517 -.4(r, w).15 H .717
-(hich, unless caught, sus-).4 F(pends the process.)108 693.6 Q 1.087
-(If the operating system on which)108 710.4 R F3(bash)3.587 E F0 1.088
-(is running supports job control,)3.588 F F3(bash)3.588 E F0 1.088
-(contains f)3.588 F 1.088(acilities to use it.)-.1 F -.8(Ty)108 722.4 S
+(hich, unless caught, sus-).4 F(pends the process.)108 640.8 Q 1.087
+(If the operating system on which)108 657.6 R F1(bash)3.587 E F0 1.088
+(is running supports job control,)3.588 F F1(bash)3.588 E F0 1.088
+(contains f)3.588 F 1.088(acilities to use it.)-.1 F -.8(Ty)108 669.6 S
 .302(ping the).8 F F5(suspend)3.142 E F0 .302(character \(typically)
-3.572 F F3(^Z)2.801 E F0 2.801(,C)C .301
+3.572 F F1(^Z)2.801 E F0 2.801(,C)C .301
 (ontrol-Z\) while a process is running causes that process to be)-2.801
-F(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(40)197.335 E 0 Cg EP
+F 2.142(stopped and returns control to)108 681.6 R F1(bash)4.642 E F0
+7.142(.T)C 2.142(yping the)-7.942 F F5 2.142(delayed suspend)4.992 F F0
+2.143(character \(typically)5.413 F F1(^Y)4.643 E F0 4.643(,C)C
+(ontrol-Y\))-4.643 E .021(causes the process to be stopped when it atte\
+mpts to read input from the terminal, and control to be returned)108
+693.6 R(to)108 705.6 Q F1(bash)3.392 E F0 5.892(.T)C .892
+(he user may then manipulate the state of this job, using the)-5.892 F
+F1(bg)3.392 E F0 .892(command to continue it in the)3.392 F .17
+(background, the)108 717.6 R F1(fg)2.67 E F0 .17
+(command to continue it in the fore)2.67 F .17(ground, or the)-.15 F F1
+(kill)2.67 E F0 .17(command to kill it.)2.67 F(A)5.17 E F1(^Z)2.67 E F0
+(tak)2.67 E .17(es ef-)-.1 F 2.679(fect immediately)108 729.6 R 5.179
+(,a)-.65 G 2.679(nd has the additional side ef)-5.179 F 2.68
+(fect of causing pending output and typeahead to be)-.25 F(GNU Bash 5.2)
+72 768 Q(2023 May 23)148.175 E(40)197.335 E 0 Cg EP
 %%Page: 41 41
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 2.142
-(stopped and returns control to)108 84 R/F1 10/Times-Bold@0 SF(bash)
-4.642 E F0 7.142(.T)C 2.142(yping the)-7.942 F/F2 10/Times-Italic@0 SF
-2.142(delayed suspend)4.992 F F0 2.143(character \(typically)5.413 F F1
-(^Y)4.643 E F0 4.643(,C)C(ontrol-Y\))-4.643 E .021(causes the process t\
-o be stopped when it attempts to read input from the terminal, and cont\
-rol to be returned)108 96 R(to)108 108 Q F1(bash)3.392 E F0 5.892(.T)C
-.892(he user may then manipulate the state of this job, using the)-5.892
-F F1(bg)3.392 E F0 .892(command to continue it in the)3.392 F .17
-(background, the)108 120 R F1(fg)2.67 E F0 .17
-(command to continue it in the fore)2.67 F .17(ground, or the)-.15 F F1
-(kill)2.67 E F0 .17(command to kill it.)2.67 F(A)5.17 E F1(^Z)2.67 E F0
-(tak)2.67 E .17(es ef-)-.1 F 1.418(fect immediately)108 132 R 3.918(,a)
--.65 G 1.418(nd has the additional side ef)-3.918 F 1.418
-(fect of causing pending output and typeahead to be dis-)-.25 F(carded.)
-108 144 Q .777(There are a number of w)108 160.8 R .777
-(ays to refer to a job in the shell.)-.1 F .777(The character)5.777 F F1
-(%)3.277 E F0 .777(introduces a job speci\214cation)3.277 F(\()108 172.8
-Q F2(jobspec)A F0 3.457(\). Job)B(number)3.457 E F2(n)3.817 E F0 .957
-(may be referred to as)3.697 F F1(%n)3.457 E F0 5.957(.A)C .957
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(discarded.)108 84
+Q .777(There are a number of w)108 100.8 R .777
+(ays to refer to a job in the shell.)-.1 F .777(The character)5.777 F/F1
+10/Times-Bold@0 SF(%)3.277 E F0 .777(introduces a job speci\214cation)
+3.277 F(\()108 112.8 Q/F2 10/Times-Italic@0 SF(jobspec)A F0 3.457
+(\). Job)B(number)3.457 E F2(n)3.817 E F0 .957(may be referred to as)
+3.697 F F1(%n)3.457 E F0 5.957(.A)C .957
 (job may also be referred to using a pre\214x of the)-2.5 F .59(name us\
 ed to start it, or using a substring that appears in its command line.)
-108 184.8 R -.15(Fo)5.59 G 3.09(re).15 G(xample,)-3.24 E F1(%ce)3.09 E
+108 124.8 R -.15(Fo)5.59 G 3.09(re).15 G(xample,)-3.24 E F1(%ce)3.09 E
 F0 .59(refers to a)3.09 F .385(stopped job whose command name be)108
-196.8 R .385(gins with)-.15 F F1(ce)2.885 E F0 5.385(.I)C 2.885(fap)
+136.8 R .385(gins with)-.15 F F1(ce)2.885 E F0 5.385(.I)C 2.885(fap)
 -5.385 G .385(re\214x matches more than one job,)-2.885 F F1(bash)2.885
-E F0 .385(reports an)2.885 F(error)108 208.8 Q 5.194(.U)-.55 G(sing)
+E F0 .385(reports an)2.885 F(error)108 148.8 Q 5.194(.U)-.55 G(sing)
 -5.194 E F1(%?ce)2.694 E F0 2.694(,o)C 2.694(nt)-2.694 G .194
 (he other hand, refers to an)-2.694 F 2.694(yj)-.15 G .194
 (ob containing the string)-2.694 F F1(ce)2.694 E F0 .194
 (in its command line.)2.694 F .194(If the)5.194 F .306
-(substring matches more than one job,)108 220.8 R F1(bash)2.806 E F0
+(substring matches more than one job,)108 160.8 R F1(bash)2.806 E F0
 .306(reports an error)2.806 F 5.306(.T)-.55 G .306(he symbols)-5.306 F
 F1(%%)2.806 E F0(and)2.806 E F1(%+)2.806 E F0 .307(refer to the shell')
-2.806 F(s)-.55 E .133(notion of the)108 232.8 R F2(curr)2.833 E .133
+2.806 F(s)-.55 E .133(notion of the)108 172.8 R F2(curr)2.833 E .133
 (ent job)-.37 F F0 2.633(,w).23 G .133
 (hich is the last job stopped while it w)-2.633 F .133(as in the fore)
 -.1 F .132(ground or started in the back-)-.15 F 2.575(ground. The)108
-244.8 R F2(pr)3.825 E -.15(ev)-.37 G .075(ious job).15 F F0 .075
+184.8 R F2(pr)3.825 E -.15(ev)-.37 G .075(ious job).15 F F0 .075
 (may be referenced using)2.805 F F1<25ad>2.575 E F0 5.075(.I)C 2.575(ft)
 -5.075 G .076(here is only a single job,)-2.575 F F1(%+)2.576 E F0(and)
 2.576 E F1<25ad>2.576 E F0 .076(can both)2.576 F .317
-(be used to refer to that job)108 256.8 R 5.317(.I)-.4 G 2.817(no)-5.317
+(be used to refer to that job)108 196.8 R 5.317(.I)-.4 G 2.817(no)-5.317
 G .317(utput pertaining to jobs \(e.g., the output of the)-2.817 F F1
 (jobs)2.817 E F0 .317(command\), the current)2.817 F .032(job is al)108
-268.8 R -.1(wa)-.1 G .033(ys \215agged with a).1 F F1(+)2.533 E F0 2.533
+208.8 R -.1(wa)-.1 G .033(ys \215agged with a).1 F F1(+)2.533 E F0 2.533
 (,a)C .033(nd the pre)-2.533 F .033(vious job with a)-.25 F F1<ad>2.533
 E F0 5.033(.A)C .033(single % \(with no accompan)-2.5 F .033
 (ying job speci-)-.15 F(\214cation\) also refers to the current job)108
-280.8 Q(.)-.4 E .444
-(Simply naming a job can be used to bring it into the fore)108 297.6 R
+220.8 Q(.)-.4 E .444
+(Simply naming a job can be used to bring it into the fore)108 237.6 R
 (ground:)-.15 E F1(%1)2.943 E F0 .443(is a synon)2.943 F .443(ym for)
 -.15 F F1 -.63(``)2.943 G .443(fg %1').63 F(')-.63 E F0 2.943(,b)C
 (ringing)-2.943 E 1.472(job 1 from the background into the fore)108
-309.6 R 3.972(ground. Similarly)-.15 F(,)-.65 E F1 -.63(``)3.973 G 1.473
+249.6 R 3.972(ground. Similarly)-.15 F(,)-.65 E F1 -.63(``)3.973 G 1.473
 (%1 &').63 F(')-.63 E F0 1.473(resumes job 1 in the background,)3.973 F
-(equi)108 321.6 Q -.25(va)-.25 G(lent to).25 E F1 -.63(``)2.5 G(bg %1')
-.63 E(')-.63 E F0(.)A .131(The shell learns immediately whene)108 338.4
+(equi)108 261.6 Q -.25(va)-.25 G(lent to).25 E F1 -.63(``)2.5 G(bg %1')
+.63 E(')-.63 E F0(.)A .131(The shell learns immediately whene)108 278.4
 R -.15(ve)-.25 G 2.631(raj).15 G .131(ob changes state.)-2.631 F
 (Normally)5.131 E(,)-.65 E F1(bash)2.631 E F0 -.1(wa)2.63 G .13
 (its until it is about to print a).1 F .157
-(prompt before reporting changes in a job')108 350.4 R 2.657(ss)-.55 G
+(prompt before reporting changes in a job')108 290.4 R 2.657(ss)-.55 G
 .157(tatus so as to not interrupt an)-2.657 F 2.658(yo)-.15 G .158
 (ther output.)-2.658 F .158(If the)5.158 F F1<ad62>2.658 E F0 .158
-(option to)2.658 F(the)108 362.4 Q F1(set)2.648 E F0 -.2(bu)2.648 G .148
+(option to)2.658 F(the)108 302.4 Q F1(set)2.648 E F0 -.2(bu)2.648 G .148
 (iltin command is enabled,).2 F F1(bash)2.648 E F0 .148
 (reports such changes immediately)2.648 F 5.147(.A)-.65 G .447 -.15
 (ny t)-5.147 H .147(rap on).15 F/F3 9/Times-Bold@0 SF(SIGCHLD)2.647 E F0
 .147(is e)2.397 F -.15(xe)-.15 G(-).15 E(cuted for each child that e)108
-374.4 Q(xits.)-.15 E .032(If an attempt to e)108 391.2 R(xit)-.15 E F1
+314.4 Q(xits.)-.15 E .032(If an attempt to e)108 331.2 R(xit)-.15 E F1
 (bash)2.532 E F0 .032(is made while jobs are stopped \(or)2.532 F 2.533
 (,i)-.4 G 2.533(ft)-2.533 G(he)-2.533 E F1(checkjobs)2.533 E F0 .033
-(shell option has been enabled)2.533 F 1.003(using the)108 403.2 R F1
+(shell option has been enabled)2.533 F 1.003(using the)108 343.2 R F1
 (shopt)3.503 E F0 -.2(bu)3.503 G 1.003
 (iltin, running\), the shell prints a w).2 F 1.002
 (arning message, and, if the)-.1 F F1(checkjobs)3.502 E F0 1.002
 (option is en-)3.502 F .955(abled, lists the jobs and their statuses.)
-108 415.2 R(The)5.955 E F1(jobs)3.455 E F0 .955
+108 355.2 R(The)5.955 E F1(jobs)3.455 E F0 .955
 (command may then be used to inspect their status.)3.455 F .956(If a)
-5.956 F .604(second attempt to e)108 427.2 R .604
+5.956 F .604(second attempt to e)108 367.2 R .604
 (xit is made without an interv)-.15 F .604
 (ening command, the shell does not print another w)-.15 F(arning,)-.1 E
-(and an)108 439.2 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E
-.644(When the shell is w)108 456 R .644
+(and an)108 379.2 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E
+.644(When the shell is w)108 396 R .644
 (aiting for a job or process using the)-.1 F F1(wait)3.145 E F0 -.2(bu)
 3.145 G .645(iltin, and job control is enabled,).2 F F1(wait)3.145 E F0
-(will)3.145 E .282(return when the job changes state. The)108 468 R F1
+(will)3.145 E .282(return when the job changes state. The)108 408 R F1
 <ad66>2.782 E F0 .282(option causes)2.782 F F1(wait)2.782 E F0 .282
 (to w)2.782 F .282(ait until the job or process terminates be-)-.1 F
-(fore returning.)108 480 Q/F4 10.95/Times-Bold@0 SF(PR)72 496.8 Q
-(OMPTING)-.329 E F0 .644(When e)108 508.8 R -.15(xe)-.15 G .644
+(fore returning.)108 420 Q/F4 10.95/Times-Bold@0 SF(PR)72 436.8 Q
+(OMPTING)-.329 E F0 .644(When e)108 448.8 R -.15(xe)-.15 G .644
 (cuting interacti).15 F -.15(ve)-.25 G(ly).15 E(,)-.65 E F1(bash)3.144 E
 F0 .645(displays the primary prompt)3.145 F F3(PS1)3.145 E F0 .645
 (when it is ready to read a command,)2.895 F .428
-(and the secondary prompt)108 520.8 R F3(PS2)2.928 E F0 .427
+(and the secondary prompt)108 460.8 R F3(PS2)2.928 E F0 .427
 (when it needs more input to complete a command.)2.678 F F1(Bash)5.427 E
 F0(displays)2.927 E F3(PS0)2.927 E F0(after)2.677 E .037
-(it reads a command b)108 532.8 R .037(ut before e)-.2 F -.15(xe)-.15 G
+(it reads a command b)108 472.8 R .037(ut before e)-.2 F -.15(xe)-.15 G
 .037(cuting it.).15 F F1(Bash)5.037 E F0(displays)2.537 E F3(PS4)2.538 E
 F0 .038(as described abo)2.288 F .338 -.15(ve b)-.15 H .038
-(efore tracing each com-).15 F 1.122(mand when the)108 544.8 R F1<ad78>
+(efore tracing each com-).15 F 1.122(mand when the)108 484.8 R F1<ad78>
 3.622 E F0 1.122(option is enabled.)3.622 F F1(Bash)6.122 E F0(allo)
 3.622 E 1.122(ws these prompt strings to be customized by inserting a)
 -.25 F(number of backslash-escaped special characters that are decoded \
-as follo)108 556.8 Q(ws:)-.25 E F1(\\a)144 568.8 Q F0
-(an ASCII bell character \(07\))180 568.8 Q F1(\\d)144 580.8 Q F0
-(the date in "W)180 580.8 Q(eekday Month Date" format \(e.g., "T)-.8 E
-(ue May 26"\))-.45 E F1(\\D{)144 592.8 Q F2(format)A F1(})A F0(the)180
-604.8 Q F2(format)3.926 E F0 1.426(is passed to)3.926 F F2(strftime)
+as follo)108 496.8 Q(ws:)-.25 E F1(\\a)144 508.8 Q F0
+(an ASCII bell character \(07\))180 508.8 Q F1(\\d)144 520.8 Q F0
+(the date in "W)180 520.8 Q(eekday Month Date" format \(e.g., "T)-.8 E
+(ue May 26"\))-.45 E F1(\\D{)144 532.8 Q F2(format)A F1(})A F0(the)180
+544.8 Q F2(format)3.926 E F0 1.426(is passed to)3.926 F F2(strftime)
 3.926 E F0 1.427
 (\(3\) and the result is inserted into the prompt string; an)B(empty)180
-616.8 Q F2(format)2.5 E F0
+556.8 Q F2(format)2.5 E F0
 (results in a locale-speci\214c time representation.)2.5 E
-(The braces are required)5 E F1(\\e)144 628.8 Q F0
-(an ASCII escape character \(033\))180 628.8 Q F1(\\h)144 640.8 Q F0
-(the hostname up to the \214rst `.)180 640.8 Q(')-.7 E F1(\\H)144 652.8
-Q F0(the hostname)180 652.8 Q F1(\\j)144 664.8 Q F0
-(the number of jobs currently managed by the shell)180 664.8 Q F1(\\l)
-144 676.8 Q F0(the basename of the shell')180 676.8 Q 2.5(st)-.55 G
-(erminal de)-2.5 E(vice name)-.25 E F1(\\n)144 688.8 Q F0(ne)180 688.8 Q
-(wline)-.25 E F1(\\r)144 700.8 Q F0(carriage return)180 700.8 Q F1(\\s)
-144 712.8 Q F0(the name of the shell, the basename of)180 712.8 Q F1($0)
-2.5 E F0(\(the portion follo)2.5 E(wing the \214nal slash\))-.25 E
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(41)197.335 E 0 Cg EP
+(The braces are required)5 E F1(\\e)144 568.8 Q F0
+(an ASCII escape character \(033\))180 568.8 Q F1(\\h)144 580.8 Q F0
+(the hostname up to the \214rst `.)180 580.8 Q(')-.7 E F1(\\H)144 592.8
+Q F0(the hostname)180 592.8 Q F1(\\j)144 604.8 Q F0
+(the number of jobs currently managed by the shell)180 604.8 Q F1(\\l)
+144 616.8 Q F0(the basename of the shell')180 616.8 Q 2.5(st)-.55 G
+(erminal de)-2.5 E(vice name)-.25 E F1(\\n)144 628.8 Q F0(ne)180 628.8 Q
+(wline)-.25 E F1(\\r)144 640.8 Q F0(carriage return)180 640.8 Q F1(\\s)
+144 652.8 Q F0(the name of the shell, the basename of)180 652.8 Q F1($0)
+2.5 E F0(\(the portion follo)2.5 E(wing the \214nal slash\))-.25 E F1
+(\\t)144 664.8 Q F0(the current time in 24-hour HH:MM:SS format)180
+664.8 Q F1(\\T)144 676.8 Q F0
+(the current time in 12-hour HH:MM:SS format)180 676.8 Q F1(\\@)144
+688.8 Q F0(the current time in 12-hour am/pm format)180 688.8 Q F1(\\A)
+144 700.8 Q F0(the current time in 24-hour HH:MM format)180 700.8 Q F1
+(\\u)144 712.8 Q F0(the username of the current user)180 712.8 Q
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(41)197.335 E 0 Cg EP
 %%Page: 42 42
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
 (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
-SF(\\t)144 84 Q F0(the current time in 24-hour HH:MM:SS format)180 84 Q
-F1(\\T)144 96 Q F0(the current time in 12-hour HH:MM:SS format)180 96 Q
-F1(\\@)144 108 Q F0(the current time in 12-hour am/pm format)180 108 Q
-F1(\\A)144 120 Q F0(the current time in 24-hour HH:MM format)180 120 Q
-F1(\\u)144 132 Q F0(the username of the current user)180 132 Q F1(\\v)
-144 144 Q F0(the v)180 144 Q(ersion of)-.15 E F1(bash)2.5 E F0
-(\(e.g., 2.00\))2.5 E F1(\\V)144 156 Q F0(the release of)180 156 Q F1
+SF(\\v)144 84 Q F0(the v)180 84 Q(ersion of)-.15 E F1(bash)2.5 E F0
+(\(e.g., 2.00\))2.5 E F1(\\V)144 96 Q F0(the release of)180 96 Q F1
 (bash)2.5 E F0 2.5(,v)C(ersion + patch le)-2.65 E -.15(ve)-.25 G 2.5
-(l\().15 G(e.g., 2.00.0\))-2.5 E F1(\\w)144 168 Q F0 .12(the v)180 168 R
+(l\().15 G(e.g., 2.00.0\))-2.5 E F1(\\w)144 108 Q F0 .12(the v)180 108 R
 .119(alue of the)-.25 F F1(PWD)2.619 E F0 .119(shell v)2.619 F .119
 (ariable \()-.25 F F1($PWD)A F0 .119(\), with)B/F2 9/Times-Bold@0 SF
 ($HOME)2.619 E F0(abbre)2.369 E .119(viated with a tilde \(uses)-.25 F
-(the v)180 180 Q(alue of the)-.25 E F2(PR)2.5 E(OMPT_DIR)-.27 E(TRIM)
--.36 E F0 -.25(va)2.25 G(riable\)).25 E F1(\\W)144 192 Q F0
-(the basename of)180 192 Q F1($PWD)2.5 E F0 2.5(,w)C(ith)-2.5 E F2
-($HOME)2.5 E F0(abbre)2.25 E(viated with a tilde)-.25 E F1(\\!)144 204 Q
-F0(the history number of this command)180 204 Q F1(\\#)144 216 Q F0
-(the command number of this command)180 216 Q F1(\\$)144 228 Q F0
-(if the ef)180 228 Q(fecti)-.25 E .3 -.15(ve U)-.25 H(ID is 0, a).15 E
-F1(#)2.5 E F0 2.5(,o)C(therwise a)-2.5 E F1($)2.5 E(\\)144 240 Q/F3 10
+(the v)180 120 Q(alue of the)-.25 E F2(PR)2.5 E(OMPT_DIR)-.27 E(TRIM)
+-.36 E F0 -.25(va)2.25 G(riable\)).25 E F1(\\W)144 132 Q F0
+(the basename of)180 132 Q F1($PWD)2.5 E F0 2.5(,w)C(ith)-2.5 E F2
+($HOME)2.5 E F0(abbre)2.25 E(viated with a tilde)-.25 E F1(\\!)144 144 Q
+F0(the history number of this command)180 144 Q F1(\\#)144 156 Q F0
+(the command number of this command)180 156 Q F1(\\$)144 168 Q F0
+(if the ef)180 168 Q(fecti)-.25 E .3 -.15(ve U)-.25 H(ID is 0, a).15 E
+F1(#)2.5 E F0 2.5(,o)C(therwise a)-2.5 E F1($)2.5 E(\\)144 180 Q/F3 10
 /Times-Italic@0 SF(nnn)A F0
-(the character corresponding to the octal number)180 240 Q F3(nnn)2.5 E
-F1(\\\\)144 252 Q F0 2.5(ab)180 252 S(ackslash)-2.5 E F1(\\[)144 264 Q
-F0(be)180 264 Q 1.257(gin a sequence of non-printing characters, which \
+(the character corresponding to the octal number)180 180 Q F3(nnn)2.5 E
+F1(\\\\)144 192 Q F0 2.5(ab)180 192 S(ackslash)-2.5 E F1(\\[)144 204 Q
+F0(be)180 204 Q 1.257(gin a sequence of non-printing characters, which \
 could be used to embed a terminal)-.15 F
-(control sequence into the prompt)180 276 Q F1(\\])144 288 Q F0
-(end a sequence of non-printing characters)180 288 Q .12
-(The command number and the history number are usually dif)108 304.8 R
+(control sequence into the prompt)180 216 Q F1(\\])144 228 Q F0
+(end a sequence of non-printing characters)180 228 Q .12
+(The command number and the history number are usually dif)108 244.8 R
 .119(ferent: the history number of a command is its)-.25 F .547(positio\
 n in the history list, which may include commands restored from the his\
-tory \214le \(see)108 316.8 R F2(HIST)3.047 E(OR)-.162 E(Y)-.315 E F0
-(be-)2.797 E(lo)108 328.8 Q .354(w\), while the command number is the p\
+tory \214le \(see)108 256.8 R F2(HIST)3.047 E(OR)-.162 E(Y)-.315 E F0
+(be-)2.797 E(lo)108 268.8 Q .354(w\), while the command number is the p\
 osition in the sequence of commands e)-.25 F -.15(xe)-.15 G .354
-(cuted during the current).15 F .822(shell session.)108 340.8 R .822
+(cuted during the current).15 F .822(shell session.)108 280.8 R .822
 (After the string is decoded, it is e)5.822 F .822
 (xpanded via parameter e)-.15 F .823(xpansion, command substitution,)
--.15 F .683(arithmetic e)108 352.8 R .683(xpansion, and quote remo)-.15
+-.15 F .683(arithmetic e)108 292.8 R .683(xpansion, and quote remo)-.15
 F -.25(va)-.15 G .683(l, subject to the v).25 F .682(alue of the)-.25 F
 F1(pr)3.182 E(omptv)-.18 E(ars)-.1 E F0 .682(shell option \(see the de-)
-3.182 F 1.197(scription of the)108 364.8 R F1(shopt)3.697 E F0 1.197
+3.182 F 1.197(scription of the)108 304.8 R F1(shopt)3.697 E F0 1.197
 (command under)3.697 F F2 1.197(SHELL B)3.697 F(UIL)-.09 E 1.197
 (TIN COMMANDS)-.828 F F0(belo)3.448 E 3.698(w\). This)-.25 F 1.198
 (can ha)3.698 F 1.498 -.15(ve u)-.2 H(nw).15 E(anted)-.1 E .322(side ef)
-108 376.8 R .322(fects if escaped portions of the string appear within \
+108 316.8 R .322(fects if escaped portions of the string appear within \
 command substitution or contain characters spe-)-.25 F(cial to w)108
-388.8 Q(ord e)-.1 E(xpansion.)-.15 E/F4 10.95/Times-Bold@0 SF(READLINE)
-72 405.6 Q F0 .15
+328.8 Q(ord e)-.1 E(xpansion.)-.15 E/F4 10.95/Times-Bold@0 SF(READLINE)
+72 345.6 Q F0 .15
 (This is the library that handles reading input when using an interacti)
-108 417.6 R .451 -.15(ve s)-.25 H .151(hell, unless the).15 F F1
-(\255\255noediting)2.651 E F0(option)2.651 E .385(is gi)108 429.6 R -.15
+108 357.6 R .451 -.15(ve s)-.25 H .151(hell, unless the).15 F F1
+(\255\255noediting)2.651 E F0(option)2.651 E .385(is gi)108 369.6 R -.15
 (ve)-.25 G 2.885(na).15 G 2.885(ts)-2.885 G .385(hell in)-2.885 F -.2
 (vo)-.4 G 2.885(cation. Line).2 F .385
 (editing is also used when using the)2.885 F F1<ad65>2.884 E F0 .384
 (option to the)2.884 F F1 -.18(re)2.884 G(ad).18 E F0 -.2(bu)2.884 G
-2.884(iltin. By).2 F(de-)2.884 E -.1(fa)108 441.6 S 1.406
+2.884(iltin. By).2 F(de-)2.884 E -.1(fa)108 381.6 S 1.406
 (ult, the line editing commands are similar to those of Emacs.).1 F
 3.907(Av)6.407 G 1.407(i-style line editing interf)-3.907 F 1.407
-(ace is also)-.1 F -.2(av)108 453.6 S 3.35(ailable. Line)-.05 F .85
+(ace is also)-.1 F -.2(av)108 393.6 S 3.35(ailable. Line)-.05 F .85
 (editing can be enabled at an)3.35 F 3.35(yt)-.15 G .85(ime using the)
 -3.35 F F1 .85(\255o emacs)3.35 F F0(or)3.35 E F1 .85(\255o vi)3.35 F F0
 .85(options to the)3.35 F F1(set)3.35 E F0 -.2(bu)3.35 G(iltin).2 E
-(\(see)108 465.6 Q F2 .762(SHELL B)3.262 F(UIL)-.09 E .762(TIN COMMANDS)
+(\(see)108 405.6 Q F2 .762(SHELL B)3.262 F(UIL)-.09 E .762(TIN COMMANDS)
 -.828 F F0(belo)3.012 E 3.262(w\). T)-.25 F 3.263(ot)-.8 G .763(urn of)
 -3.263 F 3.263(fl)-.25 G .763
 (ine editing after the shell is running, use the)-3.263 F F1(+o)3.263 E
-(emacs)108 477.6 Q F0(or)2.5 E F1(+o vi)2.5 E F0(options to the)2.5 E F1
-(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(Readline Notation)87 494.4 Q
+(emacs)108 417.6 Q F0(or)2.5 E F1(+o vi)2.5 E F0(options to the)2.5 E F1
+(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(Readline Notation)87 434.4 Q
 F0 .463(In this section, the Emacs-style notation is used to denote k)
-108 506.4 R -.15(ey)-.1 G(strok).15 E 2.963(es. Control)-.1 F -.1(ke)
+108 446.4 R -.15(ey)-.1 G(strok).15 E 2.963(es. Control)-.1 F -.1(ke)
 2.963 G .463(ys are denoted by C\255)-.05 F F3 -.1(ke)C(y)-.2 E F0(,)A
-1.152(e.g., C\255n means Control\255N.)108 518.4 R(Similarly)6.152 E(,)
+1.152(e.g., C\255n means Control\255N.)108 458.4 R(Similarly)6.152 E(,)
 -.65 E F3(meta)4.032 E F0 -.1(ke)3.913 G 1.153(ys are denoted by M\255)
 -.05 F F3 -.1(ke)C(y)-.2 E F0 3.653(,s)C 3.653(oM)-3.653 G 1.153
-(\255x means Meta\255X.)-3.653 F(\(On)6.153 E -.1(ke)108 530.4 S .831
+(\255x means Meta\255X.)-3.653 F(\(On)6.153 E -.1(ke)108 470.4 S .831
 (yboards without a)-.05 F F3(meta)3.711 E F0 -.1(ke)3.591 G 2.131 -.65
 (y, M)-.05 H<ad>.65 E F3(x)A F0 .831(means ESC)3.331 F F3(x)3.331 E F0
 3.331(,i)C .83(.e., press the Escape k)-3.331 F 1.13 -.15(ey t)-.1 H .83
 (hen the).15 F F3(x)4.1 E F0 -.1(ke)3.86 G 4.63 -.65(y. T)-.05 H .83
-(his mak).65 F(es)-.1 E .599(ESC the)108 542.4 R F3 .599(meta pr)3.099 F
+(his mak).65 F(es)-.1 E .599(ESC the)108 482.4 R F3 .599(meta pr)3.099 F
 (e\214x)-.37 E F0 5.599(.T)C .599(he combination M\255C\255)-5.599 F F3
 (x)A F0 .599(means ESC\255Control\255)3.099 F F3(x)A F0 3.099(,o)C 3.099
 (rp)-3.099 G .6(ress the Escape k)-3.099 F .9 -.15(ey t)-.1 H .6
-(hen hold).15 F(the Control k)108 554.4 Q .3 -.15(ey w)-.1 H
+(hen hold).15 F(the Control k)108 494.4 Q .3 -.15(ey w)-.1 H
 (hile pressing the).15 E F3(x)3.27 E F0 -.1(ke)3.03 G -.65(y.)-.05 G(\))
-.65 E .596(Readline commands may be gi)108 571.2 R -.15(ve)-.25 G 3.096
+.65 E .596(Readline commands may be gi)108 511.2 R -.15(ve)-.25 G 3.096
 (nn).15 G(umeric)-3.096 E F3(ar)3.426 E(guments)-.37 E F0 3.096(,w).27 G
 .596(hich normally act as a repeat count.)-3.096 F(Sometimes,)5.595 E
-(ho)108 583.2 Q(we)-.25 E -.15(ve)-.25 G 1.418 -.4(r, i).15 H 3.118(ti)
+(ho)108 523.2 Q(we)-.25 E -.15(ve)-.25 G 1.418 -.4(r, i).15 H 3.118(ti)
 .4 G 3.119(st)-3.118 G .619(he sign of the ar)-3.119 F .619
 (gument that is signi\214cant.)-.18 F -.15(Pa)5.619 G .619(ssing a ne)
 .15 F -.05(ga)-.15 G(ti).05 E .919 -.15(ve a)-.25 H -.18(rg).15 G .619
-(ument to a command that).18 F 1.019(acts in the forw)108 595.2 R 1.018
+(ument to a command that).18 F 1.019(acts in the forw)108 535.2 R 1.018
 (ard direction \(e.g.,)-.1 F F1(kill\255line)3.518 E F0 3.518(\)c)C
 1.018(auses that command to act in a backw)-3.518 F 1.018
-(ard direction.)-.1 F(Com-)6.018 E(mands whose beha)108 607.2 Q
+(ard direction.)-.1 F(Com-)6.018 E(mands whose beha)108 547.2 Q
 (vior with ar)-.2 E(guments de)-.18 E(viates from this are noted belo)
--.25 E -.65(w.)-.25 G .811(When a command is described as)108 624 R F3
+-.25 E -.65(w.)-.25 G .811(When a command is described as)108 564 R F3
 (killing)3.311 E F0(te)3.311 E .811(xt, the te)-.15 F .811
 (xt deleted is sa)-.15 F -.15(ve)-.2 G 3.311(df).15 G .812
 (or possible future retrie)-3.311 F -.25(va)-.25 G 3.312(l\().25 G F3
-(yank-)-3.312 E(ing)108 636 Q F0 2.529(\). The)B .029(killed te)2.529 F
+(yank-)-3.312 E(ing)108 576 Q F0 2.529(\). The)B .029(killed te)2.529 F
 .029(xt is sa)-.15 F -.15(ve)-.2 G 2.529(di).15 G 2.529(na)-2.529 G F3
 .029(kill ring)B F0 5.029(.C)C(onsecuti)-5.029 E .329 -.15(ve k)-.25 H
 .029(ills cause the te).15 F .029(xt to be accumulated into one unit,)
--.15 F .567(which can be yank)108 648 R .567(ed all at once.)-.1 F .567
+-.15 F .567(which can be yank)108 588 R .567(ed all at once.)-.1 F .567
 (Commands which do not kill te)5.567 F .567
 (xt separate the chunks of te)-.15 F .567(xt on the kill)-.15 F(ring.)
-108 660 Q F1(Readline Initialization)87 676.8 Q F0 .091(Readline is cus\
-tomized by putting commands in an initialization \214le \(the)108 688.8
+108 600 Q F1(Readline Initialization)87 616.8 Q F0 .091(Readline is cus\
+tomized by putting commands in an initialization \214le \(the)108 628.8
 R F3(inputr)2.591 E(c)-.37 E F0 2.591(\214le\). The)2.591 F .091
-(name of this \214le)2.591 F .572(is tak)108 700.8 R .573(en from the v)
+(name of this \214le)2.591 F .572(is tak)108 640.8 R .573(en from the v)
 -.1 F .573(alue of the)-.25 F F2(INPUTRC)3.073 E F0 -.25(va)2.823 G
 3.073(riable. If).25 F .573(that v)3.073 F .573
 (ariable is unset, the def)-.25 F .573(ault is)-.1 F F3(~/.inputr)2.573
 E(c)-.37 E F0 5.573(.I).31 G 3.073(ft)-5.573 G(hat)-3.073 E 3.062
-(\214le does)108 712.8 R .562(not e)3.062 F .562
+(\214le does)108 652.8 R .562(not e)3.062 F .562
 (xist or cannot be read, the ultimate def)-.15 F .562(ault is)-.1 F F3
 (/etc/inputr)4.212 E(c)-.37 E F0 5.561(.W).31 G .561
 (hen a program which uses the)-5.561 F .174(readline library starts up,\
- the initialization \214le is read, and the k)108 724.8 R .475 -.15
+ the initialization \214le is read, and the k)108 664.8 R .475 -.15
 (ey b)-.1 H .175(indings and v).15 F .175(ariables are set.)-.25 F .175
-(There are)5.175 F(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(42)
-197.335 E 0 Cg EP
+(There are)5.175 F .239(only a fe)108 676.8 R 2.739(wb)-.25 G .239
+(asic constructs allo)-2.739 F .239
+(wed in the readline initialization \214le.)-.25 F .238
+(Blank lines are ignored.)5.239 F .238(Lines be)5.238 F(gin-)-.15 E .553
+(ning with a)108 688.8 R F1(#)3.053 E F0 .554(are comments.)3.053 F .554
+(Lines be)5.554 F .554(ginning with a)-.15 F F1($)3.054 E F0 .554
+(indicate conditional constructs.)3.054 F .554(Other lines denote)5.554
+F -.1(ke)108 700.8 S 2.5(yb)-.05 G(indings and v)-2.5 E
+(ariable settings.)-.25 E .987(The def)108 717.6 R .987(ault k)-.1 F
+-.15(ey)-.1 G .987(-bindings may be changed with an).15 F F3(inputr)
+3.497 E(c)-.37 E F0 3.487(\214le. Other)3.797 F .987
+(programs that use this library may)3.487 F(add their o)108 729.6 Q
+(wn commands and bindings.)-.25 E(GNU Bash 5.2)72 768 Q(2023 May 23)
+148.175 E(42)197.335 E 0 Cg EP
 %%Page: 43 43
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .239(only a fe)108
-84 R 2.739(wb)-.25 G .239(asic constructs allo)-2.739 F .239
-(wed in the readline initialization \214le.)-.25 F .238
-(Blank lines are ignored.)5.239 F .238(Lines be)5.238 F(gin-)-.15 E .553
-(ning with a)108 96 R/F1 10/Times-Bold@0 SF(#)3.053 E F0 .554
-(are comments.)3.053 F .554(Lines be)5.554 F .554(ginning with a)-.15 F
-F1($)3.054 E F0 .554(indicate conditional constructs.)3.054 F .554
-(Other lines denote)5.554 F -.1(ke)108 108 S 2.5(yb)-.05 G
-(indings and v)-2.5 E(ariable settings.)-.25 E .987(The def)108 124.8 R
-.987(ault k)-.1 F -.15(ey)-.1 G .987(-bindings may be changed with an)
-.15 F/F2 10/Times-Italic@0 SF(inputr)3.497 E(c)-.37 E F0 3.487
-(\214le. Other)3.797 F .987(programs that use this library may)3.487 F
-(add their o)108 136.8 Q(wn commands and bindings.)-.25 E -.15(Fo)108
-153.6 S 2.5(re).15 G(xample, placing)-2.65 E(M\255Control\255u: uni)144
-170.4 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(or)108 182.4 Q
-(C\255Meta\255u: uni)144 194.4 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)
--.18 E(into the)108 206.4 Q F2(inputr)2.51 E(c)-.37 E F0 -.1(wo)2.81 G
-(uld mak).1 E 2.5(eM)-.1 G(\255C\255u e)-2.5 E -.15(xe)-.15 G
-(cute the readline command).15 E F2(univer)2.58 E(sal\255ar)-.1 E
-(gument)-.37 E F0(.).68 E 1.01(The follo)108 223.2 R 1.011
-(wing symbolic character names are recognized:)-.25 F F2 -.4(RU)3.511 G
-(BOUT).4 E F0(,)1.27 E F2(DEL)4.091 E F0(,).53 E F2(ESC)4.021 E F0(,).72
-E F2(LFD)4.091 E F0(,).28 E F2(NEWLINE)4.211 E F0(,).73 E F2(RET)4.141 E
-F0(,)1.27 E F2(RETURN)108.63 235.2 Q F0(,)1.1 E F2(SPC)2.83 E F0(,).72 E
-F2(SP)2.83 E -.3(AC)-.9 G(E).3 E F0 2.5(,a).73 G(nd)-2.5 E F2 -.5(TA)2.5
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.15(Fo)108 84 S
+2.5(re).15 G(xample, placing)-2.65 E(M\255Control\255u: uni)144 100.8 Q
+-.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(or)108 112.8 Q
+(C\255Meta\255u: uni)144 124.8 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)
+-.18 E(into the)108 136.8 Q/F1 10/Times-Italic@0 SF(inputr)2.51 E(c)-.37
+E F0 -.1(wo)2.81 G(uld mak).1 E 2.5(eM)-.1 G(\255C\255u e)-2.5 E -.15
+(xe)-.15 G(cute the readline command).15 E F1(univer)2.58 E(sal\255ar)
+-.1 E(gument)-.37 E F0(.).68 E 1.01(The follo)108 153.6 R 1.011
+(wing symbolic character names are recognized:)-.25 F F1 -.4(RU)3.511 G
+(BOUT).4 E F0(,)1.27 E F1(DEL)4.091 E F0(,).53 E F1(ESC)4.021 E F0(,).72
+E F1(LFD)4.091 E F0(,).28 E F1(NEWLINE)4.211 E F0(,).73 E F1(RET)4.141 E
+F0(,)1.27 E F1(RETURN)108.63 165.6 Q F0(,)1.1 E F1(SPC)2.83 E F0(,).72 E
+F1(SP)2.83 E -.3(AC)-.9 G(E).3 E F0 2.5(,a).73 G(nd)-2.5 E F1 -.5(TA)2.5
 G(B).5 E F0(.).27 E .209(In addition to command names, readline allo)108
-252 R .209(ws k)-.25 F -.15(ey)-.1 G 2.709(st).15 G 2.709(ob)-2.709 G
+182.4 R .209(ws k)-.25 F -.15(ey)-.1 G 2.709(st).15 G 2.709(ob)-2.709 G
 2.709(eb)-2.709 G .209(ound to a string that is inserted when the k)
--2.709 F .509 -.15(ey i)-.1 H(s).15 E(pressed \(a)108 264 Q F2(macr)2.5
-E(o)-.45 E F0(\).)A F1(Readline K)87 280.8 Q(ey Bindings)-.25 E F0 .366
-(The syntax for controlling k)108 292.8 R .666 -.15(ey b)-.1 H .366
-(indings in the).15 F F2(inputr)2.876 E(c)-.37 E F0 .366
-(\214le is simple.)3.176 F .366(All that is required is the name of the)
-5.366 F .264(command or the te)108 304.8 R .264(xt of a macro and a k)
--.15 F .564 -.15(ey s)-.1 H .264(equence to which it should be bound.)
-.15 F .263(The name may be speci-)5.264 F .138(\214ed in one of tw)108
-316.8 R 2.638(ow)-.1 G .138(ays: as a symbolic k)-2.738 F .438 -.15
-(ey n)-.1 H .138(ame, possibly with).15 F F2(Meta\255)2.638 E F0(or)
-2.638 E F2(Contr)2.638 E(ol\255)-.45 E F0(pre\214x)2.638 E .138
-(es, or as a k)-.15 F .439 -.15(ey s)-.1 H(e-).15 E(quence.)108 328.8 Q
-.161(When using the form)108 345.6 R F1 -.1(ke)2.661 G(yname).1 E F0(:)A
-F2(function\255name).833 E F0(or)2.661 E F2(macr)2.661 E(o)-.45 E F0(,)A
-F2 -.1(ke)2.661 G(yname)-.2 E F0 .16(is the name of a k)2.84 F .46 -.15
-(ey s)-.1 H .16(pelled out in Eng-).15 F 2.5(lish. F)108 357.6 R(or e)
--.15 E(xample:)-.15 E(Control-u: uni)144 381.6 Q -.15(ve)-.25 G
-(rsal\255ar).15 E(gument)-.18 E(Meta-Rubout: backw)144 393.6 Q
-(ard-kill-w)-.1 E(ord)-.1 E(Control-o: "> output")144 405.6 Q .698
-(In the abo)108 422.4 R .998 -.15(ve ex)-.15 H(ample,).15 E F2(C\255u)
-3.038 E F0 .698(is bound to the function)3.448 F F1(uni)3.198 E -.1(ve)
--.1 G(rsal\255ar).1 E(gument)-.1 E F0(,)A F2(M\255DEL)3.878 E F0 .698
-(is bound to the func-)3.728 F(tion)108 434.4 Q F1
-(backward\255kill\255w)2.759 E(ord)-.1 E F0 2.759(,a)C(nd)-2.759 E F2
+-2.709 F .509 -.15(ey i)-.1 H(s).15 E(pressed \(a)108 194.4 Q F1(macr)
+2.5 E(o)-.45 E F0(\).)A/F2 10/Times-Bold@0 SF(Readline K)87 211.2 Q
+(ey Bindings)-.25 E F0 .366(The syntax for controlling k)108 223.2 R
+.666 -.15(ey b)-.1 H .366(indings in the).15 F F1(inputr)2.876 E(c)-.37
+E F0 .366(\214le is simple.)3.176 F .366
+(All that is required is the name of the)5.366 F .264(command or the te)
+108 235.2 R .264(xt of a macro and a k)-.15 F .564 -.15(ey s)-.1 H .264
+(equence to which it should be bound.).15 F .263(The name may be speci-)
+5.264 F .138(\214ed in one of tw)108 247.2 R 2.638(ow)-.1 G .138
+(ays: as a symbolic k)-2.738 F .438 -.15(ey n)-.1 H .138
+(ame, possibly with).15 F F1(Meta\255)2.638 E F0(or)2.638 E F1(Contr)
+2.638 E(ol\255)-.45 E F0(pre\214x)2.638 E .138(es, or as a k)-.15 F .439
+-.15(ey s)-.1 H(e-).15 E(quence.)108 259.2 Q .161(When using the form)
+108 276 R F2 -.1(ke)2.661 G(yname).1 E F0(:)A F1(function\255name).833 E
+F0(or)2.661 E F1(macr)2.661 E(o)-.45 E F0(,)A F1 -.1(ke)2.661 G(yname)
+-.2 E F0 .16(is the name of a k)2.84 F .46 -.15(ey s)-.1 H .16
+(pelled out in Eng-).15 F 2.5(lish. F)108 288 R(or e)-.15 E(xample:)-.15
+E(Control-u: uni)144 312 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E
+(Meta-Rubout: backw)144 324 Q(ard-kill-w)-.1 E(ord)-.1 E
+(Control-o: "> output")144 336 Q .698(In the abo)108 352.8 R .998 -.15
+(ve ex)-.15 H(ample,).15 E F1(C\255u)3.038 E F0 .698
+(is bound to the function)3.448 F F2(uni)3.198 E -.1(ve)-.1 G
+(rsal\255ar).1 E(gument)-.1 E F0(,)A F1(M\255DEL)3.878 E F0 .698
+(is bound to the func-)3.728 F(tion)108 364.8 Q F2
+(backward\255kill\255w)2.759 E(ord)-.1 E F0 2.759(,a)C(nd)-2.759 E F1
 (C\255o)2.599 E F0 .258(is bound to run the macro e)2.939 F .258
 (xpressed on the right hand side \(that is, to)-.15 F(insert the te)108
-446.4 Q(xt)-.15 E/F3 10/Courier@0 SF 6(>o)2.5 G(utput)-6 E F0
-(into the line\).)2.5 E .055(In the second form,)108 463.2 R F1("k)2.555
-E(eyseq")-.1 E F0(:)A F2(function\255name).833 E F0(or)2.555 E F2(macr)
-2.555 E(o)-.45 E F0(,)A F1 -.1(ke)2.555 G(yseq).1 E F0(dif)2.556 E .056
-(fers from)-.25 F F1 -.1(ke)2.556 G(yname).1 E F0(abo)2.556 E .356 -.15
+376.8 Q(xt)-.15 E/F3 10/Courier@0 SF 6(>o)2.5 G(utput)-6 E F0
+(into the line\).)2.5 E .055(In the second form,)108 393.6 R F2("k)2.555
+E(eyseq")-.1 E F0(:)A F1(function\255name).833 E F0(or)2.555 E F1(macr)
+2.555 E(o)-.45 E F0(,)A F2 -.1(ke)2.555 G(yseq).1 E F0(dif)2.556 E .056
+(fers from)-.25 F F2 -.1(ke)2.556 G(yname).1 E F0(abo)2.556 E .356 -.15
 (ve i)-.15 H 2.556(nt).15 G .056(hat strings)-2.556 F 1.284
-(denoting an entire k)108 475.2 R 1.584 -.15(ey s)-.1 H 1.284(equence m\
+(denoting an entire k)108 405.6 R 1.584 -.15(ey s)-.1 H 1.284(equence m\
 ay be speci\214ed by placing the sequence within double quotes.).15 F
-(Some)6.284 E .385(GNU Emacs style k)108 487.2 R .685 -.15(ey e)-.1 H
+(Some)6.284 E .385(GNU Emacs style k)108 417.6 R .685 -.15(ey e)-.1 H
 .385(scapes can be used, as in the follo).15 F .385(wing e)-.25 F .386
 (xample, b)-.15 F .386(ut the symbolic character names)-.2 F
-(are not recognized.)108 499.2 Q("\\C\255u": uni)144 523.2 Q -.15(ve)
+(are not recognized.)108 429.6 Q("\\C\255u": uni)144 453.6 Q -.15(ve)
 -.25 G(rsal\255ar).15 E(gument)-.18 E
-("\\C\255x\\C\255r": re\255read\255init\255\214le)144 535.2 Q
-("\\e[11~": "Function K)144 547.2 Q .3 -.15(ey 1)-.25 H(").15 E .315
-(In this e)108 564 R(xample,)-.15 E F2(C\255u)2.655 E F0 .315(is ag)
-3.065 F .315(ain bound to the function)-.05 F F1(uni)2.815 E -.1(ve)-.1
-G(rsal\255ar).1 E(gument)-.1 E F0(.)A F2 .315(C\255x C\255r)5.155 F F0
-.314(is bound to the func-)3.544 F(tion)108 576 Q F1 -.18(re)2.5 G<ad72>
-.18 E(ead\255init\255\214le)-.18 E F0 2.5(,a)C(nd)-2.5 E F2(ESC [ 1 1 ~)
-3.01 E F0(is bound to insert the te)3.94 E(xt)-.15 E F3(Function Key 1)
-2.5 E F0(.)A(The full set of GNU Emacs style escape sequences is)108
-592.8 Q F1<5c43ad>144 604.8 Q F0(control pre\214x)180 604.8 Q F1<5c4dad>
-144 616.8 Q F0(meta pre\214x)180 616.8 Q F1(\\e)144 628.8 Q F0
-(an escape character)180 628.8 Q F1(\\\\)144 640.8 Q F0(backslash)180
-640.8 Q F1(\\")144 652.8 Q F0(literal ")180 652.8 Q F1<5c08>144 664.8 Q
-F0(literal \010)180 664.8 Q(In addition to the GNU Emacs style escape s\
-equences, a second set of backslash escapes is a)108 681.6 Q -.25(va)-.2
-G(ilable:).25 E F1(\\a)144 693.6 Q F0(alert \(bell\))180 693.6 Q F1(\\b)
-144 705.6 Q F0(backspace)180 705.6 Q F1(\\d)144 717.6 Q F0(delete)180
-717.6 Q(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(43)197.335 E 0 Cg EP
+("\\C\255x\\C\255r": re\255read\255init\255\214le)144 465.6 Q
+("\\e[11~": "Function K)144 477.6 Q .3 -.15(ey 1)-.25 H(").15 E .315
+(In this e)108 494.4 R(xample,)-.15 E F1(C\255u)2.655 E F0 .315(is ag)
+3.065 F .315(ain bound to the function)-.05 F F2(uni)2.815 E -.1(ve)-.1
+G(rsal\255ar).1 E(gument)-.1 E F0(.)A F1 .315(C\255x C\255r)5.155 F F0
+.314(is bound to the func-)3.544 F(tion)108 506.4 Q F2 -.18(re)2.5 G
+<ad72>.18 E(ead\255init\255\214le)-.18 E F0 2.5(,a)C(nd)-2.5 E F1
+(ESC [ 1 1 ~)3.01 E F0(is bound to insert the te)3.94 E(xt)-.15 E F3
+(Function Key 1)2.5 E F0(.)A
+(The full set of GNU Emacs style escape sequences is)108 523.2 Q F2
+<5c43ad>144 535.2 Q F0(control pre\214x)180 535.2 Q F2<5c4dad>144 547.2
+Q F0(meta pre\214x)180 547.2 Q F2(\\e)144 559.2 Q F0
+(an escape character)180 559.2 Q F2(\\\\)144 571.2 Q F0(backslash)180
+571.2 Q F2(\\")144 583.2 Q F0(literal ")180 583.2 Q F2<5c08>144 595.2 Q
+F0(literal \010)180 595.2 Q(In addition to the GNU Emacs style escape s\
+equences, a second set of backslash escapes is a)108 612 Q -.25(va)-.2 G
+(ilable:).25 E F2(\\a)144 624 Q F0(alert \(bell\))180 624 Q F2(\\b)144
+636 Q F0(backspace)180 636 Q F2(\\d)144 648 Q F0(delete)180 648 Q F2
+(\\f)144 660 Q F0(form feed)180 660 Q F2(\\n)144 672 Q F0(ne)180 672 Q
+(wline)-.25 E F2(\\r)144 684 Q F0(carriage return)180 684 Q F2(\\t)144
+696 Q F0(horizontal tab)180 696 Q F2(\\v)144 708 Q F0 -.15(ve)180 708 S
+(rtical tab).15 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(43)197.335
+E 0 Cg EP
 %%Page: 44 44
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
 (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
-SF(\\f)144 84 Q F0(form feed)180 84 Q F1(\\n)144 96 Q F0(ne)180 96 Q
-(wline)-.25 E F1(\\r)144 108 Q F0(carriage return)180 108 Q F1(\\t)144
-120 Q F0(horizontal tab)180 120 Q F1(\\v)144 132 Q F0 -.15(ve)180 132 S
-(rtical tab).15 E F1(\\)144 144 Q/F2 10/Times-Italic@0 SF(nnn)A F0
-(the eight-bit character whose v)180 144 Q(alue is the octal v)-.25 E
-(alue)-.25 E F2(nnn)2.5 E F0(\(one to three digits\))2.5 E F1(\\x)144
-156 Q F2(HH)A F0(the eight-bit character whose v)180 156 Q
-(alue is the he)-.25 E(xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0
-(\(one or tw)2.5 E 2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E 1.141
-(When entering the te)108 172.8 R 1.141(xt of a macro, single or double\
+SF(\\)144 84 Q/F2 10/Times-Italic@0 SF(nnn)A F0
+(the eight-bit character whose v)180 84 Q(alue is the octal v)-.25 E
+(alue)-.25 E F2(nnn)2.5 E F0(\(one to three digits\))2.5 E F1(\\x)144 96
+Q F2(HH)A F0(the eight-bit character whose v)180 96 Q(alue is the he)
+-.25 E(xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0(\(one or tw)2.5 E
+2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E 1.141
+(When entering the te)108 112.8 R 1.141(xt of a macro, single or double\
  quotes must be used to indicate a macro de\214nition.)-.15 F .09
-(Unquoted te)108 184.8 R .09(xt is assumed to be a function name.)-.15 F
+(Unquoted te)108 124.8 R .09(xt is assumed to be a function name.)-.15 F
 .089(In the macro body)5.089 F 2.589(,t)-.65 G .089
 (he backslash escapes described abo)-2.589 F -.15(ve)-.15 G(are e)108
-196.8 Q 2.5(xpanded. Backslash)-.15 F(will quote an)2.5 E 2.5(yo)-.15 G
+136.8 Q 2.5(xpanded. Backslash)-.15 F(will quote an)2.5 E 2.5(yo)-.15 G
 (ther character in the macro te)-2.5 E(xt, including " and \010.)-.15 E
-F1(Bash)108 213.6 Q F0(allo)2.929 E .429(ws the current readline k)-.25
+F1(Bash)108 153.6 Q F0(allo)2.929 E .429(ws the current readline k)-.25
 F .729 -.15(ey b)-.1 H .429
 (indings to be displayed or modi\214ed with the).15 F F1(bind)2.93 E F0
 -.2(bu)2.93 G .43(iltin command.).2 F .046
-(The editing mode may be switched during interacti)108 225.6 R .346 -.15
+(The editing mode may be switched during interacti)108 165.6 R .346 -.15
 (ve u)-.25 H .046(se by using the).15 F F1<ad6f>2.545 E F0 .045
 (option to the)2.545 F F1(set)2.545 E F0 -.2(bu)2.545 G .045
-(iltin command).2 F(\(see)108 237.6 Q/F3 9/Times-Bold@0 SF(SHELL B)2.5 E
+(iltin command).2 F(\(see)108 177.6 Q/F3 9/Times-Bold@0 SF(SHELL B)2.5 E
 (UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E F1
-(Readline V)87 254.4 Q(ariables)-.92 E F0 .043(Readline has v)108 266.4
+(Readline V)87 194.4 Q(ariables)-.92 E F0 .043(Readline has v)108 206.4
 R .043(ariables that can be used to further customize its beha)-.25 F
 (vior)-.2 E 5.043(.A)-.55 G -.25(va)-2.5 G .043
-(riable may be set in the).25 F F2(inpu-)2.554 E(tr)108 278.4 Q(c)-.37 E
-F0(\214le with a statement of the form)2.81 E F1(set)144 295.2 Q F2
-(variable\255name value)2.5 E F0(or using the)108 307.2 Q F1(bind)2.5 E
+(riable may be set in the).25 F F2(inpu-)2.554 E(tr)108 218.4 Q(c)-.37 E
+F0(\214le with a statement of the form)2.81 E F1(set)144 235.2 Q F2
+(variable\255name value)2.5 E F0(or using the)108 247.2 Q F1(bind)2.5 E
 F0 -.2(bu)2.5 G(iltin command \(see).2 E F3(SHELL B)2.5 E(UIL)-.09 E
 (TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E .79
-(Except where noted, readline v)108 324 R .79(ariables can tak)-.25 F
+(Except where noted, readline v)108 264 R .79(ariables can tak)-.25 F
 3.29(et)-.1 G .79(he v)-3.29 F(alues)-.25 E F1(On)3.29 E F0(or)3.29 E F1
 (Off)3.29 E F0 .79(\(without re)3.29 F -.05(ga)-.15 G .79(rd to case\).)
-.05 F(Unrecog-)5.79 E .448(nized v)108 336 R .448
+.05 F(Unrecog-)5.79 E .448(nized v)108 276 R .448
 (ariable names are ignored.)-.25 F .448(When a v)5.448 F .448(ariable v)
 -.25 F .448(alue is read, empty or null v)-.25 F .449
-(alues, "on" \(case-insensi-)-.25 F(ti)108 348 Q -.15(ve)-.25 G .468
+(alues, "on" \(case-insensi-)-.25 F(ti)108 288 Q -.15(ve)-.25 G .468
 (\), and "1" are equi).15 F -.25(va)-.25 G .468(lent to).25 F F1(On)
 2.968 E F0 5.468(.A)C .468(ll other v)-5.468 F .468(alues are equi)-.25
 F -.25(va)-.25 G .468(lent to).25 F F1(Off)2.968 E F0 5.468(.T)C .467
 (he v)-5.468 F .467(ariables and their def)-.25 F(ault)-.1 E -.25(va)108
-360 S(lues are:).25 E F1(acti)108 376.8 Q -.1(ve)-.1 G<ad72>.1 E
-(egion\255start\255color)-.18 E F0 2.729(As)144 388.8 S .229(tring v)
+300 S(lues are:).25 E F1(acti)108 316.8 Q -.1(ve)-.1 G<ad72>.1 E
+(egion\255start\255color)-.18 E F0 2.729(As)144 328.8 S .229(tring v)
 -2.729 F .229(ariable that controls the te)-.25 F .229
 (xt color and background when displaying the te)-.15 F .23
-(xt in the acti)-.15 F -.15(ve)-.25 G(re)144 400.8 Q 1.527
+(xt in the acti)-.15 F -.15(ve)-.25 G(re)144 340.8 Q 1.527
 (gion \(see the description of)-.15 F F1(enable\255acti)4.026 E -.1(ve)
 -.1 G<ad72>.1 E(egion)-.18 E F0(belo)4.026 E 4.026(w\). This)-.25 F
 1.526(string must not tak)4.026 F 4.026(eu)-.1 G 4.026(pa)-4.026 G -.15
-(ny)-4.026 G(ph)144 412.8 Q .283
+(ny)-4.026 G(ph)144 352.8 Q .283
 (ysical character positions on the display)-.05 F 2.783(,s)-.65 G 2.784
 (oi)-2.783 G 2.784(ts)-2.784 G .284
 (hould consist only of terminal escape sequences.)-2.784 F .45
-(It is output to the terminal before displaying the te)144 424.8 R .45
+(It is output to the terminal before displaying the te)144 364.8 R .45
 (xt in the acti)-.15 F .75 -.15(ve r)-.25 H -.15(eg).15 G 2.95
 (ion. This).15 F -.25(va)2.95 G .45(riable is reset to).25 F .378
-(the def)144 436.8 R .378(ault v)-.1 F .378(alue whene)-.25 F -.15(ve)
+(the def)144 376.8 R .378(ault v)-.1 F .378(alue whene)-.25 F -.15(ve)
 -.25 G 2.878(rt).15 G .379(he terminal type changes.)-2.878 F .379
 (The def)5.379 F .379(ault v)-.1 F .379
 (alue is the string that puts the)-.25 F .655
-(terminal in standout mode, as obtained from the terminal')144 448.8 R
+(terminal in standout mode, as obtained from the terminal')144 388.8 R
 3.154(st)-.55 G .654(erminfo description.)-3.154 F 3.154(As)5.654 G .654
-(ample v)-3.154 F(alue)-.25 E(might be)144 460.8 Q/F4 10/Courier@0 SF
-("\\e[01;33m")2.5 E F0(.)A F1(acti)108 472.8 Q -.1(ve)-.1 G<ad72>.1 E
-(egion\255end\255color)-.18 E F0 3.908(As)144 484.8 S 1.408(tring v)
+(ample v)-3.154 F(alue)-.25 E(might be)144 400.8 Q/F4 10/Courier@0 SF
+("\\e[01;33m")2.5 E F0(.)A F1(acti)108 412.8 Q -.1(ve)-.1 G<ad72>.1 E
+(egion\255end\255color)-.18 E F0 3.908(As)144 424.8 S 1.408(tring v)
 -3.908 F 1.408(ariable that "undoes" the ef)-.25 F 1.408(fects of)-.25 F
 F1(acti)3.908 E -.1(ve)-.1 G<ad72>.1 E(egion\255start\255color)-.18 E F0
 1.409(and restores "normal")3.908 F .216
-(terminal display appearance after displaying te)144 496.8 R .216
+(terminal display appearance after displaying te)144 436.8 R .216
 (xt in the acti)-.15 F .516 -.15(ve r)-.25 H -.15(eg).15 G 2.716
 (ion. This).15 F .216(string must not tak)2.716 F 2.716(eu)-.1 G(p)
--2.716 E(an)144 508.8 Q 3.737(yp)-.15 G -.05(hy)-3.737 G 1.237
+-2.716 E(an)144 448.8 Q 3.737(yp)-.15 G -.05(hy)-3.737 G 1.237
 (sical character positions on the display).05 F 3.737(,s)-.65 G 3.737
 (oi)-3.737 G 3.737(ts)-3.737 G 1.238
 (hould consist only of terminal escape se-)-3.737 F 2.928(quences. It)
-144 520.8 R .428(is output to the terminal after displaying the te)2.928
+144 460.8 R .428(is output to the terminal after displaying the te)2.928
 F .427(xt in the acti)-.15 F .727 -.15(ve r)-.25 H -.15(eg).15 G 2.927
 (ion. This).15 F -.25(va)2.927 G .427(riable is).25 F .518
-(reset to the def)144 532.8 R .518(ault v)-.1 F .518(alue whene)-.25 F
+(reset to the def)144 472.8 R .518(ault v)-.1 F .518(alue whene)-.25 F
 -.15(ve)-.25 G 3.018(rt).15 G .518(he terminal type changes.)-3.018 F
 .518(The def)5.518 F .518(ault v)-.1 F .518(alue is the string that)-.25
 F .252(restores the terminal from standout mode, as obtained from the t\
-erminal')144 544.8 R 2.751(st)-.55 G .251(erminfo description.)-2.751 F
-(A)5.251 E(sample v)144 556.8 Q(alue might be)-.25 E F4("\\e[0m")2.5 E
-F0(.)A F1(bell\255style \(audible\))108 568.8 Q F0 .01
-(Controls what happens when readline w)144 580.8 R .011
+erminal')144 484.8 R 2.751(st)-.55 G .251(erminfo description.)-2.751 F
+(A)5.251 E(sample v)144 496.8 Q(alue might be)-.25 E F4("\\e[0m")2.5 E
+F0(.)A F1(bell\255style \(audible\))108 508.8 Q F0 .01
+(Controls what happens when readline w)144 520.8 R .011
 (ants to ring the terminal bell.)-.1 F .011(If set to)5.011 F F1(none)
 2.511 E F0 2.511(,r)C .011(eadline ne)-2.511 F -.15(ve)-.25 G(r).15 E
-.94(rings the bell.)144 592.8 R .94(If set to)5.94 F F1(visible)3.44 E
+.94(rings the bell.)144 532.8 R .94(If set to)5.94 F F1(visible)3.44 E
 F0 3.44(,r)C .94(eadline uses a visible bell if one is a)-3.44 F -.25
 (va)-.2 G 3.44(ilable. If).25 F .94(set to)3.44 F F1(audible)3.44 E F0
-(,)A(readline attempts to ring the terminal')144 604.8 Q 2.5(sb)-.55 G
-(ell.)-2.5 E F1(bind\255tty\255special\255chars \(On\))108 616.8 Q F0
-.055(If set to)144 628.8 R F1(On)2.555 E F0 2.555(,r)C .056(eadline att\
+(,)A(readline attempts to ring the terminal')144 544.8 Q 2.5(sb)-.55 G
+(ell.)-2.5 E F1(bind\255tty\255special\255chars \(On\))108 556.8 Q F0
+.055(If set to)144 568.8 R F1(On)2.555 E F0 2.555(,r)C .056(eadline att\
 empts to bind the control characters treated specially by the k)-2.555 F
-(ernel')-.1 E 2.556(st)-.55 G(ermi-)-2.556 E(nal dri)144 640.8 Q -.15
+(ernel')-.1 E 2.556(st)-.55 G(ermi-)-2.556 E(nal dri)144 580.8 Q -.15
 (ve)-.25 G 2.5(rt).15 G 2.5(ot)-2.5 G(heir readline equi)-2.5 E -.25(va)
--.25 G(lents.).25 E F1(blink\255matching\255par)108 652.8 Q(en \(Off\))
--.18 E F0 .21(If set to)144 664.8 R F1(On)2.71 E F0 2.71(,r)C .21
+-.25 G(lents.).25 E F1(blink\255matching\255par)108 592.8 Q(en \(Off\))
+-.18 E F0 .21(If set to)144 604.8 R F1(On)2.71 E F0 2.71(,r)C .21
 (eadline attempts to brie\215y mo)-2.71 F .51 -.15(ve t)-.15 H .21
 (he cursor to an opening parenthesis when a closing).15 F
-(parenthesis is inserted.)144 676.8 Q F1(color)108 688.8 Q
+(parenthesis is inserted.)144 616.8 Q F1(color)108 628.8 Q
 (ed\255completion\255pr)-.18 E(e\214x \(Off\))-.18 E F0 .515(If set to)
-144 700.8 R F1(On)3.015 E F0 3.015(,w)C .515(hen listing completions, r\
+144 640.8 R F1(On)3.015 E F0 3.015(,w)C .515(hen listing completions, r\
 eadline displays the common pre\214x of the set of possible)-3.015 F
-2.936(completions using a dif)144 712.8 R 2.936(ferent color)-.25 F
+2.936(completions using a dif)144 652.8 R 2.936(ferent color)-.25 F
 7.936(.T)-.55 G 2.936(he color de\214nitions are tak)-7.936 F 2.935
-(en from the v)-.1 F 2.935(alue of the)-.25 F F1(LS_COLORS)144 724.8 Q
-F0(en)4.721 E 2.221(vironment v)-.4 F 4.721(ariable. If)-.25 F 2.222
-(there is a color de\214nition in)4.721 F F1($LS_COLORS)4.722 E F0 2.222
-(for the)4.722 F(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(44)197.335
-E 0 Cg EP
+(en from the v)-.1 F 2.935(alue of the)-.25 F F1(LS_COLORS)144 664.8 Q
+F0(en)3.076 E .577(vironment v)-.4 F 3.077(ariable. If)-.25 F .577
+(there is a color de\214nition in)3.077 F F1($LS_COLORS)3.077 E F0 .577
+(for the cus-)3.077 F .135(tom suf)144 676.8 R .135(\214x "readline-col\
+ored-completion-pre\214x", readline uses this color for the common pre\
+\214x in-)-.25 F(stead of its def)144 688.8 Q(ault.)-.1 E F1(color)108
+700.8 Q(ed\255stats \(Off\))-.18 E F0 1.579(If set to)144 712.8 R F1(On)
+4.079 E F0 4.079(,r)C 1.579
+(eadline displays possible completions using dif)-4.079 F 1.58
+(ferent colors to indicate their \214le)-.25 F 2.5(type. The)144 724.8 R
+(color de\214nitions are tak)2.5 E(en from the v)-.1 E(alue of the)-.25
+E F1(LS_COLORS)2.5 E F0(en)2.5 E(vironment v)-.4 E(ariable.)-.25 E
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(44)197.335 E 0 Cg EP
 %%Page: 45 45
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .176(custom suf)
-144 84 R .176(\214x "readline-colored-completion-pre\214x", readline us\
-es this color for the common pre\214x)-.25 F(instead of its def)144 96 Q
-(ault.)-.1 E/F1 10/Times-Bold@0 SF(color)108 108 Q(ed\255stats \(Off\))
--.18 E F0 1.579(If set to)144 120 R F1(On)4.079 E F0 4.079(,r)C 1.579
-(eadline displays possible completions using dif)-4.079 F 1.58
-(ferent colors to indicate their \214le)-.25 F 2.5(type. The)144 132 R
-(color de\214nitions are tak)2.5 E(en from the v)-.1 E(alue of the)-.25
-E F1(LS_COLORS)2.5 E F0(en)2.5 E(vironment v)-.4 E(ariable.)-.25 E F1
-(comment\255begin \(`)108 144 Q(`#')-.63 E('\))-.63 E F0 .885
-(The string that is inserted when the readline)144 156 R F1
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
+SF(comment\255begin \(`)108 84 Q(`#')-.63 E('\))-.63 E F0 .885
+(The string that is inserted when the readline)144 96 R F1
 (insert\255comment)3.385 E F0 .884(command is e)3.384 F -.15(xe)-.15 G
-3.384(cuted. This).15 F(com-)3.384 E(mand is bound to)144 168 Q F1
+3.384(cuted. This).15 F(com-)3.384 E(mand is bound to)144 108 Q F1
 (M\255#)2.5 E F0(in emacs mode and to)2.5 E F1(#)2.5 E F0
 (in vi command mode.)2.5 E F1(completion\255display\255width \(\2551\))
-108 180 Q F0 1.453(The number of screen columns used to display possibl\
-e matches when performing completion.)144 192 R .194(The v)144 204 R
+108 120 Q F0 1.453(The number of screen columns used to display possibl\
+e matches when performing completion.)144 132 R .194(The v)144 144 R
 .193(alue is ignored if it is less than 0 or greater than the terminal \
 screen width.)-.25 F 2.693(Av)5.193 G .193(alue of 0 will)-2.943 F
-(cause matches to be displayed one per line.)144 216 Q(The def)5 E
-(ault v)-.1 E(alue is \2551.)-.25 E F1(completion\255ignor)108 228 Q
-(e\255case \(Off\))-.18 E F0(If set to)144 240 Q F1(On)2.5 E F0 2.5(,r)C
+(cause matches to be displayed one per line.)144 156 Q(The def)5 E
+(ault v)-.1 E(alue is \2551.)-.25 E F1(completion\255ignor)108 168 Q
+(e\255case \(Off\))-.18 E F0(If set to)144 180 Q F1(On)2.5 E F0 2.5(,r)C
 (eadline performs \214lename matching and completion in a case\255insen\
 siti)-2.5 E .3 -.15(ve f)-.25 H(ashion.).05 E F1
-(completion\255map\255case \(Off\))108 252 Q F0 .093(If set to)144 264 R
+(completion\255map\255case \(Off\))108 192 Q F0 .093(If set to)144 204 R
 F1(On)2.593 E F0 2.593(,a)C(nd)-2.593 E F1(completion\255ignor)2.593 E
 (e\255case)-.18 E F0 .093(is enabled, readline treats h)2.593 F .093
 (yphens \()-.05 F/F2 10/Times-Italic@0 SF<ad>A F0 2.593(\)a)C .094
-(nd underscores)-2.593 F(\()144 276 Q F2(_)A F0 2.5(\)a)C 2.5(se)-2.5 G
+(nd underscores)-2.593 F(\()144 216 Q F2(_)A F0 2.5(\)a)C 2.5(se)-2.5 G
 (qui)-2.5 E -.25(va)-.25 G(lent when performing case\255insensiti).25 E
 .3 -.15(ve \214)-.25 H(lename matching and completion.).15 E F1
-(completion\255pr)108 288 Q(e\214x\255display\255length \(0\))-.18 E F0
+(completion\255pr)108 228 Q(e\214x\255display\255length \(0\))-.18 E F0
 .829(The length in characters of the common pre\214x of a list of possi\
-ble completions that is displayed)144 300 R 1.274
-(without modi\214cation.)144 312 R 1.274(When set to a v)6.274 F 1.274
+ble completions that is displayed)144 240 R 1.274
+(without modi\214cation.)144 252 R 1.274(When set to a v)6.274 F 1.274
 (alue greater than zero, common pre\214x)-.25 F 1.275
-(es longer than this)-.15 F -.25(va)144 324 S(lue are replaced with an \
+(es longer than this)-.15 F -.25(va)144 264 S(lue are replaced with an \
 ellipsis when displaying possible completions.).25 E F1
-(completion\255query\255items \(100\))108 336 Q F0 .53
-(This determines when the user is queried about vie)144 348 R .529
+(completion\255query\255items \(100\))108 276 Q F0 .53
+(This determines when the user is queried about vie)144 288 R .529
 (wing the number of possible completions gen-)-.25 F .56(erated by the)
-144 360 R F1(possible\255completions)3.06 E F0 3.06(command. It)3.06 F
+144 300 R F1(possible\255completions)3.06 E F0 3.06(command. It)3.06 F
 .561(may be set to an)3.061 F 3.061(yi)-.15 G(nte)-3.061 E .561(ger v)
--.15 F .561(alue greater than or)-.25 F .783(equal to zero.)144 372 R
+-.15 F .561(alue greater than or)-.25 F .783(equal to zero.)144 312 R
 .783(If the number of possible completions is greater than or equal to \
-the v)5.783 F .782(alue of this)-.25 F -.25(va)144 384 S .367
+the v)5.783 F .782(alue of this)-.25 F -.25(va)144 324 S .367
 (riable, readline will ask whether or not the user wishes to vie).25 F
 2.868(wt)-.25 G .368(hem; otherwise the)-2.868 F 2.868(ya)-.15 G .368
-(re simply)-2.868 F .673(listed on the terminal.)144 396 R 3.173(Az)
+(re simply)-2.868 F .673(listed on the terminal.)144 336 R 3.173(Az)
 5.673 G .673(ero v)-3.173 F .673(alue means readline should ne)-.25 F
 -.15(ve)-.25 G 3.172(ra).15 G .672(sk; ne)-3.172 F -.05(ga)-.15 G(ti).05
-E .972 -.15(ve v)-.25 H .672(alues are treated)-.1 F(as zero.)144 408 Q
-F1(con)108 420 Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .612(If set to)
-144 432 R F1(On)3.112 E F0 3.112(,r)C .613(eadline will con)-3.112 F
+E .972 -.15(ve v)-.25 H .672(alues are treated)-.1 F(as zero.)144 348 Q
+F1(con)108 360 Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .612(If set to)
+144 372 R F1(On)3.112 E F0 3.112(,r)C .613(eadline will con)-3.112 F
 -.15(ve)-.4 G .613(rt characters with the eighth bit set to an ASCII k)
 .15 F .913 -.15(ey s)-.1 H .613(equence by).15 F .541
 (stripping the eighth bit and pre\214xing an escape character \(in ef)
-144 444 R .541(fect, using escape as the)-.25 F F2 .541(meta pr)3.041 F
-(e-)-.37 E<8c78>144 456 Q F0 3.75(\). The)B(def)3.75 E 1.25(ault is)-.1
+144 384 R .541(fect, using escape as the)-.25 F F2 .541(meta pr)3.041 F
+(e-)-.37 E<8c78>144 396 Q F0 3.75(\). The)B(def)3.75 E 1.25(ault is)-.1
 F F2(On)3.75 E F0 3.75(,b)C 1.251(ut readline will set it to)-3.95 F F2
 (Of)3.751 E(f)-.18 E F0 1.251
 (if the locale contains eight-bit characters.)3.751 F 1.142(This v)144
-468 R 1.142(ariable is dependent on the)-.25 F F1(LC_CTYPE)3.641 E F0
+408 R 1.142(ariable is dependent on the)-.25 F F1(LC_CTYPE)3.641 E F0
 1.141(locale cate)3.641 F(gory)-.15 E 3.641(,a)-.65 G 1.141
-(nd may change if the locale is)-3.641 F(changed.)144 480 Q F1
-(disable\255completion \(Off\))108 492 Q F0 .038(If set to)144 504 R F1
+(nd may change if the locale is)-3.641 F(changed.)144 420 Q F1
+(disable\255completion \(Off\))108 432 Q F0 .038(If set to)144 444 R F1
 (On)2.538 E F0 2.538(,r)C .038(eadline will inhibit w)-2.538 F .038
 (ord completion.)-.1 F .038
 (Completion characters will be inserted into the)5.038 F(line as if the)
-144 516 Q 2.5(yh)-.15 G(ad been mapped to)-2.5 E F1(self-insert)2.5 E F0
-(.)A F1(echo\255contr)108 528 Q(ol\255characters \(On\))-.18 E F0 1.211
-(When set to)144 540 R F1(On)3.711 E F0 3.711(,o)C 3.711(no)-3.711 G
+144 456 Q 2.5(yh)-.15 G(ad been mapped to)-2.5 E F1(self-insert)2.5 E F0
+(.)A F1(echo\255contr)108 468 Q(ol\255characters \(On\))-.18 E F0 1.211
+(When set to)144 480 R F1(On)3.711 E F0 3.711(,o)C 3.711(no)-3.711 G
 1.211(perating systems that indicate the)-3.711 F 3.711(ys)-.15 G 1.21
 (upport it, readline echoes a character)-3.711 F
-(corresponding to a signal generated from the k)144 552 Q -.15(ey)-.1 G
-(board.).15 E F1(editing\255mode \(emacs\))108 564 Q F0 .141
-(Controls whether readline be)144 576 R .141(gins with a set of k)-.15 F
+(corresponding to a signal generated from the k)144 492 Q -.15(ey)-.1 G
+(board.).15 E F1(editing\255mode \(emacs\))108 504 Q F0 .141
+(Controls whether readline be)144 516 R .141(gins with a set of k)-.15 F
 .441 -.15(ey b)-.1 H .141(indings similar to).15 F F2(Emacs)2.642 E F0
 (or)2.642 E F2(vi)2.642 E F0(.)A F1(editing\255mode)5.142 E F0
-(can be set to either)144 588 Q F1(emacs)2.5 E F0(or)2.5 E F1(vi)2.5 E
-F0(.)A F1(emacs\255mode\255string \(@\))108 600 Q F0 .518(If the)144 612
+(can be set to either)144 528 Q F1(emacs)2.5 E F0(or)2.5 E F1(vi)2.5 E
+F0(.)A F1(emacs\255mode\255string \(@\))108 540 Q F0 .518(If the)144 552
 R F2(show\255mode\255in\255pr)3.018 E(ompt)-.45 E F0 -.25(va)3.018 G
 .517(riable is enabled, this string is displayed immediately before the)
 .25 F .622
-(last line of the primary prompt when emacs editing mode is acti)144 624
+(last line of the primary prompt when emacs editing mode is acti)144 564
 R -.15(ve)-.25 G 5.622(.T).15 G .622(he v)-5.622 F .622(alue is e)-.25 F
-.622(xpanded lik)-.15 F 3.122(ea)-.1 G -.1(ke)144 636 S 3.34(yb)-.05 G
+.622(xpanded lik)-.15 F 3.122(ea)-.1 G -.1(ke)144 576 S 3.34(yb)-.05 G
 .839(inding, so the standard set of meta- and control pre\214x)-3.34 F
-.839(es and backslash escape sequences is)-.15 F -.2(av)144 648 S 2.798
+.839(es and backslash escape sequences is)-.15 F -.2(av)144 588 S 2.798
 (ailable. Use)-.05 F .298(the \\1 and \\2 escapes to be)2.798 F .298
 (gin and end sequences of non-printing characters, which)-.15 F
 (can be used to embed a terminal control sequence into the mode string.)
-144 660 Q F1(enable\255acti)108 672 Q -.1(ve)-.1 G<ad72>.1 E
-(egion \(On\))-.18 E F0(The)144 684 Q F2(point)3.246 E F0 .746
+144 600 Q F1(enable\255acti)108 612 Q -.1(ve)-.1 G<ad72>.1 E
+(egion \(On\))-.18 E F0(The)144 624 Q F2(point)3.246 E F0 .746
 (is the current cursor position, and)3.246 F F2(mark)3.246 E F0 .746
 (refers to a sa)3.246 F -.15(ve)-.2 G 3.246(dc).15 G .746
 (ursor position.)-3.246 F .745(The te)5.746 F .745(xt be-)-.15 F .344
-(tween the point and mark is referred to as the)144 696 R F2 -.37(re)
+(tween the point and mark is referred to as the)144 636 R F2 -.37(re)
 2.844 G(gion)-.03 E F0 5.344(.W)C .344(hen this v)-5.344 F .344
 (ariable is set to)-.25 F F2(On)2.845 E F0 2.845(,r)C .345(eadline al-)
--2.845 F(lo)144 708 Q .098(ws certain commands to designate the re)-.25
+-2.845 F(lo)144 648 Q .098(ws certain commands to designate the re)-.25
 F .098(gion as)-.15 F F2(active)2.598 E F0 5.098(.W)C .098(hen the re)
 -5.098 F .098(gion is acti)-.15 F -.15(ve)-.25 G 2.598(,r).15 G .098
-(eadline high-)-2.598 F .97(lights the te)144 720 R .97(xt in the re)
+(eadline high-)-2.598 F .97(lights the te)144 660 R .97(xt in the re)
 -.15 F .971(gion using the v)-.15 F .971(alue of the)-.25 F F1(acti)
 3.471 E -.1(ve)-.1 G<ad72>.1 E(egion\255start\255color)-.18 E F0 3.471
-(,w)C .971(hich def)-3.471 F .971(aults to)-.1 F(GNU Bash 5.2)72 768 Q
-(2023 May 14)148.175 E(45)197.335 E 0 Cg EP
+(,w)C .971(hich def)-3.471 F .971(aults to)-.1 F .485
+(the string that enables the terminal')144 672 R 2.985(ss)-.55 G .485
+(tandout mode.)-2.985 F .485(The acti)5.485 F .785 -.15(ve r)-.25 H -.15
+(eg).15 G .484(ion sho).15 F .484(ws the te)-.25 F .484(xt inserted by)
+-.15 F(brack)144 684 Q(eted-paste and an)-.1 E 2.5(ym)-.15 G(atching te)
+-2.5 E(xt found by incremental and non-incremental history searches.)
+-.15 E F1(enable\255brack)108 696 Q(eted\255paste \(On\))-.1 E F0 .84
+(When set to)144 708 R F1(On)3.34 E F0 3.34(,r)C .841(eadline con\214gu\
+res the terminal to insert each paste into the editing b)-3.34 F(uf)-.2
+E .841(fer as a)-.25 F 2.101(single string of characters, instead of tr\
+eating each character as if it had been read from the)144 720 R
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(45)197.335 E 0 Cg EP
 %%Page: 46 46
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .485
-(the string that enables the terminal')144 84 R 2.985(ss)-.55 G .485
-(tandout mode.)-2.985 F .485(The acti)5.485 F .785 -.15(ve r)-.25 H -.15
-(eg).15 G .484(ion sho).15 F .484(ws the te)-.25 F .484(xt inserted by)
--.15 F(brack)144 96 Q(eted-paste and an)-.1 E 2.5(ym)-.15 G(atching te)
--2.5 E(xt found by incremental and non-incremental history searches.)
--.15 E/F1 10/Times-Bold@0 SF(enable\255brack)108 108 Q
-(eted\255paste \(On\))-.1 E F0 .84(When set to)144 120 R F1(On)3.34 E F0
-3.34(,r)C .841(eadline con\214gures the terminal to insert each paste i\
-nto the editing b)-3.34 F(uf)-.2 E .841(fer as a)-.25 F .799(single str\
-ing of characters, instead of treating each character as if it had been\
- read from the k)144 132 R -.15(ey)-.1 G(-).15 E 3.158(board. This)144
-144 R(pre)3.158 E -.15(ve)-.25 G .658(nts readline from e).15 F -.15(xe)
--.15 G .658(cuting an).15 F 3.158(ye)-.15 G .659
-(diting commands bound to k)-3.158 F .959 -.15(ey s)-.1 H .659
-(equences ap-).15 F(pearing in the pasted te)144 156 Q(xt.)-.15 E F1
-(enable\255k)108 168 Q(eypad \(Off\))-.1 E F0 .893(When set to)144 180 R
-F1(On)3.393 E F0 3.393(,r)C .893
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.1(ke)144 84 S
+3.303(yboard. This)-.05 F(pre)3.303 E -.15(ve)-.25 G .803
+(nts readline from e).15 F -.15(xe)-.15 G .803(cuting an).15 F 3.303(ye)
+-.15 G .804(diting commands bound to k)-3.303 F 1.104 -.15(ey s)-.1 H
+(equences).15 E(appearing in the pasted te)144 96 Q(xt.)-.15 E/F1 10
+/Times-Bold@0 SF(enable\255k)108 108 Q(eypad \(Off\))-.1 E F0 .893
+(When set to)144 120 R F1(On)3.393 E F0 3.393(,r)C .893
 (eadline will try to enable the application k)-3.393 F -.15(ey)-.1 G
 .893(pad when it is called.).15 F .892(Some sys-)5.893 F
-(tems need this to enable the arro)144 192 Q 2.5(wk)-.25 G -.15(ey)-2.6
-G(s.).15 E F1(enable\255meta\255k)108 204 Q(ey \(On\))-.1 E F0 .64
-(When set to)144 216 R F1(On)3.14 E F0 3.14(,r)C .64
+(tems need this to enable the arro)144 132 Q 2.5(wk)-.25 G -.15(ey)-2.6
+G(s.).15 E F1(enable\255meta\255k)108 144 Q(ey \(On\))-.1 E F0 .64
+(When set to)144 156 R F1(On)3.14 E F0 3.14(,r)C .64
 (eadline will try to enable an)-3.14 F 3.14(ym)-.15 G .64
 (eta modi\214er k)-3.14 F .94 -.15(ey t)-.1 H .64
-(he terminal claims to support).15 F(when it is called.)144 228 Q
+(he terminal claims to support).15 F(when it is called.)144 168 Q
 (On man)5 E 2.5(yt)-.15 G(erminals, the meta k)-2.5 E .3 -.15(ey i)-.1 H
 2.5(su).15 G(sed to send eight-bit characters.)-2.5 E F1
-(expand\255tilde \(Off\))108 240 Q F0(If set to)144 252 Q F1(On)2.5 E F0
+(expand\255tilde \(Off\))108 180 Q F0(If set to)144 192 Q F1(On)2.5 E F0
 2.5(,t)C(ilde e)-2.5 E(xpansion is performed when readline attempts w)
--.15 E(ord completion.)-.1 E F1(history\255pr)108 264 Q(eser)-.18 E -.1
-(ve)-.1 G(\255point \(Off\)).1 E F0 .553(If set to)144 276 R F1(On)3.052
+-.15 E(ord completion.)-.1 E F1(history\255pr)108 204 Q(eser)-.18 E -.1
+(ve)-.1 G(\255point \(Off\)).1 E F0 .553(If set to)144 216 R F1(On)3.052
 E F0 3.052(,t)C .552(he history code attempts to place point at the sam\
-e location on each history line re-)-3.052 F(trie)144 288 Q -.15(ve)-.25
+e location on each history line re-)-3.052 F(trie)144 228 Q -.15(ve)-.25
 G 2.5(dw).15 G(ith)-2.5 E F1(pr)2.5 E -.15(ev)-.18 G(ious-history).15 E
 F0(or)2.5 E F1(next-history)2.5 E F0(.)A F1(history\255size \(unset\))
-108 300 Q F0 .948(Set the maximum number of history entries sa)144 312 R
+108 240 Q F0 .948(Set the maximum number of history entries sa)144 252 R
 -.15(ve)-.2 G 3.448(di).15 G 3.448(nt)-3.448 G .948(he history list.)
 -3.448 F .949(If set to zero, an)5.948 F 3.449(ye)-.15 G(xisting)-3.599
-E .483(history entries are deleted and no ne)144 324 R 2.983(we)-.25 G
+E .483(history entries are deleted and no ne)144 264 R 2.983(we)-.25 G
 .483(ntries are sa)-2.983 F -.15(ve)-.2 G 2.983(d. If).15 F .482
 (set to a v)2.983 F .482(alue less than zero, the num-)-.25 F .277
-(ber of history entries is not limited.)144 336 R .277(By def)5.277 F
+(ber of history entries is not limited.)144 276 R .277(By def)5.277 F
 .278(ault, the number of history entries is set to the v)-.1 F .278
-(alue of)-.25 F(the)144 348 Q F1(HISTSIZE)3.411 E F0 .911(shell v)3.411
+(alue of)-.25 F(the)144 288 Q F1(HISTSIZE)3.411 E F0 .911(shell v)3.411
 F 3.411(ariable. If)-.25 F .911(an attempt is made to set)3.411 F/F2 10
 /Times-Italic@0 SF(history\255size)3.41 E F0 .91(to a non-numeric v)3.41
 F(alue,)-.25 E
-(the maximum number of history entries will be set to 500.)144 360 Q F1
-(horizontal\255scr)108 372 Q(oll\255mode \(Off\))-.18 E F0 .448
-(When set to)144 384 R F1(On)2.948 E F0 2.948(,m)C(ak)-2.948 E .448
+(the maximum number of history entries will be set to 500.)144 300 Q F1
+(horizontal\255scr)108 312 Q(oll\255mode \(Off\))-.18 E F0 .448
+(When set to)144 324 R F1(On)2.948 E F0 2.948(,m)C(ak)-2.948 E .448
 (es readline use a single line for display)-.1 F 2.948(,s)-.65 G .449
 (crolling the input horizontally on a)-2.948 F 1.194(single screen line\
  when it becomes longer than the screen width rather than wrapping to a\
- ne)144 396 R(w)-.25 E 2.5(line. This)144 408 R
+ ne)144 336 R(w)-.25 E 2.5(line. This)144 348 R
 (setting is automatically enabled for terminals of height 1.)2.5 E F1
-(input\255meta \(Off\))108 420 Q F0 1.061(If set to)144 432 R F1(On)
+(input\255meta \(Off\))108 360 Q F0 1.061(If set to)144 372 R F1(On)
 3.561 E F0 3.561(,r)C 1.062(eadline will enable eight-bit input \(that \
 is, it will not strip the eighth bit from the)-3.561 F .336
-(characters it reads\), re)144 444 R -.05(ga)-.15 G .335
+(characters it reads\), re)144 384 R -.05(ga)-.15 G .335
 (rdless of what the terminal claims it can support.).05 F .335(The name)
-5.335 F F1(meta\255\215ag)2.835 E F0(is)2.835 E 2.864(as)144 456 S(ynon)
+5.335 F F1(meta\255\215ag)2.835 E F0(is)2.835 E 2.864(as)144 396 S(ynon)
 -2.864 E .364(ym for this v)-.15 F 2.864(ariable. The)-.25 F(def)2.864 E
 .364(ault is)-.1 F F2(Of)2.864 E(f)-.18 E F0 2.864(,b)C .364
 (ut readline will set it to)-3.064 F F2(On)2.864 E F0 .365
-(if the locale contains)2.865 F 1.867(eight-bit characters.)144 468 R
+(if the locale contains)2.865 F 1.867(eight-bit characters.)144 408 R
 1.867(This v)6.867 F 1.867(ariable is dependent on the)-.25 F F1
 (LC_CTYPE)4.367 E F0 1.866(locale cate)4.366 F(gory)-.15 E 4.366(,a)-.65
-G 1.866(nd may)-4.366 F(change if the locale is changed.)144 480 Q F1
-(isear)108 492 Q(ch\255terminators \(`)-.18 E(`C\255[C\255J')-.63 E('\))
+G 1.866(nd may)-4.366 F(change if the locale is changed.)144 420 Q F1
+(isear)108 432 Q(ch\255terminators \(`)-.18 E(`C\255[C\255J')-.63 E('\))
 -.63 E F0 .439(The string of characters that should terminate an increm\
-ental search without subsequently e)144 504 R -.15(xe)-.15 G(cut-).15 E
-.935(ing the character as a command.)144 516 R .935(If this v)5.935 F
+ental search without subsequently e)144 444 R -.15(xe)-.15 G(cut-).15 E
+.935(ing the character as a command.)144 456 R .935(If this v)5.935 F
 .935(ariable has not been gi)-.25 F -.15(ve)-.25 G 3.434(nav).15 G .934
-(alue, the characters)-3.684 F F2(ESC)3.434 E F0(and)144 528 Q F2
+(alue, the characters)-3.684 F F2(ESC)3.434 E F0(and)144 468 Q F2
 (C\255J)2.5 E F0(will terminate an incremental search.)2.5 E F1 -.1(ke)
-108 540 S(ymap \(emacs\)).1 E F0 2.02(Set the current readline k)144 552
+108 480 S(ymap \(emacs\)).1 E F0 2.02(Set the current readline k)144 492
 R -.15(ey)-.1 G 4.521(map. The).15 F 2.021(set of v)4.521 F 2.021
 (alid k)-.25 F -.15(ey)-.1 G 2.021(map names is).15 F F2 2.021
 (emacs, emacs\255standar)4.521 F(d,)-.37 E .042
-(emacs\255meta, emacs\255ctlx, vi, vi\255command)144 564 R F0 2.542(,a)C
+(emacs\255meta, emacs\255ctlx, vi, vi\255command)144 504 R F0 2.542(,a)C
 (nd)-2.542 E F2(vi\255insert)2.832 E F0(.).68 E F2(vi)5.042 E F0 .042
 (is equi)2.542 F -.25(va)-.25 G .042(lent to).25 F F2(vi\255command)
-2.541 E F0(;)A F2(emacs)2.541 E F0 .448(is equi)144 576 R -.25(va)-.25 G
+2.541 E F0(;)A F2(emacs)2.541 E F0 .448(is equi)144 516 R -.25(va)-.25 G
 .448(lent to).25 F F2(emacs\255standar)2.948 E(d)-.37 E F0 5.448(.T)C
 .448(he def)-5.448 F .448(ault v)-.1 F .449(alue is)-.25 F F2(emacs)
 3.139 E F0 2.949(;t).27 G .449(he v)-2.949 F .449(alue of)-.25 F F1
-(editing\255mode)2.949 E F0 .449(also af-)2.949 F(fects the def)144 588
-Q(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1 -.1(ke)108 600 S
-(yseq\255timeout \(500\)).1 E F0 .368(Speci\214es the duration)144 612 R
+(editing\255mode)2.949 E F0 .449(also af-)2.949 F(fects the def)144 528
+Q(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1 -.1(ke)108 540 S
+(yseq\255timeout \(500\)).1 E F0 .368(Speci\214es the duration)144 552 R
 F2 -.37(re)2.867 G(adline).37 E F0 .367(will w)2.867 F .367
 (ait for a character when reading an ambiguous k)-.1 F .667 -.15(ey s)
--.1 H(equence).15 E .524(\(one that can form a complete k)144 624 R .824
+-.1 H(equence).15 E .524(\(one that can form a complete k)144 564 R .824
 -.15(ey s)-.1 H .524(equence using the input read so f).15 F(ar)-.1 E
 3.025(,o)-.4 G 3.025(rc)-3.025 G .525(an tak)-3.025 F 3.025(ea)-.1 G
-.525(dditional in-)-3.025 F .807(put to complete a longer k)144 636 R
+.525(dditional in-)-3.025 F .807(put to complete a longer k)144 576 R
 1.106 -.15(ey s)-.1 H 3.306(equence\). If).15 F .806(no input is recei)
 3.306 F -.15(ve)-.25 G 3.306(dw).15 G .806(ithin the timeout,)-3.306 F
 F2 -.37(re)3.306 G(adline).37 E F0(will)3.306 E .906(use the shorter b)
-144 648 R .907(ut complete k)-.2 F 1.207 -.15(ey s)-.1 H 3.407
+144 588 R .907(ut complete k)-.2 F 1.207 -.15(ey s)-.1 H 3.407
 (equence. The).15 F -.25(va)3.407 G .907
 (lue is speci\214ed in milliseconds, so a v).25 F .907(alue of)-.25 F
-.05(1000 means that)144 660 R F2 -.37(re)2.55 G(adline).37 E F0 .05
+.05(1000 means that)144 600 R F2 -.37(re)2.55 G(adline).37 E F0 .05
 (will w)2.55 F .05(ait one second for additional input.)-.1 F .05
 (If this v)5.05 F .05(ariable is set to a v)-.25 F(alue)-.25 E .051
-(less than or equal to zero, or to a non-numeric v)144 672 R(alue,)-.25
+(less than or equal to zero, or to a non-numeric v)144 612 R(alue,)-.25
 E F2 -.37(re)2.551 G(adline).37 E F0 .051(will w)2.551 F .051
 (ait until another k)-.1 F .352 -.15(ey i)-.1 H 2.552(sp).15 G(ressed)
--2.552 E(to decide which k)144 684 Q .3 -.15(ey s)-.1 H
-(equence to complete.).15 E F1(mark\255dir)108 696 Q(ectories \(On\))
--.18 E F0(If set to)144 708 Q F1(On)2.5 E F0 2.5(,c)C
+-2.552 E(to decide which k)144 624 Q .3 -.15(ey s)-.1 H
+(equence to complete.).15 E F1(mark\255dir)108 636 Q(ectories \(On\))
+-.18 E F0(If set to)144 648 Q F1(On)2.5 E F0 2.5(,c)C
 (ompleted directory names ha)-2.5 E .3 -.15(ve a s)-.2 H(lash appended.)
-.15 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(46)197.335 E 0 Cg EP
+.15 E F1(mark\255modi\214ed\255lines \(Off\))108 660 Q F0(If set to)144
+672 Q F1(On)2.5 E F0 2.5(,h)C(istory lines that ha)-2.5 E .3 -.15(ve b)
+-.2 H(een modi\214ed are displayed with a preceding asterisk \().15 E F1
+(*)A F0(\).)A F1(mark\255symlink)108 684 Q(ed\255dir)-.1 E
+(ectories \(Off\))-.18 E F0 .175(If set to)144 696 R F1(On)2.675 E F0
+2.675(,c)C .175
+(ompleted names which are symbolic links to directories ha)-2.675 F .475
+-.15(ve a s)-.2 H .175(lash appended \(sub-).15 F(ject to the v)144 708
+Q(alue of)-.25 E F1(mark\255dir)2.5 E(ectories)-.18 E F0(\).)A
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(46)197.335 E 0 Cg EP
 %%Page: 47 47
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
 (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
-SF(mark\255modi\214ed\255lines \(Off\))108 84 Q F0(If set to)144 96 Q F1
-(On)2.5 E F0 2.5(,h)C(istory lines that ha)-2.5 E .3 -.15(ve b)-.2 H
-(een modi\214ed are displayed with a preceding asterisk \().15 E F1(*)A
-F0(\).)A F1(mark\255symlink)108 108 Q(ed\255dir)-.1 E(ectories \(Off\))
--.18 E F0 .175(If set to)144 120 R F1(On)2.675 E F0 2.675(,c)C .175
-(ompleted names which are symbolic links to directories ha)-2.675 F .475
--.15(ve a s)-.2 H .175(lash appended \(sub-).15 F(ject to the v)144 132
-Q(alue of)-.25 E F1(mark\255dir)2.5 E(ectories)-.18 E F0(\).)A F1
-(match\255hidden\255\214les \(On\))108 144 Q F0 .192(This v)144 156 R
+SF(match\255hidden\255\214les \(On\))108 84 Q F0 .192(This v)144 96 R
 .192(ariable, when set to)-.25 F F1(On)2.692 E F0 2.692(,c)C .192
 (auses readline to match \214les whose names be)-2.692 F .193
 (gin with a `.)-.15 F 2.693('\()-.7 G(hidden)-2.693 E .457
-(\214les\) when performing \214lename completion.)144 168 R .456
+(\214les\) when performing \214lename completion.)144 108 R .456
 (If set to)5.456 F F1(Off)2.956 E F0 2.956(,t)C .456(he leading `.)
 -2.956 F 2.956('m)-.7 G .456(ust be supplied by the)-2.956 F
-(user in the \214lename to be completed.)144 180 Q F1
-(menu\255complete\255display\255pr)108 192 Q(e\214x \(Off\))-.18 E F0
-1.585(If set to)144 204 R F1(On)4.085 E F0 4.085(,m)C 1.585(enu complet\
+(user in the \214lename to be completed.)144 120 Q F1
+(menu\255complete\255display\255pr)108 132 Q(e\214x \(Off\))-.18 E F0
+1.585(If set to)144 144 R F1(On)4.085 E F0 4.085(,m)C 1.585(enu complet\
 ion displays the common pre\214x of the list of possible completions)
--4.085 F(\(which may be empty\) before c)144 216 Q
-(ycling through the list.)-.15 E F1(output\255meta \(Off\))108 228 Q F0
-.507(If set to)144 240 R F1(On)3.007 E F0 3.007(,r)C .507(eadline will \
+-4.085 F(\(which may be empty\) before c)144 156 Q
+(ycling through the list.)-.15 E F1(output\255meta \(Off\))108 168 Q F0
+.507(If set to)144 180 R F1(On)3.007 E F0 3.007(,r)C .507(eadline will \
 display characters with the eighth bit set directly rather than as a me\
-ta-)-3.007 F(pre\214x)144 252 Q .884(ed escape sequence.)-.15 F .884
+ta-)-3.007 F(pre\214x)144 192 Q .884(ed escape sequence.)-.15 F .884
 (The def)5.884 F .884(ault is)-.1 F/F2 10/Times-Italic@0 SF(Of)3.384 E
 (f)-.18 E F0 3.384(,b)C .884(ut readline will set it to)-3.584 F F2(On)
 3.384 E F0 .885(if the locale contains)3.384 F 1.867
-(eight-bit characters.)144 264 R 1.867(This v)6.867 F 1.867
+(eight-bit characters.)144 204 R 1.867(This v)6.867 F 1.867
 (ariable is dependent on the)-.25 F F1(LC_CTYPE)4.367 E F0 1.866
 (locale cate)4.366 F(gory)-.15 E 4.366(,a)-.65 G 1.866(nd may)-4.366 F
-(change if the locale is changed.)144 276 Q F1
-(page\255completions \(On\))108 288 Q F0 .808(If set to)144 300 R F1(On)
+(change if the locale is changed.)144 216 Q F1
+(page\255completions \(On\))108 228 Q F0 .808(If set to)144 240 R F1(On)
 3.308 E F0 3.308(,r)C .808(eadline uses an internal)-3.308 F F2(mor)
 3.308 E(e)-.37 E F0(-lik)A 3.308(ep)-.1 G .808
 (ager to display a screenful of possible comple-)-3.308 F
-(tions at a time.)144 312 Q F1
-(print\255completions\255horizontally \(Off\))108 324 Q F0 .228
-(If set to)144 336 R F1(On)2.727 E F0 2.727(,r)C .227(eadline will disp\
+(tions at a time.)144 252 Q F1
+(print\255completions\255horizontally \(Off\))108 264 Q F0 .228
+(If set to)144 276 R F1(On)2.727 E F0 2.727(,r)C .227(eadline will disp\
 lay completions with matches sorted horizontally in alphabetical or)
--2.727 F(-)-.2 E(der)144 348 Q 2.5(,r)-.4 G(ather than do)-2.5 E
-(wn the screen.)-.25 E F1 -2.29 -.18(re v)108 360 T
-(ert\255all\255at\255newline \(Off\)).08 E F0 .698(If set to)144 372 R
+-2.727 F(-)-.2 E(der)144 288 Q 2.5(,r)-.4 G(ather than do)-2.5 E
+(wn the screen.)-.25 E F1 -2.29 -.18(re v)108 300 T
+(ert\255all\255at\255newline \(Off\)).08 E F0 .698(If set to)144 312 R
 F1(On)3.198 E F0 3.198(,r)C .699
 (eadline will undo all changes to history lines before returning when)
--3.198 F F1(accept\255line)3.199 E F0(is)3.199 E -.15(exe)144 384 S
+-3.198 F F1(accept\255line)3.199 E F0(is)3.199 E -.15(exe)144 324 S
 2.686(cuted. By).15 F(def)2.686 E .186
 (ault, history lines may be modi\214ed and retain indi)-.1 F .186
-(vidual undo lists across calls to)-.25 F F1 -.18(re)144 396 S(adline)
-.18 E F0(.)A F1(sear)108 408 Q(ch\255ignor)-.18 E(e\255case \(Off\))-.18
-E F0 .289(If set to)144 420 R F1(On)2.789 E F0 2.789(,r)C .289(eadline \
+(vidual undo lists across calls to)-.25 F F1 -.18(re)144 336 S(adline)
+.18 E F0(.)A F1(sear)108 348 Q(ch\255ignor)-.18 E(e\255case \(Off\))-.18
+E F0 .289(If set to)144 360 R F1(On)2.789 E F0 2.789(,r)C .289(eadline \
 performs incremental and non-incremental history list searches in a cas\
-e\255in-)-2.789 F(sensiti)144 432 Q .3 -.15(ve f)-.25 H(ashion.).05 E F1
-(sho)108 444 Q(w\255all\255if\255ambiguous \(Off\))-.1 E F0 .304
-(This alters the def)144 456 R .304(ault beha)-.1 F .304
+e\255in-)-2.789 F(sensiti)144 372 Q .3 -.15(ve f)-.25 H(ashion.).05 E F1
+(sho)108 384 Q(w\255all\255if\255ambiguous \(Off\))-.1 E F0 .304
+(This alters the def)144 396 R .304(ault beha)-.1 F .304
 (vior of the completion functions.)-.2 F .304(If set to)5.304 F F1(On)
 2.804 E F0 2.803(,w)C .303(ords which ha)-2.903 F .603 -.15(ve m)-.2 H
 (ore).15 E 1.264(than one possible completion cause the matches to be l\
-isted immediately instead of ringing the)144 468 R(bell.)144 480 Q F1
-(sho)108 492 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.346
-(This alters the def)144 504 R 5.346(ault beha)-.1 F 5.345
+isted immediately instead of ringing the)144 408 R(bell.)144 420 Q F1
+(sho)108 432 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.346
+(This alters the def)144 444 R 5.346(ault beha)-.1 F 5.345
 (vior of the completion functions in a f)-.2 F 5.345(ashion similar to)
--.1 F F1(sho)144 516 Q(w\255all\255if\255ambiguous)-.1 E F0 6.69(.I)C
+-.1 F F1(sho)144 456 Q(w\255all\255if\255ambiguous)-.1 E F0 6.69(.I)C
 4.19(fs)-6.69 G 1.691(et to)-4.19 F F1(On)4.191 E F0 4.191(,w)C 1.691
 (ords which ha)-4.291 F 1.991 -.15(ve m)-.2 H 1.691
-(ore than one possible completion).15 F 1.04(without an)144 528 R 3.54
+(ore than one possible completion).15 F 1.04(without an)144 468 R 3.54
 (yp)-.15 G 1.039
 (ossible partial completion \(the possible completions don')-3.54 F
 3.539(ts)-.18 G 1.039(hare a common pre\214x\))-3.539 F(cause the match\
-es to be listed immediately instead of ringing the bell.)144 540 Q F1
-(sho)108 552 Q(w\255mode\255in\255pr)-.1 E(ompt \(Off\))-.18 E F0 1.021
-(If set to)144 564 R F1(On)3.521 E F0 3.521(,a)C 1.022
+es to be listed immediately instead of ringing the bell.)144 480 Q F1
+(sho)108 492 Q(w\255mode\255in\255pr)-.1 E(ompt \(Off\))-.18 E F0 1.021
+(If set to)144 504 R F1(On)3.521 E F0 3.521(,a)C 1.022
 (dd a string to the be)-3.521 F 1.022
 (ginning of the prompt indicating the editing mode: emacs, vi)-.15 F
-(command, or vi insertion.)144 576 Q(The mode strings are user)5 E
+(command, or vi insertion.)144 516 Q(The mode strings are user)5 E
 (-settable \(e.g.,)-.2 E F2(emacs\255mode\255string)2.5 E F0(\).)A F1
-(skip\255completed\255text \(Off\))108 588 Q F0 .095(If set to)144 600 R
+(skip\255completed\255text \(Off\))108 528 Q F0 .095(If set to)144 540 R
 F1(On)2.595 E F0 2.595(,t)C .095(his alters the def)-2.595 F .095
 (ault completion beha)-.1 F .094
-(vior when inserting a single match into the line.)-.2 F(It')144 612 Q
+(vior when inserting a single match into the line.)-.2 F(It')144 552 Q
 2.545(so)-.55 G .045(nly acti)-2.545 F .345 -.15(ve w)-.25 H .046
 (hen performing completion in the middle of a w).15 F 2.546(ord. If)-.1
 F .046(enabled, readline does not)2.546 F 1.394(insert characters from \
-the completion that match characters after point in the w)144 624 R
-1.394(ord being com-)-.1 F(pleted, so portions of the w)144 636 Q
+the completion that match characters after point in the w)144 564 R
+1.394(ord being com-)-.1 F(pleted, so portions of the w)144 576 Q
 (ord follo)-.1 E(wing the cursor are not duplicated.)-.25 E F1
-(vi\255cmd\255mode\255string \(\(cmd\)\))108 648 Q F0 .517(If the)144
-660 R F2(show\255mode\255in\255pr)3.017 E(ompt)-.45 E F0 -.25(va)3.017 G
+(vi\255cmd\255mode\255string \(\(cmd\)\))108 588 Q F0 .517(If the)144
+600 R F2(show\255mode\255in\255pr)3.017 E(ompt)-.45 E F0 -.25(va)3.017 G
 .518(riable is enabled, this string is displayed immediately before the)
 .25 F .475(last line of the primary prompt when vi editing mode is acti)
-144 672 R .775 -.15(ve a)-.25 H .475(nd in command mode.).15 F .475
-(The v)5.475 F(alue)-.25 E .33(is e)144 684 R .33(xpanded lik)-.15 F
+144 612 R .775 -.15(ve a)-.25 H .475(nd in command mode.).15 F .475
+(The v)5.475 F(alue)-.25 E .33(is e)144 624 R .33(xpanded lik)-.15 F
 2.83(eak)-.1 G .63 -.15(ey b)-2.93 H .33
 (inding, so the standard set of meta- and control pre\214x).15 F .33
-(es and backslash es-)-.15 F .245(cape sequences is a)144 696 R -.25(va)
+(es and backslash es-)-.15 F .245(cape sequences is a)144 636 R -.25(va)
 -.2 G 2.745(ilable. Use).25 F .244(the \\1 and \\2 escapes to be)2.745 F
 .244(gin and end sequences of non-printing)-.15 F(characters, which can\
  be used to embed a terminal control sequence into the mode string.)144
-708 Q(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(47)197.335 E 0 Cg EP
-%%Page: 48 48
-%%BeginPageSetup
-BP
-%%EndPageSetup
-/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
-SF(vi\255ins\255mode\255string \(\(ins\)\))108 84 Q F0 .517(If the)144
-96 R/F2 10/Times-Italic@0 SF(show\255mode\255in\255pr)3.017 E(ompt)-.45
-E F0 -.25(va)3.017 G .518
+648 Q F1(vi\255ins\255mode\255string \(\(ins\)\))108 660 Q F0 .517
+(If the)144 672 R F2(show\255mode\255in\255pr)3.017 E(ompt)-.45 E F0
+-.25(va)3.017 G .518
 (riable is enabled, this string is displayed immediately before the).25
 F .186(last line of the primary prompt when vi editing mode is acti)144
-108 R .486 -.15(ve a)-.25 H .186(nd in insertion mode.).15 F .186(The v)
-5.186 F .186(alue is)-.25 F -.15(ex)144 120 S .923(panded lik).15 F
+684 R .486 -.15(ve a)-.25 H .186(nd in insertion mode.).15 F .186(The v)
+5.186 F .186(alue is)-.25 F -.15(ex)144 696 S .923(panded lik).15 F
 3.423(eak)-.1 G 1.223 -.15(ey b)-3.523 H .924
 (inding, so the standard set of meta- and control pre\214x).15 F .924
-(es and backslash es-)-.15 F .245(cape sequences is a)144 132 R -.25(va)
+(es and backslash es-)-.15 F .245(cape sequences is a)144 708 R -.25(va)
 -.2 G 2.745(ilable. Use).25 F .244(the \\1 and \\2 escapes to be)2.745 F
 .244(gin and end sequences of non-printing)-.15 F(characters, which can\
  be used to embed a terminal control sequence into the mode string.)144
-144 Q F1(visible\255stats \(Off\))108 156 Q F0 .846(If set to)144 168 R
-F1(On)3.346 E F0 3.346(,ac)C .846(haracter denoting a \214le')-3.346 F
-3.346(st)-.55 G .846(ype as reported by)-3.346 F F2(stat)3.346 E F0 .846
-(\(2\) is appended to the \214lename)B
-(when listing possible completions.)144 180 Q F1
-(Readline Conditional Constructs)87 196.8 Q F0 .05
-(Readline implements a f)108 208.8 R .05(acility similar in spirit to t\
+720 Q(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(47)197.335 E 0 Cg EP
+%%Page: 48 48
+%%BeginPageSetup
+BP
+%%EndPageSetup
+/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
+SF(visible\255stats \(Off\))108 84 Q F0 .846(If set to)144 96 R F1(On)
+3.346 E F0 3.346(,ac)C .846(haracter denoting a \214le')-3.346 F 3.346
+(st)-.55 G .846(ype as reported by)-3.346 F/F2 10/Times-Italic@0 SF
+(stat)3.346 E F0 .846(\(2\) is appended to the \214lename)B
+(when listing possible completions.)144 108 Q F1
+(Readline Conditional Constructs)87 124.8 Q F0 .05
+(Readline implements a f)108 136.8 R .05(acility similar in spirit to t\
 he conditional compilation features of the C preprocessor)-.1 F .096
-(which allo)108 220.8 R .096(ws k)-.25 F .396 -.15(ey b)-.1 H .096
+(which allo)108 148.8 R .096(ws k)-.25 F .396 -.15(ey b)-.1 H .096
 (indings and v).15 F .096
 (ariable settings to be performed as the result of tests.)-.25 F .097
-(There are four parser)5.096 F(directi)108 232.8 Q -.15(ve)-.25 G 2.5
-(su).15 G(sed.)-2.5 E F1($if)108 249.6 Q F0(The)144 249.6 Q F1($if)2.963
+(There are four parser)5.096 F(directi)108 160.8 Q -.15(ve)-.25 G 2.5
+(su).15 G(sed.)-2.5 E F1($if)108 177.6 Q F0(The)144 177.6 Q F1($if)2.963
 E F0 .463(construct allo)2.963 F .462(ws bindings to be made based on t\
 he editing mode, the terminal being used,)-.25 F
-(or the application using readline.)144 261.6 Q(The te)5 E
+(or the application using readline.)144 189.6 Q(The te)5 E
 (xt of the test, after an)-.15 E 2.5(yc)-.15 G(omparison operator)-2.5 E
-(,)-.4 E -.15(ex)146.5 273.6 S(tends to the end of the line; unless oth\
+(,)-.4 E -.15(ex)146.5 201.6 S(tends to the end of the line; unless oth\
 erwise noted, no characters are required to isolate it.).15 E F1(mode)
-144 290.4 Q F0(The)180 290.4 Q F1(mode=)3.711 E F0 1.211(form of the)
+144 218.4 Q F0(The)180 218.4 Q F1(mode=)3.711 E F0 1.211(form of the)
 3.711 F F1($if)3.711 E F0(directi)3.711 E 1.511 -.15(ve i)-.25 H 3.711
 (su).15 G 1.211(sed to test whether readline is in emacs or vi)-3.711 F
-3.065(mode. This)180 302.4 R .565(may be used in conjunction with the)
+3.065(mode. This)180 230.4 R .565(may be used in conjunction with the)
 3.065 F F1 .565(set k)3.065 F(eymap)-.1 E F0 .565
-(command, for instance, to)3.065 F .735(set bindings in the)180 314.4 R
+(command, for instance, to)3.065 F .735(set bindings in the)180 242.4 R
 F2(emacs\255standar)3.235 E(d)-.37 E F0(and)3.235 E F2(emacs\255ctlx)
 3.235 E F0 -.1(ke)3.235 G .735(ymaps only if readline is starting)-.05 F
-(out in emacs mode.)180 326.4 Q F1(term)144 343.2 Q F0(The)180 343.2 Q
+(out in emacs mode.)180 254.4 Q F1(term)144 271.2 Q F0(The)180 271.2 Q
 F1(term=)3.197 E F0 .696
 (form may be used to include terminal-speci\214c k)3.197 F .996 -.15
-(ey b)-.1 H .696(indings, perhaps to bind).15 F .654(the k)180 355.2 R
+(ey b)-.1 H .696(indings, perhaps to bind).15 F .654(the k)180 283.2 R
 .954 -.15(ey s)-.1 H .654(equences output by the terminal').15 F 3.154
 (sf)-.55 G .654(unction k)-3.154 F -.15(ey)-.1 G 3.154(s. The).15 F -.1
-(wo)3.154 G .654(rd on the right side of).1 F(the)180 367.2 Q F1(=)3.232
+(wo)3.154 G .654(rd on the right side of).1 F(the)180 295.2 Q F1(=)3.232
 E F0 .732(is tested ag)3.232 F .732(ainst both the full name of the ter\
 minal and the portion of the terminal)-.05 F(name before the \214rst)180
-379.2 Q F1<ad>2.5 E F0 5(.T)C(his allo)-5 E(ws)-.25 E F2(sun)2.84 E F0
+307.2 Q F1<ad>2.5 E F0 5(.T)C(his allo)-5 E(ws)-.25 E F2(sun)2.84 E F0
 (to match both)2.74 E F2(sun)2.84 E F0(and)2.74 E F2(sun\255cmd)2.84 E
-F0 2.5(,f).77 G(or instance.)-2.5 E F1 -.1(ve)144 396 S(rsion).1 E F0
-(The)180 408 Q F1 -.1(ve)3.108 G(rsion).1 E F0 .608
+F0 2.5(,f).77 G(or instance.)-2.5 E F1 -.1(ve)144 324 S(rsion).1 E F0
+(The)180 336 Q F1 -.1(ve)3.108 G(rsion).1 E F0 .608
 (test may be used to perform comparisons ag)3.108 F .609
-(ainst speci\214c readline v)-.05 F(ersions.)-.15 E(The)180 420 Q F1 -.1
+(ainst speci\214c readline v)-.05 F(ersions.)-.15 E(The)180 348 Q F1 -.1
 (ve)2.772 G(rsion).1 E F0 -.15(ex)2.772 G .272
 (pands to the current readline v).15 F 2.771(ersion. The)-.15 F .271
-(set of comparison operators in-)2.771 F(cludes)180 432 Q F1(=)3.063 E
+(set of comparison operators in-)2.771 F(cludes)180 360 Q F1(=)3.063 E
 F0 3.063(,\()C(and)-3.063 E F1(==)3.063 E F0(\),)A F1(!=)3.063 E F0(,)A
 F1(<=)3.063 E F0(,)A F1(>=)3.063 E F0(,)A F1(<)3.063 E F0 3.063(,a)C(nd)
 -3.063 E F1(>)3.064 E F0 5.564(.T)C .564(he v)-5.564 F .564
 (ersion number supplied on the right side)-.15 F .318
-(of the operator consists of a major v)180 444 R .318(ersion number)-.15
+(of the operator consists of a major v)180 372 R .318(ersion number)-.15
 F 2.818(,a)-.4 G 2.818(no)-2.818 G .318
-(ptional decimal point, and an op-)-2.818 F .1(tional minor v)180 456 R
+(ptional decimal point, and an op-)-2.818 F .1(tional minor v)180 384 R
 .1(ersion \(e.g.,)-.15 F F1(7.1)2.6 E F0 .1(\). If the minor v)B .101
 (ersion is omitted, it is assumed to be)-.15 F F1(0)2.601 E F0 5.101(.T)
-C(he)-5.101 E .06(operator may be separated from the string)180 468 R F1
+C(he)-5.101 E .06(operator may be separated from the string)180 396 R F1
 -.1(ve)2.56 G(rsion).1 E F0 .06(and from the v)2.56 F .06
-(ersion number ar)-.15 F(gument)-.18 E(by whitespace.)180 480 Q F1
-(application)144 496.8 Q F0(The)180 508.8 Q F1(application)3.003 E F0
+(ersion number ar)-.15 F(gument)-.18 E(by whitespace.)180 408 Q F1
+(application)144 424.8 Q F0(The)180 436.8 Q F1(application)3.003 E F0
 .503(construct is used to include application-speci\214c settings.)3.003
 F .503(Each program)5.503 F .114(using the readline library sets the)180
-520.8 R F2 .114(application name)2.614 F F0 2.614(,a)C .114
+448.8 R F2 .114(application name)2.614 F F0 2.614(,a)C .114
 (nd an initialization \214le can test for a)-2.614 F .5(particular v)180
-532.8 R 3(alue. This)-.25 F .501(could be used to bind k)3 F .801 -.15
+460.8 R 3(alue. This)-.25 F .501(could be used to bind k)3 F .801 -.15
 (ey s)-.1 H .501(equences to functions useful for a spe-).15 F .397
-(ci\214c program.)180 544.8 R -.15(Fo)5.397 G 2.896(ri).15 G .396
+(ci\214c program.)180 472.8 R -.15(Fo)5.397 G 2.896(ri).15 G .396
 (nstance, the follo)-2.896 F .396(wing command adds a k)-.25 F .696 -.15
-(ey s)-.1 H .396(equence that quotes the).15 F(current or pre)180 556.8
-Q(vious w)-.25 E(ord in)-.1 E F1(bash)2.5 E F0(:)A F1($if)180 580.8 Q F0
-(Bash)2.5 E 2.5(#Q)180 592.8 S(uote the current or pre)-2.5 E(vious w)
--.25 E(ord)-.1 E("\\C\255xq": "\\eb\\"\\ef\\"")180 604.8 Q F1($endif)180
-616.8 Q F2(variable)144 633.6 Q F0(The)180 645.6 Q F2(variable)3.776 E
+(ey s)-.1 H .396(equence that quotes the).15 F(current or pre)180 484.8
+Q(vious w)-.25 E(ord in)-.1 E F1(bash)2.5 E F0(:)A F1($if)180 508.8 Q F0
+(Bash)2.5 E 2.5(#Q)180 520.8 S(uote the current or pre)-2.5 E(vious w)
+-.25 E(ord)-.1 E("\\C\255xq": "\\eb\\"\\ef\\"")180 532.8 Q F1($endif)180
+544.8 Q F2(variable)144 561.6 Q F0(The)180 573.6 Q F2(variable)3.776 E
 F0 1.276(construct pro)3.776 F 1.276
 (vides simple equality tests for readline v)-.15 F 1.277(ariables and v)
 -.25 F(alues.)-.25 E .08(The permitted comparison operators are)180
-657.6 R F2(=)2.579 E F0(,)A F2(==)2.579 E F0 2.579(,a)C(nd)-2.579 E F2
+585.6 R F2(=)2.579 E F0(,)A F2(==)2.579 E F0 2.579(,a)C(nd)-2.579 E F2
 (!=)2.579 E F0 5.079(.T)C .079(he v)-5.079 F .079
 (ariable name must be sepa-)-.25 F .98(rated from the comparison operat\
-or by whitespace; the operator may be separated from)180 669.6 R .13
-(the v)180 681.6 R .13(alue on the right hand side by whitespace.)-.25 F
+or by whitespace; the operator may be separated from)180 597.6 R .13
+(the v)180 609.6 R .13(alue on the right hand side by whitespace.)-.25 F
 .129(Both string and boolean v)5.129 F .129(ariables may be)-.25 F
-(tested. Boolean v)180 693.6 Q(ariables must be tested ag)-.25 E
+(tested. Boolean v)180 621.6 Q(ariables must be tested ag)-.25 E
 (ainst the v)-.05 E(alues)-.25 E F2(on)2.5 E F0(and)2.5 E F2(of)2.5 E(f)
--.18 E F0(.)A F1($endif)108 710.4 Q F0(This command, as seen in the pre)
-144 710.4 Q(vious e)-.25 E(xample, terminates an)-.15 E F1($if)2.5 E F0
-(command.)2.5 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(48)197.335 E
-0 Cg EP
+-.18 E F0(.)A F1($endif)108 638.4 Q F0(This command, as seen in the pre)
+144 638.4 Q(vious e)-.25 E(xample, terminates an)-.15 E F1($if)2.5 E F0
+(command.)2.5 E F1($else)108 655.2 Q F0(Commands in this branch of the)
+144 655.2 Q F1($if)2.5 E F0(directi)2.5 E .3 -.15(ve a)-.25 H(re e).15 E
+-.15(xe)-.15 G(cuted if the test f).15 E(ails.)-.1 E F1($include)108 672
+Q F0 .356(This directi)144 684 R .656 -.15(ve t)-.25 H(ak).15 E .356
+(es a single \214lename as an ar)-.1 F .357
+(gument and reads commands and bindings from that)-.18 F 2.5(\214le. F)
+144 696 R(or e)-.15 E(xample, the follo)-.15 E(wing directi)-.25 E .3
+-.15(ve w)-.25 H(ould read).05 E F2(/etc/inputr)2.5 E(c)-.37 E F0(:)A F1
+($include)144 720 Q F2(/etc/inputr)5.833 E(c)-.37 E F0(GNU Bash 5.2)72
+768 Q(2023 May 23)148.175 E(48)197.335 E 0 Cg EP
 %%Page: 49 49
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
 (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
-SF($else)108 84 Q F0(Commands in this branch of the)144 84 Q F1($if)2.5
-E F0(directi)2.5 E .3 -.15(ve a)-.25 H(re e).15 E -.15(xe)-.15 G
-(cuted if the test f).15 E(ails.)-.1 E F1($include)108 100.8 Q F0 .356
-(This directi)144 112.8 R .656 -.15(ve t)-.25 H(ak).15 E .356
-(es a single \214lename as an ar)-.1 F .357
-(gument and reads commands and bindings from that)-.18 F 2.5(\214le. F)
-144 124.8 R(or e)-.15 E(xample, the follo)-.15 E(wing directi)-.25 E .3
--.15(ve w)-.25 H(ould read).05 E/F2 10/Times-Italic@0 SF(/etc/inputr)2.5
-E(c)-.37 E F0(:)A F1($include)144 148.8 Q F2(/etc/inputr)5.833 E(c)-.37
-E F1(Sear)87 165.6 Q(ching)-.18 E F0 .835(Readline pro)108 177.6 R .835
+SF(Sear)87 84 Q(ching)-.18 E F0 .835(Readline pro)108 96 R .835
 (vides commands for searching through the command history \(see)-.15 F
-/F3 9/Times-Bold@0 SF(HIST)3.334 E(OR)-.162 E(Y)-.315 E F0(belo)3.084 E
-.834(w\) for lines)-.25 F(containing a speci\214ed string.)108 189.6 Q
-(There are tw)5 E 2.5(os)-.1 G(earch modes:)-2.5 E F2(incr)2.51 E
-(emental)-.37 E F0(and)3.01 E F2(non-incr)2.86 E(emental)-.37 E F0(.).51
-E .697(Incremental searches be)108 206.4 R .697
+/F2 9/Times-Bold@0 SF(HIST)3.334 E(OR)-.162 E(Y)-.315 E F0(belo)3.084 E
+.834(w\) for lines)-.25 F(containing a speci\214ed string.)108 108 Q
+(There are tw)5 E 2.5(os)-.1 G(earch modes:)-2.5 E/F3 10/Times-Italic@0
+SF(incr)2.51 E(emental)-.37 E F0(and)3.01 E F3(non-incr)2.86 E(emental)
+-.37 E F0(.).51 E .697(Incremental searches be)108 124.8 R .697
 (gin before the user has \214nished typing the search string.)-.15 F
 .698(As each character of the)5.698 F .113
-(search string is typed, readline displays the ne)108 218.4 R .112
+(search string is typed, readline displays the ne)108 136.8 R .112
 (xt entry from the history matching the string typed so f)-.15 F(ar)-.1
 E 5.112(.A)-.55 G(n)-5.112 E .542
-(incremental search requires only as man)108 230.4 R 3.042(yc)-.15 G
+(incremental search requires only as man)108 148.8 R 3.042(yc)-.15 G
 .542(haracters as needed to \214nd the desired history entry)-3.042 F
 5.542(.T)-.65 G .542(he char)-5.542 F(-)-.2 E .224
-(acters present in the v)108 242.4 R .224(alue of the)-.25 F F1(isear)
+(acters present in the v)108 160.8 R .224(alue of the)-.25 F F1(isear)
 2.724 E(ch-terminators)-.18 E F0 -.25(va)2.724 G .224
 (riable are used to terminate an incremental search.).25 F .66
-(If that v)108 254.4 R .66(ariable has not been assigned a v)-.25 F .66
+(If that v)108 172.8 R .66(ariable has not been assigned a v)-.25 F .66
 (alue the Escape and Control-J characters will terminate an incre-)-.25
-F .097(mental search.)108 266.4 R .096(Control-G will abort an incremen\
+F .097(mental search.)108 184.8 R .096(Control-G will abort an incremen\
 tal search and restore the original line.)5.097 F .096
 (When the search is)5.096 F(terminated, the history entry containing th\
-e search string becomes the current line.)108 278.4 Q 2.938 -.8(To \214)
-108 295.2 T 1.339(nd other matching entries in the history list, type C\
+e search string becomes the current line.)108 196.8 Q 2.938 -.8(To \214)
+108 213.6 T 1.339(nd other matching entries in the history list, type C\
 ontrol-S or Control-R as appropriate.).8 F 1.339(This will)6.339 F .675
-(search backw)108 307.2 R .675(ard or forw)-.1 F .675
+(search backw)108 225.6 R .675(ard or forw)-.1 F .675
 (ard in the history for the ne)-.1 F .674
 (xt entry matching the search string typed so f)-.15 F(ar)-.1 E 5.674
-(.A)-.55 G -.15(ny)-5.674 G .174(other k)108 319.2 R .474 -.15(ey s)-.1
+(.A)-.55 G -.15(ny)-5.674 G .174(other k)108 237.6 R .474 -.15(ey s)-.1
 H .174
 (equence bound to a readline command will terminate the search and e).15
 F -.15(xe)-.15 G .175(cute that command.).15 F -.15(Fo)5.175 G(r).15 E
-.541(instance, a)108 331.2 R F2(ne)3.041 E(wline)-.15 E F0 .541
+.541(instance, a)108 249.6 R F3(ne)3.041 E(wline)-.15 E F0 .541
 (will terminate the search and accept the line, thereby e)3.041 F -.15
-(xe)-.15 G .54(cuting the command from the).15 F(history list.)108 343.2
-Q .653(Readline remembers the last incremental search string.)108 360 R
-.653(If tw)5.653 F 3.153(oC)-.1 G .653(ontrol-Rs are typed without an)
+(xe)-.15 G .54(cuting the command from the).15 F(history list.)108 261.6
+Q .653(Readline remembers the last incremental search string.)108 278.4
+.653(If tw)5.653 F 3.153(oC)-.1 G .653(ontrol-Rs are typed without an)
 -3.153 F 3.153(yi)-.15 G(nterv)-3.153 E(en-)-.15 E
-(ing characters de\214ning a ne)108 372 Q 2.5(ws)-.25 G
+(ing characters de\214ning a ne)108 290.4 Q 2.5(ws)-.25 G
 (earch string, an)-2.5 E 2.5(yr)-.15 G(emembered search string is used.)
 -2.5 E .567(Non-incremental searches read the entire search string befo\
-re starting to search for matching history lines.)108 388.8 R(The searc\
+re starting to search for matching history lines.)108 307.2 R(The searc\
 h string may be typed by the user or be part of the contents of the cur\
-rent line.)108 400.8 Q F1(Readline Command Names)87 417.6 Q F0 1.391
-(The follo)108 429.6 R 1.391
+rent line.)108 319.2 Q F1(Readline Command Names)87 336 Q F0 1.391
+(The follo)108 348 R 1.391
 (wing is a list of the names of the commands and the def)-.25 F 1.391
 (ault k)-.1 F 1.691 -.15(ey s)-.1 H 1.391(equences to which the).15 F
-3.892(ya)-.15 G(re)-3.892 E 2.622(bound. Command)108 441.6 R .122
+3.892(ya)-.15 G(re)-3.892 E 2.622(bound. Command)108 360 R .122
 (names without an accompan)2.622 F .122(ying k)-.15 F .421 -.15(ey s)-.1
 H .121(equence are unbound by def).15 F 2.621(ault. In)-.1 F .121
-(the follo)2.621 F(wing)-.25 E(descriptions,)108 453.6 Q F2(point)3.41 E
-F0 .91(refers to the current cursor position, and)3.41 F F2(mark)3.411 E
+(the follo)2.621 F(wing)-.25 E(descriptions,)108 372 Q F3(point)3.41 E
+F0 .91(refers to the current cursor position, and)3.41 F F3(mark)3.411 E
 F0 .911(refers to a cursor position sa)3.411 F -.15(ve)-.2 G 3.411(db)
-.15 G 3.411(yt)-3.411 G(he)-3.411 E F1(set\255mark)108 465.6 Q F0 2.5
+.15 G 3.411(yt)-3.411 G(he)-3.411 E F1(set\255mark)108 384 Q F0 2.5
 (command. The)2.5 F(te)2.5 E
-(xt between the point and mark is referred to as the)-.15 E F2 -.37(re)
-2.5 G(gion)-.03 E F0(.)A F1(Commands f)87 482.4 Q(or Mo)-.25 E(ving)-.1
-E(beginning\255of\255line \(C\255a\))108 494.4 Q F0(Mo)144 506.4 Q .3
+(xt between the point and mark is referred to as the)-.15 E F3 -.37(re)
+2.5 G(gion)-.03 E F0(.)A F1(Commands f)87 400.8 Q(or Mo)-.25 E(ving)-.1
+E(beginning\255of\255line \(C\255a\))108 412.8 Q F0(Mo)144 424.8 Q .3
 -.15(ve t)-.15 H 2.5(ot).15 G(he start of the current line.)-2.5 E F1
-(end\255of\255line \(C\255e\))108 518.4 Q F0(Mo)144 530.4 Q .3 -.15
+(end\255of\255line \(C\255e\))108 436.8 Q F0(Mo)144 448.8 Q .3 -.15
 (ve t)-.15 H 2.5(ot).15 G(he end of the line.)-2.5 E F1 -.25(fo)108
-542.4 S(rward\255char \(C\255f\)).25 E F0(Mo)144 554.4 Q .3 -.15(ve f)
+460.8 S(rward\255char \(C\255f\)).25 E F0(Mo)144 472.8 Q .3 -.15(ve f)
 -.15 H(orw).15 E(ard a character)-.1 E(.)-.55 E F1
-(backward\255char \(C\255b\))108 566.4 Q F0(Mo)144 578.4 Q .3 -.15(ve b)
--.15 H(ack a character).15 E(.)-.55 E F1 -.25(fo)108 590.4 S(rward\255w)
-.25 E(ord \(M\255f\))-.1 E F0(Mo)144 602.4 Q .823 -.15(ve f)-.15 H(orw)
+(backward\255char \(C\255b\))108 484.8 Q F0(Mo)144 496.8 Q .3 -.15(ve b)
+-.15 H(ack a character).15 E(.)-.55 E F1 -.25(fo)108 508.8 S(rward\255w)
+.25 E(ord \(M\255f\))-.1 E F0(Mo)144 520.8 Q .823 -.15(ve f)-.15 H(orw)
 .15 E .523(ard to the end of the ne)-.1 F .523(xt w)-.15 F 3.023(ord. W)
 -.1 F .522(ords are composed of alphanumeric characters \(let-)-.8 F
-(ters and digits\).)144 614.4 Q F1(backward\255w)108 626.4 Q
-(ord \(M\255b\))-.1 E F0(Mo)144 638.4 Q 1.71 -.15(ve b)-.15 H 1.41
+(ters and digits\).)144 532.8 Q F1(backward\255w)108 544.8 Q
+(ord \(M\255b\))-.1 E F0(Mo)144 556.8 Q 1.71 -.15(ve b)-.15 H 1.41
 (ack to the start of the current or pre).15 F 1.41(vious w)-.25 F 3.91
 (ord. W)-.1 F 1.41(ords are composed of alphanumeric)-.8 F
-(characters \(letters and digits\).)144 650.4 Q F1(shell\255f)108 662.4
-Q(orward\255w)-.25 E(ord)-.1 E F0(Mo)144 674.4 Q .784 -.15(ve f)-.15 H
+(characters \(letters and digits\).)144 568.8 Q F1(shell\255f)108 580.8
+Q(orward\255w)-.25 E(ord)-.1 E F0(Mo)144 592.8 Q .784 -.15(ve f)-.15 H
 (orw).15 E .484(ard to the end of the ne)-.1 F .484(xt w)-.15 F 2.984
 (ord. W)-.1 F .484(ords are delimited by non-quoted shell metacharac-)
--.8 F(ters.)144 686.4 Q F1(shell\255backward\255w)108 698.4 Q(ord)-.1 E
-F0(Mo)144 710.4 Q .908 -.15(ve b)-.15 H .609
+-.8 F(ters.)144 604.8 Q F1(shell\255backward\255w)108 616.8 Q(ord)-.1 E
+F0(Mo)144 628.8 Q .908 -.15(ve b)-.15 H .609
 (ack to the start of the current or pre).15 F .609(vious w)-.25 F 3.109
 (ord. W)-.1 F .609(ords are delimited by non-quoted shell)-.8 F
-(metacharacters.)144 722.4 Q(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E
-(49)197.335 E 0 Cg EP
+(metacharacters.)144 640.8 Q F1(pr)108 652.8 Q -.15(ev)-.18 G
+(ious\255scr).15 E(een\255line)-.18 E F0 .891(Attempt to mo)144 664.8 R
+1.191 -.15(ve p)-.15 H .891(oint to the same ph).15 F .891
+(ysical screen column on the pre)-.05 F .89(vious ph)-.25 F .89
+(ysical screen line.)-.05 F 1.055(This will not ha)144 676.8 R 1.355
+-.15(ve t)-.2 H 1.055(he desired ef).15 F 1.056
+(fect if the current readline line does not tak)-.25 F 3.556(eu)-.1 G
+3.556(pm)-3.556 G 1.056(ore than one)-3.556 F(ph)144 688.8 Q(ysical lin\
+e or if point is not greater than the length of the prompt plus the scr\
+een width.)-.05 E F1(next\255scr)108 700.8 Q(een\255line)-.18 E F0 .638
+(Attempt to mo)144 712.8 R .938 -.15(ve p)-.15 H .638
+(oint to the same ph).15 F .637(ysical screen column on the ne)-.05 F
+.637(xt ph)-.15 F .637(ysical screen line. This)-.05 F .194(will not ha)
+144 724.8 R .494 -.15(ve t)-.2 H .194(he desired ef).15 F .194
+(fect if the current readline line does not tak)-.25 F 2.695(eu)-.1 G
+2.695(pm)-2.695 G .195(ore than one ph)-2.695 F(ysical)-.05 E
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(49)197.335 E 0 Cg EP
 %%Page: 50 50
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
-SF(pr)108 84 Q -.15(ev)-.18 G(ious\255scr).15 E(een\255line)-.18 E F0
-.891(Attempt to mo)144 96 R 1.191 -.15(ve p)-.15 H .891
-(oint to the same ph).15 F .891(ysical screen column on the pre)-.05 F
-.89(vious ph)-.25 F .89(ysical screen line.)-.05 F 1.055
-(This will not ha)144 108 R 1.355 -.15(ve t)-.2 H 1.055(he desired ef)
-.15 F 1.056(fect if the current readline line does not tak)-.25 F 3.556
-(eu)-.1 G 3.556(pm)-3.556 G 1.056(ore than one)-3.556 F(ph)144 120 Q(ys\
-ical line or if point is not greater than the length of the prompt plus\
- the screen width.)-.05 E F1(next\255scr)108 132 Q(een\255line)-.18 E F0
-.638(Attempt to mo)144 144 R .938 -.15(ve p)-.15 H .638
-(oint to the same ph).15 F .637(ysical screen column on the ne)-.05 F
-.637(xt ph)-.15 F .637(ysical screen line. This)-.05 F .194(will not ha)
-144 156 R .494 -.15(ve t)-.2 H .194(he desired ef).15 F .194
-(fect if the current readline line does not tak)-.25 F 2.695(eu)-.1 G
-2.695(pm)-2.695 G .195(ore than one ph)-2.695 F(ysical)-.05 E .164(line\
- or if the length of the current readline line is not greater than the \
-length of the prompt plus the)144 168 R(screen width.)144 180 Q F1
-(clear\255display \(M\255C\255l\))108 192 Q F0 1.498
-(Clear the screen and, if possible, the terminal')144 204 R 3.999(ss)
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .164(line or if t\
+he length of the current readline line is not greater than the length o\
+f the prompt plus the)144 84 R(screen width.)144 96 Q/F1 10/Times-Bold@0
+SF(clear\255display \(M\255C\255l\))108 108 Q F0 1.498
+(Clear the screen and, if possible, the terminal')144 120 R 3.999(ss)
 -.55 G 1.499(crollback b)-3.999 F(uf)-.2 E(fer)-.25 E 3.999(,t)-.4 G
 1.499(hen redra)-3.999 F 3.999(wt)-.15 G 1.499(he current line,)-3.999 F
-(lea)144 216 Q(ving the current line at the top of the screen.)-.2 E F1
-(clear\255scr)108 228 Q(een \(C\255l\))-.18 E F0 1.36
-(Clear the screen, then redra)144 240 R 3.86(wt)-.15 G 1.36
+(lea)144 132 Q(ving the current line at the top of the screen.)-.2 E F1
+(clear\255scr)108 144 Q(een \(C\255l\))-.18 E F0 1.36
+(Clear the screen, then redra)144 156 R 3.86(wt)-.15 G 1.36
 (he current line, lea)-3.86 F 1.36
-(ving the current line at the top of the screen.)-.2 F -.4(Wi)144 252 S
+(ving the current line at the top of the screen.)-.2 F -.4(Wi)144 168 S
 (th an ar).4 E
 (gument, refresh the current line without clearing the screen.)-.18 E F1
--.18(re)108 264 S(draw\255curr).18 E(ent\255line)-.18 E F0
-(Refresh the current line.)144 276 Q F1(Commands f)87 292.8 Q
+-.18(re)108 180 S(draw\255curr).18 E(ent\255line)-.18 E F0
+(Refresh the current line.)144 192 Q F1(Commands f)87 208.8 Q
 (or Manipulating the History)-.25 E(accept\255line \(Newline, Retur)108
-304.8 Q(n\))-.15 E F0 .158(Accept the line re)144 316.8 R -.05(ga)-.15 G
+220.8 Q(n\))-.15 E F0 .158(Accept the line re)144 232.8 R -.05(ga)-.15 G
 .158(rdless of where the cursor is.).05 F .158
 (If this line is non-empty)5.158 F 2.659(,a)-.65 G .159
 (dd it to the history list)-2.659 F .699(according to the state of the)
-144 328.8 R/F2 9/Times-Bold@0 SF(HISTCONTR)3.199 E(OL)-.27 E F0 -.25(va)
+144 244.8 R/F2 9/Times-Bold@0 SF(HISTCONTR)3.199 E(OL)-.27 E F0 -.25(va)
 2.949 G 3.199(riable. If).25 F .699
 (the line is a modi\214ed history line, then)3.199 F
-(restore the history line to its original state.)144 340.8 Q F1(pr)108
-352.8 Q -.15(ev)-.18 G(ious\255history \(C\255p\)).15 E F0
-(Fetch the pre)144 364.8 Q(vious command from the history list, mo)-.25
-E(ving back in the list.)-.15 E F1(next\255history \(C\255n\))108 376.8
-Q F0(Fetch the ne)144 388.8 Q(xt command from the history list, mo)-.15
+(restore the history line to its original state.)144 256.8 Q F1(pr)108
+268.8 Q -.15(ev)-.18 G(ious\255history \(C\255p\)).15 E F0
+(Fetch the pre)144 280.8 Q(vious command from the history list, mo)-.25
+E(ving back in the list.)-.15 E F1(next\255history \(C\255n\))108 292.8
+Q F0(Fetch the ne)144 304.8 Q(xt command from the history list, mo)-.15
 E(ving forw)-.15 E(ard in the list.)-.1 E F1
-(beginning\255of\255history \(M\255<\))108 400.8 Q F0(Mo)144 412.8 Q .3
+(beginning\255of\255history \(M\255<\))108 316.8 Q F0(Mo)144 328.8 Q .3
 -.15(ve t)-.15 H 2.5(ot).15 G(he \214rst line in the history)-2.5 E(.)
--.65 E F1(end\255of\255history \(M\255>\))108 424.8 Q F0(Mo)144 436.8 Q
+-.65 E F1(end\255of\255history \(M\255>\))108 340.8 Q F0(Mo)144 352.8 Q
 .3 -.15(ve t)-.15 H 2.5(ot).15 G(he end of the input history)-2.5 E 2.5
 (,i)-.65 G(.e., the line currently being entered.)-2.5 E F1
-(operate\255and\255get\255next \(C\255o\))108 448.8 Q F0 .947
-(Accept the current line for e)144 460.8 R -.15(xe)-.15 G .948
+(operate\255and\255get\255next \(C\255o\))108 364.8 Q F0 .947
+(Accept the current line for e)144 376.8 R -.15(xe)-.15 G .948
 (cution and fetch the ne).15 F .948(xt line relati)-.15 F 1.248 -.15
 (ve t)-.25 H 3.448(ot).15 G .948(he current line from the)-3.448 F .73
-(history for editing.)144 472.8 R 3.23(An)5.73 G .73(umeric ar)-3.23 F
+(history for editing.)144 388.8 R 3.23(An)5.73 G .73(umeric ar)-3.23 F
 .729
 (gument, if supplied, speci\214es the history entry to use instead of)
--.18 F(the current line.)144 484.8 Q F1(fetch\255history)108 496.8 Q F0
--.4(Wi)144 508.8 S .256(th a numeric ar).4 F .256
+-.18 F(the current line.)144 400.8 Q F1(fetch\255history)108 412.8 Q F0
+-.4(Wi)144 424.8 S .256(th a numeric ar).4 F .256
 (gument, fetch that entry from the history list and mak)-.18 F 2.757(ei)
 -.1 G 2.757(tt)-2.757 G .257(he current line.)-2.757 F -.4(Wi)5.257 G
-(th-).4 E(out an ar)144 520.8 Q(gument, mo)-.18 E .3 -.15(ve b)-.15 H
+(th-).4 E(out an ar)144 436.8 Q(gument, mo)-.18 E .3 -.15(ve b)-.15 H
 (ack to the \214rst entry in the history list.).15 E F1 -2.29 -.18(re v)
-108 532.8 T(erse\255sear).08 E(ch\255history \(C\255r\))-.18 E F0 1.471
-(Search backw)144 544.8 R 1.471(ard starting at the current line and mo)
+108 448.8 T(erse\255sear).08 E(ch\255history \(C\255r\))-.18 E F0 1.471
+(Search backw)144 460.8 R 1.471(ard starting at the current line and mo)
 -.1 F 1.47(ving `up' through the history as necessary)-.15 F(.)-.65 E
-(This is an incremental search.)144 556.8 Q F1 -.25(fo)108 568.8 S
+(This is an incremental search.)144 472.8 Q F1 -.25(fo)108 484.8 S
 (rward\255sear).25 E(ch\255history \(C\255s\))-.18 E F0 1.131
-(Search forw)144 580.8 R 1.131(ard starting at the current line and mo)
+(Search forw)144 496.8 R 1.131(ard starting at the current line and mo)
 -.1 F 1.132(ving `do)-.15 F 1.132(wn' through the history as necessary)
--.25 F(.)-.65 E(This is an incremental search.)144 592.8 Q F1
-(non\255incr)108 604.8 Q(emental\255r)-.18 E -2.3 -.15(ev e)-.18 H
+-.25 F(.)-.65 E(This is an incremental search.)144 508.8 Q F1
+(non\255incr)108 520.8 Q(emental\255r)-.18 E -2.3 -.15(ev e)-.18 H
 (rse\255sear).15 E(ch\255history \(M\255p\))-.18 E F0 .165(Search backw)
-144 616.8 R .164(ard through the history starting at the current line u\
-sing a non-incremental search for)-.1 F 2.5(as)144 628.8 S
-(tring supplied by the user)-2.5 E(.)-.55 E F1(non\255incr)108 640.8 Q
+144 532.8 R .164(ard through the history starting at the current line u\
+sing a non-incremental search for)-.1 F 2.5(as)144 544.8 S
+(tring supplied by the user)-2.5 E(.)-.55 E F1(non\255incr)108 556.8 Q
 (emental\255f)-.18 E(orward\255sear)-.25 E(ch\255history \(M\255n\))-.18
-E F0 1.353(Search forw)144 652.8 R 1.354(ard through the history using \
+E F0 1.353(Search forw)144 568.8 R 1.354(ard through the history using \
 a non-incremental search for a string supplied by the)-.1 F(user)144
-664.8 Q(.)-.55 E F1(history\255sear)108 676.8 Q(ch\255f)-.18 E(orward)
--.25 E F0 .249(Search forw)144 688.8 R .249(ard through the history for\
+580.8 Q(.)-.55 E F1(history\255sear)108 592.8 Q(ch\255f)-.18 E(orward)
+-.25 E F0 .249(Search forw)144 604.8 R .249(ard through the history for\
  the string of characters between the start of the current line)-.1 F
-(and the point.)144 700.8 Q(This is a non-incremental search.)5 E
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(50)197.335 E 0 Cg EP
+(and the point.)144 616.8 Q(This is a non-incremental search.)5 E F1
+(history\255sear)108 628.8 Q(ch\255backward)-.18 E F0 .95(Search backw)
+144 640.8 R .951(ard through the history for the string of characters b\
+etween the start of the current)-.1 F(line and the point.)144 652.8 Q
+(This is a non-incremental search.)5 E F1(history\255substring\255sear)
+108 664.8 Q(ch\255backward)-.18 E F0 .951(Search backw)144 676.8 R .951
+(ard through the history for the string of characters between the start\
+ of the current)-.1 F .007(line and the current cursor position \(the)
+144 688.8 R/F3 10/Times-Italic@0 SF(point)2.507 E F0 2.507(\). The)B
+.007(search string may match an)2.507 F .007(ywhere in a history)-.15 F
+2.5(line. This)144 700.8 R(is a non-incremental search.)2.5 E
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(50)197.335 E 0 Cg EP
 %%Page: 51 51
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
 (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
-SF(history\255sear)108 84 Q(ch\255backward)-.18 E F0 .95(Search backw)
-144 96 R .951(ard through the history for the string of characters betw\
-een the start of the current)-.1 F(line and the point.)144 108 Q
-(This is a non-incremental search.)5 E F1(history\255substring\255sear)
-108 120 Q(ch\255backward)-.18 E F0 .951(Search backw)144 132 R .951(ard\
- through the history for the string of characters between the start of \
-the current)-.1 F .007(line and the current cursor position \(the)144
-144 R/F2 10/Times-Italic@0 SF(point)2.507 E F0 2.507(\). The)B .007
-(search string may match an)2.507 F .007(ywhere in a history)-.15 F 2.5
-(line. This)144 156 R(is a non-incremental search.)2.5 E F1
-(history\255substring\255sear)108 168 Q(ch\255f)-.18 E(orward)-.25 E F0
-.249(Search forw)144 180 R .249(ard through the history for the string \
-of characters between the start of the current line)-.1 F .318
-(and the point.)144 192 R .319(The search string may match an)5.318 F
+SF(history\255substring\255sear)108 84 Q(ch\255f)-.18 E(orward)-.25 E F0
+.249(Search forw)144 96 R .249(ard through the history for the string o\
+f characters between the start of the current line)-.1 F .318
+(and the point.)144 108 R .319(The search string may match an)5.318 F
 .319(ywhere in a history line.)-.15 F .319(This is a non-incremental)
-5.319 F(search.)144 204 Q F1(yank\255nth\255ar)108 216 Q 2.5(g\()-.1 G
-<4dad43ad7929>-2.5 E F0 .622(Insert the \214rst ar)144 228 R .622
+5.319 F(search.)144 120 Q F1(yank\255nth\255ar)108 132 Q 2.5(g\()-.1 G
+<4dad43ad7929>-2.5 E F0 .622(Insert the \214rst ar)144 144 R .622
 (gument to the pre)-.18 F .622(vious command \(usually the second w)-.25
 F .622(ord on the pre)-.1 F .622(vious line\))-.25 F .772(at point.)144
-240 R -.4(Wi)5.773 G .773(th an ar).4 F(gument)-.18 E F2(n)3.633 E F0
-3.273(,i).24 G .773(nsert the)-3.273 F F2(n)3.273 E F0 .773(th w)B .773
-(ord from the pre)-.1 F .773(vious command \(the w)-.25 F .773
-(ords in the)-.1 F(pre)144 252 Q .292(vious command be)-.25 F .292
-(gin with w)-.15 F .291(ord 0\).)-.1 F 2.791(An)5.291 G -2.25 -.15(eg a)
--2.791 H(ti).15 E .591 -.15(ve a)-.25 H -.18(rg).15 G .291
-(ument inserts the).18 F F2(n)2.791 E F0 .291(th w)B .291
-(ord from the end of)-.1 F .281(the pre)144 264 R .281(vious command.)
--.25 F .281(Once the ar)5.281 F(gument)-.18 E F2(n)2.781 E F0 .281
-(is computed, the ar)2.781 F .281(gument is e)-.18 F .282
-(xtracted as if the "!)-.15 F F2(n)A F0(")A(history e)144 276 Q
-(xpansion had been speci\214ed.)-.15 E F1(yank\255last\255ar)108 288 Q
+156 R -.4(Wi)5.773 G .773(th an ar).4 F(gument)-.18 E/F2 10
+/Times-Italic@0 SF(n)3.633 E F0 3.273(,i).24 G .773(nsert the)-3.273 F
+F2(n)3.273 E F0 .773(th w)B .773(ord from the pre)-.1 F .773
+(vious command \(the w)-.25 F .773(ords in the)-.1 F(pre)144 168 Q .292
+(vious command be)-.25 F .292(gin with w)-.15 F .291(ord 0\).)-.1 F
+2.791(An)5.291 G -2.25 -.15(eg a)-2.791 H(ti).15 E .591 -.15(ve a)-.25 H
+-.18(rg).15 G .291(ument inserts the).18 F F2(n)2.791 E F0 .291(th w)B
+.291(ord from the end of)-.1 F .281(the pre)144 180 R .281
+(vious command.)-.25 F .281(Once the ar)5.281 F(gument)-.18 E F2(n)2.781
+E F0 .281(is computed, the ar)2.781 F .281(gument is e)-.18 F .282
+(xtracted as if the "!)-.15 F F2(n)A F0(")A(history e)144 192 Q
+(xpansion had been speci\214ed.)-.15 E F1(yank\255last\255ar)108 204 Q
 2.5(g\()-.1 G -1.667(M\255. ,)-2.5 F -1.667(M\255_ \))2.5 F F0 1.308
-(Insert the last ar)144 300 R 1.308(gument to the pre)-.18 F 1.307
+(Insert the last ar)144 216 R 1.308(gument to the pre)-.18 F 1.307
 (vious command \(the last w)-.25 F 1.307(ord of the pre)-.1 F 1.307
-(vious history entry\).)-.25 F -.4(Wi)144 312 S .203(th a numeric ar).4
+(vious history entry\).)-.25 F -.4(Wi)144 228 S .203(th a numeric ar).4
 F .203(gument, beha)-.18 F .504 -.15(ve ex)-.2 H .204(actly lik).15 F(e)
 -.1 E F1(yank\255nth\255ar)2.704 E(g)-.1 E F0 5.204(.S)C(uccessi)-5.204
 E .504 -.15(ve c)-.25 H .204(alls to).15 F F1(yank\255last\255ar)2.704 E
-(g)-.1 E F0(mo)144 324 Q .807 -.15(ve b)-.15 H .507
+(g)-.1 E F0(mo)144 240 Q .807 -.15(ve b)-.15 H .507
 (ack through the history list, inserting the last w).15 F .507
 (ord \(or the w)-.1 F .507(ord speci\214ed by the ar)-.1 F(gument)-.18 E
-.416(to the \214rst call\) of each line in turn.)144 336 R(An)5.416 E
+.416(to the \214rst call\) of each line in turn.)144 252 R(An)5.416 E
 2.916(yn)-.15 G .416(umeric ar)-2.916 F .416
 (gument supplied to these successi)-.18 F .716 -.15(ve c)-.25 H .416
-(alls de-).15 F 1.218(termines the direction to mo)144 348 R 1.518 -.15
+(alls de-).15 F 1.218(termines the direction to mo)144 264 R 1.518 -.15
 (ve t)-.15 H 1.218(hrough the history).15 F 6.218(.A)-.65 G(ne)-2.5 E
 -.05(ga)-.15 G(ti).05 E 1.517 -.15(ve a)-.25 H -.18(rg).15 G 1.217
 (ument switches the direction).18 F .494
-(through the history \(back or forw)144 360 R 2.994(ard\). The)-.1 F
+(through the history \(back or forw)144 276 R 2.994(ard\). The)-.1 F
 .494(history e)2.994 F .494(xpansion f)-.15 F .494
 (acilities are used to e)-.1 F .494(xtract the last)-.15 F -.1(wo)144
-372 S(rd, as if the "!$" history e).1 E(xpansion had been speci\214ed.)
--.15 E F1(shell\255expand\255line \(M\255C\255e\))108 384 Q F0 .368
-(Expand the line by performing shell w)144 396 R .368(ord e)-.1 F 2.868
+288 S(rd, as if the "!$" history e).1 E(xpansion had been speci\214ed.)
+-.15 E F1(shell\255expand\255line \(M\255C\255e\))108 300 Q F0 .368
+(Expand the line by performing shell w)144 312 R .368(ord e)-.1 F 2.868
 (xpansions. This)-.15 F .367(performs alias and history e)2.868 F
-(xpansion,)-.15 E F1($)144 408 Q F0<08>A F2(string)A F0 3.357<0861>C(nd)
+(xpansion,)-.15 E F1($)144 324 Q F0<08>A F2(string)A F0 3.357<0861>C(nd)
 -3.357 E F1($)3.357 E F0(")A F2(string)A F0 3.357("q)C .857
 (uoting, tilde e)-3.357 F .857(xpansion, parameter and v)-.15 F .858
 (ariable e)-.25 F .858(xpansion, arithmetic e)-.15 F(x-)-.15 E .882
-(pansion, w)144 420 R .882(ord splitting, and quote remo)-.1 F -.25(va)
+(pansion, w)144 336 R .882(ord splitting, and quote remo)-.1 F -.25(va)
 -.15 G 3.382(l. See).25 F/F3 9/Times-Bold@0 SF(HIST)3.382 E(OR)-.162 E
 3.132(YE)-.315 G(XP)-3.132 E(ANSION)-.666 E F0(belo)3.132 E 3.382(wf)
--.25 G .882(or a description)-3.382 F(of history e)144 432 Q(xpansion.)
--.15 E F1(history\255expand\255line \(M\255^\))108 444 Q F0 .938
-(Perform history e)144 456 R .939(xpansion on the current line.)-.15 F
+-.25 G .882(or a description)-3.382 F(of history e)144 348 Q(xpansion.)
+-.15 E F1(history\255expand\255line \(M\255^\))108 360 Q F0 .938
+(Perform history e)144 372 R .939(xpansion on the current line.)-.15 F
 (See)5.939 E F3(HIST)3.439 E(OR)-.162 E 3.189(YE)-.315 G(XP)-3.189 E
 (ANSION)-.666 E F0(belo)3.189 E 3.439(wf)-.25 G .939(or a descrip-)
--3.439 F(tion of history e)144 468 Q(xpansion.)-.15 E F1(magic\255space)
-108 480 Q F0 .438(Perform history e)144 492 R .438
+-3.439 F(tion of history e)144 384 Q(xpansion.)-.15 E F1(magic\255space)
+108 396 Q F0 .438(Perform history e)144 408 R .438
 (xpansion on the current line and insert a space.)-.15 F(See)5.437 E F3
 (HIST)2.937 E(OR)-.162 E 2.687(YE)-.315 G(XP)-2.687 E(ANSION)-.666 E F0
-(be-)2.687 E(lo)144 504 Q 2.5(wf)-.25 G(or a description of history e)
--2.5 E(xpansion.)-.15 E F1(alias\255expand\255line)108 516 Q F0 .394
-(Perform alias e)144 528 R .394(xpansion on the current line.)-.15 F
+(be-)2.687 E(lo)144 420 Q 2.5(wf)-.25 G(or a description of history e)
+-2.5 E(xpansion.)-.15 E F1(alias\255expand\255line)108 432 Q F0 .394
+(Perform alias e)144 444 R .394(xpansion on the current line.)-.15 F
 (See)5.395 E F3(ALIASES)2.895 E F0(abo)2.645 E .695 -.15(ve f)-.15 H
-.395(or a description of alias e).15 F(xpan-)-.15 E(sion.)144 540 Q F1
-(history\255and\255alias\255expand\255line)108 552 Q F0
-(Perform history and alias e)144 564 Q(xpansion on the current line.)
--.15 E F1(insert\255last\255ar)108 576 Q(gument \(M\255.)-.1 E 2.5(,M)
-.833 G -1.667(\255_ \))-2.5 F F0 2.5(As)144 588 S(ynon)-2.5 E(ym for)
+.395(or a description of alias e).15 F(xpan-)-.15 E(sion.)144 456 Q F1
+(history\255and\255alias\255expand\255line)108 468 Q F0
+(Perform history and alias e)144 480 Q(xpansion on the current line.)
+-.15 E F1(insert\255last\255ar)108 492 Q(gument \(M\255.)-.1 E 2.5(,M)
+.833 G -1.667(\255_ \))-2.5 F F0 2.5(As)144 504 S(ynon)-2.5 E(ym for)
 -.15 E F1(yank\255last\255ar)2.5 E(g)-.1 E F0(.)A F1
-(edit\255and\255execute\255command \(C\255x C\255e\))108 600 Q F0(In)144
-612 Q -.2(vo)-.4 G .347 -.1(ke a).2 H 2.647(ne).1 G .146
+(edit\255and\255execute\255command \(C\255x C\255e\))108 516 Q F0(In)144
+528 Q -.2(vo)-.4 G .347 -.1(ke a).2 H 2.647(ne).1 G .146
 (ditor on the current command line, and e)-2.647 F -.15(xe)-.15 G .146
 (cute the result as shell commands.).15 F F1(Bash)5.146 E F0(at-)2.646 E
-(tempts to in)144 624 Q -.2(vo)-.4 G -.1(ke).2 G F3($VISU)2.6 E(AL)-.54
+(tempts to in)144 540 Q -.2(vo)-.4 G -.1(ke).2 G F3($VISU)2.6 E(AL)-.54
 E/F4 9/Times-Roman@0 SF(,)A F3($EDIT)2.25 E(OR)-.162 E F4(,)A F0(and)
 2.25 E F2(emacs)2.5 E F0(as the editor)2.5 E 2.5(,i)-.4 G 2.5(nt)-2.5 G
-(hat order)-2.5 E(.)-.55 E F1(Commands f)87 640.8 Q(or Changing T)-.25 E
-(ext)-.92 E F2(end\255of\255\214le)108 652.8 Q F1(\(usually C\255d\))2.5
-E F0 .798(The character indicating end-of-\214le as set, for e)144 664.8
+(hat order)-2.5 E(.)-.55 E F1(Commands f)87 556.8 Q(or Changing T)-.25 E
+(ext)-.92 E F2(end\255of\255\214le)108 568.8 Q F1(\(usually C\255d\))2.5
+E F0 .798(The character indicating end-of-\214le as set, for e)144 580.8
 R .799(xample, by)-.15 F/F5 10/Courier@0 SF(stty)3.299 E F0 5.799(.I)C
 3.299(ft)-5.799 G .799(his character is read when)-3.299 F .167
-(there are no characters on the line, and point is at the be)144 676.8 R
+(there are no characters on the line, and point is at the be)144 592.8 R
 .167(ginning of the line, readline interprets it as)-.15 F
-(the end of input and returns)144 688.8 Q F3(EOF)2.5 E F4(.)A F1
-(delete\255char \(C\255d\))108 700.8 Q F0 .441
-(Delete the character at point.)144 712.8 R .442
+(the end of input and returns)144 604.8 Q F3(EOF)2.5 E F4(.)A F1
+(delete\255char \(C\255d\))108 616.8 Q F0 .441
+(Delete the character at point.)144 628.8 R .442
 (If this function is bound to the same character as the tty)5.441 F F1
-(EOF)2.942 E F0(char)2.942 E(-)-.2 E(acter)144 724.8 Q 2.5(,a)-.4 G(s)
+(EOF)2.942 E F0(char)2.942 E(-)-.2 E(acter)144 640.8 Q 2.5(,a)-.4 G(s)
 -2.5 E F1(C\255d)2.5 E F0(commonly is, see abo)2.5 E .3 -.15(ve f)-.15 H
-(or the ef).15 E(fects.)-.25 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175
-E(51)197.335 E 0 Cg EP
+(or the ef).15 E(fects.)-.25 E F1(backward\255delete\255char \(Rubout\))
+108 652.8 Q F0 .553(Delete the character behind the cursor)144 664.8 R
+5.553(.W)-.55 G .553(hen gi)-5.553 F -.15(ve)-.25 G 3.053(nan).15 G .553
+(umeric ar)-3.053 F .552(gument, sa)-.18 F .852 -.15(ve t)-.2 H .552
+(he deleted te).15 F .552(xt on)-.15 F(the kill ring.)144 676.8 Q F1
+-.25(fo)108 688.8 S(rward\255backward\255delete\255char).25 E F0 .473
+(Delete the character under the cursor)144 700.8 R 2.973(,u)-.4 G .474
+(nless the cursor is at the end of the line, in which case the)-2.973 F
+(character behind the cursor is deleted.)144 712.8 Q(GNU Bash 5.2)72 768
+Q(2023 May 23)148.175 E(51)197.335 E 0 Cg EP
 %%Page: 52 52
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
 (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
-SF(backward\255delete\255char \(Rubout\))108 84 Q F0 .553
-(Delete the character behind the cursor)144 96 R 5.553(.W)-.55 G .553
-(hen gi)-5.553 F -.15(ve)-.25 G 3.053(nan).15 G .553(umeric ar)-3.053 F
-.552(gument, sa)-.18 F .852 -.15(ve t)-.2 H .552(he deleted te).15 F
-.552(xt on)-.15 F(the kill ring.)144 108 Q F1 -.25(fo)108 120 S
-(rward\255backward\255delete\255char).25 E F0 .473
-(Delete the character under the cursor)144 132 R 2.973(,u)-.4 G .474
-(nless the cursor is at the end of the line, in which case the)-2.973 F
-(character behind the cursor is deleted.)144 144 Q F1
-(quoted\255insert \(C\255q, C\255v\))108 156 Q F0 .779(Add the ne)144
-168 R .779(xt character typed to the line v)-.15 F 3.279(erbatim. This)
+SF(quoted\255insert \(C\255q, C\255v\))108 84 Q F0 .779(Add the ne)144
+96 R .779(xt character typed to the line v)-.15 F 3.279(erbatim. This)
 -.15 F .779(is ho)3.279 F 3.279(wt)-.25 G 3.279(oi)-3.279 G .779
 (nsert characters lik)-3.279 F(e)-.1 E F1(C\255q)3.278 E F0 3.278(,f)C
-(or)-3.278 E -.15(ex)144 180 S(ample.).15 E F1(tab\255insert \(C\255v T)
-108 192 Q(AB\))-.9 E F0(Insert a tab character)144 204 Q(.)-.55 E F1
-(self\255insert \(a, b, A, 1, !, ...\))108 216 Q F0
-(Insert the character typed.)144 228 Q F1(transpose\255chars \(C\255t\))
-108 240 Q F0 .321(Drag the character before point forw)144 252 R .321
+(or)-3.278 E -.15(ex)144 108 S(ample.).15 E F1(tab\255insert \(C\255v T)
+108 120 Q(AB\))-.9 E F0(Insert a tab character)144 132 Q(.)-.55 E F1
+(self\255insert \(a, b, A, 1, !, ...\))108 144 Q F0
+(Insert the character typed.)144 156 Q F1(transpose\255chars \(C\255t\))
+108 168 Q F0 .321(Drag the character before point forw)144 180 R .321
 (ard o)-.1 F -.15(ve)-.15 G 2.821(rt).15 G .321
 (he character at point, mo)-2.821 F .322(ving point forw)-.15 F .322
 (ard as well.)-.1 F .372
-(If point is at the end of the line, then this transposes the tw)144 264
+(If point is at the end of the line, then this transposes the tw)144 192
 R 2.872(oc)-.1 G .372(haracters before point.)-2.872 F(Ne)5.372 E -.05
 (ga)-.15 G(ti).05 E .672 -.15(ve a)-.25 H -.2(r-).15 G(guments ha)144
-276 Q .3 -.15(ve n)-.2 H 2.5(oe).15 G -.25(ff)-2.5 G(ect.).25 E F1
-(transpose\255w)108 288 Q(ords \(M\255t\))-.1 E F0 .023(Drag the w)144
-300 R .023(ord before point past the w)-.1 F .023(ord after point, mo)
+204 Q .3 -.15(ve n)-.2 H 2.5(oe).15 G -.25(ff)-2.5 G(ect.).25 E F1
+(transpose\255w)108 216 Q(ords \(M\255t\))-.1 E F0 .023(Drag the w)144
+228 R .023(ord before point past the w)-.1 F .023(ord after point, mo)
 -.1 F .023(ving point o)-.15 F -.15(ve)-.15 G 2.524(rt).15 G .024(hat w)
 -2.524 F .024(ord as well.)-.1 F .024(If point)5.024 F
-(is at the end of the line, this transposes the last tw)144 312 Q 2.5
-(ow)-.1 G(ords on the line.)-2.6 E F1(upcase\255w)108 324 Q
-(ord \(M\255u\))-.1 E F0 1.699(Uppercase the current \(or follo)144 336
+(is at the end of the line, this transposes the last tw)144 240 Q 2.5
+(ow)-.1 G(ords on the line.)-2.6 E F1(upcase\255w)108 252 Q
+(ord \(M\255u\))-.1 E F0 1.699(Uppercase the current \(or follo)144 264
 R 1.698(wing\) w)-.25 F 4.198(ord. W)-.1 F 1.698(ith a ne)-.4 F -.05(ga)
 -.15 G(ti).05 E 1.998 -.15(ve a)-.25 H -.18(rg).15 G 1.698
-(ument, uppercase the pre).18 F(vious)-.25 E -.1(wo)144 348 S(rd, b).1 E
-(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1(do)108 360 Q
-(wncase\255w)-.1 E(ord \(M\255l\))-.1 E F0(Lo)144 372 Q 1.647
+(ument, uppercase the pre).18 F(vious)-.25 E -.1(wo)144 276 S(rd, b).1 E
+(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1(do)108 288 Q
+(wncase\255w)-.1 E(ord \(M\255l\))-.1 E F0(Lo)144 300 Q 1.647
 (wercase the current \(or follo)-.25 F 1.647(wing\) w)-.25 F 4.147
 (ord. W)-.1 F 1.648(ith a ne)-.4 F -.05(ga)-.15 G(ti).05 E 1.948 -.15
 (ve a)-.25 H -.18(rg).15 G 1.648(ument, lo).18 F 1.648(wercase the pre)
--.25 F(vious)-.25 E -.1(wo)144 384 S(rd, b).1 E(ut do not mo)-.2 E .3
--.15(ve p)-.15 H(oint.).15 E F1(capitalize\255w)108 396 Q
-(ord \(M\255c\))-.1 E F0 1.975(Capitalize the current \(or follo)144 408
+-.25 F(vious)-.25 E -.1(wo)144 312 S(rd, b).1 E(ut do not mo)-.2 E .3
+-.15(ve p)-.15 H(oint.).15 E F1(capitalize\255w)108 324 Q
+(ord \(M\255c\))-.1 E F0 1.975(Capitalize the current \(or follo)144 336
 R 1.974(wing\) w)-.25 F 4.474(ord. W)-.1 F 1.974(ith a ne)-.4 F -.05(ga)
 -.15 G(ti).05 E 2.274 -.15(ve a)-.25 H -.18(rg).15 G 1.974
-(ument, capitalize the pre).18 F(vious)-.25 E -.1(wo)144 420 S(rd, b).1
-E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1 -.1(ove)108 432
-S(rwrite\255mode).1 E F0 -.8(To)144 444 S .437(ggle o).8 F -.15(ve)-.15
+(ument, capitalize the pre).18 F(vious)-.25 E -.1(wo)144 348 S(rd, b).1
+E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1 -.1(ove)108 360
+S(rwrite\255mode).1 E F0 -.8(To)144 372 S .437(ggle o).8 F -.15(ve)-.15
 G .437(rwrite mode.).15 F -.4(Wi)5.437 G .437(th an e).4 F .437
 (xplicit positi)-.15 F .738 -.15(ve n)-.25 H .438(umeric ar).15 F .438
 (gument, switches to o)-.18 F -.15(ve)-.15 G .438(rwrite mode.).15 F -.4
-(Wi)144 456 S .781(th an e).4 F .781(xplicit non-positi)-.15 F 1.081
+(Wi)144 384 S .781(th an e).4 F .781(xplicit non-positi)-.15 F 1.081
 -.15(ve n)-.25 H .781(umeric ar).15 F .781
 (gument, switches to insert mode.)-.18 F .78(This command af)5.781 F
-(fects)-.25 E(only)144 468 Q F1(emacs)4.394 E F0(mode;)4.394 E F1(vi)
+(fects)-.25 E(only)144 396 Q F1(emacs)4.394 E F0(mode;)4.394 E F1(vi)
 4.394 E F0 1.894(mode does o)4.394 F -.15(ve)-.15 G 1.894(rwrite dif).15
 F(ferently)-.25 E 6.894(.E)-.65 G 1.894(ach call to)-6.894 F/F2 10
 /Times-Italic@0 SF -.37(re)4.395 G(adline\(\)).37 E F0 1.895
-(starts in insert)4.395 F 3.969(mode. In)144 480 R -.15(ove)3.969 G
+(starts in insert)4.395 F 3.969(mode. In)144 408 R -.15(ove)3.969 G
 1.469(rwrite mode, characters bound to).15 F F1(self\255insert)3.969 E
 F0 1.468(replace the te)3.969 F 1.468(xt at point rather than)-.15 F
-.957(pushing the te)144 492 R .957(xt to the right.)-.15 F .958
+.957(pushing the te)144 420 R .957(xt to the right.)-.15 F .958
 (Characters bound to)5.957 F F1(backward\255delete\255char)3.458 E F0
-.958(replace the character)3.458 F(before point with a space.)144 504 Q
+.958(replace the character)3.458 F(before point with a space.)144 432 Q
 (By def)5 E(ault, this command is unbound.)-.1 E F1(Killing and Y)87
-520.8 Q(anking)-.85 E(kill\255line \(C\255k\))108 532.8 Q F0
-(Kill the te)144 544.8 Q(xt from point to the end of the line.)-.15 E F1
-(backward\255kill\255line \(C\255x Rubout\))108 556.8 Q F0(Kill backw)
-144 568.8 Q(ard to the be)-.1 E(ginning of the line.)-.15 E F1
-(unix\255line\255discard \(C\255u\))108 580.8 Q F0(Kill backw)144 592.8
+448.8 Q(anking)-.85 E(kill\255line \(C\255k\))108 460.8 Q F0
+(Kill the te)144 472.8 Q(xt from point to the end of the line.)-.15 E F1
+(backward\255kill\255line \(C\255x Rubout\))108 484.8 Q F0(Kill backw)
+144 496.8 Q(ard to the be)-.1 E(ginning of the line.)-.15 E F1
+(unix\255line\255discard \(C\255u\))108 508.8 Q F0(Kill backw)144 520.8
 Q(ard from point to the be)-.1 E(ginning of the line.)-.15 E
 (The killed te)5 E(xt is sa)-.15 E -.15(ve)-.2 G 2.5(do).15 G 2.5(nt)
--2.5 G(he kill-ring.)-2.5 E F1(kill\255whole\255line)108 604.8 Q F0
+-2.5 G(he kill-ring.)-2.5 E F1(kill\255whole\255line)108 532.8 Q F0
 (Kill all characters on the current line, no matter where point is.)144
-616.8 Q F1(kill\255w)108 628.8 Q(ord \(M\255d\))-.1 E F0 .729
-(Kill from point to the end of the current w)144 640.8 R .728
+544.8 Q F1(kill\255w)108 556.8 Q(ord \(M\255d\))-.1 E F0 .729
+(Kill from point to the end of the current w)144 568.8 R .728
 (ord, or if between w)-.1 F .728(ords, to the end of the ne)-.1 F .728
-(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 652.8 S
+(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 580.8 S
 (rd boundaries are the same as those used by).8 E F1 -.25(fo)2.5 G
-(rward\255w).25 E(ord)-.1 E F0(.)A F1(backward\255kill\255w)108 664.8 Q
-(ord \(M\255Rubout\))-.1 E F0(Kill the w)144 676.8 Q(ord behind point.)
+(rward\255w).25 E(ord)-.1 E F0(.)A F1(backward\255kill\255w)108 592.8 Q
+(ord \(M\255Rubout\))-.1 E F0(Kill the w)144 604.8 Q(ord behind point.)
 -.1 E -.8(Wo)5 G(rd boundaries are the same as those used by).8 E F1
-(backward\255w)2.5 E(ord)-.1 E F0(.)A F1(shell\255kill\255w)108 688.8 Q
-(ord)-.1 E F0 .728(Kill from point to the end of the current w)144 700.8
+(backward\255w)2.5 E(ord)-.1 E F0(.)A F1(shell\255kill\255w)108 616.8 Q
+(ord)-.1 E F0 .728(Kill from point to the end of the current w)144 628.8
 R .729(ord, or if between w)-.1 F .729(ords, to the end of the ne)-.1 F
-.729(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 712.8 S
+.729(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 640.8 S
 (rd boundaries are the same as those used by).8 E F1(shell\255f)2.5 E
-(orward\255w)-.25 E(ord)-.1 E F0(.)A(GNU Bash 5.2)72 768 Q(2023 May 14)
-148.175 E(52)197.335 E 0 Cg EP
+(orward\255w)-.25 E(ord)-.1 E F0(.)A F1(shell\255backward\255kill\255w)
+108 652.8 Q(ord)-.1 E F0 3.025(Kill the w)144 664.8 R 3.025
+(ord behind point.)-.1 F -.8(Wo)8.025 G 3.025
+(rd boundaries are the same as those used by).8 F F1(shell\255back-)
+5.525 E(ward\255w)144 676.8 Q(ord)-.1 E F0(.)A F1(unix\255w)108 688.8 Q
+(ord\255rubout \(C\255w\))-.1 E F0 .364(Kill the w)144 700.8 R .364
+(ord behind point, using white space as a w)-.1 F .365(ord boundary)-.1
+F 5.365(.T)-.65 G .365(he killed te)-5.365 F .365(xt is sa)-.15 F -.15
+(ve)-.2 G 2.865(do).15 G 2.865(nt)-2.865 G(he)-2.865 E(kill-ring.)144
+712.8 Q(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(52)197.335 E 0 Cg EP
 %%Page: 53 53
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
 (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
-SF(shell\255backward\255kill\255w)108 84 Q(ord)-.1 E F0 3.025
-(Kill the w)144 96 R 3.025(ord behind point.)-.1 F -.8(Wo)8.025 G 3.025
-(rd boundaries are the same as those used by).8 F F1(shell\255back-)
-5.525 E(ward\255w)144 108 Q(ord)-.1 E F0(.)A F1(unix\255w)108 120 Q
-(ord\255rubout \(C\255w\))-.1 E F0 .364(Kill the w)144 132 R .364
-(ord behind point, using white space as a w)-.1 F .365(ord boundary)-.1
-F 5.365(.T)-.65 G .365(he killed te)-5.365 F .365(xt is sa)-.15 F -.15
-(ve)-.2 G 2.865(do).15 G 2.865(nt)-2.865 G(he)-2.865 E(kill-ring.)144
-144 Q F1(unix\255\214lename\255rubout)108 156 Q F0 .167(Kill the w)144
-168 R .166
+SF(unix\255\214lename\255rubout)108 84 Q F0 .167(Kill the w)144 96 R
+.166
 (ord behind point, using white space and the slash character as the w)
--.1 F .166(ord boundaries.)-.1 F(The)5.166 E(killed te)144 180 Q
+-.1 F .166(ord boundaries.)-.1 F(The)5.166 E(killed te)144 108 Q
 (xt is sa)-.15 E -.15(ve)-.2 G 2.5(do).15 G 2.5(nt)-2.5 G(he kill-ring.)
--2.5 E F1(delete\255horizontal\255space \(M\255\\\))108 192 Q F0
-(Delete all spaces and tabs around point.)144 204 Q F1(kill\255r)108 216
-Q(egion)-.18 E F0(Kill the te)144 228 Q(xt in the current re)-.15 E
-(gion.)-.15 E F1(copy\255r)108 240 Q(egion\255as\255kill)-.18 E F0(Cop)
-144 252 Q 2.5(yt)-.1 G(he te)-2.5 E(xt in the re)-.15 E
+-2.5 E F1(delete\255horizontal\255space \(M\255\\\))108 120 Q F0
+(Delete all spaces and tabs around point.)144 132 Q F1(kill\255r)108 144
+Q(egion)-.18 E F0(Kill the te)144 156 Q(xt in the current re)-.15 E
+(gion.)-.15 E F1(copy\255r)108 168 Q(egion\255as\255kill)-.18 E F0(Cop)
+144 180 Q 2.5(yt)-.1 G(he te)-2.5 E(xt in the re)-.15 E
 (gion to the kill b)-.15 E(uf)-.2 E(fer)-.25 E(.)-.55 E F1
-(copy\255backward\255w)108 264 Q(ord)-.1 E F0(Cop)144 276 Q 4.8(yt)-.1 G
+(copy\255backward\255w)108 192 Q(ord)-.1 E F0(Cop)144 204 Q 4.8(yt)-.1 G
 2.3(he w)-4.8 F 2.3(ord before point to the kill b)-.1 F(uf)-.2 E(fer)
 -.25 E 7.301(.T)-.55 G 2.301(he w)-7.301 F 2.301
-(ord boundaries are the same as)-.1 F F1(back-)4.801 E(ward\255w)144 288
-Q(ord)-.1 E F0(.)A F1(copy\255f)108 300 Q(orward\255w)-.25 E(ord)-.1 E
-F0(Cop)144 312 Q 4.508(yt)-.1 G 2.008(he w)-4.508 F 2.008(ord follo)-.1
+(ord boundaries are the same as)-.1 F F1(back-)4.801 E(ward\255w)144 216
+Q(ord)-.1 E F0(.)A F1(copy\255f)108 228 Q(orward\255w)-.25 E(ord)-.1 E
+F0(Cop)144 240 Q 4.508(yt)-.1 G 2.008(he w)-4.508 F 2.008(ord follo)-.1
 F 2.008(wing point to the kill b)-.25 F(uf)-.2 E(fer)-.25 E 7.007(.T)
 -.55 G 2.007(he w)-7.007 F 2.007(ord boundaries are the same as)-.1 F F1
--.25(fo)4.507 G -.37(r-).25 G(ward\255w)144 324 Q(ord)-.1 E F0(.)A F1
-(yank \(C\255y\))108 336 Q F0 -1(Ya)144 348 S
+-.25(fo)4.507 G -.37(r-).25 G(ward\255w)144 252 Q(ord)-.1 E F0(.)A F1
+(yank \(C\255y\))108 264 Q F0 -1(Ya)144 276 S
 (nk the top of the kill ring into the b)1 E(uf)-.2 E(fer at point.)-.25
-E F1(yank\255pop \(M\255y\))108 360 Q F0
-(Rotate the kill ring, and yank the ne)144 372 Q 2.5(wt)-.25 G 2.5
+E F1(yank\255pop \(M\255y\))108 288 Q F0
+(Rotate the kill ring, and yank the ne)144 300 Q 2.5(wt)-.25 G 2.5
 (op. Only)-2.5 F -.1(wo)2.5 G(rks follo).1 E(wing)-.25 E F1(yank)2.5 E
-F0(or)2.5 E F1(yank\255pop)2.5 E F0(.)A F1(Numeric Ar)87 388.8 Q
-(guments)-.1 E(digit\255ar)108 400.8 Q
+F0(or)2.5 E F1(yank\255pop)2.5 E F0(.)A F1(Numeric Ar)87 316.8 Q
+(guments)-.1 E(digit\255ar)108 328.8 Q
 (gument \(M\2550, M\2551, ..., M\255\255\))-.1 E F0 .367
-(Add this digit to the ar)144 412.8 R .367
+(Add this digit to the ar)144 340.8 R .367
 (gument already accumulating, or start a ne)-.18 F 2.867(wa)-.25 G -.18
 (rg)-2.867 G 2.867(ument. M\255\255).18 F .367(starts a ne)2.867 F -.05
-(ga)-.15 G(-).05 E(ti)144 424.8 Q .3 -.15(ve a)-.25 H -.18(rg).15 G
-(ument.).18 E F1(uni)108 436.8 Q -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1
-E F0 .779(This is another w)144 448.8 R .779(ay to specify an ar)-.1 F
+(ga)-.15 G(-).05 E(ti)144 352.8 Q .3 -.15(ve a)-.25 H -.18(rg).15 G
+(ument.).18 E F1(uni)108 364.8 Q -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1
+E F0 .779(This is another w)144 376.8 R .779(ay to specify an ar)-.1 F
 3.279(gument. If)-.18 F .779(this command is follo)3.279 F .778
 (wed by one or more digits,)-.25 F 1.376
 (optionally with a leading minus sign, those digits de\214ne the ar)144
-460.8 R 3.876(gument. If)-.18 F 1.376(the command is fol-)3.876 F(lo)144
-472.8 Q 1.17(wed by digits, e)-.25 F -.15(xe)-.15 G(cuting).15 E F1(uni)
+388.8 R 3.876(gument. If)-.18 F 1.376(the command is fol-)3.876 F(lo)144
+400.8 Q 1.17(wed by digits, e)-.25 F -.15(xe)-.15 G(cuting).15 E F1(uni)
 3.67 E -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 E F0(ag)3.67 E 1.17
 (ain ends the numeric ar)-.05 F 1.17(gument, b)-.18 F 1.17(ut is other)
--.2 F(-)-.2 E .898(wise ignored.)144 484.8 R .898
+-.2 F(-)-.2 E .898(wise ignored.)144 412.8 R .898
 (As a special case, if this command is immediately follo)5.898 F .898
 (wed by a character that is)-.25 F 1.23
-(neither a digit nor minus sign, the ar)144 496.8 R 1.23
+(neither a digit nor minus sign, the ar)144 424.8 R 1.23
 (gument count for the ne)-.18 F 1.23(xt command is multiplied by four)
--.15 F(.)-.55 E .822(The ar)144 508.8 R .822
+-.15 F(.)-.55 E .822(The ar)144 436.8 R .822
 (gument count is initially one, so e)-.18 F -.15(xe)-.15 G .823
 (cuting this function the \214rst time mak).15 F .823(es the ar)-.1 F
-(gument)-.18 E(count four)144 520.8 Q 2.5(,as)-.4 G(econd time mak)-2.5
+(gument)-.18 E(count four)144 448.8 Q 2.5(,as)-.4 G(econd time mak)-2.5
 E(es the ar)-.1 E(gument count sixteen, and so on.)-.18 E F1(Completing)
-87 537.6 Q(complete \(T)108 549.6 Q(AB\))-.9 E F0 1.137
-(Attempt to perform completion on the te)144 561.6 R 1.137
+87 465.6 Q(complete \(T)108 477.6 Q(AB\))-.9 E F0 1.137
+(Attempt to perform completion on the te)144 489.6 R 1.137
 (xt before point.)-.15 F F1(Bash)6.137 E F0 1.137
-(attempts completion treating the)3.637 F(te)144 573.6 Q .532(xt as a v)
+(attempts completion treating the)3.637 F(te)144 501.6 Q .532(xt as a v)
 -.15 F .532(ariable \(if the te)-.25 F .532(xt be)-.15 F .533(gins with)
 -.15 F F1($)3.033 E F0 .533(\), username \(if the te)B .533(xt be)-.15 F
 .533(gins with)-.15 F F1(~)3.033 E F0 .533(\), hostname \(if the)B(te)
-144 585.6 Q .702(xt be)-.15 F .702(gins with)-.15 F F1(@)3.202 E F0 .701
+144 513.6 Q .702(xt be)-.15 F .702(gins with)-.15 F F1(@)3.202 E F0 .701
 (\), or command \(including aliases and functions\) in turn.)B .701
 (If none of these pro-)5.701 F
-(duces a match, \214lename completion is attempted.)144 597.6 Q F1
-(possible\255completions \(M\255?\))108 609.6 Q F0
-(List the possible completions of the te)144 621.6 Q(xt before point.)
--.15 E F1(insert\255completions \(M\255*\))108 633.6 Q F0 .783
-(Insert all completions of the te)144 645.6 R .783
+(duces a match, \214lename completion is attempted.)144 525.6 Q F1
+(possible\255completions \(M\255?\))108 537.6 Q F0
+(List the possible completions of the te)144 549.6 Q(xt before point.)
+-.15 E F1(insert\255completions \(M\255*\))108 561.6 Q F0 .783
+(Insert all completions of the te)144 573.6 R .783
 (xt before point that w)-.15 F .783(ould ha)-.1 F 1.083 -.15(ve b)-.2 H
 .783(een generated by).15 F F1(possible\255com-)3.283 E(pletions)144
-657.6 Q F0(.)A F1(menu\255complete)108 669.6 Q F0 .929(Similar to)144
-681.6 R F1(complete)3.429 E F0 3.429(,b)C .929(ut replaces the w)-3.629
+585.6 Q F0(.)A F1(menu\255complete)108 597.6 Q F0 .929(Similar to)144
+609.6 R F1(complete)3.429 E F0 3.429(,b)C .929(ut replaces the w)-3.629
 F .929(ord to be completed with a single match from the list of)-.1 F
-1.193(possible completions.)144 693.6 R 1.193(Repeated e)6.193 F -.15
+1.193(possible completions.)144 621.6 R 1.193(Repeated e)6.193 F -.15
 (xe)-.15 G 1.193(cution of).15 F F1(menu\255complete)3.694 E F0 1.194
 (steps through the list of possible)3.694 F .829
-(completions, inserting each match in turn.)144 705.6 R .828
+(completions, inserting each match in turn.)144 633.6 R .828
 (At the end of the list of completions, the bell is rung)5.828 F .727
-(\(subject to the setting of)144 717.6 R F1(bell\255style)3.227 E F0
+(\(subject to the setting of)144 645.6 R F1(bell\255style)3.227 E F0
 3.227(\)a)C .727(nd the original te)-3.227 F .727(xt is restored.)-.15 F
 .727(An ar)5.727 F .727(gument of)-.18 F/F2 10/Times-Italic@0 SF(n)3.227
 E F0(mo)3.227 E -.15(ve)-.15 G(s).15 E F2(n)3.228 E F0 1.73
-(positions forw)144 729.6 R 1.73(ard in the list of matches; a ne)-.1 F
+(positions forw)144 657.6 R 1.73(ard in the list of matches; a ne)-.1 F
 -.05(ga)-.15 G(ti).05 E 2.03 -.15(ve a)-.25 H -.18(rg).15 G 1.73
 (ument may be used to mo).18 F 2.03 -.15(ve b)-.15 H(ackw).15 E(ard)-.1
-E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(53)197.335 E 0 Cg EP
+E(through the list.)144 669.6 Q(This command is intended to be bound to)
+5 E F1 -.9(TA)2.5 G(B).9 E F0 2.5(,b)C(ut is unbound by def)-2.7 E
+(ault.)-.1 E F1(menu\255complete\255backward)108 681.6 Q F0 .82
+(Identical to)144 693.6 R F1(menu\255complete)3.32 E F0 3.32(,b)C .82
+(ut mo)-3.52 F -.15(ve)-.15 G 3.32(sb).15 G(ackw)-3.32 E .82
+(ard through the list of possible completions, as if)-.1 F F1
+(menu\255complete)144 705.6 Q F0(had been gi)2.5 E -.15(ve)-.25 G 2.5
+(nan).15 G -2.25 -.15(eg a)-2.5 H(ti).15 E .3 -.15(ve a)-.25 H -.18(rg)
+.15 G 2.5(ument. This).18 F(command is unbound by def)2.5 E(ault.)-.1 E
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(53)197.335 E 0 Cg EP
 %%Page: 54 54
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(through the list.)
-144 84 Q(This command is intended to be bound to)5 E/F1 10/Times-Bold@0
-SF -.9(TA)2.5 G(B).9 E F0 2.5(,b)C(ut is unbound by def)-2.7 E(ault.)-.1
-E F1(menu\255complete\255backward)108 96 Q F0 .82(Identical to)144 108 R
-F1(menu\255complete)3.32 E F0 3.32(,b)C .82(ut mo)-3.52 F -.15(ve)-.15 G
-3.32(sb).15 G(ackw)-3.32 E .82
-(ard through the list of possible completions, as if)-.1 F F1
-(menu\255complete)144 120 Q F0(had been gi)2.5 E -.15(ve)-.25 G 2.5(nan)
-.15 G -2.25 -.15(eg a)-2.5 H(ti).15 E .3 -.15(ve a)-.25 H -.18(rg).15 G
-2.5(ument. This).18 F(command is unbound by def)2.5 E(ault.)-.1 E F1
-(delete\255char\255or\255list)108 132 Q F0 .234
-(Deletes the character under the cursor if not at the be)144 144 R .234
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
+SF(delete\255char\255or\255list)108 84 Q F0 .234
+(Deletes the character under the cursor if not at the be)144 96 R .234
 (ginning or end of the line \(lik)-.15 F(e)-.1 E F1(delete\255char)2.734
-E F0(\).)A .425(If at the end of the line, beha)144 156 R -.15(ve)-.2 G
+E F0(\).)A .425(If at the end of the line, beha)144 108 R -.15(ve)-.2 G
 2.925(si).15 G .425(dentically to)-2.925 F F1(possible\255completions)
 2.925 E F0 5.425(.T)C .425(his command is unbound)-5.425 F(by def)144
-168 Q(ault.)-.1 E F1(complete\255\214lename \(M\255/\))108 180 Q F0
-(Attempt \214lename completion on the te)144 192 Q(xt before point.)-.15
-E F1(possible\255\214lename\255completions \(C\255x /\))108 204 Q F0
-(List the possible completions of the te)144 216 Q
+120 Q(ault.)-.1 E F1(complete\255\214lename \(M\255/\))108 132 Q F0
+(Attempt \214lename completion on the te)144 144 Q(xt before point.)-.15
+E F1(possible\255\214lename\255completions \(C\255x /\))108 156 Q F0
+(List the possible completions of the te)144 168 Q
 (xt before point, treating it as a \214lename.)-.15 E F1
-(complete\255user)108 228 Q(name \(M\255~\))-.15 E F0
-(Attempt completion on the te)144 240 Q
+(complete\255user)108 180 Q(name \(M\255~\))-.15 E F0
+(Attempt completion on the te)144 192 Q
 (xt before point, treating it as a username.)-.15 E F1(possible\255user)
-108 252 Q(name\255completions \(C\255x ~\))-.15 E F0
-(List the possible completions of the te)144 264 Q
+108 204 Q(name\255completions \(C\255x ~\))-.15 E F0
+(List the possible completions of the te)144 216 Q
 (xt before point, treating it as a username.)-.15 E F1(complete\255v)108
-276 Q(ariable \(M\255$\))-.1 E F0(Attempt completion on the te)144 288 Q
+228 Q(ariable \(M\255$\))-.1 E F0(Attempt completion on the te)144 240 Q
 (xt before point, treating it as a shell v)-.15 E(ariable.)-.25 E F1
-(possible\255v)108 300 Q(ariable\255completions \(C\255x $\))-.1 E F0
-(List the possible completions of the te)144 312 Q
+(possible\255v)108 252 Q(ariable\255completions \(C\255x $\))-.1 E F0
+(List the possible completions of the te)144 264 Q
 (xt before point, treating it as a shell v)-.15 E(ariable.)-.25 E F1
-(complete\255hostname \(M\255@\))108 324 Q F0
-(Attempt completion on the te)144 336 Q
+(complete\255hostname \(M\255@\))108 276 Q F0
+(Attempt completion on the te)144 288 Q
 (xt before point, treating it as a hostname.)-.15 E F1
-(possible\255hostname\255completions \(C\255x @\))108 348 Q F0
-(List the possible completions of the te)144 360 Q
+(possible\255hostname\255completions \(C\255x @\))108 300 Q F0
+(List the possible completions of the te)144 312 Q
 (xt before point, treating it as a hostname.)-.15 E F1
-(complete\255command \(M\255!\))108 372 Q F0 .581
-(Attempt completion on the te)144 384 R .581
+(complete\255command \(M\255!\))108 324 Q F0 .581
+(Attempt completion on the te)144 336 R .581
 (xt before point, treating it as a command name.)-.15 F .58
-(Command comple-)5.58 F .715(tion attempts to match the te)144 396 R
+(Command comple-)5.58 F .715(tion attempts to match the te)144 348 R
 .715(xt ag)-.15 F .715(ainst aliases, reserv)-.05 F .715(ed w)-.15 F
 .715(ords, shell functions, shell b)-.1 F .715(uiltins, and)-.2 F
-(\214nally e)144 408 Q -.15(xe)-.15 G
+(\214nally e)144 360 Q -.15(xe)-.15 G
 (cutable \214lenames, in that order).15 E(.)-.55 E F1
-(possible\255command\255completions \(C\255x !\))108 420 Q F0
-(List the possible completions of the te)144 432 Q
+(possible\255command\255completions \(C\255x !\))108 372 Q F0
+(List the possible completions of the te)144 384 Q
 (xt before point, treating it as a command name.)-.15 E F1
-(dynamic\255complete\255history \(M\255T)108 444 Q(AB\))-.9 E F0 .425
-(Attempt completion on the te)144 456 R .425
+(dynamic\255complete\255history \(M\255T)108 396 Q(AB\))-.9 E F0 .425
+(Attempt completion on the te)144 408 R .425
 (xt before point, comparing the te)-.15 F .425(xt ag)-.15 F .424
 (ainst lines from the history list)-.05 F
-(for possible completion matches.)144 468 Q F1(dab)108 480 Q(br)-.1 E
+(for possible completion matches.)144 420 Q F1(dab)108 432 Q(br)-.1 E
 -.15(ev)-.18 G(\255expand).15 E F0 .61
-(Attempt menu completion on the te)144 492 R .611
+(Attempt menu completion on the te)144 444 R .611
 (xt before point, comparing the te)-.15 F .611(xt ag)-.15 F .611
 (ainst lines from the his-)-.05 F
-(tory list for possible completion matches.)144 504 Q F1
-(complete\255into\255braces \(M\255{\))108 516 Q F0 .4(Perform \214lena\
+(tory list for possible completion matches.)144 456 Q F1
+(complete\255into\255braces \(M\255{\))108 468 Q F0 .4(Perform \214lena\
 me completion and insert the list of possible completions enclosed with\
-in braces so)144 528 R(the list is a)144 540 Q -.25(va)-.2 G
+in braces so)144 480 R(the list is a)144 492 Q -.25(va)-.2 G
 (ilable to the shell \(see).25 E F1(Brace Expansion)2.5 E F0(abo)2.5 E
--.15(ve)-.15 G(\).).15 E F1 -.25(Ke)87 556.8 S(yboard Macr).25 E(os)-.18
-E(start\255kbd\255macr)108 568.8 Q 2.5(o\()-.18 G(C\255x \()-2.5 E(\))
-.833 E F0(Be)144 580.8 Q(gin sa)-.15 E
+-.15(ve)-.15 G(\).).15 E F1 -.25(Ke)87 508.8 S(yboard Macr).25 E(os)-.18
+E(start\255kbd\255macr)108 520.8 Q 2.5(o\()-.18 G(C\255x \()-2.5 E(\))
+.833 E F0(Be)144 532.8 Q(gin sa)-.15 E
 (ving the characters typed into the current k)-.2 E -.15(ey)-.1 G
-(board macro.).15 E F1(end\255kbd\255macr)108 592.8 Q 2.5(o\()-.18 G
-(C\255x \))-2.5 E(\)).833 E F0(Stop sa)144 604.8 Q
+(board macro.).15 E F1(end\255kbd\255macr)108 544.8 Q 2.5(o\()-.18 G
+(C\255x \))-2.5 E(\)).833 E F0(Stop sa)144 556.8 Q
 (ving the characters typed into the current k)-.2 E -.15(ey)-.1 G
 (board macro and store the de\214nition.).15 E F1
-(call\255last\255kbd\255macr)108 616.8 Q 2.5(o\()-.18 G(C\255x e\))-2.5
-E F0(Re-e)144 628.8 Q -.15(xe)-.15 G .999(cute the last k).15 F -.15(ey)
+(call\255last\255kbd\255macr)108 568.8 Q 2.5(o\()-.18 G(C\255x e\))-2.5
+E F0(Re-e)144 580.8 Q -.15(xe)-.15 G .999(cute the last k).15 F -.15(ey)
 -.1 G .999(board macro de\214ned, by making the characters in the macro\
- appear as if).15 F(typed at the k)144 640.8 Q -.15(ey)-.1 G(board.).15
-E F1(print\255last\255kbd\255macr)108 652.8 Q 2.5(o\()-.18 G(\))-2.5 E
-F0(Print the last k)144 664.8 Q -.15(ey)-.1 G
+ appear as if).15 F(typed at the k)144 592.8 Q -.15(ey)-.1 G(board.).15
+E F1(print\255last\255kbd\255macr)108 604.8 Q 2.5(o\()-.18 G(\))-2.5 E
+F0(Print the last k)144 616.8 Q -.15(ey)-.1 G
 (board macro de\214ned in a format suitable for the).15 E/F2 10
 /Times-Italic@0 SF(inputr)2.5 E(c)-.37 E F0(\214le.)2.5 E F1
-(Miscellaneous)87 681.6 Q -.18(re)108 693.6 S<ad72>.18 E
+(Miscellaneous)87 633.6 Q -.18(re)108 645.6 S<ad72>.18 E
 (ead\255init\255\214le \(C\255x C\255r\))-.18 E F0 1.777
-(Read in the contents of the)144 705.6 R F2(inputr)4.277 E(c)-.37 E F0
+(Read in the contents of the)144 657.6 R F2(inputr)4.277 E(c)-.37 E F0
 1.776(\214le, and incorporate an)4.276 F 4.276(yb)-.15 G 1.776
 (indings or v)-4.276 F 1.776(ariable assignments)-.25 F(found there.)144
-717.6 Q(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(54)197.335 E 0 Cg EP
+669.6 Q F1(abort \(C\255g\))108 681.6 Q F0 3.248
+(Abort the current editing command and ring the terminal')144 693.6 R
+5.749(sb)-.55 G 3.249(ell \(subject to the setting of)-5.749 F F1
+(bell\255style)144 705.6 Q F0(\).)A(GNU Bash 5.2)72 768 Q(2023 May 23)
+148.175 E(54)197.335 E 0 Cg EP
 %%Page: 55 55
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
 (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
-SF(abort \(C\255g\))108 84 Q F0 3.248
-(Abort the current editing command and ring the terminal')144 96 R 5.749
-(sb)-.55 G 3.249(ell \(subject to the setting of)-5.749 F F1
-(bell\255style)144 108 Q F0(\).)A F1(do\255lo)108 120 Q(wer)-.1 E
-(case\255v)-.18 E(ersion \(M\255A, M\255B, M\255)-.1 E/F2 10
-/Times-Italic@0 SF(x)A F1 2.5(,.)C(..\))-2.5 E F0 1.739
-(If the meta\214ed character)144 132 R F2(x)4.239 E F0 1.739
+SF(do\255lo)108 84 Q(wer)-.1 E(case\255v)-.18 E
+(ersion \(M\255A, M\255B, M\255)-.1 E/F2 10/Times-Italic@0 SF(x)A F1 2.5
+(,.)C(..\))-2.5 E F0 1.739(If the meta\214ed character)144 96 R F2(x)
+4.239 E F0 1.739
 (is uppercase, run the command that is bound to the corresponding)4.239
-F(meta\214ed lo)144 144 Q(wercase character)-.25 E 5(.T)-.55 G(he beha)
+F(meta\214ed lo)144 108 Q(wercase character)-.25 E 5(.T)-.55 G(he beha)
 -5 E(vior is unde\214ned if)-.2 E F2(x)2.5 E F0(is already lo)2.5 E
-(wercase.)-.25 E F1(pr)108 156 Q(e\214x\255meta \(ESC\))-.18 E F0
-(Metafy the ne)144 168 Q(xt character typed.)-.15 E/F3 9/Times-Bold@0 SF
+(wercase.)-.25 E F1(pr)108 120 Q(e\214x\255meta \(ESC\))-.18 E F0
+(Metafy the ne)144 132 Q(xt character typed.)-.15 E/F3 9/Times-Bold@0 SF
 (ESC)5 E F1(f)2.25 E F0(is equi)2.5 E -.25(va)-.25 G(lent to).25 E F1
-(Meta\255f)2.5 E F0(.)A F1(undo \(C\255_, C\255x C\255u\))108 180 Q F0
-(Incremental undo, separately remembered for each line.)144 192 Q F1
--2.29 -.18(re v)108 204 T(ert\255line \(M\255r\)).08 E F0 .23
-(Undo all changes made to this line.)144 216 R .231(This is lik)5.23 F
+(Meta\255f)2.5 E F0(.)A F1(undo \(C\255_, C\255x C\255u\))108 144 Q F0
+(Incremental undo, separately remembered for each line.)144 156 Q F1
+-2.29 -.18(re v)108 168 T(ert\255line \(M\255r\)).08 E F0 .23
+(Undo all changes made to this line.)144 180 R .231(This is lik)5.23 F
 2.731(ee)-.1 G -.15(xe)-2.881 G .231(cuting the).15 F F1(undo)2.731 E F0
 .231(command enough times to re-)2.731 F
-(turn the line to its initial state.)144 228 Q F1
-(tilde\255expand \(M\255&\))108 240 Q F0(Perform tilde e)144 252 Q
+(turn the line to its initial state.)144 192 Q F1
+(tilde\255expand \(M\255&\))108 204 Q F0(Perform tilde e)144 216 Q
 (xpansion on the current w)-.15 E(ord.)-.1 E F1
-(set\255mark \(C\255@, M\255<space>\))108 264 Q F0
-(Set the mark to the point.)144 276 Q(If a numeric ar)5 E
+(set\255mark \(C\255@, M\255<space>\))108 228 Q F0
+(Set the mark to the point.)144 240 Q(If a numeric ar)5 E
 (gument is supplied, the mark is set to that position.)-.18 E F1
-(exchange\255point\255and\255mark \(C\255x C\255x\))108 288 Q F0(Sw)144
-300 Q .283(ap the point with the mark.)-.1 F .283
+(exchange\255point\255and\255mark \(C\255x C\255x\))108 252 Q F0(Sw)144
+264 Q .283(ap the point with the mark.)-.1 F .283
 (The current cursor position is set to the sa)5.283 F -.15(ve)-.2 G
 2.782(dp).15 G .282(osition, and the old)-2.782 F(cursor position is sa)
-144 312 Q -.15(ve)-.2 G 2.5(da).15 G 2.5(st)-2.5 G(he mark.)-2.5 E F1
-(character\255sear)108 324 Q(ch \(C\255]\))-.18 E F0 3.111(Ac)144 336 S
+144 276 Q -.15(ve)-.2 G 2.5(da).15 G 2.5(st)-2.5 G(he mark.)-2.5 E F1
+(character\255sear)108 288 Q(ch \(C\255]\))-.18 E F0 3.111(Ac)144 300 S
 .611(haracter is read and point is mo)-3.111 F -.15(ve)-.15 G 3.112(dt)
 .15 G 3.112(ot)-3.112 G .612(he ne)-3.112 F .612
 (xt occurrence of that character)-.15 F 5.612(.A)-.55 G(ne)-2.5 E -.05
 (ga)-.15 G(ti).05 E .912 -.15(ve a)-.25 H -.18(rg).15 G(u-).18 E
-(ment searches for pre)144 348 Q(vious occurrences.)-.25 E F1
-(character\255sear)108 360 Q(ch\255backward \(M\255C\255]\))-.18 E F0
-2.695(Ac)144 372 S .194(haracter is read and point is mo)-2.695 F -.15
+(ment searches for pre)144 312 Q(vious occurrences.)-.25 E F1
+(character\255sear)108 324 Q(ch\255backward \(M\255C\255]\))-.18 E F0
+2.695(Ac)144 336 S .194(haracter is read and point is mo)-2.695 F -.15
 (ve)-.15 G 2.694(dt).15 G 2.694(ot)-2.694 G .194(he pre)-2.694 F .194
 (vious occurrence of that character)-.25 F 5.194(.A)-.55 G(ne)-2.5 E
 -.05(ga)-.15 G(ti).05 E .494 -.15(ve a)-.25 H -.2(r-).15 G
-(gument searches for subsequent occurrences.)144 384 Q F1
-(skip\255csi\255sequence)108 396 Q F0 1.826
-(Read enough characters to consume a multi-k)144 408 R 2.126 -.15(ey s)
+(gument searches for subsequent occurrences.)144 348 Q F1
+(skip\255csi\255sequence)108 360 Q F0 1.826
+(Read enough characters to consume a multi-k)144 372 R 2.126 -.15(ey s)
 -.1 H 1.827(equence such as those de\214ned for k).15 F -.15(ey)-.1 G
-4.327(sl).15 G(ik)-4.327 E(e)-.1 E .791(Home and End.)144 420 R .791
+4.327(sl).15 G(ik)-4.327 E(e)-.1 E .791(Home and End.)144 384 R .791
 (Such sequences be)5.791 F .791
 (gin with a Control Sequence Indicator \(CSI\), usually ESC\255[.)-.15 F
-.331(If this sequence is bound to "\\[", k)144 432 R -.15(ey)-.1 G 2.831
+.331(If this sequence is bound to "\\[", k)144 396 R -.15(ey)-.1 G 2.831
 (sp).15 G .331(roducing such sequences will ha)-2.831 F .632 -.15(ve n)
 -.2 H 2.832(oe).15 G -.25(ff)-2.832 G .332(ect unless e).25 F(xplic-)
 -.15 E .026(itly bound to a readline command, instead of inserting stra\
-y characters into the editing b)144 444 R(uf)-.2 E(fer)-.25 E 5.026(.T)
--.55 G(his)-5.026 E(is unbound by def)144 456 Q(ault, b)-.1 E
+y characters into the editing b)144 408 R(uf)-.2 E(fer)-.25 E 5.026(.T)
+-.55 G(his)-5.026 E(is unbound by def)144 420 Q(ault, b)-.1 E
 (ut usually bound to ESC\255[.)-.2 E F1(insert\255comment \(M\255#\))108
-468 Q F0 -.4(Wi)144 480 S .48(thout a numeric ar).4 F .48(gument, the v)
+432 Q F0 -.4(Wi)144 444 S .48(thout a numeric ar).4 F .48(gument, the v)
 -.18 F .481(alue of the readline)-.25 F F1(comment\255begin)2.981 E F0
--.25(va)2.981 G .481(riable is inserted at the).25 F(be)144 492 Q .245
+-.25(va)2.981 G .481(riable is inserted at the).25 F(be)144 456 Q .245
 (ginning of the current line.)-.15 F .245(If a numeric ar)5.245 F .244
 (gument is supplied, this command acts as a toggle: if)-.18 F .321
-(the characters at the be)144 504 R .321
+(the characters at the be)144 468 R .321
 (ginning of the line do not match the v)-.15 F .321(alue of)-.25 F F1
 (comment\255begin)2.821 E F0 2.822(,t)C .322(he v)-2.822 F .322(alue is)
--.25 F .832(inserted, otherwise the characters in)144 516 R F1
+-.25 F .832(inserted, otherwise the characters in)144 480 R F1
 (comment\255begin)3.332 E F0 .831(are deleted from the be)3.332 F .831
 (ginning of the line.)-.15 F 1.468
-(In either case, the line is accepted as if a ne)144 528 R 1.468
+(In either case, the line is accepted as if a ne)144 492 R 1.468
 (wline had been typed.)-.25 F 1.469(The def)6.469 F 1.469(ault v)-.1 F
-1.469(alue of)-.25 F F1(com-)3.969 E(ment\255begin)144 540 Q F0 .84
+1.469(alue of)-.25 F F1(com-)3.969 E(ment\255begin)144 504 Q F0 .84
 (causes this command to mak)3.34 F 3.339(et)-.1 G .839
 (he current line a shell comment.)-3.339 F .839(If a numeric ar)5.839 F
-(gu-)-.18 E(ment causes the comment character to be remo)144 552 Q -.15
+(gu-)-.18 E(ment causes the comment character to be remo)144 516 Q -.15
 (ve)-.15 G(d, the line will be e).15 E -.15(xe)-.15 G
-(cuted by the shell.).15 E F1(spell\255corr)108 564 Q(ect\255w)-.18 E
+(cuted by the shell.).15 E F1(spell\255corr)108 528 Q(ect\255w)-.18 E
 (ord \(C\255x s\))-.1 E F0 .42
-(Perform spelling correction on the current w)144 576 R .421
+(Perform spelling correction on the current w)144 540 R .421
 (ord, treating it as a directory or \214lename, in the same)-.1 F -.1
-(wa)144 588 S 4.718(ya).1 G 4.718(st)-4.718 G(he)-4.718 E F1(cdspell)
+(wa)144 552 S 4.718(ya).1 G 4.718(st)-4.718 G(he)-4.718 E F1(cdspell)
 4.718 E F0 2.218(shell option.)4.718 F -.8(Wo)7.217 G 2.217
 (rd boundaries are the same as those used by).8 F F1(shell\255f)4.717 E
-(or)-.25 E(-)-.37 E(ward\255w)144 600 Q(ord)-.1 E F0(.)A F1
-(glob\255complete\255w)108 612 Q(ord \(M\255g\))-.1 E F0 .791(The w)144
-624 R .791(ord before point is treated as a pattern for pathname e)-.1 F
+(or)-.25 E(-)-.37 E(ward\255w)144 564 Q(ord)-.1 E F0(.)A F1
+(glob\255complete\255w)108 576 Q(ord \(M\255g\))-.1 E F0 .791(The w)144
+588 R .791(ord before point is treated as a pattern for pathname e)-.1 F
 .792(xpansion, with an asterisk implicitly)-.15 F 2.5(appended. This)144
-636 R(pattern is used to generate a list of matching \214lenames for po\
-ssible completions.)2.5 E F1(glob\255expand\255w)108 648 Q
-(ord \(C\255x *\))-.1 E F0 .176(The w)144 660 R .176
+600 R(pattern is used to generate a list of matching \214lenames for po\
+ssible completions.)2.5 E F1(glob\255expand\255w)108 612 Q
+(ord \(C\255x *\))-.1 E F0 .176(The w)144 624 R .176
 (ord before point is treated as a pattern for pathname e)-.1 F .176
 (xpansion, and the list of matching \214le-)-.15 F .516
-(names is inserted, replacing the w)144 672 R 3.016(ord. If)-.1 F 3.016
+(names is inserted, replacing the w)144 636 R 3.016(ord. If)-.1 F 3.016
 (an)3.016 G .516(umeric ar)-3.016 F .516
 (gument is supplied, an asterisk is appended)-.18 F(before pathname e)
-144 684 Q(xpansion.)-.15 E F1(glob\255list\255expansions \(C\255x g\))
-108 696 Q F0 .923(The list of e)144 708 R .923(xpansions that w)-.15 F
+144 648 Q(xpansion.)-.15 E F1(glob\255list\255expansions \(C\255x g\))
+108 660 Q F0 .923(The list of e)144 672 R .923(xpansions that w)-.15 F
 .923(ould ha)-.1 F 1.223 -.15(ve b)-.2 H .923(een generated by).15 F F1
 (glob\255expand\255w)3.423 E(ord)-.1 E F0 .923(is displayed, and)3.423 F
-.872(the line is redra)144 720 R 3.372(wn. If)-.15 F 3.372(an)3.372 G
+.872(the line is redra)144 684 R 3.372(wn. If)-.15 F 3.372(an)3.372 G
 .872(umeric ar)-3.372 F .872
-(gument is supplied, an asterisk is appended before pathname)-.18 F
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(55)197.335 E 0 Cg EP
+(gument is supplied, an asterisk is appended before pathname)-.18 F -.15
+(ex)144 696 S(pansion.).15 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E
+(55)197.335 E 0 Cg EP
 %%Page: 56 56
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.15(ex)144 84 S
-(pansion.).15 E/F1 10/Times-Bold@0 SF(dump\255functions)108 96 Q F0 .627
-(Print all of the functions and their k)144 108 R .927 -.15(ey b)-.1 H
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
+SF(dump\255functions)108 84 Q F0 .627
+(Print all of the functions and their k)144 96 R .927 -.15(ey b)-.1 H
 .626(indings to the readline output stream.).15 F .626(If a numeric ar)
 5.626 F(gu-)-.18 E
-(ment is supplied, the output is formatted in such a w)144 120 Q
+(ment is supplied, the output is formatted in such a w)144 108 Q
 (ay that it can be made part of an)-.1 E/F2 10/Times-Italic@0 SF(inputr)
-2.5 E(c)-.37 E F0(\214le.)2.5 E F1(dump\255v)108 132 Q(ariables)-.1 E F0
-.762(Print all of the settable readline v)144 144 R .762
+2.5 E(c)-.37 E F0(\214le.)2.5 E F1(dump\255v)108 120 Q(ariables)-.1 E F0
+.762(Print all of the settable readline v)144 132 R .762
 (ariables and their v)-.25 F .763(alues to the readline output stream.)
--.25 F .763(If a nu-)5.763 F .109(meric ar)144 156 R .109
+-.25 F .763(If a nu-)5.763 F .109(meric ar)144 144 R .109
 (gument is supplied, the output is formatted in such a w)-.18 F .108
-(ay that it can be made part of an)-.1 F F2(in-)2.608 E(putr)144 168 Q
-(c)-.37 E F0(\214le.)2.5 E F1(dump\255macr)108 180 Q(os)-.18 E F0 .592
-(Print all of the readline k)144 192 R .892 -.15(ey s)-.1 H .592
+(ay that it can be made part of an)-.1 F F2(in-)2.608 E(putr)144 156 Q
+(c)-.37 E F0(\214le.)2.5 E F1(dump\255macr)108 168 Q(os)-.18 E F0 .592
+(Print all of the readline k)144 180 R .892 -.15(ey s)-.1 H .592
 (equences bound to macros and the strings the).15 F 3.093(yo)-.15 G
-3.093(utput. If)-3.093 F 3.093(an)3.093 G(umeric)-3.093 E(ar)144 204 Q
+3.093(utput. If)-3.093 F 3.093(an)3.093 G(umeric)-3.093 E(ar)144 192 Q
 .528(gument is supplied, the output is formatted in such a w)-.18 F .528
 (ay that it can be made part of an)-.1 F F2(inputr)3.027 E(c)-.37 E F0
-(\214le.)144 216 Q F1(display\255shell\255v)108 228 Q
-(ersion \(C\255x C\255v\))-.1 E F0(Display v)144 240 Q
+(\214le.)144 204 Q F1(display\255shell\255v)108 216 Q
+(ersion \(C\255x C\255v\))-.1 E F0(Display v)144 228 Q
 (ersion information about the current instance of)-.15 E F1(bash)2.5 E
-F0(.)A F1(Pr)87 256.8 Q(ogrammable Completion)-.18 E F0 .146(When w)108
-268.8 R .147(ord completion is attempted for an ar)-.1 F .147
+F0(.)A F1(Pr)87 244.8 Q(ogrammable Completion)-.18 E F0 .146(When w)108
+256.8 R .147(ord completion is attempted for an ar)-.1 F .147
 (gument to a command for which a completion speci\214cation \(a)-.18 F
-F2(compspec)108 280.8 Q F0 3.829(\)h)C 1.329
+F2(compspec)108 268.8 Q F0 3.829(\)h)C 1.329
 (as been de\214ned using the)-3.829 F F1(complete)3.829 E F0 -.2(bu)
 3.829 G 1.329(iltin \(see).2 F/F3 9/Times-Bold@0 SF 1.329(SHELL B)3.829
 F(UIL)-.09 E 1.329(TIN COMMANDS)-.828 F F0(belo)3.579 E 1.328(w\), the)
--.25 F(programmable completion f)108 292.8 Q(acilities are in)-.1 E -.2
+-.25 F(programmable completion f)108 280.8 Q(acilities are in)-.1 E -.2
 (vo)-.4 G -.1(ke).2 G(d.).1 E .497
-(First, the command name is identi\214ed.)108 309.6 R .497
+(First, the command name is identi\214ed.)108 297.6 R .497
 (If the command w)5.497 F .498
 (ord is the empty string \(completion attempted at)-.1 F .234(the be)108
-321.6 R .233(ginning of an empty line\), an)-.15 F 2.733(yc)-.15 G .233
+309.6 R .233(ginning of an empty line\), an)-.15 F 2.733(yc)-.15 G .233
 (ompspec de\214ned with the)-2.733 F F1<ad45>2.733 E F0 .233(option to)
 2.733 F F1(complete)2.733 E F0 .233(is used.)2.733 F .233(If a comp-)
 5.233 F .481(spec has been de\214ned for that command, the compspec is \
-used to generate the list of possible completions)108 333.6 R .823
-(for the w)108 345.6 R 3.323(ord. If)-.1 F .823(the command w)3.323 F
+used to generate the list of possible completions)108 321.6 R .823
+(for the w)108 333.6 R 3.323(ord. If)-.1 F .823(the command w)3.323 F
 .822(ord is a full pathname, a compspec for the full pathname is search\
-ed for)-.1 F 2.866(\214rst. If)108 357.6 R .367(no compspec is found fo\
+ed for)-.1 F 2.866(\214rst. If)108 345.6 R .367(no compspec is found fo\
 r the full pathname, an attempt is made to \214nd a compspec for the po\
-rtion)2.866 F(follo)108 369.6 Q .299(wing the \214nal slash.)-.25 F .298
+rtion)2.866 F(follo)108 357.6 Q .299(wing the \214nal slash.)-.25 F .298
 (If those searches do not result in a compspec, an)5.299 F 2.798(yc)-.15
 G .298(ompspec de\214ned with the)-2.798 F F1<ad44>2.798 E F0 .056
-(option to)108 381.6 R F1(complete)2.556 E F0 .056(is used as the def)
+(option to)108 369.6 R F1(complete)2.556 E F0 .056(is used as the def)
 2.556 F 2.556(ault. If)-.1 F .056(there is no def)2.556 F .056
 (ault compspec,)-.1 F F1(bash)2.556 E F0 .056(attempts alias e)2.556 F
-.057(xpansion on)-.15 F .333(the command w)108 393.6 R .332(ord as a \
+.057(xpansion on)-.15 F .333(the command w)108 381.6 R .332(ord as a \
 \214nal resort, and attempts to \214nd a compspec for the command w)-.1
 F .332(ord from an)-.1 F 2.832(ys)-.15 G(uc-)-2.832 E(cessful e)108
-405.6 Q(xpansion.)-.15 E .817(Once a compspec has been found, it is use\
-d to generate the list of matching w)108 422.4 R 3.317(ords. If)-.1 F
-3.317(ac)3.317 G .817(ompspec is not)-3.317 F(found, the def)108 434.4 Q
+393.6 Q(xpansion.)-.15 E .817(Once a compspec has been found, it is use\
+d to generate the list of matching w)108 410.4 R 3.317(ords. If)-.1 F
+3.317(ac)3.317 G .817(ompspec is not)-3.317 F(found, the def)108 422.4 Q
 (ault)-.1 E F1(bash)2.5 E F0(completion as described abo)2.5 E .3 -.15
 (ve u)-.15 H(nder).15 E F1(Completing)2.5 E F0(is performed.)2.5 E .464
-(First, the actions speci\214ed by the compspec are used.)108 451.2 R
+(First, the actions speci\214ed by the compspec are used.)108 439.2 R
 .463(Only matches which are pre\214x)5.464 F .463(ed by the w)-.15 F
-.463(ord being)-.1 F .595(completed are returned.)108 463.2 R .595
+.463(ord being)-.1 F .595(completed are returned.)108 451.2 R .595
 (When the)5.595 F F1<ad66>3.095 E F0(or)3.095 E F1<ad64>3.095 E F0 .596
 (option is used for \214lename or directory name completion, the)3.095 F
-(shell v)108 475.2 Q(ariable)-.25 E F3(FIGNORE)2.5 E F0
-(is used to \214lter the matches.)2.25 E(An)108 492 Q 4.084(yc)-.15 G
+(shell v)108 463.2 Q(ariable)-.25 E F3(FIGNORE)2.5 E F0
+(is used to \214lter the matches.)2.25 E(An)108 480 Q 4.084(yc)-.15 G
 1.584(ompletions speci\214ed by a pathname e)-4.084 F 1.584
 (xpansion pattern to the)-.15 F F1<ad47>4.084 E F0 1.584
-(option are generated ne)4.084 F 4.084(xt. The)-.15 F -.1(wo)108 504 S
+(option are generated ne)4.084 F 4.084(xt. The)-.15 F -.1(wo)108 492 S
 .554(rds generated by the pattern need not match the w).1 F .555
 (ord being completed.)-.1 F(The)5.555 E F3(GLOBIGNORE)3.055 E F0 .555
 (shell v)2.805 F(ari-)-.25 E
-(able is not used to \214lter the matches, b)108 516 Q(ut the)-.2 E F3
-(FIGNORE)2.5 E F0 -.25(va)2.25 G(riable is used.).25 E(Ne)108 532.8 Q
+(able is not used to \214lter the matches, b)108 504 Q(ut the)-.2 E F3
+(FIGNORE)2.5 E F0 -.25(va)2.25 G(riable is used.).25 E(Ne)108 520.8 Q
 .321(xt, the string speci\214ed as the ar)-.15 F .321(gument to the)-.18
 F F1<ad57>2.821 E F0 .32(option is considered.)2.821 F .32
 (The string is \214rst split using the)5.32 F .412(characters in the)108
-544.8 R F3(IFS)2.912 E F0 .412(special v)2.662 F .412
+532.8 R F3(IFS)2.912 E F0 .412(special v)2.662 F .412
 (ariable as delimiters.)-.25 F .412(Shell quoting is honored.)5.412 F
 .413(Each w)5.412 F .413(ord is then e)-.1 F(xpanded)-.15 E .092
-(using brace e)108 556.8 R .092(xpansion, tilde e)-.15 F .092
+(using brace e)108 544.8 R .092(xpansion, tilde e)-.15 F .092
 (xpansion, parameter and v)-.15 F .092(ariable e)-.25 F .091
 (xpansion, command substitution, and arith-)-.15 F 1.396(metic e)108
-568.8 R 1.396(xpansion, as described abo)-.15 F 1.696 -.15(ve u)-.15 H
+556.8 R 1.396(xpansion, as described abo)-.15 F 1.696 -.15(ve u)-.15 H
 (nder).15 E F3(EXP)3.896 E(ANSION)-.666 E/F4 9/Times-Roman@0 SF(.)A F0
 1.396(The results are split using the rules described)5.896 F(abo)108
-580.8 Q .51 -.15(ve u)-.15 H(nder).15 E F1 -.75(Wo)2.71 G .21
+568.8 Q .51 -.15(ve u)-.15 H(nder).15 E F1 -.75(Wo)2.71 G .21
 (rd Splitting).75 F F0 5.21(.T)C .209(he results of the e)-5.21 F .209
 (xpansion are pre\214x-matched ag)-.15 F .209(ainst the w)-.05 F .209
-(ord being com-)-.1 F(pleted, and the matching w)108 592.8 Q
+(ord being com-)-.1 F(pleted, and the matching w)108 580.8 Q
 (ords become the possible completions.)-.1 E .233
-(After these matches ha)108 609.6 R .533 -.15(ve b)-.2 H .233
+(After these matches ha)108 597.6 R .533 -.15(ve b)-.2 H .233
 (een generated, an).15 F 2.733(ys)-.15 G .234
 (hell function or command speci\214ed with the)-2.733 F F1<ad46>2.734 E
 F0(and)2.734 E F1<ad43>2.734 E F0(op-)2.734 E 4.209(tions is in)108
-621.6 R -.2(vo)-.4 G -.1(ke).2 G 6.709(d. When).1 F 4.208
+609.6 R -.2(vo)-.4 G -.1(ke).2 G 6.709(d. When).1 F 4.208
 (the command or function is in)6.709 F -.2(vo)-.4 G -.1(ke).2 G 4.208
 (d, the).1 F F3(COMP_LINE)6.708 E F4(,)A F3(COMP_POINT)6.458 E F4(,)A F3
-(COMP_KEY)108 633.6 Q F4(,)A F0(and)2.407 E F3(COMP_TYPE)2.657 E F0 -.25
+(COMP_KEY)108 621.6 Q F4(,)A F0(and)2.407 E F3(COMP_TYPE)2.657 E F0 -.25
 (va)2.407 G .157(riables are assigned v).25 F .157
 (alues as described abo)-.25 F .457 -.15(ve u)-.15 H(nder).15 E F1 .158
 (Shell V)2.658 F(ariables)-.92 E F0 5.158(.I)C(f)-5.158 E 3.486(as)108
-645.6 S .986(hell function is being in)-3.486 F -.2(vo)-.4 G -.1(ke).2 G
+633.6 S .986(hell function is being in)-3.486 F -.2(vo)-.4 G -.1(ke).2 G
 .986(d, the).1 F F3(COMP_W)3.486 E(ORDS)-.09 E F0(and)3.236 E F3
 (COMP_CW)3.486 E(ORD)-.09 E F0 -.25(va)3.236 G .986
 (riables are also set.).25 F(When)5.985 E .346
-(the function or command is in)108 657.6 R -.2(vo)-.4 G -.1(ke).2 G .346
+(the function or command is in)108 645.6 R -.2(vo)-.4 G -.1(ke).2 G .346
 (d, the \214rst ar).1 F .346(gument \()-.18 F F1($1)A F0 2.847(\)i)C
 2.847(st)-2.847 G .347(he name of the command whose ar)-2.847 F(guments)
--.18 E .264(are being completed, the second ar)108 669.6 R .264
+-.18 E .264(are being completed, the second ar)108 657.6 R .264
 (gument \()-.18 F F1($2)A F0 2.764(\)i)C 2.764(st)-2.764 G .264(he w)
 -2.764 F .263(ord being completed, and the third ar)-.1 F .263
-(gument \()-.18 F F1($3)A F0 2.763(\)i)C(s)-2.763 E .628(the w)108 681.6
+(gument \()-.18 F F1($3)A F0 2.763(\)i)C(s)-2.763 E .628(the w)108 669.6
 R .628(ord preceding the w)-.1 F .629
 (ord being completed on the current command line.)-.1 F .629
-(No \214ltering of the generated)5.629 F .715(completions ag)108 693.6 R
+(No \214ltering of the generated)5.629 F .715(completions ag)108 681.6 R
 .715(ainst the w)-.05 F .714(ord being completed is performed; the func\
 tion or command has complete free-)-.1 F(dom in generating the matches.)
-108 705.6 Q(An)108 722.4 Q 2.937(yf)-.15 G .437
+108 693.6 Q(An)108 710.4 Q 2.937(yf)-.15 G .437
 (unction speci\214ed with)-2.937 F F1<ad46>2.937 E F0 .437(is in)2.937 F
 -.2(vo)-.4 G -.1(ke).2 G 2.937<648c>.1 G 2.937(rst. The)-2.937 F .437
 (function may use an)2.937 F 2.937(yo)-.15 G 2.937(ft)-2.937 G .437
-(he shell f)-2.937 F .438(acilities, including)-.1 F(GNU Bash 5.2)72 768
-Q(2023 May 14)148.175 E(56)197.335 E 0 Cg EP
+(he shell f)-2.937 F .438(acilities, including)-.1 F(the)108 722.4 Q F1
+(compgen)2.957 E F0 -.2(bu)2.957 G .457(iltin described belo).2 F 1.756
+-.65(w, t)-.25 H 2.956(og).65 G .456(enerate the matches.)-2.956 F .456
+(It must put the possible completions in the)5.456 F(GNU Bash 5.2)72 768
+Q(2023 May 23)148.175 E(56)197.335 E 0 Cg EP
 %%Page: 57 57
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(the)108 84 Q/F1 10
-/Times-Bold@0 SF(compgen)2.957 E F0 -.2(bu)2.957 G .457
-(iltin described belo).2 F 1.756 -.65(w, t)-.25 H 2.956(og).65 G .456
-(enerate the matches.)-2.956 F .456
-(It must put the possible completions in the)5.456 F/F2 9/Times-Bold@0
-SF(COMPREPL)108 96 Q(Y)-.828 E F0(array v)2.25 E
-(ariable, one per array element.)-.25 E(Ne)108 112.8 Q .08(xt, an)-.15 F
-2.58(yc)-.15 G .08(ommand speci\214ed with the)-2.58 F F1<ad43>2.58 E F0
-.081(option is in)2.581 F -.2(vo)-.4 G -.1(ke).2 G 2.581(di).1 G 2.581
-(na)-2.581 G 2.581(ne)-2.581 G -.4(nv)-2.581 G .081(ironment equi).4 F
--.25(va)-.25 G .081(lent to command sub-).25 F 2.859(stitution. It)108
-124.8 R .359(should print a list of completions, one per line, to the s\
-tandard output.)2.859 F .358(Backslash may be used)5.359 F
-(to escape a ne)108 136.8 Q(wline, if necessary)-.25 E(.)-.65 E .376
-(After all of the possible completions are generated, an)108 153.6 R
-2.877<798c>-.15 G .377(lter speci\214ed with the)-2.877 F F1<ad58>2.877
-E F0 .377(option is applied to the)2.877 F 3.182(list. The)108 165.6 R
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 9/Times-Bold@0
+SF(COMPREPL)108 84 Q(Y)-.828 E F0(array v)2.25 E
+(ariable, one per array element.)-.25 E(Ne)108 100.8 Q .08(xt, an)-.15 F
+2.58(yc)-.15 G .08(ommand speci\214ed with the)-2.58 F/F2 10
+/Times-Bold@0 SF<ad43>2.58 E F0 .081(option is in)2.581 F -.2(vo)-.4 G
+-.1(ke).2 G 2.581(di).1 G 2.581(na)-2.581 G 2.581(ne)-2.581 G -.4(nv)
+-2.581 G .081(ironment equi).4 F -.25(va)-.25 G .081
+(lent to command sub-).25 F 2.859(stitution. It)108 112.8 R .359(should\
+ print a list of completions, one per line, to the standard output.)
+2.859 F .358(Backslash may be used)5.359 F(to escape a ne)108 124.8 Q
+(wline, if necessary)-.25 E(.)-.65 E .376
+(After all of the possible completions are generated, an)108 141.6 R
+2.877<798c>-.15 G .377(lter speci\214ed with the)-2.877 F F2<ad58>2.877
+E F0 .377(option is applied to the)2.877 F 3.182(list. The)108 153.6 R
 .682(\214lter is a pattern as used for pathname e)3.182 F .681
-(xpansion; a)-.15 F F1(&)3.181 E F0 .681
+(xpansion; a)-.15 F F2(&)3.181 E F0 .681
 (in the pattern is replaced with the te)3.181 F .681(xt of)-.15 F .522
-(the w)108 177.6 R .522(ord being completed.)-.1 F 3.022(Al)5.522 G
-(iteral)-3.022 E F1(&)3.022 E F0 .523
+(the w)108 165.6 R .522(ord being completed.)-.1 F 3.022(Al)5.522 G
+(iteral)-3.022 E F2(&)3.022 E F0 .523
 (may be escaped with a backslash; the backslash is remo)3.022 F -.15(ve)
--.15 G 3.023(db).15 G(efore)-3.023 E .85(attempting a match.)108 189.6 R
+-.15 G 3.023(db).15 G(efore)-3.023 E .85(attempting a match.)108 177.6 R
 (An)5.85 E 3.35(yc)-.15 G .849
 (ompletion that matches the pattern will be remo)-3.35 F -.15(ve)-.15 G
 3.349(df).15 G .849(rom the list.)-3.349 F 3.349(Al)5.849 G(eading)
--3.349 E F1(!)3.349 E F0(ne)108 201.6 Q -.05(ga)-.15 G .764
+-3.349 E F2(!)3.349 E F0(ne)108 189.6 Q -.05(ga)-.15 G .764
 (tes the pattern; in this case an).05 F 3.264(yc)-.15 G .764
 (ompletion not matching the pattern will be remo)-3.264 F -.15(ve)-.15 G
-3.264(d. If).15 F(the)3.265 E F1(nocase-)3.265 E(match)108 213.6 Q F0
+3.264(d. If).15 F(the)3.265 E F2(nocase-)3.265 E(match)108 201.6 Q F0
 (shell option is enabled, the match is performed without re)2.5 E -.05
 (ga)-.15 G(rd to the case of alphabetic characters.).05 E(Finally)108
-230.4 Q 3.087(,a)-.65 G .887 -.15(ny p)-3.087 H .587(re\214x and suf).15
-F .587(\214x speci\214ed with the)-.25 F F1<ad50>3.087 E F0(and)3.087 E
-F1<ad53>3.087 E F0 .587(options are added to each member of the com-)
+218.4 Q 3.087(,a)-.65 G .887 -.15(ny p)-3.087 H .587(re\214x and suf).15
+F .587(\214x speci\214ed with the)-.25 F F2<ad50>3.087 E F0(and)3.087 E
+F2<ad53>3.087 E F0 .587(options are added to each member of the com-)
 3.087 F(pletion list, and the result is returned to the readline comple\
-tion code as the list of possible completions.)108 242.4 Q .246
-(If the pre)108 259.2 R .247(viously-applied actions do not generate an)
--.25 F 2.747(ym)-.15 G .247(atches, and the)-2.747 F F1 .247(\255o dir)
+tion code as the list of possible completions.)108 230.4 Q .246
+(If the pre)108 247.2 R .247(viously-applied actions do not generate an)
+-.25 F 2.747(ym)-.15 G .247(atches, and the)-2.747 F F2 .247(\255o dir)
 2.747 F(names)-.15 E F0 .247(option w)2.747 F .247(as supplied to)-.1 F
-F1(complete)108 271.2 Q F0(when the compspec w)2.5 E
+F2(complete)108 259.2 Q F0(when the compspec w)2.5 E
 (as de\214ned, directory name completion is attempted.)-.1 E .462
-(If the)108 288 R F1 .462(\255o plusdirs)2.962 F F0 .462(option w)2.962
-F .462(as supplied to)-.1 F F1(complete)2.962 E F0 .462
+(If the)108 276 R F2 .462(\255o plusdirs)2.962 F F0 .462(option w)2.962
+F .462(as supplied to)-.1 F F2(complete)2.962 E F0 .462
 (when the compspec w)2.962 F .462(as de\214ned, directory name com-)-.1
-F(pletion is attempted and an)108 300 Q 2.5(ym)-.15 G
+F(pletion is attempted and an)108 288 Q 2.5(ym)-.15 G
 (atches are added to the results of the other actions.)-2.5 E .559
-(By def)108 316.8 R .559(ault, if a compspec is found, whate)-.1 F -.15
+(By def)108 304.8 R .559(ault, if a compspec is found, whate)-.1 F -.15
 (ve)-.25 G 3.059(ri).15 G 3.059(tg)-3.059 G .56
 (enerates is returned to the completion code as the full set)-3.059 F
-.632(of possible completions.)108 328.8 R .632(The def)5.632 F(ault)-.1
-E F1(bash)3.132 E F0 .631
+.632(of possible completions.)108 316.8 R .632(The def)5.632 F(ault)-.1
+E F2(bash)3.132 E F0 .631
 (completions are not attempted, and the readline def)3.131 F .631
-(ault of \214le-)-.1 F .558(name completion is disabled.)108 340.8 R
-.558(If the)5.558 F F1 .559(\255o bashdefault)3.059 F F0 .559(option w)
-3.059 F .559(as supplied to)-.1 F F1(complete)3.059 E F0 .559
-(when the compspec)3.059 F -.1(wa)108 352.8 S 3.172(sd).1 G .672
-(e\214ned, the)-3.172 F F1(bash)3.172 E F0(def)3.172 E .671
+(ault of \214le-)-.1 F .558(name completion is disabled.)108 328.8 R
+.558(If the)5.558 F F2 .559(\255o bashdefault)3.059 F F0 .559(option w)
+3.059 F .559(as supplied to)-.1 F F2(complete)3.059 E F0 .559
+(when the compspec)3.059 F -.1(wa)108 340.8 S 3.172(sd).1 G .672
+(e\214ned, the)-3.172 F F2(bash)3.172 E F0(def)3.172 E .671
 (ault completions are attempted if the compspec generates no matches.)
--.1 F .671(If the)5.671 F F1<ad6f>3.171 E(default)108 364.8 Q F0 1.207
-(option w)3.706 F 1.207(as supplied to)-.1 F F1(complete)3.707 E F0
+-.1 F .671(If the)5.671 F F2<ad6f>3.171 E(default)108 352.8 Q F0 1.207
+(option w)3.706 F 1.207(as supplied to)-.1 F F2(complete)3.707 E F0
 1.207(when the compspec w)3.707 F 1.207(as de\214ned, readline')-.1 F
 3.707(sd)-.55 G(ef)-3.707 E 1.207(ault completion)-.1 F
 (will be performed if the compspec \(and, if attempted, the def)108
-376.8 Q(ault)-.1 E F1(bash)2.5 E F0(completions\) generate no matches.)
+364.8 Q(ault)-.1 E F2(bash)2.5 E F0(completions\) generate no matches.)
 2.5 E .245(When a compspec indicates that directory name completion is \
-desired, the programmable completion func-)108 393.6 R .632(tions force\
+desired, the programmable completion func-)108 381.6 R .632(tions force\
  readline to append a slash to completed names which are symbolic links\
- to directories, subject)108 405.6 R 2.762(to the v)108 417.6 R 2.762
-(alue of the)-.25 F F1(mark\255dir)5.262 E(ectories)-.18 E F0 2.761
+ to directories, subject)108 393.6 R 2.762(to the v)108 405.6 R 2.762
+(alue of the)-.25 F F2(mark\255dir)5.262 E(ectories)-.18 E F0 2.761
 (readline v)5.262 F 2.761(ariable, re)-.25 F -.05(ga)-.15 G 2.761
-(rdless of the setting of the).05 F F1(mark-sym-)5.261 E(link)108 429.6
+(rdless of the setting of the).05 F F2(mark-sym-)5.261 E(link)108 417.6
 Q(ed\255dir)-.1 E(ectories)-.18 E F0(readline v)2.5 E(ariable.)-.25 E
 .19(There is some support for dynamically modifying completions.)108
-446.4 R .191(This is most useful when used in combina-)5.191 F 1.172
-(tion with a def)108 458.4 R 1.172(ault completion speci\214ed with)-.1
-F F1 1.172(complete \255D)3.672 F F0 6.172(.I)C(t')-6.172 E 3.672(sp)
+434.4 R .191(This is most useful when used in combina-)5.191 F 1.172
+(tion with a def)108 446.4 R 1.172(ault completion speci\214ed with)-.1
+F F2 1.172(complete \255D)3.672 F F0 6.172(.I)C(t')-6.172 E 3.672(sp)
 -.55 G 1.172(ossible for shell functions e)-3.672 F -.15(xe)-.15 G 1.172
 (cuted as).15 F .93(completion handlers to indicate that completion sho\
-uld be retried by returning an e)108 470.4 R .93(xit status of 124.)-.15
+uld be retried by returning an e)108 458.4 R .93(xit status of 124.)-.15
 F .93(If a)5.93 F .1(shell function returns 124, and changes the compsp\
-ec associated with the command on which completion is)108 482.4 R .665
-(being attempted \(supplied as the \214rst ar)108 494.4 R .666
+ec associated with the command on which completion is)108 470.4 R .665
+(being attempted \(supplied as the \214rst ar)108 482.4 R .666
 (gument when the function is e)-.18 F -.15(xe)-.15 G .666
 (cuted\), programmable completion).15 F .084(restarts from the be)108
-506.4 R .084(ginning, with an attempt to \214nd a ne)-.15 F 2.584(wc)
+494.4 R .084(ginning, with an attempt to \214nd a ne)-.15 F 2.584(wc)
 -.25 G .084(ompspec for that command.)-2.584 F .083(This allo)5.083 F
-.083(ws a set of)-.25 F(completions to be b)108 518.4 Q(uilt dynamicall\
+.083(ws a set of)-.25 F(completions to be b)108 506.4 Q(uilt dynamicall\
 y as completion is attempted, rather than being loaded all at once.)-.2
-E -.15(Fo)108 535.2 S 2.636(ri).15 G .137
+E -.15(Fo)108 523.2 S 2.636(ri).15 G .137
 (nstance, assuming that there is a library of compspecs, each k)-2.636 F
 .137(ept in a \214le corresponding to the name of)-.1 F
-(the command, the follo)108 547.2 Q(wing def)-.25 E
+(the command, the follo)108 535.2 Q(wing def)-.25 E
 (ault completion function w)-.1 E(ould load completions dynamically:)-.1
-E/F3 10/Courier@0 SF(_completion_loader\(\))108 564 Q({)108 576 Q 6(.")
-144 588 S(/etc/bash_completion.d/$1.sh" >/dev/null 2>&1 && return 124)-6
-E(})108 600 Q
-(complete -D -F _completion_loader -o bashdefault -o default)108 612 Q
-/F4 10.95/Times-Bold@0 SF(HIST)72 640.8 Q(OR)-.197 E(Y)-.383 E F0 .372
-(When the)108 652.8 R F1 .372(\255o history)2.872 F F0 .372
-(option to the)2.872 F F1(set)2.872 E F0 -.2(bu)2.872 G .372
+E/F3 10/Courier@0 SF(_completion_loader\(\))108 552 Q({)108 564 Q 6(.")
+144 576 S(/etc/bash_completion.d/$1.sh" >/dev/null 2>&1 && return 124)-6
+E(})108 588 Q
+(complete -D -F _completion_loader -o bashdefault -o default)108 600 Q
+/F4 10.95/Times-Bold@0 SF(HIST)72 628.8 Q(OR)-.197 E(Y)-.383 E F0 .372
+(When the)108 640.8 R F2 .372(\255o history)2.872 F F0 .372
+(option to the)2.872 F F2(set)2.872 E F0 -.2(bu)2.872 G .372
 (iltin is enabled, the shell pro).2 F .371(vides access to the)-.15 F/F5
 10/Times-Italic@0 SF .371(command history)2.871 F F0(,)A .304
-(the list of commands pre)108 664.8 R .304(viously typed.)-.25 F .304
-(The v)5.304 F .304(alue of the)-.25 F F2(HISTSIZE)2.804 E F0 -.25(va)
+(the list of commands pre)108 652.8 R .304(viously typed.)-.25 F .304
+(The v)5.304 F .304(alue of the)-.25 F F1(HISTSIZE)2.804 E F0 -.25(va)
 2.554 G .305(riable is used as the number of com-).25 F .43(mands to sa)
-108 676.8 R .73 -.15(ve i)-.2 H 2.93(nah).15 G .43(istory list.)-2.93 F
-.43(The te)5.43 F .429(xt of the last)-.15 F F2(HISTSIZE)2.929 E F0 .429
+108 664.8 R .73 -.15(ve i)-.2 H 2.93(nah).15 G .43(istory list.)-2.93 F
+.43(The te)5.43 F .429(xt of the last)-.15 F F1(HISTSIZE)2.929 E F0 .429
 (commands \(def)2.679 F .429(ault 500\) is sa)-.1 F -.15(ve)-.2 G 2.929
 (d. The).15 F(shell)2.929 E .287
 (stores each command in the history list prior to parameter and v)108
-688.8 R .287(ariable e)-.25 F .287(xpansion \(see)-.15 F F2(EXP)2.787 E
-(ANSION)-.666 E F0(abo)2.537 E -.15(ve)-.15 G(\)).15 E -.2(bu)108 700.8
+676.8 R .287(ariable e)-.25 F .287(xpansion \(see)-.15 F F1(EXP)2.787 E
+(ANSION)-.666 E F0(abo)2.537 E -.15(ve)-.15 G(\)).15 E -.2(bu)108 688.8
 S 4.066(ta).2 G 1.565(fter history e)-4.066 F 1.565
 (xpansion is performed, subject to the v)-.15 F 1.565
-(alues of the shell v)-.25 F(ariables)-.25 E F2(HISTIGNORE)4.065 E F0
-(and)3.815 E F2(HISTCONTR)108 712.8 Q(OL)-.27 E/F6 9/Times-Roman@0 SF(.)
+(alues of the shell v)-.25 F(ariables)-.25 E F1(HISTIGNORE)4.065 E F0
+(and)3.815 E F1(HISTCONTR)108 700.8 Q(OL)-.27 E/F6 9/Times-Roman@0 SF(.)
 A F0 .082
 (On startup, the history is initialized from the \214le named by the v)
-108 729.6 R(ariable)-.25 E F2(HISTFILE)2.583 E F0(\(def)2.333 E(ault)-.1
-E F5(~/.bash_history)2.583 E F0(\).)A(GNU Bash 5.2)72 768 Q(2023 May 14)
-148.175 E(57)197.335 E 0 Cg EP
+108 717.6 R(ariable)-.25 E F1(HISTFILE)2.583 E F0(\(def)2.333 E(ault)-.1
+E F5(~/.bash_history)2.583 E F0(\).)A .315(The \214le named by the v)108
+729.6 R .315(alue of)-.25 F F1(HISTFILE)2.815 E F0 .315
+(is truncated, if necessary)2.565 F 2.815(,t)-.65 G 2.815(oc)-2.815 G
+.315(ontain no more than the number of)-2.815 F(GNU Bash 5.2)72 768 Q
+(2023 May 23)148.175 E(57)197.335 E 0 Cg EP
 %%Page: 58 58
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .315
-(The \214le named by the v)108 84 R .315(alue of)-.25 F/F1 9
-/Times-Bold@0 SF(HISTFILE)2.815 E F0 .315(is truncated, if necessary)
-2.565 F 2.815(,t)-.65 G 2.815(oc)-2.815 G .315
-(ontain no more than the number of)-2.815 F .658
-(lines speci\214ed by the v)108 96 R .658(alue of)-.25 F F1
-(HISTFILESIZE)3.158 E/F2 9/Times-Roman@0 SF(.)A F0(If)5.158 E/F3 10
-/Times-Bold@0 SF(HISTFILESIZE)3.158 E F0 .659
-(is unset, or set to null, a non-numeric)3.158 F -.25(va)108 108 S .142
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .658
+(lines speci\214ed by the v)108 84 R .658(alue of)-.25 F/F1 9
+/Times-Bold@0 SF(HISTFILESIZE)3.158 E/F2 9/Times-Roman@0 SF(.)A F0(If)
+5.158 E/F3 10/Times-Bold@0 SF(HISTFILESIZE)3.158 E F0 .659
+(is unset, or set to null, a non-numeric)3.158 F -.25(va)108 96 S .142
 (lue, or a numeric v).25 F .142
 (alue less than zero, the history \214le is not truncated.)-.25 F .142
-(When the history \214le is read, lines)5.142 F(be)108 120 Q 1.604
+(When the history \214le is read, lines)5.142 F(be)108 108 Q 1.604
 (ginning with the history comment character follo)-.15 F 1.604
 (wed immediately by a digit are interpreted as time-)-.25 F .151
-(stamps for the follo)108 132 R .151(wing history line.)-.25 F .151
+(stamps for the follo)108 120 R .151(wing history line.)-.25 F .151
 (These timestamps are optionally displayed depending on the v)5.151 F
-.15(alue of)-.25 F(the)108 144 Q F1(HISTTIMEFORMA)3.558 E(T)-.855 E F0
+.15(alue of)-.25 F(the)108 132 Q F1(HISTTIMEFORMA)3.558 E(T)-.855 E F0
 -.25(va)3.309 G 3.559(riable. When).25 F 3.559(as)3.559 G 1.059
 (hell with history enabled e)-3.559 F 1.059(xits, the last)-.15 F F1
 ($HISTSIZE)3.559 E F0 1.059(lines are)3.309 F .159
-(copied from the history list to)108 156 R F1($HISTFILE)2.659 E F2(.)A
+(copied from the history list to)108 144 R F1($HISTFILE)2.659 E F2(.)A
 F0 .159(If the)4.659 F F3(histappend)2.658 E F0 .158
 (shell option is enabled \(see the description of)2.658 F F3(shopt)108
-168 Q F0(under)2.581 E F1 .081(SHELL B)2.581 F(UIL)-.09 E .081
+156 Q F0(under)2.581 E F1 .081(SHELL B)2.581 F(UIL)-.09 E .081
 (TIN COMMANDS)-.828 F F0(belo)2.332 E .082
 (w\), the lines are appended to the history \214le, otherwise the)-.25 F
-.197(history \214le is o)108 180 R -.15(ve)-.15 G 2.697(rwritten. If).15
+.197(history \214le is o)108 168 R -.15(ve)-.15 G 2.697(rwritten. If).15
 F F1(HISTFILE)2.697 E F0 .196(is unset, or if the history \214le is unw\
 ritable, the history is not sa)2.447 F -.15(ve)-.2 G(d.).15 E .583
-(If the)108 192 R F1(HISTTIMEFORMA)3.083 E(T)-.855 E F0 -.25(va)2.834 G
+(If the)108 180 R F1(HISTTIMEFORMA)3.083 E(T)-.855 E F0 -.25(va)2.834 G
 .584(riable is set, time stamps are written to the history \214le, mark)
-.25 F .584(ed with the his-)-.1 F 1.148(tory comment character)108 204 R
+.25 F .584(ed with the his-)-.1 F 1.148(tory comment character)108 192 R
 3.648(,s)-.4 G 3.648(ot)-3.648 G(he)-3.648 E 3.648(ym)-.15 G 1.147
 (ay be preserv)-3.648 F 1.147(ed across shell sessions.)-.15 F 1.147
 (This uses the history comment)6.147 F 1.376
-(character to distinguish timestamps from other history lines.)108 216 R
+(character to distinguish timestamps from other history lines.)108 204 R
 1.377(After sa)6.377 F 1.377(ving the history)-.2 F 3.877(,t)-.65 G
 1.377(he history \214le is)-3.877 F .757
-(truncated to contain no more than)108 228 R F1(HISTFILESIZE)3.257 E F0
+(truncated to contain no more than)108 216 R F1(HISTFILESIZE)3.257 E F0
 3.257(lines. If)3.007 F F1(HISTFILESIZE)3.257 E F0 .757
-(is unset, or set to null, a non-)3.007 F(numeric v)108 240 Q
+(is unset, or set to null, a non-)3.007 F(numeric v)108 228 Q
 (alue, or a numeric v)-.25 E
 (alue less than zero, the history \214le is not truncated.)-.25 E .298
-(The b)108 256.8 R .298(uiltin command)-.2 F F3(fc)2.798 E F0(\(see)
+(The b)108 244.8 R .298(uiltin command)-.2 F F3(fc)2.798 E F0(\(see)
 2.798 E F1 .298(SHELL B)2.798 F(UIL)-.09 E .298(TIN COMMANDS)-.828 F F0
 (belo)2.549 E .299(w\) may be used to list or edit and re-e)-.25 F -.15
-(xe)-.15 G(-).15 E .472(cute a portion of the history list.)108 268.8 R
+(xe)-.15 G(-).15 E .472(cute a portion of the history list.)108 256.8 R
 (The)5.472 E F3(history)2.972 E F0 -.2(bu)2.972 G .471
 (iltin may be used to display or modify the history list and).2 F .001
-(manipulate the history \214le.)108 280.8 R .001
+(manipulate the history \214le.)108 268.8 R .001
 (When using command-line editing, search commands are a)5.001 F -.25(va)
--.2 G .002(ilable in each edit-).25 F(ing mode that pro)108 292.8 Q
-(vide access to the history list.)-.15 E 1.486(The shell allo)108 309.6
+-.2 G .002(ilable in each edit-).25 F(ing mode that pro)108 280.8 Q
+(vide access to the history list.)-.15 E 1.486(The shell allo)108 297.6
 R 1.486(ws control o)-.25 F -.15(ve)-.15 G 3.986(rw).15 G 1.486
 (hich commands are sa)-3.986 F -.15(ve)-.2 G 3.986(do).15 G 3.986(nt)
 -3.986 G 1.486(he history list.)-3.986 F(The)6.485 E F1(HISTCONTR)3.985
-E(OL)-.27 E F0(and)3.735 E F1(HISTIGNORE)108 321.6 Q F0 -.25(va)2.707 G
+E(OL)-.27 E F0(and)3.735 E F1(HISTIGNORE)108 309.6 Q F0 -.25(va)2.707 G
 .457(riables may be set to cause the shell to sa).25 F .758 -.15(ve o)
 -.2 H .458(nly a subset of the commands entered.).15 F(The)5.458 E F3
-(cmdhist)108 333.6 Q F0 .75
+(cmdhist)108 321.6 Q F0 .75
 (shell option, if enabled, causes the shell to attempt to sa)3.25 F 1.05
 -.15(ve e)-.2 H .75(ach line of a multi-line command in).15 F 1.077
-(the same history entry)108 345.6 R 3.577(,a)-.65 G 1.077
+(the same history entry)108 333.6 R 3.577(,a)-.65 G 1.077
 (dding semicolons where necessary to preserv)-3.577 F 3.577(es)-.15 G
 1.077(yntactic correctness.)-3.577 F(The)6.077 E F3(lithist)3.577 E F0
-.374(shell option causes the shell to sa)108 357.6 R .674 -.15(ve t)-.2
+.374(shell option causes the shell to sa)108 345.6 R .674 -.15(ve t)-.2
 H .374(he command with embedded ne).15 F .373
 (wlines instead of semicolons.)-.25 F .373(See the)5.373 F .318
-(description of the)108 369.6 R F3(shopt)2.818 E F0 -.2(bu)2.818 G .318
+(description of the)108 357.6 R F3(shopt)2.818 E F0 -.2(bu)2.818 G .318
 (iltin belo).2 F 2.818(wu)-.25 G(nder)-2.818 E F1 .318(SHELL B)2.818 F
 (UIL)-.09 E .318(TIN COMMANDS)-.828 F F0 .319
 (for information on setting and)2.568 F(unsetting shell options.)108
-381.6 Q/F4 10.95/Times-Bold@0 SF(HIST)72 398.4 Q(OR)-.197 E 2.738(YE)
+369.6 Q/F4 10.95/Times-Bold@0 SF(HIST)72 386.4 Q(OR)-.197 E 2.738(YE)
 -.383 G(XP)-2.738 E(ANSION)-.81 E F0 .611
-(The shell supports a history e)108 410.4 R .611
+(The shell supports a history e)108 398.4 R .611
 (xpansion feature that is similar to the history e)-.15 F .61
 (xpansion in)-.15 F F3(csh)3.11 E F0 5.61(.T)C .61(his section)-5.61 F
-.87(describes what syntax features are a)108 422.4 R -.25(va)-.2 G 3.371
+.87(describes what syntax features are a)108 410.4 R -.25(va)-.2 G 3.371
 (ilable. This).25 F .871(feature is enabled by def)3.371 F .871
 (ault for interacti)-.1 F 1.171 -.15(ve s)-.25 H .871(hells, and).15 F
-.95(can be disabled using the)108 434.4 R F3(+H)3.449 E F0 .949
+.95(can be disabled using the)108 422.4 R F3(+H)3.449 E F0 .949
 (option to the)3.449 F F3(set)3.449 E F0 -.2(bu)3.449 G .949
 (iltin command \(see).2 F F1 .949(SHELL B)3.449 F(UIL)-.09 E .949
-(TIN COMMANDS)-.828 F F0(be-)3.199 E(lo)108 446.4 Q 2.5
+(TIN COMMANDS)-.828 F F0(be-)3.199 E(lo)108 434.4 Q 2.5
 (w\). Non-interacti)-.25 F .3 -.15(ve s)-.25 H
 (hells do not perform history e).15 E(xpansion by def)-.15 E(ault.)-.1 E
-1.305(History e)108 463.2 R 1.305(xpansions introduce w)-.15 F 1.306(or\
+1.305(History e)108 451.2 R 1.305(xpansions introduce w)-.15 F 1.306(or\
 ds from the history list into the input stream, making it easy to repea\
-t)-.1 F .21(commands, insert the ar)108 475.2 R .21(guments to a pre)
+t)-.1 F .21(commands, insert the ar)108 463.2 R .21(guments to a pre)
 -.18 F .209
 (vious command into the current input line, or \214x errors in pre)-.25
-F(vious)-.25 E(commands quickly)108 487.2 Q(.)-.65 E 1.163(History e)108
-504 R 1.163(xpansion is performed immediately after a complete line is \
-read, before the shell breaks it into)-.15 F -.1(wo)108 516 S .252
+F(vious)-.25 E(commands quickly)108 475.2 Q(.)-.65 E 1.163(History e)108
+492 R 1.163(xpansion is performed immediately after a complete line is \
+read, before the shell breaks it into)-.15 F -.1(wo)108 504 S .252
 (rds, and is performed on each line indi).1 F .251
 (vidually without taking quoting on pre)-.25 F .251
-(vious lines into account.)-.25 F(It)5.251 E(tak)108 528 Q .145
+(vious lines into account.)-.25 F(It)5.251 E(tak)108 516 Q .145
 (es place in tw)-.1 F 2.645(op)-.1 G 2.646(arts. The)-2.645 F .146(\214\
 rst is to determine which line from the history list to use during subs\
 titution.)2.646 F .766(The second is to select portions of that line fo\
-r inclusion into the current one.)108 540 R .766
-(The line selected from the)5.766 F .253(history is the)108 552 R/F5 10
+r inclusion into the current one.)108 528 R .766
+(The line selected from the)5.766 F .253(history is the)108 540 R/F5 10
 /Times-Italic@0 SF -.15(ev)2.753 G(ent).15 E F0 2.753(,a)C .253
 (nd the portions of that line that are acted upon are)-2.753 F F5(wor)
 2.753 E(ds)-.37 E F0 5.253(.V)C(arious)-6.363 E F5(modi\214er)2.754 E(s)
 -.1 E F0 .254(are a)2.754 F -.25(va)-.2 G(il-).25 E .539
-(able to manipulate the selected w)108 564 R 3.039(ords. The)-.1 F .538
+(able to manipulate the selected w)108 552 R 3.039(ords. The)-.1 F .538
 (line is brok)3.038 F .538(en into w)-.1 F .538(ords in the same f)-.1 F
-.538(ashion as when reading)-.1 F .572(input, so that se)108 576 R -.15
+.538(ashion as when reading)-.1 F .572(input, so that se)108 564 R -.15
 (ve)-.25 G(ral).15 E F5(metac)3.072 E(har)-.15 E(acter)-.15 E F0 .572
 (-separated w)B .572(ords surrounded by quotes are considered one w)-.1
-F 3.073(ord. His-)-.1 F .356(tory e)108 588 R .355
+F 3.073(ord. His-)-.1 F .356(tory e)108 576 R .355
 (xpansions are introduced by the appearance of the history e)-.15 F .355
 (xpansion character)-.15 F 2.855(,w)-.4 G .355(hich is)-2.855 F F3(!)
-3.688 E F0 .355(by def)3.688 F(ault.)-.1 E .79(Only backslash \()108 600
+3.688 E F0 .355(by def)3.688 F(ault.)-.1 E .79(Only backslash \()108 588
 R F3(\\).833 E F0 3.29(\)a).833 G .79
 (nd single quotes can quote the history e)-3.29 F .79
 (xpansion character)-.15 F 3.291(,b)-.4 G .791(ut the history e)-3.491 F
 (xpansion)-.15 E .789(character is also treated as quoted if it immedia\
-tely precedes the closing double quote in a double-quoted)108 612 R
-(string.)108 624 Q(Se)108 640.8 Q -.15(ve)-.25 G .03
+tely precedes the closing double quote in a double-quoted)108 600 R
+(string.)108 612 Q(Se)108 628.8 Q -.15(ve)-.25 G .03
 (ral characters inhibit history e).15 F .03
 (xpansion if found immediately follo)-.15 F .03(wing the history e)-.25
-F .03(xpansion character)-.15 F(,)-.4 E -2.15 -.25(ev e)108 652.8 T
+F .03(xpansion character)-.15 F(,)-.4 E -2.15 -.25(ev e)108 640.8 T
 3.163(ni).25 G 3.163(fi)-3.163 G 3.162(ti)-3.163 G 3.162(su)-3.162 G
 .662(nquoted: space, tab, ne)-3.162 F .662(wline, carriage return, and)
 -.25 F F3(=)3.162 E F0 5.662(.I)C 3.162(ft)-5.662 G(he)-3.162 E F3
 (extglob)3.162 E F0 .662(shell option is enabled,)3.162 F F3(\()3.162 E
-F0(will also inhibit e)108 664.8 Q(xpansion.)-.15 E(Se)108 681.6 Q -.15
+F0(will also inhibit e)108 652.8 Q(xpansion.)-.15 E(Se)108 669.6 Q -.15
 (ve)-.25 G .109(ral shell options settable with the).15 F F3(shopt)2.609
 E F0 -.2(bu)2.609 G .11(iltin may be used to tailor the beha).2 F .11
-(vior of history e)-.2 F(xpansion.)-.15 E .232(If the)108 693.6 R F3
+(vior of history e)-.2 F(xpansion.)-.15 E .232(If the)108 681.6 R F3
 (histv)2.732 E(erify)-.1 E F0 .231
 (shell option is enabled \(see the description of the)2.731 F F3(shopt)
 2.731 E F0 -.2(bu)2.731 G .231(iltin belo).2 F .231(w\), and)-.25 F F3
 -.18(re)2.731 G(adline).18 E F0 .231(is be-)2.731 F .449(ing used, hist\
 ory substitutions are not immediately passed to the shell parser)108
-705.6 R 5.449(.I)-.55 G .449(nstead, the e)-5.449 F .449
-(xpanded line is)-.15 F 2.228(reloaded into the)108 717.6 R F3 -.18(re)
+693.6 R 5.449(.I)-.55 G .449(nstead, the e)-5.449 F .449
+(xpanded line is)-.15 F 2.228(reloaded into the)108 705.6 R F3 -.18(re)
 4.728 G(adline).18 E F0 2.228(editing b)4.728 F(uf)-.2 E 2.228
 (fer for further modi\214cation.)-.25 F(If)7.228 E F3 -.18(re)4.728 G
-(adline).18 E F0 2.228(is being used, and the)4.728 F F3(histr)108 729.6
+(adline).18 E F0 2.228(is being used, and the)4.728 F F3(histr)108 717.6
 Q(eedit)-.18 E F0 1.202(shell option is enabled, a f)3.702 F 1.202
 (ailed history substitution will be reloaded into the)-.1 F F3 -.18(re)
-3.702 G(adline).18 E F0(editing)3.702 E(GNU Bash 5.2)72 768 Q
-(2023 May 14)148.175 E(58)197.335 E 0 Cg EP
+3.702 G(adline).18 E F0(editing)3.702 E -.2(bu)108 729.6 S -.25(ff).2 G
+1.161(er for correction.).25 F(The)6.161 E F3<ad70>3.661 E F0 1.161
+(option to the)3.661 F F3(history)3.661 E F0 -.2(bu)3.661 G 1.16
+(iltin command may be used to see what a history).2 F(GNU Bash 5.2)72
+768 Q(2023 May 23)148.175 E(58)197.335 E 0 Cg EP
 %%Page: 59 59
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.2(bu)108 84 S
--.25(ff).2 G .304(er for correction.).25 F(The)5.304 E/F1 10
-/Times-Bold@0 SF<ad70>2.804 E F0 .304(option to the)2.804 F F1(history)
-2.804 E F0 -.2(bu)2.804 G .303
-(iltin command may be used to see what a history e).2 F(x-)-.15 E .52
-(pansion will do before using it.)108 96 R(The)5.52 E F1<ad73>3.02 E F0
-.52(option to the)3.02 F F1(history)3.02 E F0 -.2(bu)3.02 G .52
-(iltin may be used to add commands to the).2 F
-(end of the history list without actually e)108 108 Q -.15(xe)-.15 G
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.15(ex)108 84 S
+.055(pansion will do before using it.).15 F(The)5.055 E/F1 10
+/Times-Bold@0 SF<ad73>2.555 E F0 .055(option to the)2.555 F F1(history)
+2.556 E F0 -.2(bu)2.556 G .056(iltin may be used to add commands to the)
+.2 F(end of the history list without actually e)108 96 Q -.15(xe)-.15 G
 (cuting them, so that the).15 E 2.5(ya)-.15 G(re a)-2.5 E -.25(va)-.2 G
-(ilable for subsequent recall.).25 E 1.109(The shell allo)108 124.8 R
+(ilable for subsequent recall.).25 E 1.109(The shell allo)108 112.8 R
 1.108(ws control of the v)-.25 F 1.108
 (arious characters used by the history e)-.25 F 1.108
-(xpansion mechanism \(see the de-)-.15 F .162(scription of)108 136.8 R
+(xpansion mechanism \(see the de-)-.15 F .162(scription of)108 124.8 R
 F1(histchars)2.662 E F0(abo)2.662 E .462 -.15(ve u)-.15 H(nder).15 E F1
 .163(Shell V)2.662 F(ariables)-.92 E F0 2.663(\). The)B .163
 (shell uses the history comment character to mark)2.663 F
-(history timestamps when writing the history \214le.)108 148.8 Q F1(Ev)
-87 165.6 Q(ent Designators)-.1 E F0 .205(An e)108 177.6 R -.15(ve)-.25 G
+(history timestamps when writing the history \214le.)108 136.8 Q F1(Ev)
+87 153.6 Q(ent Designators)-.1 E F0 .205(An e)108 165.6 R -.15(ve)-.25 G
 .204(nt designator is a reference to a command line entry in the histor\
 y list.).15 F .204(Unless the reference is abso-)5.204 F(lute, e)108
-189.6 Q -.15(ve)-.25 G(nts are relati).15 E .3 -.15(ve t)-.25 H 2.5(ot)
-.15 G(he current position in the history list.)-2.5 E F1(!)108 206.4 Q
-F0 1.607(Start a history substitution, e)144 206.4 R 1.607
+177.6 Q -.15(ve)-.25 G(nts are relati).15 E .3 -.15(ve t)-.25 H 2.5(ot)
+.15 G(he current position in the history list.)-2.5 E F1(!)108 194.4 Q
+F0 1.607(Start a history substitution, e)144 194.4 R 1.607
 (xcept when follo)-.15 F 1.607(wed by a)-.25 F F1(blank)4.107 E F0 4.107
 (,n)C -.25(ew)-4.107 G 1.608(line, carriage return, = or \().25 F
-(\(when the)144 218.4 Q F1(extglob)2.5 E F0
+(\(when the)144 206.4 Q F1(extglob)2.5 E F0
 (shell option is enabled using the)2.5 E F1(shopt)2.5 E F0 -.2(bu)2.5 G
-(iltin\).).2 E F1(!)108 230.4 Q/F2 10/Times-Italic@0 SF(n)A F0
-(Refer to command line)144 230.4 Q F2(n)2.86 E F0(.).24 E F1<21ad>108
-242.4 Q F2(n)A F0(Refer to the current command minus)144 242.4 Q F2(n)
-2.86 E F0(.).24 E F1(!!)108 254.4 Q F0(Refer to the pre)144 254.4 Q
+(iltin\).).2 E F1(!)108 218.4 Q/F2 10/Times-Italic@0 SF(n)A F0
+(Refer to command line)144 218.4 Q F2(n)2.86 E F0(.).24 E F1<21ad>108
+230.4 Q F2(n)A F0(Refer to the current command minus)144 230.4 Q F2(n)
+2.86 E F0(.).24 E F1(!!)108 242.4 Q F0(Refer to the pre)144 242.4 Q
 (vious command.)-.25 E(This is a synon)5 E(ym for `!\2551'.)-.15 E F1(!)
-108 266.4 Q F2(string)A F0 .865(Refer to the most recent command preced\
-ing the current position in the history list starting with)144 266.4 R
-F2(string)144.34 278.4 Q F0(.).22 E F1(!?)108 290.4 Q F2(string)A F1
+108 254.4 Q F2(string)A F0 .865(Refer to the most recent command preced\
+ing the current position in the history list starting with)144 254.4 R
+F2(string)144.34 266.4 Q F0(.).22 E F1(!?)108 278.4 Q F2(string)A F1
 ([?])A F0 1.503(Refer to the most recent command preceding the current \
-position in the history list containing)144 302.4 R F2(string)144.34
-314.4 Q F0 5.497(.T).22 G .497(he trailing)-5.497 F F1(?)2.997 E F0 .497
+position in the history list containing)144 290.4 R F2(string)144.34
+302.4 Q F0 5.497(.T).22 G .497(he trailing)-5.497 F F1(?)2.997 E F0 .497
 (may be omitted if)2.997 F F2(string)3.337 E F0 .496(is follo)3.216 F
 .496(wed immediately by a ne)-.25 F 2.996(wline. If)-.25 F F2(string)
 2.996 E F0(is)2.996 E .39(missing, the string from the most recent sear\
-ch is used; it is an error if there is no pre)144 326.4 R .391
-(vious search)-.25 F(string.)144 338.4 Q/F3 12/Times-Bold@0 SF(^)108
-355.4 Q F2(string1)-5 I F3(^)5 I F2(string2)-5 I F3(^)5 I F0 .753
-(Quick substitution.)144 362.4 R .753(Repeat the pre)5.753 F .753
+ch is used; it is an error if there is no pre)144 314.4 R .391
+(vious search)-.25 F(string.)144 326.4 Q/F3 12/Times-Bold@0 SF(^)108
+343.4 Q F2(string1)-5 I F3(^)5 I F2(string2)-5 I F3(^)5 I F0 .753
+(Quick substitution.)144 350.4 R .753(Repeat the pre)5.753 F .753
 (vious command, replacing)-.25 F F2(string1)3.593 E F0(with)3.253 E F2
 (string2)3.592 E F0 5.752(.E).02 G(qui)-5.752 E -.25(va)-.25 G .752
-(lent to).25 F -.74(``)144 374.4 S(!!:s).74 E/F4 12/Times-Roman@0 SF(^)5
+(lent to).25 F -.74(``)144 362.4 S(!!:s).74 E/F4 12/Times-Roman@0 SF(^)5
 I F2(string1)-5 I F4(^)5 I F2(string2)-5 I F4(^)5 I F0 1.48 -.74('' \()
 -5 L(see).74 E F1(Modi\214ers)2.5 E F0(belo)2.5 E(w\).)-.25 E F1(!#)108
-386.4 Q F0(The entire command line typed so f)144 386.4 Q(ar)-.1 E(.)
--.55 E F1 -.75(Wo)87 403.2 S(rd Designators).75 E F0 -.8(Wo)108 415.2 S
+374.4 Q F0(The entire command line typed so f)144 374.4 Q(ar)-.1 E(.)
+-.55 E F1 -.75(Wo)87 391.2 S(rd Designators).75 E F0 -.8(Wo)108 403.2 S
 1.313(rd designators are used to select desired w).8 F 1.314
 (ords from the e)-.1 F -.15(ve)-.25 G 3.814(nt. A).15 F F1(:)3.814 E F0
 1.314(separates the e)3.814 F -.15(ve)-.25 G 1.314(nt speci\214cation)
-.15 F .53(from the w)108 427.2 R .529(ord designator)-.1 F 5.529(.I)-.55
+.15 F .53(from the w)108 415.2 R .529(ord designator)-.1 F 5.529(.I)-.55
 G 3.029(tm)-5.529 G .529(ay be omitted if the w)-3.029 F .529
 (ord designator be)-.1 F .529(gins with a)-.15 F F1(^)3.029 E F0(,)A F1
 ($)3.029 E F0(,)A F1(*)3.029 E F0(,)A F1<ad>3.029 E F0 3.029(,o)C(r)
 -3.029 E F1(%)3.029 E F0 5.529(.W)C(ords)-6.329 E .515
-(are numbered from the be)108 439.2 R .516
+(are numbered from the be)108 427.2 R .516
 (ginning of the line, with the \214rst w)-.15 F .516
 (ord being denoted by 0 \(zero\).)-.1 F -.8(Wo)5.516 G .516(rds are in-)
-.8 F(serted into the current line separated by single spaces.)108 451.2
-Q F1 2.5(0\()108 468 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 480 Q
+.8 F(serted into the current line separated by single spaces.)108 439.2
+Q F1 2.5(0\()108 456 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 468 Q
 2.5(ord. F)-.1 F(or the shell, this is the command w)-.15 E(ord.)-.1 E
-F2(n)108.36 492 Q F0(The)144 492 Q F2(n)2.5 E F0(th w)A(ord.)-.1 E F1(^)
-108 504 Q F0(The \214rst ar)144 504 Q 2.5(gument. That)-.18 F(is, w)2.5
-E(ord 1.)-.1 E F1($)108 516 Q F0 .064(The last w)144 516 R 2.564
+F2(n)108.36 480 Q F0(The)144 480 Q F2(n)2.5 E F0(th w)A(ord.)-.1 E F1(^)
+108 492 Q F0(The \214rst ar)144 492 Q 2.5(gument. That)-.18 F(is, w)2.5
+E(ord 1.)-.1 E F1($)108 504 Q F0 .064(The last w)144 504 R 2.564
 (ord. This)-.1 F .064(is usually the last ar)2.564 F .064(gument, b)-.18
 F .064(ut will e)-.2 F .064(xpand to the zeroth w)-.15 F .063
-(ord if there is only)-.1 F(one w)144 528 Q(ord in the line.)-.1 E F1(%)
-108 540 Q F0 1.419(The \214rst w)144 540 R 1.419
+(ord if there is only)-.1 F(one w)144 516 Q(ord in the line.)-.1 E F1(%)
+108 528 Q F0 1.419(The \214rst w)144 528 R 1.419
 (ord matched by the most recent `?)-.1 F F2(string)A F0 1.42
 (?' search, if the search string be)B 1.42(gins with a)-.15 F
-(character that is part of a w)144 552 Q(ord.)-.1 E F2(x)108.77 564 Q F1
-<ad>A F2(y)A F0 2.5(Ar)144 564 S(ange of w)-2.5 E(ords; `\255)-.1 E F2
+(character that is part of a w)144 540 Q(ord.)-.1 E F2(x)108.77 552 Q F1
+<ad>A F2(y)A F0 2.5(Ar)144 552 S(ange of w)-2.5 E(ords; `\255)-.1 E F2
 (y)A F0 2.5('a)C(bbre)-2.5 E(viates `0\255)-.25 E F2(y)A F0('.)A F1(*)
-108 576 Q F0 .316(All of the w)144 576 R .316(ords b)-.1 F .316
+108 564 Q F0 .316(All of the w)144 564 R .316(ords b)-.1 F .316
 (ut the zeroth.)-.2 F .315(This is a synon)5.315 F .315(ym for `)-.15 F
 F2(1\255$)A F0 2.815('. It)B .315(is not an error to use)2.815 F F1(*)
-2.815 E F0 .315(if there is)2.815 F(just one w)144 588 Q(ord in the e)
+2.815 E F0 .315(if there is)2.815 F(just one w)144 576 Q(ord in the e)
 -.1 E -.15(ve)-.25 G(nt; the empty string is returned in that case.).15
-E F1(x*)108 600 Q F0(Abbre)144 600 Q(viates)-.25 E F2(x\255$)2.5 E F0(.)
-A F1<78ad>108 612 Q F0(Abbre)144 612 Q(viates)-.25 E F2(x\255$)2.5 E F0
+E F1(x*)108 588 Q F0(Abbre)144 588 Q(viates)-.25 E F2(x\255$)2.5 E F0(.)
+A F1<78ad>108 600 Q F0(Abbre)144 600 Q(viates)-.25 E F2(x\255$)2.5 E F0
 (lik)2.5 E(e)-.1 E F1(x*)2.5 E F0 2.5(,b)C(ut omits the last w)-2.7 E
 2.5(ord. If)-.1 F F1(x)2.5 E F0(is missing, it def)2.5 E(aults to 0.)-.1
-E(If a w)108 628.8 Q(ord designator is supplied without an e)-.1 E -.15
+E(If a w)108 616.8 Q(ord designator is supplied without an e)-.1 E -.15
 (ve)-.25 G(nt speci\214cation, the pre).15 E
 (vious command is used as the e)-.25 E -.15(ve)-.25 G(nt.).15 E F1
-(Modi\214ers)87 645.6 Q F0 .183(After the optional w)108 657.6 R .183
+(Modi\214ers)87 633.6 Q F0 .183(After the optional w)108 645.6 R .183
 (ord designator)-.1 F 2.683(,t)-.4 G .184
 (here may appear a sequence of one or more of the follo)-2.683 F .184
-(wing modi\214ers,)-.25 F(each preceded by a `:'.)108 669.6 Q
+(wing modi\214ers,)-.25 F(each preceded by a `:'.)108 657.6 Q
 (These modify)5 E 2.5(,o)-.65 G 2.5(re)-2.5 G(dit, the w)-2.5 E
 (ord or w)-.1 E(ords selected from the history e)-.1 E -.15(ve)-.25 G
-(nt.).15 E F1(h)108 686.4 Q F0(Remo)144 686.4 Q .3 -.15(ve a t)-.15 H
+(nt.).15 E F1(h)108 674.4 Q F0(Remo)144 674.4 Q .3 -.15(ve a t)-.15 H
 (railing \214lename component, lea).15 E(ving only the head.)-.2 E F1(t)
-108 698.4 Q F0(Remo)144 698.4 Q .3 -.15(ve a)-.15 H
+108 686.4 Q F0(Remo)144 686.4 Q .3 -.15(ve a)-.15 H
 (ll leading \214lename components, lea).15 E(ving the tail.)-.2 E F1(r)
-108 710.4 Q F0(Remo)144 710.4 Q .3 -.15(ve a t)-.15 H(railing suf).15 E
+108 698.4 Q F0(Remo)144 698.4 Q .3 -.15(ve a t)-.15 H(railing suf).15 E
 (\214x of the form)-.25 E F2(.xxx)2.5 E F0 2.5(,l)C(ea)-2.5 E
-(ving the basename.)-.2 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E
-(59)197.335 E 0 Cg EP
+(ving the basename.)-.2 E F1(e)108 710.4 Q F0(Remo)144 710.4 Q .3 -.15
+(ve a)-.15 H(ll b).15 E(ut the trailing suf)-.2 E(\214x.)-.25 E
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(59)197.335 E 0 Cg EP
 %%Page: 60 60
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
 (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
-SF(e)108 84 Q F0(Remo)144 84 Q .3 -.15(ve a)-.15 H(ll b).15 E
-(ut the trailing suf)-.2 E(\214x.)-.25 E F1(p)108 96 Q F0(Print the ne)
-144 96 Q 2.5(wc)-.25 G(ommand b)-2.5 E(ut do not e)-.2 E -.15(xe)-.15 G
-(cute it.).15 E F1(q)108 108 Q F0(Quote the substituted w)144 108 Q
-(ords, escaping further substitutions.)-.1 E F1(x)108 120 Q F0 .386
-(Quote the substituted w)144 120 R .386(ords as with)-.1 F F1(q)2.886 E
-F0 2.886(,b)C .386(ut break into w)-3.086 F .385(ords at)-.1 F F1
-(blanks)2.885 E F0 .385(and ne)2.885 F 2.885(wlines. The)-.25 F F1(q)
-2.885 E F0(and)2.885 E F1(x)2.885 E F0(modi\214ers are mutually e)144
-132 Q(xclusi)-.15 E -.15(ve)-.25 G 2.5(;t).15 G
-(he last one supplied is used.)-2.5 E F1(s/)108 144 Q/F2 10
+SF(p)108 84 Q F0(Print the ne)144 84 Q 2.5(wc)-.25 G(ommand b)-2.5 E
+(ut do not e)-.2 E -.15(xe)-.15 G(cute it.).15 E F1(q)108 96 Q F0
+(Quote the substituted w)144 96 Q(ords, escaping further substitutions.)
+-.1 E F1(x)108 108 Q F0 .386(Quote the substituted w)144 108 R .386
+(ords as with)-.1 F F1(q)2.886 E F0 2.886(,b)C .386(ut break into w)
+-3.086 F .385(ords at)-.1 F F1(blanks)2.885 E F0 .385(and ne)2.885 F
+2.885(wlines. The)-.25 F F1(q)2.885 E F0(and)2.885 E F1(x)2.885 E F0
+(modi\214ers are mutually e)144 120 Q(xclusi)-.15 E -.15(ve)-.25 G 2.5
+(;t).15 G(he last one supplied is used.)-2.5 E F1(s/)108 132 Q/F2 10
 /Times-Italic@0 SF(old)A F1(/)A F2(ne)A(w)-.15 E F1(/)A F0(Substitute)
-144 156 Q F2(ne)3.328 E(w)-.15 E F0 .469(for the \214rst occurrence of)
+144 144 Q F2(ne)3.328 E(w)-.15 E F0 .469(for the \214rst occurrence of)
 3.278 F F2(old)3.199 E F0 .469(in the e)3.739 F -.15(ve)-.25 G .469
 (nt line.).15 F(An)5.469 E 2.969(yc)-.15 G .469
 (haracter may be used as the)-2.969 F .954(delimiter in place of /.)144
-168 R .953
+156 R .953
 (The \214nal delimiter is optional if it is the last character of the e)
 5.953 F -.15(ve)-.25 G .953(nt line.).15 F .131
-(The delimiter may be quoted in)144 180 R F2(old)2.861 E F0(and)3.401 E
+(The delimiter may be quoted in)144 168 R F2(old)2.861 E F0(and)3.401 E
 F2(ne)2.991 E(w)-.15 E F0 .131(with a single backslash.)2.941 F .131
 (If & appears in)5.131 F F2(ne)2.991 E(w)-.15 E F0 2.631(,i).31 G 2.631
-(ti)-2.631 G 2.631(sr)-2.631 G(e-)-2.631 E .62(placed by)144 192 R F2
+(ti)-2.631 G 2.631(sr)-2.631 G(e-)-2.631 E .62(placed by)144 180 R F2
 (old)3.349 E F0 5.619(.A).77 G .619(single backslash will quote the &.)
 -2.5 F(If)5.619 E F2(old)3.349 E F0 .619(is null, it is set to the last)
-3.889 F F2(old)3.349 E F0(substi-)3.889 E .486(tuted, or)144 204 R 2.986
+3.889 F F2(old)3.349 E F0(substi-)3.889 E .486(tuted, or)144 192 R 2.986
 (,i)-.4 G 2.986(fn)-2.986 G 2.986(op)-2.986 G(re)-2.986 E .486
 (vious history substitutions took place, the last)-.25 F F2(string)3.326
 E F0 .487(in a)3.206 F F1(!?)2.987 E F2(string)A F1([?])A F0 2.987
-(search. If)5.487 F F2(ne)144.36 216 Q(w)-.15 E F0
+(search. If)5.487 F F2(ne)144.36 204 Q(w)-.15 E F0
 (is null, each matching)2.81 E F2(old)2.73 E F0(is deleted.)3.27 E F1(&)
-108 228 Q F0(Repeat the pre)144 228 Q(vious substitution.)-.25 E F1(g)
-108 240 Q F0 .398(Cause changes to be applied o)144 240 R -.15(ve)-.15 G
+108 216 Q F0(Repeat the pre)144 216 Q(vious substitution.)-.25 E F1(g)
+108 228 Q F0 .398(Cause changes to be applied o)144 228 R -.15(ve)-.15 G
 2.898(rt).15 G .398(he entire e)-2.898 F -.15(ve)-.25 G .398(nt line.)
 .15 F .397(This is used in conjunction with `)5.398 F F1(:s)A F0 2.897
-('\()C(e.g.,)-2.897 E(`)144 252 Q F1(:gs/)A F2(old)A F1(/)A F2(ne)A(w)
+('\()C(e.g.,)-2.897 E(`)144 240 Q F1(:gs/)A F2(old)A F1(/)A F2(ne)A(w)
 -.15 E F1(/)A F0 .35('\) or `)B F1(:&)A F0 2.85('. If)B .35(used with `)
 2.85 F F1(:s)A F0 .35(', an)B 2.85(yd)-.15 G .351
 (elimiter can be used in place of /, and the \214nal de-)-2.85 F
-(limiter is optional if it is the last character of the e)144 264 Q -.15
+(limiter is optional if it is the last character of the e)144 252 Q -.15
 (ve)-.25 G(nt line.).15 E(An)5 E F1(a)2.5 E F0(may be used as a synon)
-2.5 E(ym for)-.15 E F1(g)2.5 E F0(.)A F1(G)108 276 Q F0(Apply the follo)
-144 276 Q(wing `)-.25 E F1(s)A F0 2.5('o)C 2.5(r`)-2.5 G F1(&)-2.5 E F0
+2.5 E(ym for)-.15 E F1(g)2.5 E F0(.)A F1(G)108 264 Q F0(Apply the follo)
+144 264 Q(wing `)-.25 E F1(s)A F0 2.5('o)C 2.5(r`)-2.5 G F1(&)-2.5 E F0
 2.5('m)C(odi\214er once to each w)-2.5 E(ord in the e)-.1 E -.15(ve)-.25
-G(nt line.).15 E/F3 10.95/Times-Bold@0 SF(SHELL B)72 292.8 Q(UIL)-.11 E
-(TIN COMMANDS)-1.007 E F0 .063(Unless otherwise noted, each b)108 304.8
+G(nt line.).15 E/F3 10.95/Times-Bold@0 SF(SHELL B)72 280.8 Q(UIL)-.11 E
+(TIN COMMANDS)-1.007 E F0 .063(Unless otherwise noted, each b)108 292.8
 R .062(uiltin command documented in this section as accepting options p\
-receded by)-.2 F F1<ad>108 316.8 Q F0(accepts)3.077 E F1<adad>3.077 E F0
+receded by)-.2 F F1<ad>108 304.8 Q F0(accepts)3.077 E F1<adad>3.077 E F0
 .577(to signify the end of the options.)3.077 F(The)5.577 E F1(:)3.077 E
 F0(,)A F1(true)3.077 E F0(,)A F1(false)3.077 E F0 3.077(,a)C(nd)-3.077 E
 F1(test)3.077 E F0(/)A F1([)A F0 -.2(bu)3.077 G .577
-(iltins do not accept options).2 F .462(and do not treat)108 328.8 R F1
+(iltins do not accept options).2 F .462(and do not treat)108 316.8 R F1
 <adad>2.961 E F0(specially)2.961 E 5.461(.T)-.65 G(he)-5.461 E F1(exit)
 2.961 E F0(,)A F1(logout)2.961 E F0(,)A F1 -.18(re)2.961 G(tur).18 E(n)
 -.15 E F0(,)A F1(br)2.961 E(eak)-.18 E F0(,)A F1(continue)2.961 E F0(,)A
 F1(let)2.961 E F0 2.961(,a)C(nd)-2.961 E F1(shift)2.961 E F0 -.2(bu)
-2.961 G .461(iltins accept and).2 F .26(process ar)108 340.8 R .26
+2.961 G .461(iltins accept and).2 F .26(process ar)108 328.8 R .26
 (guments be)-.18 F .26(ginning with)-.15 F F1<ad>2.76 E F0 .261
 (without requiring)2.76 F F1<adad>2.761 E F0 5.261(.O)C .261(ther b)
 -5.261 F .261(uiltins that accept ar)-.2 F .261(guments b)-.18 F .261
 (ut are not)-.2 F 1.154(speci\214ed as accepting options interpret ar)
-108 352.8 R 1.154(guments be)-.18 F 1.154(ginning with)-.15 F F1<ad>
+108 340.8 R 1.154(guments be)-.18 F 1.154(ginning with)-.15 F F1<ad>
 3.654 E F0 1.154(as in)3.654 F -.25(va)-.4 G 1.154
 (lid options and require).25 F F1<adad>3.654 E F0(to)3.654 E(pre)108
-364.8 Q -.15(ve)-.25 G(nt this interpretation.).15 E F1(:)108 382.8 Q F0
-([)2.5 E F2(ar)A(guments)-.37 E F0(])A .451(No ef)144 394.8 R .451
+352.8 Q -.15(ve)-.25 G(nt this interpretation.).15 E F1(:)108 370.8 Q F0
+([)2.5 E F2(ar)A(guments)-.37 E F0(])A .451(No ef)144 382.8 R .451
 (fect; the command does nothing be)-.25 F .452(yond e)-.15 F(xpanding)
 -.15 E F2(ar)3.282 E(guments)-.37 E F0 .452(and performing an)3.222 F
-2.952(ys)-.15 G(peci\214ed)-2.952 E 2.5(redirections. The)144 406.8 R
-(return status is zero.)2.5 E F1(.)110.5 423.6 Q F2(\214lename)6.666 E
-F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A F1(sour)108 435.6 Q(ce)-.18 E
+2.952(ys)-.15 G(peci\214ed)-2.952 E 2.5(redirections. The)144 394.8 R
+(return status is zero.)2.5 E F1(.)110.5 411.6 Q F2(\214lename)6.666 E
+F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A F1(sour)108 423.6 Q(ce)-.18 E
 F2(\214lename)2.5 E F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A 1.02
-(Read and e)144 447.6 R -.15(xe)-.15 G 1.02(cute commands from).15 F F2
+(Read and e)144 435.6 R -.15(xe)-.15 G 1.02(cute commands from).15 F F2
 (\214lename)5.43 E F0 1.02(in the current shell en)3.7 F 1.02
 (vironment and return the e)-.4 F(xit)-.15 E 1.33
-(status of the last command e)144 459.6 R -.15(xe)-.15 G 1.331
+(status of the last command e)144 447.6 R -.15(xe)-.15 G 1.331
 (cuted from).15 F F2(\214lename)5.741 E F0 6.331(.I).18 G(f)-6.331 E F2
 (\214lename)5.741 E F0 1.331(does not contain a slash, \214le-)4.011 F
-.023(names in)144 471.6 R/F4 9/Times-Bold@0 SF -.666(PA)2.523 G(TH)-.189
+.023(names in)144 459.6 R/F4 9/Times-Bold@0 SF -.666(PA)2.523 G(TH)-.189
 E F0 .022(are used to \214nd the directory containing)2.273 F F2
 (\214lename)4.432 E F0 2.522(,b).18 G(ut)-2.722 E F2(\214lename)2.522 E
-F0 .022(does not need to be)2.522 F -.15(exe)144 483.6 S 3.86
+F0 .022(does not need to be)2.522 F -.15(exe)144 471.6 S 3.86
 (cutable. The).15 F 1.36(\214le searched for in)3.86 F F4 -.666(PA)3.86
 G(TH)-.189 E F0 1.361(need not be e)3.61 F -.15(xe)-.15 G 3.861
 (cutable. When).15 F F1(bash)3.861 E F0 1.361(is not in)3.861 F F2
-(posix)3.861 E(mode)144 495.6 Q F0 2.772(,i)C 2.772(ts)-2.772 G .272
+(posix)3.861 E(mode)144 483.6 Q F0 2.772(,i)C 2.772(ts)-2.772 G .272
 (earches the current directory if no \214le is found in)-2.772 F F4
 -.666(PA)2.771 G(TH)-.189 E/F5 9/Times-Roman@0 SF(.)A F0 .271(If the)
 4.771 F F1(sour)2.771 E(cepath)-.18 E F0 .271(option to the)2.771 F F1
-(shopt)144 507.6 Q F0 -.2(bu)3.659 G 1.159(iltin command is turned of).2
+(shopt)144 495.6 Q F0 -.2(bu)3.659 G 1.159(iltin command is turned of).2
 F 1.159(f, the)-.25 F F4 -.666(PA)3.659 G(TH)-.189 E F0 1.159
 (is not searched.)3.409 F 1.16(If an)6.159 F(y)-.15 E F2(ar)3.66 E
-(guments)-.37 E F0 1.16(are supplied,)3.66 F(the)144 519.6 Q 3.692(yb)
+(guments)-.37 E F0 1.16(are supplied,)3.66 F(the)144 507.6 Q 3.692(yb)
 -.15 G 1.192(ecome the positional parameters when)-3.692 F F2
 (\214lename)3.692 E F0 1.192(is e)3.692 F -.15(xe)-.15 G 3.691
 (cuted. Otherwise).15 F 1.191(the positional pa-)3.691 F .82
-(rameters are unchanged.)144 531.6 R .82(If the)5.82 F F1<ad54>3.32 E F0
+(rameters are unchanged.)144 519.6 R .82(If the)5.82 F F1<ad54>3.32 E F0
 .82(option is enabled,)3.32 F F1(.)3.32 E F0 .82(inherits an)3.32 F 3.32
 (yt)-.15 G .82(rap on)-3.32 F F1(DEB)3.32 E(UG)-.1 E F0 3.32(;i)C 3.32
-(fi)-3.32 G 3.32(ti)-3.32 G 3.32(sn)-3.32 G(ot,)-3.32 E(an)144 543.6 Q
+(fi)-3.32 G 3.32(ti)-3.32 G 3.32(sn)-3.32 G(ot,)-3.32 E(an)144 531.6 Q
 (y)-.15 E F1(DEB)3.323 E(UG)-.1 E F0 .823(trap string is sa)3.323 F -.15
 (ve)-.2 G 3.322(da).15 G .822(nd restored around the call to)-3.322 F F1
 (.)3.322 E F0 3.322(,a)C(nd)-3.322 E F1(.)3.322 E F0 .822(unsets the)
 3.322 F F1(DEB)3.322 E(UG)-.1 E F0(trap)3.322 E .226(while it e)144
-555.6 R -.15(xe)-.15 G 2.726(cutes. If).15 F F1<ad54>2.727 E F0 .227
+543.6 R -.15(xe)-.15 G 2.726(cutes. If).15 F F1<ad54>2.727 E F0 .227
 (is not set, and the sourced \214le changes the)2.727 F F1(DEB)2.727 E
 (UG)-.1 E F0 .227(trap, the ne)2.727 F 2.727(wv)-.25 G .227(alue is)
--2.977 F .891(retained when)144 567.6 R F1(.)3.391 E F0 3.391
+-2.977 F .891(retained when)144 555.6 R F1(.)3.391 E F0 3.391
 (completes. The)3.391 F .891
 (return status is the status of the last command e)3.391 F .89
-(xited within the)-.15 F(script \(0 if no commands are e)144 579.6 Q
+(xited within the)-.15 F(script \(0 if no commands are e)144 567.6 Q
 -.15(xe)-.15 G(cuted\), and f).15 E(alse if)-.1 E F2(\214lename)4.41 E
-F0(is not found or cannot be read.)2.68 E F1(alias)108 596.4 Q F0([)2.5
+F0(is not found or cannot be read.)2.68 E F1(alias)108 584.4 Q F0([)2.5
 E F1<ad70>A F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C
-(..])-2.5 E F1(Alias)144 608.4 Q F0 2.724(with no ar)5.224 F 2.724
+(..])-2.5 E F1(Alias)144 596.4 Q F0 2.724(with no ar)5.224 F 2.724
 (guments or with the)-.18 F F1<ad70>5.224 E F0 2.724
 (option prints the list of aliases in the form)5.224 F F1(alias)5.225 E
-F2(name)144 620.4 Q F0(=)A F2(value)A F0 .58(on standard output.)3.08 F
+F2(name)144 608.4 Q F0(=)A F2(value)A F0 .58(on standard output.)3.08 F
 .58(When ar)5.58 F .58
 (guments are supplied, an alias is de\214ned for each)-.18 F F2(name)
-3.08 E F0(whose)144 632.4 Q F2(value)2.508 E F0 .009(is gi)2.508 F -.15
+3.08 E F0(whose)144 620.4 Q F2(value)2.508 E F0 .009(is gi)2.508 F -.15
 (ve)-.25 G 2.509(n. A).15 F .009(trailing space in)2.509 F F2(value)
 2.509 E F0 .009(causes the ne)2.509 F .009(xt w)-.15 F .009
 (ord to be check)-.1 F .009(ed for alias substi-)-.1 F .579
-(tution when the alias is e)144 644.4 R 3.079(xpanded. F)-.15 F .579
+(tution when the alias is e)144 632.4 R 3.079(xpanded. F)-.15 F .579
 (or each)-.15 F F2(name)3.079 E F0 .579(in the ar)3.079 F .579
 (gument list for which no)-.18 F F2(value)3.079 E F0 .578(is sup-)3.078
-F 1.313(plied, the name and v)144 656.4 R 1.314
+F 1.313(plied, the name and v)144 644.4 R 1.314
 (alue of the alias is printed.)-.25 F F1(Alias)6.314 E F0 1.314
 (returns true unless a)3.814 F F2(name)3.814 E F0 1.314(is gi)3.814 F
 -.15(ve)-.25 G 3.814(nf).15 G(or)-3.814 E
-(which no alias has been de\214ned.)144 668.4 Q F1(bg)108 685.2 Q F0([)
+(which no alias has been de\214ned.)144 656.4 Q F1(bg)108 673.2 Q F0([)
 2.5 E F2(jobspec)A F0(...])2.5 E .745(Resume each suspended job)144
-697.2 R F2(jobspec)3.245 E F0 .745
+685.2 R F2(jobspec)3.245 E F0 .745
 (in the background, as if it had been started with)3.245 F F1(&)3.244 E
-F0 5.744(.I)C(f)-5.744 E F2(job-)4.984 E(spec)144 709.2 Q F0 .671
+F0 5.744(.I)C(f)-5.744 E F2(job-)4.984 E(spec)144 697.2 Q F0 .671
 (is not present, the shell')3.481 F 3.171(sn)-.55 G .672(otion of the)
 -3.171 F F2(curr)3.172 E .672(ent job)-.37 F F0 .672(is used.)3.172 F F1
 (bg)5.672 E F2(jobspec)4.912 E F0 .672(returns 0 unless run)3.482 F .419
-(when job control is disabled or)144 721.2 R 2.919(,w)-.4 G .419
+(when job control is disabled or)144 709.2 R 2.919(,w)-.4 G .419
 (hen run with job control enabled, an)-2.919 F 2.918(ys)-.15 G
 (peci\214ed)-2.918 E F2(jobspec)2.918 E F0 -.1(wa)2.918 G 2.918(sn).1 G
-(ot)-2.918 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(60)197.335 E 0
-Cg EP
+(ot)-2.918 E(found or w)144 721.2 Q(as started without job control.)-.1
+E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(60)197.335 E 0 Cg EP
 %%Page: 61 61
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(found or w)144 84
-Q(as started without job control.)-.1 E/F1 10/Times-Bold@0 SF(bind)108
-100.8 Q F0([)2.5 E F1<ad6d>A/F2 10/Times-Italic@0 SF -.1(ke)2.5 G(ymap)
--.2 E F0 2.5(][)C F1(\255lpsvPSVX)-2.5 E F0(])A F1(bind)108 112.8 Q F0
-([)2.5 E F1<ad6d>A F2 -.1(ke)2.5 G(ymap)-.2 E F0 2.5(][)C F1<ad71>-2.5 E
-F2(function)2.5 E F0 2.5(][)C F1<ad75>-2.5 E F2(function)2.5 E F0 2.5
-(][)C F1<ad72>-2.5 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(])A F1(bind)108 124.8
-Q F0([)2.5 E F1<ad6d>A F2 -.1(ke)2.5 G(ymap)-.2 E F0(])A F1<ad66>2.5 E
-F2(\214lename)2.5 E F1(bind)108 136.8 Q F0([)2.5 E F1<ad6d>A F2 -.1(ke)
-2.5 G(ymap)-.2 E F0(])A F1<ad78>2.5 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A
-F2(shell\255command)A F1(bind)108 148.8 Q F0([)2.5 E F1<ad6d>A F2 -.1
-(ke)2.5 G(ymap)-.2 E F0(])A F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F2
-(function\255name)A F1(bind)108 160.8 Q F0([)2.5 E F1<ad6d>A F2 -.1(ke)
-2.5 G(ymap)-.2 E F0(])A F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F2 -.37(re)C
-(adline\255command).37 E F1(bind)108 172.8 Q F2 -.37(re)2.5 G
-(adline-command-line).37 E F0 .238(Display current)144 184.8 R F1 -.18
-(re)2.738 G(adline).18 E F0 -.1(ke)2.738 G 2.738(ya)-.05 G .239
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
+SF(bind)108 84 Q F0([)2.5 E F1<ad6d>A/F2 10/Times-Italic@0 SF -.1(ke)2.5
+G(ymap)-.2 E F0 2.5(][)C F1(\255lpsvPSVX)-2.5 E F0(])A F1(bind)108 96 Q
+F0([)2.5 E F1<ad6d>A F2 -.1(ke)2.5 G(ymap)-.2 E F0 2.5(][)C F1<ad71>-2.5
+E F2(function)2.5 E F0 2.5(][)C F1<ad75>-2.5 E F2(function)2.5 E F0 2.5
+(][)C F1<ad72>-2.5 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(])A F1(bind)108 108 Q
+F0([)2.5 E F1<ad6d>A F2 -.1(ke)2.5 G(ymap)-.2 E F0(])A F1<ad66>2.5 E F2
+(\214lename)2.5 E F1(bind)108 120 Q F0([)2.5 E F1<ad6d>A F2 -.1(ke)2.5 G
+(ymap)-.2 E F0(])A F1<ad78>2.5 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F2
+(shell\255command)A F1(bind)108 132 Q F0([)2.5 E F1<ad6d>A F2 -.1(ke)2.5
+G(ymap)-.2 E F0(])A F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F2
+(function\255name)A F1(bind)108 144 Q F0([)2.5 E F1<ad6d>A F2 -.1(ke)2.5
+G(ymap)-.2 E F0(])A F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F2 -.37(re)C
+(adline\255command).37 E F1(bind)108 156 Q F2 -.37(re)2.5 G
+(adline-command-line).37 E F0 .238(Display current)144 168 R F1 -.18(re)
+2.738 G(adline).18 E F0 -.1(ke)2.738 G 2.738(ya)-.05 G .239
 (nd function bindings, bind a k)-2.738 F .539 -.15(ey s)-.1 H .239
 (equence to a).15 F F1 -.18(re)2.739 G(adline).18 E F0 .239(function or)
-2.739 F .04(macro, or set a)144 196.8 R F1 -.18(re)2.54 G(adline).18 E
-F0 -.25(va)2.54 G 2.54(riable. Each).25 F .039(non-option ar)2.54 F .039
+2.739 F .04(macro, or set a)144 180 R F1 -.18(re)2.54 G(adline).18 E F0
+-.25(va)2.54 G 2.54(riable. Each).25 F .039(non-option ar)2.54 F .039
 (gument is a command as it w)-.18 F .039(ould appear in a)-.1 F F1 -.18
-(re)144 208.8 S(adline).18 E F0 .182(initialization \214le such as)2.681
-F F2(.inputr)2.912 E(c)-.37 E F0 2.682(,b).31 G .182
+(re)144 192 S(adline).18 E F0 .182(initialization \214le such as)2.681 F
+F2(.inputr)2.912 E(c)-.37 E F0 2.682(,b).31 G .182
 (ut each binding or command must be passed as a sep-)-2.882 F 1.907
-(arate ar)144 220.8 R 1.907
+(arate ar)144 204 R 1.907
 (gument; e.g., '"\\C\255x\\C\255r": re\255read\255init\255\214le'.)-.18
 F 1.907(Options, if supplied, ha)6.907 F 2.207 -.15(ve t)-.2 H 1.907
-(he follo).15 F(wing)-.25 E(meanings:)144 232.8 Q F1<ad6d>144 244.8 Q F2
--.1(ke)2.5 G(ymap)-.2 E F0(Use)180 256.8 Q F2 -.1(ke)5.158 G(ymap)-.2 E
-F0 2.658(as the k)5.348 F -.15(ey)-.1 G 2.658(map to be af).15 F 2.659
+(he follo).15 F(wing)-.25 E(meanings:)144 216 Q F1<ad6d>144 228 Q F2 -.1
+(ke)2.5 G(ymap)-.2 E F0(Use)180 240 Q F2 -.1(ke)5.158 G(ymap)-.2 E F0
+2.658(as the k)5.348 F -.15(ey)-.1 G 2.658(map to be af).15 F 2.659
 (fected by the subsequent bindings.)-.25 F(Acceptable)7.659 E F2 -.1(ke)
-180 268.8 S(ymap)-.2 E F0 3.193(names are)5.883 F F2 3.193
+180 252 S(ymap)-.2 E F0 3.193(names are)5.883 F F2 3.193
 (emacs, emacs\255standar)5.693 F 3.192
 (d, emacs\255meta, emacs\255ctlx, vi, vi\255mo)-.37 F(ve)-.1 E(,)-.1 E
-(vi\255command)180 280.8 Q F0 4.089(,a)C(nd)-4.089 E F2(vi\255insert)
-4.379 E F0(.).68 E F2(vi)6.589 E F0 1.589(is equi)4.089 F -.25(va)-.25 G
-1.589(lent to).25 F F2(vi\255command)4.089 E F0(\()4.089 E F2(vi\255mo)A
-(ve)-.1 E F0 1.59(is also a syn-)4.089 F(on)180 292.8 Q(ym\);)-.15 E F2
-(emacs)2.5 E F0(is equi)2.5 E -.25(va)-.25 G(lent to).25 E F2
-(emacs\255standar)2.5 E(d)-.37 E F0(.)A F1<ad6c>144 304.8 Q F0
-(List the names of all)180 304.8 Q F1 -.18(re)2.5 G(adline).18 E F0
-(functions.)2.5 E F1<ad70>144 316.8 Q F0(Display)180 316.8 Q F1 -.18(re)
-2.5 G(adline).18 E F0(function names and bindings in such a w)2.5 E
-(ay that the)-.1 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1<ad50>144 328.8
-Q F0(List current)180 328.8 Q F1 -.18(re)2.5 G(adline).18 E F0
-(function names and bindings.)2.5 E F1<ad73>144 340.8 Q F0(Display)180
-340.8 Q F1 -.18(re)3.655 G(adline).18 E F0 -.1(ke)3.655 G 3.655(ys)-.05
-G 1.155(equences bound to macros and the strings the)-3.655 F 3.655(yo)
--.15 G 1.155(utput in such a)-3.655 F -.1(wa)180 352.8 S 2.5(yt).1 G
-(hat the)-2.5 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1<ad53>144 364.8 Q
-F0(Display)180 364.8 Q F1 -.18(re)2.5 G(adline).18 E F0 -.1(ke)2.5 G 2.5
-(ys)-.05 G(equences bound to macros and the strings the)-2.5 E 2.5(yo)
--.15 G(utput.)-2.5 E F1<ad76>144 376.8 Q F0(Display)180 376.8 Q F1 -.18
-(re)2.5 G(adline).18 E F0 -.25(va)2.5 G(riable names and v).25 E
+(vi\255command)180 264 Q F0 4.089(,a)C(nd)-4.089 E F2(vi\255insert)4.379
+E F0(.).68 E F2(vi)6.589 E F0 1.589(is equi)4.089 F -.25(va)-.25 G 1.589
+(lent to).25 F F2(vi\255command)4.089 E F0(\()4.089 E F2(vi\255mo)A(ve)
+-.1 E F0 1.59(is also a syn-)4.089 F(on)180 276 Q(ym\);)-.15 E F2(emacs)
+2.5 E F0(is equi)2.5 E -.25(va)-.25 G(lent to).25 E F2(emacs\255standar)
+2.5 E(d)-.37 E F0(.)A F1<ad6c>144 288 Q F0(List the names of all)180 288
+Q F1 -.18(re)2.5 G(adline).18 E F0(functions.)2.5 E F1<ad70>144 300 Q F0
+(Display)180 300 Q F1 -.18(re)2.5 G(adline).18 E F0
+(function names and bindings in such a w)2.5 E(ay that the)-.1 E 2.5(yc)
+-.15 G(an be re-read.)-2.5 E F1<ad50>144 312 Q F0(List current)180 312 Q
+F1 -.18(re)2.5 G(adline).18 E F0(function names and bindings.)2.5 E F1
+<ad73>144 324 Q F0(Display)180 324 Q F1 -.18(re)3.655 G(adline).18 E F0
+-.1(ke)3.655 G 3.655(ys)-.05 G 1.155
+(equences bound to macros and the strings the)-3.655 F 3.655(yo)-.15 G
+1.155(utput in such a)-3.655 F -.1(wa)180 336 S 2.5(yt).1 G(hat the)-2.5
+E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1<ad53>144 348 Q F0(Display)180
+348 Q F1 -.18(re)2.5 G(adline).18 E F0 -.1(ke)2.5 G 2.5(ys)-.05 G
+(equences bound to macros and the strings the)-2.5 E 2.5(yo)-.15 G
+(utput.)-2.5 E F1<ad76>144 360 Q F0(Display)180 360 Q F1 -.18(re)2.5 G
+(adline).18 E F0 -.25(va)2.5 G(riable names and v).25 E
 (alues in such a w)-.25 E(ay that the)-.1 E 2.5(yc)-.15 G
-(an be re-read.)-2.5 E F1<ad56>144 388.8 Q F0(List current)180 388.8 Q
-F1 -.18(re)2.5 G(adline).18 E F0 -.25(va)2.5 G(riable names and v).25 E
-(alues.)-.25 E F1<ad66>144 400.8 Q F2(\214lename)2.5 E F0(Read k)180
-412.8 Q .3 -.15(ey b)-.1 H(indings from).15 E F2(\214lename)2.5 E F0(.)A
-F1<ad71>144 424.8 Q F2(function)2.5 E F0(Query about which k)180 436.8 Q
--.15(ey)-.1 G 2.5(si).15 G -1.9 -.4(nv o)-2.5 H .2 -.1(ke t).4 H
-(he named).1 E F2(function)2.5 E F0(.)A F1<ad75>144 448.8 Q F2(function)
-2.5 E F0(Unbind all k)180 460.8 Q -.15(ey)-.1 G 2.5(sb).15 G
-(ound to the named)-2.5 E F2(function)2.5 E F0(.)A F1<ad72>144 472.8 Q
-F2 -.1(ke)2.5 G(yseq)-.2 E F0(Remo)180 484.8 Q .3 -.15(ve a)-.15 H .3
--.15(ny c).15 H(urrent binding for).15 E F2 -.1(ke)2.5 G(yseq)-.2 E F0
-(.)A F1<ad78>144 496.8 Q F2 -.1(ke)2.5 G(yseq)-.2 E F1(:)A F2
-(shell\255command)A F0(Cause)180 508.8 Q F2(shell\255command)4.325 E F0
-1.825(to be e)4.325 F -.15(xe)-.15 G 1.825(cuted whene).15 F -.15(ve)
--.25 G(r).15 E F2 -.1(ke)4.325 G(yseq)-.2 E F0 1.825(is entered.)4.325 F
-(When)6.825 E F2(shell\255com-)4.325 E(mand)180 520.8 Q F0 1.765(is e)
-4.265 F -.15(xe)-.15 G 1.765(cuted, the shell sets the).15 F/F3 9
-/Times-Bold@0 SF(READLINE_LINE)4.265 E F0 -.25(va)4.015 G 1.765
-(riable to the contents of the).25 F F1 -.18(re)180 532.8 S(adline).18 E
-F0 .375(line b)2.874 F(uf)-.2 E .375(fer and the)-.25 F F3
-(READLINE_POINT)2.875 E F0(and)2.625 E F3(READLINE_MARK)2.875 E F0 -.25
-(va)2.625 G .375(riables to the).25 F 1.186
-(current location of the insertion point and the sa)180 544.8 R -.15(ve)
--.2 G 3.685(di).15 G 1.185(nsertion point \(the mark\), respec-)-3.685 F
-(ti)180 556.8 Q -.15(ve)-.25 G(ly).15 E 5.377(.T)-.65 G .377
+(an be re-read.)-2.5 E F1<ad56>144 372 Q F0(List current)180 372 Q F1
+-.18(re)2.5 G(adline).18 E F0 -.25(va)2.5 G(riable names and v).25 E
+(alues.)-.25 E F1<ad66>144 384 Q F2(\214lename)2.5 E F0(Read k)180 396 Q
+.3 -.15(ey b)-.1 H(indings from).15 E F2(\214lename)2.5 E F0(.)A F1
+<ad71>144 408 Q F2(function)2.5 E F0(Query about which k)180 420 Q -.15
+(ey)-.1 G 2.5(si).15 G -1.9 -.4(nv o)-2.5 H .2 -.1(ke t).4 H(he named).1
+E F2(function)2.5 E F0(.)A F1<ad75>144 432 Q F2(function)2.5 E F0
+(Unbind all k)180 444 Q -.15(ey)-.1 G 2.5(sb).15 G(ound to the named)
+-2.5 E F2(function)2.5 E F0(.)A F1<ad72>144 456 Q F2 -.1(ke)2.5 G(yseq)
+-.2 E F0(Remo)180 468 Q .3 -.15(ve a)-.15 H .3 -.15(ny c).15 H
+(urrent binding for).15 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(.)A F1<ad78>144
+480 Q F2 -.1(ke)2.5 G(yseq)-.2 E F1(:)A F2(shell\255command)A F0(Cause)
+180 492 Q F2(shell\255command)4.325 E F0 1.825(to be e)4.325 F -.15(xe)
+-.15 G 1.825(cuted whene).15 F -.15(ve)-.25 G(r).15 E F2 -.1(ke)4.325 G
+(yseq)-.2 E F0 1.825(is entered.)4.325 F(When)6.825 E F2(shell\255com-)
+4.325 E(mand)180 504 Q F0 1.765(is e)4.265 F -.15(xe)-.15 G 1.765
+(cuted, the shell sets the).15 F/F3 9/Times-Bold@0 SF(READLINE_LINE)
+4.265 E F0 -.25(va)4.015 G 1.765(riable to the contents of the).25 F F1
+-.18(re)180 516 S(adline).18 E F0 .375(line b)2.874 F(uf)-.2 E .375
+(fer and the)-.25 F F3(READLINE_POINT)2.875 E F0(and)2.625 E F3
+(READLINE_MARK)2.875 E F0 -.25(va)2.625 G .375(riables to the).25 F
+1.186(current location of the insertion point and the sa)180 528 R -.15
+(ve)-.2 G 3.685(di).15 G 1.185(nsertion point \(the mark\), respec-)
+-3.685 F(ti)180 540 Q -.15(ve)-.25 G(ly).15 E 5.377(.T)-.65 G .377
 (he shell assigns an)-5.377 F 2.877(yn)-.15 G .377(umeric ar)-2.877 F
 .377(gument the user supplied to the)-.18 F F3(READLINE_AR-)2.878 E
-(GUMENT)180 568.8 Q F0 -.25(va)3.605 G 3.855(riable. If).25 F 1.355
+(GUMENT)180 552 Q F0 -.25(va)3.605 G 3.855(riable. If).25 F 1.355
 (there w)3.855 F 1.354(as no ar)-.1 F 1.354(gument, that v)-.18 F 1.354
 (ariable is not set.)-.25 F 1.354(If the e)6.354 F -.15(xe)-.15 G(cuted)
-.15 E .343(command changes the v)180 580.8 R .343(alue of an)-.25 F
-2.843(yo)-.15 G(f)-2.843 E F3(READLINE_LINE)2.844 E/F4 9/Times-Roman@0
-SF(,)A F3(READLINE_POINT)2.594 E F4(,)A F0(or)2.594 E F3(READ-)2.844 E
-(LINE_MARK)180 592.8 Q F4(,)A F0(those ne)2.25 E 2.5(wv)-.25 G
-(alues will be re\215ected in the editing state.)-2.75 E F1<ad58>144
-604.8 Q F0 .83(List all k)180 604.8 R 1.13 -.15(ey s)-.1 H .829
+.15 E .343(command changes the v)180 564 R .343(alue of an)-.25 F 2.843
+(yo)-.15 G(f)-2.843 E F3(READLINE_LINE)2.844 E/F4 9/Times-Roman@0 SF(,)A
+F3(READLINE_POINT)2.594 E F4(,)A F0(or)2.594 E F3(READ-)2.844 E
+(LINE_MARK)180 576 Q F4(,)A F0(those ne)2.25 E 2.5(wv)-.25 G
+(alues will be re\215ected in the editing state.)-2.75 E F1<ad58>144 588
+Q F0 .83(List all k)180 588 R 1.13 -.15(ey s)-.1 H .829
 (equences bound to shell commands and the associated commands in a for)
-.15 F(-)-.2 E(mat that can be reused as input.)180 616.8 Q(The return v)
-144 633.6 Q(alue is 0 unless an unrecognized option is gi)-.25 E -.15
+.15 F(-)-.2 E(mat that can be reused as input.)180 600 Q(The return v)
+144 616.8 Q(alue is 0 unless an unrecognized option is gi)-.25 E -.15
 (ve)-.25 G 2.5(no).15 G 2.5(ra)-2.5 G 2.5(ne)-2.5 G(rror occurred.)-2.5
-E F1(br)108 650.4 Q(eak)-.18 E F0([)2.5 E F2(n)A F0(])A .054
-(Exit from within a)144 662.4 R F1 -.25(fo)2.554 G(r).25 E F0(,)A F1
+E F1(br)108 633.6 Q(eak)-.18 E F0([)2.5 E F2(n)A F0(])A .054
+(Exit from within a)144 645.6 R F1 -.25(fo)2.554 G(r).25 E F0(,)A F1
 (while)2.554 E F0(,)A F1(until)2.555 E F0 2.555(,o)C(r)-2.555 E F1
 (select)2.555 E F0 2.555(loop. If)2.555 F F2(n)2.555 E F0 .055
 (is speci\214ed, break)2.555 F F2(n)2.555 E F0(le)2.555 E -.15(ve)-.25 G
 (ls.).15 E F2(n)5.415 E F0 .055(must be)2.795 F/F5 10/Symbol SF<b3>2.555
-E F0(1.)2.555 E(If)144 674.4 Q F2(n)3.075 E F0 .215(is greater than the\
+E F0(1.)2.555 E(If)144 657.6 Q F2(n)3.075 E F0 .215(is greater than the\
  number of enclosing loops, all enclosing loops are e)2.955 F 2.714
 (xited. The)-.15 F .214(return v)2.714 F(alue)-.25 E(is 0 unless)144
-686.4 Q F2(n)2.5 E F0(is not greater than or equal to 1.)2.5 E F1 -.2
-(bu)108 703.2 S(iltin).2 E F2(shell\255b)2.5 E(uiltin)-.2 E F0([)2.5 E
-F2(ar)A(guments)-.37 E F0(])A(Ex)144 715.2 Q .77
+669.6 Q F2(n)2.5 E F0(is not greater than or equal to 1.)2.5 E F1 -.2
+(bu)108 686.4 S(iltin).2 E F2(shell\255b)2.5 E(uiltin)-.2 E F0([)2.5 E
+F2(ar)A(guments)-.37 E F0(])A(Ex)144 698.4 Q .77
 (ecute the speci\214ed shell b)-.15 F .77(uiltin, passing it)-.2 F F2
 (ar)3.601 E(guments)-.37 E F0 3.271(,a).27 G .771(nd return its e)-3.271
 F .771(xit status.)-.15 F .771(This is useful)5.771 F .616
 (when de\214ning a function whose name is the same as a shell b)144
-727.2 R .615(uiltin, retaining the functionality of)-.2 F(GNU Bash 5.2)
-72 768 Q(2023 May 14)148.175 E(61)197.335 E 0 Cg EP
+710.4 R .615(uiltin, retaining the functionality of)-.2 F .57(the b)144
+722.4 R .57(uiltin within the function.)-.2 F(The)5.57 E F1(cd)3.07 E F0
+-.2(bu)3.07 G .57(iltin is commonly rede\214ned this w).2 F(ay)-.1 E
+5.57(.T)-.65 G .57(he return status)-5.57 F(GNU Bash 5.2)72 768 Q
+(2023 May 23)148.175 E(61)197.335 E 0 Cg EP
 %%Page: 62 62
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .57(the b)144 84 R
-.57(uiltin within the function.)-.2 F(The)5.57 E/F1 10/Times-Bold@0 SF
-(cd)3.07 E F0 -.2(bu)3.07 G .57(iltin is commonly rede\214ned this w).2
-F(ay)-.1 E 5.57(.T)-.65 G .57(he return status)-5.57 F(is f)144 96 Q
-(alse if)-.1 E/F2 10/Times-Italic@0 SF(shell\255b)2.84 E(uiltin)-.2 E F0
-(is not a shell b)2.74 E(uiltin command.)-.2 E F1(caller)108 112.8 Q F0
-([)2.5 E F2 -.2(ex)C(pr).2 E F0(])A .254(Returns the conte)144 124.8 R
-.254(xt of an)-.15 F 2.754(ya)-.15 G(cti)-2.754 E .554 -.15(ve s)-.25 H
-.254(ubroutine call \(a shell function or a script e).15 F -.15(xe)-.15
-G .254(cuted with the).15 F F1(.)2.753 E F0(or)2.753 E F1(sour)144 136.8
-Q(ce)-.18 E F0 -.2(bu)2.824 G 2.824(iltins\). W).2 F(ithout)-.4 E F2 -.2
-(ex)2.824 G(pr).2 E F0(,)A F1(caller)2.824 E F0 .324
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(is f)144 84 Q
+(alse if)-.1 E/F1 10/Times-Italic@0 SF(shell\255b)2.84 E(uiltin)-.2 E F0
+(is not a shell b)2.74 E(uiltin command.)-.2 E/F2 10/Times-Bold@0 SF
+(caller)108 100.8 Q F0([)2.5 E F1 -.2(ex)C(pr).2 E F0(])A .254
+(Returns the conte)144 112.8 R .254(xt of an)-.15 F 2.754(ya)-.15 G(cti)
+-2.754 E .554 -.15(ve s)-.25 H .254
+(ubroutine call \(a shell function or a script e).15 F -.15(xe)-.15 G
+.254(cuted with the).15 F F2(.)2.753 E F0(or)2.753 E F2(sour)144 124.8 Q
+(ce)-.18 E F0 -.2(bu)2.824 G 2.824(iltins\). W).2 F(ithout)-.4 E F1 -.2
+(ex)2.824 G(pr).2 E F0(,)A F2(caller)2.824 E F0 .324
 (displays the line number and source \214lename of the current)2.824 F
-.254(subroutine call.)144 148.8 R .254(If a non-ne)5.254 F -.05(ga)-.15
+.254(subroutine call.)144 136.8 R .254(If a non-ne)5.254 F -.05(ga)-.15
 G(ti).05 E .554 -.15(ve i)-.25 H(nte).15 E .253(ger is supplied as)-.15
-F F2 -.2(ex)2.753 G(pr).2 E F0(,)A F1(caller)2.753 E F0 .253
+F F1 -.2(ex)2.753 G(pr).2 E F0(,)A F2(caller)2.753 E F0 .253
 (displays the line number)2.753 F 2.753(,s)-.4 G(ub-)-2.753 E 1.327(rou\
 tine name, and source \214le corresponding to that position in the curr\
-ent e)144 160.8 R -.15(xe)-.15 G 1.328(cution call stack.).15 F .001
-(This e)144 172.8 R .001(xtra information may be used, for e)-.15 F .001
+ent e)144 148.8 R -.15(xe)-.15 G 1.328(cution call stack.).15 F .001
+(This e)144 160.8 R .001(xtra information may be used, for e)-.15 F .001
 (xample, to print a stack trace.)-.15 F(The current frame is frame)5 E
-3.019(0. The)144 184.8 R .519(return v)3.019 F .519
+3.019(0. The)144 172.8 R .519(return v)3.019 F .519
 (alue is 0 unless the shell is not e)-.25 F -.15(xe)-.15 G .52
-(cuting a subroutine call or).15 F F2 -.2(ex)3.02 G(pr).2 E F0 .52
-(does not corre-)3.02 F(spond to a v)144 196.8 Q
-(alid position in the call stack.)-.25 E F1(cd)108 213.6 Q F0([)2.5 E F1
-<ad4c>A F0(|[)A F1<ad50>A F0([)2.5 E F1<ad65>A F0(]]] [\255@] [)A F2
-(dir)A F0(])A .322(Change the current directory to)144 225.6 R F2(dir)
-2.822 E F0 5.322(.i)C(f)-5.322 E F2(dir)2.822 E F0 .321
+(cuting a subroutine call or).15 F F1 -.2(ex)3.02 G(pr).2 E F0 .52
+(does not corre-)3.02 F(spond to a v)144 184.8 Q
+(alid position in the call stack.)-.25 E F2(cd)108 201.6 Q F0([)2.5 E F2
+<ad4c>A F0(|[)A F2<ad50>A F0([)2.5 E F2<ad65>A F0(]]] [\255@] [)A F1
+(dir)A F0(])A .322(Change the current directory to)144 213.6 R F1(dir)
+2.822 E F0 5.322(.i)C(f)-5.322 E F1(dir)2.822 E F0 .321
 (is not supplied, the v)2.822 F .321(alue of the)-.25 F/F3 9
 /Times-Bold@0 SF(HOME)2.821 E F0 .321(shell v)2.571 F .321(ariable is)
--.25 F .929(the def)144 237.6 R 3.429(ault. The)-.1 F -.25(va)3.429 G
+-.25 F .929(the def)144 225.6 R 3.429(ault. The)-.1 F -.25(va)3.429 G
 (riable).25 E F3(CDP)3.429 E -.855(AT)-.666 G(H).855 E F0 .93
-(de\214nes the search path for the directory containing)3.179 F F2(dir)
-3.78 E F0 3.43(:e).73 G(ach)-3.43 E .407(directory name in)144 249.6 R
+(de\214nes the search path for the directory containing)3.179 F F1(dir)
+3.78 E F0 3.43(:e).73 G(ach)-3.43 E .407(directory name in)144 237.6 R
 F3(CDP)2.907 E -.855(AT)-.666 G(H).855 E F0 .407(is searched for)2.657 F
-F2(dir)2.907 E F0 5.407(.A)C(lternati)-5.407 E .707 -.15(ve d)-.25 H
+F1(dir)2.907 E F0 5.407(.A)C(lternati)-5.407 E .707 -.15(ve d)-.25 H
 .407(irectory names in).15 F F3(CDP)2.907 E -.855(AT)-.666 G(H).855 E F0
-.406(are sepa-)2.656 F .799(rated by a colon \(:\).)144 261.6 R 3.299
+.406(are sepa-)2.656 F .799(rated by a colon \(:\).)144 249.6 R 3.299
 (An)5.799 G .799(ull directory name in)-3.299 F F3(CDP)3.299 E -.855(AT)
 -.666 G(H).855 E F0 .799(is the same as the current directory)3.049 F
-3.3(,i)-.65 G(.e.,)-3.3 E -.74(``)144 273.6 S F1(.).74 E F0 -.74('')C
-5.428(.I).74 G(f)-5.428 E F2(dir)3.278 E F0(be)3.658 E .428
+3.3(,i)-.65 G(.e.,)-3.3 E -.74(``)144 261.6 S F2(.).74 E F0 -.74('')C
+5.428(.I).74 G(f)-5.428 E F1(dir)3.278 E F0(be)3.658 E .428
 (gins with a slash \(/\), then)-.15 F F3(CDP)2.928 E -.855(AT)-.666 G(H)
-.855 E F0 .428(is not used.)2.678 F(The)5.428 E F1<ad50>2.927 E F0 .427
-(option causes)2.927 F F1(cd)2.927 E F0 .427(to use the)2.927 F(ph)144
-285.6 Q .167
+.855 E F0 .428(is not used.)2.678 F(The)5.428 E F2<ad50>2.927 E F0 .427
+(option causes)2.927 F F2(cd)2.927 E F0 .427(to use the)2.927 F(ph)144
+273.6 Q .167
 (ysical directory structure by resolving symbolic links while tra)-.05 F
--.15(ve)-.2 G(rsing).15 E F2(dir)2.668 E F0 .168(and before processing)
-2.668 F 1.225(instances of)144 297.6 R F2(..)3.725 E F0(in)3.725 E F2
-(dir)3.725 E F0 1.225(\(see also the)3.725 F F1<ad50>3.725 E F0 1.225
-(option to the)3.725 F F1(set)3.725 E F0 -.2(bu)3.725 G 1.225
-(iltin command\); the).2 F F1<ad4c>3.725 E F0 1.225(option forces)3.725
-F .411(symbolic links to be follo)144 309.6 R .411
-(wed by resolving the link after processing instances of)-.25 F F2(..)
-2.911 E F0(in)2.911 E F2(dir)2.911 E F0 5.411(.I)C(f)-5.411 E F2(..)
-2.912 E F0(ap-)2.912 E .341(pears in)144 321.6 R F2(dir)2.841 E F0 2.841
+-.15(ve)-.2 G(rsing).15 E F1(dir)2.668 E F0 .168(and before processing)
+2.668 F 1.225(instances of)144 285.6 R F1(..)3.725 E F0(in)3.725 E F1
+(dir)3.725 E F0 1.225(\(see also the)3.725 F F2<ad50>3.725 E F0 1.225
+(option to the)3.725 F F2(set)3.725 E F0 -.2(bu)3.725 G 1.225
+(iltin command\); the).2 F F2<ad4c>3.725 E F0 1.225(option forces)3.725
+F .411(symbolic links to be follo)144 297.6 R .411
+(wed by resolving the link after processing instances of)-.25 F F1(..)
+2.911 E F0(in)2.911 E F1(dir)2.911 E F0 5.411(.I)C(f)-5.411 E F1(..)
+2.912 E F0(ap-)2.912 E .341(pears in)144 309.6 R F1(dir)2.841 E F0 2.841
 (,i)C 2.841(ti)-2.841 G 2.841(sp)-2.841 G .341(rocessed by remo)-2.841 F
 .341(ving the immediately pre)-.15 F .34(vious pathname component from)
--.25 F F2(dir)2.84 E F0(,)A .175(back to a slash or the be)144 333.6 R
-.175(ginning of)-.15 F F2(dir)2.675 E F0 5.175(.I)C 2.675(ft)-5.175 G
-(he)-2.675 E F1<ad65>2.676 E F0 .176(option is supplied with)2.676 F F1
+-.25 F F1(dir)2.84 E F0(,)A .175(back to a slash or the be)144 321.6 R
+.175(ginning of)-.15 F F1(dir)2.675 E F0 5.175(.I)C 2.675(ft)-5.175 G
+(he)-2.675 E F2<ad65>2.676 E F0 .176(option is supplied with)2.676 F F2
 <ad50>2.676 E F0 2.676(,a)C .176(nd the current w)-2.676 F(ork-)-.1 E
 .341(ing directory cannot be successfully determined after a successful\
- directory change,)144 345.6 R F1(cd)2.84 E F0 .34(will return)2.84 F
-.356(an unsuccessful status.)144 357.6 R .356
-(On systems that support it, the)5.356 F F1<ad40>2.857 E F0 .357
+ directory change,)144 333.6 R F2(cd)2.84 E F0 .34(will return)2.84 F
+.356(an unsuccessful status.)144 345.6 R .356
+(On systems that support it, the)5.356 F F2<ad40>2.857 E F0 .357
 (option presents the e)2.857 F .357(xtended attrib)-.15 F(utes)-.2 E .07
-(associated with a \214le as a directory)144 369.6 R 5.07(.A)-.65 G
-2.569(na)-5.07 G -.18(rg)-2.569 G .069(ument of).18 F F1<ad>2.569 E F0
+(associated with a \214le as a directory)144 357.6 R 5.07(.A)-.65 G
+2.569(na)-5.07 G -.18(rg)-2.569 G .069(ument of).18 F F2<ad>2.569 E F0
 .069(is con)2.569 F -.15(ve)-.4 G .069(rted to).15 F F3($OLDPWD)2.569 E
 F0 .069(before the direc-)2.319 F .306(tory change is attempted.)144
-381.6 R .306(If a non-empty directory name from)5.306 F F3(CDP)2.806 E
--.855(AT)-.666 G(H).855 E F0 .306(is used, or if)2.556 F F1<ad>2.807 E
-F0 .307(is the \214rst)2.807 F(ar)144 393.6 Q .116(gument, and the dire\
+369.6 R .306(If a non-empty directory name from)5.306 F F3(CDP)2.806 E
+-.855(AT)-.666 G(H).855 E F0 .306(is used, or if)2.556 F F2<ad>2.807 E
+F0 .307(is the \214rst)2.807 F(ar)144 381.6 Q .116(gument, and the dire\
 ctory change is successful, the absolute pathname of the ne)-.18 F 2.615
 (ww)-.25 G .115(orking direc-)-2.715 F .15
-(tory is written to the standard output.)144 405.6 R .15
-(If the directory change is successful,)5.15 F F1(cd)2.65 E F0 .15
-(sets the v)2.65 F .15(alue of the)-.25 F F1(PWD)144 417.6 Q F0(en)2.958
+(tory is written to the standard output.)144 393.6 R .15
+(If the directory change is successful,)5.15 F F2(cd)2.65 E F0 .15
+(sets the v)2.65 F .15(alue of the)-.25 F F2(PWD)144 405.6 Q F0(en)2.958
 E .458(vironment v)-.4 F .458(ariable to the ne)-.25 F 2.958(wd)-.25 G
-.458(irectory name, and sets the)-2.958 F F1(OLDPWD)2.957 E F0(en)2.957
-E .457(vironment v)-.4 F(ari-)-.25 E .125(able to the v)144 429.6 R .125
+.458(irectory name, and sets the)-2.958 F F2(OLDPWD)2.957 E F0(en)2.957
+E .457(vironment v)-.4 F(ari-)-.25 E .125(able to the v)144 417.6 R .125
 (alue of the current w)-.25 F .126(orking directory before the change.)
 -.1 F .126(The return v)5.126 F .126(alue is true if the)-.25 F
-(directory w)144 441.6 Q(as successfully changed; f)-.1 E
-(alse otherwise.)-.1 E F1(command)108 458.4 Q F0([)2.5 E F1(\255pVv)A F0
-(])A F2(command)2.5 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(Run)144
-470.4 Q F2(command)2.765 E F0(with)3.335 E F2(ar)2.895 E(gs)-.37 E F0
+(directory w)144 429.6 Q(as successfully changed; f)-.1 E
+(alse otherwise.)-.1 E F2(command)108 446.4 Q F0([)2.5 E F2(\255pVv)A F0
+(])A F1(command)2.5 E F0([)2.5 E F1(ar)A(g)-.37 E F0(...])2.5 E(Run)144
+458.4 Q F1(command)2.765 E F0(with)3.335 E F1(ar)2.895 E(gs)-.37 E F0
 .065(suppressing the normal shell function lookup.)2.835 F .064(Only b)
 5.064 F .064(uiltin commands or)-.2 F .501(commands found in the)144
-482.4 R F3 -.666(PA)3.001 G(TH)-.189 E F0 .502(are e)2.751 F -.15(xe)
--.15 G 3.002(cuted. If).15 F(the)3.002 E F1<ad70>3.002 E F0 .502
-(option is gi)3.002 F -.15(ve)-.25 G .502(n, the search for).15 F F2
-(command)3.202 E F0(is)3.772 E .4(performed using a def)144 494.4 R .4
+470.4 R F3 -.666(PA)3.001 G(TH)-.189 E F0 .502(are e)2.751 F -.15(xe)
+-.15 G 3.002(cuted. If).15 F(the)3.002 E F2<ad70>3.002 E F0 .502
+(option is gi)3.002 F -.15(ve)-.25 G .502(n, the search for).15 F F1
+(command)3.202 E F0(is)3.772 E .4(performed using a def)144 482.4 R .4
 (ault v)-.1 F .4(alue for)-.25 F F3 -.666(PA)2.9 G(TH)-.189 E F0 .399
 (that is guaranteed to \214nd all of the standard utilities.)2.649 F(If)
-5.399 E .174(either the)144 506.4 R F1<ad56>2.674 E F0(or)2.674 E F1
-<ad76>2.674 E F0 .175(option is supplied, a description of)2.674 F F2
-(command)2.875 E F0 .175(is printed.)3.445 F(The)5.175 E F1<ad76>2.675 E
-F0 .175(option causes)2.675 F 3.318(as)144 518.4 S .818(ingle w)-3.318 F
+5.399 E .174(either the)144 494.4 R F2<ad56>2.674 E F0(or)2.674 E F2
+<ad76>2.674 E F0 .175(option is supplied, a description of)2.674 F F1
+(command)2.875 E F0 .175(is printed.)3.445 F(The)5.175 E F2<ad76>2.675 E
+F0 .175(option causes)2.675 F 3.318(as)144 506.4 S .818(ingle w)-3.318 F
 .817(ord indicating the command or \214lename used to in)-.1 F -.2(vo)
--.4 G -.1(ke).2 G F2(command)3.617 E F0 .817(to be displayed; the)4.087
-F F1<ad56>144 530.4 Q F0 .249(option produces a more v)2.749 F .249
-(erbose description.)-.15 F .249(If the)5.249 F F1<ad56>2.749 E F0(or)
-2.749 E F1<ad76>2.75 E F0 .25(option is supplied, the e)2.75 F .25
-(xit status)-.15 F 1.005(is 0 if)144 542.4 R F2(command)3.705 E F0 -.1
+-.4 G -.1(ke).2 G F1(command)3.617 E F0 .817(to be displayed; the)4.087
+F F2<ad56>144 518.4 Q F0 .249(option produces a more v)2.749 F .249
+(erbose description.)-.15 F .249(If the)5.249 F F2<ad56>2.749 E F0(or)
+2.749 E F2<ad76>2.75 E F0 .25(option is supplied, the e)2.75 F .25
+(xit status)-.15 F 1.005(is 0 if)144 530.4 R F1(command)3.705 E F0 -.1
 (wa)4.275 G 3.505(sf).1 G 1.005(ound, and 1 if not.)-3.505 F 1.004
-(If neither option is supplied and an error occurred or)6.005 F F2
-(command)144.2 554.4 Q F0 1.598(cannot be found, the e)4.868 F 1.599
+(If neither option is supplied and an error occurred or)6.005 F F1
+(command)144.2 542.4 Q F0 1.598(cannot be found, the e)4.868 F 1.599
 (xit status is 127.)-.15 F 1.599(Otherwise, the e)6.599 F 1.599
-(xit status of the)-.15 F F1(command)4.099 E F0 -.2(bu)144 566.4 S
-(iltin is the e).2 E(xit status of)-.15 E F2(command)2.7 E F0(.).77 E F1
-(compgen)108 583.2 Q F0([)2.5 E F1<ad56>A F2(varname)2.5 E F0 2.5(][)C
-F2(option)-2.5 E F0 2.5(][)C F2(wor)-2.5 E(d)-.37 E F0(])A .013
-(Generate possible completion matches for)144 595.2 R F2(wor)2.513 E(d)
--.37 E F0 .013(according to the)2.513 F F2(option)2.513 E F0 .013
+(xit status of the)-.15 F F2(command)4.099 E F0 -.2(bu)144 554.4 S
+(iltin is the e).2 E(xit status of)-.15 E F1(command)2.7 E F0(.).77 E F2
+(compgen)108 571.2 Q F0([)2.5 E F2<ad56>A F1(varname)2.5 E F0 2.5(][)C
+F1(option)-2.5 E F0 2.5(][)C F1(wor)-2.5 E(d)-.37 E F0(])A .013
+(Generate possible completion matches for)144 583.2 R F1(wor)2.513 E(d)
+-.37 E F0 .013(according to the)2.513 F F1(option)2.513 E F0 .013
 (s, which may be an)B 2.512(yo)-.15 G(ption)-2.512 E 1.216
-(accepted by the)144 607.2 R F1(complete)3.716 E F0 -.2(bu)3.716 G 1.216
-(iltin with the e).2 F 1.216(xceptions of)-.15 F F1<ad70>3.716 E F0(,)A
-F1<ad72>3.717 E F0(,)A F1<ad44>3.717 E F0(,)A F1<ad45>3.717 E F0 3.717
-(,a)C(nd)-3.717 E F1<ad49>3.717 E F0 3.717(,a)C 1.217(nd write the)
--3.717 F .505(matches to the standard output.)144 619.2 R .505(If the)
-5.505 F F1<ad56>3.005 E F0 .505(option is supplied,)3.005 F F1(compgen)
+(accepted by the)144 595.2 R F2(complete)3.716 E F0 -.2(bu)3.716 G 1.216
+(iltin with the e).2 F 1.216(xceptions of)-.15 F F2<ad70>3.716 E F0(,)A
+F2<ad72>3.717 E F0(,)A F2<ad44>3.717 E F0(,)A F2<ad45>3.717 E F0 3.717
+(,a)C(nd)-3.717 E F2<ad49>3.717 E F0 3.717(,a)C 1.217(nd write the)
+-3.717 F .505(matches to the standard output.)144 607.2 R .505(If the)
+5.505 F F2<ad56>3.005 E F0 .505(option is supplied,)3.005 F F2(compgen)
 3.004 E F0 .504(stores the generated com-)3.004 F 1.086
-(pletions into the inde)144 631.2 R -.15(xe)-.15 G 3.586(da).15 G 1.086
-(rray v)-3.586 F(ariable)-.25 E F2(varname)3.586 E F0 1.087
+(pletions into the inde)144 619.2 R -.15(xe)-.15 G 3.586(da).15 G 1.086
+(rray v)-3.586 F(ariable)-.25 E F1(varname)3.586 E F0 1.087
 (instead of writing them to the standard output.)3.586 F .195
-(When using the)144 643.2 R F1<ad46>2.695 E F0(or)2.695 E F1<ad43>2.695
+(When using the)144 631.2 R F2<ad46>2.695 E F0(or)2.695 E F2<ad43>2.695
 E F0 .195(options, the v)2.695 F .195(arious shell v)-.25 F .194
-(ariables set by the programmable completion)-.25 F -.1(fa)144 655.2 S
+(ariables set by the programmable completion)-.25 F -.1(fa)144 643.2 S
 (cilities, while a).1 E -.25(va)-.2 G(ilable, will not ha).25 E .3 -.15
 (ve u)-.2 H(seful v).15 E(alues.)-.25 E .352
-(The matches will be generated in the same w)144 679.2 R .352
+(The matches will be generated in the same w)144 667.2 R .352
 (ay as if the programmable completion code had gen-)-.1 F .02(erated th\
 em directly from a completion speci\214cation with the same \215ags.)144
-691.2 R(If)5.02 E F2(wor)2.52 E(d)-.37 E F0 .02(is speci\214ed, only)
-2.52 F(those completions matching)144 703.2 Q F2(wor)2.5 E(d)-.37 E F0
-(will be displayed.)2.5 E(The return v)144 727.2 Q
+679.2 R(If)5.02 E F1(wor)2.52 E(d)-.37 E F0 .02(is speci\214ed, only)
+2.52 F(those completions matching)144 691.2 Q F1(wor)2.5 E(d)-.37 E F0
+(will be displayed.)2.5 E(The return v)144 715.2 Q
 (alue is true unless an in)-.25 E -.25(va)-.4 G
 (lid option is supplied, or no matches were generated.).25 E
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(62)197.335 E 0 Cg EP
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(62)197.335 E 0 Cg EP
 %%Page: 63 63
 %%BeginPageSetup
 BP
@@ -7779,7 +7773,7 @@ Q F1<ad41>144 648 Q F2(action)2.5 E F0(The)184 660 Q F2(action)2.5 E F0
 2.5 E F0(.)A F1(arrayv)184 684 Q(ar)-.1 E F0(Array v)224 696 Q
 (ariable names.)-.25 E F1(binding)184 708 Q(Readline)224 708 Q F0 -.1
 (ke)2.5 G 2.5(yb)-.05 G(inding names.)-2.5 E(GNU Bash 5.2)72 768 Q
-(2023 May 14)148.175 E(63)197.335 E 0 Cg EP
+(2023 May 23)148.175 E(63)197.335 E 0 Cg EP
 %%Page: 64 64
 %%BeginPageSetup
 BP
@@ -7867,7 +7861,7 @@ Q F3(\214lterpat)2.5 E(\214lterpat)184 708 Q F0 .456
 (is a pattern as used for pathname e)2.956 F 2.956(xpansion. It)-.15 F
 .455(is applied to the list of possible)2.956 F 1.596
 (completions generated by the preceding options and ar)184 720 R 1.596
-(guments, and each completion)-.18 F(GNU Bash 5.2)72 768 Q(2023 May 14)
+(guments, and each completion)-.18 F(GNU Bash 5.2)72 768 Q(2023 May 23)
 148.175 E(64)197.335 E 0 Cg EP
 %%Page: 65 65
 %%BeginPageSetup
@@ -8013,7 +8007,7 @@ Q F0(Gi)180 691.2 Q 1.619 -.15(ve e)-.25 H(ach).15 E F1(name)3.819 E F0
 3.282 E .782(ute itself, are)-.2 F .809(performed on the v)180 727.2 R
 .809(ariable referenced by)-.25 F F1(name)3.308 E F0 1.908 -.55('s v)D
 3.308(alue. The).3 F .808(nameref attrib)3.308 F .808(ute cannot be)-.2
-F(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(65)197.335 E 0 Cg EP
+F(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(65)197.335 E 0 Cg EP
 %%Page: 66 66
 %%BeginPageSetup
 BP
@@ -8144,7 +8138,7 @@ F F1(echo)3.101 E F0 -.15(ex)3.101 G .601(pands these).15 F .658
 (does not interpret)3.159 F F1<adad>3.159 E F0 .659
 (to mean the end of options.)3.159 F F1(echo)5.659 E F0(inter)3.159 E(-)
 -.2 E(prets the follo)144 720 Q(wing escape sequences:)-.25 E
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(66)197.335 E 0 Cg EP
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(66)197.335 E 0 Cg EP
 %%Page: 67 67
 %%BeginPageSetup
 BP
@@ -8269,7 +8263,7 @@ F -.15(xe)-.15 G 3.32(cuted. A).15 F .82(subshell e)3.32 F .82
 (is omitted, the e)2.835 F .096(xit status is that of the last command)
 -.15 F -.15(exe)144 715.2 S 2.5(cuted. A).15 F(trap on)2.5 E F3(EXIT)2.5
 E F0(is e)2.25 E -.15(xe)-.15 G(cuted before the shell terminates.).15 E
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(67)197.335 E 0 Cg EP
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(67)197.335 E 0 Cg EP
 %%Page: 68 68
 %%BeginPageSetup
 BP
@@ -8412,7 +8406,7 @@ F1(getopts)108 619.2 Q F2(optstring name)2.5 E F0([)2.5 E F2(ar)A 2.5
 (between multiple calls to)144 727.2 R F1(getopts)2.89 E F0 .39
 (within the same shell in)2.89 F -.2(vo)-.4 G .389(cation if a ne).2 F
 2.889(ws)-.25 G .389(et of parameters is to)-2.889 F(GNU Bash 5.2)72 768
-Q(2023 May 14)148.175 E(68)197.335 E 0 Cg EP
+Q(2023 May 23)148.175 E(68)197.335 E 0 Cg EP
 %%Page: 69 69
 %%BeginPageSetup
 BP
@@ -8521,7 +8515,7 @@ F3(n)3.24 E F0 .38(lists only the last)3.12 F F3(n)3.24 E F0 2.88
 (ciated with each displayed history entry)144 727.2 R 6.019(.N)-.65 G
 3.519(oi)-6.019 G(nterv)-3.519 E 1.019
 (ening blank is printed between the formatted)-.15 F(GNU Bash 5.2)72 768
-Q(2023 May 14)148.175 E(69)197.335 E 0 Cg EP
+Q(2023 May 23)148.175 E(69)197.335 E 0 Cg EP
 %%Page: 70 70
 %%BeginPageSetup
 BP
@@ -8646,7 +8640,7 @@ G .962(lent to).25 F F3<ad6c>3.462 E F0(.)A F3(kill)5.962 E F0 .962
 (returns true if at least one signal w)3.462 F(as)-.1 E
 (successfully sent, or f)144 720 Q(alse if an error occurs or an in)-.1
 E -.25(va)-.4 G(lid option is encountered.).25 E(GNU Bash 5.2)72 768 Q
-(2023 May 14)148.175 E(70)197.335 E 0 Cg EP
+(2023 May 23)148.175 E(70)197.335 E 0 Cg EP
 %%Page: 71 71
 %%BeginPageSetup
 BP
@@ -8788,7 +8782,7 @@ E F0 .196(returns a non-)2.696 F(zero v)144 710.4 Q(alue.)-.25 E
 (Otherwise,)144 727.2 Q F1(popd)2.67 E F0 .17(returns f)2.67 F .17
 (alse if an in)-.1 F -.25(va)-.4 G .171
 (lid option is encountered, the directory stack is empty).25 F 2.671(,o)
--.65 G 2.671(ra)-2.671 G(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(71)
+-.65 G 2.671(ra)-2.671 G(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(71)
 197.335 E 0 Cg EP
 %%Page: 72 72
 %%BeginPageSetup
@@ -8899,7 +8893,7 @@ g or adding directories to the)180 674.4 R
 3.768 E F0 1.267(th directory \(counting from the left of the list sho)B
 1.267(wn by)-.25 F F1(dirs)180 710.4 Q F0 2.5(,s)C
 (tarting with zero\) is at the top.)-2.5 E(GNU Bash 5.2)72 768 Q
-(2023 May 14)148.175 E(72)197.335 E 0 Cg EP
+(2023 May 23)148.175 E(72)197.335 E 0 Cg EP
 %%Page: 73 73
 %%BeginPageSetup
 BP
@@ -9022,7 +9016,7 @@ E(har)-.15 E(s)-.1 E F0 .609(characters are read.)180 648 R .608
 (wline, before attempting to read)-.25 F(an)180 708 Q 2.5(yi)-.15 G 2.5
 (nput. The)-2.5 F
 (prompt is displayed only if input is coming from a terminal.)2.5 E
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(73)197.335 E 0 Cg EP
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(73)197.335 E 0 Cg EP
 %%Page: 74 74
 %%BeginPageSetup
 BP
@@ -9160,7 +9154,7 @@ G -.18(rg)-3.08 G .58(uments remaining after op-).18 F .16
 2.661(,t)-.4 G(o)-2.661 E F1($1)2.661 E F0(,)A F1($2)144 715.2 Q F0(,)A
 F1 2.5(... $)2.5 F F2(n)A F0 5(.O)C(ptions, if speci\214ed, ha)-5 E .3
 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E(GNU Bash 5.2)72 768
-Q(2023 May 14)148.175 E(74)197.335 E 0 Cg EP
+Q(2023 May 23)148.175 E(74)197.335 E 0 Cg EP
 %%Page: 75 75
 %%BeginPageSetup
 BP
@@ -9267,7 +9261,7 @@ H(nder).15 E F3(HIST)3.087 E(OR)-.162 E(Y)-.315 E/F4 9/Times-Roman@0 SF
 (fect is as if the shell command)-.25 F/F5 10/Courier@0 SF(IGNOREEOF=10)
 4.157 E F0 1.657(had been e)4.157 F -.15(xe)-.15 G(cuted).15 E(\(see)224
 726 Q F1(Shell V)2.5 E(ariables)-.92 E F0(abo)2.5 E -.15(ve)-.15 G(\).)
-.15 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(75)197.335 E 0 Cg EP
+.15 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(75)197.335 E 0 Cg EP
 %%Page: 76 76
 %%BeginPageSetup
 BP
@@ -9369,7 +9363,7 @@ E F1<ad42>144 642 Q F0 1.206(The shell performs brace e)184 642 R 1.206
 F .839(mands e)184 714 R -.15(xe)-.15 G .839(cuted in a subshell en).15
 F 3.339(vironment. The)-.4 F F1(ERR)3.338 E F0 .838
 (trap is normally not inherited in)3.338 F(such cases.)184 726 Q
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(76)197.335 E 0 Cg EP
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(76)197.335 E 0 Cg EP
 %%Page: 77 77
 %%BeginPageSetup
 BP
@@ -9488,7 +9482,7 @@ R F2(optnames)4.044 E F0 1.544(are enabled, non-zero otherwise.)4.044 F
 -.15(xe)-.15 G .199(cuted as if it were the ar).15 F(gu-)-.18 E
 (ment to the)184 706.8 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F
 (option is only used by interacti)2.5 E .3 -.15(ve s)-.25 H(hells.).15 E
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(77)197.335 E 0 Cg EP
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(77)197.335 E 0 Cg EP
 %%Page: 78 78
 %%BeginPageSetup
 BP
@@ -9588,7 +9582,7 @@ E F1(dotglob)144 679.2 Q F0 .165(If set,)184 679.2 R F1(bash)2.665 E F0
 (cute the \214le speci\214ed as an ar).15 F(-)-.2 E(gument to the)184
 720 Q F1(exec)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 E(An interacti)5 E
 .3 -.15(ve s)-.25 H(hell does not e).15 E(xit if)-.15 E F1(exec)2.5 E F0
--.1(fa)2.5 G(ils.).1 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(78)
+-.1(fa)2.5 G(ils.).1 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(78)
 197.335 E 0 Cg EP
 %%Page: 79 79
 %%BeginPageSetup
@@ -9684,7 +9678,7 @@ E F1(globstar)144 643.2 Q F0 .519(If set, the pattern)184 643.2 R F1(**)
 2.932(,o)C .432(nly directories)-2.932 F(and subdirectories match.)184
 667.2 Q F1(gnu_errfmt)144 684 Q F0(If set, shell error messages are wri\
 tten in the standard GNU error message format.)184 696 Q(GNU Bash 5.2)72
-768 Q(2023 May 14)148.175 E(79)197.335 E 0 Cg EP
+768 Q(2023 May 23)148.175 E(79)197.335 E 0 Cg EP
 %%Page: 80 80
 %%BeginPageSetup
 BP
@@ -9769,7 +9763,7 @@ F1(nocaseglob)144 679.2 Q F0 .437(If set,)184 691.2 R F1(bash)2.937 E F0
 .436(matches \214lenames in a case\255insensiti)2.937 F .736 -.15(ve f)
 -.25 H .436(ashion when performing pathname).05 F -.15(ex)184 703.2 S
 (pansion \(see).15 E F1 -.1(Pa)2.5 G(thname Expansion).1 E F0(abo)2.5 E
--.15(ve)-.15 G(\).).15 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(80)
+-.15(ve)-.15 G(\).).15 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(80)
 197.335 E 0 Cg EP
 %%Page: 81 81
 %%BeginPageSetup
@@ -9853,7 +9847,7 @@ F .771(alue of)-.25 F F2 -.666(PA)3.271 G(TH)-.189 E F0 .771
 .753(rride this and).15 F .107(force the suspension.)144 693.6 R .107(T\
 he return status is 0 unless the shell is a login shell or job control \
 is not en-)5.107 F(abled and)144 705.6 Q F1<ad66>2.5 E F0
-(is not supplied.)2.5 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(81)
+(is not supplied.)2.5 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(81)
 197.335 E 0 Cg EP
 %%Page: 82 82
 %%BeginPageSetup
@@ -9968,7 +9962,7 @@ F2(sigspec)2.605 E F0 2.605(\)o)C(r)-2.605 E F1<ad>2.605 E F0 2.605(,e)C
 3.456 E F0 .626(is the null string the signal speci-)3.366 F
 (\214ed by each)144 728.4 Q F2(sigspec)2.84 E F0
 (is ignored by the shell and by the commands it in)2.81 E -.2(vo)-.4 G
--.1(ke).2 G(s.).1 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(82)
+-.1(ke).2 G(s.).1 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(82)
 197.335 E 0 Cg EP
 %%Page: 83 83
 %%BeginPageSetup
@@ -10125,7 +10119,7 @@ E F0([)2.5 E F2(limit)A F0(]])A(Pro)144 698.4 Q .243(vides control o)
 (options specify that the hard or soft limit is set for the)3.444 F(gi)
 144 722.4 Q -.15(ve)-.25 G 2.708(nr).15 G 2.708(esource. A)-2.708 F .208
 (hard limit cannot be increased by a non-root user once it is set; a so\
-ft limit may)2.708 F(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(83)
+ft limit may)2.708 F(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(83)
 197.335 E 0 Cg EP
 %%Page: 84 84
 %%BeginPageSetup
@@ -10245,7 +10239,7 @@ F0 .404(option is supplied, and)2.904 F F2(name)2.904 E F0 .404(is a v)
 .719(rather than the v)144 727.2 R .719(ariable it references.)-.25 F F1
 <ad6e>5.719 E F0 .719(has no ef)3.219 F .719(fect if the)-.25 F F1<ad66>
 3.22 E F0 .72(option is supplied.)3.22 F .72(If no options)5.72 F
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(84)197.335 E 0 Cg EP
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(84)197.335 E 0 Cg EP
 %%Page: 85 85
 %%BeginPageSetup
 BP
@@ -10394,7 +10388,7 @@ G 3.002(rb).15 G .502(ash-4.3 and later v)-3.002 F .502(ersions, the)
 -.15 F F2 -.27(BA)3.002 G(SH_COMP).27 E -.855(AT)-.666 G F0 -.25(va)
 3.607 G .502(riable is preferred, and it).25 F
 (is required for bash-5.1 and later v)108 722.4 Q(ersions.)-.15 E
-(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E(85)197.335 E 0 Cg EP
+(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E(85)197.335 E 0 Cg EP
 %%Page: 86 86
 %%BeginPageSetup
 BP
@@ -10498,7 +10492,7 @@ F 1.321(tional message to that ef)180 693.6 R 1.321(fect, e)-.25 F -.15
 (ve)-.25 G 3.821(nw).15 G 1.321
 (hen producing output that can be reused as input.)-3.821 F
 (Bash-5.1 suppresses that message when the)180 705.6 Q F1<ad6c>2.5 E F0
-(option is supplied.)2.5 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E
+(option is supplied.)2.5 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E
 (86)197.335 E 0 Cg EP
 %%Page: 87 87
 %%BeginPageSetup
@@ -10583,7 +10577,7 @@ E F0(The personal initialization \214le, e)144 667.2 Q -.15(xe)-.15 G
 (-shell startup \214le).15 E F5(~/.bash_lo)109.666 703.2 Q(gout)-.1 E F0
 (The indi)144 715.2 Q(vidual login shell cleanup \214le, e)-.25 E -.15
 (xe)-.15 G(cuted when a login shell e).15 E(xits)-.15 E(GNU Bash 5.2)72
-768 Q(2023 May 14)148.175 E(87)197.335 E 0 Cg EP
+768 Q(2023 May 23)148.175 E(87)197.335 E 0 Cg EP
 %%Page: 88 88
 %%BeginPageSetup
 BP
@@ -10646,7 +10640,7 @@ place the sequence of commands between parentheses to force it into a)
 -.25 F(subshell, which may be stopped as a unit.)108 542.4 Q(Array v)108
 559.2 Q(ariables may not \(yet\) be e)-.25 E(xported.)-.15 E
 (There may be only one acti)108 576 Q .3 -.15(ve c)-.25 H
-(oprocess at a time.).15 E(GNU Bash 5.2)72 768 Q(2023 May 14)148.175 E
+(oprocess at a time.).15 E(GNU Bash 5.2)72 768 Q(2023 May 23)148.175 E
 (88)197.335 E 0 Cg EP
 %%Trailer
 end
index 173c0d419693dc3b33c23871c4b7ed6ae77ef07e..d3e30f35c20b50012a26de6b2a38fdcc1208a132 100644 (file)
Binary files a/doc/bashref.dvi and b/doc/bashref.dvi differ
index ed654e8738048df97702dc8a9948571e55a8bf4f..52dfa2808c2796decb562130dd0aea69c57f3918 100644 (file)
@@ -4,9 +4,9 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <!-- This text is a brief description of the features that are present in
-the Bash shell (version 5.2, 14 May 2023).
+the Bash shell (version 5.2, 23 May 2023).
 
-This is Edition 5.2, last updated 14 May 2023,
+This is Edition 5.2, last updated 23 May 2023,
 of The GNU Bash Reference Manual,
 for Bash, Version 5.2.
 
@@ -77,10 +77,10 @@ Next: <a href="#Introduction" accesskey="n" rel="next">Introduction</a>, Previou
 <span id="Bash-Features-1"></span><h1 class="top">Bash Features</h1>
 
 <p>This text is a brief description of the features that are present in
-the Bash shell (version 5.2, 14 May 2023).
+the Bash shell (version 5.2, 23 May 2023).
 The Bash home page is <a href="http://www.gnu.org/software/bash/">http://www.gnu.org/software/bash/</a>.
 </p>
-<p>This is Edition 5.2, last updated 14 May 2023,
+<p>This is Edition 5.2, last updated 23 May 2023,
 of <cite>The GNU Bash Reference Manual</cite>,
 for <code>Bash</code>, Version 5.2.
 </p>
@@ -3085,7 +3085,7 @@ the parentheses make up the command; none are treated specially.
 and captures its output, again with trailing newlines removed.
 </p>
 <p>The character <var>c</var> following the open brace must be a space, tab,
-newline, &lsquo;<samp>(</samp>&rsquo;, or &lsquo;<samp>|</samp>&rsquo;, and the close brace must be in a position
+newline, or &lsquo;<samp>|</samp>&rsquo;, and the close brace must be in a position
 where a reserved word may appear (i.e., preceded by a command terminator
 such as semicolon).
 Bash allows the close brace to be joined to the remaining characters in
@@ -3104,11 +3104,8 @@ function is executing, and the <code>return</code> builtin forces
 however, the rest of the execution environment,
 including the positional parameters, is shared with the caller.
 </p>
-<p>If the first character following the open brace is a &lsquo;<samp>(</samp>&rsquo;,
-<var>command</var> is executed in a subshell, and <var>command</var> must be
-terminated by a &lsquo;<samp>)</samp>&rsquo;. This is similar to the <code>(</code> compound
-command (see <a href="#Command-Grouping">Grouping Commands</a>).
-If the first character is a &lsquo;<samp>|</samp>&rsquo;, the construct expands to the
+<p>If the first character following the open brace
+is a &lsquo;<samp>|</samp>&rsquo;, the construct expands to the
 value of the <code>REPLY</code> shell variable after <var>command</var> executes,
 without removing any trailing newlines,
 and the standard output of <var>command</var> remains the same as in the
@@ -3122,7 +3119,9 @@ as with any local variable.
 shell variable <code>X</code> unchanged in the current execution environment:
 </p>
 <div class="example">
-<pre class="example">${ local X=12345 ; echo $X; }
+<pre class="example">
+
+${ local X=12345 ; echo $X; }
 </pre></div>
 
 <p>(not declaring <code>X</code> as local would modify its value in the current
index 7094861245451968c974b8be60e73734e7e6f905..4b4c0a5480cabeea02fc9e9209bc1757d4e6d8d0 100644 (file)
@@ -2,9 +2,9 @@ This is bashref.info, produced by makeinfo version 6.8 from
 bashref.texi.
 
 This text is a brief description of the features that are present in the
-Bash shell (version 5.2, 14 May 2023).
+Bash shell (version 5.2, 23 May 2023).
 
-   This is Edition 5.2, last updated 14 May 2023, of 'The GNU Bash
+   This is Edition 5.2, last updated 23 May 2023, of 'The GNU Bash
 Reference Manual', for 'Bash', Version 5.2.
 
    Copyright (C) 1988-2023 Free Software Foundation, Inc.
@@ -27,10 +27,10 @@ Bash Features
 *************
 
 This text is a brief description of the features that are present in the
-Bash shell (version 5.2, 14 May 2023).  The Bash home page is
+Bash shell (version 5.2, 23 May 2023).  The Bash home page is
 <http://www.gnu.org/software/bash/>.
 
-   This is Edition 5.2, last updated 14 May 2023, of 'The GNU Bash
+   This is Edition 5.2, last updated 23 May 2023, of 'The GNU Bash
 Reference Manual', for 'Bash', Version 5.2.
 
    Bash contains features that appear in other popular shells, and some
@@ -2267,7 +2267,7 @@ which executes COMMAND in the current execution environment and captures
 its output, again with trailing newlines removed.
 
    The character C following the open brace must be a space, tab,
-newline, '(', or '|', and the close brace must be in a position where a
+newline, or '|', and the close brace must be in a position where a
 reserved word may appear (i.e., preceded by a command terminator such as
 semicolon).  Bash allows the close brace to be joined to the remaining
 characters in the word without being followed by a shell metacharacter
@@ -2283,20 +2283,18 @@ function is executing, and the 'return' builtin forces COMMAND to
 complete; however, the rest of the execution environment, including the
 positional parameters, is shared with the caller.
 
-   If the first character following the open brace is a '(', COMMAND is
-executed in a subshell, and COMMAND must be terminated by a ')'.  This
-is similar to the '(' compound command (*note Command Grouping::).  If
-the first character is a '|', the construct expands to the value of the
-'REPLY' shell variable after COMMAND executes, without removing any
-trailing newlines, and the standard output of COMMAND remains the same
-as in the calling shell.  Bash creates 'REPLY' as an initially-unset
-local variable when COMMAND executes, and restores 'REPLY' to the value
-it had before the command substitution after COMMAND completes, as with
-any local variable.
+   If the first character following the open brace is a '|', the
+construct expands to the value of the 'REPLY' shell variable after
+COMMAND executes, without removing any trailing newlines, and the
+standard output of COMMAND remains the same as in the calling shell.
+Bash creates 'REPLY' as an initially-unset local variable when COMMAND
+executes, and restores 'REPLY' to the value it had before the command
+substitution after COMMAND completes, as with any local variable.
 
    For example, this construct expands to '12345', and leaves the shell
 variable 'X' unchanged in the current execution environment:
 
+
      ${ local X=12345 ; echo $X; }
 
 (not declaring 'X' as local would modify its value in the current
@@ -12806,102 +12804,102 @@ Node: Brace Expansion\7f72638
 Node: Tilde Expansion\7f75372
 Node: Shell Parameter Expansion\7f77993
 Node: Command Substitution\7f96395
-Node: Arithmetic Expansion\7f100047
-Node: Process Substitution\7f101015
-Node: Word Splitting\7f102135
-Node: Filename Expansion\7f104183
-Node: Pattern Matching\7f107116
-Node: Quote Removal\7f112118
-Node: Redirections\7f112413
-Node: Executing Commands\7f122106
-Node: Simple Command Expansion\7f122776
-Node: Command Search and Execution\7f124886
-Node: Command Execution Environment\7f127273
-Node: Environment\7f130308
-Node: Exit Status\7f131971
-Node: Signals\7f133755
-Node: Shell Scripts\7f137204
-Node: Shell Builtin Commands\7f140231
-Node: Bourne Shell Builtins\7f142269
-Node: Bash Builtins\7f164603
-Node: Modifying Shell Behavior\7f196602
-Node: The Set Builtin\7f196947
-Node: The Shopt Builtin\7f207545
-Node: Special Builtins\7f223457
-Node: Shell Variables\7f224436
-Node: Bourne Shell Variables\7f224873
-Node: Bash Variables\7f226977
-Node: Bash Features\7f261042
-Node: Invoking Bash\7f262055
-Node: Bash Startup Files\7f268068
-Node: Interactive Shells\7f273199
-Node: What is an Interactive Shell?\7f273610
-Node: Is this Shell Interactive?\7f274259
-Node: Interactive Shell Behavior\7f275074
-Node: Bash Conditional Expressions\7f278703
-Node: Shell Arithmetic\7f283345
-Node: Aliases\7f286306
-Node: Arrays\7f289200
-Node: The Directory Stack\7f295763
-Node: Directory Stack Builtins\7f296547
-Node: Controlling the Prompt\7f300807
-Node: The Restricted Shell\7f303772
-Node: Bash POSIX Mode\7f306382
-Node: Shell Compatibility Mode\7f322175
-Node: Job Control\7f330419
-Node: Job Control Basics\7f330879
-Node: Job Control Builtins\7f335881
-Node: Job Control Variables\7f341676
-Node: Command Line Editing\7f342832
-Node: Introduction and Notation\7f344503
-Node: Readline Interaction\7f346126
-Node: Readline Bare Essentials\7f347317
-Node: Readline Movement Commands\7f349106
-Node: Readline Killing Commands\7f350066
-Node: Readline Arguments\7f351987
-Node: Searching\7f353031
-Node: Readline Init File\7f355217
-Node: Readline Init File Syntax\7f356478
-Node: Conditional Init Constructs\7f380269
-Node: Sample Init File\7f384465
-Node: Bindable Readline Commands\7f387589
-Node: Commands For Moving\7f388793
-Node: Commands For History\7f390844
-Node: Commands For Text\7f395838
-Node: Commands For Killing\7f399487
-Node: Numeric Arguments\7f402520
-Node: Commands For Completion\7f403659
-Node: Keyboard Macros\7f407850
-Node: Miscellaneous Commands\7f408538
-Node: Readline vi Mode\7f414576
-Node: Programmable Completion\7f415483
-Node: Programmable Completion Builtins\7f423263
-Node: A Programmable Completion Example\7f434251
-Node: Using History Interactively\7f439499
-Node: Bash History Facilities\7f440183
-Node: Bash History Builtins\7f443188
-Node: History Interaction\7f448212
-Node: Event Designators\7f451832
-Node: Word Designators\7f453186
-Node: Modifiers\7f454946
-Node: Installing Bash\7f456754
-Node: Basic Installation\7f457891
-Node: Compilers and Options\7f461613
-Node: Compiling For Multiple Architectures\7f462354
-Node: Installation Names\7f464046
-Node: Specifying the System Type\7f466155
-Node: Sharing Defaults\7f466872
-Node: Operation Controls\7f467545
-Node: Optional Features\7f468503
-Node: Reporting Bugs\7f479722
-Node: Major Differences From The Bourne Shell\7f481056
-Node: GNU Free Documentation License\7f497905
-Node: Indexes\7f523082
-Node: Builtin Index\7f523536
-Node: Reserved Word Index\7f530637
-Node: Variable Index\7f533085
-Node: Function Index\7f550073
-Node: Concept Index\7f563857
+Node: Arithmetic Expansion\7f99859
+Node: Process Substitution\7f100827
+Node: Word Splitting\7f101947
+Node: Filename Expansion\7f103995
+Node: Pattern Matching\7f106928
+Node: Quote Removal\7f111930
+Node: Redirections\7f112225
+Node: Executing Commands\7f121918
+Node: Simple Command Expansion\7f122588
+Node: Command Search and Execution\7f124698
+Node: Command Execution Environment\7f127085
+Node: Environment\7f130120
+Node: Exit Status\7f131783
+Node: Signals\7f133567
+Node: Shell Scripts\7f137016
+Node: Shell Builtin Commands\7f140043
+Node: Bourne Shell Builtins\7f142081
+Node: Bash Builtins\7f164415
+Node: Modifying Shell Behavior\7f196414
+Node: The Set Builtin\7f196759
+Node: The Shopt Builtin\7f207357
+Node: Special Builtins\7f223269
+Node: Shell Variables\7f224248
+Node: Bourne Shell Variables\7f224685
+Node: Bash Variables\7f226789
+Node: Bash Features\7f260854
+Node: Invoking Bash\7f261867
+Node: Bash Startup Files\7f267880
+Node: Interactive Shells\7f273011
+Node: What is an Interactive Shell?\7f273422
+Node: Is this Shell Interactive?\7f274071
+Node: Interactive Shell Behavior\7f274886
+Node: Bash Conditional Expressions\7f278515
+Node: Shell Arithmetic\7f283157
+Node: Aliases\7f286118
+Node: Arrays\7f289012
+Node: The Directory Stack\7f295575
+Node: Directory Stack Builtins\7f296359
+Node: Controlling the Prompt\7f300619
+Node: The Restricted Shell\7f303584
+Node: Bash POSIX Mode\7f306194
+Node: Shell Compatibility Mode\7f321987
+Node: Job Control\7f330231
+Node: Job Control Basics\7f330691
+Node: Job Control Builtins\7f335693
+Node: Job Control Variables\7f341488
+Node: Command Line Editing\7f342644
+Node: Introduction and Notation\7f344315
+Node: Readline Interaction\7f345938
+Node: Readline Bare Essentials\7f347129
+Node: Readline Movement Commands\7f348918
+Node: Readline Killing Commands\7f349878
+Node: Readline Arguments\7f351799
+Node: Searching\7f352843
+Node: Readline Init File\7f355029
+Node: Readline Init File Syntax\7f356290
+Node: Conditional Init Constructs\7f380081
+Node: Sample Init File\7f384277
+Node: Bindable Readline Commands\7f387401
+Node: Commands For Moving\7f388605
+Node: Commands For History\7f390656
+Node: Commands For Text\7f395650
+Node: Commands For Killing\7f399299
+Node: Numeric Arguments\7f402332
+Node: Commands For Completion\7f403471
+Node: Keyboard Macros\7f407662
+Node: Miscellaneous Commands\7f408350
+Node: Readline vi Mode\7f414388
+Node: Programmable Completion\7f415295
+Node: Programmable Completion Builtins\7f423075
+Node: A Programmable Completion Example\7f434063
+Node: Using History Interactively\7f439311
+Node: Bash History Facilities\7f439995
+Node: Bash History Builtins\7f443000
+Node: History Interaction\7f448024
+Node: Event Designators\7f451644
+Node: Word Designators\7f452998
+Node: Modifiers\7f454758
+Node: Installing Bash\7f456566
+Node: Basic Installation\7f457703
+Node: Compilers and Options\7f461425
+Node: Compiling For Multiple Architectures\7f462166
+Node: Installation Names\7f463858
+Node: Specifying the System Type\7f465967
+Node: Sharing Defaults\7f466684
+Node: Operation Controls\7f467357
+Node: Optional Features\7f468315
+Node: Reporting Bugs\7f479534
+Node: Major Differences From The Bourne Shell\7f480868
+Node: GNU Free Documentation License\7f497717
+Node: Indexes\7f522894
+Node: Builtin Index\7f523348
+Node: Reserved Word Index\7f530449
+Node: Variable Index\7f532897
+Node: Function Index\7f549885
+Node: Concept Index\7f563669
 \1f
 End Tag Table
 
index 23de8416d63783488b3bdf1546d8e8be23e008ff..433c912679b9ec6746df793d6b3ae917dd1edaac 100644 (file)
@@ -1,12 +1,11 @@
-This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021/MacPorts 2021.58693_0) (preloaded format=pdfetex 2021.8.30)  20 MAY 2023 11:02
+This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021/MacPorts 2021.58693_0) (preloaded format=pdfetex 2021.8.30)  23 MAY 2023 11:32
 entering extended mode
  restricted \write18 enabled.
  file:line:error style messages enabled.
  %&-line parsing enabled.
-**\input /usr/local/src/bash/bash-20230515/doc/bashref.texi \input /usr/local/s
-rc/bash/bash-20230515/doc/bashref.texi
-(/usr/local/src/bash/bash-20230515/doc/bashref.texi
-(/usr/local/src/bash/bash-20230515/doc/texinfo.tex
+**\input /usr/local/src/bash/bash-20230522/doc/bashref.texi
+(/usr/local/src/bash/bash-20230522/doc/bashref.texi
+(/usr/local/src/bash/bash-20230522/doc/texinfo.tex
 Loading texinfo [version 2015-11-22.14]:
 \outerhsize=\dimen16
 \outervsize=\dimen17
@@ -162,15 +161,15 @@ This is `epsf.tex' v2.7.4 <14 February 2011>
 texinfo.tex: doing @include of version.texi
 
 
-(/usr/local/src/bash/bash-20230515/doc/version.texi) [1{/opt/local/var/db/texmf
+(/usr/local/src/bash/bash-20230522/doc/version.texi) [1{/opt/local/var/db/texmf
 /fonts/map/pdftex/updmap/pdftex.map}] [2]
-(/usr/local/build/bash/bash-20230515/doc/bashref.toc [-1] [-2] [-3]) [-4]
-(/usr/local/build/bash/bash-20230515/doc/bashref.toc)
-(/usr/local/build/bash/bash-20230515/doc/bashref.toc) Chapter 1
+(/usr/local/build/bash/bash-20230522/doc/bashref.toc [-1] [-2] [-3]) [-4]
+(/usr/local/build/bash/bash-20230522/doc/bashref.toc)
+(/usr/local/build/bash/bash-20230522/doc/bashref.toc) Chapter 1
 \openout0 = `bashref.toc'.
 
 
-(/usr/local/build/bash/bash-20230515/doc/bashref.aux)
+(/usr/local/build/bash/bash-20230522/doc/bashref.aux)
 \openout1 = `bashref.aux'.
 
  Chapter 2 [1] [2]
@@ -230,7 +229,7 @@ Overfull \hbox (5.95723pt too wide) in paragraph at lines 724--725
  [49] [50] [51]
 [52] [53] [54] [55] [56] [57] [58] [59] [60] [61] [62] [63] [64] [65] [66]
 [67]
-Overfull \hbox (38.26585pt too wide) in paragraph at lines 5360--5360
+Overfull \hbox (38.26585pt too wide) in paragraph at lines 5358--5358
  []@texttt set [-abefhkmnptuvxBCEHPT] [-o @textttsl option-name@texttt ] [--] [
 -] [@textttsl ar-gu-ment []@texttt ][] 
 
@@ -243,7 +242,7 @@ Overfull \hbox (38.26585pt too wide) in paragraph at lines 5360--5360
 .etc.
 
 
-Overfull \hbox (38.26585pt too wide) in paragraph at lines 5361--5361
+Overfull \hbox (38.26585pt too wide) in paragraph at lines 5359--5359
  []@texttt set [+abefhkmnptuvxBCEHPT] [+o @textttsl option-name@texttt ] [--] [
 -] [@textttsl ar-gu-ment []@texttt ][] 
 
@@ -262,7 +261,7 @@ Overfull \hbox (38.26585pt too wide) in paragraph at lines 5361--5361
 [118] [119]
 texinfo.tex: doing @include of rluser.texi
 
- (/usr/local/src/bash/bash-20230515/lib/readline/doc/rluser.texi
+ (/usr/local/src/bash/bash-20230522/lib/readline/doc/rluser.texi
 Chapter 8 [120] [121] [122] [123] [124] [125] [126] [127] [128] [129] [130]
 [131]
 Underfull \hbox (badness 7540) in paragraph at lines 874--880
@@ -312,10 +311,10 @@ gnored[]
 texinfo.tex: doing @include of hsuser.texi
 
 
-(/usr/local/src/bash/bash-20230515/lib/readline/doc/hsuser.texi Chapter 9
+(/usr/local/src/bash/bash-20230522/lib/readline/doc/hsuser.texi Chapter 9
 [155] [156] [157] [158] [159] [160]) Chapter 10 [161] [162] [163] [164]
 [165]
-Underfull \hbox (badness 10000) in paragraph at lines 9640--9649
+Underfull \hbox (badness 10000) in paragraph at lines 9638--9647
 []@textrm All of the fol-low-ing op-tions ex-cept for `@texttt alt-array-implem
 entation[]@textrm '[],
 
@@ -328,7 +327,7 @@ entation[]@textrm '[],
 .etc.
 
 
-Underfull \hbox (badness 10000) in paragraph at lines 9640--9649
+Underfull \hbox (badness 10000) in paragraph at lines 9638--9647
 @textrm `@texttt disabled-builtins[]@textrm '[], `@texttt direxpand-default[]@t
 extrm '[], `@texttt strict-posix-default[]@textrm '[], and
 
@@ -344,7 +343,7 @@ extrm '[], `@texttt strict-posix-default[]@textrm '[], and
 [175] [176] Appendix C [177]
 texinfo.tex: doing @include of fdl.texi
 
- (/usr/local/src/bash/bash-20230515/doc/fdl.texi
+ (/usr/local/src/bash/bash-20230522/doc/fdl.texi
 [178] [179] [180] [181] [182] [183] [184]) Appendix D [185] [186] [187]
 [188] [189] [190] [191] [192] [193] [194] ) 
 Here is how much of TeX's memory you used:
@@ -354,7 +353,7 @@ Here is how much of TeX's memory you used:
  4869 multiletter control sequences out of 15000+600000
  34315 words of font info for 116 fonts, out of 8000000 for 9000
  51 hyphenation exceptions out of 8191
- 16i,6n,16p,389b,983s stack positions out of 5000i,500n,10000p,200000b,80000s
+ 16i,6n,16p,331b,983s stack positions out of 5000i,500n,10000p,200000b,80000s
 {/opt/local/share/texmf-texlive/font
 s/enc/dvips/cm-super/cm-super-t1.enc}</opt/local/share/texmf-texlive/fonts/type
 1/public/amsfonts/cm/cmbx12.pfb></opt/local/share/texmf-texlive/fonts/type1/pub
@@ -372,10 +371,10 @@ texlive/fonts/type1/public/amsfonts/cm/cmtt12.pfb></opt/local/share/texmf-texli
 ve/fonts/type1/public/amsfonts/cm/cmtt9.pfb></opt/local/share/texmf-texlive/fon
 ts/type1/public/cm-super/sfrm1095.pfb></opt/local/share/texmf-texlive/fonts/typ
 e1/public/cm-super/sfrm1440.pfb>
-Output written on bashref.pdf (200 pages, 807897 bytes).
+Output written on bashref.pdf (200 pages, 807513 bytes).
 PDF statistics:
- 2800 PDF objects out of 2984 (max. 8388607)
- 2553 compressed objects within 26 object streams
+ 2799 PDF objects out of 2984 (max. 8388607)
+ 2552 compressed objects within 26 object streams
  328 named destinations out of 1000 (max. 500000)
  1157 words of extra memory for PDF output out of 10000 (max. 10000000)
 
index c9abc25ce6951b2c1a00ec8f062d0d699f8d9e6b..c3719850dbf2a5aaac41160b28ec65096f0a2576 100644 (file)
Binary files a/doc/bashref.pdf and b/doc/bashref.pdf differ
index ea3a255c89d3b4c42e98059bedfcb4c9e4227936..59902caa7f49aca0c406ae56976bedbf577ba526 100644 (file)
@@ -1,8 +1,8 @@
 %!PS-Adobe-2.0
 %%Creator: dvips(k) 2022.1 (TeX Live 2022)  Copyright 2022 Radical Eye Software
 %%Title: bashref.dvi
-%%CreationDate: Tue Apr 18 14:26:04 2023
-%%Pages: 199
+%%CreationDate: Mon May 22 13:42:16 2023
+%%Pages: 200
 %%PageOrder: Ascend
 %%BoundingBox: 0 0 612 792
 %%DocumentFonts: CMBX12 CMR10 CMTT10 CMSL10 CMSY10 CMMI12 CMMI10 CMCSC10
@@ -12,7 +12,7 @@
 %DVIPSWebPage: (www.radicaleye.com)
 %DVIPSCommandLine: dvips -D 600 -t letter -o bashref.ps bashref.dvi
 %DVIPSParameters: dpi=600
-%DVIPSSource:  TeX output 2023.04.18:1026
+%DVIPSSource:  TeX output 2023.05.22:0942
 %%BeginProcSet: tex.pro 0 0
 %!
 /TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S
@@ -7614,7 +7614,7 @@ ifelse
 TeXDict begin 1 0 bop 150 1318 a Fv(Bash)64 b(Reference)j(Man)-5
 b(ual)p 150 1385 3600 34 v 2361 1481 a Fu(Reference)31
 b(Do)s(cumen)m(tation)i(for)d(Bash)2428 1589 y(Edition)h(5.2,)g(for)f
-Ft(Bash)g Fu(V)-8 b(ersion)31 b(5.2.)3333 1697 y(April)f(2023)150
+Ft(Bash)g Fu(V)-8 b(ersion)31 b(5.2.)3364 1697 y(Ma)m(y)g(2023)150
 4927 y Fs(Chet)45 b(Ramey)-11 b(,)46 b(Case)g(W)-11 b(estern)46
 b(Reserv)l(e)g(Univ)l(ersit)l(y)150 5068 y(Brian)f(F)-11
 b(o)l(x,)45 b(F)-11 b(ree)45 b(Soft)l(w)l(are)h(F)-11
@@ -7622,15 +7622,16 @@ b(oundation)p 150 5141 3600 17 v eop end
 %%Page: 2 2
 TeXDict begin 2 1 bop 150 4279 a Fu(This)35 b(text)h(is)g(a)g(brief)f
 (description)h(of)f(the)h(features)g(that)g(are)g(presen)m(t)g(in)f
-(the)h(Bash)f(shell)h(\(v)m(ersion)150 4389 y(5.2,)c(17)f(April)f
-(2023\).)150 4523 y(This)j(is)h(Edition)f(5.2,)j(last)f(up)s(dated)d
-(17)j(April)e(2023,)k(of)d Fr(The)f(GNU)h(Bash)g(Reference)g(Man)m(ual)
-p Fu(,)i(for)150 4633 y Ft(Bash)p Fu(,)29 b(V)-8 b(ersion)31
-b(5.2.)150 4767 y(Cop)m(yrigh)m(t)602 4764 y(c)577 4767
-y Fq(\015)f Fu(1988{2023)35 b(F)-8 b(ree)31 b(Soft)m(w)m(are)h(F)-8
-b(oundation,)31 b(Inc.)390 4902 y(P)m(ermission)21 b(is)f(gran)m(ted)h
-(to)g(cop)m(y)-8 b(,)24 b(distribute)c(and/or)h(mo)s(dify)e(this)i(do)s
-(cumen)m(t)f(under)f(the)390 5011 y(terms)25 b(of)h(the)f(GNU)h(F)-8
+(the)h(Bash)f(shell)h(\(v)m(ersion)150 4389 y(5.2,)c(14)f(Ma)m(y)g
+(2023\).)150 4523 y(This)k(is)h(Edition)f(5.2,)k(last)d(up)s(dated)e
+(14)j(Ma)m(y)g(2023,)i(of)c Fr(The)h(GNU)g(Bash)g(Reference)g(Man)m
+(ual)p Fu(,)i(for)150 4633 y Ft(Bash)p Fu(,)29 b(V)-8
+b(ersion)31 b(5.2.)150 4767 y(Cop)m(yrigh)m(t)602 4764
+y(c)577 4767 y Fq(\015)f Fu(1988{2023)35 b(F)-8 b(ree)31
+b(Soft)m(w)m(are)h(F)-8 b(oundation,)31 b(Inc.)390 4902
+y(P)m(ermission)21 b(is)f(gran)m(ted)h(to)g(cop)m(y)-8
+b(,)24 b(distribute)c(and/or)h(mo)s(dify)e(this)i(do)s(cumen)m(t)f
+(under)f(the)390 5011 y(terms)25 b(of)h(the)f(GNU)h(F)-8
 b(ree)27 b(Do)s(cumen)m(tation)g(License,)g(V)-8 b(ersion)26
 b(1.3)g(or)f(an)m(y)h(later)g(v)m(ersion)390 5121 y(published)43
 b(b)m(y)h(the)h(F)-8 b(ree)46 b(Soft)m(w)m(are)g(F)-8
@@ -7763,368 +7764,368 @@ g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)33 b Fu(34)399 4740
 y(3.5.5)93 b(Arithmetic)31 b(Expansion)c Fn(:)15 b(:)h(:)f(:)g(:)h(:)f
 (:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)
 g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)40 b
-Fu(34)399 4849 y(3.5.6)93 b(Pro)s(cess)30 b(Substitution)15
+Fu(35)399 4849 y(3.5.6)93 b(Pro)s(cess)30 b(Substitution)15
 b Fn(:)g(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
 h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)28 b Fu(35)399 4959 y(3.5.7)93 b(W)-8
 b(ord)31 b(Splitting)d Fn(:)15 b(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)
 g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)41
-b Fu(35)399 5068 y(3.5.8)93 b(Filename)32 b(Expansion)22
+b Fu(36)399 5068 y(3.5.8)93 b(Filename)32 b(Expansion)22
 b Fn(:)14 b(:)h(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)
 f(:)h(:)f(:)g(:)35 b Fu(36)524 5178 y(3.5.8.1)93 b(P)m(attern)31
 b(Matc)m(hing)14 b Fn(:)k(:)d(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
-h(:)f(:)g(:)h(:)f(:)h(:)27 b Fu(36)399 5288 y(3.5.9)93
+h(:)f(:)g(:)h(:)f(:)h(:)27 b Fu(37)399 5288 y(3.5.9)93
 b(Quote)31 b(Remo)m(v)-5 b(al)17 b Fn(:)g(:)e(:)h(:)f(:)h(:)f(:)g(:)h
 (:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)
 f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)30
-b Fu(38)p eop end
+b Fu(39)p eop end
 %%Page: -2 4
 TeXDict begin -2 3 bop 3699 -116 a Fu(ii)275 83 y(3.6)92
 b(Redirections)14 b Fn(:)i(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)
 f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
-(:)h(:)f(:)g(:)27 b Fu(38)399 193 y(3.6.1)93 b(Redirecting)31
+(:)h(:)f(:)g(:)27 b Fu(39)399 193 y(3.6.1)93 b(Redirecting)31
 b(Input)11 b Fn(:)j(:)i(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
-h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)24 b Fu(39)399 302
+h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)24 b Fu(40)399 302
 y(3.6.2)93 b(Redirecting)31 b(Output)15 b Fn(:)f(:)i(:)f(:)h(:)f(:)g(:)
 h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)28
-b Fu(39)399 412 y(3.6.3)93 b(App)s(ending)28 b(Redirected)k(Output)20
+b Fu(40)399 412 y(3.6.3)93 b(App)s(ending)28 b(Redirected)k(Output)20
 b Fn(:)14 b(:)h(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
 (:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)33 b Fu(40)399
 521 y(3.6.4)93 b(Redirecting)31 b(Standard)e(Output)h(and)f(Standard)h
 (Error)16 b Fn(:)e(:)i(:)f(:)g(:)h(:)f(:)h(:)f(:)29 b
-Fu(40)399 631 y(3.6.5)93 b(App)s(ending)28 b(Standard)i(Output)f(and)h
+Fu(41)399 631 y(3.6.5)93 b(App)s(ending)28 b(Standard)i(Output)f(and)h
 (Standard)f(Error)d Fn(:)15 b(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)40
-b Fu(40)399 741 y(3.6.6)93 b(Here)31 b(Do)s(cumen)m(ts)15
+b Fu(41)399 741 y(3.6.6)93 b(Here)31 b(Do)s(cumen)m(ts)15
 b Fn(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
 h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
-(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)27 b Fu(40)399 850 y(3.6.7)93
+(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)27 b Fu(41)399 850 y(3.6.7)93
 b(Here)31 b(Strings)16 b Fn(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)
 f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)29
-b Fu(41)399 960 y(3.6.8)93 b(Duplicating)32 b(File)f(Descriptors)25
+b Fu(42)399 960 y(3.6.8)93 b(Duplicating)32 b(File)f(Descriptors)25
 b Fn(:)15 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)37
-b Fu(41)399 1069 y(3.6.9)93 b(Mo)m(ving)32 b(File)f(Descriptors)d
+b Fu(42)399 1069 y(3.6.9)93 b(Mo)m(ving)32 b(File)f(Descriptors)d
 Fn(:)16 b(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
 (:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
-40 b Fu(41)399 1179 y(3.6.10)93 b(Op)s(ening)29 b(File)j(Descriptors)f
+40 b Fu(42)399 1179 y(3.6.10)93 b(Op)s(ening)29 b(File)j(Descriptors)f
 (for)f(Reading)h(and)f(W)-8 b(riting)29 b Fn(:)15 b(:)h(:)f(:)g(:)h(:)f
 (:)41 b Fu(42)275 1289 y(3.7)92 b(Executing)31 b(Commands)24
 b Fn(:)15 b(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
 (:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)
-g(:)h(:)f(:)h(:)f(:)g(:)h(:)38 b Fu(42)399 1398 y(3.7.1)93
+g(:)h(:)f(:)h(:)f(:)g(:)h(:)38 b Fu(43)399 1398 y(3.7.1)93
 b(Simple)30 b(Command)f(Expansion)11 b Fn(:)k(:)g(:)h(:)f(:)g(:)h(:)f
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
-h(:)f(:)g(:)h(:)f(:)24 b Fu(42)399 1508 y(3.7.2)93 b(Command)29
+h(:)f(:)g(:)h(:)f(:)24 b Fu(43)399 1508 y(3.7.2)93 b(Command)29
 b(Searc)m(h)i(and)f(Execution)15 b Fn(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
-28 b Fu(42)399 1617 y(3.7.3)93 b(Command)29 b(Execution)i(En)m
+28 b Fu(43)399 1617 y(3.7.3)93 b(Command)29 b(Execution)i(En)m
 (vironmen)m(t)17 b Fn(:)e(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
-(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)30 b Fu(43)399
+(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)30 b Fu(44)399
 1727 y(3.7.4)93 b(En)m(vironmen)m(t)26 b Fn(:)16 b(:)f(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
 h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
-(:)f(:)g(:)h(:)39 b Fu(44)399 1836 y(3.7.5)93 b(Exit)31
+(:)f(:)g(:)h(:)39 b Fu(45)399 1836 y(3.7.5)93 b(Exit)31
 b(Status)16 b Fn(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)
 f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)29
 b Fu(45)399 1946 y(3.7.6)93 b(Signals)23 b Fn(:)15 b(:)h(:)f(:)h(:)f(:)
 g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
 (:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
-h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)36 b Fu(45)275
+h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)36 b Fu(46)275
 2056 y(3.8)92 b(Shell)30 b(Scripts)12 b Fn(:)i(:)i(:)f(:)h(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)
 f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
-(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)25 b Fu(46)150 2306
+(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)25 b Fu(47)150 2306
 y Fs(4)135 b(Shell)45 b(Builtin)g(Commands)14 b Fo(:)20
 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g
-(:)h(:)f(:)h(:)f(:)27 b Fs(48)275 2443 y Fu(4.1)92 b(Bourne)30
+(:)h(:)f(:)h(:)f(:)27 b Fs(49)275 2443 y Fu(4.1)92 b(Bourne)30
 b(Shell)g(Builtins)16 b Fn(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
 h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)29
-b Fu(48)275 2553 y(4.2)92 b(Bash)30 b(Builtin)h(Commands)13
+b Fu(49)275 2553 y(4.2)92 b(Bash)30 b(Builtin)h(Commands)13
 b Fn(:)h(:)i(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
 h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
-(:)f(:)g(:)h(:)f(:)26 b Fu(56)275 2663 y(4.3)92 b(Mo)s(difying)30
+(:)f(:)g(:)h(:)f(:)26 b Fu(57)275 2663 y(4.3)92 b(Mo)s(difying)30
 b(Shell)g(Beha)m(vior)18 b Fn(:)f(:)e(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
-h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)31 b Fu(67)399
+h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)31 b Fu(68)399
 2772 y(4.3.1)93 b(The)30 b(Set)g(Builtin)14 b Fn(:)i(:)f(:)h(:)f(:)g(:)
 h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
 (:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
-f(:)g(:)27 b Fu(67)399 2882 y(4.3.2)93 b(The)30 b(Shopt)f(Builtin)21
+f(:)g(:)27 b Fu(68)399 2882 y(4.3.2)93 b(The)30 b(Shopt)f(Builtin)21
 b Fn(:)16 b(:)g(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
-h(:)f(:)h(:)f(:)g(:)h(:)34 b Fu(71)275 2991 y(4.4)92
+h(:)f(:)h(:)f(:)g(:)h(:)34 b Fu(72)275 2991 y(4.4)92
 b(Sp)s(ecial)30 b(Builtins)9 b Fn(:)16 b(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
 f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
 (:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
-f(:)g(:)h(:)f(:)22 b Fu(78)150 3242 y Fs(5)135 b(Shell)45
+f(:)g(:)h(:)f(:)22 b Fu(79)150 3242 y Fs(5)135 b(Shell)45
 b(V)-11 b(ariables)11 b Fo(:)20 b(:)g(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f
 (:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)
-f(:)h(:)f(:)g(:)h(:)f(:)24 b Fs(79)275 3379 y Fu(5.1)92
+f(:)h(:)f(:)g(:)h(:)f(:)24 b Fs(80)275 3379 y Fu(5.1)92
 b(Bourne)30 b(Shell)g(V)-8 b(ariables)10 b Fn(:)17 b(:)e(:)g(:)h(:)f(:)
 h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
-23 b Fu(79)275 3489 y(5.2)92 b(Bash)30 b(V)-8 b(ariables)26
+23 b Fu(80)275 3489 y(5.2)92 b(Bash)30 b(V)-8 b(ariables)26
 b Fn(:)16 b(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
 (:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
 f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)38
-b Fu(79)150 3739 y Fs(6)135 b(Bash)44 b(F)-11 b(eatures)32
+b Fu(80)150 3739 y Fs(6)135 b(Bash)44 b(F)-11 b(eatures)32
 b Fo(:)19 b(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h
 (:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)
-44 b Fs(92)275 3876 y Fu(6.1)92 b(In)m(v)m(oking)31 b(Bash)16
+44 b Fs(93)275 3876 y Fu(6.1)92 b(In)m(v)m(oking)31 b(Bash)16
 b Fn(:)g(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)
 f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)29
-b Fu(92)275 3986 y(6.2)92 b(Bash)30 b(Startup)g(Files)f
+b Fu(93)275 3986 y(6.2)92 b(Bash)30 b(Startup)g(Files)f
 Fn(:)15 b(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
 (:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)
-g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)41 b Fu(94)275
+g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)41 b Fu(95)275
 4095 y(6.3)92 b(In)m(teractiv)m(e)32 b(Shells)19 b Fn(:)d(:)f(:)h(:)f
 (:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)
 g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
-(:)h(:)f(:)g(:)h(:)f(:)h(:)32 b Fu(95)399 4205 y(6.3.1)93
+(:)h(:)f(:)g(:)h(:)f(:)h(:)32 b Fu(96)399 4205 y(6.3.1)93
 b(What)31 b(is)f(an)h(In)m(teractiv)m(e)h(Shell?)25 b
 Fn(:)16 b(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)38
-b Fu(96)399 4315 y(6.3.2)93 b(Is)30 b(this)g(Shell)g(In)m(teractiv)m
+b Fu(97)399 4315 y(6.3.2)93 b(Is)30 b(this)g(Shell)g(In)m(teractiv)m
 (e?)22 b Fn(:)d(:)c(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
-h(:)35 b Fu(96)399 4424 y(6.3.3)93 b(In)m(teractiv)m(e)33
+h(:)35 b Fu(97)399 4424 y(6.3.3)93 b(In)m(teractiv)m(e)33
 b(Shell)d(Beha)m(vior)11 b Fn(:)17 b(:)e(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)
 f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
-(:)h(:)f(:)g(:)h(:)f(:)24 b Fu(96)275 4534 y(6.4)92 b(Bash)30
+(:)h(:)f(:)g(:)h(:)f(:)24 b Fu(97)275 4534 y(6.4)92 b(Bash)30
 b(Conditional)h(Expressions)10 b Fn(:)k(:)i(:)f(:)h(:)f(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
-h(:)f(:)h(:)f(:)g(:)h(:)f(:)23 b Fu(97)275 4643 y(6.5)92
-b(Shell)30 b(Arithmetic)13 b Fn(:)k(:)e(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
-(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)
-g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
-(:)h(:)26 b Fu(99)275 4753 y(6.6)92 b(Aliases)18 b Fn(:)e(:)g(:)f(:)g
+h(:)f(:)h(:)f(:)g(:)h(:)f(:)23 b Fu(98)275 4643 y(6.5)92
+b(Shell)30 b(Arithmetic)11 b Fn(:)16 b(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f
+(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
+h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
+(:)h(:)24 b Fu(100)275 4753 y(6.6)92 b(Aliases)18 b Fn(:)e(:)g(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)
 h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)31
-b Fu(101)275 4863 y(6.7)92 b(Arra)m(ys)23 b Fn(:)15 b(:)h(:)f(:)g(:)h
+b Fu(102)275 4863 y(6.7)92 b(Arra)m(ys)23 b Fn(:)15 b(:)h(:)f(:)g(:)h
 (:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
 f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)36
-b Fu(101)275 4972 y(6.8)92 b(The)29 b(Directory)j(Stac)m(k)14
+b Fu(102)275 4972 y(6.8)92 b(The)29 b(Directory)j(Stac)m(k)14
 b Fn(:)j(:)e(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
 f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
-(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)27 b Fu(103)399 5082 y(6.8.1)93
+(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)27 b Fu(104)399 5082 y(6.8.1)93
 b(Directory)32 b(Stac)m(k)f(Builtins)20 b Fn(:)c(:)f(:)h(:)f(:)h(:)f(:)
 g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
-(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)33 b Fu(104)275 5191
+(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)33 b Fu(105)275 5191
 y(6.9)92 b(Con)m(trolling)31 b(the)g(Prompt)10 b Fn(:)15
 b(:)g(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
-h(:)f(:)h(:)23 b Fu(105)275 5301 y(6.10)92 b(The)30 b(Restricted)h
+h(:)f(:)h(:)23 b Fu(106)275 5301 y(6.10)92 b(The)30 b(Restricted)h
 (Shell)9 b Fn(:)15 b(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)
 g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
-(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)22 b Fu(107)p
+(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)22 b Fu(108)p
 eop end
 %%Page: -3 5
 TeXDict begin -3 4 bop 3674 -116 a Fu(iii)275 83 y(6.11)92
 b(Bash)31 b(and)e(POSIX)12 b Fn(:)j(:)g(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
 h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)25
-b Fu(107)399 193 y(6.11.1)93 b(What)31 b(is)g(POSIX?)22
+b Fu(108)399 193 y(6.11.1)93 b(What)31 b(is)g(POSIX?)22
 b Fn(:)14 b(:)i(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
-h(:)f(:)h(:)f(:)g(:)36 b Fu(107)399 302 y(6.11.2)93 b(Bash)31
+h(:)f(:)h(:)f(:)g(:)36 b Fu(108)399 302 y(6.11.2)93 b(Bash)31
 b(POSIX)e(Mo)s(de)18 b Fn(:)e(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
-f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)31 b Fu(108)275 412 y(6.12)92
+f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)31 b Fu(109)275 412 y(6.12)92
 b(Shell)30 b(Compatibilit)m(y)i(Mo)s(de)25 b Fn(:)15
 b(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)38
-b Fu(112)150 663 y Fs(7)135 b(Job)45 b(Con)l(trol)35
+b Fu(113)150 663 y Fs(7)135 b(Job)45 b(Con)l(trol)35
 b Fo(:)20 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)
-g(:)48 b Fs(116)275 800 y Fu(7.1)92 b(Job)30 b(Con)m(trol)h(Basics)23
+g(:)48 b Fs(117)275 800 y Fu(7.1)92 b(Job)30 b(Con)m(trol)h(Basics)23
 b Fn(:)16 b(:)g(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
 (:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)
-g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)36 b Fu(116)275 909
+g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)36 b Fu(117)275 909
 y(7.2)92 b(Job)30 b(Con)m(trol)h(Builtins)11 b Fn(:)k(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
 h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
-(:)f(:)24 b Fu(117)275 1019 y(7.3)92 b(Job)30 b(Con)m(trol)h(V)-8
+(:)f(:)24 b Fu(118)275 1019 y(7.3)92 b(Job)30 b(Con)m(trol)h(V)-8
 b(ariables)26 b Fn(:)15 b(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
 (:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
-f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)38 b Fu(119)150
+f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)38 b Fu(120)150
 1269 y Fs(8)135 b(Command)45 b(Line)g(Editing)11 b Fo(:)20
 b(:)g(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f
-(:)g(:)h(:)f(:)h(:)k Fs(120)275 1406 y Fu(8.1)92 b(In)m(tro)s(duction)
+(:)g(:)h(:)f(:)h(:)k Fs(121)275 1406 y Fu(8.1)92 b(In)m(tro)s(duction)
 30 b(to)h(Line)f(Editing)12 b Fn(:)k(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)
 f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
-(:)h(:)f(:)g(:)h(:)f(:)h(:)25 b Fu(120)275 1516 y(8.2)92
+(:)h(:)f(:)g(:)h(:)f(:)h(:)25 b Fu(121)275 1516 y(8.2)92
 b(Readline)31 b(In)m(teraction)14 b Fn(:)j(:)e(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
 h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)27
-b Fu(120)399 1626 y(8.2.1)93 b(Readline)31 b(Bare)g(Essen)m(tials)13
+b Fu(121)399 1626 y(8.2.1)93 b(Readline)31 b(Bare)g(Essen)m(tials)13
 b Fn(:)j(:)g(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
 h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)26
-b Fu(121)399 1735 y(8.2.2)93 b(Readline)31 b(Mo)m(v)m(emen)m(t)i
+b Fu(122)399 1735 y(8.2.2)93 b(Readline)31 b(Mo)m(v)m(emen)m(t)i
 (Commands)13 b Fn(:)i(:)g(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)27
-b Fu(121)399 1845 y(8.2.3)93 b(Readline)31 b(Killing)g(Commands)24
+b Fu(122)399 1845 y(8.2.3)93 b(Readline)31 b(Killing)g(Commands)24
 b Fn(:)15 b(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)38
-b Fu(122)399 1954 y(8.2.4)93 b(Readline)31 b(Argumen)m(ts)17
+b Fu(123)399 1954 y(8.2.4)93 b(Readline)31 b(Argumen)m(ts)17
 b Fn(:)e(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
 h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
-(:)f(:)h(:)30 b Fu(122)399 2064 y(8.2.5)93 b(Searc)m(hing)31
+(:)f(:)h(:)30 b Fu(123)399 2064 y(8.2.5)93 b(Searc)m(hing)31
 b(for)f(Commands)f(in)h(the)h(History)15 b Fn(:)g(:)h(:)f(:)h(:)f(:)h
-(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)28 b Fu(122)275
+(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)28 b Fu(123)275
 2174 y(8.3)92 b(Readline)31 b(Init)f(File)8 b Fn(:)17
 b(:)e(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
 (:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
-f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)22 b Fu(123)399 2283
+f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)22 b Fu(124)399 2283
 y(8.3.1)93 b(Readline)31 b(Init)f(File)i(Syn)m(tax)21
 b Fn(:)15 b(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)34
-b Fu(123)399 2393 y(8.3.2)93 b(Conditional)31 b(Init)f(Constructs)14
+b Fu(124)399 2393 y(8.3.2)93 b(Conditional)31 b(Init)f(Constructs)14
 b Fn(:)h(:)g(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
 f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)27
-b Fu(132)399 2502 y(8.3.3)93 b(Sample)30 b(Init)g(File)20
+b Fu(133)399 2502 y(8.3.3)93 b(Sample)30 b(Init)g(File)20
 b Fn(:)d(:)e(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)
 g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
-(:)h(:)f(:)g(:)h(:)f(:)h(:)33 b Fu(133)275 2612 y(8.4)92
+(:)h(:)f(:)g(:)h(:)f(:)h(:)33 b Fu(134)275 2612 y(8.4)92
 b(Bindable)30 b(Readline)h(Commands)19 b Fn(:)c(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
-h(:)f(:)h(:)f(:)g(:)h(:)f(:)33 b Fu(136)399 2721 y(8.4.1)93
+h(:)f(:)h(:)f(:)g(:)h(:)f(:)33 b Fu(137)399 2721 y(8.4.1)93
 b(Commands)29 b(F)-8 b(or)31 b(Mo)m(ving)16 b Fn(:)h(:)e(:)h(:)f(:)g(:)
 h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
-(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)29 b Fu(136)399
+(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)29 b Fu(137)399
 2831 y(8.4.2)93 b(Commands)29 b(F)-8 b(or)31 b(Manipulating)g(The)f
 (History)c Fn(:)16 b(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
-f(:)39 b Fu(137)399 2941 y(8.4.3)93 b(Commands)29 b(F)-8
+f(:)39 b Fu(138)399 2941 y(8.4.3)93 b(Commands)29 b(F)-8
 b(or)31 b(Changing)f(T)-8 b(ext)9 b Fn(:)17 b(:)e(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)
-h(:)f(:)23 b Fu(139)399 3050 y(8.4.4)93 b(Killing)31
+h(:)f(:)23 b Fu(140)399 3050 y(8.4.4)93 b(Killing)31
 b(And)e(Y)-8 b(anking)10 b Fn(:)17 b(:)e(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
 h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
-(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)24 b Fu(140)399
+(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)24 b Fu(141)399
 3160 y(8.4.5)93 b(Sp)s(ecifying)30 b(Numeric)g(Argumen)m(ts)25
 b Fn(:)16 b(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
-(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)39 b Fu(141)399
+(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)39 b Fu(142)399
 3269 y(8.4.6)93 b(Letting)31 b(Readline)g(T)m(yp)s(e)f(F)-8
 b(or)31 b(Y)-8 b(ou)20 b Fn(:)c(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
 (:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)33
-b Fu(142)399 3379 y(8.4.7)93 b(Keyb)s(oard)29 b(Macros)9
+b Fu(143)399 3379 y(8.4.7)93 b(Keyb)s(oard)29 b(Macros)9
 b Fn(:)17 b(:)e(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
-h(:)f(:)h(:)f(:)g(:)h(:)22 b Fu(143)399 3489 y(8.4.8)93
+h(:)f(:)h(:)f(:)g(:)h(:)22 b Fu(144)399 3489 y(8.4.8)93
 b(Some)30 b(Miscellaneous)j(Commands)14 b Fn(:)f(:)j(:)f(:)h(:)f(:)g(:)
 h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
-(:)f(:)27 b Fu(144)275 3598 y(8.5)92 b(Readline)31 b(vi)f(Mo)s(de)e
+(:)f(:)27 b Fu(145)275 3598 y(8.5)92 b(Readline)31 b(vi)f(Mo)s(de)e
 Fn(:)16 b(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
 (:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
-f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)41 b Fu(146)275
+f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)41 b Fu(147)275
 3708 y(8.6)92 b(Programmable)30 b(Completion)25 b Fn(:)15
 b(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
 (:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)37
-b Fu(146)275 3817 y(8.7)92 b(Programmable)30 b(Completion)h(Builtins)14
+b Fu(147)275 3817 y(8.7)92 b(Programmable)30 b(Completion)h(Builtins)14
 b Fn(:)i(:)g(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
-h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)28 b Fu(149)275
+h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)28 b Fu(150)275
 3927 y(8.8)92 b(A)30 b(Programmable)h(Completion)g(Example)8
 b Fn(:)16 b(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
-(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)22 b Fu(153)150 4178 y
+(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)22 b Fu(154)150 4178 y
 Fs(9)135 b(Using)45 b(History)h(In)l(teractiv)l(ely)28
 b Fo(:)22 b(:)d(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g
-(:)h(:)41 b Fs(155)275 4315 y Fu(9.1)92 b(Bash)30 b(History)h(F)-8
+(:)h(:)41 b Fs(156)275 4315 y Fu(9.1)92 b(Bash)30 b(History)h(F)-8
 b(acilities)9 b Fn(:)19 b(:)c(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)
-f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)22 b Fu(155)275
+f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)22 b Fu(156)275
 4424 y(9.2)92 b(Bash)30 b(History)h(Builtins)d Fn(:)16
 b(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
-h(:)f(:)h(:)f(:)41 b Fu(155)275 4534 y(9.3)92 b(History)31
+h(:)f(:)h(:)f(:)41 b Fu(156)275 4534 y(9.3)92 b(History)31
 b(Expansion)10 b Fn(:)k(:)h(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
 (:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)
 f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)23
-b Fu(157)399 4643 y(9.3.1)93 b(Ev)m(en)m(t)31 b(Designators)19
+b Fu(158)399 4643 y(9.3.1)93 b(Ev)m(en)m(t)31 b(Designators)19
 b Fn(:)e(:)e(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)
 g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
-(:)h(:)f(:)g(:)h(:)32 b Fu(158)399 4753 y(9.3.2)93 b(W)-8
+(:)h(:)f(:)g(:)h(:)32 b Fu(159)399 4753 y(9.3.2)93 b(W)-8
 b(ord)31 b(Designators)c Fn(:)15 b(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
 (:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
-f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)39 b Fu(159)399
+f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)39 b Fu(160)399
 4863 y(9.3.3)93 b(Mo)s(di\014ers)15 b Fn(:)g(:)g(:)h(:)f(:)g(:)h(:)f(:)
 h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
-h(:)f(:)h(:)f(:)g(:)29 b Fu(159)p eop end
+h(:)f(:)h(:)f(:)g(:)29 b Fu(160)p eop end
 %%Page: -4 6
 TeXDict begin -4 5 bop 3677 -116 a Fu(iv)150 83 y Fs(10)135
 b(Installing)46 b(Bash)16 b Fo(:)j(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
-f(:)h(:)f(:)29 b Fs(161)275 220 y Fu(10.1)92 b(Basic)32
+f(:)h(:)f(:)29 b Fs(162)275 220 y Fu(10.1)92 b(Basic)32
 b(Installation)8 b Fn(:)17 b(:)f(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
 h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)22
-b Fu(161)275 330 y(10.2)92 b(Compilers)30 b(and)g(Options)17
+b Fu(162)275 330 y(10.2)92 b(Compilers)30 b(and)g(Options)17
 b Fn(:)d(:)i(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
 f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
-(:)f(:)h(:)f(:)30 b Fu(162)275 439 y(10.3)92 b(Compiling)30
+(:)f(:)h(:)f(:)30 b Fu(163)275 439 y(10.3)92 b(Compiling)30
 b(F)-8 b(or)32 b(Multiple)f(Arc)m(hitectures)10 b Fn(:)16
 b(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
-(:)g(:)h(:)f(:)h(:)f(:)23 b Fu(162)275 549 y(10.4)92
+(:)g(:)h(:)f(:)h(:)f(:)23 b Fu(163)275 549 y(10.4)92
 b(Installation)32 b(Names)22 b Fn(:)16 b(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)
 f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
 (:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)35
-b Fu(163)275 658 y(10.5)92 b(Sp)s(ecifying)30 b(the)g(System)h(T)m(yp)s
+b Fu(164)275 658 y(10.5)92 b(Sp)s(ecifying)30 b(the)g(System)h(T)m(yp)s
 (e)21 b Fn(:)14 b(:)i(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
-h(:)34 b Fu(163)275 768 y(10.6)92 b(Sharing)30 b(Defaults)24
+h(:)34 b Fu(164)275 768 y(10.6)92 b(Sharing)30 b(Defaults)24
 b Fn(:)16 b(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)
-f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)37 b Fu(163)275
+f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)37 b Fu(164)275
 878 y(10.7)92 b(Op)s(eration)30 b(Con)m(trols)12 b Fn(:)k(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)
 f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f
-(:)h(:)f(:)25 b Fu(164)275 987 y(10.8)92 b(Optional)31
+(:)h(:)f(:)25 b Fu(165)275 987 y(10.8)92 b(Optional)31
 b(F)-8 b(eatures)19 b Fn(:)d(:)g(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
 h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)32
-b Fu(164)150 1238 y Fs(App)t(endix)44 b(A)119 b(Rep)t(orting)46
+b Fu(165)150 1238 y Fs(App)t(endix)44 b(A)119 b(Rep)t(orting)46
 b(Bugs)21 b Fo(:)f(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h
-(:)f(:)g(:)h(:)f(:)35 b Fs(170)150 1498 y(App)t(endix)44
+(:)f(:)g(:)h(:)f(:)35 b Fs(171)150 1498 y(App)t(endix)44
 b(B)125 b(Ma)7 b(jor)46 b(Di\013erences)g(F)-11 b(rom)284
 1639 y(The)45 b(Bourne)f(Shell)35 b Fo(:)19 b(:)h(:)f(:)h(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)h(:)
-f(:)g(:)h(:)f(:)h(:)47 b Fs(171)275 1776 y Fu(B.1)92
+f(:)g(:)h(:)f(:)h(:)47 b Fs(172)275 1776 y Fu(B.1)92
 b(Implemen)m(tation)31 b(Di\013erences)h(F)-8 b(rom)31
 b(The)e(SVR4.2)j(Shell)22 b Fn(:)15 b(:)g(:)g(:)h(:)f(:)h(:)f(:)g(:)h
-(:)35 b Fu(175)150 2027 y Fs(App)t(endix)44 b(C)124 b(GNU)36
+(:)35 b Fu(176)150 2027 y Fs(App)t(endix)44 b(C)124 b(GNU)36
 b(F)-11 b(ree)35 b(Do)t(cumen)l(tation)i(License)25 b
-Fo(:)20 b(:)29 b Fs(177)150 2305 y(App)t(endix)44 b(D)118
+Fo(:)20 b(:)29 b Fs(178)150 2305 y(App)t(endix)44 b(D)118
 b(Indexes)27 b Fo(:)20 b(:)g(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)
 h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)40
-b Fs(185)275 2442 y Fu(D.1)92 b(Index)29 b(of)i(Shell)f(Builtin)h
+b Fs(186)275 2442 y Fu(D.1)92 b(Index)29 b(of)i(Shell)f(Builtin)h
 (Commands)23 b Fn(:)16 b(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)
 g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)38
-b Fu(185)275 2552 y(D.2)92 b(Index)29 b(of)i(Shell)f(Reserv)m(ed)h(W)-8
+b Fu(186)275 2552 y(D.2)92 b(Index)29 b(of)i(Shell)f(Reserv)m(ed)h(W)-8
 b(ords)20 b Fn(:)c(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f
 (:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)34
-b Fu(186)275 2661 y(D.3)92 b(P)m(arameter)31 b(and)f(V)-8
+b Fu(187)275 2661 y(D.3)92 b(P)m(arameter)31 b(and)f(V)-8
 b(ariable)32 b(Index)27 b Fn(:)16 b(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g
 (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)
-h(:)f(:)g(:)42 b Fu(187)275 2771 y(D.4)92 b(F)-8 b(unction)31
+h(:)f(:)g(:)42 b Fu(188)275 2771 y(D.4)92 b(F)-8 b(unction)31
 b(Index)24 b Fn(:)15 b(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h
 (:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)
 f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)38
-b Fu(189)275 2880 y(D.5)92 b(Concept)30 b(Index)15 b
+b Fu(190)275 2880 y(D.5)92 b(Concept)30 b(Index)15 b
 Fn(:)g(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h
 (:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)
 h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)29 b
-Fu(191)p eop end
+Fu(192)p eop end
 %%Page: 1 7
 TeXDict begin 1 6 bop 3705 -116 a Fu(1)150 299 y Fp(1)80
 b(In)l(tro)t(duction)150 604 y Fs(1.1)68 b(What)45 b(is)g(Bash?)150
@@ -8273,7 +8274,7 @@ b(and)e(function)h(names.)630 4020 y(Also)31 b(referred)f(to)h(as)f(an)
 h Ft(identifier)p Fu(.)150 4186 y Ft(operator)96 b Fu(A)38
 b Ft(control)28 b(operator)36 b Fu(or)h(a)i Ft(redirection)27
 b(operator)p Fu(.)61 b(See)38 b(Section)g(3.6)h([Redirec-)630
-4295 y(tions],)f(page)f(38,)i(for)d(a)g(list)h(of)f(redirection)h(op)s
+4295 y(tions],)f(page)f(39,)i(for)d(a)g(list)h(of)f(redirection)h(op)s
 (erators.)58 b(Op)s(erators)35 b(con)m(tain)j(at)f(least)630
 4405 y(one)31 b(unquoted)e Ft(metacharacter)p Fu(.)150
 4570 y Ft(process)f(group)630 4680 y Fu(A)i(collection)k(of)c(related)h
@@ -8345,17 +8346,17 @@ y Fu(The)c(follo)m(wing)h(is)f(a)h(brief)e(description)i(of)f(the)g
 (shell's)h(op)s(eration)f(when)f(it)i(reads)f(and)f(executes)j(a)150
 3299 y(command.)h(Basically)-8 b(,)34 b(the)c(shell)h(do)s(es)f(the)h
 (follo)m(wing:)199 3456 y(1.)61 b(Reads)42 b(its)h(input)e(from)h(a)g
-(\014le)h(\(see)g(Section)g(3.8)g([Shell)f(Scripts],)j(page)e(46\),)k
+(\014le)h(\(see)g(Section)g(3.8)g([Shell)f(Scripts],)j(page)e(47\),)k
 (from)41 b(a)i(string)330 3566 y(supplied)30 b(as)h(an)g(argumen)m(t)h
 (to)g(the)f Ft(-c)g Fu(in)m(v)m(o)s(cation)i(option)f(\(see)g(Section)g
-(6.1)g([In)m(v)m(oking)g(Bash],)330 3675 y(page)f(92\),)h(or)e(from)g
+(6.1)g([In)m(v)m(oking)g(Bash],)330 3675 y(page)f(93\),)h(or)e(from)g
 (the)h(user's)f(terminal.)199 3821 y(2.)61 b(Breaks)43
 b(the)g(input)f(in)m(to)h(w)m(ords)f(and)g(op)s(erators,)k(ob)s(eying)d
 (the)g(quoting)g(rules)f(describ)s(ed)f(in)330 3931 y(Section)27
 b(3.1.2)i([Quoting],)f(page)f(6.)40 b(These)26 b(tok)m(ens)i(are)f
 (separated)g(b)m(y)f Ft(metacharacters)p Fu(.)36 b(Alias)330
 4040 y(expansion)30 b(is)h(p)s(erformed)d(b)m(y)j(this)f(step)g(\(see)i
-(Section)f(6.6)g([Aliases],)i(page)e(101\).)199 4186
+(Section)f(6.6)g([Aliases],)i(page)e(102\).)199 4186
 y(3.)61 b(P)m(arses)35 b(the)g(tok)m(ens)g(in)m(to)h(simple)e(and)g
 (comp)s(ound)f(commands)h(\(see)h(Section)h(3.2)f([Shell)g(Com-)330
 4296 y(mands],)30 b(page)h(9\).)199 4442 y(4.)61 b(P)m(erforms)40
@@ -8365,11 +8366,11 @@ b(the)g(expanded)g(tok)m(ens)h(in)m(to)g(lists)f(of)g(\014lenames)h
 (\(see)g(Section)f(3.5.8)i([Filename)g(Ex-)330 4661 y(pansion],)30
 b(page)h(36\))h(and)e(commands)g(and)g(argumen)m(ts.)199
 4807 y(5.)61 b(P)m(erforms)36 b(an)m(y)i(necessary)f(redirections)g
-(\(see)h(Section)f(3.6)h([Redirections],)i(page)e(38\))g(and)e(re-)330
+(\(see)h(Section)f(3.6)h([Redirections],)i(page)e(39\))g(and)e(re-)330
 4916 y(mo)m(v)m(es)c(the)e(redirection)h(op)s(erators)g(and)f(their)g
 (op)s(erands)f(from)h(the)h(argumen)m(t)f(list.)199 5062
 y(6.)61 b(Executes)31 b(the)g(command)f(\(see)h(Section)g(3.7)h
-([Executing)f(Commands],)f(page)h(42\).)199 5208 y(7.)61
+([Executing)f(Commands],)f(page)h(43\).)199 5208 y(7.)61
 b(Optionally)40 b(w)m(aits)g(for)f(the)g(command)g(to)h(complete)g(and)
 f(collects)i(its)f(exit)g(status)f(\(see)h(Sec-)330 5317
 y(tion)31 b(3.7.5)h([Exit)f(Status],)g(page)g(45\).)p
@@ -8390,11 +8391,11 @@ y(Quoting)c(can)f(b)s(e)g(used)f(to)j(disable)e(sp)s(ecial)h(treatmen)m
 (quoted)g(if)h(it)g(is)f(to)h(represen)m(t)g(itself.)68
 b(When)39 b(the)h(command)f(history)150 1018 y(expansion)i(facilities)j
 (are)e(b)s(eing)f(used)g(\(see)h(Section)h(9.3)f([History)h(In)m
-(teraction],)j(page)c(157\),)47 b(the)150 1127 y Fr(history)30
+(teraction],)j(page)c(158\),)47 b(the)150 1127 y Fr(history)30
 b(expansion)h Fu(c)m(haracter,)h(usually)f(`)p Ft(!)p
 Fu(',)g(m)m(ust)f(b)s(e)g(quoted)h(to)g(prev)m(en)m(t)g(history)g
 (expansion.)41 b(See)150 1237 y(Section)22 b(9.1)g([Bash)f(History)h(F)
--8 b(acilities],)26 b(page)c(155,)j(for)20 b(more)h(details)h
+-8 b(acilities],)26 b(page)c(156,)j(for)20 b(more)h(details)h
 (concerning)g(history)f(expansion.)275 1370 y(There)37
 b(are)h(three)f(quoting)h(mec)m(hanisms:)56 b(the)38
 b Fr(escap)s(e)g(c)m(haracter)p Fu(,)j(single)d(quotes,)i(and)d(double)
@@ -8423,7 +8424,7 @@ b(quotes,)h(with)f(the)g(exception)h(of)f(`)p Ft($)p
 Fu(',)h(`)p Ft(`)p Fu(',)g(`)p Ft(\\)p Fu(',)g(and,)f(when)f(history)g
 (expansion)h(is)g(enabled,)h(`)p Ft(!)p Fu('.)150 3280
 y(When)c(the)g(shell)g(is)g(in)f Fm(posix)h Fu(mo)s(de)f(\(see)i
-(Section)g(6.11)g([Bash)f(POSIX)f(Mo)s(de],)i(page)g(107\),)h(the)e(`)p
+(Section)g(6.11)g([Bash)f(POSIX)f(Mo)s(de],)i(page)g(108\),)h(the)e(`)p
 Ft(!)p Fu(')150 3390 y(has)d(no)g(sp)s(ecial)h(meaning)g(within)f
 (double)g(quotes,)h(ev)m(en)g(when)f(history)g(expansion)g(is)g
 (enabled.)40 b(The)150 3499 y(c)m(haracters)h(`)p Ft($)p
@@ -8450,9 +8451,9 @@ b(sp)s(ecial)h(parameters)f(`)p Ft(*)p Fu(')h(and)f(`)p
 Ft(@)p Fu(')h(ha)m(v)m(e)g(sp)s(ecial)g(meaning)g(when)f(in)g(double)g
 (quotes)h(\(see)150 4509 y(Section)31 b(3.5.3)h([Shell)f(P)m(arameter)h
 (Expansion],)e(page)h(26\).)150 4707 y Fk(3.1.2.4)63
-b(ANSI-C)40 b(Quoting)150 4854 y Fu(Character)g(sequences)h(of)f(the)g
-(form)g($')p Fr(string)8 b Fu(')40 b(are)h(treated)g(as)f(a)h(sp)s
-(ecial)f(kind)f(of)i(single)f(quotes.)150 4963 y(The)e(sequence)i
+b(ANSI-C)40 b(Quoting)150 4854 y Fu(Character)33 b(sequences)h(of)f
+(the)g(form)g Ft($')p Fj(string)p Ft(')d Fu(are)k(treated)g(as)f(a)g
+(sp)s(ecial)h(kind)e(of)h(single)h(quotes.)150 4963 y(The)k(sequence)i
 (expands)e(to)i Fr(string)p Fu(,)h(with)e(bac)m(kslash-escap)s(ed)h(c)m
 (haracters)g(in)f Fr(string)46 b Fu(replaced)40 b(as)150
 5073 y(sp)s(eci\014ed)32 b(b)m(y)h(the)g(ANSI)f(C)h(standard.)47
@@ -8509,7 +8510,7 @@ b(Since)29 b(this)f(is)h(a)g(form)f(of)150 4650 y(double)d(quoting,)j
 (or)h(not)g(it)g(is)g(translated)150 4759 y(and)i(replaced.)41
 b(If)28 b(the)h Ft(noexpand_translation)23 b Fu(option)29
 b(is)g(enabled)f(using)h(the)f Ft(shopt)g Fu(builtin)g(\(see)150
-4869 y(Section)33 b(4.3.2)h([The)e(Shopt)f(Builtin],)j(page)f(71\),)h
+4869 y(Section)33 b(4.3.2)h([The)e(Shopt)f(Builtin],)j(page)f(72\),)h
 (translated)f(strings)e(are)i(single-quoted)g(instead)g(of)150
 4978 y(double-quoted.)275 5121 y(The)39 b(rest)i(of)g(this)f(section)h
 (is)g(a)g(brief)f(o)m(v)m(erview)i(of)e(ho)m(w)h(y)m(ou)f(use)g
@@ -8637,7 +8638,7 @@ b(a)i(non-in)m(teractiv)m(e)h(shell,)g(or)e(an)g(in)m(teractiv)m(e)j
 (shell)d(in)g(whic)m(h)g(the)g Ft(interactive_comments)16
 b Fu(option)150 1645 y(to)40 b(the)f Ft(shopt)e Fu(builtin)h(is)h
 (enabled)g(\(see)h(Section)g(4.3.2)g([The)f(Shopt)f(Builtin],)k(page)e
-(71\),)i(a)d(w)m(ord)150 1754 y(b)s(eginning)26 b(with)g(`)p
+(72\),)i(a)d(w)m(ord)150 1754 y(b)s(eginning)26 b(with)g(`)p
 Ft(#)p Fu(')g(causes)h(that)f(w)m(ord)g(and)g(all)h(remaining)g(c)m
 (haracters)g(on)f(that)h(line)g(to)g(b)s(e)f(ignored.)150
 1864 y(An)43 b(in)m(teractiv)m(e)j(shell)e(without)f(the)g
@@ -8645,7 +8646,7 @@ Ft(interactive_comments)38 b Fu(option)44 b(enabled)f(do)s(es)g(not)g
 (allo)m(w)150 1973 y(commen)m(ts.)56 b(The)34 b Ft
 (interactive_comments)c Fu(option)35 b(is)g(on)g(b)m(y)g(default)g(in)g
 (in)m(teractiv)m(e)j(shells.)55 b(See)150 2083 y(Section)30
-b(6.3)f([In)m(teractiv)m(e)j(Shells],)d(page)h(95,)g(for)e(a)i
+b(6.3)f([In)m(teractiv)m(e)j(Shells],)d(page)h(96,)g(for)e(a)i
 (description)e(of)h(what)g(mak)m(es)h(a)f(shell)g(in)m(teractiv)m(e.)
 150 2316 y Fs(3.2)68 b(Shell)45 b(Commands)150 2476 y
 Fu(A)d(simple)g(shell)g(command)f(suc)m(h)h(as)g Ft(echo)29
@@ -8722,21 +8723,21 @@ b(The)31 b Ft(-p)f Fu(option)i(c)m(hanges)g(the)f(output)g(format)g(to)
 150 2130 y(that)j(sp)s(eci\014ed)e(b)m(y)h Fm(posix)p
 Fu(.)49 b(When)33 b(the)g(shell)g(is)h(in)e Fm(posix)h
 Fu(mo)s(de)g(\(see)h(Section)g(6.11)g([Bash)g(POSIX)150
-2239 y(Mo)s(de],)j(page)e(107\),)j(it)e(do)s(es)e(not)i(recognize)g
+2239 y(Mo)s(de],)j(page)e(108\),)j(it)e(do)s(es)e(not)i(recognize)g
 Ft(time)e Fu(as)h(a)h(reserv)m(ed)f(w)m(ord)f(if)h(the)g(next)g(tok)m
 (en)h(b)s(egins)150 2349 y(with)d(a)g(`)p Ft(-)p Fu('.)49
 b(The)33 b Ft(TIMEFORMAT)d Fu(v)-5 b(ariable)34 b(ma)m(y)g(b)s(e)f(set)
 g(to)h(a)g(format)f(string)g(that)h(sp)s(eci\014es)f(ho)m(w)g(the)150
 2458 y(timing)38 b(information)g(should)e(b)s(e)h(displa)m(y)m(ed.)62
 b(See)38 b(Section)g(5.2)g([Bash)g(V)-8 b(ariables],)41
-b(page)d(79,)i(for)e(a)150 2568 y(description)27 b(of)g(the)h(a)m(v)-5
+b(page)d(80,)i(for)e(a)150 2568 y(description)27 b(of)g(the)h(a)m(v)-5
 b(ailable)29 b(formats.)40 b(The)26 b(use)h(of)g Ft(time)f
 Fu(as)i(a)f(reserv)m(ed)g(w)m(ord)g(p)s(ermits)f(the)h(timing)150
 2677 y(of)38 b(shell)g(builtins,)i(shell)e(functions,)i(and)d(pip)s
 (elines.)63 b(An)38 b(external)h Ft(time)e Fu(command)h(cannot)g(time)
 150 2787 y(these)31 b(easily)-8 b(.)275 2927 y(When)26
 b(the)h(shell)g(is)g(in)g Fm(posix)f Fu(mo)s(de)g(\(see)i(Section)f
-(6.11)i([Bash)e(POSIX)f(Mo)s(de],)i(page)g(107\),)h Ft(time)150
+(6.11)i([Bash)e(POSIX)f(Mo)s(de],)i(page)g(108\),)h Ft(time)150
 3036 y Fu(ma)m(y)d(b)s(e)f(follo)m(w)m(ed)j(b)m(y)d(a)h(newline.)39
 b(In)25 b(this)h(case,)i(the)d(shell)h(displa)m(ys)g(the)g(total)h
 (user)e(and)g(system)h(time)150 3146 y(consumed)33 b(b)m(y)h(the)h
@@ -8751,16 +8752,16 @@ s(eline)f(to)h(complete.)275 3644 y(Eac)m(h)d(command)g(in)f(a)i(m)m
 (executed)h(in)f(its)150 3753 y(o)m(wn)h Fr(subshell)p
 Fu(,)f(whic)m(h)h(is)g(a)g(separate)h(pro)s(cess)e(\(see)i(Section)g
 (3.7.3)g([Command)f(Execution)g(En)m(viron-)150 3863
-y(men)m(t],)d(page)e(43\).)40 b(If)23 b(the)h Ft(lastpipe)d
+y(men)m(t],)d(page)e(44\).)40 b(If)23 b(the)h Ft(lastpipe)d
 Fu(option)j(is)g(enabled)g(using)f(the)h Ft(shopt)e Fu(builtin)h(\(see)
-i(Section)f(4.3.2)150 3973 y([The)i(Shopt)f(Builtin],)i(page)g(71\),)h
+i(Section)f(4.3.2)150 3973 y([The)i(Shopt)f(Builtin],)i(page)g(72\),)h
 (the)e(last)h(elemen)m(t)g(of)f(a)g(pip)s(eline)g(ma)m(y)g(b)s(e)f(run)
 g(b)m(y)g(the)h(shell)g(pro)s(cess)150 4082 y(when)j(job)h(con)m(trol)i
 (is)f(not)f(activ)m(e.)275 4222 y(The)24 b(exit)i(status)f(of)h(a)f
 (pip)s(eline)g(is)g(the)g(exit)h(status)f(of)h(the)f(last)h(command)f
 (in)f(the)i(pip)s(eline,)g(unless)150 4331 y(the)31 b
 Ft(pipefail)d Fu(option)j(is)g(enabled)f(\(see)i(Section)f(4.3.1)i
-([The)d(Set)h(Builtin],)g(page)h(67\).)42 b(If)30 b Ft(pipefail)150
+([The)d(Set)h(Builtin],)g(page)h(68\).)42 b(If)30 b Ft(pipefail)150
 4441 y Fu(is)f(enabled,)g(the)f(pip)s(eline's)g(return)g(status)h(is)f
 (the)h(v)-5 b(alue)29 b(of)f(the)h(last)g(\(righ)m(tmost\))i(command)d
 (to)h(exit)150 4550 y(with)34 b(a)h(non-zero)g(status,)i(or)d(zero)i
@@ -8797,7 +8798,7 @@ g(as)h Fr(async)m(hronous)i Fu(commands.)78 b(The)43
 b(shell)g(do)s(es)g(not)g(w)m(ait)h(for)f(the)150 1102
 y(command)34 b(to)h(\014nish,)f(and)f(the)h(return)f(status)i(is)f(0)g
 (\(true\).)53 b(When)34 b(job)g(con)m(trol)h(is)f(not)h(activ)m(e)h
-(\(see)150 1211 y(Chapter)27 b(7)h([Job)f(Con)m(trol],)i(page)g(116\),)
+(\(see)150 1211 y(Chapter)27 b(7)h([Job)f(Con)m(trol],)i(page)g(117\),)
 h(the)d(standard)g(input)f(for)i(async)m(hronous)f(commands,)h(in)f
 (the)150 1321 y(absence)k(of)f(an)m(y)h(explicit)h(redirections,)f(is)f
 (redirected)h(from)f Ft(/dev/null)p Fu(.)275 1448 y(Commands)19
@@ -8828,7 +8829,7 @@ Fu(Comp)s(ound)29 b(commands)h(are)i(the)f(shell)g(programming)f
 (op)s(erator)f(and)g(is)g(terminated)g(b)m(y)g(a)g(corresp)s(onding)f
 (reserv)m(ed)150 3348 y(w)m(ord)i(or)g(op)s(erator.)40
 b(An)m(y)26 b(redirections)g(\(see)i(Section)f(3.6)g([Redirections],)h
-(page)f(38\))h(asso)s(ciated)f(with)150 3458 y(a)k(comp)s(ound)f
+(page)f(39\))h(asso)s(ciated)f(with)150 3458 y(a)k(comp)s(ound)f
 (command)h(apply)f(to)i(all)g(commands)f(within)f(that)i(comp)s(ound)d
 (command)i(unless)f(ex-)150 3568 y(plicitly)i(o)m(v)m(erridden.)275
 3695 y(In)20 b(most)h(cases)g(a)g(list)h(of)f(commands)f(in)g(a)h(comp)
@@ -8889,8 +8890,8 @@ Fr(w)m(ords)p Fu(,)i(no)e(commands)g(are)g(executed,)j(and)d(the)630
 Ft(;)i Fj(expr3)e Ft(\)\))h(;)h(do)f Fj(commands)e Ft(;)j(done)630
 2437 y Fu(First,)38 b(the)f(arithmetic)h(expression)e
 Fr(expr1)43 b Fu(is)36 b(ev)-5 b(aluated)38 b(according)f(to)g(the)g
-(rules)f(de-)630 2547 y(scrib)s(ed)41 b(b)s(elo)m(w)h(\(see)h(Section)g
-(6.5)g([Shell)g(Arithmetic],)j(page)d(99\).)77 b(The)42
+(rules)f(de-)630 2547 y(scrib)s(ed)h(b)s(elo)m(w)i(\(see)g(Section)g
+(6.5)h([Shell)e(Arithmetic],)k(page)d(100\).)67 b(The)38
 b(arithmetic)630 2656 y(expression)33 b Fr(expr2)41 b
 Fu(is)34 b(then)f(ev)-5 b(aluated)35 b(rep)s(eatedly)f(un)m(til)g(it)g
 (ev)-5 b(aluates)35 b(to)g(zero.)51 b(Eac)m(h)630 2766
@@ -8904,7 +8905,7 @@ b(is)f(the)g(exit)h(status)g(of)f(the)g(last)h(command)f(in)630
 3095 y Fr(commands)j Fu(that)d(is)f(executed,)i(or)e(false)h(if)f(an)m
 (y)h(of)g(the)f(expressions)g(is)h(in)m(v)-5 b(alid.)275
 3262 y(The)26 b Ft(break)g Fu(and)h Ft(continue)e Fu(builtins)i(\(see)h
-(Section)h(4.1)f([Bourne)g(Shell)f(Builtins],)i(page)f(48\))g(ma)m(y)
+(Section)h(4.1)f([Bourne)g(Shell)f(Builtins],)i(page)f(49\))g(ma)m(y)
 150 3372 y(b)s(e)i(used)f(to)i(con)m(trol)h(lo)s(op)f(execution.)150
 3576 y Fk(3.2.5.2)63 b(Conditional)42 b(Constructs)150
 3751 y Ft(if)384 b Fu(The)30 b(syn)m(tax)h(of)f(the)h
@@ -8941,10 +8942,10 @@ Fu(corresp)s(onding)20 b(to)i(the)g(\014rst)f Fr(pattern)630
 881 y Fu(that)h(matc)m(hes)h Fr(w)m(ord)p Fu(.)38 b(The)21
 b(matc)m(h)h(is)g(p)s(erformed)e(according)j(to)f(the)g(rules)g
 (describ)s(ed)e(b)s(e-)630 990 y(lo)m(w)25 b(in)e(Section)i(3.5.8.1)h
-([P)m(attern)f(Matc)m(hing],)i(page)e(36.)39 b(If)23
+([P)m(attern)f(Matc)m(hing],)i(page)e(37.)39 b(If)23
 b(the)h Ft(nocasematch)d Fu(shell)j(op-)630 1100 y(tion)j(\(see)g(the)f
 (description)g(of)g Ft(shopt)f Fu(in)g(Section)i(4.3.2)h([The)e(Shopt)f
-(Builtin],)j(page)f(71\))630 1209 y(is)40 b(enabled,)i(the)e(matc)m(h)h
+(Builtin],)j(page)f(72\))630 1209 y(is)40 b(enabled,)i(the)e(matc)m(h)h
 (is)e(p)s(erformed)g(without)g(regard)h(to)h(the)f(case)g(of)g(alphab)s
 (etic)630 1319 y(c)m(haracters.)48 b(The)32 b(`)p Ft(|)p
 Fu(')g(is)h(used)e(to)i(separate)h(m)m(ultiple)f(patterns,)g(and)f(the)
@@ -9038,21 +9039,21 @@ b(,)32 b(and)d(displa)m(ys)i(the)f(name)h(and)f(index)f(of)i(the)g
 2642 y(\(\()h Fj(expression)e Ft(\)\))630 2777 y Fu(The)33
 b(arithmetic)i Fr(expression)f Fu(is)f(ev)-5 b(aluated)35
 b(according)g(to)f(the)g(rules)f(describ)s(ed)g(b)s(elo)m(w)630
-2887 y(\(see)22 b(Section)f(6.5)h([Shell)f(Arithmetic],)j(page)d(99\).)
-39 b(The)20 b Fr(expression)h Fu(undergo)s(es)f(the)h(same)630
-2996 y(expansions)35 b(as)h(if)f(it)h(w)m(ere)g(within)f(double)f
-(quotes,)k(but)d(double)f(quote)i(c)m(haracters)h(in)630
-3106 y Fr(expression)29 b Fu(are)h(not)f(treated)h(sp)s(ecially)g(are)g
-(remo)m(v)m(ed.)41 b(If)29 b(the)h(v)-5 b(alue)29 b(of)h(the)f
-(expression)630 3216 y(is)h(non-zero,)i(the)e(return)f(status)i(is)g
-(0;)g(otherwise)f(the)h(return)e(status)i(is)f(1.)150
+2887 y(\(see)38 b(Section)g(6.5)h([Shell)e(Arithmetic],)j(page)f
+(100\).)63 b(The)36 b Fr(expression)h Fu(undergo)s(es)g(the)630
+2996 y(same)26 b(expansions)f(as)g(if)g(it)h(w)m(ere)g(within)e(double)
+h(quotes,)i(but)e(double)g(quote)g(c)m(haracters)630
+3106 y(in)20 b Fr(expression)h Fu(are)g(not)g(treated)h(sp)s(ecially)f
+(are)g(remo)m(v)m(ed.)39 b(If)20 b(the)h(v)-5 b(alue)21
+b(of)g(the)g(expression)630 3216 y(is)30 b(non-zero,)i(the)e(return)f
+(status)i(is)g(0;)g(otherwise)f(the)h(return)e(status)i(is)f(1.)150
 3376 y Ft([[...)o(]])870 3511 y([[)47 b Fj(expression)e
 Ft(]])630 3646 y Fu(Return)25 b(a)h(status)f(of)h(0)g(or)g(1)g(dep)s
 (ending)e(on)h(the)h(ev)-5 b(aluation)27 b(of)e(the)h(conditional)h
 (expres-)630 3755 y(sion)j Fr(expression)p Fu(.)41 b(Expressions)29
 b(are)i(comp)s(osed)f(of)g(the)h(primaries)f(describ)s(ed)f(b)s(elo)m
 (w)h(in)630 3865 y(Section)37 b(6.4)g([Bash)f(Conditional)h
-(Expressions],)g(page)g(97.)58 b(The)36 b(w)m(ords)f(b)s(et)m(w)m(een)i
+(Expressions],)g(page)g(98.)58 b(The)36 b(w)m(ords)f(b)s(et)m(w)m(een)i
 (the)630 3974 y Ft([[)h Fu(and)g Ft(]])g Fu(do)g(not)h(undergo)f(w)m
 (ord)g(splitting)h(and)f(\014lename)h(expansion.)65 b(The)38
 b(shell)630 4084 y(p)s(erforms)26 b(tilde)j(expansion,)f(parameter)g
@@ -9071,13 +9072,13 @@ b(the)h(`)p Ft(==)p Fu(')f(and)g(`)p Ft(!=)p Fu(')g(op)s(erators)h(are)
 g(used,)g(the)g(string)f(to)i(the)e(righ)m(t)h(of)g(the)g(op)s(erator)
 630 5011 y(is)31 b(considered)g(a)h(pattern)f(and)g(matc)m(hed)h
 (according)g(to)g(the)g(rules)f(describ)s(ed)f(b)s(elo)m(w)h(in)630
-5121 y(Section)d(3.5.8.1)h([P)m(attern)f(Matc)m(hing],)h(page)f(36,)g
+5121 y(Section)d(3.5.8.1)h([P)m(attern)f(Matc)m(hing],)h(page)f(37,)g
 (as)f(if)g(the)g Ft(extglob)d Fu(shell)j(option)g(w)m(ere)630
 5230 y(enabled.)46 b(The)31 b(`)p Ft(=)p Fu(')h(op)s(erator)h(is)f
 (iden)m(tical)h(to)g(`)p Ft(==)p Fu('.)46 b(If)31 b(the)h
 Ft(nocasematch)d Fu(shell)j(option)630 5340 y(\(see)42
 b(the)f(description)g(of)h Ft(shopt)d Fu(in)i(Section)h(4.3.2)h([The)e
-(Shopt)f(Builtin],)45 b(page)d(71\))p eop end
+(Shopt)f(Builtin],)45 b(page)d(72\))p eop end
 %%Page: 15 21
 TeXDict begin 15 20 bop 150 -116 a Fu(Chapter)30 b(3:)41
 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(15)630 299
@@ -9108,7 +9109,7 @@ b(not.)66 b(If)38 b(the)h(regular)g(expression)g(is)g(syn)m(tactically)
 i(incorrect,)i(the)c(conditional)630 1757 y(expression)e(returns)e(2.)
 61 b(If)37 b(the)g Ft(nocasematch)d Fu(shell)j(option)h(\(see)g(the)f
 (description)g(of)630 1867 y Ft(shopt)d Fu(in)h(Section)h(4.3.2)h([The)
-e(Shopt)f(Builtin],)k(page)e(71\))g(is)g(enabled,)g(the)g(matc)m(h)g
+e(Shopt)f(Builtin],)k(page)e(72\))g(is)g(enabled,)g(the)g(matc)m(h)g
 (is)630 1976 y(p)s(erformed)29 b(without)h(regard)h(to)g(the)f(case)i
 (of)e(alphab)s(etic)h(c)m(haracters.)630 2103 y(Y)-8
 b(ou)23 b(can)g(quote)g(an)m(y)g(part)g(of)g(the)g(pattern)f(to)i
@@ -9294,7 +9295,7 @@ b(example,)150 3861 y(the)f(output)f(of)g(all)h(the)g(commands)f(in)g
 4272 y Fu(Placing)42 b(a)g(list)g(of)f(commands)g(b)s(et)m(w)m(een)h
 (paren)m(theses)f(forces)h(the)f(shell)h(to)g(create)h(a)630
 4381 y(subshell)33 b(\(see)h(Section)g(3.7.3)i([Command)c(Execution)j
-(En)m(vironmen)m(t],)g(page)f(43\),)i(and)630 4491 y(eac)m(h)g(of)f
+(En)m(vironmen)m(t],)g(page)f(44\),)i(and)630 4491 y(eac)m(h)g(of)f
 (the)h(commands)e(in)h Fr(list)i Fu(is)e(executed)h(in)f(that)h
 (subshell)e(en)m(vironmen)m(t.)55 b(Since)630 4601 y(the)33
 b Fr(list)j Fu(is)e(executed)g(in)f(a)g(subshell,)h(v)-5
@@ -9365,7 +9366,7 @@ Fu(is)35 b(not)f(allo)m(w)m(ed;)39 b(this)34 b(is)h(to)g(a)m(v)m(oid)h
 b(the)h(\014rst)150 3879 y(w)m(ord)30 b(of)h(the)f(simple)g(command.)
 275 4007 y(When)42 b(the)i(copro)s(cess)f(is)g(executed,)48
 b(the)43 b(shell)g(creates)i(an)e(arra)m(y)g(v)-5 b(ariable)44
-b(\(see)g(Section)g(6.7)150 4117 y([Arra)m(ys],)h(page)e(101\))g(named)
+b(\(see)g(Section)g(6.7)150 4117 y([Arra)m(ys],)h(page)e(102\))g(named)
 e Fr(NAME)48 b Fu(in)41 b(the)h(con)m(text)h(of)f(the)g(executing)h
 (shell.)75 b(The)41 b(standard)150 4226 y(output)32 b(of)h
 Fr(command)i Fu(is)e(connected)g(via)g(a)g(pip)s(e)f(to)h(a)g(\014le)f
@@ -9378,7 +9379,7 @@ Fr(command)j Fu(is)d(connected)150 4445 y(via)40 b(a)g(pip)s(e)f(to)h
 Fr(NAME)5 b Fu([1].)65 b(This)38 b(pip)s(e)f(is)h(established)g(b)s
 (efore)g(an)m(y)g(redirections)h(sp)s(eci\014ed)e(b)m(y)h(the)g
 (command)150 4664 y(\(see)33 b(Section)f(3.6)h([Redirections],)g(page)g
-(38\).)45 b(The)31 b(\014le)h(descriptors)f(can)h(b)s(e)f(utilized)i
+(39\).)45 b(The)31 b(\014le)h(descriptors)f(can)h(b)s(e)f(utilized)i
 (as)f(argumen)m(ts)150 4774 y(to)42 b(shell)g(commands)f(and)g
 (redirections)h(using)f(standard)g(w)m(ord)g(expansions.)74
 b(Other)41 b(than)g(those)150 4884 y(created)27 b(to)g(execute)g
@@ -9454,19 +9455,19 @@ b Fu(is)d(executed)150 3972 y(whenev)m(er)29 b Fr(fname)35
 b Fu(is)29 b(sp)s(eci\014ed)g(as)g(the)h(name)f(of)h(a)f(simple)h
 (command.)40 b(When)29 b(the)h(shell)f(is)h(in)f Fm(posix)150
 4082 y Fu(mo)s(de)i(\(see)h(Section)g(6.11)h([Bash)f(POSIX)e(Mo)s(de],)
-i(page)g(107\),)i Fr(fname)i Fu(m)m(ust)31 b(b)s(e)g(a)h(v)-5
+i(page)g(108\),)i Fr(fname)i Fu(m)m(ust)31 b(b)s(e)g(a)h(v)-5
 b(alid)31 b(shell)h(name)150 4192 y(and)h(ma)m(y)h(not)f(b)s(e)g(the)h
 (same)f(as)h(one)g(of)f(the)h(sp)s(ecial)g(builtins)e(\(see)j(Section)f
-(4.4)g([Sp)s(ecial)g(Builtins],)150 4301 y(page)d(78\).)43
+(4.4)g([Sp)s(ecial)g(Builtins],)150 4301 y(page)d(79\).)43
 b(In)29 b(default)i(mo)s(de,)g(a)f(function)h(name)f(can)h(b)s(e)f(an)m
 (y)h(unquoted)e(shell)i(w)m(ord)f(that)h(do)s(es)g(not)150
 4411 y(con)m(tain)k(`)p Ft($)p Fu('.)52 b(An)m(y)34 b(redirections)g
-(\(see)h(Section)g(3.6)g([Redirections],)h(page)f(38\))g(asso)s(ciated)
+(\(see)h(Section)g(3.6)g([Redirections],)h(page)f(39\))g(asso)s(ciated)
 g(with)f(the)150 4520 y(shell)g(function)f(are)h(p)s(erformed)e(when)h
 (the)g(function)h(is)f(executed.)51 b(A)34 b(function)f(de\014nition)g
 (ma)m(y)i(b)s(e)150 4630 y(deleted)i(using)e(the)i Ft(-f)e
 Fu(option)i(to)f(the)h Ft(unset)d Fu(builtin)i(\(see)h(Section)g(4.1)g
-([Bourne)f(Shell)g(Builtins],)150 4739 y(page)31 b(48\).)275
+([Bourne)f(Shell)g(Builtins],)150 4739 y(page)31 b(49\).)275
 4875 y(The)26 b(exit)i(status)g(of)f(a)h(function)f(de\014nition)g(is)g
 (zero)h(unless)f(a)g(syn)m(tax)h(error)f(o)s(ccurs)g(or)g(a)h(readonly)
 150 4985 y(function)k(with)f(the)i(same)f(name)g(already)h(exists.)46
@@ -9512,7 +9513,7 @@ Ft(set)f Fu(builtin,)i(\(in)f(whic)m(h)f(case)j(all)f(functions)e
 Fu(traps\),)j(and)e(the)h Ft(ERR)f Fu(trap)h(is)g(not)g(inherited)f
 (unless)g(the)h Ft(-o)c(errtrace)h Fu(shell)j(option)150
 1806 y(has)h(b)s(een)f(enabled.)55 b(See)35 b(Section)h(4.1)g([Bourne)f
-(Shell)g(Builtins],)i(page)f(48,)i(for)c(the)i(description)f(of)150
+(Shell)g(Builtins],)i(page)f(49,)i(for)c(the)i(description)f(of)150
 1915 y(the)c Ft(trap)e Fu(builtin.)275 2066 y(The)38
 b Ft(FUNCNEST)f Fu(v)-5 b(ariable,)42 b(if)d(set)h(to)g(a)g(n)m(umeric)
 f(v)-5 b(alue)39 b(greater)h(than)f(0,)j(de\014nes)d(a)g(maxim)m(um)150
@@ -9618,7 +9619,7 @@ b(ariable)32 b(at)g(a)g(previous)f(scop)s(e,)h(an)m(y)f(instance)i(of)e
 3258 y(F)-8 b(unction)51 b(names)f(and)g(de\014nitions)g(ma)m(y)i(b)s
 (e)e(listed)h(with)f(the)h Ft(-f)f Fu(option)h(to)g(the)g
 Ft(declare)150 3368 y Fu(\()p Ft(typeset)p Fu(\))43 b(builtin)h
-(command)g(\(see)h(Section)g(4.2)g([Bash)g(Builtins],)j(page)d(56\).)83
+(command)g(\(see)h(Section)g(4.2)g([Bash)g(Builtins],)j(page)d(57\).)83
 b(The)44 b Ft(-F)f Fu(option)150 3477 y(to)e Ft(declare)e
 Fu(or)i Ft(typeset)e Fu(will)i(list)g(the)g(function)f(names)h(only)g
 (\(and)f(optionally)i(the)f(source)g(\014le)150 3587
@@ -9629,7 +9630,7 @@ g(pro)s(cesses)g(\(those)g(created)h(when)e(executing)i(a)f(separate)h
 (shell)f(in)m(v)m(o)s(cation\))150 3806 y(automatically)34
 b(ha)m(v)m(e)e(them)e(de\014ned)g(with)g(the)h Ft(-f)f
 Fu(option)i(to)f(the)g Ft(export)e Fu(builtin)i(\(see)g(Section)h(4.1)
-150 3916 y([Bourne)e(Shell)h(Builtins],)g(page)g(48\).)275
+150 3916 y([Bourne)e(Shell)h(Builtins],)g(page)g(49\).)275
 4047 y(F)-8 b(unctions)33 b(ma)m(y)g(b)s(e)g(recursiv)m(e.)48
 b(The)32 b Ft(FUNCNEST)f Fu(v)-5 b(ariable)34 b(ma)m(y)f(b)s(e)f(used)g
 (to)i(limit)g(the)f(depth)f(of)150 4157 y(the)27 b(function)f(call)i
@@ -9647,7 +9648,7 @@ m(y)h(a)g Ft(name)p Fu(.)52 b(A)35 b(v)-5 b(ariable)150
 Ft(attributes)p Fu(.)71 b(A)m(ttributes)42 b(are)f(assigned)h(using)f
 (the)g Ft(declare)150 4989 y Fu(builtin)29 b(command)g(\(see)h(the)g
 (description)f(of)g(the)h Ft(declare)d Fu(builtin)i(in)g(Section)h(4.2)
-g([Bash)g(Builtins],)150 5099 y(page)h(56\).)275 5230
+g([Bash)g(Builtins],)150 5099 y(page)h(57\).)275 5230
 y(A)d(parameter)h(is)g(set)g(if)f(it)h(has)f(b)s(een)g(assigned)h(a)g
 (v)-5 b(alue.)40 b(The)28 b(n)m(ull)h(string)f(is)h(a)g(v)-5
 b(alid)28 b(v)-5 b(alue.)41 b(Once)150 5340 y(a)31 b(v)-5
@@ -9672,7 +9673,7 @@ Ft(integer)e Fu(attribute)i(set,)i(then)d Fr(v)-5 b(alue)42
 b Fu(is)35 b(ev)-5 b(aluated)37 b(as)f(an)f(arithmetic)i(expression)f
 (ev)m(en)g(if)150 1082 y(the)i Ft($\(\(...)n(\)\))f Fu(expansion)g(is)g
 (not)h(used)e(\(see)j(Section)f(3.5.5)h([Arithmetic)f(Expansion],)h
-(page)f(34\).)150 1191 y(W)-8 b(ord)26 b(splitting)h(and)e(\014lename)h
+(page)f(35\).)150 1191 y(W)-8 b(ord)26 b(splitting)h(and)e(\014lename)h
 (expansion)g(are)g(not)h(p)s(erformed.)37 b(Assignmen)m(t)27
 b(statemen)m(ts)g(ma)m(y)g(also)150 1301 y(app)s(ear)22
 b(as)h(argumen)m(ts)g(to)h(the)f Ft(alias)p Fu(,)g Ft(declare)p
@@ -9680,14 +9681,14 @@ Fu(,)f Ft(typeset)p Fu(,)h Ft(export)p Fu(,)g Ft(readonly)p
 Fu(,)f(and)g Ft(local)f Fu(builtin)150 1410 y(commands)31
 b(\()p Fr(declaration)j Fu(commands\).)44 b(When)32 b(in)f
 Fm(posix)g Fu(mo)s(de)g(\(see)h(Section)h(6.11)g([Bash)f(POSIX)150
-1520 y(Mo)s(de],)h(page)f(107\),)i(these)e(builtins)f(ma)m(y)h(app)s
+1520 y(Mo)s(de],)h(page)f(108\),)i(these)e(builtins)f(ma)m(y)h(app)s
 (ear)f(in)g(a)h(command)f(after)h(one)g(or)g(more)g(instances)g(of)150
 1630 y(the)f Ft(command)d Fu(builtin)i(and)g(retain)h(these)f
 (assignmen)m(t)i(statemen)m(t)g(prop)s(erties.)275 1802
 y(In)d(the)h(con)m(text)i(where)d(an)h(assignmen)m(t)h(statemen)m(t)h
 (is)e(assigning)g(a)h(v)-5 b(alue)30 b(to)h(a)f(shell)g(v)-5
 b(ariable)31 b(or)150 1911 y(arra)m(y)k(index)f(\(see)h(Section)g(6.7)g
-([Arra)m(ys],)h(page)f(101\),)i(the)e(`)p Ft(+=)p Fu(')f(op)s(erator)g
+([Arra)m(ys],)h(page)f(102\),)i(the)e(`)p Ft(+=)p Fu(')f(op)s(erator)g
 (can)h(b)s(e)e(used)h(to)h(app)s(end)150 2021 y(to)h(or)g(add)e(to)j
 (the)e(v)-5 b(ariable's)36 b(previous)f(v)-5 b(alue.)57
 b(This)34 b(includes)h(argumen)m(ts)h(to)g(builtin)f(commands)150
@@ -9701,7 +9702,7 @@ b(aluated)38 b(as)150 2350 y(an)28 b(arithmetic)h(expression)f(and)f
 b(alue,)30 b(whic)m(h)d(is)i(also)f(ev)-5 b(aluated.)150
 2459 y(When)43 b(`)p Ft(+=)p Fu(')g(is)h(applied)f(to)h(an)f(arra)m(y)h
 (v)-5 b(ariable)44 b(using)f(comp)s(ound)e(assignmen)m(t)j(\(see)h
-(Section)f(6.7)150 2569 y([Arra)m(ys],)g(page)d(101\),)k(the)c(v)-5
+(Section)f(6.7)150 2569 y([Arra)m(ys],)g(page)d(102\),)k(the)c(v)-5
 b(ariable's)42 b(v)-5 b(alue)41 b(is)g(not)f(unset)h(\(as)g(it)g(is)g
 (when)e(using)h(`)p Ft(=)p Fu('\),)k(and)c(new)150 2679
 y(v)-5 b(alues)27 b(are)g(app)s(ended)f(to)h(the)g(arra)m(y)h(b)s
@@ -9715,7 +9716,7 @@ b Fr(v)-5 b(alue)32 b Fu(is)c(expanded)e(and)h(app)s(ended)e(to)j(the)f
 b(ariable)28 b(can)h(b)s(e)e(assigned)h(the)h Ft(nameref)d
 Fu(attribute)i(using)g(the)g Ft(-n)f Fu(option)i(to)g(the)f
 Ft(declare)e Fu(or)150 3180 y Ft(local)f Fu(builtin)h(commands)g(\(see)
-i(Section)f(4.2)h([Bash)f(Builtins],)h(page)f(56\))h(to)f(create)i(a)e
+i(Section)f(4.2)h([Bash)f(Builtins],)h(page)f(57\))h(to)f(create)i(a)e
 Fr(nameref)p Fu(,)g(or)g(a)150 3289 y(reference)f(to)g(another)f(v)-5
 b(ariable.)40 b(This)24 b(allo)m(ws)j(v)-5 b(ariables)26
 b(to)g(b)s(e)e(manipulated)h(indirectly)-8 b(.)40 b(Whenev)m(er)150
@@ -9751,7 +9752,7 @@ b(nameref)d(v)-5 b(ariables)36 b(can)g(reference)g(arra)m(y)g(v)-5
 b(ariables)37 b(and)e(subscripted)f(arra)m(y)i(v)-5 b(ariables.)150
 5121 y(Namerefs)36 b(can)f(b)s(e)g(unset)g(using)g(the)h
 Ft(-n)e Fu(option)i(to)g(the)g Ft(unset)e Fu(builtin)h(\(see)h(Section)
-g(4.1)h([Bourne)150 5230 y(Shell)43 b(Builtins],)j(page)e(48\).)79
+g(4.1)h([Bourne)150 5230 y(Shell)43 b(Builtins],)j(page)e(49\).)79
 b(Otherwise,)45 b(if)e Ft(unset)e Fu(is)i(executed)h(with)e(the)h(name)
 g(of)g(a)g(nameref)150 5340 y(v)-5 b(ariable)31 b(as)g(an)f(argumen)m
 (t,)h(the)g(v)-5 b(ariable)31 b(referenced)f(b)m(y)g(the)h(nameref)f(v)
@@ -9774,7 +9775,7 @@ b(parameters)d(ma)m(y)150 884 y(not)j(b)s(e)f(assigned)h(to)g(with)f
 (assignmen)m(t)i(statemen)m(ts.)61 b(The)36 b Ft(set)g
 Fu(and)g Ft(shift)f Fu(builtins)h(are)h(used)f(to)150
 994 y(set)k(and)f(unset)f(them)i(\(see)g(Chapter)f(4)g([Shell)h
-(Builtin)g(Commands],)h(page)f(48\).)68 b(The)39 b(p)s(ositional)150
+(Builtin)g(Commands],)h(page)f(49\).)68 b(The)39 b(p)s(ositional)150
 1103 y(parameters)44 b(are)g(temp)s(orarily)g(replaced)h(when)e(a)h
 (shell)g(function)g(is)g(executed)g(\(see)h(Section)g(3.3)150
 1213 y([Shell)30 b(F)-8 b(unctions],)32 b(page)f(19\).)275
@@ -9849,15 +9850,15 @@ Fm(id)h Fu(of)f(the)h(job)f(most)h(recen)m(tly)h(placed)f(in)m(to)g
 (the)g(bac)m(k-)630 408 y(ground,)26 b(whether)g(executed)g(as)h(an)f
 (async)m(hronous)f(command)h(or)g(using)g(the)g Ft(bg)f
 Fu(builtin)630 518 y(\(see)31 b(Section)h(7.2)f([Job)f(Con)m(trol)h
-(Builtins],)g(page)h(117\).)150 675 y Ft(0)432 b Fu(\($0\))46
+(Builtins],)g(page)h(118\).)150 675 y Ft(0)432 b Fu(\($0\))46
 b(Expands)d(to)i(the)g(name)g(of)f(the)h(shell)g(or)f(shell)h(script.)
 83 b(This)44 b(is)g(set)h(at)h(shell)630 785 y(initialization.)d(If)27
 b(Bash)h(is)g(in)m(v)m(ok)m(ed)h(with)e(a)i(\014le)e(of)h(commands)g
-(\(see)g(Section)h(3.8)g([Shell)630 894 y(Scripts],)g(page)g(46\),)h
+(\(see)g(Section)h(3.8)g([Shell)630 894 y(Scripts],)g(page)g(47\),)h
 Ft($0)e Fu(is)h(set)g(to)g(the)f(name)h(of)f(that)h(\014le.)41
 b(If)28 b(Bash)g(is)h(started)g(with)f(the)630 1004 y
 Ft(-c)i Fu(option)h(\(see)h(Section)g(6.1)f([In)m(v)m(oking)h(Bash],)g
-(page)f(92\),)i(then)d Ft($0)g Fu(is)h(set)g(to)h(the)f(\014rst)630
+(page)f(93\),)i(then)d Ft($0)g Fu(is)h(set)g(to)h(the)f(\014rst)630
 1113 y(argumen)m(t)g(after)g(the)g(string)g(to)g(b)s(e)f(executed,)i
 (if)f(one)g(is)f(presen)m(t.)42 b(Otherwise,)31 b(it)g(is)f(set)630
 1223 y(to)h(the)g(\014lename)f(used)g(to)h(in)m(v)m(ok)m(e)h(Bash,)f
@@ -9897,9 +9898,9 @@ b(The)24 b(only)150 3986 y(exceptions)i(to)f(this)g(are)g(the)g
 (3.4.2)i([Sp)s(ecial)e(P)m(arameters],)150 4096 y(page)31
 b(23\),)h(and)e Ft("${)p Fj(name)p Ft([@]}")d Fu(and)i
 Ft(${)p Fj(name)p Ft([*]})f Fu(\(see)j(Section)h(6.7)f([Arra)m(ys],)g
-(page)g(101\).)275 4229 y(After)41 b(all)i(expansions,)h
+(page)g(102\).)275 4229 y(After)41 b(all)i(expansions,)h
 Ft(quote)29 b(removal)40 b Fu(\(see)i(Section)h(3.5.9)g([Quote)f(Remo)m
-(v)-5 b(al],)47 b(page)42 b(38\))h(is)150 4339 y(p)s(erformed.)150
+(v)-5 b(al],)47 b(page)42 b(39\))h(is)150 4339 y(p)s(erformed.)150
 4535 y Fk(3.5.1)63 b(Brace)40 b(Expansion)150 4682 y
 Fu(Brace)32 b(expansion)f(is)f(a)i(mec)m(hanism)f(b)m(y)f(whic)m(h)h
 (arbitrary)f(strings)h(ma)m(y)g(b)s(e)f(generated.)43
@@ -10007,7 +10008,7 @@ g(w)m(ould)f(b)s(e)g(displa)m(y)m(ed)h(b)m(y)g(the)f
 Ft(dirs)g Fu(builtin)g(in)m(v)m(ok)m(ed)i(with)e(the)g(c)m(haracters)
 150 5121 y(follo)m(wing)40 b(tilde)f(in)g(the)f(tilde-pre\014x)h(as)g
 (an)f(argumen)m(t)h(\(see)h(Section)f(6.8)h([The)e(Directory)i(Stac)m
-(k],)150 5230 y(page)34 b(103\).)50 b(If)32 b(the)h(tilde-pre\014x,)h
+(k],)150 5230 y(page)34 b(104\).)50 b(If)32 b(the)h(tilde-pre\014x,)h
 (sans)e(the)h(tilde,)i(consists)e(of)g(a)h(n)m(um)m(b)s(er)d(without)i
 (a)g(leading)h(`)p Ft(+)p Fu(')f(or)150 5340 y(`)p Ft(-)p
 Fu(',)e(`)p Ft(+)p Fu(')f(is)h(assumed.)p eop end
@@ -10066,7 +10067,7 @@ b(alue)42 b(of)g Fr(parameter)48 b Fu(is)150 4105 y(substituted.)43
 b(The)31 b Fr(parameter)39 b Fu(is)31 b(a)h(shell)f(parameter)h(as)g
 (describ)s(ed)e(ab)s(o)m(v)m(e)j(\(see)f(Section)g(3.4)h([Shell)150
 4215 y(P)m(arameters],)28 b(page)f(21\))g(or)f(an)f(arra)m(y)h
-(reference)h(\(see)f(Section)h(6.7)g([Arra)m(ys],)g(page)g(101\).)41
+(reference)h(\(see)f(Section)h(6.7)g([Arra)m(ys],)g(page)g(102\).)41
 b(The)25 b(braces)150 4325 y(are)32 b(required)g(when)f
 Fr(parameter)39 b Fu(is)32 b(a)h(p)s(ositional)f(parameter)h(with)f
 (more)g(than)g(one)g(digit,)i(or)e(when)150 4434 y Fr(parameter)37
@@ -10165,7 +10166,7 @@ b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(28)630 299
 y(sp)s(eci\014ed)30 b(b)m(y)g Fr(o\013set)k Fu(and)c(extending)h(to)g
 (the)g(end)f(of)g(the)h(v)-5 b(alue.)42 b Fr(length)31
 b Fu(and)f Fr(o\013set)k Fu(are)630 408 y(arithmetic)e(expressions)e
-(\(see)h(Section)g(6.5)h([Shell)e(Arithmetic],)i(page)f(99\).)630
+(\(see)h(Section)g(6.5)h([Shell)e(Arithmetic],)i(page)f(100\).)630
 555 y(If)39 b Fr(o\013set)k Fu(ev)-5 b(aluates)41 b(to)f(a)g(n)m(um)m
 (b)s(er)f(less)h(than)f(zero,)k(the)d(v)-5 b(alue)40
 b(is)g(used)e(as)i(an)g(o\013set)630 664 y(in)33 b(c)m(haracters)i
@@ -10308,7 +10309,7 @@ Ft(##)p Fj(word)p Ft(})630 5121 y Fu(The)43 b Fr(w)m(ord)k
 Fu(is)d(expanded)f(to)h(pro)s(duce)f(a)h(pattern)g(and)f(matc)m(hed)i
 (according)f(to)h(the)630 5230 y(rules)31 b(describ)s(ed)g(b)s(elo)m(w)
 h(\(see)h(Section)g(3.5.8.1)h([P)m(attern)g(Matc)m(hing],)g(page)f
-(36\).)46 b(If)32 b(the)630 5340 y(pattern)37 b(matc)m(hes)h(the)f(b)s
+(37\).)46 b(If)32 b(the)630 5340 y(pattern)37 b(matc)m(hes)h(the)f(b)s
 (eginning)f(of)h(the)g(expanded)f(v)-5 b(alue)38 b(of)f
 Fr(parameter)p Fu(,)i(then)e(the)p eop end
 %%Page: 31 37
@@ -10334,7 +10335,7 @@ Ft(\045\045)p Fj(word)p Ft(})630 1348 y Fu(The)43 b Fr(w)m(ord)k
 Fu(is)d(expanded)f(to)h(pro)s(duce)f(a)h(pattern)g(and)f(matc)m(hed)i
 (according)f(to)h(the)630 1457 y(rules)f(describ)s(ed)g(b)s(elo)m(w)h
 (\(see)h(Section)g(3.5.8.1)h([P)m(attern)f(Matc)m(hing],)51
-b(page)45 b(36\).)85 b(If)630 1567 y(the)43 b(pattern)g(matc)m(hes)h(a)
+b(page)45 b(37\).)85 b(If)630 1567 y(the)43 b(pattern)g(matc)m(hes)h(a)
 g(trailing)g(p)s(ortion)e(of)h(the)g(expanded)g(v)-5
 b(alue)43 b(of)g Fr(parameter)p Fu(,)630 1677 y(then)c(the)g(result)g
 (of)h(the)f(expansion)g(is)h(the)f(v)-5 b(alue)40 b(of)f
@@ -10368,7 +10369,7 @@ b(ariable)630 3273 y(expansion,)25 b(arithmetic)g(expansion,)g(command)
 e(and)g(pro)s(cess)g(substitution,)i(and)e(quote)630
 3383 y(remo)m(v)-5 b(al.)54 b(The)33 b(matc)m(h)j(is)e(p)s(erformed)f
 (according)i(to)g(the)f(rules)g(describ)s(ed)f(b)s(elo)m(w)i(\(see)630
-3493 y(Section)c(3.5.8.1)i([P)m(attern)f(Matc)m(hing],)g(page)f(36\).)
+3493 y(Section)c(3.5.8.1)i([P)m(attern)f(Matc)m(hing],)g(page)f(37\).)
 630 3634 y(In)45 b(the)g(\014rst)g(form)g(ab)s(o)m(v)m(e,)50
 b(only)c(the)f(\014rst)g(matc)m(h)h(is)f(replaced.)86
 b(If)45 b(there)h(are)g(t)m(w)m(o)630 3743 y(slashes)28
@@ -10449,7 +10450,7 @@ h(`)p Ft(\\abcxyzdef)p Fu('.)630 4496 y(It)g(should)g(rarely)g(b)s(e)g
 b(double)g(quotes.)630 4682 y(If)j(the)h Ft(nocasematch)d
 Fu(shell)i(option)h(\(see)h(the)f(description)f(of)h
 Ft(shopt)e Fu(in)i(Section)g(4.3.2)630 4792 y([The)23
-b(Shopt)g(Builtin],)j(page)e(71\))h(is)e(enabled,)i(the)f(matc)m(h)g
+b(Shopt)g(Builtin],)j(page)e(72\))h(is)e(enabled,)i(the)f(matc)m(h)g
 (is)g(p)s(erformed)e(without)h(regard)630 4902 y(to)31
 b(the)f(case)h(of)g(alphab)s(etic)f(c)m(haracters.)42
 b(If)30 b Fr(parameter)37 b Fu(is)30 b(`)p Ft(@)p Fu(')g(or)g(`)p
@@ -10530,7 +10531,7 @@ b(bac)m(k-)1110 4189 y(slash)e(escap)s(e)h(sequences)f(expanded)g(as)g
 (string)g(that)g(is)g(the)g(result)g(of)g(expanding)f(the)h(v)-5
 b(alue)24 b(of)1110 4573 y Fr(parameter)31 b Fu(as)24
 b(if)f(it)h(w)m(ere)g(a)g(prompt)f(string)h(\(see)g(Section)h(6.9)g
-([Con)m(trolling)1110 4682 y(the)31 b(Prompt],)f(page)h(105\).)630
+([Con)m(trolling)1110 4682 y(the)31 b(Prompt],)f(page)h(106\).)630
 4847 y Ft(A)432 b Fu(The)24 b(expansion)g(is)g(a)h(string)f(in)g(the)g
 (form)g(of)h(an)f(assignmen)m(t)h(statemen)m(t)h(or)1110
 4956 y Ft(declare)h Fu(command)i(that,)h(if)f(ev)-5 b(aluated,)31
@@ -10546,1095 +10547,1160 @@ TeXDict begin 34 39 bop 150 -116 a Fu(Chapter)30 b(3:)41
 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(34)1110 299
 y(as)37 b(a)g(sequence)f(of)h(quoted)g(k)m(ey-v)-5 b(alue)38
 b(pairs)e(\(see)h(Section)h(6.7)f([Arra)m(ys],)1110 408
-y(page)31 b(101\).)630 576 y Ft(a)432 b Fu(The)30 b(expansion)g(is)g(a)
+y(page)31 b(102\).)630 573 y Ft(a)432 b Fu(The)30 b(expansion)g(is)g(a)
 h(string)f(consisting)h(of)g(\015ag)g(v)-5 b(alues)30
-b(represen)m(ting)h Fr(pa-)1110 685 y(rameter)7 b Fu('s)31
-b(attributes.)630 853 y Ft(k)432 b Fu(Lik)m(e)29 b(the)g(`)p
+b(represen)m(ting)h Fr(pa-)1110 683 y(rameter)7 b Fu('s)31
+b(attributes.)630 847 y Ft(k)432 b Fu(Lik)m(e)29 b(the)g(`)p
 Ft(K)p Fu(')g(transformation,)g(but)f(expands)g(the)g(k)m(eys)i(and)d
-(v)-5 b(alues)29 b(of)g(in-)1110 962 y(dexed)c(and)f(asso)s(ciativ)m(e)
+(v)-5 b(alues)29 b(of)g(in-)1110 957 y(dexed)c(and)f(asso)s(ciativ)m(e)
 k(arra)m(ys)d(to)h(separate)f(w)m(ords)g(after)g(w)m(ord)g(splitting.)
-630 1130 y(If)k Fr(parameter)37 b Fu(is)30 b(`)p Ft(@)p
+630 1122 y(If)k Fr(parameter)37 b Fu(is)30 b(`)p Ft(@)p
 Fu(')g(or)g(`)p Ft(*)p Fu(',)g(the)g(op)s(eration)g(is)g(applied)f(to)i
-(eac)m(h)g(p)s(ositional)f(parameter)630 1239 y(in)24
+(eac)m(h)g(p)s(ositional)f(parameter)630 1231 y(in)24
 b(turn,)g(and)f(the)h(expansion)g(is)g(the)g(resultan)m(t)h(list.)39
 b(If)23 b Fr(parameter)31 b Fu(is)24 b(an)g(arra)m(y)g(v)-5
-b(ariable)630 1349 y(subscripted)24 b(with)h(`)p Ft(@)p
+b(ariable)630 1341 y(subscripted)24 b(with)h(`)p Ft(@)p
 Fu(')h(or)g(`)p Ft(*)p Fu(',)h(the)e(op)s(eration)h(is)g(applied)f(to)h
-(eac)m(h)h(mem)m(b)s(er)e(of)h(the)f(arra)m(y)630 1458
+(eac)m(h)h(mem)m(b)s(er)e(of)h(the)f(arra)m(y)630 1451
 y(in)30 b(turn,)g(and)f(the)i(expansion)f(is)h(the)f(resultan)m(t)h
-(list.)630 1597 y(The)c(result)h(of)g(the)f(expansion)h(is)g(sub)5
+(list.)630 1588 y(The)c(result)h(of)g(the)f(expansion)h(is)g(sub)5
 b(ject)27 b(to)h(w)m(ord)g(splitting)g(and)f(\014lename)h(expansion)630
-1706 y(as)j(describ)s(ed)e(b)s(elo)m(w.)150 1914 y Fk(3.5.4)63
-b(Command)41 b(Substitution)150 2060 y Fu(Command)f(substitution)h
-(allo)m(ws)i(the)e(output)g(of)h(a)f(command)g(to)h(replace)g(the)g
-(command)f(itself.)150 2170 y(Command)29 b(substitution)h(o)s(ccurs)h
-(when)e(a)i(command)f(is)g(enclosed)h(as)g(follo)m(ws:)390
-2312 y Ft($\()p Fj(command)p Ft(\))150 2455 y Fu(or)390
-2597 y Ft(`)p Fj(command)p Ft(`)150 2740 y Fu(Bash)20
-b(p)s(erforms)f(the)i(expansion)f(b)m(y)g(executing)i
-Fr(command)h Fu(in)d(a)h(subshell)e(en)m(vironmen)m(t)i(and)f
-(replacing)150 2849 y(the)40 b(command)g(substitution)f(with)h(the)g
-(standard)f(output)g(of)h(the)g(command,)i(with)e(an)m(y)g(trailing)150
-2959 y(newlines)e(deleted.)64 b(Em)m(b)s(edded)37 b(newlines)h(are)g
-(not)g(deleted,)j(but)d(they)g(ma)m(y)h(b)s(e)e(remo)m(v)m(ed)i(during)
-150 3068 y(w)m(ord)30 b(splitting.)42 b(The)30 b(command)g
-(substitution)h Ft($\(cat)e Fj(file)p Ft(\))g Fu(can)h(b)s(e)g
-(replaced)h(b)m(y)g(the)f(equiv)-5 b(alen)m(t)150 3178
-y(but)30 b(faster)g Ft($\(<)g Fj(file)p Ft(\))p Fu(.)275
-3320 y(When)j(the)i(old-st)m(yle)h(bac)m(kquote)f(form)f(of)g
-(substitution)g(is)g(used,)h(bac)m(kslash)f(retains)h(its)f(literal)150
-3430 y(meaning)k(except)h(when)e(follo)m(w)m(ed)j(b)m(y)e(`)p
-Ft($)p Fu(',)j(`)p Ft(`)p Fu(',)f(or)e(`)p Ft(\\)p Fu('.)64
-b(The)38 b(\014rst)f(bac)m(kquote)j(not)e(preceded)g(b)m(y)g(a)150
-3540 y(bac)m(kslash)k(terminates)f(the)h(command)e(substitution.)72
-b(When)41 b(using)f(the)i Ft($\()p Fj(command)p Ft(\))c
-Fu(form,)43 b(all)150 3649 y(c)m(haracters)32 b(b)s(et)m(w)m(een)f(the)
-f(paren)m(theses)h(mak)m(e)g(up)f(the)g(command;)h(none)f(are)h
-(treated)g(sp)s(ecially)-8 b(.)275 3792 y(Command)22
-b(substitutions)g(ma)m(y)i(b)s(e)e(nested.)39 b(T)-8
-b(o)23 b(nest)g(when)f(using)h(the)g(bac)m(kquoted)h(form,)g(escap)s(e)
-150 3901 y(the)31 b(inner)e(bac)m(kquotes)j(with)e(bac)m(kslashes.)275
-4044 y(If)e(the)i(substitution)e(app)s(ears)h(within)g(double)f
-(quotes,)i(w)m(ord)f(splitting)h(and)f(\014lename)g(expansion)150
-4153 y(are)i(not)f(p)s(erformed)f(on)h(the)h(results.)150
-4360 y Fk(3.5.5)63 b(Arithmetic)40 b(Expansion)150 4507
-y Fu(Arithmetic)25 b(expansion)g(allo)m(ws)g(the)g(ev)-5
+1697 y(as)j(describ)s(ed)e(b)s(elo)m(w.)150 1902 y Fk(3.5.4)63
+b(Command)41 b(Substitution)150 2049 y Fu(Command)24
+b(substitution)h(allo)m(ws)h(the)f(output)g(of)g(a)g(command)g(to)h
+(replace)g(the)f(command)g(itself.)39 b(The)150 2158
+y(standard)30 b(form)f(of)i(command)f(substitution)g(o)s(ccurs)g(when)g
+(a)g(command)h(is)f(enclosed)h(as)g(follo)m(ws:)390 2298
+y Ft($\()p Fj(command)p Ft(\))150 2438 y Fu(or)f(\(deprecated\))390
+2578 y Ft(`)p Fj(command)p Ft(`.)150 2718 y Fu(Bash)24
+b(p)s(erforms)e(command)i(substitution)f(b)m(y)h(executing)h
+Fr(command)i Fu(in)c(a)h(subshell)f(en)m(vironmen)m(t)i(and)150
+2827 y(replacing)35 b(the)f(command)g(substitution)g(with)f(the)i
+(standard)e(output)g(of)i(the)f(command,)h(with)f(an)m(y)150
+2937 y(trailing)j(newlines)f(deleted.)58 b(Em)m(b)s(edded)34
+b(newlines)i(are)g(not)g(deleted,)j(but)c(they)h(ma)m(y)h(b)s(e)e(remo)
+m(v)m(ed)150 3046 y(during)40 b(w)m(ord)i(splitting.)75
+b(The)41 b(command)g(substitution)g Ft($\(cat)29 b Fj(file)p
+Ft(\))40 b Fu(can)i(b)s(e)f(replaced)h(b)m(y)g(the)150
+3156 y(equiv)-5 b(alen)m(t)32 b(but)d(faster)i Ft($\(<)f
+Fj(file)p Ft(\))p Fu(.)275 3296 y(With)h(the)h(old-st)m(yle)h(bac)m
+(kquote)g(form)e(of)h(substitution,)f(bac)m(kslash)h(retains)g(its)g
+(literal)h(meaning)150 3405 y(except)k(when)d(follo)m(w)m(ed)k(b)m(y)d
+(`)p Ft($)p Fu(',)j(`)p Ft(`)p Fu(',)f(or)f(`)p Ft(\\)p
+Fu('.)57 b(The)35 b(\014rst)g(bac)m(kquote)i(not)f(preceded)g(b)m(y)f
+(a)h(bac)m(kslash)150 3515 y(terminates)k(the)e(command)h
+(substitution.)65 b(When)39 b(using)f(the)h Ft($\()p
+Fj(command)p Ft(\))c Fu(form,)41 b(all)e(c)m(haracters)150
+3624 y(b)s(et)m(w)m(een)31 b(the)g(paren)m(theses)f(mak)m(e)i(up)d(the)
+h(command;)h(none)f(are)h(treated)g(sp)s(ecially)-8 b(.)275
+3764 y(There)29 b(is)i(an)f(alternate)i(form)e(of)h(command)f
+(substitution:)390 3904 y Ft(${)p Fj(c)47 b(command)p
+Ft(;)e(})150 4044 y Fu(whic)m(h)38 b(executes)i Fr(command)i
+Fu(in)d(the)g(curren)m(t)f(execution)i(en)m(vironmen)m(t)f(and)f
+(captures)h(its)g(output,)150 4153 y(again)31 b(with)f(trailing)i
+(newlines)e(remo)m(v)m(ed.)275 4293 y(The)g(c)m(haracter)j
+Fr(c)k Fu(follo)m(wing)c(the)e(op)s(en)g(brace)g(m)m(ust)g(b)s(e)g(a)g
+(space,)h(tab,)g(newline,)g(`)p Ft(\()p Fu(',)g(or)f(`)p
+Ft(|)p Fu(',)h(and)150 4403 y(the)39 b(close)i(brace)e(m)m(ust)g(b)s(e)
+g(in)g(a)g(p)s(osition)h(where)e(a)i(reserv)m(ed)f(w)m(ord)g(ma)m(y)h
+(app)s(ear)e(\(i.e.,)43 b(preceded)150 4512 y(b)m(y)32
+b(a)g(command)g(terminator)h(suc)m(h)e(as)h(semicolon\).)47
+b(Bash)32 b(allo)m(ws)i(the)e(close)h(brace)f(to)h(b)s(e)e(joined)h(to)
+150 4622 y(the)f(remaining)g(c)m(haracters)h(in)e(the)h(w)m(ord)f
+(without)h(b)s(eing)f(follo)m(w)m(ed)i(b)m(y)f(a)g(shell)f(metac)m
+(haracter)k(as)d(a)150 4732 y(reserv)m(ed)g(w)m(ord)f(w)m(ould)g
+(usually)g(require.)275 4871 y(An)m(y)j(side)h(e\013ects)h(of)e
+Fr(command)k Fu(tak)m(e)e(e\013ect)h(immediately)e(in)g(the)f(curren)m
+(t)h(execution)h(en)m(viron-)150 4981 y(men)m(t)d(and)g(p)s(ersist)f
+(in)g(the)h(curren)m(t)g(en)m(vironmen)m(t)h(after)f(the)g(command)g
+(completes)h(\(e.g.,)h(the)e Ft(exit)150 5091 y Fu(builtin)e(will)h
+(exit)g(the)g(shell\).)275 5230 y(This)g(t)m(yp)s(e)i(of)g(command)f
+(substitution)g(sup)s(er\014cially)g(resem)m(bles)h(executing)h(an)f
+(unnamed)e(shell)150 5340 y(function:)42 b(lo)s(cal)33
+b(v)-5 b(ariables)32 b(are)g(created)g(as)g(when)e(a)i(shell)g
+(function)f(is)g(executing,)i(and)e(the)h Ft(return)p
+eop end
+%%Page: 35 41
+TeXDict begin 35 40 bop 150 -116 a Fu(Chapter)30 b(3:)41
+b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(35)150 299
+y(builtin)36 b(forces)i Fr(command)i Fu(to)e(complete;)j(ho)m(w)m(ev)m
+(er,)f(the)d(rest)g(of)g(the)h(execution)g(en)m(vironmen)m(t,)h(in-)150
+408 y(cluding)30 b(the)h(p)s(ositional)g(parameters,)g(is)f(shared)g
+(with)g(the)h(caller.)275 539 y(If)24 b(the)h(\014rst)f(c)m(haracter)j
+(follo)m(wing)f(the)f(op)s(en)f(brace)h(is)g(a)h(`)p
+Ft(\()p Fu(',)g Fr(command)i Fu(is)d(executed)h(in)e(a)i(subshell,)150
+648 y(and)33 b Fr(command)k Fu(m)m(ust)d(b)s(e)f(terminated)h(b)m(y)g
+(a)g(`)p Ft(\))p Fu('.)51 b(This)32 b(is)i(similar)g(to)h(the)f
+Ft(\()f Fu(comp)s(ound)f(command)150 758 y(\(see)44 b(Section)g
+(3.2.5.3)h([Command)e(Grouping],)j(page)d(17\).)80 b(If)43
+b(the)g(\014rst)f(c)m(haracter)j(is)e(a)g(`)p Ft(|)p
+Fu(',)k(the)150 868 y(construct)26 b(expands)f(to)i(the)e(v)-5
+b(alue)27 b(of)f(the)g Ft(REPLY)e Fu(shell)i(v)-5 b(ariable)26
+b(after)h Fr(command)i Fu(executes,)f(without)150 977
+y(remo)m(ving)i(an)m(y)g(trailing)h(newlines,)f(and)f(the)g(standard)g
+(output)g(of)h Fr(command)j Fu(remains)c(the)h(same)g(as)150
+1087 y(in)h(the)g(calling)i(shell.)42 b(Bash)32 b(creates)g
+Ft(REPLY)e Fu(as)h(an)g(initially-unset)h(lo)s(cal)h(v)-5
+b(ariable)32 b(when)e Fr(command)150 1196 y Fu(executes,)44
+b(and)39 b(restores)i Ft(REPLY)d Fu(to)j(the)f(v)-5 b(alue)41
+b(it)g(had)e(b)s(efore)h(the)g(command)g(substitution)f(after)150
+1306 y Fr(command)34 b Fu(completes,)e(as)e(with)g(an)m(y)h(lo)s(cal)h
+(v)-5 b(ariable.)275 1436 y(F)d(or)23 b(example,)i(this)e(construct)g
+(expands)f(to)i(`)p Ft(12345)p Fu(',)f(and)f(lea)m(v)m(es)j(the)e
+(shell)g(v)-5 b(ariable)24 b Ft(X)e Fu(unc)m(hanged)150
+1546 y(in)30 b(the)h(curren)m(t)f(execution)h(en)m(vironmen)m(t:)390
+1676 y Ft(${)47 b(local)g(X=12345)e(;)j(echo)e($X;)h(})150
+1806 y Fu(\(not)28 b(declaring)g Ft(X)f Fu(as)g(lo)s(cal)i(w)m(ould)e
+(mo)s(dify)f(its)i(v)-5 b(alue)27 b(in)g(the)h(curren)m(t)f(en)m
+(vironmen)m(t,)i(as)e(with)g(normal)150 1916 y(shell)38
+b(function)g(execution\),)43 b(while)38 b(this)g(construct)h(do)s(es)f
+(not)g(require)g(an)m(y)h(output)f(to)h(expand)e(to)150
+2026 y(`)p Ft(12345)p Fu(':)390 2156 y Ft(${|)47 b(REPLY=12345;)d(})150
+2286 y Fu(and)30 b(restores)h Ft(REPLY)e Fu(to)i(the)f(v)-5
+b(alue)31 b(it)g(had)f(b)s(efore)g(the)g(command)g(substitution.)275
+2416 y(Command)22 b(substitutions)g(ma)m(y)i(b)s(e)e(nested.)39
+b(T)-8 b(o)23 b(nest)g(when)f(using)h(the)g(bac)m(kquoted)h(form,)g
+(escap)s(e)150 2526 y(the)31 b(inner)e(bac)m(kquotes)j(with)e(bac)m
+(kslashes.)275 2656 y(If)g(the)h(substitution)g(app)s(ears)f(within)h
+(double)f(quotes,)i(Bash)f(do)s(es)g(not)g(p)s(erform)f(w)m(ord)g
+(splitting)150 2766 y(and)g(\014lename)g(expansion)h(on)f(the)g
+(results.)150 2957 y Fk(3.5.5)63 b(Arithmetic)40 b(Expansion)150
+3104 y Fu(Arithmetic)25 b(expansion)g(allo)m(ws)g(the)g(ev)-5
 b(aluation)26 b(of)f(an)f(arithmetic)i(expression)e(and)g(the)g
-(substitution)150 4617 y(of)31 b(the)f(result.)41 b(The)30
-b(format)g(for)g(arithmetic)i(expansion)e(is:)390 4759
-y Ft($\(\()47 b Fj(expression)e Ft(\)\))275 4902 y Fu(The)34
+(substitution)150 3213 y(of)31 b(the)f(result.)41 b(The)30
+b(format)g(for)g(arithmetic)i(expansion)e(is:)390 3344
+y Ft($\(\()47 b Fj(expression)e Ft(\)\))275 3474 y Fu(The)34
 b Fr(expression)h Fu(undergo)s(es)f(the)h(same)h(expansions)e(as)i(if)f
-(it)g(w)m(ere)h(within)e(double)h(quotes,)i(but)150 5011
+(it)g(w)m(ere)h(within)e(double)h(quotes,)i(but)150 3584
 y(double)g(quote)g(c)m(haracters)i(in)d Fr(expression)h
 Fu(are)g(not)g(treated)h(sp)s(ecially)g(and)f(are)g(remo)m(v)m(ed.)61
-b(All)38 b(to-)150 5121 y(k)m(ens)c(in)f(the)h(expression)f(undergo)g
+b(All)38 b(to-)150 3693 y(k)m(ens)c(in)f(the)h(expression)f(undergo)g
 (parameter)h(and)f(v)-5 b(ariable)34 b(expansion,)h(command)e
-(substitution,)150 5230 y(and)41 b(quote)i(remo)m(v)-5
+(substitution,)150 3803 y(and)41 b(quote)i(remo)m(v)-5
 b(al.)76 b(The)41 b(result)h(is)g(treated)h(as)f(the)g(arithmetic)h
-(expression)f(to)g(b)s(e)f(ev)-5 b(aluated.)150 5340
-y(Arithmetic)31 b(expansions)f(ma)m(y)h(b)s(e)f(nested.)p
-eop end
-%%Page: 35 41
-TeXDict begin 35 40 bop 150 -116 a Fu(Chapter)30 b(3:)41
-b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(35)275 299
-y(The)34 b(ev)-5 b(aluation)37 b(is)f(p)s(erformed)e(according)i(to)g
+(expression)f(to)g(b)s(e)f(ev)-5 b(aluated.)150 3912
+y(Arithmetic)31 b(expansions)f(ma)m(y)h(b)s(e)f(nested.)275
+4043 y(The)k(ev)-5 b(aluation)37 b(is)f(p)s(erformed)e(according)i(to)g
 (the)g(rules)f(listed)h(b)s(elo)m(w)g(\(see)g(Section)g(6.5)h([Shell)
-150 408 y(Arithmetic],)32 b(page)f(99\).)42 b(If)30 b(the)h(expression)
-f(is)g(in)m(v)-5 b(alid,)32 b(Bash)e(prin)m(ts)g(a)h(message)g
-(indicating)h(failure)150 518 y(to)f(the)g(standard)e(error)h(and)g(no)
-g(substitution)g(o)s(ccurs.)150 721 y Fk(3.5.6)63 b(Pro)s(cess)42
-b(Substitution)150 868 y Fu(Pro)s(cess)33 b(substitution)g(allo)m(ws)i
-(a)e(pro)s(cess's)g(input)f(or)h(output)g(to)h(b)s(e)f(referred)f(to)i
-(using)f(a)g(\014lename.)150 978 y(It)d(tak)m(es)i(the)f(form)f(of)390
-1116 y Ft(<\()p Fj(list)p Ft(\))150 1254 y Fu(or)390
-1392 y Ft(>\()p Fj(list)p Ft(\))150 1531 y Fu(The)e(pro)s(cess)h
-Fr(list)j Fu(is)d(run)e(async)m(hronously)-8 b(,)30 b(and)e(its)i
-(input)e(or)h(output)f(app)s(ears)h(as)g(a)g(\014lename.)41
-b(This)150 1640 y(\014lename)25 b(is)g(passed)g(as)g(an)g(argumen)m(t)h
-(to)g(the)f(curren)m(t)g(command)g(as)g(the)g(result)g(of)g(the)h
-(expansion.)38 b(If)150 1750 y(the)28 b Ft(>\()p Fj(list)p
-Ft(\))d Fu(form)i(is)g(used,)h(writing)f(to)h(the)g(\014le)f(will)h
-(pro)m(vide)g(input)e(for)h Fr(list)p Fu(.)41 b(If)26
-b(the)i Ft(<\()p Fj(list)p Ft(\))d Fu(form)150 1859 y(is)g(used,)g(the)
-f(\014le)h(passed)f(as)h(an)f(argumen)m(t)h(should)e(b)s(e)h(read)h(to)
-g(obtain)g(the)f(output)g(of)h Fr(list)p Fu(.)40 b(Note)25
-b(that)150 1969 y(no)33 b(space)g(ma)m(y)g(app)s(ear)f(b)s(et)m(w)m
-(een)i(the)f Ft(<)f Fu(or)h Ft(>)f Fu(and)g(the)h(left)h(paren)m
-(thesis,)f(otherwise)h(the)f(construct)150 2078 y(w)m(ould)j(b)s(e)g
-(in)m(terpreted)g(as)h(a)f(redirection.)59 b(Pro)s(cess)36
+150 4152 y(Arithmetic],)29 b(page)e(100\).)41 b(If)27
+b(the)f(expression)h(is)f(in)m(v)-5 b(alid,)29 b(Bash)d(prin)m(ts)g(a)i
+(message)f(indicating)h(failure)150 4262 y(to)j(the)g(standard)e(error)
+h(and)g(no)g(substitution)g(o)s(ccurs.)150 4453 y Fk(3.5.6)63
+b(Pro)s(cess)42 b(Substitution)150 4600 y Fu(Pro)s(cess)33
+b(substitution)g(allo)m(ws)i(a)e(pro)s(cess's)g(input)f(or)h(output)g
+(to)h(b)s(e)f(referred)f(to)i(using)f(a)g(\014lename.)150
+4709 y(It)d(tak)m(es)i(the)f(form)f(of)390 4839 y Ft(<\()p
+Fj(list)p Ft(\))150 4970 y Fu(or)390 5100 y Ft(>\()p
+Fj(list)p Ft(\))150 5230 y Fu(The)e(pro)s(cess)h Fr(list)j
+Fu(is)d(run)e(async)m(hronously)-8 b(,)30 b(and)e(its)i(input)e(or)h
+(output)f(app)s(ears)h(as)g(a)g(\014lename.)41 b(This)150
+5340 y(\014lename)25 b(is)g(passed)g(as)g(an)g(argumen)m(t)h(to)g(the)f
+(curren)m(t)g(command)g(as)g(the)g(result)g(of)g(the)h(expansion.)38
+b(If)p eop end
+%%Page: 36 42
+TeXDict begin 36 41 bop 150 -116 a Fu(Chapter)30 b(3:)41
+b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(36)150 299
+y(the)28 b Ft(>\()p Fj(list)p Ft(\))d Fu(form)i(is)g(used,)h(writing)f
+(to)h(the)g(\014le)f(will)h(pro)m(vide)g(input)e(for)h
+Fr(list)p Fu(.)41 b(If)26 b(the)i Ft(<\()p Fj(list)p
+Ft(\))d Fu(form)150 408 y(is)g(used,)g(the)f(\014le)h(passed)f(as)h(an)
+f(argumen)m(t)h(should)e(b)s(e)h(read)h(to)g(obtain)g(the)f(output)g
+(of)h Fr(list)p Fu(.)40 b(Note)25 b(that)150 518 y(no)33
+b(space)g(ma)m(y)g(app)s(ear)f(b)s(et)m(w)m(een)i(the)f
+Ft(<)f Fu(or)h Ft(>)f Fu(and)g(the)h(left)h(paren)m(thesis,)f
+(otherwise)h(the)f(construct)150 628 y(w)m(ould)j(b)s(e)g(in)m
+(terpreted)g(as)h(a)f(redirection.)59 b(Pro)s(cess)36
 b(substitution)g(is)h(supp)s(orted)d(on)i(systems)g(that)150
-2188 y(supp)s(ort)29 b(named)h(pip)s(es)f(\()p Fm(fif)n(o)p
+737 y(supp)s(ort)29 b(named)h(pip)s(es)f(\()p Fm(fif)n(o)p
 Fu(s\))h(or)h(the)f Ft(/dev/fd)f Fu(metho)s(d)h(of)g(naming)g(op)s(en)g
-(\014les.)275 2326 y(When)36 b(a)m(v)-5 b(ailable,)40
+(\014les.)275 890 y(When)36 b(a)m(v)-5 b(ailable,)40
 b(pro)s(cess)c(substitution)h(is)f(p)s(erformed)f(sim)m(ultaneously)i
-(with)g(parameter)g(and)150 2436 y(v)-5 b(ariable)31
-b(expansion,)g(command)f(substitution,)g(and)g(arithmetic)i(expansion.)
-150 2639 y Fk(3.5.7)63 b(W)-10 b(ord)41 b(Splitting)150
-2786 y Fu(The)30 b(shell)h(scans)g(the)g(results)f(of)h(parameter)g
+(with)g(parameter)g(and)150 999 y(v)-5 b(ariable)31 b(expansion,)g
+(command)f(substitution,)g(and)g(arithmetic)i(expansion.)150
+1217 y Fk(3.5.7)63 b(W)-10 b(ord)41 b(Splitting)150 1364
+y Fu(The)30 b(shell)h(scans)g(the)g(results)f(of)h(parameter)g
 (expansion,)g(command)g(substitution,)g(and)f(arithmetic)150
-2895 y(expansion)g(that)h(did)f(not)g(o)s(ccur)h(within)e(double)h
-(quotes)h(for)f(w)m(ord)g(splitting.)275 3034 y(The)e(shell)g(treats)i
+1473 y(expansion)g(that)h(did)f(not)g(o)s(ccur)h(within)e(double)h
+(quotes)h(for)f(w)m(ord)g(splitting.)275 1626 y(The)e(shell)g(treats)i
 (eac)m(h)g(c)m(haracter)g(of)f Ft($IFS)e Fu(as)i(a)g(delimiter,)h(and)e
-(splits)g(the)h(results)f(of)h(the)g(other)150 3143 y(expansions)h(in)m
+(splits)g(the)h(results)f(of)h(the)g(other)150 1735 y(expansions)h(in)m
 (to)h(w)m(ords)f(using)g(these)h(c)m(haracters)h(as)e(\014eld)g
-(terminators.)275 3281 y(If)38 b Ft(IFS)g Fu(is)g(unset,)j(or)e(its)g
+(terminators.)275 1888 y(If)38 b Ft(IFS)g Fu(is)g(unset,)j(or)e(its)g
 (v)-5 b(alue)39 b(is)g(exactly)h Ft(<space><tab><newline>)p
-Fu(,)c(the)j(default,)i(then)d(se-)150 3391 y(quences)27
+Fu(,)c(the)j(default,)i(then)d(se-)150 1998 y(quences)27
 b(of)h Ft(space)p Fu(,)f Ft(tab)p Fu(,)g(and)g Ft(newline)e
 Fu(at)j(the)f(b)s(eginning)g(and)g(end)f(of)i(the)f(results)g(of)h(the)
-f(previous)150 3501 y(expansions)38 b(are)g(ignored,)i(and)d(an)m(y)i
+f(previous)150 2107 y(expansions)38 b(are)g(ignored,)i(and)d(an)m(y)i
 (sequence)f(of)g Ft(IFS)f Fu(c)m(haracters)j(not)e(at)g(the)g(b)s
-(eginning)g(or)g(end)150 3610 y(serv)m(es)e(to)h(delimit)f(w)m(ords.)56
+(eginning)g(or)g(end)150 2217 y(serv)m(es)e(to)h(delimit)f(w)m(ords.)56
 b(If)35 b Ft(IFS)g Fu(has)h(a)g(v)-5 b(alue)36 b(other)g(than)f(the)h
-(default,)i(then)d(sequences)h(of)g(the)150 3720 y(whitespace)i(c)m
+(default,)i(then)d(sequences)h(of)g(the)150 2326 y(whitespace)i(c)m
 (haracters)h Ft(space)p Fu(,)e Ft(tab)p Fu(,)h(and)f
 Ft(newline)e Fu(are)j(ignored)f(at)h(the)f(b)s(eginning)g(and)f(end)h
-(of)150 3829 y(the)h(w)m(ord,)j(as)d(long)h(as)g(the)f(whitespace)h(c)m
+(of)150 2436 y(the)h(w)m(ord,)j(as)d(long)h(as)g(the)f(whitespace)h(c)m
 (haracter)h(is)e(in)g(the)h(v)-5 b(alue)38 b(of)h Ft(IFS)e
-Fu(\(an)i Ft(IFS)e Fu(whitespace)150 3939 y(c)m(haracter\).)47
+Fu(\(an)i Ft(IFS)e Fu(whitespace)150 2545 y(c)m(haracter\).)47
 b(An)m(y)32 b(c)m(haracter)i(in)d Ft(IFS)g Fu(that)i(is)f(not)g
 Ft(IFS)f Fu(whitespace,)i(along)g(with)e(an)m(y)i(adjacen)m(t)g
-Ft(IFS)150 4049 y Fu(whitespace)41 b(c)m(haracters,)j(delimits)d(a)g
+Ft(IFS)150 2655 y Fu(whitespace)41 b(c)m(haracters,)j(delimits)d(a)g
 (\014eld.)70 b(A)40 b(sequence)h(of)g Ft(IFS)e Fu(whitespace)i(c)m
-(haracters)h(is)e(also)150 4158 y(treated)31 b(as)g(a)g(delimiter.)275
-4296 y(If)22 b(the)h(v)-5 b(alue)23 b(of)f Ft(IFS)g Fu(is)h(n)m(ull,)h
+(haracters)h(is)e(also)150 2765 y(treated)31 b(as)g(a)g(delimiter.)275
+2917 y(If)22 b(the)h(v)-5 b(alue)23 b(of)f Ft(IFS)g Fu(is)h(n)m(ull,)h
 (no)f(w)m(ord)f(splitting)h(o)s(ccurs.)38 b(If)22 b Ft(IFS)g
 Fu(is)h(unset,)h(w)m(ord)e(splitting)h(b)s(eha)m(v)m(es)150
-4406 y(as)31 b(if)f(it)h(con)m(tained)g(the)g(default)g(v)-5
-b(alue)30 b Ft(<space><tab><newline>)p Fu(.)275 4544
+3027 y(as)31 b(if)f(it)h(con)m(tained)g(the)g(default)g(v)-5
+b(alue)30 b Ft(<space><tab><newline>)p Fu(.)275 3179
 y(Explicit)21 b(n)m(ull)g(argumen)m(ts)g(\()p Ft("")g
 Fu(or)g Ft('')p Fu(\))f(are)h(retained)h(and)e(passed)g(to)i(commands)e
-(as)i(empt)m(y)f(strings.)150 4654 y(Unquoted)37 b(implicit)i(n)m(ull)f
+(as)i(empt)m(y)f(strings.)150 3289 y(Unquoted)37 b(implicit)i(n)m(ull)f
 (argumen)m(ts,)i(resulting)d(from)g(the)h(expansion)g(of)g(parameters)f
-(that)i(ha)m(v)m(e)150 4763 y(no)32 b(v)-5 b(alues,)33
+(that)i(ha)m(v)m(e)150 3399 y(no)32 b(v)-5 b(alues,)33
 b(are)f(remo)m(v)m(ed.)47 b(If)32 b(a)g(parameter)h(with)e(no)h(v)-5
 b(alue)33 b(is)f(expanded)f(within)h(double)f(quotes,)j(a)150
-4873 y(n)m(ull)c(argumen)m(t)g(results)g(and)f(is)h(retained)g(and)f
+3508 y(n)m(ull)c(argumen)m(t)g(results)g(and)f(is)h(retained)g(and)f
 (passed)g(to)i(a)f(command)g(as)g(an)f(empt)m(y)i(string.)40
-b(When)150 4983 y(a)f(quoted)f(n)m(ull)g(argumen)m(t)h(app)s(ears)e(as)
+b(When)150 3618 y(a)f(quoted)f(n)m(ull)g(argumen)m(t)h(app)s(ears)e(as)
 i(part)f(of)g(a)g(w)m(ord)g(whose)g(expansion)g(is)h(non-n)m(ull,)h
-(the)e(n)m(ull)150 5092 y(argumen)m(t)i(is)f(remo)m(v)m(ed.)69
+(the)e(n)m(ull)150 3727 y(argumen)m(t)i(is)f(remo)m(v)m(ed.)69
 b(That)39 b(is,)j(the)e(w)m(ord)f Ft(-d'')f Fu(b)s(ecomes)i
 Ft(-d)e Fu(after)i(w)m(ord)f(splitting)h(and)f(n)m(ull)150
-5202 y(argumen)m(t)31 b(remo)m(v)-5 b(al.)275 5340 y(Note)31
+3837 y(argumen)m(t)31 b(remo)m(v)-5 b(al.)275 3989 y(Note)31
 b(that)g(if)g(no)f(expansion)g(o)s(ccurs,)g(no)h(splitting)g(is)f(p)s
-(erformed.)p eop end
-%%Page: 36 42
-TeXDict begin 36 41 bop 150 -116 a Fu(Chapter)30 b(3:)41
-b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(36)150 299
-y Fk(3.5.8)63 b(Filename)41 b(Expansion)150 446 y Fu(After)30
-b(w)m(ord)f(splitting,)i(unless)d(the)i Ft(-f)f Fu(option)h(has)f(b)s
-(een)g(set)h(\(see)g(Section)h(4.3.1)g([The)e(Set)h(Builtin],)150
-555 y(page)d(67\),)i(Bash)d(scans)h(eac)m(h)h(w)m(ord)e(for)g(the)h(c)m
-(haracters)g(`)p Ft(*)p Fu(',)h(`)p Ft(?)p Fu(',)g(and)e(`)p
-Ft([)p Fu('.)39 b(If)26 b(one)h(of)g(these)f(c)m(haracters)150
-665 y(app)s(ears,)34 b(and)f(is)g(not)h(quoted,)h(then)e(the)h(w)m(ord)
-f(is)h(regarded)f(as)h(a)g Fr(pattern)p Fu(,)h(and)e(replaced)h(with)f
-(an)150 775 y(alphab)s(etically)41 b(sorted)e(list)h(of)g(\014lenames)f
-(matc)m(hing)i(the)e(pattern)g(\(see)i(Section)f(3.5.8.1)i([P)m(attern)
-150 884 y(Matc)m(hing],)e(page)e(36\).)60 b(If)36 b(no)h(matc)m(hing)g
+(erformed.)150 4207 y Fk(3.5.8)63 b(Filename)41 b(Expansion)150
+4354 y Fu(After)30 b(w)m(ord)f(splitting,)i(unless)d(the)i
+Ft(-f)f Fu(option)h(has)f(b)s(een)g(set)h(\(see)g(Section)h(4.3.1)g
+([The)e(Set)h(Builtin],)150 4463 y(page)d(68\),)i(Bash)d(scans)h(eac)m
+(h)h(w)m(ord)e(for)g(the)h(c)m(haracters)g(`)p Ft(*)p
+Fu(',)h(`)p Ft(?)p Fu(',)g(and)e(`)p Ft([)p Fu('.)39
+b(If)26 b(one)h(of)g(these)f(c)m(haracters)150 4573 y(app)s(ears,)34
+b(and)f(is)g(not)h(quoted,)h(then)e(the)h(w)m(ord)f(is)h(regarded)f(as)
+h(a)g Fr(pattern)p Fu(,)h(and)e(replaced)h(with)f(an)150
+4682 y(alphab)s(etically)41 b(sorted)e(list)h(of)g(\014lenames)f(matc)m
+(hing)i(the)e(pattern)g(\(see)i(Section)f(3.5.8.1)i([P)m(attern)150
+4792 y(Matc)m(hing],)e(page)e(37\).)60 b(If)36 b(no)h(matc)m(hing)g
 (\014lenames)g(are)g(found,)g(and)f(the)g(shell)h(option)g
-Ft(nullglob)150 994 y Fu(is)k(disabled,)i(the)f(w)m(ord)e(is)h(left)h
+Ft(nullglob)150 4902 y Fu(is)k(disabled,)i(the)f(w)m(ord)e(is)h(left)h
 (unc)m(hanged.)72 b(If)40 b(the)h Ft(nullglob)e Fu(option)i(is)g(set,)k
-(and)40 b(no)h(matc)m(hes)150 1103 y(are)c(found,)g(the)g(w)m(ord)f(is)
+(and)40 b(no)h(matc)m(hes)150 5011 y(are)c(found,)g(the)g(w)m(ord)f(is)
 g(remo)m(v)m(ed.)60 b(If)36 b(the)h Ft(failglob)d Fu(shell)j(option)g
-(is)g(set,)i(and)c(no)i(matc)m(hes)h(are)150 1213 y(found,)e(an)g
+(is)g(set,)i(and)c(no)i(matc)m(hes)h(are)150 5121 y(found,)e(an)g
 (error)f(message)i(is)f(prin)m(ted)f(and)h(the)g(command)f(is)h(not)g
-(executed.)58 b(If)35 b(the)h(shell)g(option)150 1323
+(executed.)58 b(If)35 b(the)h(shell)g(option)150 5230
 y Ft(nocaseglob)e Fu(is)j(enabled,)i(the)e(matc)m(h)h(is)f(p)s
 (erformed)e(without)i(regard)g(to)h(the)f(case)h(of)f(alphab)s(etic)150
-1432 y(c)m(haracters.)275 1575 y(When)23 b(a)h(pattern)f(is)h(used)f
-(for)g(\014lename)h(expansion,)h(the)e(c)m(haracter)i(`)p
-Ft(.)p Fu(')f(at)g(the)g(start)g(of)g(a)g(\014lename)150
-1685 y(or)f(immediately)i(follo)m(wing)g(a)f(slash)f(m)m(ust)h(b)s(e)f
-(matc)m(hed)h(explicitly)-8 b(,)27 b(unless)c(the)g(shell)h(option)g
-Ft(dotglob)150 1795 y Fu(is)36 b(set.)58 b(In)35 b(order)g(to)i(matc)m
-(h)f(the)g(\014lenames)g(`)p Ft(.)p Fu(')g(and)g(`)p
-Ft(..)p Fu(',)h(the)f(pattern)g(m)m(ust)g(b)s(egin)f(with)h(`)p
-Ft(.)p Fu(')g(\(for)150 1904 y(example,)42 b(`)p Ft(.?)p
-Fu('\),)f(ev)m(en)f(if)f Ft(dotglob)d Fu(is)j(set.)67
+5340 y(c)m(haracters.)p eop end
+%%Page: 37 43
+TeXDict begin 37 42 bop 150 -116 a Fu(Chapter)30 b(3:)41
+b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(37)275 299
+y(When)23 b(a)h(pattern)f(is)h(used)f(for)g(\014lename)h(expansion,)h
+(the)e(c)m(haracter)i(`)p Ft(.)p Fu(')f(at)g(the)g(start)g(of)g(a)g
+(\014lename)150 408 y(or)f(immediately)i(follo)m(wing)g(a)f(slash)f(m)m
+(ust)h(b)s(e)f(matc)m(hed)h(explicitly)-8 b(,)27 b(unless)c(the)g
+(shell)h(option)g Ft(dotglob)150 518 y Fu(is)36 b(set.)58
+b(In)35 b(order)g(to)i(matc)m(h)f(the)g(\014lenames)g(`)p
+Ft(.)p Fu(')g(and)g(`)p Ft(..)p Fu(',)h(the)f(pattern)g(m)m(ust)g(b)s
+(egin)f(with)h(`)p Ft(.)p Fu(')g(\(for)150 628 y(example,)42
+b(`)p Ft(.?)p Fu('\),)f(ev)m(en)f(if)f Ft(dotglob)d Fu(is)j(set.)67
 b(If)38 b(the)h Ft(globskipdots)d Fu(shell)j(option)g(is)g(enabled,)i
-(the)150 2014 y(\014lenames)33 b(`)p Ft(.)p Fu(')g(and)f(`)p
+(the)150 737 y(\014lenames)33 b(`)p Ft(.)p Fu(')g(and)f(`)p
 Ft(..)p Fu(')h(are)g(nev)m(er)g(matc)m(hed,)h(ev)m(en)g(if)e(the)h
 (pattern)g(b)s(egins)f(with)h(a)g(`)p Ft(.)p Fu('.)48
-b(When)33 b(not)150 2123 y(matc)m(hing)e(\014lenames,)g(the)g(`)p
+b(When)33 b(not)150 847 y(matc)m(hing)e(\014lenames,)g(the)g(`)p
 Ft(.)p Fu(')f(c)m(haracter)i(is)f(not)f(treated)i(sp)s(ecially)-8
-b(.)275 2267 y(When)30 b(matc)m(hing)i(a)f(\014lename,)h(the)f(slash)f
+b(.)275 976 y(When)30 b(matc)m(hing)i(a)f(\014lename,)h(the)f(slash)f
 (c)m(haracter)j(m)m(ust)d(alw)m(a)m(ys)j(b)s(e)d(matc)m(hed)h
-(explicitly)i(b)m(y)e(a)150 2376 y(slash)d(in)f(the)h(pattern,)h(but)e
+(explicitly)i(b)m(y)e(a)150 1085 y(slash)d(in)f(the)h(pattern,)h(but)e
 (in)h(other)g(matc)m(hing)h(con)m(texts)h(it)e(can)g(b)s(e)g(matc)m
-(hed)g(b)m(y)g(a)g(sp)s(ecial)h(pattern)150 2486 y(c)m(haracter)j(as)f
+(hed)g(b)m(y)g(a)g(sp)s(ecial)h(pattern)150 1195 y(c)m(haracter)j(as)f
 (describ)s(ed)e(b)s(elo)m(w)h(\(see)i(Section)f(3.5.8.1)i([P)m(attern)e
-(Matc)m(hing],)i(page)e(36\).)275 2629 y(See)d(the)g(description)g(of)g
+(Matc)m(hing],)i(page)e(37\).)275 1324 y(See)d(the)g(description)g(of)g
 Ft(shopt)e Fu(in)i(Section)g(4.3.2)i([The)e(Shopt)f(Builtin],)i(page)g
-(71,)g(for)f(a)g(descrip-)150 2739 y(tion)j(of)f(the)h
+(72,)g(for)f(a)g(descrip-)150 1433 y(tion)j(of)f(the)h
 Ft(nocaseglob)p Fu(,)d Ft(nullglob)p Fu(,)g Ft(globskipdots)p
 Fu(,)f Ft(failglob)p Fu(,)i(and)h Ft(dotglob)e Fu(options.)275
-2882 y(The)36 b Ft(GLOBIGNORE)d Fu(shell)k(v)-5 b(ariable)37
+1562 y(The)36 b Ft(GLOBIGNORE)d Fu(shell)k(v)-5 b(ariable)37
 b(ma)m(y)g(b)s(e)f(used)g(to)h(restrict)g(the)g(set)g(of)g(\014le)f
-(names)h(matc)m(hing)150 2992 y(a)42 b(pattern.)74 b(If)41
+(names)h(matc)m(hing)150 1672 y(a)42 b(pattern.)74 b(If)41
 b Ft(GLOBIGNORE)e Fu(is)i(set,)k(eac)m(h)e(matc)m(hing)f(\014le)g(name)
-f(that)h(also)h(matc)m(hes)f(one)g(of)g(the)150 3101
+f(that)h(also)h(matc)m(hes)f(one)g(of)g(the)150 1782
 y(patterns)34 b(in)g Ft(GLOBIGNORE)d Fu(is)k(remo)m(v)m(ed)g(from)f
 (the)g(list)h(of)f(matc)m(hes.)54 b(If)33 b(the)i Ft(nocaseglob)c
-Fu(option)k(is)150 3211 y(set,)c(the)e(matc)m(hing)i(against)g(the)f
+Fu(option)k(is)150 1891 y(set,)c(the)e(matc)m(hing)i(against)g(the)f
 (patterns)f(in)h Ft(GLOBIGNORE)c Fu(is)k(p)s(erformed)e(without)i
-(regard)f(to)i(case.)150 3320 y(The)d(\014lenames)h Ft(.)g
+(regard)f(to)i(case.)150 2001 y(The)d(\014lenames)h Ft(.)g
 Fu(and)f Ft(..)h Fu(are)g(alw)m(a)m(ys)h(ignored)f(when)f
 Ft(GLOBIGNORE)f Fu(is)i(set)g(and)f(not)h(n)m(ull.)41
-b(Ho)m(w)m(ev)m(er,)150 3430 y(setting)30 b Ft(GLOBIGNORE)d
+b(Ho)m(w)m(ev)m(er,)150 2110 y(setting)30 b Ft(GLOBIGNORE)d
 Fu(to)j(a)f(non-n)m(ull)g(v)-5 b(alue)30 b(has)f(the)g(e\013ect)i(of)f
 (enabling)f(the)h Ft(dotglob)d Fu(shell)i(option,)150
-3540 y(so)j(all)h(other)f(\014lenames)g(b)s(eginning)f(with)h(a)g(`)p
+2220 y(so)j(all)h(other)f(\014lenames)g(b)s(eginning)f(with)h(a)g(`)p
 Ft(.)p Fu(')g(will)h(matc)m(h.)46 b(T)-8 b(o)32 b(get)h(the)f(old)g(b)s
-(eha)m(vior)g(of)h(ignoring)150 3649 y(\014lenames)c(b)s(eginning)f
+(eha)m(vior)g(of)h(ignoring)150 2330 y(\014lenames)c(b)s(eginning)f
 (with)h(a)h(`)p Ft(.)p Fu(',)f(mak)m(e)h(`)p Ft(.*)p
 Fu(')f(one)h(of)f(the)g(patterns)g(in)g Ft(GLOBIGNORE)p
-Fu(.)37 b(The)29 b Ft(dotglob)150 3759 y Fu(option)i(is)f(disabled)g
-(when)g Ft(GLOBIGNORE)d Fu(is)k(unset.)275 3902 y(After)26
+Fu(.)37 b(The)29 b Ft(dotglob)150 2439 y Fu(option)i(is)f(disabled)g
+(when)g Ft(GLOBIGNORE)d Fu(is)k(unset.)275 2568 y(After)26
 b(the)h(pattern)g(is)f(expanded)g(and)g(matc)m(hed)h(against)h
 (\014lenames,)f(the)g(v)-5 b(alue)27 b(of)g(the)f Ft(GLOBSORT)150
-4012 y Fu(v)-5 b(ariable)46 b(con)m(trols)g(ho)m(w)f(the)g(results)f
+2678 y Fu(v)-5 b(ariable)46 b(con)m(trols)g(ho)m(w)f(the)g(results)f
 (are)h(sorted,)k(as)c(describ)s(ed)f(b)s(elo)m(w)h(\(see)h(Section)g
-(5.2)g([Bash)150 4121 y(V)-8 b(ariables],)32 b(page)f(79\).)150
-4329 y Fk(3.5.8.1)63 b(P)m(attern)40 b(Matc)m(hing)150
-4476 y Fu(An)m(y)24 b(c)m(haracter)h(that)f(app)s(ears)f(in)g(a)h
+(5.2)g([Bash)150 2787 y(V)-8 b(ariables],)32 b(page)f(80\).)150
+2975 y Fk(3.5.8.1)63 b(P)m(attern)40 b(Matc)m(hing)150
+3122 y Fu(An)m(y)24 b(c)m(haracter)h(that)f(app)s(ears)f(in)g(a)h
 (pattern,)i(other)e(than)f(the)h(sp)s(ecial)g(pattern)g(c)m(haracters)h
-(describ)s(ed)150 4586 y(b)s(elo)m(w,)31 b(matc)m(hes)g(itself.)42
+(describ)s(ed)150 3232 y(b)s(elo)m(w,)31 b(matc)m(hes)g(itself.)42
 b(The)29 b Fm(nul)h Fu(c)m(haracter)i(ma)m(y)e(not)h(o)s(ccur)f(in)g(a)
 h(pattern.)40 b(A)31 b(bac)m(kslash)g(escap)s(es)150
-4695 y(the)38 b(follo)m(wing)g(c)m(haracter;)43 b(the)37
+3342 y(the)38 b(follo)m(wing)g(c)m(haracter;)43 b(the)37
 b(escaping)i(bac)m(kslash)e(is)h(discarded)f(when)f(matc)m(hing.)63
-b(The)36 b(sp)s(ecial)150 4805 y(pattern)30 b(c)m(haracters)i(m)m(ust)f
+b(The)36 b(sp)s(ecial)150 3451 y(pattern)30 b(c)m(haracters)i(m)m(ust)f
 (b)s(e)e(quoted)i(if)f(they)h(are)f(to)i(b)s(e)d(matc)m(hed)i
-(literally)-8 b(.)275 4948 y(The)29 b(sp)s(ecial)i(pattern)g(c)m
+(literally)-8 b(.)275 3580 y(The)29 b(sp)s(ecial)i(pattern)g(c)m
 (haracters)h(ha)m(v)m(e)f(the)g(follo)m(wing)h(meanings:)150
-5121 y Ft(*)432 b Fu(Matc)m(hes)31 b(an)m(y)e(string,)h(including)f
+3728 y Ft(*)432 b Fu(Matc)m(hes)31 b(an)m(y)e(string,)h(including)f
 (the)g(n)m(ull)g(string.)41 b(When)29 b(the)g Ft(globstar)e
-Fu(shell)i(option)630 5230 y(is)37 b(enabled,)h(and)e(`)p
+Fu(shell)i(option)630 3838 y(is)37 b(enabled,)h(and)e(`)p
 Ft(*)p Fu(')h(is)g(used)f(in)g(a)h(\014lename)g(expansion)g(con)m
 (text,)j(t)m(w)m(o)e(adjacen)m(t)g(`)p Ft(*)p Fu('s)630
-5340 y(used)f(as)g(a)h(single)g(pattern)g(will)f(matc)m(h)i(all)f
-(\014les)f(and)g(zero)h(or)g(more)f(directories)i(and)p
-eop end
-%%Page: 37 43
-TeXDict begin 37 42 bop 150 -116 a Fu(Chapter)30 b(3:)41
-b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(37)630 299
-y(sub)s(directories.)39 b(If)25 b(follo)m(w)m(ed)j(b)m(y)e(a)g(`)p
+3948 y(used)f(as)g(a)h(single)g(pattern)g(will)f(matc)m(h)i(all)f
+(\014les)f(and)g(zero)h(or)g(more)f(directories)i(and)630
+4057 y(sub)s(directories.)g(If)25 b(follo)m(w)m(ed)j(b)m(y)e(a)g(`)p
 Ft(/)p Fu(',)h(t)m(w)m(o)g(adjacen)m(t)h(`)p Ft(*)p Fu('s)e(will)g
-(matc)m(h)h(only)f(directories)630 408 y(and)k(sub)s(directories.)150
-572 y Ft(?)432 b Fu(Matc)m(hes)32 b(an)m(y)f(single)g(c)m(haracter.)150
-736 y Ft([...)o(])241 b Fu(Matc)m(hes)27 b(an)m(y)e(one)g(of)g(the)g
-(enclosed)g(c)m(haracters.)41 b(A)25 b(pair)f(of)h(c)m(haracters)i
-(separated)e(b)m(y)g(a)630 846 y(h)m(yphen)k(denotes)i(a)g
+(matc)m(h)h(only)f(directories)630 4167 y(and)k(sub)s(directories.)150
+4315 y Ft(?)432 b Fu(Matc)m(hes)32 b(an)m(y)f(single)g(c)m(haracter.)
+150 4463 y Ft([...)o(])241 b Fu(Matc)m(hes)27 b(an)m(y)e(one)g(of)g
+(the)g(enclosed)g(c)m(haracters.)41 b(A)25 b(pair)f(of)h(c)m(haracters)
+i(separated)e(b)m(y)g(a)630 4573 y(h)m(yphen)k(denotes)i(a)g
 Fr(range)g(expression)p Fu(;)f(an)m(y)h(c)m(haracter)h(that)f(falls)g
-(b)s(et)m(w)m(een)g(those)g(t)m(w)m(o)630 956 y(c)m(haracters,)d
+(b)s(et)m(w)m(een)g(those)g(t)m(w)m(o)630 4682 y(c)m(haracters,)d
 (inclusiv)m(e,)f(using)d(the)h(curren)m(t)f(lo)s(cale's)j(collating)g
-(sequence)e(and)f(c)m(haracter)630 1065 y(set,)31 b(is)f(matc)m(hed.)42
+(sequence)e(and)f(c)m(haracter)630 4792 y(set,)31 b(is)f(matc)m(hed.)42
 b(If)30 b(the)g(\014rst)g(c)m(haracter)i(follo)m(wing)g(the)e(`)p
 Ft([)p Fu(')h(is)f(a)h(`)p Ft(!)p Fu(')f(or)g(a)h(`)p
-Ft(^)p Fu(')g(then)f(an)m(y)630 1175 y(c)m(haracter)c(not)f(enclosed)g
+Ft(^)p Fu(')g(then)f(an)m(y)630 4902 y(c)m(haracter)c(not)f(enclosed)g
 (is)g(matc)m(hed.)40 b(A)25 b(`)p Fq(\000)p Fu(')f(ma)m(y)i(b)s(e)e
-(matc)m(hed)h(b)m(y)f(including)h(it)g(as)g(the)630 1284
+(matc)m(hed)h(b)m(y)f(including)h(it)g(as)g(the)630 5011
 y(\014rst)32 b(or)h(last)h(c)m(haracter)h(in)e(the)g(set.)50
 b(A)33 b(`)p Ft(])p Fu(')g(ma)m(y)h(b)s(e)e(matc)m(hed)i(b)m(y)f
-(including)g(it)g(as)h(the)630 1394 y(\014rst)c(c)m(haracter)j(in)d
+(including)g(it)g(as)h(the)630 5121 y(\014rst)c(c)m(haracter)j(in)d
 (the)h(set.)43 b(The)31 b(sorting)g(order)g(of)g(c)m(haracters)h(in)f
-(range)g(expressions,)630 1503 y(and)f(the)h(c)m(haracters)h(included)e
+(range)g(expressions,)630 5230 y(and)f(the)h(c)m(haracters)h(included)e
 (in)h(the)f(range,)i(are)f(determined)f(b)m(y)h(the)g(curren)m(t)f(lo)s
-(cale)630 1613 y(and)g(the)g(v)-5 b(alues)31 b(of)g(the)f
+(cale)630 5340 y(and)g(the)g(v)-5 b(alues)31 b(of)g(the)f
 Ft(LC_COLLATE)e Fu(and)h Ft(LC_ALL)g Fu(shell)i(v)-5
-b(ariables,)31 b(if)f(set.)630 1750 y(F)-8 b(or)34 b(example,)g(in)f
-(the)g(default)g(C)f(lo)s(cale,)k(`)p Ft([a-dx-z])p Fu(')31
-b(is)i(equiv)-5 b(alen)m(t)34 b(to)g(`)p Ft([abcdxyz])p
-Fu('.)630 1859 y(Man)m(y)68 b(lo)s(cales)h(sort)f(c)m(haracters)h(in)e
-(dictionary)i(order,)76 b(and)67 b(in)g(these)h(lo)s(cales)630
-1969 y(`)p Ft([a-dx-z])p Fu(')36 b(is)i(t)m(ypically)i(not)e(equiv)-5
-b(alen)m(t)39 b(to)g(`)p Ft([abcdxyz])p Fu(';)g(it)g(migh)m(t)f(b)s(e)f
-(equiv)-5 b(alen)m(t)630 2079 y(to)34 b(`)p Ft([aBbCcDdxYyZz])p
-Fu(',)c(for)j(example.)49 b(T)-8 b(o)33 b(obtain)h(the)f(traditional)h
-(in)m(terpretation)h(of)630 2188 y(ranges)e(in)f(brac)m(k)m(et)i
-(expressions,)g(y)m(ou)f(can)g(force)g(the)g(use)f(of)h(the)g(C)f(lo)s
-(cale)i(b)m(y)f(setting)630 2298 y(the)c Ft(LC_COLLATE)e
-Fu(or)i Ft(LC_ALL)f Fu(en)m(vironmen)m(t)i(v)-5 b(ariable)30
-b(to)g(the)f(v)-5 b(alue)30 b(`)p Ft(C)p Fu(',)g(or)f(enable)h(the)630
-2407 y Ft(globasciiranges)c Fu(shell)31 b(option.)630
-2544 y(Within)23 b(`)p Ft([)p Fu(')h(and)e(`)p Ft(])p
-Fu(',)j Fr(c)m(haracter)g(classes)j Fu(can)c(b)s(e)e(sp)s(eci\014ed)h
-(using)f(the)i(syn)m(tax)f Ft([:)p Fr(class)t Ft(:])p
-Fu(,)630 2654 y(where)30 b Fr(class)35 b Fu(is)30 b(one)h(of)f(the)h
-(follo)m(wing)h(classes)f(de\014ned)e(in)h(the)h Fm(posix)f
-Fu(standard:)870 2790 y Ft(alnum)142 b(alpha)g(ascii)f(blank)h(cntrl)g
-(digit)g(graph)g(lower)870 2900 y(print)g(punct)g(space)f(upper)h(word)
-190 b(xdigit)630 3037 y Fu(A)42 b(c)m(haracter)h(class)f(matc)m(hes)h
-(an)m(y)f(c)m(haracter)h(b)s(elonging)f(to)g(that)g(class.)75
-b(The)41 b Ft(word)630 3146 y Fu(c)m(haracter)32 b(class)f(matc)m(hes)h
+b(ariables,)31 b(if)f(set.)p eop end
+%%Page: 38 44
+TeXDict begin 38 43 bop 150 -116 a Fu(Chapter)30 b(3:)41
+b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(38)630 299
+y(F)-8 b(or)34 b(example,)g(in)f(the)g(default)g(C)f(lo)s(cale,)k(`)p
+Ft([a-dx-z])p Fu(')31 b(is)i(equiv)-5 b(alen)m(t)34 b(to)g(`)p
+Ft([abcdxyz])p Fu('.)630 408 y(Man)m(y)68 b(lo)s(cales)h(sort)f(c)m
+(haracters)h(in)e(dictionary)i(order,)76 b(and)67 b(in)g(these)h(lo)s
+(cales)630 518 y(`)p Ft([a-dx-z])p Fu(')36 b(is)i(t)m(ypically)i(not)e
+(equiv)-5 b(alen)m(t)39 b(to)g(`)p Ft([abcdxyz])p Fu(';)g(it)g(migh)m
+(t)f(b)s(e)f(equiv)-5 b(alen)m(t)630 628 y(to)34 b(`)p
+Ft([aBbCcDdxYyZz])p Fu(',)c(for)j(example.)49 b(T)-8
+b(o)33 b(obtain)h(the)f(traditional)h(in)m(terpretation)h(of)630
+737 y(ranges)e(in)f(brac)m(k)m(et)i(expressions,)g(y)m(ou)f(can)g
+(force)g(the)g(use)f(of)h(the)g(C)f(lo)s(cale)i(b)m(y)f(setting)630
+847 y(the)c Ft(LC_COLLATE)e Fu(or)i Ft(LC_ALL)f Fu(en)m(vironmen)m(t)i
+(v)-5 b(ariable)30 b(to)g(the)f(v)-5 b(alue)30 b(`)p
+Ft(C)p Fu(',)g(or)f(enable)h(the)630 956 y Ft(globasciiranges)c
+Fu(shell)31 b(option.)630 1093 y(Within)23 b(`)p Ft([)p
+Fu(')h(and)e(`)p Ft(])p Fu(',)j Fr(c)m(haracter)g(classes)j
+Fu(can)c(b)s(e)e(sp)s(eci\014ed)h(using)f(the)i(syn)m(tax)f
+Ft([:)p Fr(class)t Ft(:])p Fu(,)630 1203 y(where)30 b
+Fr(class)35 b Fu(is)30 b(one)h(of)f(the)h(follo)m(wing)h(classes)f
+(de\014ned)e(in)h(the)h Fm(posix)f Fu(standard:)870 1339
+y Ft(alnum)142 b(alpha)g(ascii)f(blank)h(cntrl)g(digit)g(graph)g(lower)
+870 1449 y(print)g(punct)g(space)f(upper)h(word)190 b(xdigit)630
+1585 y Fu(A)42 b(c)m(haracter)h(class)f(matc)m(hes)h(an)m(y)f(c)m
+(haracter)h(b)s(elonging)f(to)g(that)g(class.)75 b(The)41
+b Ft(word)630 1695 y Fu(c)m(haracter)32 b(class)f(matc)m(hes)h
 (letters,)f(digits,)h(and)d(the)i(c)m(haracter)h(`)p
-Ft(_)p Fu('.)630 3283 y(Within)25 b(`)p Ft([)p Fu(')f(and)g(`)p
+Ft(_)p Fu('.)630 1831 y(Within)25 b(`)p Ft([)p Fu(')f(and)g(`)p
 Ft(])p Fu(',)i(an)e Fr(equiv)-5 b(alence)26 b(class)j
 Fu(can)24 b(b)s(e)g(sp)s(eci\014ed)g(using)g(the)g(syn)m(tax)h
-Ft([=)p Fr(c)6 b Ft(=])p Fu(,)630 3393 y(whic)m(h)29
+Ft([=)p Fr(c)6 b Ft(=])p Fu(,)630 1941 y(whic)m(h)29
 b(matc)m(hes)i(all)f(c)m(haracters)h(with)e(the)h(same)g(collation)h(w)
-m(eigh)m(t)g(\(as)f(de\014ned)e(b)m(y)i(the)630 3502
+m(eigh)m(t)g(\(as)f(de\014ned)e(b)m(y)i(the)630 2051
 y(curren)m(t)g(lo)s(cale\))j(as)d(the)h(c)m(haracter)h
-Fr(c)p Fu(.)630 3639 y(Within)22 b(`)p Ft([)p Fu(')f(and)g(`)p
+Fr(c)p Fu(.)630 2187 y(Within)22 b(`)p Ft([)p Fu(')f(and)g(`)p
 Ft(])p Fu(',)j(the)d(syn)m(tax)h Ft([.)p Fr(sym)m(b)s(ol)t
 Ft(.])e Fu(matc)m(hes)i(the)g(collating)i(sym)m(b)s(ol)d
-Fr(sym)m(b)s(ol)p Fu(.)275 3805 y(If)i(the)g Ft(extglob)f
+Fr(sym)m(b)s(ol)p Fu(.)275 2353 y(If)i(the)g Ft(extglob)f
 Fu(shell)h(option)h(is)g(enabled)f(using)g(the)h Ft(shopt)e
 Fu(builtin,)i(the)g(shell)f(recognizes)j(sev)m(eral)150
-3915 y(extended)i(pattern)f(matc)m(hing)i(op)s(erators.)40
+2462 y(extended)i(pattern)f(matc)m(hing)i(op)s(erators.)40
 b(In)26 b(the)i(follo)m(wing)h(description,)g(a)e Fr(pattern-list)k
-Fu(is)d(a)g(list)g(of)150 4024 y(one)23 b(or)f(more)h(patterns)g
+Fu(is)d(a)g(list)g(of)150 2572 y(one)23 b(or)f(more)h(patterns)g
 (separated)g(b)m(y)f(a)h(`)p Ft(|)p Fu('.)38 b(When)22
 b(matc)m(hing)i(\014lenames,)g(the)f Ft(dotglob)e Fu(shell)h(option)150
-4134 y(determines)h(the)h(set)g(of)g(\014lenames)f(that)h(are)g
+2682 y(determines)h(the)h(set)g(of)g(\014lenames)f(that)h(are)g
 (tested,)i(as)d(describ)s(ed)g(ab)s(o)m(v)m(e.)39 b(Comp)s(osite)24
-b(patterns)f(ma)m(y)150 4244 y(b)s(e)30 b(formed)g(using)f(one)i(or)f
-(more)h(of)g(the)f(follo)m(wing)i(sub-patterns:)150 4410
-y Ft(?\()p Fj(pattern-list)p Ft(\))630 4519 y Fu(Matc)m(hes)g(zero)f
+b(patterns)f(ma)m(y)150 2791 y(b)s(e)30 b(formed)g(using)f(one)i(or)f
+(more)h(of)g(the)f(follo)m(wing)i(sub-patterns:)150 2957
+y Ft(?\()p Fj(pattern-list)p Ft(\))630 3066 y Fu(Matc)m(hes)g(zero)f
 (or)g(one)f(o)s(ccurrence)h(of)f(the)h(giv)m(en)g(patterns.)150
-4683 y Ft(*\()p Fj(pattern-list)p Ft(\))630 4793 y Fu(Matc)m(hes)h
+3230 y Ft(*\()p Fj(pattern-list)p Ft(\))630 3340 y Fu(Matc)m(hes)h
 (zero)f(or)g(more)f(o)s(ccurrences)h(of)f(the)h(giv)m(en)g(patterns.)
-150 4957 y Ft(+\()p Fj(pattern-list)p Ft(\))630 5066
+150 3503 y Ft(+\()p Fj(pattern-list)p Ft(\))630 3613
 y Fu(Matc)m(hes)h(one)f(or)f(more)h(o)s(ccurrences)f(of)h(the)f(giv)m
-(en)i(patterns.)150 5230 y Ft(@\()p Fj(pattern-list)p
-Ft(\))630 5340 y Fu(Matc)m(hes)g(one)f(of)f(the)h(giv)m(en)g(patterns.)
-p eop end
-%%Page: 38 44
-TeXDict begin 38 43 bop 150 -116 a Fu(Chapter)30 b(3:)41
-b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(38)150 299
-y Ft(!\()p Fj(pattern-list)p Ft(\))630 408 y Fu(Matc)m(hes)32
-b(an)m(ything)f(except)g(one)g(of)f(the)h(giv)m(en)g(patterns.)275
-560 y(The)h Ft(extglob)f Fu(option)j(c)m(hanges)g(the)f(b)s(eha)m(vior)
-g(of)h(the)f(parser,)g(since)h(the)f(paren)m(theses)h(are)f(nor-)150
-669 y(mally)44 b(treated)g(as)f(op)s(erators)g(with)g(syn)m(tactic)i
-(meaning.)79 b(T)-8 b(o)44 b(ensure)e(that)i(extended)f(matc)m(hing)150
-779 y(patterns)30 b(are)g(parsed)f(correctly)-8 b(,)32
-b(mak)m(e)e(sure)g(that)g Ft(extglob)e Fu(is)h(enabled)h(b)s(efore)f
-(parsing)h(constructs)150 889 y(con)m(taining)i(the)e(patterns,)h
-(including)f(shell)h(functions)f(and)f(command)h(substitutions.)275
-1019 y(When)c(matc)m(hing)i(\014lenames,)g(the)f Ft(dotglob)e
-Fu(shell)i(option)h(determines)f(the)g(set)g(of)g(\014lenames)g(that)
-150 1129 y(are)34 b(tested:)47 b(when)33 b Ft(dotglob)e
-Fu(is)i(enabled,)i(the)e(set)h(of)g(\014lenames)f(includes)g(all)h
-(\014les)g(b)s(eginning)e(with)150 1238 y(`)p Ft(.)p
-Fu(',)d(but)e(the)g(\014lenames)h(`)p Ft(.)p Fu(')g(and)f(`)p
-Ft(..)p Fu(')g(m)m(ust)h(b)s(e)f(matc)m(hed)h(b)m(y)g(a)g(pattern)g(or)
-f(sub-pattern)g(that)h(b)s(egins)150 1348 y(with)33 b(a)g(dot;)j(when)c
-(it)h(is)h(disabled,)f(the)h(set)g(do)s(es)e(not)i(include)f(an)m(y)g
-(\014lenames)g(b)s(eginning)g(with)g(\\.")150 1457 y(unless)24
-b(the)g(pattern)h(or)f(sub-pattern)g(b)s(egins)g(with)g(a)g(`)p
-Ft(.)p Fu('.)39 b(As)25 b(ab)s(o)m(v)m(e,)i(`)p Ft(.)p
-Fu(')d(only)h(has)f(a)h(sp)s(ecial)g(meaning)150 1567
-y(when)k(matc)m(hing)j(\014lenames.)275 1698 y(Complicated)41
-b(extended)f(pattern)g(matc)m(hing)h(against)h(long)f(strings)f(is)g
-(slo)m(w,)k(esp)s(ecially)d(when)150 1807 y(the)29 b(patterns)g(con)m
-(tain)i(alternations)f(and)f(the)g(strings)g(con)m(tain)h(m)m(ultiple)g
-(matc)m(hes.)42 b(Using)29 b(separate)150 1917 y(matc)m(hes)38
-b(against)g(shorter)e(strings,)i(or)f(using)f(arra)m(ys)h(of)g(strings)
-f(instead)h(of)g(a)g(single)g(long)h(string,)150 2026
-y(ma)m(y)31 b(b)s(e)f(faster.)150 2218 y Fk(3.5.9)63
-b(Quote)41 b(Remo)m(v)-7 b(al)150 2365 y Fu(After)32
-b(the)g(preceding)g(expansions,)h(all)f(unquoted)f(o)s(ccurrences)h(of)
-g(the)h(c)m(haracters)g(`)p Ft(\\)p Fu(',)g(`)p Ft(')p
-Fu(',)f(and)g(`)p Ft(")p Fu(')150 2474 y(that)f(did)f(not)g(result)g
-(from)g(one)h(of)g(the)f(ab)s(o)m(v)m(e)i(expansions)e(are)h(remo)m(v)m
-(ed.)150 2707 y Fs(3.6)68 b(Redirections)150 2866 y Fu(Before)32
-b(a)f(command)f(is)h(executed,)h(its)f(input)e(and)h(output)h(ma)m(y)g
-(b)s(e)f Fr(redirected)k Fu(using)c(a)i(sp)s(ecial)f(no-)150
-2976 y(tation)d(in)m(terpreted)f(b)m(y)f(the)h(shell.)40
-b Fr(Redirection)27 b Fu(allo)m(ws)h(commands')f(\014le)f(handles)g(to)
-i(b)s(e)e(duplicated,)150 3085 y(op)s(ened,)i(closed,)i(made)e(to)h
-(refer)f(to)h(di\013eren)m(t)f(\014les,)h(and)f(can)g(c)m(hange)h(the)g
-(\014les)f(the)g(command)g(reads)150 3195 y(from)39 b(and)g(writes)h
-(to.)69 b(Redirection)40 b(ma)m(y)g(also)h(b)s(e)e(used)g(to)h(mo)s
-(dify)f(\014le)g(handles)g(in)g(the)h(curren)m(t)150
-3305 y(shell)e(execution)h(en)m(vironmen)m(t.)65 b(The)37
-b(follo)m(wing)j(redirection)f(op)s(erators)f(ma)m(y)g(precede)h(or)f
-(app)s(ear)150 3414 y(an)m(ywhere)30 b(within)f(a)h(simple)f(command)h
-(or)f(ma)m(y)i(follo)m(w)g(a)f(command.)40 b(Redirections)30
-b(are)g(pro)s(cessed)150 3524 y(in)g(the)h(order)f(they)g(app)s(ear,)g
-(from)g(left)h(to)g(righ)m(t.)275 3654 y(Eac)m(h)45 b(redirection)h
-(that)f(ma)m(y)h(b)s(e)e(preceded)g(b)m(y)h(a)h(\014le)f(descriptor)f
-(n)m(um)m(b)s(er)g(ma)m(y)h(instead)h(b)s(e)150 3764
-y(preceded)41 b(b)m(y)g(a)h(w)m(ord)f(of)g(the)h(form)f
+(en)i(patterns.)150 3776 y Ft(@\()p Fj(pattern-list)p
+Ft(\))630 3886 y Fu(Matc)m(hes)g(one)f(of)f(the)h(giv)m(en)g(patterns.)
+150 4049 y Ft(!\()p Fj(pattern-list)p Ft(\))630 4159
+y Fu(Matc)m(hes)h(an)m(ything)f(except)g(one)g(of)f(the)h(giv)m(en)g
+(patterns.)275 4325 y(The)h Ft(extglob)f Fu(option)j(c)m(hanges)g(the)f
+(b)s(eha)m(vior)g(of)h(the)f(parser,)g(since)h(the)f(paren)m(theses)h
+(are)f(nor-)150 4434 y(mally)44 b(treated)g(as)f(op)s(erators)g(with)g
+(syn)m(tactic)i(meaning.)79 b(T)-8 b(o)44 b(ensure)e(that)i(extended)f
+(matc)m(hing)150 4544 y(patterns)30 b(are)g(parsed)f(correctly)-8
+b(,)32 b(mak)m(e)e(sure)g(that)g Ft(extglob)e Fu(is)h(enabled)h(b)s
+(efore)f(parsing)h(constructs)150 4653 y(con)m(taining)i(the)e
+(patterns,)h(including)f(shell)h(functions)f(and)f(command)h
+(substitutions.)275 4792 y(When)c(matc)m(hing)i(\014lenames,)g(the)f
+Ft(dotglob)e Fu(shell)i(option)h(determines)f(the)g(set)g(of)g
+(\014lenames)g(that)150 4902 y(are)34 b(tested:)47 b(when)33
+b Ft(dotglob)e Fu(is)i(enabled,)i(the)e(set)h(of)g(\014lenames)f
+(includes)g(all)h(\014les)g(b)s(eginning)e(with)150 5011
+y(`)p Ft(.)p Fu(',)d(but)e(the)g(\014lenames)h(`)p Ft(.)p
+Fu(')g(and)f(`)p Ft(..)p Fu(')g(m)m(ust)h(b)s(e)f(matc)m(hed)h(b)m(y)g
+(a)g(pattern)g(or)f(sub-pattern)g(that)h(b)s(egins)150
+5121 y(with)33 b(a)g(dot;)j(when)c(it)h(is)h(disabled,)f(the)h(set)g
+(do)s(es)e(not)i(include)f(an)m(y)g(\014lenames)g(b)s(eginning)g(with)g
+(\\.")150 5230 y(unless)24 b(the)g(pattern)h(or)f(sub-pattern)g(b)s
+(egins)g(with)g(a)g(`)p Ft(.)p Fu('.)39 b(As)25 b(ab)s(o)m(v)m(e,)i(`)p
+Ft(.)p Fu(')d(only)h(has)f(a)h(sp)s(ecial)g(meaning)150
+5340 y(when)k(matc)m(hing)j(\014lenames.)p eop end
+%%Page: 39 45
+TeXDict begin 39 44 bop 150 -116 a Fu(Chapter)30 b(3:)41
+b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(39)275 299
+y(Complicated)41 b(extended)f(pattern)g(matc)m(hing)h(against)h(long)f
+(strings)f(is)g(slo)m(w,)k(esp)s(ecially)d(when)150 408
+y(the)29 b(patterns)g(con)m(tain)i(alternations)f(and)f(the)g(strings)g
+(con)m(tain)h(m)m(ultiple)g(matc)m(hes.)42 b(Using)29
+b(separate)150 518 y(matc)m(hes)38 b(against)g(shorter)e(strings,)i(or)
+f(using)f(arra)m(ys)h(of)g(strings)f(instead)h(of)g(a)g(single)g(long)h
+(string,)150 628 y(ma)m(y)31 b(b)s(e)f(faster.)150 828
+y Fk(3.5.9)63 b(Quote)41 b(Remo)m(v)-7 b(al)150 975 y
+Fu(After)32 b(the)g(preceding)g(expansions,)h(all)f(unquoted)f(o)s
+(ccurrences)h(of)g(the)h(c)m(haracters)g(`)p Ft(\\)p
+Fu(',)g(`)p Ft(')p Fu(',)f(and)g(`)p Ft(")p Fu(')150
+1085 y(that)f(did)f(not)g(result)g(from)g(one)h(of)g(the)f(ab)s(o)m(v)m
+(e)i(expansions)e(are)h(remo)m(v)m(ed.)150 1328 y Fs(3.6)68
+b(Redirections)150 1487 y Fu(Before)32 b(a)f(command)f(is)h(executed,)h
+(its)f(input)e(and)h(output)h(ma)m(y)g(b)s(e)f Fr(redirected)k
+Fu(using)c(a)i(sp)s(ecial)f(no-)150 1597 y(tation)d(in)m(terpreted)f(b)
+m(y)f(the)h(shell.)40 b Fr(Redirection)27 b Fu(allo)m(ws)h(commands')f
+(\014le)f(handles)g(to)i(b)s(e)e(duplicated,)150 1706
+y(op)s(ened,)i(closed,)i(made)e(to)h(refer)f(to)h(di\013eren)m(t)f
+(\014les,)h(and)f(can)g(c)m(hange)h(the)g(\014les)f(the)g(command)g
+(reads)150 1816 y(from)39 b(and)g(writes)h(to.)69 b(Redirection)40
+b(ma)m(y)g(also)h(b)s(e)e(used)g(to)h(mo)s(dify)f(\014le)g(handles)g
+(in)g(the)h(curren)m(t)150 1925 y(shell)e(execution)h(en)m(vironmen)m
+(t.)65 b(The)37 b(follo)m(wing)j(redirection)f(op)s(erators)f(ma)m(y)g
+(precede)h(or)f(app)s(ear)150 2035 y(an)m(ywhere)30 b(within)f(a)h
+(simple)f(command)h(or)f(ma)m(y)i(follo)m(w)g(a)f(command.)40
+b(Redirections)30 b(are)g(pro)s(cessed)150 2145 y(in)g(the)h(order)f
+(they)g(app)s(ear,)g(from)g(left)h(to)g(righ)m(t.)275
+2280 y(Eac)m(h)45 b(redirection)h(that)f(ma)m(y)h(b)s(e)e(preceded)g(b)
+m(y)h(a)h(\014le)f(descriptor)f(n)m(um)m(b)s(er)g(ma)m(y)h(instead)h(b)
+s(e)150 2390 y(preceded)41 b(b)m(y)g(a)h(w)m(ord)f(of)g(the)h(form)f
 Fi({)p Fr(v)-5 b(arname)5 b Fi(})p Fu(.)74 b(In)41 b(this)g(case,)k
-(for)c(eac)m(h)i(redirection)f(op)s(erator)150 3874 y(except)37
+(for)c(eac)m(h)i(redirection)f(op)s(erator)150 2500 y(except)37
 b Ft(>)p Fu(&-)e(and)g Ft(<)p Fu(&-,)i(the)f(shell)g(will)g(allo)s
 (cate)j(a)d(\014le)g(descriptor)f(greater)i(than)f(10)g(and)f(assign)h
-(it)150 3983 y(to)e Fi({)p Fr(v)-5 b(arname)5 b Fi(})p
+(it)150 2609 y(to)e Fi({)p Fr(v)-5 b(arname)5 b Fi(})p
 Fu(.)52 b(If)33 b Ft(>)p Fu(&-)g(or)h Ft(<)p Fu(&-)f(is)g(preceded)h(b)
 m(y)f Fi({)p Fr(v)-5 b(arname)5 b Fi(})p Fu(,)36 b(the)e(v)-5
 b(alue)34 b(of)f Fr(v)-5 b(arname)39 b Fu(de\014nes)33
-b(the)150 4093 y(\014le)e(descriptor)g(to)h(close.)43
+b(the)150 2719 y(\014le)e(descriptor)g(to)h(close.)43
 b(If)31 b Fi({)p Fr(v)-5 b(arname)5 b Fi(})32 b Fu(is)f(supplied,)f
 (the)h(redirection)g(p)s(ersists)f(b)s(ey)m(ond)h(the)g(scop)s(e)150
-4202 y(of)42 b(the)f(command,)j(allo)m(wing)f(the)f(shell)g(programmer)
+2828 y(of)42 b(the)f(command,)j(allo)m(wing)f(the)f(shell)g(programmer)
 f(to)h(manage)g(the)g(\014le)f(descriptor's)h(lifetime)150
-4312 y(man)m(ually)-8 b(.)41 b(The)29 b Ft(varredir_close)c
+2938 y(man)m(ually)-8 b(.)41 b(The)29 b Ft(varredir_close)c
 Fu(shell)k(option)g(manages)h(this)f(b)s(eha)m(vior)g(\(see)h(Section)f
-(4.3.2)i([The)150 4421 y(Shopt)f(Builtin],)h(page)g(71\).)275
-4552 y(In)c(the)i(follo)m(wing)h(descriptions,)g(if)e(the)h(\014le)g
+(4.3.2)i([The)150 3048 y(Shopt)f(Builtin],)h(page)g(72\).)275
+3183 y(In)c(the)i(follo)m(wing)h(descriptions,)g(if)e(the)h(\014le)g
 (descriptor)f(n)m(um)m(b)s(er)g(is)g(omitted,)i(and)f(the)f(\014rst)g
-(c)m(har-)150 4662 y(acter)42 b(of)f(the)g(redirection)g(op)s(erator)g
+(c)m(har-)150 3293 y(acter)42 b(of)f(the)g(redirection)g(op)s(erator)g
 (is)g(`)p Ft(<)p Fu(',)i(the)e(redirection)g(refers)g(to)g(the)g
-(standard)f(input)f(\(\014le)150 4771 y(descriptor)33
+(standard)f(input)f(\(\014le)150 3403 y(descriptor)33
 b(0\).)49 b(If)33 b(the)g(\014rst)f(c)m(haracter)i(of)g(the)f
 (redirection)g(op)s(erator)h(is)f(`)p Ft(>)p Fu(',)h(the)f(redirection)
-g(refers)150 4881 y(to)e(the)g(standard)e(output)h(\(\014le)h
-(descriptor)f(1\).)275 5011 y(The)h(w)m(ord)h(follo)m(wing)i(the)f
+g(refers)150 3512 y(to)e(the)g(standard)e(output)h(\(\014le)h
+(descriptor)f(1\).)275 3648 y(The)h(w)m(ord)h(follo)m(wing)i(the)f
 (redirection)g(op)s(erator)f(in)g(the)h(follo)m(wing)h(descriptions,)f
-(unless)e(other-)150 5121 y(wise)21 b(noted,)i(is)e(sub)5
+(unless)e(other-)150 3758 y(wise)21 b(noted,)i(is)e(sub)5
 b(jected)21 b(to)h(brace)f(expansion,)i(tilde)f(expansion,)h(parameter)
-e(expansion,)i(command)150 5230 y(substitution,)31 b(arithmetic)h
+e(expansion,)i(command)150 3867 y(substitution,)31 b(arithmetic)h
 (expansion,)f(quote)h(remo)m(v)-5 b(al,)33 b(\014lename)e(expansion,)g
-(and)f(w)m(ord)h(splitting.)150 5340 y(If)f(it)h(expands)e(to)i(more)g
-(than)f(one)h(w)m(ord,)f(Bash)h(rep)s(orts)e(an)h(error.)p
-eop end
-%%Page: 39 45
-TeXDict begin 39 44 bop 150 -116 a Fu(Chapter)30 b(3:)41
-b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(39)275 299
-y(Note)31 b(that)g(the)g(order)f(of)g(redirections)h(is)g(signi\014can)
-m(t.)41 b(F)-8 b(or)31 b(example,)h(the)e(command)390
-430 y Ft(ls)47 b(>)h Fj(dirlist)d Ft(2>&1)150 562 y Fu(directs)28
-b(b)s(oth)f(standard)g(output)g(\(\014le)h(descriptor)f(1\))i(and)e
-(standard)f(error)i(\(\014le)g(descriptor)f(2\))h(to)h(the)150
-671 y(\014le)h Fr(dirlist)p Fu(,)h(while)f(the)h(command)390
-803 y Ft(ls)47 b(2>&1)g(>)g Fj(dirlist)150 934 y Fu(directs)28
+(and)f(w)m(ord)h(splitting.)150 3977 y(If)f(it)h(expands)e(to)i(more)g
+(than)f(one)h(w)m(ord,)f(Bash)h(rep)s(orts)e(an)h(error.)275
+4113 y(Note)h(that)g(the)g(order)f(of)g(redirections)h(is)g
+(signi\014can)m(t.)41 b(F)-8 b(or)31 b(example,)h(the)e(command)390
+4249 y Ft(ls)47 b(>)h Fj(dirlist)d Ft(2>&1)150 4384 y
+Fu(directs)28 b(b)s(oth)f(standard)g(output)g(\(\014le)h(descriptor)f
+(1\))i(and)e(standard)f(error)i(\(\014le)g(descriptor)f(2\))h(to)h(the)
+150 4494 y(\014le)h Fr(dirlist)p Fu(,)h(while)f(the)h(command)390
+4630 y Ft(ls)47 b(2>&1)g(>)g Fj(dirlist)150 4766 y Fu(directs)28
 b(only)f(the)h(standard)e(output)i(to)g(\014le)f Fr(dirlist)p
 Fu(,)h(b)s(ecause)g(the)f(standard)g(error)g(w)m(as)h(made)f(a)h(cop)m
-(y)150 1044 y(of)j(the)f(standard)g(output)g(b)s(efore)g(the)g
+(y)150 4875 y(of)j(the)f(standard)g(output)g(b)s(efore)g(the)g
 (standard)g(output)g(w)m(as)g(redirected)h(to)g Fr(dirlist)p
-Fu(.)275 1175 y(Bash)26 b(handles)f(sev)m(eral)j(\014lenames)e(sp)s
+Fu(.)275 5011 y(Bash)26 b(handles)f(sev)m(eral)j(\014lenames)e(sp)s
 (ecially)h(when)f(they)g(are)g(used)g(in)g(redirections,)i(as)e
-(describ)s(ed)150 1285 y(in)38 b(the)h(follo)m(wing)h(table.)66
+(describ)s(ed)150 5121 y(in)38 b(the)h(follo)m(wing)h(table.)66
 b(If)38 b(the)h(op)s(erating)g(system)f(on)h(whic)m(h)f(Bash)h(is)f
-(running)f(pro)m(vides)h(these)150 1395 y(sp)s(ecial)26
+(running)f(pro)m(vides)h(these)150 5230 y(sp)s(ecial)26
 b(\014les,)g(Bash)f(will)h(use)e(them;)k(otherwise)d(it)h(will)f(em)m
 (ulate)i(them)e(in)m(ternally)h(with)f(the)g(b)s(eha)m(vior)150
-1504 y(describ)s(ed)k(b)s(elo)m(w.)150 1658 y Ft(/dev/fd/)p
-Fj(fd)630 1767 y Fu(If)h Fr(fd)j Fu(is)d(a)h(v)-5 b(alid)31
-b(in)m(teger,)h(\014le)e(descriptor)h Fr(fd)i Fu(is)d(duplicated.)150
-1920 y Ft(/dev/stdin)630 2030 y Fu(File)i(descriptor)e(0)h(is)f
-(duplicated.)150 2183 y Ft(/dev/stdout)630 2293 y Fu(File)i(descriptor)
-e(1)h(is)f(duplicated.)150 2446 y Ft(/dev/stderr)630
-2556 y Fu(File)i(descriptor)e(2)h(is)f(duplicated.)150
-2709 y Ft(/dev/tcp/)p Fj(host)p Ft(/)p Fj(port)630 2819
+5340 y(describ)s(ed)k(b)s(elo)m(w.)p eop end
+%%Page: 40 46
+TeXDict begin 40 45 bop 150 -116 a Fu(Chapter)30 b(3:)41
+b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(40)150 299
+y Ft(/dev/fd/)p Fj(fd)630 408 y Fu(If)30 b Fr(fd)j Fu(is)d(a)h(v)-5
+b(alid)31 b(in)m(teger,)h(\014le)e(descriptor)h Fr(fd)i
+Fu(is)d(duplicated.)150 559 y Ft(/dev/stdin)630 669 y
+Fu(File)i(descriptor)e(0)h(is)f(duplicated.)150 820 y
+Ft(/dev/stdout)630 929 y Fu(File)i(descriptor)e(1)h(is)f(duplicated.)
+150 1080 y Ft(/dev/stderr)630 1190 y Fu(File)i(descriptor)e(2)h(is)f
+(duplicated.)150 1340 y Ft(/dev/tcp/)p Fj(host)p Ft(/)p
+Fj(port)630 1450 y Fu(If)41 b Fr(host)i Fu(is)f(a)g(v)-5
+b(alid)41 b(hostname)h(or)f(In)m(ternet)h(address,)i(and)c
+Fr(p)s(ort)j Fu(is)f(an)f(in)m(teger)i(p)s(ort)630 1560
+y(n)m(um)m(b)s(er)23 b(or)i(service)h(name,)g(Bash)f(attempts)h(to)f
+(op)s(en)f(the)h(corresp)s(onding)f(TCP)g(so)s(c)m(k)m(et.)150
+1710 y Ft(/dev/udp/)p Fj(host)p Ft(/)p Fj(port)630 1820
 y Fu(If)41 b Fr(host)i Fu(is)f(a)g(v)-5 b(alid)41 b(hostname)h(or)f(In)
 m(ternet)h(address,)i(and)c Fr(p)s(ort)j Fu(is)f(an)f(in)m(teger)i(p)s
-(ort)630 2928 y(n)m(um)m(b)s(er)23 b(or)i(service)h(name,)g(Bash)f
-(attempts)h(to)f(op)s(en)f(the)h(corresp)s(onding)f(TCP)g(so)s(c)m(k)m
-(et.)150 3082 y Ft(/dev/udp/)p Fj(host)p Ft(/)p Fj(port)630
-3191 y Fu(If)41 b Fr(host)i Fu(is)f(a)g(v)-5 b(alid)41
-b(hostname)h(or)f(In)m(ternet)h(address,)i(and)c Fr(p)s(ort)j
-Fu(is)f(an)f(in)m(teger)i(p)s(ort)630 3301 y(n)m(um)m(b)s(er)23
-b(or)h(service)h(name,)h(Bash)e(attempts)h(to)g(op)s(en)f(the)g
-(corresp)s(onding)f(UDP)i(so)s(c)m(k)m(et.)275 3454 y(A)30
-b(failure)h(to)g(op)s(en)e(or)i(create)h(a)e(\014le)h(causes)g(the)f
-(redirection)h(to)g(fail.)275 3586 y(Redirections)f(using)e(\014le)i
-(descriptors)f(greater)h(than)f(9)h(should)e(b)s(e)h(used)f(with)h
-(care,)h(as)g(they)f(ma)m(y)150 3695 y(con\015ict)i(with)f(\014le)h
-(descriptors)f(the)g(shell)h(uses)f(in)m(ternally)-8
-b(.)150 3889 y Fk(3.6.1)63 b(Redirecting)40 b(Input)150
-4036 y Fu(Redirection)35 b(of)f(input)f(causes)i(the)f(\014le)g(whose)g
-(name)g(results)g(from)g(the)g(expansion)g(of)g Fr(w)m(ord)k
-Fu(to)d(b)s(e)150 4145 y(op)s(ened)d(for)g(reading)g(on)g(\014le)h
-(descriptor)f Ft(n)p Fu(,)h(or)f(the)g(standard)g(input)f(\(\014le)i
-(descriptor)f(0\))h(if)f Ft(n)g Fu(is)h(not)150 4255
-y(sp)s(eci\014ed.)275 4386 y(The)c(general)j(format)e(for)h
-(redirecting)g(input)e(is:)390 4518 y Ft([)p Fj(n)p Ft(]<)p
-Fj(word)150 4711 y Fk(3.6.2)63 b(Redirecting)40 b(Output)150
-4858 y Fu(Redirection)31 b(of)g(output)f(causes)h(the)f(\014le)h(whose)
+(ort)630 1929 y(n)m(um)m(b)s(er)23 b(or)h(service)h(name,)h(Bash)e
+(attempts)h(to)g(op)s(en)f(the)g(corresp)s(onding)f(UDP)i(so)s(c)m(k)m
+(et.)275 2080 y(A)30 b(failure)h(to)g(op)s(en)e(or)i(create)h(a)e
+(\014le)h(causes)g(the)f(redirection)h(to)g(fail.)275
+2210 y(Redirections)f(using)e(\014le)i(descriptors)f(greater)h(than)f
+(9)h(should)e(b)s(e)h(used)f(with)h(care,)h(as)g(they)f(ma)m(y)150
+2320 y(con\015ict)i(with)f(\014le)h(descriptors)f(the)g(shell)h(uses)f
+(in)m(ternally)-8 b(.)150 2511 y Fk(3.6.1)63 b(Redirecting)40
+b(Input)150 2658 y Fu(Redirection)35 b(of)f(input)f(causes)i(the)f
+(\014le)g(whose)g(name)g(results)g(from)g(the)g(expansion)g(of)g
+Fr(w)m(ord)k Fu(to)d(b)s(e)150 2767 y(op)s(ened)d(for)g(reading)g(on)g
+(\014le)h(descriptor)f Ft(n)p Fu(,)h(or)f(the)g(standard)g(input)f
+(\(\014le)i(descriptor)f(0\))h(if)f Ft(n)g Fu(is)h(not)150
+2877 y(sp)s(eci\014ed.)275 3007 y(The)c(general)j(format)e(for)h
+(redirecting)g(input)e(is:)390 3137 y Ft([)p Fj(n)p Ft(]<)p
+Fj(word)150 3328 y Fk(3.6.2)63 b(Redirecting)40 b(Output)150
+3475 y Fu(Redirection)31 b(of)g(output)f(causes)h(the)f(\014le)h(whose)
 f(name)g(results)h(from)e(the)i(expansion)f(of)h Fr(w)m(ord)i
-Fu(to)f(b)s(e)150 4967 y(op)s(ened)d(for)g(writing)g(on)g(\014le)h
+Fu(to)f(b)s(e)150 3584 y(op)s(ened)d(for)g(writing)g(on)g(\014le)h
 (descriptor)f Fr(n)p Fu(,)g(or)g(the)h(standard)e(output)h(\(\014le)h
-(descriptor)f(1\))h(if)g Fr(n)e Fu(is)i(not)150 5077
+(descriptor)f(1\))h(if)g Fr(n)e Fu(is)i(not)150 3694
 y(sp)s(eci\014ed.)40 b(If)30 b(the)g(\014le)h(do)s(es)f(not)h(exist)g
 (it)g(is)f(created;)i(if)e(it)h(do)s(es)f(exist)h(it)g(is)g(truncated)f
-(to)h(zero)g(size.)275 5209 y(The)e(general)j(format)e(for)h
-(redirecting)g(output)f(is:)390 5340 y Ft([)p Fj(n)p
-Ft(]>[|])p Fj(word)p eop end
-%%Page: 40 46
-TeXDict begin 40 45 bop 150 -116 a Fu(Chapter)30 b(3:)41
-b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(40)275 299
-y(If)30 b(the)h(redirection)g(op)s(erator)g(is)g(`)p
-Ft(>)p Fu(',)g(and)f(the)h Ft(noclobber)d Fu(option)j(to)g(the)g
-Ft(set)f Fu(builtin)g(has)h(b)s(een)150 408 y(enabled,)h(the)g
+(to)h(zero)g(size.)275 3824 y(The)e(general)j(format)e(for)h
+(redirecting)g(output)f(is:)390 3954 y Ft([)p Fj(n)p
+Ft(]>[|])p Fj(word)275 4084 y Fu(If)g(the)h(redirection)g(op)s(erator)g
+(is)g(`)p Ft(>)p Fu(',)g(and)f(the)h Ft(noclobber)d Fu(option)j(to)g
+(the)g Ft(set)f Fu(builtin)g(has)h(b)s(een)150 4194 y(enabled,)h(the)g
 (redirection)h(will)f(fail)h(if)e(the)i(\014le)e(whose)h(name)g
 (results)g(from)f(the)h(expansion)g(of)g Fr(w)m(ord)150
-518 y Fu(exists)f(and)f(is)g(a)h(regular)g(\014le.)41
+4304 y Fu(exists)f(and)f(is)g(a)h(regular)g(\014le.)41
 b(If)30 b(the)h(redirection)g(op)s(erator)g(is)f(`)p
 Ft(>|)p Fu(',)h(or)f(the)h(redirection)g(op)s(erator)g(is)150
-628 y(`)p Ft(>)p Fu(')36 b(and)f(the)g Ft(noclobber)e
+4413 y(`)p Ft(>)p Fu(')36 b(and)f(the)g Ft(noclobber)e
 Fu(option)j(is)g(not)g(enabled,)h(the)e(redirection)h(is)g(attempted)g
-(ev)m(en)h(if)e(the)h(\014le)150 737 y(named)30 b(b)m(y)g
-Fr(w)m(ord)k Fu(exists.)150 934 y Fk(3.6.3)63 b(App)s(ending)42
-b(Redirected)e(Output)150 1081 y Fu(Redirection)23 b(of)e(output)h(in)f
+(ev)m(en)h(if)e(the)h(\014le)150 4523 y(named)30 b(b)m(y)g
+Fr(w)m(ord)k Fu(exists.)150 4713 y Fk(3.6.3)63 b(App)s(ending)42
+b(Redirected)e(Output)150 4860 y Fu(Redirection)23 b(of)e(output)h(in)f
 (this)h(fashion)f(causes)h(the)g(\014le)g(whose)f(name)h(results)f
-(from)g(the)h(expansion)g(of)150 1191 y Fr(w)m(ord)28
+(from)g(the)h(expansion)g(of)150 4970 y Fr(w)m(ord)28
 b Fu(to)e(b)s(e)e(op)s(ened)g(for)h(app)s(ending)e(on)i(\014le)g
 (descriptor)g Fr(n)p Fu(,)g(or)g(the)g(standard)f(output)h(\(\014le)g
-(descriptor)150 1300 y(1\))31 b(if)f Fr(n)g Fu(is)h(not)f(sp)s
+(descriptor)150 5080 y(1\))31 b(if)f Fr(n)g Fu(is)h(not)f(sp)s
 (eci\014ed.)40 b(If)30 b(the)h(\014le)f(do)s(es)g(not)h(exist)g(it)g
-(is)f(created.)275 1433 y(The)f(general)j(format)e(for)h(app)s(ending)e
-(output)h(is:)390 1567 y Ft([)p Fj(n)p Ft(]>>)p Fj(word)150
-1763 y Fk(3.6.4)63 b(Redirecting)40 b(Standard)h(Output)g(and)g
-(Standard)g(Error)150 1910 y Fu(This)33 b(construct)i(allo)m(ws)g(b)s
-(oth)f(the)g(standard)g(output)f(\(\014le)i(descriptor)f(1\))h(and)f
-(the)g(standard)f(error)150 2020 y(output)d(\(\014le)h(descriptor)f
-(2\))h(to)g(b)s(e)f(redirected)h(to)g(the)f(\014le)h(whose)f(name)h(is)
-f(the)g(expansion)h(of)f Fr(w)m(ord)p Fu(.)275 2153 y(There)f(are)i(t)m
-(w)m(o)h(formats)e(for)h(redirecting)g(standard)e(output)h(and)g
-(standard)f(error:)390 2286 y Ft(&>)p Fj(word)150 2420
-y Fu(and)390 2553 y Ft(>&)p Fj(word)150 2686 y Fu(Of)h(the)g(t)m(w)m(o)
-i(forms,)e(the)h(\014rst)e(is)i(preferred.)39 b(This)30
-b(is)g(seman)m(tically)j(equiv)-5 b(alen)m(t)32 b(to)390
-2819 y Ft(>)p Fj(word)46 b Ft(2>&1)275 2953 y Fu(When)41
-b(using)g(the)h(second)f(form,)k Fr(w)m(ord)f Fu(ma)m(y)e(not)g(expand)
-f(to)h(a)g(n)m(um)m(b)s(er)f(or)g(`)p Ft(-)p Fu('.)75
-b(If)41 b(it)h(do)s(es,)150 3062 y(other)27 b(redirection)g(op)s
-(erators)f(apply)h(\(see)g(Duplicating)h(File)f(Descriptors)h(b)s(elo)m
-(w\))f(for)f(compatibilit)m(y)150 3172 y(reasons.)150
-3369 y Fk(3.6.5)63 b(App)s(ending)42 b(Standard)f(Output)g(and)g
-(Standard)g(Error)150 3516 y Fu(This)33 b(construct)i(allo)m(ws)g(b)s
-(oth)f(the)g(standard)g(output)f(\(\014le)i(descriptor)f(1\))h(and)f
-(the)g(standard)f(error)150 3625 y(output)d(\(\014le)h(descriptor)f
-(2\))h(to)g(b)s(e)f(app)s(ended)f(to)i(the)f(\014le)h(whose)f(name)g
-(is)h(the)f(expansion)h(of)f Fr(w)m(ord)p Fu(.)275 3758
-y(The)f(format)i(for)f(app)s(ending)f(standard)h(output)g(and)f
-(standard)h(error)g(is:)390 3892 y Ft(&>>)p Fj(word)150
-4025 y Fu(This)g(is)g(seman)m(tically)j(equiv)-5 b(alen)m(t)32
-b(to)390 4158 y Ft(>>)p Fj(word)46 b Ft(2>&1)275 4291
-y Fu(\(see)31 b(Duplicating)h(File)f(Descriptors)g(b)s(elo)m(w\).)150
-4488 y Fk(3.6.6)63 b(Here)41 b(Do)s(cumen)m(ts)150 4635
-y Fu(This)c(t)m(yp)s(e)h(of)f(redirection)i(instructs)e(the)h(shell)f
-(to)i(read)e(input)g(from)g(the)h(curren)m(t)f(source)h(un)m(til)g(a)
-150 4745 y(line)33 b(con)m(taining)g(only)g Fr(delimiter)39
-b Fu(\(with)32 b(no)g(trailing)i(blanks\))e(is)g(seen.)46
-b(All)33 b(of)f(the)h(lines)f(read)g(up)f(to)150 4854
-y(that)k(p)s(oin)m(t)f(are)g(then)g(used)g(as)g(the)g(standard)g(input)
-f(\(or)h(\014le)g(descriptor)g Fr(n)g Fu(if)g Fr(n)g
-Fu(is)g(sp)s(eci\014ed\))g(for)g(a)150 4964 y(command.)275
-5097 y(The)29 b(format)i(of)g(here-do)s(cumen)m(ts)f(is:)390
-5230 y Ft([)p Fj(n)p Ft(]<<[)p Fq(\000)p Ft(])p Fj(word)772
-5340 y(here-document)p eop end
+(is)f(created.)275 5210 y(The)f(general)j(format)e(for)h(app)s(ending)e
+(output)h(is:)390 5340 y Ft([)p Fj(n)p Ft(]>>)p Fj(word)p
+eop end
 %%Page: 41 47
 TeXDict begin 41 46 bop 150 -116 a Fu(Chapter)30 b(3:)41
-b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(41)390 299
-y Fj(delimiter)275 436 y Fu(No)32 b(parameter)h(and)f(v)-5
-b(ariable)32 b(expansion,)h(command)f(substitution,)h(arithmetic)g
-(expansion,)g(or)150 545 y(\014lename)e(expansion)f(is)g(p)s(erformed)f
-(on)h Fr(w)m(ord)p Fu(.)275 682 y(If)40 b(an)m(y)i(part)g(of)f
-Fr(w)m(ord)k Fu(is)c(quoted,)k(the)c Fr(delimiter)49
-b Fu(is)41 b(the)h(result)f(of)h(quote)g(remo)m(v)-5
-b(al)43 b(on)e Fr(w)m(ord)p Fu(,)150 791 y(and)d(the)h(lines)g(in)f
-(the)h(here-do)s(cumen)m(t)g(are)g(not)g(expanded.)65
-b(If)38 b Fr(w)m(ord)k Fu(is)d(unquoted,)h Fr(delimiter)46
-b Fu(is)150 901 y Fr(w)m(ord)32 b Fu(itself,)e(all)f(lines)g(of)g(the)g
-(here-do)s(cumen)m(t)f(are)h(sub)5 b(jected)29 b(to)g(parameter)g
-(expansion,)g(command)150 1011 y(substitution,)39 b(and)e(arithmetic)i
-(expansion,)g(the)f(c)m(haracter)h(sequence)e Ft(\\newline)f
-Fu(is)h(ignored,)j(and)150 1120 y(`)p Ft(\\)p Fu(')31
-b(m)m(ust)f(b)s(e)g(used)f(to)i(quote)g(the)g(c)m(haracters)h(`)p
-Ft(\\)p Fu(',)e(`)p Ft($)p Fu(',)h(and)f(`)p Ft(`)p Fu('.)275
-1257 y(If)21 b(the)i(redirection)g(op)s(erator)g(is)f(`)p
-Ft(<<-)p Fu(',)i(then)e(all)h(leading)g(tab)g(c)m(haracters)h(are)e
-(stripp)s(ed)f(from)h(input)150 1366 y(lines)33 b(and)f(the)h(line)h
+b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(41)150 299
+y Fk(3.6.4)63 b(Redirecting)40 b(Standard)h(Output)g(and)g(Standard)g
+(Error)150 446 y Fu(This)33 b(construct)i(allo)m(ws)g(b)s(oth)f(the)g
+(standard)g(output)f(\(\014le)i(descriptor)f(1\))h(and)f(the)g
+(standard)f(error)150 555 y(output)d(\(\014le)h(descriptor)f(2\))h(to)g
+(b)s(e)f(redirected)h(to)g(the)f(\014le)h(whose)f(name)h(is)f(the)g
+(expansion)h(of)f Fr(w)m(ord)p Fu(.)275 698 y(There)f(are)i(t)m(w)m(o)h
+(formats)e(for)h(redirecting)g(standard)e(output)h(and)g(standard)f
+(error:)390 841 y Ft(&>)p Fj(word)150 984 y Fu(and)390
+1127 y Ft(>&)p Fj(word)150 1270 y Fu(Of)h(the)g(t)m(w)m(o)i(forms,)e
+(the)h(\014rst)e(is)i(preferred.)39 b(This)30 b(is)g(seman)m(tically)j
+(equiv)-5 b(alen)m(t)32 b(to)390 1414 y Ft(>)p Fj(word)46
+b Ft(2>&1)275 1557 y Fu(When)41 b(using)g(the)h(second)f(form,)k
+Fr(w)m(ord)f Fu(ma)m(y)e(not)g(expand)f(to)h(a)g(n)m(um)m(b)s(er)f(or)g
+(`)p Ft(-)p Fu('.)75 b(If)41 b(it)h(do)s(es,)150 1666
+y(other)27 b(redirection)g(op)s(erators)f(apply)h(\(see)g(Duplicating)h
+(File)f(Descriptors)h(b)s(elo)m(w\))f(for)f(compatibilit)m(y)150
+1776 y(reasons.)150 1983 y Fk(3.6.5)63 b(App)s(ending)42
+b(Standard)f(Output)g(and)g(Standard)g(Error)150 2130
+y Fu(This)33 b(construct)i(allo)m(ws)g(b)s(oth)f(the)g(standard)g
+(output)f(\(\014le)i(descriptor)f(1\))h(and)f(the)g(standard)f(error)
+150 2240 y(output)d(\(\014le)h(descriptor)f(2\))h(to)g(b)s(e)f(app)s
+(ended)f(to)i(the)f(\014le)h(whose)f(name)g(is)h(the)f(expansion)h(of)f
+Fr(w)m(ord)p Fu(.)275 2383 y(The)f(format)i(for)f(app)s(ending)f
+(standard)h(output)g(and)f(standard)h(error)g(is:)390
+2526 y Ft(&>>)p Fj(word)150 2669 y Fu(This)g(is)g(seman)m(tically)j
+(equiv)-5 b(alen)m(t)32 b(to)390 2812 y Ft(>>)p Fj(word)46
+b Ft(2>&1)275 2955 y Fu(\(see)31 b(Duplicating)h(File)f(Descriptors)g
+(b)s(elo)m(w\).)150 3163 y Fk(3.6.6)63 b(Here)41 b(Do)s(cumen)m(ts)150
+3310 y Fu(This)c(t)m(yp)s(e)h(of)f(redirection)i(instructs)e(the)h
+(shell)f(to)i(read)e(input)g(from)g(the)h(curren)m(t)f(source)h(un)m
+(til)g(a)150 3419 y(line)33 b(con)m(taining)g(only)g
+Fr(delimiter)39 b Fu(\(with)32 b(no)g(trailing)i(blanks\))e(is)g(seen.)
+46 b(All)33 b(of)f(the)h(lines)f(read)g(up)f(to)150 3529
+y(that)k(p)s(oin)m(t)f(are)g(then)g(used)g(as)g(the)g(standard)g(input)
+f(\(or)h(\014le)g(descriptor)g Fr(n)g Fu(if)g Fr(n)g
+Fu(is)g(sp)s(eci\014ed\))g(for)g(a)150 3639 y(command.)275
+3782 y(The)29 b(format)i(of)g(here-do)s(cumen)m(ts)f(is:)390
+3925 y Ft([)p Fj(n)p Ft(]<<[)p Fq(\000)p Ft(])p Fj(word)772
+4034 y(here-document)390 4144 y(delimiter)275 4287 y
+Fu(No)i(parameter)h(and)f(v)-5 b(ariable)32 b(expansion,)h(command)f
+(substitution,)h(arithmetic)g(expansion,)g(or)150 4396
+y(\014lename)e(expansion)f(is)g(p)s(erformed)f(on)h Fr(w)m(ord)p
+Fu(.)275 4539 y(If)40 b(an)m(y)i(part)g(of)f Fr(w)m(ord)k
+Fu(is)c(quoted,)k(the)c Fr(delimiter)49 b Fu(is)41 b(the)h(result)f(of)
+h(quote)g(remo)m(v)-5 b(al)43 b(on)e Fr(w)m(ord)p Fu(,)150
+4649 y(and)d(the)h(lines)g(in)f(the)h(here-do)s(cumen)m(t)g(are)g(not)g
+(expanded.)65 b(If)38 b Fr(w)m(ord)k Fu(is)d(unquoted,)h
+Fr(delimiter)46 b Fu(is)150 4759 y Fr(w)m(ord)32 b Fu(itself,)e(all)f
+(lines)g(of)g(the)g(here-do)s(cumen)m(t)f(are)h(sub)5
+b(jected)29 b(to)g(parameter)g(expansion,)g(command)150
+4868 y(substitution,)39 b(and)e(arithmetic)i(expansion,)g(the)f(c)m
+(haracter)h(sequence)e Ft(\\newline)f Fu(is)h(ignored,)j(and)150
+4978 y(`)p Ft(\\)p Fu(')31 b(m)m(ust)f(b)s(e)g(used)f(to)i(quote)g(the)
+g(c)m(haracters)h(`)p Ft(\\)p Fu(',)e(`)p Ft($)p Fu(',)h(and)f(`)p
+Ft(`)p Fu('.)275 5121 y(If)21 b(the)i(redirection)g(op)s(erator)g(is)f
+(`)p Ft(<<-)p Fu(',)i(then)e(all)h(leading)g(tab)g(c)m(haracters)h(are)
+e(stripp)s(ed)f(from)h(input)150 5230 y(lines)33 b(and)f(the)h(line)h
 (con)m(taining)g Fr(delimiter)p Fu(.)49 b(This)32 b(allo)m(ws)i
 (here-do)s(cumen)m(ts)f(within)f(shell)i(scripts)e(to)150
-1476 y(b)s(e)e(inden)m(ted)g(in)g(a)h(natural)f(fashion.)150
-1678 y Fk(3.6.7)63 b(Here)41 b(Strings)150 1824 y Fu(A)30
-b(v)-5 b(arian)m(t)32 b(of)e(here)h(do)s(cumen)m(ts,)f(the)g(format)h
-(is:)390 1961 y Ft([)p Fj(n)p Ft(]<<<)46 b Fj(word)275
-2098 y Fu(The)29 b Fr(w)m(ord)k Fu(undergo)s(es)c(tilde)i(expansion,)f
-(parameter)h(and)e(v)-5 b(ariable)31 b(expansion,)f(command)g(sub-)150
-2207 y(stitution,)f(arithmetic)f(expansion,)g(and)f(quote)h(remo)m(v)-5
+5340 y(b)s(e)e(inden)m(ted)g(in)g(a)h(natural)f(fashion.)p
+eop end
+%%Page: 42 48
+TeXDict begin 42 47 bop 150 -116 a Fu(Chapter)30 b(3:)41
+b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(42)150 299
+y Fk(3.6.7)63 b(Here)41 b(Strings)150 446 y Fu(A)30 b(v)-5
+b(arian)m(t)32 b(of)e(here)h(do)s(cumen)m(ts,)f(the)g(format)h(is:)390
+600 y Ft([)p Fj(n)p Ft(]<<<)46 b Fj(word)275 753 y Fu(The)29
+b Fr(w)m(ord)k Fu(undergo)s(es)c(tilde)i(expansion,)f(parameter)h(and)e
+(v)-5 b(ariable)31 b(expansion,)f(command)g(sub-)150
+863 y(stitution,)f(arithmetic)f(expansion,)g(and)f(quote)h(remo)m(v)-5
 b(al.)41 b(Filename)29 b(expansion)e(and)f(w)m(ord)h(splitting)150
-2317 y(are)35 b(not)g(p)s(erformed.)51 b(The)34 b(result)h(is)g
+973 y(are)35 b(not)g(p)s(erformed.)51 b(The)34 b(result)h(is)g
 (supplied)e(as)i(a)f(single)i(string,)f(with)g(a)g(newline)f(app)s
-(ended,)g(to)150 2427 y(the)d(command)f(on)g(its)h(standard)e(input)h
+(ended,)g(to)150 1082 y(the)d(command)f(on)g(its)h(standard)e(input)h
 (\(or)g(\014le)h(descriptor)f Fr(n)g Fu(if)g Fr(n)g Fu(is)h(sp)s
-(eci\014ed\).)150 2628 y Fk(3.6.8)63 b(Duplicating)41
-b(File)g(Descriptors)150 2775 y Fu(The)30 b(redirection)h(op)s(erator)
-390 2912 y Ft([)p Fj(n)p Ft(]<&)p Fj(word)150 3048 y
+(eci\014ed\).)150 1301 y Fk(3.6.8)63 b(Duplicating)41
+b(File)g(Descriptors)150 1448 y Fu(The)30 b(redirection)h(op)s(erator)
+390 1602 y Ft([)p Fj(n)p Ft(]<&)p Fj(word)150 1755 y
 Fu(is)k(used)e(to)j(duplicate)f(input)f(\014le)g(descriptors.)53
 b(If)34 b Fr(w)m(ord)k Fu(expands)c(to)h(one)g(or)g(more)g(digits,)h
-(the)f(\014le)150 3158 y(descriptor)e(denoted)h(b)m(y)f
+(the)f(\014le)150 1865 y(descriptor)e(denoted)h(b)m(y)f
 Fr(n)g Fu(is)g(made)h(to)g(b)s(e)f(a)g(cop)m(y)h(of)g(that)g(\014le)f
 (descriptor.)50 b(If)33 b(the)h(digits)g(in)f Fr(w)m(ord)150
-3268 y Fu(do)c(not)h(sp)s(ecify)f(a)h(\014le)f(descriptor)g(op)s(en)g
+1975 y Fu(do)c(not)h(sp)s(ecify)f(a)h(\014le)f(descriptor)g(op)s(en)g
 (for)g(input,)g(a)h(redirection)g(error)f(o)s(ccurs.)40
-b(If)29 b Fr(w)m(ord)j Fu(ev)-5 b(aluates)150 3377 y(to)31
+b(If)29 b Fr(w)m(ord)j Fu(ev)-5 b(aluates)150 2084 y(to)31
 b(`)p Ft(-)p Fu(',)g(\014le)g(descriptor)g Fr(n)f Fu(is)g(closed.)43
 b(If)30 b Fr(n)g Fu(is)g(not)h(sp)s(eci\014ed,)f(the)h(standard)f
-(input)g(\(\014le)h(descriptor)f(0\))150 3487 y(is)g(used.)275
-3623 y(The)f(op)s(erator)390 3760 y Ft([)p Fj(n)p Ft(]>&)p
-Fj(word)150 3897 y Fu(is)40 b(used)g(similarly)h(to)g(duplicate)f
+(input)g(\(\014le)h(descriptor)f(0\))150 2194 y(is)g(used.)275
+2348 y(The)f(op)s(erator)390 2502 y Ft([)p Fj(n)p Ft(]>&)p
+Fj(word)150 2655 y Fu(is)40 b(used)g(similarly)h(to)g(duplicate)f
 (output)g(\014le)h(descriptors.)70 b(If)40 b Fr(n)f Fu(is)i(not)f(sp)s
-(eci\014ed,)i(the)f(standard)150 4006 y(output)30 b(\(\014le)g
+(eci\014ed,)i(the)f(standard)150 2765 y(output)30 b(\(\014le)g
 (descriptor)g(1\))h(is)f(used.)39 b(If)30 b(the)g(digits)h(in)e
 Fr(w)m(ord)34 b Fu(do)29 b(not)i(sp)s(ecify)e(a)i(\014le)f(descriptor)g
-(op)s(en)150 4116 y(for)35 b(output,)h(a)g(redirection)g(error)e(o)s
+(op)s(en)150 2875 y(for)35 b(output,)h(a)g(redirection)g(error)e(o)s
 (ccurs.)55 b(If)35 b Fr(w)m(ord)j Fu(ev)-5 b(aluates)37
 b(to)f(`)p Ft(-)p Fu(',)h(\014le)e(descriptor)g Fr(n)g
-Fu(is)g(closed.)150 4226 y(As)f(a)g(sp)s(ecial)h(case,)h(if)e
+Fu(is)g(closed.)150 2984 y(As)f(a)g(sp)s(ecial)h(case,)h(if)e
 Fr(n)f Fu(is)h(omitted,)i(and)e Fr(w)m(ord)j Fu(do)s(es)d(not)g(expand)
 f(to)i(one)f(or)g(more)g(digits)h(or)f(`)p Ft(-)p Fu(',)150
-4335 y(the)d(standard)e(output)h(and)g(standard)f(error)h(are)h
+3094 y(the)d(standard)e(output)h(and)g(standard)f(error)h(are)h
 (redirected)g(as)g(describ)s(ed)e(previously)-8 b(.)150
-4537 y Fk(3.6.9)63 b(Mo)m(ving)41 b(File)h(Descriptors)150
-4684 y Fu(The)30 b(redirection)h(op)s(erator)390 4820
-y Ft([)p Fj(n)p Ft(]<&)p Fj(digit)p Ft(-)150 4957 y Fu(mo)m(v)m(es)i
+3312 y Fk(3.6.9)63 b(Mo)m(ving)41 b(File)h(Descriptors)150
+3459 y Fu(The)30 b(redirection)h(op)s(erator)390 3613
+y Ft([)p Fj(n)p Ft(]<&)p Fj(digit)p Ft(-)150 3767 y Fu(mo)m(v)m(es)i
 (the)f(\014le)g(descriptor)f Fr(digit)k Fu(to)d(\014le)g(descriptor)g
 Fr(n)p Fu(,)f(or)h(the)g(standard)f(input)f(\(\014le)j(descriptor)e
-(0\))150 5067 y(if)f Fr(n)g Fu(is)h(not)f(sp)s(eci\014ed.)40
+(0\))150 3876 y(if)f Fr(n)g Fu(is)h(not)f(sp)s(eci\014ed.)40
 b Fr(digit)33 b Fu(is)e(closed)g(after)g(b)s(eing)f(duplicated)g(to)h
-Fr(n)p Fu(.)275 5203 y(Similarly)-8 b(,)31 b(the)f(redirection)h(op)s
-(erator)390 5340 y Ft([)p Fj(n)p Ft(]>&)p Fj(digit)p
-Ft(-)p eop end
-%%Page: 42 48
-TeXDict begin 42 47 bop 150 -116 a Fu(Chapter)30 b(3:)41
-b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(42)150 299
-y(mo)m(v)m(es)29 b(the)g(\014le)f(descriptor)f Fr(digit)k
-Fu(to)e(\014le)f(descriptor)g Fr(n)p Fu(,)g(or)g(the)g(standard)f
-(output)h(\(\014le)g(descriptor)g(1\))150 408 y(if)i
-Fr(n)g Fu(is)h(not)f(sp)s(eci\014ed.)150 625 y Fk(3.6.10)63
-b(Op)s(ening)42 b(File)g(Descriptors)g(for)g(Reading)e(and)h(W)-10
-b(riting)150 772 y Fu(The)30 b(redirection)h(op)s(erator)390
-924 y Ft([)p Fj(n)p Ft(]<>)p Fj(word)150 1076 y Fu(causes)39
-b(the)g(\014le)g(whose)g(name)g(is)g(the)g(expansion)g(of)g
-Fr(w)m(ord)j Fu(to)d(b)s(e)g(op)s(ened)f(for)g(b)s(oth)h(reading)g(and)
-150 1185 y(writing)33 b(on)f(\014le)h(descriptor)f Fr(n)p
-Fu(,)h(or)g(on)f(\014le)h(descriptor)g(0)g(if)f Fr(n)g
-Fu(is)h(not)g(sp)s(eci\014ed.)47 b(If)32 b(the)h(\014le)f(do)s(es)h
-(not)150 1295 y(exist,)e(it)g(is)g(created.)150 1562
-y Fs(3.7)68 b(Executing)46 b(Commands)150 1786 y Fk(3.7.1)63
-b(Simple)41 b(Command)h(Expansion)150 1933 y Fu(When)33
+Fr(n)p Fu(.)275 4030 y(Similarly)-8 b(,)31 b(the)f(redirection)h(op)s
+(erator)390 4184 y Ft([)p Fj(n)p Ft(]>&)p Fj(digit)p
+Ft(-)150 4338 y Fu(mo)m(v)m(es)e(the)g(\014le)f(descriptor)f
+Fr(digit)k Fu(to)e(\014le)f(descriptor)g Fr(n)p Fu(,)g(or)g(the)g
+(standard)f(output)h(\(\014le)g(descriptor)g(1\))150
+4448 y(if)i Fr(n)g Fu(is)h(not)f(sp)s(eci\014ed.)150
+4666 y Fk(3.6.10)63 b(Op)s(ening)42 b(File)g(Descriptors)g(for)g
+(Reading)e(and)h(W)-10 b(riting)150 4813 y Fu(The)30
+b(redirection)h(op)s(erator)390 4967 y Ft([)p Fj(n)p
+Ft(]<>)p Fj(word)150 5121 y Fu(causes)39 b(the)g(\014le)g(whose)g(name)
+g(is)g(the)g(expansion)g(of)g Fr(w)m(ord)j Fu(to)d(b)s(e)g(op)s(ened)f
+(for)g(b)s(oth)h(reading)g(and)150 5230 y(writing)33
+b(on)f(\014le)h(descriptor)f Fr(n)p Fu(,)h(or)g(on)f(\014le)h
+(descriptor)g(0)g(if)f Fr(n)g Fu(is)h(not)g(sp)s(eci\014ed.)47
+b(If)32 b(the)h(\014le)f(do)s(es)h(not)150 5340 y(exist,)e(it)g(is)g
+(created.)p eop end
+%%Page: 43 49
+TeXDict begin 43 48 bop 150 -116 a Fu(Chapter)30 b(3:)41
+b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(43)150 299
+y Fs(3.7)68 b(Executing)46 b(Commands)150 523 y Fk(3.7.1)63
+b(Simple)41 b(Command)h(Expansion)150 670 y Fu(When)33
 b(a)g(simple)g(command)g(is)g(executed,)h(the)g(shell)f(p)s(erforms)e
-(the)i(follo)m(wing)i(expansions,)e(assign-)150 2043
-y(men)m(ts,)e(and)f(redirections,)h(from)f(left)h(to)g(righ)m(t,)g(in)f
-(the)h(follo)m(wing)h(order.)199 2194 y(1.)61 b(The)38
-b(w)m(ords)f(that)i(the)g(parser)e(has)h(mark)m(ed)g(as)h(v)-5
-b(ariable)39 b(assignmen)m(ts)g(\(those)g(preceding)f(the)330
-2304 y(command)30 b(name\))h(and)f(redirections)h(are)f(sa)m(v)m(ed)i
-(for)e(later)h(pro)s(cessing.)199 2447 y(2.)61 b(The)39
-b(w)m(ords)g(that)i(are)f(not)g(v)-5 b(ariable)40 b(assignmen)m(ts)h
-(or)e(redirections)i(are)f(expanded)f(\(see)h(Sec-)330
-2557 y(tion)d(3.5)i([Shell)e(Expansions],)h(page)g(24\).)61
-b(If)37 b(an)m(y)g(w)m(ords)f(remain)h(after)h(expansion,)h(the)e
-(\014rst)330 2666 y(w)m(ord)31 b(is)g(tak)m(en)h(to)g(b)s(e)f(the)g
-(name)h(of)f(the)h(command)f(and)f(the)i(remaining)f(w)m(ords)g(are)g
-(the)h(argu-)330 2776 y(men)m(ts.)199 2919 y(3.)61 b(Redirections)25
-b(are)f(p)s(erformed)f(as)h(describ)s(ed)f(ab)s(o)m(v)m(e)i(\(see)g
-(Section)g(3.6)g([Redirections],)i(page)d(38\).)199 3062
-y(4.)61 b(The)25 b(text)h(after)f(the)g(`)p Ft(=)p Fu(')h(in)e(eac)m(h)
-j(v)-5 b(ariable)25 b(assignmen)m(t)h(undergo)s(es)e(tilde)i
-(expansion,)g(parameter)330 3172 y(expansion,)49 b(command)d
-(substitution,)j(arithmetic)d(expansion,)k(and)45 b(quote)h(remo)m(v)-5
-b(al)46 b(b)s(efore)330 3282 y(b)s(eing)30 b(assigned)h(to)g(the)f(v)-5
-b(ariable.)275 3467 y(If)32 b(no)i(command)f(name)g(results,)h(the)g(v)
--5 b(ariable)34 b(assignmen)m(ts)g(a\013ect)h(the)f(curren)m(t)f(shell)
-h(en)m(viron-)150 3577 y(men)m(t.)68 b(In)38 b(the)h(case)i(of)e(suc)m
-(h)g(a)g(command)g(\(one)h(that)g(consists)g(only)f(of)g(assignmen)m(t)
-h(statemen)m(ts)150 3686 y(and)27 b(redirections\),)i(assignmen)m(t)g
+(the)i(follo)m(wing)i(expansions,)e(assign-)150 779 y(men)m(ts,)e(and)f
+(redirections,)h(from)f(left)h(to)g(righ)m(t,)g(in)f(the)h(follo)m
+(wing)h(order.)199 913 y(1.)61 b(The)38 b(w)m(ords)f(that)i(the)g
+(parser)e(has)h(mark)m(ed)g(as)h(v)-5 b(ariable)39 b(assignmen)m(ts)g
+(\(those)g(preceding)f(the)330 1023 y(command)30 b(name\))h(and)f
+(redirections)h(are)f(sa)m(v)m(ed)i(for)e(later)h(pro)s(cessing.)199
+1157 y(2.)61 b(The)39 b(w)m(ords)g(that)i(are)f(not)g(v)-5
+b(ariable)40 b(assignmen)m(ts)h(or)e(redirections)i(are)f(expanded)f
+(\(see)h(Sec-)330 1267 y(tion)d(3.5)i([Shell)e(Expansions],)h(page)g
+(24\).)61 b(If)37 b(an)m(y)g(w)m(ords)f(remain)h(after)h(expansion,)h
+(the)e(\014rst)330 1376 y(w)m(ord)31 b(is)g(tak)m(en)h(to)g(b)s(e)f
+(the)g(name)h(of)f(the)h(command)f(and)f(the)i(remaining)f(w)m(ords)g
+(are)g(the)h(argu-)330 1486 y(men)m(ts.)199 1620 y(3.)61
+b(Redirections)25 b(are)f(p)s(erformed)f(as)h(describ)s(ed)f(ab)s(o)m
+(v)m(e)i(\(see)g(Section)g(3.6)g([Redirections],)i(page)d(39\).)199
+1754 y(4.)61 b(The)25 b(text)h(after)f(the)g(`)p Ft(=)p
+Fu(')h(in)e(eac)m(h)j(v)-5 b(ariable)25 b(assignmen)m(t)h(undergo)s(es)
+e(tilde)i(expansion,)g(parameter)330 1864 y(expansion,)49
+b(command)d(substitution,)j(arithmetic)d(expansion,)k(and)45
+b(quote)h(remo)m(v)-5 b(al)46 b(b)s(efore)330 1973 y(b)s(eing)30
+b(assigned)h(to)g(the)f(v)-5 b(ariable.)275 2132 y(If)32
+b(no)i(command)f(name)g(results,)h(the)g(v)-5 b(ariable)34
+b(assignmen)m(ts)g(a\013ect)h(the)f(curren)m(t)f(shell)h(en)m(viron-)
+150 2242 y(men)m(t.)68 b(In)38 b(the)h(case)i(of)e(suc)m(h)g(a)g
+(command)g(\(one)h(that)g(consists)g(only)f(of)g(assignmen)m(t)h
+(statemen)m(ts)150 2351 y(and)27 b(redirections\),)i(assignmen)m(t)g
 (statemen)m(ts)g(are)f(p)s(erformed)e(b)s(efore)h(redirections.)41
-b(Otherwise,)28 b(the)150 3796 y(v)-5 b(ariables)27 b(are)g(added)e(to)
+b(Otherwise,)28 b(the)150 2461 y(v)-5 b(ariables)27 b(are)g(added)e(to)
 i(the)g(en)m(vironmen)m(t)g(of)f(the)h(executed)g(command)f(and)g(do)g
-(not)h(a\013ect)h(the)e(cur-)150 3905 y(ren)m(t)32 b(shell)f(en)m
+(not)h(a\013ect)h(the)e(cur-)150 2570 y(ren)m(t)32 b(shell)f(en)m
 (vironmen)m(t.)44 b(If)31 b(an)m(y)g(of)h(the)f(assignmen)m(ts)h
 (attempts)g(to)g(assign)g(a)f(v)-5 b(alue)32 b(to)g(a)g(readonly)150
-4015 y(v)-5 b(ariable,)31 b(an)g(error)f(o)s(ccurs,)g(and)g(the)g
+2680 y(v)-5 b(ariable,)31 b(an)g(error)f(o)s(ccurs,)g(and)g(the)g
 (command)g(exits)i(with)e(a)g(non-zero)h(status.)275
-4167 y(If)i(no)g(command)g(name)h(results,)g(redirections)g(are)g(p)s
+2814 y(If)i(no)g(command)g(name)h(results,)g(redirections)g(are)g(p)s
 (erformed,)f(but)g(do)h(not)f(a\013ect)i(the)f(curren)m(t)150
-4277 y(shell)d(en)m(vironmen)m(t.)41 b(A)30 b(redirection)h(error)f
+2924 y(shell)d(en)m(vironmen)m(t.)41 b(A)30 b(redirection)h(error)f
 (causes)h(the)g(command)f(to)h(exit)g(with)f(a)h(non-zero)g(status.)275
-4428 y(If)26 b(there)i(is)f(a)h(command)f(name)h(left)g(after)g
+3058 y(If)26 b(there)i(is)f(a)h(command)f(name)h(left)g(after)g
 (expansion,)g(execution)h(pro)s(ceeds)e(as)g(describ)s(ed)f(b)s(elo)m
-(w.)150 4538 y(Otherwise,)39 b(the)e(command)g(exits.)62
+(w.)150 3167 y(Otherwise,)39 b(the)e(command)g(exits.)62
 b(If)37 b(one)g(of)g(the)h(expansions)f(con)m(tained)h(a)g(command)f
-(substitu-)150 4648 y(tion,)i(the)d(exit)h(status)g(of)f(the)h(command)
+(substitu-)150 3277 y(tion,)i(the)d(exit)h(status)g(of)f(the)h(command)
 f(is)h(the)f(exit)h(status)g(of)f(the)h(last)g(command)f(substitution)
-150 4757 y(p)s(erformed.)55 b(If)35 b(there)g(w)m(ere)h(no)g(command)f
+150 3387 y(p)s(erformed.)55 b(If)35 b(there)g(w)m(ere)h(no)g(command)f
 (substitutions,)i(the)e(command)h(exits)g(with)f(a)h(status)g(of)150
-4867 y(zero.)150 5083 y Fk(3.7.2)63 b(Command)41 b(Searc)m(h)f(and)h
-(Execution)150 5230 y Fu(After)i(a)h(command)f(has)g(b)s(een)f(split)h
+3496 y(zero.)150 3695 y Fk(3.7.2)63 b(Command)41 b(Searc)m(h)f(and)h
+(Execution)150 3842 y Fu(After)i(a)h(command)f(has)g(b)s(een)f(split)h
 (in)m(to)h(w)m(ords,)j(if)c(it)g(results)g(in)g(a)h(simple)f(command)g
-(and)f(an)150 5340 y(optional)32 b(list)f(of)f(argumen)m(ts,)h(the)g
-(shell)f(p)s(erforms)f(the)i(follo)m(wing)g(actions.)p
-eop end
-%%Page: 43 49
-TeXDict begin 43 48 bop 150 -116 a Fu(Chapter)30 b(3:)41
-b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(43)199 299
-y(1.)61 b(If)24 b(the)g(command)g(name)g(con)m(tains)i(no)e(slashes,)i
-(the)e(shell)h(attempts)g(to)g(lo)s(cate)h(it.)39 b(If)24
-b(there)g(exists)330 408 y(a)h(shell)g(function)f(b)m(y)g(that)h(name,)
-h(that)f(function)f(is)h(in)m(v)m(ok)m(ed)h(as)e(describ)s(ed)g(in)g
-(Section)h(3.3)h([Shell)330 518 y(F)-8 b(unctions],)31
-b(page)h(19.)199 649 y(2.)61 b(If)41 b(the)g(name)h(do)s(es)f(not)g
+(and)f(an)150 3951 y(optional)32 b(list)f(of)f(argumen)m(ts,)h(the)g
+(shell)f(p)s(erforms)f(the)i(follo)m(wing)g(actions.)199
+4085 y(1.)61 b(If)24 b(the)g(command)g(name)g(con)m(tains)i(no)e
+(slashes,)i(the)e(shell)h(attempts)g(to)g(lo)s(cate)h(it.)39
+b(If)24 b(there)g(exists)330 4195 y(a)h(shell)g(function)f(b)m(y)g
+(that)h(name,)h(that)f(function)f(is)h(in)m(v)m(ok)m(ed)h(as)e(describ)
+s(ed)g(in)g(Section)h(3.3)h([Shell)330 4305 y(F)-8 b(unctions],)31
+b(page)h(19.)199 4439 y(2.)61 b(If)41 b(the)g(name)h(do)s(es)f(not)g
 (matc)m(h)i(a)e(function,)j(the)e(shell)f(searc)m(hes)i(for)e(it)h(in)f
-(the)g(list)h(of)g(shell)330 758 y(builtins.)e(If)30
+(the)g(list)h(of)g(shell)330 4548 y(builtins.)e(If)30
 b(a)h(matc)m(h)g(is)f(found,)g(that)h(builtin)f(is)g(in)m(v)m(ok)m(ed.)
-199 889 y(3.)61 b(If)40 b(the)g(name)h(is)f(neither)h(a)f(shell)h
+199 4682 y(3.)61 b(If)40 b(the)g(name)h(is)f(neither)h(a)f(shell)h
 (function)f(nor)g(a)g(builtin,)j(and)d(con)m(tains)h(no)g(slashes,)i
-(Bash)330 999 y(searc)m(hes)c(eac)m(h)g(elemen)m(t)g(of)g
+(Bash)330 4792 y(searc)m(hes)c(eac)m(h)g(elemen)m(t)g(of)g
 Ft($PATH)d Fu(for)i(a)g(directory)h(con)m(taining)g(an)f(executable)h
-(\014le)f(b)m(y)g(that)330 1108 y(name.)56 b(Bash)36
+(\014le)f(b)m(y)g(that)330 4902 y(name.)56 b(Bash)36
 b(uses)f(a)h(hash)e(table)j(to)f(remem)m(b)s(er)f(the)h(full)f
-(pathnames)g(of)h(executable)h(\014les)e(to)330 1218
+(pathnames)g(of)h(executable)h(\014les)e(to)330 5011
 y(a)m(v)m(oid)e(m)m(ultiple)f Ft(PATH)f Fu(searc)m(hes)i(\(see)f(the)g
 (description)g(of)f Ft(hash)g Fu(in)g(Section)i(4.1)f([Bourne)g(Shell)
-330 1328 y(Builtins],)37 b(page)f(48\).)55 b(A)35 b(full)g(searc)m(h)g
+330 5121 y(Builtins],)37 b(page)f(49\).)55 b(A)35 b(full)g(searc)m(h)g
 (of)g(the)g(directories)h(in)f Ft($PATH)e Fu(is)i(p)s(erformed)f(only)h
-(if)g(the)330 1437 y(command)24 b(is)h(not)g(found)e(in)i(the)g(hash)f
+(if)g(the)330 5230 y(command)24 b(is)h(not)g(found)e(in)i(the)g(hash)f
 (table.)39 b(If)25 b(the)f(searc)m(h)i(is)e(unsuccessful,)h(the)g
-(shell)g(searc)m(hes)330 1547 y(for)e(a)h(de\014ned)e(shell)h(function)
+(shell)g(searc)m(hes)330 5340 y(for)e(a)h(de\014ned)e(shell)h(function)
 h(named)e Ft(command_not_found_handle)p Fu(.)32 b(If)23
-b(that)h(function)f(exists,)330 1656 y(it)33 b(is)f(in)m(v)m(ok)m(ed)i
-(in)e(a)h(separate)h(execution)f(en)m(vironmen)m(t)g(with)f(the)h
-(original)h(command)e(and)g(the)330 1766 y(original)26
-b(command's)e(argumen)m(ts)h(as)g(its)g(argumen)m(ts,)h(and)e(the)h
-(function's)f(exit)i(status)f(b)s(ecomes)330 1876 y(the)j(exit)g
-(status)g(of)f(that)h(subshell.)39 b(If)27 b(that)h(function)f(is)h
-(not)g(de\014ned,)f(the)g(shell)h(prin)m(ts)f(an)g(error)330
-1985 y(message)k(and)f(returns)f(an)i(exit)g(status)g(of)f(127.)199
-2116 y(4.)61 b(If)33 b(the)g(searc)m(h)h(is)g(successful,)g(or)f(if)g
-(the)h(command)f(name)g(con)m(tains)i(one)f(or)f(more)g(slashes,)i(the)
-330 2226 y(shell)g(executes)h(the)f(named)f(program)g(in)h(a)g
-(separate)h(execution)f(en)m(vironmen)m(t.)55 b(Argumen)m(t)35
-b(0)330 2335 y(is)30 b(set)h(to)h(the)e(name)h(giv)m(en,)g(and)f(the)h
-(remaining)f(argumen)m(ts)h(to)g(the)g(command)f(are)h(set)g(to)g(the)
-330 2445 y(argumen)m(ts)g(supplied,)e(if)h(an)m(y)-8
-b(.)199 2576 y(5.)61 b(If)35 b(this)h(execution)h(fails)f(b)s(ecause)g
+b(that)h(function)f(exists,)p eop end
+%%Page: 44 50
+TeXDict begin 44 49 bop 150 -116 a Fu(Chapter)30 b(3:)41
+b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(44)330 299
+y(it)33 b(is)f(in)m(v)m(ok)m(ed)i(in)e(a)h(separate)h(execution)f(en)m
+(vironmen)m(t)g(with)f(the)h(original)h(command)e(and)g(the)330
+408 y(original)26 b(command's)e(argumen)m(ts)h(as)g(its)g(argumen)m
+(ts,)h(and)e(the)h(function's)f(exit)i(status)f(b)s(ecomes)330
+518 y(the)j(exit)g(status)g(of)f(that)h(subshell.)39
+b(If)27 b(that)h(function)f(is)h(not)g(de\014ned,)f(the)g(shell)h(prin)
+m(ts)f(an)g(error)330 628 y(message)k(and)f(returns)f(an)i(exit)g
+(status)g(of)f(127.)199 759 y(4.)61 b(If)33 b(the)g(searc)m(h)h(is)g
+(successful,)g(or)f(if)g(the)h(command)f(name)g(con)m(tains)i(one)f(or)
+f(more)g(slashes,)i(the)330 868 y(shell)g(executes)h(the)f(named)f
+(program)g(in)h(a)g(separate)h(execution)f(en)m(vironmen)m(t.)55
+b(Argumen)m(t)35 b(0)330 978 y(is)30 b(set)h(to)h(the)e(name)h(giv)m
+(en,)g(and)f(the)h(remaining)f(argumen)m(ts)h(to)g(the)g(command)f(are)
+h(set)g(to)g(the)330 1087 y(argumen)m(ts)g(supplied,)e(if)h(an)m(y)-8
+b(.)199 1218 y(5.)61 b(If)35 b(this)h(execution)h(fails)f(b)s(ecause)g
 (the)f(\014le)h(is)g(not)g(in)f(executable)j(format,)f(and)e(the)h
-(\014le)g(is)g(not)330 2685 y(a)d(directory)-8 b(,)34
+(\014le)g(is)g(not)330 1328 y(a)d(directory)-8 b(,)34
 b(it)f(is)g(assumed)e(to)j(b)s(e)d(a)i Fr(shell)g(script)h
 Fu(and)e(the)h(shell)f(executes)i(it)f(as)g(describ)s(ed)e(in)330
-2795 y(Section)g(3.8)h([Shell)e(Scripts],)g(page)i(46.)199
-2926 y(6.)61 b(If)38 b(the)h(command)f(w)m(as)h(not)g(b)s(egun)e(async)
+1438 y(Section)g(3.8)h([Shell)e(Scripts],)g(page)i(47.)199
+1569 y(6.)61 b(If)38 b(the)h(command)f(w)m(as)h(not)g(b)s(egun)e(async)
 m(hronously)-8 b(,)42 b(the)c(shell)h(w)m(aits)h(for)e(the)h(command)f
-(to)330 3035 y(complete)32 b(and)e(collects)i(its)f(exit)g(status.)150
-3227 y Fk(3.7.3)63 b(Command)41 b(Execution)f(En)m(vironmen)m(t)150
-3374 y Fu(The)30 b(shell)g(has)h(an)f Fr(execution)h(en)m(vironmen)m(t)
+(to)330 1678 y(complete)32 b(and)e(collects)i(its)f(exit)g(status.)150
+1870 y Fk(3.7.3)63 b(Command)41 b(Execution)f(En)m(vironmen)m(t)150
+2017 y Fu(The)30 b(shell)g(has)h(an)f Fr(execution)h(en)m(vironmen)m(t)
 p Fu(,)h(whic)m(h)e(consists)h(of)f(the)h(follo)m(wing:)225
-3505 y Fq(\017)60 b Fu(op)s(en)32 b(\014les)g(inherited)g(b)m(y)h(the)f
+2148 y Fq(\017)60 b Fu(op)s(en)32 b(\014les)g(inherited)g(b)m(y)h(the)f
 (shell)h(at)g(in)m(v)m(o)s(cation,)j(as)c(mo)s(di\014ed)g(b)m(y)g
-(redirections)h(supplied)e(to)330 3615 y(the)g Ft(exec)e
-Fu(builtin)225 3745 y Fq(\017)60 b Fu(the)28 b(curren)m(t)g(w)m(orking)
+(redirections)h(supplied)e(to)330 2258 y(the)g Ft(exec)e
+Fu(builtin)225 2389 y Fq(\017)60 b Fu(the)28 b(curren)m(t)g(w)m(orking)
 h(directory)g(as)f(set)h(b)m(y)f Ft(cd)p Fu(,)g Ft(pushd)p
 Fu(,)g(or)g Ft(popd)p Fu(,)g(or)g(inherited)g(b)m(y)g(the)h(shell)f(at)
-330 3855 y(in)m(v)m(o)s(cation)225 3986 y Fq(\017)60
+330 2498 y(in)m(v)m(o)s(cation)225 2629 y Fq(\017)60
 b Fu(the)31 b(\014le)f(creation)i(mo)s(de)e(mask)g(as)h(set)g(b)m(y)f
 Ft(umask)f Fu(or)h(inherited)g(from)g(the)h(shell's)f(paren)m(t)225
-4117 y Fq(\017)60 b Fu(curren)m(t)30 b(traps)g(set)h(b)m(y)f
-Ft(trap)225 4247 y Fq(\017)60 b Fu(shell)30 b(parameters)f(that)h(are)g
+2760 y Fq(\017)60 b Fu(curren)m(t)30 b(traps)g(set)h(b)m(y)f
+Ft(trap)225 2891 y Fq(\017)60 b Fu(shell)30 b(parameters)f(that)h(are)g
 (set)g(b)m(y)g(v)-5 b(ariable)30 b(assignmen)m(t)g(or)g(with)f
-Ft(set)f Fu(or)i(inherited)f(from)g(the)330 4357 y(shell's)i(paren)m(t)
-f(in)g(the)h(en)m(vironmen)m(t)225 4488 y Fq(\017)60
+Ft(set)f Fu(or)i(inherited)f(from)g(the)330 3001 y(shell's)i(paren)m(t)
+f(in)g(the)h(en)m(vironmen)m(t)225 3132 y Fq(\017)60
 b Fu(shell)44 b(functions)f(de\014ned)f(during)h(execution)i(or)e
 (inherited)h(from)f(the)h(shell's)g(paren)m(t)f(in)h(the)330
-4597 y(en)m(vironmen)m(t)225 4728 y Fq(\017)60 b Fu(options)33
+3242 y(en)m(vironmen)m(t)225 3373 y Fq(\017)60 b Fu(options)33
 b(enabled)g(at)h(in)m(v)m(o)s(cation)h(\(either)f(b)m(y)f(default)g(or)
-g(with)g(command-line)g(argumen)m(ts\))h(or)330 4838
-y(b)m(y)c Ft(set)225 4969 y Fq(\017)60 b Fu(options)31
+g(with)g(command-line)g(argumen)m(ts\))h(or)330 3482
+y(b)m(y)c Ft(set)225 3613 y Fq(\017)60 b Fu(options)31
 b(enabled)f(b)m(y)g Ft(shopt)f Fu(\(see)j(Section)f(4.3.2)h([The)e
-(Shopt)g(Builtin],)h(page)g(71\))225 5100 y Fq(\017)60
+(Shopt)g(Builtin],)h(page)g(72\))225 3744 y Fq(\017)60
 b Fu(shell)31 b(aliases)g(de\014ned)f(with)g Ft(alias)f
-Fu(\(see)i(Section)g(6.6)h([Aliases],)g(page)f(101\))225
-5230 y Fq(\017)60 b Fu(v)-5 b(arious)50 b(pro)s(cess)f
+Fu(\(see)i(Section)g(6.6)h([Aliases],)g(page)f(102\))225
+3875 y Fq(\017)60 b Fu(v)-5 b(arious)50 b(pro)s(cess)f
 Fm(id)p Fu(s,)55 b(including)49 b(those)i(of)e(bac)m(kground)h(jobs)f
-(\(see)i(Section)g(3.2.4)g([Lists],)330 5340 y(page)31
+(\(see)i(Section)g(3.2.4)g([Lists],)330 3985 y(page)31
 b(10\),)h(the)f(v)-5 b(alue)30 b(of)h Ft($$)p Fu(,)f(and)g(the)g(v)-5
-b(alue)31 b(of)g Ft($PPID)p eop end
-%%Page: 44 50
-TeXDict begin 44 49 bop 150 -116 a Fu(Chapter)30 b(3:)41
-b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(44)275 299
-y(When)34 b(a)g(simple)h(command)f(other)g(than)g(a)h(builtin)f(or)g
-(shell)h(function)f(is)g(to)h(b)s(e)f(executed,)i(it)f(is)150
-408 y(in)m(v)m(ok)m(ed)25 b(in)f(a)g(separate)h(execution)g(en)m
-(vironmen)m(t)g(that)f(consists)g(of)h(the)f(follo)m(wing.)40
-b(Unless)24 b(otherwise)150 518 y(noted,)31 b(the)f(v)-5
-b(alues)31 b(are)g(inherited)f(from)g(the)g(shell.)225
-650 y Fq(\017)60 b Fu(the)31 b(shell's)h(op)s(en)e(\014les,)i(plus)e
+b(alue)31 b(of)g Ft($PPID)275 4137 y Fu(When)j(a)g(simple)h(command)f
+(other)g(than)g(a)h(builtin)f(or)g(shell)h(function)f(is)g(to)h(b)s(e)f
+(executed,)i(it)f(is)150 4247 y(in)m(v)m(ok)m(ed)25 b(in)f(a)g
+(separate)h(execution)g(en)m(vironmen)m(t)g(that)f(consists)g(of)h(the)
+f(follo)m(wing.)40 b(Unless)24 b(otherwise)150 4356 y(noted,)31
+b(the)f(v)-5 b(alues)31 b(are)g(inherited)f(from)g(the)g(shell.)225
+4487 y Fq(\017)60 b Fu(the)31 b(shell's)h(op)s(en)e(\014les,)i(plus)e
 (an)m(y)h(mo)s(di\014cations)h(and)e(additions)h(sp)s(eci\014ed)g(b)m
-(y)g(redirections)g(to)330 760 y(the)g(command)225 892
+(y)g(redirections)g(to)330 4597 y(the)g(command)225 4728
 y Fq(\017)60 b Fu(the)31 b(curren)m(t)f(w)m(orking)g(directory)225
-1024 y Fq(\017)60 b Fu(the)31 b(\014le)f(creation)i(mo)s(de)e(mask)225
-1156 y Fq(\017)60 b Fu(shell)32 b(v)-5 b(ariables)33
+4859 y Fq(\017)60 b Fu(the)31 b(\014le)f(creation)i(mo)s(de)e(mask)225
+4990 y Fq(\017)60 b Fu(shell)32 b(v)-5 b(ariables)33
 b(and)e(functions)h(mark)m(ed)g(for)g(exp)s(ort,)g(along)h(with)f(v)-5
-b(ariables)32 b(exp)s(orted)g(for)g(the)330 1266 y(command,)e(passed)g
+b(ariables)32 b(exp)s(orted)g(for)g(the)330 5099 y(command,)e(passed)g
 (in)g(the)h(en)m(vironmen)m(t)g(\(see)g(Section)g(3.7.4)i([En)m
-(vironmen)m(t],)e(page)g(44\))225 1398 y Fq(\017)60 b
+(vironmen)m(t],)e(page)g(45\))225 5230 y Fq(\017)60 b
 Fu(traps)31 b(caugh)m(t)h(b)m(y)f(the)g(shell)h(are)f(reset)h(to)g(the)
 f(v)-5 b(alues)32 b(inherited)e(from)h(the)g(shell's)h(paren)m(t,)g
-(and)330 1508 y(traps)e(ignored)h(b)m(y)f(the)g(shell)h(are)g(ignored)
-275 1662 y(A)41 b(command)g(in)m(v)m(ok)m(ed)i(in)e(this)h(separate)g
-(en)m(vironmen)m(t)g(cannot)g(a\013ect)h(the)f(shell's)g(execution)150
-1772 y(en)m(vironmen)m(t.)275 1904 y(A)30 b Fr(subshell)j
+(and)330 5340 y(traps)e(ignored)h(b)m(y)f(the)g(shell)h(are)g(ignored)p
+eop end
+%%Page: 45 51
+TeXDict begin 45 50 bop 150 -116 a Fu(Chapter)30 b(3:)41
+b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(45)275 299
+y(A)41 b(command)g(in)m(v)m(ok)m(ed)i(in)e(this)h(separate)g(en)m
+(vironmen)m(t)g(cannot)g(a\013ect)h(the)f(shell's)g(execution)150
+408 y(en)m(vironmen)m(t.)275 540 y(A)30 b Fr(subshell)j
 Fu(is)d(a)h(cop)m(y)g(of)g(the)f(shell)h(pro)s(cess.)275
-2036 y(Command)k(substitution,)j(commands)e(group)s(ed)f(with)i(paren)m
-(theses,)h(and)e(async)m(hronous)g(com-)150 2146 y(mands)c(are)h(in)m
-(v)m(ok)m(ed)i(in)d(a)i(subshell)e(en)m(vironmen)m(t)h(that)h(is)f(a)g
+671 y(Command)k(substitution,)j(commands)e(group)s(ed)f(with)i(paren)m
+(theses,)h(and)e(async)m(hronous)g(com-)150 781 y(mands)c(are)h(in)m(v)
+m(ok)m(ed)i(in)d(a)i(subshell)e(en)m(vironmen)m(t)h(that)h(is)f(a)g
 (duplicate)h(of)f(the)g(shell)g(en)m(vironmen)m(t,)150
-2255 y(except)i(that)g(traps)f(caugh)m(t)h(b)m(y)f(the)h(shell)f(are)g
+891 y(except)i(that)g(traps)f(caugh)m(t)h(b)m(y)f(the)h(shell)f(are)g
 (reset)h(to)g(the)f(v)-5 b(alues)35 b(that)g(the)f(shell)h(inherited)e
-(from)150 2365 y(its)g(paren)m(t)f(at)h(in)m(v)m(o)s(cation.)49
+(from)150 1000 y(its)g(paren)m(t)f(at)h(in)m(v)m(o)s(cation.)49
 b(Builtin)32 b(commands)g(that)h(are)g(in)m(v)m(ok)m(ed)h(as)e(part)g
-(of)h(a)f(pip)s(eline)g(are)h(also)150 2475 y(executed)41
+(of)h(a)f(pip)s(eline)g(are)h(also)150 1110 y(executed)41
 b(in)f(a)h(subshell)e(en)m(vironmen)m(t.)72 b(Changes)40
 b(made)g(to)h(the)g(subshell)e(en)m(vironmen)m(t)i(cannot)150
-2584 y(a\013ect)32 b(the)f(shell's)f(execution)i(en)m(vironmen)m(t.)275
-2716 y(Subshells)c(spa)m(wned)i(to)h(execute)g(command)f(substitutions)
+1219 y(a\013ect)32 b(the)f(shell's)f(execution)i(en)m(vironmen)m(t.)275
+1351 y(Subshells)c(spa)m(wned)i(to)h(execute)g(command)f(substitutions)
 g(inherit)g(the)g(v)-5 b(alue)31 b(of)f(the)h Ft(-e)e
-Fu(option)150 2826 y(from)23 b(the)i(paren)m(t)f(shell.)38
+Fu(option)150 1460 y(from)23 b(the)i(paren)m(t)f(shell.)38
 b(When)24 b(not)g(in)g Fm(posix)f Fu(mo)s(de,)i(Bash)f(clears)h(the)f
-Ft(-e)f Fu(option)i(in)e(suc)m(h)h(subshells.)275 2958
+Ft(-e)f Fu(option)i(in)e(suc)m(h)h(subshells.)275 1592
 y(If)f(a)h(command)g(is)g(follo)m(w)m(ed)h(b)m(y)f(a)g(`)p
 Ft(&)p Fu(')g(and)f(job)h(con)m(trol)h(is)f(not)g(activ)m(e,)k(the)c
-(default)g(standard)f(input)150 3068 y(for)35 b(the)g(command)g(is)g
+(default)g(standard)f(input)150 1701 y(for)35 b(the)g(command)g(is)g
 (the)g(empt)m(y)h(\014le)f Ft(/dev/null)p Fu(.)52 b(Otherwise,)37
-b(the)e(in)m(v)m(ok)m(ed)h(command)f(inherits)150 3177
+b(the)e(in)m(v)m(ok)m(ed)h(command)f(inherits)150 1811
 y(the)c(\014le)f(descriptors)g(of)h(the)f(calling)i(shell)f(as)f(mo)s
-(di\014ed)g(b)m(y)g(redirections.)150 3372 y Fk(3.7.4)63
-b(En)m(vironmen)m(t)150 3519 y Fu(When)29 b(a)g(program)f(is)h(in)m(v)m
+(di\014ed)g(b)m(y)g(redirections.)150 2004 y Fk(3.7.4)63
+b(En)m(vironmen)m(t)150 2151 y Fu(When)29 b(a)g(program)f(is)h(in)m(v)m
 (ok)m(ed)h(it)g(is)f(giv)m(en)g(an)g(arra)m(y)g(of)g(strings)g(called)h
 (the)f Fr(en)m(vironmen)m(t)p Fu(.)41 b(This)28 b(is)h(a)150
-3628 y(list)i(of)g(name-v)-5 b(alue)31 b(pairs,)f(of)h(the)f(form)g
-Ft(name=value)p Fu(.)275 3761 y(Bash)39 b(pro)m(vides)g(sev)m(eral)i(w)
+2261 y(list)i(of)g(name-v)-5 b(alue)31 b(pairs,)f(of)h(the)f(form)g
+Ft(name=value)p Fu(.)275 2392 y(Bash)39 b(pro)m(vides)g(sev)m(eral)i(w)
 m(a)m(ys)g(to)f(manipulate)f(the)h(en)m(vironmen)m(t.)69
-b(On)38 b(in)m(v)m(o)s(cation,)44 b(the)c(shell)150 3870
+b(On)38 b(in)m(v)m(o)s(cation,)44 b(the)c(shell)150 2502
 y(scans)g(its)h(o)m(wn)f(en)m(vironmen)m(t)h(and)f(creates)i(a)f
 (parameter)f(for)g(eac)m(h)i(name)e(found,)i(automatically)150
-3980 y(marking)23 b(it)h(for)f Ft(export)f Fu(to)i(c)m(hild)g(pro)s
+2611 y(marking)23 b(it)h(for)f Ft(export)f Fu(to)i(c)m(hild)g(pro)s
 (cesses.)38 b(Executed)24 b(commands)f(inherit)g(the)g(en)m(vironmen)m
-(t.)39 b(The)150 4089 y Ft(export)c Fu(and)i(`)p Ft(declare)29
+(t.)39 b(The)150 2721 y Ft(export)c Fu(and)i(`)p Ft(declare)29
 b(-x)p Fu(')36 b(commands)h(allo)m(w)i(parameters)e(and)g(functions)g
-(to)h(b)s(e)e(added)h(to)h(and)150 4199 y(deleted)21
+(to)h(b)s(e)e(added)h(to)h(and)150 2830 y(deleted)21
 b(from)f(the)h(en)m(vironmen)m(t.)38 b(If)20 b(the)h(v)-5
 b(alue)21 b(of)g(a)g(parameter)g(in)f(the)g(en)m(vironmen)m(t)i(is)e
-(mo)s(di\014ed,)i(the)150 4309 y(new)31 b(v)-5 b(alue)32
+(mo)s(di\014ed,)i(the)150 2940 y(new)31 b(v)-5 b(alue)32
 b(b)s(ecomes)f(part)h(of)f(the)h(en)m(vironmen)m(t,)g(replacing)h(the)e
 (old.)44 b(The)31 b(en)m(vironmen)m(t)h(inherited)150
-4418 y(b)m(y)f(an)m(y)g(executed)h(command)f(consists)g(of)g(the)g
+3050 y(b)m(y)f(an)m(y)g(executed)h(command)f(consists)g(of)g(the)g
 (shell's)h(initial)g(en)m(vironmen)m(t,)g(whose)f(v)-5
-b(alues)31 b(ma)m(y)h(b)s(e)150 4528 y(mo)s(di\014ed)26
+b(alues)31 b(ma)m(y)h(b)s(e)150 3159 y(mo)s(di\014ed)26
 b(in)g(the)h(shell,)h(less)f(an)m(y)g(pairs)f(remo)m(v)m(ed)i(b)m(y)f
 (the)g Ft(unset)e Fu(and)h(`)p Ft(export)j(-n)p Fu(')e(commands,)g
-(plus)150 4637 y(an)m(y)k(additions)f(via)h(the)g Ft(export)d
-Fu(and)i(`)p Ft(declare)f(-x)p Fu(')h(commands.)275 4769
+(plus)150 3269 y(an)m(y)k(additions)f(via)h(the)g Ft(export)d
+Fu(and)i(`)p Ft(declare)f(-x)p Fu(')h(commands.)275 3400
 y(The)j(en)m(vironmen)m(t)i(for)f(an)m(y)g(simple)h(command)f(or)g
 (function)g(ma)m(y)g(b)s(e)g(augmen)m(ted)h(temp)s(orarily)150
-4879 y(b)m(y)c(pre\014xing)e(it)i(with)g(parameter)g(assignmen)m(ts,)h
+3510 y(b)m(y)c(pre\014xing)e(it)i(with)g(parameter)g(assignmen)m(ts,)h
 (as)e(describ)s(ed)g(in)g(Section)i(3.4)g([Shell)e(P)m(arameters],)150
-4989 y(page)g(21.)41 b(These)29 b(assignmen)m(t)i(statemen)m(ts)g
+3619 y(page)g(21.)41 b(These)29 b(assignmen)m(t)i(statemen)m(ts)g
 (a\013ect)f(only)g(the)f(en)m(vironmen)m(t)h(seen)g(b)m(y)f(that)h
-(command.)275 5121 y(If)g(the)h Ft(-k)g Fu(option)g(is)g(set)h(\(see)g
-(Section)g(4.3.1)g([The)f(Set)g(Builtin],)h(page)g(67\),)h(then)e(all)g
-(parameter)150 5230 y(assignmen)m(ts)f(are)g(placed)h(in)e(the)h(en)m
+(command.)275 3751 y(If)g(the)h Ft(-k)g Fu(option)g(is)g(set)h(\(see)g
+(Section)g(4.3.1)g([The)f(Set)g(Builtin],)h(page)g(68\),)h(then)e(all)g
+(parameter)150 3860 y(assignmen)m(ts)f(are)g(placed)h(in)e(the)h(en)m
 (vironmen)m(t)g(for)g(a)g(command,)f(not)h(just)f(those)i(that)f
-(precede)g(the)150 5340 y(command)g(name.)p eop end
-%%Page: 45 51
-TeXDict begin 45 50 bop 150 -116 a Fu(Chapter)30 b(3:)41
-b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(45)275 299
-y(When)31 b(Bash)h(in)m(v)m(ok)m(es)i(an)e(external)h(command,)f(the)g
-(v)-5 b(ariable)33 b(`)p Ft($_)p Fu(')f(is)g(set)h(to)f(the)g(full)g
-(pathname)150 408 y(of)f(the)f(command)g(and)g(passed)g(to)h(that)g
-(command)f(in)g(its)h(en)m(vironmen)m(t.)150 605 y Fk(3.7.5)63
-b(Exit)40 b(Status)150 752 y Fu(The)23 b(exit)i(status)f(of)h(an)e
+(precede)g(the)150 3970 y(command)g(name.)275 4101 y(When)h(Bash)h(in)m
+(v)m(ok)m(es)i(an)e(external)h(command,)f(the)g(v)-5
+b(ariable)33 b(`)p Ft($_)p Fu(')f(is)g(set)h(to)f(the)g(full)g
+(pathname)150 4211 y(of)f(the)f(command)g(and)g(passed)g(to)h(that)g
+(command)f(in)g(its)h(en)m(vironmen)m(t.)150 4404 y Fk(3.7.5)63
+b(Exit)40 b(Status)150 4551 y Fu(The)23 b(exit)i(status)f(of)h(an)e
 (executed)i(command)f(is)g(the)g(v)-5 b(alue)24 b(returned)f(b)m(y)h
-(the)g Ft(waitpid)e Fu(system)i(call)h(or)150 862 y(equiv)-5
+(the)g Ft(waitpid)e Fu(system)i(call)h(or)150 4661 y(equiv)-5
 b(alen)m(t)33 b(function.)45 b(Exit)32 b(statuses)g(fall)g(b)s(et)m(w)m
 (een)h(0)f(and)f(255,)i(though,)f(as)g(explained)g(b)s(elo)m(w,)h(the)
-150 971 y(shell)i(ma)m(y)g(use)f(v)-5 b(alues)35 b(ab)s(o)m(v)m(e)g
+150 4770 y(shell)i(ma)m(y)g(use)f(v)-5 b(alues)35 b(ab)s(o)m(v)m(e)g
 (125)h(sp)s(ecially)-8 b(.)54 b(Exit)35 b(statuses)g(from)f(shell)h
-(builtins)f(and)f(comp)s(ound)150 1081 y(commands)j(are)g(also)h
+(builtins)f(and)f(comp)s(ound)150 4880 y(commands)j(are)g(also)h
 (limited)g(to)g(this)f(range.)58 b(Under)36 b(certain)h(circumstances,)
-h(the)e(shell)h(will)f(use)150 1191 y(sp)s(ecial)31 b(v)-5
+h(the)e(shell)h(will)f(use)150 4989 y(sp)s(ecial)31 b(v)-5
 b(alues)31 b(to)g(indicate)g(sp)s(eci\014c)f(failure)h(mo)s(des.)275
-1324 y(F)-8 b(or)32 b(the)g(shell's)g(purp)s(oses,)e(a)j(command)e
+5121 y(F)-8 b(or)32 b(the)g(shell's)g(purp)s(oses,)e(a)j(command)e
 (whic)m(h)h(exits)g(with)g(a)g(zero)g(exit)h(status)f(has)f(succeeded.)
-150 1433 y(A)e(non-zero)h(exit)g(status)g(indicates)g(failure.)40
+150 5230 y(A)e(non-zero)h(exit)g(status)g(indicates)g(failure.)40
 b(This)28 b(seemingly)i(coun)m(ter-in)m(tuitiv)m(e)i(sc)m(heme)e(is)f
-(used)g(so)150 1543 y(there)34 b(is)g(one)g(w)m(ell-de\014ned)g(w)m(a)m
+(used)g(so)150 5340 y(there)34 b(is)g(one)g(w)m(ell-de\014ned)g(w)m(a)m
 (y)g(to)h(indicate)g(success)f(and)f(a)h(v)-5 b(ariet)m(y)35
-b(of)f(w)m(a)m(ys)h(to)f(indicate)h(v)-5 b(arious)150
-1653 y(failure)38 b(mo)s(des.)62 b(When)37 b(a)h(command)f(terminates)i
-(on)e(a)h(fatal)h(signal)g(whose)e(n)m(um)m(b)s(er)f(is)i
-Fr(N)p Fu(,)i(Bash)150 1762 y(uses)30 b(the)g(v)-5 b(alue)31
+b(of)f(w)m(a)m(ys)h(to)f(indicate)h(v)-5 b(arious)p eop
+end
+%%Page: 46 52
+TeXDict begin 46 51 bop 150 -116 a Fu(Chapter)30 b(3:)41
+b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(46)150 299
+y(failure)38 b(mo)s(des.)62 b(When)37 b(a)h(command)f(terminates)i(on)e
+(a)h(fatal)h(signal)g(whose)e(n)m(um)m(b)s(er)f(is)i
+Fr(N)p Fu(,)i(Bash)150 408 y(uses)30 b(the)g(v)-5 b(alue)31
 b(128)p Ft(+)p Fr(N)42 b Fu(as)30 b(the)h(exit)g(status.)275
-1895 y(If)k(a)h(command)g(is)g(not)g(found,)g(the)g(c)m(hild)h(pro)s
+549 y(If)k(a)h(command)g(is)g(not)g(found,)g(the)g(c)m(hild)h(pro)s
 (cess)e(created)i(to)g(execute)g(it)g(returns)d(a)j(status)f(of)150
-2005 y(127.)42 b(If)30 b(a)h(command)f(is)g(found)f(but)h(is)g(not)h
+658 y(127.)42 b(If)30 b(a)h(command)f(is)g(found)f(but)h(is)g(not)h
 (executable,)h(the)f(return)e(status)i(is)f(126.)275
-2138 y(If)i(a)i(command)f(fails)g(b)s(ecause)g(of)h(an)f(error)f
-(during)g(expansion)h(or)g(redirection,)i(the)f(exit)g(status)150
-2248 y(is)c(greater)i(than)e(zero.)275 2381 y(The)38
-b(exit)h(status)g(is)g(used)f(b)m(y)g(the)h(Bash)g(conditional)h
-(commands)e(\(see)h(Section)h(3.2.5.2)h([Con-)150 2491
-y(ditional)i(Constructs],)h(page)f(12\))g(and)e(some)i(of)f(the)g(list)
-g(constructs)g(\(see)h(Section)f(3.2.4)i([Lists],)150
-2600 y(page)31 b(10\).)275 2733 y(All)40 b(of)g(the)h(Bash)f(builtins)f
-(return)g(an)h(exit)h(status)g(of)f(zero)h(if)f(they)g(succeed)g(and)g
-(a)g(non-zero)150 2843 y(status)34 b(on)f(failure,)i(so)f(they)g(ma)m
-(y)g(b)s(e)f(used)g(b)m(y)g(the)h(conditional)h(and)e(list)h
-(constructs.)50 b(All)35 b(builtins)150 2953 y(return)e(an)i(exit)g
-(status)g(of)f(2)h(to)g(indicate)h(incorrect)f(usage,)h(generally)g(in)
-m(v)-5 b(alid)35 b(options)g(or)f(missing)150 3062 y(argumen)m(ts.)275
-3196 y(The)f(exit)i(status)f(of)h(the)f(last)h(command)f(is)g(a)m(v)-5
+798 y(If)i(a)i(command)f(fails)g(b)s(ecause)g(of)h(an)f(error)f(during)
+g(expansion)h(or)g(redirection,)i(the)f(exit)g(status)150
+908 y(is)c(greater)i(than)e(zero.)275 1048 y(The)38 b(exit)h(status)g
+(is)g(used)f(b)m(y)g(the)h(Bash)g(conditional)h(commands)e(\(see)h
+(Section)h(3.2.5.2)h([Con-)150 1158 y(ditional)i(Constructs],)h(page)f
+(12\))g(and)e(some)i(of)f(the)g(list)g(constructs)g(\(see)h(Section)f
+(3.2.4)i([Lists],)150 1267 y(page)31 b(10\).)275 1407
+y(All)40 b(of)g(the)h(Bash)f(builtins)f(return)g(an)h(exit)h(status)g
+(of)f(zero)h(if)f(they)g(succeed)g(and)g(a)g(non-zero)150
+1517 y(status)34 b(on)f(failure,)i(so)f(they)g(ma)m(y)g(b)s(e)f(used)g
+(b)m(y)g(the)h(conditional)h(and)e(list)h(constructs.)50
+b(All)35 b(builtins)150 1627 y(return)e(an)i(exit)g(status)g(of)f(2)h
+(to)g(indicate)h(incorrect)f(usage,)h(generally)g(in)m(v)-5
+b(alid)35 b(options)g(or)f(missing)150 1736 y(argumen)m(ts.)275
+1876 y(The)f(exit)i(status)f(of)h(the)f(last)h(command)f(is)g(a)m(v)-5
 b(ailable)36 b(in)e(the)g(sp)s(ecial)h(parameter)f($?)52
-b(\(see)35 b(Sec-)150 3305 y(tion)c(3.4.2)h([Sp)s(ecial)f(P)m
-(arameters],)h(page)f(23\).)150 3502 y Fk(3.7.6)63 b(Signals)150
-3649 y Fu(When)36 b(Bash)g(is)h(in)m(teractiv)m(e,)j(in)c(the)h
+b(\(see)35 b(Sec-)150 1986 y(tion)c(3.4.2)h([Sp)s(ecial)f(P)m
+(arameters],)h(page)f(23\).)150 2191 y Fk(3.7.6)63 b(Signals)150
+2338 y Fu(When)36 b(Bash)g(is)h(in)m(teractiv)m(e,)j(in)c(the)h
 (absence)f(of)h(an)m(y)f(traps,)i(it)e(ignores)h Ft(SIGTERM)d
-Fu(\(so)j(that)g(`)p Ft(kill)150 3758 y(0)p Fu(')c(do)s(es)g(not)g
+Fu(\(so)j(that)g(`)p Ft(kill)150 2447 y(0)p Fu(')c(do)s(es)g(not)g
 (kill)g(an)g(in)m(teractiv)m(e)j(shell\),)f(and)d Ft(SIGINT)f
 Fu(is)i(caugh)m(t)h(and)f(handled)f(\(so)h(that)h(the)f
-Ft(wait)150 3868 y Fu(builtin)24 b(is)h(in)m(terruptible\).)39
+Ft(wait)150 2557 y Fu(builtin)24 b(is)h(in)m(terruptible\).)39
 b(When)24 b(Bash)g(receiv)m(es)j(a)d Ft(SIGINT)p Fu(,)h(it)g(breaks)f
-(out)h(of)f(an)m(y)h(executing)h(lo)s(ops.)150 3978 y(In)31
+(out)h(of)f(an)m(y)h(executing)h(lo)s(ops.)150 2667 y(In)31
 b(all)h(cases,)h(Bash)f(ignores)g Ft(SIGQUIT)p Fu(.)42
 b(If)32 b(job)f(con)m(trol)i(is)e(in)h(e\013ect)h(\(see)f(Chapter)f(7)h
-([Job)g(Con)m(trol],)150 4087 y(page)f(116\),)h(Bash)f(ignores)g
+([Job)g(Con)m(trol],)150 2776 y(page)f(117\),)h(Bash)f(ignores)g
 Ft(SIGTTIN)p Fu(,)d Ft(SIGTTOU)p Fu(,)h(and)h Ft(SIGTSTP)p
-Fu(.)275 4220 y(Non-builtin)h(commands)g(started)g(b)m(y)g(Bash)h(ha)m
+Fu(.)275 2916 y(Non-builtin)h(commands)g(started)g(b)m(y)g(Bash)h(ha)m
 (v)m(e)g(signal)g(handlers)e(set)i(to)g(the)g(v)-5 b(alues)31
-b(inherited)150 4330 y(b)m(y)37 b(the)h(shell)g(from)f(its)h(paren)m
+b(inherited)150 3026 y(b)m(y)37 b(the)h(shell)g(from)f(its)h(paren)m
 (t.)62 b(When)38 b(job)f(con)m(trol)i(is)e(not)h(in)f(e\013ect,)k
-(async)m(hronous)c(commands)150 4440 y(ignore)f Ft(SIGINT)e
+(async)m(hronous)c(commands)150 3136 y(ignore)f Ft(SIGINT)e
 Fu(and)h Ft(SIGQUIT)e Fu(in)j(addition)f(to)i(these)f(inherited)f
-(handlers.)55 b(Commands)35 b(run)f(as)i(a)150 4549 y(result)27
+(handlers.)55 b(Commands)35 b(run)f(as)i(a)150 3245 y(result)27
 b(of)h(command)f(substitution)h(ignore)g(the)g(k)m(eyb)s
 (oard-generated)g(job)g(con)m(trol)h(signals)f Ft(SIGTTIN)p
-Fu(,)150 4659 y Ft(SIGTTOU)p Fu(,)h(and)g Ft(SIGTSTP)p
-Fu(.)275 4792 y(The)h(shell)i(exits)g(b)m(y)f(default)g(up)s(on)f
+Fu(,)150 3355 y Ft(SIGTTOU)p Fu(,)h(and)g Ft(SIGTSTP)p
+Fu(.)275 3495 y(The)h(shell)i(exits)g(b)m(y)f(default)g(up)s(on)f
 (receipt)i(of)f(a)h Ft(SIGHUP)p Fu(.)42 b(Before)32 b(exiting,)h(an)e
-(in)m(teractiv)m(e)j(shell)150 4902 y(resends)41 b(the)i
+(in)m(teractiv)m(e)j(shell)150 3604 y(resends)41 b(the)i
 Ft(SIGHUP)e Fu(to)i(all)g(jobs,)i(running)c(or)h(stopp)s(ed.)76
 b(Stopp)s(ed)41 b(jobs)h(are)h(sen)m(t)g Ft(SIGCONT)d
-Fu(to)150 5011 y(ensure)32 b(that)h(they)g(receiv)m(e)i(the)e
+Fu(to)150 3714 y(ensure)32 b(that)h(they)g(receiv)m(e)i(the)e
 Ft(SIGHUP)p Fu(.)47 b(T)-8 b(o)33 b(prev)m(en)m(t)g(the)g(shell)g(from)
-g(sending)f(the)h Ft(SIGHUP)e Fu(signal)150 5121 y(to)i(a)g(particular)
+g(sending)f(the)h Ft(SIGHUP)e Fu(signal)150 3824 y(to)i(a)g(particular)
 g(job,)g(it)g(should)f(b)s(e)g(remo)m(v)m(ed)h(from)g(the)f(jobs)g
 (table)i(with)e(the)h Ft(disown)e Fu(builtin)h(\(see)150
-5230 y(Section)c(7.2)g([Job)e(Con)m(trol)i(Builtins],)g(page)g(117\))h
+3933 y(Section)c(7.2)g([Job)e(Con)m(trol)i(Builtins],)g(page)g(118\))h
 (or)e(mark)m(ed)g(to)g(not)g(receiv)m(e)i Ft(SIGHUP)c
-Fu(using)i Ft(disown)150 5340 y(-h)p Fu(.)p eop end
-%%Page: 46 52
-TeXDict begin 46 51 bop 150 -116 a Fu(Chapter)30 b(3:)41
-b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(46)275 299
-y(If)38 b(the)h Ft(huponexit)e Fu(shell)i(option)g(has)g(b)s(een)f(set)
-i(with)f Ft(shopt)e Fu(\(see)j(Section)g(4.3.2)h([The)e(Shopt)150
-408 y(Builtin],)31 b(page)g(71\),)h(Bash)f(sends)e(a)i
+Fu(using)i Ft(disown)150 4043 y(-h)p Fu(.)275 4183 y(If)38
+b(the)h Ft(huponexit)e Fu(shell)i(option)g(has)g(b)s(een)f(set)i(with)f
+Ft(shopt)e Fu(\(see)j(Section)g(4.3.2)h([The)e(Shopt)150
+4293 y(Builtin],)31 b(page)g(72\),)h(Bash)f(sends)e(a)i
 Ft(SIGHUP)e Fu(to)i(all)g(jobs)f(when)f(an)i(in)m(teractiv)m(e)i(login)
-e(shell)g(exits.)275 554 y(If)38 b(Bash)h(is)g(w)m(aiting)h(for)f(a)g
+e(shell)g(exits.)275 4433 y(If)38 b(Bash)h(is)g(w)m(aiting)h(for)f(a)g
 (command)f(to)i(complete)g(and)e(receiv)m(es)j(a)e(signal)h(for)e(whic)
-m(h)h(a)g(trap)150 663 y(has)c(b)s(een)f(set,)i(the)f(trap)g(will)g
+m(h)h(a)g(trap)150 4542 y(has)c(b)s(een)f(set,)i(the)f(trap)g(will)g
 (not)g(b)s(e)f(executed)i(un)m(til)f(the)g(command)f(completes.)55
-b(When)35 b(Bash)g(is)150 773 y(w)m(aiting)j(for)f(an)g(async)m
+b(When)35 b(Bash)g(is)150 4652 y(w)m(aiting)j(for)f(an)g(async)m
 (hronous)g(command)g(via)h(the)f Ft(wait)f Fu(builtin,)i(the)g
-(reception)g(of)f(a)g(signal)h(for)150 882 y(whic)m(h)d(a)g(trap)g(has)
-g(b)s(een)f(set)h(will)h(cause)f(the)g Ft(wait)f Fu(builtin)h(to)g
-(return)f(immediately)i(with)f(an)g(exit)150 992 y(status)c(greater)g
-(than)f(128,)i(immediately)g(after)f(whic)m(h)f(the)h(trap)f(is)g
-(executed.)275 1137 y(When)41 b(job)g(con)m(trol)h(is)g(not)f(enabled,)
-k(and)40 b(Bash)i(is)f(w)m(aiting)i(for)e(a)h(foreground)e(command)h
-(to)150 1247 y(complete,)35 b(the)e(shell)h(receiv)m(es)g(k)m(eyb)s
-(oard-generated)g(signals)g(suc)m(h)e(as)i Ft(SIGINT)d
-Fu(\(usually)i(generated)150 1356 y(b)m(y)e(`)p Ft(^C)p
-Fu('\))h(that)g(users)e(commonly)i(in)m(tend)g(to)g(send)e(to)j(that)f
-(command.)43 b(This)31 b(happ)s(ens)e(b)s(ecause)j(the)150
-1466 y(shell)23 b(and)g(the)h(command)f(are)g(in)g(the)h(same)f(pro)s
+(reception)g(of)f(a)g(signal)h(for)150 4761 y(whic)m(h)d(a)g(trap)g
+(has)g(b)s(een)f(set)h(will)h(cause)f(the)g Ft(wait)f
+Fu(builtin)h(to)g(return)f(immediately)i(with)f(an)g(exit)150
+4871 y(status)c(greater)g(than)f(128,)i(immediately)g(after)f(whic)m(h)
+f(the)h(trap)f(is)g(executed.)275 5011 y(When)41 b(job)g(con)m(trol)h
+(is)g(not)f(enabled,)k(and)40 b(Bash)i(is)f(w)m(aiting)i(for)e(a)h
+(foreground)e(command)h(to)150 5121 y(complete,)35 b(the)e(shell)h
+(receiv)m(es)g(k)m(eyb)s(oard-generated)g(signals)g(suc)m(h)e(as)i
+Ft(SIGINT)d Fu(\(usually)i(generated)150 5230 y(b)m(y)e(`)p
+Ft(^C)p Fu('\))h(that)g(users)e(commonly)i(in)m(tend)g(to)g(send)e(to)j
+(that)f(command.)43 b(This)31 b(happ)s(ens)e(b)s(ecause)j(the)150
+5340 y(shell)23 b(and)g(the)h(command)f(are)g(in)g(the)h(same)f(pro)s
 (cess)g(group)g(as)h(the)f(terminal,)i(and)e(`)p Ft(^C)p
-Fu(')g(sends)g Ft(SIGINT)150 1576 y Fu(to)35 b(all)g(pro)s(cesses)f(in)
-g(that)g(pro)s(cess)g(group.)51 b(See)35 b(Chapter)e(7)i([Job)f(Con)m
-(trol],)i(page)f(116,)h(for)e(a)h(more)150 1685 y(in-depth)30
-b(discussion)f(of)i(pro)s(cess)f(groups.)275 1830 y(When)35
-b(Bash)h(is)g(running)f(without)h(job)f(con)m(trol)i(enabled)f(and)g
-(receiv)m(es)h Ft(SIGINT)e Fu(while)h(w)m(aiting)150
-1940 y(for)g(a)h(foreground)f(command,)i(it)f(w)m(aits)g(un)m(til)g
+Fu(')g(sends)g Ft(SIGINT)p eop end
+%%Page: 47 53
+TeXDict begin 47 52 bop 150 -116 a Fu(Chapter)30 b(3:)41
+b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(47)150 299
+y(to)35 b(all)g(pro)s(cesses)f(in)g(that)g(pro)s(cess)g(group.)51
+b(See)35 b(Chapter)e(7)i([Job)f(Con)m(trol],)i(page)f(117,)h(for)e(a)h
+(more)150 408 y(in-depth)30 b(discussion)f(of)i(pro)s(cess)f(groups.)
+275 542 y(When)35 b(Bash)h(is)g(running)f(without)h(job)f(con)m(trol)i
+(enabled)f(and)g(receiv)m(es)h Ft(SIGINT)e Fu(while)h(w)m(aiting)150
+651 y(for)g(a)h(foreground)f(command,)i(it)f(w)m(aits)g(un)m(til)g
 (that)g(foreground)f(command)g(terminates)h(and)f(then)150
-2050 y(decides)31 b(what)f(to)h(do)f(ab)s(out)g(the)h
-Ft(SIGINT)p Fu(:)199 2195 y(1.)61 b(If)29 b(the)h(command)f(terminates)
-i(due)d(to)j(the)e Ft(SIGINT)p Fu(,)g(Bash)g(concludes)h(that)g(the)g
-(user)f(mean)m(t)h(to)330 2304 y(end)25 b(the)h(en)m(tire)h(script,)g
+761 y(decides)31 b(what)f(to)h(do)f(ab)s(out)g(the)h
+Ft(SIGINT)p Fu(:)199 894 y(1.)61 b(If)29 b(the)h(command)f(terminates)i
+(due)d(to)j(the)e Ft(SIGINT)p Fu(,)g(Bash)g(concludes)h(that)g(the)g
+(user)f(mean)m(t)h(to)330 1004 y(end)25 b(the)h(en)m(tire)h(script,)g
 (and)f(acts)h(on)e(the)i Ft(SIGINT)d Fu(\(e.g.,)k(b)m(y)e(running)f(a)h
-Ft(SIGINT)e Fu(trap)i(or)g(exiting)330 2414 y(itself)7
-b(\);)199 2554 y(2.)61 b(If)39 b(the)g(pip)s(eline)g(do)s(es)g(not)h
+Ft(SIGINT)e Fu(trap)i(or)g(exiting)330 1113 y(itself)7
+b(\);)199 1246 y(2.)61 b(If)39 b(the)g(pip)s(eline)g(do)s(es)g(not)h
 (terminate)g(due)f(to)h Ft(SIGINT)p Fu(,)g(the)g(program)f(handled)f
-(the)i Ft(SIGINT)330 2663 y Fu(itself)35 b(and)e(did)h(not)g(treat)h
+(the)i Ft(SIGINT)330 1356 y Fu(itself)35 b(and)e(did)h(not)g(treat)h
 (it)g(as)f(a)g(fatal)i(signal.)52 b(In)33 b(that)i(case,)h(Bash)e(do)s
-(es)g(not)g(treat)i Ft(SIGINT)330 2773 y Fu(as)41 b(a)g(fatal)g
+(es)g(not)g(treat)i Ft(SIGINT)330 1466 y Fu(as)41 b(a)g(fatal)g
 (signal,)j(either,)g(instead)d(assuming)f(that)h(the)g
 Ft(SIGINT)d Fu(w)m(as)j(used)f(as)h(part)f(of)h(the)330
-2883 y(program's)32 b(normal)g(op)s(eration)h(\(e.g.,)h
+1575 y(program's)32 b(normal)g(op)s(eration)h(\(e.g.,)h
 Ft(emacs)d Fu(uses)g(it)i(to)g(ab)s(ort)f(editing)h(commands\))f(or)g
-(delib-)330 2992 y(erately)41 b(discarded.)69 b(Ho)m(w)m(ev)m(er,)45
+(delib-)330 1685 y(erately)41 b(discarded.)69 b(Ho)m(w)m(ev)m(er,)45
 b(Bash)40 b(will)h(run)d(an)m(y)j(trap)e(set)i(on)f Ft(SIGINT)p
-Fu(,)h(as)f(it)h(do)s(es)e(with)330 3102 y(an)m(y)31
+Fu(,)h(as)f(it)h(do)s(es)e(with)330 1794 y(an)m(y)31
 b(other)f(trapp)s(ed)f(signal)i(it)g(receiv)m(es)h(while)e(it)h(is)f(w)
 m(aiting)h(for)f(the)h(foreground)e(command)h(to)330
-3211 y(complete,)i(for)e(compatibilit)m(y)-8 b(.)150
-3468 y Fs(3.8)68 b(Shell)45 b(Scripts)150 3628 y Fu(A)30
+1904 y(complete,)i(for)e(compatibilit)m(y)-8 b(.)150
+2142 y Fs(3.8)68 b(Shell)45 b(Scripts)150 2302 y Fu(A)30
 b(shell)f(script)h(is)f(a)h(text)h(\014le)f(con)m(taining)h(shell)f
 (commands.)40 b(When)29 b(suc)m(h)g(a)h(\014le)g(is)f(used)g(as)h(the)g
-(\014rst)150 3737 y(non-option)c(argumen)m(t)h(when)e(in)m(v)m(oking)i
+(\014rst)150 2411 y(non-option)c(argumen)m(t)h(when)e(in)m(v)m(oking)i
 (Bash,)g(and)f(neither)g(the)g Ft(-c)g Fu(nor)f Ft(-s)h
-Fu(option)g(is)g(supplied)f(\(see)150 3847 y(Section)39
-b(6.1)g([In)m(v)m(oking)g(Bash],)h(page)f(92\),)i(Bash)d(reads)g(and)f
-(executes)i(commands)f(from)f(the)i(\014le,)150 3956
+Fu(option)g(is)g(supplied)f(\(see)150 2521 y(Section)39
+b(6.1)g([In)m(v)m(oking)g(Bash],)h(page)f(93\),)i(Bash)d(reads)g(and)f
+(executes)i(commands)f(from)f(the)i(\014le,)150 2630
 y(then)32 b(exits.)46 b(This)32 b(mo)s(de)f(of)i(op)s(eration)f
 (creates)i(a)e(non-in)m(teractiv)m(e)j(shell.)46 b(The)31
-b(shell)i(\014rst)e(searc)m(hes)150 4066 y(for)d(the)g(\014le)g(in)g
+b(shell)i(\014rst)e(searc)m(hes)150 2740 y(for)d(the)g(\014le)g(in)g
 (the)g(curren)m(t)f(directory)-8 b(,)30 b(and)d(lo)s(oks)i(in)e(the)i
 (directories)g(in)e Ft($PATH)g Fu(if)h(not)g(found)e(there.)275
-4211 y(When)34 b(Bash)h(runs)e(a)i(shell)g(script,)g(it)h(sets)f(the)f
+2873 y(When)34 b(Bash)h(runs)e(a)i(shell)g(script,)g(it)h(sets)f(the)f
 (sp)s(ecial)i(parameter)f Ft(0)f Fu(to)h(the)g(name)g(of)g(the)g
-(\014le,)150 4321 y(rather)k(than)g(the)h(name)f(of)h(the)f(shell,)j
+(\014le,)150 2983 y(rather)k(than)g(the)h(name)f(of)h(the)f(shell,)j
 (and)d(the)h(p)s(ositional)g(parameters)f(are)h(set)g(to)g(the)g
-(remain-)150 4430 y(ing)f(argumen)m(ts,)j(if)d(an)m(y)g(are)g(giv)m
+(remain-)150 3092 y(ing)f(argumen)m(ts,)j(if)d(an)m(y)g(are)g(giv)m
 (en.)67 b(If)39 b(no)g(additional)g(argumen)m(ts)h(are)f(supplied,)h
-(the)f(p)s(ositional)150 4540 y(parameters)31 b(are)f(unset.)275
-4685 y(A)39 b(shell)h(script)f(ma)m(y)h(b)s(e)f(made)h(executable)h(b)m
+(the)f(p)s(ositional)150 3202 y(parameters)31 b(are)f(unset.)275
+3335 y(A)39 b(shell)h(script)f(ma)m(y)h(b)s(e)f(made)h(executable)h(b)m
 (y)e(using)g(the)h Ft(chmod)e Fu(command)h(to)h(turn)e(on)i(the)150
-4795 y(execute)j(bit.)73 b(When)41 b(Bash)g(\014nds)e(suc)m(h)i(a)h
+3445 y(execute)j(bit.)73 b(When)41 b(Bash)g(\014nds)e(suc)m(h)i(a)h
 (\014le)f(while)g(searc)m(hing)h(the)f Ft($PATH)f Fu(for)h(a)h
-(command,)h(it)150 4904 y(creates)32 b(a)f(new)e(instance)i(of)g
+(command,)h(it)150 3554 y(creates)32 b(a)f(new)e(instance)i(of)g
 (itself)g(to)g(execute)h(it.)41 b(In)30 b(other)h(w)m(ords,)f
-(executing)390 5050 y Ft(filename)46 b Fj(arguments)150
-5195 y Fu(is)30 b(equiv)-5 b(alen)m(t)32 b(to)f(executing)390
-5340 y Ft(bash)47 b(filename)e Fj(arguments)p eop end
-%%Page: 47 53
-TeXDict begin 47 52 bop 150 -116 a Fu(Chapter)30 b(3:)41
-b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(47)150 299
-y(if)30 b Ft(filename)d Fu(is)j(an)f(executable)j(shell)e(script.)40
+(executing)390 3688 y Ft(filename)46 b Fj(arguments)150
+3821 y Fu(is)30 b(equiv)-5 b(alen)m(t)32 b(to)f(executing)390
+3954 y Ft(bash)47 b(filename)e Fj(arguments)150 4087
+y Fu(if)30 b Ft(filename)d Fu(is)j(an)f(executable)j(shell)e(script.)40
 b(This)29 b(subshell)g(reinitializes)i(itself,)g(so)f(that)h(the)e
-(e\013ect)150 408 y(is)36 b(as)h(if)g(a)f(new)g(shell)h(had)f(b)s(een)g
-(in)m(v)m(ok)m(ed)h(to)h(in)m(terpret)e(the)h(script,)h(with)e(the)h
-(exception)h(that)f(the)150 518 y(lo)s(cations)25 b(of)g(commands)e
+(e\013ect)150 4197 y(is)36 b(as)h(if)g(a)f(new)g(shell)h(had)f(b)s(een)
+g(in)m(v)m(ok)m(ed)h(to)h(in)m(terpret)e(the)h(script,)h(with)e(the)h
+(exception)h(that)f(the)150 4306 y(lo)s(cations)25 b(of)g(commands)e
 (remem)m(b)s(ered)h(b)m(y)g(the)g(paren)m(t)g(\(see)h(the)f
 (description)g(of)g Ft(hash)f Fu(in)h(Section)h(4.1)150
-628 y([Bourne)30 b(Shell)h(Builtins],)g(page)g(48\))h(are)e(retained)h
-(b)m(y)f(the)h(c)m(hild.)275 762 y(Most)36 b(v)m(ersions)g(of)g(Unix)f
+4416 y([Bourne)30 b(Shell)h(Builtins],)g(page)g(49\))h(are)e(retained)h
+(b)m(y)f(the)h(c)m(hild.)275 4549 y(Most)36 b(v)m(ersions)g(of)g(Unix)f
 (mak)m(e)h(this)g(a)g(part)f(of)h(the)g(op)s(erating)g(system's)f
-(command)h(execution)150 872 y(mec)m(hanism.)50 b(If)33
+(command)h(execution)150 4659 y(mec)m(hanism.)50 b(If)33
 b(the)g(\014rst)g(line)h(of)f(a)h(script)f(b)s(egins)g(with)g(the)g(t)m
 (w)m(o)i(c)m(haracters)g(`)p Ft(#!)p Fu(',)f(the)g(remainder)150
-981 y(of)27 b(the)g(line)g(sp)s(eci\014es)g(an)g(in)m(terpreter)g(for)g
-(the)g(program)g(and,)g(dep)s(ending)e(on)i(the)g(op)s(erating)h
-(system,)150 1091 y(one)e(or)g(more)g(optional)h(argumen)m(ts)f(for)g
+4768 y(of)27 b(the)g(line)g(sp)s(eci\014es)g(an)g(in)m(terpreter)g(for)
+g(the)g(program)g(and,)g(dep)s(ending)e(on)i(the)g(op)s(erating)h
+(system,)150 4878 y(one)e(or)g(more)g(optional)h(argumen)m(ts)f(for)g
 (that)g(in)m(terpreter.)40 b(Th)m(us,)26 b(y)m(ou)g(can)g(sp)s(ecify)g
-(Bash,)h Ft(awk)p Fu(,)f(P)m(erl,)150 1200 y(or)k(some)h(other)g(in)m
+(Bash,)h Ft(awk)p Fu(,)f(P)m(erl,)150 4988 y(or)k(some)h(other)g(in)m
 (terpreter)g(and)e(write)i(the)f(rest)h(of)g(the)f(script)g(\014le)h
-(in)f(that)h(language.)275 1335 y(The)k(argumen)m(ts)h(to)h(the)f(in)m
+(in)f(that)h(language.)275 5121 y(The)k(argumen)m(ts)h(to)h(the)f(in)m
 (terpreter)h(consist)f(of)h(one)f(or)g(more)g(optional)h(argumen)m(ts)f
-(follo)m(wing)150 1445 y(the)e(in)m(terpreter)g(name)g(on)g(the)g
+(follo)m(wing)150 5230 y(the)e(in)m(terpreter)g(name)g(on)g(the)g
 (\014rst)g(line)g(of)g(the)g(script)g(\014le,)h(follo)m(w)m(ed)h(b)m(y)
-e(the)g(name)g(of)g(the)g(script)150 1554 y(\014le,)k(follo)m(w)m(ed)g
+e(the)g(name)g(of)g(the)g(script)150 5340 y(\014le,)k(follo)m(w)m(ed)g
 (b)m(y)e(the)g(rest)g(of)g(the)h(argumen)m(ts)f(supplied)f(to)i(the)f
-(script.)58 b(The)35 b(details)i(of)g(ho)m(w)f(the)150
-1664 y(in)m(terpreter)26 b(line)g(is)g(split)g(in)m(to)h(an)f(in)m
+(script.)58 b(The)35 b(details)i(of)g(ho)m(w)f(the)p
+eop end
+%%Page: 48 54
+TeXDict begin 48 53 bop 150 -116 a Fu(Chapter)30 b(3:)41
+b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(48)150 299
+y(in)m(terpreter)26 b(line)g(is)g(split)g(in)m(to)h(an)f(in)m
 (terpreter)g(name)g(and)f(a)h(set)h(of)e(argumen)m(ts)i(v)-5
-b(ary)25 b(across)i(systems.)150 1773 y(Bash)j(will)f(p)s(erform)g
-(this)g(action)i(on)e(op)s(erating)h(systems)g(that)g(do)f(not)h
-(handle)f(it)h(themselv)m(es.)42 b(Note)150 1883 y(that)e(some)g(older)
-g(v)m(ersions)g(of)g(Unix)f(limit)i(the)f(in)m(terpreter)g(name)g(and)f
-(a)h(single)g(argumen)m(t)g(to)h(a)150 1993 y(maxim)m(um)21
-b(of)g(32)h(c)m(haracters,)j(so)c(it's)h(not)g(p)s(ortable)f(to)h
-(assume)e(that)i(using)f(more)g(than)g(one)g(argumen)m(t)150
-2102 y(will)31 b(w)m(ork.)275 2237 y(Bash)h(scripts)g(often)g(b)s(egin)
-g(with)g Ft(#!)e(/bin/bash)g Fu(\(assuming)i(that)h(Bash)f(has)g(b)s
-(een)f(installed)i(in)150 2346 y Ft(/bin)p Fu(\),)26
-b(since)h(this)f(ensures)f(that)i(Bash)f(will)h(b)s(e)f(used)f(to)i(in)
-m(terpret)f(the)h(script,)g(ev)m(en)g(if)f(it)h(is)f(executed)150
-2456 y(under)h(another)h(shell.)41 b(It's)28 b(a)h(common)g(idiom)f(to)
-h(use)f Ft(env)g Fu(to)h(\014nd)e Ft(bash)g Fu(ev)m(en)i(if)f(it's)i(b)
-s(een)d(installed)150 2565 y(in)h(another)g(directory:)40
+b(ary)25 b(across)i(systems.)150 408 y(Bash)j(will)f(p)s(erform)g(this)
+g(action)i(on)e(op)s(erating)h(systems)g(that)g(do)f(not)h(handle)f(it)
+h(themselv)m(es.)42 b(Note)150 518 y(that)e(some)g(older)g(v)m(ersions)
+g(of)g(Unix)f(limit)i(the)f(in)m(terpreter)g(name)g(and)f(a)h(single)g
+(argumen)m(t)g(to)h(a)150 628 y(maxim)m(um)21 b(of)g(32)h(c)m
+(haracters,)j(so)c(it's)h(not)g(p)s(ortable)f(to)h(assume)e(that)i
+(using)f(more)g(than)g(one)g(argumen)m(t)150 737 y(will)31
+b(w)m(ork.)275 872 y(Bash)h(scripts)g(often)g(b)s(egin)g(with)g
+Ft(#!)e(/bin/bash)g Fu(\(assuming)i(that)h(Bash)f(has)g(b)s(een)f
+(installed)i(in)150 981 y Ft(/bin)p Fu(\),)26 b(since)h(this)f(ensures)
+f(that)i(Bash)f(will)h(b)s(e)f(used)f(to)i(in)m(terpret)f(the)h
+(script,)g(ev)m(en)g(if)f(it)h(is)f(executed)150 1091
+y(under)h(another)h(shell.)41 b(It's)28 b(a)h(common)g(idiom)f(to)h
+(use)f Ft(env)g Fu(to)h(\014nd)e Ft(bash)g Fu(ev)m(en)i(if)f(it's)i(b)s
+(een)d(installed)150 1200 y(in)h(another)g(directory:)40
 b Ft(#!/usr/bin/env)27 b(bash)f Fu(will)j(\014nd)d(the)j(\014rst)e(o)s
 (ccurrence)h(of)g Ft(bash)f Fu(in)h Ft($PATH)p Fu(.)p
 eop end
-%%Page: 48 54
-TeXDict begin 48 53 bop 3659 -116 a Fu(48)150 299 y Fp(4)80
+%%Page: 49 55
+TeXDict begin 49 54 bop 3659 -116 a Fu(49)150 299 y Fp(4)80
 b(Shell)53 b(Builtin)f(Commands)150 499 y Fu(Builtin)34
 b(commands)f(are)h(con)m(tained)g(within)f(the)h(shell)g(itself.)50
 b(When)34 b(the)f(name)h(of)f(a)h(builtin)f(com-)150
@@ -11653,12 +11719,12 @@ b(Builtin)150 828 y(commands)f(are)h(necessary)g(to)g(implemen)m(t)g
 (other)g(c)m(hapters:)69 b(builtin)43 b(commands)h(whic)m(h)150
 1412 y(pro)m(vide)23 b(the)h(Bash)f(in)m(terface)i(to)f(the)g(job)f
 (con)m(trol)i(facilities)g(\(see)f(Section)h(7.2)f([Job)f(Con)m(trol)h
-(Builtins],)150 1521 y(page)33 b(117\),)i(the)e(directory)g(stac)m(k)h
+(Builtins],)150 1521 y(page)33 b(118\),)i(the)e(directory)g(stac)m(k)h
 (\(see)f(Section)h(6.8.1)g([Directory)g(Stac)m(k)g(Builtins],)g(page)f
-(104\),)i(the)150 1631 y(command)23 b(history)h(\(see)g(Section)g(9.2)h
-([Bash)f(History)g(Builtins],)h(page)g(155\),)h(and)d(the)h
+(105\),)i(the)150 1631 y(command)23 b(history)h(\(see)g(Section)g(9.2)h
+([Bash)f(History)g(Builtins],)h(page)g(156\),)h(and)d(the)h
 (programmable)150 1740 y(completion)32 b(facilities)g(\(see)g(Section)f
-(8.7)g([Programmable)g(Completion)g(Builtins],)g(page)h(149\).)275
+(8.7)g([Programmable)g(Completion)g(Builtins],)g(page)h(150\).)275
 1868 y(Man)m(y)f(of)f(the)h(builtins)e(ha)m(v)m(e)j(b)s(een)e(extended)
 g(b)m(y)g Fm(posix)g Fu(or)g(Bash.)275 1996 y(Unless)20
 b(otherwise)h(noted,)h(eac)m(h)g(builtin)e(command)g(do)s(cumen)m(ted)g
@@ -11719,9 +11785,9 @@ Fu(is)36 b(not)g(found,)h(or)e(cannot)i(b)s(e)e(read,)j(the)e(return)f
 (status)h(is)g(non-zero.)58 b(This)630 5340 y(builtin)30
 b(is)g(equiv)-5 b(alen)m(t)32 b(to)f Ft(source)p Fu(.)p
 eop end
-%%Page: 49 55
-TeXDict begin 49 54 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(49)150 299 y Ft(break)870
+%%Page: 50 56
+TeXDict begin 50 55 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(50)150 299 y Ft(break)870
 433 y(break)46 b([)p Fj(n)p Ft(])630 568 y Fu(Exit)f(from)f(a)g
 Ft(for)p Fu(,)k Ft(while)p Fu(,)e Ft(until)p Fu(,)h(or)d
 Ft(select)f Fu(lo)s(op.)83 b(If)44 b Fr(n)g Fu(is)g(supplied,)j(the)e
@@ -11792,2010 +11858,2017 @@ b(than)f(or)g(equal)g(to)h(1.)63 b(The)38 b(return)e(status)j(is)e
 (zero)i(unless)e Fr(n)h Fu(is)g(not)g(greater)630 5046
 y(than)30 b(or)g(equal)h(to)g(1.)150 5205 y Ft(eval)870
 5340 y(eval)47 b([)p Fj(arguments)p Ft(])p eop end
-%%Page: 50 56
-TeXDict begin 50 55 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(50)630 299 y(The)25
+%%Page: 51 57
+TeXDict begin 51 56 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(51)630 299 y(The)25
 b(argumen)m(ts)h(are)g(concatenated)i(together)f(in)m(to)f(a)g(single)h
 (command,)f(whic)m(h)g(is)f(then)630 408 y(read)35 b(and)g(executed,)j
 (and)d(its)h(exit)g(status)g(returned)e(as)h(the)h(exit)g(status)g(of)g
 Ft(eval)p Fu(.)54 b(If)630 518 y(there)31 b(are)f(no)h(argumen)m(ts)f
 (or)h(only)f(empt)m(y)h(argumen)m(ts,)g(the)f(return)g(status)g(is)h
-(zero.)150 679 y Ft(exec)870 815 y(exec)47 b([-cl])f([-a)h
+(zero.)150 680 y Ft(exec)870 816 y(exec)47 b([-cl])f([-a)h
 Fj(name)p Ft(])f([)p Fj(command)g Ft([)p Fj(arguments)p
-Ft(]])630 950 y Fu(If)36 b Fr(command)k Fu(is)c(supplied,)h(it)g
+Ft(]])630 951 y Fu(If)36 b Fr(command)k Fu(is)c(supplied,)h(it)g
 (replaces)h(the)e(shell)h(without)f(creating)i(a)f(new)f(pro)s(cess.)
-630 1060 y(If)k(the)h Ft(-l)e Fu(option)i(is)g(supplied,)h(the)e(shell)
+630 1061 y(If)k(the)h Ft(-l)e Fu(option)i(is)g(supplied,)h(the)e(shell)
 h(places)g(a)g(dash)f(at)h(the)f(b)s(eginning)g(of)h(the)630
-1169 y(zeroth)36 b(argumen)m(t)h(passed)e(to)h Fr(command)p
+1170 y(zeroth)36 b(argumen)m(t)h(passed)e(to)h Fr(command)p
 Fu(.)57 b(This)35 b(is)h(what)f(the)h Ft(login)e Fu(program)i(do)s(es.)
-630 1279 y(The)i Ft(-c)g Fu(option)g(causes)h Fr(command)j
+630 1280 y(The)i Ft(-c)g Fu(option)g(causes)h Fr(command)j
 Fu(to)d(b)s(e)f(executed)h(with)f(an)g(empt)m(y)h(en)m(vironmen)m(t.)
-630 1388 y(If)c Ft(-a)g Fu(is)h(supplied,)f(the)h(shell)g(passes)f
+630 1390 y(If)c Ft(-a)g Fu(is)h(supplied,)f(the)h(shell)g(passes)f
 Fr(name)41 b Fu(as)36 b(the)f(zeroth)i(argumen)m(t)f(to)g
-Fr(command)p Fu(.)630 1498 y(If)c Fr(command)j Fu(cannot)e(b)s(e)f
+Fr(command)p Fu(.)630 1499 y(If)c Fr(command)j Fu(cannot)e(b)s(e)f
 (executed)h(for)f(some)g(reason,)h(a)g(non-in)m(teractiv)m(e)i(shell)d
-(exits,)630 1608 y(unless)27 b(the)g Ft(execfail)e Fu(shell)i(option)h
+(exits,)630 1609 y(unless)27 b(the)g Ft(execfail)e Fu(shell)i(option)h
 (is)f(enabled.)40 b(In)27 b(that)g(case,)j(it)d(returns)f(failure.)40
-b(An)630 1717 y(in)m(teractiv)m(e)35 b(shell)d(returns)f(failure)h(if)g
+b(An)630 1718 y(in)m(teractiv)m(e)35 b(shell)d(returns)f(failure)h(if)g
 (the)g(\014le)g(cannot)h(b)s(e)e(executed.)47 b(A)32
-b(subshell)f(exits)630 1827 y(unconditionally)j(if)g
+b(subshell)f(exits)630 1828 y(unconditionally)j(if)g
 Ft(exec)f Fu(fails.)52 b(If)33 b(no)h Fr(command)j Fu(is)d(sp)s
-(eci\014ed,)h(redirections)f(ma)m(y)h(b)s(e)630 1936
+(eci\014ed,)h(redirections)f(ma)m(y)h(b)s(e)630 1937
 y(used)30 b(to)i(a\013ect)g(the)f(curren)m(t)g(shell)g(en)m(vironmen)m
 (t.)43 b(If)30 b(there)i(are)f(no)g(redirection)g(errors,)630
-2046 y(the)g(return)e(status)i(is)f(zero;)h(otherwise)g(the)g(return)e
-(status)i(is)f(non-zero.)150 2207 y Ft(exit)870 2342
-y(exit)47 b([)p Fj(n)p Ft(])630 2478 y Fu(Exit)30 b(the)g(shell,)h
+2047 y(the)g(return)e(status)i(is)f(zero;)h(otherwise)g(the)g(return)e
+(status)i(is)f(non-zero.)150 2209 y Ft(exit)870 2345
+y(exit)47 b([)p Fj(n)p Ft(])630 2480 y Fu(Exit)30 b(the)g(shell,)h
 (returning)d(a)j(status)f(of)g Fr(n)f Fu(to)h(the)g(shell's)g(paren)m
-(t.)41 b(If)30 b Fr(n)f Fu(is)h(omitted,)h(the)630 2587
+(t.)41 b(If)30 b Fr(n)f Fu(is)h(omitted,)h(the)630 2590
 y(exit)c(status)g(is)g(that)g(of)g(the)g(last)g(command)f(executed.)41
 b(An)m(y)26 b(trap)h(on)f Ft(EXIT)f Fu(is)i(executed)630
-2697 y(b)s(efore)j(the)h(shell)f(terminates.)150 2858
-y Ft(export)870 2993 y(export)46 b([-fn])g([-p])h([)p
-Fj(name)p Ft([=)p Fj(value)p Ft(]])630 3129 y Fu(Mark)40
+2699 y(b)s(efore)j(the)h(shell)f(terminates.)150 2861
+y Ft(export)870 2997 y(export)46 b([-fn])g([-p])h([)p
+Fj(name)p Ft([=)p Fj(value)p Ft(]])630 3133 y Fu(Mark)40
 b(eac)m(h)h Fr(name)k Fu(to)40 b(b)s(e)f(passed)g(to)i(c)m(hild)f(pro)s
 (cesses)f(in)g(the)h(en)m(vironmen)m(t.)70 b(If)39 b(the)630
-3238 y Ft(-f)33 b Fu(option)h(is)g(supplied,)f(the)h
+3242 y Ft(-f)33 b Fu(option)h(is)g(supplied,)f(the)h
 Fr(name)5 b Fu(s)33 b(refer)g(to)i(shell)e(functions;)i(otherwise)f
-(the)g(names)630 3348 y(refer)c(to)h(shell)g(v)-5 b(ariables.)41
+(the)g(names)630 3352 y(refer)c(to)h(shell)g(v)-5 b(ariables.)41
 b(The)30 b Ft(-n)f Fu(option)i(means)f(to)h(no)f(longer)h(mark)f(eac)m
-(h)i Fr(name)j Fu(for)630 3458 y(exp)s(ort.)51 b(If)34
+(h)i Fr(name)j Fu(for)630 3461 y(exp)s(ort.)51 b(If)34
 b(no)g Fr(name)5 b Fu(s)34 b(are)g(supplied,)g(or)g(if)g(the)g
 Ft(-p)f Fu(option)i(is)f(giv)m(en,)i(a)e(list)h(of)f(names)630
-3567 y(of)d(all)h(exp)s(orted)e(v)-5 b(ariables)31 b(is)g(displa)m(y)m
+3571 y(of)d(all)h(exp)s(orted)e(v)-5 b(ariables)31 b(is)g(displa)m(y)m
 (ed.)43 b(The)30 b Ft(-p)g Fu(option)i(displa)m(ys)e(output)h(in)f(a)h
-(form)630 3677 y(that)25 b(ma)m(y)g(b)s(e)f(reused)g(as)h(input.)38
+(form)630 3680 y(that)25 b(ma)m(y)g(b)s(e)f(reused)g(as)h(input.)38
 b(If)24 b(a)h(v)-5 b(ariable)25 b(name)g(is)g(follo)m(w)m(ed)h(b)m(y)e
 (=)p Fr(v)-5 b(alue)p Fu(,)27 b(the)d(v)-5 b(alue)630
-3786 y(of)31 b(the)f(v)-5 b(ariable)31 b(is)g(set)g(to)g
-Fr(v)-5 b(alue)p Fu(.)630 3922 y(The)29 b(return)e(status)j(is)f(zero)h
+3790 y(of)31 b(the)f(v)-5 b(ariable)31 b(is)g(set)g(to)g
+Fr(v)-5 b(alue)p Fu(.)630 3926 y(The)29 b(return)e(status)j(is)f(zero)h
 (unless)e(an)h(in)m(v)-5 b(alid)29 b(option)h(is)f(supplied,)f(one)i
-(of)f(the)g(names)630 4031 y(is)k(not)g(a)h(v)-5 b(alid)33
+(of)f(the)g(names)630 4035 y(is)k(not)g(a)h(v)-5 b(alid)33
 b(shell)h(v)-5 b(ariable)33 b(name,)i(or)e Ft(-f)f Fu(is)h(supplied)f
-(with)h(a)g(name)g(that)h(is)f(not)h(a)630 4141 y(shell)d(function.)150
-4302 y Ft(getopts)870 4437 y(getopts)46 b Fj(optstring)f(name)i
-Ft([)p Fj(arg)f Ft(...])630 4573 y(getopts)28 b Fu(is)i(used)g(b)m(y)g
-(shell)g(scripts)g(to)g(parse)g(p)s(ositional)h(parameters.)41
-b Fr(optstring)d Fu(con-)630 4682 y(tains)k(the)g(option)f(c)m
-(haracters)i(to)g(b)s(e)d(recognized;)49 b(if)42 b(a)f(c)m(haracter)j
-(is)d(follo)m(w)m(ed)i(b)m(y)f(a)630 4792 y(colon,)33
-b(the)f(option)g(is)g(exp)s(ected)g(to)h(ha)m(v)m(e)g(an)e(argumen)m
-(t,)i(whic)m(h)f(should)e(b)s(e)h(separated)630 4902
-y(from)40 b(it)g(b)m(y)g(whitespace.)70 b(The)40 b(colon)h(\(`)p
-Ft(:)p Fu('\))g(and)e(question)h(mark)g(\(`)p Ft(?)p
-Fu('\))h(ma)m(y)f(not)h(b)s(e)630 5011 y(used)d(as)g(option)h(c)m
-(haracters.)67 b(Eac)m(h)39 b(time)g(it)g(is)f(in)m(v)m(ok)m(ed,)k
-Ft(getopts)37 b Fu(places)i(the)g(next)630 5121 y(option)29
-b(in)f(the)h(shell)g(v)-5 b(ariable)30 b Fr(name)p Fu(,)f(initializing)
-i Fr(name)j Fu(if)28 b(it)h(do)s(es)g(not)g(exist,)h(and)e(the)630
-5230 y(index)33 b(of)g(the)h(next)f(argumen)m(t)h(to)g(b)s(e)e(pro)s
-(cessed)h(in)m(to)h(the)g(v)-5 b(ariable)34 b Ft(OPTIND)p
-Fu(.)48 b Ft(OPTIND)630 5340 y Fu(is)41 b(initialized)i(to)f(1)f(eac)m
-(h)h(time)g(the)f(shell)g(or)g(a)g(shell)g(script)g(is)g(in)m(v)m(ok)m
-(ed.)74 b(When)41 b(an)p eop end
-%%Page: 51 57
-TeXDict begin 51 56 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(51)630 299 y(option)36
-b(requires)e(an)h(argumen)m(t,)i Ft(getopts)c Fu(places)j(that)g
-(argumen)m(t)g(in)m(to)g(the)f(v)-5 b(ariable)630 408
-y Ft(OPTARG)p Fu(.)55 b(The)35 b(shell)g(do)s(es)h(not)g(reset)g
-Ft(OPTIND)e Fu(automatically;)41 b(it)36 b(m)m(ust)f(b)s(e)g(man)m
-(ually)630 518 y(reset)i(b)s(et)m(w)m(een)g(m)m(ultiple)h(calls)f(to)g
-Ft(getopts)e Fu(within)h(the)h(same)g(shell)f(in)m(v)m(o)s(cation)j(if)
-e(a)630 628 y(new)30 b(set)h(of)f(parameters)h(is)f(to)i(b)s(e)d(used.)
-630 771 y(When)41 b(the)h(end)e(of)i(options)g(is)f(encoun)m(tered,)k
-Ft(getopts)39 b Fu(exits)j(with)f(a)h(return)e(v)-5 b(alue)630
-881 y(greater)32 b(than)e(zero.)41 b Ft(OPTIND)29 b Fu(is)h(set)h(to)g
-(the)g(index)f(of)g(the)h(\014rst)f(non-option)g(argumen)m(t,)630
-990 y(and)g Fr(name)35 b Fu(is)c(set)g(to)g(`)p Ft(?)p
-Fu('.)630 1133 y Ft(getopts)c Fu(normally)j(parses)e(the)i(p)s
+(with)h(a)g(name)g(that)h(is)f(not)h(a)630 4145 y(shell)d(function.)150
+4307 y Ft(false)870 4442 y(false)630 4578 y Fu(Do)s(es)g(nothing,)g
+(returns)e(a)h(non-zero)h(status.)150 4740 y Ft(getopts)870
+4876 y(getopts)46 b Fj(optstring)f(name)i Ft([)p Fj(arg)f
+Ft(...])630 5011 y(getopts)28 b Fu(is)i(used)g(b)m(y)g(shell)g(scripts)
+g(to)g(parse)g(p)s(ositional)h(parameters.)41 b Fr(optstring)d
+Fu(con-)630 5121 y(tains)k(the)g(option)f(c)m(haracters)i(to)g(b)s(e)d
+(recognized;)49 b(if)42 b(a)f(c)m(haracter)j(is)d(follo)m(w)m(ed)i(b)m
+(y)f(a)630 5230 y(colon,)33 b(the)f(option)g(is)g(exp)s(ected)g(to)h
+(ha)m(v)m(e)g(an)e(argumen)m(t,)i(whic)m(h)f(should)e(b)s(e)h
+(separated)630 5340 y(from)40 b(it)g(b)m(y)g(whitespace.)70
+b(The)40 b(colon)h(\(`)p Ft(:)p Fu('\))g(and)e(question)h(mark)g(\(`)p
+Ft(?)p Fu('\))h(ma)m(y)f(not)h(b)s(e)p eop end
+%%Page: 52 58
+TeXDict begin 52 57 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(52)630 299 y(used)38
+b(as)g(option)h(c)m(haracters.)67 b(Eac)m(h)39 b(time)g(it)g(is)f(in)m
+(v)m(ok)m(ed,)k Ft(getopts)37 b Fu(places)i(the)g(next)630
+408 y(option)29 b(in)f(the)h(shell)g(v)-5 b(ariable)30
+b Fr(name)p Fu(,)f(initializing)i Fr(name)j Fu(if)28
+b(it)h(do)s(es)g(not)g(exist,)h(and)e(the)630 518 y(index)33
+b(of)g(the)h(next)f(argumen)m(t)h(to)g(b)s(e)e(pro)s(cessed)h(in)m(to)h
+(the)g(v)-5 b(ariable)34 b Ft(OPTIND)p Fu(.)48 b Ft(OPTIND)630
+628 y Fu(is)41 b(initialized)i(to)f(1)f(eac)m(h)h(time)g(the)f(shell)g
+(or)g(a)g(shell)g(script)g(is)g(in)m(v)m(ok)m(ed.)74
+b(When)41 b(an)630 737 y(option)36 b(requires)e(an)h(argumen)m(t,)i
+Ft(getopts)c Fu(places)j(that)g(argumen)m(t)g(in)m(to)g(the)f(v)-5
+b(ariable)630 847 y Ft(OPTARG)p Fu(.)55 b(The)35 b(shell)g(do)s(es)h
+(not)g(reset)g Ft(OPTIND)e Fu(automatically;)41 b(it)36
+b(m)m(ust)f(b)s(e)g(man)m(ually)630 956 y(reset)i(b)s(et)m(w)m(een)g(m)
+m(ultiple)h(calls)f(to)g Ft(getopts)e Fu(within)h(the)h(same)g(shell)f
+(in)m(v)m(o)s(cation)j(if)e(a)630 1066 y(new)30 b(set)h(of)f
+(parameters)h(is)f(to)i(b)s(e)d(used.)630 1201 y(When)41
+b(the)h(end)e(of)i(options)g(is)f(encoun)m(tered,)k Ft(getopts)39
+b Fu(exits)j(with)f(a)h(return)e(v)-5 b(alue)630 1310
+y(greater)32 b(than)e(zero.)41 b Ft(OPTIND)29 b Fu(is)h(set)h(to)g(the)
+g(index)f(of)g(the)h(\014rst)f(non-option)g(argumen)m(t,)630
+1420 y(and)g Fr(name)35 b Fu(is)c(set)g(to)g(`)p Ft(?)p
+Fu('.)630 1555 y Ft(getopts)c Fu(normally)j(parses)e(the)i(p)s
 (ositional)g(parameters,)g(but)e(if)i(more)f(argumen)m(ts)h(are)630
-1243 y(supplied)f(as)i Fr(arg)38 b Fu(v)-5 b(alues,)31
-b Ft(getopts)e Fu(parses)h(those)h(instead.)630 1386
+1665 y(supplied)f(as)i Fr(arg)38 b Fu(v)-5 b(alues,)31
+b Ft(getopts)e Fu(parses)h(those)h(instead.)630 1799
 y Ft(getopts)h Fu(can)h(rep)s(ort)g(errors)g(in)h(t)m(w)m(o)h(w)m(a)m
 (ys.)51 b(If)33 b(the)h(\014rst)e(c)m(haracter)k(of)d
-Fr(optstring)42 b Fu(is)34 b(a)630 1496 y(colon,)g Fr(silen)m(t)h
+Fr(optstring)42 b Fu(is)34 b(a)630 1909 y(colon,)g Fr(silen)m(t)h
 Fu(error)d(rep)s(orting)f(is)i(used.)45 b(In)31 b(normal)h(op)s
-(eration,)h(diagnostic)h(messages)630 1606 y(are)c(prin)m(ted)e(when)g
+(eration,)h(diagnostic)h(messages)630 2019 y(are)c(prin)m(ted)e(when)g
 (in)m(v)-5 b(alid)30 b(options)g(or)f(missing)g(option)g(argumen)m(ts)h
-(are)f(encoun)m(tered.)630 1715 y(If)34 b(the)g(v)-5
+(are)f(encoun)m(tered.)630 2128 y(If)34 b(the)g(v)-5
 b(ariable)35 b Ft(OPTERR)d Fu(is)i(set)h(to)f(0,)i(no)e(error)g
 (messages)h(will)f(b)s(e)f(displa)m(y)m(ed,)j(ev)m(en)f(if)630
-1825 y(the)c(\014rst)e(c)m(haracter)j(of)f Ft(optstring)d
-Fu(is)i(not)h(a)f(colon.)630 1968 y(If)39 b(an)h(in)m(v)-5
+2238 y(the)c(\014rst)e(c)m(haracter)j(of)f Ft(optstring)d
+Fu(is)i(not)h(a)f(colon.)630 2373 y(If)39 b(an)h(in)m(v)-5
 b(alid)41 b(option)f(is)g(seen,)i Ft(getopts)c Fu(places)j(`)p
 Ft(?)p Fu(')f(in)m(to)h Fr(name)k Fu(and,)d(if)e(not)g(silen)m(t,)630
-2078 y(prin)m(ts)f(an)h(error)f(message)h(and)f(unsets)g
+2482 y(prin)m(ts)f(an)h(error)f(message)h(and)f(unsets)g
 Ft(OPTARG)p Fu(.)67 b(If)39 b Ft(getopts)f Fu(is)i(silen)m(t,)j(the)c
-(option)630 2187 y(c)m(haracter)32 b(found)d(is)h(placed)h(in)f
+(option)630 2592 y(c)m(haracter)32 b(found)d(is)h(placed)h(in)f
 Ft(OPTARG)f Fu(and)h(no)g(diagnostic)i(message)f(is)g(prin)m(ted.)630
-2330 y(If)c(a)g(required)f(argumen)m(t)i(is)f(not)g(found,)g(and)f
+2727 y(If)c(a)g(required)f(argumen)m(t)i(is)f(not)g(found,)g(and)f
 Ft(getopts)f Fu(is)i(not)h(silen)m(t,)h(a)e(question)g(mark)630
-2440 y(\(`)p Ft(?)p Fu('\))h(is)g(placed)g(in)f Fr(name)p
+2836 y(\(`)p Ft(?)p Fu('\))h(is)g(placed)g(in)f Fr(name)p
 Fu(,)h Ft(OPTARG)e Fu(is)h(unset,)h(and)f(a)g(diagnostic)i(message)g
-(is)e(prin)m(ted.)39 b(If)630 2550 y Ft(getopts)28 b
+(is)e(prin)m(ted.)39 b(If)630 2946 y Ft(getopts)28 b
 Fu(is)h(silen)m(t,)i(then)e(a)h(colon)h(\(`)p Ft(:)p
 Fu('\))f(is)g(placed)g(in)f Fr(name)35 b Fu(and)29 b
-Ft(OPTARG)f Fu(is)h(set)h(to)h(the)630 2659 y(option)g(c)m(haracter)h
-(found.)150 2836 y Ft(hash)870 2980 y(hash)47 b([-r])f([-p)h
-Fj(filename)p Ft(])e([-dt])i([)p Fj(name)p Ft(])630 3123
+Ft(OPTARG)f Fu(is)h(set)h(to)h(the)630 3055 y(option)g(c)m(haracter)h
+(found.)150 3216 y Ft(hash)870 3351 y(hash)47 b([-r])f([-p)h
+Fj(filename)p Ft(])e([-dt])i([)p Fj(name)p Ft(])630 3485
 y Fu(Eac)m(h)32 b(time)g Ft(hash)e Fu(is)h(in)m(v)m(ok)m(ed,)j(it)d
 (remem)m(b)s(ers)g(the)g(full)g(pathnames)g(of)h(the)f(commands)630
-3232 y(sp)s(eci\014ed)i(as)i Fr(name)k Fu(argumen)m(ts,)c(so)g(they)f
+3595 y(sp)s(eci\014ed)i(as)i Fr(name)k Fu(argumen)m(ts,)c(so)g(they)f
 (need)g(not)g(b)s(e)f(searc)m(hed)i(for)f(on)g(subsequen)m(t)630
-3342 y(in)m(v)m(o)s(cations.)79 b(The)41 b(commands)h(are)h(found)e(b)m
-(y)h(searc)m(hing)i(through)d(the)i(directories)630 3452
+3705 y(in)m(v)m(o)s(cations.)79 b(The)41 b(commands)h(are)h(found)e(b)m
+(y)h(searc)m(hing)i(through)d(the)i(directories)630 3814
 y(listed)37 b(in)g Ft($PATH)p Fu(.)58 b(An)m(y)37 b(previously-remem)m
 (b)s(ered)f(pathname)h(is)g(discarded.)59 b(The)37 b
-Ft(-p)630 3561 y Fu(option)d(inhibits)f(the)h(path)g(searc)m(h,)h(and)e
+Ft(-p)630 3924 y Fu(option)d(inhibits)f(the)h(path)g(searc)m(h,)h(and)e
 Fr(\014lename)39 b Fu(is)34 b(used)f(as)h(the)f(lo)s(cation)j(of)e
-Fr(name)p Fu(.)630 3671 y(The)42 b Ft(-r)g Fu(option)h(causes)f(the)h
+Fr(name)p Fu(.)630 4033 y(The)42 b Ft(-r)g Fu(option)h(causes)f(the)h
 (shell)g(to)g(forget)g(all)h(remem)m(b)s(ered)d(lo)s(cations.)79
-b(The)42 b Ft(-d)630 3780 y Fu(option)31 b(causes)g(the)f(shell)h(to)g
+b(The)42 b Ft(-d)630 4143 y Fu(option)31 b(causes)g(the)f(shell)h(to)g
 (forget)h(the)f(remem)m(b)s(ered)e(lo)s(cation)j(of)f(eac)m(h)h
-Fr(name)p Fu(.)41 b(If)30 b(the)630 3890 y Ft(-t)39 b
+Fr(name)p Fu(.)41 b(If)30 b(the)630 4253 y Ft(-t)39 b
 Fu(option)h(is)g(supplied,)g(the)g(full)f(pathname)h(to)g(whic)m(h)f
-(eac)m(h)i Fr(name)k Fu(corresp)s(onds)38 b(is)630 4000
+(eac)m(h)i Fr(name)k Fu(corresp)s(onds)38 b(is)630 4362
 y(prin)m(ted.)i(If)28 b(m)m(ultiple)h Fr(name)34 b Fu(argumen)m(ts)29
 b(are)g(supplied)f(with)g Ft(-t)p Fu(,)h(the)g Fr(name)34
-b Fu(is)28 b(prin)m(ted)630 4109 y(b)s(efore)h(the)i(hashed)e(full)g
+b Fu(is)28 b(prin)m(ted)630 4472 y(b)s(efore)h(the)i(hashed)e(full)g
 (pathname.)41 b(The)29 b Ft(-l)g Fu(option)i(causes)f(output)f(to)i(b)s
-(e)e(displa)m(y)m(ed)630 4219 y(in)23 b(a)h(format)g(that)g(ma)m(y)g(b)
+(e)e(displa)m(y)m(ed)630 4581 y(in)23 b(a)h(format)g(that)g(ma)m(y)g(b)
 s(e)f(reused)f(as)i(input.)37 b(If)23 b(no)h(argumen)m(ts)f(are)h(giv)m
-(en,)i(or)e(if)f(only)h Ft(-l)630 4328 y Fu(is)35 b(supplied,)f
+(en,)i(or)e(if)f(only)h Ft(-l)630 4691 y Fu(is)35 b(supplied,)f
 (information)h(ab)s(out)g(remem)m(b)s(ered)f(commands)g(is)h(prin)m
-(ted.)53 b(The)34 b(return)630 4438 y(status)d(is)f(zero)h(unless)f(a)h
+(ted.)53 b(The)34 b(return)630 4800 y(status)d(is)f(zero)h(unless)f(a)h
 Fr(name)k Fu(is)c(not)f(found)f(or)i(an)f(in)m(v)-5 b(alid)31
-b(option)g(is)f(supplied.)150 4615 y Ft(pwd)870 4758
-y(pwd)47 b([-LP])630 4902 y Fu(Prin)m(t)29 b(the)g(absolute)h(pathname)
+b(option)g(is)f(supplied.)150 4961 y Ft(pwd)870 5096
+y(pwd)47 b([-LP])630 5230 y Fu(Prin)m(t)29 b(the)g(absolute)h(pathname)
 e(of)h(the)h(curren)m(t)e(w)m(orking)h(directory)-8 b(.)42
-b(If)28 b(the)h Ft(-P)f Fu(option)630 5011 y(is)39 b(supplied,)h(the)f
+b(If)28 b(the)h Ft(-P)f Fu(option)630 5340 y(is)39 b(supplied,)h(the)f
 (pathname)g(prin)m(ted)g(will)g(not)h(con)m(tain)g(sym)m(b)s(olic)f
-(links.)67 b(If)38 b(the)i Ft(-L)630 5121 y Fu(option)k(is)g(supplied,)
-i(the)e(pathname)f(prin)m(ted)h(ma)m(y)g(con)m(tain)h(sym)m(b)s(olic)f
-(links.)80 b(The)630 5230 y(return)26 b(status)h(is)h(zero)g(unless)e
-(an)h(error)g(is)g(encoun)m(tered)g(while)h(determining)f(the)g(name)
-630 5340 y(of)k(the)f(curren)m(t)g(directory)h(or)f(an)h(in)m(v)-5
-b(alid)31 b(option)g(is)f(supplied.)p eop end
-%%Page: 52 58
-TeXDict begin 52 57 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(52)150 299 y Ft(readonly)870
-432 y(readonly)46 b([-aAf])g([-p])g([)p Fj(name)p Ft([=)p
-Fj(value)p Ft(]])e(...)630 565 y Fu(Mark)33 b(eac)m(h)h
-Fr(name)39 b Fu(as)33 b(readonly)-8 b(.)49 b(The)32 b(v)-5
-b(alues)34 b(of)f(these)g(names)g(ma)m(y)h(not)f(b)s(e)f(c)m(hanged)630
-675 y(b)m(y)38 b(subsequen)m(t)g(assignmen)m(t.)65 b(If)38
-b(the)h Ft(-f)f Fu(option)g(is)h(supplied,)g(eac)m(h)h
-Fr(name)j Fu(refers)38 b(to)630 784 y(a)f(shell)g(function.)59
+(links.)67 b(If)38 b(the)i Ft(-L)p eop end
+%%Page: 53 59
+TeXDict begin 53 58 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(53)630 299 y(option)44
+b(is)g(supplied,)i(the)e(pathname)f(prin)m(ted)h(ma)m(y)g(con)m(tain)h
+(sym)m(b)s(olic)f(links.)80 b(The)630 408 y(return)26
+b(status)h(is)h(zero)g(unless)e(an)h(error)g(is)g(encoun)m(tered)g
+(while)h(determining)f(the)g(name)630 518 y(of)k(the)f(curren)m(t)g
+(directory)h(or)f(an)h(in)m(v)-5 b(alid)31 b(option)g(is)f(supplied.)
+150 671 y Ft(readonly)870 803 y(readonly)46 b([-aAf])g([-p])g([)p
+Fj(name)p Ft([=)p Fj(value)p Ft(]])e(...)630 934 y Fu(Mark)33
+b(eac)m(h)h Fr(name)39 b Fu(as)33 b(readonly)-8 b(.)49
+b(The)32 b(v)-5 b(alues)34 b(of)f(these)g(names)g(ma)m(y)h(not)f(b)s(e)
+f(c)m(hanged)630 1044 y(b)m(y)38 b(subsequen)m(t)g(assignmen)m(t.)65
+b(If)38 b(the)h Ft(-f)f Fu(option)g(is)h(supplied,)g(eac)m(h)h
+Fr(name)j Fu(refers)38 b(to)630 1154 y(a)f(shell)g(function.)59
 b(The)36 b Ft(-a)g Fu(option)h(means)f(eac)m(h)i Fr(name)k
-Fu(refers)36 b(to)h(an)f(indexed)g(arra)m(y)630 894 y(v)-5
-b(ariable;)28 b(the)f Ft(-A)e Fu(option)h(means)g(eac)m(h)h
+Fu(refers)36 b(to)h(an)f(indexed)g(arra)m(y)630 1263
+y(v)-5 b(ariable;)28 b(the)f Ft(-A)e Fu(option)h(means)g(eac)m(h)h
 Fr(name)k Fu(refers)26 b(to)g(an)g(asso)s(ciativ)m(e)i(arra)m(y)f(v)-5
-b(ariable.)630 1003 y(If)35 b(b)s(oth)g(options)h(are)h(supplied,)f
+b(ariable.)630 1373 y(If)35 b(b)s(oth)g(options)h(are)h(supplied,)f
 Ft(-A)f Fu(tak)m(es)i(precedence.)58 b(If)35 b(no)h Fr(name)k
-Fu(argumen)m(ts)d(are)630 1113 y(giv)m(en,)k(or)c(if)h(the)g
+Fu(argumen)m(ts)d(are)630 1482 y(giv)m(en,)k(or)c(if)h(the)g
 Ft(-p)f Fu(option)h(is)f(supplied,)i(a)f(list)g(of)g(all)g(readonly)g
-(names)f(is)h(prin)m(ted.)630 1223 y(The)32 b(other)g(options)g(ma)m(y)
+(names)f(is)h(prin)m(ted.)630 1592 y(The)32 b(other)g(options)g(ma)m(y)
 h(b)s(e)f(used)f(to)i(restrict)g(the)f(output)g(to)h(a)f(subset)g(of)g
-(the)g(set)h(of)630 1332 y(readonly)c(names.)41 b(The)28
+(the)g(set)h(of)630 1702 y(readonly)c(names.)41 b(The)28
 b Ft(-p)h Fu(option)h(causes)g(output)e(to)j(b)s(e)d(displa)m(y)m(ed)i
-(in)f(a)h(format)f(that)630 1442 y(ma)m(y)j(b)s(e)e(reused)g(as)i
+(in)f(a)h(format)f(that)630 1811 y(ma)m(y)j(b)s(e)e(reused)g(as)i
 (input.)42 b(If)30 b(a)i(v)-5 b(ariable)31 b(name)h(is)f(follo)m(w)m
 (ed)h(b)m(y)f(=)p Fr(v)-5 b(alue)p Fu(,)32 b(the)f(v)-5
-b(alue)32 b(of)630 1551 y(the)i(v)-5 b(ariable)34 b(is)f(set)i(to)f
+b(alue)32 b(of)630 1921 y(the)i(v)-5 b(ariable)34 b(is)f(set)i(to)f
 Fr(v)-5 b(alue)p Fu(.)50 b(The)33 b(return)g(status)g(is)h(zero)g
-(unless)f(an)g(in)m(v)-5 b(alid)34 b(option)630 1661
+(unless)f(an)g(in)m(v)-5 b(alid)34 b(option)630 2030
 y(is)c(supplied,)f(one)h(of)g(the)g Fr(name)35 b Fu(argumen)m(ts)30
 b(is)g(not)g(a)g(v)-5 b(alid)31 b(shell)f(v)-5 b(ariable)30
-b(or)g(function)630 1771 y(name,)h(or)f(the)h Ft(-f)e
+b(or)g(function)630 2140 y(name,)h(or)f(the)h Ft(-f)e
 Fu(option)i(is)g(supplied)e(with)h(a)h(name)f(that)h(is)f(not)h(a)g
-(shell)f(function.)150 1927 y Ft(return)870 2060 y(return)46
-b([)p Fj(n)p Ft(])630 2193 y Fu(Cause)37 b(a)g(shell)h(function)f(to)g
+(shell)f(function.)150 2293 y Ft(return)870 2425 y(return)46
+b([)p Fj(n)p Ft(])630 2556 y Fu(Cause)37 b(a)g(shell)h(function)f(to)g
 (stop)h(executing)g(and)e(return)h(the)g(v)-5 b(alue)37
-b Fr(n)g Fu(to)h(its)f(caller.)630 2303 y(If)h Fr(n)h
+b Fr(n)g Fu(to)h(its)f(caller.)630 2666 y(If)h Fr(n)h
 Fu(is)g(not)g(supplied,)h(the)f(return)e(v)-5 b(alue)40
 b(is)f(the)g(exit)g(status)g(of)g(the)g(last)h(command)630
-2412 y(executed)i(in)f(the)g(function.)72 b(If)41 b Ft(return)e
+2776 y(executed)i(in)f(the)g(function.)72 b(If)41 b Ft(return)e
 Fu(is)i(executed)h(b)m(y)f(a)h(trap)f(handler,)i(the)e(last)630
-2522 y(command)d(used)f(to)i(determine)f(the)g(status)g(is)h(the)f
-(last)h(command)e(executed)i(b)s(efore)630 2632 y(the)27
+2885 y(command)d(used)f(to)i(determine)f(the)g(status)g(is)h(the)f
+(last)h(command)e(executed)i(b)s(efore)630 2995 y(the)27
 b(trap)g(handler.)39 b(If)26 b Ft(return)g Fu(is)h(executed)h(during)d
-(a)j Ft(DEBUG)d Fu(trap,)j(the)f(last)h(command)630 2741
+(a)j Ft(DEBUG)d Fu(trap,)j(the)f(last)h(command)630 3104
 y(used)f(to)h(determine)g(the)f(status)h(is)g(the)f(last)i(command)e
-(executed)h(b)m(y)g(the)f(trap)h(handler)630 2851 y(b)s(efore)e
+(executed)h(b)m(y)g(the)f(trap)h(handler)630 3214 y(b)s(efore)e
 Ft(return)f Fu(w)m(as)i(in)m(v)m(ok)m(ed.)41 b Ft(return)25
 b Fu(ma)m(y)i(also)g(b)s(e)f(used)g(to)h(terminate)h(execution)g(of)630
-2960 y(a)34 b(script)g(b)s(eing)g(executed)g(with)g(the)g
+3324 y(a)34 b(script)g(b)s(eing)g(executed)g(with)g(the)g
 Ft(.)g Fu(\()p Ft(source)p Fu(\))f(builtin,)h(returning)f(either)i
-Fr(n)e Fu(or)h(the)630 3070 y(exit)j(status)f(of)g(the)g(last)h
+Fr(n)e Fu(or)h(the)630 3433 y(exit)j(status)f(of)g(the)g(last)h
 (command)e(executed)i(within)e(the)h(script)g(as)g(the)g(exit)h(status)
-630 3180 y(of)i(the)g(script.)65 b(If)38 b Fr(n)g Fu(is)h(supplied,)h
+630 3543 y(of)i(the)g(script.)65 b(If)38 b Fr(n)g Fu(is)h(supplied,)h
 (the)f(return)e(v)-5 b(alue)39 b(is)g(its)g(least)h(signi\014can)m(t)g
-(8)f(bits.)630 3289 y(An)m(y)g(command)f(asso)s(ciated)j(with)d(the)h
+(8)f(bits.)630 3652 y(An)m(y)g(command)f(asso)s(ciated)j(with)d(the)h
 Ft(RETURN)e Fu(trap)i(is)g(executed)g(b)s(efore)g(execution)630
-3399 y(resumes)29 b(after)h(the)g(function)g(or)g(script.)40
+3762 y(resumes)29 b(after)h(the)g(function)g(or)g(script.)40
 b(The)29 b(return)g(status)h(is)g(non-zero)g(if)g Ft(return)e
-Fu(is)630 3508 y(supplied)h(a)i(non-n)m(umeric)g(argumen)m(t)g(or)f(is)
+Fu(is)630 3871 y(supplied)h(a)i(non-n)m(umeric)g(argumen)m(t)g(or)f(is)
 h(used)f(outside)h(a)g(function)f(and)g(not)h(during)630
-3618 y(the)g(execution)g(of)g(a)f(script)h(b)m(y)f Ft(.)g
-Fu(or)g Ft(source)p Fu(.)150 3774 y Ft(shift)870 3907
-y(shift)46 b([)p Fj(n)p Ft(])630 4041 y Fu(Shift)41 b(the)g(p)s
+3981 y(the)g(execution)g(of)g(a)f(script)h(b)m(y)f Ft(.)g
+Fu(or)g Ft(source)p Fu(.)150 4134 y Ft(shift)870 4266
+y(shift)46 b([)p Fj(n)p Ft(])630 4398 y Fu(Shift)41 b(the)g(p)s
 (ositional)h(parameters)g(to)g(the)f(left)h(b)m(y)g Fr(n)p
-Fu(.)73 b(The)40 b(p)s(ositional)j(parameters)630 4150
+Fu(.)73 b(The)40 b(p)s(ositional)j(parameters)630 4507
 y(from)34 b Fr(n)p Ft(+)p Fu(1)39 b(.)22 b(.)h(.)45 b
 Ft($#)34 b Fu(are)g(renamed)g(to)h Ft($1)k Fu(.)22 b(.)g(.)46
 b Ft($#)p Fu(-)p Fr(n)p Fu(.)51 b(P)m(arameters)36 b(represen)m(ted)e
-(b)m(y)g(the)630 4260 y(n)m(um)m(b)s(ers)d Ft($#)i Fu(do)m(wn)f(to)i
+(b)m(y)g(the)630 4617 y(n)m(um)m(b)s(ers)d Ft($#)i Fu(do)m(wn)f(to)i
 Ft($#)p Fu(-)p Fr(n)p Ft(+)p Fu(1)e(are)h(unset.)48 b
 Fr(n)32 b Fu(m)m(ust)h(b)s(e)f(a)h(non-negativ)m(e)i(n)m(um)m(b)s(er)d
-(less)630 4369 y(than)g(or)g(equal)h(to)g Ft($#)p Fu(.)46
+(less)630 4726 y(than)g(or)g(equal)h(to)g Ft($#)p Fu(.)46
 b(If)31 b Fr(n)h Fu(is)g(zero)h(or)f(greater)i(than)e
-Ft($#)p Fu(,)g(the)h(p)s(ositional)g(parameters)630 4479
+Ft($#)p Fu(,)g(the)h(p)s(ositional)g(parameters)630 4836
 y(are)e(not)h(c)m(hanged.)43 b(If)31 b Fr(n)g Fu(is)g(not)g(supplied,)f
 (it)i(is)f(assumed)f(to)i(b)s(e)f(1.)43 b(The)31 b(return)f(status)630
-4589 y(is)g(zero)i(unless)d Fr(n)h Fu(is)g(greater)i(than)e
+4945 y(is)g(zero)i(unless)d Fr(n)h Fu(is)g(greater)i(than)e
 Ft($#)g Fu(or)g(less)h(than)f(zero,)i(non-zero)e(otherwise.)150
-4745 y Ft(test)150 4855 y([)870 4988 y(test)47 b Fj(expr)630
-5121 y Fu(Ev)-5 b(aluate)43 b(a)f(conditional)h(expression)f
-Fr(expr)48 b Fu(and)41 b(return)g(a)h(status)g(of)g(0)g(\(true\))h(or)f
-(1)630 5230 y(\(false\).)g(Eac)m(h)31 b(op)s(erator)f(and)f(op)s(erand)
-g(m)m(ust)h(b)s(e)f(a)i(separate)g(argumen)m(t.)41 b(Expressions)630
-5340 y(are)26 b(comp)s(osed)f(of)g(the)h(primaries)f(describ)s(ed)f(b)s
-(elo)m(w)h(in)g(Section)h(6.4)h([Bash)e(Conditional)p
+5099 y Ft(test)150 5208 y([)870 5340 y(test)47 b Fj(expr)p
 eop end
-%%Page: 53 59
-TeXDict begin 53 58 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(53)630 299 y(Expressions],)39
-b(page)g(97.)64 b Ft(test)37 b Fu(do)s(es)g(not)h(accept)i(an)m(y)e
-(options,)i(nor)e(do)s(es)f(it)h(accept)630 408 y(and)30
-b(ignore)h(an)f(argumen)m(t)h(of)f Ft(--)g Fu(as)h(signifying)f(the)h
-(end)f(of)g(options.)630 550 y(When)g(the)h Ft([)f Fu(form)g(is)g
-(used,)g(the)g(last)i(argumen)m(t)e(to)i(the)e(command)g(m)m(ust)h(b)s
-(e)e(a)i Ft(])p Fu(.)630 692 y(Expressions)23 b(ma)m(y)h(b)s(e)e(com)m
-(bined)i(using)f(the)h(follo)m(wing)h(op)s(erators,)g(listed)f(in)f
-(decreasing)630 801 y(order)30 b(of)h(precedence.)43
-b(The)30 b(ev)-5 b(aluation)33 b(dep)s(ends)28 b(on)j(the)g(n)m(um)m(b)
-s(er)f(of)h(argumen)m(ts;)g(see)630 911 y(b)s(elo)m(w.)41
-b(Op)s(erator)30 b(precedence)h(is)f(used)g(when)f(there)i(are)f(\014v)
-m(e)h(or)f(more)h(argumen)m(ts.)630 1084 y Ft(!)f Fj(expr)210
-b Fu(T)-8 b(rue)30 b(if)g Fr(expr)37 b Fu(is)30 b(false.)630
-1258 y Ft(\()g Fj(expr)f Ft(\))133 b Fu(Returns)23 b(the)i(v)-5
+%%Page: 54 60
+TeXDict begin 54 59 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(54)630 299 y(Ev)-5
+b(aluate)43 b(a)f(conditional)h(expression)f Fr(expr)48
+b Fu(and)41 b(return)g(a)h(status)g(of)g(0)g(\(true\))h(or)f(1)630
+408 y(\(false\).)g(Eac)m(h)31 b(op)s(erator)f(and)f(op)s(erand)g(m)m
+(ust)h(b)s(e)f(a)i(separate)g(argumen)m(t.)41 b(Expressions)630
+518 y(are)26 b(comp)s(osed)f(of)g(the)h(primaries)f(describ)s(ed)f(b)s
+(elo)m(w)h(in)g(Section)h(6.4)h([Bash)e(Conditional)630
+628 y(Expressions],)39 b(page)g(98.)64 b Ft(test)37 b
+Fu(do)s(es)g(not)h(accept)i(an)m(y)e(options,)i(nor)e(do)s(es)f(it)h
+(accept)630 737 y(and)30 b(ignore)h(an)f(argumen)m(t)h(of)f
+Ft(--)g Fu(as)h(signifying)f(the)h(end)f(of)g(options.)630
+871 y(When)g(the)h Ft([)f Fu(form)g(is)g(used,)g(the)g(last)i(argumen)m
+(t)e(to)i(the)e(command)g(m)m(ust)h(b)s(e)e(a)i Ft(])p
+Fu(.)630 1004 y(Expressions)23 b(ma)m(y)h(b)s(e)e(com)m(bined)i(using)f
+(the)h(follo)m(wing)h(op)s(erators,)g(listed)f(in)f(decreasing)630
+1114 y(order)30 b(of)h(precedence.)43 b(The)30 b(ev)-5
+b(aluation)33 b(dep)s(ends)28 b(on)j(the)g(n)m(um)m(b)s(er)f(of)h
+(argumen)m(ts;)g(see)630 1223 y(b)s(elo)m(w.)41 b(Op)s(erator)30
+b(precedence)h(is)f(used)g(when)f(there)i(are)f(\014v)m(e)h(or)f(more)h
+(argumen)m(ts.)630 1380 y Ft(!)f Fj(expr)210 b Fu(T)-8
+b(rue)30 b(if)g Fr(expr)37 b Fu(is)30 b(false.)630 1538
+y Ft(\()g Fj(expr)f Ft(\))133 b Fu(Returns)23 b(the)i(v)-5
 b(alue)25 b(of)f Fr(expr)p Fu(.)38 b(This)24 b(ma)m(y)h(b)s(e)e(used)h
-(to)h(o)m(v)m(erride)g(the)g(normal)1110 1367 y(precedence)31
-b(of)f(op)s(erators.)630 1541 y Fj(expr1)f Ft(-a)h Fj(expr2)1110
-1650 y Fu(T)-8 b(rue)30 b(if)g(b)s(oth)g Fr(expr1)37
-b Fu(and)30 b Fr(expr2)38 b Fu(are)30 b(true.)630 1824
-y Fj(expr1)f Ft(-o)h Fj(expr2)1110 1934 y Fu(T)-8 b(rue)30
+(to)h(o)m(v)m(erride)g(the)g(normal)1110 1647 y(precedence)31
+b(of)f(op)s(erators.)630 1805 y Fj(expr1)f Ft(-a)h Fj(expr2)1110
+1914 y Fu(T)-8 b(rue)30 b(if)g(b)s(oth)g Fr(expr1)37
+b Fu(and)30 b Fr(expr2)38 b Fu(are)30 b(true.)630 2071
+y Fj(expr1)f Ft(-o)h Fj(expr2)1110 2181 y Fu(T)-8 b(rue)30
 b(if)g(either)h Fr(expr1)38 b Fu(or)30 b Fr(expr2)37
-b Fu(is)31 b(true.)630 2107 y(The)37 b Ft(test)f Fu(and)g
+b Fu(is)31 b(true.)630 2338 y(The)37 b Ft(test)f Fu(and)g
 Ft([)h Fu(builtins)g(ev)-5 b(aluate)39 b(conditional)f(expressions)f
-(using)g(a)g(set)h(of)f(rules)630 2217 y(based)30 b(on)g(the)h(n)m(um)m
-(b)s(er)e(of)h(argumen)m(ts.)630 2390 y(0)h(argumen)m(ts)1110
-2500 y(The)f(expression)g(is)g(false.)630 2673 y(1)h(argumen)m(t)1110
-2783 y(The)f(expression)g(is)g(true)h(if,)f(and)g(only)g(if,)h(the)g
-(argumen)m(t)f(is)h(not)f(n)m(ull.)630 2956 y(2)h(argumen)m(ts)1110
-3066 y(If)f(the)h(\014rst)f(argumen)m(t)h(is)g(`)p Ft(!)p
+(using)g(a)g(set)h(of)f(rules)630 2448 y(based)30 b(on)g(the)h(n)m(um)m
+(b)s(er)e(of)h(argumen)m(ts.)630 2605 y(0)h(argumen)m(ts)1110
+2715 y(The)f(expression)g(is)g(false.)630 2872 y(1)h(argumen)m(t)1110
+2981 y(The)f(expression)g(is)g(true)h(if,)f(and)g(only)g(if,)h(the)g
+(argumen)m(t)f(is)h(not)f(n)m(ull.)630 3139 y(2)h(argumen)m(ts)1110
+3248 y(If)f(the)h(\014rst)f(argumen)m(t)h(is)g(`)p Ft(!)p
 Fu(',)g(the)g(expression)g(is)g(true)f(if)h(and)f(only)h(if)g(the)1110
-3176 y(second)j(argumen)m(t)f(is)h(n)m(ull.)50 b(If)33
+3358 y(second)j(argumen)m(t)f(is)h(n)m(ull.)50 b(If)33
 b(the)h(\014rst)e(argumen)m(t)i(is)g(one)g(of)f(the)h(unary)1110
-3285 y(conditional)42 b(op)s(erators)f(\(see)g(Section)h(6.4)f([Bash)g
-(Conditional)g(Expres-)1110 3395 y(sions],)34 b(page)f(97\),)i(the)e
+3467 y(conditional)42 b(op)s(erators)f(\(see)g(Section)h(6.4)f([Bash)g
+(Conditional)g(Expres-)1110 3577 y(sions],)34 b(page)f(98\),)i(the)e
 (expression)f(is)h(true)g(if)g(the)g(unary)e(test)j(is)f(true.)47
-b(If)1110 3504 y(the)33 b(\014rst)g(argumen)m(t)h(is)f(not)g(a)h(v)-5
+b(If)1110 3687 y(the)33 b(\014rst)g(argumen)m(t)h(is)f(not)g(a)h(v)-5
 b(alid)34 b(unary)e(op)s(erator,)i(the)g(expression)f(is)1110
-3614 y(false.)630 3787 y(3)e(argumen)m(ts)1110 3897 y(The)f(follo)m
+3796 y(false.)630 3953 y(3)e(argumen)m(ts)1110 4063 y(The)f(follo)m
 (wing)i(conditions)f(are)f(applied)h(in)f(the)g(order)g(listed.)1159
-4039 y(1.)61 b(If)29 b(the)g(second)g(argumen)m(t)h(is)f(one)h(of)f
-(the)h(binary)e(conditional)j(op)s(era-)1290 4148 y(tors)c(\(see)h
-(Section)g(6.4)g([Bash)g(Conditional)f(Expressions],)h(page)f(97\),)
-1290 4258 y(the)d(result)g(of)f(the)h(expression)g(is)g(the)f(result)h
-(of)g(the)g(binary)f(test)h(using)1290 4367 y(the)35
+4196 y(1.)61 b(If)29 b(the)g(second)g(argumen)m(t)h(is)f(one)h(of)f
+(the)h(binary)e(conditional)j(op)s(era-)1290 4306 y(tors)c(\(see)h
+(Section)g(6.4)g([Bash)g(Conditional)f(Expressions],)h(page)f(98\),)
+1290 4416 y(the)d(result)g(of)f(the)h(expression)g(is)g(the)f(result)h
+(of)g(the)g(binary)f(test)h(using)1290 4525 y(the)35
 b(\014rst)e(and)h(third)g(argumen)m(ts)h(as)f(op)s(erands.)52
 b(The)34 b(`)p Ft(-a)p Fu(')g(and)g(`)p Ft(-o)p Fu(')1290
-4477 y(op)s(erators)24 b(are)g(considered)g(binary)f(op)s(erators)h
-(when)f(there)h(are)h(three)1290 4587 y(argumen)m(ts.)1159
-4728 y(2.)61 b(If)41 b(the)h(\014rst)e(argumen)m(t)i(is)f(`)p
+4635 y(op)s(erators)24 b(are)g(considered)g(binary)f(op)s(erators)h
+(when)f(there)h(are)h(three)1290 4744 y(argumen)m(ts.)1159
+4878 y(2.)61 b(If)41 b(the)h(\014rst)e(argumen)m(t)i(is)f(`)p
 Ft(!)p Fu(',)k(the)d(v)-5 b(alue)41 b(is)h(the)f(negation)i(of)f(the)
-1290 4838 y(t)m(w)m(o-argumen)m(t)33 b(test)e(using)f(the)g(second)h
-(and)e(third)h(argumen)m(ts.)1159 4979 y(3.)61 b(If)35
+1290 4987 y(t)m(w)m(o-argumen)m(t)33 b(test)e(using)f(the)g(second)h
+(and)e(third)h(argumen)m(ts.)1159 5121 y(3.)61 b(If)35
 b(the)h(\014rst)e(argumen)m(t)i(is)g(exactly)h(`)p Ft(\()p
-Fu(')f(and)f(the)g(third)g(argumen)m(t)h(is)1290 5089
+Fu(')f(and)f(the)g(third)g(argumen)m(t)h(is)1290 5230
 y(exactly)i(`)p Ft(\))p Fu(',)g(the)f(result)f(is)h(the)f(one-argumen)m
-(t)i(test)f(of)f(the)h(second)1290 5198 y(argumen)m(t.)1159
-5340 y(4.)61 b(Otherwise,)30 b(the)h(expression)f(is)g(false.)p
+(t)i(test)f(of)f(the)h(second)1290 5340 y(argumen)m(t.)p
 eop end
-%%Page: 54 60
-TeXDict begin 54 59 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(54)630 299 y(4)31
-b(argumen)m(ts)1110 408 y(The)f(follo)m(wing)i(conditions)f(are)f
-(applied)h(in)f(the)g(order)g(listed.)1159 542 y(1.)61
-b(If)39 b(the)i(\014rst)e(argumen)m(t)h(is)g(`)p Ft(!)p
-Fu(',)j(the)d(result)f(is)h(the)g(negation)i(of)e(the)1290
-652 y(three-argumen)m(t)k(expression)e(comp)s(osed)g(of)h(the)g
-(remaining)g(argu-)1290 762 y(men)m(ts.)1159 896 y(2.)61
+%%Page: 55 61
+TeXDict begin 55 60 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(55)1159 299 y(4.)61
+b(Otherwise,)30 b(the)h(expression)f(is)g(false.)630
+452 y(4)h(argumen)m(ts)1110 562 y(The)f(follo)m(wing)i(conditions)f
+(are)f(applied)h(in)f(the)g(order)g(listed.)1159 693
+y(1.)61 b(If)39 b(the)i(\014rst)e(argumen)m(t)h(is)g(`)p
+Ft(!)p Fu(',)j(the)d(result)f(is)h(the)g(negation)i(of)e(the)1290
+803 y(three-argumen)m(t)k(expression)e(comp)s(osed)g(of)h(the)g
+(remaining)g(argu-)1290 913 y(men)m(ts.)1159 1044 y(2.)61
 b(If)31 b(the)g(\014rst)f(argumen)m(t)i(is)f(exactly)i(`)p
 Ft(\()p Fu(')e(and)g(the)g(fourth)f(argumen)m(t)i(is)1290
-1005 y(exactly)38 b(`)p Ft(\))p Fu(',)f(the)f(result)g(is)g(the)g(t)m
-(w)m(o-argumen)m(t)i(test)f(of)f(the)g(second)1290 1115
-y(and)30 b(third)f(argumen)m(ts.)1159 1249 y(3.)61 b(Otherwise,)26
+1154 y(exactly)38 b(`)p Ft(\))p Fu(',)f(the)f(result)g(is)g(the)g(t)m
+(w)m(o-argumen)m(t)i(test)f(of)f(the)g(second)1290 1263
+y(and)30 b(third)f(argumen)m(ts.)1159 1395 y(3.)61 b(Otherwise,)26
 b(the)f(expression)f(is)h(parsed)f(and)g(ev)-5 b(aluated)26
-b(according)g(to)1290 1358 y(precedence)31 b(using)f(the)g(rules)g
-(listed)h(ab)s(o)m(v)m(e.)630 1517 y(5)g(or)f(more)h(argumen)m(ts)1110
-1626 y(The)43 b(expression)f(is)i(parsed)e(and)g(ev)-5
-b(aluated)45 b(according)f(to)f(precedence)1110 1736
+b(according)g(to)1290 1504 y(precedence)31 b(using)f(the)g(rules)g
+(listed)h(ab)s(o)m(v)m(e.)630 1658 y(5)g(or)f(more)h(argumen)m(ts)1110
+1767 y(The)43 b(expression)f(is)i(parsed)e(and)g(ev)-5
+b(aluated)45 b(according)f(to)f(precedence)1110 1877
 y(using)30 b(the)g(rules)g(listed)h(ab)s(o)m(v)m(e.)630
-1894 y(When)40 b(used)f(with)g Ft(test)g Fu(or)h(`)p
+2030 y(When)40 b(used)f(with)g Ft(test)g Fu(or)h(`)p
 Ft([)p Fu(',)j(the)d(`)p Ft(<)p Fu(')g(and)f(`)p Ft(>)p
-Fu(')h(op)s(erators)g(sort)g(lexicographically)630 2004
-y(using)30 b(ASCI)s(I)f(ordering.)150 2162 y Ft(times)870
-2296 y(times)630 2430 y Fu(Prin)m(t)37 b(out)h(the)g(user)e(and)h
+Fu(')h(op)s(erators)g(sort)g(lexicographically)630 2140
+y(using)30 b(ASCI)s(I)f(ordering.)150 2293 y Ft(times)870
+2425 y(times)630 2556 y Fu(Prin)m(t)37 b(out)h(the)g(user)e(and)h
 (system)g(times)h(used)f(b)m(y)g(the)h(shell)f(and)g(its)h(c)m
-(hildren.)61 b(The)630 2539 y(return)29 b(status)i(is)f(zero.)150
-2698 y Ft(trap)870 2832 y(trap)47 b([-Plp])f([)p Fj(action)p
-Ft(])f([)p Fj(sigspec)h Ft(...)o(])630 2966 y Fu(The)40
+(hildren.)61 b(The)630 2666 y(return)29 b(status)i(is)f(zero.)150
+2819 y Ft(trap)870 2951 y(trap)47 b([-Plp])f([)p Fj(action)p
+Ft(])f([)p Fj(sigspec)h Ft(...)o(])630 3082 y Fu(The)40
 b Fr(action)i Fu(is)e(a)h(command)f(that)h(is)f(read)h(and)e(executed)j
-(when)d(the)i(shell)f(receiv)m(es)630 3075 y(signal)30
+(when)d(the)i(shell)f(receiv)m(es)630 3192 y(signal)30
 b Fr(sigsp)s(ec)p Fu(.)40 b(If)29 b Fr(action)h Fu(is)f(absen)m(t)h
 (\(and)f(there)g(is)g(a)g(single)h Fr(sigsp)s(ec)6 b
-Fu(\))29 b(or)g(equal)h(to)g(`)p Ft(-)p Fu(',)630 3185
+Fu(\))29 b(or)g(equal)h(to)g(`)p Ft(-)p Fu(',)630 3302
 y(eac)m(h)e(sp)s(eci\014ed)e(signal's)h(disp)s(osition)f(is)h(reset)g
 (to)g(the)g(v)-5 b(alue)27 b(it)g(had)f(when)f(the)i(shell)g(w)m(as)630
-3294 y(started.)43 b(If)30 b Fr(action)j Fu(is)e(the)g(n)m(ull)f
+3411 y(started.)43 b(If)30 b Fr(action)j Fu(is)e(the)g(n)m(ull)f
 (string,)i(then)e(the)i(signal)f(sp)s(eci\014ed)f(b)m(y)h(eac)m(h)h
-Fr(sigsp)s(ec)37 b Fu(is)630 3404 y(ignored)30 b(b)m(y)h(the)f(shell)h
-(and)f(commands)g(it)h(in)m(v)m(ok)m(es.)630 3538 y(If)44
+Fr(sigsp)s(ec)37 b Fu(is)630 3521 y(ignored)30 b(b)m(y)h(the)f(shell)h
+(and)f(commands)g(it)h(in)m(v)m(ok)m(es.)630 3652 y(If)44
 b(no)h(argumen)m(ts)g(are)g(supplied,)j Ft(trap)c Fu(prin)m(ts)g(the)h
-(actions)h(asso)s(ciated)g(with)f(eac)m(h)630 3647 y(trapp)s(ed)29
+(actions)h(asso)s(ciated)g(with)f(eac)m(h)630 3762 y(trapp)s(ed)29
 b(signal)j(as)f(a)g(set)g(of)f Ft(trap)g Fu(commands)g(that)h(can)g(b)s
-(e)f(reused)g(as)h(shell)g(input)e(to)630 3757 y(restore)g(the)g
+(e)f(reused)g(as)h(shell)g(input)e(to)630 3871 y(restore)g(the)g
 (curren)m(t)g(signal)g(disp)s(ositions.)40 b(If)28 b
 Fr(action)i Fu(is)f(not)f(presen)m(t)h(and)f Ft(-p)g
-Fu(has)h(b)s(een)630 3867 y(supplied,)39 b Ft(trap)e
+Fu(has)h(b)s(een)630 3981 y(supplied,)39 b Ft(trap)e
 Fu(displa)m(ys)i(the)f(trap)h(commands)f(asso)s(ciated)h(with)f(eac)m
-(h)i Fr(sigsp)s(ec)p Fu(,)h(or,)630 3976 y(if)32 b(no)g
+(h)i Fr(sigsp)s(ec)p Fu(,)h(or,)630 4091 y(if)32 b(no)g
 Fr(sigsp)s(ec)6 b Fu(s)32 b(are)h(supplied,)e(for)h(all)h(trapp)s(ed)e
 (signals,)j(as)e(a)h(set)g(of)f Ft(trap)f Fu(commands)630
-4086 y(that)44 b(can)g(b)s(e)f(reused)g(as)g(shell)h(input)f(to)h
+4200 y(that)44 b(can)g(b)s(e)f(reused)g(as)g(shell)h(input)f(to)h
 (restore)g(the)g(curren)m(t)f(signal)h(disp)s(ositions.)630
-4195 y(The)31 b Ft(-P)g Fu(option)g(b)s(eha)m(v)m(es)h(similarly)-8
+4310 y(The)31 b Ft(-P)g Fu(option)g(b)s(eha)m(v)m(es)h(similarly)-8
 b(,)33 b(but)e(displa)m(ys)g(only)g(the)h(actions)g(asso)s(ciated)h
-(with)630 4305 y(eac)m(h)43 b Fr(sigsp)s(ec)k Fu(argumen)m(t.)74
+(with)630 4419 y(eac)m(h)43 b Fr(sigsp)s(ec)k Fu(argumen)m(t.)74
 b Ft(-P)41 b Fu(requires)g(at)h(least)h(one)f Fr(sigsp)s(ec)47
-b Fu(argumen)m(t.)75 b(The)41 b Ft(-P)630 4415 y Fu(or)34
+b Fu(argumen)m(t.)75 b(The)41 b Ft(-P)630 4529 y Fu(or)34
 b Ft(-p)f Fu(options)h(to)g Ft(trap)e Fu(ma)m(y)j(b)s(e)e(used)g(in)g
 (a)h(subshell)f(en)m(vironmen)m(t)h(\(e.g.,)i(command)630
-4524 y(substitution\))k(and,)j(as)d(long)h(as)g(they)g(are)f(used)g(b)s
+4639 y(substitution\))k(and,)j(as)d(long)h(as)g(they)g(are)f(used)g(b)s
 (efore)g Ft(trap)f Fu(is)h(used)g(to)h(c)m(hange)h(a)630
-4634 y(signal's)31 b(handling,)f(will)h(displa)m(y)f(the)h(state)h(of)e
-(its)h(paren)m(t's)g(traps.)630 4768 y(The)21 b Ft(-l)f
+4748 y(signal's)31 b(handling,)f(will)h(displa)m(y)f(the)h(state)h(of)e
+(its)h(paren)m(t's)g(traps.)630 4880 y(The)21 b Ft(-l)f
 Fu(option)i(causes)g Ft(trap)e Fu(to)i(prin)m(t)f(a)g(list)h(of)g
 (signal)g(names)f(and)g(their)g(corresp)s(onding)630
-4877 y(n)m(um)m(b)s(ers.)37 b(Eac)m(h)24 b Fr(sigsp)s(ec)30
+4989 y(n)m(um)m(b)s(ers.)37 b(Eac)m(h)24 b Fr(sigsp)s(ec)30
 b Fu(is)23 b(either)i(a)f(signal)g(name)g(or)f(a)h(signal)h(n)m(um)m(b)
-s(er.)37 b(Signal)24 b(names)630 4987 y(are)31 b(case)g(insensitiv)m(e)
+s(er.)37 b(Signal)24 b(names)630 5099 y(are)31 b(case)g(insensitiv)m(e)
 h(and)d(the)i Ft(SIG)e Fu(pre\014x)h(is)g(optional.)630
-5121 y(If)f(a)g Fr(sigsp)s(ec)35 b Fu(is)30 b Ft(0)f
+5230 y(If)f(a)g Fr(sigsp)s(ec)35 b Fu(is)30 b Ft(0)f
 Fu(or)g Ft(EXIT)p Fu(,)f Fr(action)j Fu(is)e(executed)h(when)f(the)g
 (shell)g(exits.)42 b(If)28 b(a)i Fr(sigsp)s(ec)35 b Fu(is)630
-5230 y Ft(DEBUG)p Fu(,)g Fr(action)g Fu(is)g(executed)h(b)s(efore)e(ev)
-m(ery)h(simple)g(command,)h Ft(for)d Fu(command,)j Ft(case)630
-5340 y Fu(command,)29 b Ft(select)d Fu(command,)j(\(\()g(arithmetic)h
-(command,)e([[)h(conditional)h(command,)p eop end
-%%Page: 55 61
-TeXDict begin 55 60 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(55)630 299 y(arithmetic)44
-b Ft(for)e Fu(command,)k(and)c(b)s(efore)g(the)h(\014rst)f(command)g
-(executes)i(in)f(a)g(shell)630 408 y(function.)d(Refer)31
-b(to)g(the)f(description)h(of)f(the)h Ft(extdebug)d Fu(option)j(to)g
-(the)f Ft(shopt)f Fu(builtin)630 518 y(\(see)35 b(Section)g(4.3.2)g
-([The)f(Shopt)f(Builtin],)j(page)f(71\))g(for)f(details)h(of)f(its)g
-(e\013ect)i(on)e(the)630 628 y Ft(DEBUG)25 b Fu(trap.)39
-b(If)26 b(a)g Fr(sigsp)s(ec)32 b Fu(is)26 b Ft(RETURN)p
-Fu(,)g Fr(action)i Fu(is)e(executed)h(eac)m(h)g(time)g(a)g(shell)f
-(function)630 737 y(or)k(a)h(script)f(executed)i(with)e(the)g
-Ft(.)g Fu(or)h Ft(source)d Fu(builtins)i(\014nishes)f(executing.)630
-864 y(If)c(a)h Fr(sigsp)s(ec)31 b Fu(is)25 b Ft(ERR)p
+5340 y Ft(DEBUG)p Fu(,)g Fr(action)g Fu(is)g(executed)h(b)s(efore)e(ev)
+m(ery)h(simple)g(command,)h Ft(for)d Fu(command,)j Ft(case)p
+eop end
+%%Page: 56 62
+TeXDict begin 56 61 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(56)630 299 y(command,)29
+b Ft(select)d Fu(command,)j(\(\()g(arithmetic)h(command,)e([[)h
+(conditional)h(command,)630 408 y(arithmetic)44 b Ft(for)e
+Fu(command,)k(and)c(b)s(efore)g(the)h(\014rst)f(command)g(executes)i
+(in)f(a)g(shell)630 518 y(function.)d(Refer)31 b(to)g(the)f
+(description)h(of)f(the)h Ft(extdebug)d Fu(option)j(to)g(the)f
+Ft(shopt)f Fu(builtin)630 628 y(\(see)35 b(Section)g(4.3.2)g([The)f
+(Shopt)f(Builtin],)j(page)f(72\))g(for)f(details)h(of)f(its)g(e\013ect)
+i(on)e(the)630 737 y Ft(DEBUG)25 b Fu(trap.)39 b(If)26
+b(a)g Fr(sigsp)s(ec)32 b Fu(is)26 b Ft(RETURN)p Fu(,)g
+Fr(action)i Fu(is)e(executed)h(eac)m(h)g(time)g(a)g(shell)f(function)
+630 847 y(or)k(a)h(script)f(executed)i(with)e(the)g Ft(.)g
+Fu(or)h Ft(source)d Fu(builtins)i(\014nishes)f(executing.)630
+984 y(If)c(a)h Fr(sigsp)s(ec)31 b Fu(is)25 b Ft(ERR)p
 Fu(,)h Fr(action)g Fu(is)g(executed)g(whenev)m(er)f(a)h(pip)s(eline)f
-(\(whic)m(h)g(ma)m(y)h(consist)g(of)630 973 y(a)31 b(single)h(simple)f
+(\(whic)m(h)g(ma)m(y)h(consist)g(of)630 1093 y(a)31 b(single)h(simple)f
 (command\),)h(a)f(list,)h(or)f(a)h(comp)s(ound)d(command)i(returns)f(a)
-h(non-zero)630 1083 y(exit)e(status,)g(sub)5 b(ject)27
+h(non-zero)630 1203 y(exit)e(status,)g(sub)5 b(ject)27
 b(to)i(the)f(follo)m(wing)h(conditions.)40 b(The)28 b
-Ft(ERR)f Fu(trap)g(is)h(not)g(executed)h(if)630 1192
+Ft(ERR)f Fu(trap)g(is)h(not)g(executed)h(if)630 1313
 y(the)24 b(failed)h(command)e(is)h(part)g(of)g(the)g(command)g(list)h
-(immediately)g(follo)m(wing)h(an)d Ft(until)630 1302
+(immediately)g(follo)m(wing)h(an)d Ft(until)630 1422
 y Fu(or)h Ft(while)f Fu(k)m(eyw)m(ord,)j(part)e(of)g(the)g(test)h
 (follo)m(wing)h(the)e Ft(if)g Fu(or)g Ft(elif)f Fu(reserv)m(ed)h(w)m
-(ords,)h(part)630 1412 y(of)37 b(a)g(command)f(executed)i(in)e(a)h
+(ords,)h(part)630 1532 y(of)37 b(a)g(command)f(executed)i(in)e(a)h
 Ft(&&)f Fu(or)h Ft(||)f Fu(list)h(except)g(the)g(command)g(follo)m
-(wing)h(the)630 1521 y(\014nal)f Ft(&&)f Fu(or)h Ft(||)p
+(wing)h(the)630 1641 y(\014nal)f Ft(&&)f Fu(or)h Ft(||)p
 Fu(,)i(an)m(y)e(command)g(in)g(a)g(pip)s(eline)g(but)f(the)i(last,)i
-(or)d(if)g(the)g(command's)630 1631 y(return)31 b(status)i(is)f(b)s
+(or)d(if)g(the)g(command's)630 1751 y(return)31 b(status)i(is)f(b)s
 (eing)f(in)m(v)m(erted)i(using)f Ft(!)p Fu(.)46 b(These)32
-b(are)g(the)h(same)f(conditions)h(ob)s(ey)m(ed)630 1740
+b(are)g(the)h(same)f(conditions)h(ob)s(ey)m(ed)630 1861
 y(b)m(y)d(the)h Ft(errexit)d Fu(\()p Ft(-e)p Fu(\))j(option.)630
-1867 y(Signals)23 b(ignored)h(up)s(on)e(en)m(try)h(to)h(a)g(non-in)m
+1998 y(Signals)23 b(ignored)h(up)s(on)e(en)m(try)h(to)h(a)g(non-in)m
 (teractiv)m(e)i(shell)d(cannot)h(b)s(e)f(trapp)s(ed)f(or)h(reset.)630
-1976 y(In)m(teractiv)m(e)i(shells)d(p)s(ermit)f(trapping)h(signals)h
+2107 y(In)m(teractiv)m(e)i(shells)d(p)s(ermit)f(trapping)h(signals)h
 (ignored)f(on)g(en)m(try)-8 b(.)39 b(T)-8 b(rapp)s(ed)21
-b(signals)h(that)630 2086 y(are)30 b(not)g(b)s(eing)f(ignored)h(are)g
+b(signals)h(that)630 2217 y(are)30 b(not)g(b)s(eing)f(ignored)h(are)g
 (reset)g(to)g(their)g(original)g(v)-5 b(alues)30 b(in)g(a)g(subshell)e
-(or)i(subshell)630 2195 y(en)m(vironmen)m(t)h(when)e(one)i(is)f
-(created.)630 2322 y(The)g(return)f(status)i(is)f(zero)h(unless)f(a)h
+(or)i(subshell)630 2326 y(en)m(vironmen)m(t)h(when)e(one)i(is)f
+(created.)630 2463 y(The)g(return)f(status)i(is)f(zero)h(unless)f(a)h
 Fr(sigsp)s(ec)36 b Fu(do)s(es)30 b(not)h(sp)s(ecify)f(a)g(v)-5
-b(alid)31 b(signal.)150 2465 y Ft(umask)870 2591 y(umask)46
-b([-p])h([-S])g([)p Fj(mode)p Ft(])630 2718 y Fu(Set)30
-b(the)f(shell)h(pro)s(cess's)f(\014le)h(creation)g(mask)g(to)g
-Fr(mo)s(de)p Fu(.)40 b(If)29 b Fr(mo)s(de)34 b Fu(b)s(egins)29
-b(with)g(a)h(digit,)630 2827 y(it)e(is)f(in)m(terpreted)g(as)g(an)g(o)s
-(ctal)i(n)m(um)m(b)s(er;)e(if)g(not,)h(it)g(is)f(in)m(terpreted)g(as)g
-(a)h(sym)m(b)s(olic)f(mo)s(de)630 2937 y(mask)i(similar)g(to)g(that)h
-(accepted)g(b)m(y)f(the)g Ft(chmod)e Fu(command.)40 b(If)28
-b Fr(mo)s(de)34 b Fu(is)28 b(omitted,)j(the)630 3047
-y(curren)m(t)39 b(v)-5 b(alue)40 b(of)f(the)g(mask)g(is)h(prin)m(ted.)
-66 b(If)39 b(the)g Ft(-S)g Fu(option)g(is)h(supplied)d(without)j(a)630
-3156 y Fr(mo)s(de)d Fu(argumen)m(t,)d(the)e(mask)g(is)h(prin)m(ted)f
+b(alid)31 b(signal.)150 2628 y Ft(true)870 2765 y(true)630
+2902 y Fu(Do)s(es)g(nothing,)g(returns)e(a)h(0)h(status.)150
+3066 y Ft(umask)870 3203 y(umask)46 b([-p])h([-S])g([)p
+Fj(mode)p Ft(])630 3340 y Fu(Set)30 b(the)f(shell)h(pro)s(cess's)f
+(\014le)h(creation)g(mask)g(to)g Fr(mo)s(de)p Fu(.)40
+b(If)29 b Fr(mo)s(de)34 b Fu(b)s(egins)29 b(with)g(a)h(digit,)630
+3450 y(it)e(is)f(in)m(terpreted)g(as)g(an)g(o)s(ctal)i(n)m(um)m(b)s
+(er;)e(if)g(not,)h(it)g(is)f(in)m(terpreted)g(as)g(a)h(sym)m(b)s(olic)f
+(mo)s(de)630 3559 y(mask)i(similar)g(to)g(that)h(accepted)g(b)m(y)f
+(the)g Ft(chmod)e Fu(command.)40 b(If)28 b Fr(mo)s(de)34
+b Fu(is)28 b(omitted,)j(the)630 3669 y(curren)m(t)39
+b(v)-5 b(alue)40 b(of)f(the)g(mask)g(is)h(prin)m(ted.)66
+b(If)39 b(the)g Ft(-S)g Fu(option)g(is)h(supplied)d(without)j(a)630
+3778 y Fr(mo)s(de)d Fu(argumen)m(t,)d(the)e(mask)g(is)h(prin)m(ted)f
 (in)g(a)g(sym)m(b)s(olic)h(format.)47 b(If)32 b(the)g
-Ft(-p)g Fu(option)h(is)630 3266 y(supplied,)f(and)f Fr(mo)s(de)37
+Ft(-p)g Fu(option)h(is)630 3888 y(supplied,)f(and)f Fr(mo)s(de)37
 b Fu(is)32 b(omitted,)i(the)f(output)f(is)g(in)g(a)g(form)g(that)h(ma)m
-(y)g(b)s(e)e(reused)h(as)630 3375 y(input.)62 b(The)38
+(y)g(b)s(e)e(reused)h(as)630 3998 y(input.)62 b(The)38
 b(return)f(status)h(is)g(zero)g(if)g(the)g(mo)s(de)g(is)g(successfully)
-g(c)m(hanged)g(or)g(if)g(no)630 3485 y Fr(mo)s(de)d Fu(argumen)m(t)c
-(is)f(supplied,)g(and)f(non-zero)i(otherwise.)630 3611
+g(c)m(hanged)g(or)g(if)g(no)630 4107 y Fr(mo)s(de)d Fu(argumen)m(t)c
+(is)f(supplied,)g(and)f(non-zero)i(otherwise.)630 4244
 y(Note)38 b(that)e(when)g(the)g(mo)s(de)g(is)g(in)m(terpreted)h(as)f
 (an)g(o)s(ctal)i(n)m(um)m(b)s(er,)e(eac)m(h)i(n)m(um)m(b)s(er)d(of)630
-3721 y(the)f(umask)g(is)h(subtracted)f(from)f Ft(7)p
+4354 y(the)f(umask)g(is)h(subtracted)f(from)f Ft(7)p
 Fu(.)53 b(Th)m(us,)34 b(a)h(umask)e(of)i Ft(022)e Fu(results)h(in)g(p)s
-(ermissions)630 3830 y(of)d Ft(755)p Fu(.)150 3974 y
-Ft(unset)870 4100 y(unset)46 b([-fnv])g([)p Fj(name)p
-Ft(])630 4226 y Fu(Remo)m(v)m(e)36 b(eac)m(h)f(v)-5 b(ariable)35
+(ermissions)630 4463 y(of)d Ft(755)p Fu(.)150 4628 y
+Ft(unset)870 4765 y(unset)46 b([-fnv])g([)p Fj(name)p
+Ft(])630 4902 y Fu(Remo)m(v)m(e)36 b(eac)m(h)f(v)-5 b(ariable)35
 b(or)f(function)f Fr(name)p Fu(.)52 b(If)33 b(the)i Ft(-v)e
-Fu(option)h(is)g(giv)m(en,)j(eac)m(h)e Fr(name)630 4336
+Fu(option)h(is)g(giv)m(en,)j(eac)m(h)e Fr(name)630 5011
 y Fu(refers)27 b(to)h(a)g(shell)f(v)-5 b(ariable)28 b(and)f(that)h(v)-5
 b(ariable)28 b(is)f(remo)m(v)m(ed.)41 b(If)27 b(the)g
-Ft(-f)g Fu(option)g(is)h(giv)m(en,)630 4446 y(the)37
+Ft(-f)g Fu(option)g(is)h(giv)m(en,)630 5121 y(the)37
 b Fr(name)5 b Fu(s)37 b(refer)f(to)i(shell)f(functions,)h(and)e(the)h
 (function)g(de\014nition)f(is)h(remo)m(v)m(ed.)61 b(If)630
-4555 y(the)34 b Ft(-n)e Fu(option)i(is)f(supplied,)h(and)e
+5230 y(the)34 b Ft(-n)e Fu(option)i(is)f(supplied,)h(and)e
 Fr(name)39 b Fu(is)33 b(a)h(v)-5 b(ariable)34 b(with)f(the)h
-Ft(nameref)d Fu(attribute,)630 4665 y Fr(name)42 b Fu(will)37
+Ft(nameref)d Fu(attribute,)630 5340 y Fr(name)42 b Fu(will)37
 b(b)s(e)f(unset)g(rather)g(than)h(the)g(v)-5 b(ariable)37
-b(it)g(references.)60 b Ft(-n)36 b Fu(has)g(no)h(e\013ect)h(if)630
-4774 y(the)h Ft(-f)g Fu(option)g(is)h(supplied.)65 b(If)39
-b(no)g(options)h(are)f(supplied,)h(eac)m(h)h Fr(name)j
-Fu(refers)39 b(to)h(a)630 4884 y(v)-5 b(ariable;)45 b(if)39
-b(there)g(is)g(no)g(v)-5 b(ariable)40 b(b)m(y)f(that)h(name,)h(a)f
-(function)f(with)g(that)g(name,)j(if)630 4994 y(an)m(y)-8
-b(,)34 b(is)e(unset.)46 b(Readonly)33 b(v)-5 b(ariables)33
-b(and)f(functions)g(ma)m(y)h(not)f(b)s(e)g(unset.)46
-b(Some)33 b(shell)630 5103 y(v)-5 b(ariables)29 b(lose)h(their)e(sp)s
-(ecial)h(b)s(eha)m(vior)g(if)f(they)h(are)g(unset;)g(suc)m(h)f(b)s(eha)
-m(vior)h(is)g(noted)f(in)630 5213 y(the)35 b(description)h(of)f(the)g
-(individual)g(v)-5 b(ariables.)56 b(The)34 b(return)g(status)i(is)f
-(zero)h(unless)f(a)630 5322 y Fr(name)h Fu(is)30 b(readonly)g(or)h(ma)m
-(y)g(not)f(b)s(e)g(unset.)p eop end
-%%Page: 56 62
-TeXDict begin 56 61 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(56)150 299 y Fs(4.2)68
-b(Bash)45 b(Builtin)g(Commands)150 458 y Fu(This)c(section)h(describ)s
-(es)f(builtin)f(commands)h(whic)m(h)g(are)h(unique)e(to)j(or)e(ha)m(v)m
-(e)h(b)s(een)f(extended)g(in)150 568 y(Bash.)g(Some)30
-b(of)h(these)g(commands)f(are)g(sp)s(eci\014ed)g(in)g(the)h
-Fm(posix)e Fu(standard.)150 717 y Ft(alias)870 847 y(alias)46
-b([-p])h([)p Fj(name)p Ft([=)p Fj(value)p Ft(])d(...)o(])630
-976 y Fu(Without)26 b(argumen)m(ts)f(or)g(with)f(the)h
-Ft(-p)g Fu(option,)h Ft(alias)e Fu(prin)m(ts)g(the)h(list)h(of)f
-(aliases)h(on)f(the)630 1086 y(standard)g(output)g(in)g(a)h(form)f
+b(it)g(references.)60 b Ft(-n)36 b Fu(has)g(no)h(e\013ect)h(if)p
+eop end
+%%Page: 57 63
+TeXDict begin 57 62 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(57)630 299 y(the)39
+b Ft(-f)g Fu(option)g(is)h(supplied.)65 b(If)39 b(no)g(options)h(are)f
+(supplied,)h(eac)m(h)h Fr(name)j Fu(refers)39 b(to)h(a)630
+408 y(v)-5 b(ariable;)45 b(if)39 b(there)g(is)g(no)g(v)-5
+b(ariable)40 b(b)m(y)f(that)h(name,)h(a)f(function)f(with)g(that)g
+(name,)j(if)630 518 y(an)m(y)-8 b(,)34 b(is)e(unset.)46
+b(Readonly)33 b(v)-5 b(ariables)33 b(and)f(functions)g(ma)m(y)h(not)f
+(b)s(e)g(unset.)46 b(Some)33 b(shell)630 628 y(v)-5 b(ariables)29
+b(lose)h(their)e(sp)s(ecial)h(b)s(eha)m(vior)g(if)f(they)h(are)g
+(unset;)g(suc)m(h)f(b)s(eha)m(vior)h(is)g(noted)f(in)630
+737 y(the)35 b(description)h(of)f(the)g(individual)g(v)-5
+b(ariables.)56 b(The)34 b(return)g(status)i(is)f(zero)h(unless)f(a)630
+847 y Fr(name)h Fu(is)30 b(readonly)g(or)h(ma)m(y)g(not)f(b)s(e)g
+(unset.)150 1077 y Fs(4.2)68 b(Bash)45 b(Builtin)g(Commands)150
+1237 y Fu(This)c(section)h(describ)s(es)f(builtin)f(commands)h(whic)m
+(h)g(are)h(unique)e(to)j(or)e(ha)m(v)m(e)h(b)s(een)f(extended)g(in)150
+1346 y(Bash.)g(Some)30 b(of)h(these)g(commands)f(are)g(sp)s(eci\014ed)g
+(in)g(the)h Fm(posix)e Fu(standard.)150 1496 y Ft(alias)870
+1625 y(alias)46 b([-p])h([)p Fj(name)p Ft([=)p Fj(value)p
+Ft(])d(...)o(])630 1755 y Fu(Without)26 b(argumen)m(ts)f(or)g(with)f
+(the)h Ft(-p)g Fu(option,)h Ft(alias)e Fu(prin)m(ts)g(the)h(list)h(of)f
+(aliases)h(on)f(the)630 1864 y(standard)g(output)g(in)g(a)h(form)f
 (that)h(allo)m(ws)h(them)e(to)h(b)s(e)f(reused)g(as)g(input.)39
-b(If)25 b(argumen)m(ts)630 1196 y(are)j(supplied,)e(an)i(alias)g(is)f
+b(If)25 b(argumen)m(ts)630 1974 y(are)j(supplied,)e(an)i(alias)g(is)f
 (de\014ned)f(for)h(eac)m(h)h Fr(name)33 b Fu(whose)27
 b Fr(v)-5 b(alue)33 b Fu(is)27 b(giv)m(en.)41 b(If)26
-b(no)h Fr(v)-5 b(alue)630 1305 y Fu(is)37 b(giv)m(en,)j(the)d(name)g
+b(no)h Fr(v)-5 b(alue)630 2083 y Fu(is)37 b(giv)m(en,)j(the)d(name)g
 (and)g(v)-5 b(alue)37 b(of)h(the)f(alias)h(is)f(prin)m(ted.)61
-b(Aliases)38 b(are)f(describ)s(ed)f(in)630 1415 y(Section)31
-b(6.6)h([Aliases],)g(page)f(101.)150 1564 y Ft(bind)870
-1694 y(bind)47 b([-m)g Fj(keymap)p Ft(])e([-lpsvPSVX])870
-1803 y(bind)i([-m)g Fj(keymap)p Ft(])e([-q)i Fj(function)p
+b(Aliases)38 b(are)f(describ)s(ed)f(in)630 2193 y(Section)31
+b(6.6)h([Aliases],)g(page)f(102.)150 2342 y Ft(bind)870
+2472 y(bind)47 b([-m)g Fj(keymap)p Ft(])e([-lpsvPSVX])870
+2581 y(bind)i([-m)g Fj(keymap)p Ft(])e([-q)i Fj(function)p
 Ft(])f([-u)g Fj(function)p Ft(])g([-r)h Fj(keyseq)p Ft(])870
-1913 y(bind)g([-m)g Fj(keymap)p Ft(])e(-f)j Fj(filename)870
-2022 y Ft(bind)f([-m)g Fj(keymap)p Ft(])e(-x)j Fj(keyseq:shell-command)
-870 2132 y Ft(bind)f([-m)g Fj(keymap)p Ft(])e Fj(keyseq:function-name)
-870 2242 y Ft(bind)i([-m)g Fj(keymap)p Ft(])e Fj
-(keyseq:readline-command)870 2351 y Ft(bind)i Fj(readline-command-line)
-630 2481 y Fu(Displa)m(y)22 b(curren)m(t)f(Readline)h(\(see)f(Chapter)g
-(8)g([Command)f(Line)h(Editing],)j(page)e(120\))g(k)m(ey)630
-2590 y(and)36 b(function)g(bindings,)i(bind)d(a)i(k)m(ey)g(sequence)g
-(to)h(a)f(Readline)g(function)f(or)h(macro,)630 2700
+2691 y(bind)g([-m)g Fj(keymap)p Ft(])e(-f)j Fj(filename)870
+2800 y Ft(bind)f([-m)g Fj(keymap)p Ft(])e(-x)j Fj(keyseq:shell-command)
+870 2910 y Ft(bind)f([-m)g Fj(keymap)p Ft(])e Fj(keyseq:function-name)
+870 3020 y Ft(bind)i([-m)g Fj(keymap)p Ft(])e Fj
+(keyseq:readline-command)870 3129 y Ft(bind)i Fj(readline-command-line)
+630 3259 y Fu(Displa)m(y)22 b(curren)m(t)f(Readline)h(\(see)f(Chapter)g
+(8)g([Command)f(Line)h(Editing],)j(page)e(121\))g(k)m(ey)630
+3368 y(and)36 b(function)g(bindings,)i(bind)d(a)i(k)m(ey)g(sequence)g
+(to)h(a)f(Readline)g(function)f(or)h(macro,)630 3478
 y(or)44 b(set)h(a)g(Readline)f(v)-5 b(ariable.)83 b(Eac)m(h)45
 b(non-option)g(argumen)m(t)f(is)g(a)h(command)f(as)g(it)630
-2809 y(w)m(ould)e(app)s(ear)f(in)h(a)h(Readline)g(initialization)i
+3587 y(w)m(ould)e(app)s(ear)f(in)h(a)h(Readline)g(initialization)i
 (\014le)d(\(see)h(Section)g(8.3)g([Readline)g(Init)630
-2919 y(File],)c(page)d(123\),)j(but)c(eac)m(h)h(binding)f(or)g(command)
-h(m)m(ust)f(b)s(e)g(passed)g(as)h(a)g(separate)630 3029
+3697 y(File],)c(page)d(124\),)j(but)c(eac)m(h)h(binding)f(or)g(command)
+h(m)m(ust)f(b)s(e)g(passed)g(as)h(a)g(separate)630 3807
 y(argumen)m(t;)31 b(e.g.,)h(`)p Ft("\\C-x\\C-r":re-read-init-f)o(ile)p
-Fu('.)630 3158 y(Options,)e(if)h(supplied,)e(ha)m(v)m(e)i(the)g(follo)m
-(wing)h(meanings:)630 3308 y Ft(-m)e Fj(keymap)66 b Fu(Use)54
+Fu('.)630 3936 y(Options,)e(if)h(supplied,)e(ha)m(v)m(e)i(the)g(follo)m
+(wing)h(meanings:)630 4085 y Ft(-m)e Fj(keymap)66 b Fu(Use)54
 b Fr(k)m(eymap)j Fu(as)d(the)g(k)m(eymap)g(to)h(b)s(e)e(a\013ected)i(b)
-m(y)f(the)g(subsequen)m(t)1110 3417 y(bindings.)46 b(Acceptable)34
+m(y)f(the)g(subsequen)m(t)1110 4195 y(bindings.)46 b(Acceptable)34
 b Fr(k)m(eymap)i Fu(names)c(are)h Ft(emacs)p Fu(,)f Ft(emacs-standard)p
-Fu(,)1110 3527 y Ft(emacs-meta)p Fu(,)99 b Ft(emacs-ctlx)p
+Fu(,)1110 4304 y Ft(emacs-meta)p Fu(,)99 b Ft(emacs-ctlx)p
 Fu(,)f Ft(vi)p Fu(,)j Ft(vi-move)p Fu(,)f Ft(vi-command)p
-Fu(,)f(and)1110 3636 y Ft(vi-insert)p Fu(.)81 b Ft(vi)44
+Fu(,)f(and)1110 4414 y Ft(vi-insert)p Fu(.)81 b Ft(vi)44
 b Fu(is)h(equiv)-5 b(alen)m(t)46 b(to)g Ft(vi-command)c
-Fu(\()p Ft(vi-move)h Fu(is)i(also)h(a)1110 3746 y(synon)m(ym\);)30
+Fu(\()p Ft(vi-move)h Fu(is)i(also)h(a)1110 4524 y(synon)m(ym\);)30
 b Ft(emacs)f Fu(is)i(equiv)-5 b(alen)m(t)32 b(to)f Ft(emacs-standard)p
-Fu(.)630 3895 y Ft(-l)384 b Fu(List)31 b(the)f(names)g(of)h(all)g
-(Readline)g(functions.)630 4045 y Ft(-p)384 b Fu(Displa)m(y)34
+Fu(.)630 4673 y Ft(-l)384 b Fu(List)31 b(the)f(names)g(of)h(all)g
+(Readline)g(functions.)630 4822 y Ft(-p)384 b Fu(Displa)m(y)34
 b(Readline)f(function)g(names)g(and)f(bindings)f(in)i(suc)m(h)f(a)i(w)m
-(a)m(y)f(that)1110 4154 y(they)e(can)f(b)s(e)g(used)g(as)g(input)g(or)g
-(in)g(a)h(Readline)g(initialization)i(\014le.)630 4304
+(a)m(y)f(that)1110 4932 y(they)e(can)f(b)s(e)g(used)g(as)g(input)g(or)g
+(in)g(a)h(Readline)g(initialization)i(\014le.)630 5081
 y Ft(-P)384 b Fu(List)31 b(curren)m(t)f(Readline)h(function)f(names)g
-(and)g(bindings.)630 4453 y Ft(-v)384 b Fu(Displa)m(y)25
+(and)g(bindings.)630 5230 y Ft(-v)384 b Fu(Displa)m(y)25
 b(Readline)f(v)-5 b(ariable)25 b(names)f(and)f(v)-5 b(alues)24
-b(in)g(suc)m(h)f(a)i(w)m(a)m(y)f(that)h(they)1110 4563
+b(in)g(suc)m(h)f(a)i(w)m(a)m(y)f(that)h(they)1110 5340
 y(can)31 b(b)s(e)e(used)h(as)h(input)e(or)h(in)g(a)h(Readline)g
-(initialization)j(\014le.)630 4712 y Ft(-V)384 b Fu(List)31
-b(curren)m(t)f(Readline)h(v)-5 b(ariable)31 b(names)f(and)g(v)-5
-b(alues.)630 4862 y Ft(-s)384 b Fu(Displa)m(y)39 b(Readline)f(k)m(ey)g
-(sequences)f(b)s(ound)f(to)i(macros)g(and)f(the)g(strings)1110
-4971 y(they)d(output)f(in)h(suc)m(h)f(a)h(w)m(a)m(y)h(that)f(they)g
-(can)g(b)s(e)f(used)g(as)h(input)e(or)i(in)g(a)1110 5081
-y(Readline)d(initialization)i(\014le.)630 5230 y Ft(-S)384
+(initialization)j(\014le.)p eop end
+%%Page: 58 64
+TeXDict begin 58 63 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(58)630 299 y Ft(-V)384
+b Fu(List)31 b(curren)m(t)f(Readline)h(v)-5 b(ariable)31
+b(names)f(and)g(v)-5 b(alues.)630 457 y Ft(-s)384 b Fu(Displa)m(y)39
+b(Readline)f(k)m(ey)g(sequences)f(b)s(ound)f(to)i(macros)g(and)f(the)g
+(strings)1110 567 y(they)d(output)f(in)h(suc)m(h)f(a)h(w)m(a)m(y)h
+(that)f(they)g(can)g(b)s(e)f(used)g(as)h(input)e(or)i(in)g(a)1110
+676 y(Readline)d(initialization)i(\014le.)630 835 y Ft(-S)384
 b Fu(Displa)m(y)39 b(Readline)f(k)m(ey)g(sequences)f(b)s(ound)f(to)i
-(macros)g(and)f(the)g(strings)1110 5340 y(they)31 b(output.)p
-eop end
-%%Page: 57 63
-TeXDict begin 57 62 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(57)630 299 y Ft(-f)30
-b Fj(filename)1110 408 y Fu(Read)h(k)m(ey)g(bindings)e(from)h
-Fr(\014lename)p Fu(.)630 571 y Ft(-q)g Fj(function)1110
-680 y Fu(Query)g(ab)s(out)g(whic)m(h)g(k)m(eys)h(in)m(v)m(ok)m(e)h(the)
-f(named)f Fr(function)p Fu(.)630 842 y Ft(-u)g Fj(function)1110
-952 y Fu(Un)m(bind)f(all)i(k)m(eys)g(b)s(ound)e(to)i(the)f(named)g
-Fr(function)p Fu(.)630 1114 y Ft(-r)g Fj(keyseq)66 b
-Fu(Remo)m(v)m(e)32 b(an)m(y)f(curren)m(t)f(binding)f(for)h
-Fr(k)m(eyseq)p Fu(.)630 1276 y Ft(-x)g Fj(keyseq:shell-command)1110
-1386 y Fu(Cause)35 b Fr(shell-command)k Fu(to)d(b)s(e)f(executed)h
+(macros)g(and)f(the)g(strings)1110 944 y(they)31 b(output.)630
+1103 y Ft(-f)f Fj(filename)1110 1212 y Fu(Read)h(k)m(ey)g(bindings)e
+(from)h Fr(\014lename)p Fu(.)630 1370 y Ft(-q)g Fj(function)1110
+1480 y Fu(Query)g(ab)s(out)g(whic)m(h)g(k)m(eys)h(in)m(v)m(ok)m(e)h
+(the)f(named)f Fr(function)p Fu(.)630 1638 y Ft(-u)g
+Fj(function)1110 1748 y Fu(Un)m(bind)f(all)i(k)m(eys)g(b)s(ound)e(to)i
+(the)f(named)g Fr(function)p Fu(.)630 1906 y Ft(-r)g
+Fj(keyseq)66 b Fu(Remo)m(v)m(e)32 b(an)m(y)f(curren)m(t)f(binding)f
+(for)h Fr(k)m(eyseq)p Fu(.)630 2064 y Ft(-x)g Fj(keyseq:shell-command)
+1110 2174 y Fu(Cause)35 b Fr(shell-command)k Fu(to)d(b)s(e)f(executed)h
 (whenev)m(er)f Fr(k)m(eyseq)j Fu(is)d(en)m(tered.)1110
-1496 y(When)46 b Fr(shell-command)k Fu(is)c(executed,)51
-b(the)46 b(shell)g(sets)g(the)g Ft(READLINE_)1110 1605
+2284 y(When)46 b Fr(shell-command)k Fu(is)c(executed,)51
+b(the)46 b(shell)g(sets)g(the)g Ft(READLINE_)1110 2393
 y(LINE)37 b Fu(v)-5 b(ariable)38 b(to)g(the)g(con)m(ten)m(ts)i(of)e
-(the)g(Readline)g(line)g(bu\013er)f(and)g(the)1110 1715
+(the)g(Readline)g(line)g(bu\013er)f(and)g(the)1110 2503
 y Ft(READLINE_POINT)d Fu(and)j Ft(READLINE_MARK)d Fu(v)-5
-b(ariables)39 b(to)f(the)g(curren)m(t)g(lo-)1110 1824
+b(ariables)39 b(to)f(the)g(curren)m(t)g(lo-)1110 2612
 y(cation)46 b(of)f(the)g(insertion)g(p)s(oin)m(t)f(and)g(the)h(sa)m(v)m
-(ed)h(insertion)f(p)s(oin)m(t)f(\(the)1110 1934 y Fr(mark)6
+(ed)h(insertion)f(p)s(oin)m(t)f(\(the)1110 2722 y Fr(mark)6
 b Fu(\),)38 b(resp)s(ectiv)m(ely)-8 b(.)62 b(The)36 b(shell)h(assigns)g
-(an)m(y)g(n)m(umeric)g(argumen)m(t)g(the)1110 2044 y(user)43
+(an)m(y)g(n)m(umeric)g(argumen)m(t)g(the)1110 2832 y(user)43
 b(supplied)g(to)h(the)g Ft(READLINE_ARGUMENT)39 b Fu(v)-5
-b(ariable.)82 b(If)44 b(there)g(w)m(as)1110 2153 y(no)39
+b(ariable.)82 b(If)44 b(there)g(w)m(as)1110 2941 y(no)39
 b(argumen)m(t,)j(that)d(v)-5 b(ariable)40 b(is)f(not)g(set.)68
-b(If)38 b(the)h(executed)h(command)1110 2263 y(c)m(hanges)e(the)e(v)-5
+b(If)38 b(the)h(executed)h(command)1110 3051 y(c)m(hanges)e(the)e(v)-5
 b(alue)37 b(of)g(an)m(y)g(of)g Ft(READLINE_LINE)p Fu(,)d
-Ft(READLINE_POINT)p Fu(,)h(or)1110 2372 y Ft(READLINE_MARK)p
+Ft(READLINE_POINT)p Fu(,)h(or)1110 3160 y Ft(READLINE_MARK)p
 Fu(,)i(those)i(new)f(v)-5 b(alues)38 b(will)h(b)s(e)f(re\015ected)h(in)
-f(the)g(editing)1110 2482 y(state.)630 2644 y Ft(-X)384
+f(the)g(editing)1110 3270 y(state.)630 3428 y Ft(-X)384
 b Fu(List)27 b(all)i(k)m(ey)f(sequences)f(b)s(ound)e(to)j(shell)g
-(commands)e(and)h(the)g(asso)s(ciated)1110 2754 y(commands)j(in)g(a)h
+(commands)e(and)h(the)g(asso)s(ciated)1110 3538 y(commands)j(in)g(a)h
 (format)g(that)f(can)h(b)s(e)f(reused)f(as)i(input.)630
-2916 y(The)26 b(return)f(status)i(is)f(zero)i(unless)d(an)i(in)m(v)-5
+3696 y(The)26 b(return)f(status)i(is)f(zero)i(unless)d(an)i(in)m(v)-5
 b(alid)27 b(option)g(is)f(supplied)f(or)i(an)f(error)g(o)s(ccurs.)150
-3078 y Ft(builtin)870 3214 y(builtin)46 b([)p Fj(shell-builtin)e
-Ft([)p Fj(args)p Ft(]])630 3350 y Fu(Run)35 b(a)i(shell)f(builtin,)i
+3854 y Ft(builtin)870 3988 y(builtin)46 b([)p Fj(shell-builtin)e
+Ft([)p Fj(args)p Ft(]])630 4122 y Fu(Run)35 b(a)i(shell)f(builtin,)i
 (passing)e(it)h Fr(args)p Fu(,)h(and)e(return)f(its)i(exit)g(status.)59
-b(This)35 b(is)i(useful)630 3459 y(when)29 b(de\014ning)h(a)g(shell)h
+b(This)35 b(is)i(useful)630 4232 y(when)29 b(de\014ning)h(a)g(shell)h
 (function)f(with)g(the)g(same)h(name)f(as)h(a)g(shell)f(builtin,)g
-(retaining)630 3569 y(the)k(functionalit)m(y)h(of)f(the)f(builtin)g
+(retaining)630 4341 y(the)k(functionalit)m(y)h(of)f(the)f(builtin)g
 (within)g(the)h(function.)50 b(The)33 b(return)g(status)h(is)f(non-)630
-3679 y(zero)e(if)g Fr(shell-builtin)f Fu(is)g(not)h(a)g(shell)f
-(builtin)g(command.)150 3841 y Ft(caller)870 3977 y(caller)46
-b([)p Fj(expr)p Ft(])630 4113 y Fu(Returns)34 b(the)g(con)m(text)j(of)e
+4451 y(zero)e(if)g Fr(shell-builtin)f Fu(is)g(not)h(a)g(shell)f
+(builtin)g(command.)150 4609 y Ft(caller)870 4743 y(caller)46
+b([)p Fj(expr)p Ft(])630 4877 y Fu(Returns)34 b(the)g(con)m(text)j(of)e
 (an)m(y)g(activ)m(e)i(subroutine)c(call)j(\(a)f(shell)g(function)f(or)h
-(a)g(script)630 4222 y(executed)c(with)f(the)h Ft(.)f
-Fu(or)g Ft(source)f Fu(builtins\).)630 4358 y(Without)45
+(a)g(script)630 4987 y(executed)c(with)f(the)h Ft(.)f
+Fu(or)g Ft(source)f Fu(builtins\).)630 5121 y(Without)45
 b Fr(expr)p Fu(,)j Ft(caller)43 b Fu(displa)m(ys)i(the)f(line)h(n)m(um)
-m(b)s(er)f(and)g(source)g(\014lename)h(of)g(the)630 4468
+m(b)s(er)f(and)g(source)g(\014lename)h(of)g(the)630 5230
 y(curren)m(t)35 b(subroutine)g(call.)58 b(If)35 b(a)h(non-negativ)m(e)i
 (in)m(teger)f(is)f(supplied)e(as)i Fr(expr)p Fu(,)h Ft(caller)630
-4577 y Fu(displa)m(ys)k(the)f(line)h(n)m(um)m(b)s(er,)h(subroutine)d
-(name,)44 b(and)c(source)g(\014le)h(corresp)s(onding)e(to)630
-4687 y(that)c(p)s(osition)g(in)f(the)h(curren)m(t)f(execution)i(call)g
-(stac)m(k.)54 b(This)34 b(extra)h(information)g(ma)m(y)630
-4796 y(b)s(e)30 b(used,)g(for)g(example,)h(to)g(prin)m(t)f(a)h(stac)m
-(k)h(trace.)42 b(The)29 b(curren)m(t)i(frame)f(is)g(frame)h(0.)630
-4932 y(The)d(return)g(v)-5 b(alue)29 b(is)g(0)g(unless)f(the)h(shell)g
-(is)g(not)g(executing)h(a)f(subroutine)e(call)j(or)f
-Fr(expr)630 5042 y Fu(do)s(es)h(not)h(corresp)s(ond)e(to)i(a)g(v)-5
+5340 y Fu(displa)m(ys)k(the)f(line)h(n)m(um)m(b)s(er,)h(subroutine)d
+(name,)44 b(and)c(source)g(\014le)h(corresp)s(onding)e(to)p
+eop end
+%%Page: 59 65
+TeXDict begin 59 64 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(59)630 299 y(that)35
+b(p)s(osition)g(in)f(the)h(curren)m(t)f(execution)i(call)g(stac)m(k.)54
+b(This)34 b(extra)h(information)g(ma)m(y)630 408 y(b)s(e)30
+b(used,)g(for)g(example,)h(to)g(prin)m(t)f(a)h(stac)m(k)h(trace.)42
+b(The)29 b(curren)m(t)i(frame)f(is)g(frame)h(0.)630 539
+y(The)d(return)g(v)-5 b(alue)29 b(is)g(0)g(unless)f(the)h(shell)g(is)g
+(not)g(executing)h(a)f(subroutine)e(call)j(or)f Fr(expr)630
+648 y Fu(do)s(es)h(not)h(corresp)s(ond)e(to)i(a)g(v)-5
 b(alid)30 b(p)s(osition)h(in)f(the)g(call)i(stac)m(k.)150
-5204 y Ft(command)870 5340 y(command)46 b([-pVv])g Fj(command)g
-Ft([)p Fj(arguments)f Ft(...)o(])p eop end
-%%Page: 58 64
-TeXDict begin 58 63 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(58)630 299 y(Runs)32
+799 y Ft(command)870 929 y(command)46 b([-pVv])g Fj(command)g
+Ft([)p Fj(arguments)f Ft(...)o(])630 1059 y Fu(Runs)32
 b Fr(command)k Fu(with)d Fr(argumen)m(ts)k Fu(ignoring)c(an)m(y)g
-(shell)h(function)e(named)h Fr(command)p Fu(.)630 408
+(shell)h(function)e(named)h Fr(command)p Fu(.)630 1169
 y(Only)39 b(shell)i(builtin)e(commands)h(or)g(commands)f(found)g(b)m(y)
-h(searc)m(hing)h(the)f Ft(PATH)f Fu(are)630 518 y(executed.)59
+h(searc)m(hing)h(the)f Ft(PATH)f Fu(are)630 1278 y(executed.)59
 b(If)36 b(there)h(is)f(a)h(shell)f(function)g(named)g
 Ft(ls)p Fu(,)h(running)e(`)p Ft(command)29 b(ls)p Fu(')35
-b(within)630 628 y(the)c(function)f(will)h(execute)g(the)g(external)g
+b(within)630 1388 y(the)c(function)f(will)h(execute)g(the)g(external)g
 (command)g Ft(ls)f Fu(instead)g(of)h(calling)h(the)f(func-)630
-737 y(tion)36 b(recursiv)m(ely)-8 b(.)56 b(The)34 b Ft(-p)h
-Fu(option)g(means)g(to)h(use)f(a)g(default)h(v)-5 b(alue)35
-b(for)g Ft(PATH)f Fu(that)i(is)630 847 y(guaran)m(teed)f(to)f(\014nd)e
-(all)j(of)f(the)g(standard)f(utilities.)52 b(The)33 b(return)g(status)h
-(in)f(this)h(case)630 956 y(is)29 b(127)g(if)g Fr(command)j
-Fu(cannot)d(b)s(e)e(found)h(or)g(an)g(error)h(o)s(ccurred,)f(and)g(the)
-h(exit)g(status)g(of)630 1066 y Fr(command)34 b Fu(otherwise.)630
-1201 y(If)e(either)h(the)f Ft(-V)g Fu(or)g Ft(-v)g Fu(option)h(is)f
-(supplied,)g(a)h(description)f(of)h Fr(command)j Fu(is)c(prin)m(ted.)
-630 1311 y(The)f Ft(-v)h Fu(option)g(causes)g(a)g(single)h(w)m(ord)f
-(indicating)g(the)g(command)g(or)g(\014le)g(name)g(used)630
-1421 y(to)40 b(in)m(v)m(ok)m(e)h Fr(command)h Fu(to)e(b)s(e)e(displa)m
-(y)m(ed;)44 b(the)39 b Ft(-V)f Fu(option)i(pro)s(duces)d(a)j(more)f(v)m
-(erb)s(ose)630 1530 y(description.)61 b(In)36 b(this)h(case,)j(the)e
-(return)e(status)h(is)g(zero)h(if)f Fr(command)k Fu(is)c(found,)h(and)
-630 1640 y(non-zero)31 b(if)f(not.)150 1801 y Ft(declare)870
-1936 y(declare)46 b([-aAfFgiIlnrtux])d([-p])k([)p Fj(name)p
-Ft([=)p Fj(value)p Ft(])d(...)o(])630 2072 y Fu(Declare)29
+1498 y(tion)36 b(recursiv)m(ely)-8 b(.)56 b(The)34 b
+Ft(-p)h Fu(option)g(means)g(to)h(use)f(a)g(default)h(v)-5
+b(alue)35 b(for)g Ft(PATH)f Fu(that)i(is)630 1607 y(guaran)m(teed)f(to)
+f(\014nd)e(all)j(of)f(the)g(standard)f(utilities.)52
+b(The)33 b(return)g(status)h(in)f(this)h(case)630 1717
+y(is)29 b(127)g(if)g Fr(command)j Fu(cannot)d(b)s(e)e(found)h(or)g(an)g
+(error)h(o)s(ccurred,)f(and)g(the)h(exit)g(status)g(of)630
+1826 y Fr(command)34 b Fu(otherwise.)630 1956 y(If)e(either)h(the)f
+Ft(-V)g Fu(or)g Ft(-v)g Fu(option)h(is)f(supplied,)g(a)h(description)f
+(of)h Fr(command)j Fu(is)c(prin)m(ted.)630 2066 y(The)f
+Ft(-v)h Fu(option)g(causes)g(a)g(single)h(w)m(ord)f(indicating)g(the)g
+(command)g(or)g(\014le)g(name)g(used)630 2176 y(to)40
+b(in)m(v)m(ok)m(e)h Fr(command)h Fu(to)e(b)s(e)e(displa)m(y)m(ed;)44
+b(the)39 b Ft(-V)f Fu(option)i(pro)s(duces)d(a)j(more)f(v)m(erb)s(ose)
+630 2285 y(description.)61 b(In)36 b(this)h(case,)j(the)e(return)e
+(status)h(is)g(zero)h(if)f Fr(command)k Fu(is)c(found,)h(and)630
+2395 y(non-zero)31 b(if)f(not.)150 2545 y Ft(declare)870
+2676 y(declare)46 b([-aAfFgiIlnrtux])d([-p])k([)p Fj(name)p
+Ft([=)p Fj(value)p Ft(])d(...)o(])630 2806 y Fu(Declare)29
 b(v)-5 b(ariables)28 b(and)e(giv)m(e)j(them)e(attributes.)40
 b(If)27 b(no)g Fr(name)5 b Fu(s)27 b(are)h(giv)m(en,)h(then)e(displa)m
-(y)630 2181 y(the)k(v)-5 b(alues)30 b(of)h(v)-5 b(ariables)31
-b(instead.)630 2317 y(The)k Ft(-p)f Fu(option)i(will)g(displa)m(y)f
+(y)630 2915 y(the)k(v)-5 b(alues)30 b(of)h(v)-5 b(ariables)31
+b(instead.)630 3045 y(The)k Ft(-p)f Fu(option)i(will)g(displa)m(y)f
 (the)h(attributes)g(and)e(v)-5 b(alues)36 b(of)f(eac)m(h)i
-Fr(name)p Fu(.)55 b(When)36 b Ft(-p)630 2426 y Fu(is)i(used)g(with)g
+Fr(name)p Fu(.)55 b(When)36 b Ft(-p)630 3155 y Fu(is)i(used)g(with)g
 Fr(name)43 b Fu(argumen)m(ts,)e(additional)e(options,)i(other)d(than)g
-Ft(-f)g Fu(and)g Ft(-F)p Fu(,)i(are)630 2536 y(ignored.)630
-2671 y(When)g Ft(-p)g Fu(is)g(supplied)f(without)i Fr(name)k
+Ft(-f)g Fu(and)g Ft(-F)p Fu(,)i(are)630 3265 y(ignored.)630
+3395 y(When)g Ft(-p)g Fu(is)g(supplied)f(without)i Fr(name)k
 Fu(argumen)m(ts,)f Ft(declare)38 b Fu(will)j(displa)m(y)f(the)h(at-)630
-2781 y(tributes)31 b(and)f(v)-5 b(alues)31 b(of)g(all)h(v)-5
+3504 y(tributes)31 b(and)f(v)-5 b(alues)31 b(of)g(all)h(v)-5
 b(ariables)31 b(ha)m(ving)h(the)f(attributes)g(sp)s(eci\014ed)f(b)m(y)h
-(the)g(addi-)630 2890 y(tional)k(options.)52 b(If)34
+(the)g(addi-)630 3614 y(tional)k(options.)52 b(If)34
 b(no)g(other)g(options)g(are)g(supplied)f(with)h Ft(-p)p
-Fu(,)g Ft(declare)e Fu(will)j(displa)m(y)630 3000 y(the)e(attributes)h
+Fu(,)g Ft(declare)e Fu(will)j(displa)m(y)630 3724 y(the)e(attributes)h
 (and)e(v)-5 b(alues)33 b(of)g(all)h(shell)f(v)-5 b(ariables.)50
 b(The)32 b Ft(-f)g Fu(option)i(will)f(restrict)h(the)630
-3110 y(displa)m(y)d(to)g(shell)f(functions.)630 3245
+3833 y(displa)m(y)d(to)g(shell)f(functions.)630 3963
 y(The)41 b Ft(-F)f Fu(option)i(inhibits)e(the)i(displa)m(y)f(of)g
 (function)g(de\014nitions;)47 b(only)41 b(the)g(function)630
-3354 y(name)30 b(and)f(attributes)i(are)f(prin)m(ted.)40
+4073 y(name)30 b(and)f(attributes)i(are)f(prin)m(ted.)40
 b(If)30 b(the)g Ft(extdebug)e Fu(shell)i(option)g(is)g(enabled)g(using)
-630 3464 y Ft(shopt)24 b Fu(\(see)i(Section)g(4.3.2)i([The)d(Shopt)f
-(Builtin],)k(page)e(71\),)i(the)d(source)h(\014le)f(name)h(and)630
-3574 y(line)31 b(n)m(um)m(b)s(er)e(where)h(eac)m(h)h
+630 4182 y Ft(shopt)24 b Fu(\(see)i(Section)g(4.3.2)i([The)d(Shopt)f
+(Builtin],)k(page)e(72\),)i(the)d(source)h(\014le)f(name)h(and)630
+4292 y(line)31 b(n)m(um)m(b)s(er)e(where)h(eac)m(h)h
 Fr(name)36 b Fu(is)30 b(de\014ned)f(are)i(displa)m(y)m(ed)g(as)g(w)m
-(ell.)41 b Ft(-F)30 b Fu(implies)h Ft(-f)p Fu(.)630 3709
+(ell.)41 b Ft(-F)30 b Fu(implies)h Ft(-f)p Fu(.)630 4422
 y(The)36 b Ft(-g)g Fu(option)h(forces)g(v)-5 b(ariables)37
 b(to)g(b)s(e)f(created)i(or)e(mo)s(di\014ed)g(at)h(the)g(global)h(scop)
-s(e,)630 3819 y(ev)m(en)g(when)e Ft(declare)f Fu(is)j(executed)g(in)f
+s(e,)630 4532 y(ev)m(en)g(when)e Ft(declare)f Fu(is)j(executed)g(in)f
 (a)g(shell)h(function.)61 b(It)37 b(is)g(ignored)h(in)f(all)h(other)630
-3928 y(cases.)630 4064 y(The)50 b Ft(-I)h Fu(option)g(causes)h(lo)s
+4641 y(cases.)630 4771 y(The)50 b Ft(-I)h Fu(option)g(causes)h(lo)s
 (cal)g(v)-5 b(ariables)51 b(to)h(inherit)f(the)g(attributes)g(\(except)
-i(the)630 4173 y Ft(nameref)43 b Fu(attribute\))j(and)f(v)-5
+i(the)630 4881 y Ft(nameref)43 b Fu(attribute\))j(and)f(v)-5
 b(alue)46 b(of)f(an)m(y)h(existing)g(v)-5 b(ariable)46
-b(with)f(the)g(same)h Fr(name)630 4283 y Fu(at)40 b(a)f(surrounding)d
+b(with)f(the)g(same)h Fr(name)630 4991 y Fu(at)40 b(a)f(surrounding)d
 (scop)s(e.)66 b(If)39 b(there)g(is)g(no)f(existing)i(v)-5
 b(ariable,)42 b(the)d(lo)s(cal)h(v)-5 b(ariable)40 b(is)630
-4392 y(initially)32 b(unset.)630 4528 y(The)27 b(follo)m(wing)h
+5100 y(initially)32 b(unset.)630 5230 y(The)27 b(follo)m(wing)h
 (options)g(can)f(b)s(e)g(used)f(to)i(restrict)g(output)e(to)i(v)-5
-b(ariables)28 b(with)f(the)g(sp)s(ec-)630 4637 y(i\014ed)j(attributes)h
-(or)f(to)h(giv)m(e)h(v)-5 b(ariables)31 b(attributes:)630
-4798 y Ft(-a)384 b Fu(Eac)m(h)36 b Fr(name)k Fu(is)34
-b(an)h(indexed)g(arra)m(y)g(v)-5 b(ariable)36 b(\(see)f(Section)h(6.7)g
-([Arra)m(ys],)1110 4908 y(page)31 b(101\).)630 5069 y
-Ft(-A)384 b Fu(Eac)m(h)24 b Fr(name)k Fu(is)23 b(an)g(asso)s(ciativ)m
-(e)j(arra)m(y)e(v)-5 b(ariable)24 b(\(see)g(Section)g(6.7)g([Arra)m
-(ys],)1110 5179 y(page)31 b(101\).)630 5340 y Ft(-f)384
-b Fu(Use)31 b(function)f(names)g(only)-8 b(.)p eop end
-%%Page: 59 65
-TeXDict begin 59 64 bop 150 -116 a Fu(Chapter)30 b(4:)h(Shell)f
-(Builtin)h(Commands)2079 b(59)630 299 y Ft(-i)384 b Fu(The)36
-b(v)-5 b(ariable)37 b(is)f(to)h(b)s(e)f(treated)h(as)g(an)f(in)m
-(teger;)41 b(arithmetic)c(ev)-5 b(aluation)1110 408 y(\(see)29
-b(Section)f(6.5)h([Shell)f(Arithmetic],)i(page)e(99\))h(is)f(p)s
-(erformed)e(when)h(the)1110 518 y(v)-5 b(ariable)31 b(is)g(assigned)f
-(a)h(v)-5 b(alue.)630 682 y Ft(-l)384 b Fu(When)26 b(the)g(v)-5
-b(ariable)27 b(is)f(assigned)g(a)g(v)-5 b(alue,)28 b(all)f(upp)s
-(er-case)e(c)m(haracters)j(are)1110 792 y(con)m(v)m(erted)k(to)f(lo)m
-(w)m(er-case.)43 b(The)30 b(upp)s(er-case)g(attribute)h(is)g(disabled.)
-630 956 y Ft(-n)384 b Fu(Giv)m(e)28 b(eac)m(h)g Fr(name)k
+b(ariables)28 b(with)f(the)g(sp)s(ec-)630 5340 y(i\014ed)j(attributes)h
+(or)f(to)h(giv)m(e)h(v)-5 b(ariables)31 b(attributes:)p
+eop end
+%%Page: 60 66
+TeXDict begin 60 65 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(60)630 299 y Ft(-a)384
+b Fu(Eac)m(h)36 b Fr(name)k Fu(is)34 b(an)h(indexed)g(arra)m(y)g(v)-5
+b(ariable)36 b(\(see)f(Section)h(6.7)g([Arra)m(ys],)1110
+408 y(page)31 b(102\).)630 562 y Ft(-A)384 b Fu(Eac)m(h)24
+b Fr(name)k Fu(is)23 b(an)g(asso)s(ciativ)m(e)j(arra)m(y)e(v)-5
+b(ariable)24 b(\(see)g(Section)g(6.7)g([Arra)m(ys],)1110
+671 y(page)31 b(102\).)630 825 y Ft(-f)384 b Fu(Use)31
+b(function)f(names)g(only)-8 b(.)630 978 y Ft(-i)384
+b Fu(The)36 b(v)-5 b(ariable)37 b(is)f(to)h(b)s(e)f(treated)h(as)g(an)f
+(in)m(teger;)41 b(arithmetic)c(ev)-5 b(aluation)1110
+1088 y(\(see)41 b(Section)f(6.5)h([Shell)e(Arithmetic],)44
+b(page)c(100\))h(is)f(p)s(erformed)e(when)1110 1198 y(the)31
+b(v)-5 b(ariable)31 b(is)f(assigned)h(a)f(v)-5 b(alue.)630
+1351 y Ft(-l)384 b Fu(When)26 b(the)g(v)-5 b(ariable)27
+b(is)f(assigned)g(a)g(v)-5 b(alue,)28 b(all)f(upp)s(er-case)e(c)m
+(haracters)j(are)1110 1461 y(con)m(v)m(erted)k(to)f(lo)m(w)m(er-case.)
+43 b(The)30 b(upp)s(er-case)g(attribute)h(is)g(disabled.)630
+1614 y Ft(-n)384 b Fu(Giv)m(e)28 b(eac)m(h)g Fr(name)k
 Fu(the)27 b Ft(nameref)d Fu(attribute,)29 b(making)e(it)g(a)g(name)f
-(reference)1110 1066 y(to)32 b(another)g(v)-5 b(ariable.)46
+(reference)1110 1724 y(to)32 b(another)g(v)-5 b(ariable.)46
 b(That)31 b(other)h(v)-5 b(ariable)33 b(is)f(de\014ned)e(b)m(y)i(the)g
-(v)-5 b(alue)32 b(of)1110 1176 y Fr(name)p Fu(.)54 b(All)35
+(v)-5 b(alue)32 b(of)1110 1833 y Fr(name)p Fu(.)54 b(All)35
 b(references,)h(assignmen)m(ts,)h(and)d(attribute)h(mo)s(di\014cations)
-g(to)1110 1285 y Fr(name)p Fu(,)27 b(except)f(for)f(those)h(using)f(or)
+g(to)1110 1943 y Fr(name)p Fu(,)27 b(except)f(for)f(those)h(using)f(or)
 g(c)m(hanging)h(the)f Ft(-n)g Fu(attribute)h(itself,)i(are)1110
-1395 y(p)s(erformed)22 b(on)h(the)g(v)-5 b(ariable)25
+2052 y(p)s(erformed)22 b(on)h(the)g(v)-5 b(ariable)25
 b(referenced)e(b)m(y)g Fr(name)5 b Fu('s)23 b(v)-5 b(alue.)39
-b(The)23 b(nameref)1110 1504 y(attribute)31 b(cannot)g(b)s(e)f(applied)
-g(to)h(arra)m(y)g(v)-5 b(ariables.)630 1669 y Ft(-r)384
+b(The)23 b(nameref)1110 2162 y(attribute)31 b(cannot)g(b)s(e)f(applied)
+g(to)h(arra)m(y)g(v)-5 b(ariables.)630 2315 y Ft(-r)384
 b Fu(Mak)m(e)25 b Fr(name)5 b Fu(s)23 b(readonly)-8 b(.)39
 b(These)24 b(names)f(cannot)h(then)f(b)s(e)g(assigned)h(v)-5
-b(alues)1110 1778 y(b)m(y)30 b(subsequen)m(t)g(assignmen)m(t)h
-(statemen)m(ts)h(or)f(unset.)630 1943 y Ft(-t)384 b Fu(Giv)m(e)33
+b(alues)1110 2425 y(b)m(y)30 b(subsequen)m(t)g(assignmen)m(t)h
+(statemen)m(ts)h(or)f(unset.)630 2578 y Ft(-t)384 b Fu(Giv)m(e)33
 b(eac)m(h)h Fr(name)j Fu(the)32 b Ft(trace)f Fu(attribute.)46
-b(T)-8 b(raced)32 b(functions)g(inherit)g(the)1110 2052
+b(T)-8 b(raced)32 b(functions)g(inherit)g(the)1110 2688
 y Ft(DEBUG)26 b Fu(and)h Ft(RETURN)f Fu(traps)h(from)g(the)h(calling)h
-(shell.)40 b(The)27 b(trace)i(attribute)1110 2162 y(has)h(no)g(sp)s
-(ecial)h(meaning)g(for)f(v)-5 b(ariables.)630 2326 y
+(shell.)40 b(The)27 b(trace)i(attribute)1110 2798 y(has)h(no)g(sp)s
+(ecial)h(meaning)g(for)f(v)-5 b(ariables.)630 2951 y
 Ft(-u)384 b Fu(When)28 b(the)h(v)-5 b(ariable)29 b(is)f(assigned)h(a)f
 (v)-5 b(alue,)30 b(all)f(lo)m(w)m(er-case)i(c)m(haracters)f(are)1110
-2436 y(con)m(v)m(erted)i(to)f(upp)s(er-case.)40 b(The)30
-b(lo)m(w)m(er-case)j(attribute)e(is)g(disabled.)630 2600
+3061 y(con)m(v)m(erted)i(to)f(upp)s(er-case.)40 b(The)30
+b(lo)m(w)m(er-case)j(attribute)e(is)g(disabled.)630 3214
 y Ft(-x)384 b Fu(Mark)30 b(eac)m(h)h Fr(name)k Fu(for)29
 b(exp)s(ort)h(to)g(subsequen)m(t)f(commands)h(via)g(the)g(en)m(vi-)1110
-2710 y(ronmen)m(t.)630 2874 y(Using)e(`)p Ft(+)p Fu(')h(instead)f(of)g
+3324 y(ronmen)m(t.)630 3477 y(Using)e(`)p Ft(+)p Fu(')h(instead)f(of)g
 (`)p Ft(-)p Fu(')g(turns)f(o\013)i(the)f(attribute)h(instead,)g(with)f
-(the)g(exceptions)h(that)630 2984 y(`)p Ft(+a)p Fu(')23
+(the)g(exceptions)h(that)630 3587 y(`)p Ft(+a)p Fu(')23
 b(and)f(`)p Ft(+A)p Fu(')h(ma)m(y)h(not)f(b)s(e)f(used)g(to)i(destro)m
 (y)g(arra)m(y)f(v)-5 b(ariables)24 b(and)e(`)p Ft(+r)p
-Fu(')h(will)g(not)g(remo)m(v)m(e)630 3093 y(the)36 b(readonly)h
+Fu(')h(will)g(not)g(remo)m(v)m(e)630 3696 y(the)36 b(readonly)h
 (attribute.)59 b(When)36 b(used)f(in)h(a)h(function,)g
-Ft(declare)d Fu(mak)m(es)j(eac)m(h)h Fr(name)630 3203
+Ft(declare)d Fu(mak)m(es)j(eac)m(h)h Fr(name)630 3806
 y Fu(lo)s(cal,)e(as)d(with)h(the)f Ft(local)f Fu(command,)j(unless)d
 (the)i Ft(-g)f Fu(option)h(is)f(used.)49 b(If)33 b(a)h(v)-5
-b(ariable)630 3313 y(name)30 b(is)h(follo)m(w)m(ed)h(b)m(y)e(=)p
+b(ariable)630 3915 y(name)30 b(is)h(follo)m(w)m(ed)h(b)m(y)e(=)p
 Fr(v)-5 b(alue)p Fu(,)31 b(the)f(v)-5 b(alue)31 b(of)g(the)f(v)-5
 b(ariable)32 b(is)e(set)h(to)g Fr(v)-5 b(alue)p Fu(.)630
-3450 y(When)41 b(using)g Ft(-a)g Fu(or)h Ft(-A)e Fu(and)h(the)h(comp)s
+4047 y(When)41 b(using)g Ft(-a)g Fu(or)h Ft(-A)e Fu(and)h(the)h(comp)s
 (ound)e(assignmen)m(t)i(syn)m(tax)g(to)g(create)h(arra)m(y)630
-3559 y(v)-5 b(ariables,)28 b(additional)f(attributes)g(do)f(not)h(tak)m
+4156 y(v)-5 b(ariables,)28 b(additional)f(attributes)g(do)f(not)h(tak)m
 (e)h(e\013ect)g(un)m(til)e(subsequen)m(t)g(assignmen)m(ts.)630
-3696 y(The)35 b(return)f(status)i(is)g(zero)g(unless)f(an)g(in)m(v)-5
+4288 y(The)35 b(return)f(status)i(is)g(zero)g(unless)f(an)g(in)m(v)-5
 b(alid)36 b(option)g(is)g(encoun)m(tered,)h(an)f(attempt)630
-3806 y(is)c(made)g(to)g(de\014ne)f(a)h(function)g(using)f(`)p
+4398 y(is)c(made)g(to)g(de\014ne)f(a)h(function)g(using)f(`)p
 Ft(-f)f(foo=bar)p Fu(',)h(an)h(attempt)g(is)g(made)g(to)h(assign)630
-3915 y(a)42 b(v)-5 b(alue)43 b(to)g(a)f(readonly)g(v)-5
+4507 y(a)42 b(v)-5 b(alue)43 b(to)g(a)f(readonly)g(v)-5
 b(ariable,)47 b(an)42 b(attempt)h(is)f(made)g(to)h(assign)f(a)h(v)-5
-b(alue)42 b(to)h(an)630 4025 y(arra)m(y)30 b(v)-5 b(ariable)30
+b(alue)42 b(to)h(an)630 4617 y(arra)m(y)30 b(v)-5 b(ariable)30
 b(without)g(using)e(the)i(comp)s(ound)e(assignmen)m(t)i(syn)m(tax)g
-(\(see)h(Section)f(6.7)630 4134 y([Arra)m(ys],)43 b(page)d(101\),)k
+(\(see)h(Section)f(6.7)630 4726 y([Arra)m(ys],)43 b(page)d(102\),)k
 (one)c(of)g(the)g Fr(name)5 b Fu(s)40 b(is)f(not)h(a)g(v)-5
 b(alid)40 b(shell)g(v)-5 b(ariable)41 b(name,)h(an)630
-4244 y(attempt)28 b(is)f(made)h(to)f(turn)f(o\013)i(readonly)f(status)g
+4836 y(attempt)28 b(is)f(made)h(to)f(turn)f(o\013)i(readonly)f(status)g
 (for)g(a)h(readonly)f(v)-5 b(ariable,)29 b(an)e(attempt)630
-4354 y(is)h(made)h(to)g(turn)e(o\013)i(arra)m(y)f(status)h(for)f(an)g
+4945 y(is)h(made)h(to)g(turn)e(o\013)i(arra)m(y)f(status)h(for)f(an)g
 (arra)m(y)h(v)-5 b(ariable,)30 b(or)e(an)g(attempt)i(is)e(made)g(to)630
-4463 y(displa)m(y)j(a)f(non-existen)m(t)i(function)e(with)g
-Ft(-f)p Fu(.)150 4628 y Ft(echo)870 4765 y(echo)47 b([-neE])f([)p
-Fj(arg)g Ft(...])630 4902 y Fu(Output)31 b(the)i Fr(arg)8
-b Fu(s,)33 b(separated)g(b)m(y)g(spaces,)g(terminated)g(with)f(a)h
-(newline.)47 b(The)32 b(return)630 5011 y(status)f(is)f(0)h(unless)f(a)
-h(write)g(error)f(o)s(ccurs.)41 b(If)30 b Ft(-n)g Fu(is)h(sp)s
-(eci\014ed,)f(the)h(trailing)g(newline)g(is)630 5121
-y(suppressed.)38 b(If)29 b(the)h Ft(-e)f Fu(option)h(is)f(giv)m(en,)i
-(in)m(terpretation)g(of)e(the)h(follo)m(wing)h(bac)m(kslash-)630
-5230 y(escap)s(ed)43 b(c)m(haracters)h(is)e(enabled.)78
+5055 y(displa)m(y)j(a)f(non-existen)m(t)i(function)e(with)g
+Ft(-f)p Fu(.)150 5208 y Ft(echo)870 5340 y(echo)47 b([-neE])f([)p
+Fj(arg)g Ft(...])p eop end
+%%Page: 61 67
+TeXDict begin 61 66 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(61)630 299 y(Output)31
+b(the)i Fr(arg)8 b Fu(s,)33 b(separated)g(b)m(y)g(spaces,)g(terminated)
+g(with)f(a)h(newline.)47 b(The)32 b(return)630 408 y(status)f(is)f(0)h
+(unless)f(a)h(write)g(error)f(o)s(ccurs.)41 b(If)30 b
+Ft(-n)g Fu(is)h(sp)s(eci\014ed,)f(the)h(trailing)g(newline)g(is)630
+518 y(suppressed.)38 b(If)29 b(the)h Ft(-e)f Fu(option)h(is)f(giv)m
+(en,)i(in)m(terpretation)g(of)e(the)h(follo)m(wing)h(bac)m(kslash-)630
+628 y(escap)s(ed)43 b(c)m(haracters)h(is)e(enabled.)78
 b(The)42 b Ft(-E)g Fu(option)h(disables)g(the)g(in)m(terpretation)h(of)
-630 5340 y(these)27 b(escap)s(e)g(c)m(haracters,)i(ev)m(en)e(on)g
-(systems)f(where)g(they)h(are)g(in)m(terpreted)g(b)m(y)f(default.)p
-eop end
-%%Page: 60 66
-TeXDict begin 60 65 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(60)630 299 y(The)32
-b Ft(xpg_echo)f Fu(shell)i(option)g(ma)m(y)h(b)s(e)e(used)g(to)h
-(dynamically)h(determine)f(whether)f(or)630 408 y(not)h
-Ft(echo)f Fu(expands)g(these)h(escap)s(e)h(c)m(haracters)g(b)m(y)f
-(default.)48 b Ft(echo)32 b Fu(do)s(es)g(not)i(in)m(terpret)630
-518 y Ft(--)c Fu(to)h(mean)f(the)h(end)f(of)g(options.)630
-653 y Ft(echo)f Fu(in)m(terprets)i(the)f(follo)m(wing)i(escap)s(e)f
-(sequences:)630 812 y Ft(\\a)384 b Fu(alert)31 b(\(b)s(ell\))630
-972 y Ft(\\b)384 b Fu(bac)m(kspace)630 1132 y Ft(\\c)g
-Fu(suppress)28 b(further)h(output)630 1291 y Ft(\\e)630
-1401 y(\\E)384 b Fu(escap)s(e)630 1561 y Ft(\\f)g Fu(form)30
-b(feed)630 1720 y Ft(\\n)384 b Fu(new)30 b(line)630 1880
-y Ft(\\r)384 b Fu(carriage)32 b(return)630 2040 y Ft(\\t)384
-b Fu(horizon)m(tal)32 b(tab)630 2199 y Ft(\\v)384 b Fu(v)m(ertical)32
-b(tab)630 2359 y Ft(\\\\)384 b Fu(bac)m(kslash)630 2519
+630 737 y(these)27 b(escap)s(e)g(c)m(haracters,)i(ev)m(en)e(on)g
+(systems)f(where)g(they)h(are)g(in)m(terpreted)g(b)m(y)f(default.)630
+847 y(The)32 b Ft(xpg_echo)f Fu(shell)i(option)g(ma)m(y)h(b)s(e)e(used)
+g(to)h(dynamically)h(determine)f(whether)f(or)630 956
+y(not)h Ft(echo)f Fu(expands)g(these)h(escap)s(e)h(c)m(haracters)g(b)m
+(y)f(default.)48 b Ft(echo)32 b Fu(do)s(es)g(not)i(in)m(terpret)630
+1066 y Ft(--)c Fu(to)h(mean)f(the)h(end)f(of)g(options.)630
+1201 y Ft(echo)f Fu(in)m(terprets)i(the)f(follo)m(wing)i(escap)s(e)f
+(sequences:)630 1363 y Ft(\\a)384 b Fu(alert)31 b(\(b)s(ell\))630
+1524 y Ft(\\b)384 b Fu(bac)m(kspace)630 1685 y Ft(\\c)g
+Fu(suppress)28 b(further)h(output)630 1846 y Ft(\\e)630
+1956 y(\\E)384 b Fu(escap)s(e)630 2117 y Ft(\\f)g Fu(form)30
+b(feed)630 2278 y Ft(\\n)384 b Fu(new)30 b(line)630 2439
+y Ft(\\r)384 b Fu(carriage)32 b(return)630 2600 y Ft(\\t)384
+b Fu(horizon)m(tal)32 b(tab)630 2761 y Ft(\\v)384 b Fu(v)m(ertical)32
+b(tab)630 2923 y Ft(\\\\)384 b Fu(bac)m(kslash)630 3084
 y Ft(\\0)p Fj(nnn)240 b Fu(the)32 b(eigh)m(t-bit)i(c)m(haracter)g
 (whose)e(v)-5 b(alue)33 b(is)f(the)g(o)s(ctal)i(v)-5
-b(alue)32 b Fr(nnn)f Fu(\(zero)i(to)1110 2628 y(three)e(o)s(ctal)g
-(digits\))630 2788 y Ft(\\x)p Fj(HH)288 b Fu(the)38 b(eigh)m(t-bit)i(c)
+b(alue)32 b Fr(nnn)f Fu(\(zero)i(to)1110 3193 y(three)e(o)s(ctal)g
+(digits\))630 3354 y Ft(\\x)p Fj(HH)288 b Fu(the)38 b(eigh)m(t-bit)i(c)
 m(haracter)g(whose)e(v)-5 b(alue)39 b(is)f(the)h(hexadecimal)g(v)-5
-b(alue)39 b Fr(HH)1110 2898 y Fu(\(one)31 b(or)f(t)m(w)m(o)i(hex)e
-(digits\))630 3057 y Ft(\\u)p Fj(HHHH)192 b Fu(the)41
+b(alue)39 b Fr(HH)1110 3464 y Fu(\(one)31 b(or)f(t)m(w)m(o)i(hex)e
+(digits\))630 3625 y Ft(\\u)p Fj(HHHH)192 b Fu(the)41
 b(Unico)s(de)g(\(ISO/IEC)f(10646\))j(c)m(haracter)g(whose)e(v)-5
-b(alue)41 b(is)g(the)g(hex-)1110 3167 y(adecimal)32 b(v)-5
+b(alue)41 b(is)g(the)g(hex-)1110 3735 y(adecimal)32 b(v)-5
 b(alue)31 b Fr(HHHH)41 b Fu(\(one)31 b(to)g(four)e(hex)h(digits\))630
-3327 y Ft(\\U)p Fj(HHHHHHHH)1110 3436 y Fu(the)41 b(Unico)s(de)g
+3896 y Ft(\\U)p Fj(HHHHHHHH)1110 4006 y Fu(the)41 b(Unico)s(de)g
 (\(ISO/IEC)f(10646\))j(c)m(haracter)g(whose)e(v)-5 b(alue)41
-b(is)g(the)g(hex-)1110 3546 y(adecimal)32 b(v)-5 b(alue)31
+b(is)g(the)g(hex-)1110 4115 y(adecimal)32 b(v)-5 b(alue)31
 b Fr(HHHHHHHH)41 b Fu(\(one)31 b(to)g(eigh)m(t)h(hex)e(digits\))150
-3706 y Ft(enable)870 3840 y(enable)46 b([-a])h([-dnps])f([-f)g
-Fj(filename)p Ft(])g([)p Fj(name)g Ft(...)o(])630 3975
+4276 y Ft(enable)870 4412 y(enable)46 b([-a])h([-dnps])f([-f)g
+Fj(filename)p Ft(])g([)p Fj(name)g Ft(...)o(])630 4547
 y Fu(Enable)36 b(and)f(disable)h(builtin)g(shell)g(commands.)56
 b(Disabling)37 b(a)g(builtin)e(allo)m(ws)i(a)f(disk)630
-4084 y(command)e(whic)m(h)g(has)g(the)g(same)h(name)f(as)h(a)f(shell)h
-(builtin)e(to)i(b)s(e)f(executed)h(without)630 4194 y(sp)s(ecifying)27
+4657 y(command)e(whic)m(h)g(has)g(the)g(same)h(name)f(as)h(a)f(shell)h
+(builtin)e(to)i(b)s(e)f(executed)h(without)630 4766 y(sp)s(ecifying)27
 b(a)g(full)g(pathname,)g(ev)m(en)h(though)f(the)g(shell)g(normally)g
-(searc)m(hes)h(for)f(builtins)630 4304 y(b)s(efore)35
+(searc)m(hes)h(for)f(builtins)630 4876 y(b)s(efore)35
 b(disk)g(commands.)55 b(If)35 b Ft(-n)g Fu(is)g(used,)h(the)g
 Fr(name)5 b Fu(s)35 b(b)s(ecome)h(disabled.)55 b(Otherwise)630
-4413 y Fr(name)5 b Fu(s)44 b(are)h(enabled.)82 b(F)-8
+4985 y Fr(name)5 b Fu(s)44 b(are)h(enabled.)82 b(F)-8
 b(or)45 b(example,)k(to)c(use)f(the)g Ft(test)f Fu(binary)h(found)f
-(via)h Ft($PATH)630 4523 y Fu(instead)31 b(of)f(the)h(shell)f(builtin)g
+(via)h Ft($PATH)630 5095 y Fu(instead)31 b(of)f(the)h(shell)f(builtin)g
 (v)m(ersion,)h(t)m(yp)s(e)g(`)p Ft(enable)e(-n)h(test)p
-Fu('.)630 4657 y(If)45 b(the)i Ft(-p)e Fu(option)h(is)g(supplied,)j(or)
+Fu('.)630 5230 y(If)45 b(the)i Ft(-p)e Fu(option)h(is)g(supplied,)j(or)
 d(no)g Fr(name)51 b Fu(argumen)m(ts)46 b(app)s(ear,)k(a)c(list)h(of)f
-(shell)630 4767 y(builtins)37 b(is)h(prin)m(ted.)63 b(With)38
+(shell)630 5340 y(builtins)37 b(is)h(prin)m(ted.)63 b(With)38
 b(no)f(other)h(argumen)m(ts,)j(the)d(list)g(consists)g(of)g(all)h
-(enabled)630 4877 y(shell)d(builtins.)57 b(The)35 b Ft(-a)h
-Fu(option)g(means)g(to)g(list)h(eac)m(h)g(builtin)f(with)f(an)h
-(indication)h(of)630 4986 y(whether)30 b(or)g(not)h(it)g(is)f(enabled.)
-630 5121 y(The)22 b Ft(-f)f Fu(option)h(means)g(to)h(load)g(the)f(new)g
-(builtin)f(command)h Fr(name)27 b Fu(from)22 b(shared)f(ob)5
-b(ject)630 5230 y Fr(\014lename)p Fu(,)31 b(on)f(systems)g(that)h(supp)
-s(ort)e(dynamic)h(loading.)41 b(Bash)31 b(will)f(use)g(the)h(v)-5
-b(alue)31 b(of)630 5340 y(the)39 b Ft(BASH_LOADABLES_PATH)34
-b Fu(v)-5 b(ariable)40 b(as)f(a)h(colon-separated)h(list)f(of)f
-(directories)h(in)p eop end
-%%Page: 61 67
-TeXDict begin 61 66 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(61)630 299 y(whic)m(h)31
-b(to)h(searc)m(h)g(for)f Fr(\014lename)p Fu(.)44 b(The)31
-b(default)g(is)h(system-dep)s(enden)m(t.)43 b(The)31
-b Ft(-d)f Fu(option)630 408 y(will)h(delete)g(a)g(builtin)f(loaded)h
-(with)f Ft(-f)p Fu(.)630 542 y(If)j(there)i(are)f(no)g(options,)h(a)f
-(list)h(of)f(the)g(shell)g(builtins)g(is)g(displa)m(y)m(ed.)52
-b(The)33 b Ft(-s)g Fu(option)630 651 y(restricts)j Ft(enable)d
-Fu(to)j(the)f Fm(posix)f Fu(sp)s(ecial)i(builtins.)54
+(enabled)p eop end
+%%Page: 62 68
+TeXDict begin 62 67 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(62)630 299 y(shell)36
+b(builtins.)57 b(The)35 b Ft(-a)h Fu(option)g(means)g(to)g(list)h(eac)m
+(h)g(builtin)f(with)f(an)h(indication)h(of)630 408 y(whether)30
+b(or)g(not)h(it)g(is)f(enabled.)630 544 y(The)22 b Ft(-f)f
+Fu(option)h(means)g(to)h(load)g(the)f(new)g(builtin)f(command)h
+Fr(name)27 b Fu(from)22 b(shared)f(ob)5 b(ject)630 654
+y Fr(\014lename)p Fu(,)31 b(on)f(systems)g(that)h(supp)s(ort)e(dynamic)
+h(loading.)41 b(Bash)31 b(will)f(use)g(the)h(v)-5 b(alue)31
+b(of)630 764 y(the)39 b Ft(BASH_LOADABLES_PATH)34 b Fu(v)-5
+b(ariable)40 b(as)f(a)h(colon-separated)h(list)f(of)f(directories)h(in)
+630 873 y(whic)m(h)31 b(to)h(searc)m(h)g(for)f Fr(\014lename)p
+Fu(.)44 b(The)31 b(default)g(is)h(system-dep)s(enden)m(t.)43
+b(The)31 b Ft(-d)f Fu(option)630 983 y(will)h(delete)g(a)g(builtin)f
+(loaded)h(with)f Ft(-f)p Fu(.)630 1119 y(If)j(there)i(are)f(no)g
+(options,)h(a)f(list)h(of)f(the)g(shell)g(builtins)g(is)g(displa)m(y)m
+(ed.)52 b(The)33 b Ft(-s)g Fu(option)630 1228 y(restricts)j
+Ft(enable)d Fu(to)j(the)f Fm(posix)f Fu(sp)s(ecial)i(builtins.)54
 b(If)34 b Ft(-s)h Fu(is)g(used)f(with)g Ft(-f)p Fu(,)i(the)f(new)630
-761 y(builtin)30 b(b)s(ecomes)h(a)f(sp)s(ecial)h(builtin)f(\(see)i
-(Section)f(4.4)g([Sp)s(ecial)g(Builtins],)g(page)g(78\).)630
-894 y(If)24 b(no)g(options)h(are)g(supplied)e(and)h(a)h
+1338 y(builtin)30 b(b)s(ecomes)h(a)f(sp)s(ecial)h(builtin)f(\(see)i
+(Section)f(4.4)g([Sp)s(ecial)g(Builtins],)g(page)g(79\).)630
+1474 y(If)24 b(no)g(options)h(are)g(supplied)e(and)h(a)h
 Fr(name)k Fu(is)c(not)f(a)h(shell)g(builtin,)g Ft(enable)e
-Fu(will)i(attempt)630 1003 y(to)c(load)g Fr(name)26 b
+Fu(will)i(attempt)630 1583 y(to)c(load)g Fr(name)26 b
 Fu(from)20 b(a)g(shared)g(ob)5 b(ject)21 b(named)f Fr(name)p
 Fu(,)j(as)d(if)h(the)f(command)h(w)m(ere)f(`)p Ft(enable)630
-1113 y(-f)30 b Fj(name)f(name)p Fu('.)630 1246 y(The)d(return)f(status)
+1693 y(-f)30 b Fj(name)f(name)p Fu('.)630 1829 y(The)d(return)f(status)
 h(is)g(zero)h(unless)e(a)i Fr(name)k Fu(is)26 b(not)g(a)h(shell)f
-(builtin)g(or)g(there)g(is)g(an)g(error)630 1356 y(loading)31
+(builtin)g(or)g(there)g(is)g(an)g(error)630 1938 y(loading)31
 b(a)g(new)f(builtin)g(from)g(a)g(shared)g(ob)5 b(ject.)150
-1512 y Ft(help)870 1645 y(help)47 b([-dms])f([)p Fj(pattern)p
-Ft(])630 1778 y Fu(Displa)m(y)40 b(helpful)e(information)h(ab)s(out)g
+2101 y Ft(help)870 2236 y(help)47 b([-dms])f([)p Fj(pattern)p
+Ft(])630 2372 y Fu(Displa)m(y)40 b(helpful)e(information)h(ab)s(out)g
 (builtin)f(commands.)66 b(If)38 b Fr(pattern)h Fu(is)g(sp)s(eci\014ed,)
-630 1888 y Ft(help)28 b Fu(giv)m(es)i(detailed)g(help)e(on)h(all)h
+630 2482 y Ft(help)28 b Fu(giv)m(es)i(detailed)g(help)e(on)h(all)h
 (commands)e(matc)m(hing)i Fr(pattern)p Fu(,)g(otherwise)f(a)g(list)h
-(of)630 1998 y(the)h(builtins)e(is)i(prin)m(ted.)630
-2131 y(Options,)f(if)h(supplied,)e(ha)m(v)m(e)i(the)g(follo)m(wing)h
-(meanings:)630 2287 y Ft(-d)384 b Fu(Displa)m(y)32 b(a)e(short)g
-(description)h(of)f(eac)m(h)i Fr(pattern)630 2444 y Ft(-m)384
+(of)630 2591 y(the)h(builtins)e(is)i(prin)m(ted.)630
+2727 y(Options,)f(if)h(supplied,)e(ha)m(v)m(e)i(the)g(follo)m(wing)h
+(meanings:)630 2890 y Ft(-d)384 b Fu(Displa)m(y)32 b(a)e(short)g
+(description)h(of)f(eac)m(h)i Fr(pattern)630 3052 y Ft(-m)384
 b Fu(Displa)m(y)32 b(the)e(description)g(of)h(eac)m(h)h
 Fr(pattern)e Fu(in)g(a)h(manpage-lik)m(e)h(format)630
-2600 y Ft(-s)384 b Fu(Displa)m(y)32 b(only)e(a)h(short)f(usage)h
-(synopsis)e(for)i(eac)m(h)g Fr(pattern)630 2757 y Fu(The)f(return)f
+3214 y Ft(-s)384 b Fu(Displa)m(y)32 b(only)e(a)h(short)f(usage)h
+(synopsis)e(for)i(eac)m(h)g Fr(pattern)630 3376 y Fu(The)f(return)f
 (status)i(is)f(zero)h(unless)f(no)g(command)h(matc)m(hes)g
-Fr(pattern)p Fu(.)150 2913 y Ft(let)870 3046 y(let)47
+Fr(pattern)p Fu(.)150 3538 y Ft(let)870 3674 y(let)47
 b Fj(expression)e Ft([)p Fj(expression)g Ft(...)o(])630
-3180 y Fu(The)c Ft(let)g Fu(builtin)g(allo)m(ws)i(arithmetic)f(to)h(b)s
+3810 y Fu(The)c Ft(let)g Fu(builtin)g(allo)m(ws)i(arithmetic)f(to)h(b)s
 (e)d(p)s(erformed)g(on)i(shell)g(v)-5 b(ariables.)74
-b(Eac)m(h)630 3289 y Fr(expression)31 b Fu(is)g(ev)-5
+b(Eac)m(h)630 3920 y Fr(expression)31 b Fu(is)g(ev)-5
 b(aluated)32 b(according)f(to)h(the)f(rules)g(giv)m(en)h(b)s(elo)m(w)f
-(in)f(Section)i(6.5)g([Shell)630 3399 y(Arithmetic],)51
-b(page)46 b(99.)87 b(If)45 b(the)g(last)h Fr(expression)g
-Fu(ev)-5 b(aluates)47 b(to)f(0,)k Ft(let)44 b Fu(returns)g(1;)630
-3508 y(otherwise)31 b(0)g(is)f(returned.)150 3665 y Ft(local)870
-3798 y(local)46 b([)p Fj(option)p Ft(])g Fj(name)p Ft([=)p
-Fj(value)p Ft(])e(...)630 3931 y Fu(F)-8 b(or)27 b(eac)m(h)g(argumen)m
+(in)f(Section)i(6.5)g([Shell)630 4029 y(Arithmetic],)47
+b(page)c(100.)78 b(If)41 b(the)i(last)g Fr(expression)f
+Fu(ev)-5 b(aluates)44 b(to)f(0,)j Ft(let)41 b Fu(returns)g(1;)630
+4139 y(otherwise)31 b(0)g(is)f(returned.)150 4301 y Ft(local)870
+4437 y(local)46 b([)p Fj(option)p Ft(])g Fj(name)p Ft([=)p
+Fj(value)p Ft(])e(...)630 4573 y Fu(F)-8 b(or)27 b(eac)m(h)g(argumen)m
 (t,)g(a)f(lo)s(cal)h(v)-5 b(ariable)27 b(named)e Fr(name)31
 b Fu(is)26 b(created,)i(and)d(assigned)h Fr(v)-5 b(alue)p
-Fu(.)630 4041 y(The)28 b Fr(option)i Fu(can)f(b)s(e)f(an)m(y)i(of)f
+Fu(.)630 4682 y(The)28 b Fr(option)i Fu(can)f(b)s(e)f(an)m(y)i(of)f
 (the)g(options)g(accepted)i(b)m(y)d Ft(declare)p Fu(.)39
-b Ft(local)27 b Fu(can)i(only)h(b)s(e)630 4150 y(used)20
+b Ft(local)27 b Fu(can)i(only)h(b)s(e)630 4792 y(used)20
 b(within)g(a)h(function;)j(it)d(mak)m(es)g(the)g(v)-5
 b(ariable)22 b Fr(name)k Fu(ha)m(v)m(e)21 b(a)g(visible)h(scop)s(e)e
-(restricted)630 4260 y(to)28 b(that)g(function)f(and)g(its)h(c)m
+(restricted)630 4902 y(to)28 b(that)g(function)f(and)g(its)h(c)m
 (hildren.)39 b(If)27 b Fr(name)33 b Fu(is)27 b(`)p Ft(-)p
 Fu(',)i(the)f(set)f(of)h(shell)g(options)f(is)h(made)630
-4369 y(lo)s(cal)40 b(to)f(the)f(function)g(in)g(whic)m(h)h
+5011 y(lo)s(cal)40 b(to)f(the)f(function)g(in)g(whic)m(h)h
 Ft(local)e Fu(is)h(in)m(v)m(ok)m(ed:)58 b(shell)39 b(options)f(c)m
-(hanged)h(using)630 4479 y(the)31 b Ft(set)f Fu(builtin)h(inside)g(the)
+(hanged)h(using)630 5121 y(the)31 b Ft(set)f Fu(builtin)h(inside)g(the)
 g(function)f(after)i(the)f(call)h(to)g Ft(local)e Fu(are)h(restored)g
-(to)h(their)630 4589 y(original)h(v)-5 b(alues)33 b(when)e(the)i
+(to)h(their)630 5230 y(original)h(v)-5 b(alues)33 b(when)e(the)i
 (function)f(returns.)45 b(The)32 b(restore)h(is)f(e\013ected)i(as)f(if)
-f(a)h(series)630 4698 y(of)c Ft(set)f Fu(commands)h(w)m(ere)g(executed)
+f(a)h(series)630 5340 y(of)c Ft(set)f Fu(commands)h(w)m(ere)g(executed)
 h(to)g(restore)f(the)g(v)-5 b(alues)30 b(that)f(w)m(ere)h(in)e(place)i
-(b)s(efore)630 4808 y(the)f(function.)40 b(The)28 b(return)f(status)i
-(is)g(zero)g(unless)f Ft(local)f Fu(is)h(used)g(outside)h(a)g
-(function,)630 4917 y(an)h(in)m(v)-5 b(alid)31 b Fr(name)36
-b Fu(is)30 b(supplied,)f(or)i Fr(name)k Fu(is)c(a)g(readonly)f(v)-5
-b(ariable.)150 5074 y Ft(logout)870 5207 y(logout)46
-b([)p Fj(n)p Ft(])630 5340 y Fu(Exit)31 b(a)g(login)g(shell,)g
-(returning)e(a)i(status)g(of)f Fr(n)g Fu(to)h(the)g(shell's)f(paren)m
-(t.)p eop end
-%%Page: 62 68
-TeXDict begin 62 67 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(62)150 299 y Ft(mapfile)870
-439 y(mapfile)46 b([-d)h Fj(delim)p Ft(])f([-n)h Fj(count)p
-Ft(])f([-O)h Fj(origin)p Ft(])f([-s)g Fj(count)p Ft(])1061
-548 y([-t])h([-u)f Fj(fd)p Ft(])h([-C)g Fj(callback)p
-Ft(])f([-c)g Fj(quantum)p Ft(])g([)p Fj(array)p Ft(])630
-688 y Fu(Read)38 b(lines)f(from)g(the)h(standard)e(input)g(in)m(to)j
-(the)e(indexed)g(arra)m(y)h(v)-5 b(ariable)38 b Fr(arra)m(y)p
-Fu(,)i(or)630 798 y(from)28 b(\014le)h(descriptor)f Fr(fd)k
-Fu(if)c(the)h Ft(-u)f Fu(option)h(is)g(supplied.)39 b(The)28
-b(v)-5 b(ariable)29 b Ft(MAPFILE)e Fu(is)i(the)630 907
-y(default)i Fr(arra)m(y)p Fu(.)41 b(Options,)30 b(if)g(supplied,)g(ha)m
-(v)m(e)h(the)g(follo)m(wing)h(meanings:)630 1077 y Ft(-d)384
-b Fu(The)37 b(\014rst)g(c)m(haracter)i(of)f Fr(delim)g
-Fu(is)f(used)g(to)h(terminate)h(eac)m(h)g(input)d(line,)1110
-1187 y(rather)41 b(than)h(newline.)74 b(If)41 b Fr(delim)h
+(b)s(efore)p eop end
+%%Page: 63 69
+TeXDict begin 63 68 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(63)630 299 y(the)29
+b(function.)40 b(The)28 b(return)f(status)i(is)g(zero)g(unless)f
+Ft(local)f Fu(is)h(used)g(outside)h(a)g(function,)630
+408 y(an)h(in)m(v)-5 b(alid)31 b Fr(name)36 b Fu(is)30
+b(supplied,)f(or)i Fr(name)k Fu(is)c(a)g(readonly)f(v)-5
+b(ariable.)150 571 y Ft(logout)870 707 y(logout)46 b([)p
+Fj(n)p Ft(])630 844 y Fu(Exit)31 b(a)g(login)g(shell,)g(returning)e(a)i
+(status)g(of)f Fr(n)g Fu(to)h(the)g(shell's)f(paren)m(t.)150
+1006 y Ft(mapfile)870 1142 y(mapfile)46 b([-d)h Fj(delim)p
+Ft(])f([-n)h Fj(count)p Ft(])f([-O)h Fj(origin)p Ft(])f([-s)g
+Fj(count)p Ft(])1061 1252 y([-t])h([-u)f Fj(fd)p Ft(])h([-C)g
+Fj(callback)p Ft(])f([-c)g Fj(quantum)p Ft(])g([)p Fj(array)p
+Ft(])630 1388 y Fu(Read)38 b(lines)f(from)g(the)h(standard)e(input)g
+(in)m(to)j(the)e(indexed)g(arra)m(y)h(v)-5 b(ariable)38
+b Fr(arra)m(y)p Fu(,)i(or)630 1498 y(from)28 b(\014le)h(descriptor)f
+Fr(fd)k Fu(if)c(the)h Ft(-u)f Fu(option)h(is)g(supplied.)39
+b(The)28 b(v)-5 b(ariable)29 b Ft(MAPFILE)e Fu(is)i(the)630
+1607 y(default)i Fr(arra)m(y)p Fu(.)41 b(Options,)30
+b(if)g(supplied,)g(ha)m(v)m(e)h(the)g(follo)m(wing)h(meanings:)630
+1770 y Ft(-d)384 b Fu(The)37 b(\014rst)g(c)m(haracter)i(of)f
+Fr(delim)g Fu(is)f(used)g(to)h(terminate)h(eac)m(h)g(input)d(line,)1110
+1880 y(rather)41 b(than)h(newline.)74 b(If)41 b Fr(delim)h
 Fu(is)g(the)f(empt)m(y)h(string,)j Ft(mapfile)40 b Fu(will)1110
-1297 y(terminate)31 b(a)g(line)g(when)e(it)i(reads)f(a)h(NUL)g(c)m
-(haracter.)630 1467 y Ft(-n)384 b Fu(Cop)m(y)30 b(at)h(most)g
+1989 y(terminate)31 b(a)g(line)g(when)e(it)i(reads)f(a)h(NUL)g(c)m
+(haracter.)630 2152 y Ft(-n)384 b Fu(Cop)m(y)30 b(at)h(most)g
 Fr(coun)m(t)i Fu(lines.)41 b(If)30 b Fr(coun)m(t)j Fu(is)d(0,)h(all)h
-(lines)e(are)h(copied.)630 1637 y Ft(-O)384 b Fu(Begin)31
+(lines)e(are)h(copied.)630 2315 y Ft(-O)384 b Fu(Begin)31
 b(assigning)g(to)g Fr(arra)m(y)39 b Fu(at)31 b(index)f
 Fr(origin)p Fu(.)41 b(The)30 b(default)h(index)f(is)g(0.)630
-1807 y Ft(-s)384 b Fu(Discard)31 b(the)f(\014rst)g Fr(coun)m(t)j
-Fu(lines)e(read.)630 1977 y Ft(-t)384 b Fu(Remo)m(v)m(e)32
+2477 y Ft(-s)384 b Fu(Discard)31 b(the)f(\014rst)g Fr(coun)m(t)j
+Fu(lines)e(read.)630 2640 y Ft(-t)384 b Fu(Remo)m(v)m(e)32
 b(a)f(trailing)g Fr(delim)g Fu(\(default)g(newline\))f(from)g(eac)m(h)i
-(line)f(read.)630 2147 y Ft(-u)384 b Fu(Read)31 b(lines)f(from)g
+(line)f(read.)630 2803 y Ft(-u)384 b Fu(Read)31 b(lines)f(from)g
 (\014le)h(descriptor)f Fr(fd)j Fu(instead)e(of)f(the)h(standard)e
-(input.)630 2317 y Ft(-C)384 b Fu(Ev)-5 b(aluate)26 b
+(input.)630 2966 y Ft(-C)384 b Fu(Ev)-5 b(aluate)26 b
 Fr(callbac)m(k)33 b Fu(eac)m(h)26 b(time)g Fr(quan)m(tum)f
 Fu(lines)g(are)g(read.)39 b(The)25 b Ft(-c)f Fu(option)1110
-2426 y(sp)s(eci\014es)30 b Fr(quan)m(tum)p Fu(.)630 2596
+3075 y(sp)s(eci\014es)30 b Fr(quan)m(tum)p Fu(.)630 3238
 y Ft(-c)384 b Fu(Sp)s(ecify)30 b(the)g(n)m(um)m(b)s(er)f(of)i(lines)f
 (read)h(b)s(et)m(w)m(een)g(eac)m(h)g(call)h(to)f Fr(callbac)m(k)p
-Fu(.)630 2767 y(If)36 b Ft(-C)g Fu(is)g(sp)s(eci\014ed)g(without)g
+Fu(.)630 3401 y(If)36 b Ft(-C)g Fu(is)g(sp)s(eci\014ed)g(without)g
 Ft(-c)p Fu(,)h(the)g(default)f(quan)m(tum)g(is)h(5000.)60
-b(When)36 b Fr(callbac)m(k)44 b Fu(is)630 2876 y(ev)-5
+b(When)36 b Fr(callbac)m(k)44 b Fu(is)630 3510 y(ev)-5
 b(aluated,)30 b(it)e(is)g(supplied)f(the)h(index)f(of)i(the)f(next)g
 (arra)m(y)g(elemen)m(t)h(to)g(b)s(e)e(assigned)i(and)630
-2986 y(the)39 b(line)g(to)h(b)s(e)e(assigned)h(to)h(that)f(elemen)m(t)i
+3620 y(the)39 b(line)g(to)h(b)s(e)e(assigned)h(to)h(that)f(elemen)m(t)i
 (as)e(additional)h(argumen)m(ts.)66 b Fr(callbac)m(k)47
-b Fu(is)630 3095 y(ev)-5 b(aluated)32 b(after)e(the)h(line)g(is)f(read)
+b Fu(is)630 3729 y(ev)-5 b(aluated)32 b(after)e(the)h(line)g(is)f(read)
 g(but)g(b)s(efore)g(the)h(arra)m(y)g(elemen)m(t)g(is)g(assigned.)630
-3235 y(If)25 b(not)g(supplied)f(with)h(an)g(explicit)i(origin,)g
+3866 y(If)25 b(not)g(supplied)f(with)h(an)g(explicit)i(origin,)g
 Ft(mapfile)c Fu(will)j(clear)g Fr(arra)m(y)34 b Fu(b)s(efore)24
-b(assigning)630 3345 y(to)31 b(it.)630 3485 y Ft(mapfile)41
+b(assigning)630 3975 y(to)31 b(it.)630 4111 y Ft(mapfile)41
 b Fu(returns)g(successfully)i(unless)e(an)i(in)m(v)-5
 b(alid)43 b(option)g(or)g(option)g(argumen)m(t)g(is)630
-3594 y(supplied,)29 b Fr(arra)m(y)39 b Fu(is)30 b(in)m(v)-5
+4221 y(supplied,)29 b Fr(arra)m(y)39 b Fu(is)30 b(in)m(v)-5
 b(alid)31 b(or)g(unassignable,)f(or)h Fr(arra)m(y)38
 b Fu(is)31 b(not)f(an)h(indexed)e(arra)m(y)-8 b(.)150
-3764 y Ft(printf)870 3904 y(printf)46 b([-v)h Fj(var)p
-Ft(])g Fj(format)f Ft([)p Fj(arguments)p Ft(])630 4044
+4384 y Ft(printf)870 4520 y(printf)46 b([-v)h Fj(var)p
+Ft(])g Fj(format)f Ft([)p Fj(arguments)p Ft(])630 4656
 y Fu(W)-8 b(rite)27 b(the)g(formatted)f Fr(argumen)m(ts)k
 Fu(to)d(the)f(standard)f(output)h(under)e(the)i(con)m(trol)i(of)e(the)
-630 4153 y Fr(format)p Fu(.)66 b(The)39 b Ft(-v)f Fu(option)h(causes)g
+630 4765 y Fr(format)p Fu(.)66 b(The)39 b Ft(-v)f Fu(option)h(causes)g
 (the)g(output)g(to)g(b)s(e)f(assigned)h(to)h(the)f(v)-5
-b(ariable)39 b Fr(v)-5 b(ar)630 4263 y Fu(rather)30 b(than)g(b)s(eing)g
-(prin)m(ted)g(to)h(the)g(standard)e(output.)630 4403
+b(ariable)39 b Fr(v)-5 b(ar)630 4875 y Fu(rather)30 b(than)g(b)s(eing)g
+(prin)m(ted)g(to)h(the)g(standard)e(output.)630 5011
 y(The)36 b Fr(format)i Fu(is)f(a)f(c)m(haracter)i(string)e(whic)m(h)g
 (con)m(tains)i(three)e(t)m(yp)s(es)g(of)h(ob)5 b(jects:)53
-b(plain)630 4512 y(c)m(haracters,)41 b(whic)m(h)c(are)h(simply)e
+b(plain)630 5121 y(c)m(haracters,)41 b(whic)m(h)c(are)h(simply)e
 (copied)i(to)g(standard)f(output,)i(c)m(haracter)g(escap)s(e)e(se-)630
-4622 y(quences,)g(whic)m(h)f(are)g(con)m(v)m(erted)h(and)f(copied)g(to)
-g(the)g(standard)f(output,)i(and)f(format)630 4732 y(sp)s
+5230 y(quences,)g(whic)m(h)f(are)g(con)m(v)m(erted)h(and)f(copied)g(to)
+g(the)g(standard)f(output,)i(and)f(format)630 5340 y(sp)s
 (eci\014cations,)j(eac)m(h)e(of)g(whic)m(h)f(causes)g(prin)m(ting)g(of)
-h(the)f(next)h(successiv)m(e)g Fr(argumen)m(t)p Fu(.)630
-4841 y(In)27 b(addition)g(to)h(the)g(standard)e Ft(printf\(3\))f
-Fu(format)j(c)m(haracters)g Ft(csndiouxXeEfFgGaA)p Fu(,)630
-4951 y Ft(printf)h Fu(in)m(terprets)h(the)h(follo)m(wing)h(additional)f
-(format)g(sp)s(eci\014ers:)630 5121 y Ft(\045b)384 b
-Fu(Causes)38 b Ft(printf)f Fu(to)j(expand)e(bac)m(kslash)h(escap)s(e)g
-(sequences)g(in)f(the)h(cor-)1110 5230 y(resp)s(onding)31
-b Fr(argumen)m(t)j Fu(in)e(the)h(same)f(w)m(a)m(y)h(as)g
-Ft(echo)c(-e)j Fu(\(see)h(Section)g(4.2)1110 5340 y([Bash)e(Builtins],)
-g(page)g(56\).)p eop end
-%%Page: 63 69
-TeXDict begin 63 68 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(63)630 299 y Ft(\045q)384
-b Fu(Causes)32 b Ft(printf)e Fu(to)i(output)g(the)g(corresp)s(onding)f
-Fr(argumen)m(t)j Fu(in)d(a)i(format)1110 408 y(that)42
-b(can)f(b)s(e)g(reused)g(as)g(shell)h(input.)72 b Ft(\045q)41
-b Fu(and)f Ft(\045Q)p Fu(P)h(use)g(the)g(ANSI-C)1110
-518 y(quoting)29 b(st)m(yle)h(\(see)g(Section)g(3.1.2.4)h([ANSI-C)e
-(Quoting],)h(page)f(6\))h(if)f(an)m(y)1110 628 y(c)m(haracters)g(in)e
+h(the)f(next)h(successiv)m(e)g Fr(argumen)m(t)p Fu(.)p
+eop end
+%%Page: 64 70
+TeXDict begin 64 69 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(64)630 299 y(In)27
+b(addition)g(to)h(the)g(standard)e Ft(printf\(3\))f Fu(format)j(c)m
+(haracters)g Ft(csndiouxXeEfFgGaA)p Fu(,)630 408 y Ft(printf)h
+Fu(in)m(terprets)h(the)h(follo)m(wing)h(additional)f(format)g(sp)s
+(eci\014ers:)630 567 y Ft(\045b)384 b Fu(Causes)38 b
+Ft(printf)f Fu(to)j(expand)e(bac)m(kslash)h(escap)s(e)g(sequences)g(in)
+f(the)h(cor-)1110 676 y(resp)s(onding)31 b Fr(argumen)m(t)j
+Fu(in)e(the)h(same)f(w)m(a)m(y)h(as)g Ft(echo)c(-e)j
+Fu(\(see)h(Section)g(4.2)1110 786 y([Bash)e(Builtins],)g(page)g(57\).)
+630 944 y Ft(\045q)384 b Fu(Causes)32 b Ft(printf)e Fu(to)i(output)g
+(the)g(corresp)s(onding)f Fr(argumen)m(t)j Fu(in)d(a)i(format)1110
+1054 y(that)42 b(can)f(b)s(e)g(reused)g(as)g(shell)h(input.)72
+b Ft(\045q)41 b Fu(and)f Ft(\045Q)p Fu(P)h(use)g(the)g(ANSI-C)1110
+1163 y(quoting)29 b(st)m(yle)h(\(see)g(Section)g(3.1.2.4)h([ANSI-C)e
+(Quoting],)h(page)f(6\))h(if)f(an)m(y)1110 1273 y(c)m(haracters)g(in)e
 (the)h(argumen)m(t)g(string)f(require)h(it,)g(and)f(bac)m(kslash)h
-(quoting)1110 737 y(otherwise.)79 b(If)42 b(the)h(format)h(string)f
+(quoting)1110 1383 y(otherwise.)79 b(If)42 b(the)h(format)h(string)f
 (uses)f(the)h Ft(printf)e Fr(alternate)k(form)p Fu(,)1110
-847 y(these)31 b(t)m(w)m(o)h(formats)e(quote)h(the)g(argumen)m(t)f
-(string)h(using)f(single)h(quotes.)630 1003 y Ft(\045Q)384
+1492 y(these)31 b(t)m(w)m(o)h(formats)e(quote)h(the)g(argumen)m(t)f
+(string)h(using)f(single)h(quotes.)630 1650 y Ft(\045Q)384
 b Fu(lik)m(e)34 b Ft(\045q)p Fu(,)f(but)f(applies)g(an)m(y)h(supplied)e
 (precision)i(to)h(the)e Fr(argumen)m(t)j Fu(b)s(efore)1110
-1113 y(quoting)c(it.)630 1270 y Ft(\045\()p Fj(datefmt)p
-Ft(\)T)1110 1379 y Fu(Causes)e Ft(printf)e Fu(to)j(output)f(the)g
-(date-time)i(string)e(resulting)h(from)e(using)1110 1489
+1760 y(quoting)c(it.)630 1918 y Ft(\045\()p Fj(datefmt)p
+Ft(\)T)1110 2028 y Fu(Causes)e Ft(printf)e Fu(to)j(output)f(the)g
+(date-time)i(string)e(resulting)h(from)e(using)1110 2138
 y Fr(datefm)m(t)45 b Fu(as)d(a)g(format)g(string)g(for)g
 Ft(strftime)p Fu(\(3\).)74 b(The)41 b(corresp)s(onding)1110
-1598 y Fr(argumen)m(t)h Fu(is)e(an)g(in)m(teger)i(represen)m(ting)e
-(the)g(n)m(um)m(b)s(er)f(of)h(seconds)g(since)1110 1708
+2247 y Fr(argumen)m(t)h Fu(is)e(an)g(in)m(teger)i(represen)m(ting)e
+(the)g(n)m(um)m(b)s(er)f(of)h(seconds)g(since)1110 2357
 y(the)24 b(ep)s(o)s(c)m(h.)38 b(Tw)m(o)24 b(sp)s(ecial)h(argumen)m(t)f
 (v)-5 b(alues)24 b(ma)m(y)h(b)s(e)e(used:)36 b(-1)25
-b(represen)m(ts)1110 1817 y(the)30 b(curren)m(t)g(time,)h(and)e(-2)i
+b(represen)m(ts)1110 2466 y(the)30 b(curren)m(t)g(time,)h(and)e(-2)i
 (represen)m(ts)f(the)g(time)h(the)f(shell)g(w)m(as)g(in)m(v)m(ok)m(ed.)
-1110 1927 y(If)38 b(no)g(argumen)m(t)h(is)f(sp)s(eci\014ed,)i(con)m(v)m
+1110 2576 y(If)38 b(no)g(argumen)m(t)h(is)f(sp)s(eci\014ed,)i(con)m(v)m
 (ersion)f(b)s(eha)m(v)m(es)g(as)g(if)f(-1)h(had)f(b)s(een)1110
-2037 y(giv)m(en.)k(This)29 b(is)i(an)f(exception)i(to)f(the)f(usual)g
-Ft(printf)f Fu(b)s(eha)m(vior.)630 2193 y(The)39 b(\045b,)i(\045q,)g
+2685 y(giv)m(en.)k(This)29 b(is)i(an)f(exception)i(to)f(the)f(usual)g
+Ft(printf)f Fu(b)s(eha)m(vior.)630 2844 y(The)39 b(\045b,)i(\045q,)g
 (and)e(\045T)f(format)i(sp)s(eci\014ers)e(all)i(use)f(the)h(\014eld)f
-(width)f(and)h(precision)630 2303 y(argumen)m(ts)e(from)f(the)h(format)
+(width)f(and)h(precision)630 2953 y(argumen)m(ts)e(from)f(the)h(format)
 g(sp)s(eci\014cation)g(and)f(write)h(that)h(man)m(y)e(b)m(ytes)h(from)g
-(\(or)630 2412 y(use)29 b(that)h(wide)f(a)g(\014eld)g(for\))g(the)h
+(\(or)630 3063 y(use)29 b(that)h(wide)f(a)g(\014eld)g(for\))g(the)h
 (expanded)e(argumen)m(t,)i(whic)m(h)f(usually)g(con)m(tains)i(more)630
-2522 y(c)m(haracters)h(than)e(the)h(original.)630 2655
+3173 y(c)m(haracters)h(than)e(the)h(original.)630 3306
 y(The)e(\045n)f(format)h(sp)s(eci\014er)g(accepts)h(a)g(corresp)s
 (onding)e(argumen)m(t)h(that)h(is)f(treated)h(as)g(a)630
-2765 y(shell)h(v)-5 b(ariable)31 b(name.)630 2898 y(The)26
+3416 y(shell)h(v)-5 b(ariable)31 b(name.)630 3550 y(The)26
 b(\045s)g(and)h(\045c)f(format)h(sp)s(eci\014ers)f(accept)i(an)f(l)g
 (\(long\))h(mo)s(di\014er,)e(whic)m(h)h(forces)g(them)630
-3007 y(to)21 b(con)m(v)m(ert)i(the)e(argumen)m(t)g(string)g(to)g(a)g
+3660 y(to)21 b(con)m(v)m(ert)i(the)e(argumen)m(t)g(string)g(to)g(a)g
 (wide-c)m(haracter)i(string)e(and)f(apply)g(an)m(y)h(supplied)630
-3117 y(\014eld)30 b(width)g(and)f(precision)i(in)f(terms)g(of)h(c)m
-(haracters,)h(not)e(b)m(ytes.)630 3250 y(Argumen)m(ts)e(to)h
+3769 y(\014eld)30 b(width)g(and)f(precision)i(in)f(terms)g(of)h(c)m
+(haracters,)h(not)e(b)m(ytes.)630 3903 y(Argumen)m(ts)e(to)h
 (non-string)e(format)i(sp)s(eci\014ers)e(are)h(treated)h(as)g(C)e
-(language)j(constan)m(ts,)630 3360 y(except)22 b(that)g(a)g(leading)g
+(language)j(constan)m(ts,)630 4013 y(except)22 b(that)g(a)g(leading)g
 (plus)e(or)h(min)m(us)f(sign)i(is)f(allo)m(w)m(ed,)k(and)c(if)g(the)g
-(leading)h(c)m(haracter)h(is)630 3469 y(a)i(single)g(or)f(double)h
+(leading)h(c)m(haracter)h(is)630 4122 y(a)i(single)g(or)f(double)h
 (quote,)h(the)f(v)-5 b(alue)25 b(is)f(the)h(ASCI)s(I)e(v)-5
 b(alue)25 b(of)f(the)h(follo)m(wing)h(c)m(haracter.)630
-3602 y(The)31 b Fr(format)i Fu(is)f(reused)e(as)i(necessary)f(to)i
+4256 y(The)31 b Fr(format)i Fu(is)f(reused)e(as)i(necessary)f(to)i
 (consume)e(all)h(of)f(the)h Fr(argumen)m(ts)p Fu(.)44
-b(If)30 b(the)i Fr(for-)630 3712 y(mat)c Fu(requires)e(more)g
+b(If)30 b(the)i Fr(for-)630 4366 y(mat)c Fu(requires)e(more)g
 Fr(argumen)m(ts)k Fu(than)25 b(are)i(supplied,)e(the)h(extra)h(format)f
-(sp)s(eci\014cations)630 3821 y(b)s(eha)m(v)m(e)j(as)g(if)f(a)h(zero)g
+(sp)s(eci\014cations)630 4475 y(b)s(eha)m(v)m(e)j(as)g(if)f(a)h(zero)g
 (v)-5 b(alue)29 b(or)g(n)m(ull)f(string,)h(as)g(appropriate,)g(had)f(b)
-s(een)g(supplied.)38 b(The)630 3931 y(return)e(v)-5 b(alue)38
+s(een)g(supplied.)38 b(The)630 4585 y(return)e(v)-5 b(alue)38
 b(is)g(zero)g(on)f(success,)j(non-zero)e(if)f(an)h(in)m(v)-5
-b(alid)38 b(option)g(is)f(supplied)f(or)i(a)630 4041
+b(alid)38 b(option)g(is)f(supplied)f(or)i(a)630 4695
 y(write)31 b(or)f(assignmen)m(t)h(error)f(o)s(ccurs.)150
-4197 y Ft(read)870 4330 y(read)47 b([-ers])f([-a)h Fj(aname)p
+4853 y Ft(read)870 4987 y(read)47 b([-ers])f([-a)h Fj(aname)p
 Ft(])f([-d)h Fj(delim)p Ft(])f([-i)h Fj(text)p Ft(])f([-n)h
-Fj(nchars)p Ft(])1061 4440 y([-N)g Fj(nchars)p Ft(])f([-p)h
+Fj(nchars)p Ft(])1061 5096 y([-N)g Fj(nchars)p Ft(])f([-p)h
 Fj(prompt)p Ft(])e([-t)i Fj(timeout)p Ft(])f([-u)h Fj(fd)p
-Ft(])g([)p Fj(name)f Ft(...)o(])630 4573 y Fu(One)38
+Ft(])g([)p Fj(name)f Ft(...)o(])630 5230 y Fu(One)38
 b(line)g(is)g(read)g(from)g(the)g(standard)f(input,)j(or)e(from)f(the)i
-(\014le)f(descriptor)g Fr(fd)j Fu(sup-)630 4682 y(plied)34
+(\014le)f(descriptor)g Fr(fd)j Fu(sup-)630 5340 y(plied)34
 b(as)h(an)f(argumen)m(t)h(to)g(the)f Ft(-u)g Fu(option,)i(split)f(in)m
-(to)g(w)m(ords)f(as)g(describ)s(ed)g(ab)s(o)m(v)m(e)h(in)630
-4792 y(Section)j(3.5.7)h([W)-8 b(ord)38 b(Splitting],)i(page)e(35,)j
-(and)36 b(the)i(\014rst)f(w)m(ord)g(is)g(assigned)h(to)g(the)630
-4902 y(\014rst)32 b Fr(name)p Fu(,)h(the)g(second)g(w)m(ord)f(to)h(the)
-g(second)g Fr(name)p Fu(,)g(and)f(so)h(on.)47 b(If)32
-b(there)h(are)g(more)630 5011 y(w)m(ords)39 b(than)g(names,)j(the)e
+(to)g(w)m(ords)f(as)g(describ)s(ed)g(ab)s(o)m(v)m(e)h(in)p
+eop end
+%%Page: 65 71
+TeXDict begin 65 70 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(65)630 299 y(Section)38
+b(3.5.7)h([W)-8 b(ord)38 b(Splitting],)i(page)e(36,)j(and)36
+b(the)i(\014rst)f(w)m(ord)g(is)g(assigned)h(to)g(the)630
+408 y(\014rst)32 b Fr(name)p Fu(,)h(the)g(second)g(w)m(ord)f(to)h(the)g
+(second)g Fr(name)p Fu(,)g(and)f(so)h(on.)47 b(If)32
+b(there)h(are)g(more)630 518 y(w)m(ords)39 b(than)g(names,)j(the)e
 (remaining)f(w)m(ords)g(and)g(their)h(in)m(terv)m(ening)g(delimiters)h
-(are)630 5121 y(assigned)29 b(to)h(the)g(last)g Fr(name)p
+(are)630 628 y(assigned)29 b(to)h(the)g(last)g Fr(name)p
 Fu(.)40 b(If)29 b(there)g(are)h(few)m(er)f(w)m(ords)g(read)g(from)g
-(the)g(input)g(stream)630 5230 y(than)35 b(names,)i(the)e(remaining)h
+(the)g(input)g(stream)630 737 y(than)35 b(names,)i(the)e(remaining)h
 (names)f(are)h(assigned)f(empt)m(y)h(v)-5 b(alues.)56
-b(The)34 b(c)m(haracters)630 5340 y(in)e(the)h(v)-5 b(alue)33
+b(The)34 b(c)m(haracters)630 847 y(in)e(the)h(v)-5 b(alue)33
 b(of)g(the)g Ft(IFS)f Fu(v)-5 b(ariable)33 b(are)h(used)d(to)j(split)f
-(the)g(line)g(in)m(to)g(w)m(ords)g(using)f(the)p eop
-end
-%%Page: 64 70
-TeXDict begin 64 69 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(64)630 299 y(same)29
-b(rules)f(the)g(shell)h(uses)f(for)g(expansion)g(\(describ)s(ed)g(ab)s
-(o)m(v)m(e)i(in)e(Section)h(3.5.7)h([W)-8 b(ord)630 408
-y(Splitting],)38 b(page)f(35\).)60 b(The)35 b(bac)m(kslash)i(c)m
+(the)g(line)g(in)m(to)g(w)m(ords)g(using)f(the)630 956
+y(same)d(rules)f(the)g(shell)h(uses)f(for)g(expansion)g(\(describ)s(ed)
+g(ab)s(o)m(v)m(e)i(in)e(Section)h(3.5.7)h([W)-8 b(ord)630
+1066 y(Splitting],)38 b(page)f(36\).)60 b(The)35 b(bac)m(kslash)i(c)m
 (haracter)h(`)p Ft(\\)p Fu(')e(ma)m(y)h(b)s(e)f(used)f(to)i(remo)m(v)m
-(e)h(an)m(y)630 518 y(sp)s(ecial)31 b(meaning)g(for)f(the)g(next)h(c)m
+(e)h(an)m(y)630 1176 y(sp)s(ecial)31 b(meaning)g(for)f(the)g(next)h(c)m
 (haracter)h(read)e(and)g(for)g(line)h(con)m(tin)m(uation.)630
-654 y(Options,)f(if)h(supplied,)e(ha)m(v)m(e)i(the)g(follo)m(wing)h
-(meanings:)630 816 y Ft(-a)e Fj(aname)114 b Fu(The)34
+1306 y(Options,)f(if)h(supplied,)e(ha)m(v)m(e)i(the)g(follo)m(wing)h
+(meanings:)630 1457 y Ft(-a)e Fj(aname)114 b Fu(The)34
 b(w)m(ords)f(are)i(assigned)f(to)h(sequen)m(tial)h(indices)e(of)g(the)g
-(arra)m(y)h(v)-5 b(ariable)1110 925 y Fr(aname)p Fu(,)29
+(arra)m(y)h(v)-5 b(ariable)1110 1567 y Fr(aname)p Fu(,)29
 b(starting)h(at)f(0.)40 b(All)29 b(elemen)m(ts)h(are)e(remo)m(v)m(ed)i
-(from)d Fr(aname)34 b Fu(b)s(efore)1110 1035 y(the)d(assignmen)m(t.)41
+(from)d Fr(aname)34 b Fu(b)s(efore)1110 1677 y(the)d(assignmen)m(t.)41
 b(Other)30 b Fr(name)36 b Fu(argumen)m(ts)30 b(are)h(ignored.)630
-1196 y Ft(-d)f Fj(delim)114 b Fu(The)41 b(\014rst)h(c)m(haracter)h(of)f
+1828 y Ft(-d)f Fj(delim)114 b Fu(The)41 b(\014rst)h(c)m(haracter)h(of)f
 Fr(delim)g Fu(is)g(used)g(to)g(terminate)h(the)f(input)f(line,)1110
-1306 y(rather)31 b(than)g(newline.)42 b(If)30 b Fr(delim)h
+1937 y(rather)31 b(than)g(newline.)42 b(If)30 b Fr(delim)h
 Fu(is)g(the)h(empt)m(y)f(string,)g Ft(read)f Fu(will)h(termi-)1110
-1416 y(nate)g(a)g(line)f(when)g(it)h(reads)f(a)h(NUL)f(c)m(haracter.)
-630 1577 y Ft(-e)384 b Fu(Readline)46 b(\(see)g(Chapter)e(8)h([Command)
-f(Line)h(Editing],)50 b(page)45 b(120\))i(is)1110 1687
+2047 y(nate)g(a)g(line)f(when)g(it)h(reads)f(a)h(NUL)f(c)m(haracter.)
+630 2198 y Ft(-e)384 b Fu(Readline)46 b(\(see)g(Chapter)e(8)h([Command)
+f(Line)h(Editing],)50 b(page)45 b(121\))i(is)1110 2308
 y(used)37 b(to)i(obtain)g(the)f(line.)65 b(Readline)39
 b(uses)e(the)i(curren)m(t)f(\(or)g(default,)j(if)1110
-1797 y(line)h(editing)g(w)m(as)g(not)g(previously)f(activ)m(e\))k
-(editing)d(settings,)j(but)c(uses)1110 1906 y(Readline's)31
-b(default)g(\014lename)f(completion.)630 2068 y Ft(-i)g
+2418 y(line)h(editing)g(w)m(as)g(not)g(previously)f(activ)m(e\))k
+(editing)d(settings,)j(but)c(uses)1110 2527 y(Readline's)31
+b(default)g(\014lename)f(completion.)630 2679 y Ft(-i)g
 Fj(text)162 b Fu(If)36 b(Readline)i(is)f(b)s(eing)g(used)f(to)h(read)g
 (the)g(line,)j Fr(text)f Fu(is)e(placed)h(in)m(to)g(the)1110
-2178 y(editing)31 b(bu\013er)e(b)s(efore)h(editing)h(b)s(egins.)630
-2339 y Ft(-n)f Fj(nchars)66 b Ft(read)38 b Fu(returns)f(after)j
+2788 y(editing)31 b(bu\013er)e(b)s(efore)h(editing)h(b)s(egins.)630
+2939 y Ft(-n)f Fj(nchars)66 b Ft(read)38 b Fu(returns)f(after)j
 (reading)f Fr(nc)m(hars)j Fu(c)m(haracters)e(rather)f(than)g(w)m
-(aiting)1110 2449 y(for)d(a)h(complete)h(line)f(of)g(input,)g(but)f
-(honors)g(a)h(delimiter)g(if)f(few)m(er)h(than)1110 2559
+(aiting)1110 3049 y(for)d(a)h(complete)h(line)f(of)g(input,)g(but)f
+(honors)g(a)h(delimiter)g(if)f(few)m(er)h(than)1110 3159
 y Fr(nc)m(hars)d Fu(c)m(haracters)e(are)e(read)h(b)s(efore)f(the)g
-(delimiter.)630 2720 y Ft(-N)g Fj(nchars)66 b Ft(read)39
+(delimiter.)630 3310 y Ft(-N)g Fj(nchars)66 b Ft(read)39
 b Fu(returns)f(after)j(reading)e(exactly)j Fr(nc)m(hars)h
-Fu(c)m(haracters)f(rather)d(than)1110 2830 y(w)m(aiting)32
+Fu(c)m(haracters)f(rather)d(than)1110 3420 y(w)m(aiting)32
 b(for)f(a)g(complete)i(line)e(of)g(input,)g(unless)f(EOF)h(is)g(encoun)
-m(tered)g(or)1110 2939 y Ft(read)f Fu(times)i(out.)43
+m(tered)g(or)1110 3529 y Ft(read)f Fu(times)i(out.)43
 b(Delimiter)33 b(c)m(haracters)f(encoun)m(tered)g(in)f(the)g(input)g
-(are)1110 3049 y(not)g(treated)h(sp)s(ecially)f(and)f(do)h(not)g(cause)
+(are)1110 3639 y(not)g(treated)h(sp)s(ecially)f(and)f(do)h(not)g(cause)
 g Ft(read)e Fu(to)j(return)d(un)m(til)i Fr(nc)m(hars)1110
-3159 y Fu(c)m(haracters)26 b(are)f(read.)38 b(The)24
+3748 y Fu(c)m(haracters)26 b(are)f(read.)38 b(The)24
 b(result)g(is)h(not)f(split)h(on)f(the)h(c)m(haracters)h(in)e
-Ft(IFS)p Fu(;)1110 3268 y(the)e(in)m(ten)m(t)i(is)e(that)h(the)f(v)-5
+Ft(IFS)p Fu(;)1110 3858 y(the)e(in)m(ten)m(t)i(is)e(that)h(the)f(v)-5
 b(ariable)23 b(is)f(assigned)g(exactly)i(the)e(c)m(haracters)i(read)
-1110 3378 y(\(with)30 b(the)h(exception)h(of)e(bac)m(kslash;)h(see)g
-(the)g Ft(-r)f Fu(option)h(b)s(elo)m(w\).)630 3540 y
+1110 3968 y(\(with)30 b(the)h(exception)h(of)e(bac)m(kslash;)h(see)g
+(the)g Ft(-r)f Fu(option)h(b)s(elo)m(w\).)630 4119 y
 Ft(-p)f Fj(prompt)66 b Fu(Displa)m(y)38 b Fr(prompt)p
 Fu(,)g(without)e(a)h(trailing)h(newline,)h(b)s(efore)d(attempting)i(to)
-1110 3649 y(read)f(an)m(y)h(input.)60 b(The)37 b(prompt)g(is)g(displa)m
-(y)m(ed)h(only)f(if)g(input)g(is)g(coming)1110 3759 y(from)30
-b(a)h(terminal.)630 3921 y Ft(-r)384 b Fu(If)21 b(this)h(option)g(is)f
+1110 4228 y(read)f(an)m(y)h(input.)60 b(The)37 b(prompt)g(is)g(displa)m
+(y)m(ed)h(only)f(if)g(input)g(is)g(coming)1110 4338 y(from)30
+b(a)h(terminal.)630 4489 y Ft(-r)384 b Fu(If)21 b(this)h(option)g(is)f
 (giv)m(en,)k(bac)m(kslash)d(do)s(es)f(not)h(act)h(as)f(an)f(escap)s(e)h
-(c)m(haracter.)1110 4030 y(The)30 b(bac)m(kslash)i(is)f(considered)g
+(c)m(haracter.)1110 4599 y(The)30 b(bac)m(kslash)i(is)f(considered)g
 (to)h(b)s(e)e(part)h(of)g(the)g(line.)43 b(In)30 b(particular,)i(a)1110
-4140 y(bac)m(kslash-newline)26 b(pair)e(ma)m(y)h(not)g(then)g(b)s(e)f
-(used)g(as)h(a)g(line)g(con)m(tin)m(uation.)630 4301
+4709 y(bac)m(kslash-newline)26 b(pair)e(ma)m(y)h(not)g(then)g(b)s(e)f
+(used)g(as)h(a)g(line)g(con)m(tin)m(uation.)630 4860
 y Ft(-s)384 b Fu(Silen)m(t)28 b(mo)s(de.)40 b(If)27 b(input)f(is)i
 (coming)g(from)f(a)h(terminal,)h(c)m(haracters)g(are)f(not)1110
-4411 y(ec)m(ho)s(ed.)630 4573 y Ft(-t)i Fj(timeout)1110
-4682 y Fu(Cause)23 b Ft(read)f Fu(to)i(time)f(out)h(and)e(return)g
+4969 y(ec)m(ho)s(ed.)630 5121 y Ft(-t)i Fj(timeout)1110
+5230 y Fu(Cause)23 b Ft(read)f Fu(to)i(time)f(out)h(and)e(return)g
 (failure)h(if)g(a)h(complete)g(line)g(of)f(input)1110
-4792 y(\(or)h(a)f(sp)s(eci\014ed)g(n)m(um)m(b)s(er)f(of)i(c)m
+5340 y(\(or)h(a)f(sp)s(eci\014ed)g(n)m(um)m(b)s(er)f(of)i(c)m
 (haracters\))h(is)e(not)h(read)f(within)g Fr(timeout)j
-Fu(sec-)1110 4902 y(onds.)43 b Fr(timeout)34 b Fu(ma)m(y)e(b)s(e)e(a)i
-(decimal)g(n)m(um)m(b)s(er)e(with)h(a)h(fractional)g(p)s(ortion)1110
-5011 y(follo)m(wing)39 b(the)f(decimal)g(p)s(oin)m(t.)63
-b(This)37 b(option)h(is)g(only)f(e\013ectiv)m(e)k(if)c
-Ft(read)1110 5121 y Fu(is)c(reading)h(input)e(from)h(a)h(terminal,)h
-(pip)s(e,)e(or)h(other)f(sp)s(ecial)h(\014le;)h(it)f(has)1110
-5230 y(no)f(e\013ect)i(when)d(reading)i(from)f(regular)g(\014les.)50
-b(If)33 b Ft(read)f Fu(times)i(out,)g Ft(read)1110 5340
-y Fu(sa)m(v)m(es)41 b(an)m(y)f(partial)h(input)e(read)g(in)m(to)i(the)f
-(sp)s(eci\014ed)f(v)-5 b(ariable)40 b Fr(name)p Fu(.)69
-b(If)p eop end
-%%Page: 65 71
-TeXDict begin 65 70 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(65)1110 299 y
-Fr(timeout)31 b Fu(is)c(0,)i Ft(read)d Fu(returns)h(immediately)-8
-b(,)30 b(without)d(trying)h(to)g(read)g(an)m(y)1110 408
-y(data.)49 b(The)33 b(exit)h(status)f(is)g(0)g(if)g(input)f(is)h(a)m(v)
--5 b(ailable)36 b(on)c(the)i(sp)s(eci\014ed)e(\014le)1110
-518 y(descriptor,)37 b(or)e(the)h(read)f(will)h(return)e(EOF,)h
-(non-zero)h(otherwise.)56 b(The)1110 628 y(exit)31 b(status)g(is)f
-(greater)i(than)e(128)i(if)e(the)h(timeout)g(is)f(exceeded.)630
-785 y Ft(-u)g Fj(fd)258 b Fu(Read)31 b(input)e(from)h(\014le)g
-(descriptor)h Fr(fd)p Fu(.)630 942 y(If)h(no)g Fr(name)5
-b Fu(s)33 b(are)f(supplied,)g(the)h(line)g(read,)g(without)f(the)h
-(ending)f(delimiter)h(but)e(oth-)630 1052 y(erwise)36
-b(unmo)s(di\014ed,)e(is)i(assigned)f(to)h(the)g(v)-5
+Fu(sec-)p eop end
+%%Page: 66 72
+TeXDict begin 66 71 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(66)1110 299 y(onds.)43
+b Fr(timeout)34 b Fu(ma)m(y)e(b)s(e)e(a)i(decimal)g(n)m(um)m(b)s(er)e
+(with)h(a)h(fractional)g(p)s(ortion)1110 408 y(follo)m(wing)39
+b(the)f(decimal)g(p)s(oin)m(t.)63 b(This)37 b(option)h(is)g(only)f
+(e\013ectiv)m(e)k(if)c Ft(read)1110 518 y Fu(is)c(reading)h(input)e
+(from)h(a)h(terminal,)h(pip)s(e,)e(or)h(other)f(sp)s(ecial)h(\014le;)h
+(it)f(has)1110 628 y(no)f(e\013ect)i(when)d(reading)i(from)f(regular)g
+(\014les.)50 b(If)33 b Ft(read)f Fu(times)i(out,)g Ft(read)1110
+737 y Fu(sa)m(v)m(es)41 b(an)m(y)f(partial)h(input)e(read)g(in)m(to)i
+(the)f(sp)s(eci\014ed)f(v)-5 b(ariable)40 b Fr(name)p
+Fu(.)69 b(If)1110 847 y Fr(timeout)31 b Fu(is)c(0,)i
+Ft(read)d Fu(returns)h(immediately)-8 b(,)30 b(without)d(trying)h(to)g
+(read)g(an)m(y)1110 956 y(data.)49 b(The)33 b(exit)h(status)f(is)g(0)g
+(if)g(input)f(is)h(a)m(v)-5 b(ailable)36 b(on)c(the)i(sp)s(eci\014ed)e
+(\014le)1110 1066 y(descriptor,)37 b(or)e(the)h(read)f(will)h(return)e
+(EOF,)h(non-zero)h(otherwise.)56 b(The)1110 1176 y(exit)31
+b(status)g(is)f(greater)i(than)e(128)i(if)e(the)h(timeout)g(is)f
+(exceeded.)630 1327 y Ft(-u)g Fj(fd)258 b Fu(Read)31
+b(input)e(from)h(\014le)g(descriptor)h Fr(fd)p Fu(.)630
+1478 y(If)h(no)g Fr(name)5 b Fu(s)33 b(are)f(supplied,)g(the)h(line)g
+(read,)g(without)f(the)h(ending)f(delimiter)h(but)e(oth-)630
+1588 y(erwise)36 b(unmo)s(di\014ed,)e(is)i(assigned)f(to)h(the)g(v)-5
 b(ariable)36 b Ft(REPLY)p Fu(.)55 b(The)34 b(exit)j(status)e(is)h
-(zero,)630 1161 y(unless)i(end-of-\014le)h(is)f(encoun)m(tered,)j
+(zero,)630 1697 y(unless)i(end-of-\014le)h(is)f(encoun)m(tered,)j
 Ft(read)d Fu(times)h(out)f(\(in)h(whic)m(h)f(case)h(the)g(status)g(is)
-630 1271 y(greater)31 b(than)f(128\),)i(a)e(v)-5 b(ariable)30
+630 1807 y(greater)31 b(than)f(128\),)i(a)e(v)-5 b(ariable)30
 b(assignmen)m(t)h(error)f(\(suc)m(h)f(as)i(assigning)f(to)h(a)f
-(readonly)630 1380 y(v)-5 b(ariable\))30 b(o)s(ccurs,)f(or)f(an)h(in)m
+(readonly)630 1917 y(v)-5 b(ariable\))30 b(o)s(ccurs,)f(or)f(an)h(in)m
 (v)-5 b(alid)29 b(\014le)g(descriptor)f(is)h(supplied)e(as)i(the)g
-(argumen)m(t)g(to)g Ft(-u)p Fu(.)150 1538 y Ft(readarray)870
-1647 y(readarray)45 b([-d)i Fj(delim)p Ft(])f([-n)h Fj(count)p
+(argumen)m(t)g(to)g Ft(-u)p Fu(.)150 2068 y Ft(readarray)870
+2178 y(readarray)45 b([-d)i Fj(delim)p Ft(])f([-n)h Fj(count)p
 Ft(])f([-O)h Fj(origin)p Ft(])f([-s)h Fj(count)p Ft(])1061
-1757 y([-t])g([-u)f Fj(fd)p Ft(])h([-C)g Fj(callback)p
+2287 y([-t])g([-u)f Fj(fd)p Ft(])h([-C)g Fj(callback)p
 Ft(])f([-c)g Fj(quantum)p Ft(])g([)p Fj(array)p Ft(])630
-1890 y Fu(Read)38 b(lines)f(from)g(the)h(standard)e(input)g(in)m(to)j
+2418 y Fu(Read)38 b(lines)f(from)g(the)h(standard)e(input)g(in)m(to)j
 (the)e(indexed)g(arra)m(y)h(v)-5 b(ariable)38 b Fr(arra)m(y)p
-Fu(,)i(or)630 2000 y(from)30 b(\014le)g(descriptor)h
+Fu(,)i(or)630 2527 y(from)30 b(\014le)g(descriptor)h
 Fr(fd)i Fu(if)d(the)h Ft(-u)e Fu(option)i(is)g(supplied.)630
-2133 y(A)f(synon)m(ym)g(for)g Ft(mapfile)p Fu(.)150 2291
-y Ft(source)870 2424 y(source)46 b Fj(filename)630 2557
+2658 y(A)f(synon)m(ym)g(for)g Ft(mapfile)p Fu(.)150 2809
+y Ft(source)870 2939 y(source)46 b Fj(filename)630 3070
 y Fu(A)30 b(synon)m(ym)g(for)g Ft(.)g Fu(\(see)i(Section)f(4.1)g
-([Bourne)g(Shell)f(Builtins],)h(page)g(48\).)150 2715
-y Ft(type)870 2848 y(type)47 b([-afptP])e([)p Fj(name)i
-Ft(...)o(])630 2981 y Fu(F)-8 b(or)42 b(eac)m(h)g Fr(name)p
+([Bourne)g(Shell)f(Builtins],)h(page)g(49\).)150 3221
+y Ft(type)870 3352 y(type)47 b([-afptP])e([)p Fj(name)i
+Ft(...)o(])630 3482 y Fu(F)-8 b(or)42 b(eac)m(h)g Fr(name)p
 Fu(,)i(indicate)e(ho)m(w)g(it)f(w)m(ould)g(b)s(e)g(in)m(terpreted)g(if)
-g(used)f(as)i(a)f(command)630 3091 y(name.)630 3224 y(If)g(the)g
+g(used)f(as)i(a)f(command)630 3592 y(name.)630 3722 y(If)g(the)g
 Ft(-t)g Fu(option)h(is)f(used,)j Ft(type)c Fu(prin)m(ts)h(a)h(single)g
 (w)m(ord)f(whic)m(h)g(is)g(one)h(of)g(`)p Ft(alias)p
-Fu(',)630 3334 y(`)p Ft(keyword)p Fu(',)32 b(`)p Ft(function)p
+Fu(',)630 3832 y(`)p Ft(keyword)p Fu(',)32 b(`)p Ft(function)p
 Fu(',)g(`)p Ft(builtin)p Fu(',)g(or)h(`)p Ft(file)p Fu(',)g(if)g
 Fr(name)38 b Fu(is)33 b(an)g(alias,)i(shell)e(reserv)m(ed)630
-3444 y(w)m(ord,)39 b(shell)e(function,)i(shell)e(builtin,)i(or)e
+3941 y(w)m(ord,)39 b(shell)e(function,)i(shell)e(builtin,)i(or)e
 (executable)i(disk)d(\014le,)j(resp)s(ectiv)m(ely)-8
-b(.)63 b(If)37 b(the)630 3553 y Fr(name)f Fu(is)30 b(not)h(found,)e
+b(.)63 b(If)37 b(the)630 4051 y Fr(name)f Fu(is)30 b(not)h(found,)e
 (then)h(nothing)g(is)h(prin)m(ted,)f(and)g Ft(type)f
-Fu(returns)g(a)i(failure)f(status.)630 3687 y(If)25 b(the)h
+Fu(returns)g(a)i(failure)f(status.)630 4181 y(If)25 b(the)h
 Ft(-p)f Fu(option)g(is)h(used,)g Ft(type)e Fu(either)i(returns)e(the)i
-(name)f(of)h(the)g(executable)h(\014le)e(that)630 3796
+(name)f(of)h(the)g(executable)h(\014le)e(that)630 4291
 y(w)m(ould)30 b(b)s(e)g(found)f(b)m(y)h(searc)m(hing)h
 Ft($PATH)p Fu(,)f(or)g(nothing)g(if)h Ft(-t)e Fu(w)m(ould)i(not)f
-(return)f(`)p Ft(file)p Fu('.)630 3930 y(The)h Ft(-P)g
+(return)f(`)p Ft(file)p Fu('.)630 4422 y(The)h Ft(-P)g
 Fu(option)h(forces)g(a)g(path)f(searc)m(h)h(for)g(eac)m(h)g
 Fr(name)p Fu(,)g(ev)m(en)g(if)g Ft(-t)f Fu(w)m(ould)g(not)h(return)630
-4039 y(`)p Ft(file)p Fu('.)630 4173 y(If)e(a)h Fr(name)k
+4531 y(`)p Ft(file)p Fu('.)630 4662 y(If)e(a)h Fr(name)k
 Fu(is)29 b(presen)m(t)h(in)f(the)g(table)h(of)g(hashed)e(commands,)i
-(options)f Ft(-p)g Fu(and)g Ft(-P)f Fu(prin)m(t)630 4282
+(options)f Ft(-p)g Fu(and)g Ft(-P)f Fu(prin)m(t)630 4771
 y(the)j(hashed)e(v)-5 b(alue,)31 b(whic)m(h)f(is)h(not)f(necessarily)i
 (the)e(\014le)h(that)g(app)s(ears)e(\014rst)h(in)g Ft($PATH)p
-Fu(.)630 4416 y(If)e(the)h Ft(-a)f Fu(option)h(is)f(used,)h
+Fu(.)630 4902 y(If)e(the)h Ft(-a)f Fu(option)h(is)f(used,)h
 Ft(type)e Fu(returns)g(all)j(of)e(the)h(places)g(that)g(con)m(tain)h(a)
-f(command)630 4525 y(named)c Fr(name)p Fu(.)39 b(This)25
+f(command)630 5011 y(named)c Fr(name)p Fu(.)39 b(This)25
 b(includes)g(aliases,)j(reserv)m(ed)e(w)m(ords,)g(functions,)h(and)d
-(builtins,)j(but)630 4635 y(the)34 b(path)f(searc)m(h)i(options)f(\()p
+(builtins,)j(but)630 5121 y(the)34 b(path)f(searc)m(h)i(options)f(\()p
 Ft(-p)f Fu(and)h Ft(-P)p Fu(\))f(can)h(b)s(e)f(supplied)g(to)h
-(restrict)h(the)f(output)f(to)630 4744 y(executable)k(\014les.)55
+(restrict)h(the)f(output)f(to)630 5230 y(executable)k(\014les.)55
 b(If)34 b Ft(-a)h Fu(is)g(supplied)f(with)h Ft(-p)p Fu(,)h
 Ft(type)e Fu(do)s(es)g(not)i(lo)s(ok)g(in)e(the)i(table)g(of)630
-4854 y(hashed)30 b(commands,)g(and)g(only)g(p)s(erforms)f(a)i
-Ft(PATH)e Fu(searc)m(h)i(for)f Fr(name)p Fu(.)630 4987
-y(If)g(the)g Ft(-f)g Fu(option)g(is)h(used,)e Ft(type)g
-Fu(do)s(es)h(not)h(attempt)g(to)g(\014nd)d(shell)j(functions,)f(as)g
-(with)630 5097 y(the)h Ft(command)d Fu(builtin.)630 5230
-y(The)j(return)e(status)j(is)f(zero)h(if)f(all)g(of)h(the)f
-Fr(name)5 b Fu(s)31 b(are)g(found,)f(non-zero)i(if)f(an)m(y)g(are)h
-(not)630 5340 y(found.)p eop end
-%%Page: 66 72
-TeXDict begin 66 71 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(66)150 299 y Ft(typeset)870
-435 y(typeset)46 b([-afFgrxilnrtux])d([-p])k([)p Fj(name)p
-Ft([=)p Fj(value)p Ft(])d(...)o(])630 571 y Fu(The)31
-b Ft(typeset)e Fu(command)i(is)g(supplied)f(for)h(compatibilit)m(y)i
-(with)e(the)g(Korn)f(shell.)44 b(It)31 b(is)630 680 y(a)g(synon)m(ym)f
-(for)g(the)g Ft(declare)f Fu(builtin)h(command.)150 842
-y Ft(ulimit)870 978 y(ulimit)46 b([-HS])g(-a)870 1088
-y(ulimit)g([-HS])g([-bcdefiklmnpqrstuvxPRT])c([)p Fj(limit)p
-Ft(])630 1224 y(ulimit)25 b Fu(pro)m(vides)h(con)m(trol)i(o)m(v)m(er)g
-(the)f(resources)f(a)m(v)-5 b(ailable)29 b(to)e(pro)s(cesses)f(started)
-h(b)m(y)g(the)630 1333 y(shell,)i(on)f(systems)g(that)h(allo)m(w)h(suc)
-m(h)e(con)m(trol.)41 b(If)28 b(an)g(option)h(is)f(giv)m(en,)i(it)e(is)h
-(in)m(terpreted)630 1443 y(as)i(follo)m(ws:)630 1605
-y Ft(-S)384 b Fu(Change)30 b(and)g(rep)s(ort)g(the)g(soft)h(limit)g
-(asso)s(ciated)h(with)e(a)h(resource.)630 1767 y Ft(-H)384
-b Fu(Change)30 b(and)g(rep)s(ort)g(the)g(hard)g(limit)h(asso)s(ciated)h
-(with)e(a)h(resource.)630 1930 y Ft(-a)384 b Fu(All)31
-b(curren)m(t)f(limits)h(are)g(rep)s(orted;)f(no)g(limits)h(are)g(set.)
-630 2092 y Ft(-b)384 b Fu(The)30 b(maxim)m(um)g(so)s(c)m(k)m(et)i
-(bu\013er)e(size.)630 2254 y Ft(-c)384 b Fu(The)30 b(maxim)m(um)g(size)
-h(of)g(core)g(\014les)f(created.)630 2416 y Ft(-d)384
-b Fu(The)30 b(maxim)m(um)g(size)h(of)g(a)g(pro)s(cess's)f(data)h
-(segmen)m(t.)630 2578 y Ft(-e)384 b Fu(The)30 b(maxim)m(um)g(sc)m
-(heduling)h(priorit)m(y)f(\()p Ft(")p Fu(nice)p Ft(")p
-Fu(\).)630 2741 y Ft(-f)384 b Fu(The)30 b(maxim)m(um)g(size)h(of)g
-(\014les)f(written)h(b)m(y)f(the)g(shell)h(and)f(its)h(c)m(hildren.)630
-2903 y Ft(-i)384 b Fu(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i(p)s
-(ending)e(signals.)630 3065 y Ft(-k)384 b Fu(The)30 b(maxim)m(um)g(n)m
-(um)m(b)s(er)f(of)i(kqueues)f(that)h(ma)m(y)g(b)s(e)e(allo)s(cated.)630
-3227 y Ft(-l)384 b Fu(The)30 b(maxim)m(um)g(size)h(that)g(ma)m(y)g(b)s
-(e)f(lo)s(c)m(k)m(ed)i(in)m(to)f(memory)-8 b(.)630 3389
+5340 y(hashed)30 b(commands,)g(and)g(only)g(p)s(erforms)f(a)i
+Ft(PATH)e Fu(searc)m(h)i(for)f Fr(name)p Fu(.)p eop end
+%%Page: 67 73
+TeXDict begin 67 72 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(67)630 299 y(If)30
+b(the)g Ft(-f)g Fu(option)g(is)h(used,)e Ft(type)g Fu(do)s(es)h(not)h
+(attempt)g(to)g(\014nd)d(shell)j(functions,)f(as)g(with)630
+408 y(the)h Ft(command)d Fu(builtin.)630 540 y(The)j(return)e(status)j
+(is)f(zero)h(if)f(all)g(of)h(the)f Fr(name)5 b Fu(s)31
+b(are)g(found,)f(non-zero)i(if)f(an)m(y)g(are)h(not)630
+650 y(found.)150 804 y Ft(typeset)870 936 y(typeset)46
+b([-afFgrxilnrtux])d([-p])k([)p Fj(name)p Ft([=)p Fj(value)p
+Ft(])d(...)o(])630 1068 y Fu(The)31 b Ft(typeset)e Fu(command)i(is)g
+(supplied)f(for)h(compatibilit)m(y)i(with)e(the)g(Korn)f(shell.)44
+b(It)31 b(is)630 1178 y(a)g(synon)m(ym)f(for)g(the)g
+Ft(declare)f Fu(builtin)h(command.)150 1332 y Ft(ulimit)870
+1464 y(ulimit)46 b([-HS])g(-a)870 1574 y(ulimit)g([-HS])g
+([-bcdefiklmnpqrstuvxPRT])c([)p Fj(limit)p Ft(])630 1706
+y(ulimit)25 b Fu(pro)m(vides)h(con)m(trol)i(o)m(v)m(er)g(the)f
+(resources)f(a)m(v)-5 b(ailable)29 b(to)e(pro)s(cesses)f(started)h(b)m
+(y)g(the)630 1815 y(shell,)i(on)f(systems)g(that)h(allo)m(w)h(suc)m(h)e
+(con)m(trol.)41 b(If)28 b(an)g(option)h(is)f(giv)m(en,)i(it)e(is)h(in)m
+(terpreted)630 1925 y(as)i(follo)m(ws:)630 2079 y Ft(-S)384
+b Fu(Change)30 b(and)g(rep)s(ort)g(the)g(soft)h(limit)g(asso)s(ciated)h
+(with)e(a)h(resource.)630 2233 y Ft(-H)384 b Fu(Change)30
+b(and)g(rep)s(ort)g(the)g(hard)g(limit)h(asso)s(ciated)h(with)e(a)h
+(resource.)630 2388 y Ft(-a)384 b Fu(All)31 b(curren)m(t)f(limits)h
+(are)g(rep)s(orted;)f(no)g(limits)h(are)g(set.)630 2542
+y Ft(-b)384 b Fu(The)30 b(maxim)m(um)g(so)s(c)m(k)m(et)i(bu\013er)e
+(size.)630 2696 y Ft(-c)384 b Fu(The)30 b(maxim)m(um)g(size)h(of)g
+(core)g(\014les)f(created.)630 2851 y Ft(-d)384 b Fu(The)30
+b(maxim)m(um)g(size)h(of)g(a)g(pro)s(cess's)f(data)h(segmen)m(t.)630
+3005 y Ft(-e)384 b Fu(The)30 b(maxim)m(um)g(sc)m(heduling)h(priorit)m
+(y)f(\()p Ft(")p Fu(nice)p Ft(")p Fu(\).)630 3159 y Ft(-f)384
+b Fu(The)30 b(maxim)m(um)g(size)h(of)g(\014les)f(written)h(b)m(y)f(the)
+g(shell)h(and)f(its)h(c)m(hildren.)630 3314 y Ft(-i)384
+b Fu(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i(p)s(ending)e
+(signals.)630 3468 y Ft(-k)384 b Fu(The)30 b(maxim)m(um)g(n)m(um)m(b)s
+(er)f(of)i(kqueues)f(that)h(ma)m(y)g(b)s(e)e(allo)s(cated.)630
+3622 y Ft(-l)384 b Fu(The)30 b(maxim)m(um)g(size)h(that)g(ma)m(y)g(b)s
+(e)f(lo)s(c)m(k)m(ed)i(in)m(to)f(memory)-8 b(.)630 3777
 y Ft(-m)384 b Fu(The)36 b(maxim)m(um)g(residen)m(t)h(set)g(size)g
-(\(man)m(y)g(systems)f(do)h(not)f(honor)g(this)1110 3499
-y(limit\).)630 3661 y Ft(-n)384 b Fu(The)38 b(maxim)m(um)h(n)m(um)m(b)s
+(\(man)m(y)g(systems)f(do)h(not)f(honor)g(this)1110 3886
+y(limit\).)630 4041 y Ft(-n)384 b Fu(The)38 b(maxim)m(um)h(n)m(um)m(b)s
 (er)e(of)i(op)s(en)f(\014le)h(descriptors)g(\(most)g(systems)g(do)1110
-3771 y(not)31 b(allo)m(w)g(this)g(v)-5 b(alue)31 b(to)g(b)s(e)e(set\).)
-630 3933 y Ft(-p)384 b Fu(The)30 b(pip)s(e)f(bu\013er)h(size.)630
-4095 y Ft(-q)384 b Fu(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i(b)m
-(ytes)g(in)f Fm(posix)f Fu(message)j(queues.)630 4257
+4150 y(not)31 b(allo)m(w)g(this)g(v)-5 b(alue)31 b(to)g(b)s(e)e(set\).)
+630 4304 y Ft(-p)384 b Fu(The)30 b(pip)s(e)f(bu\013er)h(size.)630
+4459 y Ft(-q)384 b Fu(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i(b)m
+(ytes)g(in)f Fm(posix)f Fu(message)j(queues.)630 4613
 y Ft(-r)384 b Fu(The)30 b(maxim)m(um)g(real-time)i(sc)m(heduling)f
-(priorit)m(y)-8 b(.)630 4419 y Ft(-s)384 b Fu(The)30
-b(maxim)m(um)g(stac)m(k)i(size.)630 4582 y Ft(-t)384
+(priorit)m(y)-8 b(.)630 4767 y Ft(-s)384 b Fu(The)30
+b(maxim)m(um)g(stac)m(k)i(size.)630 4922 y Ft(-t)384
 b Fu(The)30 b(maxim)m(um)g(amoun)m(t)h(of)f(cpu)g(time)h(in)f(seconds.)
-630 4744 y Ft(-u)384 b Fu(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i
+630 5076 y Ft(-u)384 b Fu(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i
 (pro)s(cesses)f(a)m(v)-5 b(ailable)33 b(to)e(a)f(single)i(user.)630
-4906 y Ft(-v)384 b Fu(The)41 b(maxim)m(um)h(amoun)m(t)g(of)h(virtual)f
+5230 y Ft(-v)384 b Fu(The)41 b(maxim)m(um)h(amoun)m(t)g(of)h(virtual)f
 (memory)g(a)m(v)-5 b(ailable)44 b(to)e(the)g(shell,)1110
-5016 y(and,)30 b(on)g(some)h(systems,)g(to)g(its)g(c)m(hildren.)630
-5178 y Ft(-x)384 b Fu(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i
-(\014le)f(lo)s(c)m(ks.)630 5340 y Ft(-P)384 b Fu(The)30
-b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i(pseudoterminals.)p
+5340 y(and,)30 b(on)g(some)h(systems,)g(to)g(its)g(c)m(hildren.)p
 eop end
-%%Page: 67 73
-TeXDict begin 67 72 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(67)630 299 y Ft(-R)384
-b Fu(The)27 b(maxim)m(um)h(time)h(a)f(real-time)i(pro)s(cess)d(can)i
-(run)d(b)s(efore)i(blo)s(c)m(king,)h(in)1110 408 y(microseconds.)630
-565 y Ft(-T)384 b Fu(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i
-(threads.)630 722 y(If)36 b Fr(limit)k Fu(is)c(giv)m(en,)k(and)c(the)h
+%%Page: 68 74
+TeXDict begin 68 73 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(68)630 299 y Ft(-x)384
+b Fu(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i(\014le)f(lo)s(c)m
+(ks.)630 462 y Ft(-P)384 b Fu(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f
+(of)i(pseudoterminals.)630 624 y Ft(-R)384 b Fu(The)27
+b(maxim)m(um)h(time)h(a)f(real-time)i(pro)s(cess)d(can)i(run)d(b)s
+(efore)i(blo)s(c)m(king,)h(in)1110 734 y(microseconds.)630
+896 y Ft(-T)384 b Fu(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i
+(threads.)630 1059 y(If)36 b Fr(limit)k Fu(is)c(giv)m(en,)k(and)c(the)h
 Ft(-a)f Fu(option)h(is)f(not)h(used,)h Fr(limit)h Fu(is)e(the)g(new)f
-(v)-5 b(alue)37 b(of)g(the)630 832 y(sp)s(eci\014ed)c(resource.)51
+(v)-5 b(alue)37 b(of)g(the)630 1169 y(sp)s(eci\014ed)c(resource.)51
 b(The)34 b(sp)s(ecial)g Fr(limit)j Fu(v)-5 b(alues)34
 b Ft(hard)p Fu(,)g Ft(soft)p Fu(,)g(and)f Ft(unlimited)e
-Fu(stand)630 941 y(for)h(the)g(curren)m(t)g(hard)f(limit,)i(the)g
+Fu(stand)630 1278 y(for)h(the)g(curren)m(t)g(hard)f(limit,)i(the)g
 (curren)m(t)f(soft)g(limit,)h(and)f(no)g(limit,)h(resp)s(ectiv)m(ely)-8
-b(.)48 b(A)630 1051 y(hard)24 b(limit)i(cannot)g(b)s(e)e(increased)h(b)
+b(.)48 b(A)630 1388 y(hard)24 b(limit)i(cannot)g(b)s(e)e(increased)h(b)
 m(y)g(a)h(non-ro)s(ot)f(user)f(once)i(it)g(is)f(set;)j(a)d(soft)g
-(limit)h(ma)m(y)630 1161 y(b)s(e)37 b(increased)h(up)e(to)j(the)f(v)-5
+(limit)h(ma)m(y)630 1497 y(b)s(e)37 b(increased)h(up)e(to)j(the)f(v)-5
 b(alue)38 b(of)f(the)h(hard)f(limit.)63 b(Otherwise,)39
-b(the)f(curren)m(t)f(v)-5 b(alue)630 1270 y(of)39 b(the)g(soft)h(limit)
+b(the)f(curren)m(t)f(v)-5 b(alue)630 1607 y(of)39 b(the)g(soft)h(limit)
 g(for)f(the)g(sp)s(eci\014ed)f(resource)h(is)g(prin)m(ted,)i(unless)e
-(the)g Ft(-H)f Fu(option)i(is)630 1380 y(supplied.)47
+(the)g Ft(-H)f Fu(option)i(is)630 1717 y(supplied.)47
 b(When)33 b(more)g(than)g(one)g(resource)g(is)g(sp)s(eci\014ed,)g(the)g
-(limit)h(name)f(and)f(unit,)630 1489 y(if)27 b(appropriate,)h(are)f
+(limit)h(name)f(and)f(unit,)630 1826 y(if)27 b(appropriate,)h(are)f
 (prin)m(ted)g(b)s(efore)g(the)g(v)-5 b(alue.)40 b(When)27
-b(setting)h(new)e(limits,)j(if)e(neither)630 1599 y Ft(-H)38
+b(setting)h(new)e(limits,)j(if)e(neither)630 1936 y Ft(-H)38
 b Fu(nor)g Ft(-S)g Fu(is)h(supplied,)h(b)s(oth)e(the)h(hard)f(and)g
 (soft)h(limits)g(are)g(set.)67 b(If)38 b(no)h(option)g(is)630
-1709 y(giv)m(en,)c(then)f Ft(-f)e Fu(is)i(assumed.)49
+2045 y(giv)m(en,)c(then)f Ft(-f)e Fu(is)i(assumed.)49
 b(V)-8 b(alues)35 b(are)e(in)h(1024-b)m(yte)i(incremen)m(ts,)f(except)f
-(for)f Ft(-t)p Fu(,)630 1818 y(whic)m(h)e(is)g(in)g(seconds;)h
+(for)f Ft(-t)p Fu(,)630 2155 y(whic)m(h)e(is)g(in)g(seconds;)h
 Ft(-R)p Fu(,)g(whic)m(h)f(is)g(in)g(microseconds;)h Ft(-p)p
-Fu(,)g(whic)m(h)f(is)g(in)g(units)g(of)g(512-)630 1928
+Fu(,)g(whic)m(h)f(is)g(in)g(units)g(of)g(512-)630 2265
 y(b)m(yte)k(blo)s(c)m(ks;)j Ft(-P)p Fu(,)e Ft(-T)p Fu(,)f
 Ft(-b)p Fu(,)h Ft(-k)p Fu(,)f Ft(-n)g Fu(and)f Ft(-u)p
 Fu(,)h(whic)m(h)g(are)g(unscaled)g(v)-5 b(alues;)37 b(and,)f(when)630
-2037 y(in)g Fm(posix)f Fu(Mo)s(de)h(\(see)g(Section)h(6.11)g([Bash)g
-(POSIX)d(Mo)s(de],)k(page)f(107\),)i Ft(-c)c Fu(and)g
-Ft(-f)p Fu(,)630 2147 y(whic)m(h)30 b(are)h(in)f(512-b)m(yte)j
-(incremen)m(ts.)630 2280 y(The)h(return)g(status)h(is)f(zero)i(unless)e
+2374 y(in)g Fm(posix)f Fu(Mo)s(de)h(\(see)g(Section)h(6.11)g([Bash)g
+(POSIX)d(Mo)s(de],)k(page)f(108\),)i Ft(-c)c Fu(and)g
+Ft(-f)p Fu(,)630 2484 y(whic)m(h)30 b(are)h(in)f(512-b)m(yte)j
+(incremen)m(ts.)630 2620 y(The)h(return)g(status)h(is)f(zero)i(unless)e
 (an)g(in)m(v)-5 b(alid)36 b(option)f(or)f(argumen)m(t)i(is)e(supplied,)
-h(or)630 2390 y(an)30 b(error)g(o)s(ccurs)g(while)h(setting)g(a)g(new)f
-(limit.)150 2547 y Ft(unalias)870 2680 y(unalias)46 b([-a])g([)p
-Fj(name)h Ft(...)g(])630 2813 y Fu(Remo)m(v)m(e)42 b(eac)m(h)f
+h(or)630 2729 y(an)30 b(error)g(o)s(ccurs)g(while)h(setting)g(a)g(new)f
+(limit.)150 2892 y Ft(unalias)870 3028 y(unalias)46 b([-a])g([)p
+Fj(name)h Ft(...)g(])630 3164 y Fu(Remo)m(v)m(e)42 b(eac)m(h)f
 Fr(name)k Fu(from)39 b(the)i(list)f(of)g(aliases.)71
 b(If)40 b Ft(-a)f Fu(is)h(supplied,)h(all)g(aliases)h(are)630
-2923 y(remo)m(v)m(ed.)g(Aliases)31 b(are)g(describ)s(ed)e(in)h(Section)
-i(6.6)f([Aliases],)h(page)f(101.)150 3161 y Fs(4.3)68
-b(Mo)t(difying)45 b(Shell)g(Beha)l(vior)150 3384 y Fk(4.3.1)63
-b(The)41 b(Set)g(Builtin)150 3531 y Fu(This)35 b(builtin)h(is)g(so)g
+3274 y(remo)m(v)m(ed.)g(Aliases)31 b(are)g(describ)s(ed)e(in)h(Section)
+i(6.6)f([Aliases],)h(page)f(102.)150 3520 y Fs(4.3)68
+b(Mo)t(difying)45 b(Shell)g(Beha)l(vior)150 3744 y Fk(4.3.1)63
+b(The)41 b(Set)g(Builtin)150 3891 y Fu(This)35 b(builtin)h(is)g(so)g
 (complicated)i(that)f(it)f(deserv)m(es)h(its)f(o)m(wn)g(section.)59
 b Ft(set)35 b Fu(allo)m(ws)j(y)m(ou)e(to)h(c)m(hange)150
-3640 y(the)c(v)-5 b(alues)34 b(of)f(shell)g(options)h(and)e(set)i(the)f
+4000 y(the)c(v)-5 b(alues)34 b(of)f(shell)g(options)h(and)e(set)i(the)f
 (p)s(ositional)h(parameters,)h(or)e(to)h(displa)m(y)f(the)g(names)h
-(and)150 3750 y(v)-5 b(alues)31 b(of)f(shell)h(v)-5 b(ariables.)150
-3907 y Ft(set)870 4040 y(set)47 b([-abefhkmnptuvxBCEHPT])42
+(and)150 4110 y(v)-5 b(alues)31 b(of)f(shell)h(v)-5 b(ariables.)150
+4274 y Ft(set)870 4410 y(set)47 b([-abefhkmnptuvxBCEHPT])42
 b([-o)47 b Fj(option-name)p Ft(])d([--])j([-])g([)p Fj(argument)e
-Ft(...)o(])870 4150 y(set)i([+abefhkmnptuvxBCEHPT])42
+Ft(...)o(])870 4520 y(set)i([+abefhkmnptuvxBCEHPT])42
 b([+o)47 b Fj(option-name)p Ft(])d([--])j([-])g([)p Fj(argument)e
-Ft(...)o(])630 4283 y Fu(If)22 b(no)h(options)g(or)g(argumen)m(ts)g
+Ft(...)o(])630 4656 y Fu(If)22 b(no)h(options)g(or)g(argumen)m(ts)g
 (are)g(supplied,)g Ft(set)f Fu(displa)m(ys)g(the)h(names)g(and)f(v)-5
-b(alues)23 b(of)g(all)630 4392 y(shell)j(v)-5 b(ariables)27
+b(alues)23 b(of)g(all)630 4766 y(shell)j(v)-5 b(ariables)27
 b(and)e(functions,)h(sorted)g(according)h(to)g(the)f(curren)m(t)f(lo)s
-(cale,)k(in)c(a)i(format)630 4502 y(that)i(ma)m(y)h(b)s(e)e(reused)g
+(cale,)k(in)c(a)i(format)630 4875 y(that)i(ma)m(y)h(b)s(e)e(reused)g
 (as)h(input)f(for)h(setting)h(or)e(resetting)i(the)f(curren)m(tly-set)h
-(v)-5 b(ariables.)630 4612 y(Read-only)37 b(v)-5 b(ariables)37
+(v)-5 b(ariables.)630 4985 y(Read-only)37 b(v)-5 b(ariables)37
 b(cannot)h(b)s(e)e(reset.)59 b(In)36 b Fm(posix)g Fu(mo)s(de,)i(only)f
-(shell)f(v)-5 b(ariables)38 b(are)630 4721 y(listed.)630
-4854 y(When)29 b(options)g(are)g(supplied,)f(they)h(set)h(or)f(unset)f
+(shell)f(v)-5 b(ariables)38 b(are)630 5094 y(listed.)630
+5230 y(When)29 b(options)g(are)g(supplied,)f(they)h(set)h(or)f(unset)f
 (shell)h(attributes.)41 b(Options,)29 b(if)g(sp)s(ec-)630
-4964 y(i\014ed,)h(ha)m(v)m(e)i(the)e(follo)m(wing)i(meanings:)630
-5121 y Ft(-a)384 b Fu(Eac)m(h)37 b(v)-5 b(ariable)36
-b(or)g(function)g(that)g(is)g(created)h(or)f(mo)s(di\014ed)f(is)h(giv)m
-(en)h(the)1110 5230 y(exp)s(ort)28 b(attribute)h(and)f(mark)m(ed)g(for)
-g(exp)s(ort)g(to)h(the)g(en)m(vironmen)m(t)f(of)h(sub-)1110
-5340 y(sequen)m(t)i(commands.)p eop end
-%%Page: 68 74
-TeXDict begin 68 73 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(68)630 299 y Ft(-b)384
-b Fu(Cause)44 b(the)h(status)g(of)f(terminated)h(bac)m(kground)g(jobs)f
-(to)h(b)s(e)f(rep)s(orted)1110 408 y(immediately)-8 b(,)30
-b(rather)d(than)f(b)s(efore)h(prin)m(ting)g(the)g(next)g(primary)g
-(prompt.)630 555 y Ft(-e)384 b Fu(Exit)65 b(immediately)g(if)f(a)h(pip)
-s(eline)e(\(see)i(Section)g(3.2.3)h([Pip)s(elines],)1110
-664 y(page)51 b(10\),)58 b(whic)m(h)50 b(ma)m(y)h(consist)h(of)e(a)i
-(single)f(simple)g(command)f(\(see)1110 774 y(Section)30
-b(3.2.2)i([Simple)d(Commands],)g(page)h(9\),)h(a)f(list)g(\(see)h
-(Section)f(3.2.4)1110 883 y([Lists],)60 b(page)55 b(10\),)60
-b(or)54 b(a)g(comp)s(ound)e(command)h(\(see)i(Section)f(3.2.5)1110
-993 y([Comp)s(ound)60 b(Commands],)70 b(page)63 b(11\))g(returns)e(a)i
-(non-zero)f(status.)1110 1103 y(The)41 b(shell)g(do)s(es)g(not)g(exit)h
-(if)f(the)h(command)f(that)h(fails)f(is)g(part)g(of)h(the)1110
-1212 y(command)g(list)h(immediately)g(follo)m(wing)g(a)g
-Ft(while)e Fu(or)h Ft(until)e Fu(k)m(eyw)m(ord,)1110
-1322 y(part)61 b(of)g(the)g(test)h(in)e(an)h Ft(if)f
-Fu(statemen)m(t,)71 b(part)61 b(of)g(an)m(y)g(command)1110
-1431 y(executed)50 b(in)e(a)h Ft(&&)f Fu(or)h Ft(||)f
-Fu(list)h(except)g(the)g(command)g(follo)m(wing)h(the)1110
-1541 y(\014nal)37 b Ft(&&)g Fu(or)g Ft(||)p Fu(,)h(an)m(y)g(command)f
+5340 y(i\014ed,)h(ha)m(v)m(e)i(the)e(follo)m(wing)i(meanings:)p
+eop end
+%%Page: 69 75
+TeXDict begin 69 74 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(69)630 299 y Ft(-a)384
+b Fu(Eac)m(h)37 b(v)-5 b(ariable)36 b(or)g(function)g(that)g(is)g
+(created)h(or)f(mo)s(di\014ed)f(is)h(giv)m(en)h(the)1110
+408 y(exp)s(ort)28 b(attribute)h(and)f(mark)m(ed)g(for)g(exp)s(ort)g
+(to)h(the)g(en)m(vironmen)m(t)f(of)h(sub-)1110 518 y(sequen)m(t)i
+(commands.)630 682 y Ft(-b)384 b Fu(Cause)44 b(the)h(status)g(of)f
+(terminated)h(bac)m(kground)g(jobs)f(to)h(b)s(e)f(rep)s(orted)1110
+792 y(immediately)-8 b(,)30 b(rather)d(than)f(b)s(efore)h(prin)m(ting)g
+(the)g(next)g(primary)g(prompt.)630 956 y Ft(-e)384 b
+Fu(Exit)65 b(immediately)g(if)f(a)h(pip)s(eline)e(\(see)i(Section)g
+(3.2.3)h([Pip)s(elines],)1110 1066 y(page)51 b(10\),)58
+b(whic)m(h)50 b(ma)m(y)h(consist)h(of)e(a)i(single)f(simple)g(command)f
+(\(see)1110 1176 y(Section)30 b(3.2.2)i([Simple)d(Commands],)g(page)h
+(9\),)h(a)f(list)g(\(see)h(Section)f(3.2.4)1110 1285
+y([Lists],)60 b(page)55 b(10\),)60 b(or)54 b(a)g(comp)s(ound)e(command)
+h(\(see)i(Section)f(3.2.5)1110 1395 y([Comp)s(ound)60
+b(Commands],)70 b(page)63 b(11\))g(returns)e(a)i(non-zero)f(status.)
+1110 1504 y(The)41 b(shell)g(do)s(es)g(not)g(exit)h(if)f(the)h(command)
+f(that)h(fails)f(is)g(part)g(of)h(the)1110 1614 y(command)g(list)h
+(immediately)g(follo)m(wing)g(a)g Ft(while)e Fu(or)h
+Ft(until)e Fu(k)m(eyw)m(ord,)1110 1724 y(part)61 b(of)g(the)g(test)h
+(in)e(an)h Ft(if)f Fu(statemen)m(t,)71 b(part)61 b(of)g(an)m(y)g
+(command)1110 1833 y(executed)50 b(in)e(a)h Ft(&&)f Fu(or)h
+Ft(||)f Fu(list)h(except)g(the)g(command)g(follo)m(wing)h(the)1110
+1943 y(\014nal)37 b Ft(&&)g Fu(or)g Ft(||)p Fu(,)h(an)m(y)g(command)f
 (in)g(a)g(pip)s(eline)g(but)g(the)g(last,)j(or)e(if)f(the)1110
-1650 y(command's)c(return)f(status)h(is)g(b)s(eing)g(in)m(v)m(erted)h
+2052 y(command's)c(return)f(status)h(is)g(b)s(eing)g(in)m(v)m(erted)h
 (with)e Ft(!)p Fu(.)48 b(If)33 b(a)g(comp)s(ound)1110
-1760 y(command)g(other)g(than)f(a)i(subshell)d(returns)h(a)h(non-zero)h
-(status)f(b)s(ecause)1110 1870 y(a)k(command)g(failed)g(while)g
+2162 y(command)g(other)g(than)f(a)i(subshell)d(returns)h(a)h(non-zero)h
+(status)f(b)s(ecause)1110 2271 y(a)k(command)g(failed)g(while)g
 Ft(-e)f Fu(w)m(as)i(b)s(eing)e(ignored,)j(the)e(shell)g(do)s(es)g(not)
-1110 1979 y(exit.)42 b(A)30 b(trap)g(on)h Ft(ERR)p Fu(,)e(if)i(set,)g
+1110 2381 y(exit.)42 b(A)30 b(trap)g(on)h Ft(ERR)p Fu(,)e(if)i(set,)g
 (is)f(executed)i(b)s(efore)e(the)g(shell)h(exits.)1110
-2107 y(This)f(option)h(applies)f(to)h(the)g(shell)g(en)m(vironmen)m(t)g
-(and)f(eac)m(h)h(subshell)f(en-)1110 2217 y(vironmen)m(t)j(separately)i
+2518 y(This)f(option)h(applies)f(to)h(the)g(shell)g(en)m(vironmen)m(t)g
+(and)f(eac)m(h)h(subshell)f(en-)1110 2628 y(vironmen)m(t)j(separately)i
 (\(see)f(Section)g(3.7.3)h([Command)d(Execution)i(En-)1110
-2326 y(vironmen)m(t],)i(page)f(43\),)i(and)d(ma)m(y)h(cause)f
-(subshells)g(to)h(exit)g(b)s(efore)f(exe-)1110 2436 y(cuting)d(all)g
-(the)g(commands)f(in)g(the)g(subshell.)1110 2564 y(If)41
+2737 y(vironmen)m(t],)i(page)f(44\),)i(and)d(ma)m(y)h(cause)f
+(subshells)g(to)h(exit)g(b)s(efore)f(exe-)1110 2847 y(cuting)d(all)g
+(the)g(commands)f(in)g(the)g(subshell.)1110 2984 y(If)41
 b(a)g(comp)s(ound)e(command)i(or)g(shell)g(function)g(executes)h(in)f
-(a)g(con)m(text)1110 2673 y(where)31 b Ft(-e)g Fu(is)g(b)s(eing)g
+(a)g(con)m(text)1110 3093 y(where)31 b Ft(-e)g Fu(is)g(b)s(eing)g
 (ignored,)h(none)f(of)h(the)f(commands)g(executed)h(within)1110
-2783 y(the)j(comp)s(ound)f(command)h(or)g(function)f(b)s(o)s(dy)g(will)
-h(b)s(e)f(a\013ected)j(b)m(y)e(the)1110 2892 y Ft(-e)25
+3203 y(the)j(comp)s(ound)f(command)h(or)g(function)f(b)s(o)s(dy)g(will)
+h(b)s(e)f(a\013ected)j(b)m(y)e(the)1110 3313 y Ft(-e)25
 b Fu(setting,)j(ev)m(en)e(if)g Ft(-e)f Fu(is)h(set)g(and)f(a)h(command)
-g(returns)e(a)i(failure)g(status.)1110 3002 y(If)32 b(a)i(comp)s(ound)d
+g(returns)e(a)i(failure)g(status.)1110 3422 y(If)32 b(a)i(comp)s(ound)d
 (command)i(or)g(shell)g(function)f(sets)i Ft(-e)e Fu(while)h(executing)
-1110 3112 y(in)40 b(a)h(con)m(text)i(where)d Ft(-e)g
+1110 3532 y(in)40 b(a)h(con)m(text)i(where)d Ft(-e)g
 Fu(is)h(ignored,)j(that)d(setting)h(will)f(not)g(ha)m(v)m(e)h(an)m(y)
-1110 3221 y(e\013ect)g(un)m(til)e(the)h(comp)s(ound)e(command)h(or)g
-(the)g(command)g(con)m(taining)1110 3331 y(the)31 b(function)f(call)h
-(completes.)630 3477 y Ft(-f)384 b Fu(Disable)31 b(\014lename)g
-(expansion)f(\(globbing\).)630 3623 y Ft(-h)384 b Fu(Lo)s(cate)33
+1110 3641 y(e\013ect)g(un)m(til)e(the)h(comp)s(ound)e(command)h(or)g
+(the)g(command)g(con)m(taining)1110 3751 y(the)31 b(function)f(call)h
+(completes.)630 3915 y Ft(-f)384 b Fu(Disable)31 b(\014lename)g
+(expansion)f(\(globbing\).)630 4080 y Ft(-h)384 b Fu(Lo)s(cate)33
 b(and)e(remem)m(b)s(er)h(\(hash\))g(commands)f(as)h(they)g(are)g(lo)s
-(ok)m(ed)h(up)e(for)1110 3733 y(execution.)42 b(This)29
-b(option)i(is)g(enabled)f(b)m(y)g(default.)630 3879 y
+(ok)m(ed)h(up)e(for)1110 4189 y(execution.)42 b(This)29
+b(option)i(is)g(enabled)f(b)m(y)g(default.)630 4354 y
 Ft(-k)384 b Fu(All)34 b(argumen)m(ts)g(in)f(the)h(form)f(of)g
 (assignmen)m(t)h(statemen)m(ts)i(are)d(placed)h(in)1110
-3988 y(the)k(en)m(vironmen)m(t)g(for)g(a)g(command,)h(not)f(just)f
-(those)i(that)f(precede)g(the)1110 4098 y(command)30
-b(name.)630 4244 y Ft(-m)384 b Fu(Job)28 b(con)m(trol)h(is)f(enabled)g
-(\(see)h(Chapter)f(7)g([Job)g(Con)m(trol],)i(page)f(116\).)41
-b(All)1110 4354 y(pro)s(cesses)27 b(run)f(in)i(a)g(separate)g(pro)s
+4463 y(the)k(en)m(vironmen)m(t)g(for)g(a)g(command,)h(not)f(just)f
+(those)i(that)f(precede)g(the)1110 4573 y(command)30
+b(name.)630 4737 y Ft(-m)384 b Fu(Job)28 b(con)m(trol)h(is)f(enabled)g
+(\(see)h(Chapter)f(7)g([Job)g(Con)m(trol],)i(page)f(117\).)41
+b(All)1110 4847 y(pro)s(cesses)27 b(run)f(in)i(a)g(separate)g(pro)s
 (cess)f(group.)40 b(When)27 b(a)h(bac)m(kground)f(job)1110
-4463 y(completes,)32 b(the)f(shell)f(prin)m(ts)g(a)h(line)f(con)m
-(taining)i(its)f(exit)g(status.)630 4609 y Ft(-n)384
+4956 y(completes,)32 b(the)f(shell)f(prin)m(ts)g(a)h(line)f(con)m
+(taining)i(its)f(exit)g(status.)630 5121 y Ft(-n)384
 b Fu(Read)38 b(commands)f(but)f(do)i(not)f(execute)i(them.)62
-b(This)37 b(ma)m(y)h(b)s(e)f(used)f(to)1110 4719 y(c)m(hec)m(k)d(a)e
+b(This)37 b(ma)m(y)h(b)s(e)f(used)f(to)1110 5230 y(c)m(hec)m(k)d(a)e
 (script)g(for)g(syn)m(tax)h(errors.)42 b(This)30 b(option)i(is)f
-(ignored)g(b)m(y)g(in)m(terac-)1110 4829 y(tiv)m(e)h(shells.)630
-4975 y Ft(-o)e Fj(option-name)1110 5084 y Fu(Set)h(the)f(option)h
-(corresp)s(onding)e(to)i Fr(option-name)5 b Fu(:)1110
-5230 y Ft(allexport)1590 5340 y Fu(Same)30 b(as)h Ft(-a)p
-Fu(.)p eop end
-%%Page: 69 75
-TeXDict begin 69 74 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(69)1110 299 y
-Ft(braceexpand)1590 408 y Fu(Same)30 b(as)h Ft(-B)p Fu(.)1110
-573 y Ft(emacs)240 b Fu(Use)25 b(an)f Ft(emacs)p Fu(-st)m(yle)h(line)f
-(editing)h(in)m(terface)h(\(see)g(Chapter)e(8)1590 682
-y([Command)33 b(Line)g(Editing],)h(page)h(120\).)51 b(This)32
-b(also)i(a\013ects)1590 792 y(the)d(editing)g(in)m(terface)h(used)d
-(for)h Ft(read)f(-e)p Fu(.)1110 956 y Ft(errexit)144
-b Fu(Same)30 b(as)h Ft(-e)p Fu(.)1110 1121 y Ft(errtrace)96
-b Fu(Same)30 b(as)h Ft(-E)p Fu(.)1110 1285 y Ft(functrace)1590
-1395 y Fu(Same)f(as)h Ft(-T)p Fu(.)1110 1559 y Ft(hashall)144
-b Fu(Same)30 b(as)h Ft(-h)p Fu(.)1110 1724 y Ft(histexpand)1590
-1833 y Fu(Same)f(as)h Ft(-H)p Fu(.)1110 1998 y Ft(history)144
+(ignored)g(b)m(y)g(in)m(terac-)1110 5340 y(tiv)m(e)h(shells.)p
+eop end
+%%Page: 70 76
+TeXDict begin 70 75 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(70)630 299 y Ft(-o)30
+b Fj(option-name)1110 408 y Fu(Set)h(the)f(option)h(corresp)s(onding)e
+(to)i Fr(option-name)5 b Fu(:)1110 575 y Ft(allexport)1590
+685 y Fu(Same)30 b(as)h Ft(-a)p Fu(.)1110 852 y Ft(braceexpand)1590
+962 y Fu(Same)f(as)h Ft(-B)p Fu(.)1110 1129 y Ft(emacs)240
+b Fu(Use)25 b(an)f Ft(emacs)p Fu(-st)m(yle)h(line)f(editing)h(in)m
+(terface)h(\(see)g(Chapter)e(8)1590 1238 y([Command)33
+b(Line)g(Editing],)h(page)h(121\).)51 b(This)32 b(also)i(a\013ects)1590
+1348 y(the)d(editing)g(in)m(terface)h(used)d(for)h Ft(read)f(-e)p
+Fu(.)1110 1515 y Ft(errexit)144 b Fu(Same)30 b(as)h Ft(-e)p
+Fu(.)1110 1682 y Ft(errtrace)96 b Fu(Same)30 b(as)h Ft(-E)p
+Fu(.)1110 1849 y Ft(functrace)1590 1958 y Fu(Same)f(as)h
+Ft(-T)p Fu(.)1110 2125 y Ft(hashall)144 b Fu(Same)30
+b(as)h Ft(-h)p Fu(.)1110 2292 y Ft(histexpand)1590 2402
+y Fu(Same)f(as)h Ft(-H)p Fu(.)1110 2569 y Ft(history)144
 b Fu(Enable)39 b(command)g(history)-8 b(,)42 b(as)d(describ)s(ed)f(in)h
-(Section)h(9.1)1590 2107 y([Bash)d(History)g(F)-8 b(acilities],)41
-b(page)c(155.)60 b(This)36 b(option)h(is)f(on)1590 2217
+(Section)h(9.1)1590 2679 y([Bash)d(History)g(F)-8 b(acilities],)41
+b(page)c(156.)60 b(This)36 b(option)h(is)f(on)1590 2788
 y(b)m(y)30 b(default)h(in)f(in)m(teractiv)m(e)j(shells.)1110
-2381 y Ft(ignoreeof)1590 2491 y Fu(An)d(in)m(teractiv)m(e)j(shell)e
-(will)g(not)f(exit)h(up)s(on)e(reading)i(EOF.)1110 2655
+2955 y Ft(ignoreeof)1590 3065 y Fu(An)d(in)m(teractiv)m(e)j(shell)e
+(will)g(not)f(exit)h(up)s(on)e(reading)i(EOF.)1110 3232
 y Ft(keyword)144 b Fu(Same)30 b(as)h Ft(-k)p Fu(.)1110
-2819 y Ft(monitor)144 b Fu(Same)30 b(as)h Ft(-m)p Fu(.)1110
-2984 y Ft(noclobber)1590 3093 y Fu(Same)f(as)h Ft(-C)p
-Fu(.)1110 3258 y Ft(noexec)192 b Fu(Same)30 b(as)h Ft(-n)p
-Fu(.)1110 3422 y Ft(noglob)192 b Fu(Same)30 b(as)h Ft(-f)p
-Fu(.)1110 3587 y Ft(nolog)240 b Fu(Curren)m(tly)30 b(ignored.)1110
-3751 y Ft(notify)192 b Fu(Same)30 b(as)h Ft(-b)p Fu(.)1110
-3915 y Ft(nounset)144 b Fu(Same)30 b(as)h Ft(-u)p Fu(.)1110
-4080 y Ft(onecmd)192 b Fu(Same)30 b(as)h Ft(-t)p Fu(.)1110
-4244 y Ft(physical)96 b Fu(Same)30 b(as)h Ft(-P)p Fu(.)1110
-4408 y Ft(pipefail)96 b Fu(If)44 b(set,)k(the)d(return)e(v)-5
+3399 y Ft(monitor)144 b Fu(Same)30 b(as)h Ft(-m)p Fu(.)1110
+3566 y Ft(noclobber)1590 3675 y Fu(Same)f(as)h Ft(-C)p
+Fu(.)1110 3842 y Ft(noexec)192 b Fu(Same)30 b(as)h Ft(-n)p
+Fu(.)1110 4009 y Ft(noglob)192 b Fu(Same)30 b(as)h Ft(-f)p
+Fu(.)1110 4176 y Ft(nolog)240 b Fu(Curren)m(tly)30 b(ignored.)1110
+4343 y Ft(notify)192 b Fu(Same)30 b(as)h Ft(-b)p Fu(.)1110
+4510 y Ft(nounset)144 b Fu(Same)30 b(as)h Ft(-u)p Fu(.)1110
+4677 y Ft(onecmd)192 b Fu(Same)30 b(as)h Ft(-t)p Fu(.)1110
+4844 y Ft(physical)96 b Fu(Same)30 b(as)h Ft(-P)p Fu(.)1110
+5011 y Ft(pipefail)96 b Fu(If)44 b(set,)k(the)d(return)e(v)-5
 b(alue)45 b(of)f(a)h(pip)s(eline)e(is)i(the)f(v)-5 b(alue)45
-b(of)1590 4518 y(the)33 b(last)h(\(righ)m(tmost\))h(command)e(to)h
-(exit)g(with)f(a)g(non-zero)1590 4628 y(status,)28 b(or)f(zero)g(if)f
+b(of)1590 5121 y(the)33 b(last)h(\(righ)m(tmost\))h(command)e(to)h
+(exit)g(with)f(a)g(non-zero)1590 5230 y(status,)28 b(or)f(zero)g(if)f
 (all)i(commands)e(in)g(the)h(pip)s(eline)f(exit)i(suc-)1590
-4737 y(cessfully)-8 b(.)41 b(This)30 b(option)h(is)f(disabled)g(b)m(y)h
-(default.)1110 4902 y Ft(posix)240 b Fu(Change)30 b(the)g(b)s(eha)m
-(vior)h(of)f(Bash)g(where)g(the)g(default)h(op)s(era-)1590
-5011 y(tion)25 b(di\013ers)f(from)g(the)h Fm(posix)f
-Fu(standard)f(to)i(matc)m(h)h(the)f(stan-)1590 5121 y(dard)h(\(see)j
-(Section)f(6.11)h([Bash)f(POSIX)e(Mo)s(de],)j(page)f(107\).)1590
-5230 y(This)37 b(is)g(in)m(tended)g(to)h(mak)m(e)g(Bash)g(b)s(eha)m(v)m
-(e)g(as)g(a)f(strict)h(su-)1590 5340 y(p)s(erset)30 b(of)h(that)f
-(standard.)p eop end
-%%Page: 70 76
-TeXDict begin 70 75 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(70)1110 299 y
-Ft(privileged)1590 408 y Fu(Same)30 b(as)h Ft(-p)p Fu(.)1110
-569 y Ft(verbose)144 b Fu(Same)30 b(as)h Ft(-v)p Fu(.)1110
-729 y Ft(vi)384 b Fu(Use)36 b(a)g Ft(vi)p Fu(-st)m(yle)g(line)g
-(editing)g(in)m(terface.)58 b(This)35 b(also)h(a\013ects)1590
-838 y(the)31 b(editing)g(in)m(terface)h(used)d(for)h
-Ft(read)f(-e)p Fu(.)1110 999 y Ft(xtrace)192 b Fu(Same)30
-b(as)h Ft(-x)p Fu(.)630 1159 y Ft(-p)384 b Fu(T)-8 b(urn)33
-b(on)h(privileged)h(mo)s(de.)51 b(In)34 b(this)g(mo)s(de,)h(the)f
-Ft($BASH_ENV)e Fu(and)h Ft($ENV)1110 1268 y Fu(\014les)23
-b(are)h(not)f(pro)s(cessed,)h(shell)g(functions)e(are)i(not)f
-(inherited)g(from)f(the)i(en-)1110 1378 y(vironmen)m(t,)h(and)e(the)g
-Ft(SHELLOPTS)p Fu(,)f Ft(BASHOPTS)p Fu(,)h Ft(CDPATH)e
-Fu(and)i Ft(GLOBIGNORE)1110 1487 y Fu(v)-5 b(ariables,)23
-b(if)e(they)g(app)s(ear)f(in)g(the)h(en)m(vironmen)m(t,)i(are)e
-(ignored.)38 b(If)20 b(the)h(shell)1110 1597 y(is)37
-b(started)h(with)f(the)g(e\013ectiv)m(e)j(user)d(\(group\))g(id)g(not)g
-(equal)h(to)g(the)f(real)1110 1707 y(user)h(\(group\))h(id,)i(and)d
-(the)h Ft(-p)f Fu(option)i(is)e(not)i(supplied,)f(these)h(actions)1110
-1816 y(are)32 b(tak)m(en)i(and)d(the)h(e\013ectiv)m(e)j(user)c(id)h(is)
-g(set)h(to)f(the)h(real)f(user)g(id.)45 b(If)32 b(the)1110
-1926 y Ft(-p)i Fu(option)h(is)g(supplied)f(at)h(startup,)h(the)f
-(e\013ectiv)m(e)i(user)d(id)g(is)h(not)g(reset.)1110
-2035 y(T)-8 b(urning)35 b(this)i(option)g(o\013)g(causes)g(the)g
-(e\013ectiv)m(e)i(user)d(and)g(group)g(ids)g(to)1110
-2145 y(b)s(e)30 b(set)h(to)g(the)f(real)h(user)f(and)g(group)g(ids.)630
-2305 y Ft(-r)384 b Fu(Enable)32 b(restricted)h(shell)f(mo)s(de.)45
-b(This)31 b(option)i(cannot)g(b)s(e)e(unset)h(once)g(it)1110
-2415 y(has)e(b)s(een)g(set.)630 2575 y Ft(-t)384 b Fu(Exit)31
-b(after)g(reading)f(and)g(executing)h(one)g(command.)630
-2735 y Ft(-u)384 b Fu(T)-8 b(reat)25 b(unset)e(v)-5 b(ariables)25
-b(and)e(parameters)h(other)h(than)e(the)h(sp)s(ecial)h(param-)1110
-2845 y(eters)32 b(`)p Ft(@)p Fu(')f(or)h(`)p Ft(*)p Fu(',)g(or)f(arra)m
-(y)h(v)-5 b(ariables)32 b(subscripted)e(with)h(`)p Ft(@)p
-Fu(')g(or)h(`)p Ft(*)p Fu(',)f(as)h(an)1110 2954 y(error)24
-b(when)g(p)s(erforming)g(parameter)h(expansion.)39 b(An)24
-b(error)h(message)h(will)1110 3064 y(b)s(e)37 b(written)h(to)h(the)f
-(standard)f(error,)i(and)f(a)g(non-in)m(teractiv)m(e)j(shell)d(will)
-1110 3173 y(exit.)630 3334 y Ft(-v)384 b Fu(Prin)m(t)30
-b(shell)h(input)e(lines)i(as)g(they)f(are)h(read.)630
-3494 y Ft(-x)384 b Fu(Prin)m(t)21 b(a)h(trace)h(of)f(simple)f
-(commands,)i Ft(for)e Fu(commands,)i Ft(case)d Fu(commands,)1110
-3603 y Ft(select)29 b Fu(commands,)j(and)e(arithmetic)j
-Ft(for)d Fu(commands)h(and)f(their)i(argu-)1110 3713
-y(men)m(ts)g(or)g(asso)s(ciated)h(w)m(ord)e(lists)h(to)g(standard)f
-(error)g(after)i(they)e(are)h(ex-)1110 3823 y(panded)20
+5340 y(cessfully)-8 b(.)41 b(This)30 b(option)h(is)f(disabled)g(b)m(y)h
+(default.)p eop end
+%%Page: 71 77
+TeXDict begin 71 76 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(71)1110 299 y
+Ft(posix)240 b Fu(Change)30 b(the)g(b)s(eha)m(vior)h(of)f(Bash)g(where)
+g(the)g(default)h(op)s(era-)1590 408 y(tion)25 b(di\013ers)f(from)g
+(the)h Fm(posix)f Fu(standard)f(to)i(matc)m(h)h(the)f(stan-)1590
+518 y(dard)h(\(see)j(Section)f(6.11)h([Bash)f(POSIX)e(Mo)s(de],)j(page)
+f(108\).)1590 628 y(This)37 b(is)g(in)m(tended)g(to)h(mak)m(e)g(Bash)g
+(b)s(eha)m(v)m(e)g(as)g(a)f(strict)h(su-)1590 737 y(p)s(erset)30
+b(of)h(that)f(standard.)1110 911 y Ft(privileged)1590
+1020 y Fu(Same)g(as)h Ft(-p)p Fu(.)1110 1194 y Ft(verbose)144
+b Fu(Same)30 b(as)h Ft(-v)p Fu(.)1110 1367 y Ft(vi)384
+b Fu(Use)36 b(a)g Ft(vi)p Fu(-st)m(yle)g(line)g(editing)g(in)m
+(terface.)58 b(This)35 b(also)h(a\013ects)1590 1477 y(the)31
+b(editing)g(in)m(terface)h(used)d(for)h Ft(read)f(-e)p
+Fu(.)1110 1650 y Ft(xtrace)192 b Fu(Same)30 b(as)h Ft(-x)p
+Fu(.)630 1824 y Ft(-p)384 b Fu(T)-8 b(urn)33 b(on)h(privileged)h(mo)s
+(de.)51 b(In)34 b(this)g(mo)s(de,)h(the)f Ft($BASH_ENV)e
+Fu(and)h Ft($ENV)1110 1934 y Fu(\014les)23 b(are)h(not)f(pro)s(cessed,)
+h(shell)g(functions)e(are)i(not)f(inherited)g(from)f(the)i(en-)1110
+2043 y(vironmen)m(t,)h(and)e(the)g Ft(SHELLOPTS)p Fu(,)f
+Ft(BASHOPTS)p Fu(,)h Ft(CDPATH)e Fu(and)i Ft(GLOBIGNORE)1110
+2153 y Fu(v)-5 b(ariables,)23 b(if)e(they)g(app)s(ear)f(in)g(the)h(en)m
+(vironmen)m(t,)i(are)e(ignored.)38 b(If)20 b(the)h(shell)1110
+2262 y(is)37 b(started)h(with)f(the)g(e\013ectiv)m(e)j(user)d
+(\(group\))g(id)g(not)g(equal)h(to)g(the)f(real)1110
+2372 y(user)h(\(group\))h(id,)i(and)d(the)h Ft(-p)f Fu(option)i(is)e
+(not)i(supplied,)f(these)h(actions)1110 2482 y(are)32
+b(tak)m(en)i(and)d(the)h(e\013ectiv)m(e)j(user)c(id)h(is)g(set)h(to)f
+(the)h(real)f(user)g(id.)45 b(If)32 b(the)1110 2591 y
+Ft(-p)i Fu(option)h(is)g(supplied)f(at)h(startup,)h(the)f(e\013ectiv)m
+(e)i(user)d(id)g(is)h(not)g(reset.)1110 2701 y(T)-8 b(urning)35
+b(this)i(option)g(o\013)g(causes)g(the)g(e\013ectiv)m(e)i(user)d(and)g
+(group)g(ids)g(to)1110 2810 y(b)s(e)30 b(set)h(to)g(the)f(real)h(user)f
+(and)g(group)g(ids.)630 2984 y Ft(-r)384 b Fu(Enable)32
+b(restricted)h(shell)f(mo)s(de.)45 b(This)31 b(option)i(cannot)g(b)s(e)
+e(unset)h(once)g(it)1110 3093 y(has)e(b)s(een)g(set.)630
+3267 y Ft(-t)384 b Fu(Exit)31 b(after)g(reading)f(and)g(executing)h
+(one)g(command.)630 3440 y Ft(-u)384 b Fu(T)-8 b(reat)25
+b(unset)e(v)-5 b(ariables)25 b(and)e(parameters)h(other)h(than)e(the)h
+(sp)s(ecial)h(param-)1110 3550 y(eters)32 b(`)p Ft(@)p
+Fu(')f(or)h(`)p Ft(*)p Fu(',)g(or)f(arra)m(y)h(v)-5 b(ariables)32
+b(subscripted)e(with)h(`)p Ft(@)p Fu(')g(or)h(`)p Ft(*)p
+Fu(',)f(as)h(an)1110 3660 y(error)24 b(when)g(p)s(erforming)g
+(parameter)h(expansion.)39 b(An)24 b(error)h(message)h(will)1110
+3769 y(b)s(e)37 b(written)h(to)h(the)f(standard)f(error,)i(and)f(a)g
+(non-in)m(teractiv)m(e)j(shell)d(will)1110 3879 y(exit.)630
+4052 y Ft(-v)384 b Fu(Prin)m(t)30 b(shell)h(input)e(lines)i(as)g(they)f
+(are)h(read.)630 4226 y Ft(-x)384 b Fu(Prin)m(t)21 b(a)h(trace)h(of)f
+(simple)f(commands,)i Ft(for)e Fu(commands,)i Ft(case)d
+Fu(commands,)1110 4335 y Ft(select)29 b Fu(commands,)j(and)e
+(arithmetic)j Ft(for)d Fu(commands)h(and)f(their)i(argu-)1110
+4445 y(men)m(ts)g(or)g(asso)s(ciated)h(w)m(ord)e(lists)h(to)g(standard)
+f(error)g(after)i(they)e(are)h(ex-)1110 4555 y(panded)20
 b(and)h(b)s(efore)g(they)g(are)h(executed.)39 b(The)21
-b(shell)g(prin)m(ts)g(the)h(expanded)1110 3932 y(v)-5
+b(shell)g(prin)m(ts)g(the)h(expanded)1110 4664 y(v)-5
 b(alue)28 b(of)f(the)g Ft(PS4)g Fu(v)-5 b(ariable)28
 b(b)s(efore)f(the)g(command)g(and)g(its)g(expanded)g(ar-)1110
-4042 y(gumen)m(ts.)630 4202 y Ft(-B)384 b Fu(The)41 b(shell)g(will)g(p)
+4774 y(gumen)m(ts.)630 4947 y Ft(-B)384 b Fu(The)41 b(shell)g(will)g(p)
 s(erform)f(brace)h(expansion)g(\(see)h(Section)g(3.5.1)g([Brace)1110
-4312 y(Expansion],)30 b(page)h(24\).)42 b(This)30 b(option)h(is)f(on)g
-(b)m(y)h(default.)630 4472 y Ft(-C)384 b Fu(Prev)m(en)m(t)25
+5057 y(Expansion],)30 b(page)h(24\).)42 b(This)30 b(option)h(is)f(on)g
+(b)m(y)h(default.)630 5230 y Ft(-C)384 b Fu(Prev)m(en)m(t)25
 b(output)e(redirection)h(using)f(`)p Ft(>)p Fu(',)i(`)p
 Ft(>&)p Fu(',)g(and)e(`)p Ft(<>)p Fu(')g(from)h(o)m(v)m(erwriting)1110
-4581 y(existing)31 b(\014les.)630 4741 y Ft(-E)384 b
-Fu(If)39 b(set,)j(an)m(y)e(trap)f(on)g Ft(ERR)g Fu(is)g(inherited)g(b)m
-(y)g(shell)h(functions,)h(command)1110 4851 y(substitutions,)35
+5340 y(existing)31 b(\014les.)p eop end
+%%Page: 72 78
+TeXDict begin 72 77 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(72)630 299 y Ft(-E)384
+b Fu(If)39 b(set,)j(an)m(y)e(trap)f(on)g Ft(ERR)g Fu(is)g(inherited)g
+(b)m(y)g(shell)h(functions,)h(command)1110 408 y(substitutions,)35
 b(and)e(commands)g(executed)i(in)f(a)g(subshell)f(en)m(vironmen)m(t.)
-1110 4961 y(The)d Ft(ERR)f Fu(trap)i(is)f(normally)h(not)f(inherited)g
-(in)g(suc)m(h)g(cases.)630 5121 y Ft(-H)384 b Fu(Enable)38
+1110 518 y(The)d Ft(ERR)f Fu(trap)i(is)f(normally)h(not)f(inherited)g
+(in)g(suc)m(h)g(cases.)630 670 y Ft(-H)384 b Fu(Enable)38
 b(`)p Ft(!)p Fu(')h(st)m(yle)h(history)e(substitution)g(\(see)h
-(Section)h(9.3)f([History)g(In-)1110 5230 y(teraction],)g(page)d
-(157\).)57 b(This)34 b(option)i(is)f(on)g(b)m(y)h(default)f(for)g(in)m
-(teractiv)m(e)1110 5340 y(shells.)p eop end
-%%Page: 71 77
-TeXDict begin 71 76 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(71)630 299 y Ft(-P)384
+(Section)h(9.3)f([History)g(In-)1110 780 y(teraction],)g(page)d(158\).)
+57 b(This)34 b(option)i(is)f(on)g(b)m(y)h(default)f(for)g(in)m
+(teractiv)m(e)1110 890 y(shells.)630 1042 y Ft(-P)384
 b Fu(If)39 b(set,)j(do)d(not)g(resolv)m(e)i(sym)m(b)s(olic)e(links)g
-(when)f(p)s(erforming)g(commands)1110 408 y(suc)m(h)29
+(when)f(p)s(erforming)g(commands)1110 1152 y(suc)m(h)29
 b(as)h Ft(cd)f Fu(whic)m(h)g(c)m(hange)h(the)g(curren)m(t)f(directory)
--8 b(.)42 b(The)28 b(ph)m(ysical)j(direc-)1110 518 y(tory)j(is)g(used)f
-(instead.)52 b(By)34 b(default,)h(Bash)f(follo)m(ws)h(the)f(logical)i
-(c)m(hain)f(of)1110 628 y(directories)j(when)d(p)s(erforming)h
+-8 b(.)42 b(The)28 b(ph)m(ysical)j(direc-)1110 1261 y(tory)j(is)g(used)
+f(instead.)52 b(By)34 b(default,)h(Bash)f(follo)m(ws)h(the)f(logical)i
+(c)m(hain)f(of)1110 1371 y(directories)j(when)d(p)s(erforming)h
 (commands)g(whic)m(h)g(c)m(hange)i(the)f(curren)m(t)1110
-737 y(directory)-8 b(.)1110 870 y(F)g(or)42 b(example,)i(if)d
+1480 y(directory)-8 b(.)1110 1611 y(F)g(or)42 b(example,)i(if)d
 Ft(/usr/sys)e Fu(is)i(a)g(sym)m(b)s(olic)g(link)g(to)h
-Ft(/usr/local/sys)1110 980 y Fu(then:)1350 1113 y Ft($)47
-b(cd)h(/usr/sys;)d(echo)i($PWD)1350 1223 y(/usr/sys)1350
-1332 y($)g(cd)h(..;)f(pwd)1350 1442 y(/usr)1110 1575
-y Fu(If)30 b Ft(set)f(-P)h Fu(is)h(on,)f(then:)1350 1708
-y Ft($)47 b(cd)h(/usr/sys;)d(echo)i($PWD)1350 1818 y(/usr/local/sys)
-1350 1927 y($)g(cd)h(..;)f(pwd)1350 2037 y(/usr/local)630
-2194 y(-T)384 b Fu(If)34 b(set,)j(an)m(y)e(trap)g(on)g
+Ft(/usr/local/sys)1110 1721 y Fu(then:)1350 1852 y Ft($)47
+b(cd)h(/usr/sys;)d(echo)i($PWD)1350 1962 y(/usr/sys)1350
+2071 y($)g(cd)h(..;)f(pwd)1350 2181 y(/usr)1110 2312
+y Fu(If)30 b Ft(set)f(-P)h Fu(is)h(on,)f(then:)1350 2443
+y Ft($)47 b(cd)h(/usr/sys;)d(echo)i($PWD)1350 2552 y(/usr/local/sys)
+1350 2662 y($)g(cd)h(..;)f(pwd)1350 2771 y(/usr/local)630
+2924 y(-T)384 b Fu(If)34 b(set,)j(an)m(y)e(trap)g(on)g
 Ft(DEBUG)e Fu(and)i Ft(RETURN)e Fu(are)i(inherited)g(b)m(y)f(shell)i
-(func-)1110 2303 y(tions,)k(command)d(substitutions,)h(and)f(commands)g
-(executed)h(in)f(a)h(sub-)1110 2413 y(shell)33 b(en)m(vironmen)m(t.)49
+(func-)1110 3033 y(tions,)k(command)d(substitutions,)h(and)f(commands)g
+(executed)h(in)f(a)h(sub-)1110 3143 y(shell)33 b(en)m(vironmen)m(t.)49
 b(The)32 b Ft(DEBUG)g Fu(and)g Ft(RETURN)f Fu(traps)h(are)i(normally)f
-(not)1110 2522 y(inherited)d(in)g(suc)m(h)g(cases.)630
-2679 y Ft(--)384 b Fu(If)44 b(no)g(argumen)m(ts)g(follo)m(w)i(this)e
+(not)1110 3253 y(inherited)d(in)g(suc)m(h)g(cases.)630
+3405 y Ft(--)384 b Fu(If)44 b(no)g(argumen)m(ts)g(follo)m(w)i(this)e
 (option,)k(then)c(the)h(p)s(ositional)g(parame-)1110
-2789 y(ters)31 b(are)g(unset.)40 b(Otherwise,)31 b(the)f(p)s(ositional)
-i(parameters)f(are)f(set)h(to)h(the)1110 2898 y Fr(argumen)m(ts)p
+3515 y(ters)31 b(are)g(unset.)40 b(Otherwise,)31 b(the)f(p)s(ositional)
+i(parameters)f(are)f(set)h(to)h(the)1110 3624 y Fr(argumen)m(ts)p
 Fu(,)f(ev)m(en)g(if)f(some)h(of)g(them)f(b)s(egin)g(with)g(a)h(`)p
-Ft(-)p Fu('.)630 3055 y Ft(-)432 b Fu(Signal)45 b(the)g(end)f(of)h
+Ft(-)p Fu('.)630 3777 y Ft(-)432 b Fu(Signal)45 b(the)g(end)f(of)h
 (options,)k(cause)c(all)h(remaining)e Fr(argumen)m(ts)49
-b Fu(to)d(b)s(e)1110 3164 y(assigned)33 b(to)h(the)g(p)s(ositional)g
+b Fu(to)d(b)s(e)1110 3886 y(assigned)33 b(to)h(the)g(p)s(ositional)g
 (parameters.)49 b(The)33 b Ft(-x)g Fu(and)f Ft(-v)h Fu(options)h(are)
-1110 3274 y(turned)k(o\013.)68 b(If)38 b(there)i(are)f(no)g(argumen)m
-(ts,)j(the)e(p)s(ositional)g(parameters)1110 3384 y(remain)30
-b(unc)m(hanged.)630 3540 y(Using)d(`)p Ft(+)p Fu(')h(rather)f(than)g(`)
+1110 3996 y(turned)k(o\013.)68 b(If)38 b(there)i(are)f(no)g(argumen)m
+(ts,)j(the)e(p)s(ositional)g(parameters)1110 4105 y(remain)30
+b(unc)m(hanged.)630 4258 y(Using)d(`)p Ft(+)p Fu(')h(rather)f(than)g(`)
 p Ft(-)p Fu(')g(causes)h(these)f(options)h(to)g(b)s(e)e(turned)g
-(o\013.)40 b(The)27 b(options)h(can)630 3650 y(also)36
+(o\013.)40 b(The)27 b(options)h(can)630 4367 y(also)36
 b(b)s(e)f(used)f(up)s(on)g(in)m(v)m(o)s(cation)j(of)e(the)g(shell.)56
 b(The)34 b(curren)m(t)h(set)h(of)f(options)h(ma)m(y)g(b)s(e)630
-3759 y(found)29 b(in)h Ft($-)p Fu(.)630 3893 y(The)43
+4477 y(found)29 b(in)h Ft($-)p Fu(.)630 4608 y(The)43
 b(remaining)h(N)f Fr(argumen)m(ts)48 b Fu(are)c(p)s(ositional)g
-(parameters)g(and)f(are)h(assigned,)j(in)630 4002 y(order,)30
+(parameters)g(and)f(are)h(assigned,)j(in)630 4717 y(order,)30
 b(to)h Ft($1)p Fu(,)f Ft($2)p Fu(,)36 b(.)22 b(.)g(.)42
 b Ft($N)p Fu(.)e(The)30 b(sp)s(ecial)h(parameter)g Ft(#)f
-Fu(is)g(set)h(to)g(N.)630 4135 y(The)f(return)f(status)i(is)f(alw)m(a)m
+Fu(is)g(set)h(to)g(N.)630 4848 y(The)f(return)f(status)i(is)f(alw)m(a)m
 (ys)i(zero)f(unless)f(an)g(in)m(v)-5 b(alid)31 b(option)g(is)f
-(supplied.)150 4332 y Fk(4.3.2)63 b(The)41 b(Shopt)h(Builtin)150
-4479 y Fu(This)30 b(builtin)g(allo)m(ws)h(y)m(ou)g(to)g(c)m(hange)h
+(supplied.)150 5041 y Fk(4.3.2)63 b(The)41 b(Shopt)h(Builtin)150
+5188 y Fu(This)30 b(builtin)g(allo)m(ws)h(y)m(ou)g(to)g(c)m(hange)h
 (additional)f(shell)f(optional)i(b)s(eha)m(vior.)150
-4635 y Ft(shopt)870 4768 y(shopt)46 b([-pqsu])g([-o])h([)p
-Fj(optname)e Ft(...])630 4902 y Fu(T)-8 b(oggle)37 b(the)e(v)-5
-b(alues)35 b(of)g(settings)h(con)m(trolling)g(optional)g(shell)f(b)s
-(eha)m(vior.)55 b(The)34 b(settings)630 5011 y(can)24
-b(b)s(e)g(either)h(those)f(listed)h(b)s(elo)m(w,)h(or,)f(if)g(the)f
-Ft(-o)f Fu(option)i(is)f(used,)h(those)g(a)m(v)-5 b(ailable)26
-b(with)630 5121 y(the)k Ft(-o)f Fu(option)i(to)f(the)g
-Ft(set)f Fu(builtin)h(command)f(\(see)i(Section)g(4.3.1)g([The)f(Set)g
-(Builtin],)630 5230 y(page)i(67\).)45 b(With)32 b(no)f(options,)h(or)g
-(with)f(the)g Ft(-p)g Fu(option,)h(a)g(list)g(of)f(all)i(settable)g
-(options)630 5340 y(is)g(displa)m(y)m(ed,)i(with)e(an)g(indication)h
-(of)f(whether)g(or)g(not)g(eac)m(h)h(is)g(set;)h(if)e
-Fr(optname)5 b Fu(s)34 b(are)p eop end
-%%Page: 72 78
-TeXDict begin 72 77 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(72)630 299 y(supplied,)25
-b(the)g(output)g(is)g(restricted)g(to)h(those)g(options.)39
-b(The)24 b Ft(-p)h Fu(option)g(causes)g(output)630 408
-y(to)30 b(b)s(e)f(displa)m(y)m(ed)g(in)g(a)h(form)f(that)g(ma)m(y)h(b)s
-(e)f(reused)f(as)i(input.)39 b(Other)29 b(options)g(ha)m(v)m(e)i(the)
-630 518 y(follo)m(wing)h(meanings:)630 671 y Ft(-s)384
-b Fu(Enable)30 b(\(set\))i(eac)m(h)f Fr(optname)p Fu(.)630
-825 y Ft(-u)384 b Fu(Disable)31 b(\(unset\))g(eac)m(h)h
-Fr(optname)p Fu(.)630 978 y Ft(-q)384 b Fu(Suppresses)28
-b(normal)h(output;)h(the)g(return)e(status)i(indicates)h(whether)e(the)
-1110 1088 y Fr(optname)37 b Fu(is)31 b(set)h(or)f(unset.)43
-b(If)31 b(m)m(ultiple)h Fr(optname)37 b Fu(argumen)m(ts)31
-b(are)h(giv)m(en)1110 1198 y(with)d Ft(-q)p Fu(,)f(the)i(return)d
-(status)j(is)f(zero)g(if)g(all)h Fr(optname)5 b Fu(s)29
-b(are)h(enabled;)f(non-)1110 1307 y(zero)i(otherwise.)630
-1461 y Ft(-o)384 b Fu(Restricts)22 b(the)f(v)-5 b(alues)22
-b(of)f Fr(optname)27 b Fu(to)22 b(b)s(e)e(those)i(de\014ned)e(for)h
-(the)g Ft(-o)f Fu(option)1110 1570 y(to)31 b(the)g Ft(set)e
-Fu(builtin)h(\(see)h(Section)h(4.3.1)g([The)e(Set)g(Builtin],)i(page)f
-(67\).)630 1724 y(If)e(either)i Ft(-s)e Fu(or)h Ft(-u)f
-Fu(is)h(used)f(with)g(no)h Fr(optname)35 b Fu(argumen)m(ts,)c
-Ft(shopt)d Fu(sho)m(ws)h(only)h(those)630 1833 y(options)h(whic)m(h)f
-(are)h(set)f(or)h(unset,)f(resp)s(ectiv)m(ely)-8 b(.)630
-1965 y(Unless)30 b(otherwise)h(noted,)g(the)g Ft(shopt)d
-Fu(options)j(are)g(disabled)f(\(o\013)7 b(\))32 b(b)m(y)e(default.)630
-2096 y(The)d(return)f(status)i(when)e(listing)j(options)e(is)h(zero)g
-(if)f(all)i Fr(optname)5 b Fu(s)27 b(are)h(enabled,)g(non-)630
-2206 y(zero)40 b(otherwise.)66 b(When)39 b(setting)h(or)f(unsetting)g
-(options,)i(the)e(return)f(status)h(is)g(zero)630 2315
-y(unless)30 b(an)g Fr(optname)36 b Fu(is)30 b(not)h(a)g(v)-5
-b(alid)30 b(shell)h(option.)630 2447 y(The)f(list)h(of)f
-Ft(shopt)f Fu(options)i(is:)630 2600 y Ft(assoc_expand_once)1110
-2710 y Fu(If)h(set,)i(the)e(shell)h(suppresses)e(m)m(ultiple)i(ev)-5
-b(aluation)34 b(of)e(asso)s(ciativ)m(e)j(arra)m(y)1110
-2819 y(subscripts)24 b(during)h(arithmetic)h(expression)g(ev)-5
-b(aluation,)28 b(while)e(executing)1110 2929 y(builtins)c(that)i(can)f
-(p)s(erform)f(v)-5 b(ariable)24 b(assignmen)m(ts,)h(and)e(while)g
-(executing)1110 3039 y(builtins)30 b(that)h(p)s(erform)e(arra)m(y)i
-(dereferencing.)630 3192 y Ft(autocd)192 b Fu(If)27 b(set,)h(a)g
-(command)f(name)g(that)h(is)f(the)g(name)g(of)h(a)f(directory)h(is)f
-(executed)1110 3302 y(as)j(if)f(it)h(w)m(ere)f(the)h(argumen)m(t)g(to)g
-(the)f Ft(cd)g Fu(command.)40 b(This)29 b(option)g(is)h(only)1110
-3411 y(used)g(b)m(y)g(in)m(teractiv)m(e)j(shells.)630
-3565 y Ft(cdable_vars)1110 3674 y Fu(If)h(this)h(is)g(set,)i(an)e
+5340 y Ft(shopt)p eop end
+%%Page: 73 79
+TeXDict begin 73 78 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(73)870 299 y Ft(shopt)46
+b([-pqsu])g([-o])h([)p Fj(optname)e Ft(...])630 438 y
+Fu(T)-8 b(oggle)37 b(the)e(v)-5 b(alues)35 b(of)g(settings)h(con)m
+(trolling)g(optional)g(shell)f(b)s(eha)m(vior.)55 b(The)34
+b(settings)630 548 y(can)24 b(b)s(e)g(either)h(those)f(listed)h(b)s
+(elo)m(w,)h(or,)f(if)g(the)f Ft(-o)f Fu(option)i(is)f(used,)h(those)g
+(a)m(v)-5 b(ailable)26 b(with)630 658 y(the)k Ft(-o)f
+Fu(option)i(to)f(the)g Ft(set)f Fu(builtin)h(command)f(\(see)i(Section)
+g(4.3.1)g([The)f(Set)g(Builtin],)630 767 y(page)i(68\).)45
+b(With)32 b(no)f(options,)h(or)g(with)f(the)g Ft(-p)g
+Fu(option,)h(a)g(list)g(of)f(all)i(settable)g(options)630
+877 y(is)g(displa)m(y)m(ed,)i(with)e(an)g(indication)h(of)f(whether)g
+(or)g(not)g(eac)m(h)h(is)g(set;)h(if)e Fr(optname)5 b
+Fu(s)34 b(are)630 986 y(supplied,)25 b(the)g(output)g(is)g(restricted)g
+(to)h(those)g(options.)39 b(The)24 b Ft(-p)h Fu(option)g(causes)g
+(output)630 1096 y(to)30 b(b)s(e)f(displa)m(y)m(ed)g(in)g(a)h(form)f
+(that)g(ma)m(y)h(b)s(e)f(reused)f(as)i(input.)39 b(Other)29
+b(options)g(ha)m(v)m(e)i(the)630 1205 y(follo)m(wing)h(meanings:)630
+1375 y Ft(-s)384 b Fu(Enable)30 b(\(set\))i(eac)m(h)f
+Fr(optname)p Fu(.)630 1544 y Ft(-u)384 b Fu(Disable)31
+b(\(unset\))g(eac)m(h)h Fr(optname)p Fu(.)630 1714 y
+Ft(-q)384 b Fu(Suppresses)28 b(normal)h(output;)h(the)g(return)e
+(status)i(indicates)h(whether)e(the)1110 1823 y Fr(optname)37
+b Fu(is)31 b(set)h(or)f(unset.)43 b(If)31 b(m)m(ultiple)h
+Fr(optname)37 b Fu(argumen)m(ts)31 b(are)h(giv)m(en)1110
+1933 y(with)d Ft(-q)p Fu(,)f(the)i(return)d(status)j(is)f(zero)g(if)g
+(all)h Fr(optname)5 b Fu(s)29 b(are)h(enabled;)f(non-)1110
+2042 y(zero)i(otherwise.)630 2212 y Ft(-o)384 b Fu(Restricts)22
+b(the)f(v)-5 b(alues)22 b(of)f Fr(optname)27 b Fu(to)22
+b(b)s(e)e(those)i(de\014ned)e(for)h(the)g Ft(-o)f Fu(option)1110
+2321 y(to)31 b(the)g Ft(set)e Fu(builtin)h(\(see)h(Section)h(4.3.1)g
+([The)e(Set)g(Builtin],)i(page)f(68\).)630 2491 y(If)e(either)i
+Ft(-s)e Fu(or)h Ft(-u)f Fu(is)h(used)f(with)g(no)h Fr(optname)35
+b Fu(argumen)m(ts,)c Ft(shopt)d Fu(sho)m(ws)h(only)h(those)630
+2600 y(options)h(whic)m(h)f(are)h(set)f(or)h(unset,)f(resp)s(ectiv)m
+(ely)-8 b(.)630 2740 y(Unless)30 b(otherwise)h(noted,)g(the)g
+Ft(shopt)d Fu(options)j(are)g(disabled)f(\(o\013)7 b(\))32
+b(b)m(y)e(default.)630 2879 y(The)d(return)f(status)i(when)e(listing)j
+(options)e(is)h(zero)g(if)f(all)i Fr(optname)5 b Fu(s)27
+b(are)h(enabled,)g(non-)630 2989 y(zero)40 b(otherwise.)66
+b(When)39 b(setting)h(or)f(unsetting)g(options,)i(the)e(return)f
+(status)h(is)g(zero)630 3098 y(unless)30 b(an)g Fr(optname)36
+b Fu(is)30 b(not)h(a)g(v)-5 b(alid)30 b(shell)h(option.)630
+3238 y(The)f(list)h(of)f Ft(shopt)f Fu(options)i(is:)630
+3407 y Ft(assoc_expand_once)1110 3517 y Fu(If)h(set,)i(the)e(shell)h
+(suppresses)e(m)m(ultiple)i(ev)-5 b(aluation)34 b(of)e(asso)s(ciativ)m
+(e)j(arra)m(y)1110 3626 y(subscripts)24 b(during)h(arithmetic)h
+(expression)g(ev)-5 b(aluation,)28 b(while)e(executing)1110
+3736 y(builtins)c(that)i(can)f(p)s(erform)f(v)-5 b(ariable)24
+b(assignmen)m(ts,)h(and)e(while)g(executing)1110 3846
+y(builtins)30 b(that)h(p)s(erform)e(arra)m(y)i(dereferencing.)630
+4015 y Ft(autocd)192 b Fu(If)27 b(set,)h(a)g(command)f(name)g(that)h
+(is)f(the)g(name)g(of)h(a)f(directory)h(is)f(executed)1110
+4125 y(as)j(if)f(it)h(w)m(ere)f(the)h(argumen)m(t)g(to)g(the)f
+Ft(cd)g Fu(command.)40 b(This)29 b(option)g(is)h(only)1110
+4234 y(used)g(b)m(y)g(in)m(teractiv)m(e)j(shells.)630
+4403 y Ft(cdable_vars)1110 4513 y Fu(If)h(this)h(is)g(set,)i(an)e
 (argumen)m(t)g(to)h(the)f Ft(cd)f Fu(builtin)h(command)f(that)i(is)f
-(not)1110 3784 y(a)c(directory)g(is)g(assumed)f(to)h(b)s(e)f(the)h
+(not)1110 4623 y(a)c(directory)g(is)g(assumed)f(to)h(b)s(e)f(the)h
 (name)f(of)h(a)g(v)-5 b(ariable)31 b(whose)g(v)-5 b(alue)31
-b(is)1110 3893 y(the)g(directory)f(to)i(c)m(hange)f(to.)630
-4047 y Ft(cdspell)144 b Fu(If)27 b(set,)h(minor)f(errors)f(in)h(the)g
+b(is)1110 4732 y(the)g(directory)f(to)i(c)m(hange)f(to.)630
+4902 y Ft(cdspell)144 b Fu(If)27 b(set,)h(minor)f(errors)f(in)h(the)g
 (sp)s(elling)h(of)f(a)g(directory)h(comp)s(onen)m(t)f(in)g(a)h
-Ft(cd)1110 4156 y Fu(command)i(will)h(b)s(e)f(corrected.)43
+Ft(cd)1110 5011 y Fu(command)i(will)h(b)s(e)f(corrected.)43
 b(The)30 b(errors)g(c)m(hec)m(k)m(ed)j(for)d(are)h(transp)s(osed)1110
-4266 y(c)m(haracters,)46 b(a)c(missing)f(c)m(haracter,)47
+5121 y(c)m(haracters,)46 b(a)c(missing)f(c)m(haracter,)47
 b(and)40 b(a)i(c)m(haracter)h(to)s(o)g(man)m(y)-8 b(.)74
-b(If)42 b(a)1110 4376 y(correction)25 b(is)e(found,)g(the)h(corrected)g
-(path)f(is)g(prin)m(ted,)h(and)f(the)g(command)1110 4485
+b(If)42 b(a)1110 5230 y(correction)25 b(is)e(found,)g(the)h(corrected)g
+(path)f(is)g(prin)m(ted,)h(and)f(the)g(command)1110 5340
 y(pro)s(ceeds.)40 b(This)30 b(option)h(is)f(only)h(used)e(b)m(y)h(in)m
-(teractiv)m(e)k(shells.)630 4639 y Ft(checkhash)1110
-4748 y Fu(If)29 b(this)h(is)g(set,)g(Bash)g(c)m(hec)m(ks)h(that)g(a)f
-(command)f(found)g(in)g(the)h(hash)f(table)1110 4858
-y(exists)k(b)s(efore)f(trying)h(to)h(execute)g(it.)48
-b(If)32 b(a)h(hashed)e(command)i(no)f(longer)1110 4967
-y(exists,)f(a)g(normal)f(path)g(searc)m(h)h(is)g(p)s(erformed.)630
-5121 y Ft(checkjobs)1110 5230 y Fu(If)d(set,)i(Bash)e(lists)h(the)g
-(status)g(of)f(an)m(y)h(stopp)s(ed)f(and)g(running)e(jobs)i(b)s(efore)
-1110 5340 y(exiting)42 b(an)f(in)m(teractiv)m(e)j(shell.)72
-b(If)41 b(an)m(y)g(jobs)f(are)i(running,)g(this)f(causes)p
-eop end
-%%Page: 73 79
-TeXDict begin 73 78 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(73)1110 299 y(the)30
-b(exit)g(to)g(b)s(e)f(deferred)g(un)m(til)h(a)f(second)h(exit)g(is)g
-(attempted)h(without)e(an)1110 408 y(in)m(terv)m(ening)d(command)f
-(\(see)h(Chapter)e(7)h([Job)g(Con)m(trol],)i(page)f(116\).)40
-b(The)1110 518 y(shell)31 b(alw)m(a)m(ys)g(p)s(ostp)s(ones)f(exiting)h
-(if)g(an)m(y)f(jobs)g(are)h(stopp)s(ed.)630 690 y Ft(checkwinsize)1110
-800 y Fu(If)23 b(set,)j(Bash)e(c)m(hec)m(ks)h(the)f(windo)m(w)f(size)h
-(after)h(eac)m(h)f(external)h(\(non-builtin\))1110 909
-y(command)55 b(and,)60 b(if)55 b(necessary)-8 b(,)62
-b(up)s(dates)54 b(the)h(v)-5 b(alues)55 b(of)g Ft(LINES)f
-Fu(and)1110 1019 y Ft(COLUMNS)p Fu(.)39 b(This)29 b(option)i(is)g
-(enabled)f(b)m(y)g(default.)630 1191 y Ft(cmdhist)144
-b Fu(If)33 b(set,)j(Bash)e(attempts)h(to)g(sa)m(v)m(e)g(all)g(lines)f
-(of)g(a)h(m)m(ultiple-line)g(command)1110 1301 y(in)c(the)g(same)g
-(history)g(en)m(try)-8 b(.)42 b(This)30 b(allo)m(ws)i(easy)g
-(re-editing)g(of)f(m)m(ulti-line)1110 1410 y(commands.)79
-b(This)43 b(option)g(is)h(enabled)f(b)m(y)g(default,)k(but)c(only)g
-(has)g(an)1110 1520 y(e\013ect)30 b(if)e(command)g(history)g(is)h
-(enabled)f(\(see)h(Section)g(9.1)h([Bash)e(History)1110
-1630 y(F)-8 b(acilities],)34 b(page)d(155\).)630 1802
-y Ft(compat31)630 1911 y(compat32)630 2021 y(compat40)630
-2131 y(compat41)630 2240 y(compat42)630 2350 y(compat43)630
-2459 y(compat44)96 b Fu(These)39 b(con)m(trol)i(asp)s(ects)f(of)f(the)h
+(teractiv)m(e)k(shells.)p eop end
+%%Page: 74 80
+TeXDict begin 74 79 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(74)630 299 y Ft(checkhash)1110
+408 y Fu(If)29 b(this)h(is)g(set,)g(Bash)g(c)m(hec)m(ks)h(that)g(a)f
+(command)f(found)g(in)g(the)h(hash)f(table)1110 518 y(exists)k(b)s
+(efore)f(trying)h(to)h(execute)g(it.)48 b(If)32 b(a)h(hashed)e(command)
+i(no)f(longer)1110 628 y(exists,)f(a)g(normal)f(path)g(searc)m(h)h(is)g
+(p)s(erformed.)630 792 y Ft(checkjobs)1110 902 y Fu(If)d(set,)i(Bash)e
+(lists)h(the)g(status)g(of)f(an)m(y)h(stopp)s(ed)f(and)g(running)e
+(jobs)i(b)s(efore)1110 1011 y(exiting)42 b(an)f(in)m(teractiv)m(e)j
+(shell.)72 b(If)41 b(an)m(y)g(jobs)f(are)i(running,)g(this)f(causes)
+1110 1121 y(the)30 b(exit)g(to)g(b)s(e)f(deferred)g(un)m(til)h(a)f
+(second)h(exit)g(is)g(attempted)h(without)e(an)1110 1230
+y(in)m(terv)m(ening)d(command)f(\(see)h(Chapter)e(7)h([Job)g(Con)m
+(trol],)i(page)f(117\).)40 b(The)1110 1340 y(shell)31
+b(alw)m(a)m(ys)g(p)s(ostp)s(ones)f(exiting)h(if)g(an)m(y)f(jobs)g(are)h
+(stopp)s(ed.)630 1504 y Ft(checkwinsize)1110 1614 y Fu(If)23
+b(set,)j(Bash)e(c)m(hec)m(ks)h(the)f(windo)m(w)f(size)h(after)h(eac)m
+(h)f(external)h(\(non-builtin\))1110 1724 y(command)55
+b(and,)60 b(if)55 b(necessary)-8 b(,)62 b(up)s(dates)54
+b(the)h(v)-5 b(alues)55 b(of)g Ft(LINES)f Fu(and)1110
+1833 y Ft(COLUMNS)p Fu(.)39 b(This)29 b(option)i(is)g(enabled)f(b)m(y)g
+(default.)630 1998 y Ft(cmdhist)144 b Fu(If)33 b(set,)j(Bash)e
+(attempts)h(to)g(sa)m(v)m(e)g(all)g(lines)f(of)g(a)h(m)m(ultiple-line)g
+(command)1110 2107 y(in)c(the)g(same)g(history)g(en)m(try)-8
+b(.)42 b(This)30 b(allo)m(ws)i(easy)g(re-editing)g(of)f(m)m(ulti-line)
+1110 2217 y(commands.)79 b(This)43 b(option)g(is)h(enabled)f(b)m(y)g
+(default,)k(but)c(only)g(has)g(an)1110 2326 y(e\013ect)30
+b(if)e(command)g(history)g(is)h(enabled)f(\(see)h(Section)g(9.1)h
+([Bash)e(History)1110 2436 y(F)-8 b(acilities],)34 b(page)d(156\).)630
+2600 y Ft(compat31)630 2710 y(compat32)630 2819 y(compat40)630
+2929 y(compat41)630 3039 y(compat42)630 3148 y(compat43)630
+3258 y(compat44)96 b Fu(These)39 b(con)m(trol)i(asp)s(ects)f(of)f(the)h
 (shell's)g(compatibilit)m(y)h(mo)s(de)e(\(see)h(Sec-)1110
-2569 y(tion)31 b(6.12)h([Shell)e(Compatibilit)m(y)i(Mo)s(de],)f(page)g
-(112\).)630 2741 y Ft(complete_fullquote)1110 2851 y
+3367 y(tion)31 b(6.12)h([Shell)e(Compatibilit)m(y)i(Mo)s(de],)f(page)g
+(113\).)630 3532 y Ft(complete_fullquote)1110 3641 y
 Fu(If)g(set,)g(Bash)h(quotes)f(all)h(shell)f(metac)m(haracters)i(in)e
-(\014lenames)g(and)g(direc-)1110 2960 y(tory)g(names)f(when)g(p)s
+(\014lenames)g(and)g(direc-)1110 3751 y(tory)g(names)f(when)g(p)s
 (erforming)f(completion.)43 b(If)30 b(not)h(set,)g(Bash)g(remo)m(v)m
-(es)1110 3070 y(metac)m(haracters)40 b(suc)m(h)d(as)h(the)g(dollar)g
-(sign)g(from)f(the)h(set)g(of)f(c)m(haracters)1110 3180
+(es)1110 3861 y(metac)m(haracters)40 b(suc)m(h)d(as)h(the)g(dollar)g
+(sign)g(from)f(the)h(set)g(of)f(c)m(haracters)1110 3970
 y(that)f(will)g(b)s(e)f(quoted)g(in)g(completed)i(\014lenames)e(when)f
-(these)i(metac)m(har-)1110 3289 y(acters)29 b(app)s(ear)e(in)g(shell)h
+(these)i(metac)m(har-)1110 4080 y(acters)29 b(app)s(ear)e(in)g(shell)h
 (v)-5 b(ariable)28 b(references)g(in)f(w)m(ords)g(to)i(b)s(e)e
-(completed.)1110 3399 y(This)k(means)i(that)g(dollar)f(signs)g(in)g(v)
+(completed.)1110 4189 y(This)k(means)i(that)g(dollar)f(signs)g(in)g(v)
 -5 b(ariable)33 b(names)g(that)f(expand)g(to)h(di-)1110
-3508 y(rectories)28 b(will)g(not)f(b)s(e)f(quoted;)j(ho)m(w)m(ev)m(er,)
-g(an)m(y)e(dollar)h(signs)f(app)s(earing)f(in)1110 3618
+4299 y(rectories)28 b(will)g(not)f(b)s(e)f(quoted;)j(ho)m(w)m(ev)m(er,)
+g(an)m(y)e(dollar)h(signs)f(app)s(earing)f(in)1110 4408
 y(\014lenames)i(will)g(not)g(b)s(e)g(quoted,)g(either.)41
 b(This)27 b(is)h(activ)m(e)i(only)e(when)f(Bash)1110
-3727 y(is)39 b(using)f(bac)m(kslashes)i(to)g(quote)g(completed)f
-(\014lenames.)67 b(This)38 b(v)-5 b(ariable)1110 3837
+4518 y(is)39 b(using)f(bac)m(kslashes)i(to)g(quote)g(completed)f
+(\014lenames.)67 b(This)38 b(v)-5 b(ariable)1110 4628
 y(is)41 b(set)g(b)m(y)g(default,)j(whic)m(h)c(is)h(the)g(default)g
-(Bash)g(b)s(eha)m(vior)g(in)g(v)m(ersions)1110 3947 y(through)30
-b(4.2.)630 4119 y Ft(direxpand)1110 4228 y Fu(If)k(set,)i(Bash)f
+(Bash)g(b)s(eha)m(vior)g(in)g(v)m(ersions)1110 4737 y(through)30
+b(4.2.)630 4902 y Ft(direxpand)1110 5011 y Fu(If)k(set,)i(Bash)f
 (replaces)g(directory)g(names)g(with)f(the)g(results)h(of)f(w)m(ord)g
-(ex-)1110 4338 y(pansion)k(when)g(p)s(erforming)f(\014lename)i
-(completion.)67 b(This)38 b(c)m(hanges)i(the)1110 4448
+(ex-)1110 5121 y(pansion)k(when)g(p)s(erforming)f(\014lename)i
+(completion.)67 b(This)38 b(c)m(hanges)i(the)1110 5230
 y(con)m(ten)m(ts)c(of)e(the)h(Readline)f(editing)h(bu\013er.)52
-b(If)33 b(not)i(set,)h(Bash)e(attempts)1110 4557 y(to)d(preserv)m(e)g
-(what)f(the)g(user)g(t)m(yp)s(ed.)630 4729 y Ft(dirspell)96
+b(If)33 b(not)i(set,)h(Bash)e(attempts)1110 5340 y(to)d(preserv)m(e)g
+(what)f(the)g(user)g(t)m(yp)s(ed.)p eop end
+%%Page: 75 81
+TeXDict begin 75 80 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(75)630 299 y Ft(dirspell)96
 b Fu(If)26 b(set,)i(Bash)f(attempts)g(sp)s(elling)g(correction)g(on)g
-(directory)g(names)f(during)1110 4839 y(w)m(ord)36 b(completion)h(if)f
+(directory)g(names)f(during)1110 408 y(w)m(ord)36 b(completion)h(if)f
 (the)g(directory)g(name)g(initially)h(supplied)e(do)s(es)h(not)1110
-4949 y(exist.)630 5121 y Ft(dotglob)144 b Fu(If)36 b(set,)i(Bash)e
+518 y(exist.)630 682 y Ft(dotglob)144 b Fu(If)36 b(set,)i(Bash)e
 (includes)g(\014lenames)g(b)s(eginning)f(with)h(a)g(`.')58
-b(in)36 b(the)g(results)1110 5230 y(of)f(\014lename)f(expansion.)53
+b(in)36 b(the)g(results)1110 792 y(of)f(\014lename)f(expansion.)53
 b(The)33 b(\014lenames)i(`)p Ft(.)p Fu(')f(and)g(`)p
-Ft(..)p Fu(')g(m)m(ust)h(alw)m(a)m(ys)h(b)s(e)1110 5340
+Ft(..)p Fu(')g(m)m(ust)h(alw)m(a)m(ys)h(b)s(e)1110 902
 y(matc)m(hed)31 b(explicitly)-8 b(,)33 b(ev)m(en)e(if)f
-Ft(dotglob)f Fu(is)h(set.)p eop end
-%%Page: 74 80
-TeXDict begin 74 79 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(74)630 299 y Ft(execfail)96
-b Fu(If)24 b(this)h(is)f(set,)j(a)e(non-in)m(teractiv)m(e)i(shell)e
-(will)f(not)h(exit)h(if)e(it)h(cannot)h(execute)1110
-408 y(the)i(\014le)g(sp)s(eci\014ed)g(as)g(an)g(argumen)m(t)g(to)h(the)
-f Ft(exec)f Fu(builtin)h(command.)39 b(An)1110 518 y(in)m(teractiv)m(e)
+Ft(dotglob)f Fu(is)h(set.)630 1066 y Ft(execfail)96 b
+Fu(If)24 b(this)h(is)f(set,)j(a)e(non-in)m(teractiv)m(e)i(shell)e(will)
+f(not)h(exit)h(if)e(it)h(cannot)h(execute)1110 1176 y(the)i(\014le)g
+(sp)s(eci\014ed)g(as)g(an)g(argumen)m(t)g(to)h(the)f
+Ft(exec)f Fu(builtin)h(command.)39 b(An)1110 1285 y(in)m(teractiv)m(e)
 33 b(shell)e(do)s(es)f(not)g(exit)i(if)e Ft(exec)f Fu(fails.)630
-689 y Ft(expand_aliases)1110 798 y Fu(If)j(set,)h(aliases)g(are)g
+1450 y Ft(expand_aliases)1110 1559 y Fu(If)j(set,)h(aliases)g(are)g
 (expanded)e(as)h(describ)s(ed)f(b)s(elo)m(w)h(under)f(Aliases,)i(Sec-)
-1110 908 y(tion)i(6.6)h([Aliases],)h(page)e(101.)55 b(This)33
-b(option)i(is)g(enabled)f(b)m(y)h(default)f(for)1110
-1017 y(in)m(teractiv)m(e)f(shells.)630 1188 y Ft(extdebug)96
+1110 1669 y(tion)i(6.6)h([Aliases],)h(page)e(102.)55
+b(This)33 b(option)i(is)g(enabled)f(b)m(y)h(default)f(for)1110
+1778 y(in)m(teractiv)m(e)f(shells.)630 1943 y Ft(extdebug)96
 b Fu(If)35 b(set)i(at)f(shell)g(in)m(v)m(o)s(cation,)k(or)c(in)f(a)h
 (shell)h(startup)e(\014le,)i(arrange)g(to)f(ex-)1110
-1297 y(ecute)h(the)f(debugger)g(pro\014le)g(b)s(efore)g(the)g(shell)h
-(starts,)h(iden)m(tical)g(to)f(the)1110 1407 y Ft(--debugger)32
+2052 y(ecute)h(the)f(debugger)g(pro\014le)g(b)s(efore)g(the)g(shell)h
+(starts,)h(iden)m(tical)g(to)f(the)1110 2162 y Ft(--debugger)32
 b Fu(option.)56 b(If)35 b(set)h(after)g(in)m(v)m(o)s(cation,)j(b)s(eha)
-m(vior)c(in)m(tended)g(for)1110 1517 y(use)30 b(b)m(y)g(debuggers)g(is)
-h(enabled:)1159 1657 y(1.)61 b(The)37 b Ft(-F)g Fu(option)h(to)g(the)g
+m(vior)c(in)m(tended)g(for)1110 2271 y(use)30 b(b)m(y)g(debuggers)g(is)
+h(enabled:)1159 2408 y(1.)61 b(The)37 b Ft(-F)g Fu(option)h(to)g(the)g
 Ft(declare)d Fu(builtin)i(\(see)i(Section)f(4.2)h([Bash)1290
-1766 y(Builtins],)29 b(page)g(56\))g(displa)m(ys)f(the)g(source)h
-(\014le)f(name)g(and)f(line)h(n)m(um-)1290 1876 y(b)s(er)h(corresp)s
+2518 y(Builtins],)29 b(page)g(57\))g(displa)m(ys)f(the)g(source)h
+(\014le)f(name)g(and)f(line)h(n)m(um-)1290 2628 y(b)s(er)h(corresp)s
 (onding)g(to)i(eac)m(h)g(function)f(name)g(supplied)f(as)i(an)f(argu-)
-1290 1985 y(men)m(t.)1159 2125 y(2.)61 b(If)20 b(the)h(command)g(run)e
+1290 2737 y(men)m(t.)1159 2874 y(2.)61 b(If)20 b(the)h(command)g(run)e
 (b)m(y)i(the)f Ft(DEBUG)g Fu(trap)g(returns)g(a)h(non-zero)g(v)-5
-b(alue,)1290 2235 y(the)31 b(next)f(command)g(is)h(skipp)s(ed)e(and)g
-(not)i(executed.)1159 2375 y(3.)61 b(If)37 b(the)g(command)g(run)f(b)m
+b(alue,)1290 2984 y(the)31 b(next)f(command)g(is)h(skipp)s(ed)e(and)g
+(not)i(executed.)1159 3121 y(3.)61 b(If)37 b(the)g(command)g(run)f(b)m
 (y)i(the)f Ft(DEBUG)f Fu(trap)h(returns)f(a)i(v)-5 b(alue)38
-b(of)f(2,)1290 2485 y(and)c(the)g(shell)h(is)f(executing)i(in)e(a)h
-(subroutine)e(\(a)i(shell)g(function)f(or)1290 2594 y(a)h(shell)g
+b(of)f(2,)1290 3230 y(and)c(the)g(shell)h(is)f(executing)i(in)e(a)h
+(subroutine)e(\(a)i(shell)g(function)f(or)1290 3340 y(a)h(shell)g
 (script)f(executed)h(b)m(y)g(the)f Ft(.)h Fu(or)f Ft(source)f
-Fu(builtins\),)i(the)g(shell)1290 2704 y(sim)m(ulates)d(a)g(call)h(to)f
-Ft(return)p Fu(.)1159 2844 y(4.)61 b Ft(BASH_ARGC)34
+Fu(builtins\),)i(the)g(shell)1290 3450 y(sim)m(ulates)d(a)g(call)h(to)f
+Ft(return)p Fu(.)1159 3587 y(4.)61 b Ft(BASH_ARGC)34
 b Fu(and)i Ft(BASH_ARGV)e Fu(are)j(up)s(dated)e(as)h(describ)s(ed)g(in)
-g(their)1290 2953 y(descriptions)30 b(\(see)i(Section)f(5.2)g([Bash)g
-(V)-8 b(ariables],)32 b(page)f(79\).)1159 3093 y(5.)61
+g(their)1290 3696 y(descriptions)30 b(\(see)i(Section)f(5.2)g([Bash)g
+(V)-8 b(ariables],)32 b(page)f(80\).)1159 3833 y(5.)61
 b(F)-8 b(unction)57 b(tracing)g(is)g(enabled:)93 b(command)56
-b(substitution,)63 b(shell)1290 3203 y(functions,)32
+b(substitution,)63 b(shell)1290 3943 y(functions,)32
 b(and)e(subshells)h(in)m(v)m(ok)m(ed)i(with)e Ft(\()f
-Fj(command)e Ft(\))j Fu(inherit)h(the)1290 3313 y Ft(DEBUG)d
-Fu(and)h Ft(RETURN)e Fu(traps.)1159 3453 y(6.)61 b(Error)41
+Fj(command)e Ft(\))j Fu(inherit)h(the)1290 4052 y Ft(DEBUG)d
+Fu(and)h Ft(RETURN)e Fu(traps.)1159 4189 y(6.)61 b(Error)41
 b(tracing)i(is)f(enabled:)63 b(command)42 b(substitution,)i(shell)f
-(func-)1290 3562 y(tions,)32 b(and)e(subshells)g(in)m(v)m(ok)m(ed)i
+(func-)1290 4299 y(tions,)32 b(and)e(subshells)g(in)m(v)m(ok)m(ed)i
 (with)e Ft(\()g Fj(command)f Ft(\))h Fu(inherit)h(the)g
-Ft(ERR)1290 3672 y Fu(trap.)630 3842 y Ft(extglob)144
+Ft(ERR)1290 4408 y Fu(trap.)630 4573 y Ft(extglob)144
 b Fu(If)26 b(set,)i(the)f(extended)f(pattern)h(matc)m(hing)g(features)g
-(describ)s(ed)e(ab)s(o)m(v)m(e)j(\(see)1110 3952 y(Section)j(3.5.8.1)i
-([P)m(attern)f(Matc)m(hing],)g(page)f(36\))h(are)f(enabled.)630
-4122 y Ft(extquote)96 b Fu(If)51 b(set,)58 b Ft($')p
+(describ)s(ed)e(ab)s(o)m(v)m(e)j(\(see)1110 4682 y(Section)j(3.5.8.1)i
+([P)m(attern)f(Matc)m(hing],)g(page)f(37\))h(are)f(enabled.)630
+4847 y Ft(extquote)96 b Fu(If)51 b(set,)58 b Ft($')p
 Fj(string)p Ft(')49 b Fu(and)i Ft($")p Fj(string)p Ft(")e
-Fu(quoting)k(is)e(p)s(erformed)f(within)1110 4232 y Ft(${)p
+Fu(quoting)k(is)e(p)s(erformed)f(within)1110 4956 y Ft(${)p
 Fj(parameter)p Ft(})31 b Fu(expansions)k(enclosed)g(in)g(double)f
-(quotes.)55 b(This)33 b(option)1110 4341 y(is)d(enabled)h(b)m(y)f
-(default.)630 4512 y Ft(failglob)96 b Fu(If)36 b(set,)j(patterns)d
+(quotes.)55 b(This)33 b(option)1110 5066 y(is)d(enabled)h(b)m(y)f
+(default.)630 5230 y Ft(failglob)96 b Fu(If)36 b(set,)j(patterns)d
 (whic)m(h)g(fail)h(to)h(matc)m(h)f(\014lenames)f(during)g(\014lename)g
-(ex-)1110 4622 y(pansion)30 b(result)g(in)g(an)g(expansion)h(error.)630
-4792 y Ft(force_fignore)1110 4902 y Fu(If)43 b(set,)k(the)d(su\016xes)f
-(sp)s(eci\014ed)f(b)m(y)i(the)f Ft(FIGNORE)f Fu(shell)h(v)-5
-b(ariable)44 b(cause)1110 5011 y(w)m(ords)31 b(to)h(b)s(e)f(ignored)h
-(when)f(p)s(erforming)f(w)m(ord)h(completion)i(ev)m(en)f(if)g(the)1110
-5121 y(ignored)37 b(w)m(ords)g(are)g(the)h(only)f(p)s(ossible)g
-(completions.)62 b(See)37 b(Section)h(5.2)1110 5230 y([Bash)24
-b(V)-8 b(ariables],)27 b(page)e(79,)h(for)d(a)h(description)g(of)g
-Ft(FIGNORE)p Fu(.)37 b(This)22 b(option)1110 5340 y(is)30
-b(enabled)h(b)m(y)f(default.)p eop end
-%%Page: 75 81
-TeXDict begin 75 80 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(75)630 299 y Ft(globasciiranges)
-1110 408 y Fu(If)33 b(set,)h(range)f(expressions)g(used)f(in)h(pattern)
-g(matc)m(hing)h(brac)m(k)m(et)h(expres-)1110 518 y(sions)28
-b(\(see)h(Section)h(3.5.8.1)g([P)m(attern)g(Matc)m(hing],)h(page)e
-(36\))g(b)s(eha)m(v)m(e)g(as)g(if)1110 628 y(in)i(the)g(traditional)i
-(C)d(lo)s(cale)j(when)d(p)s(erforming)g(comparisons.)44
-b(That)31 b(is,)1110 737 y(the)d(curren)m(t)g(lo)s(cale's)i(collating)h
-(sequence)d(is)h(not)f(tak)m(en)h(in)m(to)g(accoun)m(t,)i(so)1110
-847 y(`)p Ft(b)p Fu(')j(will)g(not)g(collate)i(b)s(et)m(w)m(een)e(`)p
-Ft(A)p Fu(')g(and)f(`)p Ft(B)p Fu(',)h(and)f(upp)s(er-case)g(and)g(lo)m
-(w)m(er-)1110 956 y(case)e(ASCI)s(I)e(c)m(haracters)j(will)f(collate)i
-(together.)630 1127 y Ft(globskipdots)1110 1236 y Fu(If)38
-b(set,)k(\014lename)d(expansion)f(will)h(nev)m(er)g(matc)m(h)h(the)f
-(\014lenames)g(`)p Ft(.)p Fu(')g(and)1110 1346 y(`)p
-Ft(..)p Fu(',)c(ev)m(en)g(if)g(the)f(pattern)g(b)s(egins)g(with)g(a)h
-(`)p Ft(.)p Fu('.)52 b(This)34 b(option)h(is)f(enabled)1110
-1456 y(b)m(y)c(default.)630 1626 y Ft(globstar)96 b Fu(If)38
-b(set,)j(the)e(pattern)f(`)p Ft(**)p Fu(')h(used)e(in)i(a)f(\014lename)
-h(expansion)f(con)m(text)j(will)1110 1736 y(matc)m(h)36
-b(all)g(\014les)f(and)f(zero)i(or)f(more)g(directories)h(and)e(sub)s
-(directories.)54 b(If)1110 1845 y(the)30 b(pattern)g(is)g(follo)m(w)m
-(ed)i(b)m(y)d(a)i(`)p Ft(/)p Fu(',)f(only)g(directories)h(and)f(sub)s
-(directories)1110 1955 y(matc)m(h.)630 2125 y Ft(gnu_errfmt)1110
-2235 y Fu(If)35 b(set,)j(shell)e(error)g(messages)g(are)h(written)e(in)
-h(the)g(standard)f Fm(gnu)g Fu(error)1110 2345 y(message)c(format.)630
-2515 y Ft(histappend)1110 2625 y Fu(If)c(set,)j(the)e(history)g(list)g
+(ex-)1110 5340 y(pansion)30 b(result)g(in)g(an)g(expansion)h(error.)p
+eop end
+%%Page: 76 82
+TeXDict begin 76 81 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(76)630 299 y Ft(force_fignore)
+1110 408 y Fu(If)43 b(set,)k(the)d(su\016xes)f(sp)s(eci\014ed)f(b)m(y)i
+(the)f Ft(FIGNORE)f Fu(shell)h(v)-5 b(ariable)44 b(cause)1110
+518 y(w)m(ords)31 b(to)h(b)s(e)f(ignored)h(when)f(p)s(erforming)f(w)m
+(ord)h(completion)i(ev)m(en)f(if)g(the)1110 628 y(ignored)37
+b(w)m(ords)g(are)g(the)h(only)f(p)s(ossible)g(completions.)62
+b(See)37 b(Section)h(5.2)1110 737 y([Bash)24 b(V)-8 b(ariables],)27
+b(page)e(80,)h(for)d(a)h(description)g(of)g Ft(FIGNORE)p
+Fu(.)37 b(This)22 b(option)1110 847 y(is)30 b(enabled)h(b)m(y)f
+(default.)630 993 y Ft(globasciiranges)1110 1103 y Fu(If)j(set,)h
+(range)f(expressions)g(used)f(in)h(pattern)g(matc)m(hing)h(brac)m(k)m
+(et)h(expres-)1110 1212 y(sions)28 b(\(see)h(Section)h(3.5.8.1)g([P)m
+(attern)g(Matc)m(hing],)h(page)e(37\))g(b)s(eha)m(v)m(e)g(as)g(if)1110
+1322 y(in)i(the)g(traditional)i(C)d(lo)s(cale)j(when)d(p)s(erforming)g
+(comparisons.)44 b(That)31 b(is,)1110 1431 y(the)d(curren)m(t)g(lo)s
+(cale's)i(collating)h(sequence)d(is)h(not)f(tak)m(en)h(in)m(to)g
+(accoun)m(t,)i(so)1110 1541 y(`)p Ft(b)p Fu(')j(will)g(not)g(collate)i
+(b)s(et)m(w)m(een)e(`)p Ft(A)p Fu(')g(and)f(`)p Ft(B)p
+Fu(',)h(and)f(upp)s(er-case)g(and)g(lo)m(w)m(er-)1110
+1650 y(case)e(ASCI)s(I)e(c)m(haracters)j(will)f(collate)i(together.)630
+1797 y Ft(globskipdots)1110 1906 y Fu(If)38 b(set,)k(\014lename)d
+(expansion)f(will)h(nev)m(er)g(matc)m(h)h(the)f(\014lenames)g(`)p
+Ft(.)p Fu(')g(and)1110 2016 y(`)p Ft(..)p Fu(',)c(ev)m(en)g(if)g(the)f
+(pattern)g(b)s(egins)g(with)g(a)h(`)p Ft(.)p Fu('.)52
+b(This)34 b(option)h(is)f(enabled)1110 2125 y(b)m(y)c(default.)630
+2271 y Ft(globstar)96 b Fu(If)38 b(set,)j(the)e(pattern)f(`)p
+Ft(**)p Fu(')h(used)e(in)i(a)f(\014lename)h(expansion)f(con)m(text)j
+(will)1110 2381 y(matc)m(h)36 b(all)g(\014les)f(and)f(zero)i(or)f(more)
+g(directories)h(and)e(sub)s(directories.)54 b(If)1110
+2491 y(the)30 b(pattern)g(is)g(follo)m(w)m(ed)i(b)m(y)d(a)i(`)p
+Ft(/)p Fu(',)f(only)g(directories)h(and)f(sub)s(directories)1110
+2600 y(matc)m(h.)630 2746 y Ft(gnu_errfmt)1110 2856 y
+Fu(If)35 b(set,)j(shell)e(error)g(messages)g(are)h(written)e(in)h(the)g
+(standard)f Fm(gnu)g Fu(error)1110 2966 y(message)c(format.)630
+3112 y Ft(histappend)1110 3221 y Fu(If)c(set,)j(the)e(history)g(list)g
 (is)g(app)s(ended)e(to)j(the)f(\014le)g(named)f(b)m(y)h(the)g(v)-5
-b(alue)29 b(of)1110 2734 y(the)d Ft(HISTFILE)d Fu(v)-5
+b(alue)29 b(of)1110 3331 y(the)d Ft(HISTFILE)d Fu(v)-5
 b(ariable)26 b(when)e(the)h(shell)h(exits,)h(rather)e(than)h(o)m(v)m
-(erwriting)1110 2844 y(the)31 b(\014le.)630 3014 y Ft(histreedit)1110
-3124 y Fu(If)i(set,)h(and)f(Readline)h(is)f(b)s(eing)g(used,)g(a)g
+(erwriting)1110 3440 y(the)31 b(\014le.)630 3587 y Ft(histreedit)1110
+3696 y Fu(If)i(set,)h(and)f(Readline)h(is)f(b)s(eing)g(used,)g(a)g
 (user)g(is)g(giv)m(en)h(the)g(opp)s(ortunit)m(y)1110
-3233 y(to)d(re-edit)g(a)g(failed)g(history)f(substitution.)630
-3404 y Ft(histverify)1110 3513 y Fu(If)35 b(set,)i(and)e(Readline)h(is)
+3806 y(to)d(re-edit)g(a)g(failed)g(history)f(substitution.)630
+3952 y Ft(histverify)1110 4061 y Fu(If)35 b(set,)i(and)e(Readline)h(is)
 f(b)s(eing)g(used,)h(the)f(results)g(of)g(history)h(substitu-)1110
-3623 y(tion)h(are)g(not)g(immediately)h(passed)e(to)h(the)g(shell)g
-(parser.)59 b(Instead,)38 b(the)1110 3733 y(resulting)i(line)f(is)h
+4171 y(tion)h(are)g(not)g(immediately)h(passed)e(to)h(the)g(shell)g
+(parser.)59 b(Instead,)38 b(the)1110 4281 y(resulting)i(line)f(is)h
 (loaded)g(in)m(to)g(the)g(Readline)g(editing)g(bu\013er,)h(allo)m(wing)
-1110 3842 y(further)29 b(mo)s(di\014cation.)630 4013
-y Ft(hostcomplete)1110 4122 y Fu(If)38 b(set,)j(and)c(Readline)i(is)f
+1110 4390 y(further)29 b(mo)s(di\014cation.)630 4536
+y Ft(hostcomplete)1110 4646 y Fu(If)38 b(set,)j(and)c(Readline)i(is)f
 (b)s(eing)g(used,)h(Bash)g(will)f(attempt)h(to)g(p)s(erform)1110
-4232 y(hostname)d(completion)h(when)e(a)h(w)m(ord)f(con)m(taining)i(a)f
-(`)p Ft(@)p Fu(')g(is)g(b)s(eing)f(com-)1110 4341 y(pleted)g(\(see)h
+4756 y(hostname)d(completion)h(when)e(a)h(w)m(ord)f(con)m(taining)i(a)f
+(`)p Ft(@)p Fu(')g(is)g(b)s(eing)f(com-)1110 4865 y(pleted)g(\(see)h
 (Section)f(8.4.6)i([Commands)d(F)-8 b(or)36 b(Completion],)g(page)g
-(142\).)1110 4451 y(This)30 b(option)g(is)h(enabled)f(b)m(y)g(default.)
-630 4622 y Ft(huponexit)1110 4731 y Fu(If)i(set,)i(Bash)f(will)h(send)d
+(143\).)1110 4975 y(This)30 b(option)g(is)h(enabled)f(b)m(y)g(default.)
+630 5121 y Ft(huponexit)1110 5230 y Fu(If)i(set,)i(Bash)f(will)h(send)d
 Ft(SIGHUP)h Fu(to)h(all)h(jobs)e(when)g(an)g(in)m(teractiv)m(e)k(login)
-1110 4841 y(shell)31 b(exits)g(\(see)g(Section)g(3.7.6)h([Signals],)g
-(page)f(45\).)630 5011 y Ft(inherit_errexit)1110 5121
-y Fu(If)e(set,)h(command)g(substitution)f(inherits)g(the)g(v)-5
-b(alue)30 b(of)g(the)f Ft(errexit)f Fu(op-)1110 5230
-y(tion,)33 b(instead)g(of)f(unsetting)g(it)h(in)f(the)g(subshell)f(en)m
-(vironmen)m(t.)46 b(This)32 b(op-)1110 5340 y(tion)f(is)f(enabled)h
-(when)e Fm(posix)h Fu(mo)s(de)g(is)g(enabled.)p eop end
-%%Page: 76 82
-TeXDict begin 76 81 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(76)630 299 y Ft
-(interactive_comments)1110 408 y Fu(Allo)m(w)27 b(a)g(w)m(ord)e(b)s
+1110 5340 y(shell)31 b(exits)g(\(see)g(Section)g(3.7.6)h([Signals],)g
+(page)f(46\).)p eop end
+%%Page: 77 83
+TeXDict begin 77 82 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(77)630 299 y Ft(inherit_errexit)
+1110 408 y Fu(If)29 b(set,)h(command)g(substitution)f(inherits)g(the)g
+(v)-5 b(alue)30 b(of)g(the)f Ft(errexit)f Fu(op-)1110
+518 y(tion,)33 b(instead)g(of)f(unsetting)g(it)h(in)f(the)g(subshell)f
+(en)m(vironmen)m(t.)46 b(This)32 b(op-)1110 628 y(tion)f(is)f(enabled)h
+(when)e Fm(posix)h Fu(mo)s(de)g(is)g(enabled.)630 792
+y Ft(interactive_comments)1110 902 y Fu(Allo)m(w)d(a)g(w)m(ord)e(b)s
 (eginning)g(with)h(`)p Ft(#)p Fu(')g(to)h(cause)f(that)h(w)m(ord)f(and)
-f(all)i(remain-)1110 518 y(ing)41 b(c)m(haracters)i(on)e(that)h(line)g
+f(all)i(remain-)1110 1011 y(ing)41 b(c)m(haracters)i(on)e(that)h(line)g
 (to)g(b)s(e)f(ignored)g(in)g(an)g(in)m(teractiv)m(e)j(shell.)1110
-628 y(This)30 b(option)g(is)h(enabled)f(b)m(y)g(default.)630
-792 y Ft(lastpipe)96 b Fu(If)24 b(set,)i(and)e(job)g(con)m(trol)i(is)f
+1121 y(This)30 b(option)g(is)h(enabled)f(b)m(y)g(default.)630
+1285 y Ft(lastpipe)96 b Fu(If)24 b(set,)i(and)e(job)g(con)m(trol)i(is)f
 (not)f(activ)m(e,)k(the)d(shell)f(runs)f(the)i(last)g(command)1110
-902 y(of)37 b(a)h(pip)s(eline)e(not)h(executed)h(in)f(the)g(bac)m
-(kground)g(in)g(the)g(curren)m(t)g(shell)1110 1011 y(en)m(vironmen)m
-(t.)630 1176 y Ft(lithist)144 b Fu(If)22 b(enabled,)i(and)d(the)h
+1395 y(of)37 b(a)h(pip)s(eline)e(not)h(executed)h(in)f(the)g(bac)m
+(kground)g(in)g(the)g(curren)m(t)g(shell)1110 1504 y(en)m(vironmen)m
+(t.)630 1669 y Ft(lithist)144 b Fu(If)22 b(enabled,)i(and)d(the)h
 Ft(cmdhist)e Fu(option)j(is)f(enabled,)i(m)m(ulti-line)f(commands)1110
-1285 y(are)28 b(sa)m(v)m(ed)h(to)g(the)f(history)g(with)f(em)m(b)s
-(edded)g(newlines)h(rather)g(than)f(using)1110 1395 y(semicolon)32
-b(separators)f(where)e(p)s(ossible.)630 1559 y Ft(localvar_inherit)1110
-1669 y Fu(If)j(set,)h(lo)s(cal)g(v)-5 b(ariables)33 b(inherit)f(the)g
+1778 y(are)28 b(sa)m(v)m(ed)h(to)g(the)f(history)g(with)f(em)m(b)s
+(edded)g(newlines)h(rather)g(than)f(using)1110 1888 y(semicolon)32
+b(separators)f(where)e(p)s(ossible.)630 2052 y Ft(localvar_inherit)1110
+2162 y Fu(If)j(set,)h(lo)s(cal)g(v)-5 b(ariables)33 b(inherit)f(the)g
 (v)-5 b(alue)32 b(and)g(attributes)h(of)f(a)g(v)-5 b(ariable)1110
-1778 y(of)36 b(the)g(same)g(name)g(that)h(exists)f(at)h(a)f(previous)g
-(scop)s(e)g(b)s(efore)f(an)m(y)h(new)1110 1888 y(v)-5
+2271 y(of)36 b(the)g(same)g(name)g(that)h(exists)f(at)h(a)f(previous)g
+(scop)s(e)g(b)s(efore)f(an)m(y)h(new)1110 2381 y(v)-5
 b(alue)31 b(is)f(assigned.)41 b(The)30 b Ft(nameref)e
-Fu(attribute)k(is)e(not)h(inherited.)630 2052 y Ft(localvar_unset)1110
-2162 y Fu(If)i(set,)i(calling)g Ft(unset)d Fu(on)i(lo)s(cal)g(v)-5
+Fu(attribute)k(is)e(not)h(inherited.)630 2545 y Ft(localvar_unset)1110
+2655 y Fu(If)i(set,)i(calling)g Ft(unset)d Fu(on)i(lo)s(cal)g(v)-5
 b(ariables)35 b(in)e(previous)g(function)g(scop)s(es)1110
-2271 y(marks)26 b(them)g(so)g(subsequen)m(t)g(lo)s(okups)f(\014nd)g
-(them)h(unset)f(un)m(til)i(that)g(func-)1110 2381 y(tion)40
+2765 y(marks)26 b(them)g(so)g(subsequen)m(t)g(lo)s(okups)f(\014nd)g
+(them)h(unset)f(un)m(til)i(that)g(func-)1110 2874 y(tion)40
 b(returns.)68 b(This)39 b(is)g(iden)m(tical)j(to)e(the)g(b)s(eha)m
-(vior)g(of)g(unsetting)g(lo)s(cal)1110 2491 y(v)-5 b(ariables)31
-b(at)g(the)g(curren)m(t)f(function)g(scop)s(e.)630 2655
-y Ft(login_shell)1110 2765 y Fu(The)35 b(shell)h(sets)g(this)f(option)h
+(vior)g(of)g(unsetting)g(lo)s(cal)1110 2984 y(v)-5 b(ariables)31
+b(at)g(the)g(curren)m(t)f(function)g(scop)s(e.)630 3148
+y Ft(login_shell)1110 3258 y Fu(The)35 b(shell)h(sets)g(this)f(option)h
 (if)g(it)g(is)f(started)h(as)g(a)g(login)g(shell)g(\(see)g(Sec-)1110
-2874 y(tion)29 b(6.1)g([In)m(v)m(oking)h(Bash],)f(page)g(92\).)41
+3367 y(tion)29 b(6.1)g([In)m(v)m(oking)h(Bash],)f(page)g(93\).)41
 b(The)28 b(v)-5 b(alue)29 b(ma)m(y)g(not)f(b)s(e)g(c)m(hanged.)630
-3039 y Ft(mailwarn)96 b Fu(If)34 b(set,)i(and)e(a)h(\014le)g(that)g
+3532 y Ft(mailwarn)96 b Fu(If)34 b(set,)i(and)e(a)h(\014le)g(that)g
 (Bash)f(is)h(c)m(hec)m(king)h(for)f(mail)g(has)f(b)s(een)g(accessed)
-1110 3148 y(since)24 b(the)h(last)g(time)f(it)h(w)m(as)f(c)m(hec)m(k)m
+1110 3641 y(since)24 b(the)h(last)g(time)f(it)h(w)m(as)f(c)m(hec)m(k)m
 (ed,)k(the)c(message)h Ft("The)k(mail)h(in)f Fj(mail-)1110
-3258 y(file)g Ft(has)h(been)f(read")g Fu(is)h(displa)m(y)m(ed.)630
-3422 y Ft(no_empty_cmd_completion)1110 3532 y Fu(If)g(set,)g(and)g
+3751 y(file)g Ft(has)h(been)f(read")g Fu(is)h(displa)m(y)m(ed.)630
+3915 y Ft(no_empty_cmd_completion)1110 4025 y Fu(If)g(set,)g(and)g
 (Readline)g(is)h(b)s(eing)e(used,)h(Bash)g(will)g(not)g(attempt)i(to)e
-(searc)m(h)1110 3641 y(the)25 b Ft(PATH)f Fu(for)h(p)s(ossible)f
+(searc)m(h)1110 4134 y(the)25 b Ft(PATH)f Fu(for)h(p)s(ossible)f
 (completions)j(when)d(completion)i(is)f(attempted)h(on)1110
-3751 y(an)k(empt)m(y)h(line.)630 3915 y Ft(nocaseglob)1110
-4025 y Fu(If)38 b(set,)k(Bash)d(matc)m(hes)g(\014lenames)g(in)f(a)h
-(case-insensitiv)m(e)j(fashion)c(when)1110 4134 y(p)s(erforming)29
-b(\014lename)i(expansion.)630 4299 y Ft(nocasematch)1110
-4408 y Fu(If)42 b(set,)k(Bash)d(matc)m(hes)g(patterns)g(in)f(a)h
-(case-insensitiv)m(e)i(fashion)d(when)1110 4518 y(p)s(erforming)31
+4244 y(an)k(empt)m(y)h(line.)630 4408 y Ft(nocaseglob)1110
+4518 y Fu(If)38 b(set,)k(Bash)d(matc)m(hes)g(\014lenames)g(in)f(a)h
+(case-insensitiv)m(e)j(fashion)c(when)1110 4628 y(p)s(erforming)29
+b(\014lename)i(expansion.)630 4792 y Ft(nocasematch)1110
+4902 y Fu(If)42 b(set,)k(Bash)d(matc)m(hes)g(patterns)g(in)f(a)h
+(case-insensitiv)m(e)i(fashion)d(when)1110 5011 y(p)s(erforming)31
 b(matc)m(hing)i(while)f(executing)i Ft(case)d Fu(or)h
-Ft([[)g Fu(conditional)h(com-)1110 4628 y(mands)25 b(\(see)i(Section)f
+Ft([[)g Fu(conditional)h(com-)1110 5121 y(mands)25 b(\(see)i(Section)f
 (3.2.5.2)j([Conditional)e(Constructs],)f(page)h(12,)h(when)1110
-4737 y(p)s(erforming)e(pattern)i(substitution)f(w)m(ord)g(expansions,)h
-(or)f(when)g(\014ltering)1110 4847 y(p)s(ossible)j(completions)h(as)g
-(part)f(of)h(programmable)f(completion.)630 5011 y Ft
-(noexpand_translation)1110 5121 y Fu(If)23 b(set,)j(Bash)d(encloses)i
+5230 y(p)s(erforming)e(pattern)i(substitution)f(w)m(ord)g(expansions,)h
+(or)f(when)g(\014ltering)1110 5340 y(p)s(ossible)j(completions)h(as)g
+(part)f(of)h(programmable)f(completion.)p eop end
+%%Page: 78 84
+TeXDict begin 78 83 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(78)630 299 y Ft
+(noexpand_translation)1110 408 y Fu(If)23 b(set,)j(Bash)d(encloses)i
 (the)e(translated)h(results)g(of)f($)p Ft(")p Fu(...)p
-Ft(")h Fu(quoting)g(in)f(single)1110 5230 y(quotes)k(instead)g(of)g
+Ft(")h Fu(quoting)g(in)f(single)1110 518 y(quotes)k(instead)g(of)g
 (double)f(quotes.)40 b(If)26 b(the)h(string)f(is)h(not)g(translated,)h
-(this)1110 5340 y(has)i(no)g(e\013ect.)p eop end
-%%Page: 77 83
-TeXDict begin 77 82 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(77)630 299 y Ft(nullglob)96
+(this)1110 628 y(has)i(no)g(e\013ect.)630 786 y Ft(nullglob)96
 b Fu(If)23 b(set,)j(Bash)e(allo)m(ws)g(\014lename)g(patterns)g(whic)m
-(h)f(matc)m(h)h(no)g(\014les)f(to)i(expand)1110 408 y(to)31
+(h)f(matc)m(h)h(no)g(\014les)f(to)i(expand)1110 896 y(to)31
 b(a)g(n)m(ull)f(string,)h(rather)f(than)g(themselv)m(es.)630
-591 y Ft(patsub_replacement)1110 701 y Fu(If)38 b(set,)k(Bash)d
+1054 y Ft(patsub_replacement)1110 1163 y Fu(If)38 b(set,)k(Bash)d
 (expands)e(o)s(ccurrences)i(of)g(`)p Ft(&)p Fu(')g(in)f(the)h
-(replacemen)m(t)h(string)1110 810 y(of)47 b(pattern)g(substitution)g
+(replacemen)m(t)h(string)1110 1273 y(of)47 b(pattern)g(substitution)g
 (to)h(the)f(text)h(matc)m(hed)g(b)m(y)f(the)g(pattern,)52
-b(as)1110 920 y(describ)s(ed)45 b(ab)s(o)m(v)m(e)i(\(see)f(Section)h
-(3.5.3)g([Shell)f(P)m(arameter)h(Expansion],)1110 1029
+b(as)1110 1383 y(describ)s(ed)45 b(ab)s(o)m(v)m(e)i(\(see)f(Section)h
+(3.5.3)g([Shell)f(P)m(arameter)h(Expansion],)1110 1492
 y(page)31 b(26\).)42 b(This)30 b(option)g(is)h(enabled)f(b)m(y)g
-(default.)630 1212 y Ft(progcomp)96 b Fu(If)25 b(set,)i(the)f
+(default.)630 1650 y Ft(progcomp)96 b Fu(If)25 b(set,)i(the)f
 (programmable)g(completion)g(facilities)i(\(see)f(Section)f(8.6)h
-([Pro-)1110 1322 y(grammable)45 b(Completion],)k(page)c(146\))h(are)f
-(enabled.)82 b(This)44 b(option)h(is)1110 1431 y(enabled)30
-b(b)m(y)h(default.)630 1614 y Ft(progcomp_alias)1110
-1724 y Fu(If)23 b(set,)j(and)d(programmable)h(completion)h(is)f
-(enabled,)h(Bash)f(treats)h(a)f(com-)1110 1833 y(mand)34
+([Pro-)1110 1760 y(grammable)45 b(Completion],)k(page)c(147\))h(are)f
+(enabled.)82 b(This)44 b(option)h(is)1110 1870 y(enabled)30
+b(b)m(y)h(default.)630 2028 y Ft(progcomp_alias)1110
+2138 y Fu(If)23 b(set,)j(and)d(programmable)h(completion)h(is)f
+(enabled,)h(Bash)f(treats)h(a)f(com-)1110 2247 y(mand)34
 b(name)h(that)g(do)s(esn't)f(ha)m(v)m(e)i(an)m(y)g(completions)f(as)g
-(a)g(p)s(ossible)g(alias)1110 1943 y(and)40 b(attempts)i(alias)h
+(a)g(p)s(ossible)g(alias)1110 2357 y(and)40 b(attempts)i(alias)h
 (expansion.)72 b(If)41 b(it)g(has)g(an)g(alias,)k(Bash)c(attempts)1110
-2052 y(programmable)28 b(completion)h(using)e(the)h(command)f(w)m(ord)h
-(resulting)f(from)1110 2162 y(the)k(expanded)e(alias.)630
-2345 y Ft(promptvars)1110 2454 y Fu(If)50 b(set,)56 b(prompt)49
+2466 y(programmable)28 b(completion)h(using)e(the)h(command)f(w)m(ord)h
+(resulting)f(from)1110 2576 y(the)k(expanded)e(alias.)630
+2734 y Ft(promptvars)1110 2844 y Fu(If)50 b(set,)56 b(prompt)49
 b(strings)h(undergo)g(parameter)h(expansion,)k(command)1110
-2564 y(substitution,)35 b(arithmetic)g(expansion,)g(and)e(quote)i(remo)
-m(v)-5 b(al)35 b(after)f(b)s(eing)1110 2673 y(expanded)53
+2953 y(substitution,)35 b(arithmetic)g(expansion,)g(and)e(quote)i(remo)
+m(v)-5 b(al)35 b(after)f(b)s(eing)1110 3063 y(expanded)53
 b(as)h(describ)s(ed)e(b)s(elo)m(w)i(\(see)h(Section)f(6.9)h([Con)m
-(trolling)g(the)1110 2783 y(Prompt],)30 b(page)h(105\).)43
+(trolling)g(the)1110 3173 y(Prompt],)30 b(page)h(106\).)43
 b(This)29 b(option)i(is)g(enabled)f(b)m(y)g(default.)630
-2966 y Ft(restricted_shell)1110 3075 y Fu(The)40 b(shell)h(sets)g(this)
+3331 y Ft(restricted_shell)1110 3440 y Fu(The)40 b(shell)h(sets)g(this)
 g(option)g(if)g(it)h(is)e(started)i(in)e(restricted)i(mo)s(de)e(\(see)
-1110 3185 y(Section)32 b(6.10)h([The)d(Restricted)j(Shell],)e(page)h
-(107\).)45 b(The)30 b(v)-5 b(alue)32 b(ma)m(y)g(not)1110
-3294 y(b)s(e)g(c)m(hanged.)49 b(This)32 b(is)h(not)h(reset)f(when)f
-(the)h(startup)g(\014les)f(are)i(executed,)1110 3404
+1110 3550 y(Section)32 b(6.10)h([The)d(Restricted)j(Shell],)e(page)h
+(108\).)45 b(The)30 b(v)-5 b(alue)32 b(ma)m(y)g(not)1110
+3660 y(b)s(e)g(c)m(hanged.)49 b(This)32 b(is)h(not)h(reset)f(when)f
+(the)h(startup)g(\014les)f(are)i(executed,)1110 3769
 y(allo)m(wing)k(the)e(startup)f(\014les)h(to)g(disco)m(v)m(er)h
-(whether)f(or)f(not)i(a)f(shell)g(is)g(re-)1110 3513
-y(stricted.)630 3696 y Ft(shift_verbose)1110 3806 y Fu(If)g(this)g(is)g
+(whether)f(or)f(not)i(a)f(shell)g(is)g(re-)1110 3879
+y(stricted.)630 4037 y Ft(shift_verbose)1110 4147 y Fu(If)g(this)g(is)g
 (set,)j(the)d Ft(shift)f Fu(builtin)h(prin)m(ts)f(an)h(error)g(message)
-i(when)d(the)1110 3915 y(shift)30 b(coun)m(t)h(exceeds)g(the)g(n)m(um)m
-(b)s(er)e(of)h(p)s(ositional)i(parameters.)630 4098 y
-Ft(sourcepath)1110 4208 y Fu(If)40 b(set,)45 b(the)c
+i(when)d(the)1110 4256 y(shift)30 b(coun)m(t)h(exceeds)g(the)g(n)m(um)m
+(b)s(er)e(of)h(p)s(ositional)i(parameters.)630 4415 y
+Ft(sourcepath)1110 4524 y Fu(If)40 b(set,)45 b(the)c
 Ft(.)f Fu(\()p Ft(source)p Fu(\))g(builtin)g(uses)h(the)g(v)-5
 b(alue)41 b(of)g Ft(PATH)f Fu(to)h(\014nd)f(the)1110
-4317 y(directory)32 b(con)m(taining)g(the)g(\014le)f(supplied)f(as)h
-(an)g(argumen)m(t.)44 b(This)30 b(option)1110 4427 y(is)g(enabled)h(b)m
-(y)f(default.)630 4609 y Ft(varredir_close)1110 4719
+4634 y(directory)32 b(con)m(taining)g(the)g(\014le)f(supplied)f(as)h
+(an)g(argumen)m(t.)44 b(This)30 b(option)1110 4743 y(is)g(enabled)h(b)m
+(y)f(default.)630 4902 y Ft(varredir_close)1110 5011
 y Fu(If)i(set,)h(the)f(shell)h(automatically)i(closes)e(\014le)f
-(descriptors)g(assigned)g(using)1110 4829 y(the)40 b
+(descriptors)g(assigned)g(using)1110 5121 y(the)40 b
 Ft({varname})c Fu(redirection)k(syn)m(tax)g(\(see)h(Section)f(3.6)g
-([Redirections],)1110 4938 y(page)h(38\))f(instead)h(of)e(lea)m(ving)j
-(them)e(op)s(en)f(when)g(the)h(command)f(com-)1110 5048
-y(pletes.)630 5230 y Ft(xpg_echo)96 b Fu(If)31 b(set,)h(the)g
-Ft(echo)e Fu(builtin)h(expands)f(bac)m(kslash-escap)s(e)j(sequences)f
-(b)m(y)f(de-)1110 5340 y(fault.)p eop end
-%%Page: 78 84
-TeXDict begin 78 83 bop 150 -116 a Fu(Chapter)30 b(4:)41
-b(Shell)30 b(Builtin)h(Commands)2069 b(78)150 299 y Fs(4.4)68
-b(Sp)t(ecial)45 b(Builtins)150 458 y Fu(F)-8 b(or)35
-b(historical)h(reasons,)g(the)e Fm(posix)g Fu(standard)f(has)i
-(classi\014ed)f(sev)m(eral)i(builtin)e(commands)g(as)h
-Fl(sp)-5 b(e-)150 568 y(cial)p Fu(.)47 b(When)33 b(Bash)f(is)h
-(executing)g(in)f Fm(posix)g Fu(mo)s(de,)h(the)g(sp)s(ecial)g(builtins)
-e(di\013er)i(from)f(other)g(builtin)150 677 y(commands)e(in)g(three)h
-(resp)s(ects:)199 812 y(1.)61 b(Sp)s(ecial)31 b(builtins)e(are)i(found)
-e(b)s(efore)h(shell)h(functions)f(during)f(command)h(lo)s(okup.)199
-946 y(2.)61 b(If)30 b(a)h(sp)s(ecial)g(builtin)f(returns)f(an)h(error)g
-(status,)h(a)g(non-in)m(teractiv)m(e)i(shell)d(exits.)199
-1081 y(3.)61 b(Assignmen)m(t)30 b(statemen)m(ts)h(preceding)f(the)f
-(command)g(sta)m(y)i(in)e(e\013ect)i(in)e(the)h(shell)f(en)m(vironmen)m
-(t)330 1191 y(after)i(the)f(command)h(completes.)275
-1350 y(When)36 b(Bash)g(is)h(not)f(executing)i(in)e Fm(posix)f
-Fu(mo)s(de,)j(these)f(builtins)f(b)s(eha)m(v)m(e)h(no)f(di\013eren)m
-(tly)h(than)150 1460 y(the)31 b(rest)f(of)h(the)f(Bash)h(builtin)e
-(commands.)41 b(The)30 b(Bash)g Fm(posix)g Fu(mo)s(de)g(is)g(describ)s
-(ed)f(in)h(Section)h(6.11)150 1569 y([Bash)g(POSIX)e(Mo)s(de],)i(page)g
-(107.)275 1704 y(These)f(are)g(the)h Fm(posix)f Fu(sp)s(ecial)h
-(builtins:)390 1838 y Ft(break)46 b(:)i(.)f(continue)f(eval)g(exec)h
-(exit)g(export)f(readonly)f(return)h(set)390 1948 y(shift)g(trap)h
-(unset)p eop end
+([Redirections],)1110 5230 y(page)h(39\))f(instead)h(of)e(lea)m(ving)j
+(them)e(op)s(en)f(when)g(the)h(command)f(com-)1110 5340
+y(pletes.)p eop end
 %%Page: 79 85
-TeXDict begin 79 84 bop 3659 -116 a Fu(79)150 299 y Fp(5)80
+TeXDict begin 79 84 bop 150 -116 a Fu(Chapter)30 b(4:)41
+b(Shell)30 b(Builtin)h(Commands)2069 b(79)630 299 y Ft(xpg_echo)96
+b Fu(If)31 b(set,)h(the)g Ft(echo)e Fu(builtin)h(expands)f(bac)m
+(kslash-escap)s(e)j(sequences)f(b)m(y)f(de-)1110 408
+y(fault.)150 649 y Fs(4.4)68 b(Sp)t(ecial)45 b(Builtins)150
+809 y Fu(F)-8 b(or)35 b(historical)h(reasons,)g(the)e
+Fm(posix)g Fu(standard)f(has)i(classi\014ed)f(sev)m(eral)i(builtin)e
+(commands)g(as)h Fl(sp)-5 b(e-)150 918 y(cial)p Fu(.)47
+b(When)33 b(Bash)f(is)h(executing)g(in)f Fm(posix)g Fu(mo)s(de,)h(the)g
+(sp)s(ecial)g(builtins)e(di\013er)i(from)f(other)g(builtin)150
+1028 y(commands)e(in)g(three)h(resp)s(ects:)199 1162
+y(1.)61 b(Sp)s(ecial)31 b(builtins)e(are)i(found)e(b)s(efore)h(shell)h
+(functions)f(during)f(command)h(lo)s(okup.)199 1297 y(2.)61
+b(If)30 b(a)h(sp)s(ecial)g(builtin)f(returns)f(an)h(error)g(status,)h
+(a)g(non-in)m(teractiv)m(e)i(shell)d(exits.)199 1431
+y(3.)61 b(Assignmen)m(t)30 b(statemen)m(ts)h(preceding)f(the)f(command)
+g(sta)m(y)i(in)e(e\013ect)i(in)e(the)h(shell)f(en)m(vironmen)m(t)330
+1541 y(after)i(the)f(command)h(completes.)275 1700 y(When)36
+b(Bash)g(is)h(not)f(executing)i(in)e Fm(posix)f Fu(mo)s(de,)j(these)f
+(builtins)f(b)s(eha)m(v)m(e)h(no)f(di\013eren)m(tly)h(than)150
+1810 y(the)31 b(rest)f(of)h(the)f(Bash)h(builtin)e(commands.)41
+b(The)30 b(Bash)g Fm(posix)g Fu(mo)s(de)g(is)g(describ)s(ed)f(in)h
+(Section)h(6.11)150 1919 y([Bash)g(POSIX)e(Mo)s(de],)i(page)g(108.)275
+2054 y(These)f(are)g(the)h Fm(posix)f Fu(sp)s(ecial)h(builtins:)390
+2188 y Ft(break)46 b(:)i(.)f(continue)f(eval)g(exec)h(exit)g(export)f
+(readonly)f(return)h(set)390 2298 y(shift)g(trap)h(unset)p
+eop end
+%%Page: 80 86
+TeXDict begin 80 85 bop 3659 -116 a Fu(80)150 299 y Fp(5)80
 b(Shell)53 b(V)-13 b(ariables)150 504 y Fu(This)21 b(c)m(hapter)i
 (describ)s(es)e(the)i(shell)f(v)-5 b(ariables)23 b(that)f(Bash)h(uses.)
 37 b(Bash)23 b(automatically)h(assigns)f(default)150
@@ -13844,7 +13917,7 @@ Fu(builtin.)150 3392 y Ft(PATH)288 b Fu(A)32 b(colon-separated)i(list)f
 3869 y Ft(PS1)336 b Fu(The)35 b(primary)f(prompt)h(string.)55
 b(The)35 b(default)h(v)-5 b(alue)35 b(is)h(`)p Ft(\\s-\\v\\$)28
 b Fu('.)56 b(See)36 b(Section)g(6.9)630 3979 y([Con)m(trolling)i(the)e
-(Prompt],)i(page)f(105,)i(for)d(the)h(complete)h(list)e(of)h(escap)s(e)
+(Prompt],)i(page)f(106,)i(for)d(the)h(complete)h(list)e(of)h(escap)s(e)
 g(sequences)630 4088 y(that)31 b(are)g(expanded)e(b)s(efore)h
 Ft(PS1)g Fu(is)g(displa)m(y)m(ed.)150 4236 y Ft(PS2)336
 b Fu(The)28 b(secondary)g(prompt)g(string.)40 b(The)28
@@ -13859,15 +13932,15 @@ b(few)g(v)-5 b(ariables)24 b(used)g(b)m(y)f(Bash)i(are)f(describ)s(ed)f
 (in)h(di\013eren)m(t)g(c)m(hapters:)38 b(v)-5 b(ariables)25
 b(for)f(con)m(trolling)150 5082 y(the)31 b(job)f(con)m(trol)h
 (facilities)i(\(see)e(Section)g(7.3)h([Job)e(Con)m(trol)h(V)-8
-b(ariables],)32 b(page)g(119\).)150 5230 y Ft(_)432 b
+b(ariables],)32 b(page)g(120\).)150 5230 y Ft(_)432 b
 Fu(\($)p 716 5230 28 4 v 41 w(,)34 b(an)g(underscore.\))49
 b(A)m(t)35 b(shell)f(startup,)g(set)g(to)g(the)g(pathname)f(used)g(to)h
 (in)m(v)m(ok)m(e)i(the)630 5340 y(shell)e(or)g(shell)h(script)f(b)s
 (eing)f(executed)j(as)e(passed)g(in)f(the)i(en)m(vironmen)m(t)f(or)g
 (argumen)m(t)p eop end
-%%Page: 80 86
-TeXDict begin 80 85 bop 150 -116 a Fu(Chapter)30 b(5:)41
-b(Shell)30 b(V)-8 b(ariables)2459 b(80)630 299 y(list.)55
+%%Page: 81 87
+TeXDict begin 81 86 bop 150 -116 a Fu(Chapter)30 b(5:)41
+b(Shell)30 b(V)-8 b(ariables)2459 b(81)630 299 y(list.)55
 b(Subsequen)m(tly)-8 b(,)35 b(expands)f(to)i(the)f(last)g(argumen)m(t)h
 (to)f(the)g(previous)f(simple)h(com-)630 408 y(mand)21
 b(executed)i(in)e(the)i(foreground,)g(after)f(expansion.)38
@@ -13883,7 +13956,7 @@ b(full)g(pathname)g(used)g(to)h(execute)h(the)e(curren)m(t)g(instance)h
 b(w)m(ord)f(in)g(the)h(list)g(is)g(a)g(v)-5 b(alid)630
 1212 y(argumen)m(t)37 b(for)g(the)g Ft(-s)f Fu(option)i(to)f(the)g
 Ft(shopt)f Fu(builtin)g(command)h(\(see)g(Section)h(4.3.2)630
-1322 y([The)e(Shopt)g(Builtin],)i(page)f(71\).)60 b(The)36
+1322 y([The)e(Shopt)g(Builtin],)i(page)f(72\).)60 b(The)36
 b(options)h(app)s(earing)f(in)g Ft(BASHOPTS)e Fu(are)i(those)630
 1431 y(rep)s(orted)e(as)h(`)p Ft(on)p Fu(')f(b)m(y)h(`)p
 Ft(shopt)p Fu('.)53 b(If)34 b(this)g(v)-5 b(ariable)36
@@ -13904,7 +13977,7 @@ b(its)g(sp)s(ecial)g(prop)s(erties,)f(ev)m(en)h(if)f(it)h(is)g
 b(ariable)41 b(whose)f(mem)m(b)s(ers)f(corresp)s(ond)g(to)i(the)f(in)m
 (ternal)h(list)630 2564 y(of)c(aliases)h(as)f(main)m(tained)g(b)m(y)g
 (the)g Ft(alias)e Fu(builtin.)59 b(\(see)37 b(Section)h(4.1)f([Bourne)g
-(Shell)630 2673 y(Builtins],)31 b(page)g(48\).)42 b(Elemen)m(ts)31
+(Shell)630 2673 y(Builtins],)31 b(page)g(49\).)42 b(Elemen)m(ts)31
 b(added)e(to)i(this)f(arra)m(y)h(app)s(ear)f(in)g(the)g(alias)h(list;)h
 (ho)m(w-)630 2783 y(ev)m(er,)k(unsetting)f(arra)m(y)g(elemen)m(ts)g
 (curren)m(tly)g(do)s(es)f(not)g(cause)h(aliases)h(to)f(b)s(e)f(remo)m
@@ -13923,7 +13996,7 @@ b(a)g(subroutine)f(is)h(executed,)i(the)e(n)m(um)m(b)s(er)f(of)h
 (parameters)630 3733 y(passed)44 b(is)h(pushed)e(on)m(to)j
 Ft(BASH_ARGC)p Fu(.)81 b(The)44 b(shell)h(sets)g Ft(BASH_ARGC)e
 Fu(only)i(when)e(in)630 3842 y(extended)34 b(debugging)f(mo)s(de)g
-(\(see)i(Section)f(4.3.2)i([The)d(Shopt)g(Builtin],)i(page)g(71,)g(for)
+(\(see)i(Section)f(4.3.2)i([The)d(Shopt)g(Builtin],)i(page)g(72,)g(for)
 630 3952 y(a)e(description)g(of)f(the)h Ft(extdebug)d
 Fu(option)j(to)h(the)e Ft(shopt)g Fu(builtin\).)47 b(Setting)33
 b Ft(extdebug)630 4061 y Fu(after)c(the)g(shell)g(has)g(started)g(to)g
@@ -13941,16 +14014,16 @@ y(is)40 b(executed,)j(the)d(parameters)h(supplied)d(are)i(pushed)f(on)m
 (to)i Ft(BASH_ARGV)p Fu(.)66 b(The)40 b(shell)630 4902
 y(sets)28 b Ft(BASH_ARGV)e Fu(only)i(when)f(in)h(extended)g(debugging)g
 (mo)s(de)g(\(see)h(Section)f(4.3.2)i([The)630 5011 y(Shopt)g(Builtin],)
-h(page)g(71,)g(for)g(a)f(description)h(of)f(the)h Ft(extdebug)d
+h(page)g(72,)g(for)g(a)f(description)h(of)f(the)h Ft(extdebug)d
 Fu(option)j(to)g(the)f Ft(shopt)630 5121 y Fu(builtin\).)64
 b(Setting)38 b Ft(extdebug)e Fu(after)j(the)f(shell)g(has)g(started)g
 (to)h(execute)g(a)g(script,)h(or)630 5230 y(referencing)35
 b(this)f(v)-5 b(ariable)35 b(when)e Ft(extdebug)f Fu(is)j(not)f(set,)j
 (ma)m(y)e(result)f(in)g(inconsisten)m(t)630 5340 y(v)-5
 b(alues.)p eop end
-%%Page: 81 87
-TeXDict begin 81 86 bop 150 -116 a Fu(Chapter)30 b(5:)41
-b(Shell)30 b(V)-8 b(ariables)2459 b(81)150 299 y Ft(BASH_ARGV0)630
+%%Page: 82 88
+TeXDict begin 82 87 bop 150 -116 a Fu(Chapter)30 b(5:)41
+b(Shell)30 b(V)-8 b(ariables)2459 b(82)150 299 y Ft(BASH_ARGV0)630
 408 y Fu(When)31 b(referenced,)g(this)g(v)-5 b(ariable)32
 b(expands)e(to)h(the)h(name)f(of)g(the)g(shell)g(or)g(shell)g(script)
 630 518 y(\(iden)m(tical)42 b(to)e Ft($0)p Fu(;)j(See)d(Section)g
@@ -13965,7 +14038,7 @@ Ft($0)p Fu(.)51 b(If)33 b Ft(BASH_ARGV0)f Fu(is)h(unset,)i(it)f(loses)h
 b(whose)f(mem)m(b)s(ers)f(corresp)s(ond)g(to)i(the)f(in)m(ternal)h
 (hash)630 1267 y(table)c(of)g(commands)f(as)g(main)m(tained)h(b)m(y)g
 (the)f Ft(hash)f Fu(builtin)h(\(see)h(Section)g(4.1)h([Bourne)630
-1377 y(Shell)42 b(Builtins],)k(page)d(48\).)77 b(Elemen)m(ts)43
+1377 y(Shell)42 b(Builtins],)k(page)d(49\).)77 b(Elemen)m(ts)43
 b(added)e(to)i(this)f(arra)m(y)h(app)s(ear)f(in)f(the)i(hash)630
 1486 y(table;)k(ho)m(w)m(ev)m(er,)e(unsetting)c(arra)m(y)g(elemen)m(ts)
 i(curren)m(tly)d(do)s(es)h(not)g(cause)g(command)630
@@ -13983,7 +14056,7 @@ b(If)30 b Ft(BASH_COMMAND)e Fu(is)i(unset,)h(it)g(loses)630
 (subsequen)m(tly)g(reset.)150 2545 y Ft(BASH_COMPAT)630
 2655 y Fu(The)i(v)-5 b(alue)33 b(is)g(used)f(to)h(set)g(the)g(shell's)g
 (compatibilit)m(y)i(lev)m(el.)49 b(See)33 b(Section)h(6.12)g([Shell)630
-2765 y(Compatibilit)m(y)j(Mo)s(de],)h(page)e(112,)i(for)e(a)g
+2765 y(Compatibilit)m(y)j(Mo)s(de],)h(page)e(113,)i(for)e(a)g
 (description)g(of)f(the)h(v)-5 b(arious)36 b(compatibilit)m(y)630
 2874 y(lev)m(els)g(and)f(their)g(e\013ects.)55 b(The)34
 b(v)-5 b(alue)36 b(ma)m(y)f(b)s(e)f(a)i(decimal)f(n)m(um)m(b)s(er)f
@@ -14000,7 +14073,7 @@ b(alid)31 b(compatibilit)m(y)i(lev)m(els,)f(the)f(shell)f(prin)m(ts)g
 47 b(The)31 b(v)-5 b(alid)33 b(v)-5 b(alues)630 3532
 y(corresp)s(ond)31 b(to)i(the)g(compatibilit)m(y)i(lev)m(els)f(describ)
 s(ed)d(b)s(elo)m(w)i(\(see)g(Section)h(6.12)g([Shell)630
-3641 y(Compatibilit)m(y)d(Mo)s(de],)f(page)g(112\).)42
+3641 y(Compatibilit)m(y)d(Mo)s(de],)f(page)g(113\).)42
 b(F)-8 b(or)30 b(example,)h(4.2)f(and)f(42)h(are)g(v)-5
 b(alid)30 b(v)-5 b(alues)29 b(that)630 3751 y(corresp)s(ond)d(to)i(the)
 f Ft(compat42)e(shopt)g Fu(option)j(and)e(set)i(the)f(compatibilit)m(y)
@@ -14011,7 +14084,7 @@ b(is)e(set)h(when)f(Bash)g(is)h(in)m(v)m(ok)m(ed)h(to)f(execute)h(a)e
 (shell)h(script,)g(its)g(v)-5 b(alue)29 b(is)630 4171
 y(expanded)k(and)h(used)g(as)g(the)h(name)f(of)g(a)h(startup)f(\014le)g
 (to)h(read)f(b)s(efore)g(executing)i(the)630 4281 y(script.)41
-b(See)30 b(Section)h(6.2)h([Bash)f(Startup)e(Files],)j(page)f(94.)150
+b(See)30 b(Section)h(6.2)h([Bash)f(Startup)e(Files],)j(page)f(95.)150
 4482 y Ft(BASH_EXECUTION_STRING)630 4591 y Fu(The)f(command)g(argumen)m
 (t)h(to)g(the)g Ft(-c)e Fu(in)m(v)m(o)s(cation)k(option.)150
 4792 y Ft(BASH_LINENO)630 4902 y Fu(An)38 b(arra)m(y)g(v)-5
@@ -14025,9 +14098,9 @@ b(ariable)39 b(whose)f(mem)m(b)s(ers)f(are)i(the)f(line)h(n)m(um)m(b)s
 b Fu(if)36 b(referenced)g(within)630 5340 y(another)31
 b(shell)f(function\).)41 b(Use)31 b Ft(LINENO)d Fu(to)j(obtain)g(the)g
 (curren)m(t)f(line)h(n)m(um)m(b)s(er.)p eop end
-%%Page: 82 88
-TeXDict begin 82 87 bop 150 -116 a Fu(Chapter)30 b(5:)41
-b(Shell)30 b(V)-8 b(ariables)2459 b(82)150 299 y Ft
+%%Page: 83 89
+TeXDict begin 83 88 bop 150 -116 a Fu(Chapter)30 b(5:)41
+b(Shell)30 b(V)-8 b(ariables)2459 b(83)150 299 y Ft
 (BASH_LOADABLES_PATH)630 408 y Fu(A)39 b(colon-separated)i(list)f(of)f
 (directories)h(in)f(whic)m(h)g(the)g(shell)h(lo)s(oks)f(for)g
 (dynamically)630 518 y(loadable)32 b(builtins)d(sp)s(eci\014ed)h(b)m(y)
@@ -14057,7 +14130,7 @@ b(alue)28 b(is)f(0.)40 b(If)28 b Ft(BASH_SUBSHELL)630
 2299 y Fu(is)i(unset,)h(it)g(loses)g(its)f(sp)s(ecial)h(prop)s(erties,)
 f(ev)m(en)h(if)g(it)g(is)f(subsequen)m(tly)g(reset.)150
 2454 y Ft(BASH_VERSINFO)630 2564 y Fu(A)i(readonly)g(arra)m(y)g(v)-5
-b(ariable)32 b(\(see)h(Section)g(6.7)f([Arra)m(ys],)h(page)g(101\))g
+b(ariable)32 b(\(see)h(Section)g(6.7)f([Arra)m(ys],)h(page)g(102\))g
 (whose)f(mem)m(b)s(ers)630 2673 y(hold)g(v)m(ersion)h(information)f
 (for)g(this)g(instance)h(of)g(Bash.)46 b(The)32 b(v)-5
 b(alues)32 b(assigned)h(to)g(the)630 2783 y(arra)m(y)e(mem)m(b)s(ers)e
@@ -14084,9 +14157,9 @@ b(tracing)h(output)d(to)i(b)s(e)f(separated)g(from)g(diagnostic)h(and)f
 (new)f(v)-5 b(alue.)630 5340 y(Unsetting)45 b Ft(BASH_XTRACEFD)40
 b Fu(or)k(assigning)g(it)g(the)g(empt)m(y)h(string)e(causes)i(the)f
 (trace)p eop end
-%%Page: 83 89
-TeXDict begin 83 88 bop 150 -116 a Fu(Chapter)30 b(5:)41
-b(Shell)30 b(V)-8 b(ariables)2459 b(83)630 299 y(output)33
+%%Page: 84 90
+TeXDict begin 84 89 bop 150 -116 a Fu(Chapter)30 b(5:)41
+b(Shell)30 b(V)-8 b(ariables)2459 b(84)630 299 y(output)33
 b(to)i(b)s(e)d(sen)m(t)j(to)f(the)g(standard)e(error.)50
 b(Note)35 b(that)g(setting)f Ft(BASH_XTRACEFD)c Fu(to)630
 408 y(2)39 b(\(the)h(standard)e(error)g(\014le)h(descriptor\))h(and)e
@@ -14105,7 +14178,7 @@ Ft(select)e Fu(command)h(to)i(determine)f(the)f(terminal)i(width)d
 (when)h(prin)m(ting)630 1358 y(selection)39 b(lists.)63
 b(Automatically)41 b(set)d(if)f(the)h Ft(checkwinsize)d
 Fu(option)j(is)f(enabled)h(\(see)630 1468 y(Section)44
-b(4.3.2)h([The)e(Shopt)g(Builtin],)k(page)d(71\),)k(or)43
+b(4.3.2)h([The)e(Shopt)g(Builtin],)k(page)d(72\),)k(or)43
 b(in)g(an)g(in)m(teractiv)m(e)j(shell)e(up)s(on)630 1577
 y(receipt)31 b(of)g(a)g Ft(SIGWINCH)p Fu(.)150 1724 y
 Ft(COMP_CWORD)630 1833 y Fu(An)38 b(index)g(in)m(to)h
@@ -14114,13 +14187,13 @@ Ft(${COMP_WORDS})c Fu(of)k(the)g(w)m(ord)f(con)m(taining)i(the)e
 b(v)-5 b(ariable)41 b(is)f(a)m(v)-5 b(ailable)43 b(only)e(in)f(shell)h
 (functions)f(in)m(v)m(ok)m(ed)i(b)m(y)e(the)h(pro-)630
 2052 y(grammable)36 b(completion)g(facilities)i(\(see)e(Section)g(8.6)g
-([Programmable)g(Completion],)630 2162 y(page)31 b(146\).)150
+([Programmable)g(Completion],)630 2162 y(page)31 b(147\).)150
 2308 y Ft(COMP_LINE)630 2418 y Fu(The)38 b(curren)m(t)h(command)f
 (line.)66 b(This)37 b(v)-5 b(ariable)40 b(is)f(a)m(v)-5
 b(ailable)41 b(only)d(in)h(shell)f(functions)630 2527
 y(and)25 b(external)h(commands)f(in)m(v)m(ok)m(ed)h(b)m(y)f(the)h
 (programmable)f(completion)i(facilities)g(\(see)630 2637
-y(Section)k(8.6)h([Programmable)f(Completion],)g(page)g(146\).)150
+y(Section)k(8.6)h([Programmable)f(Completion],)g(page)g(147\).)150
 2783 y Ft(COMP_POINT)630 2892 y Fu(The)25 b(index)g(of)h(the)g(curren)m
 (t)f(cursor)g(p)s(osition)h(relativ)m(e)i(to)e(the)g(b)s(eginning)f(of)
 g(the)h(curren)m(t)630 3002 y(command.)40 b(If)27 b(the)h(curren)m(t)g
@@ -14131,7 +14204,7 @@ b(This)29 b(v)-5 b(ariable)31 b(is)f(a)m(v)-5 b(ailable)630
 3221 y(only)36 b(in)f(shell)h(functions)f(and)g(external)h(commands)g
 (in)m(v)m(ok)m(ed)h(b)m(y)e(the)h(programmable)630 3331
 y(completion)c(facilities)g(\(see)g(Section)f(8.6)g([Programmable)g
-(Completion],)h(page)f(146\).)150 3477 y Ft(COMP_TYPE)630
+(Completion],)h(page)f(147\).)150 3477 y Ft(COMP_TYPE)630
 3587 y Fu(Set)c(to)h(an)f(in)m(teger)h(v)-5 b(alue)28
 b(corresp)s(onding)e(to)h(the)h(t)m(yp)s(e)f(of)g(completion)h
 (attempted)g(that)630 3696 y(caused)j(a)g(completion)h(function)e(to)h
@@ -14145,7 +14218,7 @@ g(unmo)s(di\014ed,)f(or)h(`)p Ft(\045)p Fu(',)h(for)630
 b(is)g(a)m(v)-5 b(ailable)28 b(only)f(in)f(shell)g(functions)g(and)g
 (external)630 4134 y(commands)32 b(in)m(v)m(ok)m(ed)i(b)m(y)e(the)g
 (programmable)h(completion)g(facilities)i(\(see)e(Section)g(8.6)630
-4244 y([Programmable)e(Completion],)h(page)f(146\).)150
+4244 y([Programmable)e(Completion],)h(page)f(147\).)150
 4390 y Ft(COMP_KEY)96 b Fu(The)29 b(k)m(ey)i(\(or)g(\014nal)e(k)m(ey)i
 (of)f(a)g(k)m(ey)h(sequence\))g(used)e(to)i(in)m(v)m(ok)m(e)h(the)e
 (curren)m(t)g(completion)630 4500 y(function.)150 4646
@@ -14160,20 +14233,20 @@ g(individual)f(w)m(ords)h(in)f(the)h(curren)m(t)g(command)630
 5340 y(line.)94 b(The)47 b(line)i(is)f(split)g(in)m(to)h(w)m(ords)e(as)
 h(Readline)h(w)m(ould)f(split)g(it,)53 b(using)47 b Ft(COMP_)p
 eop end
-%%Page: 84 90
-TeXDict begin 84 89 bop 150 -116 a Fu(Chapter)30 b(5:)41
-b(Shell)30 b(V)-8 b(ariables)2459 b(84)630 299 y Ft(WORDBREAKS)34
+%%Page: 85 91
+TeXDict begin 85 90 bop 150 -116 a Fu(Chapter)30 b(5:)41
+b(Shell)30 b(V)-8 b(ariables)2459 b(85)630 299 y Ft(WORDBREAKS)34
 b Fu(as)i(describ)s(ed)g(ab)s(o)m(v)m(e.)60 b(This)36
 b(v)-5 b(ariable)37 b(is)f(a)m(v)-5 b(ailable)39 b(only)e(in)f(shell)h
 (func-)630 408 y(tions)32 b(in)m(v)m(ok)m(ed)i(b)m(y)d(the)i
 (programmable)f(completion)h(facilities)h(\(see)f(Section)g(8.6)g
-([Pro-)630 518 y(grammable)e(Completion],)g(page)g(146\).)150
+([Pro-)630 518 y(grammable)e(Completion],)g(page)g(147\).)150
 676 y Ft(COMPREPLY)630 786 y Fu(An)37 b(arra)m(y)h(v)-5
 b(ariable)38 b(from)f(whic)m(h)g(Bash)g(reads)g(the)h(p)s(ossible)e
 (completions)j(generated)630 896 y(b)m(y)33 b(a)g(shell)h(function)f
 (in)m(v)m(ok)m(ed)h(b)m(y)f(the)g(programmable)h(completion)g(facilit)m
 (y)h(\(see)f(Sec-)630 1005 y(tion)g(8.6)g([Programmable)g(Completion],)
-h(page)f(146\).)51 b(Eac)m(h)34 b(arra)m(y)g(elemen)m(t)h(con)m(tains)
+h(page)f(147\).)51 b(Eac)m(h)34 b(arra)m(y)g(elemen)m(t)h(con)m(tains)
 630 1115 y(one)c(p)s(ossible)f(completion.)150 1273 y
 Ft(COPROC)192 b Fu(An)27 b(arra)m(y)g(v)-5 b(ariable)28
 b(created)g(to)f(hold)g(the)g(\014le)g(descriptors)g(for)g(output)f
@@ -14201,9 +14274,9 @@ b(in)f(the)h(en)m(vironmen)m(t)g(when)e(the)i(shell)f(starts)h(with)f
 h(disables)630 2576 y(line)d(editing.)150 2734 y Ft(ENV)336
 b Fu(Expanded)33 b(and)h(executed)i(similarly)f(to)g
 Ft(BASH_ENV)d Fu(\(see)k(Section)f(6.2)h([Bash)f(Startup)630
-2844 y(Files],)k(page)e(94\))h(when)d(an)h(in)m(teractiv)m(e)j(shell)d
+2844 y(Files],)k(page)e(95\))h(when)d(an)h(in)m(teractiv)m(e)j(shell)d
 (is)h(in)m(v)m(ok)m(ed)g(in)f Fm(posix)g Fu(Mo)s(de)g(\(see)h(Sec-)630
-2953 y(tion)31 b(6.11)h([Bash)f(POSIX)e(Mo)s(de],)i(page)g(107\).)150
+2953 y(tion)31 b(6.11)h([Bash)f(POSIX)e(Mo)s(de],)i(page)g(108\).)150
 3112 y Ft(EPOCHREALTIME)630 3221 y Fu(Eac)m(h)38 b(time)f(this)g
 (parameter)h(is)f(referenced,)i(it)f(expands)e(to)i(the)f(n)m(um)m(b)s
 (er)f(of)h(seconds)630 3331 y(since)f(the)g(Unix)f(Ep)s(o)s(c)m(h)g(as)
@@ -14228,7 +14301,7 @@ b(to)h Ft(EPOCHSECONDS)c Fu(are)k(ignored.)73 b(If)630
 b(This)30 b(v)-5 b(ariable)31 b(is)f(readonly)-8 b(.)150
 4682 y Ft(EXECIGNORE)630 4792 y Fu(A)29 b(colon-separated)h(list)f(of)g
 (shell)g(patterns)f(\(see)i(Section)f(3.5.8.1)i([P)m(attern)f(Matc)m
-(hing],)630 4902 y(page)j(36\))g(de\014ning)e(the)h(list)g(of)g
+(hing],)630 4902 y(page)j(37\))g(de\014ning)e(the)h(list)g(of)g
 (\014lenames)g(to)g(b)s(e)g(ignored)g(b)m(y)f(command)h(searc)m(h)g
 (using)630 5011 y Ft(PATH)p Fu(.)k(Files)22 b(whose)f(full)g(pathnames)
 g(matc)m(h)h(one)f(of)g(these)h(patterns)e(are)i(not)f(considered)630
@@ -14239,342 +14312,346 @@ s(eha)m(vior)h(of)g(the)g Ft([)p Fu(,)h Ft(test)p Fu(,)f(and)f
 Ft([[)g Fu(commands.)630 5340 y(F)-8 b(ull)42 b(pathnames)e(in)h(the)g
 (command)g(hash)f(table)i(are)g(not)f(sub)5 b(ject)41
 b(to)g Ft(EXECIGNORE)p Fu(.)p eop end
-%%Page: 85 91
-TeXDict begin 85 90 bop 150 -116 a Fu(Chapter)30 b(5:)41
-b(Shell)30 b(V)-8 b(ariables)2459 b(85)630 299 y(Use)30
+%%Page: 86 92
+TeXDict begin 86 91 bop 150 -116 a Fu(Chapter)30 b(5:)41
+b(Shell)30 b(V)-8 b(ariables)2459 b(86)630 299 y(Use)30
 b(this)f(v)-5 b(ariable)30 b(to)g(ignore)g(shared)f(library)g(\014les)g
 (that)h(ha)m(v)m(e)h(the)f(executable)h(bit)e(set,)630
 408 y(but)36 b(are)h(not)g(executable)i(\014les.)60 b(The)36
 b(pattern)h(matc)m(hing)h(honors)e(the)h(setting)h(of)f(the)630
-518 y Ft(extglob)28 b Fu(shell)j(option.)150 676 y Ft(FCEDIT)192
+518 y Ft(extglob)28 b Fu(shell)j(option.)150 692 y Ft(FCEDIT)192
 b Fu(The)30 b(editor)h(used)e(as)i(a)g(default)f(b)m(y)h(the)f
 Ft(-e)g Fu(option)h(to)g(the)f Ft(fc)g Fu(builtin)g(command.)150
-835 y Ft(FIGNORE)144 b Fu(A)35 b(colon-separated)i(list)f(of)g
+866 y Ft(FIGNORE)144 b Fu(A)35 b(colon-separated)i(list)f(of)g
 (su\016xes)e(to)i(ignore)g(when)e(p)s(erforming)g(\014lename)i(comple-)
-630 944 y(tion.)k(A)27 b(\014lename)g(whose)f(su\016x)g(matc)m(hes)i
+630 976 y(tion.)k(A)27 b(\014lename)g(whose)f(su\016x)g(matc)m(hes)i
 (one)f(of)g(the)g(en)m(tries)g(in)g Ft(FIGNORE)d Fu(is)j(excluded)630
-1054 y(from)j(the)g(list)h(of)g(matc)m(hed)g(\014lenames.)41
+1085 y(from)j(the)g(list)h(of)g(matc)m(hed)g(\014lenames.)41
 b(A)30 b(sample)h(v)-5 b(alue)31 b(is)f(`)p Ft(.o:~)p
-Fu(')150 1212 y Ft(FUNCNAME)96 b Fu(An)35 b(arra)m(y)i(v)-5
+Fu(')150 1259 y Ft(FUNCNAME)96 b Fu(An)35 b(arra)m(y)i(v)-5
 b(ariable)36 b(con)m(taining)h(the)f(names)g(of)g(all)g(shell)g
-(functions)g(curren)m(tly)f(in)h(the)630 1322 y(execution)g(call)h
+(functions)g(curren)m(tly)f(in)h(the)630 1369 y(execution)g(call)h
 (stac)m(k.)57 b(The)34 b(elemen)m(t)j(with)e(index)g(0)h(is)f(the)g
-(name)h(of)f(an)m(y)h(curren)m(tly-)630 1431 y(executing)f(shell)f
+(name)h(of)f(an)m(y)h(curren)m(tly-)630 1479 y(executing)f(shell)f
 (function.)51 b(The)34 b(b)s(ottom-most)h(elemen)m(t)g(\(the)g(one)f
-(with)g(the)g(highest)630 1541 y(index\))e(is)h Ft("main")p
+(with)g(the)g(highest)630 1588 y(index\))e(is)h Ft("main")p
 Fu(.)44 b(This)32 b(v)-5 b(ariable)33 b(exists)g(only)g(when)e(a)i
-(shell)f(function)g(is)g(executing.)630 1650 y(Assignmen)m(ts)23
+(shell)f(function)g(is)g(executing.)630 1698 y(Assignmen)m(ts)23
 b(to)f Ft(FUNCNAME)e Fu(ha)m(v)m(e)k(no)e(e\013ect.)39
 b(If)22 b Ft(FUNCNAME)e Fu(is)i(unset,)h(it)g(loses)g(its)f(sp)s(ecial)
-630 1760 y(prop)s(erties,)30 b(ev)m(en)h(if)f(it)h(is)g(subsequen)m
-(tly)f(reset.)630 1894 y(This)h(v)-5 b(ariable)32 b(can)f(b)s(e)g(used)
+630 1807 y(prop)s(erties,)30 b(ev)m(en)h(if)f(it)h(is)g(subsequen)m
+(tly)f(reset.)630 1949 y(This)h(v)-5 b(ariable)32 b(can)f(b)s(e)g(used)
 g(with)g Ft(BASH_LINENO)d Fu(and)j Ft(BASH_SOURCE)p Fu(.)40
-b(Eac)m(h)32 b(elemen)m(t)630 2004 y(of)g Ft(FUNCNAME)d
+b(Eac)m(h)32 b(elemen)m(t)630 2059 y(of)g Ft(FUNCNAME)d
 Fu(has)j(corresp)s(onding)e(elemen)m(ts)j(in)f Ft(BASH_LINENO)c
-Fu(and)k Ft(BASH_SOURCE)c Fu(to)630 2113 y(describ)s(e)39
+Fu(and)k Ft(BASH_SOURCE)c Fu(to)630 2168 y(describ)s(e)39
 b(the)h(call)h(stac)m(k.)70 b(F)-8 b(or)41 b(instance,)i
 Ft(${FUNCNAME[$i]})35 b Fu(w)m(as)41 b(called)f(from)g(the)630
-2223 y(\014le)27 b Ft(${BASH_SOURCE[$i+1]})21 b Fu(at)27
+2278 y(\014le)27 b Ft(${BASH_SOURCE[$i+1]})21 b Fu(at)27
 b(line)h(n)m(um)m(b)s(er)d Ft(${BASH_LINENO[$i]})p Fu(.)34
-b(The)27 b Ft(caller)630 2332 y Fu(builtin)j(displa)m(ys)g(the)h
+b(The)27 b Ft(caller)630 2388 y Fu(builtin)j(displa)m(ys)g(the)h
 (curren)m(t)f(call)i(stac)m(k)g(using)d(this)i(information.)150
-2491 y Ft(FUNCNEST)96 b Fu(If)34 b(set)i(to)f(a)h(n)m(umeric)e(v)-5
+2562 y Ft(FUNCNEST)96 b Fu(If)34 b(set)i(to)f(a)h(n)m(umeric)e(v)-5
 b(alue)36 b(greater)g(than)e(0,)j(de\014nes)d(a)h(maxim)m(um)g
-(function)g(nesting)630 2600 y(lev)m(el.)42 b(F)-8 b(unction)29
+(function)g(nesting)630 2671 y(lev)m(el.)42 b(F)-8 b(unction)29
 b(in)m(v)m(o)s(cations)h(that)f(exceed)h(this)e(nesting)h(lev)m(el)h
-(will)f(cause)g(the)f(curren)m(t)630 2710 y(command)i(to)h(ab)s(ort.)
-150 2868 y Ft(GLOBIGNORE)630 2978 y Fu(A)k(colon-separated)i(list)f(of)
+(will)f(cause)g(the)f(curren)m(t)630 2781 y(command)i(to)h(ab)s(ort.)
+150 2955 y Ft(GLOBIGNORE)630 3064 y Fu(A)k(colon-separated)i(list)f(of)
 f(patterns)g(de\014ning)f(the)i(set)f(of)g(\014le)h(names)f(to)g(b)s(e)
-g(ignored)630 3087 y(b)m(y)28 b(\014lename)h(expansion.)40
+g(ignored)630 3174 y(b)m(y)28 b(\014lename)h(expansion.)40
 b(If)28 b(a)h(\014le)g(name)g(matc)m(hed)g(b)m(y)g(a)g(\014lename)f
-(expansion)h(pattern)630 3197 y(also)k(matc)m(hes)g(one)f(of)g(the)g
+(expansion)h(pattern)630 3284 y(also)k(matc)m(hes)g(one)f(of)g(the)g
 (patterns)g(in)f Ft(GLOBIGNORE)p Fu(,)f(it)i(is)g(remo)m(v)m(ed)h(from)
-e(the)h(list)h(of)630 3306 y(matc)m(hes.)41 b(The)27
+e(the)h(list)h(of)630 3393 y(matc)m(hes.)41 b(The)27
 b(pattern)g(matc)m(hing)h(honors)f(the)g(setting)i(of)e(the)h
-Ft(extglob)d Fu(shell)i(option.)150 3465 y Ft(GLOBSORT)96
+Ft(extglob)d Fu(shell)i(option.)150 3567 y Ft(GLOBSORT)96
 b Fu(Con)m(trol)41 b(ho)m(w)f(the)g(results)g(of)h(\014lename)f
 (expansion)g(are)g(sorted.)70 b(The)40 b(v)-5 b(alue)41
-b(of)f(this)630 3574 y(v)-5 b(ariable)45 b(sp)s(eci\014es)e(the)h(sort)
+b(of)f(this)630 3677 y(v)-5 b(ariable)45 b(sp)s(eci\014es)e(the)h(sort)
 g(criteria)h(and)e(sort)h(order)f(for)g(the)h(results)g(of)g
-(\014lename)630 3684 y(expansion.)c(If)29 b(this)g(v)-5
+(\014lename)630 3786 y(expansion.)c(If)29 b(this)g(v)-5
 b(ariable)30 b(is)f(unset)f(or)h(set)h(to)g(the)f(n)m(ull)g(string,)h
-(\014lename)f(expansion)630 3794 y(uses)g(the)h(historial)g(b)s(eha)m
+(\014lename)f(expansion)630 3896 y(uses)g(the)h(historial)g(b)s(eha)m
 (vior)f(of)h(sorting)g(b)m(y)f(name.)41 b(If)29 b(set,)h(a)g(v)-5
-b(alid)29 b(v)-5 b(alue)30 b(b)s(egins)f(with)630 3903
+b(alid)29 b(v)-5 b(alue)30 b(b)s(egins)f(with)630 4006
 y(an)42 b(optional)h(`)p Ft(+)p Fu(',)i(whic)m(h)d(is)g(ignored,)j(or)d
 (`)p Ft(-)p Fu(',)j(whic)m(h)d(rev)m(erses)h(the)f(sort)g(order)f(from)
-630 4013 y(ascending)34 b(to)g(descending,)g(follo)m(w)m(ed)h(b)m(y)e
+630 4115 y(ascending)34 b(to)g(descending,)g(follo)m(w)m(ed)h(b)m(y)e
 (a)h(sort)f(sp)s(eci\014er.)50 b(The)32 b(v)-5 b(alid)34
-b(sort)g(sp)s(eci\014ers)630 4122 y(are)21 b(`)p Ft(name)p
+b(sort)g(sp)s(eci\014ers)630 4225 y(are)21 b(`)p Ft(name)p
 Fu(',)h(`)p Ft(size)p Fu(',)g(`)p Ft(mtime)p Fu(',)g(`)p
 Ft(atime)p Fu(',)g(`)p Ft(ctime)p Fu(',)f(and)f(`)p Ft(blocks)p
-Fu(',)i(whic)m(h)e(sort)h(the)g(\014les)f(on)630 4232
+Fu(',)i(whic)m(h)e(sort)h(the)g(\014les)f(on)630 4334
 y(name,)30 b(\014le)h(size,)g(mo)s(di\014cation)f(time,)h(access)h
 (time,)f(ino)s(de)e(c)m(hange)j(time,)f(and)e(n)m(um)m(b)s(er)630
-4341 y(of)i(blo)s(c)m(ks,)g(resp)s(ectiv)m(ely)-8 b(.)630
-4475 y(F)g(or)33 b(example,)g(a)f(v)-5 b(alue)33 b(of)f
+4444 y(of)i(blo)s(c)m(ks,)g(resp)s(ectiv)m(ely)-8 b(.)630
+4586 y(F)g(or)33 b(example,)g(a)f(v)-5 b(alue)33 b(of)f
 Ft(-mtime)e Fu(sorts)i(the)g(results)g(in)f(descending)h(order)f(b)m(y)
-h(mo)s(di-)630 4585 y(\014cation)f(time)g(\(new)m(est)h(\014rst\).)630
-4719 y(If)26 b(the)h(sort)f(sp)s(eci\014er)g(is)h(missing,)g(it)g
-(defaults)g(to)g Fr(name)p Fu(,)g(so)g(a)g(v)-5 b(alue)27
-b(of)f(`)p Ft(+)p Fu(')h(is)f(equiv)-5 b(alen)m(t)630
-4829 y(to)31 b(the)g(n)m(ull)f(string,)h(and)e(a)i(v)-5
+h(mo)s(di-)630 4695 y(\014cation)f(time)g(\(new)m(est)h(\014rst\).)630
+4837 y(A)26 b(sort)h(sp)s(eci\014er)e(of)h(`)p Ft(nosort)p
+Fu(')f(disables)h(sorting)h(completely;)i(the)e(results)f(are)g
+(returned)630 4947 y(in)k(the)h(order)f(they)g(are)h(read)f(from)g(the)
+h(\014le)f(system,.)630 5089 y(If)c(the)h(sort)f(sp)s(eci\014er)g(is)h
+(missing,)g(it)g(defaults)g(to)g Fr(name)p Fu(,)g(so)g(a)g(v)-5
+b(alue)27 b(of)f(`)p Ft(+)p Fu(')h(is)f(equiv)-5 b(alen)m(t)630
+5198 y(to)31 b(the)g(n)m(ull)f(string,)h(and)e(a)i(v)-5
 b(alue)31 b(of)f(`)p Ft(-)p Fu(')h(sorts)f(b)m(y)h(name)f(in)g
-(descending)g(order.)630 4963 y(An)m(y)g(in)m(v)-5 b(alid)31
+(descending)g(order.)630 5340 y(An)m(y)g(in)m(v)-5 b(alid)31
 b(v)-5 b(alue)31 b(restores)g(the)g(historical)g(sorting)g(b)s(eha)m
-(vior.)150 5121 y Ft(GROUPS)192 b Fu(An)36 b(arra)m(y)g(v)-5
-b(ariable)37 b(con)m(taining)g(the)f(list)h(of)f(groups)g(of)g(whic)m
-(h)f(the)i(curren)m(t)e(user)h(is)g(a)630 5230 y(mem)m(b)s(er.)41
-b(Assignmen)m(ts)30 b(to)i Ft(GROUPS)d Fu(ha)m(v)m(e)i(no)g(e\013ect.)
-42 b(If)30 b Ft(GROUPS)f Fu(is)i(unset,)f(it)h(loses)h(its)630
-5340 y(sp)s(ecial)f(prop)s(erties,)f(ev)m(en)h(if)f(it)h(is)g
-(subsequen)m(tly)f(reset.)p eop end
-%%Page: 86 92
-TeXDict begin 86 91 bop 150 -116 a Fu(Chapter)30 b(5:)41
-b(Shell)30 b(V)-8 b(ariables)2459 b(86)150 299 y Ft(histchars)630
-408 y Fu(Up)26 b(to)g(three)g(c)m(haracters)i(whic)m(h)d(con)m(trol)j
-(history)d(expansion,)i(quic)m(k)g(substitution,)g(and)630
-518 y(tok)m(enization)k(\(see)f(Section)f(9.3)h([History)f(In)m
-(teraction],)i(page)f(157\).)41 b(The)29 b(\014rst)e(c)m(harac-)630
-628 y(ter)j(is)f(the)g Fr(history)g(expansion)g Fu(c)m(haracter,)j
+(vior.)p eop end
+%%Page: 87 93
+TeXDict begin 87 92 bop 150 -116 a Fu(Chapter)30 b(5:)41
+b(Shell)30 b(V)-8 b(ariables)2459 b(87)150 299 y Ft(GROUPS)192
+b Fu(An)36 b(arra)m(y)g(v)-5 b(ariable)37 b(con)m(taining)g(the)f(list)
+h(of)f(groups)g(of)g(whic)m(h)f(the)i(curren)m(t)e(user)h(is)g(a)630
+408 y(mem)m(b)s(er.)41 b(Assignmen)m(ts)30 b(to)i Ft(GROUPS)d
+Fu(ha)m(v)m(e)i(no)g(e\013ect.)42 b(If)30 b Ft(GROUPS)f
+Fu(is)i(unset,)f(it)h(loses)h(its)630 518 y(sp)s(ecial)f(prop)s
+(erties,)f(ev)m(en)h(if)f(it)h(is)g(subsequen)m(tly)f(reset.)150
+682 y Ft(histchars)630 792 y Fu(Up)c(to)g(three)g(c)m(haracters)i(whic)
+m(h)d(con)m(trol)j(history)d(expansion,)i(quic)m(k)g(substitution,)g
+(and)630 902 y(tok)m(enization)k(\(see)f(Section)f(9.3)h([History)f(In)
+m(teraction],)i(page)f(158\).)41 b(The)29 b(\014rst)e(c)m(harac-)630
+1011 y(ter)j(is)f(the)g Fr(history)g(expansion)g Fu(c)m(haracter,)j
 (that)e(is,)f(the)h(c)m(haracter)h(whic)m(h)d(signi\014es)i(the)630
-737 y(start)25 b(of)f(a)h(history)f(expansion,)i(normally)e(`)p
+1121 y(start)25 b(of)f(a)h(history)f(expansion,)i(normally)e(`)p
 Ft(!)p Fu('.)39 b(The)24 b(second)g(c)m(haracter)i(is)e(the)g(c)m
-(haracter)630 847 y(whic)m(h)36 b(signi\014es)g(`quic)m(k)h
+(haracter)630 1230 y(whic)m(h)36 b(signi\014es)g(`quic)m(k)h
 (substitution')f(when)f(seen)h(as)g(the)g(\014rst)f(c)m(haracter)j(on)e
-(a)g(line,)630 956 y(normally)27 b(`)p Ft(^)p Fu('.)39
+(a)g(line,)630 1340 y(normally)27 b(`)p Ft(^)p Fu('.)39
 b(The)26 b(optional)i(third)d(c)m(haracter)j(is)e(the)h(c)m(haracter)h
-(whic)m(h)e(indicates)h(that)630 1066 y(the)34 b(remainder)f(of)h(the)g
+(whic)m(h)e(indicates)h(that)630 1450 y(the)34 b(remainder)f(of)h(the)g
 (line)g(is)f(a)h(commen)m(t)h(when)e(found)f(as)i(the)g(\014rst)f(c)m
-(haracter)i(of)f(a)630 1176 y(w)m(ord,)i(usually)f(`)p
+(haracter)i(of)f(a)630 1559 y(w)m(ord,)i(usually)f(`)p
 Ft(#)p Fu('.)55 b(The)34 b(history)h(commen)m(t)h(c)m(haracter)h
-(causes)e(history)g(substitution)630 1285 y(to)27 b(b)s(e)f(skipp)s(ed)
+(causes)e(history)g(substitution)630 1669 y(to)27 b(b)s(e)f(skipp)s(ed)
 f(for)i(the)f(remaining)h(w)m(ords)f(on)h(the)f(line.)40
-b(It)27 b(do)s(es)f(not)h(necessarily)g(cause)630 1395
+b(It)27 b(do)s(es)f(not)h(necessarily)g(cause)630 1778
 y(the)k(shell)f(parser)g(to)h(treat)g(the)g(rest)g(of)f(the)h(line)f
-(as)h(a)g(commen)m(t.)150 1548 y Ft(HISTCMD)144 b Fu(The)44
+(as)h(a)g(commen)m(t.)150 1943 y Ft(HISTCMD)144 b Fu(The)44
 b(history)h(n)m(um)m(b)s(er,)j(or)d(index)g(in)f(the)h(history)g(list,)
-50 b(of)45 b(the)g(curren)m(t)g(command.)630 1658 y(Assignmen)m(ts)37
+50 b(of)45 b(the)g(curren)m(t)g(command.)630 2052 y(Assignmen)m(ts)37
 b(to)h Ft(HISTCMD)d Fu(are)j(ignored.)61 b(If)37 b Ft(HISTCMD)e
-Fu(is)i(unset,)h(it)g(loses)g(its)f(sp)s(ecial)630 1767
+Fu(is)i(unset,)h(it)g(loses)g(its)f(sp)s(ecial)630 2162
 y(prop)s(erties,)30 b(ev)m(en)h(if)f(it)h(is)g(subsequen)m(tly)f
-(reset.)150 1921 y Ft(HISTCONTROL)630 2030 y Fu(A)40
+(reset.)150 2326 y Ft(HISTCONTROL)630 2436 y Fu(A)40
 b(colon-separated)i(list)f(of)f(v)-5 b(alues)40 b(con)m(trolling)i(ho)m
-(w)e(commands)g(are)h(sa)m(v)m(ed)g(on)f(the)630 2140
+(w)e(commands)g(are)h(sa)m(v)m(ed)g(on)f(the)630 2545
 y(history)29 b(list.)41 b(If)28 b(the)h(list)h(of)f(v)-5
 b(alues)29 b(includes)f(`)p Ft(ignorespace)p Fu(',)f(lines)i(whic)m(h)g
-(b)s(egin)f(with)630 2250 y(a)39 b(space)g(c)m(haracter)i(are)e(not)g
+(b)s(egin)f(with)630 2655 y(a)39 b(space)g(c)m(haracter)i(are)e(not)g
 (sa)m(v)m(ed)g(in)g(the)g(history)f(list.)66 b(A)39 b(v)-5
-b(alue)39 b(of)g(`)p Ft(ignoredups)p Fu(')630 2359 y(causes)34
+b(alue)39 b(of)g(`)p Ft(ignoredups)p Fu(')630 2765 y(causes)34
 b(lines)h(whic)m(h)f(matc)m(h)h(the)f(previous)f(history)h(en)m(try)h
 (to)g(not)f(b)s(e)f(sa)m(v)m(ed.)53 b(A)34 b(v)-5 b(alue)630
-2469 y(of)32 b(`)p Ft(ignoreboth)p Fu(')d(is)j(shorthand)e(for)i(`)p
+2874 y(of)32 b(`)p Ft(ignoreboth)p Fu(')d(is)j(shorthand)e(for)i(`)p
 Ft(ignorespace)p Fu(')d(and)i(`)p Ft(ignoredups)p Fu('.)42
-b(A)32 b(v)-5 b(alue)32 b(of)630 2578 y(`)p Ft(erasedups)p
+b(A)32 b(v)-5 b(alue)32 b(of)630 2984 y(`)p Ft(erasedups)p
 Fu(')f(causes)i(all)h(previous)f(lines)g(matc)m(hing)h(the)f(curren)m
-(t)g(line)g(to)h(b)s(e)e(remo)m(v)m(ed)630 2688 y(from)42
+(t)g(line)g(to)h(b)s(e)e(remo)m(v)m(ed)630 3093 y(from)42
 b(the)h(history)f(list)i(b)s(efore)e(that)h(line)g(is)g(sa)m(v)m(ed.)78
 b(An)m(y)43 b(v)-5 b(alue)43 b(not)g(in)f(the)h(ab)s(o)m(v)m(e)630
-2798 y(list)35 b(is)g(ignored.)53 b(If)34 b Ft(HISTCONTROL)e
+3203 y(list)35 b(is)g(ignored.)53 b(If)34 b Ft(HISTCONTROL)e
 Fu(is)i(unset,)i(or)e(do)s(es)h(not)g(include)f(a)h(v)-5
-b(alid)35 b(v)-5 b(alue,)36 b(all)630 2907 y(lines)30
+b(alid)35 b(v)-5 b(alue,)36 b(all)630 3313 y(lines)30
 b(read)g(b)m(y)g(the)g(shell)g(parser)g(are)g(sa)m(v)m(ed)h(on)f(the)g
 (history)g(list,)h(sub)5 b(ject)30 b(to)g(the)g(v)-5
-b(alue)630 3017 y(of)42 b Ft(HISTIGNORE)p Fu(.)73 b(The)42
+b(alue)630 3422 y(of)42 b Ft(HISTIGNORE)p Fu(.)73 b(The)42
 b(second)g(and)g(subsequen)m(t)f(lines)h(of)h(a)f(m)m(ulti-line)h(comp)
-s(ound)630 3126 y(command)33 b(are)h(not)g(tested,)i(and)d(are)h(added)
+s(ound)630 3532 y(command)33 b(are)h(not)g(tested,)i(and)d(are)h(added)
 f(to)h(the)g(history)g(regardless)g(of)g(the)f(v)-5 b(alue)630
-3236 y(of)31 b Ft(HISTCONTROL)p Fu(.)150 3389 y Ft(HISTFILE)96
+3641 y(of)31 b Ft(HISTCONTROL)p Fu(.)150 3806 y Ft(HISTFILE)96
 b Fu(The)27 b(name)h(of)g(the)g(\014le)g(to)h(whic)m(h)f(the)g(command)
 f(history)h(is)g(sa)m(v)m(ed.)41 b(The)27 b(default)h(v)-5
-b(alue)630 3499 y(is)30 b Ft(~/.bash_history)p Fu(.)150
-3652 y Ft(HISTFILESIZE)630 3762 y Fu(The)c(maxim)m(um)f(n)m(um)m(b)s
+b(alue)630 3915 y(is)30 b Ft(~/.bash_history)p Fu(.)150
+4080 y Ft(HISTFILESIZE)630 4189 y Fu(The)c(maxim)m(um)f(n)m(um)m(b)s
 (er)g(of)h(lines)h(con)m(tained)g(in)f(the)g(history)g(\014le.)39
-b(When)26 b(this)g(v)-5 b(ariable)630 3871 y(is)25 b(assigned)h(a)g(v)
+b(When)26 b(this)g(v)-5 b(ariable)630 4299 y(is)25 b(assigned)h(a)g(v)
 -5 b(alue,)27 b(the)f(history)f(\014le)h(is)f(truncated,)i(if)e
 (necessary)-8 b(,)28 b(to)e(con)m(tain)g(no)g(more)630
-3981 y(than)37 b(that)h(n)m(um)m(b)s(er)d(of)j(lines)f(b)m(y)g(remo)m
+4408 y(than)37 b(that)h(n)m(um)m(b)s(er)d(of)j(lines)f(b)m(y)g(remo)m
 (ving)h(the)f(oldest)h(en)m(tries.)62 b(The)37 b(history)g(\014le)g(is)
-630 4091 y(also)i(truncated)f(to)h(this)e(size)i(after)g(writing)f(it)g
+630 4518 y(also)i(truncated)f(to)h(this)e(size)i(after)g(writing)f(it)g
 (when)f(a)h(shell)h(exits.)64 b(If)37 b(the)h(v)-5 b(alue)39
-b(is)630 4200 y(0,)g(the)e(history)f(\014le)h(is)g(truncated)f(to)i
+b(is)630 4628 y(0,)g(the)e(history)f(\014le)h(is)g(truncated)f(to)i
 (zero)f(size.)60 b(Non-n)m(umeric)37 b(v)-5 b(alues)37
-b(and)f(n)m(umeric)630 4310 y(v)-5 b(alues)31 b(less)f(than)g(zero)h
+b(and)f(n)m(umeric)630 4737 y(v)-5 b(alues)31 b(less)f(than)g(zero)h
 (inhibit)f(truncation.)41 b(The)29 b(shell)i(sets)f(the)h(default)f(v)
--5 b(alue)31 b(to)g(the)630 4419 y(v)-5 b(alue)31 b(of)f
+-5 b(alue)31 b(to)g(the)630 4847 y(v)-5 b(alue)31 b(of)f
 Ft(HISTSIZE)f Fu(after)h(reading)h(an)m(y)g(startup)f(\014les.)150
-4573 y Ft(HISTIGNORE)630 4682 y Fu(A)j(colon-separated)h(list)f(of)g
+5011 y Ft(HISTIGNORE)630 5121 y Fu(A)j(colon-separated)h(list)f(of)g
 (patterns)f(used)g(to)h(decide)g(whic)m(h)f(command)g(lines)h(should)
-630 4792 y(b)s(e)f(sa)m(v)m(ed)h(on)g(the)f(history)h(list.)47
+630 5230 y(b)s(e)f(sa)m(v)m(ed)h(on)g(the)f(history)h(list.)47
 b(Eac)m(h)33 b(pattern)g(is)f(anc)m(hored)h(at)g(the)f(b)s(eginning)g
-(of)h(the)630 4902 y(line)43 b(and)e(m)m(ust)h(matc)m(h)h(the)g
+(of)h(the)630 5340 y(line)43 b(and)e(m)m(ust)h(matc)m(h)h(the)g
 (complete)h(line)e(\(no)h(implicit)g(`)p Ft(*)p Fu(')f(is)g(app)s
-(ended\).)75 b(Eac)m(h)630 5011 y(pattern)42 b(is)g(tested)g(against)h
-(the)f(line)g(after)g(the)g(c)m(hec)m(ks)h(sp)s(eci\014ed)e(b)m(y)h
-Ft(HISTCONTROL)630 5121 y Fu(are)37 b(applied.)59 b(In)36
-b(addition)h(to)g(the)g(normal)g(shell)f(pattern)h(matc)m(hing)h(c)m
-(haracters,)i(`)p Ft(&)p Fu(')630 5230 y(matc)m(hes)d(the)f(previous)g
-(history)g(line.)57 b(`)p Ft(&)p Fu(')36 b(ma)m(y)h(b)s(e)e(escap)s(ed)
-h(using)g(a)g(bac)m(kslash;)k(the)630 5340 y(bac)m(kslash)34
-b(is)g(remo)m(v)m(ed)h(b)s(efore)e(attempting)i(a)g(matc)m(h.)51
-b(The)34 b(second)f(and)h(subsequen)m(t)p eop end
-%%Page: 87 93
-TeXDict begin 87 92 bop 150 -116 a Fu(Chapter)30 b(5:)41
-b(Shell)30 b(V)-8 b(ariables)2459 b(87)630 299 y(lines)32
-b(of)h(a)g(m)m(ulti-line)g(comp)s(ound)e(command)h(are)h(not)f(tested,)
-i(and)e(are)g(added)g(to)h(the)630 408 y(history)k(regardless)h(of)f
-(the)g(v)-5 b(alue)38 b(of)f Ft(HISTIGNORE)p Fu(.)58
-b(The)37 b(pattern)g(matc)m(hing)i(honors)630 518 y(the)31
-b(setting)g(of)g(the)f Ft(extglob)f Fu(shell)h(option.)630
-656 y Ft(HISTIGNORE)20 b Fu(subsumes)g(the)j(function)f(of)h
-Ft(HISTCONTROL)p Fu(.)35 b(A)23 b(pattern)f(of)h(`)p
-Ft(&)p Fu(')g(is)f(iden)m(tical)630 766 y(to)k Ft(ignoredups)p
+(ended\).)75 b(Eac)m(h)p eop end
+%%Page: 88 94
+TeXDict begin 88 93 bop 150 -116 a Fu(Chapter)30 b(5:)41
+b(Shell)30 b(V)-8 b(ariables)2459 b(88)630 299 y(pattern)42
+b(is)g(tested)g(against)h(the)f(line)g(after)g(the)g(c)m(hec)m(ks)h(sp)
+s(eci\014ed)e(b)m(y)h Ft(HISTCONTROL)630 408 y Fu(are)37
+b(applied.)59 b(In)36 b(addition)h(to)g(the)g(normal)g(shell)f(pattern)
+h(matc)m(hing)h(c)m(haracters,)i(`)p Ft(&)p Fu(')630
+518 y(matc)m(hes)d(the)f(previous)g(history)g(line.)57
+b(`)p Ft(&)p Fu(')36 b(ma)m(y)h(b)s(e)e(escap)s(ed)h(using)g(a)g(bac)m
+(kslash;)k(the)630 628 y(bac)m(kslash)34 b(is)g(remo)m(v)m(ed)h(b)s
+(efore)e(attempting)i(a)g(matc)m(h.)51 b(The)34 b(second)f(and)h
+(subsequen)m(t)630 737 y(lines)e(of)h(a)g(m)m(ulti-line)g(comp)s(ound)e
+(command)h(are)h(not)f(tested,)i(and)e(are)g(added)g(to)h(the)630
+847 y(history)k(regardless)h(of)f(the)g(v)-5 b(alue)38
+b(of)f Ft(HISTIGNORE)p Fu(.)58 b(The)37 b(pattern)g(matc)m(hing)i
+(honors)630 956 y(the)31 b(setting)g(of)g(the)f Ft(extglob)f
+Fu(shell)h(option.)630 1085 y Ft(HISTIGNORE)20 b Fu(subsumes)g(the)j
+(function)f(of)h Ft(HISTCONTROL)p Fu(.)35 b(A)23 b(pattern)f(of)h(`)p
+Ft(&)p Fu(')g(is)f(iden)m(tical)630 1195 y(to)k Ft(ignoredups)p
 Fu(,)e(and)h(a)h(pattern)g(of)f(`)p Ft([)31 b(]*)p Fu(')25
 b(is)h(iden)m(tical)h(to)f Ft(ignorespace)p Fu(.)36 b(Com)m(bining)630
-876 y(these)30 b(t)m(w)m(o)h(patterns,)f(separating)g(them)g(with)f(a)h
-(colon,)h(pro)m(vides)e(the)h(functionalit)m(y)h(of)630
-985 y Ft(ignoreboth)p Fu(.)150 1153 y Ft(HISTSIZE)96
+1305 y(these)30 b(t)m(w)m(o)h(patterns,)f(separating)g(them)g(with)f(a)
+h(colon,)h(pro)m(vides)e(the)h(functionalit)m(y)h(of)630
+1414 y Ft(ignoreboth)p Fu(.)150 1562 y Ft(HISTSIZE)96
 b Fu(The)37 b(maxim)m(um)g(n)m(um)m(b)s(er)e(of)j(commands)f(to)g
 (remem)m(b)s(er)g(on)g(the)g(history)g(list.)62 b(If)37
-b(the)630 1262 y(v)-5 b(alue)26 b(is)g(0,)i(commands)d(are)h(not)h(sa)m
+b(the)630 1672 y(v)-5 b(alue)26 b(is)g(0,)i(commands)d(are)h(not)h(sa)m
 (v)m(ed)g(in)e(the)h(history)g(list.)40 b(Numeric)26
-b(v)-5 b(alues)26 b(less)g(than)630 1372 y(zero)i(result)e(in)h(ev)m
+b(v)-5 b(alues)26 b(less)g(than)630 1782 y(zero)i(result)e(in)h(ev)m
 (ery)g(command)g(b)s(eing)f(sa)m(v)m(ed)i(on)f(the)g(history)f(list)i
-(\(there)f(is)g(no)g(limit\).)630 1481 y(The)j(shell)g(sets)h(the)g
+(\(there)f(is)g(no)g(limit\).)630 1891 y(The)j(shell)g(sets)h(the)g
 (default)f(v)-5 b(alue)31 b(to)g(500)h(after)f(reading)f(an)m(y)h
-(startup)f(\014les.)150 1649 y Ft(HISTTIMEFORMAT)630
-1758 y Fu(If)44 b(this)g(v)-5 b(ariable)45 b(is)f(set)g(and)g(not)g(n)m
+(startup)f(\014les.)150 2039 y Ft(HISTTIMEFORMAT)630
+2149 y Fu(If)44 b(this)g(v)-5 b(ariable)45 b(is)f(set)g(and)g(not)g(n)m
 (ull,)k(its)d(v)-5 b(alue)44 b(is)g(used)g(as)g(a)h(format)f(string)g
-(for)630 1868 y Ft(strftime)26 b Fu(to)k(prin)m(t)e(the)g(time)i(stamp)
+(for)630 2259 y Ft(strftime)26 b Fu(to)k(prin)m(t)e(the)g(time)i(stamp)
 e(asso)s(ciated)i(with)e(eac)m(h)i(history)f(en)m(try)f(displa)m(y)m
-(ed)630 1977 y(b)m(y)34 b(the)f Ft(history)f Fu(builtin.)50
+(ed)630 2368 y(b)m(y)34 b(the)f Ft(history)f Fu(builtin.)50
 b(If)33 b(this)h(v)-5 b(ariable)34 b(is)g(set,)h(time)f(stamps)g(are)g
-(written)f(to)i(the)630 2087 y(history)26 b(\014le)g(so)g(they)g(ma)m
+(written)f(to)i(the)630 2478 y(history)26 b(\014le)g(so)g(they)g(ma)m
 (y)h(b)s(e)e(preserv)m(ed)g(across)i(shell)f(sessions.)39
-b(This)25 b(uses)h(the)g(history)630 2196 y(commen)m(t)31
+b(This)25 b(uses)h(the)g(history)630 2587 y(commen)m(t)31
 b(c)m(haracter)h(to)f(distinguish)f(timestamps)h(from)f(other)g
-(history)h(lines.)150 2364 y Ft(HOSTFILE)96 b Fu(Con)m(tains)33
+(history)h(lines.)150 2736 y Ft(HOSTFILE)96 b Fu(Con)m(tains)33
 b(the)g(name)f(of)h(a)g(\014le)f(in)g(the)h(same)g(format)g(as)f
-Ft(/etc/hosts)e Fu(that)j(should)f(b)s(e)630 2473 y(read)21
+Ft(/etc/hosts)e Fu(that)j(should)f(b)s(e)630 2845 y(read)21
 b(when)g(the)g(shell)h(needs)f(to)h(complete)h(a)e(hostname.)38
-b(The)21 b(list)h(of)g(p)s(ossible)f(hostname)630 2583
+b(The)21 b(list)h(of)g(p)s(ossible)f(hostname)630 2955
 y(completions)27 b(ma)m(y)f(b)s(e)f(c)m(hanged)h(while)f(the)h(shell)g
-(is)f(running;)h(the)g(next)f(time)i(hostname)630 2693
+(is)f(running;)h(the)g(next)f(time)i(hostname)630 3064
 y(completion)33 b(is)g(attempted)g(after)g(the)f(v)-5
 b(alue)33 b(is)f(c)m(hanged,)i(Bash)e(adds)f(the)i(con)m(ten)m(ts)h(of)
-630 2802 y(the)h(new)f(\014le)g(to)h(the)g(existing)h(list.)53
+630 3174 y(the)h(new)f(\014le)g(to)h(the)g(existing)h(list.)53
 b(If)34 b Ft(HOSTFILE)e Fu(is)j(set,)h(but)e(has)g(no)h(v)-5
-b(alue,)36 b(or)e(do)s(es)630 2912 y(not)d(name)f(a)h(readable)g
+b(alue,)36 b(or)e(do)s(es)630 3284 y(not)d(name)f(a)h(readable)g
 (\014le,)g(Bash)f(attempts)i(to)f(read)f Ft(/etc/hosts)e
-Fu(to)j(obtain)g(the)f(list)630 3021 y(of)h(p)s(ossible)f(hostname)h
+Fu(to)j(obtain)g(the)f(list)630 3393 y(of)h(p)s(ossible)f(hostname)h
 (completions.)43 b(When)31 b Ft(HOSTFILE)d Fu(is)j(unset,)f(the)h
-(hostname)g(list)630 3131 y(is)f(cleared.)150 3298 y
+(hostname)g(list)630 3503 y(is)f(cleared.)150 3651 y
 Ft(HOSTNAME)96 b Fu(The)30 b(name)g(of)h(the)f(curren)m(t)h(host.)150
-3465 y Ft(HOSTTYPE)96 b Fu(A)30 b(string)h(describing)f(the)g(mac)m
-(hine)h(Bash)g(is)f(running)f(on.)150 3633 y Ft(IGNOREEOF)630
-3742 y Fu(Con)m(trols)e(the)h(action)g(of)f(the)g(shell)g(on)g(receipt)
+3799 y Ft(HOSTTYPE)96 b Fu(A)30 b(string)h(describing)f(the)g(mac)m
+(hine)h(Bash)g(is)f(running)f(on.)150 3948 y Ft(IGNOREEOF)630
+4057 y Fu(Con)m(trols)e(the)h(action)g(of)f(the)g(shell)g(on)g(receipt)
 h(of)f(an)g Ft(EOF)f Fu(c)m(haracter)i(as)g(the)f(sole)h(input.)630
-3852 y(If)i(set,)i(the)f(v)-5 b(alue)32 b(denotes)f(the)g(n)m(um)m(b)s
+4167 y(If)i(set,)i(the)f(v)-5 b(alue)32 b(denotes)f(the)g(n)m(um)m(b)s
 (er)f(of)h(consecutiv)m(e)i Ft(EOF)d Fu(c)m(haracters)i(that)f(can)h(b)
-s(e)630 3961 y(read)40 b(as)f(the)h(\014rst)f(c)m(haracter)i(on)f(an)f
+s(e)630 4276 y(read)40 b(as)f(the)h(\014rst)f(c)m(haracter)i(on)f(an)f
 (input)g(line)h(b)s(efore)f(the)h(shell)g(will)g(exit.)70
-b(If)39 b(the)630 4071 y(v)-5 b(ariable)39 b(exists)f(but)g(do)s(es)f
+b(If)39 b(the)630 4386 y(v)-5 b(ariable)39 b(exists)f(but)g(do)s(es)f
 (not)h(ha)m(v)m(e)h(a)g(n)m(umeric)f(v)-5 b(alue,)40
-b(or)e(has)g(no)g(v)-5 b(alue,)40 b(then)e(the)630 4181
+b(or)e(has)g(no)g(v)-5 b(alue,)40 b(then)e(the)630 4495
 y(default)31 b(is)g(10.)43 b(If)30 b(the)h(v)-5 b(ariable)31
 b(do)s(es)g(not)g(exist,)h(then)e Ft(EOF)g Fu(signi\014es)h(the)g(end)f
-(of)h(input)630 4290 y(to)g(the)g(shell.)41 b(This)29
+(of)h(input)630 4605 y(to)g(the)g(shell.)41 b(This)29
 b(is)i(only)f(in)g(e\013ect)i(for)e(in)m(teractiv)m(e)j(shells.)150
-4457 y Ft(INPUTRC)144 b Fu(The)68 b(name)h(of)f(the)h(Readline)g
+4753 y Ft(INPUTRC)144 b Fu(The)68 b(name)h(of)f(the)h(Readline)g
 (initialization)j(\014le,)78 b(o)m(v)m(erriding)69 b(the)g(default)g
-(of)630 4567 y Ft(~/.inputrc)p Fu(.)150 4734 y Ft(INSIDE_EMACS)630
-4844 y Fu(If)29 b(Bash)h(\014nds)e(this)h(v)-5 b(ariable)31
+(of)630 4863 y Ft(~/.inputrc)p Fu(.)150 5011 y Ft(INSIDE_EMACS)630
+5121 y Fu(If)29 b(Bash)h(\014nds)e(this)h(v)-5 b(ariable)31
 b(in)e(the)h(en)m(vironmen)m(t)g(when)e(the)i(shell)g(starts,)g(it)g
-(assumes)630 4954 y(that)i(the)g(shell)g(is)f(running)f(in)i(an)f
+(assumes)630 5230 y(that)i(the)g(shell)g(is)f(running)f(in)i(an)f
 (Emacs)h(shell)g(bu\013er)e(and)h(ma)m(y)i(disable)e(line)h(editing)630
-5063 y(dep)s(ending)d(on)h(the)h(v)-5 b(alue)31 b(of)f
-Ft(TERM)p Fu(.)150 5230 y Ft(LANG)288 b Fu(Used)28 b(to)h(determine)f
-(the)g(lo)s(cale)h(category)h(for)e(an)m(y)h(category)h(not)e(sp)s
-(eci\014cally)g(selected)630 5340 y(with)i(a)h(v)-5 b(ariable)31
-b(starting)g(with)f Ft(LC_)p Fu(.)p eop end
-%%Page: 88 94
-TeXDict begin 88 93 bop 150 -116 a Fu(Chapter)30 b(5:)41
-b(Shell)30 b(V)-8 b(ariables)2459 b(88)150 299 y Ft(LC_ALL)192
-b Fu(This)28 b(v)-5 b(ariable)29 b(o)m(v)m(errides)h(the)f(v)-5
-b(alue)29 b(of)g Ft(LANG)f Fu(and)g(an)m(y)h(other)g
-Ft(LC_)f Fu(v)-5 b(ariable)29 b(sp)s(ecifying)630 408
-y(a)i(lo)s(cale)h(category)-8 b(.)150 573 y Ft(LC_COLLATE)630
-682 y Fu(This)37 b(v)-5 b(ariable)38 b(determines)g(the)g(collation)i
-(order)d(used)g(when)f(sorting)i(the)g(results)g(of)630
-792 y(\014lename)e(expansion,)i(and)e(determines)g(the)h(b)s(eha)m
-(vior)f(of)g(range)h(expressions,)h(equiv-)630 902 y(alence)e(classes,)
-h(and)e(collating)i(sequences)e(within)f(\014lename)h(expansion)g(and)f
-(pattern)630 1011 y(matc)m(hing)d(\(see)h(Section)f(3.5.8)h([Filename)g
-(Expansion],)e(page)h(36\).)150 1176 y Ft(LC_CTYPE)96
-b Fu(This)36 b(v)-5 b(ariable)37 b(determines)f(the)h(in)m
-(terpretation)h(of)f(c)m(haracters)h(and)e(the)g(b)s(eha)m(vior)h(of)
-630 1285 y(c)m(haracter)46 b(classes)g(within)e(\014lename)h(expansion)
-g(and)f(pattern)h(matc)m(hing)h(\(see)f(Sec-)630 1395
-y(tion)31 b(3.5.8)h([Filename)g(Expansion],)e(page)h(36\).)150
-1559 y Ft(LC_MESSAGES)630 1669 y Fu(This)25 b(v)-5 b(ariable)27
+5340 y(dep)s(ending)d(on)h(the)h(v)-5 b(alue)31 b(of)f
+Ft(TERM)p Fu(.)p eop end
+%%Page: 89 95
+TeXDict begin 89 94 bop 150 -116 a Fu(Chapter)30 b(5:)41
+b(Shell)30 b(V)-8 b(ariables)2459 b(89)150 299 y Ft(LANG)288
+b Fu(Used)28 b(to)h(determine)f(the)g(lo)s(cale)h(category)h(for)e(an)m
+(y)h(category)h(not)e(sp)s(eci\014cally)g(selected)630
+408 y(with)i(a)h(v)-5 b(ariable)31 b(starting)g(with)f
+Ft(LC_)p Fu(.)150 555 y Ft(LC_ALL)192 b Fu(This)28 b(v)-5
+b(ariable)29 b(o)m(v)m(errides)h(the)f(v)-5 b(alue)29
+b(of)g Ft(LANG)f Fu(and)g(an)m(y)h(other)g Ft(LC_)f Fu(v)-5
+b(ariable)29 b(sp)s(ecifying)630 664 y(a)i(lo)s(cale)h(category)-8
+b(.)150 810 y Ft(LC_COLLATE)630 920 y Fu(This)37 b(v)-5
+b(ariable)38 b(determines)g(the)g(collation)i(order)d(used)g(when)f
+(sorting)i(the)g(results)g(of)630 1029 y(\014lename)e(expansion,)i(and)
+e(determines)g(the)h(b)s(eha)m(vior)f(of)g(range)h(expressions,)h
+(equiv-)630 1139 y(alence)e(classes,)h(and)e(collating)i(sequences)e
+(within)f(\014lename)h(expansion)g(and)f(pattern)630
+1249 y(matc)m(hing)d(\(see)h(Section)f(3.5.8)h([Filename)g(Expansion],)
+e(page)h(36\).)150 1395 y Ft(LC_CTYPE)96 b Fu(This)36
+b(v)-5 b(ariable)37 b(determines)f(the)h(in)m(terpretation)h(of)f(c)m
+(haracters)h(and)e(the)g(b)s(eha)m(vior)h(of)630 1504
+y(c)m(haracter)46 b(classes)g(within)e(\014lename)h(expansion)g(and)f
+(pattern)h(matc)m(hing)h(\(see)f(Sec-)630 1614 y(tion)31
+b(3.5.8)h([Filename)g(Expansion],)e(page)h(36\).)150
+1760 y Ft(LC_MESSAGES)630 1870 y Fu(This)25 b(v)-5 b(ariable)27
 b(determines)f(the)g(lo)s(cale)i(used)d(to)i(translate)g(double-quoted)
-f(strings)g(pre-)630 1778 y(ceded)31 b(b)m(y)f(a)h(`)p
+f(strings)g(pre-)630 1979 y(ceded)31 b(b)m(y)f(a)h(`)p
 Ft($)p Fu(')f(\(see)h(Section)h(3.1.2.5)g([Lo)s(cale)g(T)-8
-b(ranslation],)32 b(page)f(7\).)150 1943 y Ft(LC_NUMERIC)630
-2052 y Fu(This)f(v)-5 b(ariable)31 b(determines)f(the)h(lo)s(cale)h
+b(ranslation],)32 b(page)f(7\).)150 2125 y Ft(LC_NUMERIC)630
+2235 y Fu(This)f(v)-5 b(ariable)31 b(determines)f(the)h(lo)s(cale)h
 (category)g(used)e(for)g(n)m(um)m(b)s(er)f(formatting.)150
-2217 y Ft(LC_TIME)144 b Fu(This)25 b(v)-5 b(ariable)26
+2381 y Ft(LC_TIME)144 b Fu(This)25 b(v)-5 b(ariable)26
 b(determines)g(the)g(lo)s(cale)h(category)h(used)d(for)g(data)h(and)f
-(time)i(formatting.)150 2381 y Ft(LINENO)192 b Fu(The)32
+(time)i(formatting.)150 2527 y Ft(LINENO)192 b Fu(The)32
 b(line)h(n)m(um)m(b)s(er)e(in)i(the)f(script)h(or)f(shell)h(function)f
 (curren)m(tly)h(executing.)49 b(If)32 b Ft(LINENO)630
-2491 y Fu(is)e(unset,)h(it)g(loses)g(its)f(sp)s(ecial)h(prop)s(erties,)
+2637 y Fu(is)e(unset,)h(it)g(loses)g(its)f(sp)s(ecial)h(prop)s(erties,)
 f(ev)m(en)h(if)g(it)g(is)f(subsequen)m(tly)g(reset.)150
-2655 y Ft(LINES)240 b Fu(Used)43 b(b)m(y)g(the)g Ft(select)e
+2783 y Ft(LINES)240 b Fu(Used)43 b(b)m(y)g(the)g Ft(select)e
 Fu(command)i(to)g(determine)g(the)g(column)g(length)g(for)g(prin)m
-(ting)630 2765 y(selection)c(lists.)63 b(Automatically)41
+(ting)630 2892 y(selection)c(lists.)63 b(Automatically)41
 b(set)d(if)f(the)h Ft(checkwinsize)d Fu(option)j(is)f(enabled)h(\(see)
-630 2874 y(Section)44 b(4.3.2)h([The)e(Shopt)g(Builtin],)k(page)d
-(71\),)k(or)43 b(in)g(an)g(in)m(teractiv)m(e)j(shell)e(up)s(on)630
-2984 y(receipt)31 b(of)g(a)g Ft(SIGWINCH)p Fu(.)150 3148
+630 3002 y(Section)44 b(4.3.2)h([The)e(Shopt)g(Builtin],)k(page)d
+(72\),)k(or)43 b(in)g(an)g(in)m(teractiv)m(e)j(shell)e(up)s(on)630
+3112 y(receipt)31 b(of)g(a)g Ft(SIGWINCH)p Fu(.)150 3258
 y Ft(MACHTYPE)96 b Fu(A)26 b(string)g(that)h(fully)f(describ)s(es)f
 (the)h(system)g(t)m(yp)s(e)h(on)f(whic)m(h)f(Bash)i(is)f(executing,)i
-(in)e(the)630 3258 y(standard)k Fm(gnu)g Fr(cpu-compan)m(y-system)h
-Fu(format.)150 3422 y Ft(MAILCHECK)630 3532 y Fu(Ho)m(w)d(often)g(\(in)
+(in)e(the)630 3367 y(standard)k Fm(gnu)g Fr(cpu-compan)m(y-system)h
+Fu(format.)150 3513 y Ft(MAILCHECK)630 3623 y Fu(Ho)m(w)d(often)g(\(in)
 g(seconds\))g(that)g(the)f(shell)h(should)f(c)m(hec)m(k)i(for)e(mail)h
-(in)f(the)h(\014les)g(sp)s(eci\014ed)630 3641 y(in)i(the)h
+(in)f(the)h(\014les)g(sp)s(eci\014ed)630 3733 y(in)i(the)h
 Ft(MAILPATH)e Fu(or)i Ft(MAIL)e Fu(v)-5 b(ariables.)43
 b(The)30 b(default)h(is)f(60)i(seconds.)42 b(When)30
-b(it)h(is)g(time)630 3751 y(to)37 b(c)m(hec)m(k)h(for)e(mail,)j(the)e
+b(it)h(is)g(time)630 3842 y(to)37 b(c)m(hec)m(k)h(for)e(mail,)j(the)e
 (shell)f(do)s(es)g(so)h(b)s(efore)f(displa)m(ying)h(the)f(primary)g
-(prompt.)57 b(If)630 3861 y(this)37 b(v)-5 b(ariable)38
+(prompt.)57 b(If)630 3952 y(this)37 b(v)-5 b(ariable)38
 b(is)f(unset,)h(or)f(set)h(to)g(a)f(v)-5 b(alue)38 b(that)f(is)g(not)h
-(a)f(n)m(um)m(b)s(er)f(greater)i(than)f(or)630 3970 y(equal)31
+(a)f(n)m(um)m(b)s(er)f(greater)i(than)f(or)630 4061 y(equal)31
 b(to)g(zero,)g(the)g(shell)g(disables)f(mail)h(c)m(hec)m(king.)150
-4134 y Ft(MAPFILE)144 b Fu(An)35 b(arra)m(y)h(v)-5 b(ariable)36
+4208 y Ft(MAPFILE)144 b Fu(An)35 b(arra)m(y)h(v)-5 b(ariable)36
 b(created)g(to)h(hold)e(the)g(text)i(read)e(b)m(y)g(the)h
-Ft(mapfile)d Fu(builtin)i(when)630 4244 y(no)30 b(v)-5
-b(ariable)31 b(name)g(is)f(supplied.)150 4408 y Ft(OLDPWD)192
+Ft(mapfile)d Fu(builtin)i(when)630 4317 y(no)30 b(v)-5
+b(ariable)31 b(name)g(is)f(supplied.)150 4463 y Ft(OLDPWD)192
 b Fu(The)30 b(previous)g(w)m(orking)g(directory)h(as)g(set)g(b)m(y)f
-(the)h Ft(cd)e Fu(builtin.)150 4573 y Ft(OPTERR)192 b
+(the)h Ft(cd)e Fu(builtin.)150 4609 y Ft(OPTERR)192 b
 Fu(If)35 b(set)i(to)f(the)h(v)-5 b(alue)36 b(1,)i(Bash)e(displa)m(ys)g
 (error)f(messages)i(generated)g(b)m(y)f(the)g Ft(getopts)630
-4682 y Fu(builtin)30 b(command.)150 4847 y Ft(OSTYPE)192
+4719 y Fu(builtin)30 b(command.)150 4865 y Ft(OSTYPE)192
 b Fu(A)30 b(string)h(describing)f(the)g(op)s(erating)h(system)g(Bash)f
 (is)h(running)d(on.)150 5011 y Ft(PIPESTATUS)630 5121
 y Fu(An)48 b(arra)m(y)g(v)-5 b(ariable)49 b(\(see)g(Section)g(6.7)g
-([Arra)m(ys],)k(page)c(101\))g(con)m(taining)h(a)e(list)h(of)630
+([Arra)m(ys],)k(page)c(102\))g(con)m(taining)h(a)e(list)h(of)630
 5230 y(exit)32 b(status)f(v)-5 b(alues)31 b(from)f(the)h(pro)s(cesses)g
 (in)g(the)g(most-recen)m(tly-executed)j(foreground)630
 5340 y(pip)s(eline)c(\(whic)m(h)g(ma)m(y)h(con)m(tain)h(only)f(a)f
 (single)h(command\).)p eop end
-%%Page: 89 95
-TeXDict begin 89 94 bop 150 -116 a Fu(Chapter)30 b(5:)41
-b(Shell)30 b(V)-8 b(ariables)2459 b(89)150 299 y Ft(POSIXLY_CORRECT)630
+%%Page: 90 96
+TeXDict begin 90 95 bop 150 -116 a Fu(Chapter)30 b(5:)41
+b(Shell)30 b(V)-8 b(ariables)2459 b(90)150 299 y Ft(POSIXLY_CORRECT)630
 408 y Fu(If)32 b(this)g(v)-5 b(ariable)34 b(is)e(in)g(the)h(en)m
 (vironmen)m(t)g(when)e(Bash)i(starts,)g(the)g(shell)g(en)m(ters)g
 Fm(posix)630 518 y Fu(mo)s(de)46 b(\(see)h(Section)g(6.11)g([Bash)g
-(POSIX)e(Mo)s(de],)50 b(page)d(107\))h(b)s(efore)e(reading)g(the)630
+(POSIX)e(Mo)s(de],)50 b(page)d(108\))h(b)s(efore)e(reading)g(the)630
 628 y(startup)38 b(\014les,)j(as)e(if)g(the)g Ft(--posix)d
 Fu(in)m(v)m(o)s(cation)41 b(option)e(had)f(b)s(een)g(supplied.)64
 b(If)39 b(it)g(is)630 737 y(set)31 b(while)f(the)h(shell)f(is)h
@@ -14599,7 +14676,7 @@ i(the)e(v)-5 b(alue)28 b(is)f(used)g(as)g(the)h(n)m(um)m(b)s(er)e(of)h
 (trailing)630 2125 y(directory)c(comp)s(onen)m(ts)h(to)f(retain)h(when)
 e(expanding)g(the)h Ft(\\w)g Fu(and)f Ft(\\W)g Fu(prompt)h(string)f
 (es-)630 2235 y(cap)s(es)i(\(see)h(Section)g(6.9)g([Con)m(trolling)g
-(the)f(Prompt],)i(page)e(105\).)41 b(Characters)24 b(remo)m(v)m(ed)630
+(the)f(Prompt],)i(page)e(106\).)41 b(Characters)24 b(remo)m(v)m(ed)630
 2345 y(are)31 b(replaced)g(with)f(an)g(ellipsis.)150
 2500 y Ft(PS0)336 b Fu(The)32 b(v)-5 b(alue)33 b(of)g(this)g(parameter)
 g(is)g(expanded)e(lik)m(e)j Ft(PS1)e Fu(and)g(displa)m(y)m(ed)i(b)m(y)e
@@ -14615,7 +14692,7 @@ b Fu(The)38 b(v)-5 b(alue)39 b(of)g(this)g(parameter)g(is)g(expanded)f
 b(is)630 3139 y(the)c(prompt)f(prin)m(ted)g(b)s(efore)g(the)h(command)f
 (line)h(is)g(ec)m(ho)s(ed)g(when)f(the)h Ft(-x)f Fu(option)h(is)630
 3249 y(set)k(\(see)h(Section)g(4.3.1)g([The)f(Set)g(Builtin],)j(page)e
-(67\).)67 b(The)38 b(\014rst)g(c)m(haracter)j(of)e(the)630
+(68\).)67 b(The)38 b(\014rst)g(c)m(haracter)j(of)e(the)630
 3358 y(expanded)33 b(v)-5 b(alue)33 b(is)h(replicated)g(m)m(ultiple)g
 (times,)h(as)f(necessary)-8 b(,)35 b(to)f(indicate)g(m)m(ultiple)630
 3468 y(lev)m(els)e(of)e(indirection.)42 b(The)29 b(default)i(is)f(`)p
@@ -14632,25 +14709,25 @@ b(ariable)25 b(seeds)f(the)h(random)e(n)m(um)m(b)s(er)g(gener-)630
 4372 y Fu(An)m(y)37 b(n)m(umeric)f(argumen)m(t)h(giv)m(en)g(to)g(a)g
 (Readline)g(command)f(that)h(w)m(as)g(de\014ned)e(using)630
 4482 y(`)p Ft(bind)29 b(-x)p Fu(')h(\(see)i(Section)f(4.2)g([Bash)g
-(Builtins],)g(page)h(56,)f(when)e(it)i(w)m(as)g(in)m(v)m(ok)m(ed.)150
+(Builtins],)g(page)h(57,)f(when)e(it)i(w)m(as)g(in)m(v)m(ok)m(ed.)150
 4637 y Ft(READLINE_LINE)630 4746 y Fu(The)c(con)m(ten)m(ts)i(of)f(the)g
 (Readline)g(line)g(bu\013er,)f(for)h(use)f(with)g(`)p
 Ft(bind)j(-x)p Fu(')d(\(see)h(Section)h(4.2)630 4856
-y([Bash)i(Builtins],)g(page)g(56\).)150 5011 y Ft(READLINE_MARK)630
+y([Bash)i(Builtins],)g(page)g(57\).)150 5011 y Ft(READLINE_MARK)630
 5121 y Fu(The)26 b(p)s(osition)h(of)g(the)g Fr(mark)32
 b Fu(\(sa)m(v)m(ed)c(insertion)f(p)s(oin)m(t\))g(in)g(the)g(Readline)g
 (line)g(bu\013er,)g(for)630 5230 y(use)36 b(with)f(`)p
 Ft(bind)30 b(-x)p Fu(')35 b(\(see)i(Section)g(4.2)g([Bash)f(Builtins],)
-i(page)f(56\).)58 b(The)35 b(c)m(haracters)630 5340 y(b)s(et)m(w)m(een)
+i(page)f(57\).)58 b(The)35 b(c)m(haracters)630 5340 y(b)s(et)m(w)m(een)
 c(the)g(insertion)f(p)s(oin)m(t)g(and)g(the)h(mark)f(are)h(often)f
 (called)i(the)f Fr(region)p Fu(.)p eop end
-%%Page: 90 96
-TeXDict begin 90 95 bop 150 -116 a Fu(Chapter)30 b(5:)41
-b(Shell)30 b(V)-8 b(ariables)2459 b(90)150 299 y Ft(READLINE_POINT)630
+%%Page: 91 97
+TeXDict begin 91 96 bop 150 -116 a Fu(Chapter)30 b(5:)41
+b(Shell)30 b(V)-8 b(ariables)2459 b(91)150 299 y Ft(READLINE_POINT)630
 408 y Fu(The)23 b(p)s(osition)g(of)g(the)h(insertion)f(p)s(oin)m(t)g
 (in)g(the)g(Readline)h(line)f(bu\013er,)h(for)f(use)g(with)g(`)p
 Ft(bind)630 518 y(-x)p Fu(')30 b(\(see)h(Section)h(4.2)f([Bash)g
-(Builtins],)g(page)g(56\).)150 678 y Ft(REPLY)240 b Fu(The)30
+(Builtins],)g(page)g(57\).)150 678 y Ft(REPLY)240 b Fu(The)30
 b(default)g(v)-5 b(ariable)32 b(for)e(the)g Ft(read)g
 Fu(builtin.)150 838 y Ft(SECONDS)144 b Fu(This)40 b(v)-5
 b(ariable)41 b(expands)f(to)h(the)g(n)m(um)m(b)s(er)e(of)i(seconds)g
@@ -14675,7 +14752,7 @@ b(login)h(shell.)150 1926 y Ft(SHELLOPTS)630 2035 y Fu(A)g
 b(Eac)m(h)31 b(w)m(ord)f(in)g(the)h(list)g(is)g(a)g(v)-5
 b(alid)630 2145 y(argumen)m(t)28 b(for)f(the)h Ft(-o)e
 Fu(option)i(to)g(the)g Ft(set)e Fu(builtin)h(command)g(\(see)i(Section)
-f(4.3.1)h([The)630 2255 y(Set)g(Builtin],)h(page)f(67\).)42
+f(4.3.1)h([The)630 2255 y(Set)g(Builtin],)h(page)f(68\).)42
 b(The)28 b(options)h(app)s(earing)f(in)g Ft(SHELLOPTS)e
 Fu(are)j(those)h(rep)s(orted)630 2364 y(as)g(`)p Ft(on)p
 Fu(')f(b)m(y)h(`)p Ft(set)g(-o)p Fu('.)40 b(If)29 b(this)h(v)-5
@@ -14724,9 +14801,9 @@ y(The)23 b(optional)j Fr(p)g Fu(is)e(a)g(digit)h(sp)s(ecifying)e(the)h
 5340 y(after)36 b(a)f(decimal)i(p)s(oin)m(t.)55 b(A)35
 b(v)-5 b(alue)36 b(of)f(0)h(causes)g(no)f(decimal)h(p)s(oin)m(t)f(or)h
 (fraction)g(to)g(b)s(e)p eop end
-%%Page: 91 97
-TeXDict begin 91 96 bop 150 -116 a Fu(Chapter)30 b(5:)41
-b(Shell)30 b(V)-8 b(ariables)2459 b(91)630 299 y(output.)48
+%%Page: 92 98
+TeXDict begin 92 97 bop 150 -116 a Fu(Chapter)30 b(5:)41
+b(Shell)30 b(V)-8 b(ariables)2459 b(92)630 299 y(output.)48
 b(A)m(t)34 b(most)f(three)g(places)h(after)f(the)g(decimal)h(p)s(oin)m
 (t)f(ma)m(y)h(b)s(e)e(sp)s(eci\014ed;)i(v)-5 b(alues)630
 408 y(of)31 b Fr(p)h Fu(greater)g(than)e(3)h(are)f(c)m(hanged)h(to)g
@@ -14747,7 +14824,7 @@ y(added)30 b(when)f(the)i(format)f(string)h(is)f(displa)m(y)m(ed.)150
 b(alue)23 b(greater)h(than)e(zero,)j Ft(TMOUT)d Fu(is)g(treated)i(as)e
 (the)h(default)g(timeout)g(for)g(the)630 1544 y Ft(read)31
 b Fu(builtin)h(\(see)h(Section)f(4.2)i([Bash)e(Builtins],)h(page)g
-(56\).)47 b(The)32 b Ft(select)e Fu(command)630 1654
+(57\).)47 b(The)32 b Ft(select)e Fu(command)630 1654
 y(\(see)f(Section)h(3.2.5.2)g([Conditional)g(Constructs],)e(page)i
 (12\))f(terminates)g(if)g(input)e(do)s(es)630 1763 y(not)k(arriv)m(e)g
 (after)g Ft(TMOUT)e Fu(seconds)h(when)f(input)h(is)g(coming)h(from)f(a)
@@ -14764,8 +14841,8 @@ y(temp)s(orary)30 b(\014les)g(for)g(the)h(shell's)g(use.)150
 2545 y Ft(UID)336 b Fu(The)30 b(n)m(umeric)g(real)h(user)f(id)g(of)g
 (the)h(curren)m(t)f(user.)40 b(This)30 b(v)-5 b(ariable)31
 b(is)f(readonly)-8 b(.)p eop end
-%%Page: 92 98
-TeXDict begin 92 97 bop 3659 -116 a Fu(92)150 299 y Fp(6)80
+%%Page: 93 99
+TeXDict begin 93 98 bop 3659 -116 a Fu(93)150 299 y Fp(6)80
 b(Bash)54 b(F)-13 b(eatures)150 502 y Fu(This)30 b(c)m(hapter)h
 (describ)s(es)e(features)i(unique)e(to)i(Bash.)150 731
 y Fs(6.1)68 b(In)l(v)l(oking)46 b(Bash)390 890 y Ft(bash)h([long-opt])e
@@ -14779,7 +14856,7 @@ b([-o)k Fj(option)p Ft(])581 1438 y([-O)h Fj(shopt_option)p
 Ft(])d([)p Fj(argument)h Ft(...)o(])275 1567 y Fu(All)31
 b(of)g(the)f(single-c)m(haracter)k(options)d(used)f(with)g(the)h
 Ft(set)f Fu(builtin)g(\(see)h(Section)h(4.3.1)g([The)f(Set)150
-1676 y(Builtin],)45 b(page)c(67\))i(can)e(b)s(e)f(used)h(as)g(options)g
+1676 y(Builtin],)45 b(page)c(68\))i(can)e(b)s(e)f(used)h(as)g(options)g
 (when)f(the)i(shell)f(is)g(in)m(v)m(ok)m(ed.)74 b(In)41
 b(addition,)j(there)150 1786 y(are)38 b(sev)m(eral)h(m)m(ulti-c)m
 (haracter)h(options)d(that)h(y)m(ou)g(can)g(use.)61 b(These)38
@@ -14789,7 +14866,7 @@ b(line)h(b)s(efore)f(the)g(single-c)m(haracter)j(options)e(to)g(b)s(e)f
 (the)g(debugger)g(pro\014le)g(to)h(b)s(e)e(executed)i(b)s(efore)f(the)g
 (shell)g(starts.)49 b(T)-8 b(urns)630 2262 y(on)35 b(extended)g
 (debugging)f(mo)s(de)h(\(see)g(Section)h(4.3.2)h([The)d(Shopt)g
-(Builtin],)j(page)f(71,)630 2371 y(for)30 b(a)h(description)f(of)h(the)
+(Builtin],)j(page)f(72,)630 2371 y(for)30 b(a)h(description)f(of)h(the)
 f Ft(extdebug)f Fu(option)h(to)h(the)g Ft(shopt)e Fu(builtin\).)150
 2519 y Ft(--dump-po-strings)630 2628 y Fu(A)37 b(list)g(of)f(all)i
 (double-quoted)e(strings)g(preceded)g(b)m(y)h(`)p Ft($)p
@@ -14807,7 +14884,7 @@ b(of)g Ft(~/.bashrc)p Fu(\))e(in)h(an)h(in)m(teractiv)m(e)i(shell.)150
 3765 y Ft(--login)144 b Fu(Equiv)-5 b(alen)m(t)31 b(to)g
 Ft(-l)p Fu(.)150 3912 y Ft(--noediting)630 4022 y Fu(Do)h(not)e(use)h
 (the)g Fm(gnu)f Fu(Readline)i(library)e(\(see)h(Chapter)g(8)g([Command)
-f(Line)g(Editing],)630 4131 y(page)h(120\))h(to)f(read)g(command)f
+f(Line)g(Editing],)630 4131 y(page)h(121\))h(to)f(read)g(command)f
 (lines)g(when)g(the)g(shell)h(is)f(in)m(teractiv)m(e.)150
 4278 y Ft(--noprofile)630 4388 y Fu(Don't)22 b(load)g(the)g
 (system-wide)f(startup)g(\014le)h Ft(/etc/profile)c Fu(or)j(an)m(y)h
@@ -14824,15 +14901,15 @@ b(the)h(b)s(eha)m(vior)f(of)g(Bash)h(where)e(the)i(default)f(op)s
 y Fu(standard)35 b(to)h(matc)m(h)g(the)g(standard.)55
 b(This)35 b(is)h(in)m(tended)f(to)h(mak)m(e)h(Bash)f(b)s(eha)m(v)m(e)g
 (as)g(a)630 5230 y(strict)22 b(sup)s(erset)e(of)h(that)g(standard.)37
-b(See)21 b(Section)h(6.11)g([Bash)f(POSIX)f(Mo)s(de],)k(page)d(107,)630
+b(See)21 b(Section)h(6.11)g([Bash)f(POSIX)f(Mo)s(de],)k(page)d(108,)630
 5340 y(for)30 b(a)h(description)f(of)h(the)f(Bash)h Fm(posix)f
 Fu(mo)s(de.)p eop end
-%%Page: 93 99
-TeXDict begin 93 98 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2484 b(93)150 299 y Ft(--restricted)630
+%%Page: 94 100
+TeXDict begin 94 99 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2484 b(94)150 299 y Ft(--restricted)630
 408 y Fu(Mak)m(e)54 b(the)e(shell)g(a)h(restricted)g(shell)f(\(see)h
 (Section)g(6.10)h([The)d(Restricted)j(Shell],)630 518
-y(page)31 b(107\).)150 677 y Ft(--verbose)630 787 y Fu(Equiv)-5
+y(page)31 b(108\).)150 677 y Ft(--verbose)630 787 y Fu(Equiv)-5
 b(alen)m(t)31 b(to)g Ft(-v)p Fu(.)41 b(Prin)m(t)30 b(shell)g(input)g
 (lines)g(as)h(they're)g(read.)150 946 y Ft(--version)630
 1056 y Fu(Sho)m(w)d(v)m(ersion)g(information)g(for)g(this)g(instance)h
@@ -14854,7 +14931,7 @@ b(assignmen)m(t)i(to)g Ft($0)f Fu(sets)g(the)h(name)f(of)g(the)g
 (error)g(messages.)150 2192 y Ft(-i)384 b Fu(F)-8 b(orce)22
 b(the)g(shell)f(to)g(run)f(in)m(teractiv)m(ely)-8 b(.)41
 b(In)m(teractiv)m(e)23 b(shells)e(are)h(describ)s(ed)d(in)i(Section)h
-(6.3)630 2301 y([In)m(teractiv)m(e)33 b(Shells],)e(page)g(95.)150
+(6.3)630 2301 y([In)m(teractiv)m(e)33 b(Shells],)e(page)g(96.)150
 2461 y Ft(-l)384 b Fu(Mak)m(e)33 b(this)e(shell)h(act)g(as)g(if)f(it)h
 (had)f(b)s(een)f(directly)i(in)m(v)m(ok)m(ed)h(b)m(y)f(login.)44
 b(When)31 b(the)h(shell)630 2570 y(is)37 b(in)m(teractiv)m(e,)43
@@ -14865,11 +14942,11 @@ b(this)37 b(is)g(equiv)-5 b(alen)m(t)39 b(to)f(starting)h(a)e(login)i
 2790 y(`)p Ft(exec)e(bash)h(-l)p Fu(')43 b(or)h(`)p Ft(exec)29
 b(bash)g(--login)p Fu(')42 b(will)i(replace)h(the)f(curren)m(t)f(shell)
 h(with)g(a)630 2899 y(Bash)26 b(login)g(shell.)39 b(See)26
-b(Section)g(6.2)h([Bash)e(Startup)g(Files],)j(page)e(94,)i(for)d(a)h
+b(Section)g(6.2)h([Bash)e(Startup)g(Files],)j(page)e(95,)i(for)d(a)h
 (description)630 3009 y(of)31 b(the)f(sp)s(ecial)h(b)s(eha)m(vior)g(of)
 f(a)h(login)g(shell.)150 3168 y Ft(-r)384 b Fu(Mak)m(e)54
 b(the)e(shell)g(a)h(restricted)g(shell)f(\(see)h(Section)g(6.10)h([The)
-d(Restricted)j(Shell],)630 3278 y(page)31 b(107\).)150
+d(Restricted)j(Shell],)630 3278 y(page)31 b(108\).)150
 3437 y Ft(-s)384 b Fu(If)24 b(this)h(option)h(is)f(presen)m(t,)h(or)f
 (if)g(no)f(argumen)m(ts)i(remain)e(after)i(option)f(pro)s(cessing,)h
 (then)630 3547 y(commands)i(are)h(read)g(from)f(the)h(standard)f
@@ -14889,7 +14966,7 @@ b(implies)i(the)f Ft(-n)g Fu(option;)h(no)f(commands)g(will)h(b)s(e)f
 Ft(])630 4523 y Fr(shopt)p 854 4523 V 40 w(option)44
 b Fu(is)g(one)h(of)f(the)g(shell)h(options)f(accepted)h(b)m(y)f(the)h
 Ft(shopt)d Fu(builtin)i(\(see)630 4633 y(Section)32 b(4.3.2)h([The)e
-(Shopt)f(Builtin],)i(page)g(71\).)44 b(If)31 b Fr(shopt)p
+(Shopt)f(Builtin],)i(page)g(72\).)44 b(If)31 b Fr(shopt)p
 2724 4633 V 40 w(option)g Fu(is)g(presen)m(t,)h Ft(-O)f
 Fu(sets)630 4742 y(the)24 b(v)-5 b(alue)24 b(of)g(that)h(option;)h
 Ft(+O)e Fu(unsets)f(it.)39 b(If)23 b Fr(shopt)p 2423
@@ -14904,9 +14981,9 @@ f(a)h(format)f(that)630 5071 y(ma)m(y)i(b)s(e)f(reused)f(as)i(input.)
 b(An)m(y)630 5340 y(argumen)m(ts)31 b(after)g(the)f Ft(--)g
 Fu(are)h(treated)g(as)g(\014lenames)f(and)g(argumen)m(ts.)p
 eop end
-%%Page: 94 100
-TeXDict begin 94 99 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2484 b(94)275 299 y(A)27 b
+%%Page: 95 101
+TeXDict begin 95 100 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2484 b(95)275 299 y(A)27 b
 Fl(lo)-5 b(gin)35 b Fu(shell)27 b(is)g(one)h(whose)f(\014rst)f(c)m
 (haracter)j(of)e(argumen)m(t)h(zero)f(is)h(`)p Ft(-)p
 Fu(',)g(or)f(one)g(in)m(v)m(ok)m(ed)i(with)e(the)150
@@ -14918,13 +14995,13 @@ g(input)g(and)f(output)h(are)h(b)s(oth)f(connected)h(to)g(ter-)150
 774 y(minals)g(\(as)g(determined)f(b)m(y)h Ft(isatty\(3\))p
 Fu(\),)e(or)i(one)g(started)g(with)f(the)h Ft(-i)f Fu(option.)51
 b(See)33 b(Section)i(6.3)150 884 y([In)m(teractiv)m(e)e(Shells],)e
-(page)g(95,)g(for)f(more)h(information.)275 1031 y(If)i(argumen)m(ts)h
+(page)g(96,)g(for)f(more)h(information.)275 1031 y(If)i(argumen)m(ts)h
 (remain)g(after)h(option)f(pro)s(cessing,)h(and)e(neither)h(the)g
 Ft(-c)g Fu(nor)f(the)h Ft(-s)g Fu(option)g(has)150 1140
 y(b)s(een)44 b(supplied,)j(the)d(\014rst)g(argumen)m(t)h(is)g(assumed)e
 (to)j(b)s(e)d(the)i(name)g(of)f(a)h(\014le)g(con)m(taining)h(shell)150
 1250 y(commands)30 b(\(see)g(Section)h(3.8)g([Shell)f(Scripts],)g(page)
-h(46\).)41 b(When)30 b(Bash)g(is)g(in)m(v)m(ok)m(ed)i(in)d(this)h
+h(47\).)41 b(When)30 b(Bash)g(is)g(in)m(v)m(ok)m(ed)i(in)d(this)h
 (fashion,)150 1359 y Ft($0)37 b Fu(is)g(set)h(to)h(the)e(name)h(of)f
 (the)h(\014le,)i(and)c(the)i(p)s(ositional)g(parameters)g(are)g(set)g
 (to)g(the)g(remaining)150 1469 y(argumen)m(ts.)h(Bash)26
@@ -14940,7 +15017,7 @@ b(If)26 b(no)g(commands)g(are)h(executed,)150 1688 y(the)k(exit)g
 (describ)s(ed)f(ab)s(o)m(v)m(e)i(under)150 2326 y(Tilde)f(Expansion)g
 (\(see)h(Section)h(3.5.2)g([Tilde)e(Expansion],)h(page)g(25\).)275
 2473 y(In)m(teractiv)m(e)h(shells)f(are)g(describ)s(ed)e(in)h(Section)h
-(6.3)h([In)m(teractiv)m(e)h(Shells],)d(page)h(95.)150
+(6.3)h([In)m(teractiv)m(e)h(Shells],)d(page)h(96.)150
 2684 y Fk(In)m(v)m(ok)m(ed)40 b(as)h(an)f(in)m(teractiv)m(e)f(login)j
 (shell,)g(or)g(with)e Fh(--login)150 2831 y Fu(When)c(Bash)f(is)h(in)m
 (v)m(ok)m(ed)h(as)f(an)g(in)m(teractiv)m(e)j(login)d(shell,)i(or)e(as)g
@@ -14979,9 +15056,9 @@ b(the)f(line)390 4725 y Ft(if)47 b([)h(-f)f(~/.bashrc)e(];)i(then)g(.)g
 5340 y(v)-5 b(ariable)35 b Ft(BASH_ENV)d Fu(in)i(the)h(en)m(vironmen)m
 (t,)h(expands)e(its)g(v)-5 b(alue)35 b(if)g(it)g(app)s(ears)e(there,)j
 (and)e(uses)g(the)p eop end
-%%Page: 95 101
-TeXDict begin 95 100 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2484 b(95)150 299 y(expanded)30
+%%Page: 96 102
+TeXDict begin 96 101 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2484 b(96)150 299 y(expanded)30
 b(v)-5 b(alue)30 b(as)h(the)g(name)f(of)h(a)f(\014le)h(to)g(read)f(and)
 g(execute.)42 b(Bash)31 b(b)s(eha)m(v)m(es)g(as)g(if)f(the)g(follo)m
 (wing)150 408 y(command)g(w)m(ere)h(executed:)390 552
@@ -15062,9 +15139,9 @@ h(and)e(the)h(e\013ectiv)m(e)j(user)c(id)h(is)g(set)g(to)h(the)f(real)h
 h(is)g(the)g(same,)i(but)d(the)150 5070 y(e\013ectiv)m(e)c(user)d(id)g
 (is)g(not)h(reset.)150 5324 y Fs(6.3)68 b(In)l(teractiv)l(e)47
 b(Shells)p eop end
-%%Page: 96 102
-TeXDict begin 96 101 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2484 b(96)150 299 y Fk(6.3.1)63
+%%Page: 97 103
+TeXDict begin 97 102 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2484 b(97)150 299 y Fk(6.3.1)63
 b(What)40 b(is)h(an)g(In)m(teractiv)m(e)e(Shell?)150
 446 y Fu(An)f(in)m(teractiv)m(e)j(shell)e(is)f(one)h(started)g(without)
 f(non-option)g(argumen)m(ts)h(\(unless)f Ft(-s)g Fu(is)g(sp)s
@@ -15099,8 +15176,8 @@ b(Shell)k(Beha)m(vior)150 3187 y Fu(When)30 b(the)h(shell)f(is)h
 (eha)m(vior)f(in)g(sev)m(eral)i(w)m(a)m(ys.)199 3330
 y(1.)61 b(Startup)37 b(\014les)g(are)h(read)f(and)g(executed)h(as)f
 (describ)s(ed)g(in)g(Section)h(6.2)g([Bash)g(Startup)e(Files],)330
-3440 y(page)31 b(94.)199 3579 y(2.)61 b(Job)32 b(Con)m(trol)h(\(see)g
-(Chapter)e(7)i([Job)f(Con)m(trol],)i(page)f(116\))h(is)e(enabled)g(b)m
+3440 y(page)31 b(95.)199 3579 y(2.)61 b(Job)32 b(Con)m(trol)h(\(see)g
+(Chapter)e(7)i([Job)f(Con)m(trol],)i(page)f(117\))h(is)e(enabled)g(b)m
 (y)g(default.)46 b(When)32 b(job)330 3689 y(con)m(trol)j(is)f(in)f
 (e\013ect,)k(Bash)d(ignores)g(the)g(k)m(eyb)s(oard-generated)h(job)e
 (con)m(trol)i(signals)g Ft(SIGTTIN)p Fu(,)330 3798 y
@@ -15113,57 +15190,57 @@ Fu(b)s(efore)h(reading)g(the)g(second)g(and)f(subsequen)m(t)g(lines)i
 b(expands)f(and)h(displa)m(ys)g Ft(PS0)f Fu(after)h(it)h(reads)f(a)g
 (command)g(but)f(b)s(efore)h(executing)330 4266 y(it.)54
 b(See)35 b(Section)h(6.9)f([Con)m(trolling)i(the)d(Prompt],)i(page)g
-(105,)h(for)d(a)h(complete)i(list)e(of)g(prompt)330 4375
+(106,)h(for)d(a)h(complete)i(list)e(of)g(prompt)330 4375
 y(string)30 b(escap)s(e)h(sequences.)199 4514 y(4.)61
 b(Bash)31 b(executes)i(the)e(v)-5 b(alues)32 b(of)g(the)f(set)h(elemen)
 m(ts)g(of)g(the)f Ft(PROMPT_COMMAND)d Fu(arra)m(y)k(v)-5
 b(ariable)32 b(as)330 4624 y(commands)27 b(b)s(efore)f(prin)m(ting)h
 (the)g(primary)g(prompt,)g Ft($PS1)f Fu(\(see)i(Section)f(5.2)i([Bash)e
-(V)-8 b(ariables],)330 4733 y(page)31 b(79\).)199 4872
+(V)-8 b(ariables],)330 4733 y(page)31 b(80\).)199 4872
 y(5.)61 b(Readline)27 b(\(see)g(Chapter)e(8)h([Command)g(Line)g
-(Editing],)h(page)g(120\))g(is)f(used)g(to)g(read)g(commands)330
+(Editing],)h(page)g(121\))g(is)f(used)g(to)g(read)g(commands)330
 4982 y(from)k(the)g(user's)g(terminal.)199 5121 y(6.)61
 b(Bash)36 b(insp)s(ects)g(the)h(v)-5 b(alue)37 b(of)f(the)g
 Ft(ignoreeof)e Fu(option)j(to)g Ft(set)29 b(-o)36 b Fu(instead)h(of)f
 (exiting)i(imme-)330 5230 y(diately)f(when)e(it)i(receiv)m(es)h(an)e
 Ft(EOF)f Fu(on)h(its)g(standard)f(input)g(when)h(reading)g(a)g(command)
 g(\(see)330 5340 y(Section)31 b(4.3.1)h([The)e(Set)h(Builtin],)g(page)g
-(67\).)p eop end
-%%Page: 97 103
-TeXDict begin 97 102 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2484 b(97)199 299 y(7.)61
+(68\).)p eop end
+%%Page: 98 104
+TeXDict begin 98 103 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2484 b(98)199 299 y(7.)61
 b(Command)43 b(history)h(\(see)h(Section)g(9.1)g([Bash)f(History)h(F)-8
-b(acilities],)51 b(page)45 b(155\))h(and)d(history)330
+b(acilities],)51 b(page)45 b(156\))h(and)d(history)330
 408 y(expansion)h(\(see)i(Section)f(9.3)h([History)g(In)m(teraction],)k
-(page)45 b(157\))h(are)f(enabled)g(b)m(y)f(default.)330
+(page)45 b(158\))h(are)f(enabled)g(b)m(y)f(default.)330
 518 y(Bash)28 b(will)g(sa)m(v)m(e)h(the)f(command)f(history)h(to)g(the)
 g(\014le)g(named)f(b)m(y)h Ft($HISTFILE)d Fu(when)h(a)i(shell)g(with)
 330 628 y(history)i(enabled)h(exits.)199 762 y(8.)61
 b(Alias)31 b(expansion)g(\(see)g(Section)g(6.6)g([Aliases],)i(page)e
-(101\))h(is)e(p)s(erformed)f(b)m(y)h(default.)199 896
+(102\))h(is)e(p)s(erformed)f(b)m(y)h(default.)199 896
 y(9.)61 b(In)24 b(the)g(absence)h(of)f(an)m(y)h(traps,)g(Bash)g
 (ignores)f Ft(SIGTERM)f Fu(\(see)i(Section)g(3.7.6)h([Signals],)g(page)
-f(45\).)154 1030 y(10.)61 b(In)29 b(the)g(absence)h(of)g(an)m(y)g
+f(46\).)154 1030 y(10.)61 b(In)29 b(the)g(absence)h(of)g(an)m(y)g
 (traps,)f Ft(SIGINT)f Fu(is)h(caugh)m(t)i(and)e(handled)f(\(see)j
-(Section)f(3.7.6)h([Signals],)330 1140 y(page)g(45\).)42
+(Section)f(3.7.6)h([Signals],)330 1140 y(page)g(46\).)42
 b Ft(SIGINT)29 b Fu(will)h(in)m(terrupt)g(some)h(shell)g(builtins.)154
 1274 y(11.)61 b(An)40 b(in)m(teractiv)m(e)j(login)e(shell)g(sends)e(a)i
 Ft(SIGHUP)d Fu(to)j(all)g(jobs)f(on)g(exit)h(if)g(the)f
 Ft(huponexit)e Fu(shell)330 1383 y(option)31 b(has)f(b)s(een)g(enabled)
-g(\(see)h(Section)g(3.7.6)i([Signals],)e(page)g(45\).)154
+g(\(see)h(Section)g(3.7.6)i([Signals],)e(page)g(46\).)154
 1517 y(12.)61 b(The)29 b Ft(-n)g Fu(in)m(v)m(o)s(cation)j(option)e(is)g
 (ignored,)g(and)f(`)p Ft(set)h(-n)p Fu(')f(has)h(no)f(e\013ect)j(\(see)
-e(Section)h(4.3.1)g([The)330 1627 y(Set)g(Builtin],)g(page)g(67\).)154
+e(Section)h(4.3.1)g([The)330 1627 y(Set)g(Builtin],)g(page)g(68\).)154
 1761 y(13.)61 b(Bash)32 b(will)g(c)m(hec)m(k)i(for)e(mail)g(p)s(erio)s
 (dically)-8 b(,)34 b(dep)s(ending)c(on)i(the)g(v)-5 b(alues)32
 b(of)g(the)h Ft(MAIL)p Fu(,)e Ft(MAILPATH)p Fu(,)330
 1871 y(and)f Ft(MAILCHECK)e Fu(shell)i(v)-5 b(ariables)31
 b(\(see)h(Section)f(5.2)g([Bash)g(V)-8 b(ariables],)32
-b(page)f(79\).)154 2005 y(14.)61 b(Expansion)32 b(errors)h(due)f(to)i
+b(page)f(80\).)154 2005 y(14.)61 b(Expansion)32 b(errors)h(due)f(to)i
 (references)f(to)h(un)m(b)s(ound)c(shell)j(v)-5 b(ariables)34
 b(after)g(`)p Ft(set)29 b(-u)p Fu(')k(has)g(b)s(een)330
 2114 y(enabled)d(will)h(not)g(cause)g(the)f(shell)h(to)g(exit)g(\(see)g
-(Section)h(4.3.1)g([The)e(Set)h(Builtin],)g(page)g(67\).)154
+(Section)h(4.3.1)g([The)e(Set)h(Builtin],)g(page)g(68\).)154
 2248 y(15.)61 b(The)48 b(shell)h(will)f(not)h(exit)g(on)g(expansion)f
 (errors)g(caused)g(b)m(y)h Fr(v)-5 b(ar)54 b Fu(b)s(eing)48
 b(unset)g(or)h(n)m(ull)f(in)330 2358 y Ft(${)p Fj(var)p
@@ -15174,10 +15251,10 @@ Ft(:?)p Fj(word)p Ft(})27 b Fu(expansions)j(\(see)h(Section)h(3.5.3)g
 2626 y(17.)61 b(When)26 b(running)f(in)i Fm(posix)e Fu(mo)s(de,)j(a)f
 (sp)s(ecial)g(builtin)f(returning)g(an)g(error)h(status)g(will)g(not)f
 (cause)330 2736 y(the)31 b(shell)f(to)h(exit)h(\(see)f(Section)g(6.11)h
-([Bash)f(POSIX)e(Mo)s(de],)i(page)g(107\).)154 2870 y(18.)61
+([Bash)f(POSIX)e(Mo)s(de],)i(page)g(108\).)154 2870 y(18.)61
 b(A)34 b(failed)g Ft(exec)f Fu(will)h(not)g(cause)g(the)g(shell)g(to)g
 (exit)h(\(see)f(Section)h(4.1)g([Bourne)f(Shell)f(Builtins],)330
-2980 y(page)e(48\).)154 3114 y(19.)61 b(P)m(arser)31
+2980 y(page)e(49\).)154 3114 y(19.)61 b(P)m(arser)31
 b(syn)m(tax)f(errors)g(will)h(not)g(cause)g(the)f(shell)h(to)g(exit.)
 154 3248 y(20.)61 b(If)28 b(the)g Ft(cdspell)f Fu(shell)h(option)h(is)g
 (enabled,)g(the)f(shell)h(will)f(attempt)i(simple)e(sp)s(elling)h
@@ -15185,20 +15262,20 @@ b(syn)m(tax)f(errors)g(will)h(not)g(cause)g(the)f(shell)h(to)g(exit.)
 Ft(cd)e Fu(builtin)h(\(see)i(the)e(description)h(of)f(the)h
 Ft(cdspell)d Fu(option)j(to)330 3467 y(the)j Ft(shopt)e
 Fu(builtin)h(in)h(Section)g(4.3.2)i([The)d(Shopt)g(Builtin],)i(page)g
-(71\).)46 b(The)31 b Ft(cdspell)e Fu(option)330 3576
+(72\).)46 b(The)31 b Ft(cdspell)e Fu(option)330 3576
 y(is)h(only)h(e\013ectiv)m(e)i(in)d(in)m(teractiv)m(e)j(shells.)154
 3711 y(21.)61 b(The)42 b(shell)h(will)g(c)m(hec)m(k)h(the)f(v)-5
 b(alue)43 b(of)f(the)h Ft(TMOUT)e Fu(v)-5 b(ariable)44
 b(and)e(exit)h(if)g(a)g(command)f(is)h(not)330 3820 y(read)30
 b(within)g(the)g(sp)s(eci\014ed)f(n)m(um)m(b)s(er)g(of)i(seconds)f
 (after)g(prin)m(ting)g Ft($PS1)f Fu(\(see)i(Section)g(5.2)h([Bash)330
-3930 y(V)-8 b(ariables],)32 b(page)f(79\).)150 4170 y
+3930 y(V)-8 b(ariables],)32 b(page)f(80\).)150 4170 y
 Fs(6.4)68 b(Bash)45 b(Conditional)h(Expressions)150 4329
 y Fu(Conditional)25 b(expressions)f(are)g(used)g(b)m(y)g(the)g
 Ft([[)g Fu(comp)s(ound)e(command)i(\(see)h(Section)g(3.2.5.2)i([Condi-)
 150 4439 y(tional)h(Constructs],)g(page)f(12\))h(and)e(the)h
 Ft(test)f Fu(and)g Ft([)h Fu(builtin)f(commands)h(\(see)g(Section)h
-(4.1)g([Bourne)150 4548 y(Shell)37 b(Builtins],)j(page)e(48\).)63
+(4.1)g([Bourne)150 4548 y(Shell)37 b(Builtins],)j(page)e(49\).)63
 b(The)36 b Ft(test)g Fu(and)h Ft([)g Fu(commands)g(determine)g(their)h
 (b)s(eha)m(vior)f(based)g(on)150 4658 y(the)29 b(n)m(um)m(b)s(er)f(of)h
 (argumen)m(ts;)h(see)f(the)h(descriptions)e(of)i(those)f(commands)g
@@ -15215,9 +15292,9 @@ b(If)34 b(the)h(op)s(erating)f(system)h(on)f(whic)m(h)g(Bash)h(is)f
 b(\014les,)i(Bash)e(will)g(use)f(them;)k(otherwise)d(it)g(will)g(em)m
 (ulate)h(them)f(in)m(ternally)h(with)e(this)h(b)s(eha)m(vior:)p
 eop end
-%%Page: 98 104
-TeXDict begin 98 103 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2484 b(98)150 299 y(If)27
+%%Page: 99 105
+TeXDict begin 99 104 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2484 b(99)150 299 y(If)27
 b(the)g Fr(\014le)33 b Fu(argumen)m(t)27 b(to)h(one)g(of)f(the)h
 (primaries)f(is)g(of)h(the)f(form)g Ft(/dev/fd/)p Fj(N)p
 Fu(,)e(then)i(\014le)h(descriptor)f Fr(N)150 408 y Fu(is)g(c)m(hec)m(k)
@@ -15290,14 +15367,14 @@ b(not.)150 5230 y Fj(file1)f Ft(-ot)g Fj(file2)630 5340
 y Fu(T)-8 b(rue)30 b(if)g Fr(\014le1)38 b Fu(is)31 b(older)f(than)g
 Fr(\014le2)p Fu(,)i(or)e(if)g Fr(\014le2)38 b Fu(exists)31
 b(and)f Fr(\014le1)38 b Fu(do)s(es)30 b(not.)p eop end
-%%Page: 99 105
-TeXDict begin 99 104 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2484 b(99)150 299 y Ft(-o)30
+%%Page: 100 106
+TeXDict begin 100 105 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(100)150 299 y Ft(-o)30
 b Fj(optname)630 408 y Fu(T)-8 b(rue)41 b(if)g(the)g(shell)h(option)f
 Fr(optname)47 b Fu(is)41 b(enabled.)73 b(The)41 b(list)h(of)f(options)h
 (app)s(ears)e(in)630 518 y(the)33 b(description)h(of)f(the)g
 Ft(-o)g Fu(option)g(to)h(the)g Ft(set)e Fu(builtin)h(\(see)h(Section)g
-(4.3.1)h([The)e(Set)630 628 y(Builtin],)e(page)g(67\).)150
+(4.3.1)h([The)e(Set)630 628 y(Builtin],)e(page)g(68\).)150
 783 y Ft(-v)f Fj(varname)630 892 y Fu(T)-8 b(rue)30 b(if)g(the)h(shell)
 f(v)-5 b(ariable)32 b Fr(v)-5 b(arname)35 b Fu(is)30
 b(set)h(\(has)g(b)s(een)e(assigned)i(a)g(v)-5 b(alue\).)150
@@ -15337,7 +15414,7 @@ Fu(ma)m(y)34 b(b)s(e)f(p)s(ositiv)m(e)h(or)f(negativ)m(e)j(in)m
 (tegers.)50 b(When)33 b(used)g(with)g(the)g Ft([[)g Fu(command,)630
 3799 y Fr(Arg1)41 b Fu(and)33 b Fr(Arg2)41 b Fu(are)33
 b(ev)-5 b(aluated)35 b(as)e(arithmetic)i(expressions)d(\(see)j(Section)
-f(6.5)g([Shell)630 3908 y(Arithmetic],)e(page)f(99\).)150
+f(6.5)g([Shell)630 3908 y(Arithmetic],)e(page)f(100\).)150
 4145 y Fs(6.5)68 b(Shell)45 b(Arithmetic)150 4304 y Fu(The)26
 b(shell)h(allo)m(ws)h(arithmetic)f(expressions)g(to)g(b)s(e)f(ev)-5
 b(aluated,)29 b(as)d(one)h(of)g(the)g(shell)f(expansions)h(or)f(b)m(y)
@@ -15359,9 +15436,9 @@ b(p)s(ost-incremen)m(t)g(and)f(p)s(ost-decremen)m(t)150
 b(pre-incremen)m(t)g(and)f(pre-decremen)m(t)150 5340
 y Ft(-)g(+)354 b Fu(unary)29 b(min)m(us)h(and)g(plus)p
 eop end
-%%Page: 100 106
-TeXDict begin 100 105 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(100)150 299 y Ft(!)30
+%%Page: 101 107
+TeXDict begin 101 106 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(101)150 299 y Ft(!)30
 b(~)354 b Fu(logical)33 b(and)d(bit)m(wise)h(negation)150
 482 y Ft(**)384 b Fu(exp)s(onen)m(tiation)150 664 y Ft(*)30
 b(/)g(\045)276 b Fu(m)m(ultiplication,)33 b(division,)d(remainder)150
@@ -15421,9 +15498,9 @@ b(ma)m(y)f(b)s(e)e(used)h(in)m(terc)m(hangeably)i(to)f(represen)m(t)g
 (precedence.)85 b(Sub-expressions)44 b(in)g(paren)m(theses)i(are)150
 5340 y(ev)-5 b(aluated)32 b(\014rst)d(and)h(ma)m(y)h(o)m(v)m(erride)g
 (the)g(precedence)g(rules)f(ab)s(o)m(v)m(e.)p eop end
-%%Page: 101 107
-TeXDict begin 101 106 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(101)150 299 y Fs(6.6)68
+%%Page: 102 108
+TeXDict begin 102 107 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(102)150 299 y Fs(6.6)68
 b(Aliases)150 458 y Fr(Aliases)31 b Fu(allo)m(w)d(a)f(string)f(to)i(b)s
 (e)d(substituted)h(for)g(a)h(w)m(ord)f(that)h(is)g(in)f(a)h(p)s
 (osition)f(in)g(the)h(input)e(where)h(it)150 568 y(can)33
@@ -15431,7 +15508,7 @@ b(b)s(e)e(the)i(\014rst)f(w)m(ord)g(of)g(a)h(simple)f(command.)47
 b(Aliases)34 b(ha)m(v)m(e)f(names)f(and)g(corresp)s(onding)g(v)-5
 b(alues)150 677 y(that)25 b(are)g(set)g(and)f(unset)g(using)g(the)h
 Ft(alias)e Fu(and)h Ft(unalias)f Fu(builtin)h(commands)g(\(see)i
-(Chapter)e(4)h([Shell)150 787 y(Builtin)31 b(Commands],)f(page)h(48\).)
+(Chapter)e(4)h([Shell)150 787 y(Builtin)31 b(Commands],)f(page)h(49\).)
 275 934 y(If)g(the)g(shell)h(reads)f(an)g(unquoted)g(w)m(ord)g(in)g
 (the)h(righ)m(t)g(p)s(osition,)g(it)g(c)m(hec)m(ks)h(the)f(w)m(ord)f
 (to)h(see)g(if)f(it)150 1044 y(matc)m(hes)h(an)f(alias)h(name.)43
@@ -15469,7 +15546,7 @@ b(page)d(19\))150 2837 y(instead.)275 2984 y(Aliases)33
 b(are)h(not)e(expanded)g(when)g(the)h(shell)g(is)g(not)g(in)m(teractiv)
 m(e,)j(unless)c(the)h Ft(expand_aliases)150 3093 y Fu(shell)e(option)f
 (is)h(set)g(using)f Ft(shopt)f Fu(\(see)i(Section)g(4.3.2)h([The)e
-(Shopt)g(Builtin],)h(page)g(71\).)275 3240 y(The)38 b(rules)h
+(Shopt)g(Builtin],)h(page)g(72\).)275 3240 y(The)38 b(rules)h
 (concerning)h(the)f(de\014nition)g(and)g(use)g(of)g(aliases)i(are)e
 (somewhat)h(confusing.)67 b(Bash)150 3350 y(alw)m(a)m(ys)37
 b(reads)f(at)h(least)g(one)f(complete)i(line)e(of)g(input,)h(and)e(all)
@@ -15506,12 +15583,12 @@ Ft(declare)e Fu(builtin)h(will)i(explicitly)g(declare)g(an)f(arra)m(y)
 m(t)f(that)h(mem)m(b)s(ers)e(b)s(e)g(indexed)150 5230
 y(or)26 b(assigned)h(con)m(tiguously)-8 b(.)41 b(Indexed)25
 b(arra)m(ys)i(are)f(referenced)g(using)g(in)m(tegers)i(\(including)e
-(arithmetic)150 5340 y(expressions)38 b(\(see)h(Section)g(6.5)h([Shell)
-e(Arithmetic],)k(page)d(99\)\))h(and)d(are)i(zero-based;)k(asso)s
+(arithmetic)150 5340 y(expressions)34 b(\(see)h(Section)h(6.5)f([Shell)
+g(Arithmetic],)i(page)e(100\)\))h(and)e(are)h(zero-based;)i(asso)s
 (ciativ)m(e)p eop end
-%%Page: 102 108
-TeXDict begin 102 107 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(102)150 299 y(arra)m(ys)37
+%%Page: 103 109
+TeXDict begin 103 108 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(103)150 299 y(arra)m(ys)37
 b(use)f(arbitrary)g(strings.)59 b(Unless)36 b(otherwise)h(noted,)h
 (indexed)e(arra)m(y)h(indices)f(m)m(ust)g(b)s(e)g(non-)150
 408 y(negativ)m(e)d(in)m(tegers.)275 541 y(An)26 b(indexed)h(arra)m(y)h
@@ -15598,9 +15675,9 @@ Fr(name)p Fu(.)40 b(These)29 b(subscripts)f(di\013er)h(only)150
 5340 y(when)36 b(the)g(w)m(ord)g(app)s(ears)g(within)g(double)g
 (quotes.)60 b(If)36 b(the)h(w)m(ord)f(is)g(double-quoted,)j
 Ft(${)p Fj(name)p Ft([*]})p eop end
-%%Page: 103 109
-TeXDict begin 103 108 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(103)150 299 y(expands)25
+%%Page: 104 110
+TeXDict begin 104 109 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(104)150 299 y(expands)25
 b(to)h(a)g(single)h(w)m(ord)e(with)g(the)h(v)-5 b(alue)26
 b(of)g(eac)m(h)h(arra)m(y)f(mem)m(b)s(er)f(separated)h(b)m(y)g(the)f
 (\014rst)g(c)m(harac-)150 408 y(ter)j(of)g(the)h Ft(IFS)e
@@ -15704,9 +15781,9 @@ b(and)40 b(the)i Ft(popd)e Fu(builtin)g(remo)m(v)m(es)j(sp)s(eci\014ed)
 b(curren)m(t)h(directory)g(is)g(alw)m(a)m(ys)150 5340
 y(the)c Ft(")p Fu(top)p Ft(")f Fu(of)g(the)h(directory)g(stac)m(k.)p
 eop end
-%%Page: 104 110
-TeXDict begin 104 109 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(104)275 299 y(The)35
+%%Page: 105 111
+TeXDict begin 105 110 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(105)275 299 y(The)35
 b(con)m(ten)m(ts)i(of)f(the)h(directory)f(stac)m(k)h(are)f(also)h
 (visible)g(as)f(the)g(v)-5 b(alue)36 b(of)g(the)g Ft(DIRSTACK)e
 Fu(shell)150 408 y(v)-5 b(ariable.)150 600 y Fk(6.8.1)63
@@ -15775,9 +15852,9 @@ Fu(command)h(is)g(successful,)g(Bash)g(runs)f Ft(dirs)f
 Fu(to)j(sho)m(w)f(the)g(\014nal)f(con)m(ten)m(ts)630
 5340 y(of)f(the)f(directory)h(stac)m(k,)h(and)e(the)g(return)g(status)g
 (is)h(0.)p eop end
-%%Page: 105 111
-TeXDict begin 105 110 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(105)150 299 y Ft(pushd)870
+%%Page: 106 112
+TeXDict begin 106 111 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(106)150 299 y Ft(pushd)870
 432 y(pushd)46 b([-n])h([+)p Fj(N)g Ft(|)g Fj(-N)h Ft(|)f
 Fj(dir)p Ft(])630 565 y Fu(Adds)27 b(a)h(directory)h(to)g(the)f(top)g
 (of)g(the)g(directory)h(stac)m(k,)h(or)e(rotates)h(the)f(stac)m(k,)j
@@ -15843,9 +15920,9 @@ y Ft(\\e)384 b Fu(An)30 b(escap)s(e)h(c)m(haracter.)150
 (`.'.)150 5184 y Ft(\\H)384 b Fu(The)30 b(hostname.)150
 5340 y Ft(\\j)384 b Fu(The)30 b(n)m(um)m(b)s(er)f(of)h(jobs)g(curren)m
 (tly)h(managed)g(b)m(y)f(the)g(shell.)p eop end
-%%Page: 106 112
-TeXDict begin 106 111 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(106)150 299 y Ft(\\l)384
+%%Page: 107 113
+TeXDict begin 107 112 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(107)150 299 y Ft(\\l)384
 b Fu(The)30 b(basename)h(of)f(the)h(shell's)f(terminal)h(device)g
 (name.)150 487 y Ft(\\n)384 b Fu(A)30 b(newline.)150
 676 y Ft(\\r)384 b Fu(A)30 b(carriage)i(return.)150 864
@@ -15884,7 +15961,7 @@ b(This)36 b(could)h(b)s(e)g(used)f(to)h(em)m(b)s(ed)g(a)630
 y(of)h(a)f(command)h(is)f(its)h(p)s(osition)f(in)g(the)h(history)f
 (list,)i(whic)m(h)f(ma)m(y)g(include)f(commands)g(restored)g(from)150
 4519 y(the)39 b(history)h(\014le)f(\(see)h(Section)g(9.1)h([Bash)e
-(History)h(F)-8 b(acilities],)45 b(page)40 b(155\),)j(while)d(the)f
+(History)h(F)-8 b(acilities],)45 b(page)40 b(156\),)j(while)d(the)f
 (command)150 4629 y(n)m(um)m(b)s(er)j(is)h(the)h(p)s(osition)f(in)g
 (the)g(sequence)h(of)f(commands)g(executed)h(during)e(the)i(curren)m(t)
 f(shell)150 4738 y(session.)275 4902 y(After)28 b(the)g(string)g(is)g
@@ -15893,14 +15970,14 @@ f(shell)150 4738 y(session.)275 4902 y(After)28 b(the)g(string)g(is)g
 (quote)i(remo)m(v)-5 b(al,)29 b(sub)5 b(ject)25 b(to)i(the)f(v)-5
 b(alue)27 b(of)f(the)g Ft(promptvars)e Fu(shell)150 5121
 y(option)i(\(see)h(Section)g(4.3.2)g([The)f(Shopt)f(Builtin],)j(page)e
-(71\).)41 b(This)25 b(can)h(ha)m(v)m(e)h(un)m(w)m(an)m(ted)f(side)g
+(72\).)41 b(This)25 b(can)h(ha)m(v)m(e)h(un)m(w)m(an)m(ted)f(side)g
 (e\013ects)150 5230 y(if)i(escap)s(ed)f(p)s(ortions)g(of)h(the)g
 (string)f(app)s(ear)g(within)g(command)h(substitution)f(or)h(con)m
 (tain)g(c)m(haracters)150 5340 y(sp)s(ecial)j(to)g(w)m(ord)f
 (expansion.)p eop end
-%%Page: 107 113
-TeXDict begin 107 112 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(107)150 299 y Fs(6.10)68
+%%Page: 108 114
+TeXDict begin 108 113 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(108)150 299 y Fs(6.10)68
 b(The)45 b(Restricted)h(Shell)150 458 y Fu(If)34 b(Bash)g(is)g(started)
 g(with)g(the)g(name)h Ft(rbash)p Fu(,)e(or)h(the)h Ft(--restricted)30
 b Fu(or)k Ft(-r)g Fu(option)g(is)g(supplied)f(at)150
@@ -15948,7 +16025,7 @@ Fu('.)275 3114 y(These)g(restrictions)h(are)g(enforced)f(after)h(an)m
 (y)g(startup)f(\014les)g(are)h(read.)275 3245 y(When)j(a)i(command)e
 (that)i(is)f(found)f(to)h(b)s(e)g(a)g(shell)g(script)g(is)g(executed)h
 (\(see)g(Section)g(3.8)g([Shell)150 3355 y(Scripts],)25
-b(page)e(46\),)j Ft(rbash)c Fu(turns)g(o\013)i(an)m(y)f(restrictions)h
+b(page)e(47\),)j Ft(rbash)c Fu(turns)g(o\013)i(an)m(y)f(restrictions)h
 (in)f(the)g(shell)h(spa)m(wned)e(to)i(execute)g(the)g(script.)275
 3487 y(The)32 b(restricted)h(shell)g(mo)s(de)g(is)g(only)g(one)g(comp)s
 (onen)m(t)g(of)g(a)g(useful)f(restricted)i(en)m(vironmen)m(t.)49
@@ -15980,9 +16057,9 @@ h(the)f(standard,)h(ranging)g(from)f(the)g(basic)h(system)g(calls)g
 b(orking)24 b(Group)150 5340 y(1003.2)46 b(\(POSIX.2\).)80
 b(The)43 b(\014rst)f(edition)i(of)g(the)f(1003.2)j(standard)c(w)m(as)i
 (published)e(in)h(1992.)81 b(It)p eop end
-%%Page: 108 114
-TeXDict begin 108 113 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(108)150 299 y(w)m(as)31
+%%Page: 109 115
+TeXDict begin 109 114 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(109)150 299 y(w)m(as)31
 b(merged)g(with)g(the)g(original)h(IEEE)e(1003.1)k(W)-8
 b(orking)32 b(Group)e(and)g(is)h(curren)m(tly)g(main)m(tained)h(b)m(y)
 150 408 y(the)41 b(Austin)g(Group)g(\(a)h(join)m(t)g(w)m(orking)g
@@ -16070,9 +16147,9 @@ b(Alias)45 b(expansion)e(is)h(p)s(erformed)f(when)f(initially)k
 y(default)44 b(mo)s(de)g(generally)h(defers)f(it,)k(when)43
 b(enabled,)48 b(un)m(til)c(the)g(command)g(substitution)g(is)p
 eop end
-%%Page: 109 115
-TeXDict begin 109 114 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(109)330 299 y(executed.)77
+%%Page: 110 116
+TeXDict begin 110 115 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(110)330 299 y(executed.)77
 b(This)42 b(means)g(that)h(command)f(substitution)f(will)i(not)g
 (expand)e(aliases)j(that)f(are)330 408 y(de\014ned)34
 b(after)h(the)g(command)f(substitution)h(is)g(initially)h(parsed)e
@@ -16157,9 +16234,9 @@ f(a)h(v)-5 b(ariable)23 b(name)f(argumen)m(t)330 5340
 y(that)31 b(is)f(an)h(in)m(v)-5 b(alid)31 b(iden)m(ti\014er,)f(whic)m
 (h)g(causes)h(a)g(non-in)m(teractiv)m(e)i(shell)e(to)g(exit.)p
 eop end
-%%Page: 110 116
-TeXDict begin 110 115 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(110)154 299 y(27.)61
+%%Page: 111 117
+TeXDict begin 111 116 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(111)154 299 y(27.)61
 b(A)31 b(non-in)m(teractiv)m(e)j(shell)d(exits)h(with)e(an)h(error)g
 (status)g(if)g(a)g(v)-5 b(ariable)32 b(assignmen)m(t)g(error)e(o)s
 (ccurs)330 408 y(when)38 b(no)h(command)g(name)g(follo)m(ws)i(the)e
@@ -16245,9 +16322,9 @@ Fu(builtins)h(do)g(not)h(searc)m(h)h(the)f(curren)m(t)f(directory)h
 (for)g(the)g(\014lename)f(argumen)m(t)330 5340 y(if)30
 b(it)h(is)g(not)f(found)f(b)m(y)i(searc)m(hing)g Ft(PATH)p
 Fu(.)p eop end
-%%Page: 111 117
-TeXDict begin 111 116 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(111)154 299 y(46.)61
+%%Page: 112 118
+TeXDict begin 112 117 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(112)154 299 y(46.)61
 b(Enabling)21 b Fm(posix)g Fu(mo)s(de)g(has)g(the)g(e\013ect)i(of)e
 (setting)i(the)e Ft(inherit_errexit)d Fu(option,)23 b(so)f(subshells)
 330 408 y(spa)m(wned)27 b(to)i(execute)g(command)e(substitutions)h
@@ -16329,9 +16406,9 @@ b(a)f(trapp)s(ed)e(signal)i(while)f(executing)h Ft(read)p
 Fu(,)h(the)e(trap)h(handler)e(executes)i(and)f Ft(read)330
 5340 y Fu(returns)29 b(an)h(exit)i(status)e(greater)i(than)e(128.)p
 eop end
-%%Page: 112 118
-TeXDict begin 112 117 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(112)154 299 y(63.)61
+%%Page: 113 119
+TeXDict begin 113 118 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(113)154 299 y(63.)61
 b(The)33 b Ft(printf)f Fu(builtin)i(uses)f Ft(double)f
 Fu(\(via)j Ft(strtod)p Fu(\))d(to)j(con)m(v)m(ert)g(argumen)m(ts)f
 (corresp)s(onding)f(to)330 408 y(\015oating)40 b(p)s(oin)m(t)f(con)m(v)
@@ -16378,7 +16455,7 @@ y(to)j(b)s(e)f(fully)g(conforman)m(t.)275 2820 y(Bash)c(can)g(b)s(e)f
 (default,)h(b)m(y)f(sp)s(ecifying)g(the)g Ft(--enable-)150
 2929 y(strict-posix-default)c Fu(to)27 b Ft(configure)e
 Fu(when)h(building)h(\(see)h(Section)g(10.8)g([Optional)g(F)-8
-b(eatures],)150 3039 y(page)31 b(164\).)150 3274 y Fs(6.12)68
+b(eatures],)150 3039 y(page)31 b(165\).)150 3274 y Fs(6.12)68
 b(Shell)46 b(Compatibilit)l(y)h(Mo)t(de)150 3433 y Fu(Bash-4.0)33
 b(in)m(tro)s(duced)f(the)f(concept)i(of)f(a)g Fr(shell)g(compatibilit)m
 (y)i(lev)m(el)p Fu(,)g(sp)s(eci\014ed)d(as)h(a)g(set)h(of)f(options)150
@@ -16418,185 +16495,180 @@ g(a)g(result)g(users)f(should)g(emplo)m(y)i(compatibilit)m(y)h(lev)m
 (els)g(carefully)-8 b(.)150 5340 y(Read)31 b(the)f(do)s(cumen)m(tation)
 h(for)g(a)f(particular)h(feature)g(to)g(\014nd)e(out)h(the)h(curren)m
 (t)f(b)s(eha)m(vior.)p eop end
-%%Page: 113 119
-TeXDict begin 113 118 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(113)275 299 y(Bash-4.3)44
+%%Page: 114 120
+TeXDict begin 114 119 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(114)275 299 y(Bash-4.3)44
 b(in)m(tro)s(duced)e(a)h(new)f(shell)h(v)-5 b(ariable:)65
 b Ft(BASH_COMPAT)p Fu(.)75 b(The)42 b(v)-5 b(alue)43
 b(assigned)g(to)g(this)150 408 y(v)-5 b(ariable)32 b(\(a)g(decimal)h(v)
 m(ersion)e(n)m(um)m(b)s(er)f(lik)m(e)j(4.2,)g(or)e(an)h(in)m(teger)g
 (corresp)s(onding)f(to)h(the)f Ft(compat)p Fr(NN)150
 518 y Fu(option,)g(lik)m(e)h(42\))f(determines)g(the)f(compatibilit)m
-(y)j(lev)m(el.)275 666 y(Starting)e(with)g(bash-4.4,)h(Bash)f(has)g(b)s
+(y)j(lev)m(el.)275 649 y(Starting)e(with)g(bash-4.4,)h(Bash)f(has)g(b)s
 (egun)f(deprecating)h(older)h(compatibilit)m(y)h(lev)m(els.)44
-b(Ev)m(en)m(tu-)150 775 y(ally)-8 b(,)32 b(the)e(options)h(will)g(b)s
+b(Ev)m(en)m(tu-)150 758 y(ally)-8 b(,)32 b(the)e(options)h(will)g(b)s
 (e)f(remo)m(v)m(ed)h(in)f(fa)m(v)m(or)i(of)e Ft(BASH_COMPAT)p
-Fu(.)275 923 y(Bash-5.0)36 b(is)f(the)g(\014nal)f(v)m(ersion)i(for)e
+Fu(.)275 889 y(Bash-5.0)36 b(is)f(the)g(\014nal)f(v)m(ersion)i(for)e
 (whic)m(h)h(there)g(will)g(b)s(e)f(an)h(individual)f(shopt)h(option)g
-(for)g(the)150 1033 y(previous)30 b(v)m(ersion.)41 b(Users)30
+(for)g(the)150 998 y(previous)30 b(v)m(ersion.)41 b(Users)30
 b(should)g(use)g Ft(BASH_COMPAT)d Fu(on)j(bash-5.0)h(and)f(later)i(v)m
-(ersions.)275 1181 y(The)24 b(follo)m(wing)i(table)g(describ)s(es)e
+(ersions.)275 1129 y(The)24 b(follo)m(wing)i(table)g(describ)s(es)e
 (the)i(b)s(eha)m(vior)f(c)m(hanges)h(con)m(trolled)g(b)m(y)f(eac)m(h)h
-(compatibilit)m(y)h(lev)m(el)150 1290 y(setting.)43 b(The)30
+(compatibilit)m(y)h(lev)m(el)150 1238 y(setting.)43 b(The)30
 b Ft(compat)p Fr(NN)39 b Fu(tag)32 b(is)f(used)f(as)h(shorthand)e(for)h
 (setting)i(the)f(compatibilit)m(y)i(lev)m(el)f(to)g Fr(NN)150
-1400 y Fu(using)37 b(one)h(of)g(the)g(follo)m(wing)h(mec)m(hanisms.)63
+1348 y Fu(using)37 b(one)h(of)g(the)g(follo)m(wing)h(mec)m(hanisms.)63
 b(F)-8 b(or)39 b(v)m(ersions)f(prior)f(to)h(bash-5.0,)j(the)d
-(compatibilit)m(y)150 1509 y(lev)m(el)d(ma)m(y)f(b)s(e)e(set)i(using)e
+(compatibilit)m(y)150 1457 y(lev)m(el)d(ma)m(y)f(b)s(e)e(set)i(using)e
 (the)i(corresp)s(onding)e Ft(compat)p Fr(NN)41 b Fu(shopt)33
 b(option.)50 b(F)-8 b(or)34 b(bash-4.3)f(and)g(later)150
-1619 y(v)m(ersions,)40 b(the)e Ft(BASH_COMPAT)d Fu(v)-5
+1567 y(v)m(ersions,)40 b(the)e Ft(BASH_COMPAT)d Fu(v)-5
 b(ariable)39 b(is)e(preferred,)i(and)e(it)i(is)f(required)f(for)g
-(bash-5.1)i(and)e(later)150 1729 y(v)m(ersions.)150 1908
-y Ft(compat31)705 2049 y Fq(\017)60 b Fu(quoting)34 b(the)g(rhs)e(of)i
+(bash-5.1)i(and)e(later)150 1677 y(v)m(ersions.)150 1828
+y Ft(compat31)705 1958 y Fq(\017)60 b Fu(quoting)34 b(the)g(rhs)e(of)i
 (the)f Ft([[)g Fu(command's)h(regexp)f(matc)m(hing)i(op)s(erator)f(\(=)
-p Ft(~)p Fu(\))f(has)810 2159 y(no)d(sp)s(ecial)h(e\013ect)150
-2331 y Ft(compat32)705 2472 y Fq(\017)60 b Fu(in)m(terrupting)28
-b(a)g(command)g(list)h(suc)m(h)f(as)g Ft(")p Fu(a)g(;)h(b)f(;)h(c)p
-Ft(")f Fu(causes)h(the)f(execution)h(of)g(the)810 2582
-y(next)j(command)f(in)g(the)h(list)g(\(in)f(bash-4.0)h(and)f(later)i(v)
-m(ersions,)f(the)g(shell)f(acts)i(as)810 2692 y(if)i(it)i(receiv)m(ed)f
-(the)g(in)m(terrupt,)h(so)f(in)m(terrupting)f(one)h(command)f(in)g(a)h
-(list)g(ab)s(orts)810 2801 y(the)31 b(execution)g(of)g(the)f(en)m(tire)
-i(list\))150 2974 y Ft(compat40)705 3115 y Fq(\017)60
-b Fu(the)35 b(`)p Ft(<)p Fu(')g(and)f(`)p Ft(>)p Fu(')g(op)s(erators)h
-(to)g(the)g Ft([[)f Fu(command)h(do)f(not)h(consider)f(the)h(curren)m
-(t)810 3225 y(lo)s(cale)41 b(when)d(comparing)i(strings;)k(they)c(use)f
-(ASCI)s(I)f(ordering.)67 b(Bash)40 b(v)m(ersions)810
-3334 y(prior)f(to)i(bash-4.1)f(use)g(ASCI)s(I)e(collation)k(and)d
-(strcmp\(3\);)45 b(bash-4.1)c(and)e(later)810 3444 y(use)30
-b(the)h(curren)m(t)f(lo)s(cale's)i(collation)h(sequence)d(and)g
-(strcoll\(3\).)150 3616 y Ft(compat41)705 3758 y Fq(\017)60
-b Fu(in)29 b(p)s(osix)f(mo)s(de,)i Ft(time)e Fu(ma)m(y)h(b)s(e)g(follo)
-m(w)m(ed)i(b)m(y)e(options)g(and)g(still)h(b)s(e)e(recognized)j(as)810
-3867 y(a)g(reserv)m(ed)f(w)m(ord)g(\(this)h(is)f Fm(posix)g
-Fu(in)m(terpretation)i(267\))705 4008 y Fq(\017)60 b
-Fu(in)37 b(p)s(osix)f(mo)s(de,)i(the)g(parser)e(requires)g(that)i(an)f
-(ev)m(en)g(n)m(um)m(b)s(er)f(of)h(single)g(quotes)810
-4118 y(o)s(ccur)28 b(in)g(the)h Fr(w)m(ord)i Fu(p)s(ortion)d(of)h(a)g
-(double-quoted)f($)p Fi({)6 b Fu(.)23 b(.)f(.)11 b Fi(})29
-b Fu(parameter)g(expansion)810 4227 y(and)34 b(treats)h(them)f(sp)s
-(ecially)-8 b(,)37 b(so)e(that)g(c)m(haracters)g(within)f(the)h(single)
-g(quotes)g(are)810 4337 y(considered)30 b(quoted)h(\(this)f(is)h
-Fm(posix)e Fu(in)m(terpretation)j(221\))150 4510 y Ft(compat42)705
-4651 y Fq(\017)60 b Fu(the)29 b(replacemen)m(t)i(string)e(in)g
+p Ft(~)p Fu(\))f(has)810 2068 y(no)d(sp)s(ecial)h(e\013ect)150
+2219 y Ft(compat40)705 2350 y Fq(\017)60 b Fu(the)35
+b(`)p Ft(<)p Fu(')g(and)f(`)p Ft(>)p Fu(')g(op)s(erators)h(to)g(the)g
+Ft([[)f Fu(command)h(do)f(not)h(consider)f(the)h(curren)m(t)810
+2459 y(lo)s(cale)41 b(when)d(comparing)i(strings;)k(they)c(use)f(ASCI)s
+(I)f(ordering.)67 b(Bash)40 b(v)m(ersions)810 2569 y(prior)f(to)i
+(bash-4.1)f(use)g(ASCI)s(I)e(collation)k(and)d(strcmp\(3\);)45
+b(bash-4.1)c(and)e(later)810 2679 y(use)30 b(the)h(curren)m(t)f(lo)s
+(cale's)i(collation)h(sequence)d(and)g(strcoll\(3\).)150
+2830 y Ft(compat41)705 2960 y Fq(\017)60 b Fu(in)29 b(p)s(osix)f(mo)s
+(de,)i Ft(time)e Fu(ma)m(y)h(b)s(e)g(follo)m(w)m(ed)i(b)m(y)e(options)g
+(and)g(still)h(b)s(e)e(recognized)j(as)810 3070 y(a)g(reserv)m(ed)f(w)m
+(ord)g(\(this)h(is)f Fm(posix)g Fu(in)m(terpretation)i(267\))705
+3200 y Fq(\017)60 b Fu(in)37 b(p)s(osix)f(mo)s(de,)i(the)g(parser)e
+(requires)g(that)i(an)f(ev)m(en)g(n)m(um)m(b)s(er)f(of)h(single)g
+(quotes)810 3310 y(o)s(ccur)28 b(in)g(the)h Fr(w)m(ord)i
+Fu(p)s(ortion)d(of)h(a)g(double-quoted)f($)p Fi({)6 b
+Fu(.)23 b(.)f(.)11 b Fi(})29 b Fu(parameter)g(expansion)810
+3420 y(and)34 b(treats)h(them)f(sp)s(ecially)-8 b(,)37
+b(so)e(that)g(c)m(haracters)g(within)f(the)h(single)g(quotes)g(are)810
+3529 y(considered)30 b(quoted)h(\(this)f(is)h Fm(posix)e
+Fu(in)m(terpretation)j(221\))150 3680 y Ft(compat42)705
+3811 y Fq(\017)60 b Fu(the)29 b(replacemen)m(t)i(string)e(in)g
 (double-quoted)h(pattern)f(substitution)g(do)s(es)g(not)h(un-)810
-4760 y(dergo)h(quote)g(remo)m(v)-5 b(al,)32 b(as)e(it)h(do)s(es)f(in)g
-(v)m(ersions)h(after)g(bash-4.2)705 4902 y Fq(\017)60
+3921 y(dergo)h(quote)g(remo)m(v)-5 b(al,)32 b(as)e(it)h(do)s(es)f(in)g
+(v)m(ersions)h(after)g(bash-4.2)705 4051 y Fq(\017)60
 b Fu(in)39 b(p)s(osix)g(mo)s(de,)j(single)e(quotes)g(are)g(considered)f
-(sp)s(ecial)h(when)f(expanding)g(the)810 5011 y Fr(w)m(ord)d
+(sp)s(ecial)h(when)f(expanding)g(the)810 4161 y Fr(w)m(ord)d
 Fu(p)s(ortion)c(of)g(a)h(double-quoted)g($)p Fi({)6 b
 Fu(.)22 b(.)h(.)11 b Fi(})33 b Fu(parameter)g(expansion)f(and)g(can)h
-(b)s(e)810 5121 y(used)40 b(to)i(quote)g(a)f(closing)h(brace)f(or)g
+(b)s(e)810 4270 y(used)40 b(to)i(quote)g(a)f(closing)h(brace)f(or)g
 (other)h(sp)s(ecial)f(c)m(haracter)i(\(this)e(is)g(part)g(of)810
-5230 y Fm(posix)36 b Fu(in)m(terpretation)h(221\);)42
+4380 y Fm(posix)36 b Fu(in)m(terpretation)h(221\);)42
 b(in)36 b(later)h(v)m(ersions,)h(single)f(quotes)g(are)g(not)f(sp)s
-(ecial)810 5340 y(within)30 b(double-quoted)g(w)m(ord)g(expansions)p
+(ecial)810 4489 y(within)30 b(double-quoted)g(w)m(ord)g(expansions)150
+4641 y Ft(compat43)705 4771 y Fq(\017)60 b Fu(the)31
+b(shell)g(do)s(es)g(not)g(prin)m(t)f(a)h(w)m(arning)g(message)h(if)f
+(an)g(attempt)h(is)f(made)f(to)i(use)f(a)810 4881 y(quoted)36
+b(comp)s(ound)e(assignmen)m(t)i(as)g(an)g(argumen)m(t)g(to)g(declare)h
+(\(e.g.,)i(declare)d(-a)810 4990 y(fo)s(o='\(1)31 b(2\)'\).)42
+b(Later)31 b(v)m(ersions)g(w)m(arn)f(that)h(this)f(usage)h(is)g
+(deprecated)705 5121 y Fq(\017)60 b Fu(w)m(ord)21 b(expansion)g(errors)
+g(are)h(considered)f(non-fatal)h(errors)f(that)h(cause)g(the)f(curren)m
+(t)810 5230 y(command)k(to)g(fail,)i(ev)m(en)e(in)g(p)s(osix)f(mo)s(de)
+h(\(the)g(default)g(b)s(eha)m(vior)g(is)g(to)g(mak)m(e)h(them)810
+5340 y(fatal)32 b(errors)d(that)i(cause)g(the)g(shell)f(to)i(exit\))p
 eop end
-%%Page: 114 120
-TeXDict begin 114 119 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(114)150 299 y Ft(compat43)705
-434 y Fq(\017)60 b Fu(the)31 b(shell)g(do)s(es)g(not)g(prin)m(t)f(a)h
-(w)m(arning)g(message)h(if)f(an)g(attempt)h(is)f(made)f(to)i(use)f(a)
-810 544 y(quoted)36 b(comp)s(ound)e(assignmen)m(t)i(as)g(an)g(argumen)m
-(t)g(to)g(declare)h(\(e.g.,)i(declare)d(-a)810 653 y(fo)s(o='\(1)31
-b(2\)'\).)42 b(Later)31 b(v)m(ersions)g(w)m(arn)f(that)h(this)f(usage)h
-(is)g(deprecated)705 789 y Fq(\017)60 b Fu(w)m(ord)21
-b(expansion)g(errors)g(are)h(considered)f(non-fatal)h(errors)f(that)h
-(cause)g(the)f(curren)m(t)810 898 y(command)k(to)g(fail,)i(ev)m(en)e
-(in)g(p)s(osix)f(mo)s(de)h(\(the)g(default)g(b)s(eha)m(vior)g(is)g(to)g
-(mak)m(e)h(them)810 1008 y(fatal)32 b(errors)d(that)i(cause)g(the)g
-(shell)f(to)i(exit\))705 1143 y Fq(\017)60 b Fu(when)37
-b(executing)i(a)g(shell)f(function,)i(the)f(lo)s(op)f(state)h
-(\(while/un)m(til/etc.\))68 b(is)38 b(not)810 1253 y(reset,)c(so)g
-Ft(break)d Fu(or)i Ft(continue)e Fu(in)h(that)i(function)f(will)g
-(break)g(or)g(con)m(tin)m(ue)h(lo)s(ops)810 1363 y(in)h(the)g(calling)h
-(con)m(text.)57 b(Bash-4.4)37 b(and)d(later)i(reset)g(the)f(lo)s(op)g
-(state)i(to)e(prev)m(en)m(t)810 1472 y(this)150 1633
-y Ft(compat44)705 1769 y Fq(\017)60 b Fu(the)41 b(shell)g(sets)g(up)e
-(the)i(v)-5 b(alues)41 b(used)f(b)m(y)h Ft(BASH_ARGV)d
-Fu(and)i Ft(BASH_ARGC)e Fu(so)j(they)810 1878 y(can)26
-b(expand)f(to)h(the)g(shell's)g(p)s(ositional)g(parameters)g(ev)m(en)h
-(if)e(extended)h(debugging)810 1988 y(mo)s(de)k(is)g(not)h(enabled)705
-2123 y Fq(\017)60 b Fu(a)40 b(subshell)f(inherits)g(lo)s(ops)h(from)g
-(its)g(paren)m(t)g(con)m(text,)k(so)c Ft(break)e Fu(or)i
-Ft(continue)810 2233 y Fu(will)35 b(cause)g(the)f(subshell)f(to)i
-(exit.)54 b(Bash-5.0)36 b(and)d(later)j(reset)f(the)f(lo)s(op)h(state)g
-(to)810 2342 y(prev)m(en)m(t)c(the)g(exit)705 2478 y
-Fq(\017)60 b Fu(v)-5 b(ariable)28 b(assignmen)m(ts)h(preceding)f
-(builtins)f(lik)m(e)i Ft(export)d Fu(and)h Ft(readonly)e
-Fu(that)j(set)810 2587 y(attributes)37 b(con)m(tin)m(ue)h(to)g
-(a\013ect)g(v)-5 b(ariables)37 b(with)g(the)f(same)h(name)g(in)g(the)f
-(calling)810 2697 y(en)m(vironmen)m(t)31 b(ev)m(en)g(if)f(the)h(shell)g
-(is)f(not)h(in)f(p)s(osix)f(mo)s(de)150 2858 y Ft(compat50)f(\(set)h
-(using)g(BASH_COMPAT\))705 2968 y Fq(\017)60 b Fu(Bash-5.1)29
+%%Page: 115 121
+TeXDict begin 115 120 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(115)705 299 y Fq(\017)60
+b Fu(when)37 b(executing)i(a)g(shell)f(function,)i(the)f(lo)s(op)f
+(state)h(\(while/un)m(til/etc.\))68 b(is)38 b(not)810
+408 y(reset,)c(so)g Ft(break)d Fu(or)i Ft(continue)e
+Fu(in)h(that)i(function)f(will)g(break)g(or)g(con)m(tin)m(ue)h(lo)s
+(ops)810 518 y(in)h(the)g(calling)h(con)m(text.)57 b(Bash-4.4)37
+b(and)d(later)i(reset)g(the)f(lo)s(op)g(state)i(to)e(prev)m(en)m(t)810
+628 y(this)150 776 y Ft(compat44)705 905 y Fq(\017)60
+b Fu(the)41 b(shell)g(sets)g(up)e(the)i(v)-5 b(alues)41
+b(used)f(b)m(y)h Ft(BASH_ARGV)d Fu(and)i Ft(BASH_ARGC)e
+Fu(so)j(they)810 1014 y(can)26 b(expand)f(to)h(the)g(shell's)g(p)s
+(ositional)g(parameters)g(ev)m(en)h(if)e(extended)h(debugging)810
+1124 y(mo)s(de)k(is)g(not)h(enabled)705 1253 y Fq(\017)60
+b Fu(a)40 b(subshell)f(inherits)g(lo)s(ops)h(from)g(its)g(paren)m(t)g
+(con)m(text,)k(so)c Ft(break)e Fu(or)i Ft(continue)810
+1363 y Fu(will)35 b(cause)g(the)f(subshell)f(to)i(exit.)54
+b(Bash-5.0)36 b(and)d(later)j(reset)f(the)f(lo)s(op)h(state)g(to)810
+1472 y(prev)m(en)m(t)c(the)g(exit)705 1601 y Fq(\017)60
+b Fu(v)-5 b(ariable)28 b(assignmen)m(ts)h(preceding)f(builtins)f(lik)m
+(e)i Ft(export)d Fu(and)h Ft(readonly)e Fu(that)j(set)810
+1711 y(attributes)37 b(con)m(tin)m(ue)h(to)g(a\013ect)g(v)-5
+b(ariables)37 b(with)g(the)f(same)h(name)g(in)g(the)f(calling)810
+1820 y(en)m(vironmen)m(t)31 b(ev)m(en)g(if)f(the)h(shell)g(is)f(not)h
+(in)f(p)s(osix)f(mo)s(de)150 1969 y Ft(compat50)f(\(set)h(using)g
+(BASH_COMPAT\))705 2078 y Fq(\017)60 b Fu(Bash-5.1)29
 b(c)m(hanged)g(the)f(w)m(a)m(y)g Ft($RANDOM)e Fu(is)i(generated)h(to)f
-(in)m(tro)s(duce)g(sligh)m(tly)h(more)810 3077 y(randomness.)39
+(in)m(tro)s(duce)g(sligh)m(tly)h(more)810 2188 y(randomness.)39
 b(If)30 b(the)f(shell)h(compatibilit)m(y)i(lev)m(el)f(is)f(set)g(to)h
-(50)f(or)g(lo)m(w)m(er,)h(it)f(rev)m(erts)810 3187 y(to)e(the)g(metho)s
+(50)f(or)g(lo)m(w)m(er,)h(it)f(rev)m(erts)810 2297 y(to)e(the)g(metho)s
 (d)f(from)g(bash-5.0)h(and)f(previous)g(v)m(ersions,)i(so)e(seeding)h
-(the)g(random)810 3296 y(n)m(um)m(b)s(er)36 b(generator)j(b)m(y)e
+(the)g(random)810 2407 y(n)m(um)m(b)s(er)36 b(generator)j(b)m(y)e
 (assigning)h(a)g(v)-5 b(alue)38 b(to)g Ft(RANDOM)e Fu(will)i(pro)s
-(duce)e(the)i(same)810 3406 y(sequence)31 b(as)f(in)g(bash-5.0)705
-3541 y Fq(\017)60 b Fu(If)22 b(the)g(command)g(hash)f(table)i(is)f
+(duce)e(the)i(same)810 2516 y(sequence)31 b(as)f(in)g(bash-5.0)705
+2645 y Fq(\017)60 b Fu(If)22 b(the)g(command)g(hash)f(table)i(is)f
 (empt)m(y)-8 b(,)25 b(Bash)d(v)m(ersions)g(prior)g(to)h(bash-5.1)f
-(prin)m(ted)810 3651 y(an)29 b(informational)i(message)g(to)f(that)g
+(prin)m(ted)810 2755 y(an)29 b(informational)i(message)g(to)f(that)g
 (e\013ect,)h(ev)m(en)g(when)d(pro)s(ducing)g(output)h(that)810
-3761 y(can)40 b(b)s(e)g(reused)f(as)h(input.)69 b(Bash-5.1)42
+2865 y(can)40 b(b)s(e)g(reused)f(as)h(input.)69 b(Bash-5.1)42
 b(suppresses)c(that)j(message)g(when)e(the)i Ft(-l)810
-3870 y Fu(option)31 b(is)f(supplied.)150 4031 y Ft(compat51)e(\(set)h
-(using)g(BASH_COMPAT\))705 4141 y Fq(\017)60 b Fu(The)38
+2974 y Fu(option)31 b(is)f(supplied.)150 3122 y Ft(compat51)e(\(set)h
+(using)g(BASH_COMPAT\))705 3232 y Fq(\017)60 b Fu(The)38
 b Ft(unset)g Fu(builtin)g(will)h(unset)f(the)h(arra)m(y)g
 Ft(a)g Fu(giv)m(en)g(an)g(argumen)m(t)g(lik)m(e)h(`)p
-Ft(a[@])p Fu('.)810 4251 y(Bash-5.2)32 b(will)f(unset)f(an)g(elemen)m
+Ft(a[@])p Fu('.)810 3342 y(Bash-5.2)32 b(will)f(unset)f(an)g(elemen)m
 (t)i(with)e(k)m(ey)i(`)p Ft(@)p Fu(')e(\(asso)s(ciativ)m(e)k(arra)m
-(ys\))d(or)f(remo)m(v)m(e)810 4360 y(all)h(the)g(elemen)m(ts)h(without)
+(ys\))d(or)f(remo)m(v)m(e)810 3451 y(all)h(the)g(elemen)m(ts)h(without)
 e(unsetting)g(the)h(arra)m(y)g(\(indexed)f(arra)m(ys\))705
-4495 y Fq(\017)60 b Fu(arithmetic)36 b(commands)e(\()h(\(\(...\)\))55
+3580 y Fq(\017)60 b Fu(arithmetic)36 b(commands)e(\()h(\(\(...\)\))55
 b(\))f(and)34 b(the)g(expressions)h(in)f(an)g(arithmetic)i(for)810
-4605 y(statemen)m(t)c(can)f(b)s(e)f(expanded)f(more)i(than)f(once)705
-4740 y Fq(\017)60 b Fu(expressions)22 b(used)g(as)h(argumen)m(ts)g(to)h
+3690 y(statemen)m(t)c(can)f(b)s(e)f(expanded)f(more)i(than)f(once)705
+3819 y Fq(\017)60 b Fu(expressions)22 b(used)g(as)h(argumen)m(ts)g(to)h
 (arithmetic)f(op)s(erators)g(in)g(the)g Ft([[)f Fu(conditional)810
-4850 y(command)30 b(can)h(b)s(e)f(expanded)f(more)i(than)f(once)705
-4985 y Fq(\017)60 b Fu(the)35 b(expressions)g(in)g(substring)e
+3928 y(command)30 b(can)h(b)s(e)f(expanded)f(more)i(than)f(once)705
+4057 y Fq(\017)60 b Fu(the)35 b(expressions)g(in)g(substring)e
 (parameter)j(brace)f(expansion)g(can)g(b)s(e)g(expanded)810
-5095 y(more)c(than)f(once)705 5230 y Fq(\017)60 b Fu(the)39
+4167 y(more)c(than)f(once)705 4296 y Fq(\017)60 b Fu(the)39
 b(expressions)f(in)g(the)h($\(\()h(...)66 b(\)\))f(w)m(ord)39
-b(expansion)f(can)h(b)s(e)f(expanded)g(more)810 5340
-y(than)30 b(once)p eop end
-%%Page: 115 121
-TeXDict begin 115 120 bop 150 -116 a Fu(Chapter)30 b(6:)41
-b(Bash)30 b(F)-8 b(eatures)2439 b(115)705 299 y Fq(\017)60
-b Fu(arithmetic)36 b(expressions)f(used)f(as)h(indexed)f(arra)m(y)i
-(subscripts)d(can)i(b)s(e)g(expanded)810 408 y(more)c(than)f(once)705
-543 y Fq(\017)60 b Ft(test)29 b(-v)p Fu(,)35 b(when)f(giv)m(en)h(an)g
+b(expansion)f(can)h(b)s(e)f(expanded)g(more)810 4405
+y(than)30 b(once)705 4534 y Fq(\017)60 b Fu(arithmetic)36
+b(expressions)f(used)f(as)h(indexed)f(arra)m(y)i(subscripts)d(can)i(b)s
+(e)g(expanded)810 4644 y(more)c(than)f(once)705 4773
+y Fq(\017)60 b Ft(test)29 b(-v)p Fu(,)35 b(when)f(giv)m(en)h(an)g
 (argumen)m(t)g(of)f(`)p Ft(A[@])p Fu(',)h(where)f Fr(A)h
-Fu(is)f(an)h(existing)g(asso-)810 653 y(ciativ)m(e)h(arra)m(y)-8
+Fu(is)f(an)h(existing)g(asso-)810 4882 y(ciativ)m(e)h(arra)m(y)-8
 b(,)37 b(will)d(return)f(true)g(if)h(the)h(arra)m(y)f(has)g(an)m(y)g
-(set)g(elemen)m(ts.)53 b(Bash-5.2)810 762 y(will)31 b(lo)s(ok)g(for)f
-(and)g(rep)s(ort)f(on)i(a)f(k)m(ey)i(named)d(`)p Ft(@)p
-Fu(')705 897 y Fq(\017)60 b Fu(the)40 b($)p Fi({)p Fr(parameter)7
-b Fu([:]=)p Fr(v)-5 b(alue)5 b Fi(})42 b Fu(w)m(ord)e(expansion)f(will)
-i(return)d Fr(v)-5 b(alue)p Fu(,)43 b(b)s(efore)d(an)m(y)810
-1006 y(v)-5 b(ariable-sp)s(eci\014c)34 b(transformations)f(ha)m(v)m(e)h
-(b)s(een)e(p)s(erformed)f(\(e.g.,)36 b(con)m(v)m(erting)e(to)810
-1116 y(lo)m(w)m(ercase\).)43 b(Bash-5.2)32 b(will)f(return)e(the)i
-(\014nal)f(v)-5 b(alue)31 b(assigned)f(to)i(the)e(v)-5
-b(ariable.)705 1250 y Fq(\017)60 b Fu(P)m(arsing)37 b(command)f
-(substitutions)g(will)g(b)s(eha)m(v)m(e)h(as)g(if)f(extended)g(glob)h
-(\(see)g(Sec-)810 1360 y(tion)30 b(4.3.2)h([The)f(Shopt)f(Builtin],)h
-(page)h(71\))f(is)g(enabled,)g(so)g(that)g(parsing)f(a)h(com-)810
-1469 y(mand)38 b(substitution)g(con)m(taining)i(an)f(extglob)h(pattern)
-f(\(sa)m(y)-8 b(,)42 b(as)d(part)g(of)g(a)g(shell)810
-1579 y(function\))30 b(will)h(not)g(fail.)41 b(This)30
-b(assumes)g(the)h(in)m(ten)m(t)g(is)g(to)g(enable)g(extglob)g(b)s
-(efore)810 1689 y(the)i(command)f(is)g(executed)h(and)f(w)m(ord)g
-(expansions)g(are)h(p)s(erformed.)45 b(It)33 b(will)f(fail)810
-1798 y(at)42 b(w)m(ord)f(expansion)h(time)g(if)f(extglob)i(hasn't)e(b)s
-(een)g(enabled)h(b)m(y)f(the)h(time)g(the)810 1908 y(command)30
-b(is)h(executed.)p eop end
+(set)g(elemen)m(ts.)53 b(Bash-5.2)810 4992 y(will)31
+b(lo)s(ok)g(for)f(and)g(rep)s(ort)f(on)i(a)f(k)m(ey)i(named)d(`)p
+Ft(@)p Fu(')705 5121 y Fq(\017)60 b Fu(the)40 b($)p Fi({)p
+Fr(parameter)7 b Fu([:]=)p Fr(v)-5 b(alue)5 b Fi(})42
+b Fu(w)m(ord)e(expansion)f(will)i(return)d Fr(v)-5 b(alue)p
+Fu(,)43 b(b)s(efore)d(an)m(y)810 5230 y(v)-5 b(ariable-sp)s(eci\014c)34
+b(transformations)f(ha)m(v)m(e)h(b)s(een)e(p)s(erformed)f(\(e.g.,)36
+b(con)m(v)m(erting)e(to)810 5340 y(lo)m(w)m(ercase\).)43
+b(Bash-5.2)32 b(will)f(return)e(the)i(\014nal)f(v)-5
+b(alue)31 b(assigned)f(to)i(the)e(v)-5 b(ariable.)p eop
+end
 %%Page: 116 122
-TeXDict begin 116 121 bop 3614 -116 a Fu(116)150 299
+TeXDict begin 116 121 bop 150 -116 a Fu(Chapter)30 b(6:)41
+b(Bash)30 b(F)-8 b(eatures)2439 b(116)705 299 y Fq(\017)60
+b Fu(P)m(arsing)37 b(command)f(substitutions)g(will)g(b)s(eha)m(v)m(e)h
+(as)g(if)f(extended)g(glob)h(\(see)g(Sec-)810 408 y(tion)30
+b(4.3.2)h([The)f(Shopt)f(Builtin],)h(page)h(72\))f(is)g(enabled,)g(so)g
+(that)g(parsing)f(a)h(com-)810 518 y(mand)38 b(substitution)g(con)m
+(taining)i(an)f(extglob)h(pattern)f(\(sa)m(y)-8 b(,)42
+b(as)d(part)g(of)g(a)g(shell)810 628 y(function\))30
+b(will)h(not)g(fail.)41 b(This)30 b(assumes)g(the)h(in)m(ten)m(t)g(is)g
+(to)g(enable)g(extglob)g(b)s(efore)810 737 y(the)i(command)f(is)g
+(executed)h(and)f(w)m(ord)g(expansions)g(are)h(p)s(erformed.)45
+b(It)33 b(will)f(fail)810 847 y(at)42 b(w)m(ord)f(expansion)h(time)g
+(if)f(extglob)i(hasn't)e(b)s(een)g(enabled)h(b)m(y)f(the)h(time)g(the)
+810 956 y(command)30 b(is)h(executed.)p eop end
+%%Page: 117 123
+TeXDict begin 117 122 bop 3614 -116 a Fu(117)150 299
 y Fp(7)80 b(Job)54 b(Con)l(trol)150 518 y Fu(This)25
 b(c)m(hapter)i(discusses)f(what)g(job)f(con)m(trol)j(is,)f(ho)m(w)f(it)
 h(w)m(orks,)g(and)f(ho)m(w)g(Bash)g(allo)m(ws)h(y)m(ou)g(to)g(access)
@@ -16688,9 +16760,9 @@ h Ft(jobs)e Fu(command\),)k(the)d(curren)m(t)h(job)f(is)g(alw)m(a)m(ys)
 i(\015agged)f(with)f(a)h(`)p Ft(+)p Fu(',)i(and)d(the)150
 5340 y(previous)30 b(job)g(with)g(a)h(`)p Ft(-)p Fu('.)p
 eop end
-%%Page: 117 123
-TeXDict begin 117 122 bop 150 -116 a Fu(Chapter)30 b(7:)41
-b(Job)30 b(Con)m(trol)2526 b(117)275 299 y(A)38 b(job)g(ma)m(y)h(also)g
+%%Page: 118 124
+TeXDict begin 118 123 bop 150 -116 a Fu(Chapter)30 b(7:)41
+b(Job)30 b(Con)m(trol)2526 b(118)275 299 y(A)38 b(job)g(ma)m(y)h(also)g
 (b)s(e)f(referred)f(to)j(using)d(a)i(pre\014x)e(of)i(the)f(name)h(used)
 e(to)i(start)g(it,)i(or)e(using)f(a)150 408 y(substring)g(that)j(app)s
 (ears)e(in)g(its)h(command)f(line.)69 b(F)-8 b(or)41
@@ -16716,13 +16788,13 @@ g(to)g(not)g(in)m(terrupt)150 1439 y(an)m(y)k(other)f(output.)40
 b(If)28 b(the)g Ft(-b)g Fu(option)g(to)h(the)g Ft(set)e
 Fu(builtin)h(is)g(enabled,)h(Bash)g(rep)s(orts)e(suc)m(h)h(c)m(hanges)
 150 1548 y(immediately)d(\(see)g(Section)g(4.3.1)g([The)f(Set)g
-(Builtin],)i(page)f(67\).)40 b(An)m(y)24 b(trap)f(on)h
+(Builtin],)i(page)f(68\).)40 b(An)m(y)24 b(trap)f(on)h
 Ft(SIGCHLD)e Fu(is)i(executed)150 1658 y(for)30 b(eac)m(h)i(c)m(hild)e
 (pro)s(cess)g(that)h(exits.)275 1789 y(If)25 b(an)h(attempt)h(to)g
 (exit)g(Bash)f(is)h(made)f(while)g(jobs)f(are)i(stopp)s(ed,)f(\(or)h
 (running,)e(if)h(the)g Ft(checkjobs)150 1899 y Fu(option)e(is)f
 (enabled)h({)g(see)g(Section)g(4.3.2)h([The)e(Shopt)g(Builtin],)j(page)
-e(71\),)i(the)e(shell)f(prin)m(ts)g(a)h(w)m(arning)150
+e(72\),)i(the)e(shell)f(prin)m(ts)g(a)h(w)m(arning)150
 2009 y(message,)k(and)c(if)i(the)f Ft(checkjobs)e Fu(option)j(is)f
 (enabled,)i(lists)e(the)h(jobs)f(and)f(their)i(statuses.)39
 b(The)25 b Ft(jobs)150 2118 y Fu(command)36 b(ma)m(y)h(then)f(b)s(e)f
@@ -16768,9 +16840,9 @@ b(The)30 b(options)g(ha)m(v)m(e)i(the)e(follo)m(wing)i(meanings:)630
 5340 y Ft(-l)384 b Fu(List)31 b(pro)s(cess)f Fm(id)p
 Fu(s)g(in)g(addition)h(to)g(the)f(normal)h(information.)p
 eop end
-%%Page: 118 124
-TeXDict begin 118 123 bop 150 -116 a Fu(Chapter)30 b(7:)41
-b(Job)30 b(Con)m(trol)2526 b(118)630 299 y Ft(-n)384
+%%Page: 119 125
+TeXDict begin 119 124 bop 150 -116 a Fu(Chapter)30 b(7:)41
+b(Job)30 b(Con)m(trol)2526 b(119)630 299 y Ft(-n)384
 b Fu(Displa)m(y)26 b(information)f(only)h(ab)s(out)e(jobs)h(that)g(ha)m
 (v)m(e)i(c)m(hanged)e(status)h(since)1110 408 y(the)31
 b(user)e(w)m(as)i(last)g(noti\014ed)f(of)h(their)f(status.)630
@@ -16859,9 +16931,9 @@ b(If)27 b Ft(wait)g Fu(is)g(in)m(terrupted)g(b)m(y)h(a)g(signal,)h(the)
 f(return)630 5340 y(status)j(will)f(b)s(e)g(greater)i(than)e(128,)i(as)
 e(describ)s(ed)g(ab)s(o)m(v)m(e)h(\(see)h(Section)f(3.7.6)h([Signals],)
 p eop end
-%%Page: 119 125
-TeXDict begin 119 124 bop 150 -116 a Fu(Chapter)30 b(7:)41
-b(Job)30 b(Con)m(trol)2526 b(119)630 299 y(page)33 b(45\).)48
+%%Page: 120 126
+TeXDict begin 120 125 bop 150 -116 a Fu(Chapter)30 b(7:)41
+b(Job)30 b(Con)m(trol)2526 b(120)630 299 y(page)33 b(46\).)48
 b(Otherwise,)32 b(the)h(return)e(status)i(is)f(the)g(exit)i(status)e
 (of)h(the)f(last)h(pro)s(cess)f(or)630 408 y(job)e(w)m(aited)h(for.)150
 568 y Ft(disown)870 702 y(disown)46 b([-ar])g([-h])h([)p
@@ -16916,14 +16988,14 @@ Fu(',)d(the)i(string)g(supplied)e(needs)i(to)g(matc)m(h)h(a)f
 62 b(The)37 b(`)p Ft(substring)p Fu(')e(v)-5 b(alue)38
 b(pro)m(vides)f(functionalit)m(y)i(analogous)g(to)630
 4042 y(the)c(`)p Ft(\045?)p Fu(')g(job)g Fm(id)g Fu(\(see)h(Section)g
-(7.1)g([Job)e(Con)m(trol)i(Basics],)i(page)e(116\).)56
+(7.1)g([Job)e(Con)m(trol)i(Basics],)i(page)e(117\).)56
 b(If)34 b(set)i(to)g(an)m(y)630 4151 y(other)c(v)-5 b(alue,)32
 b(the)g(supplied)e(string)i(m)m(ust)f(b)s(e)g(a)h(pre\014x)f(of)h(a)g
 (stopp)s(ed)e(job's)i(name;)g(this)630 4261 y(pro)m(vides)e
 (functionalit)m(y)i(analogous)g(to)f(the)g(`)p Ft(\045)p
 Fu(')f(job)g Fm(id)p Fu(.)p eop end
-%%Page: 120 126
-TeXDict begin 120 125 bop 3614 -116 a Fu(120)150 299
+%%Page: 121 127
+TeXDict begin 121 126 bop 3614 -116 a Fu(121)150 299
 y Fp(8)80 b(Command)54 b(Line)f(Editing)150 635 y Fu(This)28
 b(c)m(hapter)i(describ)s(es)e(the)h(basic)g(features)h(of)f(the)g
 Fm(gnu)f Fu(command)h(line)g(editing)h(in)m(terface.)42
@@ -16936,7 +17008,7 @@ b(Com-)150 745 y(mand)c(line)i(editing)f(is)g(pro)m(vided)g(b)m(y)g
 (shell)f(in)m(v)m(o)s(cation.)45 b(Line)31 b(editing)150
 1074 y(is)g(also)h(used)f(when)f(using)h(the)g Ft(-e)g
 Fu(option)h(to)g(the)f Ft(read)f Fu(builtin)h(command)g(\(see)h
-(Section)g(4.2)h([Bash)150 1183 y(Builtins],)j(page)f(56\).)52
+(Section)g(4.2)h([Bash)150 1183 y(Builtins],)j(page)f(57\).)52
 b(By)35 b(default,)g(the)f(line)h(editing)f(commands)g(are)h(similar)f
 (to)h(those)f(of)g(Emacs.)150 1293 y(A)h(vi-st)m(yle)h(line)f(editing)g
 (in)m(terface)h(is)e(also)i(a)m(v)-5 b(ailable.)55 b(Line)34
@@ -16944,7 +17016,7 @@ b(editing)h(can)g(b)s(e)f(enabled)g(at)h(an)m(y)g(time)150
 1402 y(using)h(the)g Ft(-o)30 b(emacs)35 b Fu(or)h Ft(-o)30
 b(vi)35 b Fu(options)i(to)g(the)f Ft(set)f Fu(builtin)h(command)g
 (\(see)h(Section)g(4.3.1)h([The)150 1512 y(Set)31 b(Builtin],)g(page)g
-(67\),)h(or)e(disabled)g(using)g(the)h Ft(+o)e(emacs)g
+(68\),)h(or)e(disabled)g(using)g(the)h Ft(+o)e(emacs)g
 Fu(or)i Ft(+o)e(vi)h Fu(options)h(to)g Ft(set)p Fu(.)150
 1804 y Fs(8.1)68 b(In)l(tro)t(duction)45 b(to)g(Line)h(Editing)150
 1963 y Fu(The)30 b(follo)m(wing)i(paragraphs)d(describ)s(e)h(the)h
@@ -16983,7 +17055,7 @@ b Ft(DEL)p Fu(,)f Ft(ESC)p Fu(,)g Ft(LFD)p Fu(,)g Ft(SPC)p
 Fu(,)g Ft(RET)p Fu(,)150 3902 y(and)d Ft(TAB)f Fu(all)j(stand)e(for)g
 (themselv)m(es)i(when)d(seen)i(in)f(this)g(text,)j(or)d(in)h(an)f(init)
 h(\014le)f(\(see)i(Section)f(8.3)150 4012 y([Readline)f(Init)g(File],)i
-(page)e(123\).)52 b(If)33 b(y)m(our)g(k)m(eyb)s(oard)h(lac)m(ks)g(a)g
+(page)e(124\).)52 b(If)33 b(y)m(our)g(k)m(eyb)s(oard)h(lac)m(ks)g(a)g
 Ft(LFD)f Fu(k)m(ey)-8 b(,)36 b(t)m(yping)e Ft(C-j)e Fu(will)i(pro)s
 (duce)150 4122 y(the)d(desired)e(c)m(haracter.)43 b(The)30
 b Ft(RET)f Fu(k)m(ey)i(ma)m(y)g(b)s(e)f(lab)s(eled)h
@@ -17007,9 +17079,9 @@ Ft(RET)p Fu(.)39 b(Y)-8 b(ou)25 b(do)g(not)g(ha)m(v)m(e)h(to)g(b)s(e)e
 Ft(RET)p Fu(;)i(the)g(en)m(tire)g(line)f(is)h(accepted)g(regardless)g
 (of)f(the)h(lo)s(cation)h(of)e(the)h(cursor)150 5340
 y(within)c(the)g(line.)p eop end
-%%Page: 121 127
-TeXDict begin 121 126 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(121)150 299 y Fk(8.2.1)63
+%%Page: 122 128
+TeXDict begin 122 127 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(122)150 299 y Fk(8.2.1)63
 b(Readline)40 b(Bare)h(Essen)m(tials)150 446 y Fu(In)31
 b(order)h(to)h(en)m(ter)g(c)m(haracters)g(in)m(to)g(the)g(line,)g
 (simply)e(t)m(yp)s(e)i(them.)46 b(The)31 b(t)m(yp)s(ed)h(c)m(haracter)i
@@ -17076,9 +17148,9 @@ b(It)24 b(is)h(a)g(lo)s(ose)150 5230 y(con)m(v)m(en)m(tion)32
 b(that)f(con)m(trol)g(k)m(eystrok)m(es)h(op)s(erate)e(on)g(c)m
 (haracters)h(while)f(meta)h(k)m(eystrok)m(es)h(op)s(erate)e(on)150
 5340 y(w)m(ords.)p eop end
-%%Page: 122 128
-TeXDict begin 122 127 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(122)150 299 y Fk(8.2.3)63
+%%Page: 123 129
+TeXDict begin 123 128 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(123)150 299 y Fk(8.2.3)63
 b(Readline)40 b(Killing)i(Commands)150 446 y Fr(Killing)35
 b Fu(text)28 b(means)e(to)h(delete)h(the)f(text)g(from)g(the)f(line,)i
 (but)e(to)h(sa)m(v)m(e)h(it)g(a)m(w)m(a)m(y)g(for)e(later)i(use,)f
@@ -17152,13 +17224,13 @@ b(on)e(the)h(input)e(line.)150 4974 y Fk(8.2.5)63 b(Searc)m(hing)40
 b(for)i(Commands)g(in)f(the)g(History)150 5121 y Fu(Readline)35
 b(pro)m(vides)f(commands)g(for)g(searc)m(hing)h(through)e(the)i
 (command)f(history)g(\(see)h(Section)g(9.1)150 5230 y([Bash)i(History)h
-(F)-8 b(acilities],)42 b(page)37 b(155\))i(for)d(lines)h(con)m(taining)
+(F)-8 b(acilities],)42 b(page)37 b(156\))i(for)d(lines)h(con)m(taining)
 i(a)e(sp)s(eci\014ed)f(string.)60 b(There)36 b(are)i(t)m(w)m(o)150
 5340 y(searc)m(h)31 b(mo)s(des:)40 b Fr(incremen)m(tal)35
 b Fu(and)30 b Fr(non-incremen)m(tal)p Fu(.)p eop end
-%%Page: 123 129
-TeXDict begin 123 128 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(123)275 299 y(Incremen)m(tal)26
+%%Page: 124 130
+TeXDict begin 124 129 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(124)275 299 y(Incremen)m(tal)26
 b(searc)m(hes)h(b)s(egin)e(b)s(efore)g(the)h(user)f(has)h(\014nished)e
 (t)m(yping)i(the)g(searc)m(h)g(string.)39 b(As)26 b(eac)m(h)150
 408 y(c)m(haracter)37 b(of)e(the)h(searc)m(h)g(string)f(is)h(t)m(yp)s
@@ -17224,7 +17296,7 @@ b(that)g(\014le)h(do)s(es)e(not)i(exist)g(or)f(cannot)h(b)s(e)150
 Fu(.)47 b(The)33 b Ft(bind)g Fu(builtin)g(command)h(can)g(also)h(b)s(e)
 e(used)150 3713 y(to)e(set)g(Readline)g(k)m(eybindings)f(and)g(v)-5
 b(ariables.)41 b(See)31 b(Section)g(4.2)g([Bash)g(Builtins],)g(page)g
-(56.)275 3843 y(When)e(a)h(program)f(whic)m(h)h(uses)f(the)h(Readline)g
+(57.)275 3843 y(When)e(a)h(program)f(whic)m(h)h(uses)f(the)h(Readline)g
 (library)f(starts)h(up,)f(the)h(init)g(\014le)f(is)h(read,)g(and)f(the)
 150 3953 y(k)m(ey)i(bindings)e(are)i(set.)275 4083 y(In)26
 b(addition,)i(the)f Ft(C-x)i(C-r)d Fu(command)h(re-reads)g(this)f(init)
@@ -17237,7 +17309,7 @@ b(lines)h(are)150 4641 y(ignored.)72 b(Lines)41 b(b)s(eginning)f(with)h
 (a)g(`)p Ft(#)p Fu(')g(are)h(commen)m(ts.)73 b(Lines)41
 b(b)s(eginning)f(with)g(a)i(`)p Ft($)p Fu(')f(indicate)150
 4750 y(conditional)e(constructs)f(\(see)g(Section)h(8.3.2)g
-([Conditional)g(Init)e(Constructs],)j(page)e(132\).)64
+([Conditional)g(Init)e(Constructs],)j(page)e(133\).)64
 b(Other)150 4860 y(lines)31 b(denote)g(v)-5 b(ariable)31
 b(settings)g(and)f(k)m(ey)h(bindings.)150 5011 y(V)-8
 b(ariable)32 b(Settings)630 5121 y(Y)-8 b(ou)41 b(can)g(mo)s(dify)e
@@ -17246,9 +17318,9 @@ b(ariable)32 b(Settings)630 5121 y(Y)-8 b(ou)41 b(can)g(mo)s(dify)e
 b(in)f(Readline)i(using)e(the)g Ft(set)g Fu(command)g(within)g(the)h
 (init)g(\014le.)50 b(The)33 b(syn)m(tax)630 5340 y(is)d(simple:)p
 eop end
-%%Page: 124 130
-TeXDict begin 124 129 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(124)870 299 y Ft(set)47
+%%Page: 125 131
+TeXDict begin 125 130 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(125)870 299 y Ft(set)47
 b Fj(variable)e(value)630 432 y Fu(Here,)29 b(for)e(example,)h(is)g(ho)
 m(w)f(to)h(c)m(hange)g(from)f(the)g(default)h(Emacs-lik)m(e)h(k)m(ey)f
 (binding)e(to)630 542 y(use)k Ft(vi)g Fu(line)h(editing)g(commands:)870
@@ -17265,7 +17337,7 @@ b(1.)39 b(An)m(y)25 b(other)f(v)-5 b(alue)25 b(results)f(in)g(the)g(v)
 1403 y(The)37 b Ft(bind)30 b(-V)37 b Fu(command)g(lists)i(the)f(curren)
 m(t)f(Readline)i(v)-5 b(ariable)38 b(names)g(and)f(v)-5
 b(alues.)630 1512 y(See)31 b(Section)g(4.2)g([Bash)g(Builtins],)g(page)
-g(56.)630 1645 y(A)f(great)i(deal)f(of)g(run-time)f(b)s(eha)m(vior)g
+g(57.)630 1645 y(A)f(great)i(deal)f(of)g(run-time)f(b)s(eha)m(vior)g
 (is)g(c)m(hangeable)j(with)d(the)g(follo)m(wing)i(v)-5
 b(ariables.)630 1802 y Ft(active-region-start-colo)o(r)1110
 1911 y Fu(A)27 b(string)f(v)-5 b(ariable)27 b(that)g(con)m(trols)h(the)
@@ -17319,9 +17391,9 @@ Ft(on)p Fu(')f(\(the)g(default\),)i(Readline)f(attempts)g(to)g(bind)d
 (ecially)g(b)m(y)f(the)g(k)m(ernel's)h(terminal)f(driv)m(er)g(to)h
 (their)1110 5340 y(Readline)h(equiv)-5 b(alen)m(ts.)p
 eop end
-%%Page: 125 131
-TeXDict begin 125 130 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(125)630 299 y Ft
+%%Page: 126 132
+TeXDict begin 126 131 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(126)630 299 y Ft
 (blink-matching-paren)1110 408 y Fu(If)36 b(set)g(to)h(`)p
 Ft(on)p Fu(',)h(Readline)f(attempts)g(to)g(brie\015y)e(mo)m(v)m(e)j
 (the)f(cursor)e(to)i(an)1110 518 y(op)s(ening)k(paren)m(thesis)h(when)f
@@ -17387,9 +17459,9 @@ s(e)g(displa)m(y)m(ed.)77 b(If)1110 5230 y(the)29 b(n)m(um)m(b)s(er)f
 (to)h(this)1110 5340 y(v)-5 b(alue,)45 b(Readline)e(will)f(ask)g
 (whether)f(or)h(not)g(the)g(user)f(wishes)g(to)i(view)p
 eop end
-%%Page: 126 132
-TeXDict begin 126 131 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(126)1110 299 y(them;)33
+%%Page: 127 133
+TeXDict begin 127 132 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(127)1110 299 y(them;)33
 b(otherwise,)f(they)g(are)g(simply)g(listed.)45 b(This)31
 b(v)-5 b(ariable)33 b(m)m(ust)e(b)s(e)g(set)1110 408
 y(to)43 b(an)e(in)m(teger)j(v)-5 b(alue)42 b(greater)h(than)f(or)g
@@ -17448,7 +17520,7 @@ b(The)1110 3988 y(default)31 b(is)f(`)p Ft(@)p Fu('.)630
 b Fr(p)s(oin)m(t)j Fu(is)e(the)g(curren)m(t)f(cursor)g(p)s(osition,)52
 b(and)46 b Fr(mark)52 b Fu(refers)46 b(to)i(a)1110 4354
 y(sa)m(v)m(ed)37 b(cursor)f(p)s(osition)g(\(see)i(Section)f(8.4.1)h
-([Commands)d(F)-8 b(or)37 b(Mo)m(ving],)1110 4463 y(page)d(136\).)50
+([Commands)d(F)-8 b(or)37 b(Mo)m(ving],)1110 4463 y(page)d(137\).)50
 b(The)33 b(text)h(b)s(et)m(w)m(een)f(the)g(p)s(oin)m(t)g(and)g(mark)g
 (is)g(referred)f(to)i(as)1110 4573 y(the)h Fr(region)p
 Fu(.)53 b(When)34 b(this)g(v)-5 b(ariable)36 b(is)e(set)h(to)g(`)p
@@ -17465,9 +17537,9 @@ b(defaults)g(to)h(the)f(string)1110 5011 y(that)23 b(enables)f(the)g
 5230 y(b)m(y)f(incremen)m(tal)i(and)e(non-incremen)m(tal)i(history)e
 (searc)m(hes.)48 b(The)32 b(default)1110 5340 y(is)e(`)p
 Ft(On)p Fu('.)p eop end
-%%Page: 127 133
-TeXDict begin 127 132 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(127)630 299 y Ft
+%%Page: 128 134
+TeXDict begin 128 133 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(128)630 299 y Ft
 (enable-bracketed-paste)1110 408 y Fu(When)36 b(set)h(to)g(`)p
 Ft(On)p Fu(',)h(Readline)f(con\014gures)f(the)h(terminal)f(to)i(insert)
 e(eac)m(h)1110 518 y(paste)27 b(in)m(to)g(the)f(editing)h(bu\013er)e
@@ -17535,9 +17607,9 @@ b(The)44 b(default)g(v)-5 b(alue)44 b(is)g(`)p Ft(off)p
 Fu(',)j(but)1110 5340 y(Readline)24 b(will)h(set)f(it)g(to)h(`)p
 Ft(on)p Fu(')e(if)h(the)g(lo)s(cale)i(con)m(tains)f(eigh)m(t-bit)g(c)m
 (haracters.)p eop end
-%%Page: 128 134
-TeXDict begin 128 133 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(128)1110 299 y(The)29
+%%Page: 129 135
+TeXDict begin 129 134 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(129)1110 299 y(The)29
 b(name)g Ft(meta-flag)e Fu(is)i(a)h(synon)m(ym)f(for)g(this)g(v)-5
 b(ariable.)42 b(This)28 b(v)-5 b(ariable)1110 408 y(is)35
 b(dep)s(enden)m(t)f(on)h(the)g Ft(LC_CTYPE)e Fu(lo)s(cale)k(category)-8
@@ -17547,7 +17619,7 @@ b(lo)s(cale)h(is)e(c)m(hanged.)630 675 y Ft(isearch-terminators)1110
 (terminate)j(an)f(incremen)m(tal)1110 894 y(searc)m(h)25
 b(without)g(subsequen)m(tly)g(executing)h(the)f(c)m(haracter)h(as)f(a)g
 (command)1110 1003 y(\(see)38 b(Section)g(8.2.5)h([Searc)m(hing],)h
-(page)e(122\).)62 b(If)37 b(this)g(v)-5 b(ariable)38
+(page)e(123\).)62 b(If)37 b(this)g(v)-5 b(ariable)38
 b(has)f(not)1110 1113 y(b)s(een)e(giv)m(en)h(a)g(v)-5
 b(alue,)37 b(the)f(c)m(haracters)h Ft(ESC)d Fu(and)h
 Fj(C-J)g Fu(will)h(terminate)g(an)1110 1223 y(incremen)m(tal)c(searc)m
@@ -17611,9 +17683,9 @@ y(names)44 b(b)s(egin)g(with)g(a)g(`)p Ft(.)p Fu(')g(\(hidden)f
 y(completion.)75 b(If)41 b(set)g(to)h(`)p Ft(off)p Fu(',)i(the)e
 (leading)g(`)p Ft(.)p Fu(')f(m)m(ust)g(b)s(e)g(supplied)f(b)m(y)p
 eop end
-%%Page: 129 135
-TeXDict begin 129 134 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(129)1110 299 y(the)34
+%%Page: 130 136
+TeXDict begin 130 135 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(130)1110 299 y(the)34
 b(user)g(in)g(the)g(\014lename)g(to)h(b)s(e)f(completed.)53
 b(This)33 b(v)-5 b(ariable)35 b(is)f(`)p Ft(on)p Fu(')g(b)m(y)1110
 408 y(default.)630 555 y Ft(menu-complete-display-pr)o(efix)1110
@@ -17678,9 +17750,9 @@ b(set)h(to)g(`)p Ft(on)p Fu(',)g(add)f(a)h(string)f(to)h(the)f(b)s
 (eginning)g(of)g(the)h(prompt)e(indicating)1110 5340
 y(the)33 b(editing)h(mo)s(de:)46 b(emacs,)35 b(vi)e(command,)h(or)f(vi)
 h(insertion.)49 b(The)32 b(mo)s(de)p eop end
-%%Page: 130 136
-TeXDict begin 130 135 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(130)1110 299 y(strings)45
+%%Page: 131 137
+TeXDict begin 131 136 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(131)1110 299 y(strings)45
 b(are)h(user-settable)g(\(e.g.,)51 b Fr(emacs-mo)s(de-string)8
 b Fu(\).)87 b(The)45 b(default)1110 408 y(v)-5 b(alue)31
 b(is)f(`)p Ft(off)p Fu('.)630 558 y Ft(skip-completed-text)1110
@@ -17756,9 +17828,9 @@ b(The)40 b(name)h(of)630 5230 y(the)35 b(k)m(ey)g(can)g(b)s(e)f
 (expressed)f(in)i(di\013eren)m(t)g(w)m(a)m(ys,)h(dep)s(ending)d(on)h
 (what)h(y)m(ou)g(\014nd)e(most)630 5340 y(comfortable.)p
 eop end
-%%Page: 131 137
-TeXDict begin 131 136 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(131)630 299 y(In)33
+%%Page: 132 138
+TeXDict begin 132 137 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(132)630 299 y(In)33
 b(addition)h(to)g(command)g(names,)g(Readline)g(allo)m(ws)h(k)m(eys)g
 (to)f(b)s(e)f(b)s(ound)f(to)i(a)g(string)630 408 y(that)d(is)f
 (inserted)h(when)e(the)i(k)m(ey)g(is)f(pressed)g(\(a)h
@@ -17766,7 +17838,7 @@ Fr(macro)5 b Fu(\).)630 538 y(The)42 b Ft(bind)30 b(-p)42
 b Fu(command)h(displa)m(ys)g(Readline)g(function)g(names)g(and)f
 (bindings)g(in)h(a)630 647 y(format)28 b(that)h(can)f(b)s(e)f(put)g
 (directly)i(in)m(to)f(an)g(initialization)j(\014le.)40
-b(See)28 b(Section)h(4.2)g([Bash)630 757 y(Builtins],)i(page)g(56.)630
+b(See)28 b(Section)h(4.2)g([Bash)630 757 y(Builtins],)i(page)g(57.)630
 906 y Fr(k)m(eyname)5 b Fu(:)42 b Fr(function-name)35
 b Fu(or)c Fr(macro)1110 1015 y(k)m(eyname)k Fu(is)29
 b(the)f(name)h(of)g(a)g(k)m(ey)h(sp)s(elled)e(out)h(in)g(English.)39
@@ -17819,9 +17891,9 @@ Ft(")g(")p Fu(,)30 b(a)h(double)f(quotation)i(mark)630
 Fu(Emacs)h(st)m(yle)h(escap)s(e)f(sequences,)h(a)f(second)f(set)h(of)g
 (bac)m(kslash)630 5191 y(escap)s(es)j(is)f(a)m(v)-5 b(ailable:)630
 5340 y Ft(\\a)384 b Fu(alert)31 b(\(b)s(ell\))p eop end
-%%Page: 132 138
-TeXDict begin 132 137 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(132)630 299 y Ft(\\b)384
+%%Page: 133 139
+TeXDict begin 133 138 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(133)630 299 y Ft(\\b)384
 b Fu(bac)m(kspace)630 456 y Ft(\\d)g Fu(delete)630 613
 y Ft(\\f)g Fu(form)30 b(feed)630 770 y Ft(\\n)384 b Fu(newline)630
 928 y Ft(\\r)g Fu(carriage)32 b(return)630 1085 y Ft(\\t)384
@@ -17887,9 +17959,9 @@ b(The)42 b Ft(version)d Fu(expands)i(to)h(the)g(curren)m(t)1110
 Ft(<=)p Fu(',)h(`)p Ft(>=)p Fu(',)f(`)p Ft(<)p Fu(',)h(and)e(`)p
 Ft(>)p Fu('.)46 b(The)31 b(v)m(ersion)i(n)m(um)m(b)s(er)d(supplied)h
 (on)p eop end
-%%Page: 133 139
-TeXDict begin 133 138 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(133)1110 299 y(the)34
+%%Page: 134 140
+TeXDict begin 134 139 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(134)1110 299 y(the)34
 b(righ)m(t)h(side)f(of)g(the)g(op)s(erator)g(consists)h(of)f(a)g(ma)5
 b(jor)35 b(v)m(ersion)f(n)m(um)m(b)s(er,)1110 408 y(an)45
 b(optional)i(decimal)f(p)s(oin)m(t,)k(and)44 b(an)i(optional)g(minor)f
@@ -17949,9 +18021,9 @@ b(/etc/inputrc)150 4792 y Fk(8.3.3)63 b(Sample)41 b(Init)g(File)150
 Fu(\014le.)39 b(This)26 b(illustrates)h(k)m(ey)h(binding,)e(v)-5
 b(ariable)27 b(assignmen)m(t,)i(and)150 5049 y(conditional)j(syn)m
 (tax.)p eop end
-%%Page: 134 140
-TeXDict begin 134 139 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(134)390 408 y Ft(#)47
+%%Page: 135 141
+TeXDict begin 135 140 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(135)390 408 y Ft(#)47
 b(This)g(file)g(controls)e(the)i(behaviour)e(of)j(line)e(input)h
 (editing)e(for)390 518 y(#)i(programs)f(that)h(use)g(the)f(GNU)h
 (Readline)f(library.)93 b(Existing)390 628 y(#)47 b(programs)f(include)
@@ -17980,9 +18052,9 @@ y(#)47 b(Arrow)g(keys)f(in)i(8)f(bit)g(keypad)f(mode)390
 4902 y(#)390 5011 y(#)47 b(Arrow)g(keys)f(in)i(8)f(bit)g(ANSI)g(mode)
 390 5121 y(#)390 5230 y(#"\\M-\\C-[D":)331 b(backward-char)390
 5340 y(#"\\M-\\C-[C":)g(forward-char)p eop end
-%%Page: 135 141
-TeXDict begin 135 140 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(135)390 299 y Ft(#"\\M-\\C-[A":)
+%%Page: 136 142
+TeXDict begin 136 141 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(136)390 299 y Ft(#"\\M-\\C-[A":)
 331 b(previous-history)390 408 y(#"\\M-\\C-[B":)g(next-history)390
 628 y(C-q:)47 b(quoted-insert)390 847 y($endif)390 1066
 y(#)g(An)h(old-style)d(binding.)93 b(This)47 b(happens)f(to)h(be)g(the)
@@ -18015,9 +18087,9 @@ y($endif)390 3477 y(#)i(use)g(a)h(visible)e(bell)g(if)h(one)g(is)h
 g(for)i(a)g(word,)390 5121 y(#)g(ask)g(whether)f(or)h(not)g(the)g(user)
 g(wants)f(to)h(see)g(all)g(of)g(them)390 5230 y(set)g
 (completion-query-items)42 b(150)p eop end
-%%Page: 136 142
-TeXDict begin 136 141 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(136)390 299 y Ft(#)47
+%%Page: 137 143
+TeXDict begin 137 142 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(137)390 299 y Ft(#)47
 b(For)g(FTP)390 408 y($if)g(Ftp)390 518 y("\\C-xg":)f("get)g(\\M-?")390
 628 y("\\C-xt":)g("put)g(\\M-?")390 737 y("\\M-.":)g(yank-last-arg)390
 847 y($endif)150 1089 y Fs(8.4)68 b(Bindable)45 b(Readline)i(Commands)
@@ -18027,7 +18099,7 @@ b(Y)-8 b(ou)33 b(can)150 1358 y(list)40 b(y)m(our)f(k)m(ey)i(bindings)d
 (b)m(y)h(executing)i Ft(bind)29 b(-P)39 b Fu(or,)j(for)d(a)h(more)g
 (terse)g(format,)i(suitable)e(for)f(an)150 1468 y Fr(inputrc)34
 b Fu(\014le,)29 b Ft(bind)g(-p)p Fu(.)40 b(\(See)30 b(Section)f(4.2)h
-([Bash)g(Builtins],)g(page)g(56.\))41 b(Command)28 b(names)h(without)
+([Bash)g(Builtins],)g(page)g(57.\))41 b(Command)28 b(names)h(without)
 150 1577 y(an)h(accompan)m(ying)i(k)m(ey)f(sequence)g(are)g(un)m(b)s
 (ound)d(b)m(y)i(default.)275 1713 y(In)25 b(the)h(follo)m(wing)i
 (descriptions,)f Fr(p)s(oin)m(t)h Fu(refers)e(to)h(the)f(curren)m(t)g
@@ -18067,9 +18139,9 @@ b(screen)f(line.)39 b(This)24 b(will)i(not)f(ha)m(v)m(e)h(the)f
 (ysical)h(line)g(or)f(if)g(p)s(oin)m(t)h(is)f(not)h(greater)g(than)630
 5340 y(the)j(length)f(of)h(the)f(prompt)g(plus)f(the)i(screen)f(width.)
 p eop end
-%%Page: 137 143
-TeXDict begin 137 142 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(137)150 299 y Ft(next-screen-line)
+%%Page: 138 144
+TeXDict begin 138 143 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(138)150 299 y Ft(next-screen-line)
 26 b(\(\))630 408 y Fu(A)m(ttempt)g(to)f(mo)m(v)m(e)i(p)s(oin)m(t)d(to)
 i(the)e(same)i(ph)m(ysical)f(screen)g(column)f(on)h(the)f(next)h(ph)m
 (ysical)630 518 y(screen)e(line.)39 b(This)23 b(will)g(not)h(ha)m(v)m
@@ -18127,9 +18199,9 @@ b(\(M-p\))630 5121 y Fu(Searc)m(h)31 b(bac)m(kw)m(ard)h(starting)g(at)g
 (tal)g(searc)m(h)f(for)g(a)g(string)g(supplied)f(b)m(y)h(the)630
 5340 y(user.)k(The)30 b(searc)m(h)h(string)f(ma)m(y)h(matc)m(h)g(an)m
 (ywhere)g(in)f(a)h(history)f(line.)p eop end
-%%Page: 138 144
-TeXDict begin 138 143 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(138)150 299 y Ft
+%%Page: 139 145
+TeXDict begin 139 144 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(139)150 299 y Ft
 (non-incremental-forward-)o(sear)o(ch-h)o(ist)o(ory)24
 b(\(M-n\))630 408 y Fu(Searc)m(h)44 b(forw)m(ard)f(starting)h(at)h(the)
 e(curren)m(t)h(line)g(and)f(mo)m(ving)h(`do)m(wn')g(through)f(the)630
@@ -18203,9 +18275,9 @@ b(the)g(curren)m(t)e(line)i(for)f(return)f(to)h(the)h(calling)g
 b(en)m(tered,)k(and)d(fetc)m(h)h(the)f(next)g(line)h(relativ)m(e)h(to)f
 (the)f(curren)m(t)g(line)h(from)f(the)g(history)p eop
 end
-%%Page: 139 145
-TeXDict begin 139 144 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(139)630 299 y(for)31
+%%Page: 140 146
+TeXDict begin 140 145 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(140)630 299 y(for)31
 b(editing.)43 b(A)31 b(n)m(umeric)f(argumen)m(t,)i(if)f(supplied,)f(sp)
 s(eci\014es)h(the)g(history)f(en)m(try)i(to)f(use)630
 408 y(instead)g(of)f(the)h(curren)m(t)f(line.)150 565
@@ -18269,9 +18341,9 @@ g(of)h(the)630 5230 y(line,)24 b(then)e(this)g(transp)s(oses)f(the)h
 (last)h(t)m(w)m(o)g(c)m(haracters)g(of)f(the)h(line.)38
 b(Negativ)m(e)25 b(argumen)m(ts)630 5340 y(ha)m(v)m(e)32
 b(no)e(e\013ect.)p eop end
-%%Page: 140 146
-TeXDict begin 140 145 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(140)150 299 y Ft(transpose-words)
+%%Page: 141 147
+TeXDict begin 141 146 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(141)150 299 y Ft(transpose-words)
 26 b(\(M-t\))630 408 y Fu(Drag)33 b(the)g(w)m(ord)f(b)s(efore)g(p)s
 (oin)m(t)g(past)g(the)h(w)m(ord)f(after)g(p)s(oin)m(t,)i(mo)m(ving)f(p)
 s(oin)m(t)f(past)g(that)630 518 y(w)m(ord)c(as)h(w)m(ell.)41
@@ -18332,9 +18404,9 @@ Fu(.)150 5230 y Ft(backward-kill-word)25 b(\(M-DEL\))630
 5340 y Fu(Kill)k(the)g(w)m(ord)g(b)s(ehind)e(p)s(oin)m(t.)40
 b(W)-8 b(ord)29 b(b)s(oundaries)f(are)h(the)g(same)g(as)g
 Ft(backward-word)p Fu(.)p eop end
-%%Page: 141 147
-TeXDict begin 141 146 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(141)150 299 y Ft(shell-kill-word)
+%%Page: 142 148
+TeXDict begin 142 147 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(142)150 299 y Ft(shell-kill-word)
 26 b(\(M-C-d\))630 408 y Fu(Kill)k(from)f(p)s(oin)m(t)g(to)h(the)g(end)
 e(of)i(the)f(curren)m(t)h(w)m(ord,)f(or)g(if)h(b)s(et)m(w)m(een)g(w)m
 (ords,)f(to)h(the)g(end)630 518 y(of)h(the)f(next)h(w)m(ord.)40
@@ -18391,9 +18463,9 @@ Fj(M-1)p Ft(,)h(...)f Fj(M--)p Ft(\))630 5230 y Fu(Add)d(this)h(digit)g
 (to)h(the)f(argumen)m(t)g(already)h(accum)m(ulating,)h(or)e(start)h(a)f
 (new)f(argumen)m(t.)630 5340 y Fj(M--)j Fu(starts)i(a)g(negativ)m(e)i
 (argumen)m(t.)p eop end
-%%Page: 142 148
-TeXDict begin 142 147 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(142)150 299 y Ft
+%%Page: 143 149
+TeXDict begin 143 148 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(143)150 299 y Ft
 (universal-argument)25 b(\(\))630 408 y Fu(This)g(is)g(another)h(w)m(a)
 m(y)g(to)h(sp)s(ecify)e(an)g(argumen)m(t.)40 b(If)25
 b(this)g(command)h(is)f(follo)m(w)m(ed)i(b)m(y)f(one)630
@@ -18468,9 +18540,9 @@ y Ft(possible-completions)p Fu(.)35 b(This)30 b(command)g(is)g(un)m(b)s
 (ound)e(b)m(y)i(default.)150 5230 y Ft(complete-filename)c(\(M-/\))630
 5340 y Fu(A)m(ttempt)32 b(\014lename)e(completion)i(on)e(the)h(text)g
 (b)s(efore)f(p)s(oin)m(t.)p eop end
-%%Page: 143 149
-TeXDict begin 143 148 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(143)150 299 y Ft
+%%Page: 144 150
+TeXDict begin 144 149 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(144)150 299 y Ft
 (possible-filename-comple)o(tion)o(s)24 b(\(C-x)30 b(/\))630
 408 y Fu(List)f(the)g(p)s(ossible)f(completions)h(of)g(the)g(text)g(b)s
 (efore)g(p)s(oin)m(t,)g(treating)h(it)f(as)g(a)f(\014lename.)150
@@ -18522,9 +18594,9 @@ g(macro.)150 5121 y Ft(end-kbd-macro)d(\(C-x)i(\)\))630
 5230 y Fu(Stop)e(sa)m(ving)h(the)g(c)m(haracters)g(t)m(yp)s(ed)f(in)m
 (to)i(the)e(curren)m(t)g(k)m(eyb)s(oard)g(macro)h(and)f(sa)m(v)m(e)i
 (the)630 5340 y(de\014nition.)p eop end
-%%Page: 144 150
-TeXDict begin 144 149 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(144)150 299 y Ft
+%%Page: 145 151
+TeXDict begin 145 150 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(145)150 299 y Ft
 (call-last-kbd-macro)25 b(\(C-x)k(e\))630 408 y Fu(Re-execute)37
 b(the)e(last)h(k)m(eyb)s(oard)f(macro)h(de\014ned,)f(b)m(y)h(making)f
 (the)g(c)m(haracters)i(in)e(the)630 518 y(macro)c(app)s(ear)f(as)g(if)h
@@ -18581,9 +18653,9 @@ g(that)630 4968 y(c)m(haracter.)d(A)31 b(negativ)m(e)h(argumen)m(t)f
 (as)g(those)h(de\014ned)630 5340 y(for)37 b(k)m(eys)h(lik)m(e)g(Home)g
 (and)f(End.)60 b(Suc)m(h)37 b(sequences)g(b)s(egin)g(with)g(a)h(Con)m
 (trol)g(Sequence)p eop end
-%%Page: 145 151
-TeXDict begin 145 150 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(145)630 299 y(Indicator)37
+%%Page: 146 152
+TeXDict begin 146 151 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(146)630 299 y(Indicator)37
 b(\(CSI\),)f(usually)h(ESC-[.)59 b(If)36 b(this)g(sequence)h(is)g(b)s
 (ound)d(to)k Ft("\\)p Fu(e[)p Ft(")p Fu(,)g(k)m(eys)f(pro-)630
 408 y(ducing)29 b(suc)m(h)g(sequences)g(will)h(ha)m(v)m(e)h(no)e
@@ -18656,9 +18728,9 @@ b(If)39 b(a)h(n)m(umeric)630 4847 y(argumen)m(t)31 b(is)f(supplied,)g
 50 b(If)33 b(a)h(n)m(umeric)g(argumen)m(t)g(is)f(supplied,)h(a)g(`)p
 Ft(*)p Fu(')630 5340 y(is)c(app)s(ended)f(b)s(efore)h(pathname)g
 (expansion.)p eop end
-%%Page: 146 152
-TeXDict begin 146 151 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(146)150 299 y Ft
+%%Page: 147 153
+TeXDict begin 147 152 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(147)150 299 y Ft
 (display-shell-version)25 b(\(C-x)k(C-v\))630 408 y Fu(Displa)m(y)j(v)m
 (ersion)e(information)h(ab)s(out)f(the)h(curren)m(t)f(instance)h(of)f
 (Bash.)150 566 y Ft(shell-expand-line)c(\(M-C-e\))630
@@ -18674,10 +18746,10 @@ b(al.)150 1162 y Ft(history-expand-line)25 b(\(M-^\))630
 (line.)150 1429 y Ft(magic-space)d(\(\))630 1539 y Fu(P)m(erform)c
 (history)g(expansion)g(on)g(the)g(curren)m(t)g(line)g(and)g(insert)g(a)
 g(space)h(\(see)g(Section)g(9.3)630 1649 y([History)31
-b(In)m(teraction],)i(page)e(157\).)150 1806 y Ft(alias-expand-line)26
+b(In)m(teraction],)i(page)e(158\).)150 1806 y Ft(alias-expand-line)26
 b(\(\))630 1916 y Fu(P)m(erform)e(alias)i(expansion)e(on)h(the)g
 (curren)m(t)f(line)h(\(see)g(Section)h(6.6)f([Aliases],)j(page)d
-(101\).)150 2073 y Ft(history-and-alias-expand)o(-lin)o(e)f(\(\))630
+(102\).)150 2073 y Ft(history-and-alias-expand)o(-lin)o(e)f(\(\))630
 2183 y Fu(P)m(erform)30 b(history)h(and)e(alias)j(expansion)e(on)g(the)
 h(curren)m(t)f(line.)150 2341 y Ft(insert-last-argument)25
 b(\(M-.)k(or)h(M-_\))630 2450 y Fu(A)g(synon)m(ym)g(for)g
@@ -18698,7 +18770,7 @@ m(ely)j(b)s(et)m(w)m(een)d Ft(emacs)f Fu(and)g Ft(vi)g
 Fu(editing)h(mo)s(des,)h(use)f(the)g(`)p Ft(set)30 b(-o)150
 3798 y(emacs)p Fu(')43 b(and)h(`)p Ft(set)30 b(-o)f(vi)p
 Fu(')44 b(commands)g(\(see)i(Section)f(4.3.1)h([The)e(Set)h(Builtin],)j
-(page)e(67\).)83 b(The)150 3907 y(Readline)31 b(default)g(is)f
+(page)e(68\).)83 b(The)150 3907 y(Readline)31 b(default)g(is)f
 Ft(emacs)f Fu(mo)s(de.)275 4041 y(When)g(y)m(ou)i(en)m(ter)f(a)h(line)f
 (in)g Ft(vi)f Fu(mo)s(de,)h(y)m(ou)h(are)f(already)h(placed)f(in)g
 (`insertion')g(mo)s(de,)g(as)h(if)f(y)m(ou)150 4150 y(had)f(t)m(yp)s
@@ -18715,16 +18787,16 @@ b(w)m(ord)g(completion)i(is)f(attempted)g(for)g(an)f(argumen)m(t)h(to)g
 y(sp)s(eci\014cation)40 b(\(a)h Fr(compsp)s(ec)6 b Fu(\))39
 b(has)h(b)s(een)f(de\014ned)f(using)h(the)h Ft(complete)d
 Fu(builtin)j(\(see)g(Section)h(8.7)150 4987 y([Programmable)h
-(Completion)f(Builtins],)k(page)d(149\),)j(the)c(programmable)g
+(Completion)f(Builtins],)k(page)d(150\),)j(the)c(programmable)g
 (completion)i(facilities)150 5097 y(are)31 b(in)m(v)m(ok)m(ed.)275
 5230 y(First,)23 b(the)e(command)g(name)g(is)h(iden)m(ti\014ed.)37
 b(If)21 b(a)g(compsp)s(ec)g(has)g(b)s(een)f(de\014ned)g(for)h(that)h
 (command,)150 5340 y(the)44 b(compsp)s(ec)g(is)g(used)f(to)h(generate)i
 (the)e(list)g(of)g(p)s(ossible)g(completions)h(for)e(the)h(w)m(ord.)81
 b(If)44 b(the)p eop end
-%%Page: 147 153
-TeXDict begin 147 152 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(147)150 299 y(command)36
+%%Page: 148 154
+TeXDict begin 148 153 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(148)150 299 y(command)36
 b(w)m(ord)g(is)g(the)g(empt)m(y)h(string)f(\(completion)i(attempted)f
 (at)g(the)g(b)s(eginning)e(of)h(an)h(empt)m(y)150 408
 y(line\),)30 b(an)m(y)g(compsp)s(ec)f(de\014ned)f(with)h(the)h
@@ -18747,7 +18819,7 @@ Ft(-D)g Fu(option)g(to)h Ft(complete)d Fu(is)i(used)g(as)g(the)g
 (matc)m(hing)h(w)m(ords.)51 b(If)150 1316 y(a)37 b(compsp)s(ec)f(is)g
 (not)h(found,)f(the)h(default)f(Bash)h(completion)g(describ)s(ed)e(ab)s
 (o)m(v)m(e)j(\(see)f(Section)g(8.4.6)150 1426 y([Commands)30
-b(F)-8 b(or)31 b(Completion],)g(page)g(142\))h(is)f(p)s(erformed.)275
+b(F)-8 b(or)31 b(Completion],)g(page)g(143\))h(is)f(p)s(erformed.)275
 1567 y(First,)g(the)g(actions)g(sp)s(eci\014ed)f(b)m(y)h(the)f(compsp)s
 (ec)h(are)g(used.)40 b(Only)30 b(matc)m(hes)i(whic)m(h)e(are)h
 (pre\014xed)150 1677 y(b)m(y)h(the)f(w)m(ord)h(b)s(eing)f(completed)h
@@ -18756,7 +18828,7 @@ Ft(-d)f Fu(option)h(is)f(used)g(for)h(\014lename)150
 1786 y(or)e(directory)h(name)f(completion,)i(the)e(shell)h(v)-5
 b(ariable)31 b Ft(FIGNORE)d Fu(is)i(used)f(to)i(\014lter)g(the)f(matc)m
 (hes.)42 b(See)150 1896 y(Section)31 b(5.2)h([Bash)e(V)-8
-b(ariables],)33 b(page)e(79,)g(for)f(a)h(description)g(of)f
+b(ariables],)33 b(page)e(80,)g(for)f(a)h(description)g(of)f
 Ft(FIGNORE)p Fu(.)275 2037 y(An)m(y)22 b(completions)h(sp)s(eci\014ed)f
 (b)m(y)g(a)h(\014lename)f(expansion)h(pattern)f(to)h(the)g
 Ft(-G)e Fu(option)i(are)g(generated)150 2146 y(next.)41
@@ -18780,7 +18852,7 @@ b(alue)31 b(of)g Ft(IFS)p Fu(.)42 b(Eac)m(h)32 b(w)m(ord)e(is)h(then)g
 s(ed)e(ab)s(o)m(v)m(e)i(\(see)h(Section)f(3.5)g([Shell)g(Expansions],)g
 (page)g(24\).)40 b(The)150 3164 y(results)23 b(are)h(split)g(using)f
 (the)h(rules)f(describ)s(ed)f(ab)s(o)m(v)m(e)j(\(see)g(Section)f(3.5.7)
-h([W)-8 b(ord)24 b(Splitting],)i(page)e(35\).)150 3273
+h([W)-8 b(ord)24 b(Splitting],)i(page)e(36\).)150 3273
 y(The)j(results)h(of)f(the)h(expansion)g(are)g(pre\014x-matc)m(hed)g
 (against)h(the)f(w)m(ord)f(b)s(eing)g(completed,)j(and)d(the)150
 3383 y(matc)m(hing)k(w)m(ords)f(b)s(ecome)h(the)g(p)s(ossible)f
@@ -18793,7 +18865,7 @@ Ft(COMP_)150 3743 y(LINE)p Fu(,)42 b Ft(COMP_POINT)p
 Fu(,)d Ft(COMP_KEY)p Fu(,)i(and)e Ft(COMP_TYPE)f Fu(v)-5
 b(ariables)41 b(are)f(assigned)g(v)-5 b(alues)41 b(as)f(describ)s(ed)
 150 3853 y(ab)s(o)m(v)m(e)34 b(\(see)g(Section)g(5.2)g([Bash)f(V)-8
-b(ariables],)36 b(page)d(79\).)50 b(If)33 b(a)g(shell)g(function)g(is)g
+b(ariables],)36 b(page)d(80\).)50 b(If)33 b(a)g(shell)g(function)g(is)g
 (b)s(eing)f(in)m(v)m(ok)m(ed,)k(the)150 3962 y Ft(COMP_WORDS)j
 Fu(and)i Ft(COMP_CWORD)d Fu(v)-5 b(ariables)42 b(are)g(also)h(set.)74
 b(When)41 b(the)h(function)f(or)h(command)f(is)150 4072
@@ -18812,7 +18884,7 @@ b(The)35 b(function)f(ma)m(y)h(use)g(an)m(y)g(of)g(the)g(shell)150
 4761 y(facilities,)50 b(including)44 b(the)h Ft(compgen)d
 Fu(and)i Ft(compopt)e Fu(builtins)i(describ)s(ed)f(b)s(elo)m(w)h(\(see)
 i(Section)f(8.7)150 4870 y([Programmable)31 b(Completion)h(Builtins],)f
-(page)h(149\),)g(to)g(generate)g(the)f(matc)m(hes.)42
+(page)h(150\),)g(to)g(generate)g(the)f(matc)m(hes.)42
 b(It)31 b(m)m(ust)g(put)f(the)150 4980 y(p)s(ossible)g(completions)h
 (in)f(the)h Ft(COMPREPLY)d Fu(arra)m(y)j(v)-5 b(ariable,)31
 b(one)g(p)s(er)e(arra)m(y)i(elemen)m(t.)275 5121 y(Next,)26
@@ -18823,9 +18895,9 @@ b(It)25 b(should)f(prin)m(t)h(a)g(list)h(of)f(completions,)i(one)e(p)s
 (er)f(line,)j(to)f(the)f(standard)150 5340 y(output.)40
 b(Bac)m(kslash)32 b(ma)m(y)f(b)s(e)f(used)g(to)h(escap)s(e)g(a)f
 (newline,)h(if)f(necessary)-8 b(.)p eop end
-%%Page: 148 154
-TeXDict begin 148 153 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(148)275 299 y(After)24
+%%Page: 149 155
+TeXDict begin 149 154 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(149)275 299 y(After)24
 b(all)i(of)f(the)f(p)s(ossible)g(completions)i(are)f(generated,)i(an)m
 (y)e(\014lter)g(sp)s(eci\014ed)e(with)i(the)g Ft(-X)e
 Fu(option)150 408 y(is)34 b(applied)g(to)g(the)h(list.)52
@@ -18843,7 +18915,7 @@ Fu(')f(negates)i(the)f(pattern;)150 847 y(in)d(this)g(case)h(an)m(y)g
 (v)m(ed.)42 b(If)29 b(the)g Ft(nocasematch)150 956 y
 Fu(shell)k(option)f(\(see)i(the)e(description)g(of)h
 Ft(shopt)e Fu(in)h(Section)h(4.3.2)h([The)e(Shopt)g(Builtin],)h(page)g
-(71\))h(is)150 1066 y(enabled,)d(the)f(matc)m(h)h(is)g(p)s(erformed)e
+(72\))h(is)150 1066 y(enabled,)d(the)f(matc)m(h)h(is)g(p)s(erformed)e
 (without)h(regard)g(to)h(the)g(case)g(of)g(alphab)s(etic)g(c)m
 (haracters.)275 1203 y(Finally)-8 b(,)42 b(an)m(y)c(pre\014x)g(and)f
 (su\016x)h(sp)s(eci\014ed)f(with)i(the)f Ft(-P)g Fu(and)g
@@ -18911,9 +18983,9 @@ b("/etc/bash_completion.d/$1)o(.sh)o(")42 b(>/dev/null)j(2>&1)i(&&)g
 (return)f(124)390 5230 y(})390 5340 y(complete)g(-D)h(-F)g
 (_completion_loader)c(-o)k(bashdefault)e(-o)i(default)p
 eop end
-%%Page: 149 155
-TeXDict begin 149 154 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(149)150 299 y Fs(8.7)68
+%%Page: 150 156
+TeXDict begin 150 155 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(150)150 299 y Fs(8.7)68
 b(Programmable)47 b(Completion)f(Builtins)150 458 y Fu(Three)21
 b(builtin)g(commands)f(are)i(a)m(v)-5 b(ailable)24 b(to)e(manipulate)f
 (the)h(programmable)f(completion)h(facilities:)150 568
@@ -18991,10 +19063,10 @@ Fr(name)630 4872 y Fu(argumen)m(ts)k(are)g(ignored;)j(these)d
 (applying)g(these)g(completion)g(sp)s(eci\014cations)h(when)d(w)m(ord)i
 (completion)630 5230 y(is)35 b(attempted)h(is)f(describ)s(ed)f(ab)s(o)m
 (v)m(e)j(\(see)f(Section)g(8.6)g([Programmable)g(Completion],)630
-5340 y(page)31 b(146\).)p eop end
-%%Page: 150 156
-TeXDict begin 150 155 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(150)630 299 y(Other)28
+5340 y(page)31 b(147\).)p eop end
+%%Page: 151 157
+TeXDict begin 151 156 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(151)630 299 y(Other)28
 b(options,)i(if)f(sp)s(eci\014ed,)g(ha)m(v)m(e)h(the)f(follo)m(wing)i
 (meanings.)40 b(The)29 b(argumen)m(ts)g(to)h(the)630
 408 y Ft(-G)p Fu(,)41 b Ft(-W)p Fu(,)h(and)c Ft(-X)h
@@ -19043,7 +19115,7 @@ b(also)h(b)s(e)e(sp)s(eci\014ed)f(as)i Ft(-a)p Fu(.)1110
 4408 y Ft(arrayvar)96 b Fu(Arra)m(y)31 b(v)-5 b(ariable)31
 b(names.)1110 4559 y Ft(binding)144 b Fu(Readline)30
 b(k)m(ey)f(binding)f(names)h(\(see)h(Section)f(8.4)h([Bindable)1590
-4669 y(Readline)h(Commands],)f(page)h(136\).)1110 4819
+4669 y(Readline)h(Commands],)f(page)h(137\).)1110 4819
 y Ft(builtin)144 b Fu(Names)21 b(of)g(shell)f(builtin)h(commands.)37
 b(Ma)m(y)21 b(also)h(b)s(e)e(sp)s(eci\014ed)1590 4929
 y(as)31 b Ft(-b)p Fu(.)1110 5080 y Ft(command)144 b Fu(Command)29
@@ -19051,9 +19123,9 @@ b(names.)41 b(Ma)m(y)32 b(also)f(b)s(e)f(sp)s(eci\014ed)f(as)i
 Ft(-c)p Fu(.)1110 5230 y Ft(directory)1590 5340 y Fu(Directory)h
 (names.)40 b(Ma)m(y)32 b(also)f(b)s(e)f(sp)s(eci\014ed)g(as)g
 Ft(-d)p Fu(.)p eop end
-%%Page: 151 157
-TeXDict begin 151 156 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(151)1110 299 y Ft(disabled)96
+%%Page: 152 158
+TeXDict begin 152 157 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(152)1110 299 y Ft(disabled)96
 b Fu(Names)31 b(of)g(disabled)f(shell)g(builtins.)1110
 455 y Ft(enabled)144 b Fu(Names)31 b(of)g(enabled)f(shell)g(builtins.)
 1110 610 y Ft(export)192 b Fu(Names)34 b(of)f(exp)s(orted)f(shell)h(v)
@@ -19066,11 +19138,11 @@ Fu(Group)30 b(names.)40 b(Ma)m(y)32 b(also)f(b)s(e)f(sp)s(eci\014ed)g
 (as)g Ft(-g)p Fu(.)1110 1343 y Ft(helptopic)1590 1452
 y Fu(Help)37 b(topics)g(as)g(accepted)h(b)m(y)e(the)h
 Ft(help)f Fu(builtin)g(\(see)h(Sec-)1590 1562 y(tion)31
-b(4.2)g([Bash)g(Builtins],)g(page)g(56\).)1110 1718 y
+b(4.2)g([Bash)g(Builtins],)g(page)g(57\).)1110 1718 y
 Ft(hostname)96 b Fu(Hostnames,)89 b(as)76 b(tak)m(en)h(from)f(the)g
 (\014le)h(sp)s(eci\014ed)e(b)m(y)1590 1827 y(the)55 b
 Ft(HOSTFILE)e Fu(shell)j(v)-5 b(ariable)56 b(\(see)g(Section)g(5.2)h
-([Bash)1590 1937 y(V)-8 b(ariables],)32 b(page)f(79\).)1110
+([Bash)1590 1937 y(V)-8 b(ariables],)32 b(page)f(80\).)1110
 2093 y Ft(job)336 b Fu(Job)31 b(names,)h(if)g(job)f(con)m(trol)i(is)f
 (activ)m(e.)46 b(Ma)m(y)33 b(also)g(b)s(e)e(sp)s(eci-)1590
 2202 y(\014ed)f(as)g Ft(-j)p Fu(.)1110 2358 y Ft(keyword)144
@@ -19082,10 +19154,10 @@ b Fu(Service)31 b(names.)41 b(Ma)m(y)31 b(also)g(b)s(e)f(sp)s
 (eci\014ed)g(as)g Ft(-s)p Fu(.)1110 2825 y Ft(setopt)192
 b Fu(V)-8 b(alid)39 b(argumen)m(ts)g(for)f(the)h Ft(-o)e
 Fu(option)i(to)g(the)g Ft(set)e Fu(builtin)1590 2935
-y(\(see)31 b(Section)h(4.3.1)g([The)e(Set)g(Builtin],)i(page)f(67\).)
+y(\(see)31 b(Section)h(4.3.1)g([The)e(Set)g(Builtin],)i(page)f(68\).)
 1110 3091 y Ft(shopt)240 b Fu(Shell)40 b(option)g(names)g(as)g
 (accepted)i(b)m(y)e(the)g Ft(shopt)e Fu(builtin)1590
-3200 y(\(see)31 b(Section)h(4.2)f([Bash)g(Builtins],)g(page)g(56\).)
+3200 y(\(see)31 b(Section)h(4.2)f([Bash)g(Builtins],)g(page)g(57\).)
 1110 3356 y Ft(signal)192 b Fu(Signal)31 b(names.)1110
 3512 y Ft(stopped)144 b Fu(Names)31 b(of)g(stopp)s(ed)e(jobs,)h(if)g
 (job)g(con)m(trol)i(is)f(activ)m(e.)1110 3667 y Ft(user)288
@@ -19106,14 +19178,14 @@ b(argumen)m(ts)h(are)g(b)s(eing)f(completed,)j($2)e(is)f(the)h(w)m(ord)
 f(b)s(eing)g(com-)1110 5011 y(pleted,)44 b(and)c($3)i(is)e(the)h(w)m
 (ord)g(preceding)f(the)h(w)m(ord)f(b)s(eing)h(completed,)1110
 5121 y(as)g(describ)s(ed)f(ab)s(o)m(v)m(e)i(\(see)g(Section)f(8.6)h
-([Programmable)g(Completion],)1110 5230 y(page)30 b(146\).)42
+([Programmable)g(Completion],)1110 5230 y(page)30 b(147\).)42
 b(When)29 b(it)h(\014nishes,)e(the)h(p)s(ossible)g(completions)h(are)g
 (retriev)m(ed)1110 5340 y(from)g(the)g(v)-5 b(alue)31
 b(of)g(the)f Ft(COMPREPLY)e Fu(arra)m(y)j(v)-5 b(ariable.)p
 eop end
-%%Page: 152 158
-TeXDict begin 152 157 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(152)630 299 y Ft(-G)30
+%%Page: 153 159
+TeXDict begin 153 158 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(153)630 299 y Ft(-G)30
 b Fj(globpat)1110 408 y Fu(The)39 b(\014lename)h(expansion)g(pattern)g
 Fr(globpat)j Fu(is)d(expanded)f(to)h(generate)1110 518
 y(the)31 b(p)s(ossible)e(completions.)630 708 y Ft(-P)h
@@ -19185,9 +19257,9 @@ b(option)h(is)f(supplied,)g(an)g(attempt)h(is)f(made)630
 Fr(name)k Fu(for)31 b(whic)m(h)g(no)g(completion)i(sp)s(eci\014cation)f
 (exists,)630 5322 y(or)e(an)h(output)f(error)g(o)s(ccurs.)p
 eop end
-%%Page: 153 159
-TeXDict begin 153 158 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(153)150 299 y Fs(8.8)68
+%%Page: 154 160
+TeXDict begin 154 159 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(154)150 299 y Fs(8.8)68
 b(A)44 b(Programmable)j(Completion)f(Example)150 458
 y Fu(The)37 b(most)g(common)g(w)m(a)m(y)i(to)e(obtain)h(additional)g
 (completion)g(functionalit)m(y)h(b)s(ey)m(ond)d(the)i(default)150
@@ -19212,9 +19284,9 @@ Ft(cd)f Fu(do)s(es)g(b)s(ey)m(ond)g(accepting)j(basic)e(directory)g
 ([Tilde)g(Expansion],)g(page)g(25\),)i(searc)m(hing)e(directories)g(in)
 e Fr($CDP)-8 b(A)g(TH)p Fu(,)150 1639 y(whic)m(h)21 b(is)h(describ)s
 (ed)e(ab)s(o)m(v)m(e)j(\(see)f(Section)h(4.1)f([Bourne)g(Shell)f
-(Builtins],)j(page)e(48\),)j(and)c(basic)h(supp)s(ort)150
+(Builtins],)j(page)e(49\),)j(and)c(basic)h(supp)s(ort)150
 1748 y(for)31 b(the)h Ft(cdable_vars)d Fu(shell)i(option)h(\(see)h
-(Section)f(4.3.2)i([The)d(Shopt)g(Builtin],)i(page)f(71\).)46
+(Section)f(4.3.2)i([The)d(Shopt)g(Builtin],)i(page)f(72\).)46
 b Ft(_comp_)150 1858 y(cd)30 b Fu(mo)s(di\014es)g(the)h(v)-5
 b(alue)31 b(of)g Fr(IFS)36 b Fu(so)31 b(that)g(it)g(con)m(tains)h(only)
 f(a)g(newline)g(to)h(accommo)s(date)g(\014le)f(names)150
@@ -19246,9 +19318,9 @@ h(one)f(per)h(line;)g(could)f(also)h(use)g(while)f(loop)772
 y(_skipdot=false)772 5230 y(#)f(preprocess)e(CDPATH)h(to)i(convert)d
 (null)i(directory)e(names)i(to)g(.)772 5340 y(_cdpath=${CDPATH/#:/.:})p
 eop end
-%%Page: 154 160
-TeXDict begin 154 159 bop 150 -116 a Fu(Chapter)30 b(8:)41
-b(Command)29 b(Line)i(Editing)2062 b(154)772 299 y Ft
+%%Page: 155 161
+TeXDict begin 155 160 bop 150 -116 a Fu(Chapter)30 b(8:)41
+b(Command)29 b(Line)i(Editing)2062 b(155)772 299 y Ft
 (_cdpath=${_cdpath//::/:.)o(:})772 408 y(_cdpath=${_cdpath/\045:/:.})
 772 518 y(for)47 b(i)g(in)g(${_cdpath//:/$'\\n'};)c(do)963
 628 y(if)k([[)g($i)g(-ef)g(.)h(]];)f(then)f(_skipdot=true;)e(fi)963
@@ -19314,8 +19386,8 @@ b(older)h(v)m(ersion)h(of)f(the)g(bash)p 1532 5161 V
 40 w(completion)h(pac)m(k)-5 b(age)57 b(is)e(distributed)f(with)h(bash)
 f(in)h(the)150 5270 y Ft(examples/complete)26 b Fu(sub)s(directory)-8
 b(.)p eop end
-%%Page: 155 161
-TeXDict begin 155 160 bop 3614 -116 a Fu(155)150 299
+%%Page: 156 162
+TeXDict begin 156 161 bop 3614 -116 a Fu(156)150 299
 y Fp(9)80 b(Using)53 b(History)g(In)l(teractiv)l(ely)150
 554 y Fu(This)42 b(c)m(hapter)h(describ)s(es)f(ho)m(w)g(to)h(use)g(the)
 f Fm(gnu)h Fu(History)g(Library)e(in)m(teractiv)m(ely)-8
@@ -19327,7 +19399,7 @@ Fm(gnu)f Fu(Readline)h(Library)f(Man)m(ual.)150 1025
 y Fs(9.1)68 b(Bash)45 b(History)h(F)-11 b(acilities)150
 1184 y Fu(When)44 b(the)g Ft(-o)30 b(history)42 b Fu(option)i(to)h(the)
 f Ft(set)f Fu(builtin)h(is)g(enabled)g(\(see)g(Section)h(4.3.1)h([The)e
-(Set)150 1294 y(Builtin],)32 b(page)g(67\),)h(the)e(shell)h(pro)m
+(Set)150 1294 y(Builtin],)32 b(page)g(68\),)h(the)e(shell)h(pro)m
 (vides)f(access)h(to)g(the)f Fr(command)g(history)p Fu(,)h(the)f(list)h
 (of)f(commands)150 1404 y(previously)h(t)m(yp)s(ed.)47
 b(The)33 b(v)-5 b(alue)33 b(of)f(the)h Ft(HISTSIZE)e
@@ -19354,7 +19426,7 @@ h Ft($HISTSIZE)c Fu(lines)150 2422 y(are)35 b(copied)g(from)g(the)g
 (history)f(list)i(to)f(the)g(\014le)g(named)f(b)m(y)h
 Ft($HISTFILE)p Fu(.)51 b(If)35 b(the)g Ft(histappend)d
 Fu(shell)150 2532 y(option)26 b(is)g(set)g(\(see)h(Section)f(4.2)h
-([Bash)f(Builtins],)h(page)g(56\),)h(the)e(lines)g(are)g(app)s(ended)e
+([Bash)f(Builtins],)h(page)g(57\),)h(the)e(lines)g(are)g(app)s(ended)e
 (to)i(the)g(history)150 2641 y(\014le,)36 b(otherwise)f(the)g(history)f
 (\014le)h(is)f(o)m(v)m(erwritten.)55 b(If)34 b Ft(HISTFILE)e
 Fu(is)j(unset,)g(or)g(if)f(the)h(history)f(\014le)h(is)150
@@ -19383,7 +19455,7 @@ Fu(builtin)i(ma)m(y)h(b)s(e)e(used)g(to)i(displa)m(y)g(or)f(mo)s(dify)f
 (commands)g(are)g(a)m(v)-5 b(ailable)33 b(in)e(eac)m(h)150
 3911 y(editing)45 b(mo)s(de)g(that)g(pro)m(vide)g(access)h(to)f(the)g
 (history)f(list)i(\(see)f(Section)h(8.4.2)g([Commands)e(F)-8
-b(or)150 4020 y(History],)31 b(page)h(137\).)275 4162
+b(or)150 4020 y(History],)31 b(page)h(138\).)275 4162
 y(The)47 b(shell)i(allo)m(ws)h(con)m(trol)f(o)m(v)m(er)h(whic)m(h)e
 (commands)g(are)h(sa)m(v)m(ed)g(on)f(the)h(history)f(list.)95
 b(The)150 4272 y Ft(HISTCONTROL)25 b Fu(and)j Ft(HISTIGNORE)e
@@ -19400,14 +19472,14 @@ b Ft(lithist)e Fu(shell)i(option)h(causes)g(the)f(shell)g(to)150
 (newlines)h(instead)g(of)g(semicolons.)68 b(The)39 b
 Ft(shopt)e Fu(builtin)i(is)150 4820 y(used)30 b(to)i(set)g(these)g
 (options.)43 b(See)32 b(Section)g(4.3.2)h([The)e(Shopt)f(Builtin],)j
-(page)f(71,)g(for)f(a)h(description)150 4929 y(of)f Ft(shopt)p
+(page)f(72,)g(for)f(a)h(description)150 4929 y(of)f Ft(shopt)p
 Fu(.)150 5181 y Fs(9.2)68 b(Bash)45 b(History)h(Builtins)150
 5340 y Fu(Bash)31 b(pro)m(vides)f(t)m(w)m(o)i(builtin)e(commands)g
 (whic)m(h)g(manipulate)g(the)h(history)f(list)h(and)f(history)g
 (\014le.)p eop end
-%%Page: 156 162
-TeXDict begin 156 161 bop 150 -116 a Fu(Chapter)30 b(9:)41
-b(Using)30 b(History)h(In)m(teractiv)m(ely)1925 b(156)150
+%%Page: 157 163
+TeXDict begin 157 162 bop 150 -116 a Fu(Chapter)30 b(9:)41
+b(Using)30 b(History)h(In)m(teractiv)m(ely)1925 b(157)150
 299 y Ft(fc)870 430 y(fc)47 b([-e)g Fj(ename)p Ft(])f([-lnr])g([)p
 Fj(first)p Ft(])g([)p Fj(last)p Ft(])870 540 y(fc)h(-s)g([)p
 Fj(pat)p Ft(=)p Fj(rep)p Ft(])f([)p Fj(command)p Ft(])630
@@ -19458,7 +19530,7 @@ Fu(,)h(so)h(that)h(t)m(yping)f(`)p Ft(r)f(cc)p Fu(')630
 3061 y(runs)35 b(the)h(last)h(command)f(b)s(eginning)g(with)g
 Ft(cc)f Fu(and)h(t)m(yping)g(`)p Ft(r)p Fu(')h(re-executes)h(the)e
 (last)630 3170 y(command)30 b(\(see)h(Section)h(6.6)f([Aliases],)h
-(page)g(101\).)150 3324 y Ft(history)870 3455 y(history)46
+(page)g(102\).)150 3324 y Ft(history)870 3455 y(history)46
 b([)p Fj(n)p Ft(])870 3565 y(history)g(-c)870 3674 y(history)g(-d)h
 Fj(offset)870 3784 y Ft(history)f(-d)h Fj(start)p Ft(-)p
 Fj(end)870 3893 y Ft(history)f([-anrw])g([)p Fj(filename)p
@@ -19485,9 +19557,9 @@ Fr(o\013set)p Fu(.)59 b(If)36 b Fr(o\013set)j Fu(is)d(p)s(ositiv)m(e,)j
 (it)1110 5340 y(should)32 b(b)s(e)h(sp)s(eci\014ed)f(as)i(it)g(app)s
 (ears)e(when)g(the)i(history)f(is)g(displa)m(y)m(ed.)50
 b(If)p eop end
-%%Page: 157 163
-TeXDict begin 157 162 bop 150 -116 a Fu(Chapter)30 b(9:)41
-b(Using)30 b(History)h(In)m(teractiv)m(ely)1925 b(157)1110
+%%Page: 158 164
+TeXDict begin 158 163 bop 150 -116 a Fu(Chapter)30 b(9:)41
+b(Using)30 b(History)h(In)m(teractiv)m(ely)1925 b(158)1110
 299 y Fr(o\013set)26 b Fu(is)d(negativ)m(e,)k(it)c(is)g(in)m(terpreted)
 h(as)f(relativ)m(e)i(to)f(one)f(greater)h(than)f(the)1110
 408 y(last)36 b(history)f(p)s(osition,)h(so)f(negativ)m(e)i(indices)e
@@ -19563,9 +19635,9 @@ Fr(mo)s(di\014ers)150 5340 y Fu(are)33 b(a)m(v)-5 b(ailable)36
 b(to)d(manipulate)h(the)f(selected)h(w)m(ords.)48 b(The)32
 b(line)i(is)f(brok)m(en)f(in)m(to)i(w)m(ords)f(in)f(the)i(same)p
 eop end
-%%Page: 158 164
-TeXDict begin 158 163 bop 150 -116 a Fu(Chapter)30 b(9:)41
-b(Using)30 b(History)h(In)m(teractiv)m(ely)1925 b(158)150
+%%Page: 159 165
+TeXDict begin 159 164 bop 150 -116 a Fu(Chapter)30 b(9:)41
+b(Using)30 b(History)h(In)m(teractiv)m(ely)1925 b(159)150
 299 y(fashion)23 b(that)g(Bash)g(do)s(es,)h(so)f(that)h(sev)m(eral)g(w)
 m(ords)e(surrounded)e(b)m(y)j(quotes)g(are)g(considered)g(one)g(w)m
 (ord.)150 408 y(History)37 b(expansions)g(are)g(in)m(tro)s(duced)f(b)m
@@ -19590,7 +19662,7 @@ h(escap)s(e)g(the)g(history)f(expansion)150 1448 y(c)m(haracter,)e(but)
 b(the)h(closing)g(double)f(quote)h(in)f(a)h(double-quoted)g(string.)275
 1695 y(Sev)m(eral)48 b(shell)g(options)h(settable)g(with)e(the)h
 Ft(shopt)f Fu(builtin)g(\(see)i(Section)f(4.3.2)i([The)e(Shopt)150
-1804 y(Builtin],)24 b(page)e(71\))h(ma)m(y)e(b)s(e)g(used)g(to)h
+1804 y(Builtin],)24 b(page)e(72\))h(ma)m(y)e(b)s(e)g(used)g(to)h
 (tailor)g(the)g(b)s(eha)m(vior)f(of)h(history)f(expansion.)37
 b(If)21 b(the)h Ft(histverify)150 1914 y Fu(shell)35
 b(option)f(is)h(enabled,)g(and)f(Readline)h(is)f(b)s(eing)g(used,)h
@@ -19616,7 +19688,7 @@ y(to)36 b(add)f(commands)g(to)h(the)g(end)f(of)g(the)h(history)f(list)i
 (expansion)g(mec)m(h-)150 2927 y(anism)h(with)g(the)g
 Ft(histchars)d Fu(v)-5 b(ariable,)38 b(as)d(explained)g(ab)s(o)m(v)m(e)
 i(\(see)f(Section)f(5.2)i([Bash)e(V)-8 b(ariables],)150
-3036 y(page)32 b(79\).)44 b(The)31 b(shell)g(uses)g(the)g(history)g
+3036 y(page)32 b(80\).)44 b(The)31 b(shell)g(uses)g(the)g(history)g
 (commen)m(t)i(c)m(haracter)f(to)g(mark)f(history)g(timestamps)h(when)
 150 3146 y(writing)e(the)h(history)f(\014le.)150 3347
 y Fk(9.3.1)63 b(Ev)m(en)m(t)39 b(Designators)150 3494
@@ -19648,9 +19720,9 @@ b Fu(is)32 b(follo)m(w)m(ed)630 5230 y(immediately)f(b)m(y)e(a)h
 (string)f(from)g(the)h(most)g(recen)m(t)630 5340 y(searc)m(h)h(is)f
 (used;)g(it)h(is)g(an)f(error)g(if)g(there)h(is)f(no)g(previous)g
 (searc)m(h)h(string.)p eop end
-%%Page: 159 165
-TeXDict begin 159 164 bop 150 -116 a Fu(Chapter)30 b(9:)41
-b(Using)30 b(History)h(In)m(teractiv)m(ely)1925 b(159)150
+%%Page: 160 166
+TeXDict begin 160 165 bop 150 -116 a Fu(Chapter)30 b(9:)41
+b(Using)30 b(History)h(In)m(teractiv)m(ely)1925 b(160)150
 299 y Ft(^)p Fj(string1)p Ft(^)p Fj(string2)p Ft(^)630
 408 y Fu(Quic)m(k)32 b(Substitution.)44 b(Rep)s(eat)32
 b(the)g(last)h(command,)f(replacing)g Fr(string1)40 b
@@ -19715,9 +19787,9 @@ Ft(:)p Fu('.)50 b(These)33 b(mo)s(dify)-8 b(,)33 b(or)h(edit,)g(the)g
 (ev)m(en)m(t.)150 5340 y Ft(h)432 b Fu(Remo)m(v)m(e)32
 b(a)f(trailing)g(pathname)g(comp)s(onen)m(t,)g(lea)m(ving)h(only)e(the)
 h(head.)p eop end
-%%Page: 160 166
-TeXDict begin 160 165 bop 150 -116 a Fu(Chapter)30 b(9:)41
-b(Using)30 b(History)h(In)m(teractiv)m(ely)1925 b(160)150
+%%Page: 161 167
+TeXDict begin 161 166 bop 150 -116 a Fu(Chapter)30 b(9:)41
+b(Using)30 b(History)h(In)m(teractiv)m(ely)1925 b(161)150
 299 y Ft(t)432 b Fu(Remo)m(v)m(e)32 b(all)f(leading)h(pathname)e(comp)s
 (onen)m(ts,)h(lea)m(ving)h(the)e(tail.)150 458 y Ft(r)432
 b Fu(Remo)m(v)m(e)32 b(a)f(trailing)g(su\016x)f(of)g(the)h(form)f(`)p
@@ -19759,8 +19831,8 @@ Ft(/)p Fu(,)c(or)j(with)h(`)p Ft(&)p Fu('.)150 2939 y
 Ft(G)432 b Fu(Apply)30 b(the)g(follo)m(wing)i(`)p Ft(s)p
 Fu(')f(or)f(`)p Ft(&)p Fu(')h(mo)s(di\014er)e(once)i(to)g(eac)m(h)h(w)m
 (ord)e(in)g(the)g(ev)m(en)m(t.)p eop end
-%%Page: 161 167
-TeXDict begin 161 166 bop 3614 -116 a Fu(161)150 299
+%%Page: 162 168
+TeXDict begin 162 167 bop 3614 -116 a Fu(162)150 299
 y Fp(10)80 b(Installing)52 b(Bash)150 539 y Fu(This)31
 b(c)m(hapter)h(pro)m(vides)g(basic)g(instructions)f(for)g(installing)i
 (Bash)f(on)f(the)h(v)-5 b(arious)31 b(supp)s(orted)f(plat-)150
@@ -19802,7 +19874,7 @@ Fu(')i(migh)m(t)i(b)s(e)f(required.)47 b(More)33 b(information)g(ab)s
 (out)f(con-)330 3071 y(trolling)c(the)g(lo)s(cations)g(where)f
 Ft(bash)f Fu(and)h(other)g(\014les)g(are)h(installed)g(is)f(b)s(elo)m
 (w)g(\(see)h(Section)g(10.4)330 3181 y([Installation)k(Names],)g(page)f
-(163\).)275 3343 y(The)20 b Ft(configure)f Fu(shell)i(script)g
+(164\).)275 3343 y(The)20 b Ft(configure)f Fu(shell)i(script)g
 (attempts)h(to)g(guess)f(correct)i(v)-5 b(alues)21 b(for)g(v)-5
 b(arious)21 b(system-dep)s(enden)m(t)150 3453 y(v)-5
 b(ariables)38 b(used)f(during)f(compilation.)64 b(It)37
@@ -19839,13 +19911,13 @@ Ft(/usr/local/build)c Fu(from)k(the)h(source)150 5204
 y(co)s(de)31 b(in)f Ft(/usr/local/src/bash-4.4)o Fu(:)390
 5340 y Ft(mkdir)46 b(/usr/local/build/bash-4.4)p eop
 end
-%%Page: 162 168
-TeXDict begin 162 167 bop 150 -116 a Fu(Chapter)30 b(10:)41
-b(Installing)31 b(Bash)2356 b(162)390 299 y Ft(cd)47
+%%Page: 163 169
+TeXDict begin 163 168 bop 150 -116 a Fu(Chapter)30 b(10:)41
+b(Installing)31 b(Bash)2356 b(163)390 299 y Ft(cd)47
 b(/usr/local/build/bash-4.4)390 408 y(bash)g(/usr/local/src/bash-4.4)o
 (/con)o(fig)o(ure)390 518 y(make)275 652 y Fu(See)27
 b(Section)h(10.3)g([Compiling)g(F)-8 b(or)27 b(Multiple)h(Arc)m
-(hitectures],)i(page)d(162,)j(for)c(more)i(information)150
+(hitectures],)i(page)d(163,)j(for)c(more)i(information)150
 762 y(ab)s(out)i(building)g(in)g(a)g(directory)h(separate)h(from)e(the)
 g(source.)275 896 y(If)53 b(y)m(ou)h(need)f(to)i(do)e(un)m(usual)g
 (things)g(to)i(compile)g(Bash,)k(please)c(try)e(to)i(\014gure)e(out)h
@@ -19896,7 +19968,7 @@ Ft(make)p Fu(.)55 b Ft(cd)35 b Fu(to)i(the)e(directory)h(where)150
 3817 y(y)m(ou)k(w)m(an)m(t)h(the)g(ob)5 b(ject)41 b(\014les)f(and)f
 (executables)j(to)e(go)h(and)f(run)e(the)j Ft(configure)c
 Fu(script)j(from)g(the)150 3926 y(source)32 b(directory)h(\(see)g
-(Section)f(10.1)i([Basic)f(Installation],)i(page)e(161\).)47
+(Section)f(10.1)i([Basic)f(Installation],)i(page)e(162\).)47
 b(Y)-8 b(ou)32 b(ma)m(y)h(need)f(to)g(supply)150 4036
 y(the)43 b Ft(--srcdir=PATH)c Fu(argumen)m(t)k(to)h(tell)g
 Ft(configure)c Fu(where)i(the)h(source)g(\014les)g(are.)78
@@ -19925,9 +19997,9 @@ Fu(:)390 5096 y Ft(bash)47 b(/usr/gnu/src/bash-2.0/s)o(uppo)o(rt/)o
 h(one)150 5340 y(arc)m(hitecture)32 b(b)s(efore)e(y)m(ou)h(can)f
 (create)i(build)e(directories)h(for)f(other)h(arc)m(hitectures.)p
 eop end
-%%Page: 163 169
-TeXDict begin 163 168 bop 150 -116 a Fu(Chapter)30 b(10:)41
-b(Installing)31 b(Bash)2356 b(163)150 299 y Fs(10.4)68
+%%Page: 164 170
+TeXDict begin 164 169 bop 150 -116 a Fu(Chapter)30 b(10:)41
+b(Installing)31 b(Bash)2356 b(164)150 299 y Fs(10.4)68
 b(Installation)47 b(Names)150 458 y Fu(By)36 b(default,)g(`)p
 Ft(make)30 b(install)p Fu(')j(will)j(install)g(in)m(to)g
 Ft(/usr/local/bin)p Fu(,)d Ft(/usr/local/man)p Fu(,)g(etc.;)39
@@ -20014,9 +20086,9 @@ Ft(CONFIG_SITE)c Fu(en)m(vironmen)m(t)k(v)-5 b(ari-)150
 b(A)40 b(w)m(arning:)58 b(the)40 b(Bash)g Ft(configure)c
 Fu(lo)s(oks)k(for)f(a)h(site)150 5340 y(script,)31 b(but)e(not)i(all)g
 Ft(configure)d Fu(scripts)i(do.)p eop end
-%%Page: 164 170
-TeXDict begin 164 169 bop 150 -116 a Fu(Chapter)30 b(10:)41
-b(Installing)31 b(Bash)2356 b(164)150 299 y Fs(10.7)68
+%%Page: 165 171
+TeXDict begin 165 170 bop 150 -116 a Fu(Chapter)30 b(10:)41
+b(Installing)31 b(Bash)2356 b(165)150 299 y Fs(10.7)68
 b(Op)t(eration)46 b(Con)l(trols)150 458 y Ft(configure)28
 b Fu(recognizes)k(the)e(follo)m(wing)i(options)f(to)g(con)m(trol)h(ho)m
 (w)e(it)h(op)s(erates.)150 606 y Ft(--cache-file=)p Fj(file)630
@@ -20080,9 +20152,9 @@ g(a)h(lo)s(cally-installed)i(v)m(ersion)e(of)g(Readline)g(rather)630
 5340 y(than)f(the)h(v)m(ersion)g(in)f Ft(lib/readline)p
 Fu(.)36 b(This)25 b(w)m(orks)g(only)h(with)f(Readline)h(5.0)h(and)e
 (later)p eop end
-%%Page: 165 171
-TeXDict begin 165 170 bop 150 -116 a Fu(Chapter)30 b(10:)41
-b(Installing)31 b(Bash)2356 b(165)630 299 y(v)m(ersions.)46
+%%Page: 166 172
+TeXDict begin 166 171 bop 150 -116 a Fu(Chapter)30 b(10:)41
+b(Installing)31 b(Bash)2356 b(166)630 299 y(v)m(ersions.)46
 b(If)32 b Fr(PREFIX)41 b Fu(is)32 b Ft(yes)f Fu(or)i(not)f(supplied,)f
 Ft(configure)f Fu(uses)i(the)g(v)-5 b(alues)32 b(of)h(the)630
 408 y(mak)m(e)28 b(v)-5 b(ariables)29 b Ft(includedir)24
@@ -20148,14 +20220,14 @@ m(vide)150 4946 y(the)e(necessary)f(supp)s(ort.)150 5121
 y Ft(--enable-alias)630 5230 y Fu(Allo)m(w)41 b(alias)g(expansion)f
 (and)f(include)g(the)h Ft(alias)f Fu(and)g Ft(unalias)e
 Fu(builtins)j(\(see)g(Sec-)630 5340 y(tion)31 b(6.6)g([Aliases],)i
-(page)e(101\).)p eop end
-%%Page: 166 172
-TeXDict begin 166 171 bop 150 -116 a Fu(Chapter)30 b(10:)41
-b(Installing)31 b(Bash)2356 b(166)150 299 y Ft
+(page)e(102\).)p eop end
+%%Page: 167 173
+TeXDict begin 167 172 bop 150 -116 a Fu(Chapter)30 b(10:)41
+b(Installing)31 b(Bash)2356 b(167)150 299 y Ft
 (--enable-alt-array-imple)o(ment)o(atio)o(n)630 408 y
 Fu(This)32 b(builds)g(Bash)h(using)f(an)g(alternate)j(implemen)m
 (tation)f(of)f(arra)m(ys)h(\(see)f(Section)h(6.7)630
-518 y([Arra)m(ys],)43 b(page)d(101\))h(that)f(pro)m(vides)g(faster)g
+518 y([Arra)m(ys],)43 b(page)d(102\))h(that)f(pro)m(vides)g(faster)g
 (access)h(at)f(the)g(exp)s(ense)f(of)h(using)f(more)630
 628 y(memory)30 b(\(sometimes)i(man)m(y)e(times)h(more,)g(dep)s(ending)
 e(on)h(ho)m(w)h(sparse)f(an)g(arra)m(y)h(is\).)150 774
@@ -20166,11 +20238,11 @@ Ft(for)f Fu(command)h(that)h(b)s(eha)m(v)m(es)f(lik)m(e)i(the)630
 (3.2.5.1)i([Lo)s(oping)d(Constructs],)h(page)g(11\).)150
 1139 y Ft(--enable-array-variables)630 1249 y Fu(Include)h(supp)s(ort)g
 (for)h(one-dimensional)h(arra)m(y)f(shell)h(v)-5 b(ariables)33
-b(\(see)h(Section)g(6.7)h([Ar-)630 1358 y(ra)m(ys],)c(page)g(101\).)150
+b(\(see)h(Section)g(6.7)h([Ar-)630 1358 y(ra)m(ys],)c(page)g(102\).)150
 1504 y Ft(--enable-bang-history)630 1614 y Fu(Include)36
 b(supp)s(ort)f(for)h Ft(csh)p Fu(-lik)m(e)h(history)g(substitution)f
 (\(see)h(Section)g(9.3)h([History)f(In-)630 1724 y(teraction],)c(page)e
-(157\).)150 1870 y Ft(--enable-brace-expansion)630 1979
+(158\).)150 1870 y Ft(--enable-brace-expansion)630 1979
 y Fu(Include)40 b Ft(csh)p Fu(-lik)m(e)h(brace)f(expansion)g(\()h
 Ft(b{a,b}c)d Fq(7!)i Ft(bac)30 b(bbc)39 b Fu(\).)71 b(See)40
 b(Section)h(3.5.1)630 2089 y([Brace)32 b(Expansion],)e(page)h(24,)h
@@ -20213,24 +20285,24 @@ Fu(on)i(\014le)630 5230 y(descriptor)g Fr(N)p Fu(,)i(supply)c(this)j
 (option)g(to)g(enable)f(a)h(w)m(ork)-5 b(around.)39 b(This)27
 b(has)g(implications)630 5340 y(for)j(conditional)i(commands)e(that)h
 (test)g(\014le)g(attributes.)p eop end
-%%Page: 167 173
-TeXDict begin 167 172 bop 150 -116 a Fu(Chapter)30 b(10:)41
-b(Installing)31 b(Bash)2356 b(167)150 299 y Ft
+%%Page: 168 174
+TeXDict begin 168 173 bop 150 -116 a Fu(Chapter)30 b(10:)41
+b(Installing)31 b(Bash)2356 b(168)150 299 y Ft
 (--enable-direxpand-defau)o(lt)630 408 y Fu(Cause)53
 b(the)g Ft(direxpand)d Fu(shell)j(option)h(\(see)g(Section)f(4.3.2)i
-([The)e(Shopt)f(Builtin],)630 518 y(page)29 b(71\))g(to)f(b)s(e)f
+([The)e(Shopt)f(Builtin],)630 518 y(page)29 b(72\))g(to)f(b)s(e)f
 (enabled)h(b)m(y)g(default)g(when)e(the)i(shell)g(starts.)41
 b(It)27 b(is)h(normally)g(disabled)630 628 y(b)m(y)i(default.)150
 807 y Ft(--enable-directory-stack)630 917 y Fu(Include)j(supp)s(ort)g
 (for)h(a)g Ft(csh)p Fu(-lik)m(e)h(directory)f(stac)m(k)i(and)d(the)i
 Ft(pushd)p Fu(,)f Ft(popd)p Fu(,)g(and)f Ft(dirs)630
 1026 y Fu(builtins)d(\(see)h(Section)g(6.8)h([The)e(Directory)i(Stac)m
-(k],)g(page)f(103\).)150 1205 y Ft(--enable-disabled-builti)o(ns)630
+(k],)g(page)f(104\).)150 1205 y Ft(--enable-disabled-builti)o(ns)630
 1315 y Fu(Allo)m(w)40 b(builtin)e(commands)g(to)h(b)s(e)f(in)m(v)m(ok)m
 (ed)i(via)f(`)p Ft(builtin)29 b(xxx)p Fu(')37 b(ev)m(en)j(after)f
 Ft(xxx)e Fu(has)630 1425 y(b)s(een)31 b(disabled)g(using)g(`)p
 Ft(enable)d(-n)i(xxx)p Fu('.)43 b(See)32 b(Section)g(4.2)h([Bash)e
-(Builtins],)i(page)f(56,)630 1534 y(for)e(details)i(of)e(the)h
+(Builtins],)i(page)f(57,)630 1534 y(for)e(details)i(of)e(the)h
 Ft(builtin)d Fu(and)i Ft(enable)e Fu(builtin)i(commands.)150
 1714 y Ft(--enable-dparen-arithmet)o(ic)630 1823 y Fu(Include)42
 b(supp)s(ort)f(for)h(the)h Ft(\(\(...)o(\)\))f Fu(command)g(\(see)i
@@ -20239,10 +20311,10 @@ b(page)h(12\).)150 2112 y Ft(--enable-extended-glob)630
 2222 y Fu(Include)40 b(supp)s(ort)e(for)i(the)h(extended)f(pattern)h
 (matc)m(hing)g(features)g(describ)s(ed)e(ab)s(o)m(v)m(e)630
 2331 y(under)29 b(Section)i(3.5.8.1)i([P)m(attern)e(Matc)m(hing],)i
-(page)e(36.)150 2511 y Ft(--enable-extended-glob-d)o(efau)o(lt)630
+(page)e(37.)150 2511 y Ft(--enable-extended-glob-d)o(efau)o(lt)630
 2620 y Fu(Set)37 b(the)f(default)h(v)-5 b(alue)37 b(of)f(the)h
 Ft(extglob)d Fu(shell)j(option)g(describ)s(ed)e(ab)s(o)m(v)m(e)j(under)
-c(Sec-)630 2730 y(tion)d(4.3.2)h([The)e(Shopt)g(Builtin],)h(page)g(71,)
+c(Sec-)630 2730 y(tion)d(4.3.2)h([The)e(Shopt)g(Builtin],)h(page)g(72,)
 h(to)f(b)s(e)f(enabled.)150 2909 y Ft(--enable-function-import)630
 3019 y Fu(Include)23 b(supp)s(ort)g(for)g(imp)s(orting)h(function)g
 (de\014nitions)f(exp)s(orted)h(b)m(y)g(another)g(instance)630
@@ -20252,57 +20324,57 @@ b(This)30 b(option)h(is)f(enabled)h(b)m(y)f(default.)150
 3417 y Fu(Set)f(the)f(default)h(v)-5 b(alue)29 b(of)f(the)h
 Ft(globasciiranges)24 b Fu(shell)29 b(option)g(describ)s(ed)e(ab)s(o)m
 (v)m(e)j(un-)630 3527 y(der)c(Section)i(4.3.2)h([The)d(Shopt)g
-(Builtin],)j(page)f(71,)g(to)g(b)s(e)e(enabled.)40 b(This)26
+(Builtin],)j(page)f(72,)g(to)g(b)s(e)e(enabled.)40 b(This)26
 b(con)m(trols)i(the)630 3636 y(b)s(eha)m(vior)40 b(of)f(c)m(haracter)i
 (ranges)f(when)f(used)f(in)i(pattern)f(matc)m(hing)i(brac)m(k)m(et)g
 (expres-)630 3746 y(sions.)150 3925 y Ft(--enable-help-builtin)630
 4035 y Fu(Include)24 b(the)h Ft(help)f Fu(builtin,)h(whic)m(h)g(displa)
 m(ys)f(help)h(on)f(shell)h(builtins)f(and)h(v)-5 b(ariables)25
 b(\(see)630 4144 y(Section)31 b(4.2)h([Bash)e(Builtins],)i(page)f
-(56\).)150 4324 y Ft(--enable-history)630 4433 y Fu(Include)e(command)g
+(57\).)150 4324 y Ft(--enable-history)630 4433 y Fu(Include)e(command)g
 (history)h(and)f(the)h Ft(fc)f Fu(and)g Ft(history)e
 Fu(builtin)j(commands)f(\(see)h(Sec-)630 4543 y(tion)h(9.1)g([Bash)g
-(History)g(F)-8 b(acilities],)34 b(page)d(155\).)150
+(History)g(F)-8 b(acilities],)34 b(page)d(156\).)150
 4722 y Ft(--enable-job-control)630 4832 y Fu(This)h(enables)i(the)f
 (job)g(con)m(trol)i(features)e(\(see)i(Chapter)d(7)i([Job)f(Con)m
-(trol],)i(page)f(116\),)630 4941 y(if)c(the)h(op)s(erating)g(system)f
+(trol],)i(page)f(117\),)630 4941 y(if)c(the)h(op)s(erating)g(system)f
 (supp)s(orts)f(them.)150 5121 y Ft(--enable-multibyte)630
 5230 y Fu(This)g(enables)i(supp)s(ort)d(for)i(m)m(ultib)m(yte)h(c)m
 (haracters)g(if)f(the)g(op)s(erating)h(system)f(pro)m(vides)630
 5340 y(the)h(necessary)f(supp)s(ort.)p eop end
-%%Page: 168 174
-TeXDict begin 168 173 bop 150 -116 a Fu(Chapter)30 b(10:)41
-b(Installing)31 b(Bash)2356 b(168)150 299 y Ft
+%%Page: 169 175
+TeXDict begin 169 174 bop 150 -116 a Fu(Chapter)30 b(10:)41
+b(Installing)31 b(Bash)2356 b(169)150 299 y Ft
 (--enable-net-redirection)o(s)630 408 y Fu(This)23 b(enables)h(the)g
 (sp)s(ecial)h(handling)e(of)h(\014lenames)g(of)g(the)g(form)g
 Ft(/dev/tcp/)p Fj(host)p Ft(/)p Fj(port)630 518 y Fu(and)31
 b Ft(/dev/udp/)p Fj(host)p Ft(/)p Fj(port)26 b Fu(when)31
 b(used)g(in)g(redirections)h(\(see)g(Section)g(3.6)h([Redirec-)630
-628 y(tions],)e(page)g(38\).)150 787 y Ft(--enable-process-substit)o
+628 y(tions],)e(page)g(39\).)150 787 y Ft(--enable-process-substit)o
 (utio)o(n)630 897 y Fu(This)49 b(enables)i(pro)s(cess)f(substitution)g
 (\(see)h(Section)g(3.5.6)h([Pro)s(cess)e(Substitution],)630
 1006 y(page)31 b(35\))h(if)e(the)h(op)s(erating)f(system)h(pro)m(vides)
 f(the)h(necessary)g(supp)s(ort.)150 1166 y Ft(--enable-progcomp)630
 1275 y Fu(Enable)d(the)g(programmable)g(completion)i(facilities)g
 (\(see)f(Section)g(8.6)g([Programmable)630 1385 y(Completion],)i(page)h
-(146\).)42 b(If)30 b(Readline)h(is)f(not)h(enabled,)f(this)h(option)g
+(147\).)42 b(If)30 b(Readline)h(is)f(not)h(enabled,)f(this)h(option)g
 (has)f(no)g(e\013ect.)150 1544 y Ft(--enable-prompt-string-d)o(ecod)o
 (ing)630 1654 y Fu(T)-8 b(urn)30 b(on)i(the)f(in)m(terpretation)i(of)f
 (a)g(n)m(um)m(b)s(er)e(of)i(bac)m(kslash-escap)s(ed)g(c)m(haracters)i
 (in)d(the)630 1763 y Ft($PS0)p Fu(,)36 b Ft($PS1)p Fu(,)g
 Ft($PS2)p Fu(,)h(and)e Ft($PS4)f Fu(prompt)h(strings.)57
 b(See)36 b(Section)h(6.9)g([Con)m(trolling)g(the)630
-1873 y(Prompt],)30 b(page)h(105,)h(for)f(a)f(complete)i(list)f(of)g
+1873 y(Prompt],)30 b(page)h(106,)h(for)f(a)f(complete)i(list)f(of)g
 (prompt)e(string)i(escap)s(e)f(sequences.)150 2032 y
 Ft(--enable-readline)630 2142 y Fu(Include)e(supp)s(ort)f(for)h
 (command-line)h(editing)g(and)f(history)g(with)g(the)h(Bash)g(v)m
 (ersion)g(of)630 2252 y(the)i(Readline)g(library)f(\(see)h(Chapter)f(8)
-g([Command)g(Line)g(Editing],)h(page)g(120\).)150 2411
+g([Command)g(Line)g(Editing],)h(page)g(121\).)150 2411
 y Ft(--enable-restricted)630 2521 y Fu(Include)41 b(supp)s(ort)f(for)i
 (a)g Fr(restricted)g(shell)p Fu(.)75 b(If)42 b(this)f(is)h(enabled,)j
 (Bash,)g(when)c(called)630 2630 y(as)f Ft(rbash)p Fu(,)h(en)m(ters)f(a)
 g(restricted)h(mo)s(de.)68 b(See)40 b(Section)h(6.10)g([The)f
-(Restricted)h(Shell],)630 2740 y(page)31 b(107,)h(for)e(a)h
+(Restricted)h(Shell],)630 2740 y(page)31 b(108,)h(for)e(a)h
 (description)f(of)h(restricted)g(mo)s(de.)150 2899 y
 Ft(--enable-select)630 3009 y Fu(Include)25 b(the)h Ft(select)f
 Fu(comp)s(ound)f(command,)j(whic)m(h)e(allo)m(ws)j(the)e(generation)h
@@ -20318,7 +20390,7 @@ g(v)m(ery)h(long)g(string)f(literals.)150 3766 y Ft
 (--enable-strict-posix-de)o(faul)o(t)630 3875 y Fu(Mak)m(e)c(Bash)f
 Fm(posix)p Fu(-conforman)m(t)g(b)m(y)f(default)h(\(see)g(Section)h
 (6.11)g([Bash)f(POSIX)e(Mo)s(de],)630 3985 y(page)31
-b(107\).)150 4144 y Ft(--enable-translatable-st)o(ring)o(s)630
+b(108\).)150 4144 y Ft(--enable-translatable-st)o(ring)o(s)630
 4254 y Fu(Enable)h(supp)s(ort)e(for)i Ft($")p Fj(string)p
 Ft(")e Fu(translatable)j(strings)f(\(see)h(Section)g(3.1.2.5)h([Lo)s
 (cale)630 4364 y(T)-8 b(ranslation],)32 b(page)f(7\).)150
@@ -20333,12 +20405,12 @@ b(alue)24 b(of)g(the)g Ft(xpg_echo)e Fu(shell)h(option)630
 Ft(echo)f Fu(b)s(eha)m(v)m(e)i(more)g(lik)m(e)h(the)e(v)m(ersion)h(sp)s
 (eci\014ed)f(in)g(the)630 5230 y(Single)35 b(Unix)f(Sp)s
 (eci\014cation,)i(v)m(ersion)e(3.)53 b(See)35 b(Section)g(4.2)g([Bash)g
-(Builtins],)h(page)f(56,)630 5340 y(for)30 b(a)h(description)f(of)h
+(Builtins],)h(page)f(57,)630 5340 y(for)30 b(a)h(description)f(of)h
 (the)f(escap)s(e)h(sequences)g(that)g Ft(echo)e Fu(recognizes.)p
 eop end
-%%Page: 169 175
-TeXDict begin 169 174 bop 150 -116 a Fu(Chapter)30 b(10:)41
-b(Installing)31 b(Bash)2356 b(169)275 299 y(The)28 b(\014le)i
+%%Page: 170 176
+TeXDict begin 170 175 bop 150 -116 a Fu(Chapter)30 b(10:)41
+b(Installing)31 b(Bash)2356 b(170)275 299 y(The)28 b(\014le)i
 Ft(config-top.h)c Fu(con)m(tains)31 b(C)d(Prepro)s(cessor)h(`)p
 Ft(#define)p Fu(')f(statemen)m(ts)j(for)f(options)f(whic)m(h)150
 408 y(are)35 b(not)g(settable)i(from)d Ft(configure)p
@@ -20347,8 +20419,8 @@ m(hanged;)k(b)s(ew)m(are)d(of)150 518 y(the)h(consequences)g(if)f(y)m
 (ou)h(do.)55 b(Read)36 b(the)g(commen)m(ts)g(asso)s(ciated)h(with)e
 (eac)m(h)i(de\014nition)e(for)g(more)150 628 y(information)c(ab)s(out)f
 (its)h(e\013ect.)p eop end
-%%Page: 170 176
-TeXDict begin 170 175 bop 3614 -116 a Fu(170)150 299
+%%Page: 171 177
+TeXDict begin 171 176 bop 3614 -116 a Fu(171)150 299
 y Fp(App)t(endix)52 b(A)81 b(Rep)t(orting)53 b(Bugs)150
 533 y Fu(Please)33 b(rep)s(ort)e(all)h(bugs)f(y)m(ou)h(\014nd)e(in)i
 (Bash.)44 b(But)32 b(\014rst,)g(y)m(ou)g(should)e(mak)m(e)j(sure)e
@@ -20382,8 +20454,8 @@ s(duce)e(it.)150 2401 y Ft(bashbug)d Fu(inserts)i(the)h(\014rst)f
 (vides)f(for)g(\014ling)h(a)150 2511 y(bug)h(rep)s(ort.)275
 2645 y(Please)h(send)f(all)h(rep)s(orts)f(concerning)g(this)h(man)m
 (ual)f(to)h Ft(bug-bash@gnu.org)p Fu(.)p eop end
-%%Page: 171 177
-TeXDict begin 171 176 bop 3614 -116 a Fu(171)150 141
+%%Page: 172 178
+TeXDict begin 172 177 bop 3614 -116 a Fu(172)150 141
 y Fp(App)t(endix)58 b(B)81 b(Ma)9 b(jor)54 b(Di\013erences)d(F)-13
 b(rom)54 b(The)g(Bourne)1088 299 y(Shell)150 530 y Fu(Bash)26
 b(implemen)m(ts)h(essen)m(tially)g(the)g(same)f(grammar,)h(parameter)f
@@ -20404,20 +20476,20 @@ Ft(sh)f Fu(included)g(in)h(SVR4.2)h(\(the)f(last)h(v)m(ersion)f(of)g
 Fm(posix)p Fu(-conforman)m(t,)g(ev)m(en)g(where)f(the)g
 Fm(posix)g Fu(sp)s(eci\014cation)h(di\013ers)f(from)g(traditional)330
 1431 y Ft(sh)e Fu(b)s(eha)m(vior)g(\(see)i(Section)f(6.11)h([Bash)e
-(POSIX)g(Mo)s(de],)h(page)g(107\).)225 1565 y Fq(\017)60
+(POSIX)g(Mo)s(de],)h(page)g(108\).)225 1565 y Fq(\017)60
 b Fu(Bash)26 b(has)g(m)m(ulti-c)m(haracter)i(in)m(v)m(o)s(cation)g
 (options)f(\(see)f(Section)h(6.1)g([In)m(v)m(oking)g(Bash],)h(page)e
-(92\).)225 1699 y Fq(\017)60 b Fu(Bash)40 b(has)f(command-line)h
+(93\).)225 1699 y Fq(\017)60 b Fu(Bash)40 b(has)f(command-line)h
 (editing)g(\(see)h(Chapter)e(8)h([Command)f(Line)g(Editing],)k(page)d
-(120\))330 1809 y(and)30 b(the)g Ft(bind)g Fu(builtin.)225
+(121\))330 1809 y(and)30 b(the)g Ft(bind)g Fu(builtin.)225
 1943 y Fq(\017)60 b Fu(Bash)46 b(pro)m(vides)g(a)g(programmable)g(w)m
 (ord)f(completion)i(mec)m(hanism)f(\(see)h(Section)g(8.6)g([Pro-)330
-2052 y(grammable)39 b(Completion],)i(page)e(146\),)i(and)d(builtin)g
+2052 y(grammable)39 b(Completion],)i(page)e(147\),)i(and)d(builtin)g
 (commands)f Ft(complete)p Fu(,)h Ft(compgen)p Fu(,)h(and)330
 2162 y Ft(compopt)p Fu(,)29 b(to)i(manipulate)g(it.)225
 2296 y Fq(\017)60 b Fu(Bash)26 b(has)f(command)h(history)f(\(see)i
 (Section)f(9.1)h([Bash)f(History)h(F)-8 b(acilities],)30
-b(page)c(155\))i(and)d(the)330 2405 y Ft(history)k Fu(and)h
+b(page)c(156\))i(and)d(the)330 2405 y Ft(history)k Fu(and)h
 Ft(fc)g Fu(builtins)g(to)h(manipulate)g(it.)42 b(The)30
 b(Bash)h(history)g(list)g(main)m(tains)g(timestamp)330
 2515 y(information)g(and)e(uses)h(the)h(v)-5 b(alue)31
@@ -20425,9 +20497,9 @@ b(of)f(the)h Ft(HISTTIMEFORMAT)26 b Fu(v)-5 b(ariable)32
 b(to)f(displa)m(y)f(it.)225 2649 y Fq(\017)60 b Fu(Bash)48
 b(implemen)m(ts)h Ft(csh)p Fu(-lik)m(e)g(history)f(expansion)g(\(see)h
 (Section)g(9.3)h([History)f(In)m(teraction],)330 2759
-y(page)31 b(157\).)225 2892 y Fq(\017)60 b Fu(Bash)29
+y(page)31 b(158\).)225 2892 y Fq(\017)60 b Fu(Bash)29
 b(has)h(one-dimensional)g(arra)m(y)f(v)-5 b(ariables)30
-b(\(see)h(Section)f(6.7)g([Arra)m(ys],)h(page)f(101\),)h(and)e(the)330
+b(\(see)h(Section)f(6.7)g([Arra)m(ys],)h(page)f(102\),)h(and)e(the)330
 3002 y(appropriate)39 b(v)-5 b(ariable)40 b(expansions)f(and)g
 (assignmen)m(t)h(syn)m(tax)g(to)g(use)f(them.)67 b(Sev)m(eral)40
 b(of)g(the)330 3112 y(Bash)32 b(builtins)f(tak)m(e)j(options)e(to)h
@@ -20469,10 +20541,10 @@ b Fu(Bash)31 b(includes)f(the)g Ft(select)f Fu(comp)s(ound)g(command,)i
 (whic)m(h)f(allo)m(ws)i(the)f(generation)g(of)g(simple)330
 5340 y(men)m(us)f(\(see)h(Section)g(3.2.5.2)i([Conditional)e
 (Constructs],)g(page)g(12\).)p eop end
-%%Page: 172 178
-TeXDict begin 172 177 bop 150 -116 a Fu(App)s(endix)29
+%%Page: 173 179
+TeXDict begin 173 178 bop 150 -116 a Fu(App)s(endix)29
 b(B:)i(Ma)5 b(jor)31 b(Di\013erences)g(F)-8 b(rom)31
-b(The)f(Bourne)g(Shell)1258 b(172)225 299 y Fq(\017)60
+b(The)f(Bourne)g(Shell)1258 b(173)225 299 y Fq(\017)60
 b Fu(Bash)40 b(includes)g(the)g Ft([[)g Fu(comp)s(ound)e(command,)43
 b(whic)m(h)c(mak)m(es)i(conditional)h(testing)f(part)f(of)330
 408 y(the)f(shell)g(grammar)g(\(see)h(Section)f(3.2.5.2)j([Conditional)
@@ -20486,15 +20558,15 @@ b Fu(Bash)31 b(pro)m(vides)f(optional)h(case-insensitiv)m(e)i(matc)m
 (page)h(25\).)225 1034 y Fq(\017)60 b Fu(Bash)24 b(implemen)m(ts)h
 (command)e(aliases)j(and)d(the)i Ft(alias)d Fu(and)i
 Ft(unalias)e Fu(builtins)h(\(see)i(Section)g(6.6)330
-1143 y([Aliases],)32 b(page)f(101\).)225 1279 y Fq(\017)60
+1143 y([Aliases],)32 b(page)f(102\).)225 1279 y Fq(\017)60
 b Fu(Bash)32 b(pro)m(vides)g(shell)g(arithmetic,)i(the)e
 Ft(\(\()g Fu(comp)s(ound)e(command)i(\(see)h(Section)f(3.2.5.2)j([Con-)
 330 1388 y(ditional)d(Constructs],)e(page)i(12\),)g(and)e(arithmetic)i
 (expansion)e(\(see)i(Section)f(6.5)h([Shell)f(Arith-)330
-1498 y(metic],)h(page)f(99\).)225 1633 y Fq(\017)60 b
-Fu(V)-8 b(ariables)31 b(presen)m(t)e(in)g(the)g(shell's)h(initial)g(en)
-m(vironmen)m(t)g(are)g(automatically)i(exp)s(orted)d(to)h(c)m(hild)330
-1743 y(pro)s(cesses.)38 b(The)23 b(Bourne)g(shell)g(do)s(es)g(not)g
+1498 y(metic],)h(page)f(100\).)225 1633 y Fq(\017)60
+b Fu(V)-8 b(ariables)31 b(presen)m(t)e(in)g(the)g(shell's)h(initial)g
+(en)m(vironmen)m(t)g(are)g(automatically)i(exp)s(orted)d(to)h(c)m(hild)
+330 1743 y(pro)s(cesses.)38 b(The)23 b(Bourne)g(shell)g(do)s(es)g(not)g
 (normally)g(do)g(this)g(unless)g(the)g(v)-5 b(ariables)24
 b(are)f(explicitly)330 1852 y(mark)m(ed)30 b(using)g(the)h
 Ft(export)e Fu(command.)225 1988 y Fq(\017)60 b Fu(Bash)26
@@ -20553,16 +20625,16 @@ Fu(,)f(and)330 4985 y Ft(HOSTNAME)p Fu(\),)55 b(and)c(the)g(instance)h
 (of)g(Bash)f(that)h(is)f(running)f(\()p Ft(BASH)p Fu(,)56
 b Ft(BASH_VERSION)p Fu(,)e(and)330 5095 y Ft(BASH_VERSINFO)p
 Fu(\).)37 b(See)31 b(Section)g(5.2)h([Bash)e(V)-8 b(ariables],)33
-b(page)e(79,)g(for)f(details.)225 5230 y Fq(\017)60 b
+b(page)e(80,)g(for)f(details.)225 5230 y Fq(\017)60 b
 Fu(The)44 b Ft(IFS)f Fu(v)-5 b(ariable)45 b(is)f(used)f(to)i(split)f
 (only)g(the)g(results)g(of)h(expansion,)i(not)d(all)h(w)m(ords)f(\(see)
 330 5340 y(Section)29 b(3.5.7)h([W)-8 b(ord)29 b(Splitting],)h(page)f
-(35\).)41 b(This)28 b(closes)h(a)g(longstanding)g(shell)f(securit)m(y)h
+(36\).)41 b(This)28 b(closes)h(a)g(longstanding)g(shell)f(securit)m(y)h
 (hole.)p eop end
-%%Page: 173 179
-TeXDict begin 173 178 bop 150 -116 a Fu(App)s(endix)29
+%%Page: 174 180
+TeXDict begin 174 179 bop 150 -116 a Fu(App)s(endix)29
 b(B:)i(Ma)5 b(jor)31 b(Di\013erences)g(F)-8 b(rom)31
-b(The)f(Bourne)g(Shell)1258 b(173)225 299 y Fq(\017)60
+b(The)f(Bourne)g(Shell)1258 b(174)225 299 y Fq(\017)60
 b Fu(The)36 b(\014lename)h(expansion)f(brac)m(k)m(et)i(expression)f(co)
 s(de)f(uses)g(`)p Ft(!)p Fu(')h(and)f(`)p Ft(^)p Fu(')h(to)g(negate)h
 (the)f(set)g(of)330 408 y(c)m(haracters)32 b(b)s(et)m(w)m(een)f(the)f
@@ -20575,7 +20647,7 @@ b(alence)39 b(classes,)j(and)c(collating)j(sym)m(b)s(ols)d(\(see)i
 b(page)h(36\).)225 883 y Fq(\017)60 b Fu(Bash)35 b(implemen)m(ts)g
 (extended)g(pattern)g(matc)m(hing)h(features)f(when)f(the)h
 Ft(extglob)d Fu(shell)j(option)330 993 y(is)30 b(enabled)h(\(see)g
-(Section)g(3.5.8.1)i([P)m(attern)f(Matc)m(hing],)g(page)f(36\).)225
+(Section)g(3.5.8.1)i([P)m(attern)f(Matc)m(hing],)g(page)f(37\).)225
 1121 y Fq(\017)60 b Fu(It)22 b(is)g(p)s(ossible)g(to)h(ha)m(v)m(e)g(a)f
 (v)-5 b(ariable)23 b(and)f(a)g(function)g(with)g(the)g(same)g(name;)j
 Ft(sh)d Fu(do)s(es)g(not)g(separate)330 1230 y(the)31
@@ -20584,24 +20656,24 @@ Fu(Bash)30 b(functions)e(are)i(p)s(ermitted)f(to)h(ha)m(v)m(e)h(lo)s
 (cal)g(v)-5 b(ariables)30 b(using)f(the)g Ft(local)f
 Fu(builtin,)i(and)e(th)m(us)330 1468 y(useful)i(recursiv)m(e)g
 (functions)g(ma)m(y)h(b)s(e)f(written)g(\(see)i(Section)f(4.2)g([Bash)g
-(Builtins],)g(page)h(56\).)225 1596 y Fq(\017)60 b Fu(V)-8
+(Builtins],)g(page)h(57\).)225 1596 y Fq(\017)60 b Fu(V)-8
 b(ariable)25 b(assignmen)m(ts)g(preceding)e(commands)h(a\013ect)h(only)
 f(that)g(command,)h(ev)m(en)f(builtins)g(and)330 1705
 y(functions)36 b(\(see)h(Section)g(3.7.4)h([En)m(vironmen)m(t],)h(page)
-e(44\).)60 b(In)35 b Ft(sh)p Fu(,)j(all)f(v)-5 b(ariable)37
+e(45\).)60 b(In)35 b Ft(sh)p Fu(,)j(all)f(v)-5 b(ariable)37
 b(assignmen)m(ts)330 1815 y(preceding)30 b(commands)g(are)h(global)h
 (unless)d(the)i(command)f(is)h(executed)g(from)f(the)g(\014le)h
 (system.)225 1943 y Fq(\017)60 b Fu(Bash)44 b(p)s(erforms)e(\014lename)
 i(expansion)f(on)h(\014lenames)g(sp)s(eci\014ed)f(as)h(op)s(erands)e
 (to)j(input)e(and)330 2052 y(output)30 b(redirection)h(op)s(erators)g
-(\(see)g(Section)g(3.6)h([Redirections],)g(page)f(38\).)225
+(\(see)g(Section)g(3.6)h([Redirections],)g(page)f(39\).)225
 2180 y Fq(\017)60 b Fu(Bash)29 b(con)m(tains)h(the)f(`)p
 Ft(<>)p Fu(')f(redirection)i(op)s(erator,)f(allo)m(wing)i(a)e(\014le)g
 (to)g(b)s(e)f(op)s(ened)g(for)h(b)s(oth)f(read-)330 2290
 y(ing)35 b(and)f(writing,)i(and)e(the)h(`)p Ft(&>)p Fu(')g(redirection)
 g(op)s(erator,)h(for)f(directing)g(standard)f(output)h(and)330
 2399 y(standard)30 b(error)g(to)h(the)f(same)h(\014le)f(\(see)i
-(Section)f(3.6)g([Redirections],)h(page)g(38\).)225 2527
+(Section)f(3.6)g([Redirections],)h(page)g(39\).)225 2527
 y Fq(\017)60 b Fu(Bash)21 b(includes)f(the)h(`)p Ft(<<<)p
 Fu(')g(redirection)g(op)s(erator,)i(allo)m(wing)g(a)e(string)f(to)i(b)s
 (e)e(used)g(as)h(the)g(standard)330 2637 y(input)29 b(to)j(a)e
@@ -20612,20 +20684,20 @@ Fu(')e(redirection)j(op)s(erators,)g(whic)m(h)f(mo)m(v)m(e)330
 3002 y Fq(\017)60 b Fu(Bash)25 b(treats)h(a)f(n)m(um)m(b)s(er)e(of)i
 (\014lenames)g(sp)s(ecially)g(when)f(they)h(are)g(used)f(in)g
 (redirection)i(op)s(erators)330 3112 y(\(see)31 b(Section)h(3.6)f
-([Redirections],)h(page)f(38\).)225 3240 y Fq(\017)60
+([Redirections],)h(page)f(39\).)225 3240 y Fq(\017)60
 b Fu(Bash)33 b(can)f(op)s(en)g(net)m(w)m(ork)i(connections)f(to)h
 (arbitrary)e(mac)m(hines)h(and)f(services)h(with)f(the)h(redi-)330
 3349 y(rection)e(op)s(erators)g(\(see)g(Section)g(3.6)h
-([Redirections],)g(page)f(38\).)225 3477 y Fq(\017)60
+([Redirections],)g(page)f(39\).)225 3477 y Fq(\017)60
 b Fu(The)29 b Ft(noclobber)e Fu(option)j(is)g(a)m(v)-5
 b(ailable)32 b(to)e(a)m(v)m(oid)h(o)m(v)m(erwriting)g(existing)g
 (\014les)e(with)h(output)f(redi-)330 3587 y(rection)39
-b(\(see)h(Section)f(4.3.1)h([The)e(Set)h(Builtin],)i(page)e(67\).)66
+b(\(see)h(Section)f(4.3.1)h([The)e(Set)h(Builtin],)i(page)e(68\).)66
 b(The)38 b(`)p Ft(>|)p Fu(')h(redirection)g(op)s(erator)330
 3696 y(ma)m(y)31 b(b)s(e)f(used)f(to)i(o)m(v)m(erride)h
 Ft(noclobber)p Fu(.)225 3824 y Fq(\017)60 b Fu(The)34
 b(Bash)g Ft(cd)g Fu(and)f Ft(pwd)g Fu(builtins)h(\(see)h(Section)g(4.1)
-g([Bourne)g(Shell)f(Builtins],)h(page)g(48\))h(eac)m(h)330
+g([Bourne)g(Shell)f(Builtins],)h(page)g(49\))h(eac)m(h)330
 3934 y(tak)m(e)c Ft(-L)e Fu(and)f Ft(-P)h Fu(options)h(to)g(switc)m(h)g
 (b)s(et)m(w)m(een)g(logical)i(and)c(ph)m(ysical)i(mo)s(des.)225
 4061 y Fq(\017)60 b Fu(Bash)25 b(allo)m(ws)h(a)g(function)e(to)i(o)m(v)
@@ -20633,28 +20705,28 @@ m(erride)g(a)g(builtin)e(with)h(the)g(same)g(name,)i(and)d(pro)m(vides)
 h(access)h(to)330 4171 y(that)34 b(builtin's)f(functionalit)m(y)h
 (within)f(the)g(function)g(via)h(the)f Ft(builtin)f Fu(and)g
 Ft(command)g Fu(builtins)330 4281 y(\(see)f(Section)h(4.2)f([Bash)g
-(Builtins],)g(page)g(56\).)225 4408 y Fq(\017)60 b Fu(The)35
+(Builtins],)g(page)g(57\).)225 4408 y Fq(\017)60 b Fu(The)35
 b Ft(command)e Fu(builtin)i(allo)m(ws)i(selectiv)m(e)h(disabling)e(of)f
 (functions)g(when)g(command)g(lo)s(okup)g(is)330 4518
 y(p)s(erformed)29 b(\(see)i(Section)g(4.2)h([Bash)f(Builtins],)g(page)g
-(56\).)225 4646 y Fq(\017)60 b Fu(Individual)23 b(builtins)g(ma)m(y)i
+(57\).)225 4646 y Fq(\017)60 b Fu(Individual)23 b(builtins)g(ma)m(y)i
 (b)s(e)e(enabled)h(or)g(disabled)g(using)f(the)h Ft(enable)f
 Fu(builtin)g(\(see)i(Section)g(4.2)330 4756 y([Bash)31
-b(Builtins],)g(page)g(56\).)225 4883 y Fq(\017)60 b Fu(The)26
+b(Builtins],)g(page)g(57\).)225 4883 y Fq(\017)60 b Fu(The)26
 b(Bash)h Ft(exec)e Fu(builtin)h(tak)m(es)i(additional)f(options)g(that)
 g(allo)m(w)h(users)d(to)j(con)m(trol)g(the)e(con)m(ten)m(ts)330
 4993 y(of)35 b(the)f(en)m(vironmen)m(t)h(passed)f(to)h(the)g(executed)g
 (command,)h(and)d(what)i(the)f(zeroth)h(argumen)m(t)330
 5103 y(to)c(the)g(command)f(is)g(to)h(b)s(e)f(\(see)h(Section)h(4.1)f
-([Bourne)f(Shell)h(Builtins],)g(page)g(48\).)225 5230
+([Bourne)f(Shell)h(Builtins],)g(page)g(49\).)225 5230
 y Fq(\017)60 b Fu(Shell)29 b(functions)g(ma)m(y)h(b)s(e)f(exp)s(orted)g
 (to)h(c)m(hildren)f(via)h(the)g(en)m(vironmen)m(t)g(using)f
 Ft(export)f(-f)h Fu(\(see)330 5340 y(Section)i(3.3)h([Shell)e(F)-8
 b(unctions],)32 b(page)f(19\).)p eop end
-%%Page: 174 180
-TeXDict begin 174 179 bop 150 -116 a Fu(App)s(endix)29
+%%Page: 175 181
+TeXDict begin 175 180 bop 150 -116 a Fu(App)s(endix)29
 b(B:)i(Ma)5 b(jor)31 b(Di\013erences)g(F)-8 b(rom)31
-b(The)f(Bourne)g(Shell)1258 b(174)225 299 y Fq(\017)60
+b(The)f(Bourne)g(Shell)1258 b(175)225 299 y Fq(\017)60
 b Fu(The)40 b(Bash)h Ft(export)p Fu(,)h Ft(readonly)p
 Fu(,)f(and)g Ft(declare)d Fu(builtins)j(can)g(tak)m(e)h(a)f
 Ft(-f)f Fu(option)i(to)f(act)h(on)330 408 y(shell)30
@@ -20670,15 +20742,15 @@ Fu(builtin)g(allo)m(ws)j(a)e(name)g(to)g(b)s(e)f(asso)s(ciated)j(with)d
 (an)h(arbitrary)f(\014lename,)330 874 y(ev)m(en)30 b(when)e(that)h
 (\014lename)g(cannot)h(b)s(e)e(found)g(b)m(y)h(searc)m(hing)g(the)g
 Ft($PATH)p Fu(,)g(using)f(`)p Ft(hash)h(-p)p Fu(')g(\(see)330
-984 y(Section)i(4.1)h([Bourne)e(Shell)g(Builtins],)h(page)h(48\).)225
+984 y(Section)i(4.1)h([Bourne)e(Shell)g(Builtins],)h(page)h(49\).)225
 1121 y Fq(\017)60 b Fu(Bash)27 b(includes)f(a)i Ft(help)d
 Fu(builtin)i(for)f(quic)m(k)h(reference)h(to)f(shell)g(facilities)i
-(\(see)f(Section)g(4.2)g([Bash)330 1230 y(Builtins],)j(page)g(56\).)225
+(\(see)f(Section)g(4.2)g([Bash)330 1230 y(Builtins],)j(page)g(57\).)225
 1367 y Fq(\017)60 b Fu(The)42 b Ft(printf)g Fu(builtin)g(is)h(a)m(v)-5
 b(ailable)45 b(to)f(displa)m(y)f(formatted)g(output)g(\(see)h(Section)g
-(4.2)g([Bash)330 1477 y(Builtins],)31 b(page)g(56\).)225
+(4.2)g([Bash)330 1477 y(Builtins],)31 b(page)g(57\).)225
 1614 y Fq(\017)60 b Fu(The)26 b(Bash)h Ft(read)f Fu(builtin)g(\(see)i
-(Section)g(4.2)g([Bash)f(Builtins],)h(page)g(56\))g(will)f(read)g(a)g
+(Section)g(4.2)g([Bash)f(Builtins],)h(page)g(57\))g(will)f(read)g(a)g
 (line)g(ending)330 1724 y(in)i(`)p Ft(\\)p Fu(')h(with)f(the)g
 Ft(-r)g Fu(option,)i(and)d(will)i(use)f(the)h Ft(REPLY)e
 Fu(v)-5 b(ariable)30 b(as)g(a)f(default)h(if)f(no)h(non-option)330
@@ -20701,23 +20773,23 @@ Fu(option)h(will)330 2491 y(read)30 b(un)m(til)h(a)g(particular)f(c)m
 b Fu(The)33 b Ft(return)e Fu(builtin)i(ma)m(y)g(b)s(e)g(used)f(to)i(ab)
 s(ort)f(execution)h(of)f(scripts)g(executed)h(with)f(the)g
 Ft(.)g Fu(or)330 2737 y Ft(source)c Fu(builtins)g(\(see)j(Section)f
-(4.1)g([Bourne)g(Shell)f(Builtins],)h(page)g(48\).)225
+(4.1)g([Bourne)g(Shell)f(Builtins],)h(page)g(49\).)225
 2874 y Fq(\017)60 b Fu(Bash)43 b(includes)g(the)g Ft(shopt)f
 Fu(builtin,)k(for)d(\014ner)f(con)m(trol)j(of)e(shell)h(optional)g
 (capabilities)h(\(see)330 2984 y(Section)c(4.3.2)g([The)f(Shopt)f
-(Builtin],)k(page)d(71\),)k(and)39 b(allo)m(ws)i(these)f(options)h(to)f
+(Builtin],)k(page)d(72\),)k(and)39 b(allo)m(ws)i(these)f(options)h(to)f
 (b)s(e)f(set)i(and)330 3093 y(unset)30 b(at)h(shell)g(in)m(v)m(o)s
 (cation)h(\(see)f(Section)h(6.1)f([In)m(v)m(oking)g(Bash],)g(page)h
-(92\).)225 3230 y Fq(\017)60 b Fu(Bash)45 b(has)f(m)m(uc)m(h)g(more)h
+(93\).)225 3230 y Fq(\017)60 b Fu(Bash)45 b(has)f(m)m(uc)m(h)g(more)h
 (optional)h(b)s(eha)m(vior)e(con)m(trollable)j(with)e(the)f
 Ft(set)g Fu(builtin)g(\(see)h(Sec-)330 3340 y(tion)31
-b(4.3.1)h([The)e(Set)h(Builtin],)g(page)g(67\).)225 3477
+b(4.3.1)h([The)e(Set)h(Builtin],)g(page)g(68\).)225 3477
 y Fq(\017)60 b Fu(The)31 b(`)p Ft(-x)p Fu(')g(\()p Ft(xtrace)p
 Fu(\))g(option)h(displa)m(ys)f(commands)h(other)f(than)h(simple)f
 (commands)g(when)g(p)s(er-)330 3587 y(forming)f(an)g(execution)i(trace)
-f(\(see)h(Section)f(4.3.1)h([The)e(Set)h(Builtin],)g(page)g(67\).)225
+f(\(see)h(Section)f(4.3.1)h([The)e(Set)h(Builtin],)g(page)g(68\).)225
 3724 y Fq(\017)60 b Fu(The)28 b Ft(test)g Fu(builtin)h(\(see)h(Section)
-f(4.1)h([Bourne)f(Shell)g(Builtins],)h(page)g(48\))g(is)f(sligh)m(tly)h
+f(4.1)h([Bourne)f(Shell)g(Builtins],)h(page)g(49\))g(is)f(sligh)m(tly)h
 (di\013eren)m(t,)330 3833 y(as)23 b(it)g(implemen)m(ts)f(the)h
 Fm(posix)f Fu(algorithm,)j(whic)m(h)d(sp)s(eci\014es)g(the)h(b)s(eha)m
 (vior)f(based)g(on)h(the)f(n)m(um)m(b)s(er)330 3943 y(of)31
@@ -20728,7 +20800,7 @@ b(\(a)f(shell)f(function)h(or)f(a)h(script)f(executed)h(with)f(the)h
 Ft(.)f Fu(or)g Ft(source)f Fu(builtins\).)39 b(This)26
 b(supp)s(orts)330 4299 y(the)31 b(Bash)f(debugger.)225
 4436 y Fq(\017)60 b Fu(The)42 b Ft(trap)f Fu(builtin)h(\(see)i(Section)
-f(4.1)h([Bourne)e(Shell)g(Builtins],)47 b(page)c(48\))h(allo)m(ws)g(a)e
+f(4.1)h([Bourne)e(Shell)g(Builtins],)47 b(page)c(49\))h(allo)m(ws)g(a)e
 Ft(DEBUG)330 4545 y Fu(pseudo-signal)c(sp)s(eci\014cation,)i(similar)e
 (to)g Ft(EXIT)p Fu(.)62 b(Commands)36 b(sp)s(eci\014ed)h(with)g(a)h
 Ft(DEBUG)e Fu(trap)330 4655 y(are)k(executed)g(b)s(efore)f(ev)m(ery)h
@@ -20744,20 +20816,20 @@ Ft(functrace)d Fu(option)j(has)f(b)s(een)g(enabled)g(using)330
 Ft(extdebug)f Fu(shell)i(option)g(has)f(additional)h(e\013ects)h(on)f
 (the)g Ft(DEBUG)e Fu(trap.)330 5230 y(The)21 b Ft(trap)e
 Fu(builtin)i(\(see)h(Section)g(4.1)g([Bourne)f(Shell)g(Builtins],)j
-(page)e(48\))g(allo)m(ws)g(an)f Ft(ERR)f Fu(pseudo-)330
+(page)e(49\))g(allo)m(ws)g(an)f Ft(ERR)f Fu(pseudo-)330
 5340 y(signal)30 b(sp)s(eci\014cation,)h(similar)f(to)g
 Ft(EXIT)f Fu(and)g Ft(DEBUG)p Fu(.)39 b(Commands)28 b(sp)s(eci\014ed)h
 (with)g(an)g Ft(ERR)g Fu(trap)p eop end
-%%Page: 175 181
-TeXDict begin 175 180 bop 150 -116 a Fu(App)s(endix)29
+%%Page: 176 182
+TeXDict begin 176 181 bop 150 -116 a Fu(App)s(endix)29
 b(B:)i(Ma)5 b(jor)31 b(Di\013erences)g(F)-8 b(rom)31
-b(The)f(Bourne)g(Shell)1258 b(175)330 299 y(are)40 b(executed)g(after)g
+b(The)f(Bourne)g(Shell)1258 b(176)330 299 y(are)40 b(executed)g(after)g
 (a)f(simple)h(command)f(fails,)j(with)d(a)h(few)f(exceptions.)68
 b(The)39 b Ft(ERR)g Fu(trap)g(is)330 408 y(not)g(inherited)f(b)m(y)h
 (shell)g(functions)f(unless)g(the)h Ft(-o)29 b(errtrace)37
 b Fu(option)i(to)g(the)g Ft(set)f Fu(builtin)g(is)330
 518 y(enabled.)330 650 y(The)g Ft(trap)g Fu(builtin)h(\(see)g(Section)h
-(4.1)g([Bourne)f(Shell)g(Builtins],)i(page)f(48\))g(allo)m(ws)g(a)g
+(4.1)g([Bourne)f(Shell)g(Builtins],)i(page)f(49\))g(allo)m(ws)g(a)g
 Ft(RETURN)330 759 y Fu(pseudo-signal)f(sp)s(eci\014cation,)k(similar)d
 (to)g Ft(EXIT)e Fu(and)g Ft(DEBUG)p Fu(.)66 b(Commands)38
 b(sp)s(eci\014ed)h(with)g(a)330 869 y Ft(RETURN)g Fu(trap)i(are)g
@@ -20772,30 +20844,30 @@ Ft(shopt)f Fu(builtin.)225 1329 y Fq(\017)60 b Fu(The)30
 b(Bash)g Ft(type)f Fu(builtin)h(is)g(more)g(extensiv)m(e)i(and)d(giv)m
 (es)j(more)e(information)h(ab)s(out)f(the)g(names)330
 1439 y(it)h(\014nds)e(\(see)i(Section)g(4.2)h([Bash)e(Builtins],)i
-(page)f(56\).)225 1570 y Fq(\017)60 b Fu(The)27 b(Bash)h
+(page)f(57\).)225 1570 y Fq(\017)60 b Fu(The)27 b(Bash)h
 Ft(umask)e Fu(builtin)h(p)s(ermits)g(a)h Ft(-p)f Fu(option)h(to)h
 (cause)f(the)g(output)f(to)h(b)s(e)f(displa)m(y)m(ed)h(in)g(the)330
 1680 y(form)i(of)h(a)g Ft(umask)f Fu(command)g(that)i(ma)m(y)f(b)s(e)f
 (reused)g(as)h(input)f(\(see)i(Section)f(4.1)h([Bourne)f(Shell)330
-1789 y(Builtins],)g(page)g(48\).)225 1921 y Fq(\017)60
+1789 y(Builtins],)g(page)g(49\).)225 1921 y Fq(\017)60
 b Fu(Bash)34 b(implemen)m(ts)h(a)g Ft(csh)p Fu(-lik)m(e)g(directory)f
 (stac)m(k,)j(and)d(pro)m(vides)g(the)g Ft(pushd)p Fu(,)g
 Ft(popd)p Fu(,)g(and)g Ft(dirs)330 2030 y Fu(builtins)d(to)i
 (manipulate)f(it)h(\(see)g(Section)f(6.8)h([The)f(Directory)h(Stac)m
-(k],)h(page)f(103\).)47 b(Bash)32 b(also)330 2140 y(mak)m(es)f(the)g
+(k],)h(page)f(104\).)47 b(Bash)32 b(also)330 2140 y(mak)m(es)f(the)g
 (directory)g(stac)m(k)g(visible)g(as)g(the)f(v)-5 b(alue)31
 b(of)g(the)f Ft(DIRSTACK)f Fu(shell)h(v)-5 b(ariable.)225
 2272 y Fq(\017)60 b Fu(Bash)28 b(in)m(terprets)h(sp)s(ecial)g(bac)m
 (kslash-escap)s(ed)g(c)m(haracters)g(in)f(the)h(prompt)e(strings)h
 (when)f(in)m(ter-)330 2381 y(activ)m(e)33 b(\(see)e(Section)g(6.9)h
-([Con)m(trolling)f(the)g(Prompt],)f(page)h(105\).)225
+([Con)m(trolling)f(the)g(Prompt],)f(page)h(106\).)225
 2513 y Fq(\017)60 b Fu(The)46 b(Bash)h(restricted)g(mo)s(de)f(is)h
 (more)f(useful)g(\(see)h(Section)h(6.10)g([The)e(Restricted)i(Shell],)
-330 2622 y(page)31 b(107\);)h(the)f(SVR4.2)g(shell)g(restricted)g(mo)s
+330 2622 y(page)31 b(108\);)h(the)f(SVR4.2)g(shell)g(restricted)g(mo)s
 (de)f(is)g(to)s(o)h(limited.)225 2754 y Fq(\017)60 b
 Fu(The)30 b Ft(disown)f Fu(builtin)h(can)h(remo)m(v)m(e)h(a)f(job)f
 (from)g(the)h(in)m(ternal)g(shell)g(job)f(table)i(\(see)f(Section)h
-(7.2)330 2863 y([Job)e(Con)m(trol)h(Builtins],)g(page)g(117\))g(or)g
+(7.2)330 2863 y([Job)e(Con)m(trol)h(Builtins],)g(page)g(118\))g(or)g
 (suppress)d(the)i(sending)g(of)g Ft(SIGHUP)e Fu(to)j(a)g(job)f(when)f
 (the)330 2973 y(shell)i(exits)g(as)f(the)h(result)f(of)h(a)f
 Ft(SIGHUP)p Fu(.)225 3104 y Fq(\017)60 b Fu(Bash)31 b(includes)f(a)g(n)
@@ -20812,7 +20884,7 @@ Fq(\017)60 b Fu(The)30 b(SVR4.2)h Ft(sh)f Fu(uses)g(a)g
 Ft(TIMEOUT)f Fu(v)-5 b(ariable)31 b(lik)m(e)h(Bash)e(uses)g
 Ft(TMOUT)p Fu(.)150 3894 y(More)h(features)g(unique)e(to)i(Bash)g(ma)m
 (y)g(b)s(e)f(found)f(in)h(Chapter)f(6)i([Bash)g(F)-8
-b(eatures],)32 b(page)f(92.)150 4128 y Fs(B.1)67 b(Implemen)l(tation)48
+b(eatures],)32 b(page)f(93.)150 4128 y Fs(B.1)67 b(Implemen)l(tation)48
 b(Di\013erences)e(F)-11 b(rom)44 b(The)h(SVR4.2)g(Shell)150
 4288 y Fu(Since)33 b(Bash)h(is)f(a)g(completely)i(new)e(implemen)m
 (tation,)j(it)e(do)s(es)e(not)i(su\013er)e(from)h(man)m(y)g(of)h(the)f
@@ -20833,10 +20905,10 @@ Fu(.)57 b(If)35 b(the)i(shell)f(is)h(started)g(from)e(a)i(pro)s(cess)f
 (with)g Ft(SIGSEGV)e Fu(blo)s(c)m(k)m(ed)k(\(e.g.,)h(b)m(y)d(using)330
 5340 y(the)31 b Ft(system\(\))d Fu(C)i(library)g(function)g(call\),)i
 (it)f(misb)s(eha)m(v)m(es)g(badly)-8 b(.)p eop end
-%%Page: 176 182
-TeXDict begin 176 181 bop 150 -116 a Fu(App)s(endix)29
+%%Page: 177 183
+TeXDict begin 177 182 bop 150 -116 a Fu(App)s(endix)29
 b(B:)i(Ma)5 b(jor)31 b(Di\013erences)g(F)-8 b(rom)31
-b(The)f(Bourne)g(Shell)1258 b(176)225 299 y Fq(\017)60
+b(The)f(Bourne)g(Shell)1258 b(177)225 299 y Fq(\017)60
 b Fu(In)30 b(a)i(questionable)g(attempt)g(at)g(securit)m(y)-8
 b(,)33 b(the)e(SVR4.2)h(shell,)g(when)e(in)m(v)m(ok)m(ed)j(without)e
 (the)h Ft(-p)330 408 y Fu(option,)39 b(will)d(alter)i(its)e(real)h(and)
@@ -20867,8 +20939,8 @@ Fm(posix)330 1738 y Fu(standard.)225 1873 y Fq(\017)60
 b Fu(The)30 b(SVR4.2)h(shell)g(b)s(eha)m(v)m(es)f(di\013eren)m(tly)h
 (when)f(in)m(v)m(ok)m(ed)i(as)e Ft(jsh)g Fu(\(it)h(turns)e(on)h(job)g
 (con)m(trol\).)p eop end
-%%Page: 177 183
-TeXDict begin 177 182 bop 3614 -116 a Fu(177)150 299
+%%Page: 178 184
+TeXDict begin 178 183 bop 3614 -116 a Fu(178)150 299
 y Fp(App)t(endix)52 b(C)81 b(GNU)54 b(F)-13 b(ree)53
 b(Do)t(cumen)l(tation)e(License)1359 502 y Fu(V)-8 b(ersion)31
 b(1.3,)g(3)g(No)m(v)m(em)m(b)s(er)h(2008)390 635 y(Cop)m(yrigh)m(t)842
@@ -20949,10 +21021,10 @@ b(\\In)m(v)-5 b(arian)m(t)27 b(Sections")g(are)f(certain)g(Secondary)g
 5340 y(b)s(eing)e(those)h(of)g(In)m(v)-5 b(arian)m(t)27
 b(Sections,)i(in)d(the)h(notice)h(that)f(sa)m(ys)g(that)g(the)g(Do)s
 (cumen)m(t)g(is)g(released)p eop end
-%%Page: 178 184
-TeXDict begin 178 183 bop 150 -116 a Fu(App)s(endix)29
+%%Page: 179 185
+TeXDict begin 179 184 bop 150 -116 a Fu(App)s(endix)29
 b(C:)h(GNU)h(F)-8 b(ree)31 b(Do)s(cumen)m(tation)i(License)1560
-b(178)330 299 y(under)26 b(this)i(License.)40 b(If)27
+b(179)330 299 y(under)26 b(this)i(License.)40 b(If)27
 b(a)h(section)h(do)s(es)f(not)f(\014t)h(the)g(ab)s(o)m(v)m(e)h
 (de\014nition)e(of)h(Secondary)f(then)h(it)g(is)330 408
 y(not)k(allo)m(w)m(ed)i(to)e(b)s(e)g(designated)g(as)g(In)m(v)-5
@@ -21043,10 +21115,10 @@ b(Disclaimers)f(are)g(considered)e(to)330 4970 y(b)s(e)k(included)g(b)m
 b(Disclaimers)f(ma)m(y)g(ha)m(v)m(e)g(is)f(v)m(oid)g(and)f(has)h(no)330
 5189 y(e\013ect)32 b(on)e(the)h(meaning)f(of)h(this)f(License.)199
 5340 y(2.)61 b(VERBA)-8 b(TIM)31 b(COPYING)p eop end
-%%Page: 179 185
-TeXDict begin 179 184 bop 150 -116 a Fu(App)s(endix)29
+%%Page: 180 186
+TeXDict begin 180 185 bop 150 -116 a Fu(App)s(endix)29
 b(C:)h(GNU)h(F)-8 b(ree)31 b(Do)s(cumen)m(tation)i(License)1560
-b(179)330 299 y(Y)-8 b(ou)39 b(ma)m(y)f(cop)m(y)h(and)e(distribute)h
+b(180)330 299 y(Y)-8 b(ou)39 b(ma)m(y)f(cop)m(y)h(and)e(distribute)h
 (the)g(Do)s(cumen)m(t)h(in)f(an)m(y)g(medium,)h(either)g(commercially)h
 (or)330 408 y(noncommercially)-8 b(,)48 b(pro)m(vided)42
 b(that)h(this)f(License,)47 b(the)42 b(cop)m(yrigh)m(t)i(notices,)j
@@ -21136,10 +21208,10 @@ b(in)f(the)h(Title)h(P)m(age)g(\(and)f(on)f(the)h(co)m(v)m(ers,)i(if)e
 5340 y(Do)s(cumen)m(t,)j(and)d(from)g(those)i(of)f(previous)f(v)m
 (ersions)h(\(whic)m(h)g(should,)g(if)g(there)g(w)m(ere)g(an)m(y)-8
 b(,)p eop end
-%%Page: 180 186
-TeXDict begin 180 185 bop 150 -116 a Fu(App)s(endix)29
+%%Page: 181 187
+TeXDict begin 181 186 bop 150 -116 a Fu(App)s(endix)29
 b(C:)h(GNU)h(F)-8 b(ree)31 b(Do)s(cumen)m(tation)i(License)1560
-b(180)510 299 y(b)s(e)31 b(listed)h(in)f(the)g(History)h(section)g(of)g
+b(181)510 299 y(b)s(e)31 b(listed)h(in)f(the)g(History)h(section)g(of)g
 (the)f(Do)s(cumen)m(t\).)45 b(Y)-8 b(ou)32 b(ma)m(y)g(use)f(the)g(same)
 h(title)h(as)510 408 y(a)e(previous)f(v)m(ersion)g(if)h(the)f(original)
 i(publisher)d(of)h(that)h(v)m(ersion)g(giv)m(es)h(p)s(ermission.)360
@@ -21218,10 +21290,10 @@ b(arran)m(t)m(y)32 b(Disclaimers.)330 5121 y(If)h(the)g(Mo)s(di\014ed)g
 (designate)h(some)e(or)h(all)g(of)f(these)h(sections)h(as)e(in)m(v)-5
 b(arian)m(t.)48 b(T)-8 b(o)33 b(do)f(this,)h(add)f(their)p
 eop end
-%%Page: 181 187
-TeXDict begin 181 186 bop 150 -116 a Fu(App)s(endix)29
+%%Page: 182 188
+TeXDict begin 182 187 bop 150 -116 a Fu(App)s(endix)29
 b(C:)h(GNU)h(F)-8 b(ree)31 b(Do)s(cumen)m(tation)i(License)1560
-b(181)330 299 y(titles)37 b(to)f(the)f(list)h(of)g(In)m(v)-5
+b(182)330 299 y(titles)37 b(to)f(the)f(list)h(of)g(In)m(v)-5
 b(arian)m(t)36 b(Sections)g(in)f(the)h(Mo)s(di\014ed)f(V)-8
 b(ersion's)36 b(license)g(notice.)57 b(These)330 408
 y(titles)32 b(m)m(ust)e(b)s(e)g(distinct)h(from)e(an)m(y)i(other)g
@@ -21306,10 +21378,10 @@ b(ma)m(y)g(extract)h(a)f(single)g(do)s(cumen)m(t)f(from)g(suc)m(h)g(a)h
 5230 y(do)s(cumen)m(t,)d(and)f(follo)m(w)i(this)e(License)h(in)g(all)g
 (other)g(resp)s(ects)f(regarding)h(v)m(erbatim)g(cop)m(ying)h(of)330
 5340 y(that)d(do)s(cumen)m(t.)p eop end
-%%Page: 182 188
-TeXDict begin 182 187 bop 150 -116 a Fu(App)s(endix)29
+%%Page: 183 189
+TeXDict begin 183 188 bop 150 -116 a Fu(App)s(endix)29
 b(C:)h(GNU)h(F)-8 b(ree)31 b(Do)s(cumen)m(tation)i(License)1560
-b(182)199 299 y(7.)61 b(A)m(GGREGA)-8 b(TION)32 b(WITH)e(INDEPENDENT)h
+b(183)199 299 y(7.)61 b(A)m(GGREGA)-8 b(TION)32 b(WITH)e(INDEPENDENT)h
 (W)m(ORKS)330 441 y(A)d(compilation)i(of)e(the)g(Do)s(cumen)m(t)h(or)f
 (its)g(deriv)-5 b(ativ)m(es)30 b(with)d(other)i(separate)g(and)e(indep)
 s(enden)m(t)330 551 y(do)s(cumen)m(ts)33 b(or)g(w)m(orks,)h(in)f(or)h
@@ -21394,10 +21466,10 @@ b(ha)m(v)m(e)h(receiv)m(ed)h(copies)e(or)h(righ)m(ts)f(from)g(y)m(ou)g
 (reinstated,)i(receipt)f(of)f(a)g(cop)m(y)h(of)f(some)h(or)f(all)h(of)f
 (the)330 5340 y(same)31 b(material)h(do)s(es)e(not)g(giv)m(e)i(y)m(ou)f
 (an)m(y)g(righ)m(ts)f(to)i(use)e(it.)p eop end
-%%Page: 183 189
-TeXDict begin 183 188 bop 150 -116 a Fu(App)s(endix)29
+%%Page: 184 190
+TeXDict begin 184 189 bop 150 -116 a Fu(App)s(endix)29
 b(C:)h(GNU)h(F)-8 b(ree)31 b(Do)s(cumen)m(tation)i(License)1560
-b(183)154 299 y(10.)61 b(FUTURE)30 b(REVISIONS)f(OF)i(THIS)e(LICENSE)
+b(184)154 299 y(10.)61 b(FUTURE)30 b(REVISIONS)f(OF)i(THIS)e(LICENSE)
 330 433 y(The)41 b(F)-8 b(ree)43 b(Soft)m(w)m(are)f(F)-8
 b(oundation)43 b(ma)m(y)f(publish)e(new,)k(revised)d(v)m(ersions)h(of)g
 (the)g(GNU)g(F)-8 b(ree)330 543 y(Do)s(cumen)m(tation)34
@@ -21461,10 +21533,10 @@ f(of)g(that)330 2944 y(license)31 b(published)e(b)m(y)h(that)h(same)g
 g(under)330 3895 y(CC-BY-SA)30 b(on)g(the)h(same)f(site)h(at)g(an)m(y)g
 (time)g(b)s(efore)e(August)h(1,)h(2009,)h(pro)m(vided)e(the)g(MMC)h(is)
 330 4005 y(eligible)h(for)e(relicensing.)p eop end
-%%Page: 184 190
-TeXDict begin 184 189 bop 150 -116 a Fu(App)s(endix)29
+%%Page: 185 191
+TeXDict begin 185 190 bop 150 -116 a Fu(App)s(endix)29
 b(C:)h(GNU)h(F)-8 b(ree)31 b(Do)s(cumen)m(tation)i(License)1560
-b(184)150 299 y Fs(ADDENDUM:)45 b(Ho)l(w)h(to)f(use)g(this)h(License)f
+b(185)150 299 y Fs(ADDENDUM:)45 b(Ho)l(w)h(to)f(use)g(this)h(License)f
 (for)g(y)l(our)g(do)t(cumen)l(ts)150 458 y Fu(T)-8 b(o)35
 b(use)f(this)h(License)g(in)f(a)h(do)s(cumen)m(t)g(y)m(ou)f(ha)m(v)m(e)
 i(written,)g(include)f(a)f(cop)m(y)i(of)f(the)f(License)h(in)g(the)150
@@ -21499,199 +21571,206 @@ y(If)23 b(y)m(our)h(do)s(cumen)m(t)f(con)m(tains)i(non)m(trivial)g
 b(as)g(the)g(GNU)150 2331 y(General)31 b(Public)f(License,)i(to)f(p)s
 (ermit)e(their)i(use)f(in)g(free)g(soft)m(w)m(are.)p
 eop end
-%%Page: 185 191
-TeXDict begin 185 190 bop 3614 -116 a Fu(185)150 299
+%%Page: 186 192
+TeXDict begin 186 191 bop 3614 -116 a Fu(186)150 299
 y Fp(App)t(endix)52 b(D)81 b(Indexes)150 639 y Fs(D.1)68
 b(Index)45 b(of)g(Shell)g(Builtin)g(Commands)146 806
-y(.)150 923 y Fe(.)19 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
+y(.)150 922 y Fe(.)19 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)
 f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)33 b Fb(48)146 1163 y Fs(:)150 1280 y Fe(:)19 b Fc(:)13
+(:)33 b Fb(49)146 1157 y Fs(:)150 1273 y Fe(:)19 b Fc(:)13
 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)33 b Fb(48)146
-1523 y Fs([)150 1640 y Fe([)19 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g
+f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)33 b Fb(49)146
+1510 y Fs([)150 1626 y Fe([)19 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f
-(:)g(:)g(:)33 b Fb(52)146 1881 y Fs(A)150 1998 y Fe(alias)9
+(:)g(:)g(:)33 b Fb(53)146 1862 y Fs(A)150 1978 y Fe(alias)9
 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23 b Fb(56)146 2239 y
-Fs(B)150 2356 y Fe(bg)14 b Fc(:)g(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23 b Fb(57)146 2213 y
+Fs(B)150 2329 y Fe(bg)14 b Fc(:)g(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)29
-b Fb(117)150 2443 y Fe(bind)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g
+b Fb(118)150 2416 y Fe(bind)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)25
-b Fb(56)150 2531 y Fe(break)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)h(:)f(:)g
+b Fb(57)150 2503 y Fe(break)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23
-b Fb(49)150 2618 y Fe(builtin)f Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g
+b Fb(50)150 2590 y Fe(builtin)f Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)35
-b Fb(57)146 2859 y Fs(C)150 2976 y Fe(caller)6 b Fc(:)15
+b Fb(58)146 2825 y Fs(C)150 2941 y Fe(caller)6 b Fc(:)15
 b(:)e(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)20 b Fb(57)150 3063 y Fe(cd)c Fc(:)e(:)f(:)g(:)g(:)
+g(:)g(:)g(:)h(:)f(:)20 b Fb(58)150 3029 y Fe(cd)c Fc(:)e(:)f(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)g(:)31 b Fb(49)150 3151 y Fe(command)22
+g(:)g(:)g(:)g(:)g(:)31 b Fb(50)150 3116 y Fe(command)22
 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)35 b Fb(57)150 3238 y Fe(compgen)18
+h(:)f(:)g(:)g(:)g(:)35 b Fb(59)150 3203 y Fe(compgen)18
 b Fc(:)d(:)e(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)33 b Fb(149)150 3326 y Fe(complete)16
+(:)h(:)f(:)g(:)33 b Fb(150)150 3290 y Fe(complete)16
 b Fc(:)f(:)e(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
-(:)g(:)g(:)31 b Fb(149)150 3413 y Fe(compopt)18 b Fc(:)d(:)e(:)g(:)h(:)
+(:)g(:)g(:)31 b Fb(150)150 3378 y Fe(compopt)18 b Fc(:)d(:)e(:)g(:)h(:)
 f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)33
-b Fb(152)150 3501 y Fe(continue)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g
+b Fb(153)150 3465 y Fe(continue)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b
-Fb(49)146 3741 y Fs(D)150 3858 y Fe(declare)22 b Fc(:)13
+Fb(50)146 3699 y Fs(D)150 3816 y Fe(declare)22 b Fc(:)13
 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)g(:)35 b Fb(58)150 3946 y Fe(dirs)9 b Fc(:)14
+g(:)g(:)g(:)35 b Fb(59)150 3903 y Fe(dirs)9 b Fc(:)14
 b(:)f(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)24 b Fb(104)150 4033 y Fe(disown)e
+h(:)f(:)g(:)g(:)g(:)g(:)24 b Fb(105)150 3990 y Fe(disown)e
 Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)g(:)g(:)g(:)36 b Fb(119)146 4274 y Fs(E)150 4391
+g(:)g(:)g(:)g(:)g(:)36 b Fb(120)146 4225 y Fs(E)150 4341
 y Fe(echo)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)25 b
-Fb(59)150 4478 y Fe(enable)6 b Fc(:)15 b(:)e(:)g(:)g(:)g(:)g(:)g(:)g(:)
+Fb(60)150 4428 y Fe(enable)6 b Fc(:)15 b(:)e(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)20
-b Fb(60)150 4566 y Fe(eval)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g
+b Fb(61)150 4515 y Fe(eval)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)25
-b Fb(49)150 4653 y Fe(exec)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g
+b Fb(50)150 4603 y Fe(exec)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)25
-b Fb(50)150 4741 y Fe(exit)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g
+b Fb(51)150 4690 y Fe(exit)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)25
-b Fb(50)150 4828 y Fe(export)6 b Fc(:)15 b(:)e(:)g(:)g(:)g(:)g(:)g(:)g
+b Fb(51)150 4777 y Fe(export)6 b Fc(:)15 b(:)e(:)g(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
 g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)20
-b Fb(50)146 5080 y Fs(F)150 5197 y Fe(fc)14 b Fc(:)g(:)f(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)29 b Fb(156)150 5284 y Fe(fg)14 b Fc(:)g(:)f(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)29 b Fb(117)2021 871 y Fs(G)2025 988 y Fe(getopts)22
-b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)35 b Fb(50)2021 1250 y Fs(H)2025
-1369 y Fe(hash)11 b Fc(:)j(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26
-b Fb(51)2025 1457 y Fe(help)11 b Fc(:)j(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26
-b Fb(61)2025 1544 y Fe(history)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g
-(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)33 b
-Fb(156)2021 1806 y Fs(J)2025 1924 y Fe(jobs)9 b Fc(:)14
-b(:)f(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
-(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)h(:)f(:)g(:)g(:)g(:)24 b Fb(117)2021 2186 y Fs(K)2025
-2303 y Fe(kill)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)24
-b Fb(118)2021 2554 y Fs(L)2025 2672 y Fe(let)14 b Fc(:)f(:)g(:)h(:)f(:)
+b Fb(51)146 5023 y Fs(F)150 5139 y Fe(false)9 b Fc(:)14
+b(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
+(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
+g(:)h(:)f(:)g(:)g(:)g(:)23 b Fb(51)150 5227 y Fe(fc)14
+b Fc(:)g(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
 g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)28 b Fb(61)2025 2760 y Fe(local)9 b Fc(:)14
-b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
-(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)23 b Fb(61)2025 2848 y Fe(logout)6
-b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
+(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)29 b Fb(157)150
+5314 y Fe(fg)14 b Fc(:)g(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
+g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
+(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)29
+b Fb(118)2021 871 y Fs(G)2025 988 y Fe(getopts)22 b Fc(:)13
+b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(61)2021 3110 y Fs(M)2025
-3227 y Fe(mapfile)h Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)35 b Fb(62)2021
-3489 y Fs(P)2025 3608 y Fe(popd)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)h
+h(:)f(:)g(:)35 b Fb(51)2021 1250 y Fs(H)2025 1369 y Fe(hash)11
+b Fc(:)j(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
+g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
+(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26 b Fb(52)2025 1457
+y Fe(help)11 b Fc(:)j(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
+(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
+g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26 b
+Fb(62)2025 1544 y Fe(history)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)
+g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)33 b Fb(157)2021
+1806 y Fs(J)2025 1924 y Fe(jobs)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)24
-b Fb(104)2025 3696 y Fe(printf)6 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)21
-b Fb(62)2025 3784 y Fe(pushd)6 b Fc(:)14 b(:)g(:)f(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)21
-b Fb(104)2025 3871 y Fe(pwd)14 b Fc(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
+b Fb(118)2021 2186 y Fs(K)2025 2303 y Fe(kill)9 b Fc(:)14
+b(:)f(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
+(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
+g(:)h(:)f(:)g(:)g(:)g(:)24 b Fb(119)2021 2554 y Fs(L)2025
+2672 y Fe(let)14 b Fc(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
+(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
+g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)28
+b Fb(62)2025 2760 y Fe(local)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h
+(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
+g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)23
+b Fb(62)2025 2848 y Fe(logout)6 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
+h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)21
+b Fb(63)2021 3110 y Fs(M)2025 3227 y Fe(mapfile)h Fc(:)13
+b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
+(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
+h(:)f(:)g(:)35 b Fb(63)2021 3489 y Fs(P)2025 3608 y Fe(popd)9
+b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
+(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)24 b Fb(105)2025 3696
+y Fe(printf)6 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
+(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
+g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(63)2025
+3784 y Fe(pushd)6 b Fc(:)14 b(:)g(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
+(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)21 b
+Fb(105)2025 3871 y Fe(pwd)14 b Fc(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)
 f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)28
-b Fb(51)2021 4133 y Fs(R)2025 4251 y Fe(read)11 b Fc(:)j(:)f(:)g(:)g(:)
+b Fb(52)2021 4133 y Fs(R)2025 4251 y Fe(read)11 b Fc(:)j(:)f(:)g(:)g(:)
 g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)26 b Fb(63)2025 4339 y Fe(readarray)15 b
+g(:)g(:)g(:)26 b Fb(64)2025 4339 y Fe(readarray)15 b
 Fc(:)g(:)f(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)30 b Fb(65)2025 4427 y Fe(readonly)18 b Fc(:)d(:)e(:)g(:)g(:)g
+g(:)g(:)30 b Fb(66)2025 4427 y Fe(readonly)18 b Fc(:)d(:)e(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)33
-b Fb(52)2025 4515 y Fe(return)6 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g
+b Fb(53)2025 4515 y Fe(return)6 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)21
-b Fb(52)2021 4765 y Fs(S)2025 4884 y Fe(set)14 b Fc(:)f(:)g(:)h(:)f(:)g
+b Fb(53)2021 4765 y Fs(S)2025 4884 y Fe(set)14 b Fc(:)f(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)g(:)h(:)f(:)28 b Fb(67)2025 4972 y Fe(shift)9 b Fc(:)14
+(:)g(:)h(:)f(:)28 b Fb(68)2025 4972 y Fe(shift)9 b Fc(:)14
 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)23 b Fb(52)2025 5060 y Fe(shopt)9
+g(:)g(:)g(:)h(:)f(:)g(:)23 b Fb(53)2025 5060 y Fe(shopt)9
 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)23 b Fb(71)2025 5148
+g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)23 b Fb(72)2025 5148
 y Fe(source)6 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(65)2025
+g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(66)2025
 5235 y Fe(suspend)d Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)33 b Fb(119)p eop end
-%%Page: 186 192
-TeXDict begin 186 191 bop 150 -116 a Fu(App)s(endix)29
-b(D:)i(Indexes)2623 b(186)146 294 y Fs(T)150 410 y Fe(test)11
+f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)33 b Fb(120)p eop end
+%%Page: 187 193
+TeXDict begin 187 192 bop 150 -116 a Fu(App)s(endix)29
+b(D:)i(Indexes)2623 b(187)146 294 y Fs(T)150 410 y Fe(test)11
 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)25 b Fb(52)150 497
+(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)25 b Fb(53)150 497
 y Fe(times)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
 g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f
-(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23 b Fb(54)150
+(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23 b Fb(55)150
 584 y Fe(trap)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)25
-b Fb(54)150 671 y Fe(type)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g
+b Fb(55)150 671 y Fe(true)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)25
-b Fb(65)150 758 y Fe(typeset)d Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
+b Fb(56)150 758 y Fe(type)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
+h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)25
+b Fb(66)150 846 y Fe(typeset)d Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)35
-b Fb(66)146 1003 y Fs(U)150 1119 y Fe(ulimit)6 b Fc(:)15
+b Fb(67)146 1090 y Fs(U)150 1206 y Fe(ulimit)6 b Fc(:)15
 b(:)e(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)20 b Fb(66)150 1206 y Fe(umask)9
+g(:)g(:)g(:)h(:)f(:)20 b Fb(67)150 1293 y Fe(umask)9
 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23 b Fb(55)150 1293 y
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23 b Fb(56)150 1380 y
 Fe(unalias)f Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)35 b Fb(67)150 1380 y
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)35 b Fb(68)150 1467 y
 Fe(unset)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23 b Fb(55)2021
-294 y Fs(W)2025 433 y Fe(wait)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)h(:)f
+g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23 b Fb(56)2021
+294 y Fs(W)2025 434 y Fe(wait)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)24
-b Fb(118)150 2133 y Fs(D.2)68 b(Index)45 b(of)g(Shell)g(Reserv)l(ed)h
+b Fb(119)150 2167 y Fs(D.2)68 b(Index)45 b(of)g(Shell)g(Reserv)l(ed)h
 (W)-11 b(ords)146 2704 y(!)150 2820 y Fe(!)19 b Fc(:)13
 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
@@ -21763,9 +21842,9 @@ y Fs(W)2025 5552 y Fe(while)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
 g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)23
 b Fb(12)p eop end
-%%Page: 187 193
-TeXDict begin 187 192 bop 150 -116 a Fu(App)s(endix)29
-b(D:)i(Indexes)2623 b(187)150 299 y Fs(D.3)68 b(P)l(arameter)47
+%%Page: 188 194
+TeXDict begin 188 193 bop 150 -116 a Fu(App)s(endix)29
+b(D:)i(Indexes)2623 b(188)150 299 y Fs(D.3)68 b(P)l(arameter)47
 b(and)d(V)-11 b(ariable)46 b(Index)146 955 y(!)150 1072
 y Fe(!)19 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
@@ -21802,7 +21881,7 @@ g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)31 b Fb(23)150 2495 y Fe($_)16 b Fc(:)e(:)f(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)g(:)31 b Fb(79)150 2582 y Fe($0)16 b Fc(:)e(:)f(:)g(:)g(:)g(:)g(:)h
+(:)g(:)31 b Fb(80)150 2582 y Fe($0)16 b Fc(:)e(:)f(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)31 b Fb(24)146 2834 y Fs(*)150 2950 y Fe(*)19
@@ -21823,422 +21902,422 @@ f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)33 b Fb(23)p
 156 4272 41 6 v 150 4389 a Fe(_)19 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)33 b Fb(79)146 4631 y Fs(0)150 4748 y
+(:)f(:)g(:)g(:)33 b Fb(80)146 4631 y Fs(0)150 4748 y
 Fe(0)19 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)33
 b Fb(24)146 4991 y Fs(A)150 5108 y Fe(active-region-end-color)12
 b Fc(:)18 b(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)h(:)26 b Fb(124)150 5196 y Fe(active-region-start-color)
+(:)g(:)g(:)g(:)h(:)26 b Fb(125)150 5196 y Fe(active-region-start-color)
 7 b Fc(:)19 b(:)13 b(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)h(:)21 b Fb(124)150 5283 y Fe(auto_resume)8 b
+g(:)g(:)h(:)21 b Fb(125)150 5283 y Fe(auto_resume)8 b
 Fc(:)16 b(:)d(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-23 b Fb(119)2021 954 y Fs(B)2025 1074 y Fe(BASH)11 b
+23 b Fb(120)2021 954 y Fs(B)2025 1074 y Fe(BASH)11 b
 Fc(:)j(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26 b Fb(80)2025 1163
+g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26 b Fb(81)2025 1163
 y Fe(BASH_ALIASES)8 b Fc(:)15 b(:)f(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)g(:)h(:)22 b Fb(80)2025 1251 y Fe(BASH_ARGC)15
+g(:)g(:)g(:)g(:)h(:)22 b Fb(81)2025 1251 y Fe(BASH_ARGC)15
 b Fc(:)g(:)f(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
 g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
-(:)g(:)g(:)30 b Fb(80)2025 1340 y Fe(BASH_ARGV)15 b Fc(:)g(:)f(:)f(:)g
+(:)g(:)g(:)30 b Fb(81)2025 1340 y Fe(BASH_ARGV)15 b Fc(:)g(:)f(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)30
-b Fb(80)2025 1429 y Fe(BASH_ARGV0)13 b Fc(:)i(:)e(:)g(:)g(:)h(:)f(:)g
+b Fb(81)2025 1429 y Fe(BASH_ARGV0)13 b Fc(:)i(:)e(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)27 b Fb(81)2025
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)27 b Fb(82)2025
 1517 y Fe(BASH_CMDS)15 b Fc(:)g(:)f(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)30 b Fb(81)2025 1606
+g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)30 b Fb(82)2025 1606
 y Fe(BASH_COMMAND)8 b Fc(:)15 b(:)f(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)g(:)h(:)22 b Fb(81)2025 1695 y Fe(BASH_COMPAT)10
+g(:)g(:)g(:)g(:)h(:)22 b Fb(82)2025 1695 y Fe(BASH_COMPAT)10
 b Fc(:)16 b(:)d(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)25 b Fb(81)2025 1783 y Fe(BASH_ENV)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)g
+g(:)25 b Fb(82)2025 1783 y Fe(BASH_ENV)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
 f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)33
-b Fb(81)2025 1872 y Fe(BASH_EXECUTION_STRING)24 b Fc(:)13
+b Fb(82)2025 1872 y Fe(BASH_EXECUTION_STRING)24 b Fc(:)13
 b(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)g(:)34 b Fb(81)2025 1960 y Fe(BASH_LINENO)10
+(:)g(:)g(:)g(:)g(:)34 b Fb(82)2025 1960 y Fe(BASH_LINENO)10
 b Fc(:)16 b(:)d(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)25 b Fb(81)2025 2049 y Fe(BASH_LOADABLES_PATH)7 b
+g(:)25 b Fb(82)2025 2049 y Fe(BASH_LOADABLES_PATH)7 b
 Fc(:)17 b(:)c(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)22 b Fb(82)2025
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)22 b Fb(83)2025
 2138 y Fe(BASH_REMATCH)8 b Fc(:)15 b(:)f(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
-(:)g(:)g(:)g(:)g(:)g(:)h(:)22 b Fb(82)2025 2226 y Fe(BASH_SOURCE)10
+(:)g(:)g(:)g(:)g(:)g(:)h(:)22 b Fb(83)2025 2226 y Fe(BASH_SOURCE)10
 b Fc(:)16 b(:)d(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)25 b Fb(82)2025 2315 y Fe(BASH_SUBSHELL)g Fc(:)13
+g(:)25 b Fb(83)2025 2315 y Fe(BASH_SUBSHELL)g Fc(:)13
 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)37
-b Fb(82)2025 2403 y Fe(BASH_VERSINFO)25 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g
+b Fb(83)2025 2403 y Fe(BASH_VERSINFO)25 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)37 b Fb(82)2025 2492
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)37 b Fb(83)2025 2492
 y Fe(BASH_VERSION)8 b Fc(:)15 b(:)f(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)g(:)h(:)22 b Fb(82)2025 2581 y Fe(BASH_XTRACEFD)j
+g(:)g(:)g(:)g(:)h(:)22 b Fb(83)2025 2581 y Fe(BASH_XTRACEFD)j
 Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)37
-b Fb(82)2025 2669 y Fe(BASHOPTS)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)g(:)h(:)f
+b Fb(83)2025 2669 y Fe(BASHOPTS)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)33 b
-Fb(80)2025 2758 y Fe(BASHPID)22 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g
+Fb(81)2025 2758 y Fe(BASHPID)22 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)35
-b Fb(80)2025 2847 y Fe(bell-style)11 b Fc(:)k(:)e(:)g(:)g(:)g(:)h(:)f
+b Fb(81)2025 2847 y Fe(bell-style)11 b Fc(:)k(:)e(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)26 b Fb(124)2025
+g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)26 b Fb(125)2025
 2935 y Fe(bind-tty-special-chars)14 b Fc(:)k(:)13 b(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)29
-b Fb(124)2025 3022 y Fe(blink-matching-paren)24 b Fc(:)13
+b Fb(125)2025 3022 y Fe(blink-matching-paren)24 b Fc(:)13
 b(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
-(:)g(:)g(:)g(:)h(:)34 b Fb(125)2021 3297 y Fs(C)2025
+(:)g(:)g(:)g(:)h(:)34 b Fb(126)2021 3297 y Fs(C)2025
 3417 y Fe(CDPATH)6 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b
-Fb(79)2025 3506 y Fe(CHILD_MAX)15 b Fc(:)g(:)f(:)f(:)g(:)g(:)g(:)g(:)g
+Fb(80)2025 3506 y Fe(CHILD_MAX)15 b Fc(:)g(:)f(:)f(:)g(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)30 b Fb(83)2025
+f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)30 b Fb(84)2025
 3595 y Fe(colored-completion-prefix)7 b Fc(:)18 b(:)13
 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)22
-b Fb(125)2025 3683 y Fe(colored-stats)h Fc(:)13 b(:)g(:)g(:)g(:)h(:)f
+b Fb(126)2025 3683 y Fe(colored-stats)h Fc(:)13 b(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)g(:)h(:)f(:)g(:)35 b Fb(125)2025 3772 y Fe(COLUMNS)22
+g(:)g(:)g(:)g(:)h(:)f(:)g(:)35 b Fb(126)2025 3772 y Fe(COLUMNS)22
 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)35 b Fb(83)2025 3860 y Fe(comment-begin)23
+g(:)g(:)h(:)f(:)g(:)35 b Fb(84)2025 3860 y Fe(comment-begin)23
 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)35
-b Fb(125)2025 3949 y Fe(COMP_CWORD)13 b Fc(:)i(:)e(:)g(:)g(:)h(:)f(:)g
+b Fb(126)2025 3949 y Fe(COMP_CWORD)13 b Fc(:)i(:)e(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)27 b Fb(83)2025
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)27 b Fb(84)2025
 4038 y Fe(COMP_KEY)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)33 b Fb(83)2025 4126
+g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)33 b Fb(84)2025 4126
 y Fe(COMP_LINE)15 b Fc(:)g(:)f(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)30 b Fb(83)2025 4215 y Fe(COMP_POINT)13
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)30 b Fb(84)2025 4215 y Fe(COMP_POINT)13
 b Fc(:)i(:)e(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)h(:)27 b Fb(83)2025 4303 y Fe(COMP_TYPE)15 b Fc(:)g(:)f(:)f(:)g(:)g
+(:)h(:)27 b Fb(84)2025 4303 y Fe(COMP_TYPE)15 b Fc(:)g(:)f(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)30
-b Fb(83)2025 4392 y Fe(COMP_WORDBREAKS)17 b Fc(:)g(:)c(:)g(:)g(:)g(:)g
+b Fb(84)2025 4392 y Fe(COMP_WORDBREAKS)17 b Fc(:)g(:)c(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)32 b Fb(83)2025 4481 y Fe(COMP_WORDS)13
+h(:)f(:)g(:)g(:)g(:)g(:)32 b Fb(84)2025 4481 y Fe(COMP_WORDS)13
 b Fc(:)i(:)e(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)h(:)27 b Fb(83)2025 4569 y Fe(completion-display-width)9
+(:)h(:)27 b Fb(84)2025 4569 y Fe(completion-display-width)9
 b Fc(:)19 b(:)13 b(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)24 b Fb(125)2025 4658 y Fe(completion-ignore-case)14
+(:)h(:)f(:)g(:)24 b Fb(126)2025 4658 y Fe(completion-ignore-case)14
 b Fc(:)k(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)g(:)h(:)f(:)29 b Fb(125)2025 4747 y Fe(completion-map-case)d
+(:)g(:)g(:)h(:)f(:)29 b Fb(126)2025 4747 y Fe(completion-map-case)d
 Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
-(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)37 b Fb(125)2025 4835
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)37 b Fb(126)2025 4835
 y Fe(completion-prefix-display-leng)q(th)29 b Fc(:)13
-b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)38 b Fb(125)2025 4924
+b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)38 b Fb(126)2025 4924
 y Fe(completion-query-items)14 b Fc(:)k(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)29
-b Fb(125)2025 5012 y Fe(COMPREPLY)15 b Fc(:)g(:)f(:)f(:)g(:)g(:)g(:)g
+b Fb(126)2025 5012 y Fe(COMPREPLY)15 b Fc(:)g(:)f(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)30 b
-Fb(84)2025 5101 y Fe(convert-meta)25 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)
+Fb(85)2025 5101 y Fe(convert-meta)25 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)38 b Fb(126)2025 5188
+(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)38 b Fb(127)2025 5188
 y Fe(COPROC)6 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(84)p
+g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(85)p
 eop end
-%%Page: 188 194
-TeXDict begin 188 193 bop 150 -116 a Fu(App)s(endix)29
-b(D:)i(Indexes)2623 b(188)146 294 y Fs(D)150 414 y Fe(DIRSTACK)18
+%%Page: 189 195
+TeXDict begin 189 194 bop 150 -116 a Fu(App)s(endix)29
+b(D:)i(Indexes)2623 b(189)146 294 y Fs(D)150 414 y Fe(DIRSTACK)18
 b Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)h(:)f(:)32 b Fb(84)150 501 y Fe(disable-completion)7
+(:)g(:)h(:)f(:)32 b Fb(85)150 501 y Fe(disable-completion)7
 b Fc(:)18 b(:)13 b(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)22 b Fb(126)146
+(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)22 b Fb(127)146
 772 y Fs(E)150 892 y Fe(echo-control-characters)12 b
 Fc(:)18 b(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)h(:)26 b Fb(126)150 981 y Fe(editing-mode)f
+g(:)g(:)g(:)h(:)26 b Fb(127)150 981 y Fe(editing-mode)f
 Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)37
-b Fb(126)150 1069 y Fe(emacs-mode-string)10 b Fc(:)17
+b Fb(127)150 1069 y Fe(emacs-mode-string)10 b Fc(:)17
 b(:)c(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)25 b Fb(126)150 1158
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)25 b Fb(127)150 1158
 y Fe(EMACS)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
 g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f
-(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23 b Fb(84)150
+(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23 b Fb(85)150
 1246 y Fe(enable-active-region)h Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)34
-b Fb(126)150 1335 y Fe(enable-bracketed-paste)14 b Fc(:)k(:)c(:)f(:)g
+b Fb(127)150 1335 y Fe(enable-bracketed-paste)14 b Fc(:)k(:)c(:)f(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)29
-b Fb(127)150 1423 y Fe(enable-keypad)23 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g
+b Fb(128)150 1423 y Fe(enable-keypad)23 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)35 b Fb(127)150 1511 y Fe(ENV)14
+g(:)g(:)h(:)f(:)g(:)g(:)g(:)35 b Fb(128)150 1511 y Fe(ENV)14
 b Fc(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
-(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)28 b Fb(84)150
+(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)28 b Fb(85)150
 1600 y Fe(EPOCHREALTIME)d Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)37 b Fb(84)150 1688 y Fe(EPOCHSECONDS)8
+g(:)g(:)g(:)g(:)37 b Fb(85)150 1688 y Fe(EPOCHSECONDS)8
 b Fc(:)16 b(:)d(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-22 b Fb(84)150 1777 y Fe(EUID)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g
+22 b Fb(85)150 1777 y Fe(EUID)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
 g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)25
-b Fb(84)150 1865 y Fe(EXECIGNORE)13 b Fc(:)i(:)e(:)h(:)f(:)g(:)g(:)g(:)
+b Fb(85)150 1865 y Fe(EXECIGNORE)13 b Fc(:)i(:)e(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)27 b Fb(84)150
+(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)27 b Fb(85)150
 1953 y Fe(expand-tilde)e Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)h(:)37 b Fb(127)146 2224 y Fs(F)150 2344
+g(:)g(:)g(:)h(:)37 b Fb(128)146 2224 y Fs(F)150 2344
 y Fe(FCEDIT)6 b Fc(:)15 b(:)e(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)20 b Fb(85)150
+g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)20 b Fb(86)150
 2432 y Fe(FIGNORE)i Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)35 b Fb(85)150
+g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)35 b Fb(86)150
 2521 y Fe(FUNCNAME)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(85)150 2608
+h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(86)150 2608
 y Fe(FUNCNEST)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(85)146 2868 y
+f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(86)146 2868 y
 Fs(G)150 2988 y Fe(GLOBIGNORE)13 b Fc(:)i(:)e(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)27 b Fb(85)150
+h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)27 b Fb(86)150
 3076 y Fe(GLOBSORT)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(85)150 3164
+h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(86)150 3164
 y Fe(GROUPS)6 b Fc(:)15 b(:)e(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)20 b Fb(85)146
+g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)20 b Fb(87)146
 3423 y Fs(H)150 3543 y Fe(histchars)15 b Fc(:)h(:)d(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
 g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)30 b
-Fb(86)150 3632 y Fe(HISTCMD)22 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g
+Fb(87)150 3632 y Fe(HISTCMD)22 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)35
-b Fb(86)150 3720 y Fe(HISTCONTROL)10 b Fc(:)16 b(:)d(:)g(:)g(:)h(:)f(:)
+b Fb(87)150 3720 y Fe(HISTCONTROL)10 b Fc(:)16 b(:)d(:)g(:)g(:)h(:)f(:)
 g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)25 b Fb(86)150
+(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)25 b Fb(87)150
 3809 y Fe(HISTFILE)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(86)150 3897
+h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(87)150 3897
 y Fe(HISTFILESIZE)8 b Fc(:)16 b(:)d(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)22 b Fb(86)150 3986 y Fe(HISTIGNORE)13
+g(:)g(:)h(:)f(:)g(:)22 b Fb(87)150 3986 y Fe(HISTIGNORE)13
 b Fc(:)i(:)e(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f
-(:)g(:)27 b Fb(86)150 4074 y Fe(history-preserve-point)14
+(:)g(:)27 b Fb(87)150 4074 y Fe(history-preserve-point)14
 b Fc(:)k(:)c(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)29 b Fb(127)150 4163 y Fe(history-size)c
+h(:)f(:)g(:)g(:)29 b Fb(128)150 4163 y Fe(history-size)c
 Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)37
-b Fb(127)150 4251 y Fe(HISTSIZE)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g
+b Fb(128)150 4251 y Fe(HISTSIZE)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b
-Fb(87)150 4340 y Fe(HISTTIMEFORMAT)23 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f
+Fb(88)150 4340 y Fe(HISTTIMEFORMAT)23 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)34 b Fb(87)150 4428 y Fe(HOME)11
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)34 b Fb(88)150 4428 y Fe(HOME)11
 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)25 b Fb(79)150 4517
+(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)25 b Fb(80)150 4517
 y Fe(horizontal-scroll-mode)14 b Fc(:)k(:)c(:)f(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)29 b Fb(127)150
+(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)29 b Fb(128)150
 4605 y Fe(HOSTFILE)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(87)150 4693
+h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(88)150 4693
 y Fe(HOSTNAME)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(87)150 4781 y
+f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(88)150 4781 y
 Fe(HOSTTYPE)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(87)2021 294 y Fs(I)2025
+g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(88)2021 294 y Fs(I)2025
 420 y Fe(IFS)14 b Fc(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
 g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)28
-b Fb(79)2025 510 y Fe(IGNOREEOF)15 b Fc(:)g(:)f(:)f(:)g(:)g(:)g(:)g(:)g
+b Fb(80)2025 510 y Fe(IGNOREEOF)15 b Fc(:)g(:)f(:)f(:)g(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)30 b Fb(87)2025
+f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)30 b Fb(88)2025
 600 y Fe(input-meta)11 b Fc(:)k(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)26 b Fb(127)2025 691 y Fe(INPUTRC)c
+h(:)f(:)g(:)g(:)g(:)g(:)26 b Fb(128)2025 691 y Fe(INPUTRC)c
 Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)35 b Fb(87)2025 781 y Fe(INSIDE_EMACS)8
+g(:)g(:)h(:)f(:)g(:)35 b Fb(88)2025 781 y Fe(INSIDE_EMACS)8
 b Fc(:)15 b(:)f(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
-22 b Fb(87)2025 868 y Fe(isearch-terminators)k Fc(:)13
+22 b Fb(88)2025 868 y Fe(isearch-terminators)k Fc(:)13
 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)37 b Fb(128)2021 1167 y Fs(K)2025
+(:)h(:)f(:)g(:)g(:)g(:)37 b Fb(129)2021 1167 y Fs(K)2025
 1290 y Fe(keymap)22 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)36 b Fb(128)2021
+g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)36 b Fb(129)2021
 1601 y Fs(L)2025 1727 y Fe(LANG)20 b Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)35
-b Fb(8,)26 b(87)2025 1817 y Fe(LC_ALL)6 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g
+b Fb(8,)26 b(89)2025 1817 y Fe(LC_ALL)6 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)21
-b Fb(88)2025 1907 y Fe(LC_COLLATE)13 b Fc(:)i(:)e(:)g(:)g(:)h(:)f(:)g
+b Fb(89)2025 1907 y Fe(LC_COLLATE)13 b Fc(:)i(:)e(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)27 b Fb(88)2025
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)27 b Fb(89)2025
 1998 y Fe(LC_CTYPE)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)33 b Fb(88)2025 2088
+g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)33 b Fb(89)2025 2088
 y Fe(LC_MESSAGES)21 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)34 b Fb(8,)26 b(88)2025 2178 y Fe(LC_NUMERIC)13
+g(:)g(:)g(:)34 b Fb(8,)26 b(89)2025 2178 y Fe(LC_NUMERIC)13
 b Fc(:)i(:)e(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)h(:)27 b Fb(88)2025 2269 y Fe(LC_TIME)22 b Fc(:)13
+(:)h(:)27 b Fb(89)2025 2269 y Fe(LC_TIME)22 b Fc(:)13
 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)35 b Fb(88)2025 2359 y Fe(LINENO)6 b Fc(:)14
+h(:)f(:)g(:)35 b Fb(89)2025 2359 y Fe(LINENO)6 b Fc(:)14
 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)g(:)g(:)g(:)21 b Fb(88)2025 2446 y Fe(LINES)9
+g(:)g(:)g(:)g(:)g(:)21 b Fb(89)2025 2446 y Fe(LINES)9
 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)23 b Fb(88)2021 2746
+g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)23 b Fb(89)2021 2746
 y Fs(M)2025 2872 y Fe(MACHTYPE)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)33 b
-Fb(88)2025 2962 y Fe(MAIL)11 b Fc(:)j(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g
+Fb(89)2025 2962 y Fe(MAIL)11 b Fc(:)j(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26
-b Fb(79)2025 3052 y Fe(MAILCHECK)15 b Fc(:)g(:)f(:)f(:)g(:)g(:)g(:)g(:)
+b Fb(80)2025 3052 y Fe(MAILCHECK)15 b Fc(:)g(:)f(:)f(:)g(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)30 b Fb(88)2025
+(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)30 b Fb(89)2025
 3143 y Fe(MAILPATH)18 b Fc(:)d(:)e(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)33 b Fb(79)2025 3233
+g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)33 b Fb(80)2025 3233
 y Fe(MAPFILE)22 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)35 b Fb(88)2025 3323
+g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)35 b Fb(89)2025 3323
 y Fe(mark-modified-lines)26 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)37
-b Fb(128)2025 3414 y Fe(mark-symlinked-directories)27
+b Fb(129)2025 3414 y Fe(mark-symlinked-directories)27
 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-36 b Fb(128)2025 3504 y Fe(match-hidden-files)7 b Fc(:)17
+36 b Fb(129)2025 3504 y Fe(match-hidden-files)7 b Fc(:)17
 b(:)d(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f
-(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)22 b Fb(128)2025 3594
+(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)22 b Fb(129)2025 3594
 y Fe(menu-complete-display-prefix)17 b Fc(:)h(:)13 b(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)31 b Fb(129)2025 3681 y Fe(meta-flag)13
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)31 b Fb(130)2025 3681 y Fe(meta-flag)13
 b Fc(:)i(:)e(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)28 b Fb(127)2021 3992 y Fs(O)2025 4118 y Fe(OLDPWD)6
+(:)f(:)28 b Fb(128)2021 3992 y Fs(O)2025 4118 y Fe(OLDPWD)6
 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(88)2025 4208 y Fe(OPTARG)6
+h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(89)2025 4208 y Fe(OPTARG)6
 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(79)2025 4299 y Fe(OPTERR)6
+h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(80)2025 4299 y Fe(OPTERR)6
 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(88)2025 4389 y Fe(OPTIND)6
+h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(89)2025 4389 y Fe(OPTIND)6
 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(79)2025 4480 y Fe(OSTYPE)6
+h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(80)2025 4480 y Fe(OSTYPE)6
 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(88)2025 4567 y Fe(output-meta)8
+h(:)f(:)g(:)g(:)g(:)g(:)g(:)21 b Fb(89)2025 4567 y Fe(output-meta)8
 b Fc(:)16 b(:)d(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-23 b Fb(129)p eop end
-%%Page: 189 195
-TeXDict begin 189 194 bop 150 -116 a Fu(App)s(endix)29
-b(D:)i(Indexes)2623 b(189)146 294 y Fs(P)150 410 y Fe(page-completions)
+23 b Fb(130)p eop end
+%%Page: 190 196
+TeXDict begin 190 195 bop 150 -116 a Fu(App)s(endix)29
+b(D:)i(Indexes)2623 b(190)146 294 y Fs(P)150 410 y Fe(page-completions)
 13 b Fc(:)j(:)d(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)27 b Fb(129)150
+(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)27 b Fb(130)150
 497 y Fe(PATH)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)25
-b Fb(79)150 584 y Fe(PIPESTATUS)13 b Fc(:)i(:)e(:)h(:)f(:)g(:)g(:)g(:)g
+b Fb(80)150 584 y Fe(PIPESTATUS)13 b Fc(:)i(:)e(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)27 b Fb(88)150
+h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)27 b Fb(89)150
 671 y Fe(POSIXLY_CORRECT)17 b Fc(:)g(:)c(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)g(:)32 b Fb(89)150 758 y Fe(PPID)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g
+(:)g(:)g(:)32 b Fb(90)150 758 y Fe(PPID)11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)h(:)25 b Fb(89)150 846 y Fe(PROMPT_COMMAND)e Fc(:)13
+(:)h(:)25 b Fb(90)150 846 y Fe(PROMPT_COMMAND)e Fc(:)13
 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)34
-b Fb(89)150 933 y Fe(PROMPT_DIRTRIM)23 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f
+b Fb(90)150 933 y Fe(PROMPT_DIRTRIM)23 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)34 b Fb(89)150 1020 y Fe(PS0)14
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)34 b Fb(90)150 1020 y Fe(PS0)14
 b Fc(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
-(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)28 b Fb(89)150
+(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)28 b Fb(90)150
 1107 y Fe(PS1)14 b Fc(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)28
-b Fb(79)150 1194 y Fe(PS2)14 b Fc(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
+b Fb(80)150 1194 y Fe(PS2)14 b Fc(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)28
-b Fb(79)150 1281 y Fe(PS3)14 b Fc(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
+b Fb(80)150 1281 y Fe(PS3)14 b Fc(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)28
-b Fb(89)150 1369 y Fe(PS4)14 b Fc(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
+b Fb(90)150 1369 y Fe(PS4)14 b Fc(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)28
-b Fb(89)150 1456 y Fe(PWD)14 b Fc(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
+b Fb(90)150 1456 y Fe(PWD)14 b Fc(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)28
-b Fb(89)146 1689 y Fs(R)150 1804 y Fe(RANDOM)6 b Fc(:)15
+b Fb(90)146 1689 y Fs(R)150 1804 y Fe(RANDOM)6 b Fc(:)15
 b(:)e(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)20 b Fb(89)150 1892 y Fe(READLINE_ARGUMENT)12
+g(:)g(:)g(:)h(:)f(:)20 b Fb(90)150 1892 y Fe(READLINE_ARGUMENT)12
 b Fc(:)17 b(:)c(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
-(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)26 b Fb(89)150
+(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)26 b Fb(90)150
 1979 y Fe(READLINE_LINE)f Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)37 b Fb(89)150 2066 y Fe(READLINE_MARK)25
+g(:)g(:)g(:)g(:)37 b Fb(90)150 2066 y Fe(READLINE_MARK)25
 b Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)37
-b Fb(89)150 2153 y Fe(READLINE_POINT)23 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f
+b Fb(90)150 2153 y Fe(READLINE_POINT)23 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)34 b Fb(90)150 2240 y Fe(REPLY)9
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)34 b Fb(91)150 2240 y Fe(REPLY)9
 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23 b Fb(90)150 2327 y
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23 b Fb(91)150 2327 y
 Fe(revert-all-at-newline)17 b Fc(:)h(:)13 b(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)32
-b Fb(129)146 2560 y Fs(S)150 2676 y Fe(search-ignore-case)7
+b Fb(130)146 2560 y Fs(S)150 2676 y Fe(search-ignore-case)7
 b Fc(:)18 b(:)13 b(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)22 b Fb(129)150
+(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)22 b Fb(130)150
 2763 y Fe(SECONDS)g Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)35 b Fb(90)150
+g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)35 b Fb(91)150
 2851 y Fe(SHELL)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23
-b Fb(90)150 2938 y Fe(SHELLOPTS)15 b Fc(:)h(:)d(:)g(:)g(:)g(:)g(:)g(:)h
+b Fb(91)150 2938 y Fe(SHELLOPTS)15 b Fc(:)h(:)d(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)30 b Fb(90)150
+g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)30 b Fb(91)150
 3025 y Fe(SHLVL)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23
-b Fb(90)150 3112 y Fe(show-all-if-ambiguous)17 b Fc(:)h(:)13
+b Fb(91)150 3112 y Fe(show-all-if-ambiguous)17 b Fc(:)h(:)13
 b(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
-(:)g(:)g(:)32 b Fb(129)150 3199 y Fe(show-all-if-unmodified)14
+(:)g(:)g(:)32 b Fb(130)150 3199 y Fe(show-all-if-unmodified)14
 b Fc(:)k(:)c(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)29 b Fb(129)2025 260 y Fe(show-mode-in-prompt)d
+h(:)f(:)g(:)g(:)29 b Fb(130)2025 260 y Fe(show-mode-in-prompt)d
 Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
-(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)37 b Fb(129)2025 351 y
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)37 b Fb(130)2025 351 y
 Fe(skip-completed-text)26 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)37
-b Fb(130)2025 438 y Fe(SRANDOM)22 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g
+b Fb(131)2025 438 y Fe(SRANDOM)22 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)35
-b Fb(90)2021 758 y Fs(T)2025 887 y Fe(TEXTDOMAIN)15 b
+b Fb(91)2021 758 y Fs(T)2025 887 y Fe(TEXTDOMAIN)15 b
 Fc(:)g(:)e(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)
 f(:)g(:)30 b Fb(8)2025 978 y Fe(TEXTDOMAINDIR)7 b Fc(:)16
@@ -22246,354 +22325,353 @@ b(:)d(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)23
 b Fb(8)2025 1069 y Fe(TIMEFORMAT)13 b Fc(:)i(:)e(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)27 b Fb(90)2025
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)27 b Fb(91)2025
 1161 y Fe(TMOUT)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)23
-b Fb(91)2025 1248 y Fe(TMPDIR)6 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g
+b Fb(92)2025 1248 y Fe(TMPDIR)6 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)21
-b Fb(91)2021 1567 y Fs(U)2025 1692 y Fe(UID)14 b Fc(:)f(:)g(:)h(:)f(:)g
+b Fb(92)2021 1567 y Fs(U)2025 1692 y Fe(UID)14 b Fc(:)f(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)g(:)h(:)f(:)28 b Fb(91)2021 2012 y Fs(V)2025 2140
+(:)g(:)h(:)f(:)28 b Fb(92)2021 2012 y Fs(V)2025 2140
 y Fe(vi-cmd-mode-string)7 b Fc(:)17 b(:)d(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)22
-b Fb(130)2025 2232 y Fe(vi-ins-mode-string)7 b Fc(:)17
+b Fb(131)2025 2232 y Fe(vi-ins-mode-string)7 b Fc(:)17
 b(:)d(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f
-(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)22 b Fb(130)2025 2319
+(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)22 b Fb(131)2025 2319
 y Fe(visible-stats)h Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)35 b Fb(130)150 3838 y Fs(D.4)68 b(F)-11 b(unction)44
+f(:)g(:)35 b Fb(131)150 3838 y Fs(D.4)68 b(F)-11 b(unction)44
 b(Index)146 4324 y(A)150 4441 y Fe(abort)27 b(\(C-g\))15
 b Fc(:)f(:)f(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)30
-b Fb(144)150 4529 y Fe(accept-line)e(\(Newline)g(or)e(Return\))12
+b Fb(145)150 4529 y Fe(accept-line)e(\(Newline)g(or)e(Return\))12
 b Fc(:)i(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)27
-b Fb(137)150 4616 y Fe(alias-expand-line)i(\(\))9 b Fc(:)14
+b Fb(138)150 4616 y Fe(alias-expand-line)i(\(\))9 b Fc(:)14
 b(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)24 b Fb(146)146 4872 y Fs(B)150
+(:)h(:)f(:)g(:)g(:)g(:)24 b Fb(147)146 4872 y Fs(B)150
 4989 y Fe(backward-char)29 b(\(C-b\))12 b Fc(:)i(:)f(:)g(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
-(:)26 b Fb(136)150 5077 y Fe(backward-delete-char)k(\(Rubout\))22
+(:)26 b Fb(137)150 5077 y Fe(backward-delete-char)k(\(Rubout\))22
 b Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)35
-b Fb(139)150 5165 y Fe(backward-kill-line)30 b(\(C-x)c(Rubout\))e
+b Fb(140)150 5165 y Fe(backward-kill-line)30 b(\(C-x)c(Rubout\))e
 Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)37 b
-Fb(140)150 5252 y Fe(backward-kill-word)30 b(\(M-DEL\))11
+Fb(141)150 5252 y Fe(backward-kill-word)30 b(\(M-DEL\))11
 b Fc(:)j(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
-26 b Fb(140)150 5340 y Fe(backward-word)j(\(M-b\))12
+26 b Fb(141)150 5340 y Fe(backward-word)j(\(M-b\))12
 b Fc(:)i(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)26 b Fb(136)2025 4294
+f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)26 b Fb(137)2025 4294
 y Fe(beginning-of-history)k(\(M-<\))11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)26 b Fb(137)2025
+(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)26 b Fb(138)2025
 4383 y Fe(beginning-of-line)j(\(C-a\))20 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)
 f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)34
-b Fb(136)2025 4471 y Fe(bracketed-paste-begin)c(\(\))16
+b Fb(137)2025 4471 y Fe(bracketed-paste-begin)c(\(\))16
 b Fc(:)e(:)f(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)31 b Fb(139)2021 4768 y Fs(C)2025 4891 y Fe
+g(:)g(:)31 b Fb(140)2021 4768 y Fs(C)2025 4891 y Fe
 (call-last-kbd-macro)f(\(C-x)c(e\))15 b Fc(:)f(:)f(:)g(:)g(:)h(:)f(:)g
-(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)30 b Fb(144)2025 4981
+(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)30 b Fb(145)2025 4981
 y Fe(capitalize-word)f(\(M-c\))7 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)22
-b Fb(140)2025 5071 y Fe(character-search)29 b(\(C-]\))22
+b Fb(141)2025 5071 y Fe(character-search)29 b(\(C-]\))22
 b Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)36 b Fb(144)2025 5161 y Fe
+(:)h(:)f(:)g(:)g(:)36 b Fb(145)2025 5161 y Fe
 (character-search-backward)31 b(\(M-C-]\))10 b Fc(:)15
-b(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)25 b Fb(144)2025 5250
+b(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)25 b Fb(145)2025 5250
 y Fe(clear-display)j(\(M-C-l\))7 b Fc(:)15 b(:)e(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)22
-b Fb(137)2025 5340 y Fe(clear-screen)28 b(\(C-l\))14
+b Fb(138)2025 5340 y Fe(clear-screen)28 b(\(C-l\))14
 b Fc(:)h(:)e(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)29 b Fb(137)p eop
+f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)29 b Fb(138)p eop
 end
-%%Page: 190 196
-TeXDict begin 190 195 bop 150 -116 a Fu(App)s(endix)29
-b(D:)i(Indexes)2623 b(190)150 264 y Fe(complete)27 b(\(TAB\))7
+%%Page: 191 197
+TeXDict begin 191 196 bop 150 -116 a Fu(App)s(endix)29
+b(D:)i(Indexes)2623 b(191)150 264 y Fe(complete)27 b(\(TAB\))7
 b Fc(:)15 b(:)e(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)22
-b Fb(142)150 352 y Fe(complete-command)29 b(\(M-!\))23
+b Fb(143)150 352 y Fe(complete-command)29 b(\(M-!\))23
 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)g(:)36 b Fb(143)150 440 y Fe(complete-filename)29
+(:)f(:)g(:)g(:)g(:)36 b Fb(144)150 440 y Fe(complete-filename)29
 b(\(M-/\))20 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)g(:)h(:)f(:)33 b Fb(142)150 528 y Fe(complete-hostname)
+g(:)g(:)g(:)g(:)g(:)h(:)f(:)33 b Fb(143)150 528 y Fe(complete-hostname)
 c(\(M-@\))20 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)g(:)h(:)f(:)33 b Fb(143)150 616 y Fe
+g(:)g(:)g(:)g(:)g(:)h(:)f(:)33 b Fb(144)150 616 y Fe
 (complete-into-braces)d(\(M-{\))11 b Fc(:)j(:)f(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26 b Fb(143)150 704
+(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26 b Fb(144)150 704
 y Fe(complete-username)j(\(M-~\))20 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)33
-b Fb(143)150 792 y Fe(complete-variable)c(\(M-$\))20
+b Fb(144)150 792 y Fe(complete-variable)c(\(M-$\))20
 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)g(:)h(:)f(:)33 b Fb(143)150 880 y Fe(copy-backward-word)d(\(\))7
+(:)g(:)h(:)f(:)33 b Fb(144)150 880 y Fe(copy-backward-word)d(\(\))7
 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
-(:)g(:)g(:)g(:)g(:)h(:)f(:)21 b Fb(141)150 968 y Fe(copy-forward-word)
+(:)g(:)g(:)g(:)g(:)h(:)f(:)21 b Fb(142)150 968 y Fe(copy-forward-word)
 29 b(\(\))9 b Fc(:)14 b(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
-(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)24 b Fb(141)150
+(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)24 b Fb(142)150
 1056 y Fe(copy-region-as-kill)30 b(\(\))22 b Fc(:)13
 b(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
-(:)g(:)g(:)36 b Fb(141)146 1320 y Fs(D)150 1438 y Fe(dabbrev-expand)29
+(:)g(:)g(:)36 b Fb(142)146 1320 y Fs(D)150 1438 y Fe(dabbrev-expand)29
 b(\(\))17 b Fc(:)c(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)32
-b Fb(143)150 1527 y Fe(delete-char)c(\(C-d\))17 b Fc(:)d(:)f(:)g(:)h(:)
+b Fb(144)150 1527 y Fe(delete-char)c(\(C-d\))17 b Fc(:)d(:)f(:)g(:)h(:)
 f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)g(:)32 b Fb(139)150 1615 y Fe(delete-char-or-list)e
+(:)g(:)g(:)g(:)g(:)32 b Fb(140)150 1615 y Fe(delete-char-or-list)e
 (\(\))22 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)36 b Fb(142)150 1703 y Fe
+g(:)g(:)h(:)f(:)g(:)g(:)g(:)36 b Fb(143)150 1703 y Fe
 (delete-horizontal-space)31 b(\(\))11 b Fc(:)i(:)g(:)h(:)f(:)g(:)g(:)g
-(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26 b Fb(141)150
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26 b Fb(142)150
 1791 y Fe(digit-argument)j(\()p Fd(M-0)p Fe(,)e Fd(M-1)p
 Fe(,)f(...)g Fd(M--)p Fe(\))11 b Fc(:)j(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)
-26 b Fb(141)150 1879 y Fe(display-shell-version)k(\(C-x)d(C-v\))c
+26 b Fb(142)150 1879 y Fe(display-shell-version)k(\(C-x)d(C-v\))c
 Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)37 b
-Fb(146)150 1958 y Fe(do-lowercase-version)30 b(\(M-A,)227
+Fb(147)150 1958 y Fe(do-lowercase-version)30 b(\(M-A,)227
 2046 y(M-B,)c(M-)p Fd(x)p Fe(,)h(...\))10 b Fc(:)k(:)f(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)g(:)g(:)g(:)25 b Fb(144)150 2134 y Fe(downcase-word)k(\(M-l\))
+g(:)g(:)g(:)g(:)g(:)25 b Fb(145)150 2134 y Fe(downcase-word)k(\(M-l\))
 12 b Fc(:)i(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)26 b Fb(140)150 2222
+(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)26 b Fb(141)150 2222
 y Fe(dump-functions)j(\(\))17 b Fc(:)c(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-32 b Fb(145)150 2310 y Fe(dump-macros)c(\(\))7 b Fc(:)14
+32 b Fb(146)150 2310 y Fe(dump-macros)c(\(\))7 b Fc(:)14
 b(:)f(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)22
-b Fb(145)150 2398 y Fe(dump-variables)29 b(\(\))17 b
+b Fb(146)150 2398 y Fe(dump-variables)29 b(\(\))17 b
 Fc(:)c(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)32 b Fb(145)150
+(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)32 b Fb(146)150
 2485 y Fe(dynamic-complete-history)f(\(M-TAB\))13 b Fc(:)i(:)e(:)g(:)g
-(:)g(:)g(:)g(:)g(:)h(:)27 b Fb(143)146 2749 y Fs(E)150
+(:)g(:)g(:)g(:)g(:)h(:)27 b Fb(144)146 2749 y Fs(E)150
 2868 y Fe(edit-and-execute-command)k(\(C-x)c(C-e\))14
-b Fc(:)g(:)f(:)g(:)g(:)h(:)f(:)g(:)29 b Fb(146)150 2956
+b Fc(:)g(:)f(:)g(:)g(:)h(:)f(:)g(:)29 b Fb(147)150 2956
 y Fe(end-kbd-macro)g(\(C-x)d(\)\))13 b Fc(:)h(:)f(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)28
-b Fb(143)150 3044 y Fd(end-of-file)g Fe(\(usually)g(C-d\))21
+b Fb(144)150 3044 y Fd(end-of-file)g Fe(\(usually)g(C-d\))21
 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
-(:)g(:)35 b Fb(139)150 3132 y Fe(end-of-history)29 b(\(M->\))9
+(:)g(:)35 b Fb(140)150 3132 y Fe(end-of-history)29 b(\(M->\))9
 b Fc(:)14 b(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)24 b Fb(137)150 3220 y
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)24 b Fb(138)150 3220 y
 Fe(end-of-line)k(\(C-e\))17 b Fc(:)d(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)32
-b Fb(136)150 3308 y Fe(exchange-point-and-mark)f(\(C-x)26
+b Fb(137)150 3308 y Fe(exchange-point-and-mark)f(\(C-x)26
 b(C-x\))17 b Fc(:)d(:)g(:)f(:)g(:)g(:)g(:)g(:)g(:)32
-b Fb(144)146 3571 y Fs(F)150 3690 y Fe(fetch-history)d(\(\))19
+b Fb(145)146 3571 y Fs(F)150 3690 y Fe(fetch-history)d(\(\))19
 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)34 b Fb(139)150
+(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)34 b Fb(140)150
 3778 y Fe(forward-backward-delete-char)e(\(\))15 b Fc(:)f(:)f(:)g(:)g
-(:)g(:)g(:)h(:)f(:)g(:)g(:)30 b Fb(139)150 3867 y Fe(forward-char)e
+(:)g(:)g(:)h(:)f(:)g(:)g(:)30 b Fb(140)150 3867 y Fe(forward-char)e
 (\(C-f\))14 b Fc(:)h(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)29 b
-Fb(136)150 3955 y Fe(forward-search-history)i(\(C-s\))24
+Fb(137)150 3955 y Fe(forward-search-history)i(\(C-s\))24
 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)38
-b Fb(137)150 4042 y Fe(forward-word)28 b(\(M-f\))14 b
+b Fb(138)150 4042 y Fe(forward-word)28 b(\(M-f\))14 b
 Fc(:)h(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)29 b Fb(136)146 4295
+(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)29 b Fb(137)146 4295
 y Fs(G)150 4414 y Fe(glob-complete-word)h(\(M-g\))16
 b Fc(:)e(:)f(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)31 b Fb(145)150 4502 y Fe(glob-expand-word)e(\(C-x)e(*\))c
+g(:)g(:)31 b Fb(146)150 4502 y Fe(glob-expand-word)e(\(C-x)e(*\))c
 Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)g(:)38 b Fb(145)150 4590 y Fe(glob-list-expansions)30
+(:)g(:)g(:)38 b Fb(146)150 4590 y Fe(glob-list-expansions)30
 b(\(C-x)d(g\))13 b Fc(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)g(:)h(:)27 b Fb(145)2021 294 y Fs(H)2025 422 y Fe
+(:)g(:)h(:)27 b Fb(146)2021 294 y Fs(H)2025 422 y Fe
 (history-and-alias-expand-line)32 b(\(\))13 b Fc(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)28 b Fb(146)2025 513 y Fe(history-expand-line)i
+g(:)g(:)g(:)g(:)28 b Fb(147)2025 513 y Fe(history-expand-line)i
 (\(M-^\))13 b Fc(:)h(:)g(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)h(:)28 b Fb(146)2025 604 y Fe(history-search-backward)j
+g(:)g(:)g(:)h(:)28 b Fb(147)2025 604 y Fe(history-search-backward)j
 (\(\))11 b Fc(:)i(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
-(:)g(:)g(:)26 b Fb(138)2025 695 y Fe(history-search-forward)k(\(\))13
+(:)g(:)g(:)26 b Fb(139)2025 695 y Fe(history-search-forward)k(\(\))13
 b Fc(:)h(:)g(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
-h(:)28 b Fb(138)2025 786 y Fe(history-substring-search-backw)q(ard)k
-(\(\))20 b Fc(:)13 b(:)g(:)g(:)g(:)35 b Fb(138)2025 874
+h(:)28 b Fb(139)2025 786 y Fe(history-substring-search-backw)q(ard)k
+(\(\))20 b Fc(:)13 b(:)g(:)g(:)g(:)35 b Fb(139)2025 874
 y Fe(history-substring-search-forwa)q(rd)d(\(\))22 b
-Fc(:)13 b(:)h(:)f(:)g(:)g(:)37 b Fb(138)2021 1200 y Fs(I)2025
+Fc(:)13 b(:)h(:)f(:)g(:)g(:)37 b Fb(139)2021 1200 y Fs(I)2025
 1329 y Fe(insert-comment)29 b(\(M-#\))9 b Fc(:)14 b(:)f(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-24 b Fb(145)2025 1420 y Fe(insert-completions)29 b(\(M-*\))16
+24 b Fb(146)2025 1420 y Fe(insert-completions)29 b(\(M-*\))16
 b Fc(:)f(:)e(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)31 b Fb(142)2025 1507 y Fe(insert-last-argument)f(\(M-.)c(or)g
+g(:)g(:)31 b Fb(143)2025 1507 y Fe(insert-last-argument)f(\(M-.)c(or)g
 (M-_\))7 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)22
-b Fb(146)2021 1834 y Fs(K)2025 1962 y Fe(kill-line)27
+b Fb(147)2021 1834 y Fs(K)2025 1962 y Fe(kill-line)27
 b(\(C-k\))c Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)37
-b Fb(140)2025 2053 y Fe(kill-region)28 b(\(\))7 b Fc(:)14
+b Fb(141)2025 2053 y Fe(kill-region)28 b(\(\))7 b Fc(:)14
 b(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)22
-b Fb(141)2025 2144 y Fe(kill-whole-line)29 b(\(\))14
+b Fb(142)2025 2144 y Fe(kill-whole-line)29 b(\(\))14
 b Fc(:)g(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)29 b Fb(140)2025
+f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)29 b Fb(141)2025
 2231 y Fe(kill-word)e(\(M-d\))c Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)g(:)37 b Fb(140)2021 2548 y Fs(M)2025 2676 y
+g(:)g(:)g(:)37 b Fb(141)2021 2548 y Fs(M)2025 2676 y
 Fe(magic-space)28 b(\(\))7 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)22 b Fb(146)2025 2767 y Fe(menu-complete)28
+g(:)g(:)h(:)f(:)22 b Fb(147)2025 2767 y Fe(menu-complete)28
 b(\(\))20 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)34
-b Fb(142)2025 2854 y Fe(menu-complete-backward)c(\(\))13
+b Fb(143)2025 2854 y Fe(menu-complete-backward)c(\(\))13
 b Fc(:)h(:)g(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
-h(:)28 b Fb(142)2021 3181 y Fs(N)2025 3309 y Fe(next-history)g(\(C-n\))
+h(:)28 b Fb(143)2021 3181 y Fs(N)2025 3309 y Fe(next-history)g(\(C-n\))
 14 b Fc(:)h(:)e(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)29 b Fb(137)2025
+(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)29 b Fb(138)2025
 3401 y Fe(next-screen-line)g(\(\))12 b Fc(:)h(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
-27 b Fb(137)2025 3472 y Fe(non-incremental-forward-)2102
+27 b Fb(138)2025 3472 y Fe(non-incremental-forward-)2102
 3560 y(search-history)h(\(M-n\))23 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)37
-b Fb(138)2025 3647 y Fe(non-incremental-reverse-)2102
+b Fb(139)2025 3647 y Fe(non-incremental-reverse-)2102
 3734 y(search-history)28 b(\(M-p\))23 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)37
-b Fb(137)2021 4070 y Fs(O)2025 4198 y Fe(operate-and-get-next)30
+b Fb(138)2021 4070 y Fs(O)2025 4198 y Fe(operate-and-get-next)30
 b(\(C-o\))11 b Fc(:)j(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
-(:)g(:)g(:)g(:)26 b Fb(138)2025 4285 y Fe(overwrite-mode)j(\(\))17
+(:)g(:)g(:)g(:)26 b Fb(139)2025 4285 y Fe(overwrite-mode)j(\(\))17
 b Fc(:)c(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)32 b Fb(140)p
+g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)32 b Fb(141)p
 eop end
-%%Page: 191 197
-TeXDict begin 191 196 bop 150 -116 a Fu(App)s(endix)29
-b(D:)i(Indexes)2623 b(191)146 294 y Fs(P)150 411 y Fe
+%%Page: 192 198
+TeXDict begin 192 197 bop 150 -116 a Fu(App)s(endix)29
+b(D:)i(Indexes)2623 b(192)146 294 y Fs(P)150 411 y Fe
 (possible-command-completions)32 b(\(C-x)26 b(!\))9 b
-Fc(:)14 b(:)g(:)f(:)g(:)g(:)24 b Fb(143)150 499 y Fe
+Fc(:)14 b(:)g(:)f(:)g(:)g(:)24 b Fb(144)150 499 y Fe
 (possible-completions)30 b(\(M-?\))11 b Fc(:)j(:)f(:)h(:)f(:)g(:)g(:)g
-(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26 b Fb(142)150
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26 b Fb(143)150
 586 y Fe(possible-filename-completions)32 b(\(C-x)27
-b(/\))7 b Fc(:)13 b(:)g(:)g(:)g(:)22 b Fb(143)150 674
+b(/\))7 b Fc(:)13 b(:)g(:)g(:)g(:)22 b Fb(144)150 674
 y Fe(possible-hostname-completions)32 b(\(C-x)27 b(@\))7
-b Fc(:)13 b(:)g(:)g(:)g(:)22 b Fb(143)150 762 y Fe
+b Fc(:)13 b(:)g(:)g(:)g(:)22 b Fb(144)150 762 y Fe
 (possible-username-completions)32 b(\(C-x)27 b(~\))7
-b Fc(:)13 b(:)g(:)g(:)g(:)22 b Fb(143)150 849 y Fe
+b Fc(:)13 b(:)g(:)g(:)g(:)22 b Fb(144)150 849 y Fe
 (possible-variable-completions)32 b(\(C-x)27 b($\))7
-b Fc(:)13 b(:)g(:)g(:)g(:)22 b Fb(143)150 937 y Fe(prefix-meta)28
+b Fc(:)13 b(:)g(:)g(:)g(:)22 b Fb(144)150 937 y Fe(prefix-meta)28
 b(\(ESC\))17 b Fc(:)d(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)32
-b Fb(144)150 1025 y Fe(previous-history)d(\(C-p\))23
+b Fb(145)150 1025 y Fe(previous-history)d(\(C-p\))23
 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)g(:)36 b Fb(137)150 1112 y Fe(previous-screen-line)30
+(:)f(:)g(:)g(:)g(:)36 b Fb(138)150 1112 y Fe(previous-screen-line)30
 b(\(\))19 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)g(:)h(:)f(:)33 b Fb(136)150 1200 y Fe
+(:)g(:)g(:)g(:)g(:)h(:)f(:)33 b Fb(137)150 1200 y Fe
 (print-last-kbd-macro)d(\(\))19 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)33 b Fb(144)146
+(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)33 b Fb(145)146
 1454 y Fs(Q)150 1571 y Fe(quoted-insert)c(\(C-q)d(or)g(C-v\))8
 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f
-(:)g(:)22 b Fb(139)146 1825 y Fs(R)150 1943 y Fe(re-read-init-file)29
+(:)g(:)22 b Fb(140)146 1825 y Fs(R)150 1943 y Fe(re-read-init-file)29
 b(\(C-x)e(C-r\))15 b Fc(:)f(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f
-(:)g(:)g(:)g(:)30 b Fb(144)150 2030 y Fe(redraw-current-line)g(\(\))22
+(:)g(:)g(:)g(:)30 b Fb(145)150 2030 y Fe(redraw-current-line)g(\(\))22
 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)g(:)36 b Fb(137)150 2118 y Fe(reverse-search-history)31
+(:)f(:)g(:)g(:)g(:)36 b Fb(138)150 2118 y Fe(reverse-search-history)31
 b(\(C-r\))24 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)38 b Fb(137)150 2205 y Fe(revert-line)28 b(\(M-r\))17
+g(:)38 b Fb(138)150 2205 y Fe(revert-line)28 b(\(M-r\))17
 b Fc(:)d(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)32 b Fb(144)146
+g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)32 b Fb(145)146
 2449 y Fs(S)150 2567 y Fe(self-insert)c(\(a,)e(b,)g(A,)g(1,)h(!,)f
 (...\))13 b Fc(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)27
-b Fb(139)150 2654 y Fe(set-mark)g(\(C-@\))7 b Fc(:)15
+b Fb(140)150 2654 y Fe(set-mark)g(\(C-@\))7 b Fc(:)15
 b(:)e(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)22
-b Fb(144)150 2742 y Fe(shell-backward-kill-word)31 b(\(\))8
+b Fb(145)150 2742 y Fe(shell-backward-kill-word)31 b(\(\))8
 b Fc(:)14 b(:)f(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-23 b Fb(141)150 2830 y Fe(shell-backward-word)30 b(\(M-C-b\))8
+23 b Fb(142)150 2830 y Fe(shell-backward-word)30 b(\(M-C-b\))8
 b Fc(:)15 b(:)e(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-23 b Fb(136)150 2917 y Fe(shell-expand-line)29 b(\(M-C-e\))13
+23 b Fb(137)150 2917 y Fe(shell-expand-line)29 b(\(M-C-e\))13
 b Fc(:)j(:)d(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)28 b Fb(146)150 3005 y Fe(shell-forward-word)i(\(M-C-f\))11
+g(:)28 b Fb(147)150 3005 y Fe(shell-forward-word)i(\(M-C-f\))11
 b Fc(:)j(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
-26 b Fb(136)150 3093 y Fe(shell-kill-word)j(\(M-C-d\))20
+26 b Fb(137)150 3093 y Fe(shell-kill-word)j(\(M-C-d\))20
 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)g(:)h(:)f(:)33 b Fb(141)150 3180 y Fe(shell-transpose-words)d
+(:)g(:)h(:)f(:)33 b Fb(142)150 3180 y Fe(shell-transpose-words)d
 (\(M-C-t\))22 b Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)35 b Fb(141)2025 264 y Fe(skip-csi-sequence)29 b(\(\))9
+(:)35 b Fb(142)2025 264 y Fe(skip-csi-sequence)29 b(\(\))9
 b Fc(:)14 b(:)f(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)24 b Fb(144)2025 361 y
+(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)24 b Fb(145)2025 361 y
 Fe(spell-correct-word)29 b(\(C-x)e(s\))18 b Fc(:)13 b(:)g(:)h(:)f(:)g
-(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)33 b Fb(145)2025
+(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)33 b Fb(146)2025
 448 y Fe(start-kbd-macro)c(\(C-x)d(\(\))8 b Fc(:)14 b(:)f(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)23
-b Fb(143)2021 891 y Fs(T)2025 1038 y Fe(tilde-expand)28
+b Fb(144)2021 891 y Fs(T)2025 1038 y Fe(tilde-expand)28
 b(\(M-&\))14 b Fc(:)h(:)e(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)29
-b Fb(144)2025 1135 y Fe(transpose-chars)g(\(C-t\))7 b
+b Fb(145)2025 1135 y Fe(transpose-chars)g(\(C-t\))7 b
 Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)g(:)g(:)g(:)22 b Fb(139)2025 1222 y Fe(transpose-words)
+(:)f(:)g(:)g(:)g(:)g(:)g(:)22 b Fb(140)2025 1222 y Fe(transpose-words)
 29 b(\(M-t\))7 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
-(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)22 b Fb(140)2021
+(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)22 b Fb(141)2021
 1676 y Fs(U)2025 1823 y Fe(undo)k(\(C-_)h(or)f(C-x)g(C-u\))10
 b Fc(:)k(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)25 b Fb(144)2025 1920 y Fe
+g(:)g(:)h(:)f(:)g(:)g(:)g(:)25 b Fb(145)2025 1920 y Fe
 (universal-argument)k(\(\))7 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)
 f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)22
-b Fb(142)2025 2017 y Fe(unix-filename-rubout)30 b(\(\))19
+b Fb(143)2025 2017 y Fe(unix-filename-rubout)30 b(\(\))19
 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
-(:)g(:)g(:)g(:)34 b Fb(141)2025 2114 y Fe(unix-line-discard)29
+(:)g(:)g(:)g(:)34 b Fb(142)2025 2114 y Fe(unix-line-discard)29
 b(\(C-u\))20 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)g(:)34 b Fb(140)2025 2211 y Fe
+f(:)g(:)g(:)g(:)g(:)g(:)g(:)34 b Fb(141)2025 2211 y Fe
 (unix-word-rubout)29 b(\(C-w\))22 b Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)36
-b Fb(141)2025 2298 y Fe(upcase-word)28 b(\(M-u\))17 b
+b Fb(142)2025 2298 y Fe(upcase-word)28 b(\(M-u\))17 b
 Fc(:)d(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
-(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)32 b Fb(140)2021
+(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)32 b Fb(141)2021
 2752 y Fs(Y)2025 2899 y Fe(yank)26 b(\(C-y\))18 b Fc(:)c(:)f(:)g(:)h(:)
 f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)33
-b Fb(141)2025 2996 y Fe(yank-last-arg)28 b(\(M-.)f(or)f(M-_\))8
+b Fb(142)2025 2996 y Fe(yank-last-arg)28 b(\(M-.)f(or)f(M-_\))8
 b Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)h(:)22 b Fb(138)2025 3093 y Fe(yank-nth-arg)28 b(\(M-C-y\))9
+(:)h(:)22 b Fb(139)2025 3093 y Fe(yank-nth-arg)28 b(\(M-C-y\))9
 b Fc(:)15 b(:)e(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)24 b Fb(138)2025 3180
+(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)24 b Fb(139)2025 3180
 y Fe(yank-pop)j(\(M-y\))7 b Fc(:)15 b(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)22 b Fb(141)150 3929 y Fs(D.5)68 b(Concept)45
+g(:)g(:)h(:)f(:)22 b Fb(142)150 3929 y Fs(D.5)68 b(Concept)45
 b(Index)146 4523 y(A)150 4645 y Fb(alias)27 b(expansion)22
 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)37
-b Fb(101)150 4735 y(arithmetic)26 b(ev)l(aluation)d Fc(:)13
-b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)37 b Fb(99)150 4824 y(arithmetic)26
-b(expansion)11 b Fc(:)j(:)f(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)26
-b Fb(34)150 4914 y(arithmetic)g(op)r(erators)c Fc(:)13
-b(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
-(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)34 b Fb(99)150 5003
-y(arithmetic,)27 b(shell)6 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f
-(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)g(:)h(:)20 b Fb(99)150 5090 y(arra)n(ys)f
-Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)g(:)g(:)g(:)g(:)34 b Fb(101)2021 4523 y Fs(B)2025
-4641 y Fb(bac)n(kground)13 b Fc(:)f(:)h(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)g(:)g(:)28 b Fb(116)2025 4729 y(Bash)e
-(con\014guration)11 b Fc(:)j(:)f(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)26
-b Fb(161)2025 4817 y(Bash)g(installation)9 b Fc(:)15
-b(:)e(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)24 b Fb(161)2025
-4905 y(binary)h(arithmetic)h(op)r(erators)20 b Fc(:)13
+b Fb(102)150 4735 y(arithmetic)26 b(ev)l(aluation)21
+b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
+(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)35 b Fb(100)150 4824
+y(arithmetic)26 b(expansion)11 b Fc(:)j(:)f(:)g(:)g(:)h(:)f(:)g(:)g(:)g
+(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
+26 b Fb(35)150 4914 y(arithmetic)g(op)r(erators)18 b
+Fc(:)d(:)e(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
+(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)32 b Fb(100)150 5003
+y(arithmetic,)27 b(shell)21 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f
+(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
+g(:)g(:)g(:)36 b Fb(100)150 5090 y(arra)n(ys)19 b Fc(:)13
 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
-(:)g(:)33 b Fb(99)2025 4993 y(bit)n(wise)26 b(arithmetic)h(op)r
-(erators)10 b Fc(:)k(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)g(:)g(:)g(:)h(:)24 b Fb(99)2025 5081 y(Bourne)i(shell)20
-b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)35 b Fb(5)2025 5169 y(brace)26 b(expansion)9
-b Fc(:)k(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)24
-b Fb(24)2025 5256 y(builtin)15 b Fc(:)e(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)30
-b Fb(3)p eop end
-%%Page: 192 198
-TeXDict begin 192 197 bop 150 -116 a Fu(App)s(endix)29
-b(D:)i(Indexes)2623 b(192)146 294 y Fs(C)150 413 y Fb(command)26
+g(:)g(:)g(:)g(:)34 b Fb(102)2021 4523 y Fs(B)2025 4641
+y Fb(bac)n(kground)13 b Fc(:)f(:)h(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
+(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
+f(:)g(:)g(:)g(:)g(:)g(:)28 b Fb(117)2025 4729 y(Bash)e(con\014guration)
+11 b Fc(:)j(:)f(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
+(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)26 b Fb(162)2025
+4817 y(Bash)g(installation)9 b Fc(:)15 b(:)e(:)g(:)g(:)g(:)g(:)h(:)f(:)
+g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
+(:)g(:)g(:)g(:)24 b Fb(162)2025 4905 y(binary)h(arithmetic)h(op)r
+(erators)16 b Fc(:)f(:)e(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
+g(:)g(:)g(:)g(:)h(:)31 b Fb(100)2025 4993 y(bit)n(wise)26
+b(arithmetic)h(op)r(erators)8 b Fc(:)14 b(:)f(:)g(:)g(:)h(:)f(:)g(:)g
+(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)23 b Fb(100)2025
+5081 y(Bourne)j(shell)20 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
+g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
+(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)35 b Fb(5)2025 5169
+y(brace)26 b(expansion)9 b Fc(:)k(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
+(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
+g(:)g(:)g(:)g(:)24 b Fb(24)2025 5256 y(builtin)15 b Fc(:)e(:)g(:)g(:)g
+(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
+g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f
+(:)g(:)g(:)30 b Fb(3)p eop end
+%%Page: 193 199
+TeXDict begin 193 198 bop 150 -116 a Fu(App)s(endix)29
+b(D:)i(Indexes)2623 b(193)146 294 y Fs(C)150 413 y Fb(command)26
 b(editing)19 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)34
-b Fb(121)150 501 y(command)26 b(execution)12 b Fc(:)h(:)g(:)g(:)g(:)g
+b Fb(122)150 501 y(command)26 b(execution)12 b Fc(:)h(:)g(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
-g(:)h(:)f(:)g(:)g(:)26 b Fb(42)150 590 y(command)g(expansion)c
+g(:)h(:)f(:)g(:)g(:)26 b Fb(43)150 590 y(command)g(expansion)c
 Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)36 b Fb(42)150
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)36 b Fb(43)150
 678 y(command)26 b(history)18 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)33 b Fb(155)150 766 y(command)26 b(searc)n(h)16
+g(:)g(:)g(:)33 b Fb(156)150 766 y(command)26 b(searc)n(h)16
 b Fc(:)d(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)30
-b Fb(42)150 855 y(command)c(substitution)21 b Fc(:)13
+b Fb(43)150 855 y(command)c(substitution)21 b Fc(:)13
 b(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)35 b Fb(34)150 943 y(command)26
 b(timing)11 b Fc(:)i(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
@@ -22623,17 +22701,17 @@ b Fb(9)150 1738 y(commen)n(ts,)26 b(shell)13 b Fc(:)i(:)e(:)g(:)g(:)g
 g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)28 b Fb(9)150
 1826 y(Compatibilit)n(y)f(Lev)n(el)10 b Fc(:)j(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)25 b Fb(112)150 1914 y(Compatibilit)n(y)i(Mo)r(de)22
+g(:)g(:)25 b Fb(113)150 1914 y(Compatibilit)n(y)i(Mo)r(de)22
 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
-(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)36 b Fb(112)150
+(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)36 b Fb(113)150
 2003 y(completion)27 b(builtins)21 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)g(:)36 b Fb(149)150 2091 y(conditional)27 b(arithmetic)f(op)r
-(erator)7 b Fc(:)15 b(:)e(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
-(:)g(:)g(:)h(:)21 b Fb(99)150 2179 y(con\014guration)h
-Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)36
-b Fb(161)150 2268 y(con)n(trol)26 b(op)r(erator)8 b Fc(:)15
+g(:)g(:)36 b Fb(150)150 2091 y(conditional)27 b(arithmetic)f(op)r
+(erator)d Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
+(:)37 b Fb(100)150 2179 y(con\014guration)22 b Fc(:)13
+b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)36
+b Fb(162)150 2268 y(con)n(trol)26 b(op)r(erator)8 b Fc(:)15
 b(:)e(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)23
 b Fb(3)150 2355 y(copro)r(cess)18 b Fc(:)c(:)f(:)h(:)f(:)g(:)g(:)g(:)g
@@ -22642,19 +22720,19 @@ f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)32 b
 Fb(18)146 2621 y Fs(D)150 2739 y Fb(directory)26 b(stac)n(k)9
 b Fc(:)k(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)24
-b Fb(103)146 3005 y Fs(E)150 3124 y Fb(editing)i(command)g(lines)17
+b Fb(104)146 3005 y Fs(E)150 3124 y Fb(editing)i(command)g(lines)17
 b Fc(:)d(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)g(:)32 b Fb(121)150 3213 y(en)n(vironmen)n(t)18
+f(:)g(:)g(:)g(:)g(:)g(:)g(:)32 b Fb(122)150 3213 y(en)n(vironmen)n(t)18
 b Fc(:)12 b(:)h(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)32 b Fb(44)150 3301 y(ev)l(aluation,)26 b(arithmetic)12
-b Fc(:)i(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)26 b Fb(99)150 3389
-y(ev)n(en)n(t)f(designators)c Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
+f(:)32 b Fb(45)150 3301 y(ev)l(aluation,)26 b(arithmetic)9
+b Fc(:)15 b(:)e(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
+(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)24 b Fb(100)150 3389
+y(ev)n(en)n(t)h(designators)c Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
-g(:)h(:)34 b Fb(158)150 3478 y(execution)26 b(en)n(vironmen)n(t)17
+g(:)h(:)34 b Fb(159)150 3478 y(execution)26 b(en)n(vironmen)n(t)17
 b Fc(:)12 b(:)h(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
-(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)31 b Fb(43)150 3566
+(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)31 b Fb(44)150 3566
 y(exit)25 b(status)7 b Fc(:)14 b(:)f(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)22 b Fb(3,)k(45)150 3654 y(expansion)9
@@ -22662,7 +22740,7 @@ b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)24 b Fb(24)150 3743 y(expansion,)i(arithmetic)18
 b Fc(:)c(:)f(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)32 b Fb(34)150 3831
+g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)32 b Fb(35)150 3831
 y(expansion,)26 b(brace)16 b Fc(:)d(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
 f(:)g(:)g(:)30 b Fb(24)150 3919 y(expansion,)c(\014lename)18
@@ -22675,11 +22753,11 @@ b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)22 b Fb(36)150
 4184 y(expansion,)k(tilde)14 b Fc(:)f(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)g(:)28 b Fb(25)150 4272 y(expressions,)f(arithmetic)13
-b Fc(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)27 b Fb(99)150 4360 y(expressions,)g
+h(:)f(:)g(:)g(:)g(:)28 b Fb(25)150 4272 y(expressions,)f(arithmetic)11
+b Fc(:)j(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
+h(:)f(:)g(:)g(:)g(:)g(:)g(:)26 b Fb(100)150 4360 y(expressions,)h
 (conditional)17 b Fc(:)d(:)g(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)32 b Fb(97)2021
+g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)32 b Fb(98)2021
 294 y Fs(F)2025 414 y Fb(\014eld)21 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
@@ -22691,37 +22769,37 @@ b Fb(3)2025 591 y(\014lename)26 b(expansion)11 b Fc(:)i(:)h(:)f(:)g(:)g
 g(:)g(:)h(:)f(:)g(:)g(:)26 b Fb(36)2025 680 y(foreground)9
 b Fc(:)14 b(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)24 b Fb(116)2025 767 y(functions,)i(shell)9 b
+h(:)f(:)24 b Fb(117)2025 767 y(functions,)i(shell)9 b
 Fc(:)14 b(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)24
 b Fb(19)2021 1038 y Fs(H)2025 1158 y Fb(history)h(builtins)20
 b Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)35
-b Fb(155)2025 1247 y(history)25 b(ev)n(en)n(ts)8 b Fc(:)13
+b Fb(156)2025 1247 y(history)25 b(ev)n(en)n(ts)8 b Fc(:)13
 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)23
-b Fb(158)2025 1335 y(history)i(expansion)14 b Fc(:)g(:)f(:)g(:)g(:)h(:)
+b Fb(159)2025 1335 y(history)i(expansion)14 b Fc(:)g(:)f(:)g(:)g(:)h(:)
 f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)h(:)f(:)29 b Fb(157)2025 1424 y(history)c(list)9
+(:)g(:)g(:)g(:)h(:)f(:)29 b Fb(158)2025 1424 y(history)c(list)9
 b Fc(:)15 b(:)e(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)24 b Fb(155)2025 1511 y(History)-6 b(,)25 b(ho)n(w)h(to)g(use)
+g(:)g(:)24 b Fb(156)2025 1511 y(History)-6 b(,)25 b(ho)n(w)h(to)g(use)
 19 b Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)34 b Fb(154)2021
+(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)34 b Fb(155)2021
 1782 y Fs(I)2025 1903 y Fb(iden)n(ti\014er)12 b Fc(:)g(:)h(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)27
 b Fb(3)2025 1991 y(initialization)h(\014le,)e(readline)17
 b Fc(:)d(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
-f(:)g(:)g(:)g(:)32 b Fb(123)2025 2080 y(installation)21
+f(:)g(:)g(:)g(:)32 b Fb(124)2025 2080 y(installation)21
 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
-g(:)34 b Fb(161)2025 2168 y(in)n(teraction,)26 b(readline)7
+g(:)34 b Fb(162)2025 2168 y(in)n(teraction,)26 b(readline)7
 b Fc(:)15 b(:)e(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)22 b Fb(120)2025
+(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)22 b Fb(121)2025
 2257 y(in)n(teractiv)n(e)k(shell)20 b Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)34 b Fb(94,)27 b(95)2025 2346 y(in)n(ternationalization)22
+h(:)f(:)g(:)34 b Fb(95,)27 b(96)2025 2346 y(in)n(ternationalization)22
 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)35
 b Fb(7)2025 2433 y(in)n(ternationalized)27 b(scripts)13
@@ -22732,29 +22810,29 @@ Fs(J)2025 2824 y Fb(job)23 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)38 b Fb(3)2025 2911 y(job)26 b(con)n(trol)17 b Fc(:)d(:)f(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)31 b Fb(3,)c(116)2021
+(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)31 b Fb(3,)c(117)2021
 3183 y Fs(K)2025 3303 y Fb(kill)f(ring)7 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)
 g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)22
-b Fb(122)2025 3390 y(killing)k(text)6 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g
+b Fb(123)2025 3390 y(killing)k(text)6 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)21 b
-Fb(122)2021 3661 y Fs(L)2025 3782 y Fb(lo)r(calization)i
+Fb(123)2021 3661 y Fs(L)2025 3782 y Fb(lo)r(calization)i
 Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)g(:)h(:)35 b Fb(7)2025 3869 y(login)26 b(shell)6
 b Fc(:)15 b(:)e(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)g(:)g(:)21 b Fb(94)2021 4140 y Fs(M)2025 4260
+g(:)g(:)g(:)g(:)21 b Fb(95)2021 4140 y Fs(M)2025 4260
 y Fb(matc)n(hing,)26 b(pattern)9 b Fc(:)k(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
-h(:)f(:)g(:)g(:)24 b Fb(36)2025 4347 y(metac)n(haracter)7
+h(:)f(:)g(:)g(:)24 b Fb(37)2025 4347 y(metac)n(haracter)7
 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)
 h(:)22 b Fb(3)p eop end
-%%Page: 193 199
-TeXDict begin 193 198 bop 150 -116 a Fu(App)s(endix)29
-b(D:)i(Indexes)2623 b(193)146 294 y Fs(N)150 410 y Fb(name)19
+%%Page: 194 200
+TeXDict begin 194 199 bop 150 -116 a Fu(App)s(endix)29
+b(D:)i(Indexes)2623 b(194)146 294 y Fs(N)150 410 y Fb(name)19
 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
 g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)34 b Fb(3)150 497
@@ -22763,7 +22841,7 @@ y(nativ)n(e)25 b(languages)c Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 h(:)f(:)g(:)g(:)g(:)34 b Fb(7)150 584 y(notation,)27
 b(readline)13 b Fc(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)27
-b Fb(121)146 827 y Fs(O)150 943 y Fb(op)r(erator,)g(shell)c
+b Fb(122)146 827 y Fs(O)150 943 y Fb(op)r(erator,)g(shell)c
 Fc(:)13 b(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 37 b Fb(3)146 1186 y Fs(P)150 1302 y Fb(parameter)26
@@ -22782,7 +22860,7 @@ b Fb(23)150 1650 y(pathname)k(expansion)18 b Fc(:)c(:)f(:)g(:)g(:)g(:)g
 h(:)f(:)g(:)32 b Fb(36)150 1738 y(pattern)25 b(matc)n(hing)c
 Fc(:)13 b(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)34
-b Fb(36)150 1825 y(pip)r(eline)10 b Fc(:)j(:)g(:)g(:)h(:)f(:)g(:)g(:)g
+b Fb(37)150 1825 y(pip)r(eline)10 b Fc(:)j(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)24
 b Fb(10)150 1912 y(POSIX)e Fc(:)13 b(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
@@ -22790,10 +22868,10 @@ g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)38
 b Fb(3)150 1999 y(POSIX)25 b(description)10 b Fc(:)j(:)g(:)g(:)g(:)h(:)
 f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
-(:)g(:)g(:)g(:)g(:)25 b Fb(107)150 2086 y(POSIX)g(Mo)r(de)14
+(:)g(:)g(:)g(:)g(:)25 b Fb(108)150 2086 y(POSIX)g(Mo)r(de)14
 b Fc(:)g(:)f(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)29
-b Fb(108)150 2174 y(pro)r(cess)e(group)15 b Fc(:)e(:)h(:)f(:)g(:)g(:)g
+b Fb(109)150 2174 y(pro)r(cess)e(group)15 b Fc(:)e(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)30 b Fb(3)150
 2261 y(pro)r(cess)d(group)e(ID)11 b Fc(:)i(:)g(:)g(:)g(:)g(:)g(:)g(:)g
@@ -22803,9 +22881,9 @@ g(:)g(:)g(:)g(:)g(:)g(:)26 b Fb(3)150 2348 y(pro)r(cess)h(substitution)
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)25 b Fb(35)150
 2435 y(programmable)i(completion)8 b Fc(:)14 b(:)g(:)f(:)g(:)g(:)g(:)g
 (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)23
-b Fb(146)150 2522 y(prompting)15 b Fc(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g
+b Fb(147)150 2522 y(prompting)15 b Fc(:)e(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)30 b Fb(105)146
+g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)30 b Fb(106)146
 2765 y Fs(Q)150 2881 y Fb(quoting)16 b Fc(:)d(:)g(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)31
@@ -22814,10 +22892,10 @@ b Fb(6)150 2968 y(quoting,)26 b(ANSI)18 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)g
 f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)34 b Fb(6)146
 3211 y Fs(R)150 3327 y Fb(Readline,)26 b(ho)n(w)g(to)g(use)11
 b Fc(:)i(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26 b Fb(119)150 3414
+g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)26 b Fb(120)150 3414
 y(redirection)13 b Fc(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)27 b Fb(38)150 3501 y(reserv)n(ed)f(w)n
+g(:)g(:)h(:)f(:)g(:)g(:)g(:)27 b Fb(39)150 3501 y(reserv)n(ed)f(w)n
 (ord)13 b Fc(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)28 b Fb(3)150 3589 y(reserv)n(ed)e(w)n(ords)15
@@ -22825,41 +22903,41 @@ b Fc(:)f(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
 f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)30
 b Fb(9)150 3676 y(restricted)c(shell)12 b Fc(:)i(:)f(:)g(:)h(:)f(:)g(:)
 g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)27 b Fb(107)150 3763 y(return)e(status)
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)27 b Fb(108)150 3763 y(return)e(status)
 10 b Fc(:)k(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h
 (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)25 b Fb(4)2021 294 y Fs(S)2025 418 y Fb(shell)h(arithmetic)17
-b Fc(:)d(:)f(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)31
-b Fb(99)2025 508 y(shell)26 b(function)18 b Fc(:)13 b(:)g(:)h(:)f(:)g
-(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)32 b Fb(19)2025
+g(:)g(:)25 b Fb(4)2021 294 y Fs(S)2025 418 y Fb(shell)h(arithmetic)15
+b Fc(:)f(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
+f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)30
+b Fb(100)2025 508 y(shell)c(function)18 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g
+(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
+g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)32 b Fb(19)2025
 597 y(shell)26 b(script)10 b Fc(:)k(:)f(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)25 b Fb(46)2025 687
+g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)25 b Fb(47)2025 687
 y(shell)h(v)l(ariable)7 b Fc(:)14 b(:)f(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
 h(:)f(:)g(:)g(:)g(:)g(:)g(:)22 b Fb(21)2025 777 y(shell,)k(in)n
 (teractiv)n(e)21 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
 g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g
-(:)h(:)34 b Fb(95)2025 867 y(signal)13 b Fc(:)h(:)f(:)g(:)g(:)g(:)h(:)f
+(:)h(:)34 b Fb(96)2025 867 y(signal)13 b Fc(:)h(:)f(:)g(:)g(:)g(:)h(:)f
 (:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
 (:)28 b Fb(4)2025 956 y(signal)f(handling)6 b Fc(:)13
 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)21
-b Fb(45)2025 1046 y(sp)r(ecial)27 b(builtin)16 b Fc(:)d(:)g(:)g(:)g(:)g
+b Fb(46)2025 1046 y(sp)r(ecial)27 b(builtin)16 b Fc(:)d(:)g(:)g(:)g(:)g
 (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
-g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)31 b Fb(4,)26 b(78)2025
+g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)31 b Fb(4,)26 b(79)2025
 1136 y(startup)f(\014les)10 b Fc(:)k(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)
 g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)25 b Fb(94)2025 1226
+(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)25 b Fb(95)2025 1226
 y(string)h(translations)8 b Fc(:)14 b(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:)g
 (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)
 f(:)g(:)g(:)g(:)23 b Fb(7)2025 1313 y(susp)r(ending)i(jobs)10
 b Fc(:)k(:)f(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)
 g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)25
-b Fb(116)2021 1610 y Fs(T)2025 1734 y Fb(tilde)h(expansion)7
+b Fb(117)2021 1610 y Fs(T)2025 1734 y Fb(tilde)h(expansion)7
 b Fc(:)13 b(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
 (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)22
 b Fb(25)2025 1823 y(tok)n(en)17 b Fc(:)12 b(:)i(:)f(:)g(:)g(:)g(:)g(:)g
@@ -22868,24 +22946,24 @@ f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)32
 b Fb(4)2025 1911 y(translation,)27 b(nativ)n(e)e(languages)c
 Fc(:)13 b(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
 (:)g(:)g(:)g(:)34 b Fb(7)2021 2207 y Fs(U)2025 2329 y
-Fb(unary)25 b(arithmetic)h(op)r(erators)12 b Fc(:)j(:)e(:)g(:)g(:)g(:)g
-(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)27
-b Fb(99)2021 2626 y Fs(V)2025 2750 y Fb(v)l(ariable,)f(shell)14
-b Fc(:)g(:)f(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
-g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)28
-b Fb(21)2025 2837 y(v)l(ariables,)f(readline)7 b Fc(:)13
-b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f
-(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)22 b Fb(124)2021
-3134 y Fs(W)2025 3258 y Fb(w)n(ord)10 b Fc(:)j(:)g(:)g(:)g(:)g(:)g(:)h
-(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)
-g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g
-(:)g(:)25 b Fb(4)2025 3345 y(w)n(ord)h(splitting)9 b
-Fc(:)14 b(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
+Fb(unary)25 b(arithmetic)h(op)r(erators)10 b Fc(:)15
+b(:)e(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g
+(:)g(:)25 b Fb(100)2021 2626 y Fs(V)2025 2750 y Fb(v)l(ariable,)h
+(shell)14 b Fc(:)g(:)f(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
+(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)
+g(:)g(:)28 b Fb(21)2025 2837 y(v)l(ariables,)f(readline)7
+b Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g
+(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)22
+b Fb(125)2021 3134 y Fs(W)2025 3258 y Fb(w)n(ord)10 b
+Fc(:)j(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g
 (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-24 b Fb(35)2021 3642 y Fs(Y)2025 3763 y Fb(y)n(anking)h(text)13
-b Fc(:)f(:)h(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)
-g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)28
-b Fb(122)p eop end
+g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)25 b Fb(4)2025 3345
+y(w)n(ord)h(splitting)9 b Fc(:)14 b(:)f(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
+g(:)h(:)f(:)g(:)g(:)g(:)24 b Fb(36)2021 3642 y Fs(Y)2025
+3763 y Fb(y)n(anking)h(text)13 b Fc(:)f(:)h(:)g(:)g(:)h(:)f(:)g(:)g(:)g
+(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)
+g(:)h(:)f(:)g(:)g(:)g(:)g(:)28 b Fb(123)p eop end
 %%Trailer
 
 userdict /end-hook known{end-hook}if
index a87c57067fb5df71c0af605c9beaa03d814ce243..e6696fd23915ace2082b22c4d47ca11e52313bab 100644 (file)
@@ -2667,7 +2667,7 @@ which executes @var{command} in the current execution environment
 and captures its output, again with trailing newlines removed.
 
 The character @var{c} following the open brace must be a space, tab,
-newline, @samp{(}, or @samp{|}, and the close brace must be in a position
+newline, or @samp{|}, and the close brace must be in a position
 where a reserved word may appear (i.e., preceded by a command terminator
 such as semicolon).
 Bash allows the close brace to be joined to the remaining characters in
@@ -2686,11 +2686,8 @@ function is executing, and the @code{return} builtin forces
 however, the rest of the execution environment,
 including the positional parameters, is shared with the caller.
 
-If the first character following the open brace is a @samp{(},
-@var{command} is executed in a subshell, and @var{command} must be
-terminated by a @samp{)}. This is similar to the @code{(} compound
-command (@pxref{Command Grouping}).
-If the first character is a @samp{|}, the construct expands to the
+If the first character following the open brace
+is a @samp{|}, the construct expands to the
 value of the @code{REPLY} shell variable after @var{command} executes,
 without removing any trailing newlines,
 and the standard output of @var{command} remains the same as in the
@@ -2704,6 +2701,7 @@ For example, this construct expands to @samp{12345}, and leaves the
 shell variable @code{X} unchanged in the current execution environment:
 
 @example
+
 $@{ local X=12345 ; echo $X; @}
 @end example
 
index b21f23a72de701b7c57e1c956234a99c11f24c0b..7a3cde9a5083d3678a0bf5a90a8639d669696c33 100644 (file)
@@ -609,6 +609,8 @@ B\bBA\bAS\bSH\bH B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
               of the _\bn_\ba_\bm_\be_\bs is not a valid shell variable name, or -\b-f\bf  is  sup-
               plied with a _\bn_\ba_\bm_\be that is not a function.
 
+       f\bfa\bal\bls\bse\be  Does nothing, returns a non-zero status.
+
        f\bfc\bc [-\b-e\be _\be_\bn_\ba_\bm_\be] [-\b-l\bln\bnr\br] [_\bf_\bi_\br_\bs_\bt] [_\bl_\ba_\bs_\bt]
        f\bfc\bc -\b-s\bs [_\bp_\ba_\bt=_\br_\be_\bp] [_\bc_\bm_\bd]
               The  first  form  selects a range of commands from _\bf_\bi_\br_\bs_\bt to _\bl_\ba_\bs_\bt
@@ -1836,6 +1838,8 @@ B\bBA\bAS\bSH\bH B\bBU\bUI\bIL\bLT\bTI\bIN\bN C\bCO\bOM\bMM\bMA\bAN\bND\bDS\bS
               or subshell environment when one is created.  The return  status
               is false if any _\bs_\bi_\bg_\bs_\bp_\be_\bc is invalid; otherwise t\btr\bra\bap\bp returns true.
 
+       t\btr\bru\bue\be   Does nothing, returns a 0 status.
+
        t\bty\byp\bpe\be [-\b-a\baf\bft\btp\bpP\bP] _\bn_\ba_\bm_\be [_\bn_\ba_\bm_\be ...]
               With  no options, indicate how each _\bn_\ba_\bm_\be would be interpreted if
               used as a command name.  If the -\b-t\bt option is used, t\bty\byp\bpe\be prints a
index 86cff54dd9b75b0630f44cd670d6c0b7b3b9b325..a757b01b84f66fd224f3a9bb6a0b7f5f59a9194d 100644 (file)
@@ -1,6 +1,6 @@
 %!PS-Adobe-3.0
 %%Creator: groff version 1.22.4
-%%CreationDate: Tue Apr 18 10:26:00 2023
+%%CreationDate: Mon May 22 09:42:13 2023
 %%DocumentNeededResources: font Times-Roman
 %%+ font Times-Bold
 %%+ font Times-Italic
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(fc)108 84 Q F0([)2.5
-E F1<ad65>A/F2 10/Times-Italic@0 SF(ename)2.5 E F0 2.5(][)C F1(\255lnr)
--2.5 E F0 2.5(][)C F2<8c72>-2.5 E(st)-.1 E F0 2.5(][)C F2(last)-2.5 E F0
-(])A F1(fc \255s)108 96 Q F0([)2.5 E F2(pat)A F0(=)A F2 -.37(re)C(p).37
-E F0 2.5(][)C F2(cmd)-2.5 E F0(])A .432
-(The \214rst form selects a range of commands from)144 108 R F2<8c72>
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(false)108 84 Q F0
+(Does nothing, returns a non-zero status.)144 84 Q F1(fc)108 100.8 Q F0
+([)2.5 E F1<ad65>A/F2 10/Times-Italic@0 SF(ename)2.5 E F0 2.5(][)C F1
+(\255lnr)-2.5 E F0 2.5(][)C F2<8c72>-2.5 E(st)-.1 E F0 2.5(][)C F2(last)
+-2.5 E F0(])A F1(fc \255s)108 112.8 Q F0([)2.5 E F2(pat)A F0(=)A F2 -.37
+(re)C(p).37 E F0 2.5(][)C F2(cmd)-2.5 E F0(])A .432
+(The \214rst form selects a range of commands from)144 124.8 R F2<8c72>
 4.842 E(st)-.1 E F0(to)3.612 E F2(last)3.022 E F0 .431
 (from the history list and displays or)3.612 F .141(edits and re-e)144
-120 R -.15(xe)-.15 G .141(cutes them.).15 F F2 -.45(Fi)5.141 G -.1(rs)
+136.8 R -.15(xe)-.15 G .141(cutes them.).15 F F2 -.45(Fi)5.141 G -.1(rs)
 .45 G(t).1 E F0(and)3.321 E F2(last)2.731 E F0 .141
 (may be speci\214ed as a string \(to locate the last command)3.321 F(be)
-144 132 Q .311(ginning with that string\) or as a number \(an inde)-.15
-F 2.811(xi)-.15 G .31(nto the history list, where a ne)-2.811 F -.05(ga)
--.15 G(ti).05 E .61 -.15(ve n)-.25 H(umber).15 E .071(is used as an of)
-144 144 R .071(fset from the current command number\).)-.25 F .071
-(When listing, a)5.071 F F2<8c72>2.571 E(st)-.1 E F0(or)2.571 E F2(last)
-2.571 E F0 .071(of 0 is equi)2.571 F -.25(va)-.25 G(-).25 E .653
-(lent to \2551 and \2550 is equi)144 156 R -.25(va)-.25 G .653
+144 148.8 Q .311(ginning with that string\) or as a number \(an inde)
+-.15 F 2.811(xi)-.15 G .31(nto the history list, where a ne)-2.811 F
+-.05(ga)-.15 G(ti).05 E .61 -.15(ve n)-.25 H(umber).15 E .071
+(is used as an of)144 160.8 R .071
+(fset from the current command number\).)-.25 F .071(When listing, a)
+5.071 F F2<8c72>2.571 E(st)-.1 E F0(or)2.571 E F2(last)2.571 E F0 .071
+(of 0 is equi)2.571 F -.25(va)-.25 G(-).25 E .653
+(lent to \2551 and \2550 is equi)144 172.8 R -.25(va)-.25 G .653
 (lent to the current command \(usually the).25 F F1(fc)3.153 E F0 .653
-(command\); otherwise 0 is)3.153 F(equi)144 168 Q -.25(va)-.25 G .242
+(command\); otherwise 0 is)3.153 F(equi)144 184.8 Q -.25(va)-.25 G .242
 (lent to \2551 and \2550 is in).25 F -.25(va)-.4 G 2.742(lid. If).25 F
 F2(last)2.832 E F0 .242
 (is not speci\214ed, it is set to the current command for list-)3.422 F
-.093(ing \(so that)144 180 R/F3 10/Courier@0 SF .093(fc \255l \25510)
+.093(ing \(so that)144 196.8 R/F3 10/Courier@0 SF .093(fc \255l \25510)
 2.593 F F0 .093(prints the last 10 commands\) and to)2.593 F F2<8c72>
 4.502 E(st)-.1 E F0 2.592(otherwise. If)3.272 F F2<8c72>4.502 E(st)-.1 E
-F0 .092(is not speci-)3.272 F(\214ed, it is set to the pre)144 192 Q
-(vious command for editing and \25516 for listing.)-.25 E(The)144 216 Q
-F1<ad6e>2.522 E F0 .022
+F0 .092(is not speci-)3.272 F(\214ed, it is set to the pre)144 208.8 Q
+(vious command for editing and \25516 for listing.)-.25 E(The)144 232.8
+F1<ad6e>2.522 E F0 .022
 (option suppresses the command numbers when listing.)2.522 F(The)5.022 E
 F1<ad72>2.522 E F0 .022(option re)2.522 F -.15(ve)-.25 G .022
-(rses the order of).15 F .438(the commands.)144 228 R .438(If the)5.438
-F F1<ad6c>2.938 E F0 .438(option is gi)2.938 F -.15(ve)-.25 G .438
+(rses the order of).15 F .438(the commands.)144 244.8 R .438(If the)
+5.438 F F1<ad6c>2.938 E F0 .438(option is gi)2.938 F -.15(ve)-.25 G .438
 (n, the commands are listed on standard output.).15 F(Otherwise,)5.438 E
-.334(the editor gi)144 240 R -.15(ve)-.25 G 2.834(nb).15 G(y)-2.834 E F2
-(ename)3.024 E F0 .335(is in)3.014 F -.2(vo)-.4 G -.1(ke).2 G 2.835(do)
-.1 G 2.835(na\214)-2.835 G .335(le containing those commands.)-2.835 F
-(If)5.335 E F2(ename)3.025 E F0 .335(is not gi)3.015 F -.15(ve)-.25 G
-(n,).15 E .631(the v)144 252 R .631(alue of the)-.25 F/F4 9/Times-Bold@0
-SF(FCEDIT)3.131 E F0 -.25(va)2.881 G .631(riable is used, and the v).25
-F .631(alue of)-.25 F F4(EDIT)3.131 E(OR)-.162 E F0(if)2.881 E F4
-(FCEDIT)3.13 E F0 .63(is not set.)2.88 F .63(If nei-)5.63 F .005(ther v)
-144 264 R .005(ariable is set,)-.25 F F2(vi)4.171 E F0 .005(is used.)
-4.171 F .005
+.334(the editor gi)144 256.8 R -.15(ve)-.25 G 2.834(nb).15 G(y)-2.834 E
+F2(ename)3.024 E F0 .335(is in)3.014 F -.2(vo)-.4 G -.1(ke).2 G 2.835
+(do).1 G 2.835(na\214)-2.835 G .335(le containing those commands.)-2.835
+F(If)5.335 E F2(ename)3.025 E F0 .335(is not gi)3.015 F -.15(ve)-.25 G
+(n,).15 E .631(the v)144 268.8 R .631(alue of the)-.25 F/F4 9
+/Times-Bold@0 SF(FCEDIT)3.131 E F0 -.25(va)2.881 G .631
+(riable is used, and the v).25 F .631(alue of)-.25 F F4(EDIT)3.131 E(OR)
+-.162 E F0(if)2.881 E F4(FCEDIT)3.13 E F0 .63(is not set.)2.88 F .63
+(If nei-)5.63 F .005(ther v)144 280.8 R .005(ariable is set,)-.25 F F2
+(vi)4.171 E F0 .005(is used.)4.171 F .005
 (When editing is complete, the edited commands are echoed and e)5.005 F
-(x-)-.15 E(ecuted.)144 276 Q .789(In the second form,)144 300 R F2
+(x-)-.15 E(ecuted.)144 292.8 Q .789(In the second form,)144 316.8 R F2
 (command)3.288 E F0 .788(is re-e)3.288 F -.15(xe)-.15 G .788
 (cuted after each instance of).15 F F2(pat)3.288 E F0 .788
 (is replaced by)3.288 F F2 -.37(re)3.288 G(p).37 E F0(.)A F2(Com-)5.788
-E(mand)144 312 Q F0 .171(is interpreted the same as)2.671 F F2<8c72>
+E(mand)144 328.8 Q F0 .171(is interpreted the same as)2.671 F F2<8c72>
 2.671 E(st)-.1 E F0(abo)2.671 E -.15(ve)-.15 G 5.171(.A).15 G .172
 (useful alias to use with this is)-2.499 F F3 .172(r='fc \255s')2.672 F
-F0 2.672(,s)C 2.672(ot)-2.672 G(hat)-2.672 E(typing)144 324 Q F3 7.166
+F0 2.672(,s)C 2.672(ot)-2.672 G(hat)-2.672 E(typing)144 340.8 Q F3 7.166
 (rc)3.666 G(c)-7.166 E F0 1.166(runs the last command be)3.666 F 1.166
 (ginning with)-.15 F F3(cc)3.666 E F0 1.165(and typing)3.666 F F3(r)
 3.665 E F0(re-e)3.665 E -.15(xe)-.15 G 1.165(cutes the last com-).15 F
-(mand.)144 336 Q .142(If the \214rst form is used, the return v)144 360
-R .142(alue is 0 unless an in)-.25 F -.25(va)-.4 G .142
+(mand.)144 352.8 Q .142(If the \214rst form is used, the return v)144
+376.8 R .142(alue is 0 unless an in)-.25 F -.25(va)-.4 G .142
 (lid option is encountered or).25 F F2<8c72>4.552 E(st)-.1 E F0(or)3.322
-E F2(last)2.732 E F0 .455(specify history lines out of range.)144 372 R
-.454(If the)5.454 F F1<ad65>2.954 E F0 .454
+E F2(last)2.732 E F0 .455(specify history lines out of range.)144 388.8
+.454(If the)5.454 F F1<ad65>2.954 E F0 .454
 (option is supplied, the return v)2.954 F .454(alue is the v)-.25 F .454
-(alue of the)-.25 F .787(last command e)144 384 R -.15(xe)-.15 G .787
+(alue of the)-.25 F .787(last command e)144 400.8 R -.15(xe)-.15 G .787
 (cuted or f).15 F .788
 (ailure if an error occurs with the temporary \214le of commands.)-.1 F
 .788(If the)5.788 F 1.136
 (second form is used, the return status is that of the command re-e)144
-396 R -.15(xe)-.15 G 1.135(cuted, unless).15 F F2(cmd)3.835 E F0 1.135
-(does not)4.405 F(specify a v)144 408 Q
+412.8 R -.15(xe)-.15 G 1.135(cuted, unless).15 F F2(cmd)3.835 E F0 1.135
+(does not)4.405 F(specify a v)144 424.8 Q
 (alid history line, in which case)-.25 E F1(fc)2.5 E F0(returns f)2.5 E
-(ailure.)-.1 E F1(fg)108 424.8 Q F0([)2.5 E F2(jobspec)A F0(])A(Resume)
-144 436.8 Q F2(jobspec)5.653 E F0 1.413(in the fore)4.223 F 1.413
+(ailure.)-.1 E F1(fg)108 441.6 Q F0([)2.5 E F2(jobspec)A F0(])A(Resume)
+144 453.6 Q F2(jobspec)5.653 E F0 1.413(in the fore)4.223 F 1.413
 (ground, and mak)-.15 F 3.913(ei)-.1 G 3.913(tt)-3.913 G 1.413
 (he current job)-3.913 F 6.413(.I)-.4 G(f)-6.413 E F2(jobspec)5.653 E F0
-1.414(is not present, the)4.223 F(shell')144 448.8 Q 3.117(sn)-.55 G
+1.414(is not present, the)4.223 F(shell')144 465.6 Q 3.117(sn)-.55 G
 .617(otion of the)-3.117 F F2(curr)3.117 E .617(ent job)-.37 F F0 .617
 (is used.)3.117 F .617(The return v)5.617 F .616
-(alue is that of the command placed into the)-.25 F(fore)144 460.8 Q
+(alue is that of the command placed into the)-.25 F(fore)144 477.6 Q
 .362(ground, or f)-.15 F .362
 (ailure if run when job control is disabled or)-.1 F 2.862(,w)-.4 G .363
-(hen run with job control enabled, if)-2.862 F F2(jobspec)145.74 472.8 Q
+(hen run with job control enabled, if)-2.862 F F2(jobspec)145.74 489.6 Q
 F0(does not specify a v)2.81 E(alid job or)-.25 E F2(jobspec)4.24 E F0
 (speci\214es a job that w)2.81 E(as started without job control.)-.1 E
-F1(getopts)108 489.6 Q F2(optstring name)2.5 E F0([)2.5 E F2(ar)A 2.5
-(g.)-.37 G(..)-2.5 E F0(])A F1(getopts)144 501.6 Q F0 .793
+F1(getopts)108 506.4 Q F2(optstring name)2.5 E F0([)2.5 E F2(ar)A 2.5
+(g.)-.37 G(..)-2.5 E F0(])A F1(getopts)144 518.4 Q F0 .793
 (is used by shell procedures to parse positional parameters.)3.294 F F2
 (optstring)6.023 E F0 .793(contains the option)3.513 F .149
-(characters to be recognized; if a character is follo)144 513.6 R .15
+(characters to be recognized; if a character is follo)144 530.4 R .15
 (wed by a colon, the option is e)-.25 F .15(xpected to ha)-.15 F .45
--.15(ve a)-.2 H(n).15 E(ar)144 525.6 Q .579
+-.15(ve a)-.2 H(n).15 E(ar)144 542.4 Q .579
 (gument, which should be separated from it by white space.)-.18 F .578
 (The colon and question mark char)5.579 F(-)-.2 E .636
-(acters may not be used as option characters.)144 537.6 R .636
+(acters may not be used as option characters.)144 554.4 R .636
 (Each time it is in)5.636 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F1(getopts)
 3.136 E F0 .636(places the ne)3.136 F .636(xt op-)-.15 F .03
-(tion in the shell v)144 549.6 R(ariable)-.25 E F2(name)2.89 E F0 2.53
+(tion in the shell v)144 566.4 R(ariable)-.25 E F2(name)2.89 E F0 2.53
 (,i).18 G(nitializing)-2.53 E F2(name)2.89 E F0 .029(if it does not e)
 2.71 F .029(xist, and the inde)-.15 F 2.529(xo)-.15 G 2.529(ft)-2.529 G
 .029(he ne)-2.529 F .029(xt ar)-.15 F(gu-)-.18 E .065
-(ment to be processed into the v)144 561.6 R(ariable)-.25 E F4(OPTIND)
+(ment to be processed into the v)144 578.4 R(ariable)-.25 E F4(OPTIND)
 2.565 E/F5 9/Times-Roman@0 SF(.)A F4(OPTIND)4.565 E F0 .066
 (is initialized to 1 each time the shell or a)2.315 F .885
-(shell script is in)144 573.6 R -.2(vo)-.4 G -.1(ke).2 G 3.385(d. When)
+(shell script is in)144 590.4 R -.2(vo)-.4 G -.1(ke).2 G 3.385(d. When)
 .1 F .885(an option requires an ar)3.385 F(gument,)-.18 E F1(getopts)
 3.385 E F0 .885(places that ar)3.385 F .885(gument into)-.18 F .566
-(the v)144 585.6 R(ariable)-.25 E F4(OPT)3.066 E(ARG)-.81 E F5(.)A F0
+(the v)144 602.4 R(ariable)-.25 E F4(OPT)3.066 E(ARG)-.81 E F5(.)A F0
 .566(The shell does not reset)5.066 F F4(OPTIND)3.066 E F0 .567
 (automatically; it must be manually reset)2.816 F .39
-(between multiple calls to)144 597.6 R F1(getopts)2.89 E F0 .39
+(between multiple calls to)144 614.4 R F1(getopts)2.89 E F0 .39
 (within the same shell in)2.89 F -.2(vo)-.4 G .389(cation if a ne).2 F
-2.889(ws)-.25 G .389(et of parameters is to)-2.889 F(be used.)144 609.6
-Q 2.043(When the end of options is encountered,)144 633.6 R F1(getopts)
+2.889(ws)-.25 G .389(et of parameters is to)-2.889 F(be used.)144 626.4
+Q 2.043(When the end of options is encountered,)144 650.4 R F1(getopts)
 4.543 E F0 -.15(ex)4.543 G 2.043(its with a return v).15 F 2.044
-(alue greater than zero.)-.25 F F4(OPTIND)144 645.6 Q F0
+(alue greater than zero.)-.25 F F4(OPTIND)144 662.4 Q F0
 (is set to the inde)2.25 E 2.5(xo)-.15 G 2.5(ft)-2.5 G
 (he \214rst non-option ar)-2.5 E(gument, and)-.18 E F2(name)2.5 E F0
-(is set to ?.)2.5 E F1(getopts)144 669.6 Q F0 .485
+(is set to ?.)2.5 E F1(getopts)144 686.4 Q F0 .485
 (normally parses the positional parameters, b)2.985 F .485
 (ut if more ar)-.2 F .485(guments are supplied as)-.18 F F2(ar)3.315 E
-(g)-.37 E F0 -.25(va)3.205 G(l-).25 E(ues,)144 681.6 Q F1(getopts)2.5 E
-F0(parses those instead.)2.5 E F1(getopts)144 705.6 Q F0 .345
-(can report errors in tw)2.845 F 2.845(ow)-.1 G 2.845(ays. If)-2.945 F
-.345(the \214rst character of)2.845 F F2(optstring)3.075 E F0 .345
-(is a colon,)3.065 F F2(silent)3.185 E F0 .345(error re-)3.525 F 1.669
-(porting is used.)144 717.6 R 1.668
-(In normal operation, diagnostic messages are printed when in)6.669 F
--.25(va)-.4 G 1.668(lid options or).25 F .393(missing option ar)144
-729.6 R .393(guments are encountered.)-.18 F .394(If the v)5.394 F
-(ariable)-.25 E F4(OPTERR)2.894 E F0 .394
-(is set to 0, no error messages)2.644 F(GNU Bash 5.2)72 768 Q
-(2023 January 27)141.79 E(9)195.95 E 0 Cg EP
+(g)-.37 E F0 -.25(va)3.205 G(l-).25 E(ues,)144 698.4 Q F1(getopts)2.5 E
+F0(parses those instead.)2.5 E F1(getopts)144 722.4 Q F0 1.165
+(can report errors in tw)3.665 F 3.665(ow)-.1 G 3.665(ays. If)-3.765 F
+1.165(the \214rst character of)3.665 F F2(optstring)3.895 E F0 1.166
+(is a colon,)3.886 F F2(silent)4.006 E F0(error)4.346 E(GNU Bash 5.2)72
+768 Q(2023 January 27)141.79 E(9)195.95 E 0 Cg EP
 %%Page: 10 10
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E(will be displayed, e)144 84 Q -.15(ve)-.25
-G 2.5(ni).15 G 2.5(ft)-2.5 G(he \214rst character of)-2.5 E/F1 10
-/Times-Italic@0 SF(optstring)2.73 E F0(is not a colon.)2.72 E .667
-(If an in)144 108 R -.25(va)-.4 G .667(lid option is seen,).25 F/F2 10
-/Times-Bold@0 SF(getopts)3.167 E F0 .667(places ? into)3.167 F F1(name)
+E(UIL)-.1 E(TINS\(1\))-.92 E 1.071(reporting is used.)144 84 R 1.071
+(In normal operation, diagnostic messages are printed when in)6.071 F
+-.25(va)-.4 G 1.07(lid options or).25 F .393(missing option ar)144 96 R
+.393(guments are encountered.)-.18 F .394(If the v)5.394 F(ariable)-.25
+E/F1 9/Times-Bold@0 SF(OPTERR)2.894 E F0 .394
+(is set to 0, no error messages)2.644 F(will be displayed, e)144 108 Q
+-.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he \214rst character of)-2.5 E
+/F2 10/Times-Italic@0 SF(optstring)2.73 E F0(is not a colon.)2.72 E .667
+(If an in)144 132 R -.25(va)-.4 G .667(lid option is seen,).25 F/F3 10
+/Times-Bold@0 SF(getopts)3.167 E F0 .667(places ? into)3.167 F F2(name)
 3.527 E F0 .666(and, if not silent, prints an error message)3.347 F .399
-(and unsets)144 120 R/F3 9/Times-Bold@0 SF(OPT)2.899 E(ARG)-.81 E/F4 9
-/Times-Roman@0 SF(.)A F0(If)4.899 E F2(getopts)2.899 E F0 .399
-(is silent, the option character found is placed in)2.899 F F3(OPT)2.899
-E(ARG)-.81 E F0 .4(and no)2.65 F(diagnostic message is printed.)144 132
-Q 1.242(If a required ar)144 156 R 1.242(gument is not found, and)-.18 F
-F2(getopts)3.741 E F0 1.241(is not silent, a question mark \()3.741 F F2
+(and unsets)144 144 R F1(OPT)2.899 E(ARG)-.81 E/F4 9/Times-Roman@0 SF(.)
+A F0(If)4.899 E F3(getopts)2.899 E F0 .399
+(is silent, the option character found is placed in)2.899 F F1(OPT)2.899
+E(ARG)-.81 E F0 .4(and no)2.65 F(diagnostic message is printed.)144 156
+Q 1.242(If a required ar)144 180 R 1.242(gument is not found, and)-.18 F
+F3(getopts)3.741 E F0 1.241(is not silent, a question mark \()3.741 F F3
 (?).833 E F0 3.741(\)i).833 G 3.741(sp)-3.741 G 1.241(laced in)-3.741 F
-F1(name)144.36 168 Q F0(,).18 E F3(OPT)2.713 E(ARG)-.81 E F0 .213
-(is unset, and a diagnostic message is printed.)2.463 F(If)5.213 E F2
-(getopts)2.713 E F0 .213(is silent, then a colon \()2.713 F F2(:).833 E
-F0(\)).833 E(is placed in)144 180 Q F1(name)2.86 E F0(and)2.68 E F3(OPT)
-2.5 E(ARG)-.81 E F0(is set to the option character found.)2.25 E F2
-(getopts)144 204 Q F0 .902
+F2(name)144.36 192 Q F0(,).18 E F1(OPT)2.713 E(ARG)-.81 E F0 .213
+(is unset, and a diagnostic message is printed.)2.463 F(If)5.213 E F3
+(getopts)2.713 E F0 .213(is silent, then a colon \()2.713 F F3(:).833 E
+F0(\)).833 E(is placed in)144 204 Q F2(name)2.86 E F0(and)2.68 E F1(OPT)
+2.5 E(ARG)-.81 E F0(is set to the option character found.)2.25 E F3
+(getopts)144 228 Q F0 .902
 (returns true if an option, speci\214ed or unspeci\214ed, is found.)
 3.402 F .902(It returns f)5.902 F .901(alse if the end of)-.1 F
-(options is encountered or an error occurs.)144 216 Q F2(hash)108 232.8
-Q F0([)2.5 E F2(\255lr)A F0 2.5(][)C F2<ad70>-2.5 E F1(\214lename)2.5 E
-F0 2.5(][)C F2(\255dt)-2.5 E F0 2.5(][)C F1(name)-2.5 E F0(])A .858
-(Each time)144 244.8 R F2(hash)3.358 E F0 .858(is in)3.358 F -.2(vo)-.4
-G -.1(ke).2 G .858(d, the full pathname of the command).1 F F1(name)
+(options is encountered or an error occurs.)144 240 Q F3(hash)108 256.8
+Q F0([)2.5 E F3(\255lr)A F0 2.5(][)C F3<ad70>-2.5 E F2(\214lename)2.5 E
+F0 2.5(][)C F3(\255dt)-2.5 E F0 2.5(][)C F2(name)-2.5 E F0(])A .858
+(Each time)144 268.8 R F3(hash)3.358 E F0 .858(is in)3.358 F -.2(vo)-.4
+G -.1(ke).2 G .858(d, the full pathname of the command).1 F F2(name)
 3.718 E F0 .858(is determined by searching)3.538 F .956
-(the directories in)144 256.8 R F2($P)3.456 E -.95(AT)-.74 G(H).95 E F0
+(the directories in)144 280.8 R F3($P)3.456 E -.95(AT)-.74 G(H).95 E F0
 .956(and remembered.)3.456 F(An)5.956 E 3.456(yp)-.15 G(re)-3.456 E .956
-(viously-remembered pathname is discarded.)-.25 F .242(If the)144 268.8
-R F2<ad70>2.742 E F0 .243
-(option is supplied, no path search is performed, and)2.742 F F1
+(viously-remembered pathname is discarded.)-.25 F .242(If the)144 292.8
+R F3<ad70>2.742 E F0 .243
+(option is supplied, no path search is performed, and)2.742 F F2
 (\214lename)4.653 E F0 .243(is used as the full \214lename)2.923 F .615
-(of the command.)144 280.8 R(The)5.615 E F2<ad72>3.115 E F0 .615
+(of the command.)144 304.8 R(The)5.615 E F3<ad72>3.115 E F0 .615
 (option causes the shell to for)3.115 F .615
-(get all remembered locations.)-.18 F(The)5.615 E F2<ad64>3.115 E F0
-(op-)3.115 E .293(tion causes the shell to for)144 292.8 R .293
-(get the remembered location of each)-.18 F F1(name)2.794 E F0 5.294(.I)
-C 2.794(ft)-5.294 G(he)-2.794 E F2<ad74>2.794 E F0 .294
+(get all remembered locations.)-.18 F(The)5.615 E F3<ad64>3.115 E F0
+(op-)3.115 E .293(tion causes the shell to for)144 316.8 R .293
+(get the remembered location of each)-.18 F F2(name)2.794 E F0 5.294(.I)
+C 2.794(ft)-5.294 G(he)-2.794 E F3<ad74>2.794 E F0 .294
 (option is supplied,)2.794 F .028(the full pathname to which each)144
-304.8 R F1(name)2.528 E F0 .028(corresponds is printed.)2.528 F .028
-(If multiple)5.028 F F1(name)2.528 E F0(ar)2.528 E .028
-(guments are sup-)-.18 F .175(plied with)144 316.8 R F2<ad74>2.675 E F0
-2.675(,t)C(he)-2.675 E F1(name)2.675 E F0 .175
-(is printed before the hashed full pathname.)2.675 F(The)5.175 E F2
+328.8 R F2(name)2.528 E F0 .028(corresponds is printed.)2.528 F .028
+(If multiple)5.028 F F2(name)2.528 E F0(ar)2.528 E .028
+(guments are sup-)-.18 F .175(plied with)144 340.8 R F3<ad74>2.675 E F0
+2.675(,t)C(he)-2.675 E F2(name)2.675 E F0 .175
+(is printed before the hashed full pathname.)2.675 F(The)5.175 E F3
 <ad6c>2.676 E F0 .176(option causes output to)2.676 F .783
-(be displayed in a format that may be reused as input.)144 328.8 R .783
+(be displayed in a format that may be reused as input.)144 352.8 R .783
 (If no ar)5.783 F .783(guments are gi)-.18 F -.15(ve)-.25 G .783
-(n, or if only).15 F F2<ad6c>3.283 E F0(is)3.283 E .807
-(supplied, information about remembered commands is printed.)144 340.8 R
-.807(The return status is true unless a)5.807 F F1(name)144.36 352.8 Q
+(n, or if only).15 F F3<ad6c>3.283 E F0(is)3.283 E .807
+(supplied, information about remembered commands is printed.)144 364.8 R
+.807(The return status is true unless a)5.807 F F2(name)144.36 376.8 Q
 F0(is not found or an in)2.68 E -.25(va)-.4 G(lid option is supplied.)
-.25 E F2(help)108 369.6 Q F0([)2.5 E F2(\255dms)A F0 2.5(][)C F1
+.25 E F3(help)108 393.6 Q F0([)2.5 E F3(\255dms)A F0 2.5(][)C F2
 (pattern)-2.5 E F0(])A .867(Display helpful information about b)144
-381.6 R .867(uiltin commands.)-.2 F(If)5.867 E F1(pattern)4.617 E F0
-.866(is speci\214ed,)3.607 F F2(help)3.366 E F0(gi)3.366 E -.15(ve)-.25
+405.6 R .867(uiltin commands.)-.2 F(If)5.867 E F2(pattern)4.617 E F0
+.866(is speci\214ed,)3.607 F F3(help)3.366 E F0(gi)3.366 E -.15(ve)-.25
 G 3.366(sd).15 G(etailed)-3.366 E .223(help on all commands matching)144
-393.6 R F1(pattern)3.973 E F0 2.723(;o).24 G .223
+417.6 R F2(pattern)3.973 E F0 2.723(;o).24 G .223
 (therwise help for all the b)-2.723 F .224
-(uiltins and shell control struc-)-.2 F(tures is printed.)144 405.6 Q F2
-<ad64>144 417.6 Q F0(Display a short description of each)180 417.6 Q F1
-(pattern)2.5 E F2<ad6d>144 429.6 Q F0(Display the description of each)
-180 429.6 Q F1(pattern)2.5 E F0(in a manpage-lik)2.5 E 2.5(ef)-.1 G
-(ormat)-2.5 E F2<ad73>144 441.6 Q F0
-(Display only a short usage synopsis for each)180 441.6 Q F1(pattern)2.5
-E F0(The return status is 0 unless no command matches)144 458.4 Q F1
-(pattern)3.75 E F0(.).24 E F2(history [)108 475.2 Q F1(n)A F2(])A
-(history \255c)108 487.2 Q(history \255d)108 499.2 Q F1(of)2.5 E(fset)
--.18 E F2(history \255d)108 511.2 Q F1(start)2.5 E F0(-)A F1(end)A F2
-(history \255anrw)108 523.2 Q F0([)2.5 E F1(\214lename)A F0(])A F2
-(history \255p)108 535.2 Q F1(ar)2.5 E(g)-.37 E F0([)2.5 E F1(ar)A 2.5
-(g.)-.37 G(..)-2.5 E F0(])A F2(history \255s)108 547.2 Q F1(ar)2.5 E(g)
--.37 E F0([)2.5 E F1(ar)A 2.5(g.)-.37 G(..)-2.5 E F0(])A -.4(Wi)144
-559.2 S .752
+(uiltins and shell control struc-)-.2 F(tures is printed.)144 429.6 Q F3
+<ad64>144 441.6 Q F0(Display a short description of each)180 441.6 Q F2
+(pattern)2.5 E F3<ad6d>144 453.6 Q F0(Display the description of each)
+180 453.6 Q F2(pattern)2.5 E F0(in a manpage-lik)2.5 E 2.5(ef)-.1 G
+(ormat)-2.5 E F3<ad73>144 465.6 Q F0
+(Display only a short usage synopsis for each)180 465.6 Q F2(pattern)2.5
+E F0(The return status is 0 unless no command matches)144 482.4 Q F2
+(pattern)3.75 E F0(.).24 E F3(history [)108 499.2 Q F2(n)A F3(])A
+(history \255c)108 511.2 Q(history \255d)108 523.2 Q F2(of)2.5 E(fset)
+-.18 E F3(history \255d)108 535.2 Q F2(start)2.5 E F0(-)A F2(end)A F3
+(history \255anrw)108 547.2 Q F0([)2.5 E F2(\214lename)A F0(])A F3
+(history \255p)108 559.2 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A 2.5
+(g.)-.37 G(..)-2.5 E F0(])A F3(history \255s)108 571.2 Q F2(ar)2.5 E(g)
+-.37 E F0([)2.5 E F2(ar)A 2.5(g.)-.37 G(..)-2.5 E F0(])A -.4(Wi)144
+583.2 S .752
 (th no options, display the command history list with line numbers.).4 F
-.752(Lines listed with a)5.752 F F2(*)3.251 E F0(ha)3.251 E -.15(ve)-.2
-G .38(been modi\214ed.)144 571.2 R .38(An ar)5.38 F .38(gument of)-.18 F
-F1(n)3.24 E F0 .38(lists only the last)3.12 F F1(n)3.24 E F0 2.88
-(lines. If)3.12 F .38(the shell v)2.88 F(ariable)-.25 E F3(HISTTIMEFOR-)
-2.881 E(MA)144 583.2 Q(T)-.855 E F0 .265
-(is set and not null, it is used as a format string for)2.515 F F1
+.752(Lines listed with a)5.752 F F3(*)3.251 E F0(ha)3.251 E -.15(ve)-.2
+G .38(been modi\214ed.)144 595.2 R .38(An ar)5.38 F .38(gument of)-.18 F
+F2(n)3.24 E F0 .38(lists only the last)3.12 F F2(n)3.24 E F0 2.88
+(lines. If)3.12 F .38(the shell v)2.88 F(ariable)-.25 E F1(HISTTIMEFOR-)
+2.881 E(MA)144 607.2 Q(T)-.855 E F0 .265
+(is set and not null, it is used as a format string for)2.515 F F2
 (strftime)2.764 E F0 .264(\(3\) to display the time stamp asso-)B 1.019
-(ciated with each displayed history entry)144 595.2 R 6.019(.N)-.65 G
+(ciated with each displayed history entry)144 619.2 R 6.019(.N)-.65 G
 3.519(oi)-6.019 G(nterv)-3.519 E 1.019
 (ening blank is printed between the formatted)-.15 F .176
-(time stamp and the history line.)144 607.2 R(If)5.176 E F1(\214lename)
+(time stamp and the history line.)144 631.2 R(If)5.176 E F2(\214lename)
 2.676 E F0 .176
 (is supplied, it is used as the name of the history \214le; if)2.676 F
-(not, the v)144 619.2 Q(alue of)-.25 E F3(HISTFILE)2.5 E F0(is used.)
+(not, the v)144 643.2 Q(alue of)-.25 E F1(HISTFILE)2.5 E F0(is used.)
 2.25 E(Options, if supplied, ha)5 E .3 -.15(ve t)-.2 H(he follo).15 E
-(wing meanings:)-.25 E F2<ad63>144 631.2 Q F0
-(Clear the history list by deleting all the entries.)180 631.2 Q F2
-<ad64>144 643.2 Q F1(of)2.5 E(fset)-.18 E F0 .389
-(Delete the history entry at position)180 655.2 R F1(of)2.889 E(fset)
--.18 E F0 5.389(.I)C(f)-5.389 E F1(of)2.889 E(fset)-.18 E F0 .389(is ne)
+(wing meanings:)-.25 E F3<ad63>144 655.2 Q F0
+(Clear the history list by deleting all the entries.)180 655.2 Q F3
+<ad64>144 667.2 Q F2(of)2.5 E(fset)-.18 E F0 .389
+(Delete the history entry at position)180 679.2 R F2(of)2.889 E(fset)
+-.18 E F0 5.389(.I)C(f)-5.389 E F2(of)2.889 E(fset)-.18 E F0 .389(is ne)
 2.889 F -.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G 2.89(,i).15 G 2.89(ti)
 -2.89 G 2.89(si)-2.89 G .39(nterpreted as relati)-2.89 F -.15(ve)-.25 G
-.599(to one greater than the last history position, so ne)180 667.2 R
+.599(to one greater than the last history position, so ne)180 691.2 R
 -.05(ga)-.15 G(ti).05 E .899 -.15(ve i)-.25 H .598
-(ndices count back from the end).15 F(of the history)180 679.2 Q 2.5(,a)
+(ndices count back from the end).15 F(of the history)180 703.2 Q 2.5(,a)
 -.65 G(nd an inde)-2.5 E 2.5(xo)-.15 G 2.5<66ad>-2.5 G 2.5(1r)-2.5 G
-(efers to the current)-2.5 E F2(history -d)2.5 E F0(command.)2.5 E F2
-<ad64>144 691.2 Q F1(start)2.5 E F0<ad>A F1(end)A F0 1.25
-(Delete the range of history entries between positions)180 703.2 R F1
-(start)3.75 E F0(and)3.75 E F1(end)3.75 E F0 3.75(,i)C(nclusi)-3.75 E
--.15(ve)-.25 G 6.25(.P).15 G(ositi)-6.25 E -.15(ve)-.25 G(and ne)180
-715.2 Q -.05(ga)-.15 G(ti).05 E .3 -.15(ve v)-.25 H(alues for)-.1 E F1
-(start)2.5 E F0(and)2.5 E F1(end)2.5 E F0
-(are interpreted as described abo)2.5 E -.15(ve)-.15 G(.).15 E
+(efers to the current)-2.5 E F3(history -d)2.5 E F0(command.)2.5 E
 (GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(10)190.95 E 0 Cg EP
 %%Page: 11 11
 %%BeginPageSetup
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF<ad61>144 84 Q F0 .565
-(Append the `)180 84 R(`ne)-.74 E(w')-.25 E 3.065('h)-.74 G .564
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF<ad64>144 84 Q/F2 10
+/Times-Italic@0 SF(start)2.5 E F0<ad>A F2(end)A F0 1.25
+(Delete the range of history entries between positions)180 96 R F2
+(start)3.75 E F0(and)3.75 E F2(end)3.75 E F0 3.75(,i)C(nclusi)-3.75 E
+-.15(ve)-.25 G 6.25(.P).15 G(ositi)-6.25 E -.15(ve)-.25 G(and ne)180 108
+Q -.05(ga)-.15 G(ti).05 E .3 -.15(ve v)-.25 H(alues for)-.1 E F2(start)
+2.5 E F0(and)2.5 E F2(end)2.5 E F0(are interpreted as described abo)2.5
+E -.15(ve)-.15 G(.).15 E F1<ad61>144 120 Q F0 .565(Append the `)180 120
+R(`ne)-.74 E(w')-.25 E 3.065('h)-.74 G .564
 (istory lines to the history \214le.)-3.065 F .564
-(These are history lines entered since)5.564 F(the be)180 96 Q
+(These are history lines entered since)5.564 F(the be)180 132 Q
 (ginning of the current)-.15 E F1(bash)2.5 E F0(session, b)2.5 E
-(ut not already appended to the history \214le.)-.2 E F1<ad6e>144 108 Q
+(ut not already appended to the history \214le.)-.2 E F1<ad6e>144 144 Q
 F0 .854(Read the history lines not already read from the history \214le\
- into the current history list.)180 108 R .773
-(These are lines appended to the history \214le since the be)180 120 R
+ into the current history list.)180 144 R .773
+(These are lines appended to the history \214le since the be)180 156 R
 .772(ginning of the current)-.15 F F1(bash)3.272 E F0(ses-)3.272 E
-(sion.)180 132 Q F1<ad72>144 144 Q F0(Read the contents of the history \
-\214le and append them to the current history list.)180 144 Q F1<ad77>
-144 156 Q F0(Write the current history list to the history \214le, o)180
-156 Q -.15(ve)-.15 G(rwriting the history \214le').15 E 2.5(sc)-.55 G
-(ontents.)-2.5 E F1<ad70>144 168 Q F0 .625
-(Perform history substitution on the follo)180 168 R(wing)-.25 E/F2 10
-/Times-Italic@0 SF(ar)3.125 E(gs)-.37 E F0 .626
-(and display the result on the standard)3.125 F 2.975(output. Does)180
-180 R .475(not store the results in the history list.)2.975 F(Each)5.475
-E F2(ar)2.975 E(g)-.37 E F0 .475(must be quoted to disable)2.975 F
-(normal history e)180 192 Q(xpansion.)-.15 E F1<ad73>144 204 Q F0 .362
-(Store the)180 204 R F2(ar)3.192 E(gs)-.37 E F0 .363
+(sion.)180 168 Q F1<ad72>144 180 Q F0(Read the contents of the history \
+\214le and append them to the current history list.)180 180 Q F1<ad77>
+144 192 Q F0(Write the current history list to the history \214le, o)180
+192 Q -.15(ve)-.15 G(rwriting the history \214le').15 E 2.5(sc)-.55 G
+(ontents.)-2.5 E F1<ad70>144 204 Q F0 .625
+(Perform history substitution on the follo)180 204 R(wing)-.25 E F2(ar)
+3.125 E(gs)-.37 E F0 .626(and display the result on the standard)3.125 F
+2.975(output. Does)180 216 R .475
+(not store the results in the history list.)2.975 F(Each)5.475 E F2(ar)
+2.975 E(g)-.37 E F0 .475(must be quoted to disable)2.975 F
+(normal history e)180 228 Q(xpansion.)-.15 E F1<ad73>144 240 Q F0 .362
+(Store the)180 240 R F2(ar)3.192 E(gs)-.37 E F0 .363
 (in the history list as a single entry)3.132 F 5.363(.T)-.65 G .363
-(he last command in the history list is)-5.363 F(remo)180 216 Q -.15(ve)
+(he last command in the history list is)-5.363 F(remo)180 252 Q -.15(ve)
 -.15 G 2.5(db).15 G(efore the)-2.5 E F2(ar)2.83 E(gs)-.37 E F0
-(are added.)2.77 E .146(If the)144 232.8 R/F3 9/Times-Bold@0 SF
+(are added.)2.77 E .146(If the)144 268.8 R/F3 9/Times-Bold@0 SF
 (HISTTIMEFORMA)2.645 E(T)-.855 E F0 -.25(va)2.395 G .145
 (riable is set, the time stamp information associated with each history)
-.25 F .668(entry is written to the history \214le, mark)144 244.8 R .669
+.25 F .668(entry is written to the history \214le, mark)144 280.8 R .669
 (ed with the history comment character)-.1 F 5.669(.W)-.55 G .669
-(hen the history)-5.669 F .956(\214le is read, lines be)144 256.8 R .956
+(hen the history)-5.669 F .956(\214le is read, lines be)144 292.8 R .956
 (ginning with the history comment character follo)-.15 F .955
 (wed immediately by a digit)-.25 F .832
-(are interpreted as timestamps for the follo)144 268.8 R .832
+(are interpreted as timestamps for the follo)144 304.8 R .832
 (wing history entry)-.25 F 5.833(.T)-.65 G .833(he return v)-5.833 F
-.833(alue is 0 unless an in-)-.25 F -.25(va)144 280.8 S .168(lid option\
+.833(alue is 0 unless an in-)-.25 F -.25(va)144 316.8 S .168(lid option\
  is encountered, an error occurs while reading or writing the history \
 \214le, an in).25 F -.25(va)-.4 G(lid).25 E F2(of)2.668 E(f-)-.18 E(set)
-144 292.8 Q F0 .34(or range is supplied as an ar)2.84 F .34(gument to)
+144 328.8 Q F0 .34(or range is supplied as an ar)2.84 F .34(gument to)
 -.18 F F1<ad64>2.841 E F0 2.841(,o)C 2.841(rt)-2.841 G .341
 (he history e)-2.841 F .341(xpansion supplied as an ar)-.15 F .341
-(gument to)-.18 F F1<ad70>144 304.8 Q F0 -.1(fa)2.5 G(ils.).1 E F1(jobs)
-108 321.6 Q F0([)2.5 E F1(\255lnprs)A F0 2.5(][)C F2(jobspec)A F0(... ])
-2.5 E F1(jobs \255x)108 333.6 Q F2(command)2.5 E F0([)2.5 E F2(ar)2.5 E
-(gs)-.37 E F0(... ])2.5 E(The \214rst form lists the acti)144 345.6 Q .3
+(gument to)-.18 F F1<ad70>144 340.8 Q F0 -.1(fa)2.5 G(ils.).1 E F1(jobs)
+108 357.6 Q F0([)2.5 E F1(\255lnprs)A F0 2.5(][)C F2(jobspec)A F0(... ])
+2.5 E F1(jobs \255x)108 369.6 Q F2(command)2.5 E F0([)2.5 E F2(ar)2.5 E
+(gs)-.37 E F0(... ])2.5 E(The \214rst form lists the acti)144 381.6 Q .3
 -.15(ve j)-.25 H 2.5(obs. The).15 F(options ha)2.5 E .3 -.15(ve t)-.2 H
-(he follo).15 E(wing meanings:)-.25 E F1<ad6c>144 357.6 Q F0
-(List process IDs in addition to the normal information.)180 357.6 Q F1
-<ad6e>144 369.6 Q F0 .194(Display information only about jobs that ha)
-180 369.6 R .494 -.15(ve c)-.2 H .193(hanged status since the user w).15
-F .193(as last noti-)-.1 F(\214ed of their status.)180 381.6 Q F1<ad70>
-144 393.6 Q F0(List only the process ID of the job')180 393.6 Q 2.5(sp)
--.55 G(rocess group leader)-2.5 E(.)-.55 E F1<ad72>144 405.6 Q F0
-(Display only running jobs.)180 405.6 Q F1<ad73>144 417.6 Q F0
-(Display only stopped jobs.)180 417.6 Q(If)144 434.4 Q F2(jobspec)4.553
+(he follo).15 E(wing meanings:)-.25 E F1<ad6c>144 393.6 Q F0
+(List process IDs in addition to the normal information.)180 393.6 Q F1
+<ad6e>144 405.6 Q F0 .194(Display information only about jobs that ha)
+180 405.6 R .494 -.15(ve c)-.2 H .193(hanged status since the user w).15
+F .193(as last noti-)-.1 F(\214ed of their status.)180 417.6 Q F1<ad70>
+144 429.6 Q F0(List only the process ID of the job')180 429.6 Q 2.5(sp)
+-.55 G(rocess group leader)-2.5 E(.)-.55 E F1<ad72>144 441.6 Q F0
+(Display only running jobs.)180 441.6 Q F1<ad73>144 453.6 Q F0
+(Display only stopped jobs.)180 453.6 Q(If)144 470.4 Q F2(jobspec)4.553
 E F0 .313(is gi)3.123 F -.15(ve)-.25 G .313
 (n, output is restricted to information about that job).15 F 5.314(.T)
--.4 G .314(he return status is 0 unless)-5.314 F(an in)144 446.4 Q -.25
+-.4 G .314(he return status is 0 unless)-5.314 F(an in)144 482.4 Q -.25
 (va)-.4 G(lid option is encountered or an in).25 E -.25(va)-.4 G(lid).25
-E F2(jobspec)4.24 E F0(is supplied.)2.81 E .395(If the)144 463.2 R F1
+E F2(jobspec)4.24 E F0(is supplied.)2.81 E .395(If the)144 499.2 R F1
 <ad78>2.895 E F0 .394(option is supplied,)2.894 F F1(jobs)2.894 E F0
 .394(replaces an)2.894 F(y)-.15 E F2(jobspec)4.634 E F0 .394(found in)
 3.204 F F2(command)3.094 E F0(or)3.664 E F2(ar)3.224 E(gs)-.37 E F0 .394
-(with the corre-)3.164 F(sponding process group ID, and e)144 475.2 Q
+(with the corre-)3.164 F(sponding process group ID, and e)144 511.2 Q
 -.15(xe)-.15 G(cutes).15 E F2(command)2.7 E F0(passing it)3.27 E F2(ar)
 2.83 E(gs)-.37 E F0 2.5(,r).27 G(eturning its e)-2.5 E(xit status.)-.15
-E F1(kill)108 492 Q F0([)2.5 E F1<ad73>A F2(sigspec)2.5 E F0(|)2.5 E F1
+E F1(kill)108 528 Q F0([)2.5 E F1<ad73>A F2(sigspec)2.5 E F0(|)2.5 E F1
 <ad6e>2.5 E F2(signum)2.5 E F0(|)2.5 E F1<ad>2.5 E F2(sigspec)A F0 2.5
 (][)C F2(pid)-2.5 E F0(|)2.5 E F2(jobspec)2.5 E F0 2.5(].)C(..)-2.5 E F1
-(kill \255l)108 504 Q F0(|)A F1<ad4c>A F0([)2.5 E F2(sigspec)A F0(|)2.5
+(kill \255l)108 540 Q F0(|)A F1<ad4c>A F0([)2.5 E F2(sigspec)A F0(|)2.5
 E F2 -.2(ex)2.5 G(it_status).2 E F0(])A .017(Send the signal named by)
-144 516 R F2(sigspec)2.857 E F0(or)2.827 E F2(signum)2.857 E F0 .017
+144 552 R F2(sigspec)2.857 E F0(or)2.827 E F2(signum)2.857 E F0 .017
 (to the processes named by)2.837 F F2(pid)3.767 E F0(or)3.287 E F2
 (jobspec)4.257 E F0(.).31 E F2(sigspec)5.357 E F0(is)2.828 E .319
-(either a case-insensiti)144 528 R .619 -.15(ve s)-.25 H .319
+(either a case-insensiti)144 564 R .619 -.15(ve s)-.25 H .319
 (ignal name such as).15 F F3(SIGKILL)2.819 E F0 .318
 (\(with or without the)2.569 F F3(SIG)2.818 E F0 .318
-(pre\214x\) or a signal)2.568 F(number;)144 540 Q F2(signum)3.267 E F0
+(pre\214x\) or a signal)2.568 F(number;)144 576 Q F2(signum)3.267 E F0
 .427(is a signal number)3.247 F 5.427(.I)-.55 G(f)-5.427 E F2(sigspec)
 3.267 E F0 .427(is not present, then)3.237 F F3(SIGTERM)2.927 E F0 .427
-(is assumed.)2.677 F .428(An ar)5.427 F(-)-.2 E .314(gument of)144 552 R
+(is assumed.)2.677 F .428(An ar)5.427 F(-)-.2 E .314(gument of)144 588 R
 F1<ad6c>2.814 E F0 .314(lists the signal names.)2.814 F .314(If an)5.314
 F 2.814(ya)-.15 G -.18(rg)-2.814 G .314(uments are supplied when).18 F
 F1<ad6c>2.814 E F0 .314(is gi)2.814 F -.15(ve)-.25 G .313
-(n, the names of).15 F .119(the signals corresponding to the ar)144 564
+(n, the names of).15 F .119(the signals corresponding to the ar)144 600
 R .119(guments are listed, and the return status is 0.)-.18 F(The)5.12 E
 F2 -.2(ex)2.62 G(it_status).2 E F0(ar)2.62 E(-)-.2 E .8(gument to)144
-576 R F1<ad6c>3.3 E F0 .8
+612 R F1<ad6c>3.3 E F0 .8
 (is a number specifying either a signal number or the e)3.3 F .799
-(xit status of a process termi-)-.15 F .962(nated by a signal.)144 588 R
+(xit status of a process termi-)-.15 F .962(nated by a signal.)144 624 R
 (The)5.962 E F1<ad4c>3.462 E F0 .962(option is equi)3.462 F -.25(va)-.25
 G .962(lent to).25 F F1<ad6c>3.462 E F0(.)A F1(kill)5.962 E F0 .962
 (returns true if at least one signal w)3.462 F(as)-.1 E
-(successfully sent, or f)144 600 Q(alse if an error occurs or an in)-.1
-E -.25(va)-.4 G(lid option is encountered.).25 E F1(let)108 616.8 Q F2
+(successfully sent, or f)144 636 Q(alse if an error occurs or an in)-.1
+E -.25(va)-.4 G(lid option is encountered.).25 E F1(let)108 652.8 Q F2
 (ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(Each)144
-628.8 Q F2(ar)5.818 E(g)-.37 E F0 2.987(is an arithmetic e)5.707 F 2.987
+664.8 Q F2(ar)5.818 E(g)-.37 E F0 2.987(is an arithmetic e)5.707 F 2.987
 (xpression to be e)-.15 F -.25(va)-.25 G 2.987(luated \(see).25 F F3
 2.987(ARITHMETIC EV)5.487 F(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E F0
-(in)5.237 E F2(bash\(1\))144 640.8 Q F0 2.5(\). If)B(the last)2.5 E F2
+(in)5.237 E F2(bash\(1\))144 676.8 Q F0 2.5(\). If)B(the last)2.5 E F2
 (ar)2.83 E(g)-.37 E F0 -.25(eva)2.72 G(luates to 0,).25 E F1(let)2.5 E
-F0(returns 1; 0 is returned otherwise.)2.5 E F1(local)108 657.6 Q F0([)
+F0(returns 1; 0 is returned otherwise.)2.5 E F1(local)108 693.6 Q F0([)
 2.5 E F2(option)A F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5
-(].)C(.. | \255 ])-2.5 E -.15(Fo)144 669.6 S 2.541(re).15 G .041(ach ar)
+(].)C(.. | \255 ])-2.5 E -.15(Fo)144 705.6 S 2.541(re).15 G .041(ach ar)
 -2.541 F .042(gument, a local v)-.18 F .042(ariable named)-.25 F F2
 (name)2.902 E F0 .042(is created, and assigned)2.722 F F2(value)2.832 E
 F0 5.042(.T).18 G(he)-5.042 E F2(option)2.542 E F0 .042(can be)2.542 F
-(an)144 681.6 Q 3.153(yo)-.15 G 3.153(ft)-3.153 G .653
+(an)144 717.6 Q 3.153(yo)-.15 G 3.153(ft)-3.153 G .653
 (he options accepted by)-3.153 F F1(declar)3.153 E(e)-.18 E F0 5.652(.W)
 C(hen)-5.652 E F1(local)3.152 E F0 .652
 (is used within a function, it causes the v)3.152 F(ari-)-.25 E(able)144
-693.6 Q F2(name)3.281 E F0 .421(to ha)3.101 F .721 -.15(ve a v)-.2 H
+729.6 Q F2(name)3.281 E F0 .421(to ha)3.101 F .721 -.15(ve a v)-.2 H
 .422(isible scope restricted to that function and its children.).15 F
-(If)5.422 E F2(name)2.922 E F0 .422(is \255, the set)2.922 F .51
-(of shell options is made local to the function in which)144 705.6 R F1
-(local)3.009 E F0 .509(is in)3.009 F -.2(vo)-.4 G -.1(ke).2 G .509
-(d: shell options changed us-).1 F 1.281(ing the)144 717.6 R F1(set)
-3.781 E F0 -.2(bu)3.781 G 1.281
-(iltin inside the function after the call to).2 F F1(local)3.781 E F0
-1.282(are restored to their original v)3.781 F(alues)-.25 E .278
-(when the function returns.)144 729.6 R .278(The restore is ef)5.278 F
-.278(fected as if a series of)-.25 F F1(set)2.777 E F0 .277
-(commands were e)2.777 F -.15(xe)-.15 G .277(cuted to).15 F
+(If)5.422 E F2(name)2.922 E F0 .422(is \255, the set)2.922 F
 (GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(11)190.95 E 0 Cg EP
 %%Page: 12 12
 %%BeginPageSetup
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E .69(restore the v)144 84 R .69
+E(UIL)-.1 E(TINS\(1\))-.92 E .51
+(of shell options is made local to the function in which)144 84 R/F1 10
+/Times-Bold@0 SF(local)3.009 E F0 .509(is in)3.009 F -.2(vo)-.4 G -.1
+(ke).2 G .509(d: shell options changed us-).1 F 1.281(ing the)144 96 R
+F1(set)3.781 E F0 -.2(bu)3.781 G 1.281
+(iltin inside the function after the call to).2 F F1(local)3.781 E F0
+1.282(are restored to their original v)3.781 F(alues)-.25 E .278
+(when the function returns.)144 108 R .278(The restore is ef)5.278 F
+.278(fected as if a series of)-.25 F F1(set)2.777 E F0 .277
+(commands were e)2.777 F -.15(xe)-.15 G .277(cuted to).15 F .69
+(restore the v)144 120 R .69
 (alues that were in place before the function.)-.25 F -.4(Wi)5.69 G .69
-(th no operands,).4 F/F1 10/Times-Bold@0 SF(local)3.19 E F0 .69
-(writes a list of)3.19 F .567(local v)144 96 R .566
-(ariables to the standard output.)-.25 F .566(It is an error to use)
-5.566 F F1(local)3.066 E F0 .566(when not within a function.)3.066 F
-(The)5.566 E .425(return status is 0 unless)144 108 R F1(local)2.925 E
-F0 .425(is used outside a function, an in)2.925 F -.25(va)-.4 G(lid).25
-E/F2 10/Times-Italic@0 SF(name)3.285 E F0 .426(is supplied, or)3.105 F
-F2(name)2.926 E F0 .426(is a)2.926 F(readonly v)144 120 Q(ariable.)-.25
-E F1(logout)108 136.8 Q F0(Exit a login shell.)144 136.8 Q F1(map\214le)
-108 153.6 Q F0([)2.5 E F1<ad64>A F2(delim)2.5 E F0 2.5(][)C F1<ad6e>-2.5
-E F2(count)2.5 E F0 2.5(][)C F1<ad4f>-2.5 E F2(origin)2.5 E F0 2.5(][)C
-F1<ad73>-2.5 E F2(count)2.5 E F0 2.5(][)C F1<ad74>-2.5 E F0 2.5(][)C F1
+(th no operands,).4 F F1(local)3.19 E F0 .69(writes a list of)3.19 F
+.567(local v)144 132 R .566(ariables to the standard output.)-.25 F .566
+(It is an error to use)5.566 F F1(local)3.066 E F0 .566
+(when not within a function.)3.066 F(The)5.566 E .425
+(return status is 0 unless)144 144 R F1(local)2.925 E F0 .425
+(is used outside a function, an in)2.925 F -.25(va)-.4 G(lid).25 E/F2 10
+/Times-Italic@0 SF(name)3.285 E F0 .426(is supplied, or)3.105 F F2(name)
+2.926 E F0 .426(is a)2.926 F(readonly v)144 156 Q(ariable.)-.25 E F1
+(logout)108 172.8 Q F0(Exit a login shell.)144 172.8 Q F1(map\214le)108
+189.6 Q F0([)2.5 E F1<ad64>A F2(delim)2.5 E F0 2.5(][)C F1<ad6e>-2.5 E
+F2(count)2.5 E F0 2.5(][)C F1<ad4f>-2.5 E F2(origin)2.5 E F0 2.5(][)C F1
+<ad73>-2.5 E F2(count)2.5 E F0 2.5(][)C F1<ad74>-2.5 E F0 2.5(][)C F1
 <ad75>-2.5 E F2(fd)2.5 E F0 2.5(][)C F1<ad43>-2.5 E F2(callbac)2.5 E(k)
 -.2 E F0 2.5(][)C F1<ad63>-2.5 E F2(quantum)2.5 E F0 2.5(][)C F2(arr)
--2.5 E(ay)-.15 E F0(])A F1 -.18(re)108 165.6 S(adarray).18 E F0([)2.5 E
+-2.5 E(ay)-.15 E F0(])A F1 -.18(re)108 201.6 S(adarray).18 E F0([)2.5 E
 F1<ad64>A F2(delim)2.5 E F0 2.5(][)C F1<ad6e>-2.5 E F2(count)2.5 E F0
 2.5(][)C F1<ad4f>-2.5 E F2(origin)2.5 E F0 2.5(][)C F1<ad73>-2.5 E F2
 (count)2.5 E F0 2.5(][)C F1<ad74>-2.5 E F0 2.5(][)C F1<ad75>-2.5 E F2
 (fd)2.5 E F0 2.5(][)C F1<ad43>-2.5 E F2(callbac)2.5 E(k)-.2 E F0 2.5(][)
 C F1<ad63>-2.5 E F2(quantum)2.5 E F0 2.5(][)C F2(arr)-2.5 E(ay)-.15 E F0
-(])A .159(Read lines from the standard input into the inde)144 177.6 R
+(])A .159(Read lines from the standard input into the inde)144 213.6 R
 -.15(xe)-.15 G 2.659(da).15 G .159(rray v)-2.659 F(ariable)-.25 E F2
 (arr)2.989 E(ay)-.15 E F0 2.659(,o).32 G 2.658(rf)-2.659 G .158
-(rom \214le descriptor)-2.658 F F2(fd)4.628 E F0 1.248(if the)144 189.6
+(rom \214le descriptor)-2.658 F F2(fd)4.628 E F0 1.248(if the)144 225.6
 R F1<ad75>3.748 E F0 1.248(option is supplied.)3.748 F 1.249(The v)6.249
 F(ariable)-.25 E/F3 9/Times-Bold@0 SF(MAPFILE)3.749 E F0 1.249
 (is the def)3.499 F(ault)-.1 E F2(arr)3.749 E(ay)-.15 E F0 6.249(.O)C
-1.249(ptions, if supplied,)-6.249 F(ha)144 201.6 Q .3 -.15(ve t)-.2 H
-(he follo).15 E(wing meanings:)-.25 E F1<ad64>144 213.6 Q F0 .911
-(The \214rst character of)180 213.6 R F2(delim)3.411 E F0 .911
+1.249(ptions, if supplied,)-6.249 F(ha)144 237.6 Q .3 -.15(ve t)-.2 H
+(he follo).15 E(wing meanings:)-.25 E F1<ad64>144 249.6 Q F0 .911
+(The \214rst character of)180 249.6 R F2(delim)3.411 E F0 .911
 (is used to terminate each input line, rather than ne)3.411 F 3.41
-(wline. If)-.25 F F2(delim)180 225.6 Q F0(is the empty string,)2.5 E F1
+(wline. If)-.25 F F2(delim)180 261.6 Q F0(is the empty string,)2.5 E F1
 (map\214le)2.5 E F0(will terminate a line when it reads a NUL character)
-2.5 E(.)-.55 E F1<ad6e>144 237.6 Q F0(Cop)180 237.6 Q 2.5(ya)-.1 G 2.5
+2.5 E(.)-.55 E F1<ad6e>144 273.6 Q F0(Cop)180 273.6 Q 2.5(ya)-.1 G 2.5
 (tm)-2.5 G(ost)-2.5 E F2(count)2.7 E F0 2.5(lines. If)3.18 F F2(count)
-2.5 E F0(is 0, all lines are copied.)2.5 E F1<ad4f>144 249.6 Q F0(Be)180
-249.6 Q(gin assigning to)-.15 E F2(arr)2.83 E(ay)-.15 E F0(at inde)2.82
+2.5 E F0(is 0, all lines are copied.)2.5 E F1<ad4f>144 285.6 Q F0(Be)180
+285.6 Q(gin assigning to)-.15 E F2(arr)2.83 E(ay)-.15 E F0(at inde)2.82
 E(x)-.15 E F2(origin)2.73 E F0 5(.T).24 G(he def)-5 E(ault inde)-.1 E
-2.5(xi)-.15 G 2.5(s0)-2.5 G(.)-2.5 E F1<ad73>144 261.6 Q F0
-(Discard the \214rst)180 261.6 Q F2(count)2.5 E F0(lines read.)2.5 E F1
-<ad74>144 273.6 Q F0(Remo)180 273.6 Q .3 -.15(ve a t)-.15 H(railing).15
+2.5(xi)-.15 G 2.5(s0)-2.5 G(.)-2.5 E F1<ad73>144 297.6 Q F0
+(Discard the \214rst)180 297.6 Q F2(count)2.5 E F0(lines read.)2.5 E F1
+<ad74>144 309.6 Q F0(Remo)180 309.6 Q .3 -.15(ve a t)-.15 H(railing).15
 E F2(delim)2.5 E F0(\(def)2.5 E(ault ne)-.1 E
-(wline\) from each line read.)-.25 E F1<ad75>144 285.6 Q F0
-(Read lines from \214le descriptor)180 285.6 Q F2(fd)2.5 E F0
-(instead of the standard input.)2.5 E F1<ad43>144 297.6 Q F0(Ev)180
-297.6 Q(aluate)-.25 E F2(callbac)2.7 E(k)-.2 E F0(each time)3.17 E F2
+(wline\) from each line read.)-.25 E F1<ad75>144 321.6 Q F0
+(Read lines from \214le descriptor)180 321.6 Q F2(fd)2.5 E F0
+(instead of the standard input.)2.5 E F1<ad43>144 333.6 Q F0(Ev)180
+333.6 Q(aluate)-.25 E F2(callbac)2.7 E(k)-.2 E F0(each time)3.17 E F2
 (quantum)2.5 E F0(lines are read.)2.5 E(The)5 E F1<ad63>2.5 E F0
-(option speci\214es)2.5 E F2(quantum)2.75 E F0(.).32 E F1<ad63>144 309.6
-Q F0(Specify the number of lines read between each call to)180 309.6 Q
-F2(callbac)2.7 E(k)-.2 E F0(.).67 E(If)144 326.4 Q F1<ad43>2.967 E F0
+(option speci\214es)2.5 E F2(quantum)2.75 E F0(.).32 E F1<ad63>144 345.6
+Q F0(Specify the number of lines read between each call to)180 345.6 Q
+F2(callbac)2.7 E(k)-.2 E F0(.).67 E(If)144 362.4 Q F1<ad43>2.967 E F0
 .467(is speci\214ed without)2.967 F F1<ad63>2.967 E F0 2.967(,t)C .467
 (he def)-2.967 F .467(ault quantum is 5000.)-.1 F(When)5.467 E F2
 (callbac)2.967 E(k)-.2 E F0 .467(is e)2.967 F -.25(va)-.25 G .467
-(luated, it is sup-).25 F .262(plied the inde)144 338.4 R 2.762(xo)-.15
+(luated, it is sup-).25 F .262(plied the inde)144 374.4 R 2.762(xo)-.15
 G 2.762(ft)-2.762 G .262(he ne)-2.762 F .261(xt array element to be ass\
 igned and the line to be assigned to that element)-.15 F .274
-(as additional ar)144 350.4 R(guments.)-.18 E F2(callbac)5.274 E(k)-.2 E
+(as additional ar)144 386.4 R(guments.)-.18 E F2(callbac)5.274 E(k)-.2 E
 F0 .274(is e)2.774 F -.25(va)-.25 G .274
 (luated after the line is read b).25 F .275
-(ut before the array element is)-.2 F(assigned.)144 362.4 Q
-(If not supplied with an e)144 379.2 Q(xplicit origin,)-.15 E F1
+(ut before the array element is)-.2 F(assigned.)144 398.4 Q
+(If not supplied with an e)144 415.2 Q(xplicit origin,)-.15 E F1
 (map\214le)2.5 E F0(will clear)2.5 E F2(arr)2.5 E(ay)-.15 E F0
-(before assigning to it.)2.5 E F1(map\214le)144 396 Q F0 .797
+(before assigning to it.)2.5 E F1(map\214le)144 432 Q F0 .797
 (returns successfully unless an in)3.298 F -.25(va)-.4 G .797
 (lid option or option ar).25 F .797(gument is supplied,)-.18 F F2(arr)
-3.297 E(ay)-.15 E F0 .797(is in-)3.297 F -.25(va)144 408 S
+3.297 E(ay)-.15 E F0 .797(is in-)3.297 F -.25(va)144 444 S
 (lid or unassignable, or if).25 E F2(arr)2.5 E(ay)-.15 E F0
 (is not an inde)2.5 E -.15(xe)-.15 G 2.5(da).15 G(rray)-2.5 E(.)-.65 E
-F1(popd)108 424.8 Q F0<5bad>2.5 E F1(n)A F0 2.5(][)C(+)-2.5 E F2(n)A F0
-2.5(][)C<ad>-2.5 E F2(n)A F0(])A(Remo)144 436.8 Q -.15(ve)-.15 G 3.091
+F1(popd)108 460.8 Q F0<5bad>2.5 E F1(n)A F0 2.5(][)C(+)-2.5 E F2(n)A F0
+2.5(][)C<ad>-2.5 E F2(n)A F0(])A(Remo)144 472.8 Q -.15(ve)-.15 G 3.091
 (se).15 G .591(ntries from the directory stack.)-3.091 F .592
 (The elements are numbered from 0 starting at the \214rst)5.591 F .665
-(directory listed by)144 448.8 R F1(dirs)3.165 E F0 5.665(.W)C .665
+(directory listed by)144 484.8 R F1(dirs)3.165 E F0 5.665(.W)C .665
 (ith no ar)-6.065 F(guments,)-.18 E F1(popd)3.165 E F0(remo)3.165 E -.15
 (ve)-.15 G 3.165(st).15 G .664(he top directory from the stack, and)
--3.165 F(changes to the ne)144 460.8 Q 2.5(wt)-.25 G(op directory)-2.5 E
+-3.165 F(changes to the ne)144 496.8 Q 2.5(wt)-.25 G(op directory)-2.5 E
 5(.A)-.65 G -.18(rg)-5 G(uments, if supplied, ha).18 E .3 -.15(ve t)-.2
-H(he follo).15 E(wing meanings:)-.25 E F1<ad6e>144 472.8 Q F0 .551
-(Suppresses the normal change of directory when remo)180 472.8 R .551
+H(he follo).15 E(wing meanings:)-.25 E F1<ad6e>144 508.8 Q F0 .551
+(Suppresses the normal change of directory when remo)180 508.8 R .551
 (ving directories from the stack, so)-.15 F
-(that only the stack is manipulated.)180 484.8 Q F1(+)144 496.8 Q F2(n)A
-F0(Remo)180 496.8 Q -.15(ve)-.15 G 2.64(st).15 G(he)-2.64 E F2(n)2.64 E
+(that only the stack is manipulated.)180 520.8 Q F1(+)144 532.8 Q F2(n)A
+F0(Remo)180 532.8 Q -.15(ve)-.15 G 2.64(st).15 G(he)-2.64 E F2(n)2.64 E
 F0 .14(th entry counting from the left of the list sho)B .14(wn by)-.25
 F F1(dirs)2.64 E F0 2.64(,s)C .14(tarting with zero,)-2.64 F .779
-(from the stack.)180 508.8 R -.15(Fo)5.779 G 3.279(re).15 G(xample:)
+(from the stack.)180 544.8 R -.15(Fo)5.779 G 3.279(re).15 G(xample:)
 -3.429 E/F4 10/Courier@0 SF .779(popd +0)3.279 F F0(remo)3.279 E -.15
 (ve)-.15 G 3.279(st).15 G .779(he \214rst directory)-3.279 F(,)-.65 E F4
-.78(popd +1)3.28 F F0 .78(the sec-)3.28 F(ond.)180 520.8 Q F1<ad>144
-532.8 Q F2(n)A F0(Remo)180 532.8 Q -.15(ve)-.15 G 3.76(st).15 G(he)-3.76
+.78(popd +1)3.28 F F0 .78(the sec-)3.28 F(ond.)180 556.8 Q F1<ad>144
+568.8 Q F2(n)A F0(Remo)180 568.8 Q -.15(ve)-.15 G 3.76(st).15 G(he)-3.76
 E F2(n)3.76 E F0 1.259(th entry counting from the right of the list sho)
 B 1.259(wn by)-.25 F F1(dirs)3.759 E F0 3.759(,s)C 1.259(tarting with)
--3.759 F 2.5(zero. F)180 544.8 R(or e)-.15 E(xample:)-.15 E F4(popd -0)
+-3.759 F 2.5(zero. F)180 580.8 R(or e)-.15 E(xample:)-.15 E F4(popd -0)
 2.5 E F0(remo)2.5 E -.15(ve)-.15 G 2.5(st).15 G(he last directory)-2.5 E
 (,)-.65 E F4(popd -1)2.5 E F0(the ne)2.5 E(xt to last.)-.15 E .093
 (If the top element of the directory stack is modi\214ed, and the)144
-561.6 R F2(-n)2.593 E F0 .094(option w)2.594 F .094(as not supplied,)-.1
-F F1(popd)2.594 E F0(uses)2.594 E(the)144 573.6 Q F1(cd)2.697 E F0 -.2
+597.6 R F2(-n)2.593 E F0 .094(option w)2.594 F .094(as not supplied,)-.1
+F F1(popd)2.594 E F0(uses)2.594 E(the)144 609.6 Q F1(cd)2.697 E F0 -.2
 (bu)2.697 G .196
 (iltin to change to the directory at the top of the stack.).2 F .196
 (If the)5.196 F F1(cd)2.696 E F0 -.1(fa)2.696 G(ils,).1 E F1(popd)2.696
-E F0 .196(returns a non-)2.696 F(zero v)144 585.6 Q(alue.)-.25 E
-(Otherwise,)144 602.4 Q F1(popd)2.67 E F0 .17(returns f)2.67 F .17
+E F0 .196(returns a non-)2.696 F(zero v)144 621.6 Q(alue.)-.25 E
+(Otherwise,)144 638.4 Q F1(popd)2.67 E F0 .17(returns f)2.67 F .17
 (alse if an in)-.1 F -.25(va)-.4 G .171
 (lid option is encountered, the directory stack is empty).25 F 2.671(,o)
--.65 G 2.671(ra)-2.671 G(non-e)144 614.4 Q
+-.65 G 2.671(ra)-2.671 G(non-e)144 650.4 Q
 (xistent directory stack entry is speci\214ed.)-.15 E 1.556(If the)144
-631.2 R F1(popd)4.056 E F0 1.556(command is successful, bash runs)4.056
+667.2 R F1(popd)4.056 E F0 1.556(command is successful, bash runs)4.056
 F F1(dirs)4.056 E F0 1.556(to sho)4.056 F 4.055(wt)-.25 G 1.555
 (he \214nal contents of the directory)-4.055 F
-(stack, and the return status is 0.)144 643.2 Q F1(printf)108 660 Q F0
+(stack, and the return status is 0.)144 679.2 Q F1(printf)108 696 Q F0
 ([)2.5 E F1<ad76>A F2(var)2.5 E F0(])A F2(format)2.5 E F0([)2.5 E F2(ar)
-A(guments)-.37 E F0(])A .357(Write the formatted)144 672 R F2(ar)2.857 E
+A(guments)-.37 E F0(])A .357(Write the formatted)144 708 R F2(ar)2.857 E
 (guments)-.37 E F0 .357(to the standard output under the control of the)
 2.857 F F2(format)2.858 E F0 5.358(.T)C(he)-5.358 E F1<ad76>2.858 E F0
-(op-)2.858 E .714(tion causes the output to be assigned to the v)144 684
+(op-)2.858 E .714(tion causes the output to be assigned to the v)144 720
 R(ariable)-.25 E F2(var)3.214 E F0 .714
-(rather than being printed to the standard)3.214 F(output.)144 696 Q
-(The)144 720 Q F2(format)3.017 E F0 .517(is a character string which co\
-ntains three types of objects: plain characters, which are)3.017 F
-(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(12)190.95 E 0 Cg EP
+(rather than being printed to the standard)3.214 F(GNU Bash 5.2)72 768 Q
+(2023 January 27)141.79 E(12)190.95 E 0 Cg EP
 %%Page: 13 13
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E .704(simply copied to standard output, cha\
-racter escape sequences, which are con)144 84 R -.15(ve)-.4 G .703
-(rted and copied to).15 F .036(the standard output, and format speci\
-\214cations, each of which causes printing of the ne)144 96 R .037
-(xt successi)-.15 F -.15(ve)-.25 G/F1 10/Times-Italic@0 SF(ar)144 108 Q
-(gument)-.37 E F0 5.028(.I)C 2.528(na)-5.028 G .027
+E(UIL)-.1 E(TINS\(1\))-.92 E(output.)144 84 Q(The)144 108 Q/F1 10
+/Times-Italic@0 SF(format)3.017 E F0 .517(is a character string which c\
+ontains three types of objects: plain characters, which are)3.017 F .704
+(simply copied to standard output, character escape sequences, which ar\
+e con)144 120 R -.15(ve)-.4 G .703(rted and copied to).15 F .036(the st\
+andard output, and format speci\214cations, each of which causes printi\
+ng of the ne)144 132 R .037(xt successi)-.15 F -.15(ve)-.25 G F1(ar)144
+144 Q(gument)-.37 E F0 5.028(.I)C 2.528(na)-5.028 G .027
 (ddition to the standard)-2.528 F F1(printf)2.527 E F0 .027
 (\(3\) format characters)B/F2 10/Times-Bold@0 SF(csndiouxXeEfFgGaA)2.527
-E F0(,)A F2(printf)2.527 E F0(in-)2.527 E(terprets the follo)144 120 Q
-(wing additional format speci\214ers:)-.25 E F2(%b)144 132 Q F0(causes)
-180 132 Q F2(printf)2.595 E F0 .096(to e)2.595 F .096
+E F0(,)A F2(printf)2.527 E F0(in-)2.527 E(terprets the follo)144 156 Q
+(wing additional format speci\214ers:)-.25 E F2(%b)144 168 Q F0(causes)
+180 168 Q F2(printf)2.595 E F0 .096(to e)2.595 F .096
 (xpand backslash escape sequences in the corresponding)-.15 F F1(ar)
-2.596 E(gument)-.37 E F0 .096(in the)2.596 F(same w)180 144 Q(ay as)-.1
-E F2(echo \255e)2.5 E F0(.)A F2(%q)144 156 Q F0(causes)180 156 Q F2
+2.596 E(gument)-.37 E F0 .096(in the)2.596 F(same w)180 180 Q(ay as)-.1
+E F2(echo \255e)2.5 E F0(.)A F2(%q)144 192 Q F0(causes)180 192 Q F2
 (printf)2.51 E F0 .01(to output the corresponding)2.51 F F1(ar)2.51 E
 (gument)-.37 E F0 .01(in a format that can be reused as shell)2.51 F
-(input.)180 168 Q F2(%q)5.514 E F0(and)3.014 E F2(%Q)3.014 E F0 .514
-(use the)3.014 F F2($')3.014 E(')-.63 E F0 .514(quoting style if an)
-3.014 F 3.015(yc)-.15 G .515(haracters in the ar)-3.015 F .515
+(input.)180 204 Q F2(%q)5.543 E F0(and)3.043 E F2(%Q)3.043 E F0 .544
+(use the)3.043 F F2<240808>3.044 E F0 .544(quoting style if an)3.044 F
+3.044(yc)-.15 G .544(haracters in the ar)-3.044 F .544
 (gument string re-)-.18 F 1.286
-(quire it, and backslash quoting otherwise.)180 180 R 1.285
+(quire it, and backslash quoting otherwise.)180 216 R 1.285
 (If the format string uses the)6.285 F F1(printf)3.785 E F0(alternate)
-3.785 E(form, these tw)180 192 Q 2.5(of)-.1 G(ormats quote the ar)-2.5 E
-(gument string using single quotes.)-.18 E F2(%Q)144 204 Q F0(lik)180
-204 Q(e)-.1 E F2(%q)2.5 E F0 2.5(,b)C(ut applies an)-2.7 E 2.5(ys)-.15 G
+3.785 E(form, these tw)180 228 Q 2.5(of)-.1 G(ormats quote the ar)-2.5 E
+(gument string using single quotes.)-.18 E F2(%Q)144 240 Q F0(lik)180
+240 Q(e)-.1 E F2(%q)2.5 E F0 2.5(,b)C(ut applies an)-2.7 E 2.5(ys)-.15 G
 (upplied precision to the)-2.5 E F1(ar)2.5 E(gument)-.37 E F0
-(before quoting it.)2.5 E F2(%\()144 216 Q F1(datefmt)A F2(\)T)A F0
-(causes)180 228 Q F2(printf)4.403 E F0 1.904
+(before quoting it.)2.5 E F2(%\()144 252 Q F1(datefmt)A F2(\)T)A F0
+(causes)180 264 Q F2(printf)4.403 E F0 1.904
 (to output the date-time string resulting from using)4.403 F F1(datefmt)
-4.404 E F0 1.904(as a format)4.404 F .381(string for)180 240 R F1
+4.404 E F0 1.904(as a format)4.404 F .381(string for)180 276 R F1
 (strftime)2.881 E F0 2.881(\(3\). The)B(corresponding)2.881 E F1(ar)
 2.881 E(gument)-.37 E F0 .381(is an inte)2.881 F .381
 (ger representing the number)-.15 F .292(of seconds since the epoch.)180
-252 R -1 -.8(Tw o)5.293 H .293(special ar)3.593 F .293(gument v)-.18 F
+288 R -1 -.8(Tw o)5.293 H .293(special ar)3.593 F .293(gument v)-.18 F
 .293(alues may be used: \2551 represents the)-.25 F .694
-(current time, and \2552 represents the time the shell w)180 264 R .693
+(current time, and \2552 represents the time the shell w)180 300 R .693
 (as in)-.1 F -.2(vo)-.4 G -.1(ke).2 G 3.193(d. If).1 F .693(no ar)3.193
-F .693(gument is speci-)-.18 F .21(\214ed, con)180 276 R -.15(ve)-.4 G
+F .693(gument is speci-)-.18 F .21(\214ed, con)180 312 R -.15(ve)-.4 G
 .21(rsion beha).15 F -.15(ve)-.2 G 2.71(sa).15 G 2.71(si)-2.71 G 2.71
 <66ad>-2.71 G 2.71(1h)-2.71 G .21(ad been gi)-2.71 F -.15(ve)-.25 G 2.71
 (n. This).15 F .21(is an e)2.71 F .21(xception to the usual)-.15 F F2
-(printf)2.71 E F0(beha)180 288 Q(vior)-.2 E(.)-.55 E .946(The %b, %q, a\
+(printf)2.71 E F0(beha)180 324 Q(vior)-.2 E(.)-.55 E .946(The %b, %q, a\
 nd %T format speci\214ers all use the \214eld width and precision ar)144
-304.8 R .945(guments from the)-.18 F .338
-(format speci\214cation and write that man)144 316.8 R 2.838(yb)-.15 G
+340.8 R .945(guments from the)-.18 F .338
+(format speci\214cation and write that man)144 352.8 R 2.838(yb)-.15 G
 .338(ytes from \(or use that wide a \214eld for\) the e)-2.838 F .339
 (xpanded ar)-.15 F(-)-.2 E
 (gument, which usually contains more characters than the original.)144
-328.8 Q(The %n format speci\214er accepts a corresponding ar)144 345.6 Q
+364.8 Q(The %n format speci\214er accepts a corresponding ar)144 381.6 Q
 (gument that is treated as a shell v)-.18 E(ariable name.)-.25 E .394
 (The %s and %c format speci\214ers accept an l \(long\) modi\214er)144
-362.4 R 2.893(,w)-.4 G .393(hich forces them to con)-2.893 F -.15(ve)-.4
+398.4 R 2.893(,w)-.4 G .393(hich forces them to con)-2.893 F -.15(ve)-.4
 G .393(rt the ar).15 F(-)-.2 E .32
-(gument string to a wide-character string and apply an)144 374.4 R 2.821
+(gument string to a wide-character string and apply an)144 410.4 R 2.821
 (ys)-.15 G .321(upplied \214eld width and precision in terms)-2.821 F
-(of characters, not bytes.)144 386.4 Q(Ar)144 403.2 Q .464(guments to n\
+(of characters, not bytes.)144 422.4 Q(Ar)144 439.2 Q .464(guments to n\
 on-string format speci\214ers are treated as C constants, e)-.18 F .463
-(xcept that a leading plus or)-.15 F 1.258(minus sign is allo)144 415.2
+(xcept that a leading plus or)-.15 F 1.258(minus sign is allo)144 451.2
 R 1.259
 (wed, and if the leading character is a single or double quote, the v)
--.25 F 1.259(alue is the)-.25 F(ASCII v)144 427.2 Q(alue of the follo)
--.25 E(wing character)-.25 E(.)-.55 E(The)144 444 Q F1(format)2.515 E F0
+-.25 F 1.259(alue is the)-.25 F(ASCII v)144 463.2 Q(alue of the follo)
+-.25 E(wing character)-.25 E(.)-.55 E(The)144 480 Q F1(format)2.515 E F0
 .015(is reused as necessary to consume all of the)2.515 F F1(ar)2.515 E
 (guments)-.37 E F0 5.015(.I)C 2.514(ft)-5.015 G(he)-2.514 E F1(format)
 2.514 E F0 .014(requires more)2.514 F F1(ar)2.514 E(-)-.2 E(guments)144
-456 Q F0 .565(than are supplied, the e)3.065 F .566
+492 Q F0 .565(than are supplied, the e)3.065 F .566
 (xtra format speci\214cations beha)-.15 F .866 -.15(ve a)-.2 H 3.066(si)
 .15 G 3.066(faz)-3.066 G .566(ero v)-3.066 F .566(alue or null string,)
--.25 F .542(as appropriate, had been supplied.)144 468 R .541
+-.25 F .542(as appropriate, had been supplied.)144 504 R .541
 (The return v)5.541 F .541(alue is zero on success, non-zero if an in)
 -.25 F -.25(va)-.4 G .541(lid op-).25 F
-(tion is supplied or a write or assignment error occurs.)144 480 Q F2
-(pushd)108 496.8 Q F0([)2.5 E F2<ad6e>A F0 2.5(][)C(+)-2.5 E F1(n)A F0
-2.5(][)C<ad>-2.5 E F1(n)A F0(])A F2(pushd)108 508.8 Q F0([)2.5 E F2
+(tion is supplied or a write or assignment error occurs.)144 516 Q F2
+(pushd)108 532.8 Q F0([)2.5 E F2<ad6e>A F0 2.5(][)C(+)-2.5 E F1(n)A F0
+2.5(][)C<ad>-2.5 E F1(n)A F0(])A F2(pushd)108 544.8 Q F0([)2.5 E F2
 <ad6e>A F0 2.5(][)C F1(dir)-2.5 E F0(])A .639(Adds a directory to the t\
-op of the directory stack, or rotates the stack, making the ne)144 520.8
+op of the directory stack, or rotates the stack, making the ne)144 556.8
 R 3.14(wt)-.25 G .64(op of the)-3.14 F .089(stack the current w)144
-532.8 R .089(orking directory)-.1 F 5.089(.W)-.65 G .089(ith no ar)
+568.8 R .089(orking directory)-.1 F 5.089(.W)-.65 G .089(ith no ar)
 -5.489 F(guments,)-.18 E F2(pushd)2.589 E F0 -.15(ex)2.588 G .088
 (changes the top tw).15 F 2.588(oe)-.1 G .088(lements of)-2.588 F
-(the directory stack.)144 544.8 Q(Ar)5 E(guments, if supplied, ha)-.18 E
+(the directory stack.)144 580.8 Q(Ar)5 E(guments, if supplied, ha)-.18 E
 .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F2<ad6e>144
-556.8 Q F0 1.811(Suppresses the normal change of directory when rotatin\
-g or adding directories to the)180 556.8 R
-(stack, so that only the stack is manipulated.)180 568.8 Q F2(+)144
-580.8 Q F1(n)A F0 1.268(Rotates the stack so that the)180 580.8 R F1(n)
+592.8 Q F0 1.811(Suppresses the normal change of directory when rotatin\
+g or adding directories to the)180 592.8 R
+(stack, so that only the stack is manipulated.)180 604.8 Q F2(+)144
+616.8 Q F1(n)A F0 1.268(Rotates the stack so that the)180 616.8 R F1(n)
 3.768 E F0 1.267(th directory \(counting from the left of the list sho)B
-1.267(wn by)-.25 F F2(dirs)180 592.8 Q F0 2.5(,s)C
-(tarting with zero\) is at the top.)-2.5 E F2<ad>144 604.8 Q F1(n)A F0
-.92(Rotates the stack so that the)180 604.8 R F1(n)3.42 E F0 .92
+1.267(wn by)-.25 F F2(dirs)180 628.8 Q F0 2.5(,s)C
+(tarting with zero\) is at the top.)-2.5 E F2<ad>144 640.8 Q F1(n)A F0
+.92(Rotates the stack so that the)180 640.8 R F1(n)3.42 E F0 .92
 (th directory \(counting from the right of the list sho)B .92(wn by)-.25
-F F2(dirs)180 616.8 Q F0 2.5(,s)C(tarting with zero\) is at the top.)
--2.5 E F1(dir)144.35 628.8 Q F0(Adds)180 628.8 Q F1(dir)2.85 E F0
+F F2(dirs)180 652.8 Q F0 2.5(,s)C(tarting with zero\) is at the top.)
+-2.5 E F1(dir)144.35 664.8 Q F0(Adds)180 664.8 Q F1(dir)2.85 E F0
 (to the directory stack at the top)3.23 E .435
-(After the stack has been modi\214ed, if the)144 645.6 R F2<ad6e>2.935 E
+(After the stack has been modi\214ed, if the)144 681.6 R F2<ad6e>2.935 E
 F0 .434(option w)2.934 F .434(as not supplied,)-.1 F F2(pushd)2.934 E F0
 .434(uses the)2.934 F F2(cd)2.934 E F0 -.2(bu)2.934 G .434(iltin to).2 F
-(change to the directory at the top of the stack.)144 657.6 Q(If the)5 E
+(change to the directory at the top of the stack.)144 693.6 Q(If the)5 E
 F2(cd)2.5 E F0 -.1(fa)2.5 G(ils,).1 E F2(pushd)2.5 E F0
 (returns a non-zero v)2.5 E(alue.)-.25 E 1.78(Otherwise, if no ar)144
-674.4 R 1.78(guments are supplied,)-.18 F F2(pushd)4.28 E F0 1.78
-(returns 0 unless the directory stack is empty)4.28 F(.)-.65 E .093
-(When rotating the directory stack,)144 686.4 R F2(pushd)2.593 E F0 .092
-(returns 0 unless the directory stack is empty or a non-e)2.593 F(x-)
--.15 E(istent directory stack element is speci\214ed.)144 698.4 Q 1.277
-(If the)144 715.2 R F2(pushd)3.777 E F0 1.277
-(command is successful, bash runs)3.777 F F2(dirs)3.777 E F0 1.278
-(to sho)3.778 F 3.778(wt)-.25 G 1.278
-(he \214nal contents of the directory)-3.778 F(stack.)144 727.2 Q
+710.4 R 1.78(guments are supplied,)-.18 F F2(pushd)4.28 E F0 1.78
+(returns 0 unless the directory stack is empty)4.28 F(.)-.65 E .882
+(When rotating the directory stack,)144 722.4 R F2(pushd)3.381 E F0 .881
+(returns 0 unless the directory stack is empty or a non-)3.381 F
 (GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(13)190.95 E 0 Cg EP
 %%Page: 14 14
 %%BeginPageSetup
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(pwd)108 84 Q F0([)2.5
-E F1(\255LP)A F0(])A .845(Print the absolute pathname of the current w)
-144 96 R .845(orking directory)-.1 F 5.844(.T)-.65 G .844
+E(UIL)-.1 E(TINS\(1\))-.92 E -.15(ex)144 84 S
+(istent directory stack element is speci\214ed.).15 E 1.277(If the)144
+100.8 R/F1 10/Times-Bold@0 SF(pushd)3.777 E F0 1.277
+(command is successful, bash runs)3.777 F F1(dirs)3.777 E F0 1.278
+(to sho)3.778 F 3.778(wt)-.25 G 1.278
+(he \214nal contents of the directory)-3.778 F(stack.)144 112.8 Q F1
+(pwd)108 129.6 Q F0([)2.5 E F1(\255LP)A F0(])A .845
+(Print the absolute pathname of the current w)144 141.6 R .845
+(orking directory)-.1 F 5.844(.T)-.65 G .844
 (he pathname printed contains no)-5.844 F .181(symbolic links if the)144
-108 R F1<ad50>2.681 E F0 .181(option is supplied or the)2.681 F F1 .181
-(\255o ph)2.681 F(ysical)-.15 E F0 .181(option to the)2.681 F F1(set)
-2.681 E F0 -.2(bu)2.681 G .182(iltin command is).2 F 3.264(enabled. If)
-144 120 R(the)3.264 E F1<ad4c>3.264 E F0 .763
+153.6 R F1<ad50>2.681 E F0 .181(option is supplied or the)2.681 F F1
+.181(\255o ph)2.681 F(ysical)-.15 E F0 .181(option to the)2.681 F F1
+(set)2.681 E F0 -.2(bu)2.681 G .182(iltin command is).2 F 3.264
+(enabled. If)144 165.6 R(the)3.264 E F1<ad4c>3.264 E F0 .763
 (option is used, the pathname printed may contain symbolic links.)3.264
 F .763(The return)5.763 F .405(status is 0 unless an error occurs while\
- reading the name of the current directory or an in)144 132 R -.25(va)
--.4 G .405(lid op-).25 F(tion is supplied.)144 144 Q F1 -.18(re)108
-160.8 S(ad).18 E F0([)3.817 E F1(\255ers)A F0 3.817(][)C F1<ad61>-3.817
+ reading the name of the current directory or an in)144 177.6 R -.25(va)
+-.4 G .405(lid op-).25 F(tion is supplied.)144 189.6 Q F1 -.18(re)108
+206.4 S(ad).18 E F0([)3.817 E F1(\255ers)A F0 3.817(][)C F1<ad61>-3.817
 E/F2 10/Times-Italic@0 SF(aname)3.817 E F0 3.817(][)C F1<ad64>-3.817 E
 F2(delim)3.817 E F0 3.817(][)C F1<ad69>-3.817 E F2(te)3.817 E(xt)-.2 E
 F0 3.817(][)C F1<ad6e>-3.817 E F2(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816
 (][)C F1<ad4e>-3.816 E F2(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F1
 <ad70>-3.816 E F2(pr)3.816 E(ompt)-.45 E F0 3.816(][)C F1<ad74>-3.816 E
 F2(timeout)3.816 E F0 3.816(][)C F1<ad75>-3.816 E F2(fd)3.816 E F0(])A
-([)108 172.8 Q F2(name)A F0(...])2.5 E .516(One line is read from the s\
-tandard input, or from the \214le descriptor)144 184.8 R F2(fd)3.016 E
-F0 .516(supplied as an ar)3.016 F .517(gument to)-.18 F(the)144 196.8 Q
+([)108 218.4 Q F2(name)A F0(...])2.5 E .516(One line is read from the s\
+tandard input, or from the \214le descriptor)144 230.4 R F2(fd)3.016 E
+F0 .516(supplied as an ar)3.016 F .517(gument to)-.18 F(the)144 242.4 Q
 F1<ad75>2.754 E F0 .254(option, split into w)2.754 F .254
 (ords as described in)-.1 F F2(bash\(1\))2.754 E F0(under)2.753 E F1
 -.75(Wo)2.753 G .253(rd Splitting).75 F F0 2.753(,a)C .253
 (nd the \214rst w)-2.753 F .253(ord is)-.1 F 1.425
-(assigned to the \214rst)144 208.8 R F2(name)4.285 E F0 3.925(,t).18 G
+(assigned to the \214rst)144 254.4 R F2(name)4.285 E F0 3.925(,t).18 G
 1.425(he second w)-3.925 F 1.425(ord to the second)-.1 F F2(name)4.285 E
 F0 3.925(,a).18 G 1.425(nd so on.)-3.925 F 1.425(If there are more)6.425
-F -.1(wo)144 220.8 S 1.112(rds than names, the remaining w).1 F 1.112
+F -.1(wo)144 266.4 S 1.112(rds than names, the remaining w).1 F 1.112
 (ords and their interv)-.1 F 1.112
-(ening delimiters are assigned to the last)-.15 F F2(name)144.36 232.8 Q
+(ening delimiters are assigned to the last)-.15 F F2(name)144.36 278.4 Q
 F0 5.7(.I).18 G 3.2(ft)-5.7 G .7(here are fe)-3.2 F .7(wer w)-.25 F .7
 (ords read from the input stream than names, the remaining names are)-.1
-F .532(assigned empty v)144 244.8 R 3.032(alues. The)-.25 F .532
+F .532(assigned empty v)144 290.4 R 3.032(alues. The)-.25 F .532
 (characters in)3.032 F/F3 9/Times-Bold@0 SF(IFS)3.032 E F0 .531
 (are used to split the line into w)2.782 F .531(ords using the same)-.1
-F 1.325(rules the shell uses for e)144 256.8 R 1.325
+F 1.325(rules the shell uses for e)144 302.4 R 1.325
 (xpansion \(described in)-.15 F F2(bash\(1\))3.825 E F0(under)3.826 E F1
 -.75(Wo)3.826 G 1.326(rd Splitting).75 F F0 3.826(\). The)B(backslash)
-3.826 E .739(character \()144 268.8 R F1(\\)A F0 3.239(\)m)C .739
+3.826 E .739(character \()144 314.4 R F1(\\)A F0 3.239(\)m)C .739
 (ay be used to remo)-3.239 F 1.039 -.15(ve a)-.15 H 1.039 -.15(ny s).15
 H .739(pecial meaning for the ne).15 F .738
 (xt character read and for line)-.15 F 2.5(continuation. Options,)144
-280.8 R(if supplied, ha)2.5 E .3 -.15(ve t)-.2 H(he follo).15 E
-(wing meanings:)-.25 E F1<ad61>144 292.8 Q F2(aname)2.5 E F0 1.025
-(The w)180 304.8 R 1.026
+326.4 R(if supplied, ha)2.5 E .3 -.15(ve t)-.2 H(he follo).15 E
+(wing meanings:)-.25 E F1<ad61>144 338.4 Q F2(aname)2.5 E F0 1.025
+(The w)180 350.4 R 1.026
 (ords are assigned to sequential indices of the array v)-.1 F(ariable)
 -.25 E F2(aname)3.856 E F0 3.526(,s).18 G 1.026(tarting at 0.)-3.526 F
-F2(aname)180.33 316.8 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5
+F2(aname)180.33 362.4 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5
 -.25(ew va)-2.5 H(lues are assigned.).25 E(Other)5 E F2(name)2.5 E F0
-(ar)2.5 E(guments are ignored.)-.18 E F1<ad64>144 328.8 Q F2(delim)2.5 E
-F0 .281(The \214rst character of)180 340.8 R F2(delim)2.781 E F0 .281
+(ar)2.5 E(guments are ignored.)-.18 E F1<ad64>144 374.4 Q F2(delim)2.5 E
+F0 .281(The \214rst character of)180 386.4 R F2(delim)2.781 E F0 .281
 (is used to terminate the input line, rather than ne)2.781 F 2.78
-(wline. If)-.25 F F2(de-)2.78 E(lim)180 352.8 Q F0(is the empty string,)
+(wline. If)-.25 F F2(de-)2.78 E(lim)180 398.4 Q F0(is the empty string,)
 2.5 E F1 -.18(re)2.5 G(ad).18 E F0
 (will terminate a line when it reads a NUL character)2.5 E(.)-.55 E F1
-<ad65>144 364.8 Q F0 .628
-(If the standard input is coming from a terminal,)180 364.8 R F1 -.18
+<ad65>144 410.4 Q F0 .628
+(If the standard input is coming from a terminal,)180 410.4 R F1 -.18
 (re)3.129 G(adline).18 E F0(\(see)3.129 E F3(READLINE)3.129 E F0(in)
 2.879 E F2(bash\(1\))3.129 E F0 3.129(\)i)C(s)-3.129 E .049
-(used to obtain the line.)180 376.8 R .049
+(used to obtain the line.)180 422.4 R .049
 (Readline uses the current \(or def)5.049 F .049
 (ault, if line editing w)-.1 F .048(as not pre)-.1 F(vi-)-.25 E
-(ously acti)180 388.8 Q -.15(ve)-.25 G 2.5(\)e).15 G(diting settings, b)
+(ously acti)180 434.4 Q -.15(ve)-.25 G 2.5(\)e).15 G(diting settings, b)
 -2.5 E(ut uses readline')-.2 E 2.5(sd)-.55 G(ef)-2.5 E
-(ault \214lename completion.)-.1 E F1<ad69>144 400.8 Q F2(te)2.5 E(xt)
--.2 E F0(If)180 400.8 Q F1 -.18(re)2.715 G(adline).18 E F0 .216
+(ault \214lename completion.)-.1 E F1<ad69>144 446.4 Q F2(te)2.5 E(xt)
+-.2 E F0(If)180 446.4 Q F1 -.18(re)2.715 G(adline).18 E F0 .216
 (is being used to read the line,)2.715 F F2(te)2.716 E(xt)-.2 E F0 .216
 (is placed into the editing b)2.716 F(uf)-.2 E .216(fer before edit-)
--.25 F(ing be)180 412.8 Q(gins.)-.15 E F1<ad6e>144 424.8 Q F2(nc)2.5 E
-(har)-.15 E(s)-.1 E F1 -.18(re)180 436.8 S(ad).18 E F0 .323
+-.25 F(ing be)180 458.4 Q(gins.)-.15 E F1<ad6e>144 470.4 Q F2(nc)2.5 E
+(har)-.15 E(s)-.1 E F1 -.18(re)180 482.4 S(ad).18 E F0 .323
 (returns after reading)2.823 F F2(nc)2.823 E(har)-.15 E(s)-.1 E F0 .323
 (characters rather than w)2.823 F .323
-(aiting for a complete line of in-)-.1 F(put, b)180 448.8 Q
+(aiting for a complete line of in-)-.1 F(put, b)180 494.4 Q
 (ut honors a delimiter if fe)-.2 E(wer than)-.25 E F2(nc)2.5 E(har)-.15
 E(s)-.1 E F0(characters are read before the delimiter)2.5 E(.)-.55 E F1
-<ad4e>144 460.8 Q F2(nc)2.5 E(har)-.15 E(s)-.1 E F1 -.18(re)180 472.8 S
+<ad4e>144 506.4 Q F2(nc)2.5 E(har)-.15 E(s)-.1 E F1 -.18(re)180 518.4 S
 (ad).18 E F0 1.269(returns after reading e)3.769 F(xactly)-.15 E F2(nc)
 3.769 E(har)-.15 E(s)-.1 E F0 1.269(characters rather than w)3.769 F
 1.27(aiting for a complete)-.1 F .275
-(line of input, unless EOF is encountered or)180 484.8 R F1 -.18(re)
+(line of input, unless EOF is encountered or)180 530.4 R F1 -.18(re)
 2.775 G(ad).18 E F0 .274(times out.)2.774 F .274
 (Delimiter characters encoun-)5.274 F 1.002
-(tered in the input are not treated specially and do not cause)180 496.8
+(tered in the input are not treated specially and do not cause)180 542.4
 R F1 -.18(re)3.503 G(ad).18 E F0 1.003(to return until)3.503 F F2(nc)
-3.503 E(har)-.15 E(s)-.1 E F0 .609(characters are read.)180 508.8 R .608
+3.503 E(har)-.15 E(s)-.1 E F0 .609(characters are read.)180 554.4 R .608
 (The result is not split on the characters in)5.609 F F1(IFS)3.108 E F0
-3.108(;t)C .608(he intent is that the)-3.108 F -.25(va)180 520.8 S .669
+3.108(;t)C .608(he intent is that the)-3.108 F -.25(va)180 566.4 S .669
 (riable is assigned e).25 F .669
 (xactly the characters read \(with the e)-.15 F .67
-(xception of backslash; see the)-.15 F F1<ad72>180 532.8 Q F0
-(option belo)2.5 E(w\).)-.25 E F1<ad70>144 544.8 Q F2(pr)2.5 E(ompt)-.45
-E F0(Display)180 556.8 Q F2(pr)3.661 E(ompt)-.45 E F0 1.161
+(xception of backslash; see the)-.15 F F1<ad72>180 578.4 Q F0
+(option belo)2.5 E(w\).)-.25 E F1<ad70>144 590.4 Q F2(pr)2.5 E(ompt)-.45
+E F0(Display)180 602.4 Q F2(pr)3.661 E(ompt)-.45 E F0 1.161
 (on standard error)3.661 F 3.661(,w)-.4 G 1.161(ithout a trailing ne)
--3.661 F 1.161(wline, before attempting to read)-.25 F(an)180 568.8 Q
+-3.661 F 1.161(wline, before attempting to read)-.25 F(an)180 614.4 Q
 2.5(yi)-.15 G 2.5(nput. The)-2.5 F
 (prompt is displayed only if input is coming from a terminal.)2.5 E F1
-<ad72>144 580.8 Q F0 .543(Backslash does not act as an escape character)
-180 580.8 R 5.543(.T)-.55 G .544
+<ad72>144 626.4 Q F0 .543(Backslash does not act as an escape character)
+180 626.4 R 5.543(.T)-.55 G .544
 (he backslash is considered to be part of)-5.543 F .493(the line.)180
-592.8 R .493(In particular)5.493 F 2.993(,ab)-.4 G(ackslash-ne)-2.993 E
+638.4 R .493(In particular)5.493 F 2.993(,ab)-.4 G(ackslash-ne)-2.993 E
 .493(wline pair may not then be used as a line continua-)-.25 F(tion.)
-180 604.8 Q F1<ad73>144 616.8 Q F0(Silent mode.)180 616.8 Q
+180 650.4 Q F1<ad73>144 662.4 Q F0(Silent mode.)180 662.4 Q
 (If input is coming from a terminal, characters are not echoed.)5 E F1
-<ad74>144 628.8 Q F2(timeout)2.5 E F0(Cause)180 640.8 Q F1 -.18(re)2.928
+<ad74>144 674.4 Q F2(timeout)2.5 E F0(Cause)180 686.4 Q F1 -.18(re)2.928
 G(ad).18 E F0 .428(to time out and return f)2.928 F .428
 (ailure if a complete line of input \(or a speci\214ed num-)-.1 F .561
-(ber of characters\) is not read within)180 652.8 R F2(timeout)3.061 E
+(ber of characters\) is not read within)180 698.4 R F2(timeout)3.061 E
 F0(seconds.)3.061 E F2(timeout)5.561 E F0 .56(may be a decimal number)
-3.061 F(with a fractional portion follo)180 664.8 Q
+3.061 F(with a fractional portion follo)180 710.4 Q
 (wing the decimal point.)-.25 E(This option is only ef)5 E(fecti)-.25 E
 .3 -.15(ve i)-.25 H(f).15 E F1 -.18(re)2.5 G(ad).18 E F0 .506(is readin\
 g input from a terminal, pipe, or other special \214le; it has no ef)180
-676.8 R .505(fect when reading)-.25 F .589(from re)180 688.8 R .589
-(gular \214les.)-.15 F(If)5.589 E F1 -.18(re)3.089 G(ad).18 E F0 .589
-(times out,)3.089 F F1 -.18(re)3.089 G(ad).18 E F0(sa)3.089 E -.15(ve)
--.2 G 3.089(sa).15 G .889 -.15(ny p)-3.089 H .59
-(artial input read into the speci\214ed).15 F -.25(va)180 700.8 S
-(riable).25 E F2(name)2.77 E F0 5.27(.I)C(f)-5.27 E F2(timeout)2.77 E F0
-.27(is 0,)2.77 F F1 -.18(re)2.77 G(ad).18 E F0 .27(returns immediately)
-2.77 F 2.77(,w)-.65 G .27(ithout trying to read an)-2.77 F 2.77(yd)-.15
-G(ata.)-2.77 E .227(The e)180 712.8 R .228
-(xit status is 0 if input is a)-.15 F -.25(va)-.2 G .228
-(ilable on the speci\214ed \214le descriptor).25 F 2.728(,o)-.4 G 2.728
-(rt)-2.728 G .228(he read will re-)-2.728 F 2.393(turn EOF)180 724.8 R
-4.893(,n)-.8 G 2.392(on-zero otherwise.)-4.893 F 2.392(The e)7.392 F
-2.392(xit status is greater than 128 if the timeout is)-.15 F
-(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(14)190.95 E 0 Cg EP
+722.4 R .505(fect when reading)-.25 F(GNU Bash 5.2)72 768 Q
+(2023 January 27)141.79 E(14)190.95 E 0 Cg EP
 %%Page: 15 15
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E -.15(ex)180 84 S(ceeded.).15 E/F1 10
-/Times-Bold@0 SF<ad75>144 96 Q/F2 10/Times-Italic@0 SF(fd)2.5 E F0
-(Read input from \214le descriptor)180 96 Q F2(fd)2.5 E F0(.)A .522
-(If no)144 112.8 R F2(names)3.382 E F0 .522
+E(UIL)-.1 E(TINS\(1\))-.92 E .589(from re)180 84 R .589(gular \214les.)
+-.15 F(If)5.589 E/F1 10/Times-Bold@0 SF -.18(re)3.089 G(ad).18 E F0 .589
+(times out,)3.089 F F1 -.18(re)3.089 G(ad).18 E F0(sa)3.089 E -.15(ve)
+-.2 G 3.089(sa).15 G .889 -.15(ny p)-3.089 H .59
+(artial input read into the speci\214ed).15 F -.25(va)180 96 S(riable)
+.25 E/F2 10/Times-Italic@0 SF(name)2.77 E F0 5.27(.I)C(f)-5.27 E F2
+(timeout)2.77 E F0 .27(is 0,)2.77 F F1 -.18(re)2.77 G(ad).18 E F0 .27
+(returns immediately)2.77 F 2.77(,w)-.65 G .27(ithout trying to read an)
+-2.77 F 2.77(yd)-.15 G(ata.)-2.77 E .227(The e)180 108 R .228
+(xit status is 0 if input is a)-.15 F -.25(va)-.2 G .228
+(ilable on the speci\214ed \214le descriptor).25 F 2.728(,o)-.4 G 2.728
+(rt)-2.728 G .228(he read will re-)-2.728 F 1.225(turn EOF)180 120 R
+3.725(,n)-.8 G 1.225(on-zero otherwise.)-3.725 F 1.225(The e)6.225 F
+1.225(xit status is greater than 128 if the timeout is e)-.15 F(x-)-.15
+E(ceeded.)180 132 Q F1<ad75>144 144 Q F2(fd)2.5 E F0
+(Read input from \214le descriptor)180 144 Q F2(fd)2.5 E F0(.)A .522
+(If no)144 160.8 R F2(names)3.382 E F0 .522
 (are supplied, the line read, without the ending delimiter b)3.292 F
 .522(ut otherwise unmodi\214ed, is)-.2 F 1.187(assigned to the v)144
-124.8 R(ariable)-.25 E/F3 9/Times-Bold@0 SF(REPL)3.686 E(Y)-.828 E/F4 9
+172.8 R(ariable)-.25 E/F3 9/Times-Bold@0 SF(REPL)3.686 E(Y)-.828 E/F4 9
 /Times-Roman@0 SF(.)A F0 1.186(The e)5.686 F 1.186
 (xit status is zero, unless end-of-\214le is encountered,)-.15 F F1 -.18
 (re)3.686 G(ad).18 E F0 .96
 (times out \(in which case the status is greater than 128\), a v)144
-136.8 R .961(ariable assignment error \(such as as-)-.25 F .707
-(signing to a readonly v)144 148.8 R .706(ariable\) occurs, or an in)
+184.8 R .961(ariable assignment error \(such as as-)-.25 F .707
+(signing to a readonly v)144 196.8 R .706(ariable\) occurs, or an in)
 -.25 F -.25(va)-.4 G .706(lid \214le descriptor is supplied as the ar)
-.25 F .706(gument to)-.18 F F1<ad75>144 160.8 Q F0(.)A F1 -.18(re)108
-177.6 S(adonly).18 E F0([)2.5 E F1(\255aAf)A F0 2.5(][)C F1<ad70>-2.5 E
+.25 F .706(gument to)-.18 F F1<ad75>144 208.8 Q F0(.)A F1 -.18(re)108
+225.6 S(adonly).18 E F0([)2.5 E F1(\255aAf)A F0 2.5(][)C F1<ad70>-2.5 E
 F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(wor)A(d)-.37 E F0 2.5(].)C(..])
--2.5 E .77(The gi)144 189.6 R -.15(ve)-.25 G(n).15 E F2(names)3.27 E F0
+-2.5 E .77(The gi)144 237.6 R -.15(ve)-.25 G(n).15 E F2(names)3.27 E F0
 .77(are mark)3.27 F .77(ed readonly; the v)-.1 F .77(alues of these)-.25
 F F2(names)3.63 E F0 .77(may not be changed by subse-)3.54 F 1.097
-(quent assignment.)144 201.6 R 1.097(If the)6.097 F F1<ad66>3.597 E F0
+(quent assignment.)144 249.6 R 1.097(If the)6.097 F F1<ad66>3.597 E F0
 1.097(option is supplied, the functions corresponding to the)3.597 F F2
-(names)3.596 E F0 1.096(are so)3.596 F(mark)144 213.6 Q 3.334(ed. The)
+(names)3.596 E F0 1.096(are so)3.596 F(mark)144 261.6 Q 3.334(ed. The)
 -.1 F F1<ad61>3.334 E F0 .834(option restricts the v)3.334 F .834
 (ariables to inde)-.25 F -.15(xe)-.15 G 3.334(da).15 G .834(rrays; the)
 -3.334 F F1<ad41>3.334 E F0 .834(option restricts the v)3.334 F(ari-)
--.25 E .777(ables to associati)144 225.6 R 1.077 -.15(ve a)-.25 H 3.277
+-.25 E .777(ables to associati)144 273.6 R 1.077 -.15(ve a)-.25 H 3.277
 (rrays. If).15 F .777(both options are supplied,)3.277 F F1<ad41>3.277 E
 F0(tak)3.277 E .776(es precedence.)-.1 F .776(If no)5.776 F F2(name)
-3.636 E F0(ar)3.456 E(gu-)-.18 E .521(ments are gi)144 237.6 R -.15(ve)
+3.636 E F0(ar)3.456 E(gu-)-.18 E .521(ments are gi)144 285.6 R -.15(ve)
 -.25 G .521(n, or if the).15 F F1<ad70>3.021 E F0 .521
 (option is supplied, a list of all readonly names is printed.)3.021 F
 .522(The other)5.521 F .295(options may be used to restrict the output \
-to a subset of the set of readonly names.)144 249.6 R(The)5.295 E F1
+to a subset of the set of readonly names.)144 297.6 R(The)5.295 E F1
 <ad70>2.795 E F0(option)2.795 E .786
 (causes output to be displayed in a format that may be reused as input.)
-144 261.6 R .786(If a v)5.786 F .786(ariable name is fol-)-.25 F(lo)144
-273.6 Q .718(wed by =)-.25 F F2(wor)A(d)-.37 E F0 3.218(,t)C .718(he v)
+144 309.6 R .786(If a v)5.786 F .786(ariable name is fol-)-.25 F(lo)144
+321.6 Q .718(wed by =)-.25 F F2(wor)A(d)-.37 E F0 3.218(,t)C .718(he v)
 -3.218 F .718(alue of the v)-.25 F .718(ariable is set to)-.25 F F2(wor)
 3.218 E(d)-.37 E F0 5.718(.T)C .718(he return status is 0 unless an in)
 -5.718 F -.25(va)-.4 G(lid).25 E .26(option is encountered, one of the)
-144 285.6 R F2(names)3.12 E F0 .26(is not a v)3.03 F .26(alid shell v)
+144 333.6 R F2(names)3.12 E F0 .26(is not a v)3.03 F .26(alid shell v)
 -.25 F .26(ariable name, or)-.25 F F1<ad66>2.76 E F0 .26
-(is supplied with a)2.76 F F2(name)144.36 297.6 Q F0
-(that is not a function.)2.68 E F1 -.18(re)108 314.4 S(tur).18 E(n)-.15
-E F0([)2.5 E F2(n)A F0(])A .021(Causes a function to stop e)144 326.4 R
+(is supplied with a)2.76 F F2(name)144.36 345.6 Q F0
+(that is not a function.)2.68 E F1 -.18(re)108 362.4 S(tur).18 E(n)-.15
+E F0([)2.5 E F2(n)A F0(])A .021(Causes a function to stop e)144 374.4 R
 -.15(xe)-.15 G .021(cuting and return the v).15 F .021
 (alue speci\214ed by)-.25 F F2(n)2.88 E F0 .02(to its caller)2.76 F 5.02
 (.I)-.55 G(f)-5.02 E F2(n)2.88 E F0 .02(is omitted,)2.76 F .596
-(the return status is that of the last command e)144 338.4 R -.15(xe)
+(the return status is that of the last command e)144 386.4 R -.15(xe)
 -.15 G .597(cuted in the function body).15 F 5.597(.I)-.65 G(f)-5.597 E
 F1 -.18(re)3.097 G(tur).18 E(n)-.15 E F0 .597(is e)3.097 F -.15(xe)-.15
-G(cuted).15 E .267(by a trap handler)144 350.4 R 2.767(,t)-.4 G .267
+G(cuted).15 E .267(by a trap handler)144 398.4 R 2.767(,t)-.4 G .267
 (he last command used to determine the status is the last command e)
 -2.767 F -.15(xe)-.15 G .267(cuted be-).15 F .02(fore the trap handler)
-144 362.4 R 5.02(.I)-.55 G(f)-5.02 E F1 -.18(re)2.52 G(tur).18 E(n)-.15
+144 410.4 R 5.02(.I)-.55 G(f)-5.02 E F1 -.18(re)2.52 G(tur).18 E(n)-.15
 E F0 .02(is e)2.52 F -.15(xe)-.15 G .02(cuted during a).15 F F1(DEB)2.52
 E(UG)-.1 E F0 .02(trap, the last command used to deter)2.52 F(-)-.2 E
-.886(mine the status is the last command e)144 374.4 R -.15(xe)-.15 G
+.886(mine the status is the last command e)144 422.4 R -.15(xe)-.15 G
 .886(cuted by the trap handler before).15 F F1 -.18(re)3.385 G(tur).18 E
 (n)-.15 E F0 -.1(wa)3.385 G 3.385(si).1 G -1.9 -.4(nv o)-3.385 H -.1(ke)
-.4 G 3.385(d. If).1 F F1 -.18(re)144 386.4 S(tur).18 E(n)-.15 E F0 .627
+.4 G 3.385(d. If).1 F F1 -.18(re)144 434.4 S(tur).18 E(n)-.15 E F0 .627
 (is used outside a function, b)3.127 F .628(ut during e)-.2 F -.15(xe)
 -.15 G .628(cution of a script by the).15 F F1(.)3.128 E F0(\()5.628 E
 F1(sour)A(ce)-.18 E F0 3.128(\)c)C .628(ommand, it)-3.128 F .589
-(causes the shell to stop e)144 398.4 R -.15(xe)-.15 G .589
+(causes the shell to stop e)144 446.4 R -.15(xe)-.15 G .589
 (cuting that script and return either).15 F F2(n)3.448 E F0 .588
 (or the e)3.328 F .588(xit status of the last com-)-.15 F .325(mand e)
-144 410.4 R -.15(xe)-.15 G .325(cuted within the script as the e).15 F
+144 458.4 R -.15(xe)-.15 G .325(cuted within the script as the e).15 F
 .326(xit status of the script.)-.15 F(If)5.326 E F2(n)2.826 E F0 .326
 (is supplied, the return v)2.826 F .326(alue is)-.25 F .445
-(its least signi\214cant 8 bits.)144 422.4 R .444
+(its least signi\214cant 8 bits.)144 470.4 R .444
 (The return status is non-zero if)5.445 F F1 -.18(re)2.944 G(tur).18 E
 (n)-.15 E F0 .444(is supplied a non-numeric ar)2.944 F(gu-)-.18 E .381
-(ment, or is used outside a function and not during e)144 434.4 R -.15
+(ment, or is used outside a function and not during e)144 482.4 R -.15
 (xe)-.15 G .381(cution of a script by).15 F F1(.)2.881 E F0(or)3.714 E
 F1(sour)2.881 E(ce)-.18 E F0 5.381(.A)C .681 -.15(ny c)-5.381 H(om-).15
-E .75(mand associated with the)144 446.4 R F1(RETURN)3.249 E F0 .749
+E .75(mand associated with the)144 494.4 R F1(RETURN)3.249 E F0 .749
 (trap is e)3.249 F -.15(xe)-.15 G .749(cuted before e).15 F -.15(xe)-.15
-G .749(cution resumes after the function).15 F(or script.)144 458.4 Q F1
-(set)108 475.2 Q F0([)2.5 E F1(\255abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1
+G .749(cution resumes after the function).15 F(or script.)144 506.4 Q F1
+(set)108 523.2 Q F0([)2.5 E F1(\255abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1
 <ad6f>-2.5 E F2(option\255name)2.5 E F0 2.5(][)C F1<adad>-2.5 E F0 2.5
 (][)C F1<ad>-2.5 E F0 2.5(][)C F2(ar)-2.5 E(g)-.37 E F0(...])2.5 E F1
-(set)108 487.2 Q F0([)2.5 E F1(+abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1(+o)
+(set)108 535.2 Q F0([)2.5 E F1(+abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1(+o)
 -2.5 E F2(option\255name)2.5 E F0 2.5(][)C F1<adad>-2.5 E F0 2.5(][)C F1
 <ad>-2.5 E F0 2.5(][)C F2(ar)-2.5 E(g)-.37 E F0(...])2.5 E -.4(Wi)144
-499.2 S .573(thout options, display the name and v).4 F .573
+547.2 S .573(thout options, display the name and v).4 F .573
 (alue of each shell v)-.25 F .574
 (ariable in a format that can be reused)-.25 F .113
-(as input for setting or resetting the currently-set v)144 511.2 R 2.613
+(as input for setting or resetting the currently-set v)144 559.2 R 2.613
 (ariables. Read-only)-.25 F -.25(va)2.613 G .113
-(riables cannot be reset.).25 F(In)5.112 E F2 1.032(posix mode)144 523.2
+(riables cannot be reset.).25 F(In)5.112 E F2 1.032(posix mode)144 571.2
 R F0 3.532(,o)C 1.032(nly shell v)-3.532 F 1.032(ariables are listed.)
 -.25 F 1.032(The output is sorted according to the current locale.)6.032
-F .581(When options are speci\214ed, the)144 535.2 R 3.081(ys)-.15 G
+F .581(When options are speci\214ed, the)144 583.2 R 3.081(ys)-.15 G
 .581(et or unset shell attrib)-3.081 F 3.081(utes. An)-.2 F 3.08(ya)-.15
 G -.18(rg)-3.08 G .58(uments remaining after op-).18 F .16
-(tion processing are treated as v)144 547.2 R .161
+(tion processing are treated as v)144 595.2 R .161
 (alues for the positional parameters and are assigned, in order)-.25 F
-2.661(,t)-.4 G(o)-2.661 E F1($1)2.661 E F0(,)A F1($2)144 559.2 Q F0(,)A
+2.661(,t)-.4 G(o)-2.661 E F1($1)2.661 E F0(,)A F1($2)144 607.2 Q F0(,)A
 F1 2.5(... $)2.5 F F2(n)A F0 5(.O)C(ptions, if speci\214ed, ha)-5 E .3
--.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1<ad61>144 571.2 Q
-F0 1.378(Each v)184 571.2 R 1.377
+-.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1<ad61>144 619.2 Q
+F0 1.378(Each v)184 619.2 R 1.377
 (ariable or function that is created or modi\214ed is gi)-.25 F -.15(ve)
 -.25 G 3.877(nt).15 G 1.377(he e)-3.877 F 1.377(xport attrib)-.15 F
-1.377(ute and)-.2 F(mark)184 583.2 Q(ed for e)-.1 E(xport to the en)-.15
-E(vironment of subsequent commands.)-.4 E F1<ad62>144 595.2 Q F0 .131
-(Report the status of terminated background jobs immediately)184 595.2 R
+1.377(ute and)-.2 F(mark)184 631.2 Q(ed for e)-.1 E(xport to the en)-.15
+E(vironment of subsequent commands.)-.4 E F1<ad62>144 643.2 Q F0 .131
+(Report the status of terminated background jobs immediately)184 643.2 R
 2.632(,r)-.65 G .132(ather than before the ne)-2.632 F(xt)-.15 E
-(primary prompt.)184 607.2 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o)
--.25 H(nly when job control is enabled.).15 E F1<ad65>144 619.2 Q F0
-.088(Exit immediately if a)184 619.2 R F2(pipeline)2.588 E F0 .087
+(primary prompt.)184 655.2 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o)
+-.25 H(nly when job control is enabled.).15 E F1<ad65>144 667.2 Q F0
+.088(Exit immediately if a)184 667.2 R F2(pipeline)2.588 E F0 .087
 (\(which may consist of a single)2.588 F F2 .087(simple command)2.587 F
-F0 .087(\), a)B F2(list)2.587 E F0 2.587(,o)C(r)-2.587 E(a)184 631.2 Q
+F0 .087(\), a)B F2(list)2.587 E F0 2.587(,o)C(r)-2.587 E(a)184 679.2 Q
 F2 .86(compound command)3.359 F F0(\(see)3.36 E F3 .86(SHELL GRAMMAR)
 3.36 F F0(in)3.11 E F2(bash\(1\))3.36 E F0 .86(\), e)B .86
-(xits with a non-zero sta-)-.15 F 2.853(tus. The)184 643.2 R .353
+(xits with a non-zero sta-)-.15 F 2.853(tus. The)184 691.2 R .353
 (shell does not e)2.853 F .352(xit if the command that f)-.15 F .352
 (ails is part of the command list imme-)-.1 F 1.107(diately follo)184
-655.2 R 1.107(wing a)-.25 F F1(while)3.607 E F0(or)3.607 E F1(until)
+703.2 R 1.107(wing a)-.25 F F1(while)3.607 E F0(or)3.607 E F1(until)
 3.607 E F0 -.1(ke)3.607 G(yw)-.05 E 1.108(ord, part of the test follo)
 -.1 F 1.108(wing the)-.25 F F1(if)3.608 E F0(or)3.608 E F1(elif)3.608 E
-F0(re-)3.608 E(serv)184 667.2 Q .28(ed w)-.15 F .28(ords, part of an)-.1
+F0(re-)3.608 E(serv)184 715.2 Q .28(ed w)-.15 F .28(ords, part of an)-.1
 F 2.78(yc)-.15 G .28(ommand e)-2.78 F -.15(xe)-.15 G .279(cuted in a).15
 F F1(&&)2.779 E F0(or)2.779 E F1(||)2.779 E F0 .279(list e)2.779 F .279
-(xcept the command fol-)-.15 F(lo)184 679.2 Q .702(wing the \214nal)-.25
+(xcept the command fol-)-.15 F(lo)184 727.2 Q .702(wing the \214nal)-.25
 F F1(&&)3.203 E F0(or)3.203 E F1(||)3.203 E F0 3.203(,a)C 1.003 -.15
 (ny c)-3.203 H .703(ommand in a pipeline b).15 F .703
-(ut the last, or if the command')-.2 F(s)-.55 E .476(return v)184 691.2
-R .476(alue is being in)-.25 F -.15(ve)-.4 G .476(rted with).15 F F1(!)
-2.976 E F0 5.476(.I)C 2.976(fac)-5.476 G .476
-(ompound command other than a subshell re-)-2.976 F .418
-(turns a non-zero status because a command f)184 703.2 R .418
-(ailed while)-.1 F F1<ad65>2.918 E F0 -.1(wa)2.918 G 2.918(sb).1 G .418
-(eing ignored, the shell)-2.918 F .473(does not e)184 715.2 R 2.973
-(xit. A)-.15 F .473(trap on)2.973 F F1(ERR)2.973 E F0 2.972(,i)C 2.972
-(fs)-2.972 G .472(et, is e)-2.972 F -.15(xe)-.15 G .472
-(cuted before the shell e).15 F 2.972(xits. This)-.15 F .472(option ap-)
-2.972 F 5.074(plies to the shell en)184 727.2 R 5.074
-(vironment and each subshell en)-.4 F 5.074(vironment separately \(see)
--.4 F(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(15)190.95 E 0 Cg EP
+(ut the last, or if the command')-.2 F(s)-.55 E(GNU Bash 5.2)72 768 Q
+(2023 January 27)141.79 E(15)190.95 E 0 Cg EP
 %%Page: 16 16
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 9/Times-Bold@0 SF .071
-(COMMAND EXECUTION ENVIR)184 84 R(ONMENT)-.27 E F0(in)2.32 E/F2 10
-/Times-Italic@0 SF(bash\(1\))2.57 E F0 .07
-(\), and may cause subshells to e)B(xit)-.15 E(before e)184 96 Q -.15
-(xe)-.15 G(cuting all the commands in the subshell.).15 E .998
-(If a compound command or shell function e)184 114 R -.15(xe)-.15 G .999
-(cutes in a conte).15 F .999(xt where)-.15 F/F3 10/Times-Bold@0 SF<ad65>
-3.499 E F0 .999(is being ig-)3.499 F .089(nored, none of the commands e)
-184 126 R -.15(xe)-.15 G .089
-(cuted within the compound command or function body).15 F .502
-(will be af)184 138 R .502(fected by the)-.25 F F3<ad65>3.002 E F0 .502
-(setting, e)3.002 F -.15(ve)-.25 G 3.002(ni).15 G(f)-3.002 E F3<ad65>
-3.002 E F0 .502(is set and a command returns a f)3.002 F .503
-(ailure sta-)-.1 F 4.184(tus. If)184 150 R 4.184(ac)4.184 G 1.684
-(ompound command or shell function sets)-4.184 F F3<ad65>4.183 E F0
+E(UIL)-.1 E(TINS\(1\))-.92 E .476(return v)184 84 R .476
+(alue is being in)-.25 F -.15(ve)-.4 G .476(rted with).15 F/F1 10
+/Times-Bold@0 SF(!)2.976 E F0 5.476(.I)C 2.976(fac)-5.476 G .476
+(ompound command other than a subshell re-)-2.976 F .418
+(turns a non-zero status because a command f)184 96 R .418(ailed while)
+-.1 F F1<ad65>2.918 E F0 -.1(wa)2.918 G 2.918(sb).1 G .418
+(eing ignored, the shell)-2.918 F .473(does not e)184 108 R 2.973
+(xit. A)-.15 F .473(trap on)2.973 F F1(ERR)2.973 E F0 2.972(,i)C 2.972
+(fs)-2.972 G .472(et, is e)-2.972 F -.15(xe)-.15 G .472
+(cuted before the shell e).15 F 2.972(xits. This)-.15 F .472(option ap-)
+2.972 F 2.113(plies to the shell en)184 120 R 2.113
+(vironment and each subshell en)-.4 F 2.114(vironment separately \(see)
+-.4 F/F2 9/Times-Bold@0 SF(COM-)4.614 E .676(MAND EXECUTION ENVIR)184
+132 R(ONMENT)-.27 E F0(in)2.926 E/F3 10/Times-Italic@0 SF(bash\(1\))
+3.175 E F0 .675(\), and may cause subshells to e)B .675(xit be-)-.15 F
+(fore e)184 144 Q -.15(xe)-.15 G
+(cuting all the commands in the subshell.).15 E .998
+(If a compound command or shell function e)184 162 R -.15(xe)-.15 G .999
+(cutes in a conte).15 F .999(xt where)-.15 F F1<ad65>3.499 E F0 .999
+(is being ig-)3.499 F .089(nored, none of the commands e)184 174 R -.15
+(xe)-.15 G .089(cuted within the compound command or function body).15 F
+.502(will be af)184 186 R .502(fected by the)-.25 F F1<ad65>3.002 E F0
+.502(setting, e)3.002 F -.15(ve)-.25 G 3.002(ni).15 G(f)-3.002 E F1
+<ad65>3.002 E F0 .502(is set and a command returns a f)3.002 F .503
+(ailure sta-)-.1 F 4.184(tus. If)184 198 R 4.184(ac)4.184 G 1.684
+(ompound command or shell function sets)-4.184 F F1<ad65>4.183 E F0
 1.683(while e)4.183 F -.15(xe)-.15 G 1.683(cuting in a conte).15 F(xt)
--.15 E(where)184 162 Q F3<ad65>3.153 E F0 .653
+-.15 E(where)184 210 Q F1<ad65>3.153 E F0 .653
 (is ignored, that setting will not ha)3.153 F .954 -.15(ve a)-.2 H .954
 -.15(ny e).15 H -.25(ff).15 G .654(ect until the compound command).25 F
-(or the command containing the function call completes.)184 174 Q F3
-<ad66>144 186 Q F0(Disable pathname e)184 186 Q(xpansion.)-.15 E F3
-<ad68>144 198 Q F0 .988(Remember the location of commands as the)184 198
+(or the command containing the function call completes.)184 222 Q F1
+<ad66>144 234 Q F0(Disable pathname e)184 234 Q(xpansion.)-.15 E F1
+<ad68>144 246 Q F0 .988(Remember the location of commands as the)184 246
 R 3.488(ya)-.15 G .988(re look)-3.488 F .988(ed up for e)-.1 F -.15(xe)
--.15 G 3.488(cution. This).15 F .987(is en-)3.487 F(abled by def)184 210
-Q(ault.)-.1 E F3<ad6b>144 222 Q F0 .513(All ar)184 222 R .514
+-.15 G 3.488(cution. This).15 F .987(is en-)3.487 F(abled by def)184 258
+Q(ault.)-.1 E F1<ad6b>144 270 Q F0 .513(All ar)184 270 R .514
 (guments in the form of assignment statements are placed in the en)-.18
 F .514(vironment for a)-.4 F
-(command, not just those that precede the command name.)184 234 Q F3
-<ad6d>144 246 Q F0 .149(Monitor mode.)184 246 R .149
+(command, not just those that precede the command name.)184 282 Q F1
+<ad6d>144 294 Q F0 .149(Monitor mode.)184 294 R .149
 (Job control is enabled.)5.149 F .148(This option is on by def)5.149 F
 .148(ault for interacti)-.1 F .448 -.15(ve s)-.25 H(hells).15 E .234
-(on systems that support it \(see)184 258 R F1 .235(JOB CONTR)2.735 F
-(OL)-.27 E F0(in)2.485 E F2(bash\(1\))2.735 E F0 2.735(\). All)B .235
-(processes run in a sepa-)2.735 F .253(rate process group.)184 270 R
+(on systems that support it \(see)184 306 R F2 .235(JOB CONTR)2.735 F
+(OL)-.27 E F0(in)2.485 E F3(bash\(1\))2.735 E F0 2.735(\). All)B .235
+(processes run in a sepa-)2.735 F .253(rate process group.)184 318 R
 .252
 (When a background job completes, the shell prints a line containing)
-5.253 F(its e)184 282 Q(xit status.)-.15 E F3<ad6e>144 294 Q F0 .652
-(Read commands b)184 294 R .652(ut do not e)-.2 F -.15(xe)-.15 G .652
+5.253 F(its e)184 330 Q(xit status.)-.15 E F1<ad6e>144 342 Q F0 .652
+(Read commands b)184 342 R .652(ut do not e)-.2 F -.15(xe)-.15 G .652
 (cute them.).15 F .653(This may be used to check a shell script for)
-5.652 F(syntax errors.)184 306 Q(This is ignored by interacti)5 E .3
--.15(ve s)-.25 H(hells.).15 E F3<ad6f>144 318 Q F2(option\255name)2.5 E
-F0(The)184 330 Q F2(option\255name)2.5 E F0(can be one of the follo)2.5
-E(wing:)-.25 E F3(allexport)184 342 Q F0(Same as)224 354 Q F3<ad61>2.5 E
-F0(.)A F3(braceexpand)184 366 Q F0(Same as)224 378 Q F3<ad42>2.5 E F0(.)
-A F3(emacs)184 390 Q F0 .089
-(Use an emacs-style command line editing interf)224 390 R 2.589
+5.652 F(syntax errors.)184 354 Q(This is ignored by interacti)5 E .3
+-.15(ve s)-.25 H(hells.).15 E F1<ad6f>144 366 Q F3(option\255name)2.5 E
+F0(The)184 378 Q F3(option\255name)2.5 E F0(can be one of the follo)2.5
+E(wing:)-.25 E F1(allexport)184 390 Q F0(Same as)224 402 Q F1<ad61>2.5 E
+F0(.)A F1(braceexpand)184 414 Q F0(Same as)224 426 Q F1<ad42>2.5 E F0(.)
+A F1(emacs)184 438 Q F0 .089
+(Use an emacs-style command line editing interf)224 438 R 2.589
 (ace. This)-.1 F .089(is enabled by def)2.589 F(ault)-.1 E .95
-(when the shell is interacti)224 402 R -.15(ve)-.25 G 3.45(,u).15 G .95
-(nless the shell is started with the)-3.45 F F3(\255\255noediting)3.45 E
-F0 2.5(option. This)224 414 R(also af)2.5 E(fects the editing interf)
--.25 E(ace used for)-.1 E F3 -.18(re)2.5 G(ad \255e).18 E F0(.)A F3(err)
-184 426 Q(exit)-.18 E F0(Same as)224 426 Q F3<ad65>2.5 E F0(.)A F3
-(errtrace)184 438 Q F0(Same as)224 438 Q F3<ad45>2.5 E F0(.)A F3
-(functrace)184 450 Q F0(Same as)224 462 Q F3<ad54>2.5 E F0(.)A F3
-(hashall)184 474 Q F0(Same as)224 474 Q F3<ad68>2.5 E F0(.)A F3
-(histexpand)184 486 Q F0(Same as)224 498 Q F3<ad48>2.5 E F0(.)A F3
-(history)184 510 Q F0 1.002(Enable command history)224 510 R 3.502(,a)
--.65 G 3.502(sd)-3.502 G 1.002(escribed in)-3.502 F F2(bash\(1\))3.502 E
-F0(under)3.502 E F1(HIST)3.502 E(OR)-.162 E(Y)-.315 E/F4 9/Times-Roman@0
-SF(.)A F0 1.001(This op-)5.502 F(tion is on by def)224 522 Q
-(ault in interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F3(ignor)184
-534 Q(eeof)-.18 E F0 1.656(The ef)224 546 R 1.656
+(when the shell is interacti)224 450 R -.15(ve)-.25 G 3.45(,u).15 G .95
+(nless the shell is started with the)-3.45 F F1(\255\255noediting)3.45 E
+F0 2.5(option. This)224 462 R(also af)2.5 E(fects the editing interf)
+-.25 E(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1(err)
+184 474 Q(exit)-.18 E F0(Same as)224 474 Q F1<ad65>2.5 E F0(.)A F1
+(errtrace)184 486 Q F0(Same as)224 486 Q F1<ad45>2.5 E F0(.)A F1
+(functrace)184 498 Q F0(Same as)224 510 Q F1<ad54>2.5 E F0(.)A F1
+(hashall)184 522 Q F0(Same as)224 522 Q F1<ad68>2.5 E F0(.)A F1
+(histexpand)184 534 Q F0(Same as)224 546 Q F1<ad48>2.5 E F0(.)A F1
+(history)184 558 Q F0 1.002(Enable command history)224 558 R 3.502(,a)
+-.65 G 3.502(sd)-3.502 G 1.002(escribed in)-3.502 F F3(bash\(1\))3.502 E
+F0(under)3.502 E F2(HIST)3.502 E(OR)-.162 E(Y)-.315 E/F4 9/Times-Roman@0
+SF(.)A F0 1.001(This op-)5.502 F(tion is on by def)224 570 Q
+(ault in interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(ignor)184
+582 Q(eeof)-.18 E F0 1.656(The ef)224 594 R 1.656
 (fect is as if the shell command)-.25 F/F5 10/Courier@0 SF(IGNOREEOF=10)
 4.157 E F0 1.657(had been e)4.157 F -.15(xe)-.15 G(cuted).15 E(\(see)224
-558 Q F3(Shell V)2.5 E(ariables)-.92 E F0(in)2.5 E F2(bash\(1\))2.5 E F0
-(\).)A F3 -.1(ke)184 570 S(yw).1 E(ord)-.1 E F0(Same as)224 582 Q F3
-<ad6b>2.5 E F0(.)A F3(monitor)184 594 Q F0(Same as)224 594 Q F3<ad6d>2.5
-E F0(.)A F3(noclob)184 606 Q(ber)-.1 E F0(Same as)224 618 Q F3<ad43>2.5
-E F0(.)A F3(noexec)184 630 Q F0(Same as)224 630 Q F3<ad6e>2.5 E F0(.)A
-F3(noglob)184 642 Q F0(Same as)224 642 Q F3<ad66>2.5 E F0(.)A F3(nolog)
-184 654 Q F0(Currently ignored.)224 654 Q F3(notify)184 666 Q F0
-(Same as)224 666 Q F3<ad62>2.5 E F0(.)A F3(nounset)184 678 Q F0(Same as)
-224 678 Q F3<ad75>2.5 E F0(.)A F3(onecmd)184 690 Q F0(Same as)224 690 Q
-F3<ad74>2.5 E F0(.)A F3(ph)184 702 Q(ysical)-.15 E F0(Same as)224 702 Q
-F3<ad50>2.5 E F0(.)A F3(pipefail)184 714 Q F0 1.03(If set, the return v)
-224 714 R 1.029(alue of a pipeline is the v)-.25 F 1.029
-(alue of the last \(rightmost\) com-)-.25 F 1.136(mand to e)224 726 R
-1.136
-(xit with a non-zero status, or zero if all commands in the pipeline)
--.15 F(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(16)190.95 E 0 Cg
-EP
+606 Q F1(Shell V)2.5 E(ariables)-.92 E F0(in)2.5 E F3(bash\(1\))2.5 E F0
+(\).)A F1 -.1(ke)184 618 S(yw).1 E(ord)-.1 E F0(Same as)224 630 Q F1
+<ad6b>2.5 E F0(.)A F1(monitor)184 642 Q F0(Same as)224 642 Q F1<ad6d>2.5
+E F0(.)A F1(noclob)184 654 Q(ber)-.1 E F0(Same as)224 666 Q F1<ad43>2.5
+E F0(.)A F1(noexec)184 678 Q F0(Same as)224 678 Q F1<ad6e>2.5 E F0(.)A
+F1(noglob)184 690 Q F0(Same as)224 690 Q F1<ad66>2.5 E F0(.)A F1(nolog)
+184 702 Q F0(Currently ignored.)224 702 Q F1(notify)184 714 Q F0
+(Same as)224 714 Q F1<ad62>2.5 E F0(.)A(GNU Bash 5.2)72 768 Q
+(2023 January 27)141.79 E(16)190.95 E 0 Cg EP
 %%Page: 17 17
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E -.15(ex)224 84 S(it successfully).15 E 5
-(.T)-.65 G(his option is disabled by def)-5 E(ault.)-.1 E/F1 10
-/Times-Bold@0 SF(posix)184 96 Q F0 2.091(Change the beha)224 96 R 2.091
-(vior of)-.2 F F1(bash)4.591 E F0 2.091(where the def)4.591 F 2.091
-(ault operation dif)-.1 F 2.091(fers from the)-.25 F 2.704
-(POSIX standard to match the standard \()224 108 R/F2 10/Times-Italic@0
-SF 2.704(posix mode)B F0 5.204(\). See)B/F3 9/Times-Bold@0 SF 2.704
-(SEE ALSO)5.204 F F0(in)4.954 E F2(bash\(1\))224 120 Q F0 1.844
-(for a reference to a document that details ho)4.345 F 4.344(wp)-.25 G
-1.844(osix mode af)-4.344 F(fects)-.25 E(bash')224 132 Q 2.5(sb)-.55 G
-(eha)-2.5 E(vior)-.2 E(.)-.55 E F1(pri)184 144 Q(vileged)-.1 E F0
-(Same as)224 156 Q F1<ad70>2.5 E F0(.)A F1 -.1(ve)184 168 S(rbose).1 E
-F0(Same as)224 168 Q F1<ad76>2.5 E F0(.)A F1(vi)184 180 Q F0 .209
-(Use a vi-style command line editing interf)224 180 R 2.709(ace. This)
--.1 F .209(also af)2.709 F .21(fects the editing in-)-.25 F(terf)224 192
-Q(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1(xtrace)
-184 204 Q F0(Same as)224 204 Q F1<ad78>2.5 E F0(.)A(If)184 222 Q F1
-<ad6f>3.053 E F0 .553(is supplied with no)3.053 F F2(option\255name)
-3.053 E F0 3.053(,t)C .553(he v)-3.053 F .552
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(nounset)184 84 Q F0
+(Same as)224 84 Q F1<ad75>2.5 E F0(.)A F1(onecmd)184 96 Q F0(Same as)224
+96 Q F1<ad74>2.5 E F0(.)A F1(ph)184 108 Q(ysical)-.15 E F0(Same as)224
+108 Q F1<ad50>2.5 E F0(.)A F1(pipefail)184 120 Q F0 1.03
+(If set, the return v)224 120 R 1.029(alue of a pipeline is the v)-.25 F
+1.029(alue of the last \(rightmost\) com-)-.25 F 1.136(mand to e)224 132
+R 1.136
+(xit with a non-zero status, or zero if all commands in the pipeline)
+-.15 F -.15(ex)224 144 S(it successfully).15 E 5(.T)-.65 G
+(his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 156 Q F0
+2.091(Change the beha)224 156 R 2.091(vior of)-.2 F F1(bash)4.591 E F0
+2.091(where the def)4.591 F 2.091(ault operation dif)-.1 F 2.091
+(fers from the)-.25 F 2.704(POSIX standard to match the standard \()224
+168 R/F2 10/Times-Italic@0 SF 2.704(posix mode)B F0 5.204(\). See)B/F3 9
+/Times-Bold@0 SF 2.704(SEE ALSO)5.204 F F0(in)4.954 E F2(bash\(1\))224
+180 Q F0 1.844(for a reference to a document that details ho)4.345 F
+4.344(wp)-.25 G 1.844(osix mode af)-4.344 F(fects)-.25 E(bash')224 192 Q
+2.5(sb)-.55 G(eha)-2.5 E(vior)-.2 E(.)-.55 E F1(pri)184 204 Q(vileged)
+-.1 E F0(Same as)224 216 Q F1<ad70>2.5 E F0(.)A F1 -.1(ve)184 228 S
+(rbose).1 E F0(Same as)224 228 Q F1<ad76>2.5 E F0(.)A F1(vi)184 240 Q F0
+.209(Use a vi-style command line editing interf)224 240 R 2.709
+(ace. This)-.1 F .209(also af)2.709 F .21(fects the editing in-)-.25 F
+(terf)224 252 Q(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)
+A F1(xtrace)184 264 Q F0(Same as)224 264 Q F1<ad78>2.5 E F0(.)A(If)184
+282 Q F1<ad6f>3.053 E F0 .553(is supplied with no)3.053 F F2
+(option\255name)3.053 E F0 3.053(,t)C .553(he v)-3.053 F .552
 (alues of the current options are printed.)-.25 F(If)5.552 E F1(+o)184
-234 Q F0 1.071(is supplied with no)3.571 F F2(option\255name)3.571 E F0
+294 Q F0 1.071(is supplied with no)3.571 F F2(option\255name)3.571 E F0
 3.571(,as)C 1.071(eries of)-3.571 F F1(set)3.572 E F0 1.072
 (commands to recreate the current)3.572 F
-(option settings is displayed on the standard output.)184 246 Q F1<ad70>
-144 258 Q F0 -.45(Tu)184 258 S 1.072(rn on).45 F F2(privile)4.822 E -.1
+(option settings is displayed on the standard output.)184 306 Q F1<ad70>
+144 318 Q F0 -.45(Tu)184 318 S 1.072(rn on).45 F F2(privile)4.822 E -.1
 (ge)-.4 G(d).1 E F0 3.572(mode. In)4.342 F 1.072(this mode, the)3.572 F
 F3($ENV)3.572 E F0(and)3.322 E F3($B)3.572 E(ASH_ENV)-.27 E F0 1.071
 (\214les are not pro-)3.322 F 1.5
-(cessed, shell functions are not inherited from the en)184 270 R 1.501
+(cessed, shell functions are not inherited from the en)184 330 R 1.501
 (vironment, and the)-.4 F F3(SHELLOPTS)4.001 E/F4 9/Times-Roman@0 SF(,)A
-F3 -.27(BA)184 282 S(SHOPTS).27 E F4(,)A F3(CDP)2.775 E -.855(AT)-.666 G
+F3 -.27(BA)184 342 S(SHOPTS).27 E F4(,)A F3(CDP)2.775 E -.855(AT)-.666 G
 (H).855 E F4(,)A F0(and)2.775 E F3(GLOBIGNORE)3.025 E F0 -.25(va)2.775 G
 .524(riables, if the).25 F 3.024(ya)-.15 G .524(ppear in the en)-3.024 F
-(vironment,)-.4 E .379(are ignored.)184 294 R .379
+(vironment,)-.4 E .379(are ignored.)184 354 R .379
 (If the shell is started with the ef)5.379 F(fecti)-.25 E .679 -.15
 (ve u)-.25 H .38(ser \(group\) id not equal to the real).15 F .462
-(user \(group\) id, and the)184 306 R F1<ad70>2.961 E F0 .461
+(user \(group\) id, and the)184 366 R F1<ad70>2.961 E F0 .461
 (option is not supplied, these actions are tak)2.961 F .461
-(en and the ef)-.1 F(fec-)-.25 E(ti)184 318 Q .694 -.15(ve u)-.25 H .394
+(en and the ef)-.1 F(fec-)-.25 E(ti)184 378 Q .694 -.15(ve u)-.25 H .394
 (ser id is set to the real user id.).15 F .395(If the)5.395 F F1<ad70>
 2.895 E F0 .395(option is supplied at startup, the ef)2.895 F(fecti)-.25
-E -.15(ve)-.25 G .387(user id is not reset.)184 330 R -.45(Tu)5.387 G
+E -.15(ve)-.25 G .387(user id is not reset.)184 390 R -.45(Tu)5.387 G
 .387(rning this option of).45 F 2.886(fc)-.25 G .386(auses the ef)-2.886
 F(fecti)-.25 E .686 -.15(ve u)-.25 H .386(ser and group ids to be).15 F
-(set to the real user and group ids.)184 342 Q F1<ad72>144 354 Q F0
-(Enable restricted shell mode.)184 354 Q
-(This option cannot be unset once it has been set.)5 E F1<ad74>144 366 Q
-F0(Exit after reading and e)184 366 Q -.15(xe)-.15 G
-(cuting one command.).15 E F1<ad75>144 378 Q F0 -.35(Tr)184 378 S .773
+(set to the real user and group ids.)184 402 Q F1<ad72>144 414 Q F0
+(Enable restricted shell mode.)184 414 Q
+(This option cannot be unset once it has been set.)5 E F1<ad74>144 426 Q
+F0(Exit after reading and e)184 426 Q -.15(xe)-.15 G
+(cuting one command.).15 E F1<ad75>144 438 Q F0 -.35(Tr)184 438 S .773
 (eat unset v).35 F .773(ariables and parameters other than the special \
-parameters "@" and "*", or)-.25 F .46(array v)184 390 R .459(ariables s\
+parameters "@" and "*", or)-.25 F .46(array v)184 450 R .459(ariables s\
 ubscripted with "@" or "*", as an error when performing parameter e)-.25
-F(x-)-.15 E 2.89(pansion. If)184 402 R -.15(ex)2.89 G .391
+F(x-)-.15 E 2.89(pansion. If)184 462 R -.15(ex)2.89 G .391
 (pansion is attempted on an unset v).15 F .391(ariable or parameter)-.25
 F 2.891(,t)-.4 G .391(he shell prints an)-2.891 F
-(error message, and, if not interacti)184 414 Q -.15(ve)-.25 G 2.5(,e)
-.15 G(xits with a non-zero status.)-2.65 E F1<ad76>144 426 Q F0
-(Print shell input lines as the)184 426 Q 2.5(ya)-.15 G(re read.)-2.5 E
-F1<ad78>144 438 Q F0 .315(After e)184 438 R .315(xpanding each)-.15 F F2
+(error message, and, if not interacti)184 474 Q -.15(ve)-.25 G 2.5(,e)
+.15 G(xits with a non-zero status.)-2.65 E F1<ad76>144 486 Q F0
+(Print shell input lines as the)184 486 Q 2.5(ya)-.15 G(re read.)-2.5 E
+F1<ad78>144 498 Q F0 .315(After e)184 498 R .315(xpanding each)-.15 F F2
 .315(simple command)2.815 F F0(,)A F1 -.25(fo)2.815 G(r).25 E F0
 (command,)2.815 E F1(case)2.815 E F0(command,)2.815 E F1(select)2.815 E
-F0(command,)2.815 E 1.235(or arithmetic)184 450 R F1 -.25(fo)3.736 G(r)
+F0(command,)2.815 E 1.235(or arithmetic)184 510 R F1 -.25(fo)3.736 G(r)
 .25 E F0 1.236(command, display the e)3.736 F 1.236(xpanded v)-.15 F
 1.236(alue of)-.25 F F3(PS4)3.736 E F4(,)A F0(follo)3.486 E 1.236
-(wed by the com-)-.25 F(mand and its e)184 462 Q(xpanded ar)-.15 E
+(wed by the com-)-.25 F(mand and its e)184 522 Q(xpanded ar)-.15 E
 (guments or associated w)-.18 E(ord list, to standard error)-.1 E(.)-.55
-E F1<ad42>144 474 Q F0 1.053(The shell performs brace e)184 474 R 1.053
+E F1<ad42>144 534 Q F0 1.053(The shell performs brace e)184 534 R 1.053
 (xpansion \(see)-.15 F F1 1.053(Brace Expansion)3.553 F F0(in)3.553 E F2
 (bash\(1\))3.553 E F0 3.553(\). This)B 1.053(is on by)3.553 F(def)184
-486 Q(ault.)-.1 E F1<ad43>144 498 Q F0 .213(If set,)184 498 R F1(bash)
+546 Q(ault.)-.1 E F1<ad43>144 558 Q F0 .213(If set,)184 558 R F1(bash)
 2.713 E F0 .213(does not o)2.713 F -.15(ve)-.15 G .214(rwrite an e).15 F
 .214(xisting \214le with the)-.15 F F1(>)2.714 E F0(,)A F1(>&)2.714 E F0
 2.714(,a)C(nd)-2.714 E F1(<>)2.714 E F0 .214(redirection opera-)2.714 F
-3.054(tors. This)184 510 R .553(may be o)3.053 F -.15(ve)-.15 G .553
+3.054(tors. This)184 570 R .553(may be o)3.053 F -.15(ve)-.15 G .553
 (rridden when creating output \214les by using the redirection opera-)
-.15 F(tor)184 522 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1
-<ad45>144 534 Q F0 .103(If set, an)184 534 R 2.603(yt)-.15 G .103
+.15 F(tor)184 582 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1
+<ad45>144 594 Q F0 .103(If set, an)184 594 R 2.603(yt)-.15 G .103
 (rap on)-2.603 F F1(ERR)2.603 E F0 .104
 (is inherited by shell functions, command substitutions, and com-)2.603
-F .839(mands e)184 546 R -.15(xe)-.15 G .839(cuted in a subshell en).15
+F .839(mands e)184 606 R -.15(xe)-.15 G .839(cuted in a subshell en).15
 F 3.339(vironment. The)-.4 F F1(ERR)3.338 E F0 .838
-(trap is normally not inherited in)3.338 F(such cases.)184 558 Q F1
-<ad48>144 570 Q F0(Enable)184 570 Q F1(!)3.031 E F0 .531
+(trap is normally not inherited in)3.338 F(such cases.)184 618 Q F1
+<ad48>144 630 Q F0(Enable)184 630 Q F1(!)3.031 E F0 .531
 (style history substitution.)5.531 F .531(This option is on by def)5.531
-F .532(ault when the shell is inter)-.1 F(-)-.2 E(acti)184 582 Q -.15
-(ve)-.25 G(.).15 E F1<ad50>144 594 Q F0 .96
-(If set, the shell does not resolv)184 594 R 3.459(es)-.15 G .959
+F .532(ault when the shell is inter)-.1 F(-)-.2 E(acti)184 642 Q -.15
+(ve)-.25 G(.).15 E F1<ad50>144 654 Q F0 .96
+(If set, the shell does not resolv)184 654 R 3.459(es)-.15 G .959
 (ymbolic links when e)-3.459 F -.15(xe)-.15 G .959
 (cuting commands such as).15 F F1(cd)3.459 E F0 1.452
-(that change the current w)184 606 R 1.452(orking directory)-.1 F 6.452
+(that change the current w)184 666 R 1.452(orking directory)-.1 F 6.452
 (.I)-.65 G 3.953(tu)-6.452 G 1.453(ses the ph)-3.953 F 1.453
-(ysical directory structure in-)-.05 F 3.335(stead. By)184 618 R(def)
+(ysical directory structure in-)-.05 F 3.335(stead. By)184 678 R(def)
 3.335 E(ault,)-.1 E F1(bash)3.334 E F0(follo)3.334 E .834
 (ws the logical chain of directories when performing com-)-.25 F
-(mands which change the current directory)184 630 Q(.)-.65 E F1<ad54>144
-642 Q F0 .89(If set, an)184 642 R 3.39(yt)-.15 G .89(raps on)-3.39 F F1
+(mands which change the current directory)184 690 Q(.)-.65 E F1<ad54>144
+702 Q F0 .89(If set, an)184 702 R 3.39(yt)-.15 G .89(raps on)-3.39 F F1
 (DEB)3.39 E(UG)-.1 E F0(and)3.39 E F1(RETURN)3.39 E F0 .89
 (are inherited by shell functions, command)3.39 F 1.932
-(substitutions, and commands e)184 654 R -.15(xe)-.15 G 1.932
+(substitutions, and commands e)184 714 R -.15(xe)-.15 G 1.932
 (cuted in a subshell en).15 F 4.432(vironment. The)-.4 F F1(DEB)4.432 E
-(UG)-.1 E F0(and)4.432 E F1(RETURN)184 666 Q F0
-(traps are normally not inherited in such cases.)2.5 E F1<adad>144 678 Q
-F0 .4(If no ar)184 678 R .401(guments follo)-.18 F 2.901(wt)-.25 G .401
-(his option, then the positional parameters are unset.)-2.901 F
-(Otherwise,)5.401 E(the positional parameters are set to the)184 690 Q
-F2(ar)2.5 E(g)-.37 E F0(s, e)A -.15(ve)-.25 G 2.5(ni).15 G 2.5(fs)-2.5 G
-(ome of them be)-2.5 E(gin with a)-.15 E F1<ad>2.5 E F0(.)A F1<ad>144
-702 Q F0 .797(Signal the end of options, cause all remaining)184 702 R
-F2(ar)3.297 E(g)-.37 E F0 3.297(st)C 3.297(ob)-3.297 G 3.296(ea)-3.297 G
-.796(ssigned to the positional pa-)-3.296 F 3.021(rameters. The)184 714
-R F1<ad78>3.021 E F0(and)3.022 E F1<ad76>3.022 E F0 .522
-(options are turned of)3.022 F 3.022(f. If)-.25 F .522(there are no)
-3.022 F F2(ar)3.022 E(g)-.37 E F0 .522(s, the positional pa-)B
-(rameters remain unchanged.)184 726 Q(GNU Bash 5.2)72 768 Q
-(2023 January 27)141.79 E(17)190.95 E 0 Cg EP
+(UG)-.1 E F0(and)4.432 E F1(RETURN)184 726 Q F0
+(traps are normally not inherited in such cases.)2.5 E(GNU Bash 5.2)72
+768 Q(2023 January 27)141.79 E(17)190.95 E 0 Cg EP
 %%Page: 18 18
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E .425(The options are of)144 84 R 2.925(fb)
--.25 G 2.925(yd)-2.925 G(ef)-2.925 E .425(ault unless otherwise noted.)
--.1 F .425(Using + rather than \255 causes these options)5.425 F .177
-(to be turned of)144 96 R 2.677(f. The)-.25 F .178
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF<adad>144 84 Q F0 .4
+(If no ar)184 84 R .401(guments follo)-.18 F 2.901(wt)-.25 G .401
+(his option, then the positional parameters are unset.)-2.901 F
+(Otherwise,)5.401 E(the positional parameters are set to the)184 96 Q/F2
+10/Times-Italic@0 SF(ar)2.5 E(g)-.37 E F0(s, e)A -.15(ve)-.25 G 2.5(ni)
+.15 G 2.5(fs)-2.5 G(ome of them be)-2.5 E(gin with a)-.15 E F1<ad>2.5 E
+F0(.)A F1<ad>144 108 Q F0 .797
+(Signal the end of options, cause all remaining)184 108 R F2(ar)3.297 E
+(g)-.37 E F0 3.297(st)C 3.297(ob)-3.297 G 3.296(ea)-3.297 G .796
+(ssigned to the positional pa-)-3.296 F 3.021(rameters. The)184 120 R F1
+<ad78>3.021 E F0(and)3.022 E F1<ad76>3.022 E F0 .522
+(options are turned of)3.022 F 3.022(f. If)-.25 F .522(there are no)
+3.022 F F2(ar)3.022 E(g)-.37 E F0 .522(s, the positional pa-)B
+(rameters remain unchanged.)184 132 Q .425(The options are of)144 148.8
+R 2.925(fb)-.25 G 2.925(yd)-2.925 G(ef)-2.925 E .425
+(ault unless otherwise noted.)-.1 F .425
+(Using + rather than \255 causes these options)5.425 F .177
+(to be turned of)144 160.8 R 2.677(f. The)-.25 F .178
 (options can also be speci\214ed as ar)2.678 F .178(guments to an in)
 -.18 F -.2(vo)-.4 G .178(cation of the shell.).2 F(The)5.178 E .066
-(current set of options may be found in)144 108 R/F1 10/Times-Bold@0 SF
-<24ad>2.566 E F0 5.066(.T)C .066(he return status is al)-5.066 F -.1(wa)
--.1 G .066(ys true unless an in).1 F -.25(va)-.4 G .066(lid option).25 F
-(is encountered.)144 120 Q F1(shift)108 136.8 Q F0([)2.5 E/F2 10
-/Times-Italic@0 SF(n)A F0(])A .428(The positional parameters from)144
-148.8 R F2(n)2.928 E F0 .429(+1 ... are renamed to)B F1 .429($1 ....)
-2.929 F F0 -.15(Pa)5.429 G .429(rameters represented by the num-).15 F
-(bers)144 160.8 Q F1($#)2.583 E F0(do)2.583 E .083(wn to)-.25 F F1($#)
-2.583 E F0<ad>A F2(n)A F0 .083(+1 are unset.)B F2(n)5.443 E F0 .083
-(must be a non-ne)2.823 F -.05(ga)-.15 G(ti).05 E .382 -.15(ve n)-.25 H
-.082(umber less than or equal to).15 F F1($#)2.582 E F0 5.082(.I)C(f)
--5.082 E F2(n)2.942 E F0 .06(is 0, no parameters are changed.)144 172.8
-R(If)5.06 E F2(n)2.92 E F0 .06(is not gi)2.8 F -.15(ve)-.25 G .06
-(n, it is assumed to be 1.).15 F(If)5.06 E F2(n)2.92 E F0 .06
-(is greater than)2.8 F F1($#)2.56 E F0 2.56(,t)C(he)-2.56 E .144
-(positional parameters are not changed.)144 184.8 R .144
-(The return status is greater than zero if)5.144 F F2(n)3.003 E F0 .143
-(is greater than)2.883 F F1($#)2.643 E F0
-(or less than zero; otherwise 0.)144 196.8 Q F1(shopt)108 213.6 Q F0([)
+(current set of options may be found in)144 172.8 R F1<24ad>2.566 E F0
+5.066(.T)C .066(he return status is al)-5.066 F -.1(wa)-.1 G .066
+(ys true unless an in).1 F -.25(va)-.4 G .066(lid option).25 F
+(is encountered.)144 184.8 Q F1(shift)108 201.6 Q F0([)2.5 E F2(n)A F0
+(])A .428(The positional parameters from)144 213.6 R F2(n)2.928 E F0
+.429(+1 ... are renamed to)B F1 .429($1 ....)2.929 F F0 -.15(Pa)5.429 G
+.429(rameters represented by the num-).15 F(bers)144 225.6 Q F1($#)2.583
+E F0(do)2.583 E .083(wn to)-.25 F F1($#)2.583 E F0<ad>A F2(n)A F0 .083
+(+1 are unset.)B F2(n)5.443 E F0 .083(must be a non-ne)2.823 F -.05(ga)
+-.15 G(ti).05 E .382 -.15(ve n)-.25 H .082(umber less than or equal to)
+.15 F F1($#)2.582 E F0 5.082(.I)C(f)-5.082 E F2(n)2.942 E F0 .06
+(is 0, no parameters are changed.)144 237.6 R(If)5.06 E F2(n)2.92 E F0
+.06(is not gi)2.8 F -.15(ve)-.25 G .06(n, it is assumed to be 1.).15 F
+(If)5.06 E F2(n)2.92 E F0 .06(is greater than)2.8 F F1($#)2.56 E F0 2.56
+(,t)C(he)-2.56 E .144(positional parameters are not changed.)144 249.6 R
+.144(The return status is greater than zero if)5.144 F F2(n)3.003 E F0
+.143(is greater than)2.883 F F1($#)2.643 E F0
+(or less than zero; otherwise 0.)144 261.6 Q F1(shopt)108 278.4 Q F0([)
 2.5 E F1(\255pqsu)A F0 2.5(][)C F1<ad6f>-2.5 E F0 2.5(][)C F2(optname)
--2.5 E F0(...])2.5 E -.8(To)144 225.6 S .639(ggle the v).8 F .639
+-2.5 E F0(...])2.5 E -.8(To)144 290.4 S .639(ggle the v).8 F .639
 (alues of settings controlling optional shell beha)-.25 F(vior)-.2 E
 5.639(.T)-.55 G .64(he settings can be either those)-5.639 F .375
-(listed belo)144 237.6 R 1.675 -.65(w, o)-.25 H 1.175 -.4(r, i).65 H
+(listed belo)144 302.4 R 1.675 -.65(w, o)-.25 H 1.175 -.4(r, i).65 H
 2.875(ft).4 G(he)-2.875 E F1<ad6f>2.875 E F0 .375
 (option is used, those a)2.875 F -.25(va)-.2 G .375(ilable with the).25
 F F1<ad6f>2.875 E F0 .374(option to the)2.875 F F1(set)2.874 E F0 -.2
-(bu)2.874 G .374(iltin com-).2 F 2.565(mand. W)144 249.6 R .065
+(bu)2.874 G .374(iltin com-).2 F 2.565(mand. W)144 314.4 R .065
 (ith no options, or with the)-.4 F F1<ad70>2.566 E F0 .066
 (option, a list of all settable options is displayed, with an in-)2.566
-F .074(dication of whether or not each is set; if)144 261.6 R F2
+F .074(dication of whether or not each is set; if)144 326.4 R F2
 (optnames)2.574 E F0 .074
 (are supplied, the output is restricted to those op-)2.574 F 3.105
-(tions. The)144 273.6 R F1<ad70>3.105 E F0 .605(option causes output to\
+(tions. The)144 338.4 R F1<ad70>3.105 E F0 .605(option causes output to\
  be displayed in a form that may be reused as input.)3.105 F(Other)5.605
-E(options ha)144 285.6 Q .3 -.15(ve t)-.2 H(he follo).15 E
-(wing meanings:)-.25 E F1<ad73>144 297.6 Q F0(Enable \(set\) each)180
-297.6 Q F2(optname)2.5 E F0(.)A F1<ad75>144 309.6 Q F0
-(Disable \(unset\) each)180 309.6 Q F2(optname)2.5 E F0(.)A F1<ad71>144
-321.6 Q F0 .003(Suppresses normal output \(quiet mode\); the return sta\
-tus indicates whether the)180 321.6 R F2(optname)2.503 E F0(is)2.503 E
-.255(set or unset.)180 333.6 R .255(If multiple)5.255 F F2(optname)2.755
+E(options ha)144 350.4 Q .3 -.15(ve t)-.2 H(he follo).15 E
+(wing meanings:)-.25 E F1<ad73>144 362.4 Q F0(Enable \(set\) each)180
+362.4 Q F2(optname)2.5 E F0(.)A F1<ad75>144 374.4 Q F0
+(Disable \(unset\) each)180 374.4 Q F2(optname)2.5 E F0(.)A F1<ad71>144
+386.4 Q F0 .003(Suppresses normal output \(quiet mode\); the return sta\
+tus indicates whether the)180 386.4 R F2(optname)2.503 E F0(is)2.503 E
+.255(set or unset.)180 398.4 R .255(If multiple)5.255 F F2(optname)2.755
 E F0(ar)2.755 E .256(guments are gi)-.18 F -.15(ve)-.25 G 2.756(nw).15 G
 (ith)-2.756 E F1<ad71>2.756 E F0 2.756(,t)C .256
-(he return status is zero if)-2.756 F(all)180 345.6 Q F2(optnames)2.5 E
-F0(are enabled; non-zero otherwise.)2.5 E F1<ad6f>144 357.6 Q F0
-(Restricts the v)180 357.6 Q(alues of)-.25 E F2(optname)2.5 E F0
+(he return status is zero if)-2.756 F(all)180 410.4 Q F2(optnames)2.5 E
+F0(are enabled; non-zero otherwise.)2.5 E F1<ad6f>144 422.4 Q F0
+(Restricts the v)180 422.4 Q(alues of)-.25 E F2(optname)2.5 E F0
 (to be those de\214ned for the)2.5 E F1<ad6f>2.5 E F0(option to the)2.5
-E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .625(If either)144 374.4 R F1
+E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .625(If either)144 439.2 R F1
 <ad73>3.125 E F0(or)3.124 E F1<ad75>3.124 E F0 .624(is used with no)
 3.124 F F2(optname)3.124 E F0(ar)3.124 E(guments,)-.18 E F1(shopt)3.124
 E F0(sho)3.124 E .624(ws only those options which are)-.25 F .983
-(set or unset, respecti)144 386.4 R -.15(ve)-.25 G(ly).15 E 5.983(.U)
+(set or unset, respecti)144 451.2 R -.15(ve)-.25 G(ly).15 E 5.983(.U)
 -.65 G .983(nless otherwise noted, the)-5.983 F F1(shopt)3.484 E F0 .984
-(options are disabled \(unset\) by de-)3.484 F -.1(fa)144 398.4 S(ult.)
-.1 E 1.544(The return status when listing options is zero if all)144
-415.2 R F2(optnames)4.044 E F0 1.544(are enabled, non-zero otherwise.)
-4.044 F .696
+(options are disabled \(unset\) by de-)3.484 F -.1(fa)144 463.2 S(ult.)
+.1 E 1.544(The return status when listing options is zero if all)144 480
+R F2(optnames)4.044 E F0 1.544(are enabled, non-zero otherwise.)4.044 F
+.696
 (When setting or unsetting options, the return status is zero unless an)
-144 427.2 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .696
-(alid shell)-.25 F(option.)144 439.2 Q(The list of)144 456 Q F1(shopt)
-2.5 E F0(options is:)2.5 E F1(assoc_expand_once)144 474 Q F0 1.945
-(If set, the shell suppresses multiple e)184 486 R -.25(va)-.25 G 1.944
-(luation of associati).25 F 2.244 -.15(ve a)-.25 H 1.944
-(rray subscripts during).15 F .885(arithmetic e)184 498 R .885
+144 492 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .696(alid shell)
+-.25 F(option.)144 504 Q(The list of)144 520.8 Q F1(shopt)2.5 E F0
+(options is:)2.5 E F1(assoc_expand_once)144 538.8 Q F0 1.945
+(If set, the shell suppresses multiple e)184 550.8 R -.25(va)-.25 G
+1.944(luation of associati).25 F 2.244 -.15(ve a)-.25 H 1.944
+(rray subscripts during).15 F .885(arithmetic e)184 562.8 R .885
 (xpression e)-.15 F -.25(va)-.25 G .885(luation, while e).25 F -.15(xe)
 -.15 G .885(cuting b).15 F .885(uiltins that can perform v)-.2 F .885
-(ariable as-)-.25 F(signments, and while e)184 510 Q -.15(xe)-.15 G
+(ariable as-)-.25 F(signments, and while e)184 574.8 Q -.15(xe)-.15 G
 (cuting b).15 E(uiltins that perform array dereferencing.)-.2 E F1
-(autocd)144 522 Q F0 .2
-(If set, a command name that is the name of a directory is e)184 522 R
+(autocd)144 586.8 Q F0 .2
+(If set, a command name that is the name of a directory is e)184 586.8 R
 -.15(xe)-.15 G .199(cuted as if it were the ar).15 F(gu-)-.18 E
-(ment to the)184 534 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F
+(ment to the)184 598.8 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F
 (option is only used by interacti)2.5 E .3 -.15(ve s)-.25 H(hells.).15 E
-F1(cdable_v)144 546 Q(ars)-.1 E F0 .155(If set, an ar)184 558 R .155
+F1(cdable_v)144 610.8 Q(ars)-.1 E F0 .155(If set, an ar)184 622.8 R .155
 (gument to the)-.18 F F1(cd)2.655 E F0 -.2(bu)2.655 G .156
 (iltin command that is not a directory is assumed to be the).2 F
-(name of a v)184 570 Q(ariable whose v)-.25 E
-(alue is the directory to change to.)-.25 E F1(cdspell)144 582 Q F0
+(name of a v)184 634.8 Q(ariable whose v)-.25 E
+(alue is the directory to change to.)-.25 E F1(cdspell)144 646.8 Q F0
 1.055
 (If set, minor errors in the spelling of a directory component in a)184
-582 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.987
-(corrected. The)184 594 R 1.487(errors check)3.987 F 1.487
+646.8 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.987
+(corrected. The)184 658.8 R 1.487(errors check)3.987 F 1.487
 (ed for are transposed characters, a missing character)-.1 F 3.988(,a)
--.4 G(nd)-3.988 E .77(one character too man)184 606 R 4.57 -.65(y. I)
+-.4 G(nd)-3.988 E .77(one character too man)184 670.8 R 4.57 -.65(y. I)
 -.15 H 3.27(fac).65 G .77
 (orrection is found, the corrected \214lename is printed, and)-3.27 F
-(the command proceeds.)184 618 Q(This option is only used by interacti)5
-E .3 -.15(ve s)-.25 H(hells.).15 E F1(checkhash)144 630 Q F0 .736
-(If set,)184 642 R F1(bash)3.236 E F0 .736
-(checks that a command found in the hash table e)3.236 F .737
-(xists before trying to e)-.15 F -.15(xe)-.15 G(-).15 E(cute it.)184 654
-Q(If a hashed command no longer e)5 E
-(xists, a normal path search is performed.)-.15 E F1(checkjobs)144 666 Q
-F0 .449(If set,)184 678 R F1(bash)2.949 E F0 .449
-(lists the status of an)2.949 F 2.949(ys)-.15 G .448
-(topped and running jobs before e)-2.949 F .448(xiting an interacti)-.15
-F -.15(ve)-.25 G 2.661(shell. If)184 690 R(an)2.661 E 2.661(yj)-.15 G
-.161(obs are running, this causes the e)-2.661 F .161
-(xit to be deferred until a second e)-.15 F .162(xit is at-)-.15 F 1.091
-(tempted without an interv)184 702 R 1.091(ening command \(see)-.15 F/F3
-9/Times-Bold@0 SF 1.091(JOB CONTR)3.591 F(OL)-.27 E F0(in)3.341 E F2
-(bash\(1\))3.591 E F0 3.591(\). The)B(shell)3.591 E(al)184 714 Q -.1(wa)
--.1 G(ys postpones e).1 E(xiting if an)-.15 E 2.5(yj)-.15 G
-(obs are stopped.)-2.5 E(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E
-(18)190.95 E 0 Cg EP
+(the command proceeds.)184 682.8 Q
+(This option is only used by interacti)5 E .3 -.15(ve s)-.25 H(hells.)
+.15 E F1(checkhash)144 694.8 Q F0 .736(If set,)184 706.8 R F1(bash)3.236
+E F0 .736(checks that a command found in the hash table e)3.236 F .737
+(xists before trying to e)-.15 F -.15(xe)-.15 G(-).15 E(cute it.)184
+718.8 Q(If a hashed command no longer e)5 E
+(xists, a normal path search is performed.)-.15 E(GNU Bash 5.2)72 768 Q
+(2023 January 27)141.79 E(18)190.95 E 0 Cg EP
 %%Page: 19 19
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(checkwinsize)144 84 Q
-F0 1.09(If set,)184 96 R F1(bash)3.59 E F0 1.09(checks the windo)3.59 F
-3.59(ws)-.25 G 1.09(ize after each e)-3.59 F 1.09(xternal \(non-b)-.15 F
-1.09(uiltin\) command and, if)-.2 F(necessary)184 108 Q 3.351(,u)-.65 G
-.851(pdates the v)-3.351 F .85(alues of)-.25 F/F2 9/Times-Bold@0 SF
-(LINES)3.35 E F0(and)3.1 E F2(COLUMNS)3.35 E/F3 9/Times-Roman@0 SF(.)A
-F0 .85(This option is enabled by de-)5.35 F -.1(fa)184 120 S(ult.).1 E
-F1(cmdhist)144 132 Q F0 .172(If set,)184 132 R F1(bash)2.672 E F0 .172
-(attempts to sa)2.672 F .472 -.15(ve a)-.2 H .173
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(checkjobs)144 84 Q F0
+.449(If set,)184 96 R F1(bash)2.949 E F0 .449(lists the status of an)
+2.949 F 2.949(ys)-.15 G .448(topped and running jobs before e)-2.949 F
+.448(xiting an interacti)-.15 F -.15(ve)-.25 G 2.661(shell. If)184 108 R
+(an)2.661 E 2.661(yj)-.15 G .161(obs are running, this causes the e)
+-2.661 F .161(xit to be deferred until a second e)-.15 F .162
+(xit is at-)-.15 F 1.091(tempted without an interv)184 120 R 1.091
+(ening command \(see)-.15 F/F2 9/Times-Bold@0 SF 1.091(JOB CONTR)3.591 F
+(OL)-.27 E F0(in)3.341 E/F3 10/Times-Italic@0 SF(bash\(1\))3.591 E F0
+3.591(\). The)B(shell)3.591 E(al)184 132 Q -.1(wa)-.1 G(ys postpones e)
+.1 E(xiting if an)-.15 E 2.5(yj)-.15 G(obs are stopped.)-2.5 E F1
+(checkwinsize)144 144 Q F0 1.09(If set,)184 156 R F1(bash)3.59 E F0 1.09
+(checks the windo)3.59 F 3.59(ws)-.25 G 1.09(ize after each e)-3.59 F
+1.09(xternal \(non-b)-.15 F 1.09(uiltin\) command and, if)-.2 F
+(necessary)184 168 Q 3.351(,u)-.65 G .851(pdates the v)-3.351 F .85
+(alues of)-.25 F F2(LINES)3.35 E F0(and)3.1 E F2(COLUMNS)3.35 E/F4 9
+/Times-Roman@0 SF(.)A F0 .85(This option is enabled by de-)5.35 F -.1
+(fa)184 180 S(ult.).1 E F1(cmdhist)144 192 Q F0 .172(If set,)184 192 R
+F1(bash)2.672 E F0 .172(attempts to sa)2.672 F .472 -.15(ve a)-.2 H .173
 (ll lines of a multiple-line command in the same history en-).15 F(try)
-184 144 Q 5.597(.T)-.65 G .597(his allo)-5.597 F .597
+184 204 Q 5.597(.T)-.65 G .597(his allo)-5.597 F .597
 (ws easy re-editing of multi-line commands.)-.25 F .597
-(This option is enabled by de-)5.597 F -.1(fa)184 156 S .052(ult, b).1 F
+(This option is enabled by de-)5.597 F -.1(fa)184 216 S .052(ult, b).1 F
 .052(ut only has an ef)-.2 F .052
-(fect if command history is enabled, as described in)-.25 F/F4 10
-/Times-Italic@0 SF(bash\(1\))2.552 E F0(under)2.552 E F2(HIST)184 168 Q
-(OR)-.162 E(Y)-.315 E F3(.)A F1(compat31)144 180 Q(compat32)144 192 Q
-(compat40)144 204 Q(compat41)144 216 Q(compat42)144 228 Q(compat43)144
-240 Q(compat44)144 252 Q(compat50)144 264 Q F0 .889
-(These control aspects of the shell')184 276 R 3.389(sc)-.55 G .889
-(ompatibility mode \(see)-3.389 F F2 .889(SHELL COMP)3.389 F -.855(AT)
--.666 G(IBILITY).855 E(MODE)184 288 Q F0(in)2.25 E F4(bash\(1\))2.5 E F0
-(\).)A F1(complete_fullquote)144 304.8 Q F0 .653(If set,)184 316.8 R F1
-(bash)3.153 E F0 .653(quotes all shell metacharacters in \214lenames an\
-d directory names when per)3.153 F(-)-.2 E 1.525(forming completion.)184
-328.8 R 1.524(If not set,)6.525 F F1(bash)4.024 E F0(remo)4.024 E -.15
-(ve)-.15 G 4.024(sm).15 G 1.524(etacharacters such as the dollar sign)
--4.024 F 2.667(from the set of characters that will be quoted in comple\
-ted \214lenames when these)184 340.8 R .029
-(metacharacters appear in shell v)184 352.8 R .028
+(fect if command history is enabled, as described in)-.25 F F3
+(bash\(1\))2.552 E F0(under)2.552 E F2(HIST)184 228 Q(OR)-.162 E(Y)-.315
+E F4(.)A F1(compat31)144 240 Q(compat32)144 252 Q(compat40)144 264 Q
+(compat41)144 276 Q(compat42)144 288 Q(compat43)144 300 Q(compat44)144
+312 Q(compat50)144 324 Q F0 .889(These control aspects of the shell')184
+336 R 3.389(sc)-.55 G .889(ompatibility mode \(see)-3.389 F F2 .889
+(SHELL COMP)3.389 F -.855(AT)-.666 G(IBILITY).855 E(MODE)184 348 Q F0
+(in)2.25 E F3(bash\(1\))2.5 E F0(\).)A F1(complete_fullquote)144 364.8 Q
+F0 .653(If set,)184 376.8 R F1(bash)3.153 E F0 .653(quotes all shell me\
+tacharacters in \214lenames and directory names when per)3.153 F(-)-.2 E
+1.525(forming completion.)184 388.8 R 1.524(If not set,)6.525 F F1(bash)
+4.024 E F0(remo)4.024 E -.15(ve)-.15 G 4.024(sm).15 G 1.524
+(etacharacters such as the dollar sign)-4.024 F 2.667(from the set of c\
+haracters that will be quoted in completed \214lenames when these)184
+400.8 R .029(metacharacters appear in shell v)184 412.8 R .028
 (ariable references in w)-.25 F .028(ords to be completed.)-.1 F .028
-(This means)5.028 F 1.072(that dollar signs in v)184 364.8 R 1.073
+(This means)5.028 F 1.072(that dollar signs in v)184 424.8 R 1.073
 (ariable names that e)-.25 F 1.073
 (xpand to directories will not be quoted; ho)-.15 F(w-)-.25 E -2.15 -.25
-(ev e)184 376.8 T 1.923 -.4(r, a).25 H 1.423 -.15(ny d).4 H 1.123
+(ev e)184 436.8 T 1.923 -.4(r, a).25 H 1.423 -.15(ny d).4 H 1.123
 (ollar signs appearing in \214lenames will not be quoted, either).15 F
 6.123(.T)-.55 G 1.122(his is acti)-6.123 F -.15(ve)-.25 G .59
 (only when bash is using backslashes to quote completed \214lenames.)184
-388.8 R .59(This v)5.59 F .59(ariable is set)-.25 F(by def)184 400.8 Q
+448.8 R .59(This v)5.59 F .59(ariable is set)-.25 F(by def)184 460.8 Q
 (ault, which is the def)-.1 E(ault bash beha)-.1 E(vior in v)-.2 E
-(ersions through 4.2.)-.15 E F1(dir)144 417.6 Q(expand)-.18 E F0 .487
-(If set,)184 429.6 R F1(bash)2.987 E F0 .486
+(ersions through 4.2.)-.15 E F1(dir)144 477.6 Q(expand)-.18 E F0 .487
+(If set,)184 489.6 R F1(bash)2.987 E F0 .486
 (replaces directory names with the results of w)2.986 F .486(ord e)-.1 F
 .486(xpansion when perform-)-.15 F .179(ing \214lename completion.)184
-441.6 R .179(This changes the contents of the readline editing b)5.179 F
+501.6 R .179(This changes the contents of the readline editing b)5.179 F
 (uf)-.2 E(fer)-.25 E 5.18(.I)-.55 G 2.68(fn)-5.18 G(ot)-2.68 E(set,)184
-453.6 Q F1(bash)2.5 E F0(attempts to preserv)2.5 E 2.5(ew)-.15 G
-(hat the user typed.)-2.5 E F1(dirspell)144 470.4 Q F0 .859(If set,)184
-470.4 R F1(bash)3.359 E F0 .858
+513.6 Q F1(bash)2.5 E F0(attempts to preserv)2.5 E 2.5(ew)-.15 G
+(hat the user typed.)-2.5 E F1(dirspell)144 530.4 Q F0 .859(If set,)184
+530.4 R F1(bash)3.359 E F0 .858
 (attempts spelling correction on directory names during w)3.359 F .858
 (ord completion if)-.1 F
-(the directory name initially supplied does not e)184 482.4 Q(xist.)-.15
-E F1(dotglob)144 499.2 Q F0 .165(If set,)184 499.2 R F1(bash)2.665 E F0
+(the directory name initially supplied does not e)184 542.4 Q(xist.)-.15
+E F1(dotglob)144 559.2 Q F0 .165(If set,)184 559.2 R F1(bash)2.665 E F0
 .165(includes \214lenames be)2.665 F .165(ginning with a `.)-.15 F 2.665
 ('i)-.7 G 2.665(nt)-2.665 G .165(he results of pathname e)-2.665 F
-(xpansion.)-.15 E(The \214lenames)184 511.2 Q F1 -.63(``)2.5 G -.55(.')
+(xpansion.)-.15 E(The \214lenames)184 571.2 Q F1 -.63(``)2.5 G -.55(.')
 .63 G(')-.08 E F0(and)5 E F1 -.63(``)2.5 G(..).63 E -.63('')-.55 G F0
 (must al)5.63 E -.1(wa)-.1 G(ys be matched e).1 E(xplicitly)-.15 E 2.5
 (,e)-.65 G -.15(ve)-2.75 G 2.5(ni).15 G(f)-2.5 E F1(dotglob)2.5 E F0
-(is set.)2.5 E F1(execfail)144 528 Q F0 .517(If set, a non-interacti)184
-528 R .817 -.15(ve s)-.25 H .517(hell will not e).15 F .516
+(is set.)2.5 E F1(execfail)144 588 Q F0 .517(If set, a non-interacti)184
+588 R .817 -.15(ve s)-.25 H .517(hell will not e).15 F .516
 (xit if it cannot e)-.15 F -.15(xe)-.15 G .516
 (cute the \214le speci\214ed as an ar).15 F(-)-.2 E(gument to the)184
-540 Q F1(exec)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 E(An interacti)5 E
+600 Q F1(exec)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 E(An interacti)5 E
 .3 -.15(ve s)-.25 H(hell does not e).15 E(xit if)-.15 E F1(exec)2.5 E F0
--.1(fa)2.5 G(ils.).1 E F1(expand_aliases)144 556.8 Q F0 .742
-(If set, aliases are e)184 568.8 R .743(xpanded as described in)-.15 F
-F4(bash\(1\))3.243 E F0(under)3.243 E F2(ALIASES)3.243 E F3(.)A F0 .743
-(This option is en-)5.243 F(abled by def)184 580.8 Q(ault for interacti)
--.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(extdeb)144 597.6 Q(ug)-.2 E F0
-.17(If set at shell in)184 609.6 R -.2(vo)-.4 G .17
+-.1(fa)2.5 G(ils.).1 E F1(expand_aliases)144 616.8 Q F0 .742
+(If set, aliases are e)184 628.8 R .743(xpanded as described in)-.15 F
+F3(bash\(1\))3.243 E F0(under)3.243 E F2(ALIASES)3.243 E F4(.)A F0 .743
+(This option is en-)5.243 F(abled by def)184 640.8 Q(ault for interacti)
+-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(extdeb)144 657.6 Q(ug)-.2 E F0
+.17(If set at shell in)184 669.6 R -.2(vo)-.4 G .17
 (cation, or in a shell startup \214le, arrange to e).2 F -.15(xe)-.15 G
 .17(cute the deb).15 F .17(ugger pro\214le)-.2 F 1.081
-(before the shell starts, identical to the)184 621.6 R F1<adad646562>
+(before the shell starts, identical to the)184 681.6 R F1<adad646562>
 3.582 E(ugger)-.2 E F0 3.582(option. If)3.582 F 1.082(set after in)3.582
-F -.2(vo)-.4 G 1.082(cation, be-).2 F(ha)184 633.6 Q
+F -.2(vo)-.4 G 1.082(cation, be-).2 F(ha)184 693.6 Q
 (vior intended for use by deb)-.2 E(uggers is enabled:)-.2 E F1(1.)184
-650.4 Q F0(The)220 650.4 Q F1<ad46>4.251 E F0 1.751(option to the)4.251
+710.4 Q F0(The)220 710.4 Q F1<ad46>4.251 E F0 1.751(option to the)4.251
 F F1(declar)4.251 E(e)-.18 E F0 -.2(bu)4.251 G 1.751
 (iltin displays the source \214le name and line).2 F
-(number corresponding to each function name supplied as an ar)220 662.4
-Q(gument.)-.18 E F1(2.)184 679.2 Q F0 1.667(If the command run by the)
-220 679.2 R F1(DEB)4.167 E(UG)-.1 E F0 1.667(trap returns a non-zero v)
-4.167 F 1.667(alue, the ne)-.25 F(xt)-.15 E
-(command is skipped and not e)220 691.2 Q -.15(xe)-.15 G(cuted.).15 E F1
-(3.)184 708 Q F0 .841(If the command run by the)220 708 R F1(DEB)3.341 E
-(UG)-.1 E F0 .841(trap returns a v)3.341 F .84
-(alue of 2, and the shell is)-.25 F -.15(exe)220 720 S .488
-(cuting in a subroutine \(a shell function or a shell script e).15 F
--.15(xe)-.15 G .488(cuted by the).15 F F1(.)2.988 E F0(or)2.988 E
-(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(19)190.95 E 0 Cg EP
+(number corresponding to each function name supplied as an ar)220 722.4
+Q(gument.)-.18 E(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(19)
+190.95 E 0 Cg EP
 %%Page: 20 20
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(sour)220 84 Q(ce)-.18
-E F0 -.2(bu)2.5 G(iltins\), the shell simulates a call to).2 E F1 -.18
-(re)2.5 G(tur).18 E(n)-.15 E F0(.)A F1(4.)184 100.8 Q/F2 9/Times-Bold@0
-SF -.27(BA)220 100.8 S(SH_ARGC).27 E F0(and)3.154 E F2 -.27(BA)3.404 G
-(SH_ARGV).27 E F0 .904(are updated as described in their descriptions)
-3.154 F(in)220 112.8 Q/F3 10/Times-Italic@0 SF(bash\(1\))2.5 E F0(\).)A
-F1(5.)184 129.6 Q F0 1.637(Function tracing is enabled: command substit\
-ution, shell functions, and sub-)220 129.6 R(shells in)220 141.6 Q -.2
-(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E F3(command)2.5
-E F1(\))2.5 E F0(inherit the)2.5 E F1(DEB)2.5 E(UG)-.1 E F0(and)2.5 E F1
-(RETURN)2.5 E F0(traps.)2.5 E F1(6.)184 158.4 Q F0 1.082(Error tracing \
-is enabled: command substitution, shell functions, and subshells)220
-158.4 R(in)220 170.4 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E
-F1(\()2.5 E F3(command)2.5 E F1(\))2.5 E F0(inherit the)2.5 E F1(ERR)2.5
-E F0(trap.)2.5 E F1(extglob)144 187.2 Q F0 .272(If set, the e)184 187.2
-R .272(xtended pattern matching features described in)-.15 F F3
-(bash\(1\))2.773 E F0(under)2.773 E F1 -.1(Pa)2.773 G .273(thname Ex-).1
-F(pansion)184 199.2 Q F0(are enabled.)2.5 E F1(extquote)144 216 Q F0 .86
-(If set,)184 228 R F1($)3.36 E F0<08>A F3(string)A F0 3.36<0861>C(nd)
--3.36 E F1($)3.36 E F0(")A F3(string)A F0 3.36("q)C .86
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(2.)184 84 Q F0 1.667
+(If the command run by the)220 84 R F1(DEB)4.167 E(UG)-.1 E F0 1.667
+(trap returns a non-zero v)4.167 F 1.667(alue, the ne)-.25 F(xt)-.15 E
+(command is skipped and not e)220 96 Q -.15(xe)-.15 G(cuted.).15 E F1
+(3.)184 112.8 Q F0 .841(If the command run by the)220 112.8 R F1(DEB)
+3.341 E(UG)-.1 E F0 .841(trap returns a v)3.341 F .84
+(alue of 2, and the shell is)-.25 F -.15(exe)220 124.8 S .488
+(cuting in a subroutine \(a shell function or a shell script e).15 F
+-.15(xe)-.15 G .488(cuted by the).15 F F1(.)2.988 E F0(or)2.988 E F1
+(sour)220 136.8 Q(ce)-.18 E F0 -.2(bu)2.5 G
+(iltins\), the shell simulates a call to).2 E F1 -.18(re)2.5 G(tur).18 E
+(n)-.15 E F0(.)A F1(4.)184 153.6 Q/F2 9/Times-Bold@0 SF -.27(BA)220
+153.6 S(SH_ARGC).27 E F0(and)3.154 E F2 -.27(BA)3.404 G(SH_ARGV).27 E F0
+.904(are updated as described in their descriptions)3.154 F(in)220 165.6
+Q/F3 10/Times-Italic@0 SF(bash\(1\))2.5 E F0(\).)A F1(5.)184 182.4 Q F0
+1.637(Function tracing is enabled: command substitution, shell function\
+s, and sub-)220 182.4 R(shells in)220 194.4 Q -.2(vo)-.4 G -.1(ke).2 G
+2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E F3(command)2.5 E F1(\))2.5 E F0
+(inherit the)2.5 E F1(DEB)2.5 E(UG)-.1 E F0(and)2.5 E F1(RETURN)2.5 E F0
+(traps.)2.5 E F1(6.)184 211.2 Q F0 1.082(Error tracing is enabled: comm\
+and substitution, shell functions, and subshells)220 211.2 R(in)220
+223.2 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E F3
+(command)2.5 E F1(\))2.5 E F0(inherit the)2.5 E F1(ERR)2.5 E F0(trap.)
+2.5 E F1(extglob)144 240 Q F0 .272(If set, the e)184 240 R .272
+(xtended pattern matching features described in)-.15 F F3(bash\(1\))
+2.773 E F0(under)2.773 E F1 -.1(Pa)2.773 G .273(thname Ex-).1 F(pansion)
+184 252 Q F0(are enabled.)2.5 E F1(extquote)144 268.8 Q F0 .86(If set,)
+184 280.8 R F1($)3.36 E F0<08>A F3(string)A F0 3.36<0861>C(nd)-3.36 E F1
+($)3.36 E F0(")A F3(string)A F0 3.36("q)C .86
 (uoting is performed within)-3.36 F F1(${)3.36 E F3(par)A(ameter)-.15 E
 F1(})A F0 -.15(ex)3.36 G .86(pansions en-).15 F
-(closed in double quotes.)184 240 Q(This option is enabled by def)5 E
-(ault.)-.1 E F1(failglob)144 256.8 Q F0 .242(If set, patterns which f)
-184 256.8 R .243(ail to match \214lenames during pathname e)-.1 F .243
-(xpansion result in an e)-.15 F(x-)-.15 E(pansion error)184 268.8 Q(.)
--.55 E F1 -.25(fo)144 285.6 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0
-.937(If set, the suf)184 297.6 R<8c78>-.25 E .936(es speci\214ed by the)
+(closed in double quotes.)184 292.8 Q(This option is enabled by def)5 E
+(ault.)-.1 E F1(failglob)144 309.6 Q F0 .242(If set, patterns which f)
+184 309.6 R .243(ail to match \214lenames during pathname e)-.1 F .243
+(xpansion result in an e)-.15 F(x-)-.15 E(pansion error)184 321.6 Q(.)
+-.55 E F1 -.25(fo)144 338.4 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0
+.937(If set, the suf)184 350.4 R<8c78>-.25 E .936(es speci\214ed by the)
 -.15 F F2(FIGNORE)3.436 E F0 .936(shell v)3.186 F .936(ariable cause w)
--.25 F .936(ords to be ignored)-.1 F .32(when performing w)184 309.6 R
+-.25 F .936(ords to be ignored)-.1 F .32(when performing w)184 362.4 R
 .32(ord completion e)-.1 F -.15(ve)-.25 G 2.82(ni).15 G 2.82(ft)-2.82 G
 .32(he ignored w)-2.82 F .32(ords are the only possible com-)-.1 F 3.294
-(pletions. See)184 321.6 R F2 .794(SHELL V)3.294 F(ARIABLES)-1.215 E F0
+(pletions. See)184 374.4 R F2 .794(SHELL V)3.294 F(ARIABLES)-1.215 E F0
 (in)3.044 E F3(bash\(1\))3.294 E F0 .793(for a description of)3.293 F F2
 (FIGNORE)3.293 E/F4 9/Times-Roman@0 SF(.)A F0 .793(This op-)5.293 F
-(tion is enabled by def)184 333.6 Q(ault.)-.1 E F1(globasciiranges)144
-350.4 Q F0 2.518(If set, range e)184 362.4 R 2.519
+(tion is enabled by def)184 386.4 Q(ault.)-.1 E F1(globasciiranges)144
+403.2 Q F0 2.518(If set, range e)184 415.2 R 2.519
 (xpressions used in pattern matching brack)-.15 F 2.519(et e)-.1 F 2.519
 (xpressions \(see)-.15 F F2 -.09(Pa)5.019 G(tter).09 E(n)-.135 E
-(Matching)184 374.4 Q F0(in)3.116 E F3(bash\(1\))3.366 E F0 3.366(\)b)C
+(Matching)184 427.2 Q F0(in)3.116 E F3(bash\(1\))3.366 E F0 3.366(\)b)C
 (eha)-3.366 E 1.166 -.15(ve a)-.2 H 3.366(si).15 G 3.366(fi)-3.366 G
 3.365(nt)-3.366 G .865(he traditional C locale when performing compar)
--3.365 F(-)-.2 E 2.668(isons. That)184 386.4 R .168
+-3.365 F(-)-.2 E 2.668(isons. That)184 439.2 R .168
 (is, the current locale')2.668 F 2.668(sc)-.55 G .168
 (ollating sequence is not tak)-2.668 F .168(en into account, so)-.1 F F1
-(b)2.668 E F0(will)2.668 E .563(not collate between)184 398.4 R F1(A)
+(b)2.668 E F0(will)2.668 E .563(not collate between)184 451.2 R F1(A)
 3.063 E F0(and)3.063 E F1(B)3.062 E F0 3.062(,a)C .562(nd upper)-3.062 F
 .562(-case and lo)-.2 F(wer)-.25 E .562
-(-case ASCII characters will col-)-.2 F(late together)184 410.4 Q(.)-.55
-E F1(globskipdots)144 427.2 Q F0 .284(If set, pathname e)184 439.2 R
-.284(xpansion will ne)-.15 F -.15(ve)-.25 G 2.785(rm).15 G .285
+(-case ASCII characters will col-)-.2 F(late together)184 463.2 Q(.)-.55
+E F1(globskipdots)144 480 Q F0 .284(If set, pathname e)184 492 R .284
+(xpansion will ne)-.15 F -.15(ve)-.25 G 2.785(rm).15 G .285
 (atch the \214lenames)-2.785 F F1 -.63(``)2.785 G -.55(.').63 G(')-.08 E
 F0(and)5.285 E F1 -.63(``)2.785 G(..).63 E -.63('')-.55 G F0 2.785(,e)
 .63 G -.15(ve)-3.035 G 2.785(ni).15 G 2.785(ft)-2.785 G .285(he pat-)
--2.785 F(tern be)184 451.2 Q(gins with a)-.15 E F1 -.63(``)2.5 G -.55
-(.').63 G(')-.08 E F0 5(.T)C(his option is enabled by def)-5 E(ault.)-.1
-E F1(globstar)144 468 Q F0 .519(If set, the pattern)184 468 R F1(**)
+-2.785 F(tern be)184 504 Q(gins with a)-.15 E F1 -.63(``)2.5 G -.55(.')
+.63 G(')-.08 E F0 5(.T)C(his option is enabled by def)-5 E(ault.)-.1 E
+F1(globstar)144 520.8 Q F0 .519(If set, the pattern)184 520.8 R F1(**)
 3.019 E F0 .519(used in a pathname e)3.019 F .519(xpansion conte)-.15 F
 .518(xt will match all \214les and zero)-.15 F .431
-(or more directories and subdirectories.)184 480 R .431
+(or more directories and subdirectories.)184 532.8 R .431
 (If the pattern is follo)5.431 F .432(wed by a)-.25 F F1(/)2.932 E F0
 2.932(,o)C .432(nly directories)-2.932 F(and subdirectories match.)184
-492 Q F1(gnu_errfmt)144 508.8 Q F0(If set, shell error messages are wri\
-tten in the standard GNU error message format.)184 520.8 Q F1
-(histappend)144 537.6 Q F0 .676
+544.8 Q F1(gnu_errfmt)144 561.6 Q F0(If set, shell error messages are w\
+ritten in the standard GNU error message format.)184 573.6 Q F1
+(histappend)144 590.4 Q F0 .676
 (If set, the history list is appended to the \214le named by the v)184
-549.6 R .676(alue of the)-.25 F F2(HISTFILE)3.176 E F0 -.25(va)2.926 G
-(ri-).25 E(able when the shell e)184 561.6 Q(xits, rather than o)-.15 E
--.15(ve)-.15 G(rwriting the \214le.).15 E F1(histr)144 578.4 Q(eedit)
--.18 E F0 .575(If set, and)184 590.4 R F1 -.18(re)3.075 G(adline).18 E
+602.4 R .676(alue of the)-.25 F F2(HISTFILE)3.176 E F0 -.25(va)2.926 G
+(ri-).25 E(able when the shell e)184 614.4 Q(xits, rather than o)-.15 E
+-.15(ve)-.15 G(rwriting the \214le.).15 E F1(histr)144 631.2 Q(eedit)
+-.18 E F0 .575(If set, and)184 643.2 R F1 -.18(re)3.075 G(adline).18 E
 F0 .575(is being used, a user is gi)3.075 F -.15(ve)-.25 G 3.075(nt).15
 G .576(he opportunity to re-edit a f)-3.075 F .576(ailed his-)-.1 F
-(tory substitution.)184 602.4 Q F1(histv)144 619.2 Q(erify)-.1 E F0 .403
-(If set, and)184 631.2 R F1 -.18(re)2.903 G(adline).18 E F0 .403
+(tory substitution.)184 655.2 Q F1(histv)144 672 Q(erify)-.1 E F0 .403
+(If set, and)184 684 R F1 -.18(re)2.903 G(adline).18 E F0 .403
 (is being used, the results of history substitution are not immediately)
-2.903 F .661(passed to the shell parser)184 643.2 R 5.661(.I)-.55 G .662
+2.903 F .661(passed to the shell parser)184 696 R 5.661(.I)-.55 G .662
 (nstead, the resulting line is loaded into the)-5.661 F F1 -.18(re)3.162
-G(adline).18 E F0(editing)3.162 E -.2(bu)184 655.2 S -.25(ff).2 G(er).25
-E 2.5(,a)-.4 G(llo)-2.5 E(wing further modi\214cation.)-.25 E F1
-(hostcomplete)144 672 Q F0 1.182(If set, and)184 684 R F1 -.18(re)3.682
-G(adline).18 E F0 1.182(is being used,)3.682 F F1(bash)3.682 E F0 1.181
-(will attempt to perform hostname completion)3.681 F .502(when a w)184
-696 R .503(ord containing a)-.1 F F1(@)3.003 E F0 .503
-(is being completed \(see)3.003 F F1(Completing)3.003 E F0(under)3.003 E
-F2(READLINE)3.003 E F0(in)2.753 E F3(bash\(1\))184 708 Q F0 2.5
-(\). This)B(is enabled by def)2.5 E(ault.)-.1 E(GNU Bash 5.2)72 768 Q
-(2023 January 27)141.79 E(20)190.95 E 0 Cg EP
+G(adline).18 E F0(editing)3.162 E -.2(bu)184 708 S -.25(ff).2 G(er).25 E
+2.5(,a)-.4 G(llo)-2.5 E(wing further modi\214cation.)-.25 E
+(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(20)190.95 E 0 Cg EP
 %%Page: 21 21
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(huponexit)144 84 Q F0
-(If set,)184 96 Q F1(bash)2.5 E F0(will send)2.5 E/F2 9/Times-Bold@0 SF
-(SIGHUP)2.5 E F0(to all jobs when an interacti)2.25 E .3 -.15(ve l)-.25
-H(ogin shell e).15 E(xits.)-.15 E F1(inherit_err)144 112.8 Q(exit)-.18 E
-F0 .22(If set, command substitution inherits the v)184 124.8 R .219
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(hostcomplete)144 84 Q
+F0 1.182(If set, and)184 96 R F1 -.18(re)3.682 G(adline).18 E F0 1.182
+(is being used,)3.682 F F1(bash)3.682 E F0 1.181
+(will attempt to perform hostname completion)3.681 F .502(when a w)184
+108 R .503(ord containing a)-.1 F F1(@)3.003 E F0 .503
+(is being completed \(see)3.003 F F1(Completing)3.003 E F0(under)3.003 E
+/F2 9/Times-Bold@0 SF(READLINE)3.003 E F0(in)2.753 E/F3 10
+/Times-Italic@0 SF(bash\(1\))184 120 Q F0 2.5(\). This)B
+(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 136.8 Q F0
+(If set,)184 148.8 Q F1(bash)2.5 E F0(will send)2.5 E F2(SIGHUP)2.5 E F0
+(to all jobs when an interacti)2.25 E .3 -.15(ve l)-.25 H(ogin shell e)
+.15 E(xits.)-.15 E F1(inherit_err)144 165.6 Q(exit)-.18 E F0 .22
+(If set, command substitution inherits the v)184 177.6 R .219
 (alue of the)-.25 F F1(err)2.719 E(exit)-.18 E F0 .219
-(option, instead of unsetting)2.719 F(it in the subshell en)184 136.8 Q
-2.5(vironment. This)-.4 F(option is enabled when)2.5 E/F3 10
-/Times-Italic@0 SF(posix mode)2.5 E F0(is enabled.)2.5 E F1(interacti)
-144 153.6 Q -.1(ve)-.1 G(_comments).1 E F0 .33(If set, allo)184 165.6 R
-2.83(waw)-.25 G .33(ord be)-2.93 F .33(ginning with)-.15 F F1(#)2.83 E
-F0 .33(to cause that w)2.83 F .33(ord and all remaining characters on)
--.1 F .39(that line to be ignored in an interacti)184 177.6 R .69 -.15
-(ve s)-.25 H .39(hell \(see).15 F F2(COMMENTS)2.89 E F0(in)2.64 E F3
-(bash\(1\))2.89 E F0 2.89(\). This)B(option)2.89 E(is enabled by def)184
-189.6 Q(ault.)-.1 E F1(lastpipe)144 206.4 Q F0 .066
-(If set, and job control is not acti)184 206.4 R -.15(ve)-.25 G 2.566
+(option, instead of unsetting)2.719 F(it in the subshell en)184 189.6 Q
+2.5(vironment. This)-.4 F(option is enabled when)2.5 E F3(posix mode)2.5
+E F0(is enabled.)2.5 E F1(interacti)144 206.4 Q -.1(ve)-.1 G(_comments)
+.1 E F0 .33(If set, allo)184 218.4 R 2.83(waw)-.25 G .33(ord be)-2.93 F
+.33(ginning with)-.15 F F1(#)2.83 E F0 .33(to cause that w)2.83 F .33
+(ord and all remaining characters on)-.1 F .39
+(that line to be ignored in an interacti)184 230.4 R .69 -.15(ve s)-.25
+H .39(hell \(see).15 F F2(COMMENTS)2.89 E F0(in)2.64 E F3(bash\(1\))2.89
+E F0 2.89(\). This)B(option)2.89 E(is enabled by def)184 242.4 Q(ault.)
+-.1 E F1(lastpipe)144 259.2 Q F0 .066
+(If set, and job control is not acti)184 259.2 R -.15(ve)-.25 G 2.566
 (,t).15 G .066(he shell runs the last command of a pipeline not e)-2.566
 F -.15(xe)-.15 G(-).15 E
-(cuted in the background in the current shell en)184 218.4 Q(vironment.)
--.4 E F1(lithist)144 235.2 Q F0 .655(If set, and the)184 235.2 R F1
-(cmdhist)3.155 E F0 .654(option is enabled, multi-line commands are sa)
-3.154 F -.15(ve)-.2 G 3.154(dt).15 G 3.154(ot)-3.154 G .654(he history)
--3.154 F(with embedded ne)184 247.2 Q
+(cuted in the background in the current shell en)184 271.2 Q(vironment.)
+-.4 E F1(lithist)144 288 Q F0 .655(If set, and the)184 288 R F1(cmdhist)
+3.155 E F0 .654(option is enabled, multi-line commands are sa)3.154 F
+-.15(ve)-.2 G 3.154(dt).15 G 3.154(ot)-3.154 G .654(he history)-3.154 F
+(with embedded ne)184 300 Q
 (wlines rather than using semicolon separators where possible.)-.25 E F1
-(localv)144 264 Q(ar_inherit)-.1 E F0 .421(If set, local v)184 276 R
+(localv)144 316.8 Q(ar_inherit)-.1 E F0 .421(If set, local v)184 328.8 R
 .422(ariables inherit the v)-.25 F .422(alue and attrib)-.25 F .422
 (utes of a v)-.2 F .422(ariable of the same name that)-.25 F -.15(ex)184
-288 S .174(ists at a pre).15 F .174(vious scope before an)-.25 F 2.673
+340.8 S .174(ists at a pre).15 F .174(vious scope before an)-.25 F 2.673
 (yn)-.15 G .673 -.25(ew va)-2.673 H .173(lue is assigned.).25 F .173
-(The nameref attrib)5.173 F .173(ute is not)-.2 F(inherited.)184 300 Q
-F1(localv)144 316.8 Q(ar_unset)-.1 E F0 .328(If set, calling)184 328.8 R
+(The nameref attrib)5.173 F .173(ute is not)-.2 F(inherited.)184 352.8 Q
+F1(localv)144 369.6 Q(ar_unset)-.1 E F0 .328(If set, calling)184 381.6 R
 F1(unset)2.828 E F0 .328(on local v)2.828 F .329(ariables in pre)-.25 F
 .329(vious function scopes marks them so subse-)-.25 F .543(quent looku\
 ps \214nd them unset until that function returns. This is identical to \
-the beha)184 340.8 R(v-)-.2 E(ior of unsetting local v)184 352.8 Q
-(ariables at the current function scope.)-.25 E F1(login_shell)144 369.6
+the beha)184 393.6 R(v-)-.2 E(ior of unsetting local v)184 405.6 Q
+(ariables at the current function scope.)-.25 E F1(login_shell)144 422.4
 Q F0 .692
 (The shell sets this option if it is started as a login shell \(see)184
-381.6 R F2(INV)3.193 E(OCA)-.405 E(TION)-.855 E F0(in)2.943 E F3
-(bash\(1\))3.193 E F0(\).)A(The v)184 393.6 Q(alue may not be changed.)
--.25 E F1(mailwar)144 410.4 Q(n)-.15 E F0 .815
-(If set, and a \214le that)184 422.4 R F1(bash)3.315 E F0 .814
+434.4 R F2(INV)3.193 E(OCA)-.405 E(TION)-.855 E F0(in)2.943 E F3
+(bash\(1\))3.193 E F0(\).)A(The v)184 446.4 Q(alue may not be changed.)
+-.25 E F1(mailwar)144 463.2 Q(n)-.15 E F0 .815
+(If set, and a \214le that)184 475.2 R F1(bash)3.315 E F0 .814
 (is checking for mail has been accessed since the last time it)3.315 F
--.1(wa)184 434.4 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E
+-.1(wa)184 487.2 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E
 (`The mail in)-.74 E F3(mail\214le)2.5 E F0(has been read')2.5 E 2.5('i)
--.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E F1(no_empty_cmd_completion)144
-451.2 Q F0 .324(If set, and)184 463.2 R F1 -.18(re)2.824 G(adline).18 E
-F0 .324(is being used,)2.824 F F1(bash)2.824 E F0 .324
+-.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E F1(no_empty_cmd_completion)144 504
+Q F0 .324(If set, and)184 516 R F1 -.18(re)2.824 G(adline).18 E F0 .324
+(is being used,)2.824 F F1(bash)2.824 E F0 .324
 (will not attempt to search the)2.824 F F2 -.666(PA)2.825 G(TH)-.189 E
 F0 .325(for possible)2.575 F
-(completions when completion is attempted on an empty line.)184 475.2 Q
-F1(nocaseglob)144 492 Q F0 .437(If set,)184 504 R F1(bash)2.937 E F0
+(completions when completion is attempted on an empty line.)184 528 Q F1
+(nocaseglob)144 544.8 Q F0 .437(If set,)184 556.8 R F1(bash)2.937 E F0
 .436(matches \214lenames in a case\255insensiti)2.937 F .736 -.15(ve f)
--.25 H .436(ashion when performing pathname).05 F -.15(ex)184 516 S
+-.25 H .436(ashion when performing pathname).05 F -.15(ex)184 568.8 S
 (pansion \(see).15 E F1 -.1(Pa)2.5 G(thname Expansion).1 E F0(in)2.5 E
-F3(bash\(1\))2.5 E F0(\).)A F1(nocasematch)144 532.8 Q F0 1.193(If set,)
-184 544.8 R F1(bash)3.693 E F0 1.194
+F3(bash\(1\))2.5 E F0(\).)A F1(nocasematch)144 585.6 Q F0 1.193(If set,)
+184 597.6 R F1(bash)3.693 E F0 1.194
 (matches patterns in a case\255insensiti)3.693 F 1.494 -.15(ve f)-.25 H
-1.194(ashion when performing matching).05 F .551(while e)184 556.8 R
+1.194(ashion when performing matching).05 F .551(while e)184 609.6 R
 -.15(xe)-.15 G(cuting).15 E F1(case)3.051 E F0(or)3.051 E F1([[)3.051 E
 F0 .551(conditional commands, when performing pattern substitution)3.051
-F -.1(wo)184 568.8 S .622(rd e).1 F .623(xpansions, or when \214ltering\
+F -.1(wo)184 621.6 S .622(rd e).1 F .623(xpansions, or when \214ltering\
  possible completions as part of programmable com-)-.15 F(pletion.)184
-580.8 Q F1(noexpand_translation)144 597.6 Q F0 1.118(If set,)184 609.6 R
+633.6 Q F1(noexpand_translation)144 650.4 Q F0 1.118(If set,)184 662.4 R
 F1(bash)3.618 E F0 1.117(encloses the translated results of $"..." quot\
-ing in single quotes instead of)3.617 F(double quotes.)184 621.6 Q
+ing in single quotes instead of)3.617 F(double quotes.)184 674.4 Q
 (If the string is not translated, this has no ef)5 E(fect.)-.25 E F1
-(nullglob)144 638.4 Q F0 .318(If set,)184 650.4 R F1(bash)2.818 E F0
+(nullglob)144 691.2 Q F0 .318(If set,)184 703.2 R F1(bash)2.818 E F0
 (allo)2.818 E .318(ws patterns which match no \214les \(see)-.25 F F1
 -.1(Pa)2.819 G .319(thname Expansion).1 F F0(in)2.819 E F3(bash\(1\))
-2.819 E F0(\))A(to e)184 662.4 Q
-(xpand to a null string, rather than themselv)-.15 E(es.)-.15 E F1
-(patsub_r)144 679.2 Q(eplacement)-.18 E F0 .106(If set,)184 691.2 R F1
-(bash)2.606 E F0 -.15(ex)2.606 G .106(pands occurrences of).15 F F1(&)
-2.606 E F0 .105(in the replacement string of pattern substitution to)
-2.606 F .988(the te)184 703.2 R .988
-(xt matched by the pattern, as described under)-.15 F F1 -.1(Pa)3.489 G
-.989(rameter Expansion).1 F F0(in)3.489 E F3(bash\(1\))3.489 E F0(.)A
-(This option is enabled by def)184 715.2 Q(ault.)-.1 E(GNU Bash 5.2)72
-768 Q(2023 January 27)141.79 E(21)190.95 E 0 Cg EP
+2.819 E F0(\))A(to e)184 715.2 Q
+(xpand to a null string, rather than themselv)-.15 E(es.)-.15 E
+(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(21)190.95 E 0 Cg EP
 %%Page: 22 22
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(pr)144 84 Q(ogcomp)
--.18 E F0 2.802(If set, the programmable completion f)184 96 R 2.802
-(acilities \(see)-.1 F F1(Pr)5.302 E 2.802(ogrammable Completion)-.18 F
-F0(in)5.302 E/F2 10/Times-Italic@0 SF(bash\(1\))184 108 Q F0 2.5(\)a)C
-(re enabled.)-2.5 E(This option is enabled by def)5 E(ault.)-.1 E F1(pr)
-144 124.8 Q(ogcomp_alias)-.18 E F0 2.124
-(If set, and programmable completion is enabled,)184 136.8 R F1(bash)
-4.624 E F0 2.124(treats a command name that)4.624 F(doesn')184 148.8 Q
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(patsub_r)144 84 Q
+(eplacement)-.18 E F0 .106(If set,)184 96 R F1(bash)2.606 E F0 -.15(ex)
+2.606 G .106(pands occurrences of).15 F F1(&)2.606 E F0 .105
+(in the replacement string of pattern substitution to)2.606 F .988
+(the te)184 108 R .988(xt matched by the pattern, as described under)
+-.15 F F1 -.1(Pa)3.489 G .989(rameter Expansion).1 F F0(in)3.489 E/F2 10
+/Times-Italic@0 SF(bash\(1\))3.489 E F0(.)A
+(This option is enabled by def)184 120 Q(ault.)-.1 E F1(pr)144 136.8 Q
+(ogcomp)-.18 E F0 2.802(If set, the programmable completion f)184 148.8
+R 2.802(acilities \(see)-.1 F F1(Pr)5.302 E 2.802(ogrammable Completion)
+-.18 F F0(in)5.302 E F2(bash\(1\))184 160.8 Q F0 2.5(\)a)C(re enabled.)
+-2.5 E(This option is enabled by def)5 E(ault.)-.1 E F1(pr)144 177.6 Q
+(ogcomp_alias)-.18 E F0 2.124
+(If set, and programmable completion is enabled,)184 189.6 R F1(bash)
+4.624 E F0 2.124(treats a command name that)4.624 F(doesn')184 201.6 Q
 3.289(th)-.18 G -2.25 -.2(av e)-3.289 H(an)3.489 E 3.289(yc)-.15 G .789
 (ompletions as a possible alias and attempts alias e)-3.289 F .788
-(xpansion. If it has)-.15 F 1.473(an alias,)184 160.8 R F1(bash)3.973 E
+(xpansion. If it has)-.15 F 1.473(an alias,)184 213.6 R F1(bash)3.973 E
 F0 1.473(attempts programmable completion using the command w)3.973 F
-1.473(ord resulting)-.1 F(from the e)184 172.8 Q(xpanded alias.)-.15 E
-F1(pr)144 189.6 Q(omptv)-.18 E(ars)-.1 E F0 1.448
-(If set, prompt strings under)184 201.6 R 1.448(go parameter e)-.18 F
+1.473(ord resulting)-.1 F(from the e)184 225.6 Q(xpanded alias.)-.15 E
+F1(pr)144 242.4 Q(omptv)-.18 E(ars)-.1 E F0 1.448
+(If set, prompt strings under)184 254.4 R 1.448(go parameter e)-.18 F
 1.447(xpansion, command substitution, arithmetic)-.15 F -.15(ex)184
-213.6 S 1.833(pansion, and quote remo).15 F -.25(va)-.15 G 4.334(la).25
+266.4 S 1.833(pansion, and quote remo).15 F -.25(va)-.15 G 4.334(la).25
 G 1.834(fter being e)-4.334 F 1.834(xpanded as described in)-.15 F/F3 9
 /Times-Bold@0 SF(PR)4.334 E(OMPTING)-.27 E F0(in)4.084 E F2(bash\(1\))
-184 225.6 Q F0 5(.T)C(his option is enabled by def)-5 E(ault.)-.1 E F1
--.18(re)144 242.4 S(stricted_shell).18 E F0 .329
+184 278.4 Q F0 5(.T)C(his option is enabled by def)-5 E(ault.)-.1 E F1
+-.18(re)144 295.2 S(stricted_shell).18 E F0 .329
 (The shell sets this option if it is started in restricted mode \(see)
-184 254.4 R F3 .329(RESTRICTED SHELL)2.829 F F0(in)2.579 E F2(bash\(1\))
-184 266.4 Q F0 2.73(\). The)B -.25(va)2.73 G .23
+184 307.2 R F3 .329(RESTRICTED SHELL)2.829 F F0(in)2.579 E F2(bash\(1\))
+184 319.2 Q F0 2.73(\). The)B -.25(va)2.73 G .23
 (lue may not be changed.).25 F .231
 (This is not reset when the startup \214les are e)5.231 F(x-)-.15 E
-(ecuted, allo)184 278.4 Q(wing the startup \214les to disco)-.25 E -.15
+(ecuted, allo)184 331.2 Q(wing the startup \214les to disco)-.25 E -.15
 (ve)-.15 G 2.5(rw).15 G(hether or not a shell is restricted.)-2.5 E F1
-(shift_v)144 295.2 Q(erbose)-.1 E F0 .502(If set, the)184 307.2 R F1
-(shift)3.002 E F0 -.2(bu)3.002 G .501
+(shift_v)144 348 Q(erbose)-.1 E F0 .502(If set, the)184 360 R F1(shift)
+3.002 E F0 -.2(bu)3.002 G .501
 (iltin prints an error message when the shift count e).2 F .501
-(xceeds the number)-.15 F(of positional parameters.)184 319.2 Q F1(sour)
-144 336 Q(cepath)-.18 E F0 .77(If set, the)184 348 R F1(.)3.27 E F0(\()
-3.27 E F1(sour)A(ce)-.18 E F0 3.27(\)b)C .77(uiltin uses the v)-3.47 F
-.771(alue of)-.25 F F3 -.666(PA)3.271 G(TH)-.189 E F0 .771
+(xceeds the number)-.15 F(of positional parameters.)184 372 Q F1(sour)
+144 388.8 Q(cepath)-.18 E F0 .77(If set, the)184 400.8 R F1(.)3.27 E F0
+(\()3.27 E F1(sour)A(ce)-.18 E F0 3.27(\)b)C .77(uiltin uses the v)-3.47
+.771(alue of)-.25 F F3 -.666(PA)3.271 G(TH)-.189 E F0 .771
 (to \214nd the directory containing the)3.021 F
-(\214le supplied as an ar)184 360 Q 2.5(gument. This)-.18 F
-(option is enabled by def)2.5 E(ault.)-.1 E F1 -.1(va)144 376.8 S(rr).1
+(\214le supplied as an ar)184 412.8 Q 2.5(gument. This)-.18 F
+(option is enabled by def)2.5 E(ault.)-.1 E F1 -.1(va)144 429.6 S(rr).1
 E(edir_close)-.18 E F0 .74(If set, the shell automatically closes \214l\
-e descriptors assigned using the)184 388.8 R F2({varname})3.24 E F0
-(redi-)3.24 E .907(rection syntax \(see)184 400.8 R F3(REDIRECTION)3.407
+e descriptors assigned using the)184 441.6 R F2({varname})3.24 E F0
+(redi-)3.24 E .907(rection syntax \(see)184 453.6 R F3(REDIRECTION)3.407
 E F0(in)3.157 E F2(bash\(1\))3.407 E F0 3.407(\)i)C .907(nstead of lea)
--3.407 F .908(ving them open when the)-.2 F(command completes.)184 412.8
-Q F1(xpg_echo)144 429.6 Q F0(If set, the)184 441.6 Q F1(echo)2.5 E F0
+-3.407 F .908(ving them open when the)-.2 F(command completes.)184 465.6
+Q F1(xpg_echo)144 482.4 Q F0(If set, the)184 494.4 Q F1(echo)2.5 E F0
 -.2(bu)2.5 G(iltin e).2 E(xpands backslash-escape sequences by def)-.15
-E(ault.)-.1 E F1(suspend)108 458.4 Q F0([)2.5 E F1<ad66>A F0(])A .91
-(Suspend the e)144 470.4 R -.15(xe)-.15 G .91
+E(ault.)-.1 E F1(suspend)108 511.2 Q F0([)2.5 E F1<ad66>A F0(])A .91
+(Suspend the e)144 523.2 R -.15(xe)-.15 G .91
 (cution of this shell until it recei).15 F -.15(ve)-.25 G 3.41(sa).15 G
 F3(SIGCONT)-.001 E F0 3.409(signal. A)3.159 F .909
 (login shell, or a shell)3.409 F .752
-(without job control enabled, cannot be suspended; the)144 482.4 R F1
+(without job control enabled, cannot be suspended; the)144 535.2 R F1
 <ad66>3.252 E F0 .753(option can be used to o)3.253 F -.15(ve)-.15 G
-.753(rride this and).15 F .107(force the suspension.)144 494.4 R .107(T\
+.753(rride this and).15 F .107(force the suspension.)144 547.2 R .107(T\
 he return status is 0 unless the shell is a login shell or job control \
-is not en-)5.107 F(abled and)144 506.4 Q F1<ad66>2.5 E F0
-(is not supplied.)2.5 E F1(test)108 523.2 Q F2 -.2(ex)2.5 G(pr).2 E F1
-([)108 535.2 Q F2 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 .877
-(Return a status of 0 \(true\) or 1 \(f)144 535.2 R .878
+is not en-)5.107 F(abled and)144 559.2 Q F1<ad66>2.5 E F0
+(is not supplied.)2.5 E F1(test)108 576 Q F2 -.2(ex)2.5 G(pr).2 E F1([)
+108 588 Q F2 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 .877
+(Return a status of 0 \(true\) or 1 \(f)144 588 R .878
 (alse\) depending on the e)-.1 F -.25(va)-.25 G .878
-(luation of the conditional e).25 F(xpression)-.15 E F2 -.2(ex)144 547.2
-S(pr).2 E F0 5.53(.E).73 G .53
+(luation of the conditional e).25 F(xpression)-.15 E F2 -.2(ex)144 600 S
+(pr).2 E F0 5.53(.E).73 G .53
 (ach operator and operand must be a separate ar)-5.53 F 3.03
 (gument. Expressions)-.18 F .53(are composed of the)3.03 F 1.231
-(primaries described in)144 559.2 R F2(bash\(1\))3.731 E F0(under)3.731
-F3(CONDITION)3.731 E 1.231(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF
+(primaries described in)144 612 R F2(bash\(1\))3.731 E F0(under)3.731 E
+F3(CONDITION)3.731 E 1.231(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF
 (.)A F1(test)5.731 E F0 1.232(does not accept an)3.731 F(y)-.15 E
-(options, nor does it accept and ignore an ar)144 571.2 Q(gument of)-.18
-F1<adad>2.5 E F0(as signifying the end of options.)2.5 E .786
-(Expressions may be combined using the follo)144 589.2 R .785
+(options, nor does it accept and ignore an ar)144 624 Q(gument of)-.18 E
+F1<adad>2.5 E F0(as signifying the end of options.)2.5 E .786
+(Expressions may be combined using the follo)144 642 R .785
 (wing operators, listed in decreasing order of prece-)-.25 F 3.411
-(dence. The)144 601.2 R -.25(eva)3.411 G .911
+(dence. The)144 654 R -.25(eva)3.411 G .911
 (luation depends on the number of ar).25 F .912(guments; see belo)-.18 F
 4.712 -.65(w. O)-.25 H .912(perator precedence is).65 F
-(used when there are \214v)144 613.2 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G
-(ore ar)-2.5 E(guments.)-.18 E F1(!)144 625.2 Q F2 -.2(ex)2.5 G(pr).2 E
-F0 -.35(Tr)180 625.2 S(ue if).35 E F2 -.2(ex)2.5 G(pr).2 E F0(is f)3.23
-E(alse.)-.1 E F1(\()144 637.2 Q F2 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0
-.26(Returns the v)180 637.2 R .26(alue of)-.25 F F2 -.2(ex)2.76 G(pr).2
-E F0 5.26(.T)C .26(his may be used to o)-5.26 F -.15(ve)-.15 G .26
-(rride the normal precedence of opera-).15 F(tors.)180 649.2 Q F2 -.2
-(ex)144 661.2 S(pr1).2 E F0<ad>2.5 E F1(a)A F2 -.2(ex)2.5 G(pr2).2 E F0
--.35(Tr)180 673.2 S(ue if both).35 E F2 -.2(ex)2.5 G(pr1).2 E F0(and)2.5
-E F2 -.2(ex)2.5 G(pr2).2 E F0(are true.)2.52 E F2 -.2(ex)144 685.2 S
-(pr1).2 E F0<ad>2.5 E F1(o)A F2 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180
-697.2 S(ue if either).35 E F2 -.2(ex)2.5 G(pr1).2 E F0(or)2.5 E F2 -.2
-(ex)2.5 G(pr2).2 E F0(is true.)2.52 E F1(test)144 714 Q F0(and)2.5 E F1
-([)2.5 E F0 -.25(eva)2.5 G(luate conditional e).25 E
-(xpressions using a set of rules based on the number of ar)-.15 E
-(guments.)-.18 E(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(22)
-190.95 E 0 Cg EP
+(used when there are \214v)144 666 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G(ore ar)
+-2.5 E(guments.)-.18 E F1(!)144 678 Q F2 -.2(ex)2.5 G(pr).2 E F0 -.35
+(Tr)180 678 S(ue if).35 E F2 -.2(ex)2.5 G(pr).2 E F0(is f)3.23 E(alse.)
+-.1 E F1(\()144 690 Q F2 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0 .26
+(Returns the v)180 690 R .26(alue of)-.25 F F2 -.2(ex)2.76 G(pr).2 E F0
+5.26(.T)C .26(his may be used to o)-5.26 F -.15(ve)-.15 G .26
+(rride the normal precedence of opera-).15 F(tors.)180 702 Q
+(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(22)190.95 E 0 Cg EP
 %%Page: 23 23
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E 2.5(0a)144 84 S -.18(rg)-2.5 G(uments).18 E
-(The e)180 96 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 108 S -.18
-(rg)-2.5 G(ument).18 E(The e)180 120 Q
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Italic@0 SF -.2(ex)144 84 S
+(pr1).2 E F0<ad>2.5 E/F2 10/Times-Bold@0 SF(a)A F1 -.2(ex)2.5 G(pr2).2 E
+F0 -.35(Tr)180 96 S(ue if both).35 E F1 -.2(ex)2.5 G(pr1).2 E F0(and)2.5
+E F1 -.2(ex)2.5 G(pr2).2 E F0(are true.)2.52 E F1 -.2(ex)144 108 S(pr1)
+.2 E F0<ad>2.5 E F2(o)A F1 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180 120 S
+(ue if either).35 E F1 -.2(ex)2.5 G(pr1).2 E F0(or)2.5 E F1 -.2(ex)2.5 G
+(pr2).2 E F0(is true.)2.52 E F2(test)144 136.8 Q F0(and)2.5 E F2([)2.5 E
+F0 -.25(eva)2.5 G(luate conditional e).25 E
+(xpressions using a set of rules based on the number of ar)-.15 E
+(guments.)-.18 E 2.5(0a)144 154.8 S -.18(rg)-2.5 G(uments).18 E(The e)
+180 166.8 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 178.8 S -.18
+(rg)-2.5 G(ument).18 E(The e)180 190.8 Q
 (xpression is true if and only if the ar)-.15 E(gument is not null.)-.18
-E 2.5(2a)144 132 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar)180
-144 R .37(gument is)-.18 F/F1 10/Times-Bold@0 SF(!)2.87 E F0 2.87(,t)C
-.37(he e)-2.87 F .37(xpression is true if and only if the second ar)-.15
-F .37(gument is null.)-.18 F 1.683(If the \214rst ar)180 156 R 1.683
-(gument is one of the unary conditional operators listed in)-.18 F/F2 10
-/Times-Italic@0 SF(bash\(1\))4.182 E F0(under)4.182 E/F3 9/Times-Bold@0
-SF(CONDITION)180 168 Q .121(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF
-(,)A F0 .121(the e)2.371 F .122
-(xpression is true if the unary test is true.)-.15 F .122
-(If the \214rst)5.122 F(ar)180 180 Q(gument is not a v)-.18 E
+E 2.5(2a)144 202.8 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar)
+180 214.8 R .37(gument is)-.18 F F2(!)2.87 E F0 2.87(,t)C .37(he e)-2.87
+F .37(xpression is true if and only if the second ar)-.15 F .37
+(gument is null.)-.18 F 1.683(If the \214rst ar)180 226.8 R 1.683
+(gument is one of the unary conditional operators listed in)-.18 F F1
+(bash\(1\))4.182 E F0(under)4.182 E/F3 9/Times-Bold@0 SF(CONDITION)180
+238.8 Q .121(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(,)A F0 .121
+(the e)2.371 F .122(xpression is true if the unary test is true.)-.15 F
+.122(If the \214rst)5.122 F(ar)180 250.8 Q(gument is not a v)-.18 E
 (alid unary conditional operator)-.25 E 2.5(,t)-.4 G(he e)-2.5 E
-(xpression is f)-.15 E(alse.)-.1 E 2.5(3a)144 192 S -.18(rg)-2.5 G
-(uments).18 E .236(The follo)180 204 R .236
+(xpression is f)-.15 E(alse.)-.1 E 2.5(3a)144 262.8 S -.18(rg)-2.5 G
+(uments).18 E .236(The follo)180 274.8 R .236
 (wing conditions are applied in the order listed.)-.25 F .236
 (If the second ar)5.236 F .236(gument is one of)-.18 F .546
-(the binary conditional operators listed in)180 216 R F2(bash\(1\))3.046
-E F0(under)3.046 E F3(CONDITION)3.046 E .546(AL EXPRESSIONS)-.18 F F4(,)
-A F0 .888(the result of the e)180 228 R .888(xpression is the result of\
- the binary test using the \214rst and third ar)-.15 F(gu-)-.18 E .433
-(ments as operands.)180 240 R(The)5.434 E F1<ad61>2.934 E F0(and)2.934 E
-F1<ad6f>2.934 E F0 .434
+(the binary conditional operators listed in)180 286.8 R F1(bash\(1\))
+3.046 E F0(under)3.046 E F3(CONDITION)3.046 E .546(AL EXPRESSIONS)-.18 F
+F4(,)A F0 .888(the result of the e)180 298.8 R .888(xpression is the re\
+sult of the binary test using the \214rst and third ar)-.15 F(gu-)-.18 E
+.433(ments as operands.)180 310.8 R(The)5.434 E F2<ad61>2.934 E F0(and)
+2.934 E F2<ad6f>2.934 E F0 .434
 (operators are considered binary operators when there)2.934 F .646
-(are three ar)180 252 R 3.146(guments. If)-.18 F .646(the \214rst ar)
-3.146 F .646(gument is)-.18 F F1(!)3.146 E F0 3.146(,t)C .646(he v)
+(are three ar)180 322.8 R 3.146(guments. If)-.18 F .646(the \214rst ar)
+3.146 F .646(gument is)-.18 F F2(!)3.146 E F0 3.146(,t)C .646(he v)
 -3.146 F .645(alue is the ne)-.25 F -.05(ga)-.15 G .645(tion of the tw)
 .05 F(o-ar)-.1 E(gu-)-.18 E .451
-(ment test using the second and third ar)180 264 R 2.951(guments. If)
+(ment test using the second and third ar)180 334.8 R 2.951(guments. If)
 -.18 F .451(the \214rst ar)2.951 F .451(gument is e)-.18 F(xactly)-.15 E
-F1(\()2.952 E F0 .452(and the)2.952 F 1.165(third ar)180 276 R 1.165
-(gument is e)-.18 F(xactly)-.15 E F1(\))3.665 E F0 3.664(,t)C 1.164
+F2(\()2.952 E F0 .452(and the)2.952 F 1.165(third ar)180 346.8 R 1.165
+(gument is e)-.18 F(xactly)-.15 E F2(\))3.665 E F0 3.664(,t)C 1.164
 (he result is the one-ar)-3.664 F 1.164(gument test of the second ar)
--.18 F(gument.)-.18 E(Otherwise, the e)180 288 Q(xpression is f)-.15 E
-(alse.)-.1 E 2.5(4a)144 300 S -.18(rg)-2.5 G(uments).18 E .429
-(The follo)180 312 R .429
+-.18 F(gument.)-.18 E(Otherwise, the e)180 358.8 Q(xpression is f)-.15 E
+(alse.)-.1 E 2.5(4a)144 370.8 S -.18(rg)-2.5 G(uments).18 E .429
+(The follo)180 382.8 R .429
 (wing conditions are applied in the order listed.)-.25 F .43
-(If the \214rst ar)5.429 F .43(gument is)-.18 F F1(!)2.93 E F0 2.93(,t)C
-.43(he re-)-2.93 F 1.315(sult is the ne)180 324 R -.05(ga)-.15 G 1.314
+(If the \214rst ar)5.429 F .43(gument is)-.18 F F2(!)2.93 E F0 2.93(,t)C
+.43(he re-)-2.93 F 1.315(sult is the ne)180 394.8 R -.05(ga)-.15 G 1.314
 (tion of the three-ar).05 F 1.314(gument e)-.18 F 1.314
 (xpression composed of the remaining ar)-.15 F(gu-)-.18 E 2.744
-(ments. the)180 336 R(tw)2.744 E(o-ar)-.1 E .245
+(ments. the)180 406.8 R(tw)2.744 E(o-ar)-.1 E .245
 (gument test using the second and third ar)-.18 F 2.745(guments. If)-.18
-F .245(the \214rst ar)2.745 F(gument)-.18 E .31(is e)180 348 R(xactly)
--.15 E F1(\()2.81 E F0 .31(and the fourth ar)2.81 F .31(gument is e)-.18
-F(xactly)-.15 E F1(\))2.809 E F0 2.809(,t)C .309(he result is the tw)
+F .245(the \214rst ar)2.745 F(gument)-.18 E .31(is e)180 418.8 R(xactly)
+-.15 E F2(\()2.81 E F0 .31(and the fourth ar)2.81 F .31(gument is e)-.18
+F(xactly)-.15 E F2(\))2.809 E F0 2.809(,t)C .309(he result is the tw)
 -2.809 F(o-ar)-.1 E .309(gument test of the)-.18 F .183
-(second and third ar)180 360 R 2.683(guments. Otherwise,)-.18 F .184
+(second and third ar)180 430.8 R 2.683(guments. Otherwise,)-.18 F .184
 (the e)2.684 F .184(xpression is parsed and e)-.15 F -.25(va)-.25 G .184
-(luated according).25 F(to precedence using the rules listed abo)180 372
-Q -.15(ve)-.15 G(.).15 E 2.5(5o)144 384 S 2.5(rm)-2.5 G(ore ar)-2.5 E
-(guments)-.18 E 1.635(The e)180 396 R 1.635(xpression is parsed and e)
--.15 F -.25(va)-.25 G 1.635
-(luated according to precedence using the rules listed).25 F(abo)180 408
-Q -.15(ve)-.15 G(.).15 E(When used with)144 426 Q F1(test)2.5 E F0(or)
-2.5 E F1([)2.5 E F0 2.5(,t)C(he)-2.5 E F1(<)2.5 E F0(and)2.5 E F1(>)2.5
-E F0(operators sort le)2.5 E(xicographically using ASCII ordering.)-.15
-E F1(times)108 442.8 Q F0 1.229(Print the accumulated user and system t\
-imes for the shell and for processes run from the shell.)144 442.8 R
-(The return status is 0.)144 454.8 Q F1(trap)108 471.6 Q F0([)2.5 E F1
-(\255lp)A F0 2.5(][)C([)-2.5 E F2(action)A F0(])A F2(sigspec)2.5 E F0
-(...])2.5 E(The)144 483.6 Q F2(action)3.734 E F0 .903
-(is a command that is read and e)3.644 F -.15(xe)-.15 G .903
-(cuted when the shell recei).15 F -.15(ve)-.25 G 3.403(ss).15 G
-(ignal\(s\))-3.403 E F2(sigspec)3.743 E F0 5.903(.I).31 G(f)-5.903 E F2
-(action)144.33 495.6 Q F0 .105(is absent \(and there is a single)2.845 F
-F2(sigspec)2.605 E F0 2.605(\)o)C(r)-2.605 E F1<ad>2.605 E F0 2.605(,e)C
+(luated according).25 F(to precedence using the rules listed abo)180
+442.8 Q -.15(ve)-.15 G(.).15 E 2.5(5o)144 454.8 S 2.5(rm)-2.5 G(ore ar)
+-2.5 E(guments)-.18 E 1.635(The e)180 466.8 R 1.635
+(xpression is parsed and e)-.15 F -.25(va)-.25 G 1.635
+(luated according to precedence using the rules listed).25 F(abo)180
+478.8 Q -.15(ve)-.15 G(.).15 E(When used with)144 496.8 Q F2(test)2.5 E
+F0(or)2.5 E F2([)2.5 E F0 2.5(,t)C(he)-2.5 E F2(<)2.5 E F0(and)2.5 E F2
+(>)2.5 E F0(operators sort le)2.5 E
+(xicographically using ASCII ordering.)-.15 E F2(times)108 513.6 Q F0
+1.229(Print the accumulated user and system times for the shell and for\
+ processes run from the shell.)144 513.6 R(The return status is 0.)144
+525.6 Q F2(trap)108 542.4 Q F0([)2.5 E F2(\255lp)A F0 2.5(][)C([)-2.5 E
+F1(action)A F0(])A F1(sigspec)2.5 E F0(...])2.5 E(The)144 554.4 Q F1
+(action)3.734 E F0 .903(is a command that is read and e)3.644 F -.15(xe)
+-.15 G .903(cuted when the shell recei).15 F -.15(ve)-.25 G 3.403(ss).15
+G(ignal\(s\))-3.403 E F1(sigspec)3.743 E F0 5.903(.I).31 G(f)-5.903 E F1
+(action)144.33 566.4 Q F0 .105(is absent \(and there is a single)2.845 F
+F1(sigspec)2.605 E F0 2.605(\)o)C(r)-2.605 E F2<ad>2.605 E F0 2.605(,e)C
 .106(ach speci\214ed signal is reset to its original dis-)-2.605 F .627
-(position \(the v)144 507.6 R .626
-(alue it had upon entrance to the shell\).)-.25 F(If)5.626 E F2(action)
+(position \(the v)144 578.4 R .626
+(alue it had upon entrance to the shell\).)-.25 F(If)5.626 E F1(action)
 3.456 E F0 .626(is the null string the signal speci-)3.366 F
-(\214ed by each)144 519.6 Q F2(sigspec)2.84 E F0
+(\214ed by each)144 590.4 Q F1(sigspec)2.84 E F0
 (is ignored by the shell and by the commands it in)2.81 E -.2(vo)-.4 G
--.1(ke).2 G(s.).1 E .165(If no ar)144 537.6 R .165
-(guments are supplied,)-.18 F F1(trap)2.665 E F0 .165
+-.1(ke).2 G(s.).1 E .165(If no ar)144 608.4 R .165
+(guments are supplied,)-.18 F F2(trap)2.665 E F0 .165
 (displays the actions associated with each trapped signal as a set)2.665
-F(of)144 549.6 Q F1(trap)2.57 E F0 .069(commands that can be reused as \
+F(of)144 620.4 Q F2(trap)2.57 E F0 .069(commands that can be reused as \
 shell input to restore the current signal dispositions.)2.57 F(If)5.069
-E F1<ad70>2.569 E F0 .473(is gi)144 561.6 R -.15(ve)-.25 G .473(n, and)
-.15 F F2(action)3.303 E F0 .473(is not present, then)3.213 F F1(trap)
-2.973 E F0 .473(displays the actions associated with each)2.973 F F2
+E F2<ad70>2.569 E F0 .473(is gi)144 632.4 R -.15(ve)-.25 G .473(n, and)
+.15 F F1(action)3.303 E F0 .473(is not present, then)3.213 F F2(trap)
+2.973 E F0 .473(displays the actions associated with each)2.973 F F1
 (sigspec)3.314 E F0(or)3.284 E(,)-.4 E .364
-(if none are supplied, for all trapped signals, as a set of)144 573.6 R
-F1(trap)2.864 E F0 .363(commands that can be reused as shell)2.864 F
-.207(input to restore the current signal dispositions.)144 585.6 R(The)
-5.207 E F1<ad50>2.707 E F0 .207(option beha)2.707 F -.15(ve)-.2 G 2.707
+(if none are supplied, for all trapped signals, as a set of)144 644.4 R
+F2(trap)2.864 E F0 .363(commands that can be reused as shell)2.864 F
+.207(input to restore the current signal dispositions.)144 656.4 R(The)
+5.207 E F2<ad50>2.707 E F0 .207(option beha)2.707 F -.15(ve)-.2 G 2.707
 (ss).15 G(imilarly)-2.707 E 2.707(,b)-.65 G .208(ut displays only)-2.907
-F 1.553(the actions associated with each)144 597.6 R F2(sigspec)4.052 E
-F0(ar)4.052 E(gument.)-.18 E F1<ad50>6.552 E F0 1.552
-(requires at least one)4.052 F F2(sigspec)4.052 E F0(ar)4.052 E(gument.)
--.18 E(The)144 609.6 Q F1<ad50>2.726 E F0(or)2.726 E F1<ad70>2.727 E F0
-.227(options to)2.727 F F1(trap)2.727 E F0 .227
+F 1.553(the actions associated with each)144 668.4 R F1(sigspec)4.052 E
+F0(ar)4.052 E(gument.)-.18 E F2<ad50>6.552 E F0 1.552
+(requires at least one)4.052 F F1(sigspec)4.052 E F0(ar)4.052 E(gument.)
+-.18 E(The)144 680.4 Q F2<ad50>2.726 E F0(or)2.726 E F2<ad70>2.727 E F0
+.227(options to)2.727 F F2(trap)2.727 E F0 .227
 (may be used in a subshell en)2.727 F .227
 (vironment \(e.g., command substitution\))-.4 F .993
-(and, as long as the)144 621.6 R 3.493(ya)-.15 G .993(re used before)
--3.493 F F1(trap)3.493 E F0 .993(is used to change a signal')3.493 F
+(and, as long as the)144 692.4 R 3.493(ya)-.15 G .993(re used before)
+-3.493 F F2(trap)3.493 E F0 .993(is used to change a signal')3.493 F
 3.492(sh)-.55 G .992(andling, will display the)-3.492 F
-(state of its parent')144 633.6 Q 2.5(st)-.55 G(raps.)-2.5 E(The)144
-651.6 Q F1<ad6c>3.216 E F0 .716(option causes)3.216 F F1(trap)3.216 E F0
+(state of its parent')144 704.4 Q 2.5(st)-.55 G(raps.)-2.5 E(The)144
+722.4 Q F2<ad6c>3.216 E F0 .716(option causes)3.216 F F2(trap)3.216 E F0
 .716(to print a list of signal names and their corresponding numbers.)
-3.216 F(Each)5.717 E F2(sigspec)144.34 663.6 Q F0 .709
-(is either a signal name de\214ned in <)3.519 F F2(signal.h)A F0 .709
-(>, or a signal number)B 5.708(.S)-.55 G .708(ignal names are case)
--5.708 F(insensiti)144 675.6 Q .3 -.15(ve a)-.25 H(nd the).15 E F3(SIG)
-2.5 E F0(pre\214x is optional.)2.25 E .091(If a)144 693.6 R F2(sigspec)
-2.931 E F0(is)2.901 E F3(EXIT)2.591 E F0 .091(\(0\) the command)2.341 F
-F2(action)2.921 E F0 .091(is e)2.831 F -.15(xe)-.15 G .091(cuted on e)
-.15 F .092(xit from the shell.)-.15 F .092(If a)5.092 F F2(sigspec)2.932
-E F0(is)2.902 E F3(DE-)2.592 E -.09(BU)144 705.6 S(G).09 E F4(,)A F0
-1.245(the command)3.495 F F2(action)4.075 E F0 1.245(is e)3.985 F -.15
-(xe)-.15 G 1.244(cuted before e).15 F -.15(ve)-.25 G(ry).15 E F2 1.244
-(simple command)3.744 F F0(,)A F2(for)3.744 E F0(command,)3.744 E F2
-(case)3.744 E F0(com-)3.744 E(mand,)144 717.6 Q F2(select)2.696 E F0
-.196
-(command, \(\( arithmetic command, [[ conditional command, arithmetic)
-2.696 F F2(for)2.697 E F0(command,)2.697 E 1.105
-(and before the \214rst command e)144 729.6 R -.15(xe)-.15 G 1.105
-(cutes in a shell function \(see).15 F F3 1.105(SHELL GRAMMAR)3.605 F F0
-(in)3.355 E F2(bash\(1\))3.604 E F0(\).)A(GNU Bash 5.2)72 768 Q
-(2023 January 27)141.79 E(23)190.95 E 0 Cg EP
+3.216 F(Each)5.717 E(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(23)
+190.95 E 0 Cg EP
 %%Page: 24 24
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E .556(Refer to the description of the)144 84
-R/F1 10/Times-Bold@0 SF(extdeb)3.056 E(ug)-.2 E F0 .556(option to the)
-3.056 F F1(shopt)3.056 E F0 -.2(bu)3.056 G .556
-(iltin for details of its ef).2 F .557(fect on the)-.25 F F1(DEB)144 96
-Q(UG)-.1 E F0 2.515(trap. If)2.515 F(a)2.515 E/F2 10/Times-Italic@0 SF
-(sigspec)2.855 E F0(is)2.825 E/F3 9/Times-Bold@0 SF(RETURN)2.515 E/F4 9
-/Times-Roman@0 SF(,)A F0 .015(the command)2.265 F F2(action)2.844 E F0
-.014(is e)2.754 F -.15(xe)-.15 G .014(cuted each time a shell function)
-.15 F(or a script e)144 108 Q -.15(xe)-.15 G(cuted with the).15 E F1(.)
-2.5 E F0(or)2.5 E F1(sour)2.5 E(ce)-.18 E F0 -.2(bu)2.5 G
-(iltins \214nishes e).2 E -.15(xe)-.15 G(cuting.).15 E .284(If a)144 126
-R F2(sigspec)3.124 E F0(is)3.094 E F3(ERR)2.784 E F4(,)A F0 .284
-(the command)2.534 F F2(action)3.114 E F0 .284(is e)3.024 F -.15(xe)-.15
-G .284(cuted whene).15 F -.15(ve)-.25 G 2.784(rap).15 G .285
-(ipeline \(which may consist of a)-2.784 F .185(single simple command\)\
-, a list, or a compound command returns a non\255zero e)144 138 R .184
-(xit status, subject to)-.15 F .451(the follo)144 150 R .451
-(wing conditions.)-.25 F(The)5.451 E F3(ERR)2.951 E F0 .451
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Italic@0 SF(sigspec)144.34 84 Q
+F0 .709(is either a signal name de\214ned in <)3.519 F F1(signal.h)A F0
+.709(>, or a signal number)B 5.708(.S)-.55 G .708(ignal names are case)
+-5.708 F(insensiti)144 96 Q .3 -.15(ve a)-.25 H(nd the).15 E/F2 9
+/Times-Bold@0 SF(SIG)2.5 E F0(pre\214x is optional.)2.25 E .091(If a)144
+114 R F1(sigspec)2.931 E F0(is)2.901 E F2(EXIT)2.591 E F0 .091
+(\(0\) the command)2.341 F F1(action)2.921 E F0 .091(is e)2.831 F -.15
+(xe)-.15 G .091(cuted on e).15 F .092(xit from the shell.)-.15 F .092
+(If a)5.092 F F1(sigspec)2.932 E F0(is)2.902 E F2(DE-)2.592 E -.09(BU)
+144 126 S(G).09 E/F3 9/Times-Roman@0 SF(,)A F0 1.245(the command)3.495 F
+F1(action)4.075 E F0 1.245(is e)3.985 F -.15(xe)-.15 G 1.244
+(cuted before e).15 F -.15(ve)-.25 G(ry).15 E F1 1.244(simple command)
+3.744 F F0(,)A F1(for)3.744 E F0(command,)3.744 E F1(case)3.744 E F0
+(com-)3.744 E(mand,)144 138 Q F1(select)2.696 E F0 .196
+(command, \(\( arithmetic command, [[ conditional command, arithmetic)
+2.696 F F1(for)2.697 E F0(command,)2.697 E 1.105
+(and before the \214rst command e)144 150 R -.15(xe)-.15 G 1.105
+(cutes in a shell function \(see).15 F F2 1.105(SHELL GRAMMAR)3.605 F F0
+(in)3.355 E F1(bash\(1\))3.604 E F0(\).)A .556
+(Refer to the description of the)144 162 R/F4 10/Times-Bold@0 SF(extdeb)
+3.056 E(ug)-.2 E F0 .556(option to the)3.056 F F4(shopt)3.056 E F0 -.2
+(bu)3.056 G .556(iltin for details of its ef).2 F .557(fect on the)-.25
+F F4(DEB)144 174 Q(UG)-.1 E F0 2.515(trap. If)2.515 F(a)2.515 E F1
+(sigspec)2.855 E F0(is)2.825 E F2(RETURN)2.515 E F3(,)A F0 .015
+(the command)2.265 F F1(action)2.844 E F0 .014(is e)2.754 F -.15(xe)-.15
+G .014(cuted each time a shell function).15 F(or a script e)144 186 Q
+-.15(xe)-.15 G(cuted with the).15 E F4(.)2.5 E F0(or)2.5 E F4(sour)2.5 E
+(ce)-.18 E F0 -.2(bu)2.5 G(iltins \214nishes e).2 E -.15(xe)-.15 G
+(cuting.).15 E .284(If a)144 204 R F1(sigspec)3.124 E F0(is)3.094 E F2
+(ERR)2.784 E F3(,)A F0 .284(the command)2.534 F F1(action)3.114 E F0
+.284(is e)3.024 F -.15(xe)-.15 G .284(cuted whene).15 F -.15(ve)-.25 G
+2.784(rap).15 G .285(ipeline \(which may consist of a)-2.784 F .185(sin\
+gle simple command\), a list, or a compound command returns a non\255ze\
+ro e)144 216 R .184(xit status, subject to)-.15 F .451(the follo)144 228
+R .451(wing conditions.)-.25 F(The)5.451 E F2(ERR)2.951 E F0 .451
 (trap is not e)2.701 F -.15(xe)-.15 G .451(cuted if the f).15 F .452
 (ailed command is part of the com-)-.1 F .388
-(mand list immediately follo)144 162 R .388(wing a)-.25 F F1(while)2.888
-E F0(or)2.888 E F1(until)2.888 E F0 -.1(ke)2.888 G(yw)-.05 E .388
-(ord, part of the test in an)-.1 F F2(if)2.897 E F0 .387
-(statement, part)4.847 F .777(of a command e)144 174 R -.15(xe)-.15 G
-.778(cuted in a).15 F F1(&&)3.278 E F0(or)3.278 E F1(||)3.278 E F0 .778
+(mand list immediately follo)144 240 R .388(wing a)-.25 F F4(while)2.888
+E F0(or)2.888 E F4(until)2.888 E F0 -.1(ke)2.888 G(yw)-.05 E .388
+(ord, part of the test in an)-.1 F F1(if)2.897 E F0 .387
+(statement, part)4.847 F .777(of a command e)144 252 R -.15(xe)-.15 G
+.778(cuted in a).15 F F4(&&)3.278 E F0(or)3.278 E F4(||)3.278 E F0 .778
 (list e)3.278 F .778(xcept the command follo)-.15 F .778
-(wing the \214nal)-.25 F F1(&&)3.278 E F0(or)3.278 E F1(||)3.278 E F0
-3.278(,a)C -.15(ny)-3.278 G 1.28(command in a pipeline b)144 186 R 1.28
+(wing the \214nal)-.25 F F4(&&)3.278 E F0(or)3.278 E F4(||)3.278 E F0
+3.278(,a)C -.15(ny)-3.278 G 1.28(command in a pipeline b)144 264 R 1.28
 (ut the last, or if the command')-.2 F 3.78(sr)-.55 G 1.28(eturn v)-3.78
-F 1.28(alue is being in)-.25 F -.15(ve)-.4 G 1.28(rted using).15 F F1(!)
-3.78 E F0(.)A(These are the same conditions obe)144 198 Q(yed by the)
--.15 E F1(err)2.5 E(exit)-.18 E F0(\()2.5 E F1<ad65>A F0 2.5(\)o)C
-(ption.)-2.5 E .069(When the shell is not interacti)144 216 R -.15(ve)
+F 1.28(alue is being in)-.25 F -.15(ve)-.4 G 1.28(rted using).15 F F4(!)
+3.78 E F0(.)A(These are the same conditions obe)144 276 Q(yed by the)
+-.15 E F4(err)2.5 E(exit)-.18 E F0(\()2.5 E F4<ad65>A F0 2.5(\)o)C
+(ption.)-2.5 E .069(When the shell is not interacti)144 294 R -.15(ve)
 -.25 G 2.569(,s).15 G .07
 (ignals ignored upon entry to the shell cannot be trapped or reset.)
--2.569 F(Interacti)144 228 Q .952 -.15(ve s)-.25 H .652
+-2.569 F(Interacti)144 306 Q .952 -.15(ve s)-.25 H .652
 (hells permit trapping signals ignored on entry).15 F 5.651(.T)-.65 G
 .651(rapped signals that are not being ig-)-6.001 F .576
-(nored are reset to their original v)144 240 R .576
+(nored are reset to their original v)144 318 R .576
 (alues in a subshell or subshell en)-.25 F .577
-(vironment when one is created.)-.4 F(The return status is f)144 252 Q
-(alse if an)-.1 E(y)-.15 E F2(sigspec)2.84 E F0(is in)2.81 E -.25(va)-.4
-G(lid; otherwise).25 E F1(trap)2.5 E F0(returns true.)2.5 E F1(type)108
-268.8 Q F0([)2.5 E F1(\255aftpP)A F0(])A F2(name)2.5 E F0([)2.5 E F2
-(name)A F0(...])2.5 E -.4(Wi)144 280.8 S .174
-(th no options, indicate ho).4 F 2.674(we)-.25 G(ach)-2.674 E F2(name)
+(vironment when one is created.)-.4 F(The return status is f)144 330 Q
+(alse if an)-.1 E(y)-.15 E F1(sigspec)2.84 E F0(is in)2.81 E -.25(va)-.4
+G(lid; otherwise).25 E F4(trap)2.5 E F0(returns true.)2.5 E F4(true)108
+346.8 Q F0(Does nothing, returns a 0 status.)144 346.8 Q F4(type)108
+363.6 Q F0([)2.5 E F4(\255aftpP)A F0(])A F1(name)2.5 E F0([)2.5 E F1
+(name)A F0(...])2.5 E -.4(Wi)144 375.6 S .174
+(th no options, indicate ho).4 F 2.674(we)-.25 G(ach)-2.674 E F1(name)
 3.034 E F0 -.1(wo)2.854 G .173
 (uld be interpreted if used as a command name.).1 F .173(If the)5.173 F
-F1<ad74>144 292.8 Q F0 .715(option is used,)3.215 F F1(type)3.215 E F0
-.715(prints a string which is one of)3.215 F F2(alias)3.545 E F0(,).27 E
-F2 -.1(ke)3.215 G(ywor)-.2 E(d)-.37 E F0(,).77 E F2(function)5.185 E F0
-(,).24 E F2 -.2(bu)3.215 G(iltin).2 E F0 3.215(,o).24 G(r)-3.215 E F2
-(\214le)5.125 E F0(if)3.395 E F2(name)144.36 304.8 Q F0 .378
+F4<ad74>144 387.6 Q F0 .715(option is used,)3.215 F F4(type)3.215 E F0
+.715(prints a string which is one of)3.215 F F1(alias)3.545 E F0(,).27 E
+F1 -.1(ke)3.215 G(ywor)-.2 E(d)-.37 E F0(,).77 E F1(function)5.185 E F0
+(,).24 E F1 -.2(bu)3.215 G(iltin).2 E F0 3.215(,o).24 G(r)-3.215 E F1
+(\214le)5.125 E F0(if)3.395 E F1(name)144.36 399.6 Q F0 .378
 (is an alias, shell reserv)3.058 F .377(ed w)-.15 F .377
 (ord, function, b)-.1 F .377(uiltin, or e)-.2 F -.15(xe)-.15 G .377
 (cutable disk \214le, respecti).15 F -.15(ve)-.25 G(ly).15 E 5.377(.I)
--.65 G 2.877(ft)-5.377 G(he)-2.877 E F2(name)144.36 316.8 Q F0 .645
-(is not found, then nothing is printed, and)3.325 F F1(type)3.146 E F0
+-.65 G 2.877(ft)-5.377 G(he)-2.877 E F1(name)144.36 411.6 Q F0 .645
+(is not found, then nothing is printed, and)3.325 F F4(type)3.146 E F0
 .646(returns a non-zero e)3.146 F .646(xit status.)-.15 F .646(If the)
-5.646 F F1<ad70>3.146 E F0(op-)3.146 E .642(tion is used,)144 328.8 R F1
+5.646 F F4<ad70>3.146 E F0(op-)3.146 E .642(tion is used,)144 423.6 R F4
 (type)3.142 E F0 .642(either returns the name of the e)3.142 F -.15(xe)
 -.15 G .642(cutable \214le that w).15 F .641(ould be found by searching)
--.1 F F1($P)144 340.8 Q -.95(AT)-.74 G(H).95 E F0(if)2.615 E F2(name)
+-.1 F F4($P)144 435.6 Q -.95(AT)-.74 G(H).95 E F0(if)2.615 E F1(name)
 2.975 E F0 .116(were speci\214ed as a command name, or nothing if)2.796
 F/F5 10/Courier@0 SF .116(type -t name)2.616 F F0 -.1(wo)2.616 G .116
-(uld not re-).1 F(turn)144 352.8 Q F2(\214le)4.5 E F0 5.09(.T).18 G(he)
--5.09 E F1<ad50>2.59 E F0 .09(option forces a)2.59 F F3 -.666(PA)2.59 G
-(TH)-.189 E F0 .089(search for each)2.339 F F2(name)2.589 E F0 2.589(,e)
+(uld not re-).1 F(turn)144 447.6 Q F1(\214le)4.5 E F0 5.09(.T).18 G(he)
+-5.09 E F4<ad50>2.59 E F0 .09(option forces a)2.59 F F2 -.666(PA)2.59 G
+(TH)-.189 E F0 .089(search for each)2.339 F F1(name)2.589 E F0 2.589(,e)
 C -.15(ve)-2.839 G 2.589(ni).15 G(f)-2.589 E F5 .089(type -t name)2.589
-F F0 -.1(wo)2.589 G .089(uld not).1 F(return)144 364.8 Q F2(\214le)5.245
+F F0 -.1(wo)2.589 G .089(uld not).1 F(return)144 459.6 Q F1(\214le)5.245
 E F0 5.835(.I).18 G 3.336(fac)-5.835 G .836(ommand is hashed,)-3.336 F
-F1<ad70>3.336 E F0(and)3.336 E F1<ad50>3.336 E F0 .836
+F4<ad70>3.336 E F0(and)3.336 E F4<ad50>3.336 E F0 .836
 (print the hashed v)3.336 F .836(alue, which is not necessarily)-.25 F
-.033(the \214le that appears \214rst in)144 376.8 R F3 -.666(PA)2.533 G
-(TH)-.189 E F4(.)A F0 .033(If the)4.533 F F1<ad61>2.533 E F0 .033
-(option is used,)2.533 F F1(type)2.533 E F0 .033
-(prints all of the places that contain)2.533 F 3.55(ac)144 388.8 S 1.05
-(ommand named)-3.55 F F2(name)3.91 E F0 6.051(.T).18 G 1.051
+.033(the \214le that appears \214rst in)144 471.6 R F2 -.666(PA)2.533 G
+(TH)-.189 E F3(.)A F0 .033(If the)4.533 F F4<ad61>2.533 E F0 .033
+(option is used,)2.533 F F4(type)2.533 E F0 .033
+(prints all of the places that contain)2.533 F 3.55(ac)144 483.6 S 1.05
+(ommand named)-3.55 F F1(name)3.91 E F0 6.051(.T).18 G 1.051
 (his includes aliases, reserv)-6.051 F 1.051(ed w)-.15 F 1.051
 (ords, functions, and b)-.1 F 1.051(uiltins, b)-.2 F 1.051(ut the)-.2 F
-1.178(path search options \()144 400.8 R F1<ad70>A F0(and)3.678 E F1
+1.178(path search options \()144 495.6 R F4<ad70>A F0(and)3.678 E F4
 <ad50>3.678 E F0 3.678(\)c)C 1.177
 (an be supplied to restrict the output to e)-3.678 F -.15(xe)-.15 G
-1.177(cutable \214les.).15 F F1(type)6.177 E F0 .035
-(does not consult the table of hashed commands when using)144 412.8 R F1
-<ad61>2.535 E F0(with)2.535 E F1<ad70>2.535 E F0 2.535(,a)C .036
-(nd only performs a)-2.535 F F3 -.666(PA)2.536 G(TH)-.189 E F0 .912
-(search for)144 424.8 R F2(name)3.412 E F0 5.912(.T)C(he)-5.912 E F1
+1.177(cutable \214les.).15 F F4(type)6.177 E F0 .035
+(does not consult the table of hashed commands when using)144 507.6 R F4
+<ad61>2.535 E F0(with)2.535 E F4<ad70>2.535 E F0 2.535(,a)C .036
+(nd only performs a)-2.535 F F2 -.666(PA)2.536 G(TH)-.189 E F0 .912
+(search for)144 519.6 R F1(name)3.412 E F0 5.912(.T)C(he)-5.912 E F4
 <ad66>3.412 E F0 .911
-(option suppresses shell function lookup, as with the)3.412 F F1
-(command)3.411 E F0 -.2(bu)3.411 G(iltin.).2 E F1(type)144 436.8 Q F0
+(option suppresses shell function lookup, as with the)3.412 F F4
+(command)3.411 E F0 -.2(bu)3.411 G(iltin.).2 E F4(type)144 531.6 Q F0
 (returns true if all of the ar)2.5 E(guments are found, f)-.18 E
-(alse if an)-.1 E 2.5(ya)-.15 G(re not found.)-2.5 E F1(ulimit)108 453.6
-Q F0([)2.5 E F1(\255HS)A F0(])A F1<ad61>2.5 E(ulimit)108 465.6 Q F0([)
-2.5 E F1(\255HS)A F0 2.5(][)C F1(\255bcde\214klmnpqrstuvxPR)-2.5 E(T)-.4
-E F0([)2.5 E F2(limit)A F0(]])A(Pro)144 477.6 Q .243(vides control o)
+(alse if an)-.1 E 2.5(ya)-.15 G(re not found.)-2.5 E F4(ulimit)108 548.4
+Q F0([)2.5 E F4(\255HS)A F0(])A F4<ad61>2.5 E(ulimit)108 560.4 Q F0([)
+2.5 E F4(\255HS)A F0 2.5(][)C F4(\255bcde\214klmnpqrstuvxPR)-2.5 E(T)-.4
+E F0([)2.5 E F1(limit)A F0(]])A(Pro)144 572.4 Q .243(vides control o)
 -.15 F -.15(ve)-.15 G 2.743(rt).15 G .243(he resources a)-2.743 F -.25
 (va)-.2 G .244
 (ilable to the shell and to processes started by it, on systems).25 F
-.944(that allo)144 489.6 R 3.444(ws)-.25 G .944(uch control.)-3.444 F
-(The)5.944 E F1<ad48>3.444 E F0(and)3.444 E F1<ad53>3.444 E F0 .943
+.944(that allo)144 584.4 R 3.444(ws)-.25 G .944(uch control.)-3.444 F
+(The)5.944 E F4<ad48>3.444 E F0(and)3.444 E F4<ad53>3.444 E F0 .943
 (options specify that the hard or soft limit is set for the)3.444 F(gi)
-144 501.6 Q -.15(ve)-.25 G 2.708(nr).15 G 2.708(esource. A)-2.708 F .208
+144 596.4 Q -.15(ve)-.25 G 2.708(nr).15 G 2.708(esource. A)-2.708 F .208
 (hard limit cannot be increased by a non-root user once it is set; a so\
-ft limit may)2.708 F .426(be increased up to the v)144 513.6 R .426
-(alue of the hard limit.)-.25 F .425(If neither)5.426 F F1<ad48>2.925 E
-F0(nor)2.925 E F1<ad53>2.925 E F0 .425
+ft limit may)2.708 F .426(be increased up to the v)144 608.4 R .426
+(alue of the hard limit.)-.25 F .425(If neither)5.426 F F4<ad48>2.925 E
+F0(nor)2.925 E F4<ad53>2.925 E F0 .425
 (is speci\214ed, both the soft and)2.925 F .139(hard limits are set.)144
-525.6 R .139(The v)5.139 F .139(alue of)-.25 F F2(limit)2.729 E F0 .139
+620.4 R .139(The v)5.139 F .139(alue of)-.25 F F1(limit)2.729 E F0 .139
 (can be a number in the unit speci\214ed for the resource or one)3.319 F
-.742(of the special v)144 537.6 R(alues)-.25 E F1(hard)3.242 E F0(,)A F1
-(soft)3.241 E F0 3.241(,o)C(r)-3.241 E F1(unlimited)3.241 E F0 3.241(,w)
+.742(of the special v)144 632.4 R(alues)-.25 E F4(hard)3.242 E F0(,)A F4
+(soft)3.241 E F0 3.241(,o)C(r)-3.241 E F4(unlimited)3.241 E F0 3.241(,w)
 C .741(hich stand for the current hard limit, the current)-3.241 F .023
-(soft limit, and no limit, respecti)144 549.6 R -.15(ve)-.25 G(ly).15 E
-5.023(.I)-.65 G(f)-5.023 E F2(limit)2.613 E F0 .023
+(soft limit, and no limit, respecti)144 644.4 R -.15(ve)-.25 G(ly).15 E
+5.023(.I)-.65 G(f)-5.023 E F1(limit)2.613 E F0 .023
 (is omitted, the current v)3.203 F .023
 (alue of the soft limit of the re-)-.25 F .985
-(source is printed, unless the)144 561.6 R F1<ad48>3.485 E F0 .984
+(source is printed, unless the)144 656.4 R F4<ad48>3.485 E F0 .984
 (option is gi)3.485 F -.15(ve)-.25 G 3.484(n. When).15 F .984
 (more than one resource is speci\214ed, the)3.484 F .7
-(limit name and unit, if appropriate, are printed before the v)144 573.6
+(limit name and unit, if appropriate, are printed before the v)144 668.4
 R 3.2(alue. Other)-.25 F .7(options are interpreted as)3.2 F(follo)144
-585.6 Q(ws:)-.25 E F1<ad61>144 597.6 Q F0
-(All current limits are reported; no limits are set)180 597.6 Q F1<ad62>
-144 609.6 Q F0(The maximum sock)180 609.6 Q(et b)-.1 E(uf)-.2 E
-(fer size)-.25 E F1<ad63>144 621.6 Q F0
-(The maximum size of core \214les created)180 621.6 Q F1<ad64>144 633.6
-Q F0(The maximum size of a process')180 633.6 Q 2.5(sd)-.55 G(ata se)
--2.5 E(gment)-.15 E F1<ad65>144 645.6 Q F0
-(The maximum scheduling priority \("nice"\))180 645.6 Q F1<ad66>144
-657.6 Q F0
-(The maximum size of \214les written by the shell and its children)180
-657.6 Q F1<ad69>144 669.6 Q F0(The maximum number of pending signals)180
-669.6 Q F1<ad6b>144 681.6 Q F0
-(The maximum number of kqueues that may be allocated)180 681.6 Q F1
-<ad6c>144 693.6 Q F0(The maximum size that may be lock)180 693.6 Q
-(ed into memory)-.1 E F1<ad6d>144 705.6 Q F0
-(The maximum resident set size \(man)180 705.6 Q 2.5(ys)-.15 G
-(ystems do not honor this limit\))-2.5 E F1<ad6e>144 717.6 Q F0 .791(Th\
-e maximum number of open \214le descriptors \(most systems do not allo)
-180 717.6 R 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F
-(be set\))180 729.6 Q(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(24)
-190.95 E 0 Cg EP
+680.4 Q(ws:)-.25 E F4<ad61>144 692.4 Q F0
+(All current limits are reported; no limits are set)180 692.4 Q F4<ad62>
+144 704.4 Q F0(The maximum sock)180 704.4 Q(et b)-.1 E(uf)-.2 E
+(fer size)-.25 E F4<ad63>144 716.4 Q F0
+(The maximum size of core \214les created)180 716.4 Q(GNU Bash 5.2)72
+768 Q(2023 January 27)141.79 E(24)190.95 E 0 Cg EP
 %%Page: 25 25
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF<ad70>144 84 Q F0
-(The pipe size in 512-byte blocks \(this may not be set\))180 84 Q F1
-<ad71>144 96 Q F0(The maximum number of bytes in POSIX message queues)
-180 96 Q F1<ad72>144 108 Q F0(The maximum real-time scheduling priority)
-180 108 Q F1<ad73>144 120 Q F0(The maximum stack size)180 120 Q F1<ad74>
-144 132 Q F0(The maximum amount of cpu time in seconds)180 132 Q F1
-<ad75>144 144 Q F0(The maximum number of processes a)180 144 Q -.25(va)
--.2 G(ilable to a single user).25 E F1<ad76>144 156 Q F0 .47
-(The maximum amount of virtual memory a)180 156 R -.25(va)-.2 G .47
-(ilable to the shell and, on some systems, to).25 F(its children)180 168
-Q F1<ad78>144 180 Q F0(The maximum number of \214le locks)180 180 Q F1
-<ad50>144 192 Q F0(The maximum number of pseudoterminals)180 192 Q F1
-<ad52>144 204 Q F0(The maximum time a real-time process can run before \
-blocking, in microseconds)180 204 Q F1<ad54>144 216 Q F0
-(The maximum number of threads)180 216 Q(If)144 232.8 Q/F2 10
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF<ad64>144 84 Q F0
+(The maximum size of a process')180 84 Q 2.5(sd)-.55 G(ata se)-2.5 E
+(gment)-.15 E F1<ad65>144 96 Q F0
+(The maximum scheduling priority \("nice"\))180 96 Q F1<ad66>144 108 Q
+F0(The maximum size of \214les written by the shell and its children)180
+108 Q F1<ad69>144 120 Q F0(The maximum number of pending signals)180 120
+Q F1<ad6b>144 132 Q F0
+(The maximum number of kqueues that may be allocated)180 132 Q F1<ad6c>
+144 144 Q F0(The maximum size that may be lock)180 144 Q(ed into memory)
+-.1 E F1<ad6d>144 156 Q F0(The maximum resident set size \(man)180 156 Q
+2.5(ys)-.15 G(ystems do not honor this limit\))-2.5 E F1<ad6e>144 168 Q
+F0 .791(The maximum number of open \214le descriptors \(most systems do\
+ not allo)180 168 R 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F
+(be set\))180 180 Q F1<ad70>144 192 Q F0
+(The pipe size in 512-byte blocks \(this may not be set\))180 192 Q F1
+<ad71>144 204 Q F0(The maximum number of bytes in POSIX message queues)
+180 204 Q F1<ad72>144 216 Q F0
+(The maximum real-time scheduling priority)180 216 Q F1<ad73>144 228 Q
+F0(The maximum stack size)180 228 Q F1<ad74>144 240 Q F0
+(The maximum amount of cpu time in seconds)180 240 Q F1<ad75>144 252 Q
+F0(The maximum number of processes a)180 252 Q -.25(va)-.2 G
+(ilable to a single user).25 E F1<ad76>144 264 Q F0 .47
+(The maximum amount of virtual memory a)180 264 R -.25(va)-.2 G .47
+(ilable to the shell and, on some systems, to).25 F(its children)180 276
+Q F1<ad78>144 288 Q F0(The maximum number of \214le locks)180 288 Q F1
+<ad50>144 300 Q F0(The maximum number of pseudoterminals)180 300 Q F1
+<ad52>144 312 Q F0(The maximum time a real-time process can run before \
+blocking, in microseconds)180 312 Q F1<ad54>144 324 Q F0
+(The maximum number of threads)180 324 Q(If)144 340.8 Q/F2 10
 /Times-Italic@0 SF(limit)3.058 E F0 .468(is gi)3.648 F -.15(ve)-.25 G
 .468(n, and the).15 F F1<ad61>2.968 E F0 .468(option is not used,)2.968
 F F2(limit)2.968 E F0 .468(is the ne)2.968 F 2.968(wv)-.25 G .468
 (alue of the speci\214ed resource.)-3.218 F(If)5.468 E .044
-(no option is gi)144 244.8 R -.15(ve)-.25 G .044(n, then).15 F F1<ad66>
+(no option is gi)144 352.8 R -.15(ve)-.25 G .044(n, then).15 F F1<ad66>
 2.544 E F0 .045(is assumed.)2.545 F -1.11(Va)5.045 G .045
 (lues are in 1024-byte increments, e)1.11 F .045(xcept for)-.15 F F1
 <ad74>2.545 E F0 2.545(,w)C .045(hich is)-2.545 F .67(in seconds;)144
-256.8 R F1<ad52>3.17 E F0 3.17(,w)C .67(hich is in microseconds;)-3.17 F
+364.8 R F1<ad52>3.17 E F0 3.17(,w)C .67(hich is in microseconds;)-3.17 F
 F1<ad70>3.17 E F0 3.17(,w)C .67(hich is in units of 512-byte blocks;)
 -3.17 F F1<ad50>3.17 E F0(,)A F1<ad54>3.17 E F0(,)A F1<ad62>3.17 E F0(,)
-A F1<ad6b>144 268.8 Q F0(,)A F1<ad6e>3.736 E F0 3.736(,a)C(nd)-3.736 E
+A F1<ad6b>144 376.8 Q F0(,)A F1<ad6e>3.736 E F0 3.736(,a)C(nd)-3.736 E
 F1<ad75>3.736 E F0 3.736(,w)C 1.236(hich are unscaled v)-3.736 F 1.236
 (alues; and, when in posix mode,)-.25 F F1<ad63>3.736 E F0(and)3.736 E
 F1<ad66>3.736 E F0 3.736(,w)C 1.237(hich are in)-3.736 F .239
-(512-byte increments.)144 280.8 R .238
+(512-byte increments.)144 388.8 R .238
 (The return status is 0 unless an in)5.239 F -.25(va)-.4 G .238
 (lid option or ar).25 F .238(gument is supplied, or an)-.18 F
-(error occurs while setting a ne)144 292.8 Q 2.5(wl)-.25 G(imit.)-2.5 E
-F1(umask)108 309.6 Q F0([)2.5 E F1<ad70>A F0 2.5(][)C F1<ad53>-2.5 E F0
+(error occurs while setting a ne)144 400.8 Q 2.5(wl)-.25 G(imit.)-2.5 E
+F1(umask)108 417.6 Q F0([)2.5 E F1<ad70>A F0 2.5(][)C F1<ad53>-2.5 E F0
 2.5(][)C F2(mode)-2.5 E F0(])A .18
-(The user \214le-creation mask is set to)144 321.6 R F2(mode)3.06 E F0
+(The user \214le-creation mask is set to)144 429.6 R F2(mode)3.06 E F0
 5.18(.I).18 G(f)-5.18 E F2(mode)3.06 E F0(be)2.86 E .18
 (gins with a digit, it is interpreted as an octal)-.15 F .066(number; o\
 therwise it is interpreted as a symbolic mode mask similar to that acce\
-pted by)144 333.6 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144
-345.6 Q F2(mode)3.262 E F0 .382(is omitted, the current v)3.062 F .382
+pted by)144 441.6 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144
+453.6 Q F2(mode)3.262 E F0 .382(is omitted, the current v)3.062 F .382
 (alue of the mask is printed.)-.25 F(The)5.382 E F1<ad53>2.882 E F0 .382
 (option causes the mask to be)2.882 F .547
-(printed in symbolic form; the def)144 357.6 R .547
+(printed in symbolic form; the def)144 465.6 R .547
 (ault output is an octal number)-.1 F 5.547(.I)-.55 G 3.047(ft)-5.547 G
 (he)-3.047 E F1<ad70>3.047 E F0 .547(option is supplied, and)3.047 F F2
-(mode)144.38 369.6 Q F0 .551
+(mode)144.38 477.6 Q F0 .551
 (is omitted, the output is in a form that may be reused as input.)3.231
-F .552(The return status is 0 if the)5.552 F(mode w)144 381.6 Q
+F .552(The return status is 0 if the)5.552 F(mode w)144 489.6 Q
 (as successfully changed or if no)-.1 E F2(mode)2.5 E F0(ar)2.5 E
 (gument w)-.18 E(as supplied, and f)-.1 E(alse otherwise.)-.1 E F1
-(unalias)108 398.4 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0
-(...])2.5 E(Remo)144 410.4 Q 1.058 -.15(ve e)-.15 H(ach).15 E F2(name)
+(unalias)108 506.4 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0
+(...])2.5 E(Remo)144 518.4 Q 1.058 -.15(ve e)-.15 H(ach).15 E F2(name)
 3.258 E F0 .758(from the list of de\214ned aliases.)3.258 F(If)5.758 E
 F1<ad61>3.258 E F0 .757(is supplied, all alias de\214nitions are re-)
-3.258 F(mo)144 422.4 Q -.15(ve)-.15 G 2.5(d. The).15 F(return v)2.5 E
+3.258 F(mo)144 530.4 Q -.15(ve)-.15 G 2.5(d. The).15 F(return v)2.5 E
 (alue is true unless a supplied)-.25 E F2(name)2.86 E F0
-(is not a de\214ned alias.)2.68 E F1(unset)108 439.2 Q F0<5bad>2.5 E F1
+(is not a de\214ned alias.)2.68 E F1(unset)108 547.2 Q F0<5bad>2.5 E F1
 (fv)A F0 2.5(][)C<ad>-2.5 E F1(n)A F0 2.5(][)C F2(name)-2.5 E F0(...])
-2.5 E -.15(Fo)144 451.2 S 3.803(re).15 G(ach)-3.803 E F2(name)4.163 E F0
+2.5 E -.15(Fo)144 559.2 S 3.803(re).15 G(ach)-3.803 E F2(name)4.163 E F0
 3.803(,r).18 G(emo)-3.803 E 1.603 -.15(ve t)-.15 H 1.303
 (he corresponding v).15 F 1.303(ariable or function.)-.25 F 1.303
 (If the)6.303 F F1<ad76>3.804 E F0 1.304(option is gi)3.804 F -.15(ve)
--.25 G 1.304(n, each).15 F F2(name)144.36 463.2 Q F0 .465
+-.25 G 1.304(n, each).15 F F2(name)144.36 571.2 Q F0 .465
 (refers to a shell v)3.145 F .464(ariable, and that v)-.25 F .464
 (ariable is remo)-.25 F -.15(ve)-.15 G 2.964(d. Read-only).15 F -.25(va)
-2.964 G .464(riables may not be un-).25 F 2.768(set. If)144 475.2 R F1
+2.964 G .464(riables may not be un-).25 F 2.768(set. If)144 583.2 R F1
 <ad66>2.768 E F0 .269(is speci\214ed, each)2.768 F F2(name)3.129 E F0
 .269(refers to a shell function, and the function de\214nition is remo)
-2.949 F -.15(ve)-.15 G(d.).15 E .404(If the)144 487.2 R F1<ad6e>2.904 E
+2.949 F -.15(ve)-.15 G(d.).15 E .404(If the)144 595.2 R F1<ad6e>2.904 E
 F0 .404(option is supplied, and)2.904 F F2(name)2.904 E F0 .404(is a v)
 2.904 F .404(ariable with the)-.25 F F2(namer)2.904 E(ef)-.37 E F0
 (attrib)2.904 E(ute,)-.2 E F2(name)2.904 E F0 .403(will be unset)2.904 F
-.719(rather than the v)144 499.2 R .719(ariable it references.)-.25 F F1
+.719(rather than the v)144 607.2 R .719(ariable it references.)-.25 F F1
 <ad6e>5.719 E F0 .719(has no ef)3.219 F .719(fect if the)-.25 F F1<ad66>
 3.22 E F0 .72(option is supplied.)3.22 F .72(If no options)5.72 F .737
-(are supplied, each)144 511.2 R F2(name)3.237 E F0 .737(refers to a v)
+(are supplied, each)144 619.2 R F2(name)3.237 E F0 .737(refers to a v)
 3.237 F .737(ariable; if there is no v)-.25 F .736
 (ariable by that name, a function with)-.25 F 1.761(that name, if an)144
-523.2 R 3.061 -.65(y, i)-.15 H 4.261(su).65 G 4.261(nset. Each)-4.261 F
+631.2 R 3.061 -.65(y, i)-.15 H 4.261(su).65 G 4.261(nset. Each)-4.261 F
 1.761(unset v)4.261 F 1.761(ariable or function is remo)-.25 F -.15(ve)
 -.15 G 4.262(df).15 G 1.762(rom the en)-4.262 F(vironment)-.4 E 3.172
-(passed to subsequent commands.)144 535.2 R 3.172(If an)8.172 F 5.672
+(passed to subsequent commands.)144 643.2 R 3.172(If an)8.172 F 5.672
 (yo)-.15 G(f)-5.672 E/F3 9/Times-Bold@0 SF -.27(BA)5.672 G(SH_ALIASES)
 .27 E/F4 9/Times-Roman@0 SF(,)A F3 -.27(BA)5.421 G(SH_ARGV0).27 E F4(,)A
-F3 -.27(BA)5.421 G(SH_CMDS).27 E F4(,)A F3 -.27(BA)144 547.2 S
+F3 -.27(BA)5.421 G(SH_CMDS).27 E F4(,)A F3 -.27(BA)144 655.2 S
 (SH_COMMAND).27 E F4(,)A F3 -.27(BA)11.481 G(SH_SUBSHELL).27 E F4(,)A F3
 -.27(BA)11.482 G(SHPID).27 E F4(,)A F3(COMP_W)11.482 E(ORDBREAKS)-.09 E
 F4(,)A F3(DIRST)11.482 E -.495(AC)-.81 G(K).495 E F4(,)A F3(EPOCHREAL)
-144 559.2 Q(TIME)-.828 E F4(,)A F3(EPOCHSECONDS)2.67 E F4(,)A F3(FUNCN)
+144 667.2 Q(TIME)-.828 E F4(,)A F3(EPOCHSECONDS)2.67 E F4(,)A F3(FUNCN)
 2.67 E(AME)-.18 E F4(,)A F3(GR)2.67 E(OUPS)-.27 E F4(,)A F3(HISTCMD)2.67
 E F4(,)A F3(LINENO)2.67 E F4(,)A F3(RANDOM)2.67 E F4(,)A F3(SECONDS)144
-571.2 Q F4(,)A F0(or)4.029 E F3(SRANDOM)4.279 E F0 1.779(are unset, the)
+679.2 Q F4(,)A F0(or)4.029 E F3(SRANDOM)4.279 E F0 1.779(are unset, the)
 4.029 F 4.279(yl)-.15 G 1.779(ose their special properties, e)-4.279 F
 -.15(ve)-.25 G 4.279(ni).15 G 4.28(ft)-4.279 G(he)-4.28 E 4.28(ya)-.15 G
-1.78(re subse-)-4.28 F(quently reset.)144 583.2 Q(The e)5 E
+1.78(re subse-)-4.28 F(quently reset.)144 691.2 Q(The e)5 E
 (xit status is true unless a)-.15 E F2(name)2.86 E F0
-(is readonly or may not be unset.)2.68 E F1(wait)108 600 Q F0([)2.5 E F1
-(\255fn)A F0 2.5(][)C F1<ad70>-2.5 E F2(varname)2.5 E F0 2.5(][)C F2
-(id ...)-2.5 E F0(])A -.8(Wa)144 612 S .659(it for each speci\214ed chi\
-ld process and return its termination status.).8 F(Each)5.659 E F2(id)
-3.169 E F0 .658(may be a process)3.928 F .008
-(ID or a job speci\214cation; if a job spec is gi)144 624 R -.15(ve)-.25
+(is readonly or may not be unset.)2.68 E(GNU Bash 5.2)72 768 Q
+(2023 January 27)141.79 E(25)190.95 E 0 Cg EP
+%%Page: 26 26
+%%BeginPageSetup
+BP
+%%EndPageSetup
+/F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
+(TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(wait)108 84 Q F0([)
+2.5 E F1(\255fn)A F0 2.5(][)C F1<ad70>-2.5 E/F2 10/Times-Italic@0 SF
+(varname)2.5 E F0 2.5(][)C F2(id ...)-2.5 E F0(])A -.8(Wa)144 96 S .659
+(it for each speci\214ed child process and return its termination statu\
+s.).8 F(Each)5.659 E F2(id)3.169 E F0 .658(may be a process)3.928 F .008
+(ID or a job speci\214cation; if a job spec is gi)144 108 R -.15(ve)-.25
 G .009(n, all processes in that job').15 F 2.509(sp)-.55 G .009
 (ipeline are w)-2.509 F .009(aited for)-.1 F 5.009(.I)-.55 G(f)-5.009 E
-F2(id)144.01 636 Q F0 .442(is not gi)3.712 F -.15(ve)-.25 G(n,).15 E F1
+F2(id)144.01 120 Q F0 .442(is not gi)3.712 F -.15(ve)-.25 G(n,).15 E F1
 (wait)2.942 E F0 -.1(wa)2.942 G .441
 (its for all running background jobs and the last-e).1 F -.15(xe)-.15 G
 .441(cuted process substitu-).15 F .597
-(tion, if its process id is the same as)144 648 R F1($!)3.098 E F0 3.098
+(tion, if its process id is the same as)144 132 R F1($!)3.098 E F0 3.098
 (,a)C .598(nd the return status is zero.)-3.098 F .598(If the)5.598 F F1
-<ad6e>3.098 E F0 .598(option is supplied,)3.098 F F1(wait)144 660 Q F0
+<ad6e>3.098 E F0 .598(option is supplied,)3.098 F F1(wait)144 144 Q F0
 -.1(wa)3.083 G .583(its for a single job from the list of).1 F F2(id)
 3.083 E F0 3.083(so)C 1.383 -.4(r, i)-3.083 H 3.083(fn).4 G(o)-3.083 E
 F2(id)3.083 E F0 3.083(sa)C .583(re supplied, an)-3.083 F 3.083(yj)-.15
-G .582(ob, to complete and)-3.083 F .403(returns its e)144 672 R .403
+G .582(ob, to complete and)-3.083 F .403(returns its e)144 156 R .403
 (xit status.)-.15 F .403(If none of the supplied ar)5.403 F .403
 (guments is a child of the shell, or if no ar)-.18 F(guments)-.18 E .573
-(are supplied and the shell has no unw)144 684 R .573
+(are supplied and the shell has no unw)144 168 R .573
 (aited-for children, the e)-.1 F .573(xit status is 127.)-.15 F .572
 (If the)5.573 F F1<ad70>3.072 E F0 .572(option is)3.072 F .39
 (supplied, the process or job identi\214er of the job for which the e)
-144 696 R .39(xit status is returned is assigned to)-.15 F .905(the v)
-144 708 R(ariable)-.25 E F2(varname)3.405 E F0 .905
+144 180 R .39(xit status is returned is assigned to)-.15 F .905(the v)
+144 192 R(ariable)-.25 E F2(varname)3.405 E F0 .905
 (named by the option ar)3.405 F 3.405(gument. The)-.18 F -.25(va)3.405 G
 .905(riable will be unset initially).25 F 3.405(,b)-.65 G(efore)-3.405 E
-(an)144 720 Q 3.89(ya)-.15 G 3.89(ssignment. This)-3.89 F 1.39
+(an)144 204 Q 3.89(ya)-.15 G 3.89(ssignment. This)-3.89 F 1.39
 (is useful only when the)3.89 F F1<ad6e>3.89 E F0 1.39
 (option is supplied.)3.89 F 1.39(Supplying the)6.39 F F1<ad66>3.89 E F0
-(option,)3.89 E(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(25)190.95
-E 0 Cg EP
-%%Page: 26 26
-%%BeginPageSetup
-BP
-%%EndPageSetup
-/F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
-(TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E .575(when job control is enabled, forces)
-144 84 R/F1 10/Times-Bold@0 SF(wait)3.075 E F0 .575(to w)3.075 F .575
-(ait for)-.1 F/F2 10/Times-Italic@0 SF(id)3.075 E F0 .574
-(to terminate before returning its status, in-)3.075 F .635
-(stead of returning when it changes status.)144 96 R(If)5.635 E F2(id)
+(option,)3.89 E .575(when job control is enabled, forces)144 216 R F1
+(wait)3.075 E F0 .575(to w)3.075 F .575(ait for)-.1 F F2(id)3.075 E F0
+.574(to terminate before returning its status, in-)3.075 F .635
+(stead of returning when it changes status.)144 228 R(If)5.635 E F2(id)
 3.145 E F0 .635(speci\214es a non-e)3.905 F .635
-(xistent process or job, the return)-.15 F .802(status is 127.)144 108 R
+(xistent process or job, the return)-.15 F .802(status is 127.)144 240 R
 (If)5.801 E F1(wait)3.301 E F0 .801(is interrupted by a signal, the ret\
 urn status will be greater than 128, as de-)3.301 F 1.758(scribed under)
-144 120 R F1(SIGN)4.258 E(ALS)-.2 E F0(in)4.258 E F2(bash\(1\))4.258 E
+144 252 R F1(SIGN)4.258 E(ALS)-.2 E F0(in)4.258 E F2(bash\(1\))4.258 E
 F0 6.758(.O)C 1.759(therwise, the return status is the e)-6.758 F 1.759
-(xit status of the last)-.15 F(process or job w)144 132 Q(aited for)-.1
-E(.)-.55 E/F3 10.95/Times-Bold@0 SF(SHELL COMP)72 148.8 Q -1.04(AT)-.81
+(xit status of the last)-.15 F(process or job w)144 264 Q(aited for)-.1
+E(.)-.55 E/F3 10.95/Times-Bold@0 SF(SHELL COMP)72 280.8 Q -1.04(AT)-.81
 G(IBILITY MODE)1.04 E F0 1.355(Bash-4.0 introduced the concept of a)108
-160.8 R F2 1.355(shell compatibility le)3.855 F(vel)-.15 E F0 3.855(,s)C
+292.8 R F2 1.355(shell compatibility le)3.855 F(vel)-.15 E F0 3.855(,s)C
 1.354(peci\214ed as a set of options to the shopt)-3.855 F -.2(bu)108
-172.8 S .398(iltin \().2 F F1(compat31)2.898 E F0(,)A F1(compat32)2.898
+304.8 S .398(iltin \().2 F F1(compat31)2.898 E F0(,)A F1(compat32)2.898
 E F0(,)A F1(compat40)2.898 E F0(,)A F1(compat41)2.898 E F0 2.898(,a)C
 .399(nd so on\).)-2.898 F .399(There is only one current compatibility)
-5.399 F(le)108 184.8 Q -.15(ve)-.25 G 3.254(l-).15 G 3.254(-e)-3.254 G
+5.399 F(le)108 316.8 Q -.15(ve)-.25 G 3.254(l-).15 G 3.254(-e)-3.254 G
 .754(ach option is mutually e)-3.254 F(xclusi)-.15 E -.15(ve)-.25 G
 5.754(.T).15 G .754(he compatibility le)-5.754 F -.15(ve)-.25 G 3.253
 (li).15 G 3.253(si)-3.253 G .753(ntended to allo)-3.253 F 3.253(wu)-.25
-G .753(sers to select be-)-3.253 F(ha)108 196.8 Q 1.083(vior from pre)
+G .753(sers to select be-)-3.253 F(ha)108 328.8 Q 1.083(vior from pre)
 -.2 F 1.083(vious v)-.25 F 1.083(ersions that is incompatible with ne)
 -.15 F 1.083(wer v)-.25 F 1.083(ersions while the)-.15 F 3.584(ym)-.15 G
-1.084(igrate scripts to use)-3.584 F(current features and beha)108 208.8
+1.084(igrate scripts to use)-3.584 F(current features and beha)108 340.8
 Q(vior)-.2 E 2.5(.I)-.55 G(t')-2.5 E 2.5(si)-.55 G
 (ntended to be a temporary solution.)-2.5 E 1.457
-(This section does not mention beha)108 225.6 R 1.457
+(This section does not mention beha)108 357.6 R 1.457
 (vior that is standard for a particular v)-.2 F 1.456
 (ersion \(e.g., setting)-.15 F F1(compat32)3.956 E F0 .886
-(means that quoting the rhs of the re)108 237.6 R(ge)-.15 E .886
+(means that quoting the rhs of the re)108 369.6 R(ge)-.15 E .886
 (xp matching operator quotes special re)-.15 F(ge)-.15 E .887
-(xp characters in the w)-.15 F(ord,)-.1 E(which is def)108 249.6 Q
+(xp characters in the w)-.15 F(ord,)-.1 E(which is def)108 381.6 Q
 (ault beha)-.1 E(vior in bash-3.2 and subsequent v)-.2 E(ersions\).)-.15
-E .523(If a user enables, say)108 266.4 R(,)-.65 E F1(compat32)3.023 E
+E .523(If a user enables, say)108 398.4 R(,)-.65 E F1(compat32)3.023 E
 F0 3.023(,i)C 3.023(tm)-3.023 G .523(ay af)-3.023 F .523(fect the beha)
 -.25 F .523(vior of other compatibility le)-.2 F -.15(ve)-.25 G .522
 (ls up to and includ-).15 F .259(ing the current compatibility le)108
-278.4 R -.15(ve)-.25 G 2.759(l. The).15 F .259
+410.4 R -.15(ve)-.25 G 2.759(l. The).15 F .259
 (idea is that each compatibility le)2.759 F -.15(ve)-.25 G 2.76(lc).15 G
 .26(ontrols beha)-2.76 F .26(vior that changed)-.2 F 1.646(in that v)108
-290.4 R 1.646(ersion of)-.15 F F1(bash)4.146 E F0 4.146(,b)C 1.646
+422.4 R 1.646(ersion of)-.15 F F1(bash)4.146 E F0 4.146(,b)C 1.646
 (ut that beha)-4.346 F 1.646(vior may ha)-.2 F 1.946 -.15(ve b)-.2 H
 1.646(een present in earlier v).15 F 4.146(ersions. F)-.15 F 1.645
 (or instance, the)-.15 F .76
-(change to use locale-based comparisons with the)108 302.4 R F1([[)3.261
+(change to use locale-based comparisons with the)108 434.4 R F1([[)3.261
 E F0 .761(command came in bash-4.1, and earlier v)3.261 F .761
 (ersions used)-.15 F 1.905(ASCII-based comparisons, so enabling)108
-314.4 R F1(compat32)4.405 E F0 1.904
+446.4 R F1(compat32)4.405 E F0 1.904
 (will enable ASCII-based comparisons as well.)4.405 F(That)6.904 E .295
-(granularity may not be suf)108 326.4 R .296
+(granularity may not be suf)108 458.4 R .296
 (\214cient for all uses, and as a result users should emplo)-.25 F 2.796
 (yc)-.1 G .296(ompatibility le)-2.796 F -.15(ve)-.25 G .296(ls care-).15
-F(fully)108 338.4 Q 5(.R)-.65 G(ead the documentation for a particular \
+F(fully)108 470.4 Q 5(.R)-.65 G(ead the documentation for a particular \
 feature to \214nd out the current beha)-5 E(vior)-.2 E(.)-.55 E .532
-(Bash-4.3 introduced a ne)108 355.2 R 3.032(ws)-.25 G .531(hell v)-3.032
+(Bash-4.3 introduced a ne)108 487.2 R 3.032(ws)-.25 G .531(hell v)-3.032
 F(ariable:)-.25 E/F4 9/Times-Bold@0 SF -.27(BA)3.031 G(SH_COMP).27 E
 -.855(AT)-.666 G/F5 9/Times-Roman@0 SF(.).855 E F0 .531(The v)5.031 F
 .531(alue assigned to this v)-.25 F .531(ariable \(a decimal)-.25 F -.15
-(ve)108 367.2 S .107(rsion number lik).15 F 2.607(e4)-.1 G .107
+(ve)108 499.2 S .107(rsion number lik).15 F 2.607(e4)-.1 G .107
 (.2, or an inte)-2.607 F .107(ger corresponding to the)-.15 F F1(compat)
 2.608 E F2(NN)A F0 .108(option, lik)2.608 F 2.608(e4)-.1 G .108
-(2\) determines the com-)-2.608 F(patibility le)108 379.2 Q -.15(ve)-.25
-G(l.).15 E .388(Starting with bash-4.4, Bash has be)108 396 R .388
+(2\) determines the com-)-2.608 F(patibility le)108 511.2 Q -.15(ve)-.25
+G(l.).15 E .388(Starting with bash-4.4, Bash has be)108 528 R .388
 (gun deprecating older compatibility le)-.15 F -.15(ve)-.25 G 2.887
 (ls. Ev).15 F(entually)-.15 E 2.887(,t)-.65 G .387(he options will)
--2.887 F(be remo)108 408 Q -.15(ve)-.15 G 2.5(di).15 G 2.5(nf)-2.5 G -.2
+-2.887 F(be remo)108 540 Q -.15(ve)-.15 G 2.5(di).15 G 2.5(nf)-2.5 G -.2
 (avo)-2.6 G 2.5(ro).2 G(f)-2.5 E F4 -.27(BA)2.5 G(SH_COMP).27 E -.855
-(AT)-.666 G F5(.).855 E F0 1.163(Bash-5.0 is the \214nal v)108 424.8 R
+(AT)-.666 G F5(.).855 E F0 1.163(Bash-5.0 is the \214nal v)108 556.8 R
 1.163(ersion for which there will be an indi)-.15 F 1.164
 (vidual shopt option for the pre)-.25 F 1.164(vious v)-.25 F(ersion.)
--.15 E(Users should use)108 436.8 Q F4 -.27(BA)2.5 G(SH_COMP).27 E -.855
+-.15 E(Users should use)108 568.8 Q F4 -.27(BA)2.5 G(SH_COMP).27 E -.855
 (AT)-.666 G F0(on bash-5.0 and later v)3.105 E(ersions.)-.15 E 1.614
-(The follo)108 453.6 R 1.613(wing table describes the beha)-.25 F 1.613
+(The follo)108 585.6 R 1.613(wing table describes the beha)-.25 F 1.613
 (vior changes controlled by each compatibility le)-.2 F -.15(ve)-.25 G
-4.113(ls).15 G 4.113(etting. The)-4.113 F F1(compat)108 465.6 Q F2(NN)A
+4.113(ls).15 G 4.113(etting. The)-4.113 F F1(compat)108 597.6 Q F2(NN)A
 F0 1.186(tag is used as shorthand for setting the compatibility le)3.685
 F -.15(ve)-.25 G 3.686(lt).15 G(o)-3.686 E F2(NN)3.686 E F0 1.186
 (using one of the follo)3.686 F(wing)-.25 E 3.807(mechanisms. F)108
-477.6 R 1.307(or v)-.15 F 1.307
+609.6 R 1.307(or v)-.15 F 1.307
 (ersions prior to bash-5.0, the compatibility le)-.15 F -.15(ve)-.25 G
 3.806(lm).15 G 1.306(ay be set using the corresponding)-3.806 F F1
-(compat)108 489.6 Q F2(NN)A F0 .502(shopt option.)3.002 F -.15(Fo)5.502
+(compat)108 621.6 Q F2(NN)A F0 .502(shopt option.)3.002 F -.15(Fo)5.502
 G 3.002(rb).15 G .502(ash-4.3 and later v)-3.002 F .502(ersions, the)
 -.15 F F4 -.27(BA)3.002 G(SH_COMP).27 E -.855(AT)-.666 G F0 -.25(va)
 3.607 G .502(riable is preferred, and it).25 F
-(is required for bash-5.1 and later v)108 501.6 Q(ersions.)-.15 E F1
-(compat31)108 518.4 Q F0<83>144 530.4 Q(quoting the rhs of the)180 530.4
+(is required for bash-5.1 and later v)108 633.6 Q(ersions.)-.15 E F1
+(compat31)108 650.4 Q F0<83>144 662.4 Q(quoting the rhs of the)180 662.4
 Q F1([[)2.5 E F0(command')2.5 E 2.5(sr)-.55 G -.15(eg)-2.5 G -.15(ex).15
 G 2.5(pm).15 G(atching operator \(=~\) has no special ef)-2.5 E(fect)
--.25 E F1(compat32)108 547.2 Q F0<83>144 559.2 Q .35
-(interrupting a command list such as "a ; b ; c" causes the e)180 559.2
+-.25 E F1(compat32)108 679.2 Q F0<83>144 691.2 Q .35
+(interrupting a command list such as "a ; b ; c" causes the e)180 691.2
 R -.15(xe)-.15 G .35(cution of the ne).15 F .35(xt command)-.15 F .017
-(in the list \(in bash-4.0 and later v)180 571.2 R .018
+(in the list \(in bash-4.0 and later v)180 703.2 R .018
 (ersions, the shell acts as if it recei)-.15 F -.15(ve)-.25 G 2.518(dt)
 .15 G .018(he interrupt, so in-)-2.518 F
-(terrupting one command in a list aborts the e)180 583.2 Q -.15(xe)-.15
-G(cution of the entire list\)).15 E F1(compat40)108 600 Q F0<83>144 612
-Q(the)180 612 Q F1(<)2.674 E F0(and)2.674 E F1(>)2.673 E F0 .173
-(operators to the)2.673 F F1([[)2.673 E F0 .173
+(terrupting one command in a list aborts the e)180 715.2 Q -.15(xe)-.15
+G(cution of the entire list\)).15 E(GNU Bash 5.2)72 768 Q
+(2023 January 27)141.79 E(26)190.95 E 0 Cg EP
+%%Page: 27 27
+%%BeginPageSetup
+BP
+%%EndPageSetup
+/F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
+(TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(compat40)108 84 Q F0
+<83>144 96 Q(the)180 96 Q F1(<)2.674 E F0(and)2.674 E F1(>)2.673 E F0
+.173(operators to the)2.673 F F1([[)2.673 E F0 .173
 (command do not consider the current locale when compar)2.673 F(-)-.2 E
-.067(ing strings; the)180 624 R 2.567(yu)-.15 G .067(se ASCII ordering.)
+.067(ing strings; the)180 108 R 2.567(yu)-.15 G .067(se ASCII ordering.)
 -2.567 F .068(Bash v)5.068 F .068
-(ersions prior to bash-4.1 use ASCII collation)-.15 F(and)180 636 Q F2
-(str)4.743 E(cmp)-.37 E F0 1.903
+(ersions prior to bash-4.1 use ASCII collation)-.15 F(and)180 120 Q/F2
+10/Times-Italic@0 SF(str)4.743 E(cmp)-.37 E F0 1.903
 (\(3\); bash-4.1 and later use the current locale').19 F 4.402(sc)-.55 G
-1.902(ollation sequence and)-4.402 F F2(str)4.742 E(-)-.2 E(coll)180 648
-Q F0(\(3\).).51 E F1(compat41)108 664.8 Q F0<83>144 676.8 Q(in)180 676.8
+1.902(ollation sequence and)-4.402 F F2(str)4.742 E(-)-.2 E(coll)180 132
+Q F0(\(3\).).51 E F1(compat41)108 148.8 Q F0<83>144 160.8 Q(in)180 160.8
 Q F2(posix)3.79 E F0(mode,)3.79 E F1(time)3.79 E F0 1.29(may be follo)
 3.79 F 1.29(wed by options and still be recognized as a reserv)-.25 F
-(ed)-.15 E -.1(wo)180 688.8 S(rd \(this is POSIX interpretation 267\)).1
-E<83>144 700.8 Q(in)180 700.8 Q F2(posix)2.709 E F0 .208
+(ed)-.15 E -.1(wo)180 172.8 S(rd \(this is POSIX interpretation 267\)).1
+E<83>144 184.8 Q(in)180 184.8 Q F2(posix)2.709 E F0 .208
 (mode, the parser requires that an e)2.709 F -.15(ve)-.25 G 2.708(nn).15
 G .208(umber of single quotes occur in the)-2.708 F F2(wor)2.708 E(d)
--.37 E F0 .281(portion of a double-quoted parameter e)180 712.8 R .282
+-.37 E F0 .281(portion of a double-quoted parameter e)180 196.8 R .282
 (xpansion and treats them specially)-.15 F 2.782(,s)-.65 G 2.782(ot)
 -2.782 G .282(hat charac-)-2.782 F(ters within the single quotes are co\
-nsidered quoted \(this is POSIX interpretation 221\))180 724.8 Q
-(GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(26)190.95 E 0 Cg EP
-%%Page: 27 27
-%%BeginPageSetup
-BP
-%%EndPageSetup
-/F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
-(TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(compat42)108 84 Q F0
-<83>144 96 Q 1.056(the replacement string in double-quoted pattern subs\
-titution does not under)180 96 R 1.055(go quote re-)-.18 F(mo)180 108 Q
--.25(va)-.15 G(l, as it does in v).25 E(ersions after bash-4.2)-.15 E
-<83>144 120 Q .021
-(in posix mode, single quotes are considered special when e)180 120 R
-.021(xpanding the)-.15 F/F2 10/Times-Italic@0 SF(wor)2.521 E(d)-.37 E F0
-.021(portion of a)2.521 F .018(double-quoted parameter e)180 132 R .017
+nsidered quoted \(this is POSIX interpretation 221\))180 208.8 Q F1
+(compat42)108 225.6 Q F0<83>144 237.6 Q 1.056(the replacement string in\
+ double-quoted pattern substitution does not under)180 237.6 R 1.055
+(go quote re-)-.18 F(mo)180 249.6 Q -.25(va)-.15 G(l, as it does in v)
+.25 E(ersions after bash-4.2)-.15 E<83>144 261.6 Q .021
+(in posix mode, single quotes are considered special when e)180 261.6 R
+.021(xpanding the)-.15 F F2(wor)2.521 E(d)-.37 E F0 .021(portion of a)
+2.521 F .018(double-quoted parameter e)180 273.6 R .017
 (xpansion and can be used to quote a closing brace or other spe-)-.15 F
 .998(cial character \(this is part of POSIX interpretation 221\); in la\
-ter v)180 144 R .999(ersions, single quotes)-.15 F
-(are not special within double-quoted w)180 156 Q(ord e)-.1 E(xpansions)
--.15 E F1(compat43)108 172.8 Q F0<83>144 184.8 Q 1.071
-(the shell does not print a w)180 184.8 R 1.07
+ter v)180 285.6 R .999(ersions, single quotes)-.15 F
+(are not special within double-quoted w)180 297.6 Q(ord e)-.1 E
+(xpansions)-.15 E F1(compat43)108 314.4 Q F0<83>144 326.4 Q 1.071
+(the shell does not print a w)180 326.4 R 1.07
 (arning message if an attempt is made to use a quoted com-)-.1 F .71
-(pound assignment as an ar)180 196.8 R .711
+(pound assignment as an ar)180 338.4 R .711
 (gument to declare \(e.g., declare -a foo=\010\(1 2\)\010\). Later v)
--.18 F(ersions)-.15 E -.1(wa)180 208.8 S
-(rn that this usage is deprecated).1 E<83>144 220.8 Q -.1(wo)180 220.8 S
+-.18 F(ersions)-.15 E -.1(wa)180 350.4 S
+(rn that this usage is deprecated).1 E<83>144 362.4 Q -.1(wo)180 362.4 S
 .501(rd e).1 F .501(xpansion errors are considered non-f)-.15 F .501
-(atal errors that cause the current command to)-.1 F -.1(fa)180 232.8 S
+(atal errors that cause the current command to)-.1 F -.1(fa)180 374.4 S
 .605(il, e).1 F -.15(ve)-.25 G 3.105(ni).15 G 3.105(np)-3.105 G .605
 (osix mode \(the def)-3.105 F .605(ault beha)-.1 F .605(vior is to mak)
 -.2 F 3.105(et)-.1 G .605(hem f)-3.105 F .605
-(atal errors that cause the)-.1 F(shell to e)180 244.8 Q(xit\))-.15 E
-<83>144 256.8 Q .355(when e)180 256.8 R -.15(xe)-.15 G .354
+(atal errors that cause the)-.1 F(shell to e)180 386.4 Q(xit\))-.15 E
+<83>144 398.4 Q .355(when e)180 398.4 R -.15(xe)-.15 G .354
 (cuting a shell function, the loop state \(while/until/etc.\)).15 F .354
 (is not reset, so)5.354 F F1(br)2.854 E(eak)-.18 E F0(or)2.854 E F1
-(continue)180 268.8 Q F0 .052
+(continue)180 410.4 Q F0 .052
 (in that function will break or continue loops in the calling conte)
 2.552 F .053(xt. Bash-4.4 and)-.15 F(later reset the loop state to pre)
-180 280.8 Q -.15(ve)-.25 G(nt this).15 E F1(compat44)108 297.6 Q F0<83>
-144 309.6 Q .719(the shell sets up the v)180 309.6 R .719(alues used by)
+180 422.4 Q -.15(ve)-.25 G(nt this).15 E F1(compat44)108 439.2 Q F0<83>
+144 451.2 Q .719(the shell sets up the v)180 451.2 R .719(alues used by)
 -.25 F/F3 9/Times-Bold@0 SF -.27(BA)3.219 G(SH_ARGV).27 E F0(and)2.969 E
 F3 -.27(BA)3.219 G(SH_ARGC).27 E F0 .719(so the)2.969 F 3.218(yc)-.15 G
-.718(an e)-3.218 F(xpand)-.15 E(to the shell')180 321.6 Q 2.5(sp)-.55 G
+.718(an e)-3.218 F(xpand)-.15 E(to the shell')180 463.2 Q 2.5(sp)-.55 G
 (ositional parameters e)-2.5 E -.15(ve)-.25 G 2.5(ni).15 G 2.5(fe)-2.5 G
-(xtended deb)-2.65 E(ugging mode is not enabled)-.2 E<83>144 333.6 Q
-2.634(as)180 333.6 S .134(ubshell inherits loops from its parent conte)
+(xtended deb)-2.65 E(ugging mode is not enabled)-.2 E<83>144 475.2 Q
+2.634(as)180 475.2 S .134(ubshell inherits loops from its parent conte)
 -2.634 F .135(xt, so)-.15 F F1(br)2.635 E(eak)-.18 E F0(or)2.635 E F1
 (continue)2.635 E F0 .135(will cause the sub-)2.635 F(shell to e)180
-345.6 Q 2.5(xit. Bash-5.0)-.15 F(and later reset the loop state to pre)
-2.5 E -.15(ve)-.25 G(nt the e).15 E(xit)-.15 E<83>144 357.6 Q -.25(va)
-180 357.6 S .619(riable assignments preceding b).25 F .618(uiltins lik)
+487.2 Q 2.5(xit. Bash-5.0)-.15 F(and later reset the loop state to pre)
+2.5 E -.15(ve)-.25 G(nt the e).15 E(xit)-.15 E<83>144 499.2 Q -.25(va)
+180 499.2 S .619(riable assignments preceding b).25 F .618(uiltins lik)
 -.2 F(e)-.1 E F1(export)3.118 E F0(and)3.118 E F1 -.18(re)3.118 G
 (adonly).18 E F0 .618(that set attrib)3.118 F .618(utes con-)-.2 F .119
-(tinue to af)180 369.6 R .119(fect v)-.25 F .119
+(tinue to af)180 511.2 R .119(fect v)-.25 F .119
 (ariables with the same name in the calling en)-.25 F .12(vironment e)
 -.4 F -.15(ve)-.25 G 2.62(ni).15 G 2.62(ft)-2.62 G .12(he shell is)-2.62
-F(not in posix mode)180 381.6 Q F1(compat50)108 398.4 Q F0<83>144 410.4
-Q 1.209(Bash-5.1 changed the w)180 410.4 R(ay)-.1 E F3($RANDOM)3.709 E
-F0 1.209(is generated to introduce slightly more random-)3.459 F 1.018
-(ness. If the shell compatibility le)180 422.4 R -.15(ve)-.25 G 3.518
-(li).15 G 3.518(ss)-3.518 G 1.018(et to 50 or lo)-3.518 F(wer)-.25 E
-3.518(,i)-.4 G 3.518(tr)-3.518 G -2.15 -.25(ev e)-3.518 H 1.019
-(rts to the method from).25 F .733(bash-5.0 and pre)180 434.4 R .733
+F(not in posix mode)180 523.2 Q F1(compat50)108 540 Q F0<83>144 552 Q
+1.209(Bash-5.1 changed the w)180 552 R(ay)-.1 E F3($RANDOM)3.709 E F0
+1.209(is generated to introduce slightly more random-)3.459 F 1.018
+(ness. If the shell compatibility le)180 564 R -.15(ve)-.25 G 3.518(li)
+.15 G 3.518(ss)-3.518 G 1.018(et to 50 or lo)-3.518 F(wer)-.25 E 3.518
+(,i)-.4 G 3.518(tr)-3.518 G -2.15 -.25(ev e)-3.518 H 1.019
+(rts to the method from).25 F .733(bash-5.0 and pre)180 576 R .733
 (vious v)-.25 F .732
 (ersions, so seeding the random number generator by assigning a)-.15 F
--.25(va)180 446.4 S(lue to).25 E F3(RANDOM)2.5 E F0
-(will produce the same sequence as in bash-5.0)2.25 E<83>144 458.4 Q
-.695(If the command hash table is empty)180 458.4 R 3.196(,b)-.65 G .696
+-.25(va)180 588 S(lue to).25 E F3(RANDOM)2.5 E F0
+(will produce the same sequence as in bash-5.0)2.25 E<83>144 600 Q .695
+(If the command hash table is empty)180 600 R 3.196(,b)-.65 G .696
 (ash v)-3.196 F .696(ersions prior to bash-5.1 printed an informa-)-.15
-F 1.321(tional message to that ef)180 470.4 R 1.321(fect, e)-.25 F -.15
+F 1.321(tional message to that ef)180 612 R 1.321(fect, e)-.25 F -.15
 (ve)-.25 G 3.821(nw).15 G 1.321
 (hen producing output that can be reused as input.)-3.821 F
-(Bash-5.1 suppresses that message when the)180 482.4 Q F1<ad6c>2.5 E F0
-(option is supplied.)2.5 E F1(compat51)108 499.2 Q F0<83>144 511.2 Q
-(The)180 511.2 Q F1(unset)2.954 E F0 -.2(bu)2.954 G .454
+(Bash-5.1 suppresses that message when the)180 624 Q F1<ad6c>2.5 E F0
+(option is supplied.)2.5 E F1(compat51)108 640.8 Q F0<83>144 652.8 Q
+(The)180 652.8 Q F1(unset)2.954 E F0 -.2(bu)2.954 G .454
 (iltin treats attempts to unset array subscripts).2 F F1(@)2.955 E F0
 (and)2.955 E F1(*)2.955 E F0(dif)2.955 E .455(ferently depending)-.25 F
-(on whether the array is inde)180 523.2 Q -.15(xe)-.15 G 2.5(do).15 G
+(on whether the array is inde)180 664.8 Q -.15(xe)-.15 G 2.5(do).15 G
 2.5(ra)-2.5 G(ssociati)-2.5 E -.15(ve)-.25 G 2.5(,a).15 G(nd dif)-2.5 E
 (ferently than in pre)-.25 E(vious v)-.25 E(ersions.)-.15 E/F4 10.95
-/Times-Bold@0 SF(SEE ALSO)72 540 Q F0(bash\(1\), sh\(1\))108 552 Q
+/Times-Bold@0 SF(SEE ALSO)72 681.6 Q F0(bash\(1\), sh\(1\))108 693.6 Q
 (GNU Bash 5.2)72 768 Q(2023 January 27)141.79 E(27)190.95 E 0 Cg EP
 %%Trailer
 end
index 89567bb4bc7a43bd9b34dd0388e46647e24bbfc6..db55378545bd509cdcd9bb1f321345a0dd569fbe 100644 (file)
@@ -1,6 +1,6 @@
 %!PS-Adobe-3.0
 %%Creator: groff version 1.22.4
-%%CreationDate: Tue Apr 18 10:26:00 2023
+%%CreationDate: Mon May 22 09:42:13 2023
 %%DocumentNeededResources: font Times-Roman
 %%+ font Times-Bold
 %%DocumentSuppliedResources: procset grops 1.22 4
index 0537ea19d08964d0999b361729c5df52f76490e3..a0b59aff657a81d0584983f8d4c89cf562403cf2 100644 (file)
@@ -2,10 +2,10 @@
 Copyright (C) 1988-2023 Free Software Foundation, Inc.
 @end ignore
 
-@set LASTCHANGE Sun May 14 15:33:30 EDT 2023
+@set LASTCHANGE Tue May 23 11:29:48 EDT 2023
 
 @set EDITION 5.2
 @set VERSION 5.2
 
-@set UPDATED 14 May 2023
+@set UPDATED 23 May 2023
 @set UPDATED-MONTH May 2023
diff --git a/eval.c b/eval.c
index b54ba52c393f486335a0d2b60bafcf9821f3806f..8337a275f85e9ada84c4c4922f43f9afe854052d 100644 (file)
--- a/eval.c
+++ b/eval.c
@@ -183,6 +183,11 @@ reader_loop (void)
                  current_command = (COMMAND *)NULL;
                }
            }
+         if (EOF_Reached && interactive && ignoreeof && parse_and_execute_level == 0)
+           {
+             if (handle_ignoreeof (1))
+               EOF_Reached = 0;
+           }
        }
       else
        {
index bbb5cccb48b2d270dc4d025b9b624db0eaf38f5d..2ab64e4194c4399f6e1efa6c6ef18fd8774fd5c6 100644 (file)
--- a/externs.h
+++ b/externs.h
@@ -113,6 +113,7 @@ extern char *xparse_dolparen (const char *, char *, int *, int);
 extern COMMAND *parse_string_to_command (char *, int);
 extern void reset_parser (void);
 extern void reset_readahead_token (void);
+extern void unset_readahead_token (void);
 extern WORD_LIST *parse_string_to_word_list (char *, int, const char *);
 
 extern int parser_will_prompt (void);
@@ -123,9 +124,10 @@ extern void free_pushed_string_input (void);
 extern int parser_expanding_alias (void);
 extern void parser_save_alias (void);
 extern void parser_restore_alias (void);
-
 extern void clear_shell_input_line (void);
 
+extern int handle_ignoreeof (int);
+
 extern char *decode_prompt_string (char *);
 
 extern int get_current_prompt_level (void);
index 1ef0fbf7555bdec726cf4b3b2167c5840dbaa0e0..ec3c64a86f44d4323a0a173f5f346fa765d01d0f 100644 (file)
@@ -73,7 +73,7 @@ extern int _rl_stricmp (const char *, const char *);
 extern int _rl_strnicmp (const char *, const char *, int);
 #endif
 
-#if defined (HAVE_STRPBRK) && !defined (HAVE_MULTIBYTE)
+#if defined (HAVE_STRPBRK) && !defined (HANDLE_MULTIBYTE)
 #  define _rl_strpbrk(a,b)     strpbrk((a),(b))
 #else
 extern char *_rl_strpbrk (const char *, const char *);
index 61c40be5068489c607847d31f908fe75f9ebfa0c..f909daafc206b17fd5257aff0348b1ee4730ff13 100644 (file)
@@ -281,9 +281,10 @@ _rl_strindex (const char *s1, const char *s2)
   return ((char *)NULL);
 }
 
-#ifndef HAVE_STRPBRK
+#if !defined (HAVE_STRPBRK) || defined (HANDLE_MULTIBYTE)
 /* Find the first occurrence in STRING1 of any character from STRING2.
-   Return a pointer to the character in STRING1. */
+   Return a pointer to the character in STRING1. Understands multibyte
+   characters. */
 char *
 _rl_strpbrk (const char *string1, const char *string2)
 {
index 499163b24ace4af352a4718fb655c8a9c3a304e6..ea2e18bac9ff027ca1cd72269bfc6109e1dc6117 100644 (file)
@@ -738,7 +738,7 @@ make_function_def (WORD_DESC *name, COMMAND *command, int lineno, int lstart)
   temp->flags = 0;
   command->line = lstart;
 
-  /* Information used primarily for debugging. */
+  /* Information used primarily for debugging and error messages. */
   temp->source_file = 0;
 #if defined (ARRAY_VARS)
   GET_ARRAY_FROM_VAR ("BASH_SOURCE", bash_source_v, bash_source_a);
@@ -749,7 +749,16 @@ make_function_def (WORD_DESC *name, COMMAND *command, int lineno, int lstart)
      initialized come from the environment.  Otherwise default to "main"
      (usually functions being defined interactively) */
   if (temp->source_file == 0)
-    temp->source_file = shell_initialized ? "main" : "environment";
+    {
+      if (shell_initialized == 0)
+       temp->source_file = "environment";
+      else if (interactive_shell)
+       temp->source_file = "main";
+      else if (interactive == 0)       /* assume -c command */
+       temp->source_file = dollar_vars[0];
+      else
+       temp->source_file = shell_name; /* this clause is never hit */
+    }
 
 #if defined (DEBUGGER)
   bind_function_def (name->word, temp, 0);
diff --git a/parse.y b/parse.y
index ddb2a24595b4e5bf1bb61f18438a67750ea347ed..9151de74a0728f3d870824ae02355d7ad5b3786e 100644 (file)
--- a/parse.y
+++ b/parse.y
@@ -305,6 +305,11 @@ static size_t shell_input_line_len;        /* strlen (shell_input_line) */
 /* Either zero or EOF. */
 static int shell_input_line_terminator;
 
+/* This implements one-character lookahead/lookbehind across physical input
+   lines, to avoid something being lost because it's pushed back with
+   shell_ungetc when we're at the start of a line. */
+static int eol_ungetc_lookahead = 0;
+
 /* The line number in a script on which a function definition starts. */
 static int function_dstart;
 static int save_dstart = -1;
@@ -401,7 +406,7 @@ static FILE *yyerrstream;
 %type <word_list> word_list pattern
 %type <pattern> pattern_list case_clause_sequence case_clause
 %type <number> timespec
-%type <number> list_terminator
+%type <number> list_terminator simple_list_terminator
 
 %start inputunit
 
@@ -1241,7 +1246,9 @@ list1:            list1 AND_AND newline_list list1
        ;
 
 simple_list_terminator:        '\n'
+               { $$ = '\n'; }
        |       yacc_EOF
+               { $$ = yacc_EOF; }
        ;
 
 list_terminator:'\n'
@@ -1876,11 +1883,12 @@ save_token_state (void)
 {
   int *ret;
 
-  ret = (int *)xmalloc (4 * sizeof (int));
+  ret = (int *)xmalloc (5 * sizeof (int));
   ret[0] = last_read_token;
   ret[1] = token_before_that;
   ret[2] = two_tokens_ago;
   ret[3] = current_token;
+  ret[4] = token_to_read;
   return ret;
 }
 
@@ -1893,6 +1901,7 @@ restore_token_state (int *ts)
   token_before_that = ts[1];
   two_tokens_ago = ts[2];
   current_token = ts[3];
+  token_to_read = ts[4];
 }
 
 /*
@@ -2330,11 +2339,6 @@ static struct dstack temp_dstack = { (char *)NULL, 0, 0 };
    read the next line.  This is called by read_token when the shell is
    processing normal command input. */
 
-/* This implements one-character lookahead/lookbehind across physical input
-   lines, to avoid something being lost because it's pushed back with
-   shell_ungetc when we're at the start of a line. */
-static int eol_ungetc_lookahead = 0;
-
 static int unquoted_backslash = 0;
 
 static int
@@ -3390,6 +3394,12 @@ reset_readahead_token (void)
     token_to_read = 0;
 }
 
+void
+unset_readahead_token (void)
+{
+  token_to_read = 0;
+}
+
 /* Read the next token.  Command can be READ (normal operation) or
    RESET (to normalize state). */
 static int
@@ -4305,8 +4315,13 @@ parse_comsub (int qc, int open, int close, size_t *lenp, int flags)
       if (FUNSUB_CHAR (peekc))
        {
          dolbrace_spec = peekc;
+#if 0
          if (dolbrace_spec == '(')     /* ksh93 compatibility ) */
            shell_ungetc (peekc);
+#else
+         if (dolbrace_spec == '\n')
+           shell_ungetc (peekc);       /* get PS2 prompting right */
+#endif
        }
       else
        {
@@ -4369,6 +4384,7 @@ parse_comsub (int qc, int open, int close, size_t *lenp, int flags)
 
   r = yyparse ();
 
+#if 0
   if (open == '{')
     {
       if (current_token == shell_eof_token &&
@@ -4376,6 +4392,7 @@ parse_comsub (int qc, int open, int close, size_t *lenp, int flags)
            (token_before_that == WORD || token_before_that == ASSIGNMENT_WORD))
        was_word = 1;
     }
+#endif
 
   if (need_here_doc > 0)
     {
@@ -4455,6 +4472,11 @@ INTERNAL_DEBUG(("current_token (%d) != shell_eof_token (%c)", current_token, she
       else
        strcpy (ret, tcmd);
     }
+  else if (retlen == 0)                /* open == '{' }, empty command */
+    {
+      ret = xmalloc (3);
+      ret[retlen++] = ' ';
+    }
   else                                 /* open == '{' } */
     {
       int lastc;
@@ -4464,9 +4486,7 @@ INTERNAL_DEBUG(("current_token (%d) != shell_eof_token (%c)", current_token, she
       ret = xmalloc (retlen + 4);
       ret[0] = (dolbrace_spec == '|') ? '|' : ' ';
       strcpy (ret + 1, tcmd);          /* ( */
-      if (lastc != '\n' && lastc != ';' && lastc != '&' && lastc != ')')
-       ret[retlen++] = ';';
-      else if (lastc == ')' && was_word)       /* right paren can end a word */
+      if (lastc != '\n' && lastc != ';' && lastc != '&')
        ret[retlen++] = ';';
       ret[retlen++] = ' ';
     }
@@ -5138,7 +5158,16 @@ read_token_word (int character)
   for (;;)
     {
       if (character == EOF)
-       goto got_token;
+       {
+         /* delimit the current token, then return EOF if the shell is
+            interactive. */
+         if (interactive)
+          {
+            EOF_Reached = 1;
+            token_to_read = yacc_EOF;
+          }
+         goto got_token;
+       }
 
       if (pass_next_character)
        {
@@ -6667,6 +6696,25 @@ int eof_encountered = 0;
 /* The limit for eof_encountered. */
 int eof_encountered_limit = 10;
 
+int
+handle_ignoreeof (int reset_prompt)
+{
+  if (eof_encountered < eof_encountered_limit)
+    {
+      fprintf (stderr, _("Use \"%s\" to leave the shell.\n"),
+              login_shell ? "logout" : "exit");
+      eof_encountered++;
+      /* Reset the parsing state. */
+      last_read_token = current_token = '\n';
+      if (reset_prompt)
+       /* Reset the prompt string to be $PS1. */
+       prompt_string_pointer = (char **)NULL;
+      prompt_again (0);
+      return 1;
+    }
+  return 0;
+}
+
 /* If we have EOF as the only input unit, this user wants to leave
    the shell.  If the shell is not interactive, then just leave.
    Otherwise, if ignoreeof is set, and we haven't done this the
@@ -6683,21 +6731,8 @@ handle_eof_input_unit (void)
        EOF_Reached = 0;
 
       /* If the user wants to "ignore" eof, then let her do so, kind of. */
-      if (ignoreeof)
-       {
-         if (eof_encountered < eof_encountered_limit)
-           {
-             fprintf (stderr, _("Use \"%s\" to leave the shell.\n"),
-                      login_shell ? "logout" : "exit");
-             eof_encountered++;
-             /* Reset the parsing state. */
-             last_read_token = current_token = '\n';
-             /* Reset the prompt string to be $PS1. */
-             prompt_string_pointer = (char **)NULL;
-             prompt_again (0);
-             return;
-           }
-       }
+      if (ignoreeof && handle_ignoreeof (1))
+       return;
 
       /* In this case EOF should exit the shell.  Do it now. */
       reset_parser ();
index 96115c275e58fbd20ccd05f5aa7c71df1f113912..752dd7d73fc2455c888848ad1e3eb3b46643ce1b 100644 (file)
--- a/parser.h
+++ b/parser.h
@@ -76,9 +76,13 @@ struct dstack {
 #define DOLBRACE_QUOTE 0x40    /* single quote is special in double quotes */
 #define DOLBRACE_QUOTE2        0x80    /* single quote is semi-special in double quotes */
 
-/* characters that can appear following ${ to introduce a function or value
-   substitution (this is mksh terminology and needs to be changed). */
+/* characters that can appear following ${ to introduce a nofork command
+   substitution. */
+#if 0
 #define FUNSUB_CHAR(n) ((n) == ' ' || (n) == '\t' || (n) == '\n' || (n) == '|' || (n) == '(')  /* ) */
+#else
+#define FUNSUB_CHAR(n) ((n) == ' ' || (n) == '\t' || (n) == '\n' || (n) == '|')
+#endif
 
 /* variable declarations from parse.y */
 extern struct dstack dstack;
diff --git a/shell.c b/shell.c
index 0a73e8b5633e71bbbece296534f6bc16dd64ccb3..b1359eaff409669976648b83e63b873b0052bc35 100644 (file)
--- a/shell.c
+++ b/shell.c
@@ -751,7 +751,7 @@ main (int argc, char **argv, char **env)
        start_debugger ();
 
 #if defined (ONESHOT)
-      executing = 1;
+      executing = shell_initialized = 1;
       run_one_command (command_execution_string);
       exit_shell (last_command_exit_value);
 #else /* ONESHOT */
diff --git a/shell.h b/shell.h
index d56afae202ac85c694d7302cb226faf24b8c9f89..bf96786aa067118ac55d787f8a36b465753ffd2c 100644 (file)
--- a/shell.h
+++ b/shell.h
@@ -1,6 +1,6 @@
 /* shell.h -- The data structures used by the shell */
 
-/* Copyright (C) 1993-2022 Free Software Foundation, Inc.
+/* Copyright (C) 1993-2023 Free Software Foundation, Inc.
 
    This file is part of GNU Bash, the Bourne Again SHell.
 
diff --git a/subst.c b/subst.c
index 27a77ad62617e2659e0a3439f1e3c068d9f33480..08d9285e84d505f57fcc3bf87e3a89228c415e72 100644 (file)
--- a/subst.c
+++ b/subst.c
@@ -1044,7 +1044,7 @@ skip_double_quoted (const char *string, size_t slen, int sind, int flags)
          else if (string[i + 1] == LBRACE && FUNSUB_CHAR (string[si]))
            ret = extract_function_subst (string, &si, Q_DOUBLE_QUOTES, (flags & SX_COMPLETE));
          else
-           ret = extract_dollar_brace_string (string, &si, Q_DOUBLE_QUOTES, SX_NOALLOC);
+           ret = extract_dollar_brace_string (string, &si, Q_DOUBLE_QUOTES, SX_NOALLOC|(flags&SX_COMPLETE));
 
          /* These can consume the entire string if they are unterminated */
          CHECK_STRING_OVERRUN (i, si, slen, c);
index d352ef02398c46c5f1288a6779854cc9232278ff..aa9124fb06c25360a4438b3c0ea26fe3736aa4e7 100644 (file)
@@ -47,7 +47,7 @@ declare -f func
 xx=${ unset -f func; }
 declare -f func
 
-echo ${( echo abcde )}         # works in ksh93
+echo ${ ( echo abcde );}
 
 echo ${| echo 67890;  REPLY=12345; }           # works in mksh
 x=${| REPLY= ;}
@@ -126,7 +126,7 @@ echo after: "$@"
 
 set -- 1 2
 echo before: "$@"
-: "${( shift)}"
+: "${ ( shift) }"      # parse_comsub adds the closing semicolon anyway
 echo after: "$@"
 
 # nested funsubs