]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - doc/bashref.info
Imported from ../bash-2.01.1.tar.gz.
[thirdparty/bash.git] / doc / bashref.info
index 974c2ce6af7e461d09b56dde1d3b0f8aa331d447..4707a20a8f028eb35dd1adf8744ac3c7158e24cd 100644 (file)
@@ -1,5 +1,10 @@
-This is Info file bashref.info, produced by Makeinfo-1.64 from the
-input file ./bashref.texi.
+This is Info file bashref.info, produced by Makeinfo version 1.67 from
+the input file /usr/homes/chet/src/bash/bash-2.01.1/doc/bashref.texi.
+
+INFO-DIR-SECTION Utilities
+START-INFO-DIR-ENTRY
+* Bash: (bash).                     GNU Bourne-Again SHell
+END-INFO-DIR-ENTRY
 
 This text is a brief description of the features that are present in
 the Bash shell.
@@ -2412,7 +2417,7 @@ the `alias' and `unalias' builtin commands.
 has an alias.  If so, that word is replaced by the text of the alias.
 The alias name and the replacement text may contain any valid shell
 input, including shell metacharacters, with the exception that the
-alias name may not contain =.  The first word of the replacement text
+alias name may not contain <=>.  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
 `ls' to `"ls -F"', for instance, and Bash does not try to recursively
@@ -4464,7 +4469,7 @@ history list.
 
 `!'
      Start a history substitution, except when followed by a space, tab,
-     the end of the line, = or (.
+     the end of the line, <=> or <(>.
 
 `!N'
      Refer to command line N.
@@ -4610,21 +4615,22 @@ Introduction to Line Editing
    The following paragraphs describe the notation used to represent
 keystrokes.
 
-   The text C-k is read as `Control-K' and describes the character
-produced when the k key is pressed while the Control key is depressed.
+   The text <C-k> is read as `Control-K' and describes the character
+produced when the <k> key is pressed while the Control key is depressed.
 
-   The text M-k is read as `Meta-K' and describes the character
-produced when the meta key (if you have one) is depressed, and the k
+   The text <M-k> is read as `Meta-K' and describes the character
+produced when the meta key (if you have one) is depressed, and the <k>
 key is pressed.  If you do not have a meta key, the identical keystroke
-can be generated by typing ESC first, and then typing k.  Either
-process is known as "metafying" the k key.
+can be generated by typing <ESC> first, and then typing <k>.  Either
+process is known as "metafying" the <k> key.
 
-   The text M-C-k is read as `Meta-Control-k' and describes the
-character produced by "metafying" C-k.
+   The text <M-C-k> is read as `Meta-Control-k' and describes the
+character produced by "metafying" <C-k>.
 
-   In addition, several keys have their own names.  Specifically, DEL,
-ESC, LFD, SPC, RET, and TAB all stand for themselves when seen in this
-text, or in an init file (*note Readline Init File::.).
+   In addition, several keys have their own names.  Specifically,
+<DEL>, <ESC>, <LFD>, <SPC>, <RET>, and <TAB> all stand for themselves
+when seen in this text, or in an init file (*note Readline Init
+File::.).
 
 \1f
 File: bashref.info,  Node: Readline Interaction,  Next: Readline Init File,  Prev: Introduction and Notation,  Up: Command Line Editing
@@ -4639,9 +4645,9 @@ as you type it in, allowing you to just fix your typo, and not forcing
 you to retype the majority of the line.  Using these editing commands,
 you move the cursor to the place that needs correction, and delete or
 insert the text of the corrections.  Then, when you are satisfied with
-the line, you simply press RETURN.  You do not have to be at the end of
-the line to press RETURN; the entire line is accepted regardless of the
-location of the cursor within the line.
+the line, you simply press <RETURN>.  You do not have to be at the end
+of the line to press <RETURN>; the entire line is accepted regardless
+of the location of the cursor within the line.
 
 * Menu:
 
@@ -4664,9 +4670,9 @@ erase character to back up and delete the mistyped character.
 
    Sometimes you may miss typing a character that you wanted to type,
 and not notice your error until you have typed several other
-characters.  In that case, you can type C-b to move the cursor to the
+characters.  In that case, you can type <C-b> to move the cursor to the
 left, and then correct your mistake.  Afterwards, you can move the
-cursor to the right with C-f.
+cursor to the right with <C-f>.
 
    When you add text in the middle of a line, you will notice that
 characters to the right of the cursor are `pushed over' to make room
@@ -4676,22 +4682,22 @@ back' to fill in the blank space created by the removal of the text.  A
 list of the basic bare essentials for editing the text of an input line
 follows.
 
-C-b
+<C-b>
      Move back one character.
 
-C-f
+<C-f>
      Move forward one character.
 
-DEL
+<DEL>
      Delete the character to the left of the cursor.
 
-C-d
+<C-d>
      Delete the character underneath the cursor.
 
 Printing characters
      Insert the character into the line at the cursor.
 
-C-_
+<C-_>
      Undo the last thing that you did.  You can undo all the way back
      to an empty line.
 
@@ -4703,28 +4709,28 @@ Readline Movement Commands
 
    The above table describes the most basic possible keystrokes that
 you need in order to do editing of the input line.  For your
-convenience, many other commands have been added in addition to C-b,
-C-f, C-d, and DEL.  Here are some commands for moving more rapidly
+convenience, many other commands have been added in addition to <C-b>,
+<C-f>, <C-d>, and <DEL>.  Here are some commands for moving more rapidly
 about the line.
 
-C-a
+<C-a>
      Move to the start of the line.
 
-C-e
+<C-e>
      Move to the end of the line.
 
-M-f
+<M-f>
      Move forward a word.
 
-M-b
+<M-b>
      Move backward a word.
 
-C-l
+<C-l>
      Clear the screen, reprinting the current line at the top.
 
-   Notice how C-f moves forward a character, while M-f moves forward a
-word.  It is a loose convention that control keystrokes operate on
-characters while meta keystrokes operate on words.
+   Notice how <C-f> moves forward a character, while <M-f> moves
+forward a word.  It is a loose convention that control keystrokes
+operate on characters while meta keystrokes operate on words.
 
 \1f
 File: bashref.info,  Node: Readline Killing Commands,  Next: Readline Arguments,  Prev: Readline Movement Commands,  Up: Readline Interaction
@@ -4746,32 +4752,32 @@ available to be yanked back later, when you are typing another line.
 
    Here is the list of commands for killing text.
 
-C-k
+<C-k>
      Kill the text from the current cursor position to the end of the
      line.
 
-M-d
+<M-d>
      Kill from the cursor to the end of the current word, or if between
      words, to the end of the next word.
 
-M-DEL
+<M-DEL>
      Kill from the cursor the start of the previous word, or if between
      words, to the start of the previous word.
 
-C-w
+<C-w>
      Kill from the cursor to the previous whitespace.  This is
-     different than M-DEL because the word boundaries differ.
+     different than <M-DEL> because the word boundaries differ.
 
    And, here is how to "yank" the text back into the line.  Yanking
 means to copy the most-recently-killed text from the kill buffer.
 
-C-y
+<C-y>
      Yank the most recently killed text back into the buffer at the
      cursor.
 
-M-y
+<M-y>
      Rotate the kill-ring, and yank the new top.  You can only do this
-     if the prior command is C-y or M-y.
+     if the prior command is <C-y> or <M-y>.
 
 \1f
 File: bashref.info,  Node: Readline Arguments,  Next: Searching,  Prev: Readline Killing Commands,  Up: Readline Interaction
@@ -4788,10 +4794,10 @@ start of the line, you might type `M-- C-k'.
 
    The general way to pass numeric arguments to a command is to type
 meta digits before the command.  If the first `digit' you type is a
-minus sign (-), then the sign of the argument will be negative.  Once
+minus sign (<->), then the sign of the argument will be negative.  Once
 you have typed one meta digit to get the argument started, you can type
 the remainder of the digits, and then the command.  For example, to give
-the C-d command an argument of 10, you could type `M-1 0 C-d'.
+the <C-d> command an argument of 10, you could type `M-1 0 C-d'.
 
 \1f
 File: bashref.info,  Node: Searching,  Prev: Readline Arguments,  Up: Readline Interaction
@@ -4897,7 +4903,7 @@ Variable Settings
     `convert-meta'
           If set to `on', Readline will convert characters with the
           eigth bit set to an ASCII key sequence by stripping the eigth
-          bit and prepending an ESC character, converting them to a
+          bit and prepending an <ESC> character, converting them to a
           meta-prefixed key sequence.  The default value is `on'.
 
     `disable-completion'
@@ -5011,23 +5017,23 @@ Key Bindings
           The following escape sequences are available when specifying
           key sequences:
 
-         ``\C-''
+         `\C-'
                control prefix
 
-         ``\M-''
+         `\M-'
                meta prefix
 
-         ``\e''
+         `\e'
                an escape character
 
-         ``\\''
+         `\\'
                backslash
 
-         ``\"''
-               "
+         `\"'
+               <">
 
-         ``\'''
-               '
+         `\''
+               <'>
 
           When entering the text of a macro, single or double quotes
           should be used to indicate a macro definition.  Unquoted text
@@ -5331,7 +5337,7 @@ Commands For Changing Text
 
 `quoted-insert (C-q, C-v)'
      Add the next character that you type to the line verbatim.  This is
-     how to insert key sequences like C-q, for example.
+     how to insert key sequences like <C-q>, for example.
 
 `tab-insert (M-TAB)'
      Insert a tab character.
@@ -5432,7 +5438,7 @@ Specifying Numeric Arguments
 
 `digit-argument (M-0, M-1, ... M--)'
      Add this digit to the argument already accumulating, or start a new
-     argument.  M- starts a negative argument.
+     argument.  <M-> starts a negative argument.
 
 `universal-argument ()'
      This is another way to specify an argument.  If this command is
@@ -5672,7 +5678,7 @@ modes, use the `set -o emacs' and `set -o vi' commands (*note The Set
 Builtin::.).  The Readline default is `emacs' mode.
 
    When you enter a line in `vi' mode, you are already placed in
-`insertion' mode, as if you had typed an `i'.  Pressing ESC switches
+`insertion' mode, as if you had typed an `i'.  Pressing <ESC> switches
 you into `command' mode, where you can edit the text of the line with
 the standard `vi' movement keys, move to previous history lines with
 `k' and subsequent lines with `j', and so forth.
@@ -6082,60 +6088,60 @@ Index of Shell Builtin Commands
 
 * Menu:
 
-* .:                                    Bourne Shell Builtins.
-* ::                                    Bourne Shell Builtins.
-* [:                                    Bourne Shell Builtins.
-* alias:                                Alias Builtins.
-* bg:                                   Job Control Builtins.
-* bind:                                 Bash Builtins.
-* break:                                Bourne Shell Builtins.
-* builtin:                              Bash Builtins.
-* cd:                                   Bourne Shell Builtins.
-* command:                              Bash Builtins.
-* continue:                             Bourne Shell Builtins.
-* declare:                              Bash Builtins.
-* dirs:                                 C Shell Builtins.
-* disown:                               Job Control Builtins.
-* echo:                                 Bash Builtins.
-* enable:                               Bash Builtins.
-* eval:                                 Bourne Shell Builtins.
-* exec:                                 Bourne Shell Builtins.
-* exit:                                 Bourne Shell Builtins.
-* export:                               Bourne Shell Builtins.
-* fc:                                   Korn Shell Builtins.
-* fg:                                   Job Control Builtins.
-* getopts:                              Bourne Shell Builtins.
-* hash:                                 Bourne Shell Builtins.
-* help:                                 Bash Builtins.
-* history:                              C Shell Builtins.
-* jobs:                                 Job Control Builtins.
-* kill:                                 Job Control Builtins.
-* let <1>:                              Arithmetic Builtins.
-* let:                                  Korn Shell Builtins.
-* local:                                Bash Builtins.
-* logout <1>:                           Bash Builtins.
-* logout:                               C Shell Builtins.
-* popd:                                 C Shell Builtins.
-* pushd:                                C Shell Builtins.
-* pwd:                                  Bourne Shell Builtins.
-* read:                                 Bash Builtins.
-* readonly:                             Bourne Shell Builtins.
-* return:                               Bourne Shell Builtins.
-* set:                                  The Set Builtin.
-* shift:                                Bourne Shell Builtins.
-* shopt:                                Bash Builtins.
-* source:                               C Shell Builtins.
-* suspend:                              Job Control Builtins.
-* test:                                 Bourne Shell Builtins.
-* times:                                Bourne Shell Builtins.
-* trap:                                 Bourne Shell Builtins.
-* type:                                 Bash Builtins.
-* typeset:                              Korn Shell Builtins.
-* ulimit:                               Bash Builtins.
-* umask:                                Bourne Shell Builtins.
-* unalias:                              Alias Builtins.
-* unset:                                Bourne Shell Builtins.
-* wait:                                 Job Control Builtins.
+* .:                                     Bourne Shell Builtins.
+* ::                                     Bourne Shell Builtins.
+* [:                                     Bourne Shell Builtins.
+* alias:                                 Alias Builtins.
+* bg:                                    Job Control Builtins.
+* bind:                                  Bash Builtins.
+* break:                                 Bourne Shell Builtins.
+* builtin:                               Bash Builtins.
+* cd:                                    Bourne Shell Builtins.
+* command:                               Bash Builtins.
+* continue:                              Bourne Shell Builtins.
+* declare:                               Bash Builtins.
+* dirs:                                  C Shell Builtins.
+* disown:                                Job Control Builtins.
+* echo:                                  Bash Builtins.
+* enable:                                Bash Builtins.
+* eval:                                  Bourne Shell Builtins.
+* exec:                                  Bourne Shell Builtins.
+* exit:                                  Bourne Shell Builtins.
+* export:                                Bourne Shell Builtins.
+* fc:                                    Korn Shell Builtins.
+* fg:                                    Job Control Builtins.
+* getopts:                               Bourne Shell Builtins.
+* hash:                                  Bourne Shell Builtins.
+* help:                                  Bash Builtins.
+* history:                               C Shell Builtins.
+* jobs:                                  Job Control Builtins.
+* kill:                                  Job Control Builtins.
+* let <1>:                               Arithmetic Builtins.
+* let:                                   Korn Shell Builtins.
+* local:                                 Bash Builtins.
+* logout <1>:                            Bash Builtins.
+* logout:                                C Shell Builtins.
+* popd:                                  C Shell Builtins.
+* pushd:                                 C Shell Builtins.
+* pwd:                                   Bourne Shell Builtins.
+* read:                                  Bash Builtins.
+* readonly:                              Bourne Shell Builtins.
+* return:                                Bourne Shell Builtins.
+* set:                                   The Set Builtin.
+* shift:                                 Bourne Shell Builtins.
+* shopt:                                 Bash Builtins.
+* source:                                C Shell Builtins.
+* suspend:                               Job Control Builtins.
+* test:                                  Bourne Shell Builtins.
+* times:                                 Bourne Shell Builtins.
+* trap:                                  Bourne Shell Builtins.
+* type:                                  Bash Builtins.
+* typeset:                               Korn Shell Builtins.
+* ulimit:                                Bash Builtins.
+* umask:                                 Bourne Shell Builtins.
+* unalias:                               Alias Builtins.
+* unset:                                 Bourne Shell Builtins.
+* wait:                                  Job Control Builtins.
 
 \1f
 File: bashref.info,  Node: Reserved Word Index,  Next: Variable Index,  Prev: Builtin Index,  Up: Top
@@ -6145,25 +6151,25 @@ Shell Reserved Words
 
 * Menu:
 
-* !:                                    Pipelines.
-* {:                                    Command Grouping.
-* }:                                    Command Grouping.
-* case:                                 Conditional Constructs.
-* do:                                   Looping Constructs.
-* done:                                 Looping Constructs.
-* elif:                                 Conditional Constructs.
-* else:                                 Conditional Constructs.
-* esac:                                 Conditional Constructs.
-* fi:                                   Conditional Constructs.
-* for:                                  Looping Constructs.
-* function:                             Shell Functions.
-* if:                                   Conditional Constructs.
-* in:                                   Conditional Constructs.
-* select:                               Korn Shell Constructs.
-* then:                                 Conditional Constructs.
-* time:                                 Pipelines.
-* until:                                Looping Constructs.
-* while:                                Looping Constructs.
+* !:                                     Pipelines.
+* case:                                  Conditional Constructs.
+* do:                                    Looping Constructs.
+* done:                                  Looping Constructs.
+* elif:                                  Conditional Constructs.
+* else:                                  Conditional Constructs.
+* esac:                                  Conditional Constructs.
+* fi:                                    Conditional Constructs.
+* for:                                   Looping Constructs.
+* function:                              Shell Functions.
+* if:                                    Conditional Constructs.
+* in:                                    Conditional Constructs.
+* select:                                Korn Shell Constructs.
+* then:                                  Conditional Constructs.
+* time:                                  Pipelines.
+* until:                                 Looping Constructs.
+* while:                                 Looping Constructs.
+* {:                                     Command Grouping.
+* }:                                     Command Grouping.
 
 \1f
 File: bashref.info,  Node: Variable Index,  Next: Function Index,  Prev: Reserved Word Index,  Up: Top
@@ -6173,89 +6179,89 @@ Parameter and Variable Index
 
 * Menu:
 
-* !:                                    Special Parameters.
-* #:                                    Special Parameters.
-* $:                                    Special Parameters.
-* *:                                    Special Parameters.
-* -:                                    Special Parameters.
-* 0:                                    Special Parameters.
-* ?:                                    Special Parameters.
-* @:                                    Special Parameters.
-* _:                                    Special Parameters.
-* auto_resume:                          Job Control Variables.
-* BASH:                                 Bash Variables.
-* BASH_ENV:                             Bash Variables.
-* BASH_VERSINFO:                        Bash Variables.
-* BASH_VERSION:                         Bash Variables.
-* bell-style:                           Readline Init File Syntax.
-* CDPATH:                               Bourne Shell Variables.
-* comment-begin:                        Readline Init File Syntax.
-* completion-query-items:               Readline Init File Syntax.
-* convert-meta:                         Readline Init File Syntax.
-* DIRSTACK:                             Bash Variables.
-* disable-completion:                   Readline Init File Syntax.
-* editing-mode:                         Readline Init File Syntax.
-* enable-keypad:                        Readline Init File Syntax.
-* EUID:                                 Bash Variables.
-* expand-tilde:                         Readline Init File Syntax.
-* FCEDIT:                               Korn Shell Variables.
-* FIGNORE:                              Bash Variables.
-* GLOBIGNORE:                           Bash Variables.
-* GROUPS:                               Bash Variables.
-* histchars:                            Bash Variables.
-* HISTCMD:                              Bash Variables.
-* HISTCONTROL:                          Bash Variables.
-* HISTFILE:                             Bash Variables.
-* HISTFILESIZE:                         Bash Variables.
-* HISTIGNORE:                           Bash Variables.
-* HISTSIZE:                             Bash Variables.
-* HOME:                                 Bourne Shell Variables.
-* horizontal-scroll-mode:               Readline Init File Syntax.
-* HOSTFILE:                             Bash Variables.
-* HOSTNAME:                             Bash Variables.
-* HOSTTYPE:                             Bash Variables.
-* IFS:                                  Bourne Shell Variables.
-* IGNOREEOF <1>:                        Bash Variables.
-* IGNOREEOF:                            C Shell Variables.
-* input-meta:                           Readline Init File Syntax.
-* INPUTRC:                              Bash Variables.
-* keymap:                               Readline Init File Syntax.
-* LANG:                                 Bash Variables.
-* LC_ALL:                               Bash Variables.
-* LC_COLLATE:                           Bash Variables.
-* LC_MESSAGES:                          Bash Variables.
-* LINENO:                               Korn Shell Variables.
-* MACHTYPE:                             Bash Variables.
-* MAIL:                                 Bourne Shell Variables.
-* MAILCHECK:                            Bash Variables.
-* MAILPATH:                             Bourne Shell Variables.
-* mark-modified-lines:                  Readline Init File Syntax.
-* meta-flag:                            Readline Init File Syntax.
-* OLDPWD:                               Korn Shell Variables.
-* OPTARG:                               Bourne Shell Variables.
-* OPTERR:                               Bash Variables.
-* OPTIND:                               Bourne Shell Variables.
-* OSTYPE:                               Bash Variables.
-* output-meta:                          Readline Init File Syntax.
-* PATH:                                 Bourne Shell Variables.
-* PIPESTATUS:                           Bash Variables.
-* PPID:                                 Bash Variables.
-* PROMPT_COMMAND:                       Bash Variables.
-* PS1:                                  Bourne Shell Variables.
-* PS2:                                  Bourne Shell Variables.
-* PS3:                                  Korn Shell Variables.
-* PS4:                                  Korn Shell Variables.
-* PWD:                                  Korn Shell Variables.
-* RANDOM:                               Korn Shell Variables.
-* REPLY:                                Korn Shell Variables.
-* SECONDS:                              Korn Shell Variables.
-* SHELLOPTS:                            Bash Variables.
-* SHLVL:                                Bash Variables.
-* show-all-if-ambiguous:                Readline Init File Syntax.
-* TIMEFORMAT:                           Bash Variables.
-* TMOUT:                                Korn Shell Variables.
-* UID:                                  Bash Variables.
-* visible-stats:                        Readline Init File Syntax.
+* !:                                     Special Parameters.
+* #:                                     Special Parameters.
+* $:                                     Special Parameters.
+* *:                                     Special Parameters.
+* -:                                     Special Parameters.
+* 0:                                     Special Parameters.
+* ?:                                     Special Parameters.
+* @:                                     Special Parameters.
+* _:                                     Special Parameters.
+* auto_resume:                           Job Control Variables.
+* BASH:                                  Bash Variables.
+* BASH_ENV:                              Bash Variables.
+* BASH_VERSINFO:                         Bash Variables.
+* BASH_VERSION:                          Bash Variables.
+* bell-style:                            Readline Init File Syntax.
+* CDPATH:                                Bourne Shell Variables.
+* comment-begin:                         Readline Init File Syntax.
+* completion-query-items:                Readline Init File Syntax.
+* convert-meta:                          Readline Init File Syntax.
+* DIRSTACK:                              Bash Variables.
+* disable-completion:                    Readline Init File Syntax.
+* editing-mode:                          Readline Init File Syntax.
+* enable-keypad:                         Readline Init File Syntax.
+* EUID:                                  Bash Variables.
+* expand-tilde:                          Readline Init File Syntax.
+* FCEDIT:                                Korn Shell Variables.
+* FIGNORE:                               Bash Variables.
+* GLOBIGNORE:                            Bash Variables.
+* GROUPS:                                Bash Variables.
+* histchars:                             Bash Variables.
+* HISTCMD:                               Bash Variables.
+* HISTCONTROL:                           Bash Variables.
+* HISTFILE:                              Bash Variables.
+* HISTFILESIZE:                          Bash Variables.
+* HISTIGNORE:                            Bash Variables.
+* HISTSIZE:                              Bash Variables.
+* HOME:                                  Bourne Shell Variables.
+* horizontal-scroll-mode:                Readline Init File Syntax.
+* HOSTFILE:                              Bash Variables.
+* HOSTNAME:                              Bash Variables.
+* HOSTTYPE:                              Bash Variables.
+* IFS:                                   Bourne Shell Variables.
+* IGNOREEOF <1>:                         Bash Variables.
+* IGNOREEOF:                             C Shell Variables.
+* input-meta:                            Readline Init File Syntax.
+* INPUTRC:                               Bash Variables.
+* keymap:                                Readline Init File Syntax.
+* LANG:                                  Bash Variables.
+* LC_ALL:                                Bash Variables.
+* LC_COLLATE:                            Bash Variables.
+* LC_MESSAGES:                           Bash Variables.
+* LINENO:                                Korn Shell Variables.
+* MACHTYPE:                              Bash Variables.
+* MAIL:                                  Bourne Shell Variables.
+* MAILCHECK:                             Bash Variables.
+* MAILPATH:                              Bourne Shell Variables.
+* mark-modified-lines:                   Readline Init File Syntax.
+* meta-flag:                             Readline Init File Syntax.
+* OLDPWD:                                Korn Shell Variables.
+* OPTARG:                                Bourne Shell Variables.
+* OPTERR:                                Bash Variables.
+* OPTIND:                                Bourne Shell Variables.
+* OSTYPE:                                Bash Variables.
+* output-meta:                           Readline Init File Syntax.
+* PATH:                                  Bourne Shell Variables.
+* PIPESTATUS:                            Bash Variables.
+* PPID:                                  Bash Variables.
+* PROMPT_COMMAND:                        Bash Variables.
+* PS1:                                   Bourne Shell Variables.
+* PS2:                                   Bourne Shell Variables.
+* PS3:                                   Korn Shell Variables.
+* PS4:                                   Korn Shell Variables.
+* PWD:                                   Korn Shell Variables.
+* RANDOM:                                Korn Shell Variables.
+* REPLY:                                 Korn Shell Variables.
+* SECONDS:                               Korn Shell Variables.
+* SHELLOPTS:                             Bash Variables.
+* SHLVL:                                 Bash Variables.
+* show-all-if-ambiguous:                 Readline Init File Syntax.
+* TIMEFORMAT:                            Bash Variables.
+* TMOUT:                                 Korn Shell Variables.
+* UID:                                   Bash Variables.
+* visible-stats:                         Readline Init File Syntax.
 
 \1f
 File: bashref.info,  Node: Function Index,  Next: Concept Index,  Prev: Variable Index,  Up: Top
@@ -6265,74 +6271,74 @@ Function Index
 
 * Menu:
 
-* abort (C-g):                          Miscellaneous Commands.
-* accept-line (Newline, Return):        Commands For History.
-* backward-char (C-b):                  Commands For Moving.
-* backward-delete-char (Rubout):        Commands For Text.
-* backward-kill-line (C-x Rubout):      Commands For Killing.
-* backward-kill-word (M-DEL):           Commands For Killing.
-* backward-word (M-b):                  Commands For Moving.
-* beginning-of-history (M-<):           Commands For History.
-* beginning-of-line (C-a):              Commands For Moving.
-* call-last-kbd-macro (C-x e):          Keyboard Macros.
-* capitalize-word (M-c):                Commands For Text.
-* character-search (C-]):               Miscellaneous Commands.
-* character-search-backward (M-C-]):    Miscellaneous Commands.
-* clear-screen (C-l):                   Commands For Moving.
-* complete (TAB):                       Commands For Completion.
-* copy-backward-word ():                Commands For Killing.
-* copy-forward-word ():                 Commands For Killing.
-* copy-region-as-kill ():               Commands For Killing.
-* delete-char (C-d):                    Commands For Text.
-* delete-horizontal-space ():           Commands For Killing.
-* digit-argument (M-0, M-1, ... M-):    Numeric Arguments.
+* abort (C-g):                           Miscellaneous Commands.
+* accept-line (Newline, Return):         Commands For History.
+* backward-char (C-b):                   Commands For Moving.
+* backward-delete-char (Rubout):         Commands For Text.
+* backward-kill-line (C-x Rubout):       Commands For Killing.
+* backward-kill-word (M-DEL):            Commands For Killing.
+* backward-word (M-b):                   Commands For Moving.
+* beginning-of-history (M-<):            Commands For History.
+* beginning-of-line (C-a):               Commands For Moving.
+* call-last-kbd-macro (C-x e):           Keyboard Macros.
+* capitalize-word (M-c):                 Commands For Text.
+* character-search (C-]):                Miscellaneous Commands.
+* character-search-backward (M-C-]):     Miscellaneous Commands.
+* clear-screen (C-l):                    Commands For Moving.
+* complete (TAB):                        Commands For Completion.
+* copy-backward-word ():                 Commands For Killing.
+* copy-forward-word ():                  Commands For Killing.
+* copy-region-as-kill ():                Commands For Killing.
+* delete-char (C-d):                     Commands For Text.
+* delete-horizontal-space ():            Commands For Killing.
+* digit-argument (M-0, M-1, ... M--):    Numeric Arguments.
 * do-uppercase-version (M-a, M-b, M-X, ...): Miscellaneous Commands.
-* downcase-word (M-l):                  Commands For Text.
-* dump-functions ():                    Miscellaneous Commands.
-* dump-macros ():                       Miscellaneous Commands.
-* dump-variables ():                    Miscellaneous Commands.
-* end-kbd-macro (C-x )):                Keyboard Macros.
-* end-of-history (M->):                 Commands For History.
-* end-of-line (C-e):                    Commands For Moving.
-* exchange-point-and-mark (C-x C-x):    Miscellaneous Commands.
-* forward-char (C-f):                   Commands For Moving.
-* forward-search-history (C-s):         Commands For History.
-* forward-word (M-f):                   Commands For Moving.
-* history-search-backward ():           Commands For History.
-* history-search-forward ():            Commands For History.
-* insert-comment (M-#):                 Miscellaneous Commands.
-* insert-completions (M-*):             Commands For Completion.
-* kill-line (C-k):                      Commands For Killing.
-* kill-region ():                       Commands For Killing.
-* kill-whole-line ():                   Commands For Killing.
-* kill-word (M-d):                      Commands For Killing.
-* next-history (C-n):                   Commands For History.
+* downcase-word (M-l):                   Commands For Text.
+* dump-functions ():                     Miscellaneous Commands.
+* dump-macros ():                        Miscellaneous Commands.
+* dump-variables ():                     Miscellaneous Commands.
+* end-kbd-macro (C-x )):                 Keyboard Macros.
+* end-of-history (M->):                  Commands For History.
+* end-of-line (C-e):                     Commands For Moving.
+* exchange-point-and-mark (C-x C-x):     Miscellaneous Commands.
+* forward-char (C-f):                    Commands For Moving.
+* forward-search-history (C-s):          Commands For History.
+* forward-word (M-f):                    Commands For Moving.
+* history-search-backward ():            Commands For History.
+* history-search-forward ():             Commands For History.
+* insert-comment (M-#):                  Miscellaneous Commands.
+* insert-completions (M-*):              Commands For Completion.
+* kill-line (C-k):                       Commands For Killing.
+* kill-region ():                        Commands For Killing.
+* kill-whole-line ():                    Commands For Killing.
+* kill-word (M-d):                       Commands For Killing.
+* next-history (C-n):                    Commands For History.
 * non-incremental-forward-search-history (M-n): Commands For History.
 * non-incremental-reverse-search-history (M-p): Commands For History.
-* possible-completions (M-?):           Commands For Completion.
-* prefix-meta (ESC):                    Miscellaneous Commands.
-* previous-history (C-p):               Commands For History.
-* quoted-insert (C-q, C-v):             Commands For Text.
-* re-read-init-file (C-x C-r):          Miscellaneous Commands.
-* redraw-current-line ():               Commands For Moving.
-* reverse-search-history (C-r):         Commands For History.
-* revert-line (M-r):                    Miscellaneous Commands.
-* self-insert (a, b, A, 1, !, ...):     Commands For Text.
-* set-mark (C-@):                       Miscellaneous Commands.
-* start-kbd-macro (C-x ():              Keyboard Macros.
-* tab-insert (M-TAB):                   Commands For Text.
-* tilde-expand (M-~):                   Miscellaneous Commands.
-* transpose-chars (C-t):                Commands For Text.
-* transpose-words (M-t):                Commands For Text.
-* undo (C-_, C-x C-u):                  Miscellaneous Commands.
-* universal-argument ():                Numeric Arguments.
-* unix-line-discard (C-u):              Commands For Killing.
-* unix-word-rubout (C-w):               Commands For Killing.
-* upcase-word (M-u):                    Commands For Text.
-* yank (C-y):                           Commands For Killing.
-* yank-last-arg (M-., M-_):             Commands For History.
-* yank-nth-arg (M-C-y):                 Commands For History.
-* yank-pop (M-y):                       Commands For Killing.
+* possible-completions (M-?):            Commands For Completion.
+* prefix-meta (ESC):                     Miscellaneous Commands.
+* previous-history (C-p):                Commands For History.
+* quoted-insert (C-q, C-v):              Commands For Text.
+* re-read-init-file (C-x C-r):           Miscellaneous Commands.
+* redraw-current-line ():                Commands For Moving.
+* reverse-search-history (C-r):          Commands For History.
+* revert-line (M-r):                     Miscellaneous Commands.
+* self-insert (a, b, A, 1, !, ...):      Commands For Text.
+* set-mark (C-@):                        Miscellaneous Commands.
+* start-kbd-macro (C-x ():               Keyboard Macros.
+* tab-insert (M-TAB):                    Commands For Text.
+* tilde-expand (M-~):                    Miscellaneous Commands.
+* transpose-chars (C-t):                 Commands For Text.
+* transpose-words (M-t):                 Commands For Text.
+* undo (C-_, C-x C-u):                   Miscellaneous Commands.
+* universal-argument ():                 Numeric Arguments.
+* unix-line-discard (C-u):               Commands For Killing.
+* unix-word-rubout (C-w):                Commands For Killing.
+* upcase-word (M-u):                     Commands For Text.
+* yank (C-y):                            Commands For Killing.
+* yank-last-arg (M-., M-_):              Commands For History.
+* yank-nth-arg (M-C-y):                  Commands For History.
+* yank-pop (M-y):                        Commands For Killing.
 
 \1f
 File: bashref.info,  Node: Concept Index,  Prev: Function Index,  Up: Top
@@ -6342,226 +6348,226 @@ Concept Index
 
 * Menu:
 
-* alias expansion:                      Aliases.
-* arithmetic evaluation:                Arithmetic Evaluation.
-* arithmetic expansion:                 Arithmetic Expansion.
-* arithmetic, shell:                    Shell Arithmetic.
-* arrays:                               Arrays.
-* background:                           Job Control Basics.
-* Bash configuration:                   Basic Installation.
-* Bash installation:                    Basic Installation.
-* Bourne shell:                         Basic Shell Features.
-* brace expansion:                      Brace Expansion.
-* builtin:                              Definitions.
-* command editing:                      Readline Bare Essentials.
-* command execution:                    Command Search and Execution.
-* command history:                      Bash History Facilities.
-* command search:                       Command Search and Execution.
-* command substitution:                 Command Substitution.
-* command timing:                       Pipelines.
-* commands, conditional:                Conditional Constructs.
-* commands, grouping:                   Command Grouping.
-* commands, lists:                      Lists.
-* commands, looping:                    Looping Constructs.
-* commands, pipelines:                  Pipelines.
-* commands, simple:                     Simple Commands.
-* comments, shell:                      Comments.
-* configuration:                        Basic Installation.
-* control operator:                     Definitions.
-* editing command lines:                Readline Bare Essentials.
-* environment:                          Environment.
-* evaluation, arithmetic:               Arithmetic Evaluation.
-* event designators:                    Event Designators.
-* exit status <1>:                      Definitions.
-* exit status:                          Exit Status.
-* expansion:                            Shell Expansions.
-* expansion, arithmetic:                Arithmetic Expansion.
-* expansion, brace:                     Brace Expansion.
-* expansion, filename:                  Filename Expansion.
-* expansion, parameter:                 Shell Parameter Expansion.
-* expansion, pathname:                  Filename Expansion.
-* expansion, tilde:                     Tilde Expansion.
-* expressions, arithmetic:              Arithmetic Evaluation.
-* expressions, conditional:             Bash Conditional Expressions.
-* field:                                Definitions.
-* filename:                             Definitions.
-* filename expansion:                   Filename Expansion.
-* foreground:                           Job Control Basics.
-* functions, shell:                     Shell Functions.
-* history events:                       Event Designators.
-* history expansion:                    History Interaction.
-* history list:                         Bash History Facilities.
-* History, how to use:                  Job Control Variables.
-* identifier:                           Definitions.
-* initialization file, readline:        Readline Init File.
-* installation:                         Basic Installation.
-* interaction, readline:                Readline Interaction.
-* interactive shell <1>:                Is This Shell Interactive?.
-* interactive shell:                    Invoking Bash.
-* job:                                  Definitions.
-* job control <1>:                      Definitions.
-* job control:                          Job Control Basics.
-* kill ring:                            Readline Killing Commands.
-* killing text:                         Readline Killing Commands.
-* localization:                         Locale Translation.
-* metacharacter:                        Definitions.
-* name:                                 Definitions.
-* notation, readline:                   Readline Bare Essentials.
-* operator, shell:                      Definitions.
-* parameter expansion:                  Shell Parameter Expansion.
-* parameters:                           Shell Parameters.
-* parameters, positional:               Positional Parameters.
-* parameters, special:                  Special Parameters.
-* pathname expansion:                   Filename Expansion.
-* pipeline:                             Pipelines.
-* POSIX:                                Definitions.
-* POSIX Mode:                           Bash POSIX Mode.
-* process group:                        Definitions.
-* process group ID:                     Definitions.
-* process substitution:                 Process Substitution.
-* prompting:                            Printing a Prompt.
-* quoting:                              Quoting.
-* quoting, ANSI:                        ANSI-C Quoting.
-* Readline, how to use:                 Modifiers.
-* redirection:                          Redirections.
-* reserved word:                        Definitions.
-* restricted shell:                     The Restricted Shell.
-* return status:                        Definitions.
-* shell function:                       Shell Functions.
-* shell script:                         Shell Scripts.
-* shell variable:                       Shell Parameters.
-* signal:                               Definitions.
-* signal handling:                      Signals.
-* special builtin:                      Definitions.
-* startup files:                        Bash Startup Files.
-* suspending jobs:                      Job Control Basics.
-* tilde expansion:                      Tilde Expansion.
-* token:                                Definitions.
-* variable, shell:                      Shell Parameters.
-* word:                                 Definitions.
-* word splitting:                       Word Splitting.
-* yanking text:                         Readline Killing Commands.
+* alias expansion:                       Aliases.
+* arithmetic evaluation:                 Arithmetic Evaluation.
+* arithmetic expansion:                  Arithmetic Expansion.
+* arithmetic, shell:                     Shell Arithmetic.
+* arrays:                                Arrays.
+* background:                            Job Control Basics.
+* Bash configuration:                    Basic Installation.
+* Bash installation:                     Basic Installation.
+* Bourne shell:                          Basic Shell Features.
+* brace expansion:                       Brace Expansion.
+* builtin:                               Definitions.
+* command editing:                       Readline Bare Essentials.
+* command execution:                     Command Search and Execution.
+* command history:                       Bash History Facilities.
+* command search:                        Command Search and Execution.
+* command substitution:                  Command Substitution.
+* command timing:                        Pipelines.
+* commands, conditional:                 Conditional Constructs.
+* commands, grouping:                    Command Grouping.
+* commands, lists:                       Lists.
+* commands, looping:                     Looping Constructs.
+* commands, pipelines:                   Pipelines.
+* commands, simple:                      Simple Commands.
+* comments, shell:                       Comments.
+* configuration:                         Basic Installation.
+* control operator:                      Definitions.
+* editing command lines:                 Readline Bare Essentials.
+* environment:                           Environment.
+* evaluation, arithmetic:                Arithmetic Evaluation.
+* event designators:                     Event Designators.
+* exit status <1>:                       Definitions.
+* exit status:                           Exit Status.
+* expansion:                             Shell Expansions.
+* expansion, arithmetic:                 Arithmetic Expansion.
+* expansion, brace:                      Brace Expansion.
+* expansion, filename:                   Filename Expansion.
+* expansion, parameter:                  Shell Parameter Expansion.
+* expansion, pathname:                   Filename Expansion.
+* expansion, tilde:                      Tilde Expansion.
+* expressions, arithmetic:               Arithmetic Evaluation.
+* expressions, conditional:              Bash Conditional Expressions.
+* field:                                 Definitions.
+* filename:                              Definitions.
+* filename expansion:                    Filename Expansion.
+* foreground:                            Job Control Basics.
+* functions, shell:                      Shell Functions.
+* history events:                        Event Designators.
+* history expansion:                     History Interaction.
+* history list:                          Bash History Facilities.
+* History, how to use:                   Job Control Variables.
+* identifier:                            Definitions.
+* initialization file, readline:         Readline Init File.
+* installation:                          Basic Installation.
+* interaction, readline:                 Readline Interaction.
+* interactive shell <1>:                 Is This Shell Interactive?.
+* interactive shell:                     Invoking Bash.
+* job:                                   Definitions.
+* job control <1>:                       Definitions.
+* job control:                           Job Control Basics.
+* kill ring:                             Readline Killing Commands.
+* killing text:                          Readline Killing Commands.
+* localization:                          Locale Translation.
+* metacharacter:                         Definitions.
+* name:                                  Definitions.
+* notation, readline:                    Readline Bare Essentials.
+* operator, shell:                       Definitions.
+* parameter expansion:                   Shell Parameter Expansion.
+* parameters:                            Shell Parameters.
+* parameters, positional:                Positional Parameters.
+* parameters, special:                   Special Parameters.
+* pathname expansion:                    Filename Expansion.
+* pipeline:                              Pipelines.
+* POSIX:                                 Definitions.
+* POSIX Mode:                            Bash POSIX Mode.
+* process group:                         Definitions.
+* process group ID:                      Definitions.
+* process substitution:                  Process Substitution.
+* prompting:                             Printing a Prompt.
+* quoting:                               Quoting.
+* quoting, ANSI:                         ANSI-C Quoting.
+* Readline, how to use:                  Modifiers.
+* redirection:                           Redirections.
+* reserved word:                         Definitions.
+* restricted shell:                      The Restricted Shell.
+* return status:                         Definitions.
+* shell function:                        Shell Functions.
+* shell script:                          Shell Scripts.
+* shell variable:                        Shell Parameters.
+* signal:                                Definitions.
+* signal handling:                       Signals.
+* special builtin:                       Definitions.
+* startup files:                         Bash Startup Files.
+* suspending jobs:                       Job Control Basics.
+* tilde expansion:                       Tilde Expansion.
+* token:                                 Definitions.
+* variable, shell:                       Shell Parameters.
+* word:                                  Definitions.
+* word splitting:                        Word Splitting.
+* yanking text:                          Readline Killing Commands.
 
 
 \1f
 Tag Table:
-Node: Top\7f1005
-Node: Introduction\7f3109
-Node: What is Bash?\7f3334
-Node: What is a shell?\7f4418
-Node: Definitions\7f6299
-Node: Basic Shell Features\7f8960
-Node: Shell Syntax\7f10481
-Node: Shell Operation\7f10771
-Node: Quoting\7f12005
-Node: Escape Character\7f13040
-Node: Single Quotes\7f13471
-Node: Double Quotes\7f13800
-Node: ANSI-C Quoting\7f14496
-Node: Locale Translation\7f15228
-Node: Comments\7f15649
-Node: Simple Commands\7f16173
-Node: Pipelines\7f16762
-Node: Lists\7f17833
-Node: Looping Constructs\7f19108
-Node: Conditional Constructs\7f20285
-Node: Command Grouping\7f22352
-Node: Shell Functions\7f23738
-Node: Shell Parameters\7f25511
-Node: Positional Parameters\7f26834
-Node: Special Parameters\7f27528
-Node: Shell Expansions\7f30094
-Node: Shell Parameter Expansion\7f32098
-Node: Command Substitution\7f38106
-Node: Process Substitution\7f39106
-Node: Word Splitting\7f40012
-Node: Filename Expansion\7f41464
-Node: Quote Removal\7f43830
-Node: Redirections\7f44116
-Node: Executing Commands\7f49857
-Node: Command Search and Execution\7f50312
-Node: Environment\7f52046
-Node: Exit Status\7f53682
-Node: Signals\7f54699
-Node: Shell Scripts\7f55910
-Node: Bourne Shell Features\7f57779
-Node: Bourne Shell Builtins\7f58449
-Node: Bourne Shell Variables\7f66803
-Node: Other Bourne Shell Features\7f68340
-Node: Major Differences From The Bourne Shell\7f69097
-Node: Csh Features\7f79457
-Node: Brace Expansion\7f80375
-Node: Tilde Expansion\7f81930
-Node: C Shell Builtins\7f82562
-Node: C Shell Variables\7f87118
-Node: Korn Shell Features\7f87526
-Node: Korn Shell Constructs\7f88254
-Node: Korn Shell Builtins\7f89969
-Node: Korn Shell Variables\7f92127
-Node: Aliases\7f93686
-Node: Alias Builtins\7f96150
-Node: Bash Features\7f96766
-Node: Invoking Bash\7f97757
-Node: Bash Startup Files\7f101622
-Node: Is This Shell Interactive?\7f105197
-Node: Bash Builtins\7f106180
-Node: The Set Builtin\7f122035
-Node: Bash Conditional Expressions\7f127410
-Node: Bash Variables\7f132061
-Node: Shell Arithmetic\7f142095
-Node: Arithmetic Evaluation\7f142563
-Node: Arithmetic Expansion\7f144593
-Node: Arithmetic Builtins\7f145397
-Node: Arrays\7f145868
-Node: Printing a Prompt\7f148895
-Node: The Restricted Shell\7f150493
-Node: Bash POSIX Mode\7f151723
-Node: Job Control\7f155407
-Node: Job Control Basics\7f155872
-Node: Job Control Builtins\7f160015
-Node: Job Control Variables\7f162938
-Node: Using History Interactively\7f164085
-Node: Bash History Facilities\7f164674
-Node: History Interaction\7f167072
-Node: Event Designators\7f169634
-Node: Word Designators\7f170557
-Node: Modifiers\7f171806
-Node: Command Line Editing\7f173123
-Node: Introduction and Notation\7f173783
-Node: Readline Interaction\7f174791
-Node: Readline Bare Essentials\7f175979
-Node: Readline Movement Commands\7f177508
-Node: Readline Killing Commands\7f178398
-Node: Readline Arguments\7f180100
-Node: Searching\7f181073
-Node: Readline Init File\7f182709
-Node: Readline Init File Syntax\7f183765
-Node: Conditional Init Constructs\7f191554
-Node: Sample Init File\7f193835
-Node: Bindable Readline Commands\7f196868
-Node: Commands For Moving\7f197618
-Node: Commands For History\7f198465
-Node: Commands For Text\7f201138
-Node: Commands For Killing\7f202880
-Node: Numeric Arguments\7f204906
-Node: Commands For Completion\7f206030
-Node: Keyboard Macros\7f208992
-Node: Miscellaneous Commands\7f209550
-Node: Readline vi Mode\7f213766
-Node: Installing Bash\7f214642
-Node: Basic Installation\7f215711
-Node: Compilers and Options\7f218636
-Node: Compiling For Multiple Architectures\7f219370
-Node: Installation Names\7f221027
-Node: Specifying the System Type\7f221749
-Node: Sharing Defaults\7f222460
-Node: Operation Controls\7f223125
-Node: Optional Features\7f224030
-Node: Reporting Bugs\7f228913
-Node: Builtin Index\7f229993
-Node: Reserved Word Index\7f233406
-Node: Variable Index\7f234714
-Node: Function Index\7f239899
-Node: Concept Index\7f244257
+Node: Top\7f1179
+Node: Introduction\7f3283
+Node: What is Bash?\7f3508
+Node: What is a shell?\7f4592
+Node: Definitions\7f6473
+Node: Basic Shell Features\7f9134
+Node: Shell Syntax\7f10655
+Node: Shell Operation\7f10945
+Node: Quoting\7f12179
+Node: Escape Character\7f13214
+Node: Single Quotes\7f13645
+Node: Double Quotes\7f13974
+Node: ANSI-C Quoting\7f14670
+Node: Locale Translation\7f15402
+Node: Comments\7f15823
+Node: Simple Commands\7f16347
+Node: Pipelines\7f16936
+Node: Lists\7f18007
+Node: Looping Constructs\7f19282
+Node: Conditional Constructs\7f20459
+Node: Command Grouping\7f22526
+Node: Shell Functions\7f23912
+Node: Shell Parameters\7f25685
+Node: Positional Parameters\7f27008
+Node: Special Parameters\7f27702
+Node: Shell Expansions\7f30268
+Node: Shell Parameter Expansion\7f32272
+Node: Command Substitution\7f38280
+Node: Process Substitution\7f39280
+Node: Word Splitting\7f40186
+Node: Filename Expansion\7f41638
+Node: Quote Removal\7f44004
+Node: Redirections\7f44290
+Node: Executing Commands\7f50031
+Node: Command Search and Execution\7f50486
+Node: Environment\7f52220
+Node: Exit Status\7f53856
+Node: Signals\7f54873
+Node: Shell Scripts\7f56084
+Node: Bourne Shell Features\7f57953
+Node: Bourne Shell Builtins\7f58623
+Node: Bourne Shell Variables\7f66977
+Node: Other Bourne Shell Features\7f68514
+Node: Major Differences From The Bourne Shell\7f69271
+Node: Csh Features\7f79631
+Node: Brace Expansion\7f80549
+Node: Tilde Expansion\7f82104
+Node: C Shell Builtins\7f82736
+Node: C Shell Variables\7f87292
+Node: Korn Shell Features\7f87700
+Node: Korn Shell Constructs\7f88428
+Node: Korn Shell Builtins\7f90143
+Node: Korn Shell Variables\7f92301
+Node: Aliases\7f93860
+Node: Alias Builtins\7f96326
+Node: Bash Features\7f96942
+Node: Invoking Bash\7f97933
+Node: Bash Startup Files\7f101798
+Node: Is This Shell Interactive?\7f105373
+Node: Bash Builtins\7f106356
+Node: The Set Builtin\7f122211
+Node: Bash Conditional Expressions\7f127586
+Node: Bash Variables\7f132237
+Node: Shell Arithmetic\7f142271
+Node: Arithmetic Evaluation\7f142739
+Node: Arithmetic Expansion\7f144769
+Node: Arithmetic Builtins\7f145573
+Node: Arrays\7f146044
+Node: Printing a Prompt\7f149071
+Node: The Restricted Shell\7f150669
+Node: Bash POSIX Mode\7f151899
+Node: Job Control\7f155583
+Node: Job Control Basics\7f156048
+Node: Job Control Builtins\7f160191
+Node: Job Control Variables\7f163114
+Node: Using History Interactively\7f164261
+Node: Bash History Facilities\7f164850
+Node: History Interaction\7f167248
+Node: Event Designators\7f169810
+Node: Word Designators\7f170737
+Node: Modifiers\7f171986
+Node: Command Line Editing\7f173303
+Node: Introduction and Notation\7f173963
+Node: Readline Interaction\7f175001
+Node: Readline Bare Essentials\7f176193
+Node: Readline Movement Commands\7f177736
+Node: Readline Killing Commands\7f178648
+Node: Readline Arguments\7f180368
+Node: Searching\7f181345
+Node: Readline Init File\7f182981
+Node: Readline Init File Syntax\7f184037
+Node: Conditional Init Constructs\7f191820
+Node: Sample Init File\7f194101
+Node: Bindable Readline Commands\7f197134
+Node: Commands For Moving\7f197884
+Node: Commands For History\7f198731
+Node: Commands For Text\7f201404
+Node: Commands For Killing\7f203148
+Node: Numeric Arguments\7f205174
+Node: Commands For Completion\7f206300
+Node: Keyboard Macros\7f209262
+Node: Miscellaneous Commands\7f209820
+Node: Readline vi Mode\7f214036
+Node: Installing Bash\7f214914
+Node: Basic Installation\7f215983
+Node: Compilers and Options\7f218908
+Node: Compiling For Multiple Architectures\7f219642
+Node: Installation Names\7f221299
+Node: Specifying the System Type\7f222021
+Node: Sharing Defaults\7f222732
+Node: Operation Controls\7f223397
+Node: Optional Features\7f224302
+Node: Reporting Bugs\7f229185
+Node: Builtin Index\7f230265
+Node: Reserved Word Index\7f233732
+Node: Variable Index\7f235059
+Node: Function Index\7f240327
+Node: Concept Index\7f244750
 \1f
 End Tag Table