From 9d1eb43fdd363137dd687bc411b14ab4946f939c Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Tue, 8 Oct 2024 09:52:21 -0400 Subject: [PATCH] First set of documentation updates to man page, texinfo manual --- CWRU/CWRU.chlog | 7 + INSTALL | 56 +- RBASH | 4 +- builtins/cd.def | 1 + builtins/declare.def | 3 + doc/bash.0 | 6258 ++++++++++++++++++---------------- doc/bash.1 | 2992 +++++++++------- doc/bash.html | 3453 +++++++++++-------- doc/bash.info | 3637 +++++++++++--------- doc/bash.pdf | Bin 412235 -> 424372 bytes doc/bashref.aux | 214 +- doc/bashref.bt | 122 +- doc/bashref.bts | 122 +- doc/bashref.cp | 173 +- doc/bashref.cps | 171 +- doc/bashref.fn | 230 +- doc/bashref.fns | 230 +- doc/bashref.info | 3637 +++++++++++--------- doc/bashref.log | 105 +- doc/bashref.pdf | Bin 821096 -> 838618 bytes doc/bashref.rw | 12 +- doc/bashref.rws | 12 +- doc/bashref.texi | 2504 ++++++++------ doc/bashref.toc | 232 +- doc/bashref.vr | 335 +- doc/bashref.vrs | 335 +- doc/builtins.0 | 2106 ++++++------ doc/rbash.0 | 55 +- doc/version.texi | 4 +- expr.c | 2 +- lib/readline/doc/hsuser.texi | 270 +- lib/readline/doc/rluser.texi | 67 +- 32 files changed, 14901 insertions(+), 12448 deletions(-) diff --git a/CWRU/CWRU.chlog b/CWRU/CWRU.chlog index 6291e6ae9..0ae88c934 100644 --- a/CWRU/CWRU.chlog +++ b/CWRU/CWRU.chlog @@ -10282,3 +10282,10 @@ variables.c doc/bashref.texi - --enable-bash-source-default: document + + 9/27 + ---- +doc/bash.1,doc/bashref.texi + - update builtins documenation: make language and paragraph breaks + more consistent between the document formats; update active + language diff --git a/INSTALL b/INSTALL index f2e66b22e..31aa6a2b0 100644 --- a/INSTALL +++ b/INSTALL @@ -24,8 +24,8 @@ The simplest way to compile Bash is: files, some supplemental documentation, a number of example loadable builtin commands, and a set of header files for developing loadable builtins. You may need additional privileges to install - ‘bash’ to your desired destination, so ‘sudo make install’ might be - required. More information about controlling the locations where + ‘bash’ to your desired destination, which may require ‘sudo make + install’. More information about controlling the locations where ‘bash’ and other files are installed is below (*note Installation Names::). @@ -228,7 +228,7 @@ Optional Features The Bash ‘configure’ has a number of ‘--enable-FEATURE’ options, where FEATURE indicates an optional part of Bash. There are also several ‘--with-PACKAGE’ options, where PACKAGE is something like ‘bash-malloc’ -or ‘purify’. To turn off the default use of a package, use +or ‘afs’. To turn off the default use of a package, use ‘--without-PACKAGE’. To configure Bash without a feature that is enabled by default, use ‘--disable-FEATURE’. @@ -240,18 +240,18 @@ the Bash ‘configure’ recognizes. ‘--with-bash-malloc’ Use the Bash version of ‘malloc’ in the directory ‘lib/malloc’. - This is not the same ‘malloc’ that appears in GNU libc, but an - older version originally derived from the 4.2 BSD ‘malloc’. This - ‘malloc’ is very fast, but wastes some space on each allocation. - This option is enabled by default. The ‘NOTES’ file contains a - list of systems for which this should be turned off, and - ‘configure’ disables this option automatically for a number of - systems. + This is not the same ‘malloc’ that appears in GNU libc, but a + custom version originally derived from the 4.2 BSD ‘malloc’. This + ‘malloc’ is very fast, but wastes some space on each allocation, + though it uses several techniques to minimize the waste. This + option is enabled by default. The ‘NOTES’ file contains a list of + systems for which this should be turned off, and ‘configure’ + disables this option automatically for a number of systems. ‘--with-curses’ - Use the curses library instead of the termcap library. This should - be supplied if your system has an inadequate or incomplete termcap - database. + Use the curses library instead of the termcap library. ‘configure’ + usually chooses this automatically, since most systems include the + termcap functions in the curses library. ‘--with-gnu-malloc’ A synonym for ‘--with-bash-malloc’. @@ -268,7 +268,9 @@ the Bash ‘configure’ recognizes. set to any other value, ‘configure’ treats it as a directory pathname and looks for the installed version of Readline in subdirectories of that directory (include files in PREFIX/‘include’ - and the library in PREFIX/‘lib’). + and the library in PREFIX/‘lib’). The Bash default is to link with + a static library built in the ‘lib/readline’ subdirectory of the + build directory. ‘--with-libintl-prefix[=PREFIX]’ Define this to make Bash link with a locally-installed version of @@ -276,10 +278,11 @@ the Bash ‘configure’ recognizes. ‘--with-libiconv-prefix[=PREFIX]’ Define this to make Bash look for libiconv in PREFIX instead of the - standard system locations. There is no version included with Bash. + standard system locations. The Bash distribution does not include + this library. ‘--enable-minimal-config’ - This produces a shell with minimal features, close to the + This produces a shell with minimal features, closer to the historical Bourne shell. There are several ‘--enable-’ options that alter how Bash is compiled, @@ -336,6 +339,12 @@ does not provide the necessary support. Include support for ‘csh’-like history substitution (*note History Interaction::). +‘--enable-bash-source-fullpath-default’ + Set the default value of the ‘bash_source_fullpath’ shell option + described above under *note The Shopt Builtin:: to be enabled. + This controls how filenames are assigned to the ‘BASH_SOURCE’ array + variable. + ‘--enable-brace-expansion’ Include ‘csh’-like brace expansion ( ‘b{a,b}c’ ↦ ‘bac bbc’ ). See *note Brace Expansion::, for a complete description. @@ -352,8 +361,9 @@ does not provide the necessary support. ‘--enable-command-timing’ Include support for recognizing ‘time’ as a reserved word and for displaying timing statistics for the pipeline following ‘time’ - (*note Pipelines::). This allows pipelines as well as shell - builtins and functions to be timed. + (*note Pipelines::). This allows timing pipelines, shell compound + commands, shell builtins, and shell functions, which an external + command cannot do easily. ‘--enable-cond-command’ Include support for the ‘[[’ conditional command. (*note @@ -456,13 +466,13 @@ does not provide the necessary support. version of the Readline library (*note Command Line Editing::). ‘--enable-restricted’ - Include support for a “restricted shell”. If this is enabled, - Bash, when called as ‘rbash’, enters a restricted mode. See *note - The Restricted Shell::, for a description of restricted mode. + Include support for a “restricted shell”. If this is enabled, Bash + enters a restricted mode when called as ‘rbash’. See *note The + Restricted Shell::, for a description of restricted mode. ‘--enable-select’ - Include the ‘select’ compound command, which allows the generation - of simple menus (*note Conditional Constructs::). + Include the ‘select’ compound command, which allows generation of + simple menus (*note Conditional Constructs::). ‘--enable-single-help-strings’ Store the text displayed by the ‘help’ builtin as a single string diff --git a/RBASH b/RBASH index 8dc5d3cbe..fedcd315d 100644 --- a/RBASH +++ b/RBASH @@ -2,7 +2,7 @@ ========================= If Bash is started with the name ‘rbash’, or the ‘--restricted’ or ‘-r’ -option is supplied at invocation, the shell becomes restricted. A +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. A restricted shell behaves identically to ‘bash’ with the exception that the following are disallowed or not performed: @@ -13,6 +13,8 @@ with the exception that the following are disallowed or not performed: • Specifying command names containing slashes. • Specifying a filename containing a slash as an argument to the ‘.’ builtin command. + • Using the ‘-p’ option to the ‘.’ builtin command to specify a + search path. • Specifying a filename containing a slash as an argument to the ‘history’ builtin command. • Specifying a filename containing a slash as an argument to the ‘-p’ diff --git a/builtins/cd.def b/builtins/cd.def index ce2a002a4..5b39cb52b 100644 --- a/builtins/cd.def +++ b/builtins/cd.def @@ -427,6 +427,7 @@ cd_builtin (WORD_LIST *list) builtin_error ("%s: %s", temp, strerror (e)); if (temp != dirname) free (temp); + /* posix says to return >1 if eflag && no_symlinks?? */ return (EXECUTION_FAILURE); } diff --git a/builtins/declare.def b/builtins/declare.def index 91f2b27df..8f7f48343 100644 --- a/builtins/declare.def +++ b/builtins/declare.def @@ -112,6 +112,9 @@ Define local variables. Create a local variable called NAME, and give it VALUE. OPTION can be any option accepted by `declare'. +If any NAME is "-", local saves the set of shell options and restores +them when the function returns. + Local variables can only be used within a function; they are visible only to the function where they are defined and its children. diff --git a/doc/bash.0 b/doc/bash.0 index 384e2ea14..c2f6d742c 100644 --- a/doc/bash.0 +++ b/doc/bash.0 @@ -1,3 +1,4 @@ + _B_A_S_H(1) General Commands Manual _B_A_S_H(1) NNAAMMEE @@ -11,8 +12,9 @@ CCOOPPYYRRIIGGHHTT DDEESSCCRRIIPPTTIIOONN BBaasshh is an sshh-compatible command language interpreter that executes - commands read from the standard input or from a file. BBaasshh also incor- - porates useful features from the _K_o_r_n and _C shells (kksshh and ccsshh). + commands read from the standard input, from a string, or from a file. + BBaasshh also incorporates useful features from the _K_o_r_n and _C shells (kksshh + and ccsshh). POSIX is the name for a family of computing standards based on Unix. BBaasshh is intended to be a conformant implementation of the Shell and @@ -31,29 +33,36 @@ OOPPTTIIOONNSS signed to $$00 and any remaining arguments are assigned to the positional parameters. The assignment to $$00 sets the name of the shell, which is used in warning and error messages. + --ii If the --ii option is present, the shell is _i_n_t_e_r_a_c_t_i_v_e. + --ll Make bbaasshh act as if it had been invoked as a login shell (see IINNVVOOCCAATTIIOONN below). + --rr If the --rr option is present, the shell becomes _r_e_s_t_r_i_c_t_e_d (see RREESSTTRRIICCTTEEDD SSHHEELLLL below). + --ss If the --ss option is present, or if no arguments remain after - option processing, then commands are read from the standard - input. This option allows the positional parameters to be - set when invoking an interactive shell or when reading input + option processing, the shell reads commands from the standard + input. This option allows the positional parameters to be + set when invoking an interactive shell or when reading input through a pipe. - --DD A list of all double-quoted strings preceded by $$ is printed - on the standard output. These are the strings that are sub- - ject to language translation when the current locale is not CC - or PPOOSSIIXX. This implies the --nn option; no commands will be - executed. + + --DD Print a list of all double-quoted strings preceded by $$ on + the standard output. These are the strings that are subject + to language translation when the current locale is not CC or + PPOOSSIIXX. This implies the --nn option; no commands will be exe- + cuted. + [[--++]]OO [[_s_h_o_p_t___o_p_t_i_o_n]] _s_h_o_p_t___o_p_t_i_o_n is one of the shell options accepted by the sshhoopptt builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). If _s_h_o_p_t___o_p_t_i_o_n is present, --OO sets the value of that option; ++OO - unsets it. If _s_h_o_p_t___o_p_t_i_o_n is not supplied, the names and - values of the shell options accepted by sshhoopptt are printed on + unsets it. If _s_h_o_p_t___o_p_t_i_o_n is not supplied, bbaasshh prints the + names and values of the shell options accepted by sshhoopptt on the standard output. If the invocation option is ++OO, the output is displayed in a format that may be reused as input. + ---- A ---- signals the end of options and disables further option processing. Any arguments after the ---- are treated as a shell script filename (see below) and arguments passed to @@ -67,13 +76,17 @@ OOPPTTIIOONNSS Arrange for the debugger profile to be executed before the shell starts. Turns on extended debugging mode (see the description of the eexxttddeebbuugg option to the sshhoopptt builtin below). + ----dduummpp--ppoo--ssttrriinnggss Equivalent to --DD, but the output is in the GNU _g_e_t_t_e_x_t ppoo (portable object) file format. + ----dduummpp--ssttrriinnggss Equivalent to --DD. + ----hheellpp Display a usage message on standard output and exit success- fully. + ----iinniitt--ffiillee _f_i_l_e ----rrccffiillee _f_i_l_e Execute commands from _f_i_l_e instead of the standard personal ini- @@ -122,9 +135,9 @@ AARRGGUUMMEENNTTSS sitional parameters are set to the remaining arguments. BBaasshh reads and executes commands from this file, then exits. BBaasshh's exit status is the exit status of the last command executed in the script. If no com- - mands are executed, the exit status is 0. An attempt is first made to - open the file in the current directory, and, if no file is found, then - the shell searches the directories in PPAATTHH for the script. + mands are executed, the exit status is 0. Bash first attempts to open + the file in the current directory, and, if no file is found, then + searches the directories in PPAATTHH for the script. IINNVVOOCCAATTIIOONN A _l_o_g_i_n _s_h_e_l_l is one whose first character of argument zero is a --, or @@ -132,42 +145,42 @@ IINNVVOOCCAATTIIOONN An _i_n_t_e_r_a_c_t_i_v_e shell is one started without non-option arguments (un- less --ss is specified) and without the --cc option, whose standard input - and error are both connected to terminals (as determined by _i_s_a_t_t_y(3)), - or one started with the --ii option. PPSS11 is set and $$-- includes ii if - bbaasshh is interactive, allowing a shell script or a startup file to test - this state. - - The following paragraphs describe how bbaasshh executes its startup files. - If any of the files exist but cannot be read, bbaasshh reports an error. - Tildes are expanded in filenames as described below under TTiillddee EExxppaann-- + and standard error are both connected to terminals (as determined by + _i_s_a_t_t_y(3)), or one started with the --ii option. BBaasshh sets PPSS11 and $$-- + includes ii if the shell is interactive, so a shell script or a startup + file can test this state. + + The following paragraphs describe how bbaasshh executes its startup files. + If any of the files exist but cannot be read, bbaasshh reports an error. + Tildes are expanded in filenames as described below under TTiillddee EExxppaann-- ssiioonn in the EEXXPPAANNSSIIOONN section. - When bbaasshh is invoked as an interactive login shell, or as a non-inter- - active shell with the ----llooggiinn option, it first reads and executes com- - mands from the file _/_e_t_c_/_p_r_o_f_i_l_e, if that file exists. After reading + When bbaasshh is invoked as an interactive login shell, or as a non-inter- + active shell with the ----llooggiinn option, it first reads and executes com- + mands from the file _/_e_t_c_/_p_r_o_f_i_l_e, if that file exists. After reading that file, it looks for _~_/_._b_a_s_h___p_r_o_f_i_l_e, _~_/_._b_a_s_h___l_o_g_i_n, and _~_/_._p_r_o_f_i_l_e, - in that order, and reads and executes commands from the first one that - exists and is readable. The ----nnoopprrooffiillee option may be used when the + in that order, and reads and executes commands from the first one that + exists and is readable. The ----nnoopprrooffiillee option may be used when the shell is started to inhibit this behavior. When an interactive login shell exits, or a non-interactive login shell - executes the eexxiitt builtin command, bbaasshh reads and executes commands + executes the eexxiitt builtin command, bbaasshh reads and executes commands from the file _~_/_._b_a_s_h___l_o_g_o_u_t, if it exists. - When an interactive shell that is not a login shell is started, bbaasshh - reads and executes commands from _~_/_._b_a_s_h_r_c, if that file exists. This - may be inhibited by using the ----nnoorrcc option. The ----rrccffiillee _f_i_l_e option - will cause bbaasshh to use _f_i_l_e instead of _~_/_._b_a_s_h_r_c. + When an interactive shell that is not a login shell is started, bbaasshh + reads and executes commands from _~_/_._b_a_s_h_r_c, if that file exists. This + may be inhibited by using the ----nnoorrcc option. The ----rrccffiillee _f_i_l_e option + causes bbaasshh to use _f_i_l_e instead of _~_/_._b_a_s_h_r_c. - When bbaasshh is started non-interactively, to run a shell script, for ex- - ample, it looks for the variable BBAASSHH__EENNVV in the environment, expands - its value if it appears there, and uses the expanded value as the name - of a file to read and execute. BBaasshh behaves as if the following com- + When bbaasshh is started non-interactively, to run a shell script, for ex- + ample, it looks for the variable BBAASSHH__EENNVV in the environment, expands + its value if it appears there, and uses the expanded value as the name + of a file to read and execute. BBaasshh behaves as if the following com- mand were executed: if [ -n "$BASH_ENV" ]; then . "$BASH_ENV"; fi - but the value of the PPAATTHH variable is not used to search for the file- + but does not use the value of the PPAATTHH variable to search for the file- name. If bbaasshh is invoked with the name sshh, it tries to mimic the startup be- @@ -187,20 +200,20 @@ IINNVVOOCCAATTIIOONN When bbaasshh is started in _p_o_s_i_x mode, as with the ----ppoossiixx command line option, it follows the POSIX standard for startup files. In this mode, - interactive shells expand the EENNVV variable and commands are read and - executed from the file whose name is the expanded value. No other - startup files are read. + interactive shells expand the EENNVV variable and read and execute com- + mands from the file whose name is the expanded value. No other startup + files are read. BBaasshh attempts to determine when it is being run with its standard input - connected to a network connection, as when executed by the historical - remote shell daemon, usually _r_s_h_d, or the secure shell daemon _s_s_h_d. If - bbaasshh determines it is being run non-interactively in this fashion, it - reads and executes commands from _~_/_._b_a_s_h_r_c, if that file exists and is - readable. It will not do this if invoked as sshh. The ----nnoorrcc option may - be used to inhibit this behavior, and the ----rrccffiillee option will make - bbaasshh use a different file instead of _~_/_._b_a_s_h_r_c, but neither _r_s_h_d nor - _s_s_h_d generally invoke the shell with those options or allow them to be - specified. + connected to a network connection, as when executed by the historical + and rarely-seen remote shell daemon, usually _r_s_h_d, or the secure shell + daemon _s_s_h_d. If bbaasshh determines it is being run non-interactively in + this fashion, it reads and executes commands from _~_/_._b_a_s_h_r_c, if that + file exists and is readable. It will not do this if invoked as sshh. + The ----nnoorrcc option may be used to inhibit this behavior, and the ----rrcc-- + ffiillee option will make bbaasshh use a different file instead of _~_/_._b_a_s_h_r_c, + but neither _r_s_h_d nor _s_s_h_d generally invoke the shell with those options + or allow them to be specified. If the shell is started with the effective user (group) id not equal to the real user (group) id, and the --pp option is not supplied, no startup @@ -260,171 +273,175 @@ SSHHEELLLL GGRRAAMMMMAARR The standard output of _c_o_m_m_a_n_d_1 is connected via a pipe to the standard input of _c_o_m_m_a_n_d_2. This connection is performed before any redirec- - tions specified by the _c_o_m_m_a_n_d_1(see RREEDDIIRREECCTTIIOONN below). If ||&& is used, - _c_o_m_m_a_n_d_1's standard error, in addition to its standard output, is con- - nected to _c_o_m_m_a_n_d_2's standard input through the pipe; it is shorthand - for 22>>&&11 ||. This implicit redirection of the standard error to the - standard output is performed after any redirections specified by _c_o_m_- - _m_a_n_d_1. + tions specified by the _c_o_m_m_a_n_d_1(see RREEDDIIRREECCTTIIOONN below). If ||&& is the + pipeline operator, _c_o_m_m_a_n_d_1's standard error, in addition to its stan- + dard output, is connected to _c_o_m_m_a_n_d_2's standard input through the + pipe; it is shorthand for 22>>&&11 ||. This implicit redirection of the + standard error to the standard output is performed after any redirec- + tions specified by _c_o_m_m_a_n_d_1. The return status of a pipeline is the exit status of the last command, - unless the ppiippeeffaaiill option is enabled. If ppiippeeffaaiill is enabled, the - pipeline's return status is the value of the last (rightmost) command - to exit with a non-zero status, or zero if all commands exit success- + unless the ppiippeeffaaiill option is enabled. If ppiippeeffaaiill is enabled, the + pipeline's return status is the value of the last (rightmost) command + to exit with a non-zero status, or zero if all commands exit success- fully. If the reserved word !! precedes a pipeline, the exit status of - that pipeline is the logical negation of the exit status as described - above. The shell waits for all commands in the pipeline to terminate - before returning a value. - - If the ttiimmee reserved word precedes a pipeline, the elapsed as well as - user and system time consumed by its execution are reported when the - pipeline terminates. The --pp option changes the output format to that - specified by POSIX. When the shell is in _p_o_s_i_x _m_o_d_e, it does not rec- - ognize ttiimmee as a reserved word if the next token begins with a "-". - The TTIIMMEEFFOORRMMAATT variable may be set to a format string that specifies - how the timing information should be displayed; see the description of - TTIIMMEEFFOORRMMAATT under SShheellll VVaarriiaabblleess below. + that pipeline is the logical negation of the exit status as described + above. If a pipeline is executed synchronously, the shell waits for + all commands in the pipeline to terminate before returning a value. + + If the ttiimmee reserved word precedes a pipeline, the shell reports the + elapsed as well as user and system time consumed by its execution when + the pipeline terminates. The --pp option changes the output format to + that specified by POSIX. When the shell is in _p_o_s_i_x _m_o_d_e, it does not + recognize ttiimmee as a reserved word if the next token begins with a "-". + The value of the TTIIMMEEFFOORRMMAATT variable is a format string that specifies + how the timing information should be displayed; see the description of + TTIIMMEEFFOORRMMAATT below under SShheellll VVaarriiaabblleess. When the shell is in _p_o_s_i_x _m_o_d_e, ttiimmee may be followed by a newline. In - this case, the shell displays the total user and system time consumed - by the shell and its children. The TTIIMMEEFFOORRMMAATT variable specifies the + this case, the shell displays the total user and system time consumed + by the shell and its children. The TTIIMMEEFFOORRMMAATT variable specifies the format of the time information. - Each command in a multi-command pipeline, where pipes are created, is - executed in a _s_u_b_s_h_e_l_l, which is a separate process. See CCOOMMMMAANNDD EEXXEE-- - CCUUTTIIOONN EENNVVIIRROONNMMEENNTT for a description of subshells and a subshell envi- - ronment. If the llaassttppiippee option is enabled using the sshhoopptt builtin - (see the description of sshhoopptt below), the last element of a pipeline - may be run by the shell process when job control is not active. + Each command in a multi-command pipeline, where pipes are created, is + executed in a _s_u_b_s_h_e_l_l, which is a separate process. See CCOOMMMMAANNDD EEXXEE-- + CCUUTTIIOONN EENNVVIIRROONNMMEENNTT for a description of subshells and a subshell envi- + ronment. If the llaassttppiippee option is enabled using the sshhoopptt builtin + (see the description of sshhoopptt below), and job control is not active, + the last element of a pipeline may be run by the shell process. LLiissttss - A _l_i_s_t is a sequence of one or more pipelines separated by one of the + A _l_i_s_t is a sequence of one or more pipelines separated by one of the operators ;;, &&, &&&&, or ||||, and optionally terminated by one of ;;, &&, or <>. Of these list operators, &&&& and |||| have equal precedence, followed by ;; and &&, which have equal precedence. - A sequence of one or more newlines may appear in a _l_i_s_t instead of a + A sequence of one or more newlines may appear in a _l_i_s_t instead of a semicolon to delimit commands. - If a command is terminated by the control operator &&, the shell exe- - cutes the command in the _b_a_c_k_g_r_o_u_n_d in a subshell. The shell does not - wait for the command to finish, and the return status is 0. These are - referred to as _a_s_y_n_c_h_r_o_n_o_u_s commands. Commands separated by a ;; are + If a command is terminated by the control operator &&, the shell exe- + cutes the command in the _b_a_c_k_g_r_o_u_n_d in a subshell. The shell does not + wait for the command to finish, and the return status is 0. These are + referred to as _a_s_y_n_c_h_r_o_n_o_u_s commands. Commands separated by a ;; are executed sequentially; the shell waits for each command to terminate in - turn. The return status is the exit status of the last command exe- + turn. The return status is the exit status of the last command exe- cuted. - AND and OR lists are sequences of one or more pipelines separated by - the &&&& and |||| control operators, respectively. AND and OR lists are + AND and OR lists are sequences of one or more pipelines separated by + the &&&& and |||| control operators, respectively. AND and OR lists are executed with left associativity. An AND list has the form _c_o_m_m_a_n_d_1 &&&& _c_o_m_m_a_n_d_2 - _c_o_m_m_a_n_d_2 is executed if, and only if, _c_o_m_m_a_n_d_1 returns an exit status + _c_o_m_m_a_n_d_2 is executed if, and only if, _c_o_m_m_a_n_d_1 returns an exit status of zero (success). An OR list has the form _c_o_m_m_a_n_d_1 |||| _c_o_m_m_a_n_d_2 - _c_o_m_m_a_n_d_2 is executed if, and only if, _c_o_m_m_a_n_d_1 returns a non-zero exit - status. The return status of AND and OR lists is the exit status of + _c_o_m_m_a_n_d_2 is executed if, and only if, _c_o_m_m_a_n_d_1 returns a non-zero exit + status. The return status of AND and OR lists is the exit status of the last command executed in the list. CCoommppoouunndd CCoommmmaannddss - A _c_o_m_p_o_u_n_d _c_o_m_m_a_n_d is one of the following. In most cases a _l_i_s_t in a - command's description may be separated from the rest of the command by - one or more newlines, and may be followed by a newline in place of a + A _c_o_m_p_o_u_n_d _c_o_m_m_a_n_d is one of the following. In most cases a _l_i_s_t in a + command's description may be separated from the rest of the command by + one or more newlines, and may be followed by a newline in place of a semicolon. - (_l_i_s_t) _l_i_s_t is executed in a subshell (see CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONN-- - MMEENNTT below for a description of a subshell environment). Vari- - able assignments and builtin commands that affect the shell's + (_l_i_s_t) _l_i_s_t is executed in a subshell (see CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONN-- + MMEENNTT below for a description of a subshell environment). Vari- + able assignments and builtin commands that affect the shell's environment do not remain in effect after the command completes. The return status is the exit status of _l_i_s_t. { _l_i_s_t; } - _l_i_s_t is simply executed in the current shell environment. _l_i_s_t - must be terminated with a newline or semicolon. This is known - as a _g_r_o_u_p _c_o_m_m_a_n_d. The return status is the exit status of - _l_i_s_t. Note that unlike the metacharacters (( and )), {{ and }} are - _r_e_s_e_r_v_e_d _w_o_r_d_s and must occur where a reserved word is permitted + _l_i_s_t is executed in the current shell environment. _l_i_s_t must be + terminated with a newline or semicolon. This is known as a + _g_r_o_u_p _c_o_m_m_a_n_d. The return status is the exit status of _l_i_s_t. + + Note that unlike the metacharacters (( and )), {{ and }} are _r_e_- + _s_e_r_v_e_d _w_o_r_d_s and must occur where a reserved word is permitted to be recognized. Since they do not cause a word break, they must be separated from _l_i_s_t by whitespace or another shell metacharacter. ((_e_x_p_r_e_s_s_i_o_n)) - The _e_x_p_r_e_s_s_i_o_n is evaluated according to the rules described be- - low under AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN. If the value of the expression - is non-zero, the return status is 0; otherwise the return status - is 1. The _e_x_p_r_e_s_s_i_o_n undergoes the same expansions as if it - were within double quotes, but double quote characters in _e_x_- - _p_r_e_s_s_i_o_n are not treated specially and are removed. + The arithmetic _e_x_p_r_e_s_s_i_o_n is evaluated according to the rules + described below under AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN. If the value of + the expression is non-zero, the return status is 0; otherwise + the return status is 1. The _e_x_p_r_e_s_s_i_o_n undergoes the same ex- + pansions as if it were within double quotes, but double quote + characters in _e_x_p_r_e_s_s_i_o_n are not treated specially and are re- + moved. [[[[ _e_x_p_r_e_s_s_i_o_n ]]]] - Return a status of 0 or 1 depending on the evaluation of the - conditional expression _e_x_p_r_e_s_s_i_o_n. Expressions are composed of - the primaries described below under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS. - The words between the [[[[ and ]]]] do not undergo word splitting - and pathname expansion. The shell performs tilde expansion, pa- - rameter and variable expansion, arithmetic expansion, command - substitution, process substitution, and quote removal on those - words. Conditional operators such as --ff must be unquoted to be - recognized as primaries. - - When used with [[[[, the << and >> operators sort lexicographically + Evaluate the conditional expression _e_x_p_r_e_s_s_i_o_n and return a sta- + tus of zero (true) or non-zero (false). Expressions are com- + posed of the primaries described below under CCOONNDDIITTIIOONNAALL EEXXPPRREESS-- + SSIIOONNSS. The words between the [[[[ and ]]]] do not undergo word + splitting and pathname expansion. The shell performs tilde ex- + pansion, parameter and variable expansion, arithmetic expansion, + command substitution, process substitution, and quote removal on + those words. Conditional operators such as --ff must be unquoted + to be recognized as primaries. + + When used with [[[[, the << and >> operators sort lexicographically using the current locale. - When the ==== and !!== operators are used, the string to the right + When the ==== and !!== operators are used, the string to the right of the operator is considered a pattern and matched according to the rules described below under PPaatttteerrnn MMaattcchhiinngg, as if the eexxtt-- gglloobb shell option were enabled. The == operator is equivalent to - ====. If the nnooccaasseemmaattcchh shell option is enabled, the match is - performed without regard to the case of alphabetic characters. - The return value is 0 if the string matches (====) or does not - match (!!==) the pattern, and 1 otherwise. Any part of the pat- - tern may be quoted to force the quoted portion to be matched as - a string. - - An additional binary operator, ==~~, is available, with the same - precedence as ==== and !!==. When it is used, the string to the + ====. If the nnooccaasseemmaattcchh shell option is enabled, the match is + performed without regard to the case of alphabetic characters. + The return value is 0 if the string matches (====) or does not + match (!!==) the pattern, and 1 otherwise. If any part of the + pattern is quoted, the quoted portion is matched as a string: + every character in the quoted portion matches itself, instead of + having any special pattern matching meaning. + + An additional binary operator, ==~~, is available, with the same + precedence as ==== and !!==. When it is used, the string to the right of the operator is considered a POSIX extended regular ex- - pression and matched accordingly (using the POSIX _r_e_g_c_o_m_p and - _r_e_g_e_x_e_c interfaces usually described in _r_e_g_e_x(3)). The return - value is 0 if the string matches the pattern, and 1 otherwise. + pression and matched accordingly (using the POSIX _r_e_g_c_o_m_p and + _r_e_g_e_x_e_c interfaces usually described in _r_e_g_e_x(3)). The return + value is 0 if the string matches the pattern, and 1 otherwise. If the regular expression is syntactically incorrect, the condi- tional expression's return value is 2. If the nnooccaasseemmaattcchh shell - option is enabled, the match is performed without regard to the - case of alphabetic characters. If any part of the pattern is - quoted, the quoted portion is matched literally. This means - every character in the quoted portion matches itself, instead of - having any special pattern matching meaning. If the pattern is - stored in a shell variable, quoting the variable expansion - forces the entire pattern to be matched literally. Treat - bracket expressions in regular expressions carefully, since nor- - mal quoting and pattern characters lose their meanings between - brackets. - - The pattern will match if it matches any part of the string. - Anchor the pattern using the ^^ and $$ regular expression opera- - tors to force it to match the entire string. The array variable - BBAASSHH__RREEMMAATTCCHH records which parts of the string matched the pat- - tern. The element of BBAASSHH__RREEMMAATTCCHH with index 0 contains the - portion of the string matching the entire regular expression. - Substrings matched by parenthesized subexpressions within the - regular expression are saved in the remaining BBAASSHH__RREEMMAATTCCHH in- - dices. The element of BBAASSHH__RREEMMAATTCCHH with index _n is the portion - of the string matching the _nth parenthesized subexpression. - BBaasshh sets BBAASSHH__RREEMMAATTCCHH in the global scope; declaring it as a - local variable will lead to unexpected results. + option is enabled, the match is performed without regard to the + case of alphabetic characters. + + If any part of the pattern is quoted, the quoted portion is + matched literally, as above. If the pattern is stored in a + shell variable, quoting the variable expansion forces the entire + pattern to be matched literally. Treat bracket expressions in + regular expressions carefully, since normal quoting and pattern + characters lose their meanings between brackets. + + The pattern will match if it matches any part of the string. + Anchor the pattern using the ^^ and $$ regular expression opera- + tors to force it to match the entire string. + + The array variable BBAASSHH__RREEMMAATTCCHH records which parts of the + string matched the pattern. The element of BBAASSHH__RREEMMAATTCCHH with + index 0 contains the portion of the string matching the entire + regular expression. Substrings matched by parenthesized subex- + pressions within the regular expression are saved in the remain- + ing BBAASSHH__RREEMMAATTCCHH indices. The element of BBAASSHH__RREEMMAATTCCHH with in- + dex _n is the portion of the string matching the _nth parenthe- + sized subexpression. BBaasshh sets BBAASSHH__RREEMMAATTCCHH in the global + scope; declaring it as a local variable will lead to unexpected + results. - Expressions may be combined using the following operators, + Expressions may be combined using the following operators, listed in decreasing order of precedence: (( _e_x_p_r_e_s_s_i_o_n )) - Returns the value of _e_x_p_r_e_s_s_i_o_n. This may be used to + Returns the value of _e_x_p_r_e_s_s_i_o_n. This may be used to override the normal precedence of operators. !! _e_x_p_r_e_s_s_i_o_n True if _e_x_p_r_e_s_s_i_o_n is false. @@ -434,67 +451,77 @@ SSHHEELLLL GGRRAAMMMMAARR True if either _e_x_p_r_e_s_s_i_o_n_1 or _e_x_p_r_e_s_s_i_o_n_2 is true. The &&&& and |||| operators do not evaluate _e_x_p_r_e_s_s_i_o_n_2 if the value - of _e_x_p_r_e_s_s_i_o_n_1 is sufficient to determine the return value of + of _e_x_p_r_e_s_s_i_o_n_1 is sufficient to determine the return value of the entire conditional expression. ffoorr _n_a_m_e [ [ iinn [ _w_o_r_d _._._. ] ] ; ] ddoo _l_i_s_t ; ddoonnee - The list of words following iinn is expanded, generating a list of - items. The variable _n_a_m_e is set to each element of this list in - turn, and _l_i_s_t is executed each time. If the iinn _w_o_r_d is omit- - ted, the ffoorr command executes _l_i_s_t once for each positional pa- - rameter that is set (see PPAARRAAMMEETTEERRSS below). The return status - is the exit status of the last command that executes. If the - expansion of the items following iinn results in an empty list, no - commands are executed, and the return status is 0. + First, expand The list of words following iinn, generating a list + of items. Then, the variable _n_a_m_e is set to each element of + this list in turn, and _l_i_s_t is executed each time. If the iinn + _w_o_r_d is omitted, the ffoorr command executes _l_i_s_t once for each po- + sitional parameter that is set (see PPAARRAAMMEETTEERRSS below). The re- + turn status is the exit status of the last command that exe- + cutes. If the expansion of the items following iinn results in an + empty list, no commands are executed, and the return status is + 0. ffoorr (( _e_x_p_r_1 ; _e_x_p_r_2 ; _e_x_p_r_3 )) ; ddoo _l_i_s_t ; ddoonnee - First, the arithmetic expression _e_x_p_r_1 is evaluated according to - the rules described below under AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN. The - arithmetic expression _e_x_p_r_2 is then evaluated repeatedly until - it evaluates to zero. Each time _e_x_p_r_2 evaluates to a non-zero - value, _l_i_s_t is executed and the arithmetic expression _e_x_p_r_3 is - evaluated. If any expression is omitted, it behaves as if it - evaluates to 1. The return value is the exit status of the last - command in _l_i_s_t that is executed, or false if any of the expres- - sions is invalid. + First, evaluate the arithmetic expression _e_x_p_r_1 according to the + rules described below under AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN. Then, re- + peatedly evaluate the arithmetic expression _e_x_p_r_2 until it eval- + uates to zero. Each time _e_x_p_r_2 evaluates to a non-zero value, + execute _l_i_s_t and evaluate the arithmetic expression _e_x_p_r_3. If + any expression is omitted, it behaves as if it evaluates to 1. + The return value is the exit status of the last command in _l_i_s_t + that is executed, or non-zero if any of the expressions is in- + valid. + + Use the bbrreeaakk and ccoonnttiinnuuee builtins (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS + below) to control loop execution. sseelleecctt _n_a_m_e [ iinn _w_o_r_d ] ; ddoo _l_i_s_t ; ddoonnee - The list of words following iinn is expanded, generating a list of - items, and the set of expanded words is printed on the standard - error, each preceded by a number. If the iinn _w_o_r_d is omitted, - the positional parameters are printed (see PPAARRAAMMEETTEERRSS below). - sseelleecctt then displays the PPSS33 prompt and reads a line from the - standard input. If the line consists of a number corresponding - to one of the displayed words, then the value of _n_a_m_e is set to - that word. If the line is empty, the words and prompt are dis- - played again. If EOF is read, the sseelleecctt command completes and - returns 1. Any other value read causes _n_a_m_e to be set to null. - The line read is saved in the variable RREEPPLLYY. The _l_i_s_t is exe- - cuted after each selection until a bbrreeaakk command is executed. - The exit status of sseelleecctt is the exit status of the last command - executed in _l_i_s_t, or zero if no commands were executed. + First, expand the list of words following iinn, generating a list + of items, and print the set of expanded words the standard er- + ror, each preceded by a number. If the iinn _w_o_r_d is omitted, + print the positional parameters (see PPAARRAAMMEETTEERRSS below). sseelleecctt + then displays the PPSS33 prompt and reads a line from the standard + input. If the line consists of a number corresponding to one of + the displayed words, then sseelleecctt sets the value of _n_a_m_e to that + word. If the line is empty, sseelleecctt displays the words and + prompt again. If EOF is read, sseelleecctt completes and returns 1. + Any other value sets _n_a_m_e to null. The line read is saved in + the variable RREEPPLLYY. The _l_i_s_t is executed after each selection + until a bbrreeaakk command is executed. The exit status of sseelleecctt is + the exit status of the last command executed in _l_i_s_t, or zero if + no commands were executed. ccaassee _w_o_r_d iinn [ [(] _p_a_t_t_e_r_n [ || _p_a_t_t_e_r_n ] ... ) _l_i_s_t ;; ] ... eessaacc A ccaassee command first expands _w_o_r_d, and tries to match it against - each _p_a_t_t_e_r_n in turn, using the matching rules described under - PPaatttteerrnn MMaattcchhiinngg below. The _w_o_r_d is expanded using tilde expan- - sion, parameter and variable expansion, arithmetic expansion, - command substitution, process substitution and quote removal. - Each _p_a_t_t_e_r_n examined is expanded using tilde expansion, parame- - ter and variable expansion, arithmetic expansion, command sub- - stitution, process substitution, and quote removal. If the nnoo-- - ccaasseemmaattcchh shell option is enabled, the match is performed with- - out regard to the case of alphabetic characters. When a match - is found, the corresponding _l_i_s_t is executed. If the ;;;; opera- - tor is used, no subsequent matches are attempted after the first - pattern match. Using ;;&& in place of ;;;; causes execution to con- - tinue with the _l_i_s_t associated with the next set of patterns. - Using ;;;;&& in place of ;;;; causes the shell to test the next pat- - tern list in the statement, if any, and execute any associated - _l_i_s_t on a successful match, continuing the case statement execu- - tion as if the pattern list had not matched. The exit status is - zero if no pattern matches. Otherwise, it is the exit status of - the last command executed in _l_i_s_t. + each _p_a_t_t_e_r_n in turn, proceeding from first to last, using the + matching rules described under PPaatttteerrnn MMaattcchhiinngg below. A pat- + tern list is a set of one or more patterns separated by , and + the ) operator terminates the pattern list. The _w_o_r_d is ex- + panded using tilde expansion, parameter and variable expansion, + arithmetic expansion, command substitution, process substitution + and quote removal. Each _p_a_t_t_e_r_n examined is expanded using + tilde expansion, parameter and variable expansion, arithmetic + expansion, command substitution, process substitution, and quote + removal. If the nnooccaasseemmaattcchh shell option is enabled, the match + is performed without regard to the case of alphabetic charac- + ters. A _c_l_a_u_s_e is a pattern list and an associated _l_i_s_t. + + When a match is found, ccaassee executes the corresponding _l_i_s_t. If + the ;;;; operator terminates the case clause, the ccaassee command + completes after the first match. Using ;;&& in place of ;;;; causes + execution to continue with the _l_i_s_t associated with the next + pattern list. Using ;;;;&& in place of ;;;; causes the shell to test + the next pattern list in the statement, if any, and execute any + associated _l_i_s_t if the match succeeds. continuing the case + statement execution as if the pattern list had not matched. The + exit status is zero if no pattern matches. + + Otherwise, it is the exit status of the last command executed in + the last _l_i_s_t executed. iiff _l_i_s_t; tthheenn _l_i_s_t; [ eelliiff _l_i_s_t; tthheenn _l_i_s_t; ] ... [ eellssee _l_i_s_t; ] ffii The iiff _l_i_s_t is executed. If its exit status is zero, the tthheenn @@ -533,9 +560,9 @@ SSHHEELLLL GGRRAAMMMMAARR ccoopprroocc _N_A_M_E { _c_o_m_m_a_n_d [_r_e_d_i_r_e_c_t_i_o_n_s]; } - This form is recommended because simple commands result in the co- - process always being named CCOOPPRROOCC, and it is simpler to use and more - complete than the other compound commands. + This form is preferred because simple commands result in the coprocess + always being named CCOOPPRROOCC, and it is simpler to use and more complete + than the other compound commands. If _c_o_m_m_a_n_d is a compound command, _N_A_M_E is optional. The word following ccoopprroocc determines whether that word is interpreted as a variable name: @@ -558,8 +585,8 @@ SSHHEELLLL GGRRAAMMMMAARR subshells. The process ID of the shell spawned to execute the coprocess is avail- - able as the value of the variable _N_A_M_E_PID. The wwaaiitt builtin command - may be used to wait for the coprocess to terminate. + able as the value of the variable _N_A_M_E_PID. The wwaaiitt builtin may be + used to wait for the coprocess to terminate. Since the coprocess is created as an asynchronous command, the ccoopprroocc command always returns success. The return status of a coprocess is @@ -584,22 +611,26 @@ SSHHEELLLL GGRRAAMMMMAARR When in _p_o_s_i_x _m_o_d_e, _f_n_a_m_e must be a valid shell _n_a_m_e and may not be the name of one of the POSIX _s_p_e_c_i_a_l _b_u_i_l_t_i_n_s. In default mode, a function name can be any unquoted shell word that does - not contain $$. Any redirections (see RREEDDIIRREECCTTIIOONN below) speci- - fied when a function is defined are performed when the function - is executed. The exit status of a function definition is zero - unless a syntax error occurs or a readonly function with the - same name already exists. When executed, the exit status of a - function is the exit status of the last command executed in the - body. (See FFUUNNCCTTIIOONNSS below.) + not contain $$. + + Any redirections (see RREEDDIIRREECCTTIIOONN below) specified when a function is + defined are performed when the function is executed. + + The exit status of a function definition is zero unless a syntax error + occurs or a readonly function with the same name already exists. When + executed, the exit status of a function is the exit status of the last + command executed in the body. (See FFUUNNCCTTIIOONNSS below.) CCOOMMMMEENNTTSS In a non-interactive shell, or an interactive shell in which the iinntteerr-- aaccttiivvee__ccoommmmeennttss option to the sshhoopptt builtin is enabled (see SSHHEELLLL - BBUUIILLTTIINN CCOOMMMMAANNDDSS below), a word beginning with ## causes that word and - all remaining characters on that line to be ignored. An interactive - shell without the iinntteerraaccttiivvee__ccoommmmeennttss option enabled does not allow - comments. The iinntteerraaccttiivvee__ccoommmmeennttss option is on by default in interac- - tive shells. + BBUUIILLTTIINN CCOOMMMMAANNDDSS below), a word beginning with ## introduces a comment. + A word begins at the beginning of a line, after unquoted whitespace, or + after an operator. The comment causes that word and all remaining + characters on that line to be ignored. An interactive shell without + the iinntteerraaccttiivvee__ccoommmmeennttss option enabled does not allow comments. The + iinntteerraaccttiivvee__ccoommmmeennttss option is enabled by default in interactive + shells. QQUUOOTTIINNGG _Q_u_o_t_i_n_g is used to remove the special meaning of certain characters or @@ -614,14 +645,15 @@ QQUUOOTTIINNGG TTOORRYY EEXXPPAANNSSIIOONN below), the _h_i_s_t_o_r_y _e_x_p_a_n_s_i_o_n character, usually !!, must be quoted to prevent history expansion. - There are three quoting mechanisms: the _e_s_c_a_p_e _c_h_a_r_a_c_t_e_r, single - quotes, and double quotes. + There are four quoting mechanisms: the _e_s_c_a_p_e _c_h_a_r_a_c_t_e_r, single quotes, + double quotes, and dollar-single quotes. - A non-quoted backslash (\\) is the _e_s_c_a_p_e _c_h_a_r_a_c_t_e_r. It preserves the - literal value of the next character that follows, with the exception of - . If a \\ pair appears, and the backslash is not it- - self quoted, the \\ is treated as a line continuation (that is, - it is removed from the input stream and effectively ignored). + A non-quoted backslash (\\) is the _e_s_c_a_p_e _c_h_a_r_a_c_t_e_r. It preserves the + literal value of the next character that follows, removing any special + meaning it has, with the exception of . If a \\ pair + appears, and the backslash is not itself quoted, the \\ is + treated as a line continuation (that is, it is removed from the input + stream and effectively ignored). Enclosing characters in single quotes preserves the literal value of each character within the quotes. A single quote may not occur between @@ -634,18 +666,21 @@ QQUUOOTTIINNGG expansion is enabled. The characters $$ and `` retain their special meaning within double quotes. The backslash retains its special mean- ing only when followed by one of the following characters: $$, ``, "", \\, - or <>. A double quote may be quoted within double quotes by - preceding it with a backslash. If enabled, history expansion will be - performed unless an !! appearing in double quotes is escaped using a - backslash. The backslash preceding the !! is not removed. + or <>. Backslashes preceding characters without a special mean- + ing are left unmodified. + + A double quote may be quoted within double quotes by preceding it with + a backslash. If enabled, history expansion will be performed unless an + !! appearing in double quotes is escaped using a backslash. The back- + slash preceding the !! is not removed. - The special parameters ** and @@ have special meaning when in double + The special parameters ** and @@ have special meaning when in double quotes (see PPAARRAAMMEETTEERRSS below). - Character sequences of the form $$'_s_t_r_i_n_g' are treated as a special - variant of single quotes. The sequence expands to _s_t_r_i_n_g, with back- - slash-escaped characters in _s_t_r_i_n_g replaced as specified by the ANSI C - standard. Backslash escape sequences, if present, are decoded as fol- + Character sequences of the form $$'_s_t_r_i_n_g' are treated as a special + variant of single quotes. The sequence expands to _s_t_r_i_n_g, with back- + slash-escaped characters in _s_t_r_i_n_g replaced as specified by the ANSI C + standard. Backslash escape sequences, if present, are decoded as fol- lows: \\aa alert (bell) \\bb backspace @@ -660,38 +695,41 @@ QQUUOOTTIINNGG \\'' single quote \\"" double quote \\?? question mark - \\_n_n_n the eight-bit character whose value is the octal value + \\_n_n_n the eight-bit character whose value is the octal value _n_n_n (one to three octal digits) - \\xx_H_H the eight-bit character whose value is the hexadecimal + \\xx_H_H the eight-bit character whose value is the hexadecimal value _H_H (one or two hex digits) - \\uu_H_H_H_H the Unicode (ISO/IEC 10646) character whose value is the + \\uu_H_H_H_H the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value _H_H_H_H (one to four hex digits) \\UU_H_H_H_H_H_H_H_H - the Unicode (ISO/IEC 10646) character whose value is the + the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value _H_H_H_H_H_H_H_H (one to eight hex digits) \\cc_x a control-_x character - The expanded result is single-quoted, as if the dollar sign had not + The expanded result is single-quoted, as if the dollar sign had not been present. + TTrraannssllaattiinngg SSttrriinnggss A double-quoted string preceded by a dollar sign ($$"_s_t_r_i_n_g") will cause - the string to be translated according to the current locale. The _g_e_t_- - _t_e_x_t infrastructure performs the lookup and translation, using the - LLCC__MMEESSSSAAGGEESS, TTEEXXTTDDOOMMAAIINNDDIIRR, and TTEEXXTTDDOOMMAAIINN shell variables. If the - current locale is CC or PPOOSSIIXX, if there are no translations available, - or if the string is not translated, the dollar sign is ignored. This - is a form of double quoting, so the string remains double-quoted by de- - fault, whether or not it is translated and replaced. If the nnooeexx-- - ppaanndd__ttrraannssllaattiioonn option is enabled using the sshhoopptt builtin, translated - strings are single-quoted instead of double-quoted. See the descrip- - tion of sshhoopptt below under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS. + the string to be translated according to the current locale. The _g_e_t_- + _t_e_x_t infrastructure performs the lookup and translation, using the + LLCC__MMEESSSSAAGGEESS, TTEEXXTTDDOOMMAAIINNDDIIRR, and TTEEXXTTDDOOMMAAIINN shell variables. If the + current locale is CC or PPOOSSIIXX, if there are no translations available, + or if the string is not translated, the dollar sign is ignored, and the + string is treated as double-quoted as described above. This is a form + of double quoting, so the string remains double-quoted by default, + whether or not it is translated and replaced. If the nnooeexxppaanndd__ttrraannssllaa-- + ttiioonn option is enabled using the sshhoopptt builtin, translated strings are + single-quoted instead of double-quoted. See the description of sshhoopptt + below under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS. PPAARRAAMMEETTEERRSS - A _p_a_r_a_m_e_t_e_r is an entity that stores values. It can be a _n_a_m_e, a num- - ber, or one of the special characters listed below under SSppeecciiaall PPaarraa-- + A _p_a_r_a_m_e_t_e_r is an entity that stores values. It can be a _n_a_m_e, a num- + ber, or one of the special characters listed below under SSppeecciiaall PPaarraa-- mmeetteerrss. A _v_a_r_i_a_b_l_e is a parameter denoted by a _n_a_m_e. A variable has a - _v_a_l_u_e and zero or more _a_t_t_r_i_b_u_t_e_s. Attributes are assigned using the - ddeeccllaarree builtin command (see ddeeccllaarree below in SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS). + _v_a_l_u_e and zero or more _a_t_t_r_i_b_u_t_e_s. Attributes are assigned using the + ddeeccllaarree builtin command (see ddeeccllaarree below in SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS). + The eexxppoorrtt and rreeaaddoonnllyy builtins assign specific attributes. A parameter is set if it has been assigned a value. The null string is a valid value. Once a variable is set, it may be unset only by using @@ -714,15 +752,16 @@ PPAARRAAMMEETTEERRSS the ccoommmmaanndd builtin and retain these assignment statement properties. In the context where an assignment statement is assigning a value to a - shell variable or array index, the += operator can be used to append to - or add to the variable's previous value. This includes arguments to - builtin commands such as ddeeccllaarree that accept assignment statements (_d_e_- - _c_l_a_r_a_t_i_o_n commands). When += is applied to a variable for which the - iinntteeggeerr attribute has been set, _v_a_l_u_e is evaluated as an arithmetic ex- - pression and added to the variable's current value, which is also eval- - uated. When += is applied to an array variable using compound assign- - ment (see AArrrraayyss below), the variable's value is not unset (as it is - when using =), and new values are appended to the array beginning at + shell variable or array index, the += operator will append to or add to + the variable's previous value. This includes arguments to _d_e_c_l_a_r_a_t_i_o_n + commands such as ddeeccllaarree that accept assignment statements. When += is + applied to a variable for which the iinntteeggeerr attribute has been set, the + variable's current value and _v_a_l_u_e are each evaluated as arithmetic ex- + pressions, and the sum of the results is assigned as the variable's + value. The current value is usually an integer constant, but may be an + expression. When += is applied to an array variable using compound as- + signment (see AArrrraayyss below), the variable's value is not unset (as it + is when using =), and new values are appended to the array beginning at one greater than the array's maximum index (for indexed arrays) or added as additional key-value pairs in an associative array. When ap- plied to a string-valued variable, _v_a_l_u_e is expanded and appended to @@ -742,100 +781,106 @@ PPAARRAAMMEETTEERRSS declare -n ref=$1 - inside the function creates a nameref variable rreeff whose value is the - variable name passed as the first argument. References and assignments - to rreeff, and changes to its attributes, are treated as references, as- - signments, and attribute modifications to the variable whose name was - passed as $$11. If the control variable in a ffoorr loop has the nameref - attribute, the list of words can be a list of shell variables, and a - name reference will be established for each word in the list, in turn, + inside the function creates a local nameref variable rreeff whose value is + the variable name passed as the first argument. References and assign- + ments to rreeff, and changes to its attributes, are treated as references, + assignments, and attribute modifications to the variable whose name was + passed as $$11. If the control variable in a ffoorr loop has the nameref + attribute, the list of words can be a list of shell variables, and a + name reference will be established for each word in the list, in turn, when the loop is executed. Array variables cannot be given the nnaammeerreeff - attribute. However, nameref variables can reference array variables - and subscripted array variables. Namerefs can be unset using the --nn - option to the uunnsseett builtin. Otherwise, if uunnsseett is executed with the - name of a nameref variable as an argument, the variable referenced by + attribute. However, nameref variables can reference array variables + and subscripted array variables. Namerefs can be unset using the --nn + option to the uunnsseett builtin. Otherwise, if uunnsseett is executed with the + name of a nameref variable as an argument, the variable referenced by the nameref variable will be unset. PPoossiittiioonnaall PPaarraammeetteerrss - A _p_o_s_i_t_i_o_n_a_l _p_a_r_a_m_e_t_e_r is a parameter denoted by one or more digits, + A _p_o_s_i_t_i_o_n_a_l _p_a_r_a_m_e_t_e_r is a parameter denoted by one or more digits, other than the single digit 0. Positional parameters are assigned from - the shell's arguments when it is invoked, and may be reassigned using - the sseett builtin command. Positional parameters may not be assigned to - with assignment statements. The positional parameters are temporarily + the shell's arguments when it is invoked, and may be reassigned using + the sseett builtin command. Positional parameters may not be assigned to + with assignment statements. The positional parameters are temporarily replaced when a shell function is executed (see FFUUNNCCTTIIOONNSS below). - When a positional parameter consisting of more than a single digit is - expanded, it must be enclosed in braces (see EEXXPPAANNSSIIOONN below). + When a positional parameter consisting of more than a single digit is + expanded, it must be enclosed in braces (see EEXXPPAANNSSIIOONN below). Without + braces, a digit following $ can only refer to one of the first nine po- + sitional parameters ($$11--$$99) or the special parameter $$00 (see the next + section). SSppeecciiaall PPaarraammeetteerrss The shell treats several parameters specially. These parameters may - only be referenced; assignment to them is not allowed. - ** Expands to the positional parameters, starting from one. When - the expansion is not within double quotes, each positional para- - meter expands to a separate word. In contexts where these ex- - pansions are performed, those words are subject to further word - splitting and pathname expansion. When the expansion occurs - within double quotes, it expands to a single word with the value - of each parameter separated by the first character of the IIFFSS - special variable. That is, ""$$**"" is equivalent to ""$$11_c$$22_c......"", - where _c is the first character of the value of the IIFFSS variable. - If IIFFSS is unset, the parameters are separated by spaces. If IIFFSS - is null, the parameters are joined without intervening separa- - tors. - @@ Expands to the positional parameters, starting from one. In - contexts where word splitting is performed, this expands each + only be referenced; assignment to them is not allowed. Special parame- + ters are denoted by one of the following characters. + ** ($$**) Expands to the positional parameters, starting from one. + When the expansion is not within double quotes, each positional + parameter expands to a separate word. In contexts where word + expansions are performed, those words are subject to further + word splitting and pathname expansion. When the expansion oc- + curs within double quotes, it expands to a single word with the + value of each parameter separated by the first character of the + IIFFSS variable. That is, ""$$**"" is equivalent to ""$$11_c$$22_c......"", where + _c is the first character of the value of the IIFFSS variable. If + IIFFSS is unset, the parameters are separated by spaces. If IIFFSS is + null, the parameters are joined without intervening separators. + @@ ($$@@) Expands to the positional parameters, starting from one. + In contexts where word splitting is performed, this expands each positional parameter to a separate word; if not within double quotes, these words are subject to word splitting. In contexts - where word splitting is not performed, this expands to a single - word with each positional parameter separated by a space. When - the expansion occurs within double quotes, each parameter ex- - pands to a separate word. That is, ""$$@@"" is equivalent to - ""$$11"" ""$$22"" ...... If the double-quoted expansion occurs within a - word, the expansion of the first parameter is joined with the - beginning part of the original word, and the expansion of the - last parameter is joined with the last part of the original - word. When there are no positional parameters, ""$$@@"" and $$@@ ex- - pand to nothing (i.e., they are removed). - ## Expands to the number of positional parameters in decimal. - ?? Expands to the exit status of the most recently executed com- - mand. - -- Expands to the current option flags as specified upon invoca- - tion, by the sseett builtin command, or those set by the shell it- - self (such as the --ii option). - $$ Expands to the process ID of the shell. In a subshell, it ex- - pands to the process ID of the current shell, not the subshell. - !! Expands to the process ID of the job most recently placed into - the background, whether executed as an asynchronous command or - using the bbgg builtin (see JJOOBB CCOONNTTRROOLL below). - 00 Expands to the name of the shell or shell script. This is set - at shell initialization. If bbaasshh is invoked with a file of com- - mands, $$00 is set to the name of that file. If bbaasshh is started - with the --cc option, then $$00 is set to the first argument after - the string to be executed, if one is present. Otherwise, it is - set to the filename used to invoke bbaasshh, as given by argument - zero. + where word splitting is not performed, such as the value portion + of an assignment statement, this expands to a single word with + each positional parameter separated by a space. When the expan- + sion occurs within double quotes, and word splitting is per- + formed, each parameter expands to a separate word. That is, + ""$$@@"" is equivalent to ""$$11"" ""$$22"" ...... If the double-quoted expan- + sion occurs within a word, the expansion of the first parameter + is joined with the expansion of the beginning part of the origi- + nal word, and the expansion of the last parameter is joined with + the expansion of the last part of the original word. When there + are no positional parameters, ""$$@@"" and $$@@ expand to nothing + (i.e., they are removed). + ## ($$##) Expands to the number of positional parameters in decimal. + ?? ($$??) Expands to the exit status of the most recently executed + command. + -- ($$--) Expands to the current option flags as specified upon invo- + cation, by the sseett builtin command, or those set by the shell + itself (such as the --ii option). + $$ ($$$$) Expands to the process ID of the shell. In a subshell, it + expands to the process ID of the parent shell, not the subshell. + !! ($$!!)Expands to the process ID of the job most recently placed + into the background, whether executed as an asynchronous command + or using the bbgg builtin (see JJOOBB CCOONNTTRROOLL below). + 00 ($$00) Expands to the name of the shell or shell script. This is + set at shell initialization. If bbaasshh is invoked with a file of + commands, $$00 is set to the name of that file. If bbaasshh is + started with the --cc option, then $$00 is set to the first argument + after the string to be executed, if one is present. Otherwise, + it is set to the filename used to invoke bbaasshh, as given by argu- + ment zero. SShheellll VVaarriiaabblleess - The following variables are set by the shell: - - __ At shell startup, set to the pathname used to invoke the shell - or shell script being executed as passed in the environment or - argument list. Subsequently, expands to the last argument to - the previous simple command executed in the foreground, after - expansion. Also set to the full pathname used to invoke each - command executed and placed in the environment exported to that - command. When checking mail, this parameter holds the name of - the mail file currently being checked. - BBAASSHH Expands to the full filename used to invoke this instance of + The shell sets following variables: + + __ ($$__, an underscore) This has a number of meanings depending on + context. At shell startup, __ is set to the pathname used to in- + voke the shell or shell script being executed as passed in the + environment or argument list. Subsequently, it expands to the + last argument to the previous simple command executed in the + foreground, after expansion. It is also set to the full path- + name used to invoke each command executed and placed in the en- + vironment exported to that command. When checking mail, $$__ ex- + pands to the name of the mail file currently being checked. + BBAASSHH Expands to the full filename used to invoke this instance of bbaasshh. BBAASSHHOOPPTTSS - A colon-separated list of enabled shell options. Each word in - the list is a valid argument for the --ss option to the sshhoopptt + A colon-separated list of enabled shell options. Each word in + the list is a valid argument for the --ss option to the sshhoopptt builtin command (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). The options - appearing in BBAASSHHOOPPTTSS are those reported as _o_n by sshhoopptt. If - this variable is in the environment when bbaasshh starts up, each - shell option in the list will be enabled before reading any - startup files. This variable is read-only. + appearing in BBAASSHHOOPPTTSS are those reported as _o_n by sshhoopptt. If + this variable is in the environment when bbaasshh starts up, the + shell enables each option in the list before reading any startup + files. This variable is read-only. BBAASSHHPPIIDD Expands to the process ID of the current bbaasshh process. This differs from $$$$ under certain circumstances, such as subshells @@ -846,54 +891,54 @@ PPAARRAAMMEETTEERRSS An associative array variable whose members correspond to the internal list of aliases as maintained by the aalliiaass builtin. Elements added to this array appear in the alias list; however, - unsetting array elements currently does not cause aliases to be - removed from the alias list. If BBAASSHH__AALLIIAASSEESS is unset, it loses - its special properties, even if it is subsequently reset. + unsetting array elements currently does not remove aliases from + the alias list. If BBAASSHH__AALLIIAASSEESS is unset, it loses its special + properties, even if it is subsequently reset. BBAASSHH__AARRGGCC - An array variable whose values are the number of parameters in + An array variable whose values are the number of parameters in each frame of the current bbaasshh execution call stack. The number - of parameters to the current subroutine (shell function or - script executed with .. or ssoouurrccee) is at the top of the stack. - When a subroutine is executed, the number of parameters passed + of parameters to the current subroutine (shell function or + script executed with .. or ssoouurrccee) is at the top of the stack. + When a subroutine is executed, the number of parameters passed is pushed onto BBAASSHH__AARRGGCC. The shell sets BBAASSHH__AARRGGCC only when in extended debugging mode (see the description of the eexxttddeebbuugg op- - tion to the sshhoopptt builtin below). Setting eexxttddeebbuugg after the + tion to the sshhoopptt builtin below). Setting eexxttddeebbuugg after the shell has started to execute a script, or referencing this vari- - able when eexxttddeebbuugg is not set, may result in inconsistent val- + able when eexxttddeebbuugg is not set, may result in inconsistent val- ues. Assignments to BBAASSHH__AARRGGCC have no effect, and it may not be unset. BBAASSHH__AARRGGVV - An array variable containing all of the parameters in the cur- + An array variable containing all of the parameters in the cur- rent bbaasshh execution call stack. The final parameter of the last - subroutine call is at the top of the stack; the first parameter + subroutine call is at the top of the stack; the first parameter of the initial call is at the bottom. When a subroutine is exe- - cuted, the parameters supplied are pushed onto BBAASSHH__AARRGGVV. The - shell sets BBAASSHH__AARRGGVV only when in extended debugging mode (see - the description of the eexxttddeebbuugg option to the sshhoopptt builtin be- - low). Setting eexxttddeebbuugg after the shell has started to execute a - script, or referencing this variable when eexxttddeebbuugg is not set, - may result in inconsistent values. Assignments to BBAASSHH__AARRGGVV + cuted, the shell pushes the supplied parameters onto BBAASSHH__AARRGGVV. + The shell sets BBAASSHH__AARRGGVV only when in extended debugging mode + (see the description of the eexxttddeebbuugg option to the sshhoopptt builtin + below). Setting eexxttddeebbuugg after the shell has started to execute + a script, or referencing this variable when eexxttddeebbuugg is not set, + may result in inconsistent values. Assignments to BBAASSHH__AARRGGVV have no effect, and it may not be unset. BBAASSHH__AARRGGVV00 - When referenced, this variable expands to the name of the shell + When referenced, this variable expands to the name of the shell or shell script (identical to $$00; see the description of special - parameter 0 above). Assignment to BBAASSHH__AARRGGVV00 causes the value - assigned to also be assigned to $$00. If BBAASSHH__AARRGGVV00 is unset, it - loses its special properties, even if it is subsequently reset. + parameter 0 above). Assigning a value to BBAASSHH__AARRGGVV00 assigns the + same value to $$00. If BBAASSHH__AARRGGVV00 is unset, it loses its special + properties, even if it is subsequently reset. BBAASSHH__CCMMDDSS An associative array variable whose members correspond to the internal hash table of commands as maintained by the hhaasshh - builtin. Elements added to this array appear in the hash table; - however, unsetting array elements currently does not cause com- - mand names to be removed from the hash table. If BBAASSHH__CCMMDDSS is - unset, it loses its special properties, even if it is subse- - quently reset. + builtin. Adding elements to this array makes them appear in the + hash table; however, unsetting array elements currently does not + remove command names from the hash table. If BBAASSHH__CCMMDDSS is un- + set, it loses its special properties, even if it is subsequently + reset. BBAASSHH__CCOOMMMMAANNDD - The command currently being executed or about to be executed, - unless the shell is executing a command as the result of a trap, - in which case it is the command executing at the time of the - trap. If BBAASSHH__CCOOMMMMAANNDD is unset, it loses its special proper- - ties, even if it is subsequently reset. + Expands to the command currently being executed or about to be + executed, unless the shell is executing a command as the result + of a trap, in which case it is the command executing at the time + of the trap. If BBAASSHH__CCOOMMMMAANNDD is unset, it loses its special + properties, even if it is subsequently reset. BBAASSHH__EEXXEECCUUTTIIOONN__SSTTRRIINNGG The command argument to the --cc invocation option. BBAASSHH__LLIINNEENNOO @@ -905,41 +950,40 @@ PPAARRAAMMEETTEERRSS tion). Use LLIINNEENNOO to obtain the current line number. Assign- ments to BBAASSHH__LLIINNEENNOO have no effect, and it may not be unset. BBAASSHH__LLOOAADDAABBLLEESS__PPAATTHH - A colon-separated list of directories in which the shell looks - for dynamically loadable builtins specified by the eennaabbllee com- - mand. - BBAASSHH__RREEMMAATTCCHH - An array variable whose members are assigned by the ==~~ binary - operator to the [[[[ conditional command. The element with index - 0 is the portion of the string matching the entire regular ex- - pression. The element with index _n is the portion of the string - matching the _nth parenthesized subexpression. + A colon-separated list of directories in which the eennaabbllee com- + mand. looks for dynamically loadable builtins. BBAASSHH__MMOONNOOSSEECCOONNDDSS Each time this variable is referenced, it expands to the value returned by the system's monotonic clock, if one is available. If there is no monotonic clock, this is equivalent to EEPPOOCCHHSSEECC-- OONNDDSS. If BBAASSHH__MMOONNOOSSEECCOONNDDSS is unset, it loses its special prop- erties, even if it is subsequently reset. + BBAASSHH__RREEMMAATTCCHH + An array variable whose members are assigned by the ==~~ binary + operator to the [[[[ conditional command. The element with index + 0 is the portion of the string matching the entire regular ex- + pression. The element with index _n is the portion of the string + matching the _nth parenthesized subexpression. BBAASSHH__SSOOUURRCCEE - An array variable whose members are the source filenames where - the corresponding shell function names in the FFUUNNCCNNAAMMEE array + An array variable whose members are the source filenames where + the corresponding shell function names in the FFUUNNCCNNAAMMEE array variable are defined. The shell function $${{FFUUNNCCNNAAMMEE[[_$_i]]}} is de- - fined in the file $${{BBAASSHH__SSOOUURRCCEE[[_$_i]]}} and called from - $${{BBAASSHH__SSOOUURRCCEE[[_$_i_+_1]]}}. Assignments to BBAASSHH__SSOOUURRCCEE have no ef- + fined in the file $${{BBAASSHH__SSOOUURRCCEE[[_$_i]]}} and called from + $${{BBAASSHH__SSOOUURRCCEE[[_$_i_+_1]]}}. Assignments to BBAASSHH__SSOOUURRCCEE have no ef- fect, and it may not be unset. BBAASSHH__SSUUBBSSHHEELLLL - Incremented by one within each subshell or subshell environment - when the shell begins executing in that environment. The ini- - tial value is 0. If BBAASSHH__SSUUBBSSHHEELLLL is unset, it loses its spe- + Incremented by one within each subshell or subshell environment + when the shell begins executing in that environment. The ini- + tial value is 0. If BBAASSHH__SSUUBBSSHHEELLLL is unset, it loses its spe- cial properties, even if it is subsequently reset. BBAASSHH__TTRRAAPPSSIIGG - Set to the signal number corresponding to the trap action being - executed during its execution. See the description of ttrraapp un- - der SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below for information about signal + Set to the signal number corresponding to the trap action being + executed during its execution. See the description of ttrraapp un- + der SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below for information about signal numbers and trap execution. BBAASSHH__VVEERRSSIINNFFOO A readonly array variable whose members hold version information - for this instance of bbaasshh. The values assigned to the array + for this instance of bbaasshh. The values assigned to the array members are as follows: BBAASSHH__VVEERRSSIINNFFOO[[0]] The major version number (the _r_e_l_e_a_s_e). BBAASSHH__VVEERRSSIINNFFOO[[1]] The minor version number (the _v_e_r_s_i_o_n). @@ -948,94 +992,96 @@ PPAARRAAMMEETTEERRSS BBAASSHH__VVEERRSSIINNFFOO[[4]] The release status (e.g., _b_e_t_a). BBAASSHH__VVEERRSSIINNFFOO[[5]] The value of MMAACCHHTTYYPPEE. BBAASSHH__VVEERRSSIIOONN - Expands to a string describing the version of this instance of - bbaasshh. + Expands to a string describing the version of this instance of + bbaasshh (e.g., 5.2.37(3)-release). CCOOMMPP__CCWWOORRDD - An index into $${{CCOOMMPP__WWOORRDDSS}} of the word containing the current + An index into $${{CCOOMMPP__WWOORRDDSS}} of the word containing the current cursor position. This variable is available only in shell func- - tions invoked by the programmable completion facilities (see + tions invoked by the programmable completion facilities (see PPrrooggrraammmmaabbllee CCoommpplleettiioonn below). CCOOMMPP__KKEEYY The key (or final key of a key sequence) used to invoke the cur- - rent completion function. + rent completion function. This variable is available only in + shell functions and external commands invoked by the programma- + ble completion facilities (see PPrrooggrraammmmaabbllee CCoommpplleettiioonn below). CCOOMMPP__LLIINNEE - The current command line. This variable is available only in - shell functions and external commands invoked by the programma- + The current command line. This variable is available only in + shell functions and external commands invoked by the programma- ble completion facilities (see PPrrooggrraammmmaabbllee CCoommpplleettiioonn below). CCOOMMPP__PPOOIINNTT - The index of the current cursor position relative to the begin- - ning of the current command. If the current cursor position is + The index of the current cursor position relative to the begin- + ning of the current command. If the current cursor position is at the end of the current command, the value of this variable is - equal to $${{##CCOOMMPP__LLIINNEE}}. This variable is available only in - shell functions and external commands invoked by the programma- + equal to $${{##CCOOMMPP__LLIINNEE}}. This variable is available only in + shell functions and external commands invoked by the programma- ble completion facilities (see PPrrooggrraammmmaabbllee CCoommpplleettiioonn below). CCOOMMPP__TTYYPPEE - Set to an integer value corresponding to the type of completion - attempted that caused a completion function to be called: _T_A_B, - for normal completion, _?, for listing completions after succes- - sive tabs, _!, for listing alternatives on partial word comple- - tion, _@, to list completions if the word is not unmodified, or - _%, for menu completion. This variable is available only in - shell functions and external commands invoked by the programma- + Set to an integer value corresponding to the type of attempted + completion that caused a completion function to be called: _T_A_B, + for normal completion, _?, for listing completions after succes- + sive tabs, _!, for listing alternatives on partial word comple- + tion, _@, to list completions if the word is not unmodified, or + _%, for menu completion. This variable is available only in + shell functions and external commands invoked by the programma- ble completion facilities (see PPrrooggrraammmmaabbllee CCoommpplleettiioonn below). CCOOMMPP__WWOORRDDBBRREEAAKKSS - The set of characters that the rreeaaddlliinnee library treats as word - separators when performing word completion. If CCOOMMPP__WWOORRDDBBRREEAAKKSS - is unset, it loses its special properties, even if it is subse- + The set of characters that the rreeaaddlliinnee library treats as word + separators when performing word completion. If CCOOMMPP__WWOORRDDBBRREEAAKKSS + is unset, it loses its special properties, even if it is subse- quently reset. CCOOMMPP__WWOORRDDSS - An array variable (see AArrrraayyss below) consisting of the individ- - ual words in the current command line. The line is split into - words as rreeaaddlliinnee would split it, using CCOOMMPP__WWOORRDDBBRREEAAKKSS as de- - scribed above. This variable is available only in shell func- - tions invoked by the programmable completion facilities (see + An array variable (see AArrrraayyss below) consisting of the individ- + ual words in the current command line. The line is split into + words as rreeaaddlliinnee would split it, using CCOOMMPP__WWOORRDDBBRREEAAKKSS as de- + scribed above. This variable is available only in shell func- + tions invoked by the programmable completion facilities (see PPrrooggrraammmmaabbllee CCoommpplleettiioonn below). - CCOOPPRROOCC An array variable (see AArrrraayyss below) created to hold the file - descriptors for output from and input to an unnamed coprocess + CCOOPPRROOCC An array variable (see AArrrraayyss below) created to hold the file + descriptors for output from and input to an unnamed coprocess (see CCoopprroocceesssseess above). DDIIRRSSTTAACCKK An array variable (see AArrrraayyss below) containing the current con- - tents of the directory stack. Directories appear in the stack - in the order they are displayed by the ddiirrss builtin. Assigning + tents of the directory stack. Directories appear in the stack + in the order they are displayed by the ddiirrss builtin. Assigning to members of this array variable may be used to modify directo- - ries already in the stack, but the ppuusshhdd and ppooppdd builtins must + ries already in the stack, but the ppuusshhdd and ppooppdd builtins must be used to add and remove directories. Assignment to this vari- - able will not change the current directory. If DDIIRRSSTTAACCKK is un- + able will not change the current directory. If DDIIRRSSTTAACCKK is un- set, it loses its special properties, even if it is subsequently reset. EEPPOOCCHHRREEAALLTTIIMMEE Each time this parameter is referenced, it expands to the number - of seconds since the Unix Epoch (see _t_i_m_e(3)) as a floating + of seconds since the Unix Epoch (see _t_i_m_e(3)) as a floating point value with micro-second granularity. Assignments to - EEPPOOCCHHRREEAALLTTIIMMEE are ignored. If EEPPOOCCHHRREEAALLTTIIMMEE is unset, it loses + EEPPOOCCHHRREEAALLTTIIMMEE are ignored. If EEPPOOCCHHRREEAALLTTIIMMEE is unset, it loses its special properties, even if it is subsequently reset. EEPPOOCCHHSSEECCOONNDDSS Each time this parameter is referenced, it expands to the number - of seconds since the Unix Epoch (see _t_i_m_e(3)). Assignments to - EEPPOOCCHHSSEECCOONNDDSS are ignored. If EEPPOOCCHHSSEECCOONNDDSS is unset, it loses + of seconds since the Unix Epoch (see _t_i_m_e(3)). Assignments to + EEPPOOCCHHSSEECCOONNDDSS are ignored. If EEPPOOCCHHSSEECCOONNDDSS is unset, it loses its special properties, even if it is subsequently reset. - EEUUIIDD Expands to the effective user ID of the current user, initial- + EEUUIIDD Expands to the effective user ID of the current user, initial- ized at shell startup. This variable is readonly. FFUUNNCCNNAAMMEE - An array variable containing the names of all shell functions + An array variable containing the names of all shell functions currently in the execution call stack. The element with index 0 is the name of any currently-executing shell function. The bot- - tom-most element (the one with the highest index) is "main". - This variable exists only when a shell function is executing. - Assignments to FFUUNNCCNNAAMMEE have no effect. If FFUUNNCCNNAAMMEE is unset, - it loses its special properties, even if it is subsequently re- + tom-most element (the one with the highest index) is "main". + This variable exists only when a shell function is executing. + Assignments to FFUUNNCCNNAAMMEE have no effect. If FFUUNNCCNNAAMMEE is unset, + it loses its special properties, even if it is subsequently re- set. - This variable can be used with BBAASSHH__LLIINNEENNOO and BBAASSHH__SSOOUURRCCEE. - Each element of FFUUNNCCNNAAMMEE has corresponding elements in + This variable can be used with BBAASSHH__LLIINNEENNOO and BBAASSHH__SSOOUURRCCEE. + Each element of FFUUNNCCNNAAMMEE has corresponding elements in BBAASSHH__LLIINNEENNOO and BBAASSHH__SSOOUURRCCEE to describe the call stack. For in- - stance, $${{FFUUNNCCNNAAMMEE[[_$_i]]}} was called from the file - $${{BBAASSHH__SSOOUURRCCEE[[_$_i_+_1]]}} at line number $${{BBAASSHH__LLIINNEENNOO[[_$_i]]}}. The + stance, $${{FFUUNNCCNNAAMMEE[[_$_i]]}} was called from the file + $${{BBAASSHH__SSOOUURRCCEE[[_$_i_+_1]]}} at line number $${{BBAASSHH__LLIINNEENNOO[[_$_i]]}}. The ccaalllleerr builtin displays the current call stack using this infor- mation. - GGRROOUUPPSS An array variable containing the list of groups of which the + GGRROOUUPPSS An array variable containing the list of groups of which the current user is a member. Assignments to GGRROOUUPPSS have no effect. - If GGRROOUUPPSS is unset, it loses its special properties, even if it + If GGRROOUUPPSS is unset, it loses its special properties, even if it is subsequently reset. HHIISSTTCCMMDD The history number, or index in the history list, of the current @@ -1045,43 +1091,44 @@ PPAARRAAMMEETTEERRSS HHOOSSTTNNAAMMEE Automatically set to the name of the current host. HHOOSSTTTTYYPPEE - Automatically set to a string that uniquely describes the type - of machine on which bbaasshh is executing. The default is system- + Automatically set to a string that uniquely describes the type + of machine on which bbaasshh is executing. The default is system- dependent. - LLIINNEENNOO Each time this parameter is referenced, the shell substitutes a - decimal number representing the current sequential line number - (starting with 1) within a script or function. When not in a - script or function, the value substituted is not guaranteed to + LLIINNEENNOO Each time this parameter is referenced, the shell substitutes a + decimal number representing the current sequential line number + (starting with 1) within a script or function. When not in a + script or function, the value substituted is not guaranteed to be meaningful. If LLIINNEENNOO is unset, it loses its special proper- ties, even if it is subsequently reset. MMAACCHHTTYYPPEE - Automatically set to a string that fully describes the system - type on which bbaasshh is executing, in the standard GNU _c_p_u_-_c_o_m_- + Automatically set to a string that fully describes the system + type on which bbaasshh is executing, in the standard GNU _c_p_u_-_c_o_m_- _p_a_n_y_-_s_y_s_t_e_m format. The default is system-dependent. MMAAPPFFIILLEE - An array variable (see AArrrraayyss below) created to hold the text + An array variable (see AArrrraayyss below) created to hold the text read by the mmaappffiillee builtin when no variable name is supplied. OOLLDDPPWWDD The previous working directory as set by the ccdd command. - OOPPTTAARRGG The value of the last option argument processed by the ggeettooppttss + OOPPTTAARRGG The value of the last option argument processed by the ggeettooppttss builtin command (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). - OOPPTTIINNDD The index of the next argument to be processed by the ggeettooppttss + OOPPTTIINNDD The index of the next argument to be processed by the ggeettooppttss builtin command (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). - OOSSTTYYPPEE Automatically set to a string that describes the operating sys- - tem on which bbaasshh is executing. The default is system-depen- + OOSSTTYYPPEE Automatically set to a string that describes the operating sys- + tem on which bbaasshh is executing. The default is system-depen- dent. PPIIPPEESSTTAATTUUSS - An array variable (see AArrrraayyss below) containing a list of exit - status values from the processes in the most-recently-executed - foreground pipeline, which may consist of only a simple command + An array variable (see AArrrraayyss below) containing a list of exit + status values from the processes in the most-recently-executed + foreground pipeline, which may consist of only a simple command (see SSHHEELLLL GGRRAAMMMMAARR above). - PPPPIIDD The process ID of the shell's parent. This variable is read- + PPPPIIDD The process ID of the shell's parent. This variable is read- only. PPWWDD The current working directory as set by the ccdd command. - RRAANNDDOOMM Each time this parameter is referenced, it expands to a random - integer between 0 and 32767. Assigning a value to RRAANNDDOOMM ini- - tializes (seeds) the sequence of random numbers. If RRAANNDDOOMM is - unset, it loses its special properties, even if it is subse- - quently reset. + RRAANNDDOOMM Each time this parameter is referenced, it expands to a random + integer between 0 and 32767. Assigning a value to RRAANNDDOOMM ini- + tializes (seeds) the sequence of random numbers. Seeding the + random number generator with the same constant value will pro- + duce the same sequence of values. If RRAANNDDOOMM is unset, it loses + its special properties, even if it is subsequently reset. RREEAADDLLIINNEE__AARRGGUUMMEENNTT Any numeric argument given to a readline command that was de- fined using "bind -x" (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) when it @@ -1113,47 +1160,48 @@ PPAARRAAMMEETTEERRSS the list is a valid argument for the --oo option to the sseett builtin command (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). The options appearing in SSHHEELLLLOOPPTTSS are those reported as _o_n by sseett --oo. If - this variable is in the environment when bbaasshh starts up, each - shell option in the list will be enabled before reading any - startup files. This variable is read-only. + this variable is in the environment when bbaasshh starts up, the + shell enables each option in the list before reading any startup + files. This variable is read-only. SSHHLLVVLL Incremented by one each time an instance of bbaasshh is started. SSRRAANNDDOOMM - This variable expands to a 32-bit pseudo-random number each time - it is referenced. The random number generator is not linear on - systems that support _/_d_e_v_/_u_r_a_n_d_o_m or _a_r_c_4_r_a_n_d_o_m(3), so each re- - turned number has no relationship to the numbers preceding it. + Each time it is referenced, this variable expands to a 32-bit + pseudo-random number. The random number generator is not linear + on systems that support _/_d_e_v_/_u_r_a_n_d_o_m or _a_r_c_4_r_a_n_d_o_m(3), so each + returned number has no relationship to the numbers preceding it. The random number generator cannot be seeded, so assignments to this variable have no effect. If SSRRAANNDDOOMM is unset, it loses its special properties, even if it is subsequently reset. UUIIDD Expands to the user ID of the current user, initialized at shell startup. This variable is readonly. - The following variables are used by the shell. In some cases, bbaasshh as- - signs a default value to a variable; these cases are noted below. + The shell uses the following variables. In some cases, bbaasshh assigns a + default value to a variable; these cases are noted below. BBAASSHH__CCOOMMPPAATT - The value is used to set the shell's compatibility level. See - SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE below for a description of the various + The value is used to set the shell's compatibility level. See + SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE below for a description of the various compatibility levels and their effects. The value may be a dec- - imal number (e.g., 4.2) or an integer (e.g., 42) corresponding - to the desired compatibility level. If BBAASSHH__CCOOMMPPAATT is unset or - set to the empty string, the compatibility level is set to the - default for the current version. If BBAASSHH__CCOOMMPPAATT is set to a - value that is not one of the valid compatibility levels, the - shell prints an error message and sets the compatibility level - to the default for the current version. A subset of the valid - values correspond to the compatibility levels described below - under SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE. For example, 4.2 and 42 are - valid values that correspond to the ccoommppaatt4422 sshhoopptt option and - set the compatibility level to 42. The current version is also + imal number (e.g., 4.2) or an integer (e.g., 42) corresponding + to the desired compatibility level. If BBAASSHH__CCOOMMPPAATT is unset or + set to the empty string, the compatibility level is set to the + default for the current version. If BBAASSHH__CCOOMMPPAATT is set to a + value that is not one of the valid compatibility levels, the + shell prints an error message and sets the compatibility level + to the default for the current version. A subset of the valid + values correspond to the compatibility levels described below + under SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE. For example, 4.2 and 42 are + valid values that correspond to the ccoommppaatt4422 sshhoopptt option and + set the compatibility level to 42. The current version is also a valid value. BBAASSHH__EENNVV - If this parameter is set when bbaasshh is executing a shell script, - its value is interpreted as a filename containing commands to - initialize the shell, as in _~_/_._b_a_s_h_r_c. The value of BBAASSHH__EENNVV is - subjected to parameter expansion, command substitution, and - arithmetic expansion before being interpreted as a filename. - PPAATTHH is not used to search for the resultant filename. + If this parameter is set when bbaasshh is executing a shell script, + its expanded value is interpreted as a filename containing com- + mands to initialize the shell before it reads and executes com- + mands from the script. The value of BBAASSHH__EENNVV is subjected to + parameter expansion, command substitution, and arithmetic expan- + sion before being interpreted as a filename. PPAATTHH is not used + to search for the resultant filename. BBAASSHH__XXTTRRAACCEEFFDD If set to an integer corresponding to a valid file descriptor, bbaasshh will write the trace output generated when "set -x" is en- @@ -1164,8 +1212,8 @@ PPAARRAAMMEETTEERRSS BBAASSHH__XXTTRRAACCEEFFDD to 2 (the standard error file descriptor) and then unsetting it will result in the standard error being closed. CCDDPPAATTHH The search path for the ccdd command. This is a colon-separated - list of directories in which the shell looks for destination di- - rectories specified by the ccdd command. A sample value is + list of directories where the shell looks for directories speci- + fied as arguments to the ccdd command. A sample value is ".:~:/usr". CCHHIILLDD__MMAAXX Set the number of exited child status values for the shell to @@ -1190,7 +1238,7 @@ PPAARRAAMMEETTEERRSS above) when an interactive shell is invoked in _p_o_s_i_x _m_o_d_e. EEXXEECCIIGGNNOORREE A colon-separated list of shell patterns (see PPaatttteerrnn MMaattcchhiinngg) - defining the list of filenames to be ignored by command search + defining the set of filenames to be ignored by command search using PPAATTHH. Files whose full pathnames match one of these pat- terns are not considered executable files for the purposes of completion and command execution via PPAATTHH lookup. This does not @@ -1213,45 +1261,49 @@ PPAARRAAMMEETTEERRSS A colon-separated list of patterns defining the set of file names to be ignored by pathname expansion. If a file name matched by a pathname expansion pattern also matches one of the - patterns in GGLLOOBBIIGGNNOORREE, it is removed from the list of matches. + patterns in GGLLOOBBIIGGNNOORREE, it is removed from the list of matches. + The pattern matching honors the setting of the eexxttgglloobb shell op- + tion. GGLLOOBBSSOORRTT - Control how the results of pathname expansion are sorted. The - value of this variable specifies the sort criteria and sort or- - der for the results of pathname expansion. If this variable is - unset or set to the null string, pathname expansion uses the + Controls how the results of pathname expansion are sorted. The + value of this variable specifies the sort criteria and sort or- + der for the results of pathname expansion. If this variable is + unset or set to the null string, pathname expansion uses the historical behavior of sorting by name. - If set, a valid value begins with an optional _+, which is ig- + If set, a valid value begins with an optional _+, which is ig- nored, or _-, which reverses the sort order from ascending to de- - scending, followed by a sort specifier. The valid sort speci- - fiers are _n_a_m_e, _n_u_m_e_r_i_c, _s_i_z_e, _m_t_i_m_e, _a_t_i_m_e, _c_t_i_m_e, and _b_l_o_c_k_s, + scending, followed by a sort specifier. The valid sort speci- + fiers are _n_a_m_e, _n_u_m_e_r_i_c, _s_i_z_e, _m_t_i_m_e, _a_t_i_m_e, _c_t_i_m_e, and _b_l_o_c_k_s, which sort the files on name, names in numeric rather than lexi- - cographic order, file size, modification time, access time, in- - ode change time, and number of blocks, respectively. If any of - the non-name keys compare as equal (e.g., if two files are the - same size), sorting uses the name as a secondary sort key. For - example, a value of _-_m_t_i_m_e sorts the results in descending order - by modification time (newest first). - - The _n_u_m_e_r_i_c specifier treats names consisting solely of digits - as numbers and sorts them using the numeric value (so "2" will - sort before "10", for example). When using _n_u_m_e_r_i_c, names con- - taining non-digits sort after all the all-digit names and are + cographic order, file size, modification time, access time, in- + ode change time, and number of blocks, respectively. If any of + the non-name keys compare as equal (e.g., if two files are the + same size), sorting uses the name as a secondary sort key. + + For example, a value of _-_m_t_i_m_e sorts the results in descending + order by modification time (newest first). + + The _n_u_m_e_r_i_c specifier treats names consisting solely of digits + as numbers and sorts them using the numeric value (so "2" will + sort before "10", for example). When using _n_u_m_e_r_i_c, names con- + taining non-digits sort after all the all-digit names and are sorted by name using the traditional behavior. - A sort specifier of _n_o_s_o_r_t disables sorting completely; the re- + A sort specifier of _n_o_s_o_r_t disables sorting completely; the re- sults are returned in the order they are read from the file sys- - tem, and any leading _+ or _- is ignored. If the sort specifier - is missing, it defaults to _n_a_m_e, so a value of _+ is equivalent - to the null string, and a value of _- sorts by name in descending - order. Any invalid value restores the historical sorting behav- - ior. + tem, and any leading _+ or _- is ignored. + + If the sort specifier is missing, it defaults to _n_a_m_e, so a + value of _+ is equivalent to the null string, and a value of _- + sorts by name in descending order. Any invalid value restores + the historical sorting behavior. HHIISSTTCCOONNTTRROOLL A colon-separated list of values controlling how commands are saved on the history list. If the list of values includes _i_g_n_o_r_e_s_p_a_c_e, lines which begin with a ssppaaccee character are not saved in the history list. A value of _i_g_n_o_r_e_d_u_p_s causes lines - matching the previous history entry to not be saved. A value of + matching the previous history entry not to be saved. A value of _i_g_n_o_r_e_b_o_t_h is shorthand for _i_g_n_o_r_e_s_p_a_c_e and _i_g_n_o_r_e_d_u_p_s. A value of _e_r_a_s_e_d_u_p_s causes all previous lines matching the current line to be removed from the history list before that line is saved. @@ -1260,37 +1312,41 @@ PPAARRAAMMEETTEERRSS shell parser are saved on the history list, subject to the value of HHIISSTTIIGGNNOORREE. The second and subsequent lines of a multi-line compound command are not tested, and are added to the history - regardless of the value of HHIISSTTCCOONNTTRROOLL. + regardless of the value of HHIISSTTCCOONNTTRROOLL if the first line of the + command was saved. If the first line was not saved, the second + and subsequent lines of the command are not saved either. HHIISSTTFFIILLEE The name of the file in which command history is saved (see HHIISS-- TTOORRYY below). BBaasshh assigns a default value of _~_/_._b_a_s_h___h_i_s_t_o_r_y. - If HHIISSTTFFIILLEE is unset or null, the command history is not saved - when a shell exits. + If HHIISSTTFFIILLEE is unset or null, the shell does not save the com- + mand history when it exits. HHIISSTTFFIILLEESSIIZZEE The maximum number of lines contained in the history file. When this variable is assigned a value, the history file is trun- cated, if necessary, to contain no more than that number of lines by removing the oldest entries. The history file is also - truncated to this size after writing it when a shell exits. If - the value is 0, the history file is truncated to zero size. - Non-numeric values and numeric values less than zero inhibit - truncation. The shell sets the default value to the value of - HHIISSTTSSIIZZEE after reading any startup files. + truncated to this size after writing it when a shell exits or by + the hhiissttoorryy builtin. If the value is 0, the history file is + truncated to zero size. Non-numeric values and numeric values + less than zero inhibit truncation. The shell sets the default + value to the value of HHIISSTTSSIIZZEE after reading any startup files. HHIISSTTIIGGNNOORREE - A colon-separated list of patterns used to decide which command - lines should be saved on the history list. If a command line - matches one of the patterns in the value of HHIISSTTIIGGNNOORREE, it is - not saved on the history list. Each pattern is anchored at the - beginning of the line and must match the complete line (bbaasshh - will not implicitly append a "**"). Each pattern is tested - against the line after the checks specified by HHIISSTTCCOONNTTRROOLL are + A colon-separated list of patterns used to decide which command + lines should be saved on the history list. If a command line + matches one of the patterns in the value of HHIISSTTIIGGNNOORREE, it is + not saved on the history list. Each pattern is anchored at the + beginning of the line and must match the complete line (bbaasshh + will not implicitly append a "**"). Each pattern is tested + against the line after the checks specified by HHIISSTTCCOONNTTRROOLL are applied. In addition to the normal shell pattern matching char- acters, "&&" matches the previous history line. A backslash will - escape the "&&"; the backslash is removed before attempting a + escape the "&&"; the backslash is removed before attempting a match. The second and subsequent lines of a multi-line compound - command are not tested, and are added to the history regardless - of the value of HHIISSTTIIGGNNOORREE. The pattern matching honors the - setting of the eexxttgglloobb shell option. + command are not tested, and are added to the history regardless + of the value of HHIISSTTIIGGNNOORREE. If the first line was not saved, + the second and subsequent lines of the command are not saved ei- + ther. The pattern matching honors the setting of the eexxttgglloobb + shell option. HHIISSTTSSIIZZEE The number of commands to remember in the command history (see HHIISSTTOORRYY below). If the value is 0, commands are not saved in @@ -1302,10 +1358,10 @@ PPAARRAAMMEETTEERRSS If this variable is set and not null, its value is used as a format string for _s_t_r_f_t_i_m_e(3) to print the time stamp associated with each history entry displayed by the hhiissttoorryy builtin. If - this variable is set, time stamps are written to the history - file so they may be preserved across shell sessions. This uses - the history comment character to distinguish timestamps from - other history lines. + this variable is set, the shell writes time stamps to the his- + tory file so they may be preserved across shell sessions. This + uses the history comment character to distinguish timestamps + from other history lines. HHOOMMEE The home directory of the current user; the default argument for the ccdd builtin command. The value of this variable is also used when performing tilde expansion. @@ -1321,15 +1377,16 @@ PPAARRAAMMEETTEERRSS tions. When HHOOSSTTFFIILLEE is unset, the hostname list is cleared. IIFFSS The _I_n_t_e_r_n_a_l _F_i_e_l_d _S_e_p_a_r_a_t_o_r that is used for word splitting af- ter expansion and to split lines into words with the rreeaadd - builtin command. The default value is "". + builtin command. Word splitting is described above under EEXXPPAANN-- + SSIIOONN. The default value is "". IIGGNNOORREEEEOOFF Controls the action of an interactive shell on receipt of an EEOOFF character as the sole input. If set, the value is the number of consecutive EEOOFF characters which must be typed as the first characters on an input line before bbaasshh exits. If the variable - exists but does not have a numeric value, or has no value, the - default value is 10. If it does not exist, EEOOFF signifies the - end of input to the shell. + is set but does not have a numeric value, or the value is null, + the default value is 10. If it is unset, EEOOFF signifies the end + of input to the shell. IINNPPUUTTRRCC The filename for the rreeaaddlliinnee startup file, overriding the de- fault of _~_/_._i_n_p_u_t_r_c (see RREEAADDLLIINNEE below). @@ -1364,79 +1421,79 @@ PPAARRAAMMEETTEERRSS length for printing selection lists. Automatically set if the cchheecckkwwiinnssiizzee option is enabled or in an interactive shell upon receipt of a SSIIGGWWIINNCCHH. - MMAAIILL If this parameter is set to a file or directory name and the - MMAAIILLPPAATTHH variable is not set, bbaasshh informs the user of the ar- - rival of mail in the specified file or Maildir-format directory. + MMAAIILL If the value is set to a file or directory name and the MMAAIILLPPAATTHH + variable is not set, bbaasshh informs the user of the arrival of + mail in the specified file or Maildir-format directory. MMAAIILLCCHHEECCKK - Specifies how often (in seconds) bbaasshh checks for mail. The de- - fault is 60 seconds. When it is time to check for mail, the - shell does so before displaying the primary prompt. If this - variable is unset, or set to a value that is not a number + Specifies how often (in seconds) bbaasshh checks for mail. The de- + fault is 60 seconds. When it is time to check for mail, the + shell does so before displaying the primary prompt. If this + variable is unset, or set to a value that is not a number greater than or equal to zero, the shell disables mail checking. MMAAIILLPPAATTHH A colon-separated list of filenames to be checked for mail. The message to be printed when mail arrives in a particular file may - be specified by separating the filename from the message with a - "?". When used in the text of the message, $$__ expands to the + be specified by separating the filename from the message with a + "?". When used in the text of the message, $$__ expands to the name of the current mailfile. Example: MMAAIILLPPAATTHH='/var/mail/bfox?"You have mail":~/shell-mail?"$_ has mail!"' - BBaasshh can be configured to supply a default value for this vari- - able (there is no value by default), but the location of the + BBaasshh can be configured to supply a default value for this vari- + able (there is no value by default), but the location of the user mail files that it uses is system dependent (e.g., /var/mail/$$UUSSEERR). OOPPTTEERRRR If set to the value 1, bbaasshh displays error messages generated by - the ggeettooppttss builtin command (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). - OOPPTTEERRRR is initialized to 1 each time the shell is invoked or a + the ggeettooppttss builtin command (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). + OOPPTTEERRRR is initialized to 1 each time the shell is invoked or a shell script is executed. - PPAATTHH The search path for commands. It is a colon-separated list of - directories in which the shell looks for commands (see CCOOMMMMAANNDD - EEXXEECCUUTTIIOONN below). A zero-length (null) directory name in the + PPAATTHH The search path for commands. It is a colon-separated list of + directories in which the shell looks for commands (see CCOOMMMMAANNDD + EEXXEECCUUTTIIOONN below). A zero-length (null) directory name in the value of PPAATTHH indicates the current directory. A null directory - name may appear as two adjacent colons, or as an initial or - trailing colon. The default path is system-dependent, and is + name may appear as two adjacent colons, or as an initial or + trailing colon. The default path is system-dependent, and is set by the administrator who installs bbaasshh. A common value is "/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin". PPOOSSIIXXLLYY__CCOORRRREECCTT - If this variable is in the environment when bbaasshh starts, the - shell enters _p_o_s_i_x _m_o_d_e before reading the startup files, as if - the ----ppoossiixx invocation option had been supplied. If it is set - while the shell is running, bbaasshh enables _p_o_s_i_x _m_o_d_e, as if the + If this variable is in the environment when bbaasshh starts, the + shell enters _p_o_s_i_x _m_o_d_e before reading the startup files, as if + the ----ppoossiixx invocation option had been supplied. If it is set + while the shell is running, bbaasshh enables _p_o_s_i_x _m_o_d_e, as if the command "set -o posix" had been executed. When the shell enters _p_o_s_i_x _m_o_d_e, it sets this variable if it was not already set. PPRROOMMPPTT__CCOOMMMMAANNDD - If this variable is set, and is an array, the value of each set - element is executed as a command prior to issuing each primary - prompt. If this is set but not an array variable, its value is + If this variable is set, and is an array, the value of each set + element is executed as a command prior to issuing each primary + prompt. If this is set but not an array variable, its value is used as a command to execute instead. PPRROOMMPPTT__DDIIRRTTRRIIMM - If set to a number greater than zero, the value is used as the + If set to a number greater than zero, the value is used as the number of trailing directory components to retain when expanding - the \\ww and \\WW prompt string escapes (see PPRROOMMPPTTIINNGG below). + the \\ww and \\WW prompt string escapes (see PPRROOMMPPTTIINNGG below). Characters removed are replaced with an ellipsis. - PPSS00 The value of this parameter is expanded (see PPRROOMMPPTTIINNGG below) - and displayed by interactive shells after reading a command and + PPSS00 The value of this parameter is expanded (see PPRROOMMPPTTIINNGG below) + and displayed by interactive shells after reading a command and before the command is executed. - PPSS11 The value of this parameter is expanded (see PPRROOMMPPTTIINNGG below) - and used as the primary prompt string. The default value is + PPSS11 The value of this parameter is expanded (see PPRROOMMPPTTIINNGG below) + and used as the primary prompt string. The default value is "\s-\v\$ ". - PPSS22 The value of this parameter is expanded as with PPSS11 and used as + PPSS22 The value of this parameter is expanded as with PPSS11 and used as the secondary prompt string. The default is "> ". PPSS33 The value of this parameter is used as the prompt for the sseelleecctt command (see SSHHEELLLL GGRRAAMMMMAARR above). - PPSS44 The value of this parameter is expanded as with PPSS11 and the + PPSS44 The value of this parameter is expanded as with PPSS11 and the value is printed before each command bbaasshh displays during an ex- ecution trace. The first character of the expanded value of PPSS44 is replicated multiple times, as necessary, to indicate multiple levels of indirection. The default is "+ ". - SSHHEELLLL This variable expands to the full pathname to the shell. If it - is not set when the shell starts, bbaasshh assigns to it the full + SSHHEELLLL This variable expands to the full pathname to the shell. If it + is not set when the shell starts, bbaasshh assigns to it the full pathname of the current user's login shell. TTIIMMEEFFOORRMMAATT - The value of this parameter is used as a format string specify- - ing how the timing information for pipelines prefixed with the - ttiimmee reserved word should be displayed. The %% character intro- - duces an escape sequence that is expanded to a time value or - other information. The escape sequences and their meanings are + The value of this parameter is used as a format string specify- + ing how the timing information for pipelines prefixed with the + ttiimmee reserved word should be displayed. The %% character intro- + duces an escape sequence that is expanded to a time value or + other information. The escape sequences and their meanings are as follows; the brackets denote optional portions. %%%% A literal %%. %%[[_p]][[ll]]RR The elapsed time in seconds. @@ -1444,139 +1501,145 @@ PPAARRAAMMEETTEERRSS %%[[_p]][[ll]]SS The number of CPU seconds spent in system mode. %%PP The CPU percentage, computed as (%U + %S) / %R. - The optional _p is a digit specifying the _p_r_e_c_i_s_i_o_n, the number + The optional _p is a digit specifying the _p_r_e_c_i_s_i_o_n, the number of fractional digits after a decimal point. A value of 0 causes - no decimal point or fraction to be output. At most six places - after the decimal point may be specified; values of _p greater - than 6 are changed to 6. If _p is not specified, the value 3 is - used. + no decimal point or fraction to be output. ttiimmee will print at + most six digits after the decimal point; values of _p greater + than 6 are changed to 6. If _p is not specified, ttiimmee prints + three digits after the decimal point. - The optional ll specifies a longer format, including minutes, of - the form _M_Mm_S_S._F_Fs. The value of _p determines whether or not + The optional ll specifies a longer format, including minutes, of + the form _M_Mm_S_S._F_Fs. The value of _p determines whether or not the fraction is included. - If this variable is not set, bbaasshh acts as if it had the value - $$''\\nnrreeaall\\tt%%33llRR\\nnuusseerr\\tt%%33llUU\\nnssyyss\\tt%%33llSS''. If the value is null, - bbaasshh does not display any timing information. A trailing new- + If this variable is not set, bbaasshh acts as if it had the value + $$''\\nnrreeaall\\tt%%33llRR\\nnuusseerr\\tt%%33llUU\\nnssyyss\\tt%%33llSS''. If the value is null, + bbaasshh does not display any timing information. A trailing new- line is added when the format string is displayed. - TTMMOOUUTT If set to a value greater than zero, TTMMOOUUTT is treated as the de- - fault timeout for the rreeaadd builtin. The sseelleecctt command termi- - nates if input does not arrive after TTMMOOUUTT seconds when input is - coming from a terminal. In an interactive shell, the value is - interpreted as the number of seconds to wait for a line of input - after issuing the primary prompt. BBaasshh terminates after waiting - for that number of seconds if a complete line of input does not + TTMMOOUUTT If set to a value greater than zero, the rreeaadd builtin uses the + value as its default timeout. The sseelleecctt command terminates if + input does not arrive after TTMMOOUUTT seconds when input is coming + from a terminal. In an interactive shell, the value is inter- + preted as the number of seconds to wait for a line of input af- + ter issuing the primary prompt. BBaasshh terminates after waiting + for that number of seconds if a complete line of input does not arrive. - TTMMPPDDIIRR If set, bbaasshh uses its value as the name of a directory in which + TTMMPPDDIIRR If set, bbaasshh uses its value as the name of a directory in which bbaasshh creates temporary files for the shell's use. aauuttoo__rreessuummee This variable controls how the shell interacts with the user and - job control. If this variable is set, single word simple com- + job control. If this variable is set, single-word simple com- mands without redirections are treated as candidates for resump- tion of an existing stopped job. There is no ambiguity allowed; - if there is more than one job beginning with the string typed, - the job most recently accessed is selected. The _n_a_m_e of a - stopped job, in this context, is the command line used to start - it. If set to the value _e_x_a_c_t, the string supplied must match - the name of a stopped job exactly; if set to _s_u_b_s_t_r_i_n_g, the - string supplied needs to match a substring of the name of a - stopped job. The _s_u_b_s_t_r_i_n_g value provides functionality analo- - gous to the %%?? job identifier (see JJOOBB CCOONNTTRROOLL below). If set - to any other value, the supplied string must be a prefix of a + if there is more than one job beginning with the string typed, + the most recently accessed job is selected. The _n_a_m_e of a + stopped job, in this context, is the command line used to start + it. If set to the value _e_x_a_c_t, the string supplied must match + the name of a stopped job exactly; if set to _s_u_b_s_t_r_i_n_g, the + string supplied needs to match a substring of the name of a + stopped job. The _s_u_b_s_t_r_i_n_g value provides functionality analo- + gous to the %%?? job identifier (see JJOOBB CCOONNTTRROOLL below). If set + to any other value, the supplied string must be a prefix of a stopped job's name; this provides functionality analogous to the %%_s_t_r_i_n_g job identifier. hhiissttcchhaarrss - The two or three characters which control history expansion and + The two or three characters which control history expansion and tokenization (see HHIISSTTOORRYY EEXXPPAANNSSIIOONN below). The first character - is the _h_i_s_t_o_r_y _e_x_p_a_n_s_i_o_n character, the character which signals - the start of a history expansion, normally "!!". The second - character is the _q_u_i_c_k _s_u_b_s_t_i_t_u_t_i_o_n character, which is used as - shorthand for re-running the previous command entered, substi- + is the _h_i_s_t_o_r_y _e_x_p_a_n_s_i_o_n character, the character which signals + the start of a history expansion, normally "!!". The second + character is the _q_u_i_c_k _s_u_b_s_t_i_t_u_t_i_o_n character, which is used as + shorthand for re-running the previous command entered, substi- tuting one string for another in the command, when it appears as - the first character on the line. The default is "^^". The op- + the first character on the line. The default is "^^". The op- tional third character is the character which indicates that the remainder of the line is a comment when found as the first char- - acter of a word, normally "##". The history comment character - causes history substitution to be skipped for the remaining - words on the line. It does not necessarily cause the shell + acter of a word, normally "##". The history comment character + causes history substitution to be skipped for the remaining + words on the line. It does not necessarily cause the shell parser to treat the rest of the line as a comment. AArrrraayyss - BBaasshh provides one-dimensional indexed and associative array variables. - Any variable may be used as an indexed array; the ddeeccllaarree builtin will - explicitly declare an array. There is no maximum limit on the size of - an array, nor any requirement that members be indexed or assigned con- - tiguously. Indexed arrays are referenced using integers (including + BBaasshh provides one-dimensional indexed and associative array variables. + Any variable may be used as an indexed array; the ddeeccllaarree builtin will + explicitly declare an array. There is no maximum limit on the size of + an array, nor any requirement that members be indexed or assigned con- + tiguously. Indexed arrays are referenced using integers (including arithmetic expressions) and are zero-based; associative arrays are ref- erenced using arbitrary strings. Unless otherwise noted, indexed array indices must be non-negative integers. - An indexed array is created automatically if any variable is assigned + An indexed array is created automatically if any variable is assigned to using the syntax _n_a_m_e[_s_u_b_s_c_r_i_p_t]=_v_a_l_u_e. The _s_u_b_s_c_r_i_p_t is treated as - an arithmetic expression that must evaluate to a number. To explicitly - declare an indexed array, use ddeeccllaarree --aa _n_a_m_e (see SSHHEELLLL BBUUIILLTTIINN CCOOMM-- - MMAANNDDSS below). ddeeccllaarree --aa _n_a_m_e[[_s_u_b_s_c_r_i_p_t]] is also accepted; the _s_u_b_- - _s_c_r_i_p_t is ignored. + an arithmetic expression that must evaluate to a number greater than or + equal to zero. To explicitly declare an indexed array, use ddeeccllaarree --aa + _n_a_m_e (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). ddeeccllaarree --aa _n_a_m_e[[_s_u_b_s_c_r_i_p_t]] is + also accepted; the _s_u_b_s_c_r_i_p_t is ignored. Associative arrays are created using ddeeccllaarree --AA _n_a_m_e. Attributes may be specified for an array variable using the ddeeccllaarree and rreeaaddoonnllyy builtins. Each attribute applies to all members of an array. - Arrays are assigned to using compound assignments of the form - _n_a_m_e=((value_1 ... value_n)), where each _v_a_l_u_e may be of the form [_s_u_b_- - _s_c_r_i_p_t]=_s_t_r_i_n_g. Indexed array assignments do not require anything but - _s_t_r_i_n_g. Each _v_a_l_u_e in the list is expanded using the shell expansions - described below under EEXXPPAANNSSIIOONN, but _v_a_l_u_es that are valid variable as- - signments including the brackets and subscript do not undergo brace ex- - pansion and word splitting, as with individual variable assignments. - When assigning to indexed arrays, if the optional brackets and sub- - script are supplied, that index is assigned to; otherwise the index of - the element assigned is the last index assigned to by the statement + Arrays are assigned using compound assignments of the form _n_a_m_e=((value_1 + ... value_n)), where each _v_a_l_u_e may be of the form [_s_u_b_s_c_r_i_p_t]=_s_t_r_i_n_g. + Indexed array assignments do not require anything but _s_t_r_i_n_g. Each + _v_a_l_u_e in the list is expanded using the shell expansions described be- + low under EEXXPPAANNSSIIOONN, but _v_a_l_u_es that are valid variable assignments in- + cluding the brackets and subscript do not undergo brace expansion and + word splitting, as with individual variable assignments. + + When assigning to indexed arrays, if the optional brackets and sub- + script are supplied, that index is assigned to; otherwise the index of + the element assigned is the last index assigned to by the statement plus one. Indexing starts at zero. When assigning to an associative array, the words in a compound assign- - ment may be either assignment statements, for which the subscript is - required, or a list of words that is interpreted as a sequence of al- - ternating keys and values: _n_a_m_e=(( _k_e_y_1 _v_a_l_u_e_1 _k_e_y_2 _v_a_l_u_e_2 ...)). These - are treated identically to _n_a_m_e=(( [_k_e_y_1]=_v_a_l_u_e_1 [_k_e_y_2]=_v_a_l_u_e_2 ...)). - The first word in the list determines how the remaining words are in- - terpreted; all assignments in a list must be of the same type. When - using key/value pairs, the keys may not be missing or empty; a final + ment may be either assignment statements, for which the subscript is + required, or a list of words that is interpreted as a sequence of al- + ternating keys and values: _n_a_m_e=(( _k_e_y_1 _v_a_l_u_e_1 _k_e_y_2 _v_a_l_u_e_2 ...)). These + are treated identically to _n_a_m_e=(( [_k_e_y_1]=_v_a_l_u_e_1 [_k_e_y_2]=_v_a_l_u_e_2 ...)). + The first word in the list determines how the remaining words are in- + terpreted; all assignments in a list must be of the same type. When + using key/value pairs, the keys may not be missing or empty; a final missing value is treated like the empty string. - This syntax is also accepted by the ddeeccllaarree builtin. Individual array - elements may be assigned to using the _n_a_m_e[_s_u_b_s_c_r_i_p_t]=_v_a_l_u_e syntax in- - troduced above. When assigning to an indexed array, if _n_a_m_e is sub- - scripted by a negative number, that number is interpreted as relative - to one greater than the maximum index of _n_a_m_e, so negative indices - count back from the end of the array, and an index of -1 references the - last element. + This syntax is also accepted by the ddeeccllaarree builtin. Individual array + elements may be assigned to using the _n_a_m_e[_s_u_b_s_c_r_i_p_t]=_v_a_l_u_e syntax in- + troduced above. + + When assigning to an indexed array, if _n_a_m_e is subscripted by a nega- + tive number, that number is interpreted as relative to one greater than + the maximum index of _n_a_m_e, so negative indices count back from the end + of the array, and an index of -1 references the last element. The += operator will append to an array variable when assigning using the compound assignment syntax; see PPAARRAAMMEETTEERRSS above. - Any element of an array may be referenced using ${_n_a_m_e[_s_u_b_s_c_r_i_p_t]}. - The braces are required to avoid conflicts with pathname expansion. If - _s_u_b_s_c_r_i_p_t is @@ or **, the word expands to all members of _n_a_m_e, unless - noted in the description of a builtin or word expansion. These sub- - scripts differ only when the word appears within double quotes. If the - word is double-quoted, ${_n_a_m_e[*]} expands to a single word with the - value of each array member separated by the first character of the IIFFSS - special variable, and ${_n_a_m_e[@]} expands each element of _n_a_m_e to a sep- - arate word. When there are no array members, ${_n_a_m_e[@]} expands to - nothing. If the double-quoted expansion occurs within a word, the ex- - pansion of the first parameter is joined with the beginning part of the - original word, and the expansion of the last parameter is joined with - the last part of the original word. This is analogous to the expansion - of the special parameters ** and @@ (see SSppeecciiaall PPaarraammeetteerrss above). - ${#_n_a_m_e[_s_u_b_s_c_r_i_p_t]} expands to the length of ${_n_a_m_e[_s_u_b_s_c_r_i_p_t]}. If + An array element is referenced using ${_n_a_m_e[_s_u_b_s_c_r_i_p_t]}. The braces + are required to avoid conflicts with pathname expansion. If _s_u_b_s_c_r_i_p_t + is @@ or **, the word expands to all members of _n_a_m_e, unless noted in the + description of a builtin or word expansion. These subscripts differ + only when the word appears within double quotes. If the word is dou- + ble-quoted, ${_n_a_m_e[*]} expands to a single word with the value of each + array member separated by the first character of the IIFFSS special vari- + able, and ${_n_a_m_e[@]} expands each element of _n_a_m_e to a separate word. + When there are no array members, ${_n_a_m_e[@]} expands to nothing. If the + double-quoted expansion occurs within a word, the expansion of the + first parameter is joined with the beginning part of the expansion of + the original word, and the expansion of the last parameter is joined + with the last part of the expansion of the original word. This is + analogous to the expansion of the special parameters ** and @@ (see SSppee-- + cciiaall PPaarraammeetteerrss above). + + ${#_n_a_m_e[_s_u_b_s_c_r_i_p_t]} expands to the length of ${_n_a_m_e[_s_u_b_s_c_r_i_p_t]}. If _s_u_b_s_c_r_i_p_t is ** or @@, the expansion is the number of elements in the ar- - ray. If the _s_u_b_s_c_r_i_p_t used to reference an element of an indexed array - evaluates to a number less than zero, it is interpreted as relative to - one greater than the maximum index of the array, so negative indices - count back from the end of the array, and an index of -1 references the - last element. + ray. + + If the _s_u_b_s_c_r_i_p_t used to reference an element of an indexed array eval- + uates to a number less than zero, it is interpreted as relative to one + greater than the maximum index of the array, so negative indices count + back from the end of the array, and an index of -1 references the last + element. Referencing an array variable without a subscript is equivalent to ref- erencing the array with a subscript of 0. Any reference to a variable @@ -1591,28 +1654,32 @@ PPAARRAAMMEETTEERRSS array variable _n_a_m_e. The treatment when in double quotes is similar to the expansion of the special parameters _@ and _* within double quotes. - The uunnsseett builtin is used to destroy arrays. uunnsseett _n_a_m_e[_s_u_b_s_c_r_i_p_t] de- - stroys the array element at index _s_u_b_s_c_r_i_p_t, for both indexed and asso- - ciative arrays. Negative subscripts to indexed arrays are interpreted - as described above. Unsetting the last element of an array variable - does not unset the variable. uunnsseett _n_a_m_e, where _n_a_m_e is an array, re- - moves the entire array. uunnsseett _n_a_m_e[_s_u_b_s_c_r_i_p_t], where _s_u_b_s_c_r_i_p_t is ** or - @@, behaves differently depending on whether _n_a_m_e is an indexed or asso- - ciative array. If _n_a_m_e is an associative array, this unsets the ele- - ment with subscript ** or @@. If _n_a_m_e is an indexed array, unset removes - all of the elements but does not remove the array itself. - - When using a variable name with a subscript as an argument to a com- - mand, such as with uunnsseett, without using the word expansion syntax de- - scribed above, the argument is subject to pathname expansion. If path- - name expansion is not desired, the argument should be quoted. - - The ddeeccllaarree, llooccaall, and rreeaaddoonnllyy builtins each accept a --aa option to - specify an indexed array and a --AA option to specify an associative ar- - ray. If both options are supplied, --AA takes precedence. The rreeaadd - builtin accepts a --aa option to assign a list of words read from the + The uunnsseett builtin is used to destroy arrays. uunnsseett _n_a_m_e[_s_u_b_s_c_r_i_p_t] un- + sets the array element at index _s_u_b_s_c_r_i_p_t, for both indexed and asso- + ciative arrays. Negative subscripts to indexed arrays are interpreted + as described above. Unsetting the last element of an array variable + does not unset the variable. uunnsseett _n_a_m_e, where _n_a_m_e is an array, re- + moves the entire array. uunnsseett _n_a_m_e[_s_u_b_s_c_r_i_p_t] behaves differently de- + pending on whether _n_a_m_e is an indexed or associative array when _s_u_b_- + _s_c_r_i_p_t is ** or @@. If _n_a_m_e is an associative array, this unsets the el- + ement with subscript ** or @@. If _n_a_m_e is an indexed array, unset re- + moves all of the elements but does not remove the array itself. + + When using a variable name with a subscript as an argument to a com- + mand, such as with uunnsseett, without using the word expansion syntax de- + scribed above, (e.g., unset a[4]), the argument is subject to pathname + expansion. Quote the argument if pathname expansion is not desired + (e.g., unset 'a[4]'). + + The ddeeccllaarree, llooccaall, and rreeaaddoonnllyy builtins each accept a --aa option to + specify an indexed array and a --AA option to specify an associative ar- + ray. If both options are supplied, --AA takes precedence. The rreeaadd + builtin accepts a --aa option to assign a list of words read from the standard input to an array. The sseett and ddeeccllaarree builtins display array - values in a way that allows them to be reused as assignments. + values in a way that allows them to be reused as assignments. Other + builtins accept array name arguments as well (e.g., mmaappffiillee); see the + descriptions of individual builtins below for details. The shell pro- + vides a number of builtin array variables. EEXXPPAANNSSIIOONN Expansion is performed on the command line after it has been split into @@ -1641,14 +1708,15 @@ EEXXPPAANNSSIIOONN $${{_n_a_m_e[[**]]}} as explained above (see PPAARRAAMMEETTEERRSS). BBrraaccee EExxppaannssiioonn - _B_r_a_c_e _e_x_p_a_n_s_i_o_n is a mechanism by which arbitrary strings may be gener- - ated. This mechanism is similar to _p_a_t_h_n_a_m_e _e_x_p_a_n_s_i_o_n, but the file- - names generated need not exist. Patterns to be brace expanded take the - form of an optional _p_r_e_a_m_b_l_e, followed by either a series of comma-sep- - arated strings or a sequence expression between a pair of braces, fol- - lowed by an optional _p_o_s_t_s_c_r_i_p_t. The preamble is prefixed to each - string contained within the braces, and the postscript is then appended - to each resulting string, expanding left to right. + _B_r_a_c_e _e_x_p_a_n_s_i_o_n is a mechanism to generate arbitrary strings sharing a + common prefix and suffix, either of which can be empty. This mechanism + is similar to _p_a_t_h_n_a_m_e _e_x_p_a_n_s_i_o_n, but the filenames generated need not + exist. Patterns to be brace expanded are formed from an optional _p_r_e_- + _a_m_b_l_e, followed by either a series of comma-separated strings or a se- + quence expression between a pair of braces, followed by an optional + _p_o_s_t_s_c_r_i_p_t. The preamble is prefixed to each string contained within + the braces, and the postscript is then appended to each resulting + string, expanding left to right. Brace expansions may be nested. The results of each expanded string are not sorted; left to right order is preserved. For example, @@ -1675,9 +1743,10 @@ EEXXPPAANNSSIIOONN A correctly-formed brace expansion must contain unquoted opening and closing braces, and at least one unquoted comma or a valid sequence ex- - pression. Any incorrectly formed brace expansion is left unchanged. A - {{ or ,, may be quoted with a backslash to prevent its being considered - part of a brace expression. To avoid conflicts with parameter expan- + pression. Any incorrectly formed brace expansion is left unchanged. + + A {{ or ,, may be quoted with a backslash to prevent its being considered + part of a brace expression. To avoid conflicts with parameter expan- sion, the string $${{ is not considered eligible for brace expansion, and inhibits brace expansion until the closing }}. @@ -1688,93 +1757,99 @@ EEXXPPAANNSSIIOONN or chown root /usr/{ucb/{ex,edit},lib/{ex?.?*,how_ex}} - Brace expansion introduces a slight incompatibility with historical - versions of sshh. sshh does not treat opening or closing braces specially - when they appear as part of a word, and preserves them in the output. - BBaasshh removes braces from words as a consequence of brace expansion. - For example, a word entered to sshh as _f_i_l_e_{_1_,_2_} appears identically in - the output. The same word is output as _f_i_l_e_1 _f_i_l_e_2 after expansion by - bbaasshh. If strict compatibility with sshh is desired, start bbaasshh with the - ++BB option or disable brace expansion with the ++BB option to the sseett com- - mand (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). + Brace expansion introduces a slight incompatibility with historical + versions of sshh. sshh does not treat opening or closing braces specially + when they appear as part of a word, and preserves them in the output. + BBaasshh removes braces from words as a consequence of brace expansion. + For example, a word entered to sshh as _f_i_l_e_{_1_,_2_} appears identically in + the output. BBaasshh outputs that word as _f_i_l_e_1 _f_i_l_e_2 after brace expan- + sion. Start bbaasshh with the ++BB option or disable brace expansion with + the ++BB option to the sseett command (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) for + strict sshh compatibility. TTiillddee EExxppaannssiioonn - If a word begins with an unquoted tilde character ("~~"), all of the - characters preceding the first unquoted slash (or all characters, if - there is no unquoted slash) are considered a _t_i_l_d_e_-_p_r_e_f_i_x. If none of - the characters in the tilde-prefix are quoted, the characters in the - tilde-prefix following the tilde are treated as a possible _l_o_g_i_n _n_a_m_e. - If this login name is the null string, the tilde is replaced with the - value of the shell parameter HHOOMMEE. If HHOOMMEE is unset, the home direc- - tory of the user executing the shell is substituted instead. Other- + If a word begins with an unquoted tilde character ("~~"), all of the + characters preceding the first unquoted slash (or all characters, if + there is no unquoted slash) are considered a _t_i_l_d_e_-_p_r_e_f_i_x. If none of + the characters in the tilde-prefix are quoted, the characters in the + tilde-prefix following the tilde are treated as a possible _l_o_g_i_n _n_a_m_e. + If this login name is the null string, the tilde is replaced with the + value of the shell parameter HHOOMMEE. If HHOOMMEE is unset, the tilde expands + to the home directory of the user executing the shell instead. Other- wise, the tilde-prefix is replaced with the home directory associated with the specified login name. If the tilde-prefix is a "~+", the value of the shell variable PPWWDD re- - places the tilde-prefix. If the tilde-prefix is a "~-", the value of - the shell variable OOLLDDPPWWDD, if it is set, is substituted. If the char- - acters following the tilde in the tilde-prefix consist of a number _N, - optionally prefixed by a "+" or a "-", the tilde-prefix is replaced + places the tilde-prefix. If the tilde-prefix is a "~-", the shell sub- + stitutes the value of the shell variable OOLLDDPPWWDD, if it is set. If the + characters following the tilde in the tilde-prefix consist of a number + _N, optionally prefixed by a "+" or a "-", the tilde-prefix is replaced with the corresponding element from the directory stack, as it would be - displayed by the ddiirrss builtin invoked with the tilde-prefix as an argu- - ment. If the characters following the tilde in the tilde-prefix con- - sist of a number without a leading "+" or "-", "+" is assumed. + displayed by the ddiirrss builtin invoked with the characters following the + tilde in the tilde-prefix as an argument. If the characters following + the tilde in the tilde-prefix consist of a number without a leading "+" + or "-", "+" is assumed. + + The results of tilde expansion are treated as if they were quoted, so + the replacement is not subject to word splitting and pathname expan- + sion. - If the login name is invalid, or the tilde expansion fails, the word is - unchanged. + If the login name is invalid, or the tilde expansion fails, the tilde- + prefix is unchanged. - Each variable assignment is checked for unquoted tilde-prefixes immedi- - ately following a :: or the first ==. In these cases, tilde expansion is - also performed. Consequently, one may use filenames with tildes in as- - signments to PPAATTHH, MMAAIILLPPAATTHH, and CCDDPPAATTHH, and the shell assigns the ex- + BBaasshh checks each variable assignment for unquoted tilde-prefixes imme- + diately following a :: or the first ==, and performs tilde expansion in + these cases. Consequently, one may use filenames with tildes in as- + signments to PPAATTHH, MMAAIILLPPAATTHH, and CCDDPPAATTHH, and the shell assigns the ex- panded value. - BBaasshh also performs tilde expansion on words satisfying the conditions + BBaasshh also performs tilde expansion on words satisfying the conditions of variable assignments (as described above under PPAARRAAMMEETTEERRSS) when they - appear as arguments to simple commands. BBaasshh does not do this, except + appear as arguments to simple commands. BBaasshh does not do this, except for the _d_e_c_l_a_r_a_t_i_o_n commands listed above, when in _p_o_s_i_x _m_o_d_e. PPaarraammeetteerr EExxppaannssiioonn The "$$" character introduces parameter expansion, command substitution, - or arithmetic expansion. The parameter name or symbol to be expanded - may be enclosed in braces, which are optional but serve to protect the - variable to be expanded from characters immediately following it which + or arithmetic expansion. The parameter name or symbol to be expanded + may be enclosed in braces, which are optional but serve to protect the + variable to be expanded from characters immediately following it which could be interpreted as part of the name. - When braces are used, the matching ending brace is the first "}}" not + When braces are used, the matching ending brace is the first "}}" not escaped by a backslash or within a quoted string, and not within an em- - bedded arithmetic expansion, command substitution, or parameter expan- + bedded arithmetic expansion, command substitution, or parameter expan- sion. + The basic form of parameter expansion is + ${_p_a_r_a_m_e_t_e_r} - The value of _p_a_r_a_m_e_t_e_r is substituted. The braces are required - when _p_a_r_a_m_e_t_e_r is a positional parameter with more than one - digit, or when _p_a_r_a_m_e_t_e_r is followed by a character which is not - to be interpreted as part of its name. The _p_a_r_a_m_e_t_e_r is a shell - parameter as described above PPAARRAAMMEETTEERRSS) or an array reference - (AArrrraayyss). - - If the first character of _p_a_r_a_m_e_t_e_r is an exclamation point (!!), and + + which substitutes the value of _p_a_r_a_m_e_t_e_r. The braces are required when + _p_a_r_a_m_e_t_e_r is a positional parameter with more than one digit, or when + _p_a_r_a_m_e_t_e_r is followed by a character which is not to be interpreted as + part of its name. The _p_a_r_a_m_e_t_e_r is a shell parameter as described + above PPAARRAAMMEETTEERRSS) or an array reference (AArrrraayyss). + + If the first character of _p_a_r_a_m_e_t_e_r is an exclamation point (!!), and _p_a_r_a_m_e_t_e_r is not a _n_a_m_e_r_e_f, it introduces a level of indirection. BBaasshh uses the value formed by expanding the rest of _p_a_r_a_m_e_t_e_r as the new _p_a_- - _r_a_m_e_t_e_r; this is then expanded and that value is used in the rest of - the expansion, rather than the expansion of the original _p_a_r_a_m_e_t_e_r. - This is known as _i_n_d_i_r_e_c_t _e_x_p_a_n_s_i_o_n. The value is subject to tilde ex- - pansion, parameter expansion, command substitution, and arithmetic ex- - pansion. If _p_a_r_a_m_e_t_e_r is a nameref, this expands to the name of the - parameter referenced by _p_a_r_a_m_e_t_e_r instead of performing the complete - indirect expansion. The exceptions to this are the expansions of - ${!!_p_r_e_f_i_x**} and ${!!_n_a_m_e[_@]} described below. The exclamation point - must immediately follow the left brace in order to introduce indirec- - tion. + _r_a_m_e_t_e_r; this new parameter is then expanded and that value is used in + the rest of the expansion, rather than the expansion of the original + _p_a_r_a_m_e_t_e_r. This is known as _i_n_d_i_r_e_c_t _e_x_p_a_n_s_i_o_n. The value is subject + to tilde expansion, parameter expansion, command substitution, and + arithmetic expansion. If _p_a_r_a_m_e_t_e_r is a nameref, this expands to the + name of the parameter referenced by _p_a_r_a_m_e_t_e_r instead of performing the + complete indirect expansion, for compatibility. The exceptions to this + are the expansions of ${!!_p_r_e_f_i_x**} and ${!!_n_a_m_e[_@]} described below. The + exclamation point must immediately follow the left brace in order to + introduce indirection. In each of the cases below, _w_o_r_d is subject to tilde expansion, parame- ter expansion, command substitution, and arithmetic expansion. When not performing substring expansion, using the forms documented be- - low (e.g., ::--), bbaasshh tests for a parameter that is unset or null. - Omitting the colon results in a test only for a parameter that is un- - set. + low (e.g., ::--), bbaasshh tests for a parameter that is unset or null. + Omitting the colon tests only for a parameter that is unset. ${_p_a_r_a_m_e_t_e_r::--_w_o_r_d} UUssee DDeeffaauulltt VVaalluueess. If _p_a_r_a_m_e_t_e_r is unset or null, the expan- @@ -1782,18 +1857,21 @@ EEXXPPAANNSSIIOONN is substituted. ${_p_a_r_a_m_e_t_e_r::==_w_o_r_d} AAssssiiggnn DDeeffaauulltt VVaalluueess. If _p_a_r_a_m_e_t_e_r is unset or null, the ex- - pansion of _w_o_r_d is assigned to _p_a_r_a_m_e_t_e_r. The value of _p_a_r_a_m_e_- - _t_e_r is then substituted. Positional parameters and special pa- - rameters may not be assigned to in this way. + pansion of _w_o_r_d is assigned to _p_a_r_a_m_e_t_e_r, and the expansion is + the final value of _p_a_r_a_m_e_t_e_r. Positional parameters and special + parameters may not be assigned in this way. ${_p_a_r_a_m_e_t_e_r::??_w_o_r_d} - DDiissppllaayy EErrrroorr iiff NNuullll oorr UUnnsseett. If _p_a_r_a_m_e_t_e_r is null or unset, - the expansion of _w_o_r_d (or a message to that effect if _w_o_r_d is - not present) is written to the standard error and the shell, if - it is not interactive, exits. Otherwise, the value of _p_a_r_a_m_e_t_e_r + DDiissppllaayy EErrrroorr iiff NNuullll oorr UUnnsseett. If _p_a_r_a_m_e_t_e_r is null or unset, + the expansion of _w_o_r_d (or a message to that effect if _w_o_r_d is + not present) is written to the standard error and the shell, if + it is not interactive, exits with a non-zero status. An inter- + active shell does not exit, but does not execute the command as- + sociated with the expansion. Otherwise, the value of _p_a_r_a_m_e_t_e_r is substituted. ${_p_a_r_a_m_e_t_e_r::++_w_o_r_d} - UUssee AAlltteerrnnaattee VVaalluuee. If _p_a_r_a_m_e_t_e_r is null or unset, nothing is - substituted, otherwise the expansion of _w_o_r_d is substituted. + UUssee AAlltteerrnnaattee VVaalluuee. If _p_a_r_a_m_e_t_e_r is null or unset, nothing is + substituted, otherwise the expansion of _w_o_r_d is substituted. + The value of _p_a_r_a_m_e_t_e_r is not used. ${_p_a_r_a_m_e_t_e_r::_o_f_f_s_e_t} ${_p_a_r_a_m_e_t_e_r::_o_f_f_s_e_t::_l_e_n_g_t_h} SSuubbssttrriinngg EExxppaannssiioonn. Expands to up to _l_e_n_g_t_h characters of the @@ -1852,30 +1930,31 @@ EEXXPPAANNSSIIOONN each key expands to a separate word. ${##_p_a_r_a_m_e_t_e_r} - PPaarraammeetteerr lleennggtthh. The length in characters of the value of _p_a_- - _r_a_m_e_t_e_r is substituted. If _p_a_r_a_m_e_t_e_r is ** or @@, the value sub- - stituted is the number of positional parameters. If _p_a_r_a_m_e_t_e_r - is an array name subscripted by ** or @@, the value substituted is - the number of elements in the array. If _p_a_r_a_m_e_t_e_r is an indexed - array name subscripted by a negative number, that number is in- - terpreted as relative to one greater than the maximum index of - _p_a_r_a_m_e_t_e_r, so negative indices count back from the end of the - array, and an index of -1 references the last element. + PPaarraammeetteerr lleennggtthh. Substitutes the length in characters of the + expanded value of _p_a_r_a_m_e_t_e_r. If _p_a_r_a_m_e_t_e_r is ** or @@, the value + substituted is the number of positional parameters. If _p_a_r_a_m_e_- + _t_e_r is an array name subscripted by ** or @@, the value substi- + tuted is the number of elements in the array. If _p_a_r_a_m_e_t_e_r is + an indexed array name subscripted by a negative number, that + number is interpreted as relative to one greater than the maxi- + mum index of _p_a_r_a_m_e_t_e_r, so negative indices count back from the + end of the array, and an index of -1 references the last ele- + ment. ${_p_a_r_a_m_e_t_e_r##_w_o_r_d} ${_p_a_r_a_m_e_t_e_r####_w_o_r_d} RReemmoovvee mmaattcchhiinngg pprreeffiixx ppaatttteerrnn. The _w_o_r_d is expanded to produce a pattern just as in pathname expansion, and matched against the expanded value of _p_a_r_a_m_e_t_e_r using the rules described under PPaatt-- - tteerrnn MMaattcchhiinngg below. If the pattern matches the beginning of - the value of _p_a_r_a_m_e_t_e_r, then the result of the expansion is the - expanded value of _p_a_r_a_m_e_t_e_r with the shortest matching pattern - (the "#" case) or the longest matching pattern (the "##" case) - deleted. If _p_a_r_a_m_e_t_e_r is @@ or **, the pattern removal operation - is applied to each positional parameter in turn, and the expan- - sion is the resultant list. If _p_a_r_a_m_e_t_e_r is an array variable - subscripted with @@ or **, the pattern removal operation is ap- - plied to each member of the array in turn, and the expansion is + tteerrnn MMaattcchhiinngg below. If the pattern matches the beginning of + the value of _p_a_r_a_m_e_t_e_r, then the result of the expansion is the + expanded value of _p_a_r_a_m_e_t_e_r with the shortest matching pattern + (the "#" case) or the longest matching pattern (the "##" case) + deleted. If _p_a_r_a_m_e_t_e_r is @@ or **, the pattern removal operation + is applied to each positional parameter in turn, and the expan- + sion is the resultant list. If _p_a_r_a_m_e_t_e_r is an array variable + subscripted with @@ or **, the pattern removal operation is ap- + plied to each member of the array in turn, and the expansion is the resultant list. ${_p_a_r_a_m_e_t_e_r%%_w_o_r_d} @@ -1883,15 +1962,15 @@ EEXXPPAANNSSIIOONN RReemmoovvee mmaattcchhiinngg ssuuffffiixx ppaatttteerrnn. The _w_o_r_d is expanded to produce a pattern just as in pathname expansion, and matched against the expanded value of _p_a_r_a_m_e_t_e_r using the rules described under PPaatt-- - tteerrnn MMaattcchhiinngg below. If the pattern matches a trailing portion - of the expanded value of _p_a_r_a_m_e_t_e_r, then the result of the ex- - pansion is the expanded value of _p_a_r_a_m_e_t_e_r with the shortest - matching pattern (the "%" case) or the longest matching pattern - (the "%%" case) deleted. If _p_a_r_a_m_e_t_e_r is @@ or **, the pattern - removal operation is applied to each positional parameter in - turn, and the expansion is the resultant list. If _p_a_r_a_m_e_t_e_r is - an array variable subscripted with @@ or **, the pattern removal - operation is applied to each member of the array in turn, and + tteerrnn MMaattcchhiinngg below. If the pattern matches a trailing portion + of the expanded value of _p_a_r_a_m_e_t_e_r, then the result of the ex- + pansion is the expanded value of _p_a_r_a_m_e_t_e_r with the shortest + matching pattern (the "%" case) or the longest matching pattern + (the "%%" case) deleted. If _p_a_r_a_m_e_t_e_r is @@ or **, the pattern + removal operation is applied to each positional parameter in + turn, and the expansion is the resultant list. If _p_a_r_a_m_e_t_e_r is + an array variable subscripted with @@ or **, the pattern removal + operation is applied to each member of the array in turn, and the expansion is the resultant list. ${_p_a_r_a_m_e_t_e_r//_p_a_t_t_e_r_n//_s_t_r_i_n_g} @@ -1899,22 +1978,23 @@ EEXXPPAANNSSIIOONN ${_p_a_r_a_m_e_t_e_r//##_p_a_t_t_e_r_n//_s_t_r_i_n_g} ${_p_a_r_a_m_e_t_e_r//%%_p_a_t_t_e_r_n//_s_t_r_i_n_g} PPaatttteerrnn ssuubbssttiittuuttiioonn. The _p_a_t_t_e_r_n is expanded to produce a pat- - tern just as in pathname expansion. _P_a_r_a_m_e_t_e_r is expanded and - the longest match of _p_a_t_t_e_r_n against its value is replaced with - _s_t_r_i_n_g. _s_t_r_i_n_g undergoes tilde expansion, parameter and vari- - able expansion, arithmetic expansion, command and process sub- - stitution, and quote removal. The match is performed using the - rules described under PPaatttteerrnn MMaattcchhiinngg below. In the first form - above, only the first match is replaced. If there are two - slashes separating _p_a_r_a_m_e_t_e_r and _p_a_t_t_e_r_n (the second form - above), all matches of _p_a_t_t_e_r_n are replaced with _s_t_r_i_n_g. If - _p_a_t_t_e_r_n is preceded by ## (the third form above), it must match - at the beginning of the expanded value of _p_a_r_a_m_e_t_e_r. If _p_a_t_t_e_r_n - is preceded by %% (the fourth form above), it must match at the - end of the expanded value of _p_a_r_a_m_e_t_e_r. If the expansion of - _s_t_r_i_n_g is null, matches of _p_a_t_t_e_r_n are deleted. If _s_t_r_i_n_g is - null, matches of _p_a_t_t_e_r_n are deleted and the // following _p_a_t_t_e_r_n - may be omitted. + tern just as in pathname expansion and matched against the ex- + panded value of _p_a_r_a_m_e_t_e_r using the rules described under PPaatt-- + tteerrnn MMaattcchhiinngg below. The longest match of _p_a_t_t_e_r_n in the ex- + panded value is replaced with _s_t_r_i_n_g. _s_t_r_i_n_g undergoes tilde + expansion, parameter and variable expansion, arithmetic expan- + sion, command and process substitution, and quote removal. + + In the first form above, only the first match is replaced. If + there are two slashes separating _p_a_r_a_m_e_t_e_r and _p_a_t_t_e_r_n (the sec- + ond form above), all matches of _p_a_t_t_e_r_n are replaced with + _s_t_r_i_n_g. If _p_a_t_t_e_r_n is preceded by ## (the third form above), it + must match at the beginning of the expanded value of _p_a_r_a_m_e_t_e_r. + If _p_a_t_t_e_r_n is preceded by %% (the fourth form above), it must + match at the end of the expanded value of _p_a_r_a_m_e_t_e_r. + + If the expansion of _s_t_r_i_n_g is null, matches of _p_a_t_t_e_r_n are + deleted and the // following _p_a_t_t_e_r_n may be omitted. If the ppaattssuubb__rreeppllaacceemmeenntt shell option is enabled using sshhoopptt, any unquoted instances of && in _s_t_r_i_n_g are replaced with the @@ -1934,37 +2014,47 @@ EEXXPPAANNSSIIOONN want to be taken literally in the replacement and ensure any in- stances of && they want to be replaced are unquoted. - If the nnooccaasseemmaattcchh shell option is enabled, the match is per- - formed without regard to the case of alphabetic characters. If - _p_a_r_a_m_e_t_e_r is @@ or **, the substitution operation is applied to - each positional parameter in turn, and the expansion is the re- - sultant list. If _p_a_r_a_m_e_t_e_r is an array variable subscripted - with @@ or **, the substitution operation is applied to each mem- - ber of the array in turn, and the expansion is the resultant + Like the pattern removal operators, double quotes surrounding + the replacement string quote the expanded characters, while dou- + ble quotes enclosing the entire parameter substitution do not, + since the expansion is performed in a context that doesn't take + any enclosing double quotes into account. + + If the nnooccaasseemmaattcchh shell option is enabled, the match is per- + formed without regard to the case of alphabetic characters. + + If _p_a_r_a_m_e_t_e_r is @@ or **, the substitution operation is applied to + each positional parameter in turn, and the expansion is the re- + sultant list. If _p_a_r_a_m_e_t_e_r is an array variable subscripted + with @@ or **, the substitution operation is applied to each mem- + ber of the array in turn, and the expansion is the resultant list. ${_p_a_r_a_m_e_t_e_r^^_p_a_t_t_e_r_n} ${_p_a_r_a_m_e_t_e_r^^^^_p_a_t_t_e_r_n} ${_p_a_r_a_m_e_t_e_r,,_p_a_t_t_e_r_n} ${_p_a_r_a_m_e_t_e_r,,,,_p_a_t_t_e_r_n} - CCaassee mmooddiiffiiccaattiioonn. This expansion modifies the case of alpha- - betic characters in _p_a_r_a_m_e_t_e_r. The _p_a_t_t_e_r_n is expanded to pro- + CCaassee mmooddiiffiiccaattiioonn. This expansion modifies the case of alpha- + betic characters in _p_a_r_a_m_e_t_e_r. The _p_a_t_t_e_r_n is expanded to pro- duce a pattern just as in pathname expansion. Each character in - the expanded value of _p_a_r_a_m_e_t_e_r is tested against _p_a_t_t_e_r_n, and, - if it matches the pattern, its case is converted. The pattern - should not attempt to match more than one character. The ^^ op- - erator converts lowercase letters matching _p_a_t_t_e_r_n to uppercase; - the ,, operator converts matching uppercase letters to lowercase. - The ^^^^ and ,,,, expansions convert each matched character in the - expanded value; the ^^ and ,, expansions match and convert only - the first character in the expanded value. If _p_a_t_t_e_r_n is omit- - ted, it is treated like a ??, which matches every character. If - _p_a_r_a_m_e_t_e_r is @@ or **, the case modification operation is applied - to each positional parameter in turn, and the expansion is the - resultant list. If _p_a_r_a_m_e_t_e_r is an array variable subscripted - with @@ or **, the case modification operation is applied to each - member of the array in turn, and the expansion is the resultant - list. + the expanded value of _p_a_r_a_m_e_t_e_r is tested against _p_a_t_t_e_r_n, and, + if it matches the pattern, its case is converted. The pattern + should not attempt to match more than one character. + + The ^^ operator converts lowercase letters matching _p_a_t_t_e_r_n to + uppercase; the ,, operator converts matching uppercase letters to + lowercase. The ^^^^ and ,,,, expansions convert each matched char- + acter in the expanded value; the ^^ and ,, expansions match and + convert only the first character in the expanded value. If _p_a_t_- + _t_e_r_n is omitted, it is treated like a ??, which matches every + character. + + If _p_a_r_a_m_e_t_e_r is @@ or **, the case modification operation is ap- + plied to each positional parameter in turn, and the expansion is + the resultant list. If _p_a_r_a_m_e_t_e_r is an array variable sub- + scripted with @@ or **, the case modification operation is applied + to each member of the array in turn, and the expansion is the + resultant list. ${_p_a_r_a_m_e_t_e_r@@_o_p_e_r_a_t_o_r} PPaarraammeetteerr ttrraannssffoorrmmaattiioonn. The expansion is either a transforma- @@ -2072,9 +2162,8 @@ EEXXPPAANNSSIIOONN word splitting and pathname expansion on the results. AArriitthhmmeettiicc EExxppaannssiioonn - Arithmetic expansion allows the evaluation of an arithmetic expression - and the substitution of the result. The format for arithmetic expan- - sion is: + Arithmetic expansion evaluates an arithmetic expression and substitutes + the result. The format for arithmetic expansion is: $$((((_e_x_p_r_e_s_s_i_o_n)))) @@ -2087,84 +2176,97 @@ EEXXPPAANNSSIIOONN The evaluation is performed according to the rules listed below under AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN. If _e_x_p_r_e_s_s_i_o_n is invalid, bbaasshh prints a message - indicating failure and no substitution occurs. + to standard error indicating failure, does not perform the substitu- + tion, and does not execute the command associated with the expansion. PPrroocceessss SSuubbssttiittuuttiioonn - _P_r_o_c_e_s_s _s_u_b_s_t_i_t_u_t_i_o_n allows a process's input or output to be referred - to using a filename. It takes the form of <<((_l_i_s_t)) or >>((_l_i_s_t)). The - process _l_i_s_t is run asynchronously, and its input or output appears as + _P_r_o_c_e_s_s _s_u_b_s_t_i_t_u_t_i_o_n allows a process's input or output to be referred + to using a filename. It takes the form of <<((_l_i_s_t)) or >>((_l_i_s_t)). The + process _l_i_s_t 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 >>((_l_i_s_t)) form is used, - writing to the file will provide input for _l_i_s_t. If the <<((_l_i_s_t)) form - is used, the file passed as an argument should be read to obtain the - output of _l_i_s_t. Process substitution is supported on systems that sup- - port named pipes (_F_I_F_O_s) or the //ddeevv//ffdd method of naming open files. - - When available, process substitution is performed simultaneously with - parameter and variable expansion, command substitution, and arithmetic + mand as the result of the expansion. + + If the >>((_l_i_s_t)) form is used, writing to the file will provide input for + _l_i_s_t. If the <<((_l_i_s_t)) form is used, reading the file will obtain the + output of _l_i_s_t. No space may appear between the << or >> and the left + parenthesis, otherwise the construct would be interpreted as a redirec- + tion. + + Process substitution is supported on systems that support named pipes + (_F_I_F_O_s) or the //ddeevv//ffdd method of naming open files. + + When available, process substitution is performed simultaneously with + parameter and variable expansion, command substitution, and arithmetic expansion. WWoorrdd SSpplliittttiinngg - 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 _w_o_r_d _s_p_l_i_t_t_i_n_g. - The shell treats each character of IIFFSS as a delimiter, and splits the - results of the other expansions into words using these characters as + The shell treats each character of IIFFSS as a delimiter, and splits the + results of the other expansions into words using these characters as field terminators. If IIFFSS is unset, or its value is exactly <><><>, the de- - fault, then sequences of ssppaaccee, ttaabb, and nneewwlliinnee at the beginning and - end of the results of the previous expansions are ignored, and any se- - quence of IIFFSS characters not at the beginning or end serves to delimit - words. If IIFFSS has a value other than the default, then sequences of - the whitespace characters ssppaaccee, ttaabb, and nneewwlliinnee are ignored at the - beginning and end of the word, as long as the whitespace character is - in the value of IIFFSS (an IIFFSS whitespace character). Any character in - IIFFSS that is not IIFFSS whitespace, along with any adjacent IIFFSS whitespace - characters, delimits a field. A sequence of IIFFSS whitespace characters - is also treated as a delimiter. - - If the value of IIFFSS is null, no word splitting occurs. If IIFFSS is un- - set, word splitting behaves as if it contained the default value of + fault, then sequences of ssppaaccee, ttaabb, and nneewwlliinnee at the beginning and + end of the results of the previous expansions are ignored, and any se- + quence of IIFFSS characters not at the beginning or end delimits words. + If IIFFSS has a value other than the default, then sequences of the white- + space characters ssppaaccee, ttaabb, and nneewwlliinnee present in the value of IIFFSS + (an IIFFSS whitespace character) are ignored at the beginning and end of + the word. Any character in IIFFSS that is not IIFFSS whitespace, along with + any adjacent IIFFSS whitespace characters, delimits a field. A sequence + of IIFFSS whitespace characters is also treated as a delimiter. + + If the value of IIFFSS is null, no word splitting occurs. If IIFFSS is un- + set, word splitting behaves as if it contained the default value of <><><>. - Explicit null arguments ("""" or '''') are retained and passed to commands + Explicit null arguments ("""" or '''') 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 - non-null, the null argument is removed. That is, the word "-d''" be- + 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''" be- comes "-d" after word splitting and null argument removal. Note that if no expansion occurs, no splitting is performed. PPaatthhnnaammee EExxppaannssiioonn - After word splitting, unless the --ff option has been set, bbaasshh scans - each word for the characters **, ??, and [[. If one of these characters + After word splitting, unless the --ff option has been set, bbaasshh scans + each word for the characters **, ??, and [[. If one of these characters appears, and is not quoted, then the word is regarded as a _p_a_t_t_e_r_n, and - replaced with an alphabetically sorted list of filenames matching the - pattern (see PPaatttteerrnn MMaattcchhiinngg below). If no matching filenames are - found, and the shell option nnuullllgglloobb is not enabled, the word is left - unchanged. If the nnuullllgglloobb option is set, and no matches are found, - the word is removed. If the ffaaiillgglloobb shell option is set, and no - matches are found, an error message is printed and the command is not - executed. If the shell option nnooccaasseegglloobb 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 "." at the start - of a name or immediately following a slash must be matched explicitly, - unless the shell option ddoottgglloobb is set. In order to match the file- - names "." and "..", the pattern must begin with "." (for example, - ".?"), even if ddoottgglloobb is set. If the gglloobbsskkiippddoottss shell option is en- - abled, the filenames "." and ".." never match, even if the pattern be- - gins with a "." When not matching pathnames, the "." character is not - treated specially. When matching a pathname, 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 PPaatttteerrnn MMaattcchhiinngg. See the description of sshhoopptt - below under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS for a description of the nnooccaasseegglloobb, - nnuullllgglloobb, gglloobbsskkiippddoottss, ffaaiillgglloobb, and ddoottgglloobb shell options. + replaced with a sorted list of filenames matching the pattern (see PPaatt-- + tteerrnn MMaattcchhiinngg below) subject to the value of the GGLLOOBBSSOORRTT shell vari- + able. + + If no matching filenames are found, and the shell option nnuullllgglloobb is + not enabled, the word is left unchanged. If the nnuullllgglloobb option is + set, and no matches are found, the word is removed. If the ffaaiillgglloobb + shell option is set, and no matches are found, bbaasshh prints an error + message and does not execute the command. If the shell option nnooccaassee-- + gglloobb is enabled, the match is performed without regard to the case of + alphabetic characters. + + When a pattern is used for pathname expansion, the character "." at the + start of a name or immediately following a slash must be matched ex- + plicitly, unless the shell option ddoottgglloobb is set. In order to match + the filenames "." and "..", the pattern must begin with "." (for exam- + ple, ".?"), even if ddoottgglloobb is set. If the gglloobbsskkiippddoottss shell option + is enabled, the filenames "." and ".." never match, even if the pattern + begins with a ".". When not matching pathnames, the "." character is + not treated specially. + + When matching a pathname, 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 + PPaatttteerrnn MMaattcchhiinngg. + + See the description of sshhoopptt below under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS for a + description of the nnooccaasseegglloobb, nnuullllgglloobb, gglloobbsskkiippddoottss, ffaaiillgglloobb, and + ddoottgglloobb shell options. The GGLLOOBBIIGGNNOORREE shell variable may be used to restrict the set of file names matching a _p_a_t_t_e_r_n. If GGLLOOBBIIGGNNOORREE is set, each matching file @@ -2174,55 +2276,58 @@ EEXXPPAANNSSIIOONN case. The filenames "." and ".." are always ignored when GGLLOOBBIIGGNNOORREE is set and not null. However, setting GGLLOOBBIIGGNNOORREE to a non-null value has the effect of enabling the ddoottgglloobb shell option, so all other filenames - beginning with a Q . will match. To get the old behavior of ignoring + beginning with a "." will match. To get the old behavior of ignoring filenames beginning with a ".", make ".*" one of the patterns in GGLLOO-- BBIIGGNNOORREE. The ddoottgglloobb option is disabled when GGLLOOBBIIGGNNOORREE is unset. The - pattern matching honors the setting of the eexxttgglloobb shell option. + GGLLOOBBIIGGNNOORREE pattern matching honors the setting of the eexxttgglloobb shell op- + tion. - The GGLLOOBBSSOORRTT variable controls how the results of pathname expansion - are sorted, as described above. + The GGLLOOBBSSOORRTT shell variable controls how the results of pathname expan- + sion are sorted, as described above. PPaatttteerrnn MMaattcchhiinngg 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: - ** Matches any string, including the null string. When the - gglloobbssttaarr shell option is enabled, and ** is used in a - pathname expansion context, two adjacent **s used as a - single pattern will match all files and zero or more di- - rectories and subdirectories. If followed by a //, two - adjacent **s will match only directories and subdirecto- + ** Matches any string, including the null string. When the + gglloobbssttaarr shell option is enabled, and ** is used in a + pathname expansion context, two adjacent **s used as a + single pattern will match all files and zero or more di- + rectories and subdirectories. If followed by a //, two + adjacent **s will match only directories and subdirecto- ries. ?? Matches any single character. - [[...]] Matches any one of the enclosed characters. A pair of - characters separated by a hyphen denotes a _r_a_n_g_e _e_x_p_r_e_s_- - _s_i_o_n; any character that falls between those two charac- + [[...]] Matches any one of the enclosed characters. A pair of + characters separated by a hyphen denotes a _r_a_n_g_e _e_x_p_r_e_s_- + _s_i_o_n; 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 [[ is a !! or a ^^ 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 LLCC__CCOOLLLLAATTEE or LLCC__AALLLL shell variables, if set. - To obtain the traditional interpretation of range expres- - sions, where [[aa--dd]] is equivalent to [[aabbccdd]], set value of - the LLCC__AALLLL shell variable to CC, or enable the gglloobbaassccii-- - iirraannggeess shell option. A -- may be matched by including it - as the first or last character in the set. A ]] may be - matched by including it as the first character in the - set. - - Within [[ and ]], _c_h_a_r_a_c_t_e_r _c_l_a_s_s_e_s can be specified using + quence and character set, matches. If the first charac- + ter following the [[ is a !! or a ^^ then any character not + within the range matches. A -- may be matched by includ- + ing it as the first or last character in the set. A ]] + may be matched by including it as the first character in + the set. + + The sorting order of characters in range expressions, and + the characters included in the range, are determined by + the current locale and the values of the LLCC__CCOOLLLLAATTEE or + LLCC__AALLLL shell variables, if set. To obtain the tradi- + tional interpretation of range expressions, where [[aa--dd]] + is equivalent to [[aabbccdd]], set the value of the LLCC__CCOOLLLLAATTEE + or LLCC__AALLLL shell variables to CC, or enable the gglloobbaassccii-- + iirraannggeess shell option. + + Within [[ and ]], _c_h_a_r_a_c_t_e_r _c_l_a_s_s_e_s can be specified using the syntax [[::_c_l_a_s_s::]], where _c_l_a_s_s is one of the following classes defined in the POSIX standard: - aallnnuumm aallpphhaa aasscciiii bbllaannkk ccnnttrrll ddiiggiitt ggrraapphh lloowweerr pprriinntt + aallnnuumm aallpphhaa aasscciiii bbllaannkk ccnnttrrll ddiiggiitt ggrraapphh lloowweerr pprriinntt ppuunncctt ssppaaccee uuppppeerr wwoorrdd xxddiiggiitt A character class matches any character belonging to that @@ -2230,43 +2335,44 @@ EEXXPPAANNSSIIOONN and the character _. Within [[ and ]], an _e_q_u_i_v_a_l_e_n_c_e _c_l_a_s_s can be specified us- - ing the syntax [[==_c==]], which matches all characters with - the same collation weight (as defined by the current lo- + ing the syntax [[==_c==]], which matches all characters with + the same collation weight (as defined by the current lo- cale) as the character _c. Within [[ and ]], the syntax [[.._s_y_m_b_o_l..]] matches the collat- ing symbol _s_y_m_b_o_l. - If the eexxttgglloobb shell option is enabled using the sshhoopptt builtin, the - shell recognizes several extended pattern matching operators. In the + If the eexxttgglloobb shell option is enabled using the sshhoopptt builtin, the + shell recognizes several extended pattern matching operators. In the following description, a _p_a_t_t_e_r_n_-_l_i_s_t is a list of one or more patterns - separated by a ||. Composite patterns may be formed using one or more + separated by a ||. Composite patterns may be formed using one or more of the following sub-patterns: ??((_p_a_t_t_e_r_n_-_l_i_s_t)) - Matches zero or one occurrence of the given patterns + Matches zero or one occurrence of the given patterns. **((_p_a_t_t_e_r_n_-_l_i_s_t)) - Matches zero or more occurrences of the given patterns + Matches zero or more occurrences of the given patterns. ++((_p_a_t_t_e_r_n_-_l_i_s_t)) - Matches one or more occurrences of the given patterns + Matches one or more occurrences of the given patterns. @@((_p_a_t_t_e_r_n_-_l_i_s_t)) - Matches one of the given patterns + Matches one of the given patterns. !!((_p_a_t_t_e_r_n_-_l_i_s_t)) - Matches anything except one of the given patterns + Matches anything except one of the given patterns. The eexxttgglloobb 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 eexxttgglloobb 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 eexxttgglloobb is enabled before parsing constructs containing the pat- terns, including shell functions and command substitutions. When matching filenames, the ddoottgglloobb shell option determines the set of - filenames that are tested: when ddoottgglloobb 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 + filenames that are tested: when ddoottgglloobb 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 "." un- - less the pattern or sub-pattern begins with a ".". As above, "." only - has a special meaning when matching filenames. + less the pattern or sub-pattern begins with a ".". If the gglloobbsskkiippddoottss + shell option is enabled, the filenames "." and ".." never appear in the + set. 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 @@ -2283,21 +2389,21 @@ RREEDDIIRREECCTTIIOONN using a special notation interpreted by the shell. _R_e_d_i_r_e_c_t_i_o_n 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- - tors may precede or appear anywhere within a _s_i_m_p_l_e _c_o_m_m_a_n_d or may fol- - low a _c_o_m_m_a_n_d. Redirections are processed in the order they appear, - from left to right. + writes to. When used with the eexxeecc builtin, redirections modify file + handles in the current shell execution environment. The following + redirection operators may precede or appear anywhere within a _s_i_m_p_l_e + _c_o_m_m_a_n_d or may follow a _c_o_m_m_a_n_d. Redirections are processed in the or- + der they appear, from left to right. Each redirection that may be preceded by a file descriptor number may instead be preceded by a word of the form {_v_a_r_n_a_m_e}. 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 _v_a_r_n_a_m_e. - If >&- or <&- is preceded by {_v_a_r_n_a_m_e}, the value of _v_a_r_n_a_m_e defines - the file descriptor to close. If {_v_a_r_n_a_m_e} is supplied, the redirec- - tion persists beyond the scope of the command, allowing the shell pro- - grammer to manage the file descriptor's lifetime manually. The - vvaarrrreeddiirr__cclloossee shell option manages this behavior. + If {_v_a_r_n_a_m_e} precedes >&- or <&-, the value of _v_a_r_n_a_m_e defines the file + descriptor to close. If {_v_a_r_n_a_m_e} is supplied, the redirection per- + sists beyond the scope of the command, which allows the shell program- + mer to manage the file descriptor's lifetime manually without using the + eexxeecc builtin. The vvaarrrreeddiirr__cclloossee 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 <<, the @@ -2305,35 +2411,33 @@ RREEDDIIRREECCTTIIOONN first character of the redirection operator is >>, the redirection refers to the standard output (file descriptor 1). - The word following the redirection operator in the following descrip- + The _w_o_r_d 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, bbaasshh reports an error. - Note that the order of redirections is significant. For example, the - command + The order of redirections is significant. For example, the command ls >> dirlist 2>>&&1 - directs both standard output and standard error to the file _d_i_r_l_i_s_t, + directs both standard output and standard error to the file _d_i_r_l_i_s_t, while the command ls 2>>&&1 >> dirlist - directs only the standard output to file _d_i_r_l_i_s_t, because the standard - error was duplicated from the standard output before the standard out- - put was redirected to _d_i_r_l_i_s_t. + directs only the standard output to file _d_i_r_l_i_s_t, because the standard + error was directed to the standard output before the standard output + was redirected to _d_i_r_l_i_s_t. BBaasshh handles several filenames specially when they are used in redirec- tions, as described in the following table. If the operating system on - which bbaasshh is running provides these special files, bash will use them; - otherwise it will emulate them internally with the behavior described + which bbaasshh is running provides these special files, bbaasshh will use them; + otherwise it will emulate them internally with the behavior described below. //ddeevv//ffdd//_f_d - If _f_d is a valid integer, file descriptor _f_d is dupli- - cated. + If _f_d is a valid integer, duplicate file descriptor _f_d. //ddeevv//ssttddiinn File descriptor 0 is duplicated. //ddeevv//ssttddoouutt @@ -2356,20 +2460,19 @@ RREEDDIIRREECCTTIIOONN nally. RReeddiirreeccttiinngg IInnppuutt - Redirection of input causes the file whose name results from the expan- - sion of _w_o_r_d to be opened for reading on file descriptor _n, or the - standard input (file descriptor 0) if _n is not specified. + Redirecting input opens the file whose name results from the expansion + of _w_o_r_d for reading on file descriptor _n, or the standard input (file + descriptor 0) if _n is not specified. The general format for redirecting input is: [_n]<<_w_o_r_d RReeddiirreeccttiinngg OOuuttppuutt - Redirection of output causes the file whose name results from the ex- - pansion of _w_o_r_d to be opened for writing on file descriptor _n, or the - standard output (file descriptor 1) if _n is not specified. If the file - does not exist it is created; if it does exist it is truncated to zero - size. + Redirecting output opens the file whose name results from the expansion + of _w_o_r_d for writing on file descriptor _n, or the standard output (file + descriptor 1) if _n is not specified. If the file does not exist it is + created; if it does exist it is truncated to zero size. The general format for redirecting output is: @@ -2379,23 +2482,23 @@ RREEDDIIRREECCTTIIOONN builtin has been enabled, the redirection will fail if the file whose name results from the expansion of _w_o_r_d exists and is a regular file. If the redirection operator is >>||, or the redirection operator is >> and - the nnoocclloobbbbeerr option to the sseett builtin command is not enabled, the - redirection is attempted even if the file named by _w_o_r_d exists. + the nnoocclloobbbbeerr option to the sseett builtin command is not enabled, bbaasshh + attempts the redirection even if the file named by _w_o_r_d exists. AAppppeennddiinngg RReeddiirreecctteedd OOuuttppuutt - Redirection of output in this fashion causes the file whose name re- - sults from the expansion of _w_o_r_d to be opened for appending on file de- - scriptor _n, or the standard output (file descriptor 1) if _n is not - specified. If the file does not exist it is created. + Redirecting output in this fashion opens the file whose name results + from the expansion of _w_o_r_d for appending on file descriptor _n, or the + standard output (file descriptor 1) if _n is not specified. If the file + does not exist it is created. The general format for appending output is: [_n]>>>>_w_o_r_d RReeddiirreeccttiinngg SSttaannddaarrdd OOuuttppuutt aanndd SSttaannddaarrdd EErrrroorr - 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 _w_o_r_d. + This construct redirects both the standard output (file descriptor 1) + and the standard error output (file descriptor 2) to the file whose + name is the expansion of _w_o_r_d. There are two formats for redirecting standard output and standard er- ror: @@ -2414,9 +2517,9 @@ RREEDDIIRREECCTTIIOONN ssccrriippttoorrss below) for compatibility reasons. AAppppeennddiinngg SSttaannddaarrdd OOuuttppuutt aanndd SSttaannddaarrdd EErrrroorr - 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 _w_o_r_d. + This construct appends both the standard output (file descriptor 1) and + the standard error output (file descriptor 2) to the file whose name is + the expansion of _w_o_r_d. The format for appending standard output and standard error is: @@ -2431,9 +2534,9 @@ RREEDDIIRREECCTTIIOONN HHeerree DDooccuummeennttss This type of redirection instructs the shell to read input from the current source until it reads a line containing only _d_e_l_i_m_i_t_e_r (with no - trailing blanks). All of the lines read up to that point are then used - as the standard input (or file descriptor _n if _n is specified) for a - command. + trailing blanks). All of the lines read up to that point then become + the standard input (or file descriptor _n if _n is specified) for a com- + mand. The format of here-documents is: @@ -2441,29 +2544,38 @@ RREEDDIIRREECCTTIIOONN _h_e_r_e_-_d_o_c_u_m_e_n_t _d_e_l_i_m_i_t_e_r - No parameter and variable expansion, command substitution, arithmetic - expansion, or pathname expansion is performed on _w_o_r_d. + The shell does not perform parameter and variable expansion, command + substitution, arithmetic expansion, or pathname expansion is performed + on _w_o_r_d. If any part of _w_o_r_d is quoted, the _d_e_l_i_m_i_t_e_r is the result of quote re- moval on _w_o_r_d, and the lines in the here-document are not expanded. If - _w_o_r_d is unquoted, the _d_e_l_i_m_i_t_e_r is _w_o_r_d itself, all lines of the here- - document are subjected to parameter expansion, command substitution, - and arithmetic expansion, the character sequence \\<> is ignored, - and \\ must be used to quote the characters \\, $$, and ``. - - If the redirection operator is <<<<--, then all leading tab characters are - stripped from input lines and the line containing _d_e_l_i_m_i_t_e_r. This al- - lows here-documents within shell scripts to be indented in a natural - fashion. + _w_o_r_d is unquoted, the _d_e_l_i_m_i_t_e_r is _w_o_r_d itself, and the here-document + text is treated similarly to a double-quoted string: all lines of the + here-document are subjected to parameter expansion, command substitu- + tion, and arithmetic expansion, the character sequence \\<> is + treated literally, and \\ must be used to quote the characters \\, $$, and + ``; however, double quote characters have no special meaning. + + If the redirection operator is <<<<--, then the shell strips all leading + tab characters from input lines and the line containing _d_e_l_i_m_i_t_e_r. + This allows here-documents within shell scripts to be indented in a + natural fashion. + + If the delimiter is not quoted, the \\<> sequence is treated as a + line continuation: the two lines are joined and the backslash-newline + is removed. This happens while reading the here-document, before the + check for the ending delimiter, so joined lines can form the end delim- + iter. HHeerree SSttrriinnggss A variant of here documents, the format is: [_n]<<<<<<_w_o_r_d - The _w_o_r_d 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 _w_o_r_d 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 _n if _n is specified). @@ -2473,23 +2585,23 @@ RREEDDIIRREECCTTIIOONN [_n]<<&&_w_o_r_d is used to duplicate input file descriptors. If _w_o_r_d expands to one or - more digits, the file descriptor denoted by _n is made to be a copy of - that file descriptor. If the digits in _w_o_r_d do not specify a file de- - scriptor open for input, a redirection error occurs. If _w_o_r_d evaluates - to --, file descriptor _n is closed. If _n is not specified, the standard - input (file descriptor 0) is used. + more digits, file descriptor _n is made to be a copy of that file de- + scriptor. It is a redirection error if the digits in _w_o_r_d do not spec- + ify a file descriptor open for input. If _w_o_r_d evaluates to --, file de- + scriptor _n is closed. If _n is not specified, this uses the standard + input (file descriptor 0). The operator [_n]>>&&_w_o_r_d - is used similarly to duplicate output file descriptors. If _n is not - specified, the standard output (file descriptor 1) is used. If the - digits in _w_o_r_d do not specify a file descriptor open for output, a - redirection error occurs. If _w_o_r_d evaluates to --, file descriptor _n is + is used similarly to duplicate output file descriptors. If _n is not + specified, this uses the standard output (file descriptor 1). It is a + redirection error if the digits in _w_o_r_d do not specify a file descrip- + tor open for output. If _w_o_r_d evaluates to --, file descriptor _n is closed. As a special case, if _n is omitted, and _w_o_r_d does not expand - to one or more digits or --, the standard output and standard error are - redirected as described previously. + to one or more digits or --, this redirects the standard output and + standard error as described previously. MMoovviinngg FFiillee DDeessccrriippttoorrss The redirection operator @@ -2512,9 +2624,9 @@ RREEDDIIRREECCTTIIOONN [_n]<<>>_w_o_r_d - causes the file whose name is the expansion of _w_o_r_d to be opened for - both reading and writing on file descriptor _n, or on file descriptor 0 - if _n is not specified. If the file does not exist, it is created. + opens the file whose name is the expansion of _w_o_r_d for both reading and + writing on file descriptor _n, or on file descriptor 0 if _n is not spec- + ified. If the file does not exist, it is created. AALLIIAASSEESS _A_l_i_a_s_e_s allow a string to be substituted for a word that is in a posi- @@ -2524,7 +2636,7 @@ AALLIIAASSEESS 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 + 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. @@ -2538,14 +2650,15 @@ AALLIIAASSEESS instance, and bbaasshh does not try to recursively expand the replacement text. - If the last character of the alias value is a _b_l_a_n_k, then the next com- - mand word following the alias is also checked for alias expansion. + If the last character of the alias value is a _b_l_a_n_k, the shell checks + the next command word following the alias for alias expansion. Aliases are created and listed with the aalliiaass command, and removed with the uunnaalliiaass command. - There is no mechanism for using arguments in the replacement text. If - arguments are needed, use a shell function (see FFUUNNCCTTIIOONNSS below). + There is no mechanism for using arguments in the replacement text. If + arguments are needed, use a shell function (see FFUUNNCCTTIIOONNSS below) in- + stead. Aliases are not expanded when the shell is not interactive, unless the eexxppaanndd__aalliiaasseess shell option is set using sshhoopptt (see the description of @@ -2557,29 +2670,32 @@ AALLIIAASSEESS 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 aalliiaass in compound commands. - - For almost every purpose, aliases are superseded by shell functions. + effect until the shell reads the next line of input. The commands fol- + lowing 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 com- + mand. As a consequence, aliases defined in a function are not avail- + able until after that function is executed. To be safe, always put + alias definitions on a separate line, and do not use aalliiaass in compound + commands. + + For almost every purpose, shell functions are preferable to aliases. FFUUNNCCTTIIOONNSS A shell function, defined as described above under SSHHEELLLL GGRRAAMMMMAARR, 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 + shell function is used as a simple command name, the shell executes the + list of commands associated with that function name. Functions are ex- + ecuted in the context of the calling shell; there is no new process + created to interpret 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 ## is - updated to reflect the change. Special parameter 00 is unchanged. The - first element of the FFUUNNCCNNAAMMEE variable is set to the name of the func- - tion while the function is executing. + updated to reflect the new positional parameters. Special parameter 00 + is unchanged. The first element of the FFUUNNCCNNAAMMEE variable is set to the + name of the function 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 DDEEBBUUGG and @@ -2591,7 +2707,7 @@ FFUUNNCCTTIIOONNSS traps), and the EERRRR trap is not inherited unless the --oo eerrrrttrraaccee shell option has been enabled. - Variables local to the function may be declared with the llooccaall builtin + Variables local to the function are declared with the llooccaall builtin command (_l_o_c_a_l _v_a_r_i_a_b_l_e_s). Ordinarily, variables and their values are shared between the function and its caller. If a variable is declared llooccaall, the variable's visible scope is restricted to that function and @@ -2600,15 +2716,16 @@ FFUUNNCCTTIIOONNSS In the following description, the _c_u_r_r_e_n_t _s_c_o_p_e 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 - shell function. Consequently, a local variable at the current scope is - a variable declared using the llooccaall or ddeeccllaarree builtins in the function - that is currently executing. + shell function. A local variable at the current scope is a variable + declared using the llooccaall or ddeeccllaarree 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. - When the function returns, the global variable is once again visible. + hides variables with the same name declared at previous scopes, includ- + ing global variables: references and assignments refer to the local + variable, leaving the variables at previous scopes unmodified. When + the function returns, the global variable is once again visible. The shell uses _d_y_n_a_m_i_c _s_c_o_p_i_n_g to control a variable's visibility within functions. With dynamic scoping, visible variables and their @@ -2641,40 +2758,46 @@ FFUUNNCCTTIIOONNSS If the builtin command rreettuurrnn 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 RREETTUURRNN trap is executed be- - fore execution resumes. When a function completes, the values of the - positional parameters and the special parameter ## are restored to the - values they had prior to the function's execution. - - Function names and definitions may be listed with the --ff option to the - ddeeccllaarree or ttyyppeesseett builtin commands. The --FF option to ddeeccllaarree or ttyyppee-- - sseett will list the function names only (and optionally the source file - and line number, if the eexxttddeebbuugg 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 --ff option to the eexxppoorrtt builtin. A function definition may be - deleted using the --ff option to the uunnsseett builtin. + tion call. If rreettuurrnn is supplied a numeric argument, that is the func- + tion's return status; otherwise the function's return status is the + exit status of the last command executed before the rreettuurrnn. Any com- + mand associated with the RREETTUURRNN trap is executed before execution re- + sumes. When a function completes, the values of the positional parame- + ters and the special parameter ## are restored to the values they had + prior to the function's execution. + + The --ff option to the ddeeccllaarree or ttyyppeesseett builtin commands will list + function names and definitions. The --FF option to ddeeccllaarree or ttyyppeesseett + will list the function names only (and optionally the source file and + line number, if the eexxttddeebbuugg shell option is enabled). Functions may + be exported so that child shell processes (those created when executing + a separate shell invocation) automatically have them defined with the + --ff option to the eexxppoorrtt builtin. The --ff option to the uunnsseett builtin + will delete a function definition. Functions may be recursive. The FFUUNNCCNNEESSTT variable may be used to limit - 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. + the depth of the function call stack and restrict the number of func- + tion invocations. By default, bbaasshh imposes no limit on the number of + recursive calls. AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN The shell allows arithmetic expressions to be evaluated, under certain circumstances (see the lleett and ddeeccllaarree builtin commands, the (((( com- - pound command, and AArriitthhmmeettiicc EExxppaannssiioonn). 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- - lowing list of operators is grouped into levels of equal-precedence op- - erators. The levels are listed in order of decreasing precedence. + pound command, the arithmetic ffoorr command, the [[[[ conditional command, + and AArriitthhmmeettiicc EExxppaannssiioonn). + + Evaluation is done in the largest fixed-width integers available, with + no check for overflow, though division by 0 is trapped and flagged as + an error. The operators and their precedence, associativity, and val- + ues are the same as in the C language. The following list of operators + is grouped into levels of equal-precedence operators. The levels are + listed in order of decreasing precedence. _i_d++++ _i_d---- variable post-increment and post-decrement - -- ++ unary minus and plus ++++_i_d ----_i_d variable pre-increment and pre-decrement + -- ++ unary minus and plus !! ~~ logical and bitwise negation **** exponentiation ** // %% multiplication, division, remainder @@ -2698,8 +2821,11 @@ AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN 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 - 0 when referenced by name without using the parameter expansion syntax. + expansion syntax. This means you can use "x", where _x is a shell vari- + able name, in an arithmetic expression, and the shell will evaluate its + value as an expression and use the result. A shell variable that is + null or unset evaluates to 0 when referenced by name in an expression. + The value of a variable is evaluated as an arithmetic expression when it is referenced, or when a variable which has been given the _i_n_t_e_g_e_r attribute using ddeeccllaarree --ii is assigned a value. A null value evaluates @@ -2718,9 +2844,8 @@ AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN 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 - above. + Operators are evaluated in precedence order. Sub-expressions in paren- + theses are evaluated first and may override the precedence rules above. CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS Conditional expressions are used by the [[[[ compound command and the @@ -2729,23 +2854,27 @@ CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS 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. - BBaasshh handles several filenames specially when they are used in expres- + Expressions are formed from the unary or binary primaries listed below. + Unary expressions are often used to examine the status of a file or + shell variable. Binary operators are used for string, numeric, and + file attribute comparisons. + + BBaasshh handles several filenames specially when they are used in expres- sions. If the operating system on which bbaasshh is running provides these - special files, bash will use them; otherwise it will emulate them in- - ternally with this behavior: If any _f_i_l_e argument to one of the pri- + special files, bash will use them; otherwise it will emulate them in- + ternally with this behavior: If any _f_i_l_e argument to one of the pri- maries is of the form _/_d_e_v_/_f_d_/_n, then file descriptor _n is checked. If - the _f_i_l_e argument to one of the primaries is one of _/_d_e_v_/_s_t_d_i_n, - _/_d_e_v_/_s_t_d_o_u_t, or _/_d_e_v_/_s_t_d_e_r_r, file descriptor 0, 1, or 2, respectively, + the _f_i_l_e argument to one of the primaries is one of _/_d_e_v_/_s_t_d_i_n, + _/_d_e_v_/_s_t_d_o_u_t, or _/_d_e_v_/_s_t_d_e_r_r, 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 [[[[, or when the shell is in _p_o_s_i_x _m_o_d_e, the << and >> op- - erators sort lexicographically using the current locale. When the - shell is not in _p_o_s_i_x _m_o_d_e, the tteesstt command sorts using ASCII order- + When used with [[[[, or when the shell is in _p_o_s_i_x _m_o_d_e, the << and >> op- + erators sort lexicographically using the current locale. When the + shell is not in _p_o_s_i_x _m_o_d_e, the tteesstt command sorts using ASCII order- ing. --aa _f_i_l_e @@ -2784,21 +2913,12 @@ CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS --LL _f_i_l_e True if _f_i_l_e exists and is a symbolic link. --NN _f_i_l_e - True if _f_i_l_e exists and has been modified since it was last - read. + True if _f_i_l_e exists and has been modified since it was last ac- + cessed. --OO _f_i_l_e True if _f_i_l_e exists and is owned by the effective user id. --SS _f_i_l_e True if _f_i_l_e exists and is a socket. - _f_i_l_e_1 --eeff _f_i_l_e_2 - True if _f_i_l_e_1 and _f_i_l_e_2 refer to the same device and inode num- - bers. - _f_i_l_e_1 -nntt _f_i_l_e_2 - True if _f_i_l_e_1 is newer (according to modification date) than - _f_i_l_e_2, or if _f_i_l_e_1 exists and _f_i_l_e_2 does not. - _f_i_l_e_1 -oott _f_i_l_e_2 - True if _f_i_l_e_1 is older than _f_i_l_e_2, or if _f_i_l_e_2 exists and _f_i_l_e_1 - does not. --oo _o_p_t_n_a_m_e True if the shell option _o_p_t_n_a_m_e is enabled. See the list of options under the description of the --oo option to the sseett @@ -2825,104 +2945,112 @@ CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS command for POSIX conformance. When used with the [[[[ command, this performs pattern matching as described above (CCoommppoouunndd CCoomm-- mmaannddss). - _s_t_r_i_n_g_1 !!== _s_t_r_i_n_g_2 True if the strings are not equal. - _s_t_r_i_n_g_1 << _s_t_r_i_n_g_2 True if _s_t_r_i_n_g_1 sorts before _s_t_r_i_n_g_2 lexicographically. - _s_t_r_i_n_g_1 >> _s_t_r_i_n_g_2 True if _s_t_r_i_n_g_1 sorts after _s_t_r_i_n_g_2 lexicographically. + _f_i_l_e_1 --eeff _f_i_l_e_2 + True if _f_i_l_e_1 and _f_i_l_e_2 refer to the same device and inode num- + bers. + _f_i_l_e_1 -nntt _f_i_l_e_2 + True if _f_i_l_e_1 is newer (according to modification date) than + _f_i_l_e_2, or if _f_i_l_e_1 exists and _f_i_l_e_2 does not. + _f_i_l_e_1 -oott _f_i_l_e_2 + True if _f_i_l_e_1 is older than _f_i_l_e_2, or if _f_i_l_e_2 exists and _f_i_l_e_1 + does not. + _a_r_g_1 OOPP _a_r_g_2 - OOPP is one of --eeqq, --nnee, --lltt, --llee, --ggtt, or --ggee. These arithmetic - binary operators return true if _a_r_g_1 is equal to, not equal to, - less than, less than or equal to, greater than, or greater than - or equal to _a_r_g_2, respectively. _A_r_g_1 and _a_r_g_2 may be positive - or negative integers. When used with the [[[[ command, _A_r_g_1 and - _A_r_g_2 are evaluated as arithmetic expressions (see AARRIITTHHMMEETTIICC + OOPP is one of --eeqq, --nnee, --lltt, --llee, --ggtt, or --ggee. These arithmetic + binary operators return true if _a_r_g_1 is equal to, not equal to, + less than, less than or equal to, greater than, or greater than + or equal to _a_r_g_2, respectively. _a_r_g_1 and _a_r_g_2 may be positive + or negative integers. When used with the [[[[ command, _a_r_g_1 and + _a_r_g_2 are evaluated as arithmetic expressions (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN above). SSIIMMPPLLEE CCOOMMMMAANNDD EEXXPPAANNSSIIOONN - When a simple command is executed, the shell performs the following ex- - pansions, assignments, and redirections, from left to right, in the + When the shell executes a simple command, it performs the following ex- + 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 RREEDDIIRREECCTTIIOONN. 4. The text after the == 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 - there were no command substitutions, the command exits with a status of - zero. + 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 zero sta- + tus. CCOOMMMMAANNDD EEXXEECCUUTTIIOONN - 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 FFUUNNCCTTIIOONNSS. 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 FFUUNNCCTTIIOONNSS. 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, bbaasshh searches each element of the PPAATTHH for a directory con- + If the name is neither a shell function nor a builtin, and contains no + slashes, bbaasshh searches each element of the PPAATTHH for a directory con- taining an executable file by that name. BBaasshh uses a hash table to re- - member the full pathnames of executable files (see hhaasshh under SSHHEELLLL - BBUUIILLTTIINN CCOOMMMMAANNDDSS below). A full search of the directories in PPAATTHH 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 ccoommmmaanndd__nnoott__ffoouunndd__hhaannddllee. 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 - 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 + member the full pathnames of executable files (see hhaasshh under SSHHEELLLL + BBUUIILLTTIINN CCOOMMMMAANNDDSS below). Bash performs a full search of the directo- + ries in PPAATTHH 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 ccoommmmaanndd__nnoott__ffoouunndd__hhaannddllee. If that function exists, it + is invoked in a separate execution environment with the original com- + mand 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 re- + turns an exit status of 127. + + 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 _s_h_e_l_l _s_c_r_i_p_t, 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 _s_h_e_l_l _s_c_r_i_p_t, a file containing shell commands, and the shell creates a new instance of - 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 hhaasshh below under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS) are retained by the - child. + itself to execute it. Bash tries to determine whether the file is a + text file or a binary, and will not execute files it determines to be + binaries. This subshell reinitializes itself, so that the effect is as + if a new shell had been invoked to handle the script, with the excep- + tion that the locations of commands remembered by the parent (see hhaasshh + below under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS are retained by the child. If the program is a file beginning with ##!!, the remainder of the first line specifies an interpreter for the program. The shell executes the @@ -2990,9 +3118,11 @@ CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENN 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- - 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. + tion. Builtin commands that are invoked as part of a pipeline, except + possibly in the last element depending on the value of the llaassttppiippee + shell option, are also executed in a subshell environment. Changes + made to the subshell environment cannot affect the shell's execution + environment. When the shell is in _p_o_s_i_x _m_o_d_e, subshells spawned to execute command substitutions inherit the value of the --ee option from their parent @@ -3013,250 +3143,273 @@ EENNVVIIRROONNMMEENNTT 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 _e_x_p_o_r_t to child - processes. Executed commands inherit the environment. The eexxppoorrtt and - ddeeccllaarree --xx 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 uunnsseett command, plus - any additions via the eexxppoorrtt and ddeeccllaarree --xx commands. - - The environment for any _s_i_m_p_l_e _c_o_m_m_a_n_d or function may be augmented - temporarily by prefixing it with parameter assignments, as described - above in PPAARRAAMMEETTEERRSS. These assignment statements affect only the envi- - ronment seen by that command. - - If the --kk option is set (see the sseett builtin command below), then _a_l_l - parameter assignments are placed in the environment for a command, not + processes. Executed commands inherit the environment. The eexxppoorrtt, ddee-- + ccllaarree --xx, and uunnsseett commands modify the environment by adding and + deleting parameters and functions. If the value of a parameter in the + environment is modified, the new value automatically becomes part of + the environment, replacing the old. The environment inherited by any + executed command consists of the shell's initial environment, whose + values may be modified in the shell, less any pairs removed by the uunn-- + sseett or eexxppoorrtt --nn commands, plus any additions via the eexxppoorrtt and ddee-- + ccllaarree --xx commands. + + If any parameter assignments, as described above in PPAARRAAMMEETTEERRSS, appear + before a _s_i_m_p_l_e _c_o_m_m_a_n_d, the variable assignments are part of that com- + mand's environment for as long as it executes. These assignment state- + ments affect only the environment seen by that command. If these as- + signments precede a call to a shell function, the variables are local + to the function and exported to that function's children. + + If the --kk option is set (see the sseett builtin command below), then _a_l_l + parameter assignments are placed in the environment for a command, not just those that precede the command name. - When bbaasshh invokes an external command, the variable __ is set to the - full filename of the command and passed to that command in its environ- + When bbaasshh invokes an external command, the variable __ is set to the + full pathname of the command and passed to that command in its environ- ment. EEXXIITT SSTTAATTUUSS - 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 _w_a_i_t_p_i_d 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 - signal _N, bbaasshh uses the value of 128+_N as the exit status. + has succeeded. So while an exit status of zero indicates success, a + non-zero exit status indicates failure. - 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, + When a command terminates on a fatal signal _N, bbaasshh uses the value of + 128+_N 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, 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 (_t_r_u_e) if successful, and - non-zero (_f_a_l_s_e) 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 (_t_r_u_e) if successful, and + non-zero (_f_a_l_s_e) 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 $?. - BBaasshh 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 + BBaasshh 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 eexxiitt builtin command below. SSIIGGNNAALLSS - When bbaasshh is interactive, in the absence of any traps, it ignores - SSIIGGTTEERRMM (so that kkiillll 00 does not kill an interactive shell), and SSIIGGIINNTT - is caught and handled (so that the wwaaiitt builtin is interruptible). In + When bbaasshh is interactive, in the absence of any traps, it ignores + SSIIGGTTEERRMM (so that kkiillll 00 does not kill an interactive shell), and + catches and handles SSIIGGIINNTT (so that the wwaaiitt builtin is interruptible). + When bbaasshh receives SSIIGGIINNTT, it breaks out of any executing loops. In all cases, bbaasshh ignores SSIIGGQQUUIITT. If job control is in effect, bbaasshh ig- nores SSIIGGTTTTIINN, SSIIGGTTTTOOUU, and SSIIGGTTSSTTPP. - Non-builtin commands run by bbaasshh 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 SSIIGGIINNTT and SSIIGGQQUUIITT in addition to - these inherited handlers. Commands run as a result of command substi- - tution ignore the keyboard-generated job control signals SSIIGGTTTTIINN, SSIIGGTT-- - TTOOUU, and SSIIGGTTSSTTPP. - - The shell exits by default upon receipt of a SSIIGGHHUUPP. Before exiting, - an interactive shell resends the SSIIGGHHUUPP to all jobs, running or - stopped. Stopped jobs are sent SSIIGGCCOONNTT to ensure that they receive the - SSIIGGHHUUPP. To prevent the shell from sending the signal to a particular - job, it should be removed from the jobs table with the ddiissoowwnn builtin - (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) or marked to not receive SSIIGGHHUUPP us- - ing ddiissoowwnn --hh. - - If the hhuuppoonneexxiitt shell option has been set with sshhoopptt, bbaasshh sends a + The ttrraapp builtin modifies the shell's signal handling, as described be- + low. + + Non-builtin commands bbaasshh executes have signal handlers set to the val- + ues inherited by the shell from its parent, unless ttrraapp sets them to be + ignored, in which case the child process will ignore them as well. + When job control is not in effect, asynchronous commands ignore SSIIGGIINNTT + and SSIIGGQQUUIITT in addition to these inherited handlers. Commands run as a + result of command substitution ignore the keyboard-generated job con- + trol signals SSIIGGTTTTIINN, SSIIGGTTTTOOUU, and SSIIGGTTSSTTPP. + + The shell exits by default upon receipt of a SSIIGGHHUUPP. Before exiting, + an interactive shell resends the SSIIGGHHUUPP to all jobs, running or + stopped. The shell sends SSIIGGCCOONNTT to stopped jobs to ensure that they + receive the SSIIGGHHUUPP (see JJOOBB CCOONNTTRROOLL below for more information about + running and stopped jobs). To prevent the shell from sending the sig- + nal to a particular job, remove it from the jobs table with the ddiissoowwnn + builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) or mark it not to receive + SSIIGGHHUUPP using ddiissoowwnn --hh. + + If the hhuuppoonneexxiitt shell option has been set using sshhoopptt, bbaasshh sends a SSIIGGHHUUPP to all jobs when an interactive login shell exits. - If bbaasshh is waiting for a command to complete and receives a signal for + If bbaasshh 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 bbaasshh is waiting for an asynchronous command via - the wwaaiitt builtin, the reception of a signal for which a trap has been - set will cause the wwaaiitt builtin to return immediately with an exit sta- - tus greater than 128, immediately after which the trap is executed. + mand completes. If bbaasshh is waiting for an asynchronous command via the + wwaaiitt builtin, and it receives a signal for which a trap has been set, + the wwaaiitt builtin will return immediately with an exit status greater + than 128, immediately after which the shell executes the trap. - When job control is not enabled, and bbaasshh is waiting for a foreground + When job control is not enabled, and bbaasshh is waiting for a foreground command to complete, the shell receives keyboard-generated signals such - as SSIIGGIINNTT (usually generated by ^^CC) that users commonly intend to send + as SSIIGGIINNTT (usually generated by ^^CC) 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 ^^CC sends SSIIGGIINNTT to all - processes in that process group. + the same process group as the terminal, and ^^CC sends SSIIGGIINNTT to all + processes in that process group. See JJOOBB CCOONNTTRROOLL below for more infor- + mation about process groups. - When bbaasshh is running without job control enabled and receives SSIIGGIINNTT - while waiting for a foreground command, it waits until that foreground + When bbaasshh is running without job control enabled and receives SSIIGGIINNTT + while waiting for a foreground command, it waits until that foreground command terminates and then decides what to do about the SSIIGGIINNTT: 1. If the command terminates due to the SSIIGGIINNTT, bbaasshh concludes that - the user meant to end the entire script, and acts on the SSIIGGIINNTT + the user meant to end the entire script, and acts on the SSIIGGIINNTT (e.g., by running a SSIIGGIINNTT trap or exiting itself); - 2. If the command does not terminate due to SSIIGGIINNTT, the program - handled the SSIIGGIINNTT itself and did not treat it as a fatal sig- - nal. In that case, bbaasshh does not treat SSIIGGIINNTT as a fatal sig- - nal, either, instead assuming that the SSIIGGIINNTT 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 SSIIGGIINNTT, the program + handled the SSIIGGIINNTT itself and did not treat it as a fatal sig- + nal. In that case, bbaasshh does not treat SSIIGGIINNTT as a fatal sig- + nal, either, instead assuming that the SSIIGGIINNTT was used as part + of the program's normal operation (e.g., emacs uses it to abort editing commands) or deliberately discarded. However, bbaasshh will - run any trap set on SSIIGGIINNTT, as it does with any other trapped - signal it receives while it is waiting for the foreground com- + run any trap set on SSIIGGIINNTT, as it does with any other trapped + signal it receives while it is waiting for the foreground com- mand to complete, for compatibility. JJOOBB CCOONNTTRROOLL _J_o_b _c_o_n_t_r_o_l refers to the ability to selectively stop (_s_u_s_p_e_n_d) the ex- - ecution of processes and continue (_r_e_s_u_m_e) their execution at a later - point. A user typically employs this facility via an interactive in- + ecution of processes and continue (_r_e_s_u_m_e) 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 dri- ver and bbaasshh. - The shell associates a _j_o_b with each pipeline. It keeps a table of - currently executing jobs, which may be listed with the jjoobbss command. - When bbaasshh starts a job asynchronously (in the _b_a_c_k_g_r_o_u_n_d), it prints a + The shell associates a _j_o_b with each pipeline. It keeps a table of + currently executing jobs, which may be listed with the jjoobbss command. + When bbaasshh starts a job asynchronously (in the _b_a_c_k_g_r_o_u_n_d), 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. BBaasshh + the processes in a single pipeline are members of the same job. BBaasshh uses the _j_o_b 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 _c_u_r_r_e_n_t _t_e_r_m_i_n_a_l _p_r_o_c_e_s_s _g_r_o_u_p _I_D. 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 SSIIGGIINNTT. These processes are said to be in - the _f_o_r_e_g_r_o_u_n_d. _B_a_c_k_g_r_o_u_n_d processes are those whose process group ID + generated signals such as SSIIGGIINNTT. These processes are said to be in + the _f_o_r_e_g_r_o_u_n_d. _B_a_c_k_g_r_o_u_n_d 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. + if the user so specifies with "stty tostop", write to the terminal. Background processes which attempt to read from (write to when "tostop" - is in effect) the terminal are sent a SSIIGGTTTTIINN ((SSIIGGTTTTOOUU)) signal by the + is in effect) the terminal are sent a SSIIGGTTTTIINN ((SSIIGGTTTTOOUU)) signal by the kernel's terminal driver, which, unless caught, suspends the process. - If the operating system on which bbaasshh is running supports job control, + If the operating system on which bbaasshh is running supports job control, bbaasshh contains facilities to use it. Typing the _s_u_s_p_e_n_d character (typ- ically ^^ZZ, Control-Z) while a process is running causes that process to - be stopped and returns control to bbaasshh. Typing the _d_e_l_a_y_e_d _s_u_s_p_e_n_d - character (typically ^^YY, Control-Y) causes the process to be stopped + be stopped and returns control to bbaasshh. Typing the _d_e_l_a_y_e_d _s_u_s_p_e_n_d + character (typically ^^YY, Control-Y) causes the process to be stopped when it attempts to read input from the terminal, and control to be re- - turned to bbaasshh. The user may then manipulate the state of this job, - using the bbgg command to continue it in the background, the ffgg command + turned to bbaasshh. The user may then manipulate the state of this job, + using the bbgg command to continue it in the background, the ffgg command to continue it in the foreground, or the kkiillll command to kill it. A ^^ZZ 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 %% introduces a job specification (_j_o_b_s_p_e_c). Job number _n may be + ter %% introduces a job specification (_j_o_b_s_p_e_c). Job number _n may be referred to as %%nn. 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, %%ccee refers to a stopped job whose command name be- - gins with ccee. If a prefix matches more than one job, bbaasshh reports an + line. For example, %%ccee refers to a stopped job whose command name be- + gins with ccee. If a prefix matches more than one job, bbaasshh reports an error. Using %%??ccee, on the other hand, refers to any job containing the - string ccee in its command line. If the substring matches more than one + string ccee in its command line. If the substring matches more than one job, bbaasshh reports an error. The symbols %%%% and %%++ refer to the shell's - notion of the _c_u_r_r_e_n_t _j_o_b, which is the last job stopped while it was - in the foreground or started in the background. The _p_r_e_v_i_o_u_s _j_o_b may - be referenced using %%--. If there is only a single job, %%++ and %%-- can + notion of the _c_u_r_r_e_n_t _j_o_b, which is the last job stopped while it was + in the foreground or started in the background. The _p_r_e_v_i_o_u_s _j_o_b may + be referenced using %%--. If there is only a single job, %%++ and %%-- can both be used to refer to that job. In output pertaining to jobs (e.g., the output of the jjoobbss command), the current job is always flagged with - a ++, and the previous job with a --. A single % (with no accompanying + a ++, and the previous job with a --. 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: %%11 is - a synonym for "fg %1", bringing job 1 from the background into the + Simply naming a job can be used to bring it into the foreground: %%11 is + a synonym for "fg %1", bringing job 1 from the background into the foreground. Similarly, "%1 &" resumes job 1 in the background, equiva- lent to "bg %1". - The shell learns immediately whenever a job changes state. Normally, + The shell learns immediately whenever a job changes state. Normally, bbaasshh 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, though it - will notify of changes in a job's status after a foreground command in - a list completes, before executing the next command. If the --bb option - to the sseett builtin command is enabled, bbaasshh reports such changes imme- + in a job's status so as to not interrupt any other output, though it + will notify of changes in a job's status after a foreground command in + a list completes, before executing the next command. If the --bb option + to the sseett builtin command is enabled, bbaasshh reports such changes imme- diately. Any trap on SSIIGGCCHHLLDD is executed for each child that exits. - If an attempt to exit bbaasshh is made while jobs are stopped (or, if the - cchheecckkjjoobbss shell option has been enabled using the sshhoopptt builtin, run- + If an attempt to exit bbaasshh is made while jobs are stopped (or, if the + cchheecckkjjoobbss shell option has been enabled using the sshhoopptt builtin, run- ning), the shell prints a warning message, and, if the cchheecckkjjoobbss option - is enabled, lists the jobs and their statuses. The jjoobbss 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 jjoobbss 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 wwaaiitt builtin, - and job control is enabled, wwaaiitt will return when the job changes - state. The --ff option causes wwaaiitt to wait until the job or process ter- + When the shell is waiting for a job or process using the wwaaiitt builtin, + and job control is enabled, wwaaiitt will return when the job changes + state. The --ff option causes wwaaiitt to wait until the job or process ter- minates before returning. PPRROOMMPPTTIINNGG When executing interactively, bbaasshh displays the primary prompt PPSS11 when - it is ready to read a command, and the secondary prompt PPSS22 when it - needs more input to complete a command. BBaasshh displays PPSS00 after it - reads a command but before executing it. BBaasshh displays PPSS44 as de- - scribed above before tracing each command when the --xx option is en- - abled. BBaasshh allows these prompt strings to be customized by inserting - a number of backslash-escaped special characters that are decoded as - follows: - \\aa an ASCII bell character (07) - \\dd the date in "Weekday Month Date" format (e.g., "Tue May - 26") + it is ready to read a command, and the secondary prompt PPSS22 when it + needs more input to complete a command. + + BBaasshh examines the value of the array variable PPRROOMMPPTT__CCOOMMMMAANNDD just be- + fore printing each primary prompt. If any elements in PPRROOMMPPTT__CCOOMMMMAANNDD + are set and non-null, Bash executes each value, in numeric order, just + as if it had been typed on the command line. BBaasshh displays PPSS00 after + it reads a command but before executing it. + + BBaasshh displays PPSS44 as described above before tracing each command when + the --xx option is enabled. + + BBaasshh allows the prompt strings PPSS00, PPSS11, PPSS22, and PPSS44, to be customized + by inserting a number of backslash-escaped special characters that are + decoded as follows: + + \\aa An ASCII bell character (07). + \\dd The date in "Weekday Month Date" format (e.g., "Tue May + 26"). \\DD{{_f_o_r_m_a_t}} - the _f_o_r_m_a_t is passed to _s_t_r_f_t_i_m_e(3) and the result is in- + The _f_o_r_m_a_t is passed to _s_t_r_f_t_i_m_e(3) and the result is in- serted into the prompt string; an empty _f_o_r_m_a_t results in a locale-specific time representation. The braces are - required - \\ee an ASCII escape character (033) - \\hh the hostname up to the first "." - \\HH the hostname - \\jj the number of jobs currently managed by the shell - \\ll the basename of the shell's terminal device name - \\nn newline - \\rr carriage return - \\ss the name of the shell, the basename of $$00 (the portion - following the final slash) - \\tt the current time in 24-hour HH:MM:SS format - \\TT the current time in 12-hour HH:MM:SS format - \\@@ the current time in 12-hour am/pm format - \\AA the current time in 24-hour HH:MM format - \\uu the username of the current user - \\vv the version of bbaasshh (e.g., 2.00) - \\VV the release of bbaasshh, version + patch level (e.g., 2.00.0) - \\ww the value of the PPWWDD shell variable ($$PPWWDD), with $$HHOOMMEE - abbreviated with a tilde (uses the value of the - PPRROOMMPPTT__DDIIRRTTRRIIMM variable) - \\WW the basename of $$PPWWDD, with $$HHOOMMEE abbreviated with a tilde - \\!! the history number of this command - \\## the command number of this command - \\$$ if the effective UID is 0, a ##, otherwise a $$ - \\_n_n_n the character corresponding to the octal number _n_n_n - \\\\ a backslash - \\[[ begin a sequence of non-printing characters, which could + required. + \\ee An ASCII escape character (033). + \\hh The hostname up to the first ".". + \\HH The hostname. + \\jj The number of jobs currently managed by the shell. + \\ll The basename of the shell's terminal device name (e.g., + "ttys0"). + \\nn A newline. + \\rr A carriage return. + \\ss The name of the shell: the basename of $$00 (the portion + following the final slash). + \\tt The current time in 24-hour HH:MM:SS format. + \\TT The current time in 12-hour HH:MM:SS format. + \\@@ The current time in 12-hour am/pm format. + \\AA The current time in 24-hour HH:MM format. + \\uu The username of the current user. + \\vv The bbaasshh version (e.g., 2.00) + \\VV The bbaasshh release, version + patch level (e.g., 2.00.0) + \\ww The value of the PPWWDD shell variable ($$PPWWDD), with $$HHOOMMEE + abbreviated with a tilde (uses the value of the + PPRROOMMPPTT__DDIIRRTTRRIIMM variable). + \\WW The basename of $$PPWWDD, with $$HHOOMMEE abbreviated with a + tilde. + \\!! The history number of this command. + \\## The command number of this command. + \\$$ If the effective UID is 0, a ##, otherwise a $$. + \\_n_n_n The character corresponding to the octal number _n_n_n. + \\\\ A backslash. + \\[[ Begin a sequence of non-printing characters, which could be used to embed a terminal control sequence into the - prompt - \\]] end a sequence of non-printing characters + prompt. + \\]] 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 @@ -3272,63 +3425,63 @@ PPRROOMMPPTTIINNGG RREEAADDLLIINNEE This is the library that handles reading input when using an interac- - tive shell, unless the ----nnooeeddiittiinngg option is given at shell invocation. - Line editing is also used when using the --ee option to the rreeaadd 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 --oo eemmaaccss or --oo vvii options to the sseett - builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). To turn off line editing - after the shell is running, use the ++oo eemmaaccss or ++oo vvii options to the - sseett builtin. + tive shell, unless the ----nnooeeddiittiinngg option is supplied at shell invoca- + tion. Line editing is also used when using the --ee option to the rreeaadd + 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 --oo eemmaaccss or --oo vvii options + to the sseett builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). To turn off + line editing after the shell is running, use the ++oo eemmaaccss or ++oo vvii op- + tions to the sseett builtin. RReeaaddlliinnee NNoottaattiioonn In this section, the Emacs-style notation is used to denote keystrokes. - Control keys are denoted by C-_k_e_y, e.g., C-n means Control-N. Simi- + Control keys are denoted by C-_k_e_y, e.g., C-n means Control-N. Simi- larly, _m_e_t_a keys are denoted by M-_k_e_y, so M-x means Meta-X. - On keyboards without a _M_e_t_a key, M-_x means ESC _x, i.e., press the Es- + On keyboards without a _M_e_t_a key, M-_x means ESC _x, i.e., press the Es- cape key then the _x key. This makes ESC the _m_e_t_a _p_r_e_f_i_x. The combina- - tion M-C-_x means ESC-Control-_x, or press the Escape key then hold the + tion M-C-_x means ESC-Control-_x, or press the Escape key then hold the Control key while pressing the _x key.) - On some keyboards, the Meta key modifier produces meta characters with - the eighth bit (0200) set (you can use the eennaabbllee--mmeettaa--kkeeyy variable to - control whether or not it does this, if the keyboard allows it). On - many others, the terminal or terminal emulator converts the metafied - key to a key sequence beginning with ESC as described in the preceding + On some keyboards, the Meta key modifier produces meta characters with + the eighth bit (0200) set (you can use the eennaabbllee--mmeettaa--kkeeyy variable to + control whether or not it does this, if the keyboard allows it). On + many others, the terminal or terminal emulator converts the metafied + key to a key sequence beginning with ESC as described in the preceding paragraph. - If the _M_e_t_a key produces a key sequence with the ESC meta prefix, you - can make M-_k_e_y key bindings you specify (see RReeaaddlliinnee KKeeyy BBiinnddiinnggss be- + If the _M_e_t_a key produces a key sequence with the ESC meta prefix, you + can make M-_k_e_y key bindings you specify (see RReeaaddlliinnee KKeeyy BBiinnddiinnggss be- low) do the same thing by setting the ffoorrccee--mmeettaa--pprreeffiixx variable. Readline commands may be given numeric _a_r_g_u_m_e_n_t_s, 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., kkiillll--lliinnee) 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., kkiillll--lliinnee) 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 _k_i_l_l_i_n_g text, the text deleted is saved + When a command is described as _k_i_l_l_i_n_g text, the text deleted is saved for possible future retrieval (_y_a_n_k_i_n_g). The killed text is saved in a _k_i_l_l _r_i_n_g. 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. RReeaaddlliinnee IInniittiiaalliizzaattiioonn - Readline is customized by putting commands in an initialization file - (the _i_n_p_u_t_r_c file). The name of this file is taken from the value of + Readline is customized by putting commands in an initialization file + (the _i_n_p_u_t_r_c file). The name of this file is taken from the value of the IINNPPUUTTRRCC variable. If that variable is unset, the default is _~_/_._i_n_- - _p_u_t_r_c. If that file does not exist or cannot be read, the ultimate - default is _/_e_t_c_/_i_n_p_u_t_r_c. 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 ## are comments. Lines beginning with a $$ indicate - conditional constructs. Other lines denote key bindings and variable + _p_u_t_r_c. If that file does not exist or cannot be read, the ultimate + default is _/_e_t_c_/_i_n_p_u_t_r_c. 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 ## are comments. Lines beginning with a $$ indicate + conditional constructs. Other lines denote key bindings and variable settings. - The default key-bindings may be changed with an _i_n_p_u_t_r_c file. Other + The default key-bindings may be changed with an _i_n_p_u_t_r_c file. Other programs that use this library may add their own commands and bindings. For example, placing @@ -3337,18 +3490,18 @@ RREEAADDLLIINNEE or C-Meta-u: universal-argument - into the _i_n_p_u_t_r_c would make M-C-u execute the readline command _u_n_i_v_e_r_- + into the _i_n_p_u_t_r_c would make M-C-u execute the readline command _u_n_i_v_e_r_- _s_a_l_-_a_r_g_u_m_e_n_t. - The following symbolic character names are recognized: _R_U_B_O_U_T, _D_E_L, + The following symbolic character names are recognized: _R_U_B_O_U_T, _D_E_L, _E_S_C, _L_F_D, _N_E_W_L_I_N_E, _R_E_T, _R_E_T_U_R_N, _S_P_C, _S_P_A_C_E, and _T_A_B. - 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 _m_a_c_r_o). RReeaaddlliinnee KKeeyy BBiinnddiinnggss - The syntax for controlling key bindings in the _i_n_p_u_t_r_c 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 _i_n_p_u_t_r_c 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 _M_e_t_a_- or _C_o_n_t_r_o_l_- prefixes, or as a key sequence. @@ -3360,15 +3513,15 @@ RREEAADDLLIINNEE Meta-Rubout: backward-kill-word Control-o: "> output" - In the above example, _C_-_u is bound to the function uunniivveerrssaall--aarrgguummeenntt, - _M_-_D_E_L is bound to the function bbaacckkwwaarrdd--kkiillll--wwoorrdd, and _C_-_o is bound to - run the macro expressed on the right hand side (that is, to insert the + In the above example, _C_-_u is bound to the function uunniivveerrssaall--aarrgguummeenntt, + _M_-_D_E_L is bound to the function bbaacckkwwaarrdd--kkiillll--wwoorrdd, and _C_-_o 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, ""kkeeyysseeqq"":_f_u_n_c_t_i_o_n_-_n_a_m_e or _m_a_c_r_o, kkeeyysseeqq differs - from kkeeyynnaammee 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, ""kkeeyysseeqq"":_f_u_n_c_t_i_o_n_-_n_a_m_e or _m_a_c_r_o, kkeeyysseeqq differs + from kkeeyynnaammee 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 @@ -3376,20 +3529,20 @@ RREEAADDLLIINNEE "\e[11~": "Function Key 1" In this example, _C_-_u is again bound to the function uunniivveerrssaall--aarrgguummeenntt. - _C_-_x _C_-_r is bound to the function rree--rreeaadd--iinniitt--ffiillee, and _E_S_C _[ _1 _1 _~ is + _C_-_x _C_-_r is bound to the function rree--rreeaadd--iinniitt--ffiillee, and _E_S_C _[ _1 _1 _~ is bound to insert the text "Function Key 1". The full set of GNU Emacs style escape sequences is \\CC-- control prefix - \\MM-- adding the meta prefix or converting the following char- - acter to a meta character, as described below under + \\MM-- adding the meta prefix or converting the following char- + acter to a meta character, as described below under ffoorrccee--mmeettaa--pprreeffiixx \\ee an escape character \\\\ backslash \\"" literal " \\'' 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: \\aa alert (bell) \\bb backspace @@ -3399,20 +3552,20 @@ RREEAADDLLIINNEE \\rr carriage return \\tt horizontal tab \\vv vertical tab - \\_n_n_n the eight-bit character whose value is the octal value + \\_n_n_n the eight-bit character whose value is the octal value _n_n_n (one to three digits) - \\xx_H_H the eight-bit character whose value is the hexadecimal + \\xx_H_H the eight-bit character whose value is the hexadecimal value _H_H (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 '. - BBaasshh allows the current readline key bindings to be displayed or modi- - fied with the bbiinndd builtin command. The editing mode may be switched - during interactive use by using the --oo option to the sseett builtin com- + BBaasshh allows the current readline key bindings to be displayed or modi- + fied with the bbiinndd builtin command. The editing mode may be switched + during interactive use by using the --oo option to the sseett builtin com- mand (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). RReeaaddlliinnee VVaarriiaabblleess @@ -3423,111 +3576,111 @@ RREEAADDLLIINNEE sseett _v_a_r_i_a_b_l_e_-_n_a_m_e _v_a_l_u_e or using the bbiinndd builtin command (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). - Except where noted, readline variables can take the values OOnn or OOffff - (without regard to case). Unrecognized variable names are ignored. + Except where noted, readline variables can take the values OOnn or OOffff + (without regard to case). Unrecognized variable names are ignored. When readline reads a variable value, empty or null values, "on" (case- - insensitive), and "1" are equivalent to OOnn. All other values are + insensitive), and "1" are equivalent to OOnn. All other values are equivalent to OOffff. The variables and their default values are: aaccttiivvee--rreeggiioonn--ssttaarrtt--ccoolloorr - A string variable that controls the text color and background - when displaying the text in the active region (see the descrip- - tion of eennaabbllee--aaccttiivvee--rreeggiioonn 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 eennaabbllee--aaccttiivvee--rreeggiioonn 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". aaccttiivvee--rreeggiioonn--eenndd--ccoolloorr - A string variable that "undoes" the effects of aaccttiivvee--rree-- - ggiioonn--ssttaarrtt--ccoolloorr 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 aaccttiivvee--rree-- + ggiioonn--ssttaarrtt--ccoolloorr 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- tained from the terminal's terminfo description. A sample value might be "\e[0m". bbeellll--ssttyyllee ((aauuddiibbllee)) - Controls what happens when readline wants to ring the terminal + Controls what happens when readline wants to ring the terminal bell. If set to nnoonnee, readline never rings the bell. If set to - vviissiibbllee, readline uses a visible bell if one is available. If + vviissiibbllee, readline uses a visible bell if one is available. If set to aauuddiibbllee, readline attempts to ring the terminal's bell. bbiinndd--ttttyy--ssppeecciiaall--cchhaarrss ((OOnn)) - If set to OOnn (the default), readline attempts to bind the con- + If set to OOnn (the default), readline attempts to bind the con- trol characters that are treated specially by the kernel's ter- - minal driver to their readline equivalents. These override the - default readline bindings described here. Type "stty -a" at a + minal driver to their readline equivalents. These override the + default readline bindings described here. Type "stty -a" at a bbaasshh prompt to see your current terminal settings, including the special control characters (usually cccchhaarrss). bblliinnkk--mmaattcchhiinngg--ppaarreenn ((OOffff)) If set to OOnn, readline attempts to briefly move the cursor to an opening parenthesis when a closing parenthesis is inserted. ccoolloorreedd--ccoommpplleettiioonn--pprreeffiixx ((OOffff)) - If set to OOnn, when listing completions, readline displays the + If set to OOnn, 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 LLSS__CCOOLLOORRSS environment variable. If there is a color defini- - tion in $$LLSS__CCOOLLOORRSS for the custom suffix "readline-colored-com- - pletion-prefix", readline uses this color for the common prefix + tion in $$LLSS__CCOOLLOORRSS for the custom suffix "readline-colored-com- + pletion-prefix", readline uses this color for the common prefix instead of its default. ccoolloorreedd--ssttaattss ((OOffff)) - If set to OOnn, readline displays possible completions using dif- - ferent colors to indicate their file type. The color defini- - tions are taken from the value of the LLSS__CCOOLLOORRSS environment + If set to OOnn, readline displays possible completions using dif- + ferent colors to indicate their file type. The color defini- + tions are taken from the value of the LLSS__CCOOLLOORRSS environment variable. ccoommmmeenntt--bbeeggiinn (("##")) - The string that is inserted when the readline iinnsseerrtt--ccoommmmeenntt + The string that is inserted when the readline iinnsseerrtt--ccoommmmeenntt command is executed. This command is bound to MM--## in emacs mode and to ## in vi command mode. ccoommpplleettiioonn--ddiissppllaayy--wwiiddtthh ((--11)) - 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. ccoommpplleettiioonn--iiggnnoorree--ccaassee ((OOffff)) If set to OOnn, readline performs filename matching and completion in a case-insensitive fashion. ccoommpplleettiioonn--mmaapp--ccaassee ((OOffff)) - If set to OOnn, and ccoommpplleettiioonn--iiggnnoorree--ccaassee is enabled, readline - treats hyphens (_-) and underscores (__) as equivalent when per- + If set to OOnn, and ccoommpplleettiioonn--iiggnnoorree--ccaassee is enabled, readline + treats hyphens (_-) and underscores (__) as equivalent when per- forming case-insensitive filename matching and completion. ccoommpplleettiioonn--pprreeffiixx--ddiissppllaayy--lleennggtthh ((00)) - 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. ccoommpplleettiioonn--qquueerryy--iitteemmss ((110000)) - This determines when the user is queried about viewing the num- - ber of possible completions generated by the ppoossssiibbllee--ccoommppllee-- - ttiioonnss 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 + This determines when the user is queried about viewing the num- + ber of possible completions generated by the ppoossssiibbllee--ccoommppllee-- + ttiioonnss 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. ccoonnvveerrtt--mmeettaa ((OOnn)) If set to OOnn, readline will convert characters it reads with the - eighth bit set to an ASCII key sequence by stripping the eighth - bit and prefixing it with an escape character (converting the - character to have the _m_e_t_a _p_r_e_f_i_x). The default is _O_n, but - readline will set it to _O_f_f if the locale contains characters + eighth bit set to an ASCII key sequence by stripping the eighth + bit and prefixing it with an escape character (converting the + character to have the _m_e_t_a _p_r_e_f_i_x). The default is _O_n, but + readline will set it to _O_f_f if the locale contains characters whose encodings may include bytes with the eighth bit set. This - variable is dependent on the LLCC__CCTTYYPPEE locale category, and may + variable is dependent on the LLCC__CCTTYYPPEE locale category, and may change if the locale is changed. This variable also affects key bindings; see the description of ffoorrccee--mmeettaa--pprreeffiixx below. ddiissaabbllee--ccoommpplleettiioonn ((OOffff)) If set to OOnn, 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 sseellff--iinnsseerrtt. eecchhoo--ccoonnttrrooll--cchhaarraacctteerrss ((OOnn)) - When set to OOnn, on operating systems that indicate they support + When set to OOnn, on operating systems that indicate they support it, readline echoes a character corresponding to a signal gener- ated from the keyboard. eeddiittiinngg--mmooddee ((eemmaaccss)) @@ -3535,29 +3688,29 @@ RREEAADDLLIINNEE ilar to _E_m_a_c_s or _v_i. eeddiittiinngg--mmooddee can be set to either eemmaaccss or vvii. eemmaaccss--mmooddee--ssttrriinngg ((@@)) - If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t variable is enabled, this string is + If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t 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. eennaabbllee--aaccttiivvee--rreeggiioonn ((OOnn)) - The _p_o_i_n_t is the current cursor position, and _m_a_r_k refers to a - saved cursor position. The text between the point and mark is - referred to as the _r_e_g_i_o_n. When this variable is set to _O_n, - readline allows certain commands to designate the region as _a_c_- - _t_i_v_e. When the region is active, readline highlights the text - in the region using the value of the aaccttiivvee--rreeggiioonn--ssttaarrtt--ccoolloorr, - 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 _p_o_i_n_t is the current cursor position, and _m_a_r_k refers to a + saved cursor position. The text between the point and mark is + referred to as the _r_e_g_i_o_n. When this variable is set to _O_n, + readline allows certain commands to designate the region as _a_c_- + _t_i_v_e. When the region is active, readline highlights the text + in the region using the value of the aaccttiivvee--rreeggiioonn--ssttaarrtt--ccoolloorr, + 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. eennaabbllee--bbrraacckkeetteedd--ppaassttee ((OOnn)) - When set to OOnn, 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 OOnn, 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. eennaabbllee--kkeeyyppaadd ((OOffff)) @@ -3565,210 +3718,212 @@ RREEAADDLLIINNEE pad when it is called. Some systems need this to enable the ar- row keys. eennaabbllee--mmeettaa--kkeeyy ((OOnn)) - When set to OOnn, 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; - this variable checks for the terminal capability that indicates - the terminal can enable and disable a mode that sets the eighth - bit of a character (0200) if the Meta key is held down when the + When set to OOnn, 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; + this variable checks for the terminal capability that indicates + the terminal can enable and disable a mode that sets the eighth + bit of a character (0200) if the Meta key is held down when the character is typed (a meta character). ffoorrccee--mmeettaa--pprreeffiixx ((OOffff)) - If set to OOnn, readline modifies its behavior when binding key - sequences containing \M- or Meta- (see KKeeyy BBiinnddiinnggss above) by + If set to OOnn, readline modifies its behavior when binding key + sequences containing \M- or Meta- (see KKeeyy BBiinnddiinnggss above) by converting a key sequence of the form \M-_C or Meta-_C to the two- - character sequence EESSCC_C (adding the meta prefix). If + character sequence EESSCC_C (adding the meta prefix). If ffoorrccee--mmeettaa--pprreeffiixx is set to OOffff (the default), readline uses the - value of the ccoonnvveerrtt--mmeettaa variable to determine whether to per- - form this conversion: if ccoonnvveerrtt--mmeettaa is OOnn, readline performs - the conversion described above; if it is OOffff, Readline converts + value of the ccoonnvveerrtt--mmeettaa variable to determine whether to per- + form this conversion: if ccoonnvveerrtt--mmeettaa is OOnn, readline performs + the conversion described above; if it is OOffff, Readline converts _C to a meta character by setting the eighth bit (0200). eexxppaanndd--ttiillddee ((OOffff)) - If set to OOnn, tilde expansion is performed when readline at- + If set to OOnn, tilde expansion is performed when readline at- tempts word completion. hhiissttoorryy--pprreesseerrvvee--ppooiinntt ((OOffff)) - If set to OOnn, the history code attempts to place point at the - same location on each history line retrieved with pprreevviioouuss--hhiiss-- + If set to OOnn, the history code attempts to place point at the + same location on each history line retrieved with pprreevviioouuss--hhiiss-- ttoorryy or nneexxtt--hhiissttoorryy. hhiissttoorryy--ssiizzee ((uunnsseett)) - 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 HHIISSTTSSIIZZEE - shell variable. If an attempt is made to set _h_i_s_t_o_r_y_-_s_i_z_e to a + the number of history entries is not limited. By default, the + number of history entries is set to the value of the HHIISSTTSSIIZZEE + shell variable. If an attempt is made to set _h_i_s_t_o_r_y_-_s_i_z_e to a non-numeric value, the maximum number of history entries will be set to 500. hhoorriizzoonnttaall--ssccrroollll--mmooddee ((OOffff)) - When set to OOnn, makes readline use a single line for display, + When set to OOnn, 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. iinnppuutt--mmeettaa ((OOffff)) - If set to OOnn, readline will enable eight-bit input (that is, it + If set to OOnn, 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 - mmeettaa--ffllaagg is a synonym for this variable. The default is _O_f_f, + gardless of what the terminal claims it can support. The name + mmeettaa--ffllaagg is a synonym for this variable. The default is _O_f_f, but readline will set it to _O_n if the locale contains characters whose encodings may include bytes with the eighth bit set. This - variable is dependent on the LLCC__CCTTYYPPEE locale category, and may + variable is dependent on the LLCC__CCTTYYPPEE locale category, and may change if the locale is changed. iisseeaarrcchh--tteerrmmiinnaattoorrss (("CC--[[CC--JJ")) - 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 _E_S_C and _C_-_J will terminate an incremental search. kkeeyymmaapp ((eemmaaccss)) - Set the current readline keymap. The set of valid keymap names - is _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_c_o_m_- - _m_a_n_d, and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d; _e_m_a_c_s is - equivalent to _e_m_a_c_s_-_s_t_a_n_d_a_r_d. The default value is _e_m_a_c_s; the + Set the current readline keymap. The set of valid keymap names + is _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_c_o_m_- + _m_a_n_d, and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d; _e_m_a_c_s is + equivalent to _e_m_a_c_s_-_s_t_a_n_d_a_r_d. The default value is _e_m_a_c_s; the value of eeddiittiinngg--mmooddee also affects the default keymap. kkeeyysseeqq--ttiimmeeoouutt ((550000)) - Specifies the duration _r_e_a_d_l_i_n_e will wait for a character when - reading an ambiguous key sequence (one that can form a complete + Specifies the duration _r_e_a_d_l_i_n_e 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, _r_e_a_d_l_i_n_e will use the shorter but - complete key sequence. The value is specified in milliseconds, - so a value of 1000 means that _r_e_a_d_l_i_n_e 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, _r_e_a_d_l_i_n_e 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, _r_e_a_d_l_i_n_e will use the shorter but + complete key sequence. The value is specified in milliseconds, + so a value of 1000 means that _r_e_a_d_l_i_n_e 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, _r_e_a_d_l_i_n_e will wait + until another key is pressed to decide which key sequence to complete. mmaarrkk--ddiirreeccttoorriieess ((OOnn)) If set to OOnn, completed directory names have a slash appended. mmaarrkk--mmooddiiffiieedd--lliinneess ((OOffff)) - If set to OOnn, history lines that have been modified are dis- + If set to OOnn, history lines that have been modified are dis- played with a preceding asterisk (**). mmaarrkk--ssyymmlliinnkkeedd--ddiirreeccttoorriieess ((OOffff)) If set to OOnn, completed names which are symbolic links to direc- - tories have a slash appended (subject to the value of mmaarrkk--ddii-- + tories have a slash appended (subject to the value of mmaarrkk--ddii-- rreeccttoorriieess). mmaattcchh--hhiiddddeenn--ffiilleess ((OOnn)) - This variable, when set to OOnn, forces readline to match files - whose names begin with a "." (hidden files) when performing - filename completion. If set to OOffff, the user must include the + This variable, when set to OOnn, forces readline to match files + whose names begin with a "." (hidden files) when performing + filename completion. If set to OOffff, the user must include the leading "." in the filename to be completed. mmeennuu--ccoommpplleettee--ddiissppllaayy--pprreeffiixx ((OOffff)) - If set to OOnn, menu completion displays the common prefix of the + If set to OOnn, menu completion displays the common prefix of the list of possible completions (which may be empty) before cycling through the list. oouuttppuutt--mmeettaa ((OOffff)) - If set to OOnn, readline will display characters with the eighth + If set to OOnn, readline will display characters with the eighth bit set directly rather than as a meta-prefixed escape sequence. The default is _O_f_f, but readline will set it to _O_n if the locale - contains characters whose encodings may include bytes with the - eighth bit set. This variable is dependent on the LLCC__CCTTYYPPEE lo- + contains characters whose encodings may include bytes with the + eighth bit set. This variable is dependent on the LLCC__CCTTYYPPEE lo- cale category, and may change if the locale is changed. ppaaggee--ccoommpplleettiioonnss ((OOnn)) - If set to OOnn, readline uses an internal _m_o_r_e-like pager to dis- + If set to OOnn, readline uses an internal _m_o_r_e-like pager to dis- play a screenful of possible completions at a time. + pprreeffeerr--vviissiibbllee--bbeellll + See bbeellll--ssttyyllee. pprriinntt--ccoommpplleettiioonnss--hhoorriizzoonnttaallllyy ((OOffff)) - If set to OOnn, readline will display completions with matches - sorted horizontally in alphabetical order, rather than down the + If set to OOnn, readline will display completions with matches + sorted horizontally in alphabetical order, rather than down the screen. rreevveerrtt--aallll--aatt--nneewwlliinnee ((OOffff)) - If set to OOnn, readline will undo all changes to history lines + If set to OOnn, readline will undo all changes to history lines before returning when aacccceepptt--lliinnee 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 rreeaaddlliinnee. sseeaarrcchh--iiggnnoorree--ccaassee ((OOffff)) - If set to OOnn, readline performs incremental and non-incremental + If set to OOnn, readline performs incremental and non-incremental history list searches in a case-insensitive fashion. sshhooww--aallll--iiff--aammbbiigguuoouuss ((OOffff)) - This alters the default behavior of the completion functions. + This alters the default behavior of the completion functions. If set to OOnn, 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. sshhooww--aallll--iiff--uunnmmooddiiffiieedd ((OOffff)) - This alters the default behavior of the completion functions in + This alters the default behavior of the completion functions in a fashion similar to sshhooww--aallll--iiff--aammbbiigguuoouuss. If set to OOnn, 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. sshhooww--mmooddee--iinn--pprroommpptt ((OOffff)) - If set to OOnn, add a string to the beginning of the prompt indi- - cating the editing mode: emacs, vi command, or vi insertion. + If set to OOnn, 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., _e_m_a_c_s_-_m_o_d_e_-_s_t_r_i_n_g). sskkiipp--ccoommpplleetteedd--tteexxtt ((OOffff)) - If set to OOnn, 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 OOnn, 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. vvii--ccmmdd--mmooddee--ssttrriinngg ((((ccmmdd)))) - If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t variable is enabled, this string is + If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t 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. vvii--iinnss--mmooddee--ssttrriinngg ((((iinnss)))) - If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t variable is enabled, this string is + If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t 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. vviissiibbllee--ssttaattss ((OOffff)) - If set to OOnn, a character denoting a file's type as reported by - _s_t_a_t(2) is appended to the filename when listing possible com- + If set to OOnn, a character denoting a file's type as reported by + _s_t_a_t(2) is appended to the filename when listing possible com- pletions. RReeaaddlliinnee CCoonnddiittiioonnaall CCoonnssttrruuccttss - 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. - $$iiff The $$iiff 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, + $$iiff The $$iiff 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 char- acters are required to isolate it. - mmooddee The mmooddee== form of the $$iiff directive is used to test - whether readline is in emacs or vi mode. This may be - used in conjunction with the sseett kkeeyymmaapp command, for in- - stance, to set bindings in the _e_m_a_c_s_-_s_t_a_n_d_a_r_d and - _e_m_a_c_s_-_c_t_l_x keymaps only if readline is starting out in + mmooddee The mmooddee== form of the $$iiff directive is used to test + whether readline is in emacs or vi mode. This may be + used in conjunction with the sseett kkeeyymmaapp command, for in- + stance, to set bindings in the _e_m_a_c_s_-_s_t_a_n_d_a_r_d and + _e_m_a_c_s_-_c_t_l_x keymaps only if readline is starting out in emacs mode. - tteerrmm The tteerrmm== form may be used to include terminal-specific + tteerrmm The tteerrmm== 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 == is tested against both the full name of the ter- - minal and the portion of the terminal name before the - first --. This allows _s_u_n to match both _s_u_n and _s_u_n_-_c_m_d, + minal and the portion of the terminal name before the + first --. This allows _s_u_n to match both _s_u_n and _s_u_n_-_c_m_d, for instance. vveerrssiioonn - The vveerrssiioonn test may be used to perform comparisons - against specific readline versions. The vveerrssiioonn expands - to the current readline version. The set of comparison - operators includes ==, (and ====), !!==, <<==, >>==, <<, and >>. - The version number supplied on the right side of the op- - erator consists of a major version number, an optional + The vveerrssiioonn test may be used to perform comparisons + against specific readline versions. The vveerrssiioonn expands + to the current readline version. The set of comparison + operators includes ==, (and ====), !!==, <<==, >>==, <<, and >>. + 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., 77..11). - If the minor version is omitted, it is assumed to be 00. + If the minor version is omitted, it is assumed to be 00. The operator may be separated from the string vveerrssiioonn and from the version number argument by whitespace. _a_p_p_l_i_c_a_t_i_o_n The _a_p_p_l_i_c_a_t_i_o_n construct is used to include application- - specific settings. Each program using the readline li- - brary sets the _a_p_p_l_i_c_a_t_i_o_n _n_a_m_e, and an initialization + specific settings. Each program using the readline li- + brary sets the _a_p_p_l_i_c_a_t_i_o_n _n_a_m_e, 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 bbaasshh: $$iiff Bash @@ -3778,12 +3933,12 @@ RREEAADDLLIINNEE _v_a_r_i_a_b_l_e The _v_a_r_i_a_b_l_e construct provides simple equality tests for - readline variables and values. The permitted comparison - operators are _=, _=_=, and _!_=. The variable name must be + readline variables and values. The permitted comparison + operators are _=, _=_=, and _!_=. 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 _o_n and _o_f_f. $$eennddiiff This command, as seen in the previous example, terminates an $$iiff @@ -3793,59 +3948,59 @@ RREEAADDLLIINNEE test fails. $$iinncclluuddee - 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 _/_e_t_c_/_i_n_p_u_t_r_c: $$iinncclluuddee _/_e_t_c_/_i_n_p_u_t_r_c SSeeaarrcchhiinngg - Readline provides commands for searching through the command history + Readline provides commands for searching through the command history (see HHIISSTTOORRYY below) for lines containing a specified string. There are two search modes: _i_n_c_r_e_m_e_n_t_a_l and _n_o_n_-_i_n_c_r_e_m_e_n_t_a_l. - 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 iisseeaarrcchh--tteerrmmiinnaattoorrss 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 iisseeaarrcchh--tteerrmmiinnaattoorrss 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 _n_e_w_l_i_n_e 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 _n_e_w_l_i_n_e 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, readline uses any remembered search string. - 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. RReeaaddlliinnee CCoommmmaanndd NNaammeess - 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, _p_o_i_n_t refers to the current cursor position, and _m_a_r_k refers to - a cursor position saved by the sseett--mmaarrkk command. The text between the + tions, _p_o_i_n_t refers to the current cursor position, and _m_a_r_k refers to + a cursor position saved by the sseett--mmaarrkk command. The text between the point and mark is referred to as the _r_e_g_i_o_n. CCoommmmaannddss ffoorr MMoovviinngg bbeeggiinnnniinngg--ooff--lliinnee ((CC--aa)) - Move to the start of the current line. This may also be bound + Move to the start of the current line. This may also be bound to the Home key on some keyboards. eenndd--ooff--lliinnee ((CC--ee)) - Move to the end of the line. This may also be bound to the End + Move to the end of the line. This may also be bound to the End key on some keyboards. ffoorrwwaarrdd--cchhaarr ((CC--ff)) Move forward a character. @@ -3855,33 +4010,33 @@ RREEAADDLLIINNEE Move forward to the end of the next word. Words are composed of alphanumeric characters (letters and digits). bbaacckkwwaarrdd--wwoorrdd ((MM--bb)) - 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). sshheellll--ffoorrwwaarrdd--wwoorrdd - 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. sshheellll--bbaacckkwwaarrdd--wwoorrdd - 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. pprreevviioouuss--ssccrreeeenn--lliinnee - 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. nneexxtt--ssccrreeeenn--lliinnee - 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. cclleeaarr--ddiissppllaayy ((MM--CC--ll)) - 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. cclleeaarr--ssccrreeeenn ((CC--ll)) 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. rreeddrraaww--ccuurrrreenntt--lliinnee Refresh the current line. @@ -3889,114 +4044,114 @@ RREEAADDLLIINNEE CCoommmmaannddss ffoorr MMaanniippuullaattiinngg tthhee HHiissttoorryy aacccceepptt--lliinnee ((NNeewwlliinnee,, RReettuurrnn)) 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 HHIISSTTCCOONNTTRROOLL variable. If the line is a modified history + is non-empty, add it to the history list according to the state + of the HHIISSTTCCOONNTTRROOLL variable. If the line is a modified history line, then restore the history line to its original state. pprreevviioouuss--hhiissttoorryy ((CC--pp)) Fetch the previous command from the history list, moving back in the list. nneexxtt--hhiissttoorryy ((CC--nn)) - Fetch the next command from the history list, moving forward in + Fetch the next command from the history list, moving forward in the list. bbeeggiinnnniinngg--ooff--hhiissttoorryy ((MM--<<)) Move to the first line in the history. eenndd--ooff--hhiissttoorryy ((MM-->>)) - 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. ooppeerraattee--aanndd--ggeett--nneexxtt ((CC--oo)) - 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. ffeettcchh--hhiissttoorryy - 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. rreevveerrssee--sseeaarrcchh--hhiissttoorryy ((CC--rr)) - 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. ffoorrwwaarrdd--sseeaarrcchh--hhiissttoorryy ((CC--ss)) - 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. nnoonn--iinnccrreemmeennttaall--rreevveerrssee--sseeaarrcchh--hhiissttoorryy ((MM--pp)) 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. nnoonn--iinnccrreemmeennttaall--ffoorrwwaarrdd--sseeaarrcchh--hhiissttoorryy ((MM--nn)) - 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. hhiissttoorryy--sseeaarrcchh--bbaacckkwwaarrdd 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. This may be bound to the Page Up key on some keyboards. hhiissttoorryy--sseeaarrcchh--ffoorrwwaarrdd - 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. This may be bound to the Page Down key + 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. This may be bound to the Page Down key on some keyboards. hhiissttoorryy--ssuubbssttrriinngg--sseeaarrcchh--bbaacckkwwaarrdd Search backward through the history for the string of characters between the start of the current line and the current cursor po- - sition (the _p_o_i_n_t). The search string may match anywhere in a + sition (the _p_o_i_n_t). The search string may match anywhere in a history line. This is a non-incremental search. hhiissttoorryy--ssuubbssttrriinngg--sseeaarrcchh--ffoorrwwaarrdd - 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. yyaannkk--nntthh--aarrgg ((MM--CC--yy)) - 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 _n, - insert the _nth word from the previous command (the words in the - previous command begin with word 0). A negative argument in- - serts the _nth word from the end of the previous command. Once - the argument _n is computed, the argument is extracted as if the + insert the _nth word from the previous command (the words in the + previous command begin with word 0). A negative argument in- + serts the _nth word from the end of the previous command. Once + the argument _n is computed, the argument is extracted as if the "!_n" history expansion had been specified. yyaannkk--llaasstt--aarrgg ((MM--..,, MM--__)) - 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 yyaannkk--nntthh--aarrgg. Successive calls to yyaannkk--llaasstt--aarrgg - 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 yyaannkk--nntthh--aarrgg. Successive calls to yyaannkk--llaasstt--aarrgg + 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. sshheellll--eexxppaanndd--lliinnee ((MM--CC--ee)) - 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, $$'_s_t_r_i_n_g' and $$"_s_t_r_i_n_g" quot- - ing, tilde expansion, parameter and variable expansion, arith- - metic expansion, command and process substitution, word split- - ting, and quote removal. An explicit argument suppresses com- - mand and process substitution. See HHIISSTTOORRYY EEXXPPAANNSSIIOONN below for + ing, tilde expansion, parameter and variable expansion, arith- + metic expansion, command and process substitution, word split- + ting, and quote removal. An explicit argument suppresses com- + mand and process substitution. See HHIISSTTOORRYY EEXXPPAANNSSIIOONN below for a description of history expansion. hhiissttoorryy--eexxppaanndd--lliinnee ((MM--^^)) - Perform history expansion on the current line. See HHIISSTTOORRYY EEXX-- + Perform history expansion on the current line. See HHIISSTTOORRYY EEXX-- PPAANNSSIIOONN below for a description of history expansion. mmaaggiicc--ssppaaccee - Perform history expansion on the current line and insert a + Perform history expansion on the current line and insert a space. See HHIISSTTOORRYY EEXXPPAANNSSIIOONN below for a description of history expansion. aalliiaass--eexxppaanndd--lliinnee - Perform alias expansion on the current line. See AALLIIAASSEESS above + Perform alias expansion on the current line. See AALLIIAASSEESS above for a description of alias expansion. hhiissttoorryy--aanndd--aalliiaass--eexxppaanndd--lliinnee Perform history and alias expansion on the current line. iinnsseerrtt--llaasstt--aarrgguummeenntt ((MM--..,, MM--__)) A synonym for yyaannkk--llaasstt--aarrgg. eeddiitt--aanndd--eexxeeccuuttee--ccoommmmaanndd ((CC--xx CC--ee)) - 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. BBaasshh attempts to invoke $$VVIISSUUAALL, $$EEDD-- IITTOORR, and _e_m_a_c_s as the editor, in that order. CCoommmmaannddss ffoorr CChhaannggiinngg TTeexxtt _e_n_d_-_o_f_-_f_i_l_e ((uussuuaallllyy CC--dd)) - The character indicating end-of-file as set, for example, by + The character indicating end-of-file as set, for example, by _s_t_t_y(1). If this character is read when there are no characters on the line, and point is at the beginning of the line, readline interprets it as the end of input and returns EEOOFF. @@ -4005,46 +4160,46 @@ RREEAADDLLIINNEE same character as the tty EEOOFF character, as CC--dd commonly is, see above for the effects. bbaacckkwwaarrdd--ddeelleettee--cchhaarr ((RRuubboouutt)) - 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. ffoorrwwaarrdd--bbaacckkwwaarrdd--ddeelleettee--cchhaarr - 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. qquuootteedd--iinnsseerrtt ((CC--qq,, CC--vv)) - 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 CC--qq, for example. ttaabb--iinnsseerrtt ((CC--vv TTAABB)) Insert a tab character. sseellff--iinnsseerrtt ((aa,, bb,, AA,, 11,, !!,, ...)) Insert the character typed. ttrraannssppoossee--cchhaarrss ((CC--tt)) - 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. ttrraannssppoossee--wwoorrddss ((MM--tt)) - 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. uuppccaassee--wwoorrdd ((MM--uu)) - 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. ddoowwnnccaassee--wwoorrdd ((MM--ll)) - 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. ccaappiittaalliizzee--wwoorrdd ((MM--cc)) Capitalize the current (or following) word. With a negative ar- gument, capitalize the previous word, but do not move point. oovveerrwwrriittee--mmooddee - 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 eemmaaccss mode; vvii mode does overwrite differently. Each call + only eemmaaccss mode; vvii mode does overwrite differently. Each call to _r_e_a_d_l_i_n_e_(_) starts in insert mode. In overwrite mode, charac- - ters bound to sseellff--iinnsseerrtt replace the text at point rather than - pushing the text to the right. Characters bound to bbaacckk-- - wwaarrdd--ddeelleettee--cchhaarr replace the character before point with a + ters bound to sseellff--iinnsseerrtt replace the text at point rather than + pushing the text to the right. Characters bound to bbaacckk-- + wwaarrdd--ddeelleettee--cchhaarr replace the character before point with a space. By default, this command is unbound, but may be bound to the Insert key on some keyboards. @@ -4054,31 +4209,31 @@ RREEAADDLLIINNEE bbaacckkwwaarrdd--kkiillll--lliinnee ((CC--xx RRuubboouutt)) Kill backward to the beginning of the line. uunniixx--lliinnee--ddiissccaarrdd ((CC--uu)) - 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. kkiillll--wwhhoollee--lliinnee - Kill all characters on the current line, no matter where point + Kill all characters on the current line, no matter where point is. kkiillll--wwoorrdd ((MM--dd)) - 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 ffoorrwwaarrdd--wwoorrdd. bbaacckkwwaarrdd--kkiillll--wwoorrdd ((MM--RRuubboouutt)) - 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 bbaacckkwwaarrdd--wwoorrdd. sshheellll--kkiillll--wwoorrdd - 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 sshheellll--ffoorrwwaarrdd--wwoorrdd. sshheellll--bbaacckkwwaarrdd--kkiillll--wwoorrdd - 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 sshheellll--bbaacckkwwaarrdd--wwoorrdd. uunniixx--wwoorrdd--rruubboouutt ((CC--ww)) - 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. uunniixx--ffiilleennaammee--rruubboouutt - 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. ddeelleettee--hhoorriizzoonnttaall--ssppaaccee ((MM--\\)) Delete all spaces and tabs around point. @@ -4087,64 +4242,64 @@ RREEAADDLLIINNEE ccooppyy--rreeggiioonn--aass--kkiillll Copy the text in the region to the kill buffer. ccooppyy--bbaacckkwwaarrdd--wwoorrdd - 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 bbaacckkwwaarrdd--wwoorrdd. ccooppyy--ffoorrwwaarrdd--wwoorrdd - 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 ffoorrwwaarrdd--wwoorrdd. yyaannkk ((CC--yy)) Yank the top of the kill ring into the buffer at point. yyaannkk--ppoopp ((MM--yy)) - 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 yyaannkk or yyaannkk--ppoopp. NNuummeerriicc AArrgguummeennttss ddiiggiitt--aarrgguummeenntt ((MM--00,, MM--11,, ...,, MM----)) - 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. uunniivveerrssaall--aarrgguummeenntt - 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 uunniivveerrssaall--aarrgguummeenntt 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. CCoommpplleettiinngg ccoommpplleettee ((TTAABB)) - Attempt to perform completion on the text before point. BBaasshh + Attempt to perform completion on the text before point. BBaasshh attempts completion treating the text as a variable (if the text - begins with $$), username (if the text begins with ~~), hostname - (if the text begins with @@), or command (including aliases and + begins with $$), username (if the text begins with ~~), hostname + (if the text begins with @@), or command (including aliases and functions) in turn. If none of these produces a match, filename completion is attempted. ppoossssiibbllee--ccoommpplleettiioonnss ((MM--??)) List the possible completions of the text before point. iinnsseerrtt--ccoommpplleettiioonnss ((MM--**)) - 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 ppoossssiibbllee--ccoommpplleettiioonnss. mmeennuu--ccoommpplleettee - Similar to ccoommpplleettee, but replaces the word to be completed with - a single match from the list of possible completions. Repeated - execution of mmeennuu--ccoommpplleettee steps through the list of possible - completions, inserting each match in turn. At the end of the + Similar to ccoommpplleettee, but replaces the word to be completed with + a single match from the list of possible completions. Repeated + execution of mmeennuu--ccoommpplleettee 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 bbeellll--ssttyyllee) and the original text is restored. An argument of _n moves _n 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 TTAABB, but is unbound by default. mmeennuu--ccoommpplleettee--bbaacckkwwaarrdd - Identical to mmeennuu--ccoommpplleettee, but moves backward through the list - of possible completions, as if mmeennuu--ccoommpplleettee had been given a + Identical to mmeennuu--ccoommpplleettee, but moves backward through the list + of possible completions, as if mmeennuu--ccoommpplleettee had been given a negative argument. This command is unbound by default. ddeelleettee--cchhaarr--oorr--lliisstt - Deletes the character under the cursor if not at the beginning - or end of the line (like ddeelleettee--cchhaarr). If at the end of the + Deletes the character under the cursor if not at the beginning + or end of the line (like ddeelleettee--cchhaarr). If at the end of the line, behaves identically to ppoossssiibbllee--ccoommpplleettiioonnss. This command is unbound by default. ccoommpplleettee--ffiilleennaammee ((MM--//)) @@ -4153,67 +4308,67 @@ RREEAADDLLIINNEE List the possible completions of the text before point, treating it as a filename. ccoommpplleettee--uusseerrnnaammee ((MM--~~)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a username. ppoossssiibbllee--uusseerrnnaammee--ccoommpplleettiioonnss ((CC--xx ~~)) List the possible completions of the text before point, treating it as a username. ccoommpplleettee--vvaarriiaabbllee ((MM--$$)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a shell variable. ppoossssiibbllee--vvaarriiaabbllee--ccoommpplleettiioonnss ((CC--xx $$)) List the possible completions of the text before point, treating it as a shell variable. ccoommpplleettee--hhoossttnnaammee ((MM--@@)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a hostname. ppoossssiibbllee--hhoossttnnaammee--ccoommpplleettiioonnss ((CC--xx @@)) List the possible completions of the text before point, treating it as a hostname. ccoommpplleettee--ccoommmmaanndd ((MM--!!)) - 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. ppoossssiibbllee--ccoommmmaanndd--ccoommpplleettiioonnss ((CC--xx !!)) List the possible completions of the text before point, treating it as a command name. ddyynnaammiicc--ccoommpplleettee--hhiissttoorryy ((MM--TTAABB)) - 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. ddaabbbbrreevv--eexxppaanndd - 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. ccoommpplleettee--iinnttoo--bbrraacceess ((MM--{{)) 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 BBrraaccee EExxppaannssiioonn above). KKeeyybbooaarrdd MMaaccrrooss ssttaarrtt--kkbbdd--mmaaccrroo ((CC--xx (()) - Begin saving the characters typed into the current keyboard + Begin saving the characters typed into the current keyboard macro. eenndd--kkbbdd--mmaaccrroo ((CC--xx )))) Stop saving the characters typed into the current keyboard macro and store the definition. ccaallll--llaasstt--kkbbdd--mmaaccrroo ((CC--xx ee)) - 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. pprriinntt--llaasstt--kkbbdd--mmaaccrroo (()) - Print the last keyboard macro defined in a format suitable for + Print the last keyboard macro defined in a format suitable for the _i_n_p_u_t_r_c file. MMiisscceellllaanneeoouuss rree--rreeaadd--iinniitt--ffiillee ((CC--xx CC--rr)) - Read in the contents of the _i_n_p_u_t_r_c file, and incorporate any + Read in the contents of the _i_n_p_u_t_r_c file, and incorporate any bindings or variable assignments found there. aabboorrtt ((CC--gg)) - 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 bbeellll--ssttyyllee). ddoo--lloowweerrccaassee--vveerrssiioonn ((MM--AA,, MM--BB,, MM--_x,, ...)) - If the metafied character _x is uppercase, run the command that + If the metafied character _x is uppercase, run the command that is bound to the corresponding metafied lowercase character. The behavior is undefined if _x is already lowercase. pprreeffiixx--mmeettaa ((EESSCC)) @@ -4221,204 +4376,205 @@ RREEAADDLLIINNEE uunnddoo ((CC--__,, CC--xx CC--uu)) Incremental undo, separately remembered for each line. rreevveerrtt--lliinnee ((MM--rr)) - Undo all changes made to this line. This is like executing the - uunnddoo command enough times to return the line to its initial + Undo all changes made to this line. This is like executing the + uunnddoo command enough times to return the line to its initial state. ttiillddee--eexxppaanndd ((MM--&&)) Perform tilde expansion on the current word. sseett--mmaarrkk ((CC--@@,, MM--<>)) - 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. eexxcchhaannggee--ppooiinntt--aanndd--mmaarrkk ((CC--xx CC--xx)) - 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. cchhaarraacctteerr--sseeaarrcchh ((CC--]])) 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. cchhaarraacctteerr--sseeaarrcchh--bbaacckkwwaarrdd ((MM--CC--]])) - 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. sskkiipp--ccssii--sseeqquueennccee - 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-[. iinnsseerrtt--ccoommmmeenntt ((MM--##)) - Without a numeric argument, the value of the readline ccoomm-- - mmeenntt--bbeeggiinn variable is inserted at the beginning of the current + Without a numeric argument, the value of the readline ccoomm-- + mmeenntt--bbeeggiinn 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 ccoommmmeenntt--bbeeggiinn, the value is inserted, other- + toggle: if the characters at the beginning of the line do not + match the value of ccoommmmeenntt--bbeeggiinn, the value is inserted, other- wise the characters in ccoommmmeenntt--bbeeggiinn 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 ccoommmmeenntt--bbeeggiinn - 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 ccoommmmeenntt--bbeeggiinn + 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. ssppeellll--ccoorrrreecctt--wwoorrdd ((CC--xx ss)) - Perform spelling correction on the current word, treating it as - a directory or filename, in the same way as the ccddssppeellll 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 ccddssppeellll shell + option. Word boundaries are the same as those used by sshheellll--ffoorrwwaarrdd--wwoorrdd. gglloobb--ccoommpplleettee--wwoorrdd ((MM--gg)) - 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. gglloobb--eexxppaanndd--wwoorrdd ((CC--xx **)) - 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. gglloobb--lliisstt--eexxppaannssiioonnss ((CC--xx gg)) - The list of expansions that would have been generated by - gglloobb--eexxppaanndd--wwoorrdd 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 + gglloobb--eexxppaanndd--wwoorrdd is displayed, and the line is redrawn. If a + numeric argument is supplied, an asterisk is appended before pathname expansion. dduummpp--ffuunnccttiioonnss - 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 _i_n_p_u_t_r_c file. dduummpp--vvaarriiaabblleess 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 _i_n_p_u_t_r_c file. dduummpp--mmaaccrrooss - 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 _i_n_p_u_t_r_c file. ddiissppllaayy--sshheellll--vveerrssiioonn ((CC--xx CC--vv)) Display version information about the current instance of bbaasshh. PPrrooggrraammmmaabbllee CCoommpplleettiioonn - When word completion is attempted for an argument to a command for - which a completion specification (a _c_o_m_p_s_p_e_c) has been defined using - the ccoommpplleettee builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the programma- - ble 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 --EE option to ccoommpplleettee 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 --DD option to ccoommpplleettee is used as the default. If there is no - default compspec, bbaasshh attempts alias expansion on the command word as - a final resort, and attempts to find a compspec for the command word + When a user attempts word completion for an argument to a command for + which a completion specification (a _c_o_m_p_s_p_e_c) has been defined using + the ccoommpplleettee builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), Readline in- + vokes the programmable completion facilities. + + First, the command name is identified. 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 the empty string + (completion attempted at the beginning of an empty line), any compspec + defined with the --EE option to ccoommpplleettee is used. 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, completion at- + tempts 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 --DD option to ccoommpplleettee is used as the default. If there is no + default compspec, bbaasshh 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 bbaasshh 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 bbaasshh comple- tion as described above under CCoommpplleettiinngg 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 - --ff or --dd 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 + --ff or --dd option is used for filename or directory name completion, the shell variable FFIIGGNNOORREE is used to filter the matches. Any completions specified by a pathname expansion pattern to the --GG op- - tion are generated next. The words generated by the pattern need not - match the word being completed. The GGLLOOBBIIGGNNOORREE shell variable is not + tion are generated next. The words generated by the pattern need not + match the word being completed. The GGLLOOBBIIGGNNOORREE shell variable is not used to filter the matches, but the FFIIGGNNOORREE variable is used. - Next, the string specified as the argument to the --WW option is consid- - ered. The string is first split using the characters in the IIFFSS 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 --WW option is consid- + ered. The string is first split using the characters in the IIFFSS 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 EEXXPPAANNSSIIOONN. The results are split using the rules described above under WWoorrdd SSpplliittttiinngg. 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 --FF and --CC options is invoked. When the command or + After these matches have been generated, any shell function or command + specified with the --FF and --CC options is invoked. When the command or function is invoked, the CCOOMMPP__LLIINNEE, CCOOMMPP__PPOOIINNTT, CCOOMMPP__KKEEYY, and CCOOMMPP__TTYYPPEE variables are assigned values as described above under SShheellll VVaarriiaabblleess. - If a shell function is being invoked, the CCOOMMPP__WWOORRDDSS and CCOOMMPP__CCWWOORRDD - variables are also set. When the function or command is invoked, the - first argument ($$11) is the name of the command whose arguments are be- - ing completed, the second argument ($$22) is the word being completed, - and the third argument ($$33) is the word preceding the word being com- + If a shell function is being invoked, the CCOOMMPP__WWOORRDDSS and CCOOMMPP__CCWWOORRDD + variables are also set. When the function or command is invoked, the + first argument ($$11) is the name of the command whose arguments are be- + ing completed, the second argument ($$22) is the word being completed, + and the third argument ($$33) 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 --FF is invoked first. The function may use - any of the shell facilities, including the ccoommppggeenn builtin described - below, to generate the matches. It must put the possible completions - in the CCOOMMPPRREEPPLLYY array variable, one per array element. + Any function specified with --FF is invoked first. The function may use + any of the shell facilities, including the ccoommppggeenn and ccoommppoopptt builtins + described below, to generate the matches. It must put the possible + completions in the CCOOMMPPRREEPPLLYY array variable, one per array element. Next, any command specified with the --CC 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 --XX option is applied to the list. The filter is a pat- - tern as used for pathname expansion; a && in the pattern is replaced - with the text of the word being completed. A literal && 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. + used to escape a newline, if necessary. These are added to the set of + possible completions. + + After all of the possible completions are generated, any filter speci- + fied with the --XX option is applied to the list. The filter is a pat- + tern as used for pathname expansion; a && in the pattern is replaced + with the text of the word being completed. A literal && 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 !! negates the pattern; in this case any completion not match- - ing the pattern will be removed. If the nnooccaasseemmaattcchh shell option is - enabled, the match is performed without regard to the case of alpha- + ing the pattern will be removed. If the nnooccaasseemmaattcchh 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 --PP and --SS 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. + to rreeaaddlliinnee as the list of possible completions. - If the previously-applied actions do not generate any matches, and the - --oo ddiirrnnaammeess option was supplied to ccoommpplleettee when the compspec was de- + If the previously-applied actions do not generate any matches, and the + --oo ddiirrnnaammeess option was supplied to ccoommpplleettee when the compspec was de- fined, directory name completion is attempted. - If the --oo pplluussddiirrss option was supplied to ccoommpplleettee when the compspec + If the --oo pplluussddiirrss option was supplied to ccoommpplleettee 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 - default bbaasshh completions are not attempted, and the readline default of - filename completion is disabled. If the --oo bbaasshhddeeffaauulltt option was sup- - plied to ccoommpplleettee when the compspec was defined, the bbaasshh default com- - pletions are attempted if the compspec generates no matches. If the --oo - ddeeffaauulltt option was supplied to ccoommpplleettee when the compspec was defined, - readline's default completion will be performed if the compspec (and, - if attempted, the default bbaasshh 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 mmaarrkk--ddiirreeccttoorriieess readline variable, regardless of 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 bbaasshh completions and the rreeaaddlliinnee default of filename comple- + tion are disabled. If the --oo bbaasshhddeeffaauulltt option was supplied to ccoomm-- + pplleettee when the compspec was defined, if the compspec generates no + matches, the bbaasshh default completions are attempted. If the --oo ddeeffaauulltt + option was supplied to ccoommpplleettee when the compspec was defined, read- + line's default completion will be performed if the compspec (and, if + attempted, the default bbaasshh 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 mmaarrkk--ddiirreeccttoorriieess readline variable, regardless of the setting of the mmaarrkk--ssyymmlliinnkkeedd--ddiirreeccttoorriieess 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 ccoommpplleettee --DD. 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 ccoommpplleettee --DD. 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() { @@ -4429,119 +4585,128 @@ RREEAADDLLIINNEE -o bashdefault -o default HHIISSTTOORRYY - When the --oo hhiissttoorryy option to the sseett builtin is enabled, the shell + When the --oo hhiissttoorryy option to the sseett builtin is enabled, the shell provides access to the _c_o_m_m_a_n_d _h_i_s_t_o_r_y, the list of commands previously - typed. The value of the HHIISSTTSSIIZZEE variable is used as the number of + typed. The value of the HHIISSTTSSIIZZEE variable is used as the number of commands to save in a history list. The text of the last HHIISSTTSSIIZZEE com- - mands (default 500) is saved. The shell stores each command in the - history list prior to parameter and variable expansion (see EEXXPPAANNSSIIOONN - 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 EEXXPPAANNSSIIOONN + above) but after history expansion is performed, subject to the values of the shell variables HHIISSTTIIGGNNOORREE and HHIISSTTCCOONNTTRROOLL. - On startup, the history is initialized from the file named by the vari- - able HHIISSTTFFIILLEE (default _~_/_._b_a_s_h___h_i_s_t_o_r_y). The file named by the value - of HHIISSTTFFIILLEE is truncated, if necessary, to contain no more than the - number of lines specified by the value of HHIISSTTFFIILLEESSIIZZEE. If HHIISSTTFFIILLEE-- - SSIIZZEE 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 HHIISSTTTTIIMMEEFFOORRMMAATT variable. When a shell with - history enabled exits, the last $$HHIISSTTSSIIZZEE lines are copied from the - history list to $$HHIISSTTFFIILLEE. If the hhiissttaappppeenndd shell option is enabled - (see the description of sshhoopptt under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the - lines are appended to the history file, otherwise the history file is - overwritten. If HHIISSTTFFIILLEE is unset or null, or if the history file is - unwritable, the history is not saved. If the HHIISSTTTTIIMMEEFFOORRMMAATT variable - is set, time stamps are written to the history file, marked with the - history comment character, so they may be preserved across shell ses- - sions. This uses the history comment character to distinguish time- - stamps from other history lines. After saving the history, the history - file is truncated to contain no more than HHIISSTTFFIILLEESSIIZZEE lines. If HHIISSTT-- - FFIILLEESSIIZZEE 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 ffcc (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) may be used - to list or edit and re-execute a portion of the history list. The hhiiss-- - ttoorryy 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 - list. The HHIISSTTCCOONNTTRROOLL and HHIISSTTIIGGNNOORREE variables are used to cause the - shell to save only a subset of the commands entered. The ccmmddhhiisstt 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 lliitthhiisstt shell option - causes the shell to save the command with embedded newlines instead of - semicolons. See the description of the sshhoopptt builtin below under SSHHEELLLL - BBUUIILLTTIINN CCOOMMMMAANNDDSS for information on setting and unsetting shell op- - tions. + On startup, bbaasshh initializes the history list by reading history en- + tries from the the file named by the HHIISSTTFFIILLEE variable (default + _~_/_._b_a_s_h___h_i_s_t_o_r_y). That file is referred to as the _h_i_s_t_o_r_y _f_i_l_e. The + history file is truncated, if necessary, to contain no more than the + number of history entries specified by the value of HHIISSTTFFIILLEESSIIZZEE. If + HHIISSTTFFIILLEESSIIZZEE is unset, or set to null, a non-numeric value, or a nu- + meric value less than zero, the history file is not truncated. + + 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 line. These timestamps are optionally dis- + played depending on the value of the HHIISSTTTTIIMMEEFFOORRMMAATT variable. When + present, history timestamps delimit history entries, making multi-line + entries possible. + + When a shell with history enabled exits, bbaasshh copies the last $$HHIISSTTSSIIZZEE + entries from the history list to $$HHIISSTTFFIILLEE. If the hhiissttaappppeenndd shell + option is enabled (see the description of sshhoopptt under SSHHEELLLL BBUUIILLTTIINN + CCOOMMMMAANNDDSS below), bbaasshh appends the entries to the history file, other- + wise the history file is overwritten. If HHIISSTTFFIILLEE is unset or null, or + if the history file is unwritable, the history is not saved. If the + HHIISSTTTTIIMMEEFFOORRMMAATT variable is set, time stamps are written to the history + file, marked with the history comment character, so they may be pre- + served across shell sessions. This uses the history comment character + to distinguish timestamps from other history lines. As above, when us- + ing HHIISSTTTTIIMMEEFFOORRMMAATT, the timestamps delimit multi-line history entries. + After saving the history, bbaasshh truncates the history file to contain no + more than HHIISSTTFFIILLEESSIIZZEE lines. If HHIISSTTFFIILLEESSIIZZEE is unset, or set to + null, a non-numeric value, or a numeric value less than zero, the his- + tory file is not truncated. + + The ffcc builtin command (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) will list or + edit and re-execute a portion of the history list. The hhiissttoorryy builtin + can display or modify the history list and manipulate 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 + list. The HHIISSTTCCOONNTTRROOLL and HHIISSTTIIGGNNOORREE variables are used to save only a + subset of the commands entered. The ccmmddhhiisstt 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 pre- + serve syntactic correctness. The lliitthhiisstt shell option modifies ccmmddhhiisstt + by saving the command with embedded newlines instead of semicolons. + See the description of the sshhoopptt builtin below under SSHHEELLLL BBUUIILLTTIINN CCOOMM-- + MMAANNDDSS for information on setting and unsetting shell options. HHIISSTTOORRYY EEXXPPAANNSSIIOONN - The shell supports a history expansion feature that is similar to the - history expansion in ccsshh. This section describes what syntax features - are available. This feature is enabled by default for interactive - shells, and can be disabled using the ++HH option to the sseett builtin com- - mand (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). Non-interactive shells do not - perform history expansion by default. + The shell supports a history expansion feature that is similar to the + history expansion in ccsshh. This section describes what syntax features + are available. + + History expansion is enabled by default for interactive shells, and can + be disabled using the ++HH option to the sseett builtin command (see SSHHEELLLL + BBUUIILLTTIINN CCOOMMMMAANNDDSS below). Non-interactive shells do not perform history + expansion by default, but it can be enabled with "set -H". 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 _e_v_e_n_t, and the portions of - that line that are acted upon are _w_o_r_d_s. The line is broken into words - in the same fashion as when reading input, so that several _m_e_t_a_c_h_a_r_a_c_- - _t_e_r-separated words surrounded by quotes are considered one word. The - _e_v_e_n_t _d_e_s_i_g_n_a_t_o_r selects the event, the optional _w_o_r_d _d_e_s_i_g_n_a_t_o_r se- - lects words from the event, and various optional _m_o_d_i_f_i_e_r_s are avail- - able to manipulate the selected words. - - History expansions are introduced by the appearance of the history ex- - pansion character, which is !! by default. History expansions may ap- + 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. The shell attempts to inform the history expansion + functions about quoting still in effect from previous lines. + + It takes place in two parts. The first is to determine which history + list entry to use during substitution. The second is to select por- + tions of that entry to include into the current one. The entry se- + lected from the history is the _e_v_e_n_t, and the portions of that entry + that are acted upon are _w_o_r_d_s. The entry is split into words in the + same fashion as when reading input, so that several _m_e_t_a_c_h_a_r_a_c_t_e_r-sepa- + rated words surrounded by quotes are considered one word. The _e_v_e_n_t + _d_e_s_i_g_n_a_t_o_r selects the event, the optional _w_o_r_d _d_e_s_i_g_n_a_t_o_r selects + words from the event, and various optional _m_o_d_i_f_i_e_r_s are available to + manipulate the selected words. + + History expansions are introduced by the appearance of the history ex- + pansion character, which is !! by default. History expansions may ap- pear anywhere in the input, but do not nest. - Only backslash (\\) and single quotes can quote the history expansion - character, but the history expansion character is also treated as + Only backslash (\\) and single quotes can quote the history expansion + character, but the history expansion 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 the other shell metacharacters + 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 the other shell metacharacters defined above. There is a special abbreviation for substitution, active when the _q_u_i_c_k - _s_u_b_s_t_i_t_u_t_i_o_n character (described above under hhiissttcchhaarrss) is the first + _s_u_b_s_t_i_t_u_t_i_o_n character (described above under hhiissttcchhaarrss) is the first character on the line. It selects the previous history entry, using an - event designator equivalent to !!!!, and substitutes one string for an- - other in that line. It is described below under EEvveenntt DDeessiiggnnaattoorrss. + event designator equivalent to !!!!, and substitutes one string for an- + other in that entry. It is described below under EEvveenntt DDeessiiggnnaattoorrss. This is the only history expansion that does not begin with the history expansion character. - Several shell options settable with the sshhoopptt builtin may be used to - tailor the behavior of history expansion. If the hhiissttvveerriiffyy shell op- - tion is enabled (see the description of the sshhoopptt builtin below), and - rreeaaddlliinnee is being used, history substitutions are not immediately - passed to the shell parser. Instead, the expanded line is reloaded - into the rreeaaddlliinnee editing buffer for further modification. If rreeaaddlliinnee - is being used, and the hhiissttrreeeeddiitt shell option is enabled, a failed - history substitution will be reloaded into the rreeaaddlliinnee editing buffer - for correction. The --pp option to the hhiissttoorryy builtin command may be - used to see what a history expansion will do before using it. The --ss - option to the hhiissttoorryy builtin may be used to add commands to the end of - the history list without actually executing them, so that they are - available for subsequent recall. + Several shell options settable with the sshhoopptt builtin will modify his- + tory expansion behavior (see the description of the sshhoopptt builtin be- + low).and If the hhiissttvveerriiffyy shell option is enabled, and rreeaaddlliinnee is be- + ing used, history substitutions are not immediately passed to the shell + parser. Instead, the expanded line is reloaded into the rreeaaddlliinnee edit- + ing buffer for further modification. If rreeaaddlliinnee is being used, and + the hhiissttrreeeeddiitt shell option is enabled, a failed history substitution + is reloaded into the rreeaaddlliinnee editing buffer for correction. + + The --pp option to the hhiissttoorryy builtin command shows what a history ex- + pansion will do before using it. The --ss option to the hhiissttoorryy builtin + will add commands to the end of the history list without actually exe- + cuting them, so that they are available for subsequent recall. The shell allows control of the various characters used by the history expansion mechanism (see the description of hhiissttcchhaarrss above under SShheellll @@ -4549,68 +4714,69 @@ HHIISSTTOORRYY EEXXPPAANNSSIIOONN tory timestamps when writing the history file. EEvveenntt DDeessiiggnnaattoorrss - An event designator is a reference to a command line entry in the his- - tory list. The event designator consists of the portion of the word - beginning with the history expansion character and ending with the word - designator if present, or the end of the word. Unless the reference is - absolute, events are relative to the current position in the history - list. + An event designator is a reference to an entry in the history list. + The event designator consists of the portion of the word beginning with + the history expansion character and ending with the word designator if + present, or the end of the word. Unless the reference is absolute, + events are relative to the current position in the history list. !! Start a history substitution, except when followed by a bbllaannkk, - newline, carriage return, = or ( (when the eexxttgglloobb shell option - is enabled using the sshhoopptt builtin). - !!_n Refer to command line _n. - !!--_n Refer to the current command minus _n. + newline, carriage return, = or, when the eexxttgglloobb shell option is + enabled using the sshhoopptt builtin, (. + !!_n Refer to history list entry _n. + !!--_n Refer to the current entry minus _n. !!!! Refer to the previous command. This is a synonym for "!-1". !!_s_t_r_i_n_g - 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 _s_t_r_i_n_g. !!??_s_t_r_i_n_g[[??]] - Refer to the most recent command preceding the current position - in the history list containing _s_t_r_i_n_g. The trailing ?? may be - omitted if _s_t_r_i_n_g is followed immediately by a newline. If - _s_t_r_i_n_g is missing, the string from the most recent search is - used; it is an error if there is no previous search string. + Refer to the most recent command preceding the current position + in the history list containing _s_t_r_i_n_g. The trailing ?? may be + omitted if _s_t_r_i_n_g is followed immediately by a newline. If + _s_t_r_i_n_g is missing, this uses the string from the most recent + search; it is an error if there is no previous search string. ^^_s_t_r_i_n_g_1^^_s_t_r_i_n_g_2^^ - Quick substitution. Repeat the previous command, replacing - _s_t_r_i_n_g_1 with _s_t_r_i_n_g_2. Equivalent to "!!:s^_s_t_r_i_n_g_1^_s_t_r_i_n_g_2^" + Quick substitution. Repeat the previous command, replacing + _s_t_r_i_n_g_1 with _s_t_r_i_n_g_2. Equivalent to "!!:s^_s_t_r_i_n_g_1^_s_t_r_i_n_g_2^" (see MMooddiiffiieerrss below). !!## The entire command line typed so far. WWoorrdd DDeessiiggnnaattoorrss - Word designators are used to select desired words from the event. A :: - separates the event specification from the word designator. It may be - omitted if the word designator begins with a ^^, $$, **, --, or %%. 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. + Word designators are used to select desired words from the event. They + are optional; if the word designator isn't supplied, the history expan- + sion uses the entire event. A :: separates the event specification from + the word designator. It may be omitted if the word designator begins + with a ^^, $$, **, --, or %%. Words are numbered from the beginning of the + line, with the first word being denoted by 0 (zero). Words are in- + serted into the current line separated by single spaces. 00 ((zzeerroo)) The zeroth word. For the shell, this is the command word. _n The _nth word. - ^^ The first argument. That is, word 1. - $$ The last word. This is usually the last argument, but will ex- + ^^ The first argument: word 1. + $$ 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. - %% The first word matched by the most recent "?_s_t_r_i_n_g?'" search, - if the search string begins with a character that is part of a - word. By default, searches begin at the end of each line and - proceed to the beginning, so the first word matched is the one + %% The first word matched by the most recent "?_s_t_r_i_n_g?'" search, + if the search string begins with a character that is part of a + word. By default, searches begin at the end of each line and + proceed to the beginning, so the first word matched is the one closest to the end of the line. _x--_y A range of words; "-_y" abbreviates "0-_y". - ** All of the words but the zeroth. This is a synonym for "_1_-_$". - It is not an error to use ** if there is just one word in the - event; the empty string is returned in that case. + ** All of the words but the zeroth. This is a synonym for "_1_-_$". + It is not an error to use ** if there is just one word in the + event; it expands to the empty string in this case. xx** Abbreviates _x_-_$. xx-- Abbreviates _x_-_$ like xx**, but omits the last word. If xx is miss- ing, it defaults to 0. - If a word designator is supplied without an event specification, the - previous command is used as the event. + If a word designator is supplied without an event specification, the + previous command is used as the event, equivalent to !!!!. MMooddiiffiieerrss - 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. + After the optional word designator, the expansion may include a se- + quence of one or more of the following modifiers, each preceded by a + ":". These modify, or edit, the word or words selected from the his- + tory event. hh Remove a trailing filename component, leaving only the head. tt Remove all leading filename components, leaving the tail. @@ -4618,19 +4784,19 @@ HHIISSTTOORRYY EEXXPPAANNSSIIOONN ee Remove all but the trailing suffix. pp Print the new command but do not execute it. qq Quote the substituted words, escaping further substitutions. - xx Quote the substituted words as with qq, but break into words at - bbllaannkkss and newlines. The qq and xx modifiers are mutually exclu- - sive; the last one supplied is used. + xx Quote the substituted words as with qq, but break into words at + bbllaannkkss and newlines. The qq and xx modifiers are mutually exclu- + sive; expansion uses the last one supplied. ss//_o_l_d//_n_e_w// - Substitute _n_e_w for the first occurrence of _o_l_d in the event + Substitute _n_e_w for the first occurrence of _o_l_d 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 event line. The delimiter may be quoted in _o_l_d and _n_e_w with - a single backslash. If & appears in _n_e_w, it is replaced by _o_l_d. - A single backslash will quote the &. If _o_l_d is null, it is set - to the last _o_l_d substituted, or, if no previous history substi- - tutions took place, the last _s_t_r_i_n_g in a !!??_s_t_r_i_n_g[[??]] search. - If _n_e_w is null, each matching _o_l_d is deleted. + The final delimiter is optional if it is the last character of + the event line. A single backslash will quote the delimiter in + _o_l_d and _n_e_w. If & appears in _n_e_w, it is replaced with _o_l_d. A + single backslash will quote the &. If _o_l_d is null, it is set to + the last _o_l_d substituted, or, if no previous history substitu- + tions took place, the last _s_t_r_i_n_g in a !!??_s_t_r_i_n_g[[??]] search. If + _n_e_w is null, each matching _o_l_d is deleted. && Repeat the previous substitution. gg Cause changes to be applied over the entire event line. This is used in conjunction with "::ss" (e.g., "::ggss//_o_l_d//_n_e_w//") or "::&&". @@ -4660,37 +4826,41 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS ssoouurrccee [--pp _p_a_t_h] _f_i_l_e_n_a_m_e [_a_r_g_u_m_e_n_t_s] The .. command (ssoouurrccee) reads and execute commands from _f_i_l_e_n_a_m_e in the current shell environment and returns the exit status of - the last command executed from _f_i_l_e_n_a_m_e. If _f_i_l_e_n_a_m_e does not - contain a slash, .. searchs for it. If the --pp option is sup- - plied, .. treats _p_a_t_h as a colon-separated list of directories - in which to find _f_i_l_e_n_a_m_e; otherwise, .. uses the entries in - PPAATTHH to find the directory containing _f_i_l_e_n_a_m_e. _f_i_l_e_n_a_m_e does - not need to be executable. When bbaasshh is not in _p_o_s_i_x _m_o_d_e, it - searches the current directory if no file is found in PPAATTHH, but - does not search the current directory if --pp is supplied. If the - ssoouurrcceeppaatthh option to the sshhoopptt builtin command is turned off, .. - does not search PPAATTHH. If any _a_r_g_u_m_e_n_t_s are supplied, they be- - come the positional parameters when _f_i_l_e_n_a_m_e is executed. Oth- - erwise the positional parameters are unchanged. If the --TT op- - tion is enabled, .. inherits any trap on DDEEBBUUGG; if it is not, any - DDEEBBUUGG trap string is saved and restored around the call to .., - and .. unsets the DDEEBBUUGG trap while it executes. If --TT is not - set, and the sourced file changes the DDEEBBUUGG trap, the new value - is retained when .. completes. The return status is the status - of the last command exited within the script (0 if no commands - are executed), and false if _f_i_l_e_n_a_m_e is not found or cannot be - read. + the last command executed from _f_i_l_e_n_a_m_e. + + If _f_i_l_e_n_a_m_e does not contain a slash, .. searchs for it. If the + --pp option is supplied, .. treats _p_a_t_h as a colon-separated list + of directories in which to find _f_i_l_e_n_a_m_e; otherwise, .. uses the + entries in PPAATTHH to find the directory containing _f_i_l_e_n_a_m_e. + _f_i_l_e_n_a_m_e does not need to be executable. When bbaasshh is not in + _p_o_s_i_x _m_o_d_e, it searches the current directory if _f_i_l_e_n_a_m_e is not + found in PPAATTHH, but does not search the current directory if --pp + is supplied. If the ssoouurrcceeppaatthh option to the sshhoopptt builtin com- + mand is turned off, .. does not search PPAATTHH. + + If any _a_r_g_u_m_e_n_t_s are supplied, they become the positional para- + meters when _f_i_l_e_n_a_m_e is executed. Otherwise the positional pa- + rameters are unchanged. + + If the --TT option is enabled, .. inherits any trap on DDEEBBUUGG; if it + is not, any DDEEBBUUGG trap string is saved and restored around the + call to .., and .. unsets the DDEEBBUUGG trap while it executes. If --TT + is not set, and the sourced file changes the DDEEBBUUGG trap, the new + value persists after .. completes. The return status is the sta- + tus of the last command executed from _f_i_l_e_n_a_m_e (0 if no commands + are executed), and non-zero if _f_i_l_e_n_a_m_e is not found or cannot + be read. aalliiaass [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] - AAlliiaass with no arguments or with the --pp option prints the list of - aliases in the form aalliiaass _n_a_m_e=_v_a_l_u_e on standard output. When - arguments are supplied, an alias is defined for each _n_a_m_e whose - _v_a_l_u_e is given. A trailing space in _v_a_l_u_e causes the next word - to be checked for alias substitution when the alias is expanded. - For each _n_a_m_e in the argument list for which no _v_a_l_u_e is sup- - plied, the name and value of the alias is printed. AAlliiaass re- - turns true unless a _n_a_m_e is given for which no alias has been - defined. + With no arguments or with the --pp option,aalliiaass prints the list of + aliases in the form aalliiaass _n_a_m_e=_v_a_l_u_e on standard output. When + arguments are supplied, define an alias for each _n_a_m_e whose + _v_a_l_u_e is given. A trailing space in _v_a_l_u_e causes the next word + to be checked for alias substitution when the alias is expanded + during command parsing. For each _n_a_m_e in the argument list for + which no _v_a_l_u_e is supplied, print the name and value of the + alias _n_a_m_e. aalliiaass returns true unless a _n_a_m_e is given (without + a corresponding =_v_a_l_u_e) for which no alias has been defined. bbgg [_j_o_b_s_p_e_c ...] Resume each suspended job _j_o_b_s_p_e_c in the background, as if it @@ -4709,166 +4879,197 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS bbiinndd [--mm _k_e_y_m_a_p] _k_e_y_s_e_q:_r_e_a_d_l_i_n_e_-_c_o_m_m_a_n_d bbiinndd _r_e_a_d_l_i_n_e_-_c_o_m_m_a_n_d_-_l_i_n_e Display current rreeaaddlliinnee key and function bindings, bind a key - sequence to a rreeaaddlliinnee function or macro, or set a rreeaaddlliinnee - variable. Each non-option argument is a command as it would ap- - pear in a rreeaaddlliinnee initialization file such as _._i_n_p_u_t_r_c, but - each binding or command must be passed as a separate argument; - e.g., '"\C-x\C-r": re-read-init-file'. In the following de- - scriptions, output available to be re-read is formatted as com- - mands that would appear in a rreeaaddlliinnee initialization file or - that would be supplied as individual arguments to a bbiinndd com- - mand. Options, if supplied, have the following meanings: + sequence to a rreeaaddlliinnee function or macro or to a shell command, + or set a rreeaaddlliinnee variable. Each non-option argument is a key + binding or command as it would appear in a rreeaaddlliinnee initializa- + tion file such as _._i_n_p_u_t_r_c, but each binding or command must be + passed as a separate argument; e.g., '"\C-x\C-r": + re-read-init-file'. In the following descriptions, output + available to be re-read is formatted as commands that would ap- + pear in a rreeaaddlliinnee initialization file or that would be supplied + as individual arguments to a bbiinndd command. Options, if sup- + plied, have the following meanings: --mm _k_e_y_m_a_p Use _k_e_y_m_a_p as the keymap to be affected by the subsequent bindings. Acceptable _k_e_y_m_a_p names are _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_- - _d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_m_o_v_e_, _v_i_-_c_o_m_m_a_n_d, - and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d (_v_i_-_m_o_v_e - is also a synonym); _e_m_a_c_s is equivalent to _e_m_a_c_s_-_s_t_a_n_- + _d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_m_o_v_e_, _v_i_-_c_o_m_m_a_n_d, + and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d (_v_i_-_m_o_v_e + is also a synonym); _e_m_a_c_s is equivalent to _e_m_a_c_s_-_s_t_a_n_- _d_a_r_d. --ll List the names of all rreeaaddlliinnee functions. - --pp Display rreeaaddlliinnee function names and bindings in such a - way that they can be re-read. If arguments remain after - option processing, bbiinndd treats them as readline command - names and restricts output to those names. - --PP List current rreeaaddlliinnee function names and bindings. If + --pp Display rreeaaddlliinnee function names and bindings in such a + way that they can be used as an argument to a subsequent + bbiinndd command or in a rreeaaddlliinnee initialization file. If arguments remain after option processing, bbiinndd treats them as readline command names and restricts output to those names. - --ss Display rreeaaddlliinnee key sequences bound to macros and the - strings they output in such a way that they can be re- - read. - --SS Display rreeaaddlliinnee key sequences bound to macros and the + --PP List current rreeaaddlliinnee function names and bindings. If + arguments remain after option processing, bbiinndd treats + them as readline command names and restricts output to + those names. + --ss Display rreeaaddlliinnee key sequences bound to macros and the + strings they output in such a way that they can be used + as an argument to a subsequent bbiinndd command or in a rreeaadd-- + lliinnee initialization file. + --SS Display rreeaaddlliinnee key sequences bound to macros and the strings they output. - --vv Display rreeaaddlliinnee variable names and values in such a way - that they can be re-read. + --vv Display rreeaaddlliinnee variable names and values in such a way + that they can be used as an argument to a subsequent bbiinndd + command or in a rreeaaddlliinnee initialization file. --VV List current rreeaaddlliinnee variable names and values. --ff _f_i_l_e_n_a_m_e Read key bindings from _f_i_l_e_n_a_m_e. --qq _f_u_n_c_t_i_o_n - Query about which keys invoke the named _f_u_n_c_t_i_o_n. + Display key sequences that invoke the named rreeaaddlliinnee + _f_u_n_c_t_i_o_n. --uu _f_u_n_c_t_i_o_n - Unbind all keys bound to the named _f_u_n_c_t_i_o_n. + Unbind all key sequences bound to the named rreeaaddlliinnee + _f_u_n_c_t_i_o_n. --rr _k_e_y_s_e_q Remove any current binding for _k_e_y_s_e_q. --xx _k_e_y_s_e_q[[:: ]]_s_h_e_l_l_-_c_o_m_m_a_n_d Cause _s_h_e_l_l_-_c_o_m_m_a_n_d to be executed whenever _k_e_y_s_e_q is en- tered. The separator between _k_e_y_s_e_q and _s_h_e_l_l_-_c_o_m_m_a_n_d is - either whitespace or a colon optionally followed by - whitespace. If the separator is whitespace, _s_h_e_l_l_-_c_o_m_- - _m_a_n_d must be enclosed in double quotes and rreeaaddlliinnee ex- - pands any of its special backslash-escapes in _s_h_e_l_l_-_c_o_m_- - _m_a_n_d before saving it. If the separator is a colon, any - enclosing double quotes are optional, and rreeaaddlliinnee does - not expand the command string before saving it. Since - the entire key binding expression must be a single argu- - ment, it should be enclosed in quotes. When _s_h_e_l_l_-_c_o_m_- - _m_a_n_d is executed, the shell sets the RREEAADDLLIINNEE__LLIINNEE vari- - able to the contents of the rreeaaddlliinnee line buffer and the - RREEAADDLLIINNEE__PPOOIINNTT and RREEAADDLLIINNEE__MMAARRKK 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 RREEAADDLLIINNEE__AARRGGUU-- - MMEENNTT variable. If there was no argument, that variable - is not set. If the executed command changes the value of - any of RREEAADDLLIINNEE__LLIINNEE, RREEAADDLLIINNEE__PPOOIINNTT, or RREEAADDLLIINNEE__MMAARRKK, - those new values will be reflected in the editing state. - --XX 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 - an error occurred. + either whitespace or a colon optionally followed by + whitespace. If the separator is whitespace, _s_h_e_l_l_-_c_o_m_- + _m_a_n_d must be enclosed in double quotes and rreeaaddlliinnee ex- + pands any of its special backslash-escapes in _s_h_e_l_l_-_c_o_m_- + _m_a_n_d before saving it. If the separator is a colon, any + enclosing double quotes are optional, and rreeaaddlliinnee does + not expand the command string before saving it. Since + the entire key binding expression must be a single argu- + ment, it should be enclosed in single quotes. When + _s_h_e_l_l_-_c_o_m_m_a_n_d is executed, the shell sets the RREEAADD-- + LLIINNEE__LLIINNEE variable to the contents of the rreeaaddlliinnee line + buffer and the RREEAADDLLIINNEE__PPOOIINNTT and RREEAADDLLIINNEE__MMAARRKK 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 RREEAADDLLIINNEE__AARRGGUUMMEENNTT variable. If there was no argu- + ment, that variable is not set. If the executed command + changes the value of any of RREEAADDLLIINNEE__LLIINNEE, RREEAADD-- + LLIINNEE__PPOOIINNTT, or RREEAADDLLIINNEE__MMAARRKK, those new values will be + reflected in the editing state. + --XX List all key sequences bound to shell commands and the + associated commands in a format that can be reused as an + argument to a subsequent @code{bind} command. + + The return value is 0 unless an unrecognized option is supplied + or an error occurred. bbrreeaakk [_n] Exit from within a ffoorr, wwhhiillee, uunnttiill, or sseelleecctt loop. If _n is - specified, break _n levels. _n must be >= 1. If _n is greater - than the number of enclosing loops, all enclosing loops are ex- - ited. The return value is 0 unless _n is not greater than or - equal to 1. + specified, bbrreeaakk exits _n enclosing loops. _n must be >= 1. If _n + is greater than the number of enclosing loops, all enclosing + loops are exited. The return value is 0 unless _n is not greater + than or equal to 1. bbuuiillttiinn _s_h_e_l_l_-_b_u_i_l_t_i_n [_a_r_g_u_m_e_n_t_s] - Execute the specified shell builtin, passing it _a_r_g_u_m_e_n_t_s, and - return its exit status. This is useful when defining a function - whose name is the same as a shell builtin, retaining the func- - tionality of the builtin within the function. The ccdd builtin is - commonly redefined this way. The return status is false if - _s_h_e_l_l_-_b_u_i_l_t_i_n is not a shell builtin command. + Execute the specified shell builtin _s_h_e_l_l_-_b_u_i_l_t_i_n, passing it + _a_r_g_u_m_e_n_t_s, and return its exit status. This is useful when + defining a function whose name is the same as a shell builtin, + retaining the functionality of the builtin within the function. + The ccdd builtin is commonly redefined this way. The return sta- + tus is false if _s_h_e_l_l_-_b_u_i_l_t_i_n is not a shell builtin command. ccaalllleerr [_e_x_p_r] Returns the context of any active subroutine call (a shell func- - tion or a script executed with the .. or ssoouurrccee builtins). With- - out _e_x_p_r, ccaalllleerr displays the line number and source filename of - the current subroutine call. If a non-negative integer is sup- - plied as _e_x_p_r, ccaalllleerr 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 _e_x_p_r does not correspond to a valid position in + tion or a script executed with the .. or ssoouurrccee builtins). + + Without _e_x_p_r, ccaalllleerr displays the line number and source file- + name of the current subroutine call. If a non-negative integer + is supplied as _e_x_p_r, ccaalllleerr displays the line number, subroutine + name, and source file corresponding to that position in the cur- + rent 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 _e_x_p_r does not correspond to a valid position in the call stack. ccdd [--LL|[--PP [--ee]]] [-@] [_d_i_r] - Change the current directory to _d_i_r. if _d_i_r is not supplied, - the value of the HHOOMMEE shell variable is the default. The vari- - able CCDDPPAATTHH defines the search path for the directory containing - _d_i_r: the shell searches each directory name in CCDDPPAATTHH for _d_i_r. - Alternative directory names in CCDDPPAATTHH are separated by a colon - (:). A null directory name in CCDDPPAATTHH is the same as the current - directory, i.e., ".". If _d_i_r begins with a slash (/), then CCDD-- - PPAATTHH is not used. The --PP option causes ccdd to use the physical - directory structure by resolving symbolic links while traversing - _d_i_r and before processing instances of _._. in _d_i_r (see also the - --PP option to the sseett builtin command); the --LL option forces sym- - bolic links to be followed by resolving the link after process- - ing instances of _._. in _d_i_r. If _._. appears in _d_i_r, it is - processed by removing the immediately previous pathname compo- - nent from _d_i_r, back to a slash or the beginning of _d_i_r. If the - --ee option is supplied with --PP, and the current working directory - cannot be successfully determined after a successful directory - change, ccdd will return an unsuccessful status. On systems that - support it, the --@@ option presents the extended attributes asso- - ciated with a file as a directory. An argument of -- is con- - verted to $$OOLLDDPPWWDD before the directory change is attempted. If - a non-empty directory name from CCDDPPAATTHH is used, or if -- 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, ccdd sets - the value of the PPWWDD environment variable to the new directory - name, and sets the OOLLDDPPWWDD 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. + Change the current directory to _d_i_r. if _d_i_r is not supplied, + the value of the HHOOMMEE shell variable is used as _d_i_r. The vari- + able CCDDPPAATTHH exists, ccdd uses it as a search path: the shell + searches each directory name in CCDDPPAATTHH for _d_i_r. Alternative di- + rectory names in CCDDPPAATTHH are separated by a colon (:). A null + directory name in CCDDPPAATTHH is the same as the current directory, + i.e., ".". If _d_i_r begins with a slash (/), then CCDDPPAATTHH is not + used. + + The --PP option causes ccdd to use the physical directory structure + by resolving symbolic links while traversing _d_i_r and before pro- + cessing instances of _._. in _d_i_r (see also the --PP option to the + sseett builtin command). + + The --LL option forces symbolic links to be followed by resolving + the link after processing instances of _._. in _d_i_r. If _._. appears + in _d_i_r, it is processed by removing the immediately previous + pathname component from _d_i_r, back to a slash or the beginning of + _d_i_r. + + If the --ee option is supplied with --PP, and the current working + directory cannot be successfully determined after a successful + directory change, ccdd will return a non-zero status. + + On systems that support it, the --@@ option presents the extended + attributes associated with a file as a directory. + + An argument of -- is converted to $$OOLLDDPPWWDD before attempting the + directory change. + + If ccdd uses a non-empty directory name from CCDDPPAATTHH,, or if -- is + the first argument, and the directory change is successful, ccdd + writes the absolute pathname of the new working directory to the + standard output. + + If the directory change is successful, ccdd sets the value of the + PPWWDD environment variable to the new directory name, and sets the + OOLLDDPPWWDD 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. ccoommmmaanndd [--ppVVvv] _c_o_m_m_a_n_d [_a_r_g ...] - Run _c_o_m_m_a_n_d with _a_r_g_s suppressing the normal shell function - lookup. Only builtin commands or commands found in the PPAATTHH are - executed. If the --pp option is given, the search for _c_o_m_m_a_n_d is - performed using a default value for PPAATTHH that is guaranteed to - find all of the standard utilities. If either the --VV or --vv op- - tion is supplied, a description of _c_o_m_m_a_n_d is printed. The --vv - option causes a single word indicating the command or filename - used to invoke _c_o_m_m_a_n_d to be displayed; the --VV option produces a - more verbose description. If the --VV or --vv option is supplied, - the exit status is 0 if _c_o_m_m_a_n_d was found, and 1 if not. If - neither option is supplied and an error occurred or _c_o_m_m_a_n_d can- - not be found, the exit status is 127. Otherwise, the exit sta- - tus of the ccoommmmaanndd builtin is the exit status of _c_o_m_m_a_n_d. + The ccoommmmaanndd builtin runs _c_o_m_m_a_n_d with _a_r_g_s suppressing the nor- + mal shell function lookup for _c_o_m_m_a_n_d. Only builtin commands or + commands found in the PPAATTHH named _c_o_m_m_a_n_d are executed. If the + --pp option is supplied, the search for _c_o_m_m_a_n_d is performed using + a default value for PPAATTHH that is guaranteed to find all of the + standard utilities. + + If either the --VV or --vv option is supplied, ccoommmmaanndd prints a de- + scription of _c_o_m_m_a_n_d. The --vv option displays a single word in- + dicating the command or filename used to invoke _c_o_m_m_a_n_d; the --VV + option produces a more verbose description. + + If the --VV or --vv option is supplied, the exit status is zero if + _c_o_m_m_a_n_d was found, and non-zero if not. If neither option is + supplied and an error occurred or _c_o_m_m_a_n_d cannot be found, the + exit status is 127. Otherwise, the exit status of the ccoommmmaanndd + builtin is the exit status of _c_o_m_m_a_n_d. ccoommppggeenn [--VV _v_a_r_n_a_m_e] [_o_p_t_i_o_n] [_w_o_r_d] - Generate possible completion matches for _w_o_r_d according to the - _o_p_t_i_o_ns, which may be any option accepted by the ccoommpplleettee + Generate possible completion matches for _w_o_r_d according to the + _o_p_t_i_o_ns, which may be any option accepted by the ccoommpplleettee builtin with the exceptions of --pp, --rr, --DD, --EE, and --II, and write - the matches to the standard output. If the --VV option is sup- - plied, ccoommppggeenn stores the generated completions into the indexed - array variable _v_a_r_n_a_m_e instead of writing them to the standard - output. When using the --FF or --CC options, the various shell - variables set by the programmable completion facilities, while - available, will not have useful values. + the matches to the standard output. + + If the --VV option is supplied, ccoommppggeenn stores the generated com- + pletions into the indexed array variable _v_a_r_n_a_m_e instead of + writing them to the standard output. + + When using the --FF or --CC 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 _w_o_r_d is specified, - only those completions matching _w_o_r_d will be displayed. + tion specification with the same flags. If _w_o_r_d is specified, + only those completions matching _w_o_r_d will be displayed or + stored. The return value is true unless an invalid option is supplied, or no matches were generated. @@ -4939,9 +5140,9 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS line. pplluussddiirrss 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. + generated, attempt directory name completion and + add any matches to the results of the other ac- + tions. --AA _a_c_t_i_o_n The _a_c_t_i_o_n may be one of the following to generate a list of possible completions: @@ -4995,21 +5196,21 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS guments are being completed, the second argument ($$22) is the word being completed, and the third argument ($$33) 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 CCOOMMPPRREEPPLLYY - array variable. + rent command line. When _f_u_n_c_t_i_o_n finishes, the possible + completions are retrieved from the value of the CCOOMMPPRREE-- + PPLLYY array variable. --GG _g_l_o_b_p_a_t - The pathname expansion pattern _g_l_o_b_p_a_t is expanded to - generate the possible completions. + Expand the pathname expansion pattern _g_l_o_b_p_a_t to gener- + ate the possible completions. --PP _p_r_e_f_i_x - _p_r_e_f_i_x is added at the beginning of each possible com- - pletion after all other options have been applied. + Add _p_r_e_f_i_x to the beginning of each possible completion + after all other options have been applied. --SS _s_u_f_f_i_x - _s_u_f_f_i_x is appended to each possible completion after all + Append _s_u_f_f_i_x to each possible completion after all other options have been applied. --WW _w_o_r_d_l_i_s_t The _w_o_r_d_l_i_s_t is split using the characters in the IIFFSS - special variable as delimiters, and each resultant word + special variable as delimiters, and each resulting word is expanded. Shell quoting is honored within _w_o_r_d_l_i_s_t, in order to provide a mechanism for the words to contain shell metacharacters or characters in the value of IIFFSS. @@ -5032,8 +5233,8 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS ccoommppoopptt [--oo _o_p_t_i_o_n] [--DDEEII] [++oo _o_p_t_i_o_n] [_n_a_m_e] Modify completion options for each _n_a_m_e according to the _o_p_- _t_i_o_ns, or for the currently-executing completion if no _n_a_m_es are - supplied. If no _o_p_t_i_o_ns are given, display the completion op- - tions for each _n_a_m_e or the current completion. The possible + supplied. If no _o_p_t_i_o_ns are supplied, display the completion + options for each _n_a_m_e or the current completion. The possible values of _o_p_t_i_o_n are those valid for the ccoommpplleettee builtin de- scribed above. The --DD option indicates that other supplied op- tions should apply to the "default" command completion; that is, @@ -5046,138 +5247,161 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS mand delimiter such as ;; or ||, which is usually command name completion. + If multiple options are supplied, the --DD option takes precedence + over --EE, and both take precedence over --II. + The return value is true unless an invalid option is supplied, an attempt is made to modify the options for a _n_a_m_e for which no completion specification exists, or an output error occurs. ccoonnttiinnuuee [_n] - Resume the next iteration of the enclosing ffoorr, wwhhiillee, uunnttiill, or - sseelleecctt loop. If _n is specified, resume at the _nth enclosing - loop. _n must be >= 1. If _n is greater than the number of en- - closing loops, the shell resumes the last enclosing loop (the - "top-level" loop). The return value is 0 unless _n is not - greater than or equal to 1. + ccoonnttiinnuuee resumes the next iteration of the enclosing ffoorr, wwhhiillee, + uunnttiill, or sseelleecctt loop. If _n is specified, bbaasshh resumes the _nth + enclosing loop. _n must be >= 1. If _n is greater than the num- + ber of enclosing loops, the shell resumes the last enclosing + loop (the "top-level" loop). The return value is 0 unless _n is + not greater than or equal to 1. ddeeccllaarree [--aaAAffFFggiiIIllnnrrttuuxx] [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] ttyyppeesseett [--aaAAffFFggiiIIllnnrrttuuxx] [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] Declare variables and/or give them attributes. If no _n_a_m_es are - given then display the values of variables. The --pp option will - display the attributes and values of each _n_a_m_e. When --pp is used - with _n_a_m_e arguments, additional options, other than --ff and --FF, - are ignored. When --pp is supplied without _n_a_m_e 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 --pp, ddeeccllaarree will display the attrib- - utes and values of all shell variables. The --ff option will re- - strict the display to shell functions. The --FF option inhibits - the display of function definitions; only the function name and - attributes are printed. If the eexxttddeebbuugg shell option is enabled - using sshhoopptt, the source file name and line number where each - _n_a_m_e is defined are displayed as well. The --FF option implies - --ff. The --gg option forces variables to be created or modified at - the global scope, even when ddeeccllaarree is executed in a shell func- - tion. It is ignored in all other cases. The --II option causes - local variables to inherit the attributes (except the _n_a_m_e_r_e_f - attribute) and value of any existing variable with the same _n_a_m_e - 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 at- - tribute or to give variables attributes: - --aa Each _n_a_m_e is an indexed array variable (see AArrrraayyss + given then display the values of variables or functions. The --pp + option will display the attributes and values of each _n_a_m_e. + When --pp is used with _n_a_m_e arguments, additional options, other + than --ff and --FF, are ignored. + + When --pp is supplied without _n_a_m_e arguments, ddeeccllaarree will display + the attributes and values of all variables having the attributes + specified by the additional options. If no other options are + supplied with --pp, ddeeccllaarree will display the attributes and values + of all shell variables. The --ff option restricts the display to + shell functions. + + The --FF option inhibits the display of function definitions; only + the function name and attributes are printed. If the eexxttddeebbuugg + shell option is enabled using sshhoopptt, the source file name and + line number where each _n_a_m_e is defined are displayed as well. + The --FF option implies --ff. + + The --gg option forces variables to be created or modified at the + global scope, even when ddeeccllaarree is executed in a shell function. + It is ignored when ddeeccllaarree is not executed in a shell function. + + The --II option causes local variables to inherit the attributes + (except the _n_a_m_e_r_e_f attribute) and value of any existing vari- + able with the same _n_a_m_e 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 vari- + ables with the specified attribute or to give variables attrib- + utes: + --aa Each _n_a_m_e is an indexed array variable (see AArrrraayyss above). - --AA Each _n_a_m_e is an associative array variable (see AArrrraayyss + --AA Each _n_a_m_e is an associative array variable (see AArrrraayyss above). - --ff Use function names only. + --ff Each _n_a_m_e refers to a shell function. --ii The variable is treated as an integer; arithmetic evalua- - tion (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN above) is performed when + tion (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN above) is performed when the variable is assigned a value. - --ll When the variable is assigned a value, all upper-case - characters are converted to lower-case. The upper-case + --ll When the variable is assigned a value, all upper-case + characters are converted to lower-case. The upper-case attribute is disabled. - --nn Give each _n_a_m_e the _n_a_m_e_r_e_f attribute, making it a name - reference to another variable. That other variable is - defined by the value of _n_a_m_e. All references, assign- - ments, and attribute modifications to _n_a_m_e, except those - using or changing the --nn attribute itself, are performed - on the variable referenced by _n_a_m_e's value. The nameref + --nn Give each _n_a_m_e the _n_a_m_e_r_e_f attribute, making it a name + reference to another variable. That other variable is + defined by the value of _n_a_m_e. All references, assign- + ments, and attribute modifications to _n_a_m_e, except those + using or changing the --nn attribute itself, are performed + on the variable referenced by _n_a_m_e's value. The nameref attribute cannot be applied to array variables. --rr Make _n_a_m_es readonly. These names cannot then be assigned values by subsequent assignment statements or unset. --tt Give each _n_a_m_e the _t_r_a_c_e attribute. Traced functions in- - herit the DDEEBBUUGG and RREETTUURRNN traps from the calling shell. + herit the DDEEBBUUGG and RREETTUURRNN traps from the calling shell. The trace attribute has no special meaning for variables. - --uu When the variable is assigned a value, all lower-case - characters are converted to upper-case. The lower-case + --uu When the variable is assigned a value, all lower-case + characters are converted to upper-case. The lower-case attribute is disabled. - --xx Mark _n_a_m_es for export to subsequent commands via the en- - vironment. - - Using "+" instead of "-" turns off the attribute instead, with - the exceptions that ++aa and ++AA may not be used to destroy array - variables and ++rr will not remove the readonly attribute. When - used in a function, ddeeccllaarree and ttyyppeesseett make each _n_a_m_e local, as - with the llooccaall command, unless the --gg option is supplied. If a - variable name is followed by =_v_a_l_u_e, the value of the variable - is set to _v_a_l_u_e. When using --aa or --AA 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 AArrrraayyss above), one of the _n_a_m_e_s 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 --ff. + --xx Mark each _n_a_m_e for export to subsequent commands via the + environment. + + Using "+" instead of "-" turns off the specified attribute in- + stead, with the exceptions that ++aa and ++AA may not be used to de- + stroy array variables and ++rr will not remove the readonly at- + tribute. + + When used in a function, ddeeccllaarree and ttyyppeesseett make each _n_a_m_e lo- + cal, as with the llooccaall command, unless the --gg option is sup- + plied. If a variable name is followed by =_v_a_l_u_e, the value of + the variable is set to _v_a_l_u_e. When using --aa or --AA and the com- + pound assignment 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 at- + tempt is made to assign a value to an array variable without us- + ing the compound assignment syntax (see AArrrraayyss above), one of + the _n_a_m_e_s is not a valid shell variable name, an attempt is made + to turn off readonly 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 --ff. ddiirrss [[--ccllppvv]] [[++_n]] [[--_n]] - 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 ppuusshhdd command; the ppooppdd command removes entries - from the list. The current directory is always the first direc- - tory in the stack. - --cc Clears the directory stack by deleting all of the en- + Without options, display the list of currently remembered direc- + tories. The default display is on a single line with directory + names separated by spaces. Directories are added to the list + with the ppuusshhdd command; the ppooppdd command removes entries from + the list. The current directory is always the first directory + in the stack. + + Options, if supplied, have the following meanings: + --cc Clears the directory stack by deleting all of the en- tries. - --ll Produces a listing using full pathnames; the default + --ll Produces a listing using full pathnames; the default listing format uses a tilde to denote the home directory. --pp Print the directory stack with one entry per line. - --vv Print the directory stack with one entry per line, pre- + --vv Print the directory stack with one entry per line, pre- fixing each entry with its index in the stack. ++_n Displays the _nth entry counting from the left of the list shown by ddiirrss when invoked without options, starting with zero. - --_n Displays the _nth entry counting from the right of the + --_n Displays the _nth entry counting from the right of the list shown by ddiirrss when invoked without options, starting with zero. - The return value is 0 unless an invalid option is supplied or _n + The return value is 0 unless an invalid option is supplied or _n indexes beyond the end of the directory stack. - ddiissoowwnn [--aarr] [--hh] [_j_o_b_s_p_e_c ... | _p_i_d ... ] - Without options, remove each _j_o_b_s_p_e_c from the table of active - jobs. If _j_o_b_s_p_e_c is not present, and neither the --aa nor the --rr - option is supplied, the _c_u_r_r_e_n_t _j_o_b is used. If the --hh option - is given, each _j_o_b_s_p_e_c is not removed from the table, but is - marked so that SSIIGGHHUUPP is not sent to the job if the shell re- - ceives a SSIIGGHHUUPP. If no _j_o_b_s_p_e_c is supplied, the --aa option means - to remove or mark all jobs; the --rr option without a _j_o_b_s_p_e_c ar- - gument restricts operation to running jobs. The return value is - 0 unless a _j_o_b_s_p_e_c does not specify a valid job. + ddiissoowwnn [--aarr] [--hh] [_i_d ...] + Without options, remove each _i_d from the table of active jobs. + Each _i_d may be a job specification _j_o_b_s_p_e_c or a process ID _p_i_d; + if _i_d is a _p_i_d, ddiissoowwnn uses the job containing _p_i_d as _j_o_b_s_p_e_c. + If _i_d is not present, and neither the --aa nor the --rr option is + supplied, ddiissoowwnn removes the _c_u_r_r_e_n_t _j_o_b. If the --hh option is + supplied, the job corresponding to each _i_d is not removed from + the table, but is marked so that SSIIGGHHUUPP is not sent to the job + if the shell receives a SSIIGGHHUUPP. + + If no _i_d is supplied, the --aa option means to remove or mark all + jobs; the --rr option without an _i_d argument restricts operation + to running jobs. + + The return value is 0 unless an _i_d does not specify a valid job. eecchhoo [--nneeEE] [_a_r_g ...] Output the _a_r_gs, separated by spaces, followed by a newline. The return status is 0 unless a write error occurs. If --nn is - specified, the trailing newline is suppressed. If the --ee option - is given, interpretation of the following backslash-escaped - characters is enabled. The --EE option disables the interpreta- - tion of these escape characters, even on systems where they are - interpreted by default. The xxppgg__eecchhoo shell option may be used - to dynamically determine whether or not eecchhoo interprets any op- - tions and expands these escape characters by default. eecchhoo does - not interpret ---- to mean the end of options. eecchhoo interprets - the following escape sequences: + specified, the trailing newline is not printed. + + If the --ee option is given, eecchhoo interprets the following back- + slash-escaped characters. The --EE option disables interpretation + of these escape characters, even on systems where they are in- + terpreted by default. The xxppgg__eecchhoo shell option determines + whether or not eecchhoo interprets any options and expands these es- + cape characters. eecchhoo does not interpret ---- to mean the end of + options. + + eecchhoo interprets the following escape sequences: \\aa alert (bell) \\bb backspace \\cc suppress further output @@ -5199,75 +5423,95 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value _H_H_H_H_H_H_H_H (one to eight hex digits) + eecchhoo writes any unrecognized backslash-escaped characters un- + changed. + eennaabbllee [--aa] [--ddnnppss] [--ff _f_i_l_e_n_a_m_e] [_n_a_m_e ...] - 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 --nn is used, each _n_a_m_e is disabled; otherwise, _n_a_m_e_s are en- - abled. For example, to use the tteesstt binary found via the PPAATTHH - instead of the shell builtin version, run "enable -n test". The - --ff option means to load the new builtin command _n_a_m_e from shared - object _f_i_l_e_n_a_m_e, on systems that support dynamic loading. BBaasshh - will use the value of the BBAASSHH__LLOOAADDAABBLLEESS__PPAATTHH variable as a - colon-separated list of directories in which to search for _f_i_l_e_- - _n_a_m_e, if _f_i_l_e_n_a_m_e does not contain a slash. The default is sys- - tem-dependent, and may include "." to force a search of the cur- - rent directory. The --dd option will delete a builtin previously - loaded with --ff. If no _n_a_m_e arguments are given, or if the --pp - option is supplied, a list of shell builtins is printed. With - no other option arguments, the list consists of all enabled - shell builtins. If --nn is supplied, only disabled builtins are - printed. If --aa is supplied, the list printed includes all - builtins, with an indication of whether or not each is enabled. - If --ss is supplied, the output is restricted to the POSIX _s_p_e_c_i_a_l - builtins. If no options are supplied and a _n_a_m_e is not a shell - builtin, eennaabbllee will attempt to load _n_a_m_e from a shared object - named _n_a_m_e, as if the command were "enable -f _n_a_m_e _n_a_m_e". The - return value is 0 unless a _n_a_m_e is not a shell builtin or there - is an error loading a new builtin from a shared object. + Enable and disable builtin shell commands. Disabling a builtin + allows an executable file 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 files. + + If --nn is supplied, each _n_a_m_e is disabled; otherwise, _n_a_m_es are + enabled. For example, to use the tteesstt binary found usin g PPAATTHH + instead of the shell builtin version, run "enable -n test". + + If no _n_a_m_e arguments are supplied, or if the --pp option is sup- + plied, print a list of shell builtins. With no other option ar- + guments, the list consists of all enabled shell builtins. If --nn + is supplied, print only disabled builtins. If --aa is supplied, + the list printed includes all builtins, with an indication of + whether or not each is enabled. The --ss option means to restrict + the output to the POSIX _s_p_e_c_i_a_l builtins. + + The --ff option means to load the new builtin command _n_a_m_e from + shared object _f_i_l_e_n_a_m_e, on systems that support dynamic loading. + If _f_i_l_e_n_a_m_e does not contain a slash, BBaasshh will use the value of + the BBAASSHH__LLOOAADDAABBLLEESS__PPAATTHH variable as a colon-separated list of + directories in which to search for _f_i_l_e_n_a_m_e. The default for + BBAASSHH__LLOOAADDAABBLLEESS__PPAATTHH is system-dependent, and may include "." to + force a search of the current directory. The --dd option will + delete a builtin previously loaded with --ff. If _-_s is used with + _-_f, the new builtin becomes a POSIX special builtin. + + If no options are supplied and a _n_a_m_e is not a shell builtin, + eennaabbllee will attempt to load _n_a_m_e from a shared object named + _n_a_m_e, as if the command were "enable -f _n_a_m_e _n_a_m_e". + + The return value is 0 unless a _n_a_m_e is not a shell builtin or + there is an error loading a new builtin from a shared object. eevvaall [_a_r_g ...] - The _a_r_gs 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 eevvaall. If there are - no _a_r_g_s, or only null arguments, eevvaall returns 0. + Concatenate the _a_r_gs together into a single command, separating + them with spaces. BBaasshh then reads and execute this command, and + returns its exit status as the return status of eevvaall. If there + are no _a_r_g_s, or only null arguments, eevvaall returns 0. eexxeecc [--ccll] [--aa _n_a_m_e] [_c_o_m_m_a_n_d [_a_r_g_u_m_e_n_t_s]] - If _c_o_m_m_a_n_d is specified, it replaces the shell. No new process - is created. The _a_r_g_u_m_e_n_t_s become the arguments to _c_o_m_m_a_n_d. If - the --ll option is supplied, the shell places a dash at the begin- - ning of the zeroth argument passed to _c_o_m_m_a_n_d. This is what _l_o_- - _g_i_n(1) does. The --cc option causes _c_o_m_m_a_n_d to be executed with - an empty environment. If --aa is supplied, the shell passes _n_a_m_e - as the zeroth argument to the executed command. If _c_o_m_m_a_n_d can- - not be executed for some reason, a non-interactive shell exits, - unless the eexxeeccffaaiill 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 - eexxeecc fails. If _c_o_m_m_a_n_d 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. + If _c_o_m_m_a_n_d is specified, it replaces the shell without creating + a new process. _c_o_m_m_a_n_d cannot be a shell builtin or function. + The _a_r_g_u_m_e_n_t_s become the arguments to _c_o_m_m_a_n_d. If the --ll option + is supplied, the shell places a dash at the beginning of the ze- + roth argument passed to _c_o_m_m_a_n_d. This is what _l_o_g_i_n(1) does. + The --cc option causes _c_o_m_m_a_n_d to be executed with an empty envi- + ronment. If --aa is supplied, the shell passes _n_a_m_e as the zeroth + argument to the executed command. + + If _c_o_m_m_a_n_d cannot be executed for some reason, a non-interactive + shell exits, unless the eexxeeccffaaiill shell option is enabled. In + that case, it returns a non-zero status. An interactive shell + returns a non-zero status if the file cannot be executed. A + subshell exits unconditionally if eexxeecc fails. + + If _c_o_m_m_a_n_d is not specified, any redirections take effect in the + current shell, and the return status is 0. If there is a redi- + rection error, the return status is 1. eexxiitt [_n] - Cause the shell to exit with a status of _n. If _n is omitted, - the exit status is that of the last command executed. A trap on - EEXXIITT is executed before the shell terminates. + Cause the shell to exit with a status of _n. If _n is omitted, + the exit status is that of the last command executed. Any trap + on EEXXIITT is executed before the shell terminates. - eexxppoorrtt [--ffnn] [_n_a_m_e[=_w_o_r_d]] ... + eexxppoorrtt [--ffnn] [_n_a_m_e[=_v_a_l_u_e]] ... eexxppoorrtt --pp The supplied _n_a_m_e_s are marked for automatic export to the envi- ronment of subsequently executed commands. If the --ff option is - given, the _n_a_m_e_s refer to functions. If no _n_a_m_e_s are given, or - if the --pp option is supplied, a list of names of all exported - variables is printed. The --nn option causes the export property - to be removed from each _n_a_m_e. If a variable name is followed by - =_w_o_r_d, the value of the variable is set to _w_o_r_d. eexxppoorrtt returns - an exit status of 0 unless an invalid option is encountered, one - of the _n_a_m_e_s is not a valid shell variable name, or --ff is sup- - plied with a _n_a_m_e that is not a function. + given, the _n_a_m_e_s refer to functions. + + The --nn option unexports, or removes the export attribute, from + each _n_a_m_e. If no _n_a_m_e_s are given, or if the --pp option is sup- + plied, eexxppoorrtt prints a list of names of all exported variables + on the standard output. - ffaallssee Does nothing, returns a non-zero status. + eexxppoorrtt allows the value of a variable to be set when it is ex- + ported or unexported by following the variable name with =_v_a_l_u_e. + This sets the value of the variable to _v_a_l_u_e while modifying the + export attribute. eexxppoorrtt returns an exit status of 0 unless an + invalid option is encountered, one of the _n_a_m_e_s is not a valid + shell variable name, or --ff is supplied with a _n_a_m_e that is not a + function. + + ffaallssee Does nothing; returns a non-zero status. ffcc [--ee _e_n_a_m_e] [--llnnrr] [_f_i_r_s_t] [_l_a_s_t] ffcc --ss [_p_a_t=_r_e_p] [_c_m_d] @@ -5276,121 +5520,136 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS them. _F_i_r_s_t and _l_a_s_t 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 - _f_i_r_s_t or _l_a_s_t of 0 is equivalent to -1 and -0 is equivalent to - the current command (usually the ffcc command); otherwise 0 is - equivalent to -1 and -0 is invalid. If _l_a_s_t is not specified, - it is set to the current command for listing (so that "fc -l - -10" prints the last 10 commands) and to _f_i_r_s_t otherwise. If - _f_i_r_s_t is not specified, it is set to the previous command for + an offset from the current command number). + + When listing, a _f_i_r_s_t or _l_a_s_t of 0 is equivalent to -1 and -0 is + equivalent to the current command (usually the ffcc command); oth- + erwise 0 is equivalent to -1 and -0 is invalid. If _l_a_s_t is not + specified, it is set to the current command for listing (so that + "fc -l -10" prints the last 10 commands) and to _f_i_r_s_t otherwise. + If _f_i_r_s_t is not specified, it is set to the previous command for editing and -16 for listing. - The --nn option suppresses the command numbers when listing. The - --rr option reverses the order of the commands. If the --ll option - is given, the commands are listed on standard output. Other- - wise, the editor given by _e_n_a_m_e is invoked on a file containing - those commands. If _e_n_a_m_e is not given, the value of the FFCCEEDDIITT - variable is used, and the value of EEDDIITTOORR if FFCCEEDDIITT is not set. - If neither variable is set, _v_i is used. When editing is com- - plete, the edited commands are echoed and executed. - - In the second form, _c_o_m_m_a_n_d is re-executed after each instance - of _p_a_t is replaced by _r_e_p. _C_o_m_m_a_n_d is interpreted the same as - _f_i_r_s_t above. 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 _f_i_r_s_t or _l_a_s_t specify history - lines out of range. If the --ee 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 _c_m_d does not specify a valid history line, in - which case ffcc returns failure. + If the --ll option is supplied, the commands are listed on the + standard output. The --nn option suppresses the command numbers + when listing. The --rr option reverses the order of the commands. + + Otherwise, ffcc invokes the editor named by _e_n_a_m_e on a file con- + taining those commands. If _e_n_a_m_e is not supplied, ffcc uses the + value of the FFCCEEDDIITT variable, and the value of EEDDIITTOORR if FFCCEEDDIITT + is not set. If neither variable is set, ffcc uses _v_i_. When edit- + ing is complete, ffcc reads the file containing the edited com- + mands and echoes and executes them. + + In the second form, ffcc re-executes _c_o_m_m_a_n_d after replacing each + instance of _p_a_t with _r_e_p. _C_o_m_m_a_n_d is interpreted the same as + _f_i_r_s_t above. + + A useful alias to use with ffcc 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 zero unless an + invalid option is encountered or _f_i_r_s_t or _l_a_s_t specify history + lines out of range. When editing and re-executing a file of + commands, the return value is the value of the last command exe- + cuted or failure if an error occurs with the temporary file. If + the second form is used, the return status is that of the re-ex- + ecuted command, unless _c_m_d does not specify a valid history en- + try, in which case ffcc returns a non-zero status. ffgg [_j_o_b_s_p_e_c] Resume _j_o_b_s_p_e_c in the foreground, and make it the current job. - If _j_o_b_s_p_e_c is not present, the shell's notion of the _c_u_r_r_e_n_t _j_o_b - 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 _j_o_b_s_p_e_c does not spec- - ify a valid job or _j_o_b_s_p_e_c specifies a job that was started - without job control. + If _j_o_b_s_p_e_c is not present, use the shell's notion of the _c_u_r_r_e_n_t + _j_o_b. 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 _j_o_b_s_p_e_c does not specify a + valid job or _j_o_b_s_p_e_c specifies a job that was started without + job control. ggeettooppttss _o_p_t_s_t_r_i_n_g _n_a_m_e [_a_r_g ...] - ggeettooppttss is used by shell procedures to parse positional parame- - ters. _o_p_t_s_t_r_i_n_g 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, ggeettooppttss - places the next option in the shell variable _n_a_m_e, initializing - _n_a_m_e if it does not exist, and the index of the next argument to - be processed into the variable OOPPTTIINNDD. OOPPTTIINNDD is initialized to - 1 each time the shell or a shell script is invoked. When an op- - tion requires an argument, ggeettooppttss places that argument into the - variable OOPPTTAARRGG. The shell does not reset OOPPTTIINNDD automatically; - it must be manually reset between multiple calls to ggeettooppttss - within the same shell invocation if a new set of parameters is - to be used. - - When the end of options is encountered, ggeettooppttss exits with a re- - turn value greater than zero. OOPPTTIINNDD is set to the index of the + ggeettooppttss is used by shell scripts and functions to parse posi- + tional parameters and obtain options and their arguments. _o_p_t_- + _s_t_r_i_n_g contains the option characters to be recognized; if a + character is followed by a colon, the option is expected 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, ggeettooppttss places the next option in the + shell variable _n_a_m_e, initializing _n_a_m_e if it does not exist, and + the index of the next argument to be processed into the variable + OOPPTTIINNDD. OOPPTTIINNDD is initialized to 1 each time the shell or a + shell script is invoked. When an option requires an argument, + ggeettooppttss places that argument into the variable OOPPTTAARRGG. + + The shell does not reset OOPPTTIINNDD automatically; it must be manu- + ally reset between multiple calls to ggeettooppttss within the same + shell invocation to use a new set of parameters. + + When it reaches the end of options, ggeettooppttss exits with a return + value greater than zero. OOPPTTIINNDD is set to the index of the first non-option argument, and _n_a_m_e is set to ?. - ggeettooppttss normally parses the positional parameters, but if more - arguments are supplied as _a_r_g values, ggeettooppttss parses those in- + ggeettooppttss normally parses the positional parameters, but if more + arguments are supplied as _a_r_g values, ggeettooppttss parses those in- stead. - ggeettooppttss can report errors in two ways. If the first character - of _o_p_t_s_t_r_i_n_g is a colon, _s_i_l_e_n_t error reporting is used. In - normal operation, diagnostic messages are printed when invalid - options or missing option arguments are encountered. If the - variable OOPPTTEERRRR is set to 0, no error messages will be dis- + ggeettooppttss can report errors in two ways. If the first character + of _o_p_t_s_t_r_i_n_g is a colon, ggeettooppttss uses _s_i_l_e_n_t error reporting. + In normal operation, ggeettooppttss prints diagnostic messages when it + encounters invalid options or missing option arguments. If the + variable OOPPTTEERRRR is set to 0, no error messages will be dis- played, even if the first character of _o_p_t_s_t_r_i_n_g is not a colon. If ggeettooppttss detects an invalid option, it places ? into _n_a_m_e and, - if not silent, prints an error message and unsets OOPPTTAARRGG. If - ggeettooppttss is silent, it assigns the option character found to OOPP-- + if not silent, prints an error message and unsets OOPPTTAARRGG. If + ggeettooppttss is silent, it assigns the option character found to OOPP-- TTAARRGG and does not print a diagnostic message. - If a required argument is not found, and ggeettooppttss is not silent, + If a required argument is not found, and ggeettooppttss is not silent, it sets the value of _n_a_m_e to a question mark (??), unsets OOPPTTAARRGG, - and prints a diagnostic message. If ggeettooppttss is silent, it sets - the value of _n_a_m_e to a colon (::) and sets OOPPTTAARRGG to the option + and prints a diagnostic message. If ggeettooppttss is silent, it sets + the value of _n_a_m_e to a colon (::) and sets OOPPTTAARRGG to the option character found. - ggeettooppttss returns true if an option, specified or unspecified, is + ggeettooppttss returns true if an option, specified or unspecified, is found. It returns false if the end of options is encountered or an error occurs. hhaasshh [--llrr] [--pp _f_i_l_e_n_a_m_e] [--ddtt] [_n_a_m_e] - Each time hhaasshh is invoked, the full pathname of the command _n_a_m_e - is determined by searching the directories in $$PPAATTHH and remem- - bered. Any previously-remembered pathname is discarded. If the - --pp option is supplied, hhaasshh uses _f_i_l_e_n_a_m_e as the full filename - of the command. The --rr option causes the shell to forget all - remembered locations. Assigning to the PPAATTHH variable also - clears all hashed filenames. The --dd option causes the shell to - forget the remembered location of each _n_a_m_e. If the --tt option - is supplied, the full pathname to which each _n_a_m_e corresponds is - printed. If multiple _n_a_m_e arguments are supplied with --tt, the - _n_a_m_e is printed before the hashed full pathname. The --ll option - causes output to be displayed in a format that may be reused as - input. If no arguments are given, or if only --ll is supplied, - information about remembered commands is printed. The --tt, --dd, - and --pp options (the options that act on the _n_a_m_e arguments) are - mutually exclusive. Only one will be active. If more than one - is supplied, --tt has higher priority than --pp, and both are higher - priority than --dd. The return status is true unless a _n_a_m_e is - not found or an invalid option is supplied. + Each time hhaasshh is invoked, it remembers the full pathname of the + command _n_a_m_e as determined by searching the directories in + $$PPAATTHH. Any previously-remembered pathname associated with _n_a_m_e + is discarded. If the --pp option is supplied, hhaasshh uses _f_i_l_e_n_a_m_e + as the full pathname of the command. + + The --rr option causes the shell to forget all remembered loca- + tions. Assigning to the PPAATTHH variable also clears all hashed + filenames. The --dd option causes the shell to forget the remem- + bered location of each _n_a_m_e. + + If the --tt option is supplied, hhaasshh prints the full pathname cor- + responding to each _n_a_m_e. If multiple _n_a_m_e arguments are sup- + plied with --tt, hhaasshh prints the _n_a_m_e before the corresponding + hashed full pathname. The --ll option displays output in a format + that may be reused as input. + + If no arguments are given, or if only --ll is supplied, hhaasshh + prints information about remembered commands. The --tt, --dd, and + --pp options (the options that act on the _n_a_m_e arguments) are mu- + tually exclusive. Only one will be active. If more than one is + supplied, --tt has higher priority than --pp, and both have higher + priority than --dd. + + The return status is zero unless a _n_a_m_e is not found or an in- + valid option is supplied. hheellpp [--ddmmss] [_p_a_t_t_e_r_n] Display helpful information about builtin commands. If _p_a_t_t_e_r_n is specified, hheellpp gives detailed help on all commands matching - _p_a_t_t_e_r_n; otherwise help for all the builtins and shell control - structures is printed. + _p_a_t_t_e_r_n; otherwise it displays a list of all the builtins and + shell compound commands. --dd Display a short description of each _p_a_t_t_e_r_n --mm Display the description of each _p_a_t_t_e_r_n in a manpage-like format @@ -5405,172 +5664,187 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS hhiissttoorryy --aannrrww [_f_i_l_e_n_a_m_e] hhiissttoorryy --pp _a_r_g [_a_r_g ...] hhiissttoorryy --ss _a_r_g [_a_r_g ...] - With no options, display the command history list with line num- - bers. Lines listed with a ** have been modified. An argument of - _n lists only the last _n lines. If the shell variable HHIISSTTTTIIMMEE-- + With no options, display the command history list with numbers. + Entries prefixed with a ** have been modified. An argument of _n + lists only the last _n entries. If the shell variable HHIISSTTTTIIMMEE-- FFOORRMMAATT is set and not null, it is used as a format string for _s_t_r_f_t_i_m_e(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 _f_i_l_e_n_a_m_e is - supplied, it is used as the name of the history file; if not, - the value of HHIISSTTFFIILLEE is used. If _f_i_l_e_n_a_m_e is not supplied and - HHIISSTTFFIILLEE is unset or null, the --aa,, --nn,, --rr,, and --ww options have - no effect. Options, if supplied, have the following meanings: - --cc Clear the history list by deleting all the entries. + played history entry. If hhiissttoorryy uses HHIISSTTTTIIMMEEFFOORRMMAATT, it does + not print an intervening space between the formatted time stamp + and the history entry. + + If _f_i_l_e_n_a_m_e is supplied, hhiissttoorryy uses it as the name of the his- + tory file; if not, it uses the value of HHIISSTTFFIILLEE. If _f_i_l_e_n_a_m_e + is not supplied and HHIISSTTFFIILLEE is unset or null, the --aa,, --nn,, --rr,, + and --ww options have no effect. + + Options, if supplied, have the following meanings: + --cc Clear the history list by deleting all the entries. This + can be used with the other options to replace the history + list. --dd _o_f_f_s_e_t - Delete the history entry at position _o_f_f_s_e_t. If _o_f_f_s_e_t + Delete the history entry at position _o_f_f_s_e_t. If _o_f_f_s_e_t 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 hhiissttoorryy --dd command. --dd _s_t_a_r_t-_e_n_d - Delete the range of history entries between positions - _s_t_a_r_t and _e_n_d, inclusive. Positive and negative values + Delete the range of history entries between positions + _s_t_a_r_t and _e_n_d, inclusive. Positive and negative values for _s_t_a_r_t and _e_n_d are interpreted as described above. - --aa Append the "new" history lines to the history file. - These are history lines entered since the beginning of + --aa Append the "new" history lines to the history file. + These are history lines entered since the beginning of the current bbaasshh session, but not already appended to the history file. - --nn 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 + --nn 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 bbaasshh session. - --rr Read the contents of the history file and append them to - the current history list. + --rr Read the history file and append its contents to the cur- + rent history list. --ww Write the current history list to the history file, over- writing the history file's contents. --pp Perform history substitution on the following _a_r_g_s and - display the result on the standard output. Does not - store the results in the history list. Each _a_r_g must be + display the result on the standard output, without stor- + ing the results in the history list. Each _a_r_g must be quoted to disable normal history expansion. --ss Store the _a_r_g_s in the history list as a single entry. The last command in the history list is removed before - the _a_r_g_s are added. - - If the HHIISSTTTTIIMMEEFFOORRMMAATT 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 _o_f_f_s_e_t or range - is supplied as an argument to --dd, or the history expansion sup- - plied as an argument to --pp fails. + adding the _a_r_g_s. + + If the HHIISSTTTTIIMMEEFFOORRMMAATT variable is set, hhiissttoorryy writes the time + stamp information associated with each history entry 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 _o_f_f_s_e_t or range is supplied as an argument to --dd, or the + history expansion supplied as an argument to --pp fails. jjoobbss [--llnnpprrss] [ _j_o_b_s_p_e_c ... ] jjoobbss --xx _c_o_m_m_a_n_d [ _a_r_g_s ... ] The first form lists the active jobs. The options have the fol- lowing meanings: --ll List process IDs in addition to the normal information. - --nn Display information only about jobs that have changed + --nn Display information only about jobs that have changed status since the user was last notified of their status. - --pp List only the process ID of the job's process group + --pp List only the process ID of the job's process group leader. --rr Display only running jobs. --ss Display only stopped jobs. - If _j_o_b_s_p_e_c is given, output is restricted to information about - that job. The return status is 0 unless an invalid option is - encountered or an invalid _j_o_b_s_p_e_c is supplied. + If _j_o_b_s_p_e_c is supplied, jjoobbss restricts output to information + about that job. The return status is 0 unless an invalid option + is encountered or an invalid _j_o_b_s_p_e_c is supplied. If the --xx option is supplied, jjoobbss replaces any _j_o_b_s_p_e_c found in _c_o_m_m_a_n_d or _a_r_g_s with the corresponding process group ID, and ex- - ecutes _c_o_m_m_a_n_d passing it _a_r_g_s, returning its exit status. + ecutes _c_o_m_m_a_n_d, passing it _a_r_g_s, returning its exit status. kkiillll [--ss _s_i_g_s_p_e_c | --nn _s_i_g_n_u_m | --_s_i_g_s_p_e_c] [_p_i_d | _j_o_b_s_p_e_c] ... kkiillll --ll|--LL [_s_i_g_s_p_e_c | _e_x_i_t___s_t_a_t_u_s] - Send the signal named by _s_i_g_s_p_e_c or _s_i_g_n_u_m to the processes + Send the signal specified by _s_i_g_s_p_e_c or _s_i_g_n_u_m to the processes named by _p_i_d or _j_o_b_s_p_e_c. _s_i_g_s_p_e_c is either a case-insensitive signal name such as SSIIGGKKIILLLL (with or without the SSIIGG prefix) or a signal number; _s_i_g_n_u_m is a signal number. If _s_i_g_s_p_e_c is not - present, then SSIIGGTTEERRMM is assumed. An argument of --ll lists the - signal names. If any arguments are supplied when --ll is given, - the names of the signals corresponding to the arguments are - listed, and the return status is 0. The _e_x_i_t___s_t_a_t_u_s argument to - --ll is a number specifying either a signal number or the exit - status of a process terminated by a signal. The --LL option is - equivalent to --ll. kkiillll returns true if at least one signal was - successfully sent, or false if an error occurs or an invalid op- - tion is encountered. + supplied, then kkiillll sends SSIIGGTTEERRMM. + + An argument of --ll lists the signal names. If any arguments are + supplied when --ll is given, kkiillll lists the names of the signals + corresponding to the arguments, and the return status is 0. The + _e_x_i_t___s_t_a_t_u_s argument to --ll is a number specifying either a sig- + nal number or the exit status of a process terminated by a sig- + nal. The --LL option is equivalent to --ll. + + kkiillll returns true if at least one signal was successfully sent, + or false if an error occurs or an invalid option is encountered. lleett _a_r_g [_a_r_g ...] - Each _a_r_g is an arithmetic expression to be evaluated (see AARRIITTHH-- + Each _a_r_g is evaluated as an arithmetic expression (see AARRIITTHH-- MMEETTIICC EEVVAALLUUAATTIIOONN above). If the last _a_r_g evaluates to 0, lleett - returns 1; 0 is returned otherwise. + returns 1; otherwise lleett returns 0. llooccaall [_o_p_t_i_o_n] [_n_a_m_e[=_v_a_l_u_e] ... | - ] - For each argument, a local variable named _n_a_m_e is created, and - assigned _v_a_l_u_e. The _o_p_t_i_o_n can be any of the options accepted - by ddeeccllaarree. When llooccaall is used within a function, it causes the + For each argument, create a local variable named _n_a_m_e and assign + it _v_a_l_u_e. The _o_p_t_i_o_n can be any of the options accepted by ddee-- + ccllaarree. When llooccaall is used within a function, it causes the variable _n_a_m_e to have a visible scope restricted to that func- - tion and its children. If _n_a_m_e is -, the set of shell options - is made local to the function in which llooccaall is invoked: shell - options changed using the sseett builtin inside the function after - the call to llooccaall are restored to their original values when the - function returns. The restore is effected as if a series of sseett - commands were executed to restore the values that were in place - before the function. With no operands, llooccaall writes a list of - local variables to the standard output. It is an error to use - llooccaall when not within a function. The return status is 0 unless - llooccaall is used outside a function, an invalid _n_a_m_e is supplied, - or _n_a_m_e is a readonly variable. - - llooggoouutt Exit a login shell. + tion and its children. It is an error to use llooccaall when not + within a function. + + If _n_a_m_e is -, it makes the set of shell options local to the + function in which llooccaall is invoked: any shell options changed + using the sseett builtin inside the function after the call to lloo-- + ccaall are restored to their original values when the function re- + turns. The restore is performed as if a series of sseett commands + were executed to restore the values that were in place before + the function. + + With no operands, llooccaall writes a list of local variables to the + standard output. + + The return status is 0 unless llooccaall is used outside a function, + an invalid _n_a_m_e is supplied, or _n_a_m_e is a readonly variable. + + llooggoouutt [[_n]] + Exit a login shell, returning a status of _n to the shell's par- + ent. mmaappffiillee [--dd _d_e_l_i_m] [--nn _c_o_u_n_t] [--OO _o_r_i_g_i_n] [--ss _c_o_u_n_t] [--tt] [--uu _f_d] [--CC _c_a_l_l_b_a_c_k] [--cc _q_u_a_n_t_u_m] [_a_r_r_a_y] rreeaaddaarrrraayy [--dd _d_e_l_i_m] [--nn _c_o_u_n_t] [--OO _o_r_i_g_i_n] [--ss _c_o_u_n_t] [--tt] [--uu _f_d] [--CC _c_a_l_l_b_a_c_k] [--cc _q_u_a_n_t_u_m] [_a_r_r_a_y] - Read lines from the standard input into the indexed array vari- - able _a_r_r_a_y, or from file descriptor _f_d if the --uu option is sup- - plied. The variable MMAAPPFFIILLEE is the default _a_r_r_a_y. Options, if + Read lines from the standard input, or from file descriptor _f_d + if the --uu option is supplied, into the indexed array variable + _a_r_r_a_y. The variable MMAAPPFFIILLEE is the default _a_r_r_a_y. Options, if supplied, have the following meanings: - --dd The first character of _d_e_l_i_m is used to terminate each - input line, rather than newline. If _d_e_l_i_m is the empty - string, mmaappffiillee will terminate a line when it reads a NUL - character. - --nn Copy at most _c_o_u_n_t lines. If _c_o_u_n_t is 0, all lines are - copied. - --OO Begin assigning to _a_r_r_a_y at index _o_r_i_g_i_n. The default + --dd Use the first character of _d_e_l_i_m to terminate each input + line, rather than newline. If _d_e_l_i_m is the empty string, + mmaappffiillee will terminate a line when it reads a NUL charac- + ter. + --nn Copy at most _c_o_u_n_t lines. If _c_o_u_n_t is 0, copy all lines. + --OO Begin assigning to _a_r_r_a_y at index _o_r_i_g_i_n. The default index is 0. --ss Discard the first _c_o_u_n_t lines read. - --tt Remove a trailing _d_e_l_i_m (default newline) from each line + --tt Remove a trailing _d_e_l_i_m (default newline) from each line read. - --uu Read lines from file descriptor _f_d instead of the stan- + --uu Read lines from file descriptor _f_d instead of the stan- dard input. - --CC Evaluate _c_a_l_l_b_a_c_k each time _q_u_a_n_t_u_m lines are read. The + --CC Evaluate _c_a_l_l_b_a_c_k each time _q_u_a_n_t_u_m lines are read. The --cc option specifies _q_u_a_n_t_u_m. - --cc Specify the number of lines read between each call to + --cc Specify the number of lines read between each call to _c_a_l_l_b_a_c_k. - If --CC is specified without --cc, the default quantum is 5000. + If --CC is specified without --cc, the default quantum is 5000. When _c_a_l_l_b_a_c_k 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. _c_a_l_l_b_a_c_k is evaluated after + element as additional arguments. _c_a_l_l_b_a_c_k is evaluated after the line is read but before the array element is assigned. - If not supplied with an explicit origin, mmaappffiillee will clear _a_r_- + If not supplied with an explicit origin, mmaappffiillee will clear _a_r_- _r_a_y before assigning to it. - mmaappffiillee returns successfully unless an invalid option or option - argument is supplied, _a_r_r_a_y is invalid or unassignable, or if - _a_r_r_a_y is not an indexed array. + mmaappffiillee returns zero unless an invalid option or option argument + is supplied, _a_r_r_a_y is invalid or unassignable, or if _a_r_r_a_y is + not an indexed array. ppooppdd [-nn] [+_n] [-_n] - Removes entries from the directory stack. The elements are num- - bered from 0 starting at the first directory listed by ddiirrss. - With no arguments, ppooppdd removes the top directory from the - stack, and changes to the new top directory. Arguments, if sup- - plied, have the following meanings: - --nn Suppresses the normal change of directory when removing - directories from the stack, so that only the stack is ma- - nipulated. - ++_n Removes the _nth entry counting from the left of the list - shown by ddiirrss, starting with zero, from the stack. For + Remove entries from the directory stack. The elements are num- + bered from 0 starting at the first directory listed by ddiirrss, so + ppooppdd is equivalent to "popd +0." With no arguments, ppooppdd re- + moves the top directory from the stack, and changes to the new + top directory. Arguments, if supplied, have the following mean- + ings: + --nn Suppress the normal change of directory when removing di- + rectories from the stack, only manipulate the stack. + ++_n Remove the _nth entry counting from the left of the list + shown by ddiirrss, starting with zero, from the stack. For example: "popd +0" removes the first directory, "popd +1" the second. - --_n Removes the _nth entry counting from the right of the list + --_n Remove the _nth entry counting from the right of the list shown by ddiirrss, starting with zero. For example: "popd -0" removes the last directory, "popd -1" the next to last. @@ -5580,19 +5854,18 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS to the directory at the top of the stack. If the ccdd fails, ppooppdd returns a non-zero value. - Otherwise, ppooppdd returns false if an invalid option is encoun- - tered, the directory stack is empty, or a non-existent directory - stack entry is specified. + Otherwise, ppooppdd returns false if an invalid option is supplied, + the directory stack is empty, or _n specifies a non-existent di- + rectory stack entry. - If the ppooppdd command is successful, bash runs ddiirrss to show the - final contents of the directory stack, and the return status is + If the ppooppdd command is successful, bbaasshh runs ddiirrss to show the + final contents of the directory stack, and the return status is 0. pprriinnttff [--vv _v_a_r] _f_o_r_m_a_t [_a_r_g_u_m_e_n_t_s] - Write the formatted _a_r_g_u_m_e_n_t_s to the standard output under the - control of the _f_o_r_m_a_t. The --vv option causes the output to be - assigned to the variable _v_a_r rather than being printed to the - standard output. + Write the formatted _a_r_g_u_m_e_n_t_s to the standard output under the + control of the _f_o_r_m_a_t. The --vv option assigns the output to the + variable _v_a_r rather than printing it to the standard output. The _f_o_r_m_a_t is a character string which contains three types of objects: plain characters, which are simply copied to standard @@ -5617,12 +5890,12 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS causes pprriinnttff to output the date-time string resulting from using _d_a_t_e_f_m_t as a format string for _s_t_r_f_t_i_m_e(3). The corresponding _a_r_g_u_m_e_n_t 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- - gument is specified, conversion behaves as if -1 had been - given. This is an exception to the usual pprriinnttff behav- - ior. + number of seconds since the epoch. This format specifier + recognizes two special argument values: -1 represents the + current time, and -2 represents the time the shell was + invoked. If no argument is specified, conversion behaves + as if -1 had been supplied. This is an exception to the + usual pprriinnttff behavior. The %b, %q, and %T format specifiers all use the field width and precision arguments from the format specification and write that @@ -5654,70 +5927,70 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS ppuusshhdd [--nn] [+_n] [-_n] ppuusshhdd [--nn] [_d_i_r] - 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, ppuusshhdd exchanges the top two ele- - ments of the directory stack. Arguments, if supplied, have the + Add a directory to the top of the directory stack, or rotate the + stack, making the new top of the stack the current working di- + rectory. With no arguments, ppuusshhdd exchanges the top two ele- + ments of the directory stack. Arguments, if supplied, have the following meanings: - --nn Suppresses the normal change of directory when rotating - or adding directories to the stack, so that only the - stack is manipulated. - ++_n Rotates the stack so that the _nth directory (counting - from the left of the list shown by ddiirrss, starting with - zero) is at the top. + --nn Suppress the normal change of directory when rotating or + adding directories to the stack, only manipulate the + stack. + ++_n Rotate the stack so that the _nth directory (counting from + the left of the list shown by ddiirrss, starting with zero) + is at the top. --_n Rotates the stack so that the _nth directory (counting from the right of the list shown by ddiirrss, starting with zero) is at the top. - _d_i_r Adds _d_i_r to the directory stack at the top + _d_i_r Adds _d_i_r to the directory stack at the top. After the stack has been modified, if the --nn option was not sup- plied, ppuusshhdd uses the ccdd builtin to change to the directory at the top of the stack. If the ccdd fails, ppuusshhdd returns a non-zero value. - Otherwise, if no arguments are supplied, ppuusshhdd returns 0 unless - the directory stack is empty. When rotating the directory - stack, ppuusshhdd returns 0 unless the directory stack is empty or a - non-existent directory stack element is specified. + Otherwise, if no arguments are supplied, ppuusshhdd returns zero un- + less the directory stack is empty. When rotating the directory + stack, ppuusshhdd returns zero unless the directory stack is empty or + _n specifies a non-existent directory stack element. - If the ppuusshhdd command is successful, bash runs ddiirrss to show the + If the ppuusshhdd command is successful, bbaasshh runs ddiirrss to show the final contents of the directory stack. ppwwdd [--LLPP] - 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 --PP option is supplied or the --oo pphhyyssiiccaall option to the sseett builtin command - is enabled. If the --LL option is used, the pathname printed may - contain symbolic links. The return status is 0 unless an error + is enabled. If the --LL 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. rreeaadd [--EEeerrss] [--aa _a_n_a_m_e] [--dd _d_e_l_i_m] [--ii _t_e_x_t] [--nn _n_c_h_a_r_s] [--NN _n_c_h_a_r_s] [--pp _p_r_o_m_p_t] [--tt _t_i_m_e_o_u_t] [--uu _f_d] [_n_a_m_e ...] - One line is read from the standard input, or from the file de- - scriptor _f_d supplied as an argument to the --uu option, split into - words as described above under WWoorrdd SSpplliittttiinngg, and the first - word is assigned to the first _n_a_m_e, the second word to the sec- - ond _n_a_m_e, and so on. If there are more words than names, the - remaining words and their intervening delimiters are assigned to + Read one line from the standard input, or from the file descrip- + tor _f_d supplied as an argument to the --uu option, split it into + words as described above under WWoorrdd SSpplliittttiinngg, and assign the + first word to the first _n_a_m_e, the second word to the second + _n_a_m_e, and so on. If there are more words than names, the re- + maining words and their intervening delimiters are assigned to the last _n_a_m_e. If there are fewer words read from the input stream than names, the remaining names are assigned empty val- - ues. The characters in IIFFSS are used to split the line into - words using the same rules the shell uses for expansion (de- - scribed above under WWoorrdd SSpplliittttiinngg). The backslash character - (\\) may be used to remove any special meaning for the next char- - acter read and for line continuation. Options, if supplied, - have the following meanings: + ues. The characters in the value of the IIFFSS variable are used + to split the line into words using the same rules the shell uses + for expansion (described above under WWoorrdd SSpplliittttiinngg). The back- + slash character (\\) removes any special meaning for the next + character read and is used for line continuation. + + Options, if supplied, have the following meanings: --aa _a_n_a_m_e The words are assigned to sequential indices of the array variable _a_n_a_m_e, starting at 0. _a_n_a_m_e is unset before any new values are assigned. Other _n_a_m_e arguments are ig- nored. --dd _d_e_l_i_m - The first character of _d_e_l_i_m is used to terminate the in- - put line, rather than newline. If _d_e_l_i_m is the empty - string, rreeaadd will terminate a line when it reads a NUL - character. + The first character of _d_e_l_i_m terminates the input line, + rather than newline. If _d_e_l_i_m is the empty string, rreeaadd + will terminate a line when it reads a NUL character. --ee If the standard input is coming from a terminal, rreeaadd uses rreeaaddlliinnee (see RREEAADDLLIINNEE above) to obtain the line. Readline uses the current (or default, if line editing @@ -5730,117 +6003,129 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS bash's default completion, including programmable comple- tion. --ii _t_e_x_t - If rreeaaddlliinnee is being used to read the line, _t_e_x_t is - placed into the editing buffer before editing begins. + If rreeaaddlliinnee is being used to read the line, rreeaadd places + _t_e_x_t into the editing buffer before editing begins. --nn _n_c_h_a_r_s rreeaadd returns after reading _n_c_h_a_r_s characters rather than - waiting for a complete line of input, but honors a delim- - iter if fewer than _n_c_h_a_r_s characters are read before the - delimiter. + waiting for a complete line of input, unless it encoun- + ters EOF or rreeaadd times out, but honors a delimiter if it + reads fewer than _n_c_h_a_r_s characters before the delimiter. --NN _n_c_h_a_r_s - rreeaadd returns after reading exactly _n_c_h_a_r_s characters - rather than waiting for a complete line of input, unless - EOF is encountered or rreeaadd times out. Delimiter charac- - ters encountered in the input are not treated specially - and do not cause rreeaadd to return until _n_c_h_a_r_s characters - are read. The result is not split on the characters in - IIFFSS; the intent is that the variable is assigned exactly - the characters read (with the exception of backslash; see - the --rr option below). + rreeaadd returns after reading exactly _n_c_h_a_r_s characters + rather than waiting for a complete line of input, unless + it encounters EOF or rreeaadd times out. Any delimiter char- + acters in the input are not treated specially and do not + cause rreeaadd to return until it has read _n_c_h_a_r_s characters. + The result is not split on the characters in IIFFSS; the in- + tent is that the variable is assigned exactly the charac- + ters read (with the exception of backslash; see the --rr + option below). --pp _p_r_o_m_p_t Display _p_r_o_m_p_t on standard error, without a trailing new- - line, before attempting to read any input. The prompt is - displayed only if input is coming from a terminal. + line, before attempting to read any input, but only if + input is coming from a terminal. --rr 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. --ss Silent mode. If input is coming from a terminal, charac- ters are not echoed. --tt _t_i_m_e_o_u_t - Cause rreeaadd to time out and return failure if a complete - line of input (or a specified number of characters) is - not read within _t_i_m_e_o_u_t seconds. _t_i_m_e_o_u_t may be a deci- - mal number with a fractional portion following the deci- - mal point. This option is only effective if rreeaadd is - reading input from a terminal, pipe, or other special - file; it has no effect when reading from regular files. - If rreeaadd times out, rreeaadd saves any partial input read into - the specified variable _n_a_m_e. If _t_i_m_e_o_u_t is 0, rreeaadd 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. - --uu _f_d Read input from file descriptor _f_d. - - Other than the case where _d_e_l_i_m is the empty string, rreeaadd ig- + Cause rreeaadd to time out and return failure if it does not + read a complete line of input (or a specified number of + characters) within _t_i_m_e_o_u_t seconds. _t_i_m_e_o_u_t may be a + decimal number with a fractional portion following the + decimal point. This option is only effective if rreeaadd is + reading input from a terminal, pipe, or other special + file; it has no effect when reading from regular files. + If rreeaadd times out, it saves any partial input read into + the specified variable _n_a_m_e, and the exit status is + greater than 128. If _t_i_m_e_o_u_t is 0, rreeaadd returns immedi- + ately, without trying to read any data. In this case, + the exit status is 0 if input is available on the speci- + fied file descriptor, or the read will return EOF, non- + zero otherwise. + --uu _f_d Read input from file descriptor _f_d instead of the stan- + dard input. + + Other than the case where _d_e_l_i_m is the empty string, rreeaadd ig- nores any NUL characters in the input. - If no _n_a_m_e_s are supplied, the line read, without the ending de- - limiter but otherwise unmodified, is assigned to the variable - RREEPPLLYY. The exit status is zero, unless end-of-file is encoun- - tered, rreeaadd 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 --uu. + If no _n_a_m_e_s are supplied, rreeaadd assigns the line read, without + the ending delimiter but otherwise unmodified, to the variable + RREEPPLLYY. + + The exit status is zero, unless end-of-file is encountered, rreeaadd + times out (in which case the status is greater than 128), a + variable assignment error (such as assigning to a readonly vari- + able) occurs, or an invalid file descriptor is supplied as the + argument to --uu. rreeaaddoonnllyy [--aaAAff] [--pp] [_n_a_m_e[=_w_o_r_d] ...] The given _n_a_m_e_s are marked readonly; the values of these _n_a_m_e_s - may not be changed by subsequent assignment. If the --ff option - is supplied, the functions corresponding to the _n_a_m_e_s are so - marked. The --aa option restricts the variables to indexed ar- - rays; the --AA option restricts the variables to associative ar- - rays. If both options are supplied, --AA takes precedence. If no - _n_a_m_e arguments are given, or if the --pp 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 --pp option causes output to be displayed in a format - that may be reused as input. If a variable name is followed by - =_w_o_r_d, the value of the variable is set to _w_o_r_d. The return - status is 0 unless an invalid option is encountered, one of the - _n_a_m_e_s is not a valid shell variable name, or --ff is supplied with - a _n_a_m_e that is not a function. + may not be changed by subsequent assignment or unset. If the --ff + option is supplied, each _n_a_m_e refers to a shell function. The + --aa option restricts the variables to indexed arrays; the --AA op- + tion restricts the variables to associative arrays. If both op- + tions are supplied, --AA takes precedence. If no _n_a_m_e arguments + are supplied, or if the --pp option is supplied, print a list of + all readonly names. The other options may be used to restrict + the output to a subset of the set of readonly names. The --pp op- + tion displays output in a format that may be reused as input. + + rreeaaddoonnllyy allows the value of a variable to be set at the same + time the readonly attribute is changed by following the variable + name with =_v_a_l_u_e. This sets the value of the variable is to + _v_a_l_u_e while modifying the readonly attribute. + + The return status is 0 unless an invalid option is encountered, + one of the _n_a_m_e_s is not a valid shell variable name, or --ff is + supplied with a _n_a_m_e that is not a function. rreettuurrnn [_n] - Causes a function to stop executing and return the value speci- - fied by _n to its caller. If _n is omitted, the return status is - that of the last command executed in the function body. If rree-- - ttuurrnn 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 rreettuurrnn is executed during a DDEEBBUUGG trap, the last - command used to determine the status is the last command exe- - cuted by the trap handler before rreettuurrnn was invoked. If rreettuurrnn - is used outside a function, but during execution of a script by - the .. (ssoouurrccee) command, it causes the shell to stop executing - that script and return either _n or the exit status of the last - command executed within the script as the exit status of the - script. If _n is supplied, the return value is its least signif- - icant 8 bits. The return status is non-zero if rreettuurrnn is sup- - plied a non-numeric argument, or is used outside a function and - not during execution of a script by .. or ssoouurrccee. Any command - associated with the RREETTUURRNN trap is executed before execution re- - sumes after the function or script. + Stop executing a shell function or sourced file and return the + value specified by _n to its caller. If _n is omitted, the return + status is that of the last command executed. If rreettuurrnn is exe- + cuted by a trap handler, the last command used to determine the + status is the last command executed before the trap handler. If + rreettuurrnn is executed during a DDEEBBUUGG trap, the last command used to + determine the status is the last command executed by the trap + handler before rreettuurrnn was invoked. + + When rreettuurrnn is used to terminate execution of a script being ex- + ecuted by the .. (ssoouurrccee) command, it causes the shell to stop + executing that script and return either _n or the exit status of + the last command executed within the script as the exit status + of the script. If _n is supplied, the return value is its least + significant 8 bits. + + Any command associated with the RREETTUURRNN trap is executed before + execution resumes after the function or script. + + The return status is non-zero if rreettuurrnn is supplied a non-nu- + meric argument, or is used outside a function and not during ex- + ecution of a script by .. or ssoouurrccee. sseett [--aabbeeffhhkkmmnnppttuuvvxxBBCCEEHHPPTT] [--oo _o_p_t_i_o_n_-_n_a_m_e] [----] [--] [_a_r_g ...] sseett [++aabbeeffhhkkmmnnppttuuvvxxBBCCEEHHPPTT] [++oo _o_p_t_i_o_n_-_n_a_m_e] [----] [--] [_a_r_g ...] sseett --oo - sseett ++oo 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- + sseett ++oo 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 _p_o_s_i_x _m_o_d_e, 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 _p_o_s_i_x _m_o_d_e, 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 $$11, - $$22, ..., $$_n. Options, if specified, have the following mean- + $$22, ..., $$_n. Options, if specified, have the following mean- ings: --aa 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. - --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. + --bb Report the status of terminated background jobs immedi- + ately, rather than before the next primary prompt or af- + ter a foreground command terminates. This is effective + only when job control is enabled. --ee Exit immediately if a _p_i_p_e_l_i_n_e (which may consist of a single _s_i_m_p_l_e _c_o_m_m_a_n_d), a _l_i_s_t, or a _c_o_m_p_o_u_n_d _c_o_m_m_a_n_d (see SSHHEELLLL GGRRAAMMMMAARR above), exits with a non-zero status. @@ -5946,40 +6231,40 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS no _o_p_t_i_o_n_-_n_a_m_e, sseett prints a series of sseett commands to recreate the current option settings on the standard output. - --pp Turn on _p_r_i_v_i_l_e_g_e_d mode. In this mode, the $$EENNVV and - $$BBAASSHH__EENNVV files are not processed, shell functions are - not inherited from the environment, and the SSHHEELLLLOOPPTTSS, - BBAASSHHOOPPTTSS, CCDDPPAATTHH, and GGLLOOBBIIGGNNOORREE 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 --pp option is not sup- - plied, these actions are taken and the effective user id - is set to the real user id. If the --pp option is sup- - plied at startup, the effective user id is not reset. - Turning this option off causes the effective user and + --pp Turn on _p_r_i_v_i_l_e_g_e_d mode. In this mode, the shell does + not read the $$EENNVV and $$BBAASSHH__EENNVV files, shell functions + are not inherited from the environment, and the SSHHEELL-- + LLOOPPTTSS, BBAASSHHOOPPTTSS, CCDDPPAATTHH, and GGLLOOBBIIGGNNOORREE variables, if + they appear 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 --pp option is + not supplied, these actions are taken and the effective + user id is set to the real user id. If the --pp option is + supplied 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. --rr Enable restricted shell mode. This option cannot be un- set once it has been set. --tt Exit after reading and executing one command. --uu 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. --vv Print shell input lines as they are read. - --xx After expanding each _s_i_m_p_l_e _c_o_m_m_a_n_d, ffoorr command, ccaassee + --xx After expanding each _s_i_m_p_l_e _c_o_m_m_a_n_d, ffoorr command, ccaassee command, sseelleecctt command, or arithmetic ffoorr command, dis- - play the expanded value of PPSS44, followed by the command - and its expanded arguments or associated word list, to - standard error. - --BB The shell performs brace expansion (see BBrraaccee EExxppaannssiioonn + play the expanded value of PPSS44, followed by the command + and its expanded arguments or associated word list, to + the standard error. + --BB The shell performs brace expansion (see BBrraaccee EExxppaannssiioonn above). This is on by default. - --CC If set, bbaasshh does not overwrite an existing file with - the >>, >>&&, and <<>> redirection operators. This may be - overridden when creating output files by using the redi- - rection operator >>|| instead of >>. + --CC If set, bbaasshh does not overwrite an existing file with + the >>, >>&&, and <<>> redirection operators. Using the + redirection operator >>|| instead of >> will override this + and force the creation of an output file. --EE If set, any trap on EERRRR is inherited by shell functions, command substitutions, and commands executed in a sub- shell environment. The EERRRR trap is normally not inher- @@ -5996,48 +6281,47 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS shell functions, command substitutions, and commands ex- ecuted in a subshell environment. The DDEEBBUUGG and RREETTUURRNN traps are normally not inherited in such cases. - ---- If no arguments follow this option, then the positional - parameters are unset. Otherwise, the positional parame- - ters are set to the _a_r_gs, even if some of them begin - with a --. - -- Signal the end of options, cause all remaining _a_r_gs to - be assigned to the positional parameters. The --xx and --vv - options are turned off. If there are no _a_r_gs, the posi- - tional parameters remain unchanged. + ---- If no arguments follow this option, unset the positional + parameters. Otherwise, set the positional parameters to + the _a_r_gs, even if some of them begin with a --. + -- Signal the end of options, and assign all remaining _a_r_gs + to the positional parameters. The --xx and --vv options are + turned off. If there are no _a_r_gs, the positional para- + meters remain unchanged. 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 $$--. The re- - turn status is always true unless an invalid option is encoun- + turn status is always zero unless an invalid option is encoun- tered. sshhiifftt [_n] - The positional parameters from _n+1 ... are renamed to $$11 ........ - Parameters represented by the numbers $$## down to $$##-_n+1 are un- - set. _n must be a non-negative number less than or equal to $$##. - If _n is 0, no parameters are changed. If _n is not given, it is - assumed to be 1. If _n is greater than $$##, the positional para- - meters are not changed. The return status is greater than zero - if _n is greater than $$## or less than zero; otherwise 0. + Rename positional parameters from _n+1 ... to $$11 ........ Parameters + represented by the numbers $$## down to $$##-_n+1 are unset. _n must + be a non-negative number less than or equal to $$##. If _n is 0, + no parameters are changed. If _n is not given, it is assumed to + be 1. If _n is greater than $$##, the positional parameters are + not changed. The return status is greater than zero if _n is + greater than $$## or less than zero; otherwise 0. sshhoopptt [--ppqqssuu] [--oo] [_o_p_t_n_a_m_e ...] - 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 --oo option is used, those available with the --oo option to the sseett - builtin command. With no options, or with the --pp option, a list - of all settable options is displayed, with an indication of - whether or not each is set; if _o_p_t_n_a_m_e_s are supplied, the output - is restricted to those options. The --pp option causes output to - be displayed in a form that may be reused as input. Other op- - tions have the following meanings: + builtin command. With no options, or with the --pp option, dis- + play a list of all settable options, with an indication of + whether or not each is set; if any _o_p_t_n_a_m_e_s are supplied, the + output is restricted to those options. The --pp option displays + output in a form that may be reused as input. Other options + have the following meanings: --ss Enable (set) each _o_p_t_n_a_m_e. --uu Disable (unset) each _o_p_t_n_a_m_e. - --qq Suppresses normal output (quiet mode); the return status + --qq Suppresses normal output (quiet mode); the return status indicates whether the _o_p_t_n_a_m_e is set or unset. If multi- - ple _o_p_t_n_a_m_e arguments are given with --qq, the return sta- - tus is zero if all _o_p_t_n_a_m_e_s are enabled; non-zero other- - wise. + ple _o_p_t_n_a_m_e arguments are supplied with --qq, the return + status is zero if all _o_p_t_n_a_m_e_s are enabled; non-zero oth- + erwise. --oo Restricts the values of _o_p_t_n_a_m_e to be those defined for the --oo option to the sseett builtin. @@ -6072,30 +6356,30 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS If set, an argument to the ccdd builtin command that is not a directory is assumed to be the name of a variable whose value is the directory to change to. - ccddssppeellll If set, minor errors in the spelling of a directory com- - ponent in a ccdd 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 - shells. + ccddssppeellll If set, the ccdd command attempts to correct minor errors + in the spelling of a directory component. Minor errors + include transposed characters, a missing character, and + one extra character. If ccdd corrects the directory name, + it prints the corrected filename, and the command pro- + ceeds. This option is only used by interactive shells. cchheecckkhhaasshh If set, bbaasshh 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- - formed. + command no longer exists, bbaasshh performs a normal path + search. cchheecckkjjoobbss If set, bbaasshh lists the status of any stopped and running 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 - (see JJOOBB CCOONNTTRROOLL above). The shell always postpones ex- - iting if any jobs are stopped. + are running, bbaasshh defers the exit until a second exit is + attempted without an intervening command (see JJOOBB CCOONN-- + TTRROOLL above). The shell always postpones exiting if any + jobs are stopped. cchheecckkwwiinnssiizzee - If set, bbaasshh checks the window size after each external - (non-builtin) command and, if necessary, updates the - values of LLIINNEESS and CCOOLLUUMMNNSS. This option is enabled by - default. + If set, bbaasshh checks the window size after each external + (non-builtin) command and, if necessary, updates the + values of LLIINNEESS and CCOOLLUUMMNNSS, using the file descriptor + associated with the standard error if it is a terminal. + This option is enabled by default. ccmmddhhiisstt If set, bbaasshh 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 @@ -6147,8 +6431,8 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS eexxeeccffaaiill If set, a non-interactive shell will not exit if it can- not execute the file specified as an argument to the - eexxeecc builtin command. An interactive shell does not - exit if eexxeecc fails. + eexxeecc builtin. An interactive shell does not exit if + eexxeecc fails. eexxppaanndd__aalliiaasseess If set, aliases are expanded as described above under @@ -6187,44 +6471,44 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS shell functions, and subshells invoked with (( _c_o_m_m_a_n_d )) inherit the EERRRR trap. - eexxttgglloobb If set, the extended pattern matching features described - above under PPaatthhnnaammee EExxppaannssiioonn are enabled. + eexxttgglloobb If set, enable the extended pattern matching features + described above under PPaatthhnnaammee EExxppaannssiioonn. eexxttqquuoottee - If set, $$'_s_t_r_i_n_g' and $$"_s_t_r_i_n_g" quoting is performed - within $${{_p_a_r_a_m_e_t_e_r}} expansions enclosed in double + If set, $$'_s_t_r_i_n_g' and $$"_s_t_r_i_n_g" quoting is performed + within $${{_p_a_r_a_m_e_t_e_r}} expansions enclosed in double quotes. This option is enabled by default. ffaaiillgglloobb - 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. ffoorrccee__ffiiggnnoorree - If set, the suffixes specified by the FFIIGGNNOORREE shell - variable cause words to be ignored when performing word + If set, the suffixes specified by the FFIIGGNNOORREE shell + variable cause words to be ignored when performing word completion even if the ignored words are the only possi- - ble completions. See SSHHEELLLL VVAARRIIAABBLLEESS above for a de- - scription of FFIIGGNNOORREE. This option is enabled by de- + ble completions. See SSHHEELLLL VVAARRIIAABBLLEESS above for a de- + scription of FFIIGGNNOORREE. This option is enabled by de- fault. gglloobbaasscciiiirraannggeess - If set, range expressions used in pattern matching - bracket expressions (see PPaatttteerrnn MMaattcchhiinngg 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 bb will not collate - between AA and BB, and upper-case and lower-case ASCII - characters will collate together. + If set, range expressions used in pattern matching + bracket expressions (see PPaatttteerrnn MMaattcchhiinngg above) behave + as if in the traditional C locale when performing com- + parisons. That is, pattern matching does not take the + current locale's collating sequence into account, so bb + will not collate between AA and BB, and upper-case and + lower-case ASCII characters will collate together. gglloobbsskkiippddoottss - If set, pathname expansion will never match the file- - names "." and "..", even if the pattern begins with a + If set, pathname expansion will never match the file- + names "." and "..", even if the pattern begins with a ".". This option is enabled by default. gglloobbssttaarr If set, the pattern **** 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 //, + text will match all files and zero or more directories + and subdirectories. If the pattern is followed by a //, only directories and subdirectories match. ggnnuu__eerrrrffmmtt @@ -6232,13 +6516,14 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS GNU error message format. hhiissttaappppeenndd - 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 HHIISSTTFFIILLEE variable when the shell ex- its, rather than overwriting the file. hhiissttrreeeeddiitt - If set, and rreeaaddlliinnee is being used, a user is given the - opportunity to re-edit a failed history substitution. + If set, and rreeaaddlliinnee is being used, the user is given + the opportunity to re-edit a failed history substitu- + tion. hhiissttvveerriiffyy If set, and rreeaaddlliinnee is being used, the results of his- @@ -6264,17 +6549,17 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS enabled. iinntteerraaccttiivvee__ccoommmmeennttss - If set, allow a word beginning with ## to cause that word - and all remaining characters on that line to be ignored - in an interactive shell (see CCOOMMMMEENNTTSS above). This op- - tion is enabled by default. + In an interactive shell, a word beginning with ## causes + that word and all remaining characters on that line to + be ignored, as in a non-interactive shell (see CCOOMMMMEENNTTSS + above). This option is enabled by default. llaassttppiippee - 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. - lliitthhiisstt If set, and the ccmmddhhiisstt option is enabled, multi-line + lliitthhiisstt If set, and the ccmmddhhiisstt option is enabled, multi-line commands are saved to the history with embedded newlines rather than using semicolon separators where possible. @@ -6285,9 +6570,9 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS tribute is not inherited. llooccaallvvaarr__uunnsseett - If set, calling uunnsseett on local variables in previous - function scopes marks them so subsequent lookups find - them unset until that function returns. This is identi- + If set, calling uunnsseett 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. @@ -6303,25 +6588,25 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS read". nnoo__eemmppttyy__ccmmdd__ccoommpplleettiioonn - If set, and rreeaaddlliinnee is being used, bbaasshh will not at- - tempt to search the PPAATTHH for possible completions when - completion is attempted on an empty line. + If set, and rreeaaddlliinnee is being used, bbaasshh does not search + PPAATTHH for possible completions when completion is at- + tempted on an empty line. nnooccaasseegglloobb - If set, bbaasshh matches filenames in a case-insensitive + If set, bbaasshh matches filenames in a case-insensitive fashion when performing pathname expansion (see PPaatthhnnaammee EExxppaannssiioonn above). nnooccaasseemmaattcchh - If set, bbaasshh matches patterns in a case-insensitive + If set, bbaasshh matches patterns in a case-insensitive fashion when performing matching while executing ccaassee or [[[[ 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. nnooeexxppaanndd__ttrraannssllaattiioonn - If set, bbaasshh encloses the translated results of $$""..."" - quoting in single quotes instead of double quotes. If + If set, bbaasshh encloses the translated results of $$""..."" + quoting in single quotes instead of double quotes. If the string is not translated, this has no effect. nnuullllgglloobb @@ -6331,82 +6616,82 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS ppaattssuubb__rreeppllaacceemmeenntt If set, bbaasshh expands occurrences of && in the replacement - string of pattern substitution to the text matched by - the pattern, as described under PPaarraammeetteerr EExxppaannssiioonn + string of pattern substitution to the text matched by + the pattern, as described under PPaarraammeetteerr EExxppaannssiioonn above. This option is enabled by default. pprrooggccoommpp - If set, the programmable completion facilities (see PPrroo-- - ggrraammmmaabbllee CCoommpplleettiioonn above) are enabled. This option is - enabled by default. + If set, enable the programmable completion facilities + (see PPrrooggrraammmmaabbllee CCoommpplleettiioonn above). This option is en- + abled by default. pprrooggccoommpp__aalliiaass If set, and programmable completion is enabled, bbaasshh treats a command name that doesn't have any completions - as a possible alias and attempts alias expansion. If it - has an alias, bbaasshh attempts programmable completion us- + as a possible alias and attempts alias expansion. If it + has an alias, bbaasshh attempts programmable completion us- ing the command word resulting from the expanded alias. pprroommppttvvaarrss If set, prompt strings undergo parameter expansion, com- - mand substitution, arithmetic expansion, and quote re- - moval after being expanded as described in PPRROOMMPPTTIINNGG + mand substitution, arithmetic expansion, and quote re- + moval after being expanded as described in PPRROOMMPPTTIINNGG above. This option is enabled by default. rreessttrriicctteedd__sshheellll - The shell sets this option if it is started in re- - stricted mode (see RREESSTTRRIICCTTEEDD SSHHEELLLL 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 RREESSTTRRIICCTTEEDD SSHHEELLLL 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. sshhiifftt__vveerrbboossee - If set, the sshhiifftt builtin prints an error message when + If set, the sshhiifftt builtin prints an error message when the shift count exceeds the number of positional parame- ters. ssoouurrcceeppaatthh If set, the .. (ssoouurrccee) builtin uses the value of PPAATTHH to - find the directory containing the file supplied as an - argument when the --pp option is not supplied. This op- + find the directory containing the file supplied as an + argument when the --pp option is not supplied. This op- tion is enabled by default. vvaarrrreeddiirr__cclloossee - If set, the shell automatically closes file descriptors - assigned using the _{_v_a_r_n_a_m_e_} redirection syntax (see + If set, the shell automatically closes file descriptors + assigned using the _{_v_a_r_n_a_m_e_} redirection syntax (see RREEDDIIRREECCTTIIOONN above) instead of leaving them open when the command completes. xxppgg__eecchhoo - If set, the eecchhoo builtin expands backslash-escape se- - quences by default. If the ppoossiixx shell option is also + If set, the eecchhoo builtin expands backslash-escape se- + quences by default. If the ppoossiixx shell option is also enabled, eecchhoo does not interpret any options. ssuussppeenndd [--ff] - Suspend the execution of this shell until it receives a SSIIGGCCOONNTT - signal. A login shell, or a shell without job control enabled, - cannot be suspended; the --ff 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 --ff is - not supplied. + Suspend the execution of this shell until it receives a SSIIGGCCOONNTT + signal. A login shell, or a shell without job control enabled, + cannot be suspended; the --ff option will 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 --ff is not sup- + plied. tteesstt _e_x_p_r [[ _e_x_p_r ]] Return a status of 0 (true) or 1 (false) depending on the evalu- - ation of the conditional expression _e_x_p_r. Each operator and - operand must be a separate argument. Expressions are composed - of the primaries described above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS. - tteesstt does not accept any options, nor does it accept and ignore + ation of the conditional expression _e_x_p_r. Each operator and + operand must be a separate argument. Expressions are composed + of the primaries described above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS. + tteesstt does not accept any options, nor does it accept and ignore an argument of ---- 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- - dence is used when there are five or more arguments. + 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. tteesstt uses operator + precedence when there are five or more arguments. !! _e_x_p_r True if _e_x_p_r is false. (( _e_x_p_r )) Returns the value of _e_x_p_r. This may be used to override - the normal precedence of operators. + normal operator precedence. _e_x_p_r_1 -aa _e_x_p_r_2 True if both _e_x_p_r_1 and _e_x_p_r_2 are true. _e_x_p_r_1 -oo _e_x_p_r_2 @@ -6445,76 +6730,82 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS The following conditions are applied in the order listed. If the first argument is !!, 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 (( and - the fourth argument is exactly )), the result is the two- - argument test of the second and third arguments. Other- - wise, the expression is parsed and evaluated according to + arguments. If the first argument is exactly (( and the + fourth argument is exactly )), the result is the two-argu- + ment test of the second and third arguments. Otherwise, + 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 the shell is in _p_o_s_i_x _m_o_d_e, or if the expression is part of the [[[[ command, the << and >> operators sort using the current lo- - cale. If the shell is not in _p_o_s_i_x _m_o_d_e, the tteesstt and [[ com- + cale. If the shell is not in _p_o_s_i_x _m_o_d_e, the tteesstt and [[ com- mands sort lexicographically using ASCII ordering. + The historical operator-precedence parsing with 4 or more + arguments can lead to ambiguities when it encounters + strings that look like primaries. The POSIX standard has + deprecated the --aa and --oo primaries and enclosing expres- + sions within parentheses. Scripts should no longer use + them. It's much more reliable to restrict test invoca- + tions to a single primary, and to replace uses of --aa and + --oo with the shell's &&&& and |||| list operators. + ttiimmeess Print the accumulated user and system times for the shell and for processes run from the shell. The return status is 0. - ttrraapp [--llpp] [[_a_c_t_i_o_n] _s_i_g_s_p_e_c ...] + ttrraapp [--PPllpp] [[_a_c_t_i_o_n] _s_i_g_s_p_e_c ...] The _a_c_t_i_o_n is a command that is read and executed when the shell - receives signal(s) _s_i_g_s_p_e_c. If _a_c_t_i_o_n is absent (and there is a - single _s_i_g_s_p_e_c) or --, each specified signal is reset to its - original disposition (the value it had upon entrance to the - shell). If _a_c_t_i_o_n is the null string the signal specified by - each _s_i_g_s_p_e_c is ignored by the shell and by the commands it in- - vokes. - - If no arguments are supplied, ttrraapp displays the actions associ- + receives any of the signals _s_i_g_s_p_e_c. If _a_c_t_i_o_n is absent (and + there is a single _s_i_g_s_p_e_c) or --, each specified _s_i_g_s_p_e_c is reset + to the value it had when the shell was started. If _a_c_t_i_o_n is + the null string the signal specified by each _s_i_g_s_p_e_c is ignored + by the shell and by the commands it invokes. + + If no arguments are supplied, ttrraapp displays the actions associ- ated with each trapped signal as a set of ttrraapp commands that can - be reused as shell input to restore the current signal disposi- - tions. If --pp is given, and _a_c_t_i_o_n is not present, then ttrraapp - displays the actions associated with each _s_i_g_s_p_e_c or, if none + be reused as shell input to restore the current signal disposi- + tions. If --pp is given, and _a_c_t_i_o_n is not present, then ttrraapp + displays the actions associated with each _s_i_g_s_p_e_c or, if none are supplied, for all trapped signals, as a set of ttrraapp commands - that can be reused as shell input to restore the current signal - dispositions. The --PP option behaves similarly, but displays - only the actions associated with each _s_i_g_s_p_e_c argument. --PP re- - quires at least one _s_i_g_s_p_e_c argument. The --PP or --pp options to - ttrraapp may be used in a subshell environment (e.g., command sub- - stitution) and, as long as they are used before ttrraapp is used to - change a signal's handling, will display the state of its par- - ent's traps. - - The --ll option causes ttrraapp to print a list of signal names and - their corresponding numbers. Each _s_i_g_s_p_e_c is either a signal - name defined in <_s_i_g_n_a_l_._h>, or a signal number. Signal names - are case insensitive and the SSIIGG prefix is optional. - - If a _s_i_g_s_p_e_c is EEXXIITT (0) the command _a_c_t_i_o_n is executed on exit - from the shell. If a _s_i_g_s_p_e_c is DDEEBBUUGG, the command _a_c_t_i_o_n is - executed before every _s_i_m_p_l_e _c_o_m_m_a_n_d, _f_o_r command, _c_a_s_e command, - _s_e_l_e_c_t command, (( arithmetic command, [[ conditional command, - arithmetic _f_o_r command, and before the first command executes in - a shell function (see SSHHEELLLL GGRRAAMMMMAARR above). Refer to the de- - scription of the eexxttddeebbuugg option to the sshhoopptt builtin for de- - tails of its effect on the DDEEBBUUGG trap. If a _s_i_g_s_p_e_c is RREETTUURRNN, - the command _a_c_t_i_o_n is executed each time a shell function or a - script executed with the .. or ssoouurrccee builtins finishes execut- - ing. - - If a _s_i_g_s_p_e_c is EERRRR, the command _a_c_t_i_o_n 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 EERRRR trap is not executed if the + that can be reused as shell input to restore the current signal + dispositions. The --PP option behaves similarly, but displays + only the actions associated with each _s_i_g_s_p_e_c argument. --PP re- + quires at least one _s_i_g_s_p_e_c argument. The --PP or --pp options may + be used in a subshell environment (e.g., command substitution) + and, as long as they are used before ttrraapp is used to change a + signal's handling, will display the state of its parent's traps. + + The --ll option prints a list of signal names and their corre- + sponding numbers. Each _s_i_g_s_p_e_c is either a signal name defined + in <_s_i_g_n_a_l_._h>, or a signal number. Signal names are case insen- + sitive and the SSIIGG prefix is optional. If --ll is supplied with + no _s_i_g_s_p_e_c arguments, it prints a list of valid signal names. + + If a _s_i_g_s_p_e_c is EEXXIITT (0), _a_c_t_i_o_n is executed on exit from the + shell. If a _s_i_g_s_p_e_c is DDEEBBUUGG, _a_c_t_i_o_n is executed before every + _s_i_m_p_l_e _c_o_m_m_a_n_d, _f_o_r command, _c_a_s_e command, _s_e_l_e_c_t command, (( + arithmetic command, [[ conditional command, arithmetic _f_o_r com- + mand, and before the first command executes in a shell function + (see SSHHEELLLL GGRRAAMMMMAARR above). Refer to the description of the + eexxttddeebbuugg shell option (see sshhoopptt above) for details of its ef- + fect on the DDEEBBUUGG trap. If a _s_i_g_s_p_e_c is RREETTUURRNN, _a_c_t_i_o_n is exe- + cuted each time a shell function or a script executed with the .. + or ssoouurrccee builtins finishes executing. + + If a _s_i_g_s_p_e_c is EERRRR, _a_c_t_i_o_n 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 EERRRR trap is not executed if the failed command is part of the command list immediately following a wwhhiillee or uunnttiill keyword, part of the test in an _i_f statement, part of a command executed in a &&&& or |||| list except the command following the final &&&& or ||||, any command in a pipeline but the - last, or if the command's return value is being inverted using - !!. These are the same conditions obeyed by the eerrrreexxiitt (--ee) op- - tion. + last (subject to the state of the ppiippeeffaaiill shell option), or if + the command's return value is being inverted using !!. These are + the same conditions obeyed by the eerrrreexxiitt (--ee) option. When the shell is not interactive, signals ignored upon entry to the shell cannot be trapped or reset. Interactive shells permit @@ -6526,57 +6817,64 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS ttrruuee Does nothing, returns a 0 status. ttyyppee [--aaffttppPP] _n_a_m_e [_n_a_m_e ...] - With no options, indicate how each _n_a_m_e would be interpreted if - used as a command name. If the --tt option is used, ttyyppee prints a - string which is one of _a_l_i_a_s, _k_e_y_w_o_r_d, _f_u_n_c_t_i_o_n, _b_u_i_l_t_i_n, or - _f_i_l_e if _n_a_m_e is an alias, shell reserved word, function, - builtin, or executable disk file, respectively. If the _n_a_m_e is - not found, then nothing is printed, and ttyyppee returns a non-zero - exit status. If the --pp option is used, ttyyppee either returns the - name of the executable file that would be found by searching - $$PPAATTHH if _n_a_m_e were specified as a command name, or nothing if - "type -t name" would not return _f_i_l_e. The --PP option forces a - PPAATTHH search for each _n_a_m_e, even if "type -t name" would not re- - turn _f_i_l_e. If a command is hashed, --pp and --PP print the hashed - value, which is not necessarily the file that appears first in - PPAATTHH. If the --aa option is used, ttyyppee prints all of the places - that contain a command named _n_a_m_e. This includes aliases, re- - served words, functions, and builtins, but the path search op- - tions (--pp and --PP) can be supplied to restrict the output to exe- - cutable files. ttyyppee does not consult the table of hashed com- - mands when using --aa with --pp, and only performs a PPAATTHH search for - _n_a_m_e. The --ff option suppresses shell function lookup, as with - the ccoommmmaanndd builtin. ttyyppee returns true if all of the arguments - are found, false if any are not found. + Indicate how each _n_a_m_e would be interpreted if used as a command + name. + + If the --tt option is used, ttyyppee prints a string which is one of + _a_l_i_a_s, _k_e_y_w_o_r_d, _f_u_n_c_t_i_o_n, _b_u_i_l_t_i_n, or _f_i_l_e if _n_a_m_e is an alias, + shell reserved word, function, builtin, or executable file, re- + spectively. If the _n_a_m_e is not found, ttyyppee prints nothing and + returns a non-zero exit status. + + If the --pp option is used, ttyyppee either returns the pathname of + the executable file that would be found by searching $$PPAATTHH for + _n_a_m_e or nothing if "type -t name" would not return _f_i_l_e. The --PP + option forces a PPAATTHH search for each _n_a_m_e, even if "type -t + name" would not return _f_i_l_e. If _n_a_m_e is present in the table of + hashed commands, --pp and --PP print the hashed value, which is not + necessarily the file that appears first in PPAATTHH. + + If the --aa option is used, ttyyppee prints all of the places that + contain a command named _n_a_m_e. This includes aliases, reserved + words, functions, and builtins, but the path search options (--pp + and --PP) can be supplied to restrict the output to executable + files. ttyyppee does not consult the table of hashed commands when + using --aa with --pp, and only performs a PPAATTHH search for _n_a_m_e. + + The --ff option suppresses shell function lookup, as with the ccoomm-- + mmaanndd builtin. ttyyppee returns true if all of the arguments are + found, false if any are not found. uulliimmiitt [--HHSS] --aa uulliimmiitt [--HHSS] [--bbccddeeffiikkllmmnnppqqrrssttuuvvxxPPRRTT [_l_i_m_i_t]] Provides control over the resources available to the shell and - to processes started by it, on systems that allow such control. + to processes it starts, on systems that allow such control. + The --HH and --SS 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 --HH nor --SS is speci- - fied, both the soft and hard limits are set. The value of _l_i_m_i_t - can be a number in the unit specified for the resource or one of - the special values hhaarrdd, ssoofftt, or uunnlliimmiitteedd, which stand for the - current hard limit, the current soft limit, and no limit, re- - spectively. If _l_i_m_i_t is omitted, the current value of the soft - limit of the resource is printed, unless the --HH option is given. - 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: - --aa All current limits are reported; no limits are 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 --HH nor --SS is speci- + fied, uulliimmiitt sets both the soft and hard limits. + + The value of _l_i_m_i_t can be a number in the unit specified for the + resource or one of the special values hhaarrdd, ssoofftt, or uunnlliimmiitteedd, + which stand for the current hard limit, the current soft limit, + and no limit, respectively. If _l_i_m_i_t is omitted, uulliimmiitt prints + the current value of the soft limit of the resource, unless the + --HH option is given. When more than one resource is specified, + the limit name and unit, if appropriate, are printed before the + value. Other options are interpreted as follows: + --aa Report all current limits; no limits are set --bb The maximum socket buffer size --cc The maximum size of core files created --dd The maximum size of a process's data segment --ee The maximum scheduling priority ("nice"). - --ff The maximum size of files written by the shell and its + --ff The maximum size of files written by the shell and its children --ii The maximum number of pending signals --kk The maximum number of kqueues that may be allocated --ll The maximum size that may be locked into memory - --mm The maximum resident set size (many systems do not honor + --mm The maximum resident set size (many systems do not honor this limit) --nn The maximum number of open file descriptors (most systems do not allow this value to be set) @@ -6585,67 +6883,70 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS --rr The maximum real-time scheduling priority --ss The maximum stack size --tt The maximum amount of cpu time in seconds - --uu The maximum number of processes available to a single + --uu The maximum number of processes available to a single user - --vv The maximum amount of virtual memory available to the + --vv The maximum amount of virtual memory available to the shell and, on some systems, to its children --xx The maximum number of file locks --PP The maximum number of pseudoterminals - --RR The maximum time a real-time process can run before + --RR The maximum time a real-time process can run before blocking, in microseconds --TT The maximum number of threads - If _l_i_m_i_t is given, and the --aa option is not used, _l_i_m_i_t is the - new value of the specified resource. If no option is given, - then --ff is assumed. Values are in 1024-byte increments, except - for --tt, which is in seconds; --RR, which is in microseconds; --pp, - which is in units of 512-byte blocks; --PP, --TT, --bb, --kk, --nn, and - --uu, which are unscaled values; and, when in posix mode, --cc and - --ff, 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. + If _l_i_m_i_t is supplied, and the --aa option is not used, _l_i_m_i_t is + the new value of the specified resource. If no option is sup- + plied, then --ff is assumed. + + Values are in 1024-byte increments, except for --tt, which is in + seconds; --RR, which is in microseconds; --pp, which is in units of + 512-byte blocks; --PP, --TT, --bb, --kk, --nn, and --uu, which are unscaled + values; and, when in posix mode, --cc and --ff, 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. uummaasskk [--pp] [--SS] [_m_o_d_e] - The user file-creation mask is set to _m_o_d_e. If _m_o_d_e 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 - _c_h_m_o_d(1). If _m_o_d_e is omitted, the current value of the mask is - printed. The --SS option causes the mask to be printed in sym- - bolic form; the default output is an octal number. If the --pp - option is supplied, and _m_o_d_e 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 _m_o_d_e argument was supplied, - and false otherwise. + Set the user file-creation mask to _m_o_d_e. If _m_o_d_e begins with a + digit, it is interpreted as an octal number; otherwise it is in- + terpreted as a symbolic mode mask similar to that accepted by + _c_h_m_o_d(1). If _m_o_d_e is omitted, uummaasskk prints the current value of + the mask. The --SS option without a _m_o_d_e argument prints the mask + in a symbolic format; the default output is an octal number. If + the --pp option is supplied, and _m_o_d_e is omitted, the output is in + a form that may be reused as input. The return status is zero + if the mode was successfully changed or if no _m_o_d_e argument was + supplied, and non-zero otherwise. uunnaalliiaass [-aa] [_n_a_m_e ...] Remove each _n_a_m_e from the list of defined aliases. If --aa is - supplied, all alias definitions are removed. The return value - is true unless a supplied _n_a_m_e is not a defined alias. + supplied, remove all alias definitions. The return value is + true unless a supplied _n_a_m_e is not a defined alias. uunnsseett [-ffvv] [-nn] [_n_a_m_e ...] For each _n_a_m_e, remove the corresponding variable or function. If the --vv option is given, each _n_a_m_e refers to a shell variable, - and that variable is removed. Read-only variables may not be - unset. If --ff is specified, each _n_a_m_e refers to a shell func- - tion, and the function definition is removed. If the --nn option - is supplied, and _n_a_m_e is a variable with the _n_a_m_e_r_e_f attribute, - _n_a_m_e will be unset rather than the variable it references. --nn - has no effect if the --ff option is supplied. If no options are - supplied, each _n_a_m_e 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 BBAASSHH__AALLIIAASSEESS, - BBAASSHH__AARRGGVV00, BBAASSHH__CCMMDDSS, BBAASSHH__CCOOMMMMAANNDD, BBAASSHH__SSUUBBSSHHEELLLL, BBAASSHHPPIIDD, - CCOOMMPP__WWOORRDDBBRREEAAKKSS, DDIIRRSSTTAACCKK, EEPPOOCCHHRREEAALLTTIIMMEE, EEPPOOCCHHSSEECCOONNDDSS, FFUUNNCC-- - NNAAMMEE, GGRROOUUPPSS, HHIISSTTCCMMDD, LLIINNEENNOO, RRAANNDDOOMM, SSEECCOONNDDSS, or SSRRAANNDDOOMM are - unset, they lose their special properties, even if they are sub- - sequently reset. The exit status is true unless a _n_a_m_e is read- - only or may not be unset. + and that variable is removed. If --ff is specified, each _n_a_m_e + refers to a shell function, and the function definition is re- + moved. If the --nn option is supplied, and _n_a_m_e is a variable + with the _n_a_m_e_r_e_f attribute, _n_a_m_e will be unset rather than the + variable it references. --nn has no effect if the --ff option is + supplied. Read-only variables and functions may not be unset. + When variables or functions are removed, they are also removed + from the environment passed to subsequent commands. If no op- + tions are supplied, each _n_a_m_e refers to a variable; if there is + no variable by that name, a function with that name, if any, is + unset. Some shell variables may not be unset. If any of + BBAASSHH__AALLIIAASSEESS, BBAASSHH__AARRGGVV00, BBAASSHH__CCMMDDSS, BBAASSHH__CCOOMMMMAANNDD, BBAASSHH__SSUUBB-- + SSHHEELLLL, BBAASSHHPPIIDD, CCOOMMPP__WWOORRDDBBRREEAAKKSS, DDIIRRSSTTAACCKK, EEPPOOCCHHRREEAALLTTIIMMEE, + EEPPOOCCHHSSEECCOONNDDSS, FFUUNNCCNNAAMMEE, GGRROOUUPPSS, HHIISSTTCCMMDD, LLIINNEENNOO, RRAANNDDOOMM, SSEECC-- + OONNDDSS, or SSRRAANNDDOOMM are unset, they lose their special properties, + even if they are subsequently reset. The exit status is true + unless a _n_a_m_e is readonly or may not be unset. wwaaiitt [--ffnn] [--pp _v_a_r_n_a_m_e] [_i_d ...] Wait for each specified child process _i_d and return the termina- - tion status of the last _i_d. Each _i_d may be a process ID or a - job specification; if a job spec is given, wwaaiitt waits for all + tion status of the last _i_d. Each _i_d may be a process ID or a + job specification; if a job spec is supplied, wwaaiitt waits for all processes in the job. If no options or _i_ds are supplied, wwaaiitt waits for all running @@ -6661,9 +6962,9 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS If the --pp option is supplied, the process or job identifier of the job for which the exit status is returned is assigned to the - variable _v_a_r_n_a_m_e named by the option argument. The variable - will be unset initially, before any assignment. This is useful - only when the --nn option is supplied. + variable _v_a_r_n_a_m_e named by the option argument. The variable, + which cannot be readonly, will be unset initially, before any + assignment. This is useful only when the --nn option is supplied. Supplying the --ff option, when job control is enabled, forces wwaaiitt to wait for each _i_d to terminate before returning its sta- @@ -6682,38 +6983,38 @@ SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE level -- each option is mutually exclusive. The compatibility level is intended to allow users to select behavior from previous versions that is incompatible with newer versions while they migrate scripts to use - current features and behavior. It's intended to be a temporary solu- + current features and behavior. It's intended to be a temporary solu- tion. This section does not mention behavior that is standard for a particu- - lar version (e.g., setting ccoommppaatt3322 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, ccoommppaatt3322, 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 bbaasshh, but that behavior may have been - present in earlier versions. For instance, the change to use locale- - based comparisons with the [[[[ command came in bash-4.1, and earlier + lar version (e.g., setting ccoommppaatt3322 means that quoting the right hand + side of the regexp matching operator quotes special regexp characters + in the word, which is default behavior in bash-3.2 and subsequent ver- + sions). + + If a user enables, say, ccoommppaatt3322, 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 bbaasshh, but that behavior may have been + present in earlier versions. For instance, the change to use locale- + based comparisons with the [[[[ command came in bash-4.1, and earlier versions used ASCII-based comparisons, so enabling ccoommppaatt3322 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: BBAASSHH__CCOOMMPPAATT. The value as- + Bash-4.3 introduced a new shell variable: BBAASSHH__CCOOMMPPAATT. The value as- signed to this variable (a decimal version number like 4.2, or an inte- - ger corresponding to the ccoommppaatt_N_N option, like 42) determines the com- + ger corresponding to the ccoommppaatt_N_N option, like 42) determines the com- patibility level. - Starting with bash-4.4, bbaasshh has begun deprecating older compatibility - levels. Eventually, the options will be removed in favor of BBAASSHH__CCOOMM-- - PPAATT. + Starting with bash-4.4, bbaasshh began deprecating older compatibility lev- + els. Eventually, the options will be removed in favor of BBAASSHH__CCOOMMPPAATT. - Bash-5.0 was the final version for which there will be an individual - shopt option for the previous version. Users should control the compat- - ibility level with BBAASSHH__CCOOMMPPAATT. + Bash-5.0 was the final version for which there was an individual shopt + option for the previous version. BBAASSHH__CCOOMMPPAATT is the only mechanism to + control the compatibility level in versions newer than bash-5.0. The following table describes the behavior changes controlled by each compatibility level setting. The ccoommppaatt_N_N tag is used as shorthand for @@ -6724,77 +7025,78 @@ SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE quired for bash-5.1 and later versions. ccoommppaatt3311 - +o quoting the rhs of the [[[[ command's regexp matching oper- - ator (=~) has no special effect + +o Quoting the rhs of the [[[[ command's regexp matching oper- + ator (=~) has no special effect. ccoommppaatt3322 - +o the << and >> operators to the [[[[ command do not consider + +o The << and >> operators to the [[[[ command do not consider the current locale when comparing strings; they use ASCII ordering. ccoommppaatt4400 - +o the << and >> operators to the [[[[ command do not consider + +o The << and >> operators to the [[[[ command do not consider the current locale when comparing strings; they use ASCII ordering. BBaasshh versions prior to bash-4.1 use ASCII col- lation and _s_t_r_c_m_p(3); bash-4.1 and later use the current locale's collation sequence and _s_t_r_c_o_l_l(3). ccoommppaatt4411 - +o in _p_o_s_i_x mode, ttiimmee may be followed by options and still + +o In _p_o_s_i_x mode, ttiimmee may be followed by options and still be recognized as a reserved word (this is POSIX interpre- - tation 267) - +o in _p_o_s_i_x mode, the parser requires that an even number of + tation 267). + +o In _p_o_s_i_x mode, the parser requires that an even number of single quotes occur in the _w_o_r_d 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) + quoted (this is POSIX interpretation 221). ccoommppaatt4422 - +o the replacement string in double-quoted pattern substitu- + +o The replacement string in double-quoted pattern substitu- tion does not undergo quote removal, as it does in ver- - sions after bash-4.2 - +o in posix mode, single quotes are considered special when + sions after bash-4.2. + +o In posix mode, single quotes are considered special when expanding the _w_o_r_d 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 + special within double-quoted word expansions. ccoommppaatt4433 - +o word expansion errors are considered non-fatal errors + +o 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) - +o when executing a shell function, the loop state + that cause the shell to exit). + +o When executing a shell function, the loop state (while/until/etc.) is not reset, so bbrreeaakk or ccoonnttiinnuuee in that function will break or continue loops in the calling context. Bash-4.4 and later reset the loop state to pre- - vent this + vent this. ccoommppaatt4444 - +o the shell sets up the values used by BBAASSHH__AARRGGVV and - BBAASSHH__AARRGGCC so they can expand to the shell's positional - parameters even if extended debugging mode is not enabled - +o a subshell inherits loops from its parent context, so + +o The shell sets up the values used by BBAASSHH__AARRGGVV and + BBAASSHH__AARRGGCC so they can expand to the shell's positional + parameters even if extended debugging mode is not en- + abled. + +o A subshell inherits loops from its parent context, so bbrreeaakk or ccoonnttiinnuuee will cause the subshell to exit. Bash-5.0 and later reset the loop state to prevent the exit - +o variable assignments preceding builtins like eexxppoorrtt and + +o Variable assignments preceding builtins like eexxppoorrtt and rreeaaddoonnllyy that set attributes continue to affect variables with the same name in the calling environment even if the - shell is not in posix mode + shell is not in posix mode. ccoommppaatt5500 +o Bash-5.1 changed the way $$RRAANNDDOOMM is generated to intro- - duce slightly more randomness. If the shell compatibility - level is set to 50 or lower, it reverts to the method + duce slightly more randomness. If the shell compatibil- + ity 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 RRAANNDDOOMM will - produce the same sequence as in bash-5.0 + produce the same sequence as in bash-5.0. +o 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 --ll op- + input. Bash-5.1 suppresses that message when the --ll op- tion is supplied. ccoommppaatt5511 @@ -6802,88 +7104,92 @@ SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE scripts @@ and ** differently depending on whether the ar- ray is indexed or associative, and differently than in previous versions. - +o arithmetic commands ( ((((...)))) ) and the expressions in an - arithmetic for statement can be expanded more than once - +o expressions used as arguments to arithmetic operators in - the [[[[ conditional command can be expanded more than once - +o the expressions in substring parameter brace expansion - can be expanded more than once - +o the expressions in the $$((((...)))) word expansion can be ex- - panded more than once - +o arithmetic expressions used as indexed array subscripts - can be expanded more than once - +o tteesstt --vv, when given an argument of AA[[@@]], where AA is an + +o Arithmetic commands ( ((((...)))) ) and the expressions in an + arithmetic for statement can be expanded more than once. + +o Expressions used as arguments to arithmetic operators in + the [[[[ conditional command can be expanded more than + once. + +o The expressions in substring parameter brace expansion + can be expanded more than once. + +o The expressions in the $$((((...)))) word expansion can be ex- + panded more than once. + +o Arithmetic expressions used as indexed array subscripts + can be expanded more than once. + +o tteesstt --vv, when given an argument of AA[[@@]], where AA is an existing associative array, will return true if the array - has any set elements. Bash-5.2 will look for and report + has any set elements. Bash-5.2 will look for and report on a key named @@. - +o the ${_p_a_r_a_m_e_t_e_r[[::]]==_v_a_l_u_e} word expansion will return - _v_a_l_u_e, before any variable-specific transformations have + +o The ${_p_a_r_a_m_e_t_e_r[[::]]==_v_a_l_u_e} word expansion will return + _v_a_l_u_e, before any variable-specific transformations have been performed (e.g., converting to lowercase). Bash-5.2 will return the final value assigned to the variable. - +o Parsing command substitutions will behave as if extended + +o Parsing command substitutions will behave as if extended globbing (see the description of the sshhoopptt builtin above) - is enabled, so that parsing a command substitution con- + is enabled, so that parsing a command substitution con- taining an extglob pattern (say, as part of a shell func- - tion) will not fail. This assumes the intent is to en- - able extglob before the command is executed and word ex- - pansions are performed. It will fail at word expansion - time if extglob hasn't been enabled by the time the com- + tion) will not fail. This assumes the intent is to en- + able extglob before the command is executed and word ex- + pansions are performed. It will fail at word expansion + time if extglob hasn't been enabled by the time the com- mand is executed. ccoommppaatt5522 - +o The tteesstt builtin uses its historical algorithm to parse - parenthesized subexpressions when given five or more ar- + +o The tteesstt builtin uses its historical algorithm to parse + parenthesized subexpressions when given five or more ar- guments. - +o If the --pp or --PP option is supplied to the bbiinndd builtin, + +o If the --pp or --PP option is supplied to the bbiinndd builtin, bbiinndd treats any arguments remaining after option process- - ing as bindable command names, and displays any key se- - quences bound to those commands, instead of treating the + ing as bindable command names, and displays any key se- + quences bound to those commands, instead of treating the arguments as key sequences to bind. RREESSTTRRIICCTTEEDD SSHHEELLLL If bbaasshh is started with the name rrbbaasshh, or the --rr 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 bbaasshh with the exception that the following are + invocation, the shell becomes _r_e_s_t_r_i_c_t_e_d. A restricted shell is used + to set up an environment more controlled than the standard shell. It + behaves identically to bbaasshh with the exception that the following are disallowed or not performed: - +o changing directories with ccdd + +o Changing directories with ccdd. - +o setting or unsetting the values of SSHHEELLLL, PPAATTHH, HHIISSTTFFIILLEE, EENNVV, - or BBAASSHH__EENNVV + +o Setting or unsetting the values of SSHHEELLLL, PPAATTHH, HHIISSTTFFIILLEE, EENNVV, + or BBAASSHH__EENNVV. - +o specifying command names containing // + +o Specifying command names containing //. - +o specifying a filename containing a // as an argument to the .. - builtin command + +o Specifying a filename containing a // as an argument to the .. + builtin command. - +o specifying a filename containing a slash as an argument to the - hhiissttoorryy builtin command + +o Using the --pp option to the .. builtin command to specify a + search path. - +o specifying a filename containing a slash as an argument to the - --pp option to the hhaasshh builtin command + +o Specifying a filename containing a slash as an argument to the + hhiissttoorryy builtin command. - +o importing function definitions from the shell environment at - startup + +o Specifying a filename containing a slash as an argument to the + --pp option to the hhaasshh builtin command. - +o parsing the value of SSHHEELLLLOOPPTTSS from the shell environment at - startup + +o Importing function definitions from the shell environment at + startup. - +o redirecting output using the >, >|, <>, >&, &>, and >> redirec- - tion operators + +o Parsing the value of SSHHEELLLLOOPPTTSS from the shell environment at + startup. - +o using the eexxeecc builtin command to replace the shell with another - command + +o Redirecting output using the >, >|, <>, >&, &>, and >> redirec- + tion operators. - +o adding or deleting builtin commands with the --ff and --dd options - to the eennaabbllee builtin command + +o Using the eexxeecc builtin command to replace the shell with another + command. + + +o Adding or deleting builtin commands with the --ff and --dd options + to the eennaabbllee builtin command. - +o using the eennaabbllee builtin command to enable disabled shell - builtins + +o Using the eennaabbllee builtin command to enable disabled shell + builtins. - +o specifying the --pp option to the ccoommmmaanndd builtin command + +o Specifying the --pp option to the ccoommmmaanndd builtin command. - +o turning off restricted mode with sseett ++rr or sshhoopptt --uu rree-- + +o Turning off restricted mode with sseett ++rr or sshhoopptt --uu rree-- ssttrriicctteedd__sshheellll. These restrictions are enforced after any startup files are read. @@ -6976,6 +7282,4 @@ BBUUGGSS Array variables may not (yet) be exported. - There may be only one active coprocess at a time. - -GNU Bash 5.3 2024 September 5 _B_A_S_H(1) +GNU Bash 5.3 2024 September 29 _B_A_S_H(1) diff --git a/doc/bash.1 b/doc/bash.1 index f7eedcbb3..95f21cf08 100644 --- a/doc/bash.1 +++ b/doc/bash.1 @@ -1,18 +1,18 @@ -.\" +\" .\" MAN PAGE COMMENTS to .\" .\" Chet Ramey .\" Case Western Reserve University .\" chet.ramey@case.edu .\" -.\" Last Change: Thu Sep 5 15:41:56 EDT 2024 +.\" Last Change: Sun Sep 29 22:28:23 EDT 2024 .\" .\" bash_builtins, strip all but Built-Ins section .\" avoid a warning about an undefined register .\" .if !rzY .nr zY 0 .if \n(zZ=1 .ig zZ .if \n(zY=1 .ig zY -.TH BASH 1 "2024 September 5" "GNU Bash 5.3" +.TH BASH 1 "2024 September 29" "GNU Bash 5.3" .\" .ie \n(.g \{\ .ds ' \(aq @@ -66,7 +66,8 @@ bash \- GNU Bourne-Again SHell .SH DESCRIPTION .B Bash is an \fBsh\fP-compatible command language interpreter that -executes commands read from the standard input or from a file. +executes commands read from the standard input, from a string, +or from a file. .B Bash also incorporates useful features from the \fIKorn\fP and \fIC\fP shells (\fBksh\fP and \fBcsh\fP). @@ -85,7 +86,6 @@ can be used as options when the shell is invoked. In addition, \fBbash\fP interprets the following options when it is invoked: .PP -.PD 0 .TP 10 .B \-c If the @@ -129,14 +129,14 @@ below). If the .B \-s option is present, or if no arguments remain after option -processing, then commands are read from the standard input. +processing, the shell reads commands from the standard input. This option allows the positional parameters to be set when invoking an interactive shell or when reading input through a pipe. .TP .B \-D -A list of all double-quoted strings preceded by \fB$\fP -is printed on the standard output. +Print a list of all double-quoted strings preceded by \fB$\fP +on the standard output. These are the strings that are subject to language translation when the current locale is not \fBC\fP or \fBPOSIX\fP. @@ -146,12 +146,13 @@ This implies the \fB\-n\fP option; no commands will be executed. \fIshopt_option\fP is one of the shell options accepted by the \fBshopt\fP builtin (see .SM -.B SHELL BUILTIN COMMANDS +.B "SHELL BUILTIN COMMANDS" below). If \fIshopt_option\fP is present, \fB\-O\fP sets the value of that option; \fB+O\fP unsets it. -If \fIshopt_option\fP is not supplied, the names and values of the shell -options accepted by \fBshopt\fP are printed on the standard output. +If \fIshopt_option\fP is not supplied, \fBbash\fP prints +the names and values of the shell +options accepted by \fBshopt\fP on the standard output. If the invocation option is \fB+O\fP, the output is displayed in a format that may be reused as input. .TP @@ -166,14 +167,12 @@ and arguments passed to that script. An argument of .B \- is equivalent to \fB\-\-\fP. -.PD .PP .B Bash also interprets a number of multi-character options. These options must appear on the command line before the single-character options to be recognized. .PP -.PD 0 .TP .B \-\-debugger Arrange for the debugger profile to be executed before the shell @@ -194,8 +193,8 @@ Equivalent to \fB\-D\fP. .B \-\-help Display a usage message on standard output and exit successfully. .TP -\fB\-\-init\-file\fP \fIfile\fP .PD 0 +\fB\-\-init\-file\fP \fIfile\fP .TP \fB\-\-rcfile\fP \fIfile\fP .PD @@ -260,7 +259,6 @@ Equivalent to \fB\-v\fP. Show version information for this instance of .B bash on the standard output and exit successfully. -.PD .SH ARGUMENTS If arguments remain after option processing, and neither the .B \-c @@ -279,8 +277,8 @@ reads and executes commands from this file, then exits. \fBBash\fP's exit status is the exit status of the last command executed in the script. If no commands are executed, the exit status is 0. -An attempt is first made to open the file in the current directory, and, -if no file is found, then the shell searches the directories in +Bash first attempts to open the file in the current directory, and, +if no file is found, then searches the directories in .SM .B PATH for the script. @@ -296,22 +294,22 @@ An \fIinteractive\fP shell is one started without non-option arguments and without the .B \-c option, -whose standard input and error are +whose standard input and standard error are both connected to terminals (as determined by .IR isatty (3)), or one started with the .B \-i option. +.B Bash +sets .SM .B PS1 -is set and +and .B $\- includes .B i -if -.B bash -is interactive, -allowing a shell script or a startup file to test this state. +if the shell is interactive, +so a shell script or a startup file can test this state. .PP The following paragraphs describe how .B bash @@ -351,7 +349,7 @@ reads and executes commands from \fI\*~/.bashrc\fP, if that file exists. This may be inhibited by using the .B \-\-norc option. -The \fB\-\-rcfile\fP \fIfile\fP option will cause +The \fB\-\-rcfile\fP \fIfile\fP option causes .B bash to use \fIfile\fP instead of \fI\*~/.bashrc\fP. .PP @@ -372,10 +370,10 @@ if [ \-n \*"$BASH_ENV\*" ]; then . \*"$BASH_ENV\*"; fi .EE .RE .PP -but the value of the +but does not use the value of the .SM .B PATH -variable is not used to search for the filename. +variable to search for the filename. .PP If .B bash @@ -429,14 +427,14 @@ command line option, it follows the POSIX standard for startup files. In this mode, interactive shells expand the .SM .B ENV -variable and commands are read and executed from the file +variable and read and execute commands from the file whose name is the expanded value. No other startup files are read. .PP .B Bash attempts to determine when it is being run with its standard input connected to a network connection, as when executed by -the historical remote shell daemon, usually \fIrshd\fP, +the historical and rarely-seen remote shell daemon, usually \fIrshd\fP, or the secure shell daemon \fIsshd\fP. If .B bash @@ -491,7 +489,8 @@ referred to as an .BR identifier . .TP .B metacharacter -A character that, when unquoted, separates words. One of the following: +A character that, when unquoted, separates words. +One of the following: .br .RS .PP @@ -500,8 +499,8 @@ A character that, when unquoted, separates words. One of the following: .RE .TP .B control operator -A \fItoken\fP that performs a control function. It is one of the following -symbols: +A \fItoken\fP that performs a control function. +It is one of the following symbols: .RS .PP .if t \fB|| & && ; ;; ;& ;;& ( ) | |& \fP @@ -513,7 +512,7 @@ symbols: The following words are recognized as reserved when unquoted and either the first word of a command (see .SM -.B SHELL GRAMMAR +.B "SHELL GRAMMAR" below), the third word of a .B case or @@ -534,7 +533,8 @@ This section describes the syntax of the various forms of shell commands. .SS Simple Commands A \fIsimple command\fP is a sequence of optional variable assignments followed by \fBblank\fP-separated words and redirections, and -terminated by a \fIcontrol operator\fP. The first word +terminated by a \fIcontrol operator\fP. +The first word specifies the command to be executed, and is passed as argument zero. The remaining words are passed as arguments to the invoked command. .PP @@ -561,7 +561,8 @@ This connection is performed before any redirections specified by the .SM .B REDIRECTION below). -If \fB|&\fP is used, \fIcommand1\fP's standard error, in addition to its +If \fB|&\fP is the pipeline operator, +\fIcommand1\fP's standard error, in addition to its standard output, is connected to \fIcommand2\fP's standard input through the pipe; it is shorthand for \fB2>&1 |\fP. @@ -577,31 +578,32 @@ If the reserved word .B ! precedes a pipeline, the exit status of that pipeline is the logical negation of the exit status as described above. -The shell waits for all commands in the pipeline to +If a pipeline is executed synchronously, +the shell waits for all commands in the pipeline to terminate before returning a value. .PP If the .B time -reserved word precedes a pipeline, the elapsed as well as user and -system time consumed by its execution are reported when the pipeline -terminates. +reserved word precedes a pipeline, the shell reports the +elapsed as well as user and system time consumed by its execution +when the pipeline terminates. The \fB\-p\fP option changes the output format to that specified by POSIX. When the shell is in \fIposix mode\fP, it does not recognize \fBtime\fP as a reserved word if the next token begins with a .Q \- . -The +The value of the .SM .B TIMEFORMAT -variable may be set to a format string that specifies how the timing +variable is a format string that specifies how the timing information should be displayed; see the description of .SM .B TIMEFORMAT -under -.B "Shell Variables" -below. +below under +.BR "Shell Variables" . .PP When the shell is in \fIposix mode\fP, \fBtime\fP -may be followed by a newline. In this case, the shell displays the +may be followed by a newline. +In this case, the shell displays the total user and system time consumed by the shell and its children. The .SM @@ -618,8 +620,8 @@ See for a description of subshells and a subshell environment. If the \fBlastpipe\fP option is enabled using the \fBshopt\fP builtin (see the description of \fBshopt\fP below), -the last element of a pipeline may be run by the shell process -when job control is not active. +and job control is not active, +the last element of a pipeline may be run by the shell process. .SS Lists A \fIlist\fP is a sequence of one or more pipelines separated by one of the operators @@ -700,24 +702,24 @@ newline in place of a semicolon. below for a description of a subshell environment). Variable assignments and builtin commands that affect the shell's environment do not remain in effect -after the command completes. The return status is the exit status of -\fIlist\fP. +after the command completes. +The return status is the exit status of \fIlist\fP. .TP { \fIlist\fP; } -\fIlist\fP is simply executed in the current shell environment. +\fIlist\fP is executed in the current shell environment. \fIlist\fP must be terminated with a newline or semicolon. This is known as a \fIgroup command\fP. -The return status is the exit status of -\fIlist\fP. +The return status is the exit status of \fIlist\fP. +.IP Note that unlike the metacharacters \fB(\fP and \fB)\fP, \fB{\fP and \fB}\fP are \fIreserved words\fP and must occur where a reserved -word is permitted to be recognized. Since they do not cause a word -break, they must be separated from \fIlist\fP by whitespace or another -shell metacharacter. +word is permitted to be recognized. +Since they do not cause a word break, they must be separated from +\fIlist\fP by whitespace or another shell metacharacter. .TP ((\fIexpression\fP)) -The \fIexpression\fP is evaluated according to the rules described -below under +The arithmetic \fIexpression\fP is evaluated according to the rules +described below under .SM .BR "ARITHMETIC EVALUATION" . If the value of the expression is non-zero, the return status is 0; @@ -725,13 +727,13 @@ otherwise the return status is 1. The \fIexpression\fP undergoes the same expansions as if it were within double quotes, -but double quote characters in \fIexpression\fP are not treated specially -and are removed. +but double quote characters in \fIexpression\fP are not treated +specially and are removed. .TP \fB[[\fP \fIexpression\fP \fB]]\fP .PD -Return a status of 0 or 1 depending on the evaluation of -the conditional expression \fIexpression\fP. +Evaluate the conditional expression \fIexpression\fP +and return a status of zero (true) or non-zero (false). Expressions are composed of the primaries described below under .SM .BR "CONDITIONAL EXPRESSIONS" . @@ -757,8 +759,9 @@ shell option is enabled, the match is performed without regard to the case of alphabetic characters. The return value is 0 if the string matches (\fB==\fP) or does not match (\fB!=\fP) the pattern, and 1 otherwise. -Any part of the pattern may be quoted to force the quoted portion -to be matched as a string. +If any part of the pattern is quoted, the quoted portion is matched +as a string: every character in the quoted portion matches itself, +instead of having any special pattern matching meaning. .IP An additional binary operator, \fB=\*~\fP, is available, with the same precedence as \fB==\fP and \fB!=\fP. @@ -775,9 +778,9 @@ If the .B nocasematch shell option is enabled, the match is performed without regard to the case of alphabetic characters. -If any part of the pattern is quoted, the quoted portion is matched literally. -This means every character in the quoted portion matches itself, -instead of having any special pattern matching meaning. +.IP +If any part of the pattern is quoted, the quoted portion is matched literally, +as above. If the pattern is stored in a shell variable, quoting the variable expansion forces the entire pattern to be matched literally. Treat bracket expressions in regular expressions carefully, @@ -787,6 +790,7 @@ between brackets. The pattern will match if it matches any part of the string. Anchor the pattern using the \fB\*^\fP and \fB$\fP regular expression operators to force it to match the entire string. +.IP The array variable .SM .B BASH_REMATCH @@ -800,7 +804,8 @@ Substrings matched by parenthesized subexpressions within the regular expression are saved in the remaining .SM .B BASH_REMATCH -indices. The element of +indices. +The element of .SM .B BASH_REMATCH with index \fIn\fP is the portion of the @@ -848,9 +853,9 @@ the entire conditional expression. .RE .TP \fBfor\fP \fIname\fP [ [ \fBin\fP [ \fIword .\|.\|.\&\fP ] ] ; ] \fBdo\fP \fIlist\fP ; \fBdone\fP -The list of words following \fBin\fP is expanded, generating a list +First, expand The list of words following \fBin\fP, generating a list of items. -The variable \fIname\fP is set to each element of this list +Then, the variable \fIname\fP is set to each element of this list in turn, and \fIlist\fP is executed each time. If the \fBin\fP \fIword\fP is omitted, the \fBfor\fP command executes \fIlist\fP once for each positional parameter that is set (see @@ -862,23 +867,32 @@ If the expansion of the items following \fBin\fP results in an empty list, no commands are executed, and the return status is 0. .TP \fBfor\fP (( \fIexpr1\fP ; \fIexpr2\fP ; \fIexpr3\fP )) ; \fBdo\fP \fIlist\fP ; \fBdone\fP -First, the arithmetic expression \fIexpr1\fP is evaluated according +First, evaluate the arithmetic expression \fIexpr1\fP according to the rules described below under .SM .BR "ARITHMETIC EVALUATION" . -The arithmetic expression \fIexpr2\fP is then evaluated repeatedly +Then, repeatedly evaluate the arithmetic expression \fIexpr2\fP until it evaluates to zero. -Each time \fIexpr2\fP evaluates to a non-zero value, \fIlist\fP is -executed and the arithmetic expression \fIexpr3\fP is evaluated. +Each time \fIexpr2\fP evaluates to a non-zero value, +execute \fIlist\fP +and evaluate the arithmetic expression \fIexpr3\fP. If any expression is omitted, it behaves as if it evaluates to 1. The return value is the exit status of the last command in \fIlist\fP -that is executed, or false if any of the expressions is invalid. +that is executed, or non-zero if any of the expressions is invalid. +.IP +Use the \fBbreak\fP and \fPcontinue\fP builtins +(see +.SM +.B "SHELL BUILTIN COMMANDS" +below) +to control loop execution. .TP \fBselect\fP \fIname\fP [ \fBin\fP \fIword\fP ] ; \fBdo\fP \fIlist\fP ; \fBdone\fP -The list of words following \fBin\fP is expanded, generating a list -of items, and the set of expanded words is printed on the standard -error, each preceded by a number. If the \fBin\fP -\fIword\fP is omitted, the positional parameters are printed (see +First, expand the list of words following \fBin\fP, +generating a list of items, and print the set of expanded words +the standard error, each preceded by a number. +If the \fBin\fP +\fIword\fP is omitted, print the positional parameters (see .SM .B PARAMETERS below). @@ -888,14 +902,15 @@ then displays the .B PS3 prompt and reads a line from the standard input. If the line consists of a number corresponding to one of -the displayed words, then the value of +the displayed words, then \fBselect\fP sets the value of .I name -is set to that word. -If the line is empty, the words and prompt are displayed again. -If EOF is read, the \fBselect\fP command completes and returns 1. -Any other value read causes +to that word. +If the line is empty, \fBselect\fP displays the words and prompt again. +If EOF is read, \fBselect\fP completes and returns 1. +Any other value sets .I name -to be set to null. The line read is saved in the variable +to null. +The line read is saved in the variable .SM .BR REPLY . The @@ -913,10 +928,14 @@ or zero if no commands were executed. .\|.\|.\& ) \fIlist\fP ;; ] .\|.\|.\& \ \fBesac\fP A \fBcase\fP command first expands \fIword\fP, and tries to match -it against each \fIpattern\fP in turn, using the matching rules +it against each \fIpattern\fP in turn, +proceeding from first to last, +using the matching rules described under .B Pattern Matching below. +A pattern list is a set of one or more patterns separated by \|, +and the ) operator terminates the pattern list. The \fIword\fP is expanded using tilde expansion, parameter and variable expansion, arithmetic expansion, command substitution, process substitution and quote removal. @@ -927,18 +946,21 @@ If the .B nocasematch shell option is enabled, the match is performed without regard to the case of alphabetic characters. -When a match is found, the corresponding \fIlist\fP is executed. -If the \fB;;\fP operator is used, no subsequent matches are attempted after -the first pattern match. +A \fIclause\fP is a pattern list and an associated \fIlist\fP. +.IP +When a match is found, \fBcase\fP executes the corresponding \fIlist\fP. +If the \fB;;\fP operator terminates the case clause, the \fBcase\fP +command completes after the first match. Using \fB;&\fP in place of \fB;;\fP causes execution to continue with -the \fIlist\fP associated with the next set of patterns. +the \fIlist\fP associated with the next pattern list. Using \fB;;&\fP in place of \fB;;\fP causes the shell to test the next pattern list in the statement, if any, and execute any associated \fIlist\fP -on a successful match, +if the match succeeds. continuing the case statement execution as if the pattern list had not matched. -The exit status is zero if no -pattern matches. Otherwise, it is the exit status of the -last command executed in \fIlist\fP. +The exit status is zero if no pattern matches. +.IP +Otherwise, it is the exit status of the +last command executed in the last \fIlist\fP executed. .TP \fBif\fP \fIlist\fP; \fBthen\fP \fIlist\fP; \ [ \fBelif\fP \fIlist\fP; \fBthen\fP \fIlist\fP; ] .\|.\|.\& \ @@ -946,12 +968,14 @@ last command executed in \fIlist\fP. The .B if .I list -is executed. If its exit status is zero, the -\fBthen\fP \fIlist\fP is executed. Otherwise, each \fBelif\fP -\fIlist\fP is executed in turn, and if its exit status is zero, -the corresponding \fBthen\fP \fIlist\fP is executed and the -command completes. Otherwise, the \fBelse\fP \fIlist\fP is -executed, if present. The exit status is the exit status of the +is executed. +If its exit status is zero, the +\fBthen\fP \fIlist\fP is executed. +Otherwise, each \fBelif\fP \fIlist\fP is executed in turn, +and if its exit status is zero, the corresponding \fBthen\fP \fIlist\fP +is executed and the command completes. +Otherwise, the \fBelse\fP \fIlist\fP is executed, if present. +The exit status is the exit status of the last command executed, or zero if no condition tested true. .TP \fBwhile\fP \fIlist-1\fP; \fBdo\fP \fIlist-2\fP; \fBdone\fP @@ -961,7 +985,8 @@ last command executed, or zero if no condition tested true. .PD The \fBwhile\fP command continuously executes the list \fIlist-2\fP as long as the last command in the list \fIlist-1\fP returns -an exit status of zero. The \fBuntil\fP command is identical +an exit status of zero. +The \fBuntil\fP command is identical to the \fBwhile\fP command, except that the test is negated: .I list-2 is executed as long as the last command in @@ -996,7 +1021,7 @@ The recommended form to use for a coprocess is \fBcoproc\fP \fINAME\fP { \fIcommand\fP [\fIredirections\fP]; } .RE .PP -This form is recommended because simple commands result in the coprocess +This form is preferred because simple commands result in the coprocess always being named \fBCOPROC\fP, and it is simpler to use and more complete than the other compound commands. .PP @@ -1032,7 +1057,7 @@ the file descriptors are not available in subshells. The process ID of the shell spawned to execute the coprocess is available as the value of the variable \fINAME\fP_PID. The \fBwait\fP -builtin command may be used to wait for the coprocess to terminate. +builtin may be used to wait for the coprocess to terminate. .PP Since the coprocess is created as an asynchronous command, the \fBcoproc\fP command always returns success. @@ -1060,15 +1085,16 @@ parentheses are not supplied, the braces are recommended. \fIcompound\-command\fP is executed whenever \fIfname\fP is specified as the name of a simple command. When in \fIposix mode\fP, \fIfname\fP must be a valid shell \fIname\fP -and may not be the name of one of the -POSIX \fIspecial builtins\fP. +and may not be the name of one of the POSIX \fIspecial builtins\fP. In default mode, a function name can be any unquoted shell word that does not contain \fB$\fP. +.PP Any redirections (see .SM .B REDIRECTION below) specified when a function is defined are performed when the function is executed. +.PP The exit status of a function definition is zero unless a syntax error occurs or a readonly function with the same name already exists. When executed, the exit status of a function is the exit status of the @@ -1086,15 +1112,21 @@ builtin is enabled (see .B "SHELL BUILTIN COMMANDS" below), a word beginning with .B # -causes that word and all remaining characters on that line to -be ignored. An interactive shell without the +introduces a comment. +A word begins at the beginning of a line, after unquoted whitespace, or +after an operator. +The comment causes that word and all remaining characters on that line to +be ignored. +An interactive shell without the .B interactive_comments -option enabled does not allow comments. The +option enabled does not allow comments. +The .B interactive_comments -option is on by default in interactive shells. +option is enabled by default in interactive shells. .SH QUOTING \fIQuoting\fP is used to remove the special meaning of certain -characters or words to the shell. Quoting can be used to +characters or words to the shell. +Quoting can be used to disable special treatment for special characters, to prevent reserved words from being recognized as such, and to prevent parameter expansion. @@ -1113,20 +1145,23 @@ below), the \fIhistory expansion\fP character, usually \fB!\fP, must be quoted to prevent history expansion. .PP -There are three quoting mechanisms: the +There are four quoting mechanisms: the .IR "escape character" , -single quotes, and double quotes. +single quotes, double quotes, +and dollar-single quotes. .PP A non-quoted backslash (\fB\e\fP) is the .IR "escape character" . It preserves the literal value of the next character that follows, -with the exception of . If a \fB\e\fP pair -appears, and the backslash is not itself quoted, the \fB\e\fP -is treated as a line continuation (that is, it is removed from the -input stream and effectively ignored). +removing any special meaning it has, +with the exception of . +If a \fB\e\fP pair appears, and the backslash is not itself quoted, +the \fB\e\fP is treated as a line continuation (that is, it is +removed from the input stream and effectively ignored). .PP Enclosing characters in single quotes preserves the literal value -of each character within the quotes. A single quote may not occur +of each character within the quotes. +A single quote may not occur between single quotes, even when preceded by a backslash. .PP Enclosing characters in double quotes preserves the literal value @@ -1136,21 +1171,25 @@ of all characters within the quotes, with the exception of .BR \e , and, when history expansion is enabled, .BR ! . -When the shell is in \fIposix mode\fP, the \fB!\fP has no special meaning +When the shell is in \fIposix mode\fP, +the \fB!\fP has no special meaning within double quotes, even when history expansion is enabled. The characters .B $ and .B \` -retain their special meaning within double quotes. The backslash -retains its special meaning only when followed by one of the following -characters: +retain their special meaning within double quotes. +The backslash retains its special meaning only when followed by one of +the following characters: .BR $ , .BR \` , \^\fB\*"\fP\^, .BR \e , or .BR . +Backslashes preceding characters without a +special meaning are left unmodified. +.PP A double quote may be quoted within double quotes by preceding it with a backslash. If enabled, history expansion will be performed unless an @@ -1239,7 +1278,7 @@ a control-\fIx\fP character .LP The expanded result is single-quoted, as if the dollar sign had not been present. -.PP +.SS "Translating Strings" A double-quoted string preceded by a dollar sign (\fB$\fP\*"\fIstring\fP\*") will cause the string to be translated according to the current locale. The \fIgettext\fP infrastructure performs the lookup and @@ -1247,8 +1286,8 @@ translation, using the \fBLC_MESSAGES\fP, \fBTEXTDOMAINDIR\fP, and \fBTEXTDOMAIN\fP shell variables. If the current locale is \fBC\fP or \fBPOSIX\fP, if there are no translations available, -or if the string is not translated, -the dollar sign is ignored. +or if the string is not translated, the dollar sign is ignored, +and the string is treated as double-quoted as described above. This is a form of double quoting, so the string remains double-quoted by default, whether or not it is translated and replaced. If the \fBnoexpand_translation\fP option is enabled @@ -1279,14 +1318,15 @@ builtin command (see below in .SM .BR "SHELL BUILTIN COMMANDS" ). +The \fBexport\fP and \fBreadonly\fP builtins assign specific attributes. .PP -A parameter is set if it has been assigned a value. The null string is -a valid value. Once a variable is set, it may be unset only by using -the +A parameter is set if it has been assigned a value. +The null string is a valid value. +Once a variable is set, it may be unset only by using the .B unset builtin command (see .SM -.B SHELL BUILTIN COMMANDS +.B "SHELL BUILTIN COMMANDS" below). .PP A @@ -1299,14 +1339,16 @@ may be assigned to by a statement of the form .PP If .I value -is not given, the variable is assigned the null string. All +is not given, the variable is assigned the null string. +All .I values undergo tilde expansion, parameter and variable expansion, command substitution, arithmetic expansion, and quote removal (see .SM .B EXPANSION -below). If the variable has its +below). +If the variable has its .B integer attribute set, then .I value @@ -1330,13 +1372,16 @@ one or more instances of the \fBcommand\fP builtin and retain these assignment statement properties. .PP In the context where an assignment statement is assigning a value -to a shell variable or array index, the += operator can be used to +to a shell variable or array index, the += operator will append to or add to the variable's previous value. -This includes arguments to builtin commands such as \fBdeclare\fP that -accept assignment statements (\fIdeclaration\fP commands). -When += is applied to a variable for which the \fBinteger\fP attribute has been -set, \fIvalue\fP is evaluated as an arithmetic expression and added to the -variable's current value, which is also evaluated. +This includes arguments to \fIdeclaration\fP commands such as +\fBdeclare\fP that accept assignment statements. +When += is applied to a variable for which the \fBinteger\fP attribute +has been set, +the variable's current value and \fIvalue\fP are each evaluated as +arithmetic expressions, +and the sum of the results is assigned as the variable's value. +The current value is usually an integer constant, but may be an expression. When += is applied to an array variable using compound assignment (see .B Arrays below), the @@ -1368,8 +1413,8 @@ declare \-n ref=$1 .EE .RE .PP -inside the function creates a nameref variable \fBref\fP whose value is -the variable name passed as the first argument. +inside the function creates a local nameref variable \fBref\fP whose value +is the variable name passed as the first argument. References and assignments to \fBref\fP, and changes to its attributes, are treated as references, assignments, and attribute modifications to the variable whose name was passed as \fB$1\fP. @@ -1387,12 +1432,15 @@ as an argument, the variable referenced by the nameref variable will be unset. A .I positional parameter is a parameter denoted by one or more -digits, other than the single digit 0. Positional parameters are +digits, other than the single digit 0. +Positional parameters are assigned from the shell's arguments when it is invoked, and may be reassigned using the .B set -builtin command. Positional parameters may not be assigned to -with assignment statements. The positional parameters are +builtin command. +Positional parameters may not be assigned to +with assignment statements. +The positional parameters are temporarily replaced when a shell function is executed (see .SM .B FUNCTIONS @@ -1403,22 +1451,28 @@ digit is expanded, it must be enclosed in braces (see .SM .B EXPANSION below). +Without braces, a digit following $ can only refer to +one of the first nine positional parameters (\fB$1\-$9\fP) or the +special parameter \fB$0\fP (see the next section). .SS Special Parameters -The shell treats several parameters specially. These parameters may -only be referenced; assignment to them is not allowed. +The shell treats several parameters specially. +These parameters may only be referenced; assignment to them is +not allowed. +Special parameters are denoted by one of the following characters. .PD 0 .TP .B * -Expands to the positional parameters, starting from one. +(\fB$*\fP) Expands to the positional parameters, starting from one. When the expansion is not within double quotes, each positional parameter expands to a separate word. -In contexts where these expansions are performed, those words +In contexts where word expansions are performed, those words are subject to further word splitting and pathname expansion. -When the expansion occurs within double quotes, it expands to a single word -with the value of each parameter separated by the first character of the +When the expansion occurs within double quotes, it expands to a +single word with the value of each parameter separated by the first +character of the .SM .B IFS -special variable. +variable. That is, .B \*"$*\*" is equivalent to @@ -1428,7 +1482,8 @@ where is the first character of the value of the .SM .B IFS -variable. If +variable. +If .SM .B IFS is unset, the parameters are separated by spaces. @@ -1438,23 +1493,26 @@ If is null, the parameters are joined without intervening separators. .TP .B @ -Expands to the positional parameters, starting from one. +(\fB$@\fP) Expands to the positional parameters, starting from one. In contexts where word splitting is performed, this expands each positional parameter to a separate word; if not within double quotes, these words are subject to word splitting. In contexts where word splitting is not performed, +such as the value portion of an assignment statement, this expands to a single word with each positional parameter separated by a space. When the expansion occurs within double quotes, +and word splitting is performed, each parameter expands to a separate word. That is, .B \&\*"$@\*" is equivalent to .B \&\*"\&$1\&\*"\ \*"$2\*"\ .\|.\|. If the double-quoted expansion occurs within a word, the expansion of -the first parameter is joined with the beginning part of the original -word, and the expansion of the last parameter is joined with the last -part of the original word. +the first parameter is joined with the expansion of the +beginning part of the original word, +and the expansion of the last parameter is joined with the +expansion of the last part of the original word. When there are no positional parameters, .B \&\*"$@\*" and @@ -1462,13 +1520,13 @@ and expand to nothing (i.e., they are removed). .TP .B # -Expands to the number of positional parameters in decimal. +(\fB$#\fP) Expands to the number of positional parameters in decimal. .TP .B ? -Expands to the exit status of the most recently executed command. +(\fB$?\fP) Expands to the exit status of the most recently executed command. .TP .B \- -Expands to the current option flags as specified upon invocation, +(\fB$\-\fP) Expands to the current option flags as specified upon invocation, by the .B set builtin command, or those set by the shell itself @@ -1477,12 +1535,12 @@ builtin command, or those set by the shell itself option). .TP .B $ -Expands to the process ID of the shell. In a subshell, it -expands to the process ID of the current shell, not the -subshell. +(\fB$$\fP) Expands to the process ID of the shell. +In a subshell, it expands to the process ID of the parent shell, +not the subshell. .TP .B ! -Expands to the process ID of the job most recently placed into the +(\fB$!\fP)Expands to the process ID of the job most recently placed into the background, whether executed as an asynchronous command or using the \fBbg\fP builtin (see .SM @@ -1490,37 +1548,37 @@ the \fBbg\fP builtin (see below). .TP .B 0 -Expands to the name of the shell or shell script. This is set at -shell initialization. If -.B bash -is invoked with a file of commands, +(\fB$0\fP) Expands to the name of the shell or shell script. +This is set at shell initialization. +If \fBbash\fP is invoked with a file of commands, .B $0 -is set to the name of that file. If -.B bash -is started with the +is set to the name of that file. +If \fBbash\fP is started with the .B \-c option, then .B $0 is set to the first argument after the string to be -executed, if one is present. Otherwise, it is set -to the filename used to invoke +executed, if one is present. +Otherwise, it is set to the filename used to invoke .BR bash , as given by argument zero. .PD .SS Shell Variables -The following variables are set by the shell: +The shell sets following variables: .PP .PD 0 .TP .B _ -At shell startup, set to the pathname used to invoke the +(\fB$_\fP, an underscore) +This has a number of meanings depending on context. +At shell startup, \fB_\fP is set to the pathname used to invoke the shell or shell script being executed as passed in the environment or argument list. -Subsequently, expands to the last argument to the previous simple +Subsequently, it expands to the last argument to the previous simple command executed in the foreground, after expansion. -Also set to the full pathname used to invoke each command executed +It is also set to the full pathname used to invoke each command executed and placed in the environment exported to that command. -When checking mail, this parameter holds the name of the mail file +When checking mail, \fB$_\fP expands to the name of the mail file currently being checked. .TP .B BASH @@ -1536,7 +1594,8 @@ option to the builtin command (see .SM .B "SHELL BUILTIN COMMANDS" -below). The options appearing in +below). +The options appearing in .SM .B BASHOPTS are those reported as @@ -1544,7 +1603,7 @@ are those reported as by \fBshopt\fP. If this variable is in the environment when .B bash -starts up, each shell option in the list will be enabled before +starts up, the shell enables each option in the list before reading any startup files. This variable is read-only. .TP @@ -1565,7 +1624,7 @@ subsequently reset. An associative array variable whose members correspond to the internal list of aliases as maintained by the \fBalias\fP builtin. Elements added to this array appear in the alias list; however, -unsetting array elements currently does not cause aliases to be removed +unsetting array elements currently does not remove aliases from the alias list. If .B BASH_ALIASES @@ -1575,9 +1634,8 @@ subsequently reset. .B BASH_ARGC An array variable whose values are the number of parameters in each frame of the current \fBbash\fP execution call stack. -The number of -parameters to the current subroutine (shell function or script executed -with \fB.\fP or \fBsource\fP) is at the top of the stack. +The number of parameters to the current subroutine (shell function or +script executed with \fB.\fP or \fBsource\fP) is at the top of the stack. When a subroutine is executed, the number of parameters passed is pushed onto .SM .BR BASH_ARGC . @@ -1599,10 +1657,10 @@ have no effect, and it may not be unset. .TP .B BASH_ARGV An array variable containing all of the parameters in the current \fBbash\fP -execution call stack. The final parameter of the last subroutine call -is at the top of the stack; the first parameter of the initial call is -at the bottom. When a subroutine is executed, the parameters supplied -are pushed onto +execution call stack. +The final parameter of the last subroutine call is at the top of the stack; +the first parameter of the initial call is at the bottom. +When a subroutine is executed, the shell pushes the supplied parameters onto .SM .BR BASH_ARGV . The shell sets @@ -1627,9 +1685,9 @@ When referenced, this variable expands to the name of the shell or shell script (identical to .BR $0 ; see the description of special parameter 0 above). -Assignment to +Assigning a value to .B BASH_ARGV0 -causes the value assigned to also be assigned to \fB$0\fP. +assigns the same value to \fB$0\fP. If .B BASH_ARGV0 is unset, it loses its special properties, even if it is @@ -1638,8 +1696,8 @@ subsequently reset. .B BASH_CMDS An associative array variable whose members correspond to the internal hash table of commands as maintained by the \fBhash\fP builtin. -Elements added to this array appear in the hash table; however, -unsetting array elements currently does not cause command names to be removed +Adding elements to this array makes them appear in the hash table; however, +unsetting array elements currently does not remove command names from the hash table. If .B BASH_CMDS @@ -1647,8 +1705,8 @@ is unset, it loses its special properties, even if it is subsequently reset. .TP .B BASH_COMMAND -The command currently being executed or about to be executed, unless the -shell is executing a command as the result of a trap, +Expands to the command currently being executed or about to be executed, +unless the shell is executing a command as the result of a trap, in which case it is the command executing at the time of the trap. If .B BASH_COMMAND @@ -1679,18 +1737,11 @@ Assignments to have no effect, and it may not be unset. .TP .B BASH_LOADABLES_PATH -A colon-separated list of directories in which the shell looks for -dynamically loadable builtins specified by the +A colon-separated list of directories in which the .B enable command. -.TP -.B BASH_REMATCH -An array variable whose members are assigned by the \fB=\*~\fP binary -operator to the \fB[[\fP conditional command. -The element with index 0 is the portion of the string -matching the entire regular expression. -The element with index \fIn\fP is the portion of the -string matching the \fIn\fPth parenthesized subexpression. +looks for +dynamically loadable builtins. .TP .B BASH_MONOSECONDS Each time this variable is referenced, it expands to the value returned @@ -1701,6 +1752,14 @@ If is unset, it loses its special properties, even if it is subsequently reset. .TP +.B BASH_REMATCH +An array variable whose members are assigned by the \fB=\*~\fP binary +operator to the \fB[[\fP conditional command. +The element with index 0 is the portion of the string +matching the entire regular expression. +The element with index \fIn\fP is the portion of the +string matching the \fIn\fPth parenthesized subexpression. +.TP .B BASH_SOURCE An array variable whose members are the source filenames where the corresponding shell function names in the @@ -1730,7 +1789,7 @@ Set to the signal number corresponding to the trap action being executed during its execution. See the description of \fBtrap\fP under .SM -.B SHELL BUILTIN COMMANDS +.B "SHELL BUILTIN COMMANDS" below for information about signal numbers and trap execution. .TP .B BASH_VERSINFO @@ -1764,7 +1823,8 @@ The value of .TP .B BASH_VERSION Expands to a string describing the version of this instance of -.BR bash . +.B bash +(e.g., 5.2.37(3)-release). .TP .B COMP_CWORD An index into \fB${COMP_WORDS}\fP of the word containing the current @@ -1776,6 +1836,10 @@ below). .B COMP_KEY The key (or final key of a key sequence) used to invoke the current completion function. +This variable is available only in shell functions and external +commands invoked by the +programmable completion facilities (see \fBProgrammable Completion\fP +below). .TP .B COMP_LINE The current command line. @@ -1795,7 +1859,7 @@ programmable completion facilities (see \fBProgrammable Completion\fP below). .TP .B COMP_TYPE -Set to an integer value corresponding to the type of completion attempted +Set to an integer value corresponding to the type of attempted completion that caused a completion function to be called: \fITAB\fP, for normal completion, \fI?\fP, for listing completions after successive tabs, @@ -1954,9 +2018,9 @@ The default is system-dependent. .B LINENO Each time this parameter is referenced, the shell substitutes a decimal number representing the current sequential line number -(starting with 1) within a script or function. When not in a -script or function, the value substituted is not guaranteed to -be meaningful. +(starting with 1) within a script or function. +When not in a script or function, the value substituted is not +guaranteed to be meaningful. If .SM .B LINENO @@ -1984,7 +2048,7 @@ The value of the last option argument processed by the .B getopts builtin command (see .SM -.B SHELL BUILTIN COMMANDS +.B "SHELL BUILTIN COMMANDS" below). .TP .B OPTIND @@ -1992,7 +2056,7 @@ The index of the next argument to be processed by the .B getopts builtin command (see .SM -.B SHELL BUILTIN COMMANDS +.B "SHELL BUILTIN COMMANDS" below). .TP .B OSTYPE @@ -2013,7 +2077,8 @@ consist of only a simple command above). .TP .B PPID -The process ID of the shell's parent. This variable is readonly. +The process ID of the shell's parent. +This variable is readonly. .TP .B PWD The current working directory as set by the @@ -2028,6 +2093,8 @@ a value to .SM .B RANDOM initializes (seeds) the sequence of random numbers. +Seeding the random number generator with the same constant value will +produce the same sequence of values. If .SM .B RANDOM @@ -2098,15 +2165,16 @@ is unset, it loses its special properties, even if it is subsequently reset. .TP .B SHELLOPTS -A colon-separated list of enabled shell options. Each word in -the list is a valid argument for the +A colon-separated list of enabled shell options. +Each word in the list is a valid argument for the .B \-o option to the .B set builtin command (see .SM .B "SHELL BUILTIN COMMANDS" -below). The options appearing in +below). +The options appearing in .SM .B SHELLOPTS are those reported as @@ -2114,7 +2182,7 @@ are those reported as by \fBset \-o\fP. If this variable is in the environment when .B bash -starts up, each shell option in the list will be enabled before +starts up, the shell enables each option in the list before reading any startup files. This variable is read-only. .TP @@ -2124,8 +2192,9 @@ Incremented by one each time an instance of is started. .TP .B SRANDOM -This variable expands to a 32-bit pseudo-random number each time it is -referenced. The random number generator is not linear on systems that +Each time it is referenced, this variable expands to a 32-bit pseudo-random +number. +The random number generator is not linear on systems that support .FN /dev/urandom or @@ -2145,7 +2214,7 @@ Expands to the user ID of the current user, initialized at shell startup. This variable is readonly. .PD .PP -The following variables are used by the shell. In some cases, +The shell uses the following variables. In some cases, .B bash assigns a default value to a variable; these cases are noted below. @@ -2177,9 +2246,9 @@ The current version is also a valid value. .TP .B BASH_ENV If this parameter is set when \fBbash\fP is executing a shell script, -its value is interpreted as a filename containing commands to -initialize the shell, as in -.IR \*~/.bashrc . +its expanded value is interpreted as a filename containing commands to +initialize the shell before it reads and executes commands from the +script. The value of .SM .B BASH_ENV @@ -2214,8 +2283,8 @@ being closed. The search path for the .B cd command. -This is a colon-separated list of directories in which the shell looks -for destination directories specified by the +This is a colon-separated list of directories where the shell looks for +directories specified as arguments to the .B cd command. A sample value is @@ -2259,7 +2328,7 @@ when an interactive shell is invoked in \fIposix mode\fP. .TP .B EXECIGNORE A colon-separated list of shell patterns (see \fBPattern Matching\fP) -defining the list of filenames to be ignored by command search using +defining the set of filenames to be ignored by command search using \fBPATH\fP. Files whose full pathnames match one of these patterns are not considered executable files for the purposes of completion and command execution @@ -2292,7 +2361,8 @@ A sample value is .TP .B FUNCNEST If set to a numeric value greater than 0, defines a maximum function -nesting level. Function invocations that exceed this nesting level +nesting level. +Function invocations that exceed this nesting level will cause the current command to abort. .TP .B GLOBIGNORE @@ -2303,10 +2373,12 @@ of the patterns in .SM .BR GLOBIGNORE , it is removed from the list of matches. +The pattern matching honors the setting of the \fBextglob\fP shell +option. .TP .B GLOBSORT .PD -Control how the results of pathname expansion are sorted. +Controls how the results of pathname expansion are sorted. The value of this variable specifies the sort criteria and sort order for the results of pathname expansion. If this variable is unset or set to the null string, pathname expansion @@ -2324,11 +2396,13 @@ The valid sort specifiers are .IR ctime , and .IR blocks , -which sort the files on name, names in numeric rather than lexicographic order, +which sort the files on name, +names in numeric rather than lexicographic order, file size, modification time, access time, inode change time, and number of blocks, respectively. If any of the non-name keys compare as equal (e.g., if two files are the same size), sorting uses the name as a secondary sort key. +.IP For example, a value of \fI\-mtime\fP sorts the results in descending order by modification time (newest first). .IP @@ -2341,6 +2415,7 @@ the all-digit names and are sorted by name using the traditional behavior. A sort specifier of \fInosort\fP disables sorting completely; the results are returned in the order they are read from the file system, and any leading \fI+\fP or \fI\-\fP is ignored. +.IP If the sort specifier is missing, it defaults to \fIname\fP, so a value of \fI+\fP is equivalent to the null string, and a value of \fI-\fP sorts by name in descending order. @@ -2357,7 +2432,7 @@ lines which begin with a character are not saved in the history list. A value of .I ignoredups -causes lines matching the previous history entry to not be saved. +causes lines matching the previous history entry not to be saved. A value of .I ignoreboth is shorthand for \fIignorespace\fP and \fIignoredups\fP. @@ -2377,7 +2452,10 @@ subject to the value of The second and subsequent lines of a multi-line compound command are not tested, and are added to the history regardless of the value of .SM -.BR HISTCONTROL . +.B HISTCONTROL +if the first line of the command was saved. +If the first line was not saved, the second and subsequent lines of +the command are not saved either. .TP .B HISTFILE The name of the file in which command history is saved (see @@ -2386,15 +2464,15 @@ The name of the file in which command history is saved (see below). \fBBash\fP assigns a default value of \fI\*~/.bash_history\fP. If \fBHISTFILE\fP is unset or null, -the command history is not saved when a shell exits. +the shell does not save the command history when it exits. .TP .B HISTFILESIZE -The maximum number of lines contained in the history file. When this -variable is assigned a value, the history file is truncated, if -necessary, -to contain no more than that number of lines by removing the oldest entries. +The maximum number of lines contained in the history file. +When this variable is assigned a value, the history file is truncated, +if necessary, to contain no more than that number of lines +by removing the oldest entries. The history file is also truncated to this size after -writing it when a shell exits. +writing it when a shell exits or by the \fBhistory\fP builtin. If the value is 0, the history file is truncated to zero size. Non-numeric values and numeric values less than zero inhibit truncation. The shell sets the default value to the value of \fBHISTSIZE\fP @@ -2426,6 +2504,8 @@ The second and subsequent lines of a multi-line compound command are not tested, and are added to the history regardless of the value of .SM .BR HISTIGNORE . +If the first line was not saved, the second and subsequent lines of +the command are not saved either. The pattern matching honors the setting of the \fBextglob\fP shell option. .TP @@ -2445,7 +2525,7 @@ for .IR strftime (3) to print the time stamp associated with each history entry displayed by the \fBhistory\fP builtin. -If this variable is set, time stamps are written to the history file so +If this variable is set, the shell writes time stamps to the history file so they may be preserved across shell sessions. This uses the history comment character to distinguish timestamps from other history lines. @@ -2485,7 +2565,11 @@ that is used for word splitting after expansion and to split lines into words with the .B read -builtin command. The default value is +builtin command. +Word splitting is described above under +.SM +.BR EXPANSION . +The default value is .Q . .TP .B IGNOREEOF @@ -2493,15 +2577,18 @@ Controls the action of an interactive shell on receipt of an .SM .B EOF -character as the sole input. If set, the value is the number of -consecutive +character as the sole input. +If set, the value is the number of consecutive .SM .B EOF characters which must be typed as the first characters on an input line before .B bash -exits. If the variable exists but does not have a numeric value, or -has no value, the default value is 10. If it does not exist, +exits. +If the variable is set but does not have a numeric value, +or the value is null, +the default value is 10. +If it is unset, .SM .B EOF signifies the end of input to the shell. @@ -2564,7 +2651,7 @@ option is enabled or in an interactive shell upon receipt of a .BR SIGWINCH . .TP .B MAIL -If this parameter is set to a file or directory name and the +If the value is set to a file or directory name and the .SM .B MAILPATH variable is not set, @@ -2576,8 +2663,10 @@ Maildir-format directory. Specifies how often (in seconds) .B bash -checks for mail. The default is 60 seconds. When it is time to check -for mail, the shell does so before displaying the primary prompt. +checks for mail. +The default is 60 seconds. +When it is time to check for mail, +the shell does so before displaying the primary prompt. If this variable is unset, or set to a value that is not a number greater than or equal to zero, the shell disables mail checking. .TP @@ -2609,7 +2698,7 @@ displays error messages generated by the .B getopts builtin command (see .SM -.B SHELL BUILTIN COMMANDS +.B "SHELL BUILTIN COMMANDS" below). .SM .B OPTERR @@ -2617,8 +2706,8 @@ is initialized to 1 each time the shell is invoked or a shell script is executed. .TP .B PATH -The search path for commands. It -is a colon-separated list of directories in which +The search path for commands. +It is a colon-separated list of directories in which the shell looks for commands (see .SM .B COMMAND EXECUTION @@ -2661,7 +2750,8 @@ trailing directory components to retain when expanding the \fB\ew\fP and \fB\eW\fP prompt string escapes (see .SM .B PROMPTING -below). Characters removed are replaced with an ellipsis. +below). +Characters removed are replaced with an ellipsis. .TP .B PS0 The value of this parameter is expanded (see @@ -2674,14 +2764,16 @@ and before the command is executed. The value of this parameter is expanded (see .SM .B PROMPTING -below) and used as the primary prompt string. The default value is +below) and used as the primary prompt string. +The default value is .Q \es\-\ev\e$\ . .TP .B PS2 The value of this parameter is expanded as with .SM .B PS1 -and used as the secondary prompt string. The default is +and used as the secondary prompt string. +The default is .Q >\ . .TP .B PS3 @@ -2746,9 +2838,10 @@ The CPU percentage, computed as (%U + %S) / %R. The optional \fIp\fP is a digit specifying the \fIprecision\fP, the number of fractional digits after a decimal point. A value of 0 causes no decimal point or fraction to be output. -At most six places after the decimal point may be specified; +\fBtime\fP will print at most six digits after the decimal point; values of \fIp\fP greater than 6 are changed to 6. -If \fIp\fP is not specified, the value 3 is used. +If \fIp\fP is not specified, +\fBtime\fP prints three digits after the decimal point. .IP The optional \fBl\fP specifies a longer format, including minutes, of the form \fIMM\fPm\fISS\fP.\fIFF\fPs. @@ -2763,10 +2856,8 @@ A trailing newline is added when the format string is displayed. .TP .B TMOUT If set to a value greater than zero, -.SM -.B TMOUT -is treated as the -default timeout for the \fBread\fP builtin. +the \fBread\fP builtin uses the value as its +default timeout. The \fBselect\fP command terminates if input does not arrive after .SM @@ -2776,8 +2867,8 @@ In an interactive shell, the value is interpreted as the number of seconds to wait for a line of input after issuing the primary prompt. .B Bash -terminates after waiting for that number of seconds if a complete -line of input does not arrive. +terminates after waiting for that number of seconds if a +complete line of input does not arrive. .TP .B TMPDIR If set, \fBbash\fP uses its value as the name of a directory in which @@ -2785,11 +2876,14 @@ If set, \fBbash\fP uses its value as the name of a directory in which .TP .B auto_resume This variable controls how the shell interacts with the user and -job control. If this variable is set, single word simple +job control. +If this variable is set, single-word simple commands without redirections are treated as candidates for resumption -of an existing stopped job. There is no ambiguity allowed; if there is -more than one job beginning with the string typed, the job most recently -accessed is selected. The +of an existing stopped job. +There is no ambiguity allowed; if there is more than one job +beginning with the string typed, the most recently accessed job +is selected. +The .I name of a stopped job, in this context, is the command line used to start it. @@ -2815,7 +2909,8 @@ The two or three characters which control history expansion and tokenization (see .SM .B HISTORY EXPANSION -below). The first character is the \fIhistory expansion\fP character, +below). +The first character is the \fIhistory expansion\fP character, the character which signals the start of a history expansion, normally .Q \fB!\fP . @@ -2851,12 +2946,13 @@ Unless otherwise noted, indexed array indices must be non-negative integers. An indexed array is created automatically if any variable is assigned to using the syntax \fIname\fP[\fIsubscript\fP]=\fIvalue\fP. The .I subscript -is treated as an arithmetic expression that must evaluate to a number. +is treated as an arithmetic expression that must evaluate to a number +greater than or equal to zero. To explicitly declare an indexed array, use .B declare \-a \fIname\fP (see .SM -.B SHELL BUILTIN COMMANDS +.B "SHELL BUILTIN COMMANDS" below). .B declare \-a \fIname\fP[\fIsubscript\fP] is also accepted; the \fIsubscript\fP is ignored. @@ -2869,9 +2965,10 @@ specified for an array variable using the .B declare and .B readonly -builtins. Each attribute applies to all members of an array. +builtins. +Each attribute applies to all members of an array. .PP -Arrays are assigned to using compound assignments of the form +Arrays are assigned using compound assignments of the form \fIname\fP=\fB(\fPvalue\fI1\fP .\|.\|.\& value\fIn\fP\fB)\fP, where each \fIvalue\fP may be of the form [\fIsubscript\fP]=\fIstring\fP. Indexed array assignments do not require anything but \fIstring\fP. @@ -2883,10 +2980,12 @@ but \fIvalue\fPs that are valid variable assignments including the brackets and subscript do not undergo brace expansion and word splitting, as with individual variable assignments. +.PP When assigning to indexed arrays, if the optional brackets and subscript are supplied, that index is assigned to; otherwise the index of the element assigned is the last index assigned -to by the statement plus one. Indexing starts at zero. +to by the statement plus one. +Indexing starts at zero. .PP When assigning to an associative array, the words in a compound assignment may be either assignment statements, for which the subscript is required, @@ -2903,8 +3002,10 @@ a final missing value is treated like the empty string. .PP This syntax is also accepted by the .B declare -builtin. Individual array elements may be assigned to using the +builtin. +Individual array elements may be assigned to using the \fIname\fP[\fIsubscript\fP]=\fIvalue\fP syntax introduced above. +.PP When assigning to an indexed array, if .I name is subscripted by a negative number, that number is @@ -2918,32 +3019,38 @@ using the compound assignment syntax; see .B PARAMETERS above. .PP -Any element of an array may be referenced using -${\fIname\fP[\fIsubscript\fP]}. The braces are required to avoid -conflicts with pathname expansion. If -\fIsubscript\fP is \fB@\fP or \fB*\fP, the word expands to +An array element is referenced using +${\fIname\fP[\fIsubscript\fP]}. +The braces are required to avoid conflicts with pathname expansion. +If \fIsubscript\fP is \fB@\fP or \fB*\fP, the word expands to all members of \fIname\fP, unless noted in the description of a builtin or word expansion. These subscripts differ only when the -word appears within double quotes. If the word is double-quoted, -${\fIname\fP[*]} expands to a single +word appears within double quotes. +If the word is double-quoted, ${\fIname\fP[*]} expands to a single word with the value of each array member separated by the first character of the .SM .B IFS special variable, and ${\fIname\fP[@]} expands each element of -\fIname\fP to a separate word. When there are no array members, -${\fIname\fP[@]} expands to nothing. +\fIname\fP to a separate word. +When there are no array members, ${\fIname\fP[@]} expands to nothing. If the double-quoted expansion occurs within a word, the expansion of -the first parameter is joined with the beginning part of the original -word, and the expansion of the last parameter is joined with the last -part of the original word. +the first parameter is joined with the beginning part of the +expansion of the original word, +and the expansion of the last parameter is joined with the last +part of the +expansion of the original word. This is analogous to the expansion of the special parameters \fB*\fP and \fB@\fP (see .B Special Parameters -above). ${#\fIname\fP[\fIsubscript\fP]} expands to the length of -${\fIname\fP[\fIsubscript\fP]}. If \fIsubscript\fP is \fB*\fP or -\fB@\fP, the expansion is the number of elements in the array. +above). +.PP +${#\fIname\fP[\fIsubscript\fP]} expands to the length of +${\fIname\fP[\fIsubscript\fP]}. +If \fIsubscript\fP is \fB*\fP or \fB@\fP, +the expansion is the number of elements in the array. +.PP If the .I subscript used to reference an element of an indexed array @@ -2959,7 +3066,8 @@ Any reference to a variable using a valid subscript is valid, and will create an array if necessary. .PP An array variable is considered set if a subscript has been assigned a -value. The null string is a valid value. +value. +The null string is a valid value. .PP It is possible to obtain the keys (indices) of an array as well as the values. ${\fB!\fP\fIname\fP[\fI@\fP]} and ${\fB!\fP\fIname\fP[\fI*\fP]} @@ -2969,16 +3077,18 @@ special parameters \fI@\fP and \fI*\fP within double quotes. .PP The .B unset -builtin is used to destroy arrays. \fBunset\fP \fIname\fP[\fIsubscript\fP] -destroys the array element at index \fIsubscript\fP, +builtin is used to destroy arrays. +\fBunset\fP \fIname\fP[\fIsubscript\fP] +unsets the array element at index \fIsubscript\fP, for both indexed and associative arrays. Negative subscripts to indexed arrays are interpreted as described above. Unsetting the last element of an array variable does not unset the variable. \fBunset\fP \fIname\fP, where \fIname\fP is an array, removes the entire array. -\fBunset\fP \fIname\fP[\fIsubscript\fP], where -\fIsubscript\fP is \fB*\fP or \fB@\fP, behaves differently depending on -whether \fIname\fP is an indexed or associative array. +\fBunset\fP \fIname\fP[\fIsubscript\fP] +behaves differently depending on +whether \fIname\fP is an indexed or associative array +when \fIsubscript\fP is \fB*\fP or \fB@\fP. If \fIname\fP is an associative array, this unsets the element with subscript \fB*\fP or \fB@\fP. If \fIname\fP is an indexed array, unset removes all of the elements but @@ -2986,8 +3096,11 @@ does not remove the array itself. .PP When using a variable name with a subscript as an argument to a command, such as with \fBunset\fP, without using the word expansion syntax -described above, the argument is subject to pathname expansion. -If pathname expansion is not desired, the argument should be quoted. +described above, +(e.g., unset a[4]), +the argument is subject to pathname expansion. +Quote the argument if pathname expansion is not desired +(e.g., unset \*'a[4]\*'). .PP The .BR declare , @@ -3007,12 +3120,17 @@ The builtin accepts a .B \-a option to assign a list of words read from the standard input -to an array. The +to an array. +The .B set and .B declare builtins display array values in a way that allows them to be reused as assignments. +Other builtins accept array name arguments as well +(e.g., \fBmapfile\fP); see the descriptions +of individual builtins below for details. +The shell provides a number of builtin array variables. .SH EXPANSION Expansion is performed on the command line after it has been split into words. The shell performs these expansions: @@ -3059,11 +3177,12 @@ as explained above (see .BR PARAMETERS ). .SS Brace Expansion .I "Brace expansion" -is a mechanism by which arbitrary strings -may be generated. This mechanism is similar to +is a mechanism to generate arbitrary strings +sharing a common prefix and suffix, either of which can be empty. +This mechanism is similar to \fIpathname expansion\fP, but the filenames generated -need not exist. Patterns to be brace expanded take -the form of an optional +need not exist. +Patterns to be brace expanded are formed from an optional .IR preamble , followed by either a series of comma-separated strings or a sequence expression between a pair of braces, followed by @@ -3095,11 +3214,13 @@ using the default C locale. Note that both \fIx\fP and \fIy\fP must be of the same type (integer or letter). When the increment is supplied, it is used as the difference between -each term. The default increment is 1 or \-1 as appropriate. +each term. +The default increment is 1 or \-1 as appropriate. .PP Brace expansion is performed before any other expansions, and any characters special to other expansions are preserved -in the result. It is strictly textual. +in the result. +It is strictly textual. .B Bash does not apply any syntactic interpretation to the context of the expansion or the text between the braces. @@ -3108,6 +3229,7 @@ A correctly-formed brace expansion must contain unquoted opening and closing braces, and at least one unquoted comma or a valid sequence expression. Any incorrectly formed brace expansion is left unchanged. +.PP A \fB{\fP or \fB,\fP may be quoted with a backslash to prevent its being considered part of a brace expression. To avoid conflicts with parameter expansion, the string \fB${\fP @@ -3134,17 +3256,15 @@ does not treat opening or closing braces specially when they appear as part of a word, and preserves them in the output. .B Bash removes braces from words as a consequence of brace -expansion. For example, a word entered to +expansion. +For example, a word entered to .B sh as \fIfile{1,2}\fP -appears identically in the output. The same word is -output as +appears identically in the output. +\fBBash\fP outputs that word as .I file1 file2 -after expansion by -.BR bash . -If strict compatibility with -.B sh -is desired, start +after brace expansion. +Start .B bash with the .B +B @@ -3154,8 +3274,8 @@ option to the .B set command (see .SM -.B SHELL BUILTIN COMMANDS -below). +.B "SHELL BUILTIN COMMANDS" +below) for strict \fBsh\fP compatibility. .SS Tilde Expansion If a word begins with an unquoted tilde character (\c .Q \fB\*~\fP ), @@ -3172,8 +3292,8 @@ value of the shell parameter If .SM .B HOME -is unset, the home directory of the user executing the shell is -substituted instead. +is unset, the tilde expands to +the home directory of the user executing the shell instead. Otherwise, the tilde-prefix is replaced with the home directory associated with the specified login name. .PP @@ -3185,10 +3305,10 @@ the value of the shell variable replaces the tilde-prefix. If the tilde-prefix is a .Q \*~\- , -the value of the shell variable +the shell substitutes the value of the shell variable .SM .BR OLDPWD , -if it is set, is substituted. +if it is set. If the characters following the tilde in the tilde-prefix consist of a number \fIN\fP, optionally prefixed by a @@ -3198,7 +3318,8 @@ or a the tilde-prefix is replaced with the corresponding element from the directory stack, as it would be displayed by the .B dirs -builtin invoked with the tilde-prefix as an argument. +builtin invoked with the characters following the tilde in the +tilde-prefix as an argument. If the characters following the tilde in the tilde-prefix consist of a number without a leading .Q + @@ -3207,15 +3328,19 @@ or .Q + is assumed. .PP -If the login name is invalid, or the tilde expansion fails, the word -is unchanged. +The results of tilde expansion are treated as if they were quoted, so +the replacement is not subject to word splitting and pathname expansion. .PP -Each variable assignment is checked for unquoted tilde-prefixes immediately +If the login name is invalid, or the tilde expansion fails, the +tilde-prefix is unchanged. +.PP +\fBBash\fP checks each variable assignment +for unquoted tilde-prefixes immediately following a .B : or the first -.BR = . -In these cases, tilde expansion is also performed. +.BR = , +and performs tilde expansion in these cases. Consequently, one may use filenames with tildes in assignments to .SM .BR PATH , @@ -3237,7 +3362,8 @@ above, when in \fIposix mode\fP. The .Q \fB$\fP character introduces parameter expansion, -command substitution, or arithmetic expansion. The parameter name +command substitution, or arithmetic expansion. +The parameter name or symbol to be expanded may be enclosed in braces, which are optional but serve to protect the variable to be expanded from characters immediately following it which could be @@ -3249,10 +3375,12 @@ not escaped by a backslash or within a quoted string, and not within an embedded arithmetic expansion, command substitution, or parameter expansion. .PP -.PD 0 -.TP +The basic form of parameter expansion is +.PP ${\fIparameter\fP} -The value of \fIparameter\fP is substituted. The braces are required +.LP +which substitutes the value of \fIparameter\fP. +The braces are required when .I parameter is a positional parameter with more than one digit, @@ -3268,15 +3396,15 @@ If the first character of \fIparameter\fP is an exclamation point (\fB!\fP), and \fIparameter\fP is not a \fInameref\fP, it introduces a level of indirection. \fBBash\fP uses the value formed by expanding the rest of -\fIparameter\fP as the new \fIparameter\fP; this is then -expanded and that value is used in the rest of the expansion, rather +\fIparameter\fP as the new \fIparameter\fP; +this new parameter is then expanded and that value is used in the rest of the expansion, rather than the expansion of the original \fIparameter\fP. This is known as \fIindirect expansion\fP. The value is subject to tilde expansion, parameter expansion, command substitution, and arithmetic expansion. If \fIparameter\fP is a nameref, this expands to the name of the parameter referenced by \fIparameter\fP instead of performing the -complete indirect expansion. +complete indirect expansion, for compatibility. The exceptions to this are the expansions of ${\fB!\fP\fIprefix\fP\fB*\fP} and ${\fB!\fP\fIname\fP[\fI@\fP]} described below. The exclamation point must immediately follow the left brace in order to @@ -3287,8 +3415,8 @@ parameter expansion, command substitution, and arithmetic expansion. .PP When not performing substring expansion, using the forms documented below (e.g., \fB:-\fP), -\fBbash\fP tests for a parameter that is unset or null. Omitting the colon -results in a test only for a parameter that is unset. +\fBbash\fP tests for a parameter that is unset or null. +Omitting the colon tests only for a parameter that is unset. .PP .PD 0 .TP @@ -3297,7 +3425,8 @@ ${\fIparameter\fP\fB:\-\fP\fIword\fP} .I parameter is unset or null, the expansion of .I word -is substituted. Otherwise, the value of +is substituted. +Otherwise, the value of .I parameter is substituted. .TP @@ -3308,11 +3437,11 @@ If is unset or null, the expansion of .I word is assigned to +.IR parameter , +and the expansion is the final value of .IR parameter . -The value of -.I parameter -is then substituted. Positional parameters and special parameters may -not be assigned to in this way. +Positional parameters and special parameters may +not be assigned in this way. .TP ${\fIparameter\fP\fB:?\fP\fIword\fP} \fBDisplay Error if Null or Unset\fP. @@ -3322,8 +3451,10 @@ is null or unset, the expansion of \fIword\fP (or a message to that effect if .I word is not present) is written to the standard error and the shell, if it -is not interactive, exits. Otherwise, the value of \fIparameter\fP is -substituted. +is not interactive, exits with a non-zero status. +An interactive shell does not exit, but does not execute the command +associated with the expansion. +Otherwise, the value of \fIparameter\fP is substituted. .TP ${\fIparameter\fP\fB:+\fP\fIword\fP} \fBUse Alternate Value\fP. @@ -3332,6 +3463,7 @@ If is null or unset, nothing is substituted, otherwise the expansion of .I word is substituted. +The value of \fIparameter\fP is not used. .TP ${\fIparameter\fP\fB:\fP\fIoffset\fP} .PD 0 @@ -3417,7 +3549,7 @@ key expands to a separate word. .TP ${\fB#\fP\fIparameter\fP} \fBParameter length\fP. -The length in characters of the value of \fIparameter\fP is substituted. +Substitutes the length in characters of the expanded value of \fIparameter\fP. If .I parameter is @@ -3529,14 +3661,16 @@ ${\fIparameter\fP\fB/%\fP\fIpattern\fP\fB/\fP\fIstring\fP} .PD \fBPattern substitution\fP. The \fIpattern\fP is expanded to produce a pattern just as in -pathname expansion. -\fIParameter\fP is expanded and the longest match of \fIpattern\fP -against its value is replaced with \fIstring\fP. -\fIstring\fP undergoes tilde expansion, parameter and variable expansion, -arithmetic expansion, command and process substitution, and quote removal. -The match is performed using the rules described under +pathname expansion and matched against the expanded value of +\fIparameter\fP +using the rules described under .B Pattern Matching below. +The longest match of \fIpattern\fP +in the expanded value is replaced with \fIstring\fP. +\fIstring\fP undergoes tilde expansion, parameter and variable expansion, +arithmetic expansion, command and process substitution, and quote removal. +.IP In the first form above, only the first match is replaced. If there are two slashes separating \fIparameter\fP and \fIpattern\fP (the second form above), all matches of \fIpattern\fP are @@ -3545,9 +3679,8 @@ If \fIpattern\fP is preceded by \fB#\fP (the third form above), it must match at the beginning of the expanded value of \fIparameter\fP. If \fIpattern\fP is preceded by \fB%\fP (the fourth form above), it must match at the end of the expanded value of \fIparameter\fP. +.IP If the expansion of \fIstring\fP is null, -matches of \fIpattern\fP are deleted. -If \fIstring\fP is null, matches of \fIpattern\fP are deleted and the \fB/\fP following \fIpattern\fP may be omitted. .IP @@ -3571,10 +3704,17 @@ shell programmers should quote any occurrences of \fB&\fP they want to be taken literally in the replacement and ensure any instances of \fB&\fP they want to be replaced are unquoted. .IP +Like the pattern removal operators, double quotes surrounding the +replacement string quote the expanded characters, while double quotes +enclosing the entire parameter substitution do not, since +the expansion is performed in a +context that doesn't take any enclosing double quotes into account. +.IP If the .B nocasematch shell option is enabled, the match is performed without regard to the case of alphabetic characters. +.IP If .I parameter is @@ -3608,6 +3748,7 @@ pathname expansion. Each character in the expanded value of \fIparameter\fP is tested against \fIpattern\fP, and, if it matches the pattern, its case is converted. The pattern should not attempt to match more than one character. +.IP The \fB\*^\fP operator converts lowercase letters matching \fIpattern\fP to uppercase; the \fB,\fP operator converts matching uppercase letters to lowercase. @@ -3616,6 +3757,7 @@ expanded value; the \fB\*^\fP and \fB,\fP expansions match and convert only the first character in the expanded value. If \fIpattern\fP is omitted, it is treated like a \fB?\fP, which matches every character. +.IP If .I parameter is @@ -3787,8 +3929,9 @@ escape the inner backquotes with backslashes. If the substitution appears within double quotes, \fBbash\fP does not perform word splitting and pathname expansion on the results. .SS Arithmetic Expansion -Arithmetic expansion allows the evaluation of an arithmetic expression -and the substitution of the result. The format for arithmetic expansion is: +Arithmetic expansion evaluates an arithmetic expression +and substitutes the result. +The format for arithmetic expansion is: .RS .PP \fB$((\fP\fIexpression\fP\fB))\fP @@ -3812,7 +3955,9 @@ If .I expression is invalid, .B bash -prints a message indicating failure and no substitution occurs. +prints a message to standard error indicating failure, +does not perform the substitution, +and does not execute the command associated with the expansion. .SS Process Substitution \fIProcess substitution\fP allows a process's input or output to be referred to using a filename. @@ -3825,10 +3970,16 @@ appears as a filename. This filename is passed as an argument to the current command as the result of the expansion. +.PP If the \fB>(\fP\fIlist\^\fP\fB)\fP form is used, writing to -the file will provide input for \fIlist\fP. If the -\fB<(\fP\fIlist\^\fP\fB)\fP form is used, the file passed as an -argument should be read to obtain the output of \fIlist\fP. +the file will provide input for \fIlist\fP. +If the +\fB<(\fP\fIlist\^\fP\fB)\fP form is used, reading the file +will obtain the output of \fIlist\fP. +No space may appear between the \fB<\fP or \fB>\fP +and the left parenthesis, otherwise the construct would be interpreted +as a redirection. +.PP Process substitution is supported on systems that support named pipes (\fIFIFOs\fP) or the \fB/dev/fd\fP method of naming open files. .PP @@ -3868,7 +4019,7 @@ expansions are ignored, and any sequence of .SM .B IFS -characters not at the beginning or end serves to delimit words. +characters not at the beginning or end delimits words. If .SM .B IFS @@ -3878,15 +4029,14 @@ the whitespace characters .BR tab , and .B newline -are ignored at the beginning and end of the -word, as long as the whitespace character is in the -value of +present in the value of .SM .B IFS (an .SM .B IFS -whitespace character). +whitespace character) +are ignored at the beginning and end of the word. Any character in .SM .B IFS @@ -3929,8 +4079,7 @@ becomes .Q \-d after word splitting and null argument removal. .PP -Note that if no expansion occurs, no splitting -is performed. +Note that if no expansion occurs, no splitting is performed. .SS Pathname Expansion After word splitting, unless the @@ -3945,12 +4094,13 @@ and If one of these characters appears, and is not quoted, then the word is regarded as a .IR pattern , -and replaced with an alphabetically sorted list of -filenames matching the pattern +and replaced with a sorted list of filenames matching the pattern (see .SM .B "Pattern Matching" -below). +below) +subject to the value of the \fBGLOBSORT\fP shell variable. +.PP If no matching filenames are found, and the shell option .B nullglob @@ -3961,12 +4111,13 @@ option is set, and no matches are found, the word is removed. If the .B failglob -shell option is set, and no matches are found, an error message -is printed and the command is not executed. +shell option is set, and no matches are found, +\fBbash\fP prints an error message and does not execute the command. If the shell option .B nocaseglob is enabled, the match is performed without regard to the case of alphabetic characters. +.PP When a pattern is used for pathname expansion, the character .Q .\& @@ -3992,21 +4143,23 @@ shell option is enabled, the filenames and .Q ..\& never match, even if the pattern begins with a -.Q .\& +.Q .\& . When not matching pathnames, the .Q .\& character is not treated specially. +.PP When matching a pathname, 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 .SM .BR "Pattern Matching" . +.PP See the description of .B shopt below under .SM -.B SHELL BUILTIN COMMANDS +.B "SHELL BUILTIN COMMANDS" for a description of the .BR nocaseglob , .BR nullglob , @@ -4046,7 +4199,7 @@ However, setting to a non-null value has the effect of enabling the .B dotglob shell option, so all other filenames beginning with a -Q .\& +.Q .\& will match. To get the old behavior of ignoring filenames beginning with a .Q .\& , @@ -4061,14 +4214,16 @@ option is disabled when .SM .B GLOBIGNORE is unset. -The pattern matching honors the setting of the \fBextglob\fP shell +The +.B GLOBIGNORE +pattern matching honors the setting of the \fBextglob\fP shell option. .PP The .SM .B GLOBSORT -variable controls how the results of pathname expansion are sorted, as -described above. +shell variable controls how the results of pathname expansion are sorted, +as described above. .PP \fBPattern Matching\fP .PP @@ -4098,22 +4253,31 @@ and subdirectories. Matches any single character. .TP .BR [ .\|.\|. ] +.PD Matches any one of the enclosed characters. A pair of characters separated by a hyphen denotes a \fIrange expression\fP; any character that falls between those two characters, inclusive, -using the current locale's collating sequence and character set, -is matched. If the first character following the +using the current locale's collating sequence and character set, matches. +If the first character following the .B [ is a .B ! or a .B \*^ -then any character not enclosed is matched. +then any character not within the range matches. +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 set. +.IP The sorting order of characters in range expressions, and the characters included in the range, -are determined by -the current locale and the values of the +are determined by the current locale and the values of the .SM .B LC_COLLATE or @@ -4124,22 +4288,15 @@ To obtain the traditional interpretation of range expressions, where .B [a\-d] is equivalent to .BR [abcd] , -set value of the +set the value of the +.B LC_COLLATE +or .B LC_ALL -shell variable to +shell variables to .BR C , or enable the .B globasciiranges 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 set. -.PD .IP Within .B [ @@ -4188,19 +4345,19 @@ sub-patterns: .RS .TP \fB?(\fP\^\fIpattern-list\^\fP\fB)\fP -Matches zero or one occurrence of the given patterns +Matches zero or one occurrence of the given patterns. .TP \fB*(\fP\^\fIpattern-list\^\fP\fB)\fP -Matches zero or more occurrences of the given patterns +Matches zero or more occurrences of the given patterns. .TP \fB+(\fP\^\fIpattern-list\^\fP\fB)\fP -Matches one or more occurrences of the given patterns +Matches one or more occurrences of the given patterns. .TP \fB@(\fP\^\fIpattern-list\^\fP\fB)\fP -Matches one of the given patterns +Matches one of the given patterns. .TP \fB!(\fP\^\fIpattern-list\^\fP\fB)\fP -Matches anything except one of the given patterns +Matches anything except one of the given patterns. .RE .PD .PP @@ -4225,6 +4382,13 @@ include any filenames beginning with .Q .\& unless the pattern or sub-pattern begins with a .Q .\& . +If the +.B globskipdots +shell option is enabled, the filenames +.Q .\& +and +.Q ..\& +never appear in the set. As above, .Q .\& only has a special meaning when matching filenames. @@ -4250,8 +4414,8 @@ using a special notation interpreted by the shell. 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. +When used with the \fBexec\fP builtin, +redirections modify file handles in the current shell execution environment. The following redirection operators may precede or appear anywhere within a .I simple command @@ -4265,12 +4429,12 @@ may instead be preceded by a word of the form {\fIvarname\fP}. 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 \fIvarname\fP. -If >&- or <&- is preceded -by {\fIvarname\fP}, the value of \fIvarname\fP defines the file -descriptor to close. +If {\fIvarname\fP} precedes >&- or <&-, +the value of \fIvarname\fP defines the file descriptor to close. If {\fIvarname\fP} is supplied, the redirection persists beyond -the scope of the command, allowing the shell programmer to manage -the file descriptor's lifetime manually. +the scope of the command, which allows the shell programmer to manage +the file descriptor's lifetime manually +without using the \fBexec\fP builtin. The \fBvarredir_close\fP shell option manages this behavior. .PP In the following descriptions, if the file descriptor number is @@ -4282,16 +4446,22 @@ the redirection refers to the standard input (file descriptor the redirection refers to the standard output (file descriptor 1). .PP -The word following the redirection operator in the following +The \fIword\fP following the redirection operator in the following descriptions, 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. +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 bash reports an error. .PP -Note that the order of redirections is significant. For example, +The order of redirections is significant. +For example, the command .RS .PP @@ -4308,21 +4478,21 @@ ls 2\fB>&\fP1 \fB>\fP dirlist .PP directs only the standard output to file .IR dirlist , -because the standard error was duplicated from the standard output +because the standard error was directed to the standard output before the standard output was redirected to .IR dirlist . .PP \fBBash\fP handles several filenames specially when they are used in redirections, as described in the following table. If the operating system on which \fBbash\fP is running provides these -special files, bash will use them; otherwise it will emulate them +special files, \fBbash\fP will use them; otherwise it will emulate them internally with the behavior described below. .RS .PP .PD 0 .TP .B /dev/fd/\fIfd\fP -If \fIfd\fP is a valid integer, file descriptor \fIfd\fP is duplicated. +If \fIfd\fP is a valid integer, duplicate file descriptor \fIfd\fP. .TP .B /dev/stdin File descriptor 0 is duplicated. @@ -4351,10 +4521,10 @@ Redirections using file descriptors greater than 9 should be used with care, as they may conflict with file descriptors the shell uses internally. .SS Redirecting Input -Redirection of input causes the file whose name results from +Redirecting input opens the file whose name results from the expansion of .I word -to be opened for reading on file descriptor +for reading on file descriptor .IR n , or the standard input (file descriptor 0) if .I n @@ -4366,14 +4536,15 @@ The general format for redirecting input is: [\fIn\fP]\fB<\fP\fIword\fP .RE .SS Redirecting Output -Redirection of output causes the file whose name results from +Redirecting output opens the file whose name results from the expansion of .I word -to be opened for writing on file descriptor +for writing on file descriptor .IR n , or the standard output (file descriptor 1) if .I n -is not specified. If the file does not exist it is created; +is not specified. +If the file does not exist it is created; if it does exist it is truncated to zero size. .PP The general format for redirecting output is: @@ -4399,18 +4570,19 @@ and the .B noclobber option to the .B set -builtin command is not enabled, the redirection is attempted even -if the file named by \fIword\fP exists. +builtin command is not enabled, +\fBbash\fP attempts the redirection +even if the file named by \fIword\fP exists. .SS Appending Redirected Output -Redirection of output in this fashion -causes the file whose name results from -the expansion of +Redirecting output in this fashion opens +the file whose name results from the expansion of .I word -to be opened for appending on file descriptor +for appending on file descriptor .IR n , or the standard output (file descriptor 1) if .I n -is not specified. If the file does not exist it is created. +is not specified. +If the file does not exist it is created. .PP The general format for appending output is: .RS @@ -4418,11 +4590,10 @@ The general format for appending output is: [\fIn\fP]\fB>>\fP\fIword\fP .RE .SS Redirecting Standard Output and Standard Error -This construct allows both the +This construct redirects 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 +to the file whose name is the expansion of .IR word . .PP There are two formats for redirecting standard output and @@ -4444,15 +4615,15 @@ This is semantically equivalent to .RE .PP When using the second form, \fIword\fP may not expand to a number or -\fB\-\fP. If it does, other redirection operators apply +\fB\-\fP. +If it does, other redirection operators apply (see \fBDuplicating File Descriptors\fP below) for compatibility reasons. .SS Appending Standard Output and Standard Error -This construct allows both the +This construct appends 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 +to the file whose name is the expansion of .IR word . .PP The format for appending standard output and standard error is: @@ -4473,7 +4644,7 @@ This type of redirection instructs the shell to read input from the current source until it reads a line containing only .I delimiter (with no trailing blanks). -All of the lines read up to that point are then used as the standard +All of the lines read up to that point then become the standard input (or file descriptor \fIn\fP if \fIn\fP is specified) for a command. .PP The format of here-documents is: @@ -4486,7 +4657,8 @@ The format of here-documents is: .fi .RE .PP -No parameter and variable expansion, command substitution, +The shell does not perform +parameter and variable expansion, command substitution, arithmetic expansion, or pathname expansion is performed on .IR word . .PP @@ -4500,26 +4672,35 @@ and the lines in the here-document are not expanded. If \fIword\fP is unquoted, the .I delimiter is \fIword\fP itself, +and the here-document text is treated similarly to a double-quoted string: all lines of the here-document are subjected to parameter expansion, command substitution, and arithmetic expansion, the character sequence .B \e -is ignored, and +is treated literally, and .B \e must be used to quote the characters .BR \e , .BR $ , and -.BR \` . +.BR \` ; +however, double quote characters have no special meaning. .PP If the redirection operator is .BR <<\- , -then all leading tab characters are stripped from input lines and the -line containing +then the shell strips all leading tab characters from input lines +and the line containing .IR delimiter . This allows here-documents within shell scripts to be indented in a natural fashion. +.PP +If the delimiter is not quoted, the +.B \e +sequence is treated as a line continuation: the two lines are joined +and the backslash-newline is removed. +This happens while reading the here-document, before the check for +the ending delimiter, so joined lines can form the end delimiter. .SS "Here Strings" A variant of here documents, the format is: .RS @@ -4546,21 +4727,22 @@ The redirection operator is used to duplicate input file descriptors. If .I word -expands to one or more digits, the file descriptor denoted by +expands to one or more digits, file descriptor .I n is made to be a copy of that file descriptor. -If the digits in +It is a redirection error if the digits in .I word -do not specify a file descriptor open for input, a redirection error occurs. +do not specify a file descriptor open for input. If .I word evaluates to .BR \- , file descriptor .I n -is closed. If +is closed. +If .I n -is not specified, the standard input (file descriptor 0) is used. +is not specified, this uses the standard input (file descriptor 0). .PP The operator .RS @@ -4568,12 +4750,13 @@ The operator [\fIn\fP]\fB>&\fP\fIword\fP .RE .PP -is used similarly to duplicate output file descriptors. If +is used similarly to duplicate output file descriptors. +If .I n -is not specified, the standard output (file descriptor 1) is used. -If the digits in +is not specified, this uses the standard output (file descriptor 1). +It is a redirection error if the digits in .I word -do not specify a file descriptor open for output, a redirection error occurs. +do not specify a file descriptor open for output. If .I word evaluates to @@ -4581,9 +4764,10 @@ evaluates to file descriptor .I n is closed. -As a special case, if \fIn\fP is omitted, and \fIword\fP does not -expand to one or more digits or \fB\-\fP, the standard output and standard -error are redirected as described previously. +As a special case, if \fIn\fP is omitted, +and \fIword\fP does not expand to one or more digits or \fB\-\fP, +this redirects the standard output and standard error as described +previously. .SS "Moving File Descriptors" The redirection operator .RS @@ -4612,25 +4796,28 @@ The redirection operator [\fIn\fP]\fB<>\fP\fIword\fP .RE .PP -causes the file whose name is the expansion of +opens the file whose name is the expansion of .I word -to be opened for both reading and writing on file descriptor +for both reading and writing on file descriptor .IR n , or on file descriptor 0 if .I n -is not specified. If the file does not exist, it is created. +is not specified. +If the file does not exist, it is created. .SH ALIASES \fIAliases\fP allow a string to be substituted for a word that is in a position in the input where it can be the first word of a simple -command. Aliases have names and corresponding values that are set +command. +Aliases have names and corresponding values that are set and unset using the \fBalias\fP and \fBunalias\fP builtin commands (see .SM -.B SHELL BUILTIN COMMANDS +.B "SHELL BUILTIN COMMANDS" below). .PP 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 +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 characters following the word before @@ -4654,8 +4841,8 @@ does not try to recursively expand the replacement text. .PP If the last character of the alias value is a .IR blank , -then the next command -word following the alias is also checked for alias expansion. +the shell checks the next command +word following the alias for alias expansion. .PP Aliases are created and listed with the .B alias @@ -4667,7 +4854,7 @@ There is no mechanism for using arguments in the replacement text. If arguments are needed, use a shell function (see .SM .B FUNCTIONS -below). +below) instead. .PP Aliases are not expanded when the shell is not interactive, unless the @@ -4678,7 +4865,7 @@ shell option is set using .B shopt under .SM -\fBSHELL BUILTIN COMMANDS\fP +.B "SHELL BUILTIN COMMANDS" below). .PP The rules concerning the definition and use of aliases are @@ -4687,41 +4874,44 @@ somewhat confusing. 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 +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. +command does not take effect until the shell reads the next line of input. 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 +is itself a command. +As a consequence, aliases defined in a function are not available until after that -function is executed. To be safe, always put +function is executed. +To be safe, always put alias definitions on a separate line, and do not use .B alias in compound commands. .PP -For almost every purpose, aliases are superseded by -shell functions. +For almost every purpose, shell functions are preferable to aliases. .SH FUNCTIONS A shell function, defined as described above under .SM .BR "SHELL GRAMMAR" , 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. +the shell executes +the list of commands associated with that function name. Functions are executed in the context of the -current shell; no new process is created to interpret +calling shell; there is no new process created to interpret them (contrast this with the execution of a shell script). +.PP 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 \fB0\fP -is unchanged. +is updated to reflect the new positional parameters. +Special parameter \fB0\fP is unchanged. The first element of the .SM .B FUNCNAME @@ -4754,7 +4944,7 @@ and the trap is not inherited unless the \fB\-o errtrace\fP shell option has been enabled. .PP -Variables local to the function may be declared with the +Variables local to the function are declared with the .B local builtin command (\fIlocal variables\fP). Ordinarily, variables and their values @@ -4769,17 +4959,18 @@ Previous scopes consist of that function's caller and so on, back to the .Q global scope, where the shell is not executing any shell function. -Consequently, a local variable at the current scope is a variable +A local variable at the current scope is a variable declared using the \fBlocal\fP or \fBdeclare\fP builtins in the function that is currently executing. .PP Local variables .Q shadow -variables with the same name declared at -previous scopes. +variables with the same name declared at previous 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. +hides variables with the same name declared at previous scopes, +including global variables: references and assignments +refer to the local variable, leaving the variables +at previous scopes unmodified. When the function returns, the global variable is once again visible. .PP The shell uses \fIdynamic scoping\fP to control a variable's visibility @@ -4815,8 +5006,8 @@ variable with that name that had been shadowed will become visible (see below how the \fBlocalvar_unset\fP shell option changes this behavior). .PP The \fBFUNCNEST\fP variable, if set to a numeric value greater -than 0, defines a maximum function nesting level. Function -invocations that exceed the limit cause the entire command to +than 0, defines a maximum function nesting level. +Function invocations that exceed the limit cause the entire command to abort. .PP If the builtin command @@ -4824,6 +5015,10 @@ If the builtin command is executed in a function, the function completes and execution resumes with the next command after the function call. +If \fBreturn\fP is supplied a numeric argument, +that is the function's return status; otherwise the function's +return status is the exit status of the last command executed +before the \fBreturn\fP. Any command associated with the \fBRETURN\fP trap is executed before execution resumes. When a function completes, the values of the @@ -4832,13 +5027,15 @@ positional parameters and the special parameter are restored to the values they had prior to the function's execution. .PP -Function names and definitions may be listed with the +The .B \-f option to the .B declare or .B typeset -builtin commands. The +builtin commands +will list function names and definitions. +The .B \-F option to .B declare @@ -4854,20 +5051,26 @@ automatically have them defined with the option to the .B export builtin. -A function definition may be deleted using the \fB\-f\fP option to +The \fB\-f\fP option to the .B unset -builtin. +builtin will delete a function definition. .PP Functions may be recursive. The \fBFUNCNEST\fP variable may be used to limit the depth of the function call stack and restrict the number of function invocations. -By default, no limit is imposed on the number of recursive calls. +By default, \fBbash\fP imposes no limit on the number of recursive calls. .SH "ARITHMETIC EVALUATION" The shell allows arithmetic expressions to be evaluated, under -certain circumstances (see the \fBlet\fP and \fBdeclare\fP builtin -commands, the \fB((\fP compound command, and \fBArithmetic Expansion\fP). -Evaluation is done in fixed-width integers with no check for overflow, +certain circumstances +(see the \fBlet\fP and \fBdeclare\fP builtin commands, +the \fB((\fP compound command, +the arithmetic \fBfor\fP command, +the \fB[[\fP conditional command, +and \fBArithmetic Expansion\fP). +.PP +Evaluation is done in the largest fixed-width integers available, +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. @@ -4880,12 +5083,12 @@ The levels are listed in order of decreasing precedence. .B \fIid\fP++ \fIid\fP\-\- variable post-increment and post-decrement .TP -.B \- + -unary minus and plus -.TP .B ++\fIid\fP \-\-\fIid\fP variable pre-increment and pre-decrement .TP +.B \- + +unary minus and plus +.TP .B ! \*~ logical and bitwise negation .TP @@ -4936,8 +5139,12 @@ Shell variables are allowed as operands; parameter expansion is performed before the expression is evaluated. Within an expression, shell variables may also be referenced by name without using the parameter expansion syntax. +This means you can use "x", where \fIx\fP is a shell variable name, +in an arithmetic expression, and the shell will evaluate its value as +an expression and use the result. A shell variable that is null or unset evaluates to 0 when referenced -by name without using the parameter expansion syntax. +by name in an expression. +.PP The value of a variable is evaluated as an arithmetic expression when it is referenced, or when a variable which has been given the \fIinteger\fP attribute using \fBdeclare \-i\fP is assigned a value. @@ -4961,9 +5168,9 @@ If \fIbase\fP is less than or equal to 36, lowercase and uppercase letters may be used interchangeably to represent numbers between 10 and 35. .PP -Operators are evaluated in order of precedence. Sub-expressions in -parentheses are evaluated first and may override the precedence -rules above. +Operators are evaluated in precedence order. +Sub-expressions in parentheses are evaluated first +and may override the precedence rules above. .SH "CONDITIONAL EXPRESSIONS" Conditional expressions are used by the \fB[[\fP compound command and the \fBtest\fP and \fB[\fP builtin commands to test file attributes @@ -4972,7 +5179,12 @@ The \fBtest\fP and \fB[\fP commands determine their behavior based on the number of arguments; see the descriptions of those commands for any other command-specific actions. .PP -Expressions are formed from the following unary or binary primaries. +Expressions are formed from the unary or binary primaries listed below. +Unary expressions are often used to examine the status of a file +or shell variable. +Binary operators are used for string, numeric, and file attribute +comparisons. +.PP \fBBash\fP handles several filenames specially when they are used in expressions. If the operating system on which \fBbash\fP is running provides these @@ -5055,7 +5267,8 @@ True if \fIfile\fP exists and is owned by the effective group id. True if \fIfile\fP exists and is a symbolic link. .TP .B \-N \fIfile\fP -True if \fIfile\fP exists and has been modified since it was last read. +True if \fIfile\fP exists and has been modified since it was last +accessed. .TP .B \-O \fIfile\fP True if \fIfile\fP exists and is owned by the effective user id. @@ -5063,18 +5276,6 @@ True if \fIfile\fP exists and is owned by the effective user id. .B \-S \fIfile\fP True if \fIfile\fP exists and is a socket. .TP -\fIfile1\fP \fB\-ef\fP \fIfile2\fP -True if \fIfile1\fP and \fIfile2\fP refer to the same device and -inode numbers. -.TP -\fIfile1\fP \-\fBnt\fP \fIfile2\fP -True if \fIfile1\fP is newer (according to modification date) than \fIfile2\fP, -or if \fIfile1\fP exists and \fPfile2\fP does not. -.TP -\fIfile1\fP \-\fBot\fP \fIfile2\fP -True if \fIfile1\fP is older than \fIfile2\fP, or if \fIfile2\fP exists -and \fIfile1\fP does not. -.TP .B \-o \fIoptname\fP True if the shell option .I optname @@ -5105,21 +5306,19 @@ is set and is a name reference. True if the length of \fIstring\fP is zero. .TP \fIstring\fP -.PD 0 .TP .B \-n \fIstring\fP -.PD True if the length of .I string is non-zero. +.PD .TP \fIstring1\fP \fB==\fP \fIstring2\fP .PD 0 .TP \fIstring1\fP \fB=\fP \fIstring2\fP -.PD -True if the strings are equal. \fB=\fP should be used -with the \fBtest\fP command for POSIX conformance. +True if the strings are equal. +\fB=\fP should be used with the \fBtest\fP command for POSIX conformance. When used with the \fB[[\fP command, this performs pattern matching as described above (\fBCompound Commands\fP). .TP @@ -5131,6 +5330,21 @@ True if \fIstring1\fP sorts before \fIstring2\fP lexicographically. .TP \fIstring1\fP \fB>\fP \fIstring2\fP True if \fIstring1\fP sorts after \fIstring2\fP lexicographically. +.PD +.TP +.PD 0 +\fIfile1\fP \fB\-ef\fP \fIfile2\fP +True if \fIfile1\fP and \fIfile2\fP refer to the same device and +inode numbers. +.TP +\fIfile1\fP \-\fBnt\fP \fIfile2\fP +True if \fIfile1\fP is newer (according to modification date) than \fIfile2\fP, +or if \fIfile1\fP exists and \fPfile2\fP does not. +.TP +\fIfile1\fP \-\fBot\fP \fIfile2\fP +True if \fIfile1\fP is older than \fIfile2\fP, or if \fIfile2\fP exists +and \fIfile1\fP does not. +.PD .TP .I \fIarg1\fP \fBOP\fP \fIarg2\fP .SM @@ -5146,21 +5360,21 @@ or These arithmetic binary operators return true if \fIarg1\fP is equal to, not equal to, less than, less than or equal to, greater than, or greater than or equal to \fIarg2\fP, respectively. -.I Arg1 +.I arg1 and .I arg2 may be positive or negative integers. When used with the \fB[[\fP command, -.I Arg1 +.I arg1 and -.I Arg2 +.I arg2 are evaluated as arithmetic expressions (see .SM .B "ARITHMETIC EVALUATION" above). .PD .SH "SIMPLE COMMAND EXPANSION" -When a simple command is executed, the shell performs the following +When the shell executes a simple command, it performs the following expansions, assignments, and redirections, from left to right, in the following order. .IP 1. @@ -5169,7 +5383,8 @@ preceding the command name) and redirections are saved for later processing. .IP 2. The words that are not variable assignments or redirections are -expanded. If any words remain after expansion, the first word +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. .IP 3. @@ -5192,27 +5407,31 @@ If any of the assignments attempts to assign a value to a readonly variable, an error occurs, and the command exits with a non-zero status. .PP If no command name results, redirections are performed, but do not -affect the current shell environment. A redirection error causes the -command to exit with a non-zero status. +affect the current shell environment. +A redirection error causes the command to exit with a non-zero status. .PP If there is a command name left after expansion, execution proceeds as -described below. Otherwise, the command exits. If one of the expansions -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. +described below. +Otherwise, the command exits. +If one of the expansions 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 zero status. .SH "COMMAND EXECUTION" 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 following actions. .PP 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 +locate it. +If there exists a shell function by that name, that function is +invoked as described above in .SM .BR FUNCTIONS . 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. +it in the list of shell builtins. +If a match is found, that builtin is invoked. .PP If the name is neither a shell function nor a builtin, and contains no slashes, @@ -5229,10 +5448,10 @@ under .SM .B "SHELL BUILTIN COMMANDS" below). -A full search of the directories in +Bash performs a full search of the directories in .SM .B PATH -is performed only if the command is not found in the hash table. +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 \fBcommand_not_found_handle\fP. If that function exists, it is invoked in a separate execution environment @@ -5250,10 +5469,10 @@ to the command are set to the arguments given, if any. .PP 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 \fIshell script\fP, a file -containing shell commands, and the shell creates a -new instance of itself -to execute it. +a \fIshell script\fP, a file containing shell commands, +and the shell creates a new instance of itself to execute it. +Bash tries to determine whether the file is a text file or a binary, +and will not execute files it determines to be binaries. 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 @@ -5261,15 +5480,17 @@ commands remembered by the parent (see .B hash below under .SM -\fBSHELL BUILTIN COMMANDS\fP) +.B "SHELL BUILTIN COMMANDS" are retained by the child. .PP If the program is a file beginning with .BR #! , the remainder of the first line specifies an interpreter -for the program. The shell executes the +for the program. +The shell executes the specified interpreter on operating systems that do not -handle this executable format themselves. The arguments to the +handle this executable 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 the command @@ -5335,9 +5556,12 @@ Command substitution, commands grouped with parentheses, and asynchronous commands are invoked in a subshell environment that is a duplicate of the shell environment, except that traps caught by the shell are reset to the values -that the shell inherited from its parent at invocation. Builtin -commands that are invoked as part of a pipeline are also executed in a -subshell environment. Changes made to the subshell environment +that the shell inherited from its parent at invocation. +Builtin commands that are invoked as part of a pipeline, +except possibly in the last element depending on the value of the +\fBlastpipe\fP shell option, +are also executed in a subshell environment. +Changes made to the subshell environment cannot affect the shell's execution environment. .PP When the shell is in @@ -5367,33 +5591,42 @@ On invocation, the shell scans its own environment and creates a parameter for each name found, automatically marking it for .I export -to child processes. Executed commands inherit the environment. +to child processes. +Executed commands inherit the environment. The -.B export +.BR export , +.BR "declare \-x" , and -.B declare \-x -commands allow parameters and functions to be added to and -deleted from the environment. If the value of a parameter -in the environment is modified, the new value becomes part -of the environment, replacing the old. The environment +.B unset +commands modify the environment by +adding and deleting parameters and functions. +If the value of a parameter +in the environment is modified, the new value automatically +becomes part of the environment, replacing the old. +The environment inherited by any executed command consists of the shell's initial environment, whose values may be modified in the shell, less any pairs removed by the .B unset -command, plus any additions via the +or +.B "export \-n" +commands, plus any additions via the .B export and -.B declare \-x +.B "declare \-x" commands. .PP -The environment for any -.I simple command -or function may be augmented temporarily by prefixing it with -parameter assignments, as described above in +If any parameter assignments, as described above in .SM -.BR PARAMETERS . +.BR PARAMETERS , +appear before a +.IR "simple command" , +the variable assignments are part of that command's environment +for as long as it executes. These assignment statements affect only the environment seen by that command. +If these assignments precede a call to a shell function, the variables +are local to the function and exported to that function's children. .PP If the .B \-k @@ -5408,20 +5641,23 @@ When .B bash invokes an external command, the variable .B _ -is set to the full filename of the command and passed to that +is set to the full pathname of the command and passed to that command in its environment. .SH "EXIT STATUS" The exit status of an executed command is the value returned by the -\fIwaitpid\fP system call or equivalent function. Exit statuses -fall between 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. +\fIwaitpid\fP system call or equivalent function. +Exit statuses fall between 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. .PP 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. +zero exit status has succeeded. +So while an exit status of zero indicates success, a non-zero +exit status indicates failure. +.PP When a command terminates on a fatal signal \fIN\fP, \fBbash\fP uses the value of 128+\fIN\fP as the exit status. .PP @@ -5443,17 +5679,21 @@ parameter $?. .PP \fBBash\fP itself returns the exit status of the last command executed, unless a syntax error occurs, in which case it exits -with a non-zero value. See also the \fBexit\fP builtin -command below. +with a non-zero value. +See also the \fBexit\fP builtin command below. .SH SIGNALS When \fBbash\fP is interactive, in the absence of any traps, it ignores .SM .B SIGTERM (so that \fBkill 0\fP does not kill an interactive shell), -and +and catches and handles .SM .B SIGINT -is caught and handled (so that the \fBwait\fP builtin is interruptible). +(so that the \fBwait\fP builtin is interruptible). +When \fBbash\fP receives +.SM +.BR SIGINT , +it breaks out of any executing loops. In all cases, \fBbash\fP ignores .SM .BR SIGQUIT . @@ -5468,8 +5708,13 @@ and .SM .BR SIGTSTP . .PP -Non-builtin commands run by \fBbash\fP have signal handlers -set to the values inherited by the shell from its parent. +The \fBtrap\fP builtin modifies the shell's signal handling, as +described below. +.PP +Non-builtin commands \fBbash\fP executes have signal handlers +set to the values inherited by the shell from its parent, +unless \fBtrap\fP sets them to be ignored, in which case the child +process will ignore them as well. When job control is not in effect, asynchronous commands ignore .SM @@ -5495,21 +5740,24 @@ Before exiting, an interactive shell resends the .SM .B SIGHUP to all jobs, running or stopped. -Stopped jobs are sent +The shell sends .SM .B SIGCONT -to ensure that they receive the +to stopped jobs to ensure that they receive the .SM -.BR SIGHUP . +.B SIGHUP +(see +.SM +.B "JOB CONTROL" +below for more information about running and stopped jobs). To prevent the shell from -sending the signal to a particular job, it should be removed from the +sending the signal to a particular job, remove it from the jobs table with the .B disown builtin (see .SM .B "SHELL BUILTIN COMMANDS" -below) or marked -to not receive +below) or mark it not to receive .SM .B SIGHUP using @@ -5517,7 +5765,7 @@ using .PP If the .B huponexit -shell option has been set with +shell option has been set using .BR shopt , .B bash sends a @@ -5528,10 +5776,11 @@ to all jobs when an interactive login shell exits. If \fBbash\fP 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 command completes. -When \fBbash\fP is waiting for an asynchronous command via the \fBwait\fP -builtin, the reception of a signal for which a trap has been set will -cause the \fBwait\fP builtin to return immediately with an exit status -greater than 128, immediately after which the trap is executed. +If \fBbash\fP is waiting for an asynchronous command via the \fBwait\fP +builtin, +and it receives a signal for which a trap has been set, +the \fBwait\fP builtin will return immediately with an exit status +greater than 128, immediately after which the shell executes the trap. .PP When job control is not enabled, and \fBbash\fP is waiting for a foreground command to complete, the shell receives keyboard-generated signals @@ -5545,6 +5794,10 @@ same process group as the terminal, and \fB\*^C\fP sends .SM .B SIGINT to all processes in that process group. +See +.SM +.B "JOB CONTROL" +below for more information about process groups. .PP When \fBbash\fP is running without job control enabled and receives .SM @@ -5782,89 +6035,102 @@ when it is ready to read a command, and the secondary prompt .SM .B PS2 when it needs more input to complete a command. +.PP +.B Bash +examines the value of the array variable \fBPROMPT_COMMAND\fP just before +printing each primary prompt. +If any elements in \fBPROMPT_COMMAND\fP are set and non-null, Bash +executes each value, in numeric order, +just as if it had been typed on the command line. .B Bash displays .SM .B PS0 after it reads a command but before executing it. +.PP .B Bash displays .SM .B PS4 as described above before tracing each command when the \fB\-x\fP option is enabled. +.PP .B Bash -allows these prompt strings to be customized by inserting a number of +allows the prompt strings +\fBPS0\fP, \fBPS1\fP, \fBPS2\fP, and \fBPS4\fP, +to be customized by inserting a number of backslash-escaped special characters that are decoded as follows: .RS -.PD 0 .TP .B \ea -an ASCII bell character (07) +An ASCII bell character (07). +.PD 0 .TP .B \ed -the date in +The date in .Q "Weekday Month Date" format (e.g., -.Q "Tue May 26" ) +.Q "Tue May 26" ). .TP .B \eD{\fIformat\fP} -the \fIformat\fP is passed to +The \fIformat\fP is passed to .IR strftime (3) and the result is inserted into the prompt string; an empty \fIformat\fP results in a locale-specific -time representation. The braces are required +time representation. +The braces are required. .TP .B \ee -an ASCII escape character (033) +An ASCII escape character (033). .TP .B \eh -the hostname up to the first -.Q . +The hostname up to the first +.Q . . .TP .B \eH -the hostname +The hostname. .TP .B \ej -the number of jobs currently managed by the shell +The number of jobs currently managed by the shell. .TP .B \el -the basename of the shell's terminal device name +The basename of the shell's terminal device name (e.g., +.Q ttys0 ). .TP .B \en -newline +A newline. .TP .B \er -carriage return +A carriage return. .TP .B \es -the name of the shell, the basename of +The name of the shell: the basename of .B $0 -(the portion following the final slash) +(the portion following the final slash). .TP .B \et -the current time in 24-hour HH:MM:SS format +The current time in 24-hour HH:MM:SS format. .TP .B \eT -the current time in 12-hour HH:MM:SS format +The current time in 12-hour HH:MM:SS format. .TP .B \e@ -the current time in 12-hour am/pm format +The current time in 12-hour am/pm format. .TP .B \eA -the current time in 24-hour HH:MM format +The current time in 24-hour HH:MM format. .TP .B \eu -the username of the current user +The username of the current user. .TP .B \ev -the version of \fBbash\fP (e.g., 2.00) +The \fBbash\fP version (e.g., 2.00) .TP .B \eV -the release of \fBbash\fP, version + patch level (e.g., 2.00.0) +The \fBbash\fP release, version + patch level (e.g., 2.00.0) .TP .B \ew -the value of the \fBPWD\fP shell variable (\fB$PWD\fP), +The value of the \fBPWD\fP shell variable (\fB$PWD\fP), with .SM .B $HOME @@ -5872,39 +6138,39 @@ abbreviated with a tilde (uses the value of the .SM .B PROMPT_DIRTRIM -variable) +variable). .TP .B \eW -the basename of \fB$PWD\fP, +The basename of \fB$PWD\fP, with .SM .B $HOME -abbreviated with a tilde +abbreviated with a tilde. .TP .B \e! -the history number of this command +The history number of this command. .TP .B \e# -the command number of this command +The command number of this command. .TP .B \e$ -if the effective UID is 0, a +If the effective UID is 0, a .BR # , otherwise a -.B $ +.BR $ . .TP .B \e\fInnn\fP -the character corresponding to the octal number \fInnn\fP +The character corresponding to the octal number \fInnn\fP. .TP .B \e\e -a backslash +A backslash. .TP .B \e[ -begin a sequence of non-printing characters, which could be used to -embed a terminal control sequence into the prompt +Begin a sequence of non-printing characters, which could be used to +embed a terminal control sequence into the prompt. .TP .B \e] -end a sequence of non-printing characters +End a sequence of non-printing characters. .PD .RE .PP @@ -5933,7 +6199,7 @@ word expansion. This is the library that handles reading input when using an interactive shell, unless the .B \-\-noediting -option is given at shell invocation. +option is supplied at shell invocation. Line editing is also used when using the \fB\-e\fP option to the \fBread\fP builtin. By default, the line editing commands are similar to those of Emacs. @@ -5946,7 +6212,7 @@ options to the .B set builtin (see .SM -.B SHELL BUILTIN COMMANDS +.B "SHELL BUILTIN COMMANDS" below). To turn off line editing after the shell is running, use the .B +o emacs @@ -6213,7 +6479,7 @@ option to the .B set builtin command (see .SM -.B SHELL BUILTIN COMMANDS +.B "SHELL BUILTIN COMMANDS" below). .SS "Readline Variables" Readline has variables that can be used to further customize its @@ -6226,7 +6492,7 @@ file with a statement of the form .RE or using the \fBbind\fP builtin command (see .SM -.B SHELL BUILTIN COMMANDS +.B "SHELL BUILTIN COMMANDS" below). .PP Except where noted, readline variables can take the values @@ -7435,22 +7701,22 @@ Display version information about the current instance of .BR bash . .PD .SS Programmable Completion -When word completion is attempted for an argument to a command for +When a user attempts word completion for an argument to a command for which a completion specification (a \fIcompspec\fP) has been defined using the \fBcomplete\fP builtin (see .SM .B "SHELL BUILTIN COMMANDS" -below), the programmable completion facilities are invoked. +below), Readline invokes the programmable completion facilities. .PP First, the command name is identified. +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 the empty string (completion attempted at the beginning of an empty line), any compspec defined with the \fB\-E\fP option to \fBcomplete\fP 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 +If no compspec is found for the full pathname, completion attempts 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 \fB\-D\fP option to \fBcomplete\fP is used as the default. @@ -7539,7 +7805,8 @@ the matches. .PP Any function specified with \fB\-F\fP is invoked first. The function may use any of the shell facilities, including the -\fBcompgen\fP builtin described below, to generate the matches. +\fBcompgen\fP and \fBcompopt\fP +builtins described below, to generate the matches. It must put the possible completions in the .SM .B COMPREPLY @@ -7550,6 +7817,7 @@ in an environment 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. +These are added to the set of possible completions. .PP After all of the possible completions are generated, any filter specified with the \fB\-X\fP option is applied to the list. @@ -7567,8 +7835,7 @@ of alphabetic characters. .PP Finally, any prefix and suffix specified with the \fB\-P\fP and \fB\-S\fP 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. +returned to \fBreadline\fP as the list of possible completions. .PP If the previously-applied actions do not generate any matches, and the \fB\-o dirnames\fP option was supplied to \fBcomplete\fP when the @@ -7580,11 +7847,12 @@ matches are added to the results of the other actions. .PP 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 \fBbash\fP completions are not attempted, and the readline -default of filename completion is disabled. +The default \fBbash\fP completions and the \fBreadline\fP +default of filename completion are disabled. If the \fB\-o bashdefault\fP option was supplied to \fBcomplete\fP when -the compspec was defined, the \fBbash\fP default completions are attempted -if the compspec generates no matches. +the compspec was defined, +if the compspec generates no matches, +the \fBbash\fP default completions are attempted. If the \fB\-o default\fP option was supplied to \fBcomplete\fP when the compspec was defined, readline's default completion will be performed if the compspec (and, if attempted, the default \fBbash\fP completions) @@ -7596,18 +7864,19 @@ to completed names which are symbolic links to directories, subject to the value of the \fBmark\-directories\fP readline variable, regardless of the setting of the \fBmark-symlinked\-directories\fP readline variable. .PP -There is some support for dynamically modifying completions. This is -most useful when used in combination with a default completion specified -with \fBcomplete \-D\fP. +There is some support for dynamically modifying completions. +This is most useful when used in combination with a default completion +specified with \fBcomplete \-D\fP. 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 +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 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 than -being loaded all at once. +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. .PP For instance, assuming that there is a library of compspecs, each kept in a file corresponding to the name of the command, the following default @@ -7651,7 +7920,8 @@ number of commands to save in a history list. The text of the last .SM .B HISTSIZE -commands (default 500) is saved. The shell +commands (default 500) is saved. +The shell stores each command in the history list prior to parameter and variable expansion (see .SM @@ -7664,20 +7934,21 @@ and .SM .BR HISTCONTROL . .PP -On startup, the history is initialized from the file named by -the variable +On startup, \fBbash\fP initializes the history list +by reading history entries from the +the file named by the .SM .B HISTFILE -(default \fI\*~/.bash_history\fP). -The file named by the value of -.SM -.B HISTFILE -is truncated, if necessary, to contain no more than -the number of lines specified by the value of +variable (default \fI\*~/.bash_history\fP). +That file is referred to as the \fIhistory file\fP. +The history file is truncated, if necessary, +to contain no more than the number of history entries +specified by the value of .SM .BR HISTFILESIZE . If \fBHISTFILESIZE\fP is unset, or set to null, a non-numeric value, or a numeric value less than zero, the history file is not truncated. +.PP 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 line. @@ -7685,10 +7956,13 @@ These timestamps are optionally displayed depending on the value of the .SM .B HISTTIMEFORMAT variable. -When a shell with history enabled exits, the last +When present, history timestamps delimit history entries, making +multi-line entries possible. +.PP +When a shell with history enabled exits, \fBbash\fP copies the last .SM .B $HISTSIZE -lines are copied from the history list to +entries from the history list to .SM .BR $HISTFILE . If the @@ -7699,7 +7973,7 @@ shell option is enabled under .SM .B "SHELL BUILTIN COMMANDS" -below), the lines are appended to the history file, +below), \fBbash\fP appends the entries to the history file, otherwise the history file is overwritten. If .SM @@ -7714,40 +7988,43 @@ with the history 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 +As above, when using +.SM +.BR HISTTIMEFORMAT , +the timestamps delimit multi-line history entries. +After saving the history, \fBbash\fP truncates the history file to contain no more than .SM .B HISTFILESIZE -lines. If +lines. +If .SM .B HISTFILESIZE is unset, or set to null, a non-numeric value, or a numeric value less than zero, the history file is not truncated. .PP -The builtin command +The .B fc -(see +builtin command (see .SM -.B SHELL BUILTIN COMMANDS -below) may be used to list or edit and re-execute a portion of -the history list. +.B "SHELL BUILTIN COMMANDS" +below) will list or edit and re-execute a portion of the history list. The .B history -builtin may be used to display or modify the history list and +builtin can display or modify the history list and manipulate the history file. When using command-line editing, search commands are available in each editing mode that provide access to the history list. .PP -The shell allows control over which commands are saved on the history -list. The +The shell allows control over which commands are saved on the history list. +The .SM .B HISTCONTROL and .SM .B HISTIGNORE -variables are used to cause the shell to save only a subset of the -commands entered. +variables are used to save only a subset of the commands entered. The .B cmdhist shell option, if enabled, causes the shell to attempt to save each @@ -7755,8 +8032,9 @@ line of a multi-line command in the same history entry, adding semicolons where necessary to preserve syntactic correctness. The .B lithist -shell option causes the shell to save the command with embedded newlines -instead of semicolons. See the description of the +shell option modifies \fBcmdhist\fP by saving +the command with embedded newlines instead of semicolons. +See the description of the .B shopt builtin below under .SM @@ -7766,17 +8044,20 @@ for information on setting and unsetting shell options. The shell supports a history expansion feature that is similar to the history expansion in .BR csh . -This section describes what syntax features are available. This -feature is enabled by default for interactive shells, and can be -disabled using the +This section describes what syntax features are available. +.PP +History expansion is enabled by default for interactive shells, +and can be disabled using the .B +H option to the .B set builtin command (see .SM -.B SHELL BUILTIN COMMANDS -below). Non-interactive shells do not perform history expansion -by default. +.B "SHELL BUILTIN COMMANDS" +below). +Non-interactive shells do not perform history expansion by default, +but it can be enabled with +.Q "set -H" . .PP History expansions introduce words from the history list into the input stream, making it easy to repeat commands, insert the @@ -7785,16 +8066,18 @@ fix errors in previous commands quickly. .PP 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 -account. +on each line individually. +The shell attempts to inform the history +expansion functions about quoting still in effect from previous lines. +.PP It takes place in two parts. -The first is to determine which line from the history list +The first is to determine which history list entry to use during substitution. -The second is to select portions of that line for inclusion into +The second is to select portions of that entry to include into the current one. -The line selected from the history is the \fIevent\fP, -and the portions of that line that are acted upon are \fIwords\fP. -The line is broken into words in the same fashion as when reading input, +The entry selected from the history is the \fIevent\fP, +and the portions of that entry that are acted upon are \fIwords\fP. +The entry is split into words in the same fashion as when reading input, so that several \fImetacharacter\fP-separated words surrounded by quotes are considered one word. The \fIevent designator\fP selects the event, the optional @@ -7822,19 +8105,20 @@ There is a special abbreviation for substitution, active when the is the first character on the line. It selects the previous history entry, using an event designator equivalent to \fB!!\fP, -and substitutes one string for another in that line. +and substitutes one string for another in that entry. It is described below under \fBEvent Designators\fP. This is the only history expansion that does not begin with the history expansion character. .PP Several shell options settable with the .B shopt -builtin may be used to tailor the behavior of history expansion. +builtin will modify history expansion behavior +(see the description of the +.B shopt +builtin below).and If the .B histverify -shell option is enabled (see the description of the -.B shopt -builtin below), and +shell option is enabled, and .B readline is being used, history substitutions are not immediately passed to the shell parser. @@ -7845,21 +8129,22 @@ If .B readline is being used, and the .B histreedit -shell option is enabled, a failed history substitution will be reloaded +shell option is enabled, a failed history substitution is reloaded into the .B readline editing buffer for correction. +.PP The .B \-p option to the .B history -builtin command may be used to see what a history expansion will +builtin command shows what a history expansion will do before using it. The .B \-s option to the .B history -builtin may be used to add commands to the end of the history list +builtin will add commands to the end of the history list without actually executing them, so that they are available for subsequent recall. .PP @@ -7872,8 +8157,7 @@ The shell uses the history comment character to mark history timestamps when writing the history file. .SS Event Designators -An event designator is a reference to a command line entry in the -history list. +An event designator is a reference to an entry in the history list. The event designator consists of the portion of the word beginning with the history expansion character and ending with the word designator if present, @@ -7887,19 +8171,20 @@ position in the history list. Start a history substitution, except when followed by a .BR blank , newline, carriage return, = -or ( (when the \fBextglob\fP shell option is enabled using -the \fBshopt\fP builtin). +or, when the \fBextglob\fP shell option is enabled using +the \fBshopt\fP builtin, (. .TP .B !\fIn\fP -Refer to command line +Refer to history list entry .IR n . .TP .B !\-\fIn\fP -Refer to the current command minus +Refer to the current entry minus .IR n . .TP .B !! -Refer to the previous command. This is a synonym for +Refer to the previous command. +This is a synonym for .Q !\-1 . .TP .B !\fIstring\fP @@ -7914,11 +8199,13 @@ history list containing The trailing \fB?\fP may be omitted if .I string is followed immediately by a newline. -If \fIstring\fP is missing, the string from the most recent search is used; +If \fIstring\fP is missing, this uses +the string from the most recent search; it is an error if there is no previous search string. .TP .B \d\s+2\*^\s-2\u\fIstring1\fP\d\s+2\*^\s-2\u\fIstring2\fP\d\s+2\*^\s-2\u -Quick substitution. Repeat the previous command, replacing +Quick substitution. +Repeat the previous command, replacing .I string1 with .IR string2 . @@ -7931,6 +8218,8 @@ The entire command line typed so far. .PD .SS Word Designators Word designators are used to select desired words from the event. +They are optional; if the word designator isn't supplied, the history +expansion uses the entire event. A .B : separates the event specification from the word designator. @@ -7948,17 +8237,18 @@ Words are inserted into the current line separated by single spaces. .PD 0 .TP .B 0 (zero) -The zeroth word. For the shell, this is the command -word. +The zeroth word. +For the shell, this is the command word. .TP .I n The \fIn\fPth word. .TP .B \*^ -The first argument. That is, word 1. +The first argument: word 1. .TP .B $ -The last word. This is usually the last argument, but will expand to the +The last word. +This is usually the last argument, but will expand to the zeroth word if there is only one word in the line. .TP .B % @@ -7982,8 +8272,8 @@ This is a synonym for .Q \fI1\-$\fP . 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. +if there is just one word in the event; +it expands to the empty string in this case. .TP .B x* Abbreviates \fIx\-$\fP. @@ -7994,10 +8284,10 @@ If \fBx\fP is missing, it defaults to 0. .PD .PP If a word designator is supplied without an event specification, the -previous command is used as the event. +previous command is used as the event, equivalent to \fB!!\fP. .SS Modifiers -After the optional word designator, there may appear a sequence of -one or more of the following modifiers, each preceded by a +After the optional word designator, the expansion may include a +sequence of one or more of the following modifiers, each preceded by a .Q : . These modify, or edit, the word or words selected from the history event. .PP @@ -8028,8 +8318,8 @@ Quote the substituted words as with but break into words at .B blanks and newlines. -The \fBq\fP and \fBx\fP modifiers are mutually exclusive; the last one -supplied is used. +The \fBq\fP and \fBx\fP modifiers are mutually exclusive; +expansion uses the last one supplied. .TP .B s/\fIold\fP/\fInew\fP/ Substitute @@ -8040,13 +8330,13 @@ 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 event line. -The delimiter may be quoted in +A single backslash will quote the delimiter in .I old and -.I new -with a single backslash. If & appears in +.IR new . +If & appears in .IR new , -it is replaced by +it is replaced with .IR old . A single backslash will quote the &. If @@ -8130,6 +8420,7 @@ The \fB\&.\| \fP command (\fBsource\fP) reads and execute commands from in the current shell environment and returns the exit status of the last command executed from .IR filename . +.IP If \fIfilename\fP does not contain a slash, \fB\&.\| \fP searchs for it. If the \fB\-p\fP option is supplied, \fB\&.\| \fP treats \fIpath\fP as a colon-separated list of directories in which to find \fIfilename\fP; @@ -8140,7 +8431,7 @@ to find the directory containing .IR filename . \fIfilename\fP does not need to be executable. When \fBbash\fP is not in \fIposix mode\fP, it searches -the current directory if no file is found in +the current directory if \fIfilename\fP is not found in .SM .BR PATH , but does not search the current directory if \fB\-p\fP is supplied. @@ -8151,33 +8442,37 @@ option to the builtin command is turned off, \fB\&.\| \fP does not search .SM .BR PATH . +.IP If any \fIarguments\fP are supplied, they become the positional parameters when \fIfilename\fP is executed. Otherwise the positional parameters are unchanged. +.IP If the \fB\-T\fP option is enabled, \fB.\fP inherits any trap on \fBDEBUG\fP; if it is not, any \fBDEBUG\fP trap string is saved and restored around the call to \fB.\fP, and \fB.\fP unsets the \fBDEBUG\fP trap while it executes. If \fB\-T\fP is not set, and the sourced file changes -the \fBDEBUG\fP trap, the new value is retained when \fB.\fP completes. -The return status is the status of the last command exited within -the script (0 if no commands are executed), and false if +the \fBDEBUG\fP trap, the new value persists after \fB.\fP completes. +The return status is the status of the last command executed from +\fIfilename\fP (0 if no commands are executed), and non-zero if .I filename is not found or cannot be read. .TP \fBalias\fP [\fB\-p\fP] [\fIname\fP[=\fIvalue\fP] .\|.\|.] -\fBAlias\fP with no arguments or with the +With no arguments or with the .B \-p -option prints the list of aliases in the form +option,\fBalias\fP prints the list of aliases in the form \fBalias\fP \fIname\fP=\fIvalue\fP on standard output. -When arguments are supplied, an alias is defined for +When arguments are supplied, define an alias for each \fIname\fP whose \fIvalue\fP is given. A trailing space in \fIvalue\fP causes the next word to be -checked for alias substitution when the alias is expanded. +checked for alias substitution when the alias is expanded +during command parsing. For each \fIname\fP in the argument list for which no \fIvalue\fP -is supplied, the name and value of the alias is printed. -\fBAlias\fP returns true unless a \fIname\fP is given for which -no alias has been defined. +is supplied, print the name and value of the alias \fIname\fP. +\fBalias\fP returns true unless a \fIname\fP is given +(without a corresponding =\fIvalue\fP) +for which no alias has been defined. .TP \fBbg\fP [\fIjobspec\fP .\|.\|.] Resume each suspended job \fIjobspec\fP in the background, as if it @@ -8213,10 +8508,11 @@ Display current .B readline key and function bindings, bind a key sequence to a .B readline -function or macro, or set a +function or macro +or to a shell command, or set a .B readline variable. -Each non-option argument is a command as it would appear in a +Each non-option argument is a key binding or command as it would appear in a .B readline initialization file such as .IR .inputrc , @@ -8242,16 +8538,18 @@ names are \fIemacs, emacs\-standard, emacs\-meta, emacs\-ctlx, vi, vi\-move, vi\-command\fP, and .IR vi\-insert . -\fIvi\fP is equivalent to \fIvi\-command\fP (\fIvi\-move\fP is also -a synonym); \fIemacs\fP is -equivalent to \fIemacs\-standard\fP. +\fIvi\fP is equivalent to \fIvi\-command\fP +(\fIvi\-move\fP is also a synonym); +\fIemacs\fP is equivalent to \fIemacs\-standard\fP. .TP .B \-l List the names of all \fBreadline\fP functions. .TP .B \-p Display \fBreadline\fP function names and bindings in such a way -that they can be re-read. +that they can be +used as an argument to a subsequent +\fBbind\fP command or in a \fBreadline\fP initialization file. If arguments remain after option processing, \fBbind\fP treats them as readline command names and restricts output to those names. .TP @@ -8262,7 +8560,9 @@ them as readline command names and restricts output to those names. .TP .B \-s Display \fBreadline\fP key sequences bound to macros and the strings -they output in such a way that they can be re-read. +they output in such a way that they can be used +as an argument to a subsequent \fBbind\fP command +or in a \fBreadline\fP initialization file. .TP .B \-S Display \fBreadline\fP key sequences bound to macros and the strings @@ -8270,7 +8570,9 @@ they output. .TP .B \-v Display \fBreadline\fP variable names and values in such a way that they -can be re-read. +can be +used as an argument to a subsequent +\fBbind\fP command or in a \fBreadline\fP initialization file. .TP .B \-V List current \fBreadline\fP variable names and values. @@ -8279,10 +8581,10 @@ List current \fBreadline\fP variable names and values. Read key bindings from \fIfilename\fP. .TP .B \-q \fIfunction\fP -Query about which keys invoke the named \fIfunction\fP. +Display key sequences that invoke the named \fBreadline\fP \fIfunction\fP. .TP .B \-u \fIfunction\fP -Unbind all keys bound to the named \fIfunction\fP. +Unbind all key sequences bound to the named \fBreadline\fP \fIfunction\fP. .TP .B \-r \fIkeyseq\fP Remove any current binding for \fIkeyseq\fP. @@ -8298,7 +8600,7 @@ special backslash-escapes in \fIshell\-command\fP before saving it. If the separator is a colon, any enclosing double quotes are optional, and \fBreadline\fP does not expand the command string before saving it. Since the entire key binding expression must be a single argument, it -should be enclosed in quotes. +should be enclosed in single quotes. When \fIshell\-command\fP is executed, the shell sets the .SM .B READLINE_LINE @@ -8327,10 +8629,11 @@ those new values will be reflected in the editing state. .TP .B \-X List all key sequences bound to shell commands and the associated commands -in a format that can be reused as input. +in a format that can be reused as +an argument to a subsequent @code{bind} command. .PD .PP -The return value is 0 unless an unrecognized option is given or an +The return value is 0 unless an unrecognized option is supplied or an error occurred. .RE .TP @@ -8341,7 +8644,8 @@ Exit from within a .BR until , or .B select -loop. If \fIn\fP is specified, break \fIn\fP levels. +loop. +If \fIn\fP is specified, \fBbreak\fP exits \fIn\fP enclosing loops. .I n must be \(>= 1. If .I n @@ -8350,7 +8654,7 @@ are exited. The return value is 0 unless \fIn\fP is not greater than or equal to 1. .TP \fBbuiltin\fP \fIshell\-builtin\fP [\fIarguments\fP] -Execute the specified shell builtin, passing it +Execute the specified shell builtin \fIshell\-builtin\fP, passing it .IR arguments , and return its exit status. This is useful when defining a @@ -8364,13 +8668,15 @@ is not a shell builtin command. \fBcaller\fP [\fIexpr\fP] Returns the context of any active subroutine call (a shell function or a script executed with the \fB.\fP or \fBsource\fP builtins). +.IP Without \fIexpr\fP, \fBcaller\fP displays the line number and source filename of the current subroutine call. If a non-negative integer is supplied as \fIexpr\fP, \fBcaller\fP 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. +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. +.IP The return value is 0 unless the shell is not executing a subroutine call or \fIexpr\fP does not correspond to a valid position in the call stack. @@ -8380,12 +8686,11 @@ Change the current directory to \fIdir\fP. if \fIdir\fP is not supplied, the value of the .SM .B HOME -shell variable is the default. +shell variable is used as \fIdir\fP. The variable .SM .B CDPATH -defines the search path for the directory containing -.IR dir : +exists, \fBcd\fP uses it as a search path: the shell searches each directory name in .SM .B CDPATH @@ -8393,7 +8698,8 @@ for \fIdir\fP. Alternative directory names in .SM .B CDPATH -are separated by a colon (:). A null directory name in +are separated by a colon (:). +A null directory name in .SM .B CDPATH is the same as the current directory, i.e., @@ -8404,7 +8710,9 @@ begins with a slash (/), then .SM .B CDPATH -is not used. The +is not used. +.IP +The .B \-P option causes \fBcd\fP to use the physical directory structure by resolving symbolic links while traversing \fIdir\fP and @@ -8412,83 +8720,94 @@ before processing instances of \fI..\fP in \fIdir\fP (see also the .B \-P option to the .B set -builtin command); the +builtin command). +.IP +The .B \-L option forces symbolic links to be followed by resolving the link after processing instances of \fI..\fP in \fIdir\fP. If \fI..\fP appears in \fIdir\fP, it is processed by removing the immediately previous pathname component from \fIdir\fP, back to a slash or the beginning of \fIdir\fP. +.IP If the .B \-e option is supplied with .BR \-P , and the current working directory cannot be successfully determined -after a successful directory change, \fBcd\fP will return an unsuccessful +after a successful directory change, \fBcd\fP will return a non-zero status. +.IP On systems that support it, the \fB\-@\fP option presents the extended attributes associated with a file as a directory. +.IP An argument of .B \- is converted to .SM .B $OLDPWD -before the directory change is attempted. -If a non-empty directory name from +before attempting the directory change. +.IP +If \fBcd\fP uses a non-empty directory name from .SM -.B CDPATH -is used, or if -\fB\-\fP is the first argument, and the directory change is -successful, the absolute pathname of the new working directory is -written to the standard output. +.BR CDPATH, +or if \fB\-\fP is the first argument, and the directory change is +successful, \fBcd\fP writes the absolute pathname of the new +working directory to the standard output. +.IP If the directory change is successful, \fBcd\fP sets the value of the \fBPWD\fP environment variable to the new directory name, and sets the \fBOLDPWD\fP environment variable to the value of the current working directory before the change. +.IP The return value is true if the directory was successfully changed; false otherwise. .TP \fBcommand\fP [\fB\-pVv\fP] \fIcommand\fP [\fIarg\fP .\|.\|.] -Run +The \fBcommand\fP builtin runs .I command with .I args -suppressing the normal shell function lookup. +suppressing the normal shell function lookup for \fIcommand\fP. Only builtin commands or commands found in the .SM .B PATH -are executed. If the +named \fIcommand\fP are executed. +If the .B \-p -option is given, the search for +option is supplied, the search for .I command is performed using a default value for .SM .B PATH that is guaranteed to find all of the standard utilities. +.IP If either the .B \-V or .B \-v -option is supplied, a description of -.I command -is printed. The +option is supplied, \fBcommand\fP prints a description of +.IR command . +The .B \-v -option causes a single word indicating the command or filename +option displays a single word indicating the command or filename used to invoke -.I command -to be displayed; the +.IR command ; +the .B \-V option produces a more verbose description. +.IP If the .B \-V or .B \-v -option is supplied, the exit status is 0 if +option is supplied, the exit status is zero if .I command -was found, and 1 if not. If neither option is supplied and -an error occurred or +was found, and non-zero if not. +If neither option is supplied and an error occurred or .I command -cannot be found, the exit status is 127. Otherwise, the exit status of the +cannot be found, the exit status is 127. +Otherwise, the exit status of the .B command builtin is the exit status of .IR command . @@ -8505,9 +8824,11 @@ builtin with the exceptions of and .BR \-I , and write the matches to the standard output. +.IP If the \fB\-V\fP option is supplied, \fBcompgen\fP stores the generated completions into the indexed array variable \fIvarname\fP instead of writing them to the standard output. +.IP When using the \fB\-F\fP or \fB\-C\fP options, the various shell variables set by the programmable completion facilities, while available, will not have useful values. @@ -8516,7 +8837,7 @@ The matches will be generated in the same way as if the programmable completion code had generated them directly from a completion specification with the same flags. If \fIword\fP is specified, only those completions matching \fIword\fP -will be displayed. +will be displayed or stored. .IP The return value is true unless an invalid option is supplied, or no matches were generated. @@ -8614,8 +8935,8 @@ the end of the line. .TP 8 .B plusdirs After any matches defined by the compspec are generated, -directory name completion is attempted and any -matches are added to the results of the other actions. +attempt directory name completion and add any +matches to the results of the other actions. .RE .TP 8 \fB\-A\fP \fIaction\fP @@ -8713,29 +9034,30 @@ being completed, the second argument (\fB$2\fP) is the word being completed, and the third argument (\fB$3\fP) is the word preceding the word being completed on the current command line. -When it finishes, the possible completions are retrieved from the value +When \fIfunction\fP finishes, +the possible completions are retrieved from the value of the .SM .B COMPREPLY array variable. .TP 8 \fB\-G\fP \fIglobpat\fP -The pathname expansion pattern \fIglobpat\fP is expanded to generate +Expand the pathname expansion pattern \fIglobpat\fP to generate the possible completions. .TP 8 \fB\-P\fP \fIprefix\fP -\fIprefix\fP is added at the beginning of each possible completion +Add \fIprefix\fP to the beginning of each possible completion after all other options have been applied. .TP 8 \fB\-S\fP \fIsuffix\fP -\fIsuffix\fP is appended to each possible completion +Append \fIsuffix\fP to each possible completion after all other options have been applied. .TP 8 \fB\-W\fP \fIwordlist\fP The \fIwordlist\fP is split using the characters in the .SM .B IFS -special variable as delimiters, and each resultant word is expanded. +special variable as delimiters, and each resulting word is expanded. Shell quoting is honored within \fIwordlist\fP, in order to provide a mechanism for the words to contain shell metacharacters or characters @@ -8772,7 +9094,7 @@ an error occurs adding a completion specification. Modify completion options for each \fIname\fP according to the \fIoption\fPs, or for the currently-executing completion if no \fIname\fPs are supplied. -If no \fIoption\fPs are given, display the completion options for each +If no \fIoption\fPs are supplied, display the completion options for each \fIname\fP or the current completion. The possible values of \fIoption\fP are those valid for the \fBcomplete\fP builtin described above. @@ -8790,12 +9112,15 @@ apply to completion on the initial non-assignment word on the line, or after a command delimiter such as \fB;\fP or \fB|\fP, which is usually command name completion. .IP +If multiple options are supplied, the \fB\-D\fP option takes precedence +over \fB\-E\fP, and both take precedence over \fB\-I\fP. +.IP The return value is true unless an invalid option is supplied, an attempt is made to modify the options for a \fIname\fP for which no completion specification exists, or an output error occurs. .TP \fBcontinue\fP [\fIn\fP] -Resume the next iteration of the enclosing +\fBcontinue\fP resumes the next iteration of the enclosing .BR for , .BR while , .BR until , @@ -8804,9 +9129,10 @@ or loop. If .I n -is specified, resume at the \fIn\fPth enclosing loop. +is specified, \fBbash\fP resumes the \fIn\fPth enclosing loop. .I n -must be \(>= 1. If +must be \(>= 1. +If .I n is greater than the number of enclosing loops, the shell resumes the last enclosing loop @@ -8823,7 +9149,8 @@ The return value is 0 unless \fIn\fP is not greater than or equal to 1. [\fIname\fP[=\fIvalue\fP] .\|.\|.] .PD Declare variables and/or give them attributes. -If no \fIname\fPs are given then display the values of variables. +If no \fIname\fPs are given then display the values of variables +or functions. The .B \-p option will display the attributes and values of each @@ -8832,29 +9159,34 @@ When .B \-p is used with \fIname\fP arguments, additional options, other than \fB\-f\fP and \fB\-F\fP, are ignored. +.IP When .B \-p -is supplied without \fIname\fP 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 \fB\-p\fP, \fBdeclare\fP will display -the attributes and values of all shell variables. The \fB\-f\fP option -will restrict the display to shell functions. +is supplied without \fIname\fP arguments, +\fBdeclare\fP will display the attributes and values +of all variables having the attributes specified by the additional options. +If no other options are supplied with \fB\-p\fP, \fBdeclare\fP will +display the attributes and values of all shell variables. +The \fB\-f\fP option restricts the display to shell functions. +.IP The .B \-F option inhibits the display of function definitions; only the function name and attributes are printed. If the \fBextdebug\fP shell option is enabled using \fBshopt\fP, the source file name and line number where each \fIname\fP -is defined are displayed as well. The +is defined are displayed as well. +The .B \-F option implies .BR \-f . +.IP The .B \-g option forces variables to be created or modified at the global scope, even when \fBdeclare\fP is executed in a shell function. -It is ignored in all other cases. +It is ignored when \fBdeclare\fP is not executed in a shell function. +.IP The .B \-I option causes local variables to inherit the attributes @@ -8862,6 +9194,7 @@ option causes local variables to inherit the attributes and value of any existing variable with the same \fIname\fP at a surrounding scope. If there is no existing variable, the local variable is initially unset. +.IP The following options can be used to restrict output to variables with the specified attribute or to give variables attributes: @@ -8881,10 +9214,11 @@ Each \fIname\fP is an associative array variable (see .el above). .TP .B \-f -Use function names only. +Each \fIname\fP refers to a shell function. .TP .B \-i -The variable is treated as an integer; arithmetic evaluation (see +The variable is treated as an integer; +arithmetic evaluation (see .SM .B "ARITHMETIC EVALUATION" .ie \n(zZ=1 in \fIbash\fP(1)) @@ -8907,7 +9241,8 @@ to \fIname\fP, except those using or changing the The nameref attribute cannot be applied to array variables. .TP .B \-r -Make \fIname\fPs readonly. These names cannot then be assigned values +Make \fIname\fPs readonly. +These names cannot then be assigned values by subsequent assignment statements or unset. .TP .B \-t @@ -8922,17 +9257,18 @@ converted to upper-case. The lower-case attribute is disabled. .TP .B \-x -Mark \fIname\fPs for export to subsequent commands via the environment. +Mark each \fIname\fP for export to subsequent commands via the environment. .PD .PP Using .Q + instead of .Q \- -turns off the attribute instead, -with the exceptions that \fB+a\fP and \fB+A\fP +turns off the specified +attribute instead, with the exceptions that \fB+a\fP and \fB+A\fP may not be used to destroy array variables and \fB+r\fP will not remove the readonly attribute. +.PP When used in a function, .B declare and @@ -8947,6 +9283,7 @@ the variable is set to \fIvalue\fP. When using \fB\-a\fP or \fB\-A\fP and the compound assignment syntax to create array variables, additional attributes do not take effect until subsequent assignments. +.PP The return value is 0 unless an invalid option is encountered, an attempt is made to define a function using .Q "\-f foo=bar" . @@ -8963,7 +9300,7 @@ or an attempt is made to display a non-existent function with \fB\-f\fP. .RE .TP .B dirs [\fB\-clpv\fP] [+\fIn\fP] [\-\fIn\fP] -Without options, displays the list of currently remembered directories. +Without options, display the list of currently remembered directories. The default display is on a single line with directory names separated by spaces. Directories are added to the list with the @@ -8972,6 +9309,8 @@ command; the .B popd command removes entries from the list. The current directory is always the first directory in the stack. +.IP +Options, if supplied, have the following meanings: .RS .PD 0 .TP @@ -9007,51 +9346,58 @@ invalid option is supplied or \fIn\fP indexes beyond the end of the directory stack. .RE .TP -\fBdisown\fP [\fB\-ar\fP] [\fB\-h\fP] \ -[\fIjobspec\fP .\|.\|. | \fIpid\fP .\|.\|. ] +\fBdisown\fP [\fB\-ar\fP] [\fB\-h\fP] [\fIid\fP .\|.\|.] Without options, remove each -.I jobspec +.I id from the table of active jobs. +Each \fIid\fP may be a job specification \fIjobspec\fP +or a process ID +\fIpid\fP; if \fIid\fP is a \fIpid\fP, +\fBdisown\fP uses the job containing \fIpid\fP as \fIjobspec\fP. If -.I jobspec +.I id is not present, and neither the \fB\-a\fP nor the \fB\-r\fP option -is supplied, the \fIcurrent job\fP is used. -If the \fB\-h\fP option is given, each -.I jobspec +is supplied, \fBdisown\fP removes the \fIcurrent job\fP. +If the \fB\-h\fP option is supplied, the job corresponding to each +.I id is not removed from the table, but is marked so that .SM .B SIGHUP is not sent to the job if the shell receives a .SM .BR SIGHUP . +.IP If no -.I jobspec +.I id is supplied, the .B \-a option means to remove or mark all jobs; the .B \-r -option without a -.I jobspec +option without an +.I id argument restricts operation to running jobs. -The return value is 0 unless a -.I jobspec +.IP +The return value is 0 unless an +.I id does not specify a valid job. .TP \fBecho\fP [\fB\-neE\fP] [\fIarg\fP .\|.\|.] Output the \fIarg\fPs, separated by spaces, followed by a newline. The return status is 0 unless a write error occurs. -If \fB\-n\fP is specified, the trailing newline is -suppressed. If the \fB\-e\fP option is given, interpretation of -the following backslash-escaped characters is enabled. The +If \fB\-n\fP is specified, the trailing newline is not printed. +.IP +If the \fB\-e\fP option is given, \fBecho\fP interprets +the following backslash-escaped characters. +The .B \-E -option disables the interpretation of these escape characters, +option disables interpretation of these escape characters, even on systems where they are interpreted by default. -The \fBxpg_echo\fP shell option may be used to -dynamically determine whether or not \fBecho\fP -interprets any options -and expands these escape characters by default. +The \fBxpg_echo\fP shell option determines +whether or not \fBecho\fP interprets any options +and expands these escape characters. .B echo does not interpret \fB\-\-\fP to mean the end of options. +.IP .B echo interprets the following escape sequences: .RS @@ -9105,23 +9451,38 @@ the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value \fIHHHHHHHH\fP (one to eight hex digits) .PD +.PP +\fBecho\fP writes any unrecognized backslash-escaped characters unchanged. .RE .TP \fBenable\fP [\fB\-a\fP] [\fB\-dnps\fP] [\fB\-f\fP \fIfilename\fP] \ [\fIname\fP .\|.\|.] Enable and disable builtin shell commands. -Disabling a builtin allows a disk command which has the same name +Disabling a builtin allows an executable file 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 \fB\-n\fP is used, each \fIname\fP -is disabled; otherwise, -\fInames\fP are enabled. For example, to use the +even though the shell normally searches for builtins before files. +.IP +If \fB\-n\fP is supplied, each \fIname\fP is disabled; otherwise, +\fIname\fPs are enabled. +For example, to use the .B test -binary found via the +binary found usin g .SM .B PATH instead of the shell builtin version, run .QN "enable \-n test" . +.IP +If no \fIname\fP arguments are supplied, or if the +.B \-p +option is supplied, print a list of shell builtins. +With no other option arguments, the list consists of all enabled +shell builtins. +If \fB\-n\fP is supplied, print only disabled builtins. +If \fB\-a\fP is supplied, the list printed includes all builtins, with an +indication of whether or not each is enabled. +The \fB\-s\fP option means to restrict the output to the POSIX +\fIspecial\fP builtins. +.IP The .B \-f option means to load the new builtin command @@ -9129,41 +9490,34 @@ option means to load the new builtin command from shared object .IR filename , on systems that support dynamic loading. +If \fIfilename\fP does not contain a slash, \fBBash\fP will use the value of the \fBBASH_LOADABLES_PATH\fP variable as a -colon-separated list of directories in which to search for \fIfilename\fP, -if \fIfilename\fP does not contain a slash. -The default is system-dependent, +colon-separated list of directories in which to search for \fIfilename\fP. +The default for \fBBASH_LOADABLES_PATH\fP is system-dependent, and may include .Q .\& to force a search of the current directory. The .B \-d -option will delete a builtin previously loaded with -.BR \-f . -If no \fIname\fP arguments are given, or if the -.B \-p -option is supplied, a list of shell builtins is printed. -With no other option arguments, the list consists of all enabled -shell builtins. -If \fB\-n\fP is supplied, only disabled builtins are printed. -If \fB\-a\fP is supplied, the list printed includes all builtins, with an -indication of whether or not each is enabled. -If \fB\-s\fP is supplied, the output is restricted to the POSIX -\fIspecial\fP builtins. +option will delete a builtin previously loaded with \fB\-f\fP. +If \fI\-s\fP is used with \fI\-f\fP, the new builtin becomes a POSIX +special builtin. +.IP If no options are supplied and a \fIname\fP is not a shell builtin, -\fBenable\fP will attempt to load \fIname\fP from a shared object named -\fIname\fP, as if the command were +\fBenable\fP will attempt to load \fIname\fP from a shared +object named \fIname\fP, as if the command were .QN "enable \-f \fIname name\fP" . +.IP The return value is 0 unless a .I name is not a shell builtin or there is an error loading a new builtin from a shared object. .TP \fBeval\fP [\fIarg\fP .\|.\|.] -The \fIarg\fPs are read and concatenated together into a single -command. This command is then read and executed by the shell, and -its exit status is returned as the value of -.BR eval . +Concatenate the \fIarg\fPs together into a single command, separating +them with spaces. +\fBBash\fP then reads and execute this command, and returns its exit status +as the return status of \fBeval\fP. If there are no .IR args , or only null arguments, @@ -9173,8 +9527,9 @@ returns 0. \fBexec\fP [\fB\-cl\fP] [\fB\-a\fP \fIname\fP] [\fIcommand\fP [\fIarguments\fP]] If .I command -is specified, it replaces the shell. -No new process is created. The +is specified, it replaces the shell without creating a new process. +\fIcommand\fP cannot be a shell builtin or function. +The .I arguments become the arguments to \fIcommand\fP. If the @@ -9188,20 +9543,23 @@ does. The .B \-c option causes .I command -to be executed with an empty environment. If +to be executed with an empty environment. +If .B \-a is supplied, the shell passes .I name as the zeroth argument to the executed command. +.IP If .I command cannot be executed for some reason, a non-interactive shell exits, unless the .B execfail -shell option -is enabled. In that case, it returns failure. -An interactive shell returns failure if the file cannot be executed. +shell option is enabled. +In that case, it returns a non-zero status. +An interactive shell returns a non-zero status if the file cannot be executed. A subshell exits unconditionally if \fBexec\fP fails. +.IP If .I command is not specified, any redirections take effect in the current shell, @@ -9209,17 +9567,16 @@ and the return status is 0. If there is a redirection error, the return status is 1. .TP \fBexit\fP [\fIn\fP] -Cause the shell to exit -with a status of \fIn\fP. If +Cause the shell to exit with a status of \fIn\fP. +If .I n -is omitted, the exit status -is that of the last command executed. -A trap on +is omitted, the exit status is that of the last command executed. +Any trap on .SM .B EXIT is executed before the shell terminates. .TP -\fBexport\fP [\fB\-fn\fP\^] [\fIname\fP[=\fIword\fP]] .\|.\|. +\fBexport\fP [\fB\-fn\fP\^] [\fIname\fP[=\fIvalue\fP]] .\|.\|. .PD 0 .TP .B export \-p @@ -9227,23 +9584,27 @@ is executed before the shell terminates. The supplied .I names are marked for automatic export to the environment of -subsequently executed commands. If the +subsequently executed commands. +If the .B \-f option is given, the .I names refer to functions. +.IP +The +.B \-n +option unexports, or removes the export attribute, from each \fIname\fP. If no .I names are given, or if the .B \-p -option is supplied, a list -of names of all exported variables is printed. -The -.B \-n -option causes the export property to be removed from each -\fIname\fP. -If a variable name is followed by =\fIword\fP, the value of -the variable is set to \fIword\fP. +option is supplied, \fBexport\fP prints a list of names of all exported +variables on the standard output. +.IP +\fBexport\fP allows the value of a variable to be set when it is exported +or unexported by following the variable name with =\fIvalue\fP. +This sets the value of the variable to \fIvalue\fP while modifying the +export attribute. .B export returns an exit status of 0 unless an invalid option is encountered, @@ -9254,7 +9615,7 @@ is supplied with a that is not a function. .TP \fBfalse\fP -Does nothing, returns a non-zero status. +Does nothing; returns a non-zero status. .TP \fBfc\fP [\fB\-e\fP \fIename\fP] [\fB\-lnr\fP] [\fIfirst\fP] [\fIlast\fP] .PD 0 @@ -9273,6 +9634,7 @@ 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). +.IP When listing, a \fIfirst\fP or \fIlast\fP of 0 is equivalent to \-1 and \-0 is equivalent to the current command (usually the \fBfc\fP command); otherwise 0 is equivalent to \-1 @@ -9290,41 +9652,44 @@ If is not specified, it is set to the previous command for editing and \-16 for listing. .IP +If the +.B \-l +option is supplied, the commands are listed on the standard output. The .B \-n option suppresses -the command numbers when listing. The +the command numbers when listing. +The .B \-r option reverses the order of -the commands. If the -.B \-l -option is given, -the commands are listed on -standard output. Otherwise, the editor given by +the commands. +.IP +Otherwise, \fBfc\fP invokes the editor named by .I ename -is invoked -on a file containing those commands. If +on a file containing those commands. +If .I ename -is not given, the -value of the +is not supplied, \fBfc\fP uses the value of the .SM .B FCEDIT -variable is used, and +variable, and the value of .SM .B EDITOR if .SM .B FCEDIT -is not set. If neither variable is set, -.FN vi -is used. When editing is complete, the edited commands are -echoed and executed. +is not set. +If neither variable is set, \fBfc\fP uses +.FN vi. +When editing is complete, \fBfc\fP reads the file containing +the edited commands and echoes and executes them. .IP -In the second form, \fIcommand\fP is re-executed after each instance -of \fIpat\fP is replaced by \fIrep\fP. +In the second form, \fBfc\fP re-executes \fIcommand\fP +after replacing each instance of \fIpat\fP with \fIrep\fP. \fICommand\fP is interpreted the same as \fIfirst\fP above. -A useful alias to use with this is +.IP +A useful alias to use with \fBfc\fP is .Q "r=\*"fc \-s\*"" , so that typing .Q "r cc" @@ -9334,22 +9699,21 @@ and typing .Q r re-executes the last command. .IP -If the first form is used, the return value is 0 unless an invalid +If the first form is used, the return value is zero unless an invalid option is encountered or .I first or .I last specify history lines out of range. -If the -.B \-e -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-executed, unless +When editing and re-executing a file of commands, +the return value is the value of the last command executed +or failure if an error occurs with the temporary file. +If the second form is used, the return status +is that of the re-executed command, unless .I cmd -does not specify a valid history line, in which case +does not specify a valid history entry, in which case .B fc -returns failure. +returns a non-zero status. .TP \fBfg\fP [\fIjobspec\fP] Resume @@ -9357,7 +9721,7 @@ Resume in the foreground, and make it the current job. If .I jobspec -is not present, the shell's notion of the \fIcurrent job\fP is used. +is not present, use the shell's notion of the \fIcurrent job\fP. 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 @@ -9368,13 +9732,15 @@ specifies a job that was started without job control. .TP \fBgetopts\fP \fIoptstring\fP \fIname\fP [\fIarg\fP .\|.\|.] .B getopts -is used by shell procedures to parse positional parameters. +is used by shell scripts and functions to parse positional parameters +and obtain options and their arguments. .I optstring contains the option characters to be recognized; if a character is followed by a colon, the option is expected 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. +.IP Each time it is invoked, .B getopts places the next option in the shell variable @@ -9389,21 +9755,22 @@ variable .SM .B OPTIND is initialized to 1 each time the shell or a shell script -is invoked. When an option requires an argument, +is invoked. +When an option requires an argument, .B getopts places that argument into the variable .SM .BR OPTARG . +.IP The shell does not reset .SM .B OPTIND automatically; it must be manually reset between multiple calls to .B getopts -within the same shell invocation if a new set of parameters -is to be used. +within the same shell invocation to use a new set of parameters. .IP -When the end of options is encountered, \fBgetopts\fP exits with a +When it reaches the end of options, \fBgetopts\fP exits with a return value greater than zero. .SM .B OPTIND @@ -9419,13 +9786,14 @@ values, parses those instead. .IP .B getopts -can report errors in two ways. If the first character of +can report errors in two ways. +If the first character of .I optstring -is a colon, +is a colon, \fBgetopts\fP uses .I silent -error reporting is used. In normal operation, diagnostic messages -are printed when invalid options or missing option arguments are -encountered. +error reporting. +In normal operation, \fBgetopts\fP prints diagnostic messages +when it encounters invalid options or missing option arguments. If the variable .SM .B OPTERR @@ -9470,18 +9838,19 @@ It returns false if the end of options is encountered or an error occurs. .TP \fBhash\fP [\fB\-lr\fP] [\fB\-p\fP \fIfilename\fP] [\fB\-dt\fP] [\fIname\fP] -Each time \fBhash\fP is invoked, +Each time \fBhash\fP is invoked, it remembers the full pathname of the command .I name -is determined by searching +as determined by searching the directories in -.B $PATH -and remembered. Any previously-remembered pathname is discarded. +.BR $PATH . +Any previously-remembered pathname associated with \fIname\fP is discarded. If the .B \-p option is supplied, \fBhash\fP uses .I filename -as the full filename of the command. +as the full pathname of the command. +.IP The .B \-r option causes the shell to forget all @@ -9490,34 +9859,40 @@ Assigning to the \fBPATH\fP variable also clears all hashed filenames. The .B \-d option causes the shell to forget the remembered location of each \fIname\fP. +.IP If the .B \-t -option is supplied, the full pathname to which each \fIname\fP corresponds -is printed. If multiple \fIname\fP arguments are supplied with \fB\-t\fP, -the \fIname\fP is printed before the hashed full pathname. +option is supplied, \fBhash\fP prints the full pathname corresponding to +each \fIname\fP. +If multiple \fIname\fP arguments are supplied with \fB\-t\fP, +\fBhash\fP prints the \fIname\fP before the corresponding hashed +full pathname. The .B \-l -option causes output to be displayed in a format that may be reused as input. +option displays output in a format that may be reused as input. +.IP If no arguments are given, or if only \fB\-l\fP is supplied, -information about remembered commands is printed. +\fBhash\fP prints information about remembered commands. The \fB\-t\fP, \fB\-d\fP, and \fB\-p\fP options (the options that act on the \fIname\fP arguments) are mutually exclusive. Only one will be active. If more than one is supplied, \fB\-t\fP has higher priority than -\fB\-p\fP, and both are higher priority than \fB\-d\fP. -The return status is true unless a +\fB\-p\fP, and both have higher priority than \fB\-d\fP. +.IP +The return status is zero unless a .I name is not found or an invalid option is supplied. .TP \fBhelp\fP [\fB\-dms\fP] [\fIpattern\fP] -Display helpful information about builtin commands. If +Display helpful information about builtin commands. +If .I pattern is specified, .B help gives detailed help on all commands matching .IR pattern ; -otherwise help for all the builtins and shell control structures -is printed. +otherwise it displays a list of +all the builtins and shell compound commands. .RS .PD 0 .TP @@ -9550,15 +9925,15 @@ The return status is 0 unless no command matches .TP \fBhistory\fP \fB\-s\fP \fIarg\fP [\fIarg\fP .\|.\|.] .PD -With no options, display the command -history list with line numbers. Lines listed -with a +With no options, display the command history list with numbers. +Entries prefixed with a .B * -have been modified. An argument of +have been modified. +An argument of .I n lists only the last .I n -lines. +entries. If the shell variable .SM .B HISTTIMEFORMAT @@ -9566,24 +9941,31 @@ is set and not null, it is used as a format string for .IR strftime (3) to display the time stamp associated with each displayed history entry. -No intervening blank is printed between the formatted time stamp -and the history line. -If \fIfilename\fP is supplied, it is used as the -name of the history file; if not, the value of +If +.B history +uses .SM -.B HISTFILE -is used. +.BR HISTTIMEFORMAT , +it does not print an intervening space between the formatted time stamp +and the history entry. +.IP +If \fIfilename\fP is supplied, \fBhistory\fP uses it as the +name of the history file; if not, it uses the value of +.SM +.BR HISTFILE . If \fIfilename\fP is not supplied and .SM .B HISTFILE is unset or null, the \fB\-a, \-n, \-r,\fP and \fB\-w\fP options have no effect. +.IP Options, if supplied, have the following meanings: .RS .PD 0 .TP .B \-c Clear the history list by deleting all the entries. +This can be used with the other options to replace the history list. .TP \fB\-d\fP \fIoffset\fP Delete the history entry at position \fIoffset\fP. @@ -9607,13 +9989,12 @@ These are history lines entered since the beginning of the current .TP .B \-n Read the history lines not already read from the history -file into the current history list. These are lines -appended to the history file since the beginning of the +file into the current history list. +These are lines appended to the history file since the beginning of the current \fBbash\fP session. .TP .B \-r -Read the contents of the history file -and append them to the current history list. +Read the history file and append its contents to the current history list. .TP .B \-w Write the current history list to the history file, overwriting the @@ -9621,55 +10002,54 @@ history file's contents. .TP .B \-p Perform history substitution on the following \fIargs\fP and display -the result on the standard output. -Does not store the results in the history list. +the result on the standard output, +without storing the results in the history list. Each \fIarg\fP must be quoted to disable normal history expansion. .TP .B \-s Store the .I args -in the history list as a single entry. The last command in the -history list is removed before the -.I args -are added. +in the history list as a single entry. +The last command in the +history list is removed before adding the +.IR args . .PD -.PP +.RE +.IP If the .SM .B HISTTIMEFORMAT -variable is set, the time stamp information -associated with each history entry is written to the history file, +variable is set, \fBhistory\fP writes the time stamp information +associated with each history entry to the history 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. +.IP The return value is 0 unless an invalid option is encountered, an error occurs while reading or writing the history file, an invalid \fIoffset\fP or range is supplied as an argument to \fB\-d\fP, or the history expansion supplied as an argument to \fB\-p\fP fails. -.RE .TP \fBjobs\fP [\fB\-lnprs\fP] [ \fIjobspec\fP .\|.\|. ] .PD 0 .TP \fBjobs\fP \fB\-x\fP \fIcommand\fP [ \fIargs\fP .\|.\|. ] .PD -The first form lists the active jobs. The options have the following -meanings: +The first form lists the active jobs. +The options have the following meanings: .RS .PD 0 .TP .B \-l -List process IDs -in addition to the normal information. +List process IDs in addition to the normal information. .TP .B \-n Display information only about jobs that have changed status since the user was last notified of their status. .TP .B \-p -List only the process ID of the job's process group -leader. +List only the process ID of the job's process group leader. .TP .B \-r Display only running jobs. @@ -9677,15 +10057,16 @@ Display only running jobs. .B \-s Display only stopped jobs. .PD -.PP +.RE +.IP If .I jobspec -is given, output is restricted to information about that job. +is supplied, \fBjobs\fP restricts output to information about that job. The return status is 0 unless an invalid option is encountered or an invalid .I jobspec is supplied. -.PP +.IP If the .B \-x option is supplied, @@ -9697,11 +10078,10 @@ found in or .I args with the corresponding process group ID, and executes -.I command +.IR command , passing it .IR args , returning its exit status. -.RE .TP \fBkill\fP [\fB\-s\fP \fIsigspec\fP | \fB\-n\fP \fIsignum\fP | \fB\-\fP\fIsigspec\fP] \ [\fIpid\fP | \fIjobspec\fP] .\|.\|. @@ -9709,7 +10089,7 @@ returning its exit status. .TP \fBkill\fP \fB\-l\fP|\fB\-L\fP [\fIsigspec\fP | \fIexit_status\fP] .PD -Send the signal named by +Send the signal specified by .I sigspec or .I signum @@ -9729,17 +10109,21 @@ prefix) or a signal number; is a signal number. If .I sigspec -is not present, then +is not supplied, then +.B kill +sends .SM -.B SIGTERM -is assumed. +.BR SIGTERM . +.IP An argument of .B \-l lists the signal names. If any arguments are supplied when .B \-l -is given, the names of the signals corresponding to the arguments are -listed, and the return status is 0. +is given, +.B kill +lists the names of the signals corresponding to the arguments, +and the return status is 0. The \fIexit_status\fP argument to .B \-l is a number specifying either a signal number or the exit status of @@ -9747,6 +10131,7 @@ a process terminated by a signal. The .B \-L option is equivalent to \fB\-l\fP. +.IP .B kill returns true if at least one signal was successfully sent, or false if an error occurs or an invalid option is encountered. @@ -9754,7 +10139,7 @@ if an error occurs or an invalid option is encountered. \fBlet\fP \fIarg\fP [\fIarg\fP .\|.\|.] Each .I arg -is an arithmetic expression to be evaluated (see +is evaluated as an arithmetic expression (see .SM .B "ARITHMETIC EVALUATION" .ie \n(zZ=1 in \fIbash\fP(1)). @@ -9763,12 +10148,14 @@ If the last .I arg evaluates to 0, .B let -returns 1; 0 is returned otherwise. +returns 1; otherwise +.B let +returns 0. .TP \fBlocal\fP [\fIoption\fP] [\fIname\fP[=\fIvalue\fP] .\|.\|. | \- ] -For each argument, a local variable named +For each argument, create a local variable named .I name -is created, and assigned +and assign it .IR value . The \fIoption\fP can be any of the options accepted by \fBdeclare\fP. When @@ -9776,41 +10163,46 @@ When is used within a function, it causes the variable .I name to have a visible scope restricted to that function and its children. -If \fIname\fP is \-, the set of shell options is made local to the function -in which \fBlocal\fP is invoked: shell options changed using the -\fBset\fP builtin inside the function -after the call to \fBlocal\fP -are restored to their original values -when the function returns. -The restore is effected as if a series of \fBset\fP commands were executed -to restore the values that were in place before the function. -With no operands, +It is an error to use .B local -writes a list of local variables to the standard output. It is -an error to use +when not within a function. +.IP +If \fIname\fP is \-, it makes the set of shell options +local to the function in which \fBlocal\fP is invoked: +any shell options changed using the \fBset\fP builtin inside +the function after the call to \fBlocal\fP are restored to their +original values when the function returns. +The restore is performed as if a series of \fBset\fP commands were +executed to restore the values that were in place before the function. +.IP +With no operands, .B local -when not within a function. The return status is 0 unless +writes a list of local variables to the standard output. +.IP +The return status is 0 unless .B local is used outside a function, an invalid .I name is supplied, or \fIname\fP is a readonly variable. .TP -.B logout -Exit a login shell. +.B logout [\fIn\fP] +Exit a login shell, +returning a status of \fIn\fP to the shell's parent. .TP \fBmapfile\fP [\fB\-d\fP \fIdelim\fP] [\fB\-n\fP \fIcount\fP] [\fB\-O\fP \fIorigin\fP] [\fB\-s\fP \fIcount\fP] [\fB\-t\fP] [\fB\-u\fP \fIfd\fP] [\fB\-C\fP \fIcallback\fP] [\fB\-c\fP \fIquantum\fP] [\fIarray\fP] .PD 0 .TP \fBreadarray\fP [\fB\-d\fP \fIdelim\fP] [\fB\-n\fP \fIcount\fP] [\fB\-O\fP \fIorigin\fP] [\fB\-s\fP \fIcount\fP] [\fB\-t\fP] [\fB\-u\fP \fIfd\fP] [\fB\-C\fP \fIcallback\fP] [\fB\-c\fP \fIquantum\fP] [\fIarray\fP] .PD -Read lines from the standard input into the indexed array variable -.IR array , +Read lines from the standard input, or from file descriptor .I fd if the .B \-u -option is supplied. +option is supplied, +into the indexed array variable +.IR array . The variable .SM .B MAPFILE @@ -9820,7 +10212,7 @@ Options, if supplied, have the following meanings: .PD 0 .TP .B \-d -The first character of \fIdelim\fP is used to terminate each input line, +Use the first character of \fIdelim\fP to terminate each input line, rather than newline. If \fIdelim\fP is the empty string, \fBmapfile\fP will terminate a line when it reads a NUL character. @@ -9828,7 +10220,8 @@ when it reads a NUL character. .B \-n Copy at most .I count -lines. If \fIcount\fP is 0, all lines are copied. +lines. +If \fIcount\fP is 0, copy all lines. .TP .B \-O Begin assigning to @@ -9849,14 +10242,16 @@ Read lines from file descriptor \fIfd\fP instead of the standard input. .B \-C Evaluate .I callback -each time \fIquantum\fP lines are read. The \fB\-c\fP option specifies +each time \fIquantum\fP lines are read. +The \fB\-c\fP option specifies .IR quantum . .TP .B \-c Specify the number of lines read between each call to .IR callback . .PD -.PP +.RE +.IP If .B \-C is specified without @@ -9867,32 +10262,31 @@ array element to be assigned and the line to be assigned to that element as additional arguments. \fIcallback\fP is evaluated after the line is read but before the array element is assigned. -.PP +.IP If not supplied with an explicit origin, \fBmapfile\fP will clear \fIarray\fP before assigning to it. -.PP -\fBmapfile\fP returns successfully unless an invalid option or option +.IP +\fBmapfile\fP returns zero unless an invalid option or option argument is supplied, \fIarray\fP is invalid or unassignable, or if \fIarray\fP is not an indexed array. -.RE .TP \fBpopd\fP [\-\fBn\fP] [+\fIn\fP] [\-\fIn\fP] -Removes entries from the directory stack. +Remove entries from the directory stack. The elements are numbered from 0 starting at the first directory -listed by \fBdirs\fP. -With no arguments, \fBpopd\fP -removes the top directory from the stack, and -changes to the new top directory. +listed by \fBdirs\fP, so \fBpopd\fP is equivalent to +.Q "popd +0." +With no arguments, \fBpopd\fP removes the top directory from the stack, +and changes to the new top directory. Arguments, if supplied, have the following meanings: .RS .PD 0 .TP .B \-n -Suppresses the normal change of directory when removing directories -from the stack, so that only the stack is manipulated. +Suppress the normal change of directory when removing directories +from the stack, only manipulate the stack. .TP \fB+\fP\fIn\fP -Removes the \fIn\fPth entry counting from the left of the list +Remove the \fIn\fPth entry counting from the left of the list shown by .BR dirs , starting with zero, from the stack. @@ -9903,7 +10297,7 @@ removes the first directory, the second. .TP \fB\-\fP\fIn\fP -Removes the \fIn\fPth entry counting from the right of the list +Remove the \fIn\fPth entry counting from the right of the list shown by .BR dirs , starting with zero. For example: @@ -9912,31 +10306,31 @@ removes the last directory, .Q "popd \-1" the next to last. .PD -.PP +.RE +.IP If the top element of the directory stack is modified, and the \fI\-n\fP option was not supplied, \fBpopd\fP uses the \fBcd\fP builtin to change to the directory at the top of the stack. If the \fBcd\fP fails, \fBpopd\fP returns a non-zero value. -.PP +.IP Otherwise, .B popd -returns false if an invalid option is encountered, the directory stack -is empty, or a non-existent directory stack entry is specified. -.PP +returns false if an invalid option is supplied, the directory stack +is empty, or \fIn\fP specifies a non-existent directory stack entry. +.IP If the .B popd command is successful, -bash runs +\fBbash\fP runs .B dirs to show the final contents of the directory stack, and the return status is 0. -.RE .TP \fBprintf\fP [\fB\-v\fP \fIvar\fP] \fIformat\fP [\fIarguments\fP] Write the formatted \fIarguments\fP to the standard output under the control of the \fIformat\fP. -The \fB\-v\fP option causes the output to be assigned to the variable -\fIvar\fP rather than being printed to the standard output. +The \fB\-v\fP option assigns the output to the variable +\fIvar\fP rather than printing it to the standard output. .IP The \fIformat\fP is a character string which contains three types of objects: plain characters, which are simply copied to standard output, character @@ -9975,33 +10369,35 @@ causes \fBprintf\fP to output the date-time string resulting from using .IR strftime (3). The corresponding \fIargument\fP 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 argument is specified, conversion behaves as if \-1 had been given. +This format specifier recognizes two special argument values: +\-1 represents the current time, +and \-2 represents the time the shell was invoked. +If no argument is specified, conversion behaves as if \-1 had been supplied. This is an exception to the usual \fBprintf\fP behavior. .PD -.PP +.RE +.IP 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 argument, which usually contains more characters than the original. -.PP +.IP The %n format specifier accepts a corresponding argument that is treated as a shell variable name. -.PP +.IP The %s and %c format specifiers accept an l (long) modifier, which forces them to convert the argument string to a wide-character string and apply any supplied field width and precision in terms of characters, not bytes. The %S and %C format specifiers are equivalent to %ls and %lc, respectively. -.\" .PP +.\" .IP .\" The %s format specifier understands the "altform" flag (#) and behaves .\" identically to the %b format specifier if it's supplied. -.PP +.IP Arguments to non-string format specifiers are treated as C constants, except that a leading plus or minus sign is allowed, and if the leading character is a single or double quote, the value is the numeric value of the following character, using the current locale. -.PP +.IP The \fIformat\fP is reused as necessary to consume all of the \fIarguments\fP. If the \fIformat\fP requires more \fIarguments\fP than are supplied, the extra format specifications behave as if a zero value or null string, as @@ -10009,14 +10405,13 @@ appropriate, had been supplied. The return value is zero on success, non-zero if an invalid option is supplied or a write or assignment error occurs. -.RE .TP \fBpushd\fP [\fB\-n\fP] [+\fIn\fP] [\-\fIn\fP] .PD 0 .TP \fBpushd\fP [\fB\-n\fP] [\fIdir\fP] .PD -Adds a directory to the top of the directory stack, or rotates +Add a directory to the top of the directory stack, or rotate the stack, making the new top of the stack the current working directory. With no arguments, \fBpushd\fP exchanges the top two elements of @@ -10026,11 +10421,11 @@ Arguments, if supplied, have the following meanings: .PD 0 .TP .B \-n -Suppresses the normal change of directory when rotating or -adding directories to the stack, so that only the stack is manipulated. +Suppress the normal change of directory when rotating or +adding directories to the stack, only manipulate the stack. .TP \fB+\fP\fIn\fP -Rotates the stack so that the \fIn\fPth directory +Rotate the stack so that the \fIn\fPth directory (counting from the left of the list shown by .BR dirs , starting with zero) @@ -10045,29 +10440,29 @@ starting with zero) is at the top. .I dir Adds .I dir -to the directory stack at the top +to the directory stack at the top. .PD -.PP +.RE +.IP After the stack has been modified, if the \fB\-n\fP option was not supplied, \fBpushd\fP uses the \fBcd\fP builtin to change to the directory at the top of the stack. If the \fBcd\fP fails, \fBpushd\fP returns a non-zero value. -.PP +.IP Otherwise, if no arguments are supplied, .B pushd -returns 0 unless the directory stack is empty. +returns zero unless the directory stack is empty. When rotating the directory stack, .B pushd -returns 0 unless the directory stack is empty or -a non-existent directory stack element is specified. -.PP +returns zero unless the directory stack is empty or +\fIn\fP specifies a non-existent directory stack element. +.IP If the .B pushd command is successful, -bash runs +\fBbash\fP runs .B dirs to show the final contents of the directory stack. -.RE .TP \fBpwd\fP [\fB\-LP\fP] Print the absolute pathname of the current working directory. @@ -10090,14 +10485,13 @@ invalid option is supplied. [\fB\-n\fP \fInchars\fP] [\fB\-N\fP \fInchars\fP] \ [\fB\-p\fP \fIprompt\fP] [\fB\-t\fP \fItimeout\fP] \ [\fB\-u\fP \fIfd\fP] [\fIname\fP .\|.\|.] -One line is read from the standard input, or from the file descriptor +Read one line from the standard input, or from the file descriptor \fIfd\fP supplied as an argument to the \fB\-u\fP option, -split into words as described +split it into words as described .ie \n(zZ=1 in \fIbash\fP (1) .el above under \fBWord Splitting\fP, -and the first word -is assigned to the first +and assign the first word to the first .IR name , the second word to the second .IR name , @@ -10107,23 +10501,24 @@ intervening delimiters are assigned to the last .IR name . If there are fewer words read from the input stream than names, the remaining names are assigned empty values. -The characters in +The characters in the value of the .SM .B IFS +variable are used to split the line into words using the same rules the shell uses for expansion (described .ie \n(zZ=1 in \fIbash\fP (1) .el above under \fBWord Splitting\fP). -The backslash character (\fB\e\fP) may be used to remove any special -meaning for the next character read and for line continuation. +The backslash character (\fB\e\fP) removes any special +meaning for the next character read and is used for line continuation. +.IP Options, if supplied, have the following meanings: .RS .PD 0 .TP .B \-a \fIaname\fP -The words are assigned to sequential indices -of the array variable +The words are assigned to sequential indices of the array variable .IR aname , starting at 0. .I aname @@ -10131,14 +10526,13 @@ is unset before any new values are assigned. Other \fIname\fP arguments are ignored. .TP .B \-d \fIdelim\fP -The first character of \fIdelim\fP is used to terminate the input line, +The first character of \fIdelim\fP terminates the input line, rather than newline. If \fIdelim\fP is the empty string, \fBread\fP will terminate a line when it reads a NUL character. .TP .B \-e -If the standard input -is coming from a terminal, +If the standard input is coming from a terminal, \fBread\fP uses .B readline (see @@ -10151,8 +10545,7 @@ Readline uses the current (or default, if line editing was not previously active) editing settings, but uses readline's default filename completion. .TP .B \-E -If the standard input -is coming from a terminal, +If the standard input is coming from a terminal, \fBread\fP uses .B readline (see @@ -10168,29 +10561,31 @@ programmable completion. .B \-i \fItext\fP If .B readline -is being used to read the line, \fItext\fP is placed into the editing -buffer before editing begins. +is being used to read the line, \fBread\fP places \fItext\fP into +the editing buffer before editing begins. .TP .B \-n \fInchars\fP \fBread\fP returns after reading \fInchars\fP characters rather than -waiting for a complete line of input, but honors a delimiter if fewer -than \fInchars\fP characters are read before the delimiter. +waiting for a complete line of input, +unless it encounters EOF or \fBread\fP times out, +but honors a delimiter if it reads fewer +than \fInchars\fP characters before the delimiter. .TP .B \-N \fInchars\fP \fBread\fP returns after reading exactly \fInchars\fP characters rather -than waiting for a complete line of input, unless EOF is encountered or -\fBread\fP times out. -Delimiter characters encountered in the input are +than waiting for a complete line of input, +unless it encounters EOF or \fBread\fP times out. +Any delimiter characters in the input are not treated specially and do not cause \fBread\fP to return until -\fInchars\fP characters are read. +it has read \fInchars\fP characters. The result is not split on the characters in \fBIFS\fP; the intent is that the variable is assigned exactly the characters read (with the exception of backslash; see the \fB\-r\fP option below). .TP .B \-p \fIprompt\fP Display \fIprompt\fP on standard error, without a -trailing newline, before attempting to read any input. The prompt -is displayed only if input is coming from a terminal. +trailing newline, before attempting to read any input, but +only if input is coming from a terminal. .TP .B \-r Backslash does not act as an escape character. @@ -10199,58 +10594,55 @@ In particular, a backslash-newline pair may not then be used as a line continuation. .TP .B \-s -Silent mode. If input is coming from a terminal, characters are -not echoed. +Silent mode. +If input is coming from a terminal, characters are not echoed. .TP .B \-t \fItimeout\fP -Cause \fBread\fP to time out and return failure if a complete line of -input (or a specified number of characters) -is not read within \fItimeout\fP seconds. +Cause \fBread\fP to time out and return failure if it does not read +a complete line of input (or a specified number of characters) +within \fItimeout\fP seconds. \fItimeout\fP may be a decimal number with a fractional portion following the decimal point. This option is only effective if \fBread\fP is reading input from a terminal, pipe, or other special file; it has no effect when reading from regular files. -If \fBread\fP times out, \fBread\fP saves any partial input read into -the specified variable \fIname\fP. +If \fBread\fP times out, it saves any partial input read into +the specified variable \fIname\fP, and the exit status is greater than 128. If \fItimeout\fP is 0, \fBread\fP returns 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. +In this case, the exit status is 0 if input is available on the specified +file descriptor, or the read will return EOF, non-zero otherwise. .TP .B \-u \fIfd\fP -Read input from file descriptor \fIfd\fP. +Read input from file descriptor \fIfd\fP instead of the standard input. .PD -.PP +.RE +.IP Other than the case where \fIdelim\fP is the empty string, \fBread\fP ignores any NUL characters in the input. -.PP +.IP If no .I names -are supplied, the line read, +are supplied, \fBread\fP assigns the line read, without the ending delimiter but otherwise unmodified, -is assigned to the variable +to the variable .SM .BR REPLY . +.IP The exit status is zero, unless end-of-file is encountered, \fBread\fP times out (in which case the status is greater than 128), a variable assignment error (such as assigning to a readonly variable) occurs, or an invalid file descriptor is supplied as the argument to \fB\-u\fP. -.RE .TP \fBreadonly\fP [\fB\-aAf\fP] [\fB\-p\fP] [\fIname\fP[=\fIword\fP] .\|.\|.] .PD The given \fInames\fP are marked readonly; the values of these .I names -may not be changed by subsequent assignment. +may not be changed by subsequent assignment or unset. If the .B \-f -option is supplied, the functions corresponding to the -\fInames\fP are so -marked. +option is supplied, each \fIname\fP refers to a shell function. The .B \-a option restricts the variables to indexed arrays; the @@ -10261,17 +10653,21 @@ If both options are supplied, takes precedence. If no .I name -arguments are given, or if the +arguments are supplied, or if the .B \-p -option is supplied, a list of all readonly names is printed. +option is supplied, print a list of all readonly names. The other options may be used to restrict the output to a subset of the set of readonly names. The .B \-p -option causes output to be displayed in a format that -may be reused as input. -If a variable name is followed by =\fIword\fP, the value of -the variable is set to \fIword\fP. +option displays output in a format that may be reused as input. +.IP +\fBreadonly\fP allows the value of a variable to be set at the same time +the readonly attribute is changed by following the variable name with +=\fIvalue\fP. +This sets the value of the variable is to \fIvalue\fP while modifying +the readonly attribute. +.IP The return status is 0 unless an invalid option is encountered, one of the .I names @@ -10282,22 +10678,23 @@ is supplied with a that is not a function. .TP \fBreturn\fP [\fIn\fP] -Causes a function to stop executing and return the value specified by +Stop executing a shell function or sourced file and return the value +specified by .I n to its caller. If .I n is omitted, the return status is that of the last command -executed in the function body. +executed. If \fBreturn\fP is executed by a trap handler, the last command used to determine the status is the last command executed before the trap handler. If \fBreturn\fP is executed during a \fBDEBUG\fP trap, the last command used to determine the status is the last command executed by the trap handler before \fBreturn\fP was invoked. -If +.IP +When .B return -is used outside a function, -but during execution of a script by the +is used to terminate execution of a script being executed by the .B . (\fBsource\fP) command, it causes the shell to stop executing that script and return either @@ -10306,13 +10703,14 @@ or the exit status of the last command executed within the script as the exit status of the script. If \fIn\fP is supplied, the return value is its least significant 8 bits. +.IP +Any command associated with the \fBRETURN\fP trap is executed +before execution resumes after the function or script. +.IP The return status is non-zero if .B return -is supplied a non-numeric argument, or -is used outside a +is supplied a non-numeric argument, or is used outside a function and not during execution of a script by \fB.\fP\^ or \fBsource\fP. -Any command associated with the \fBRETURN\fP trap is executed -before execution resumes after the function or script. .TP \fBset\fP [\fB\-abefhkmnptuvxBCEHPT\fP] [\fB\-o\fP \fIoption\-name\fP] \ [\fB\-\-\fP] [\fB\-\fP] [\fIarg\fP .\|.\|.] @@ -10349,8 +10747,9 @@ subsequent commands. .TP 8 .B \-b Report the status of terminated background jobs -immediately, rather than before the next primary prompt. This is -effective only when job control is enabled. +immediately, rather than before the next primary prompt or after a +foreground command terminates. +This is effective only when job control is enabled. .TP 8 .B \-e .PD @@ -10421,9 +10820,10 @@ are placed in the environment for a command, not just those that precede the command name. .TP 8 .B \-m -Monitor mode. Job control is enabled. This option is on -by default for interactive shells on systems that support -it (see +Monitor mode. +Job control is enabled. +This option is on by default for interactive shells on systems +that support it (see .SM .B JOB CONTROL .ie \n(zZ=1 in \fIbash\fP(1)). @@ -10585,13 +10985,13 @@ on the standard output. .B \-p Turn on .I privileged -mode. In this mode, the +mode. In this mode, the shell does not read the .SM .B $ENV and .SM .B $BASH_ENV -files are not processed, shell functions are not inherited from the +files, shell functions are not inherited from the environment, and the .SM .BR SHELLOPTS , @@ -10643,7 +11043,7 @@ arithmetic \fBfor\fP command, display the expanded value of .SM .BR PS4 , followed by the command and its expanded arguments -or associated word list, to standard error. +or associated word list, to the standard error. .TP 8 .B \-B The shell performs brace expansion (see @@ -10660,11 +11060,12 @@ does not overwrite an existing file with the .BR >& , and .B <> -redirection operators. This may be overridden when -creating output files by using the redirection operator +redirection operators. +Using the redirection operator .B >| instead of -.BR > . +.B > +will override this and force the creation of an output file. .TP 8 .B \-E If set, any trap on \fBERR\fP is inherited by shell functions, command @@ -10674,15 +11075,16 @@ The \fBERR\fP trap is normally not inherited in such cases. .B \-H Enable .B ! -style history substitution. This option is on by -default when the shell is interactive. +style history substitution. +This option is on by default when the shell is interactive. .TP 8 .B \-P If set, the shell does not resolve symbolic links when executing commands such as .B cd -that change the current working directory. It uses the -physical directory structure instead. By default, +that change the current working directory. +It uses the physical directory structure instead. +By default, .B bash follows the logical chain of directories when performing commands which change the current directory. @@ -10695,20 +11097,20 @@ The \fBDEBUG\fP and \fBRETURN\fP traps are normally not inherited in such cases. .TP 8 .B \-\- -If no arguments follow this option, then the positional parameters are -unset. Otherwise, the positional parameters are set to the +If no arguments follow this option, unset the positional parameters. +Otherwise, set the positional parameters to the \fIarg\fPs, even if some of them begin with a .BR \- . .TP 8 .B \- -Signal the end of options, cause all remaining \fIarg\fPs to be -assigned to the positional parameters. The +Signal the end of options, and assign all remaining \fIarg\fPs to +the positional parameters. +The .B \-x and .B \-v options are turned off. -If there are no \fIarg\fPs, -the positional parameters remain unchanged. +If there are no \fIarg\fPs, the positional parameters remain unchanged. .PD .PP The options are off by default unless otherwise noted. @@ -10717,11 +11119,11 @@ The options can also be specified as arguments to an invocation of the shell. The current set of options may be found in .BR $\- . -The return status is always true unless an invalid option is encountered. +The return status is always zero unless an invalid option is encountered. .RE .TP \fBshift\fP [\fIn\fP] -The positional parameters from \fIn\fP+1 .\|.\|.\& are renamed to +Rename positional parameters from \fIn\fP+1 .\|.\|.\& to .B $1 .B .\|.\|.. Parameters represented by the numbers \fB$#\fP @@ -10752,10 +11154,10 @@ option is used, those available with the option to the \fBset\fP builtin command. With no options, or with the .B \-p -option, a list of all settable options is displayed, with +option, display a list of all settable options, with an indication of whether or not each is set; -if \fIoptnames\fP are supplied, the output is restricted to those options. -The \fB\-p\fP option causes output to be displayed in a form that +if any \fIoptnames\fP are supplied, the output is restricted to those options. +The \fB\-p\fP option displays output in a form that may be reused as input. Other options have the following meanings: .RS @@ -10770,7 +11172,7 @@ Disable (unset) each \fIoptname\fP. .B \-q Suppresses normal output (quiet mode); the return status indicates whether the \fIoptname\fP is set or unset. -If multiple \fIoptname\fP arguments are given with +If multiple \fIoptname\fP arguments are supplied with .BR \-q , the return status is zero if all \fIoptnames\fP are enabled; non-zero otherwise. @@ -10829,25 +11231,26 @@ is not a directory is assumed to be the name of a variable whose value is the directory to change to. .TP 8 .B cdspell -If set, minor errors in the spelling of a directory component in a +If set, the .B cd -command will be corrected. -The errors checked for are transposed characters, -a missing character, and one character too many. -If a correction is found, the corrected filename is printed, +command attempts to correct +minor errors in the spelling of a directory component. +Minor errors include transposed characters, +a missing character, and one extra character. +If \fBcd\fP corrects the directory name, it prints the corrected filename, and the command proceeds. This option is only used by interactive shells. .TP 8 .B checkhash If set, \fBbash\fP checks that a command found in the hash -table exists before trying to execute it. If a hashed command no -longer exists, a normal path search is performed. +table exists before trying to execute it. +If a hashed command no longer exists, \fBbash\fP performs a normal path search. .TP 8 .B checkjobs If set, \fBbash\fP lists the status of any stopped and running 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 (see +exiting an interactive shell. +If any jobs are running, \fBbash\fP defers the exit until a second +exit is attempted without an intervening command (see .SM .B "JOB CONTROL" .ie \n(zZ=1 in \fIbash\fP(1)). @@ -10856,21 +11259,23 @@ The shell always postpones exiting if any jobs are stopped. .TP 8 .B checkwinsize If set, \fBbash\fP checks the window size after each external (non-builtin) -command and, if necessary, updates the values of +command +and, if necessary, updates the values of .SM .B LINES and .SM .BR COLUMNS , -using the file descriptor associated with stderr if it is a terminal. +using the file descriptor associated with the standard error +if it is a terminal. This option is enabled by default. .TP 8 .B cmdhist If set, .B bash attempts to save all lines of a multiple-line -command in the same history entry. This allows -easy re-editing of multi-line commands. +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 .ie \n(zZ=1 in \fIbash\fP(1) @@ -10926,8 +11331,8 @@ versions through 4.2. If set, .B bash replaces directory names with the results of word expansion when performing -filename completion. This changes the contents of the readline editing -buffer. +filename completion. +This changes the contents of the readline editing buffer. If not set, .B bash attempts to preserve what the user typed. @@ -10956,7 +11361,8 @@ is set. If set, a non-interactive shell will not exit if it cannot execute the file specified as an argument to the .B exec -builtin command. An interactive shell does not exit if +builtin. +An interactive shell does not exit if .B exec fails. .TP 8 @@ -10970,8 +11376,7 @@ under This option is enabled by default for interactive shells. .TP 8 .B extdebug -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 \fB\-\-debugger\fP option. If set after invocation, behavior intended for use by debuggers is enabled: @@ -11014,16 +11419,17 @@ subshells invoked with \fB(\fP \fIcommand\fP \fB)\fP inherit the .RE .TP 8 .B extglob -If set, the extended pattern matching features described +If set, enable the extended pattern matching features described .ie \n(zZ=1 in \fIbash\fP(1) .el above under -\fBPathname Expansion\fP are enabled. +\fBPathname Expansion\fP. .TP 8 .B extquote If set, \fB$\fP\*'\fIstring\fP\*' and \fB$\fP\*"\fIstring\fP\*" quoting is performed within \fB${\fP\fIparameter\fP\fB}\fP expansions -enclosed in double quotes. This option is enabled by default. +enclosed in double quotes. +This option is enabled by default. .TP 8 .B failglob If set, patterns which fail to match filenames during pathname expansion @@ -11052,9 +11458,9 @@ If set, range expressions used in pattern matching bracket expressions (see .B Pattern Matching .ie \n(zZ=1 in \fIbash\fP(1)) .el above) -behave as if in the traditional C locale when performing -comparisons. That is, the current locale's collating sequence -is not taken into account, so +behave as if in the traditional C locale when performing comparisons. +That is, pattern matching does not take +the current locale's collating sequence into account, so .B b will not collate between .B A @@ -11091,15 +11497,16 @@ variable when the shell exits, rather than overwriting the file. .B histreedit If set, and .B readline -is being used, a user is given the opportunity to re-edit a +is being used, the user is given the opportunity to re-edit a failed history substitution. .TP 8 .B histverify If set, and .B readline is being used, the results of history substitution are not immediately -passed to the shell parser. Instead, the resulting line is loaded into -the \fBreadline\fP editing buffer, allowing further modification. +passed to the shell parser. +Instead, the resulting line is loaded into the \fBreadline\fP editing buffer, +allowing further modification. .TP 8 .B hostcomplete If set, and @@ -11126,10 +11533,10 @@ instead of unsetting it in the subshell environment. This option is enabled when \fIposix mode\fP is enabled. .TP 8 .B interactive_comments -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 +In an interactive shell, a word beginning with \fB#\fP +causes that word and all remaining characters on that +line to be ignored, as in a non-interactive shell +(see .SM .B COMMENTS .ie \n(zZ=1 in \fIbash\fP(1)). @@ -11149,13 +11556,15 @@ embedded newlines rather than using semicolon separators where possible. .B localvar_inherit If set, local variables inherit the value and attributes of a variable of the same name that exists at a previous scope before any new value is -assigned. The nameref attribute is not inherited. +assigned. +The nameref attribute is not inherited. .TP 8 .B localvar_unset If set, calling \fBunset\fP on local variables in previous function scopes marks them so subsequent lookups find them unset until that function -returns. This is identical to the behavior of unsetting local variables -at the current function scope. +returns. +This is identical to the behavior of unsetting local variables at the +current function scope. .TP 8 .B login_shell The shell sets this option if it is started as a login shell (see @@ -11176,11 +11585,10 @@ If set, and .B readline is being used, .B bash -will not attempt to search the +does not search .SM .B PATH -for possible completions when -completion is attempted on an empty line. +for possible completions when completion is attempted on an empty line. .TP 8 .B nocaseglob If set, @@ -11213,8 +11621,7 @@ If set, pathname expansion patterns which match no files .B Pathname Expansion .ie \n(zZ=1 in \fIbash\fP(1)) .el above) -expand to nothing and are removed, -rather than expanding to themselves. +expand to nothing and are removed, rather than expanding to themselves. .TP 8 .B patsub_replacement If set, \fBbash\fP @@ -11226,17 +11633,17 @@ under \fBParameter Expansion\fP This option is enabled by default. .TP 8 .B progcomp -If set, the programmable completion facilities (see +If set, enable the programmable completion facilities (see \fBProgrammable Completion\fP -.ie \n(zZ=1 in \fIbash\fP(1)) -.el above) -are enabled. +.ie \n(zZ=1 in \fIbash\fP(1)). +.el above). This option is enabled by default. .TP 8 .B progcomp_alias If set, and programmable completion is enabled, \fBbash\fP treats a command name that doesn't have any completions as a possible alias and attempts -alias expansion. If it has an alias, \fBbash\fP attempts programmable +alias expansion. +If it has an alias, \fBbash\fP attempts programmable completion using the command word resulting from the expanded alias. .TP 8 .B promptvars @@ -11296,11 +11703,11 @@ interpret any options. Suspend the execution of this shell until it receives a .SM .B SIGCONT -signal. A login shell, -or a shell without job control enabled, +signal. +A login shell, or a shell without job control enabled, cannot be suspended; the .B \-f -option can be used to override this and force the suspension. +option will 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 @@ -11328,7 +11735,7 @@ an argument of \fB\-\-\fP as signifying the end of options. Expressions may be combined using the following operators, listed in decreasing order of precedence. The evaluation depends on the number of arguments; see below. -Operator precedence is used when there are five or more arguments. +\fBtest\fP uses operator precedence when there are five or more arguments. .RS .PD 0 .TP @@ -11339,7 +11746,7 @@ is false. .TP .B ( \fIexpr\fP ) Returns the value of \fIexpr\fP. -This may be used to override the normal precedence of operators. +This may be used to override normal operator precedence. .TP \fIexpr1\fP \-\fBa\fP \fIexpr2\fP True if both @@ -11403,7 +11810,6 @@ Otherwise, the expression is false. The following conditions are applied in the order listed. If the first argument is \fB!\fP, 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 \fB(\fP and the fourth argument is exactly \fB)\fP, the result is the two-argument test of the second and third arguments. @@ -11421,25 +11827,35 @@ the \fB<\fP and \fB>\fP operators sort using the current locale. If the shell is not in \fIposix mode\fP, the \fBtest\fP and \fB[\fP commands sort lexicographically using ASCII ordering. +.IP +The historical operator-precedence parsing with 4 or more arguments can +lead to ambiguities when it encounters strings that look like primaries. +The POSIX +standard has deprecated the \fB\-a\fP and \fB\-o\fP +primaries and enclosing expressions within parentheses. +Scripts should no longer use them. +It's much more reliable to restrict test invocations to a single primary, +and to replace uses of \fB\-a\fP and \fB\-o\fP with the shell's +\fB&&\fP and \fB||\fP list operators. .RE .TP .B times Print the accumulated user and system times for the shell and -for processes run from the shell. The return status is 0. +for processes run from the shell. +The return status is 0. .TP -\fBtrap\fP [\fB\-lp\fP] [[\fIaction\fP] \fIsigspec\fP .\|.\|.] +\fBtrap\fP [\fB\-Plp\fP] [[\fIaction\fP] \fIsigspec\fP .\|.\|.] The .I action is a command that is read and executed when the shell receives -signal(s) +any of the signals .IR sigspec . If .I action is absent (and there is a single \fIsigspec\fP) or .BR \- , -each specified signal is -reset to its original disposition (the value it had -upon entrance to the shell). +each specified \fIsigspec\fP is +reset to the value it had when the shell was started. If .I action is the null string the signal specified by each @@ -11470,14 +11886,14 @@ option behaves similarly, but displays only the actions associated with each \fIsigspec\fP argument. .B \-P requires at least one \fIsigspec\fP argument. -The \fB\-P\fP or \fB\-p\fP options to \fBtrap\fP may be used +The \fB\-P\fP or \fB\-p\fP options may be used in a subshell environment (e.g., command substitution) and, as long as they are used before \fBtrap\fP is used to change a signal's handling, will display the state of its parent's traps. .IP The .B \-l -option causes \fBtrap\fP to print a list of signal names and +option prints a list of signal names and their corresponding numbers. Each .I sigspec @@ -11487,13 +11903,15 @@ Signal names are case insensitive and the .SM .B SIG prefix is optional. +If \fB\-l\fP is supplied with no \fIsigspec\fP arguments, it prints a +list of valid signal names. .IP If a .I sigspec is .SM .B EXIT -(0) the command +(0), .I action is executed on exit from the shell. If a @@ -11501,7 +11919,6 @@ If a is .SM .BR DEBUG , -the command .I action is executed before every \fIsimple command\fP, \fIfor\fP command, \fIcase\fP command, \fIselect\fP command, (( arithmetic command, @@ -11512,14 +11929,17 @@ in a shell function (see .B SHELL GRAMMAR .ie \n(zZ=1 in \fIbash\fP(1)). .el above). -Refer to the description of the \fBextdebug\fP option to the -\fBshopt\fP builtin for details of its effect on the \fBDEBUG\fP trap. +Refer to the description of the \fBextdebug\fP shell option +(see +.B shopt +.ie \n(zZ=1 in \fIbash\fP(1)) +.el above) +for details of its effect on the \fBDEBUG\fP trap. If a .I sigspec is .SM .BR RETURN , -the command .I action is executed each time a shell function or a script executed with the \fB.\fP or \fBsource\fP builtins finishes executing. @@ -11529,7 +11949,6 @@ If a is .SM .BR ERR , -the command .I action is executed whenever a pipeline (which may consist of a single simple @@ -11552,7 +11971,8 @@ statement, part of a command executed in a or .B || list except the command following the final \fB&&\fP or \fB||\fP, -any command in a pipeline but the last, +any command in a pipeline but the last +(subject to the state of the \fBpipefail\fP shell option), or if the command's return value is being inverted using .BR ! . @@ -11573,10 +11993,10 @@ returns true. Does nothing, returns a 0 status. .TP \fBtype\fP [\fB\-aftpP\fP] \fIname\fP [\fIname\fP .\|.\|.] -With no options, -indicate how each +Indicate how each .I name would be interpreted if used as a command name. +.IP If the .B \-t option is used, @@ -11590,22 +12010,21 @@ or .I file if .I name -is an alias, shell reserved word, function, builtin, or executable disk file, +is an alias, shell reserved word, function, builtin, or executable file, respectively. If the .I name -is not found, then nothing is printed, and \fBtype\fP returns a -non-zero exit status. +is not found, \fBtype\fP prints nothing and returns a non-zero exit status. +.IP If the .B \-p option is used, .B type -either returns the name of the executable file +either returns the pathname of the executable file that would be found by searching .B $PATH -if +for .I name -were specified as a command name, or nothing if .Q "type \-t name" would not return @@ -11619,7 +12038,7 @@ search for each \fIname\fP, even if .Q "type \-t name" would not return .IR file . -If a command is hashed, +If \fIname\fP is present in the table of hashed commands, .B \-p and .B \-P @@ -11627,6 +12046,7 @@ print the hashed value, which is not necessarily the file that appears first in .SM .BR PATH . +.IP If the .B \-a option is used, @@ -11645,6 +12065,7 @@ and only performs a .SM .B PATH search for \fIname\fP. +.IP The .B \-f option suppresses shell function lookup, as with the \fBcommand\fP builtin. @@ -11658,13 +12079,15 @@ any are not found. \fBulimit\fP [\fB\-HS\fP] [\fB\-bcdefiklmnpqrstuvxPRT\fP [\fIlimit\fP]] .PD Provides control over the resources available to the shell and to -processes started by it, on systems that allow such control. +processes it starts, on systems that allow such control. +.IP The \fB\-H\fP and \fB\-S\fP 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 \fB\-H\fP nor \fB\-S\fP is specified, both the soft and hard -limits are set. +If neither \fB\-H\fP nor \fB\-S\fP is specified, +\fBulimit\fP sets both the soft and hard limits. +.IP The value of .I limit can be a number in the unit specified for the resource @@ -11677,16 +12100,16 @@ which stand for the current hard limit, the current soft limit, and no limit, respectively. If .I limit -is omitted, the current value of the soft limit of the resource is -printed, unless the \fB\-H\fP option is given. When more than one -resource is specified, the limit name and unit, if appropriate, -are printed before the value. +is omitted, \fBulimit\fP prints the current value of the soft limit of +the resource, unless the \fB\-H\fP option is given. +When more than one resource is specified, the limit name and unit, +if appropriate, are printed before the value. Other options are interpreted as follows: .RS .PD 0 .TP .B \-a -All current limits are reported; no limits are set +Report all current limits; no limits are set .TP .B \-b The maximum socket buffer size @@ -11757,13 +12180,15 @@ The maximum number of threads .PP If .I limit -is given, and the +is supplied, and the .B \-a option is not used, \fIlimit\fP is the new value of the specified resource. -If no option is given, then +If no option is supplied, then .B \-f -is assumed. Values are in 1024-byte increments, except for +is assumed. +.PP +Values are in 1024-byte increments, except for .BR \-t , which is in seconds; .BR \-R , @@ -11788,35 +12213,36 @@ or an error occurs while setting a new limit. .RE .TP \fBumask\fP [\fB\-p\fP] [\fB\-S\fP] [\fImode\fP] -The user file-creation mask is set to +Set the user file-creation mask to .IR mode . If .I mode -begins with a digit, it -is interpreted as an octal number; otherwise -it is interpreted as a symbolic mode mask similar +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 .IR chmod (1). If .I mode -is omitted, the current value of the mask is printed. +is omitted, \fBumask\fP prints the current value of the mask. The .B \-S -option causes the mask to be printed in symbolic form; the -default output is an octal number. +option without a \fImode\fP argument +prints the mask in a symbolic format; +the default output is an octal number. If the .B \-p option is supplied, and .I mode 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 \fImode\fP argument was supplied, and false otherwise. +The return status is zero if the mode was successfully changed or +if no \fImode\fP argument was supplied, and non-zero otherwise. .TP \fBunalias\fP [\-\fBa\fP] [\fIname\fP .\|.\|.] -Remove each \fIname\fP from the list of defined aliases. If +Remove each \fIname\fP from the list of defined aliases. +If .B \-a -is supplied, all alias definitions are removed. The return -value is true unless a supplied +is supplied, remove all alias definitions. +The return value is true unless a supplied .I name is not a defined alias. .TP @@ -11829,7 +12255,6 @@ If the option is given, each .I name refers to a shell variable, and that variable is removed. -Read-only variables may not be unset. If .B \-f is specified, each @@ -11842,11 +12267,13 @@ option is supplied, and \fIname\fP is a variable with the \fInameref\fP attribute, \fIname\fP will be unset rather than the variable it references. \fB\-n\fP has no effect if the \fB\-f\fP option is supplied. +Read-only variables and functions may not be unset. +When variables or functions are removed, they are also removed +from the environment passed to subsequent commands. If no options are supplied, each \fIname\fP refers to a variable; if there is no variable 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. +Some shell variables may not be unset. If any of .SM .BR BASH_ALIASES , @@ -11884,7 +12311,8 @@ or .SM .B SRANDOM are unset, they lose their special properties, even if they are -subsequently reset. The exit status is true unless a +subsequently reset. +The exit status is true unless a .I name is readonly or may not be unset. .TP @@ -11892,7 +12320,7 @@ is readonly or may not be unset. Wait for each specified child process \fIid\fP and return the termination status of the last \fIid\fP. Each \fIid\fP may be a process ID or a job specification; -if a job spec is given, \fBwait\fP waits for all processes in the job. +if a job spec is supplied, \fBwait\fP waits for all processes in the job. .IP If no options or \fIid\fPs are supplied, \fBwait\fP waits for all running background jobs and @@ -11911,7 +12339,9 @@ the exit status is 127. If the \fB\-p\fP option is supplied, the process or job identifier of the job for which the exit status is returned is assigned to the variable \fIvarname\fP named by the option argument. -The variable will be unset initially, before any assignment. +The variable, +which cannot be readonly, +will be unset initially, before any assignment. This is useful only when the \fB\-n\fP option is supplied. .IP Supplying the \fB\-f\fP option, when job control is enabled, @@ -11940,11 +12370,12 @@ There is only one current compatibility level \(em each option is mutually exclusive. The compatibility level is intended to allow users to select behavior from previous versions that is incompatible with newer versions -while they migrate scripts to use current features and -behavior. It's intended to be a temporary solution. +while they migrate scripts to use current features and behavior. +It's intended to be a temporary solution. .PP This section does not mention behavior that is standard for a particular -version (e.g., setting \fBcompat32\fP means that quoting the rhs of the regexp +version (e.g., setting \fBcompat32\fP means that quoting the right hand +side of the regexp matching operator quotes special regexp characters in the word, which is default behavior in bash-3.2 and subsequent versions). .PP @@ -11969,17 +12400,18 @@ to this variable (a decimal version number like 4.2, or an integer corresponding to the \fBcompat\fP\fINN\fP option, like 42) determines the compatibility level. .PP -Starting with bash-4.4, \fBbash\fP has begun deprecating older compatibility +Starting with bash-4.4, \fBbash\fP began deprecating older compatibility levels. Eventually, the options will be removed in favor of .SM .BR BASH_COMPAT . .PP -Bash-5.0 was the final version for which there will be an individual shopt -option for the previous version. Users should control the compatibility -level with +Bash-5.0 was the final version for which there was an individual shopt +option for the previous version. .SM -.BR BASH_COMPAT . +.B BASH_COMPAT +is the only mechanism to control the compatibility level +in versions newer than bash-5.0. .PP The following table describes the behavior changes controlled by each compatibility level setting. @@ -11998,8 +12430,8 @@ and it is required for bash-5.1 and later versions. .PD 0 .RS .IP \(bu -quoting the rhs of the \fB[[\fP command's regexp matching operator (=\*~) -has no special effect +Quoting the rhs of the \fB[[\fP command's regexp matching operator (=\*~) +has no special effect. .RE .PD .TP @@ -12007,7 +12439,7 @@ has no special effect .PD 0 .RS .IP \(bu -the \fB<\fP and \fB>\fP operators to the \fB[[\fP command do not +The \fB<\fP and \fB>\fP operators to the \fB[[\fP command do not consider the current locale when comparing strings; they use ASCII ordering. .RE @@ -12017,7 +12449,7 @@ ordering. .PD 0 .RS .IP \(bu -the \fB<\fP and \fB>\fP operators to the \fB[[\fP command do not +The \fB<\fP and \fB>\fP operators to the \fB[[\fP command do not consider the current locale when comparing strings; they use ASCII ordering. \fBBash\fP versions prior to bash-4.1 use ASCII collation and @@ -12031,14 +12463,14 @@ bash-4.1 and later use the current locale's collation sequence and .PD 0 .RS .IP \(bu -in \fIposix\fP mode, \fBtime\fP may be followed by options and still be -recognized as a reserved word (this is POSIX interpretation 267) +In \fIposix\fP mode, \fBtime\fP may be followed by options and still be +recognized as a reserved word (this is POSIX interpretation 267). .IP \(bu -in \fIposix\fP mode, the parser requires that an even number of single +In \fIposix\fP mode, the parser requires that an even number of single quotes occur in the \fIword\fP 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) +(this is POSIX interpretation 221). .RE .PD .TP @@ -12046,15 +12478,15 @@ the single quotes are considered quoted .PD 0 .RS .IP \(bu -the replacement string in double-quoted pattern substitution does not -undergo quote removal, as it does in versions after bash-4.2 +The replacement string in double-quoted pattern substitution does not +undergo quote removal, as it does in versions after bash-4.2. .IP \(bu -in posix mode, single quotes are considered special when expanding +In posix mode, single quotes are considered special when expanding the \fIword\fP 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 interpretation 221); in later versions, single quotes -are not special within double-quoted word expansions +are not special within double-quoted word expansions. .RE .PD .TP @@ -12062,15 +12494,15 @@ are not special within double-quoted word expansions .PD 0 .RS .IP \(bu -word expansion errors are considered non-fatal errors that cause the +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) +to exit). .IP \(bu -when executing a shell function, the loop state (while/until/etc.) +When executing a shell function, the loop state (while/until/etc.) is not reset, so \fBbreak\fP or \fBcontinue\fP in that function will break -or continue loops in the calling context. Bash-4.4 and later reset -the loop state to prevent this +or continue loops in the calling context. +Bash-4.4 and later reset the loop state to prevent this. .RE .PD .TP @@ -12078,23 +12510,23 @@ the loop state to prevent this .PD 0 .RS .IP \(bu -the shell sets up the values used by +The shell sets up the values used by .SM .B BASH_ARGV and .SM .B BASH_ARGC so they can expand to the shell's positional parameters even if extended -debugging mode is not enabled +debugging mode is not enabled. .IP \(bu -a subshell inherits loops from its parent context, so \fBbreak\fP +A subshell inherits loops from its parent context, so \fBbreak\fP or \fBcontinue\fP will cause the subshell to exit. Bash-5.0 and later reset the loop state to prevent the exit .IP \(bu -variable assignments preceding builtins like \fBexport\fP and \fBreadonly\fP +Variable assignments preceding builtins like \fBexport\fP and \fBreadonly\fP that set attributes continue to affect variables with the same name in the calling environment even if the shell is not in posix -mode +mode. .RE .PD .TP @@ -12105,17 +12537,18 @@ mode Bash-5.1 changed the way .SM .B $RANDOM -is generated to introduce slightly -more randomness. If the shell compatibility level is set to 50 or +is generated to introduce 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 random number generator by assigning a value to .SM .B RANDOM -will produce the same sequence as in bash-5.0 +will produce the same sequence as in bash-5.0. .IP \(bu If the command hash table is empty, bash versions prior to bash-5.1 printed an informational message to that effect, even when producing -output that can be reused as input. Bash-5.1 suppresses that message +output that can be reused as input. +Bash-5.1 suppresses that message when the \fB\-l\fP option is supplied. .RE .PD @@ -12128,30 +12561,30 @@ The \fBunset\fP builtin treats attempts to unset array subscripts \fB@\fP and \fB*\fP differently depending on whether the array is indexed or associative, and differently than in previous versions. .IP \(bu -arithmetic commands ( +Arithmetic commands ( .BR (( .\|.\|.\& )) ) and the expressions in an arithmetic for -statement can be expanded more than once +statement can be expanded more than once. .IP \(bu -expressions used as arguments to arithmetic operators in the \fB[[\fP -conditional command can be expanded more than once +Expressions used as arguments to arithmetic operators in the \fB[[\fP +conditional command can be expanded more than once. .IP \(bu -the expressions in substring parameter brace expansion can be -expanded more than once +The expressions in substring parameter brace expansion can be +expanded more than once. .IP \(bu -the expressions in the +The expressions in the .BR $(( .\|.\|.\& )) -word expansion can be expanded more than once +word expansion can be expanded more than once. .IP \(bu -arithmetic expressions used as indexed array subscripts can be -expanded more than once +Arithmetic expressions used as indexed array subscripts can be +expanded more than once. .IP \(bu \fBtest \-v\fP, when given an argument of \fBA[@]\fP, where \fBA\fP is an existing associative array, will return true if the array has any set elements. Bash-5.2 will look for and report on a key named \fB@\fP. .IP \(bu -the ${\fIparameter\fP\fB[:]=\fP\fIvalue\fP} word expansion will return +The ${\fIparameter\fP\fB[:]=\fP\fIvalue\fP} word expansion will return \fIvalue\fP, before any variable-specific transformations have been performed (e.g., converting to lowercase). Bash-5.2 will return the final value assigned to the variable. @@ -12195,17 +12628,16 @@ is started with the name .BR rbash , or the .B \-r -option is supplied at invocation, -the shell becomes restricted. +option is supplied at invocation, the shell becomes \fIrestricted\fP. A restricted shell is used to set up an environment more controlled than the standard shell. It behaves identically to .B bash with the exception that the following are disallowed or not performed: .IP \(bu -changing directories with \fBcd\fP +Changing directories with \fBcd\fP. .IP \(bu -setting or unsetting the values of +Setting or unsetting the values of .SM .BR SHELL , .SM @@ -12216,57 +12648,61 @@ setting or unsetting the values of .BR ENV , or .SM -.B BASH_ENV +.BR BASH_ENV . .IP \(bu -specifying command names containing -.B / +Specifying command names containing +.BR / . .IP \(bu -specifying a filename containing a +Specifying a filename containing a .B / as an argument to the .B . -builtin command +builtin command. +.IP \(bu +Using the \fB\-p\fP option to the +.B . +builtin command to specify a search path. .IP \(bu -specifying a filename containing a slash as an argument to the +Specifying a filename containing a slash as an argument to the .B history -builtin command +builtin command. .IP \(bu -specifying a filename containing a slash as an argument to the +Specifying a filename containing a slash as an argument to the .B \-p option to the .B hash -builtin command +builtin command. .IP \(bu -importing function definitions from the shell environment at startup +Importing function definitions from the shell environment at startup. .IP \(bu -parsing the value of +Parsing the value of .SM .B SHELLOPTS -from the shell environment at startup +from the shell environment at startup. .IP \(bu -redirecting output using the >, >|, <>, >&, &>, and >> redirection operators +Redirecting output using the >, >|, <>, >&, &>, and >> redirection operators. .IP \(bu -using the +Using the .B exec -builtin command to replace the shell with another command +builtin command to replace the shell with another command. .IP \(bu -adding or deleting builtin commands with the +Adding or deleting builtin commands with the .B \-f and .B \-d options to the .B enable -builtin command +builtin command. .IP \(bu -using the \fBenable\fP builtin command to enable disabled shell builtins +Using the \fBenable\fP builtin command to enable disabled shell builtins. .IP \(bu -specifying the +Specifying the .B \-p option to the .B command -builtin command +builtin command. .IP \(bu -turning off restricted mode with +Turning off restricted mode with \fBset +r\fP or \fBshopt \-u restricted_shell\fP. .PP These restrictions are enforced after any startup files are read. @@ -12408,7 +12844,5 @@ or to start the command in the background and immediately bring it into the foreground. .PP Array variables may not (yet) be exported. -.PP -There may be only one active coprocess at a time. .zZ .zY diff --git a/doc/bash.html b/doc/bash.html index ae38d273e..3d9db74e6 100644 --- a/doc/bash.html +++ b/doc/bash.html @@ -3,7 +3,7 @@ -
BASH(1)2024 August 13BASH(1) +BASH(1)2024 September 29BASH(1)

Index @@ -55,7 +55,8 @@ Bash is Copyright © 1989-2024 by the Free Software Foundation, Inc. Bash is an sh-compatible command language interpreter that -executes commands read from the standard input or from a file. +executes commands read from the standard input, from a string, +or from a file. Bash also incorporates useful features from the Korn and C @@ -81,7 +82,6 @@ In addition, bash interprets the following options when it is invoked:

-

-c @@ -144,15 +144,15 @@ If the -s option is present, or if no arguments remain after option -processing, then commands are read from the standard input. +processing, the shell reads commands from the standard input. This option allows the positional parameters to be set when invoking an interactive shell or when reading input through a pipe.
-D
-A list of all double-quoted strings preceded by $ -is printed on the standard output. +Print a list of all double-quoted strings preceded by $ +on the standard output. These are the strings that are subject to language translation when the current locale is not C or POSIX. @@ -168,8 +168,9 @@ This implies the -n option; no commands will be executed. below). If shopt_option is present, -O sets the value of that option; +O unsets it. -If shopt_option is not supplied, the names and values of the shell -options accepted by shopt are printed on the standard output. +If shopt_option is not supplied, bash prints +the names and values of the shell +options accepted by shopt on the standard output. If the invocation option is +O, the output is displayed in a format that may be reused as input.
-- @@ -188,7 +189,6 @@ An argument of - is equivalent to --. -

@@ -199,7 +199,6 @@ These options must appear on the command line before the single-character options to be recognized.

-

--debugger @@ -226,8 +225,9 @@ Equivalent to -D.
Display a usage message on standard output and exit successfully. -
--init-file file
- +
+
+--init-file file
--rcfile file
Execute commands from @@ -315,7 +315,6 @@ Show version information for this instance of bash on the standard output and exit successfully. -
 

ARGUMENTS

@@ -342,8 +341,8 @@ reads and executes commands from this file, then exits. Bash's exit status is the exit status of the last command executed in the script. If no commands are executed, the exit status is 0. -An attempt is first made to open the file in the current directory, and, -if no file is found, then the shell searches the directories in +Bash first attempts to open the file in the current directory, and, +if no file is found, then searches the directories in PATH @@ -366,7 +365,7 @@ and without the -c option, -whose standard input and error are +whose standard input and standard error are both connected to terminals (as determined by isatty(3)), @@ -374,20 +373,20 @@ or one started with the -i option. +Bash + +sets PS1 -is set and +and $- includes i -if -bash - -is interactive, -allowing a shell script or a startup file to test this state. +if the shell is interactive, +so a shell script or a startup file can test this state.

The following paragraphs describe how @@ -440,7 +439,7 @@ This may be inhibited by using the --norc option. -The --rcfile file option will cause +The --rcfile file option causes bash to use file instead of ~/.bashrc. @@ -473,11 +472,11 @@ $BASH_ENV"

-but the value of the +but does not use the value of the PATH -variable is not used to search for the filename. +variable to search for the filename.

If @@ -552,7 +551,7 @@ In this mode, interactive shells expand the ENV -variable and commands are read and executed from the file +variable and read and execute commands from the file whose name is the expanded value. No other startup files are read.

@@ -561,7 +560,7 @@ No other startup files are read. attempts to determine when it is being run with its standard input connected to a network connection, as when executed by -the historical remote shell daemon, usually rshd, +the historical and rarely-seen remote shell daemon, usually rshd, or the secure shell daemon sshd. If bash @@ -634,7 +633,8 @@ referred to as an

metacharacter
-A character that, when unquoted, separates words. One of the following: +A character that, when unquoted, separates words. +One of the following:
@@ -647,8 +647,8 @@ A character that, when unquoted, separates words. One of the following:
control operator
-A token that performs a control function. It is one of the following -symbols: +A token that performs a control function. +It is one of the following symbols:

@@ -698,7 +698,8 @@ This section describes the syntax of the various forms of shell commands. A simple command is a sequence of optional variable assignments followed by blank-separated words and redirections, and -terminated by a control operator. The first word +terminated by a control operator. +The first word specifies the command to be executed, and is passed as argument zero. The remaining words are passed as arguments to the invoked command.

@@ -737,7 +738,8 @@ This connection is performed before any redirections specified by the below). -If |& is used, command1's standard error, in addition to its +If |& is the pipeline operator, +command1's standard error, in addition to its standard output, is connected to command2's standard input through the pipe; it is shorthand for 2>&1 |. @@ -755,37 +757,38 @@ If the reserved word precedes a pipeline, the exit status of that pipeline is the logical negation of the exit status as described above. -The shell waits for all commands in the pipeline to +If a pipeline is executed synchronously, +the shell waits for all commands in the pipeline to terminate before returning a value.

If the time -reserved word precedes a pipeline, the elapsed as well as user and -system time consumed by its execution are reported when the pipeline -terminates. +reserved word precedes a pipeline, the shell reports the +elapsed as well as user and system time consumed by its execution +when the pipeline terminates. The -p option changes the output format to that specified by POSIX. When the shell is in posix mode, it does not recognize time as a reserved word if the next token begins with a -The +The value of the TIMEFORMAT -variable may be set to a format string that specifies how the timing +variable is a format string that specifies how the timing information should be displayed; see the description of TIMEFORMAT -under -Shell Variables +below under +Shell Variables. -below.

When the shell is in posix mode, time -may be followed by a newline. In this case, the shell displays the +may be followed by a newline. +In this case, the shell displays the total user and system time consumed by the shell and its children. The TIMEFORMAT @@ -803,8 +806,8 @@ See for a description of subshells and a subshell environment. If the lastpipe option is enabled using the shopt builtin (see the description of shopt below), -the last element of a pipeline may be run by the shell process -when job control is not active. +and job control is not active, +the last element of a pipeline may be run by the shell process.  

Lists

@@ -916,22 +919,22 @@ newline in place of a semicolon. below for a description of a subshell environment). Variable assignments and builtin commands that affect the shell's environment do not remain in effect -after the command completes. The return status is the exit status of -list. +after the command completes. +The return status is the exit status of list.
{ list; }
-list is simply executed in the current shell environment. +list is executed in the current shell environment. list must be terminated with a newline or semicolon. This is known as a group command. -The return status is the exit status of -list. +The return status is the exit status of list. +
Note that unlike the metacharacters ( and ), { and } are reserved words and must occur where a reserved -word is permitted to be recognized. Since they do not cause a word -break, they must be separated from list by whitespace or another -shell metacharacter. +word is permitted to be recognized. +Since they do not cause a word break, they must be separated from +list by whitespace or another shell metacharacter.
((expression))
-The expression is evaluated according to the rules described -below under +The arithmetic expression is evaluated according to the rules +described below under ARITHMETIC EVALUATION. @@ -940,12 +943,12 @@ otherwise the return status is 1. The expression undergoes the same expansions as if it were within double quotes, -but double quote characters in expression are not treated specially -and are removed. +but double quote characters in expression are not treated +specially and are removed.
[[ expression ]]
-Return a status of 0 or 1 depending on the evaluation of -the conditional expression expression. +Evaluate the conditional expression expression +and return a status of zero (true) or non-zero (false). Expressions are composed of the primaries described below under CONDITIONAL EXPRESSIONS. @@ -973,8 +976,9 @@ shell option is enabled, the match is performed without regard to the case of alphabetic characters. The return value is 0 if the string matches (==) or does not match (!=) the pattern, and 1 otherwise. -Any part of the pattern may be quoted to force the quoted portion -to be matched as a string. +If any part of the pattern is quoted, the quoted portion is matched +as a string: every character in the quoted portion matches itself, +instead of having any special pattern matching meaning.
An additional binary operator, =~, is available, with the same precedence as == and !=. @@ -993,9 +997,9 @@ If the shell option is enabled, the match is performed without regard to the case of alphabetic characters. -If any part of the pattern is quoted, the quoted portion is matched literally. -This means every character in the quoted portion matches itself, -instead of having any special pattern matching meaning. +
+If any part of the pattern is quoted, the quoted portion is matched literally, +as above. If the pattern is stored in a shell variable, quoting the variable expansion forces the entire pattern to be matched literally. Treat bracket expressions in regular expressions carefully, @@ -1005,6 +1009,7 @@ between brackets. The pattern will match if it matches any part of the string. Anchor the pattern using the ^ and $ regular expression operators to force it to match the entire string. +
The array variable BASH_REMATCH @@ -1021,7 +1026,8 @@ expression are saved in the remaining BASH_REMATCH -indices. The element of +indices. +The element of BASH_REMATCH @@ -1079,9 +1085,9 @@ the entire conditional expression.
for name [ [ in [ word ... ] ] ; ] do list ; done
-The list of words following in is expanded, generating a list +First, expand The list of words following in, generating a list of items. -The variable name is set to each element of this list +Then, the variable name is set to each element of this list in turn, and list is executed each time. If the in word is omitted, the for command executes list once for each positional parameter that is set (see @@ -1093,23 +1099,33 @@ The return status is the exit status of the last command that executes. If the expansion of the items following in results in an empty list, no commands are executed, and the return status is 0.
for (( expr1 ; expr2 ; expr3 )) ; do list ; done
-First, the arithmetic expression expr1 is evaluated according +First, evaluate the arithmetic expression expr1 according to the rules described below under ARITHMETIC EVALUATION. -The arithmetic expression expr2 is then evaluated repeatedly +Then, repeatedly evaluate the arithmetic expression expr2 until it evaluates to zero. -Each time expr2 evaluates to a non-zero value, list is -executed and the arithmetic expression expr3 is evaluated. +Each time expr2 evaluates to a non-zero value, +execute list +and evaluate the arithmetic expression expr3. If any expression is omitted, it behaves as if it evaluates to 1. The return value is the exit status of the last command in list -that is executed, or false if any of the expressions is invalid. +that is executed, or non-zero if any of the expressions is invalid. +
+Use the break and continue builtins +(see +SHELL BUILTIN COMMANDS + + +below) +to control loop execution.
select name [ in word ] ; do list ; done
-The list of words following in is expanded, generating a list -of items, and the set of expanded words is printed on the standard -error, each preceded by a number. If the in -word is omitted, the positional parameters are printed (see +First, expand the list of words following in, +generating a list of items, and print the set of expanded words +the standard error, each preceded by a number. +If the in +word is omitted, print the positional parameters (see PARAMETERS @@ -1122,16 +1138,17 @@ then displays the prompt and reads a line from the standard input. If the line consists of a number corresponding to one of -the displayed words, then the value of +the displayed words, then select sets the value of name -is set to that word. -If the line is empty, the words and prompt are displayed again. -If EOF is read, the select command completes and returns 1. -Any other value read causes +to that word. +If the line is empty, select displays the words and prompt again. +If EOF is read, select completes and returns 1. +Any other value sets name -to be set to null. The line read is saved in the variable +to null. +The line read is saved in the variable REPLY. @@ -1152,11 +1169,15 @@ or zero if no commands were executed.
case word in [ [(] pattern [ | pattern ] .. ) list ;; ] ... esac
A case command first expands word, and tries to match -it against each pattern in turn, using the matching rules +it against each pattern in turn, +proceeding from first to last, +using the matching rules described under Pattern Matching below. +A pattern list is a set of one or more patterns separated by , +and the ) operator terminates the pattern list. The word is expanded using tilde expansion, parameter and variable expansion, arithmetic expansion, command substitution, process substitution and quote removal. @@ -1168,30 +1189,35 @@ If the shell option is enabled, the match is performed without regard to the case of alphabetic characters. -When a match is found, the corresponding list is executed. -If the ;; operator is used, no subsequent matches are attempted after -the first pattern match. +A clause is a pattern list and an associated list. +
+When a match is found, case executes the corresponding list. +If the ;; operator terminates the case clause, the case +command completes after the first match. Using ;& in place of ;; causes execution to continue with -the list associated with the next set of patterns. +the list associated with the next pattern list. Using ;;& in place of ;; causes the shell to test the next pattern list in the statement, if any, and execute any associated list -on a successful match, +if the match succeeds. continuing the case statement execution as if the pattern list had not matched. -The exit status is zero if no -pattern matches. Otherwise, it is the exit status of the -last command executed in list. +The exit status is zero if no pattern matches. +
+Otherwise, it is the exit status of the +last command executed in the last list executed.
if list; then list; [ elif list; then list; ] ... [ else list; ] fi
The if list -is executed. If its exit status is zero, the -then list is executed. Otherwise, each elif -list is executed in turn, and if its exit status is zero, -the corresponding then list is executed and the -command completes. Otherwise, the else list is -executed, if present. The exit status is the exit status of the +is executed. +If its exit status is zero, the +then list is executed. +Otherwise, each elif list is executed in turn, +and if its exit status is zero, the corresponding then list +is executed and the command completes. +Otherwise, the else list is executed, if present. +The exit status is the exit status of the last command executed, or zero if no condition tested true.
while list-1; do list-2; done
@@ -1199,7 +1225,8 @@ last command executed, or zero if no condition tested true. The while command continuously executes the list list-2 as long as the last command in the list list-1 returns -an exit status of zero. The until command is identical +an exit status of zero. +The until command is identical to the while command, except that the test is negated: list-2 @@ -1247,7 +1274,7 @@ The recommended form to use for a coprocess is

-This form is recommended because simple commands result in the coprocess +This form is preferred because simple commands result in the coprocess always being named COPROC, and it is simpler to use and more complete than the other compound commands.

@@ -1290,7 +1317,7 @@ the file descriptors are not available in subshells. The process ID of the shell spawned to execute the coprocess is available as the value of the variable NAME_PID. The wait -builtin command may be used to wait for the coprocess to terminate. +builtin may be used to wait for the coprocess to terminate.

Since the coprocess is created as an asynchronous command, @@ -1321,16 +1348,20 @@ parentheses are not supplied, the braces are recommended. compound-command is executed whenever fname is specified as the name of a simple command. When in posix mode, fname must be a valid shell name -and may not be the name of one of the -POSIX special builtins. +and may not be the name of one of the POSIX special builtins. In default mode, a function name can be any unquoted shell word that does not contain $. +

+

+ Any redirections (see REDIRECTION below) specified when a function is defined are performed when the function is executed. +

+ The exit status of a function definition is zero unless a syntax error occurs or a readonly function with the same name already exists. When executed, the exit status of a function is the exit status of the @@ -1339,7 +1370,6 @@ last command executed in the body. (See below.) -  

COMMENTS

@@ -1356,19 +1386,25 @@ builtin is enabled (see below), a word beginning with # -causes that word and all remaining characters on that line to -be ignored. An interactive shell without the +introduces a comment. +A word begins at the beginning of a line, after unquoted whitespace, or +after an operator. +The comment causes that word and all remaining characters on that line to +be ignored. +An interactive shell without the interactive_comments -option enabled does not allow comments. The +option enabled does not allow comments. +The interactive_comments -option is on by default in interactive shells. +option is enabled by default in interactive shells.  

QUOTING

Quoting is used to remove the special meaning of certain -characters or words to the shell. Quoting can be used to +characters or words to the shell. +Quoting can be used to disable special treatment for special characters, to prevent reserved words from being recognized as such, and to prevent parameter expansion. @@ -1392,24 +1428,27 @@ below), the to prevent history expansion.

-There are three quoting mechanisms: the +There are four quoting mechanisms: the escape character, -single quotes, and double quotes. +single quotes, double quotes, +and dollar-single quotes.

A non-quoted backslash (\) is the escape character. It preserves the literal value of the next character that follows, -with the exception of <newline>. If a \<newline> pair -appears, and the backslash is not itself quoted, the \<newline> -is treated as a line continuation (that is, it is removed from the -input stream and effectively ignored). +removing any special meaning it has, +with the exception of <newline>. +If a \<newline> pair appears, and the backslash is not itself quoted, +the \<newline> is treated as a line continuation (that is, it is +removed from the input stream and effectively ignored).

Enclosing characters in single quotes preserves the literal value -of each character within the quotes. A single quote may not occur +of each character within the quotes. +A single quote may not occur between single quotes, even when preceded by a backslash.

@@ -1424,7 +1463,8 @@ of all characters within the quotes, with the exception of and, when history expansion is enabled, !. -When the shell is in posix mode, the ! has no special meaning +When the shell is in posix mode, +the ! has no special meaning within double quotes, even when history expansion is enabled. The characters $ @@ -1432,9 +1472,9 @@ The characters and ` -retain their special meaning within double quotes. The backslash -retains its special meaning only when followed by one of the following -characters: +retain their special meaning within double quotes. +The backslash retains its special meaning only when followed by one of +the following characters: $, `, @@ -1446,6 +1486,10 @@ characters: or <newline>. +Backslashes preceding characters without a +special meaning are left unmodified. +

+ A double quote may be quoted within double quotes by preceding it with a backslash. If enabled, history expansion will be performed unless an @@ -1562,7 +1606,8 @@ a control-x character The expanded result is single-quoted, as if the dollar sign had not been present. -

+  +

Translating Strings

A double-quoted string preceded by a dollar sign ($" string" @@ -1573,8 +1618,8 @@ translation, using the LC_MESSAGES, TEXTDOMAINDIR, and TEXTDOMAIN shell variables. If the current locale is C or POSIX, if there are no translations available, -or if the string is not translated, -the dollar sign is ignored. +or if the string is not translated, the dollar sign is ignored, +and the string is treated as double-quoted as described above. This is a form of double quoting, so the string remains double-quoted by default, whether or not it is translated and replaced. If the noexpand_translation option is enabled @@ -1587,7 +1632,7 @@ below under SHELL BUILTIN COMMANDS. -  + 

PARAMETERS

A @@ -1617,11 +1662,12 @@ below in SHELL BUILTIN COMMANDS). +The export and readonly builtins assign specific attributes.

-A parameter is set if it has been assigned a value. The null string is -a valid value. Once a variable is set, it may be unset only by using -the +A parameter is set if it has been assigned a value. +The null string is a valid value. +Once a variable is set, it may be unset only by using the unset builtin command (see @@ -1646,7 +1692,8 @@ may be assigned to by a statement of the form If value -is not given, the variable is assigned the null string. All +is not given, the variable is assigned the null string. +All values undergo tilde expansion, parameter and variable expansion, @@ -1655,7 +1702,8 @@ removal (see EXPANSION -below). If the variable has its +below). +If the variable has its integer attribute set, then @@ -1690,13 +1738,16 @@ assignment statement properties.

In the context where an assignment statement is assigning a value -to a shell variable or array index, the += operator can be used to +to a shell variable or array index, the += operator will append to or add to the variable's previous value. -This includes arguments to builtin commands such as declare that -accept assignment statements (declaration commands). -When += is applied to a variable for which the integer attribute has been -set, value is evaluated as an arithmetic expression and added to the -variable's current value, which is also evaluated. +This includes arguments to declaration commands such as +declare that accept assignment statements. +When += is applied to a variable for which the integer attribute +has been set, +the variable's current value and value are each evaluated as +arithmetic expressions, +and the sum of the results is assigned as the variable's value. +The current value is usually an integer constant, but may be an expression. When += is applied to an array variable using compound assignment (see Arrays @@ -1733,8 +1784,8 @@ declare -n ref=$1

-inside the function creates a nameref variable ref whose value is -the variable name passed as the first argument. +inside the function creates a local nameref variable ref whose value +is the variable name passed as the first argument. References and assignments to ref, and changes to its attributes, are treated as references, assignments, and attribute modifications to the variable whose name was passed as $1. @@ -1748,20 +1799,23 @@ array variables. Namerefs can be unset using the -n option to the unset builtin. Otherwise, if unset is executed with the name of a nameref variable as an argument, the variable referenced by the nameref variable will be unset. -  + 

Positional Parameters

A positional parameter is a parameter denoted by one or more -digits, other than the single digit 0. Positional parameters are +digits, other than the single digit 0. +Positional parameters are assigned from the shell's arguments when it is invoked, and may be reassigned using the set -builtin command. Positional parameters may not be assigned to -with assignment statements. The positional parameters are +builtin command. +Positional parameters may not be assigned to +with assignment statements. +The positional parameters are temporarily replaced when a shell function is executed (see FUNCTIONS @@ -1775,27 +1829,33 @@ digit is expanded, it must be enclosed in braces (see below). -  +Without braces, a digit following $ can only refer to +one of the first nine positional parameters ($1-$9) or the +special parameter $0 (see the next section). + 

Special Parameters

-The shell treats several parameters specially. These parameters may -only be referenced; assignment to them is not allowed. +The shell treats several parameters specially. +These parameters may only be referenced; assignment to them is +not allowed. +Special parameters are denoted by one of the following characters.
*
-Expands to the positional parameters, starting from one. +($*) Expands to the positional parameters, starting from one. When the expansion is not within double quotes, each positional parameter expands to a separate word. -In contexts where it is performed, those words +In contexts where word expansions are performed, those words are subject to further word splitting and pathname expansion. -When the expansion occurs within double quotes, it expands to a single word -with the value of each parameter separated by the first character of the +When the expansion occurs within double quotes, it expands to a +single word with the value of each parameter separated by the first +character of the IFS -special variable. +variable. That is, $* @@ -1809,7 +1869,8 @@ is the first character of the value of the IFS -variable. If +variable. +If IFS @@ -1822,14 +1883,16 @@ is null, the parameters are joined without intervening separators.
@
-Expands to the positional parameters, starting from one. +($@) Expands to the positional parameters, starting from one. In contexts where word splitting is performed, this expands each positional parameter to a separate word; if not within double quotes, these words are subject to word splitting. In contexts where word splitting is not performed, +such as the value portion of an assignment statement, this expands to a single word with each positional parameter separated by a space. When the expansion occurs within double quotes, +and word splitting is performed, each parameter expands to a separate word. That is, $@ @@ -1838,9 +1901,10 @@ is equivalent to $1 $2 ... If the double-quoted expansion occurs within a word, the expansion of -the first parameter is joined with the beginning part of the original -word, and the expansion of the last parameter is joined with the last -part of the original word. +the first parameter is joined with the expansion of the +beginning part of the original word, +and the expansion of the last parameter is joined with the +expansion of the last part of the original word. When there are no positional parameters, $@ @@ -1851,16 +1915,15 @@ expand to nothing (i.e., they are removed).
#
-Expands to the number of positional parameters in decimal. +($#) Expands to the number of positional parameters in decimal.
?
-Expands to the exit status of the most recently executed foreground -command. +($?) Expands to the exit status of the most recently executed command.
-
-Expands to the current option flags as specified upon invocation, +($-) Expands to the current option flags as specified upon invocation, by the set @@ -1872,13 +1935,13 @@ option).
$
-Expands to the process ID of the shell. In a subshell, it -expands to the process ID of the current shell, not the -subshell. +($$) Expands to the process ID of the shell. +In a subshell, it expands to the process ID of the parent shell, +not the subshell.
!
-Expands to the process ID of the job most recently placed into the +($!)Expands to the process ID of the job most recently placed into the background, whether executed as an asynchronous command or using the bg builtin (see JOB CONTROL @@ -1888,34 +1951,30 @@ below).
0
-Expands to the name of the shell or shell script. This is set at -shell initialization. If -bash - -is invoked with a file of commands, +($0) Expands to the name of the shell or shell script. +This is set at shell initialization. +If bash is invoked with a file of commands, $0 -is set to the name of that file. If -bash - -is started with the +is set to the name of that file. +If bash is started with the -c option, then $0 is set to the first argument after the string to be -executed, if one is present. Otherwise, it is set -to the filename used to invoke +executed, if one is present. +Otherwise, it is set to the filename used to invoke bash, as given by argument zero.
-  + 

Shell Variables

-The following variables are set by the shell: +The shell sets following variables:

@@ -1923,14 +1982,16 @@ The following variables are set by the shell:

_
-At shell startup, set to the pathname used to invoke the +($_, an underscore) +This has a number of meanings depending on context. +At shell startup, _ is set to the pathname used to invoke the shell or shell script being executed as passed in the environment or argument list. -Subsequently, expands to the last argument to the previous simple +Subsequently, it expands to the last argument to the previous simple command executed in the foreground, after expansion. -Also set to the full pathname used to invoke each command executed +It is also set to the full pathname used to invoke each command executed and placed in the environment exported to that command. -When checking mail, this parameter holds the name of the mail file +When checking mail, $_ expands to the name of the mail file currently being checked.
BASH @@ -1952,7 +2013,8 @@ builtin command (see SHELL BUILTIN COMMANDS -below). The options appearing in +below). +The options appearing in BASHOPTS @@ -1963,7 +2025,7 @@ by shopt. If this variable is in the environment when bash -starts up, each shell option in the list will be enabled before +starts up, the shell enables each option in the list before reading any startup files. This variable is read-only.
BASHPID @@ -1988,7 +2050,7 @@ subsequently reset. An associative array variable whose members correspond to the internal list of aliases as maintained by the alias builtin. Elements added to this array appear in the alias list; however, -unsetting array elements currently does not cause aliases to be removed +unsetting array elements currently does not remove aliases from the alias list. If BASH_ALIASES @@ -2000,9 +2062,8 @@ subsequently reset.
An array variable whose values are the number of parameters in each frame of the current bash execution call stack. -The number of -parameters to the current subroutine (shell function or script executed -with . or source) is at the top of the stack. +The number of parameters to the current subroutine (shell function or +script executed with . or source) is at the top of the stack. When a subroutine is executed, the number of parameters passed is pushed onto BASH_ARGC. @@ -2030,10 +2091,10 @@ have no effect, and it may not be unset.
An array variable containing all of the parameters in the current bash -execution call stack. The final parameter of the last subroutine call -is at the top of the stack; the first parameter of the initial call is -at the bottom. When a subroutine is executed, the parameters supplied -are pushed onto +execution call stack. +The final parameter of the last subroutine call is at the top of the stack; +the first parameter of the initial call is at the bottom. +When a subroutine is executed, the shell pushes the supplied parameters onto BASH_ARGV. @@ -2065,10 +2126,10 @@ script (identical to $0; see the description of special parameter 0 above). -Assignment to +Assigning a value to BASH_ARGV0 -causes the value assigned to also be assigned to $0. +assigns the same value to $0. If BASH_ARGV0 @@ -2079,8 +2140,8 @@ subsequently reset.
An associative array variable whose members correspond to the internal hash table of commands as maintained by the hash builtin. -Elements added to this array appear in the hash table; however, -unsetting array elements currently does not cause command names to be removed +Adding elements to this array makes them appear in the hash table; however, +unsetting array elements currently does not remove command names from the hash table. If BASH_CMDS @@ -2090,8 +2151,8 @@ subsequently reset.
BASH_COMMAND
-The command currently being executed or about to be executed, unless the -shell is executing a command as the result of a trap, +Expands to the command currently being executed or about to be executed, +unless the shell is executing a command as the result of a trap, in which case it is the command executing at the time of the trap. If BASH_COMMAND @@ -2129,20 +2190,12 @@ have no effect, and it may not be unset.
BASH_LOADABLES_PATH
-A colon-separated list of directories in which the shell looks for -dynamically loadable builtins specified by the +A colon-separated list of directories in which the enable command. -
BASH_REMATCH - -
-An array variable whose members are assigned by the =~ binary -operator to the [[ conditional command. -The element with index 0 is the portion of the string -matching the entire regular expression. -The element with index n is the portion of the -string matching the nth parenthesized subexpression. +looks for +dynamically loadable builtins.
BASH_MONOSECONDS
@@ -2154,6 +2207,15 @@ If is unset, it loses its special properties, even if it is subsequently reset. +
BASH_REMATCH + +
+An array variable whose members are assigned by the =~ binary +operator to the [[ conditional command. +The element with index 0 is the portion of the string +matching the entire regular expression. +The element with index n is the portion of the +string matching the nth parenthesized subexpression.
BASH_SOURCE
@@ -2240,8 +2302,9 @@ The value of
Expands to a string describing the version of this instance of -bash. +bash +(e.g., 5.2.37(3)-release).
COMP_CWORD
@@ -2255,6 +2318,10 @@ below).
The key (or final key of a key sequence) used to invoke the current completion function. +This variable is available only in shell functions and external +commands invoked by the +programmable completion facilities (see Programmable Completion +below).
COMP_LINE
@@ -2277,7 +2344,7 @@ below).
COMP_TYPE
-Set to an integer value corresponding to the type of completion attempted +Set to an integer value corresponding to the type of attempted completion that caused a completion function to be called: TAB, for normal completion, ?, for listing completions after successive tabs, @@ -2469,9 +2536,9 @@ The default is system-dependent.
Each time this parameter is referenced, the shell substitutes a decimal number representing the current sequential line number -(starting with 1) within a script or function. When not in a -script or function, the value substituted is not guaranteed to -be meaningful. +(starting with 1) within a script or function. +When not in a script or function, the value substituted is not +guaranteed to be meaningful. If LINENO @@ -2546,7 +2613,8 @@ above).
PPID
-The process ID of the shell's parent. This variable is readonly. +The process ID of the shell's parent. +This variable is readonly.
PWD
@@ -2565,6 +2633,8 @@ a value to initializes (seeds) the sequence of random numbers. +Seeding the random number generator with the same constant value will +produce the same sequence of values. If RANDOM @@ -2653,8 +2723,8 @@ subsequently reset.
SHELLOPTS
-A colon-separated list of enabled shell options. Each word in -the list is a valid argument for the +A colon-separated list of enabled shell options. +Each word in the list is a valid argument for the -o option to the @@ -2664,7 +2734,8 @@ builtin command (see SHELL BUILTIN COMMANDS -below). The options appearing in +below). +The options appearing in SHELLOPTS @@ -2675,7 +2746,7 @@ by set -o. If this variable is in the environment when bash -starts up, each shell option in the list will be enabled before +starts up, the shell enables each option in the list before reading any startup files. This variable is read-only.
SHLVL @@ -2688,8 +2759,9 @@ is started.
SRANDOM
-This variable expands to a 32-bit pseudo-random number each time it is -referenced. The random number generator is not linear on systems that +Each time it is referenced, this variable expands to a 32-bit pseudo-random +number. +The random number generator is not linear on systems that support /dev/urandom @@ -2716,7 +2788,7 @@ This variable is readonly.

-The following variables are used by the shell. In some cases, +The shell uses the following variables. In some cases, bash assigns a default value to a variable; these cases are noted @@ -2755,10 +2827,9 @@ The current version is also a valid value.

If this parameter is set when bash is executing a shell script, -its value is interpreted as a filename containing commands to -initialize the shell, as in -~/.bashrc. - +its expanded value is interpreted as a filename containing commands to +initialize the shell before it reads and executes commands from the +script. The value of BASH_ENV @@ -2801,8 +2872,8 @@ The search path for the cd command. -This is a colon-separated list of directories in which the shell looks -for destination directories specified by the +This is a colon-separated list of directories where the shell looks for +directories specified as arguments to the cd command. @@ -2856,7 +2927,7 @@ when an interactive shell is invoked in posix mode.
A colon-separated list of shell patterns (see Pattern Matching) -defining the list of filenames to be ignored by command search using +defining the set of filenames to be ignored by command search using PATH. Files whose full pathnames match one of these patterns are not considered executable files for the purposes of completion and command execution @@ -2895,7 +2966,8 @@ A sample value is
If set to a numeric value greater than 0, defines a maximum function -nesting level. Function invocations that exceed this nesting level +nesting level. +Function invocations that exceed this nesting level will cause the current command to abort.
GLOBIGNORE @@ -2908,11 +2980,13 @@ of the patterns in it is removed from the list of matches. +The pattern matching honors the setting of the extglob shell +option.
GLOBSORT
-Control how the results of pathname expansion are sorted. +Controls how the results of pathname expansion are sorted. The value of this variable specifies the sort criteria and sort order for the results of pathname expansion. If this variable is unset or set to the null string, pathname expansion @@ -2937,11 +3011,13 @@ The valid sort specifiers are and blocks, -which sort the files on name, names in numeric rather than lexicographic order, +which sort the files on name, +names in numeric rather than lexicographic order, file size, modification time, access time, inode change time, and number of blocks, respectively. If any of the non-name keys compare as equal (e.g., if two files are the same size), sorting uses the name as a secondary sort key. +
For example, a value of -mtime sorts the results in descending order by modification time (newest first).
@@ -2954,6 +3030,7 @@ the all-digit names and are sorted by name using the traditional behavior. A sort specifier of nosort disables sorting completely; the results are returned in the order they are read from the file system, and any leading + or - is ignored. +
If the sort specifier is missing, it defaults to name, so a value of + is equivalent to the null string, and a value of - sorts by name in descending order. @@ -2974,7 +3051,7 @@ character are not saved in the history list. A value of ignoredups -causes lines matching the previous history entry to not be saved. +causes lines matching the previous history entry not to be saved. A value of ignoreboth @@ -2997,9 +3074,12 @@ subject to the value of The second and subsequent lines of a multi-line compound command are not tested, and are added to the history regardless of the value of -HISTCONTROL. +HISTCONTROL +if the first line of the command was saved. +If the first line was not saved, the second and subsequent lines of +the command are not saved either.
HISTFILE
@@ -3010,16 +3090,16 @@ The name of the file in which command history is saved (see below). Bash assigns a default value of ~/.bash_history. If HISTFILE is unset or null, -the command history is not saved when a shell exits. +the shell does not save the command history when it exits.
HISTFILESIZE
-The maximum number of lines contained in the history file. When this -variable is assigned a value, the history file is truncated, if -necessary, -to contain no more than that number of lines by removing the oldest entries. +The maximum number of lines contained in the history file. +When this variable is assigned a value, the history file is truncated, +if necessary, to contain no more than that number of lines +by removing the oldest entries. The history file is also truncated to this size after -writing it when a shell exits. +writing it when a shell exits or by the history builtin. If the value is 0, the history file is truncated to zero size. Non-numeric values and numeric values less than zero inhibit truncation. The shell sets the default value to the value of HISTSIZE @@ -3055,6 +3135,8 @@ not tested, and are added to the history regardless of the value of HISTIGNORE. +If the first line was not saved, the second and subsequent lines of +the command are not saved either. The pattern matching honors the setting of the extglob shell option.
HISTSIZE @@ -3078,7 +3160,7 @@ for to print the time stamp associated with each history entry displayed by the history builtin. -If this variable is set, time stamps are written to the history file so +If this variable is set, the shell writes time stamps to the history file so they may be preserved across shell sessions. This uses the history comment character to distinguish timestamps from other history lines. @@ -3130,7 +3212,12 @@ for word splitting after expansion and to split lines into words with the read -builtin command. The default value is +builtin command. +Word splitting is described above under +EXPANSION. + + +The default value is
IGNOREEOF @@ -3140,8 +3227,8 @@ action of an interactive shell on receipt of an EOF -character as the sole input. If set, the value is the number of -consecutive +character as the sole input. +If set, the value is the number of consecutive EOF @@ -3149,8 +3236,11 @@ characters which must be typed as the first characters on an input line before bash -exits. If the variable exists but does not have a numeric value, or -has no value, the default value is 10. If it does not exist, +exits. +If the variable is set but does not have a numeric value, +or the value is null, +the default value is 10. +If it is unset, EOF @@ -3232,7 +3322,7 @@ option is enabled or in an interactive shell upon receipt of a
MAIL
-If this parameter is set to a file or directory name and the +If the value is set to a file or directory name and the MAILPATH @@ -3248,8 +3338,10 @@ Specifies how often (in seconds) bash -checks for mail. The default is 60 seconds. When it is time to check -for mail, the shell does so before displaying the primary prompt. +checks for mail. +The default is 60 seconds. +When it is time to check for mail, +the shell does so before displaying the primary prompt. If this variable is unset, or set to a value that is not a number greater than or equal to zero, the shell disables mail checking.
MAILPATH @@ -3304,8 +3396,8 @@ script is executed.
PATH
-The search path for commands. It -is a colon-separated list of directories in which +The search path for commands. +It is a colon-separated list of directories in which the shell looks for commands (see COMMAND EXECUTION @@ -3356,7 +3448,8 @@ trailing directory components to retain when expanding the \w and PROMPTING -below). Characters removed are replaced with an ellipsis. +below). +Characters removed are replaced with an ellipsis.
PS0
@@ -3373,7 +3466,8 @@ The value of this parameter is expanded (see PROMPTING -below) and used as the primary prompt string. The default value is +below) and used as the primary prompt string. +The default value is
PS2 @@ -3382,7 +3476,8 @@ The value of this parameter is expanded as with PS1 -and used as the secondary prompt string. The default is +and used as the secondary prompt string. +The default is
PS3 @@ -3468,9 +3563,10 @@ The CPU percentage, computed as (%U + %S) / %R. The optional p is a digit specifying the precision, the number of fractional digits after a decimal point. A value of 0 causes no decimal point or fraction to be output. -At most six places after the decimal point may be specified; +time will print at most six digits after the decimal point; values of p greater than 6 are changed to 6. -If p is not specified, the value 3 is used. +If p is not specified, +time prints three digits after the decimal point.
The optional l specifies a longer format, including minutes, of the form MMmSS.FFs. @@ -3486,11 +3582,8 @@ A trailing newline is added when the format string is displayed.
If set to a value greater than zero, -TMOUT - - -is treated as the -default timeout for the read builtin. +the read builtin uses the value as its +default timeout. The select command terminates if input does not arrive after TMOUT @@ -3502,8 +3595,8 @@ number of seconds to wait for a line of input after issuing the primary prompt. Bash -terminates after waiting for that number of seconds if a complete -line of input does not arrive. +terminates after waiting for that number of seconds if a +complete line of input does not arrive.
TMPDIR
@@ -3513,11 +3606,14 @@ If set, bash uses its value as the name of a directory in which
This variable controls how the shell interacts with the user and -job control. If this variable is set, single word simple +job control. +If this variable is set, single-word simple commands without redirections are treated as candidates for resumption -of an existing stopped job. There is no ambiguity allowed; if there is -more than one job beginning with the string typed, the job most recently -accessed is selected. The +of an existing stopped job. +There is no ambiguity allowed; if there is more than one job +beginning with the string typed, the most recently accessed job +is selected. +The name of a stopped job, in this context, is the command line used to @@ -3551,7 +3647,8 @@ and tokenization (see HISTORY EXPANSION -below). The first character is the history expansion character, +below). +The first character is the history expansion character, the character which signals the start of a history expansion, normally @@ -3571,7 +3668,7 @@ It does not necessarily cause the shell parser to treat the rest of the line as a comment. -  + 

Arrays

Bash @@ -3594,7 +3691,8 @@ An indexed array is created automatically if any variable is assigned to using the syntax name[subscript]=value. The subscript -is treated as an arithmetic expression that must evaluate to a number. +is treated as an arithmetic expression that must evaluate to a number +greater than or equal to zero. To explicitly declare an indexed array, use declare -a name @@ -3620,10 +3718,11 @@ specified for an array variable using the and readonly -builtins. Each attribute applies to all members of an array. +builtins. +Each attribute applies to all members of an array.

-Arrays are assigned to using compound assignments of the form +Arrays are assigned using compound assignments of the form name=(value1 ... valuen), where each value may be of the form [subscript]=string. Indexed array assignments do not require anything but string. @@ -3636,10 +3735,13 @@ but values that are valid variable assignments including the brackets and subscript do not undergo brace expansion and word splitting, as with individual variable assignments. +

+ When assigning to indexed arrays, if the optional brackets and subscript are supplied, that index is assigned to; otherwise the index of the element assigned is the last index assigned -to by the statement plus one. Indexing starts at zero. +to by the statement plus one. +Indexing starts at zero.

When assigning to an associative array, the words in a compound assignment @@ -3659,8 +3761,11 @@ a final missing value is treated like the empty string. This syntax is also accepted by the declare -builtin. Individual array elements may be assigned to using the +builtin. +Individual array elements may be assigned to using the name[subscript]=value syntax introduced above. +

+ When assigning to an indexed array, if name @@ -3678,34 +3783,42 @@ using the compound assignment syntax; see above.

-Any element of an array may be referenced using -${name[subscript]}. The braces are required to avoid -conflicts with pathname expansion. If -subscript is @ or *, the word expands to +An array element is referenced using +${name[subscript]}. +The braces are required to avoid conflicts with pathname expansion. +If subscript is @ or *, the word expands to all members of name, unless noted in the description of a builtin or word expansion. These subscripts differ only when the -word appears within double quotes. If the word is double-quoted, -${name[*]} expands to a single +word appears within double quotes. +If the word is double-quoted, ${name[*]} expands to a single word with the value of each array member separated by the first character of the IFS special variable, and ${name[@]} expands each element of -name to a separate word. When there are no array members, -${name[@]} expands to nothing. +name to a separate word. +When there are no array members, ${name[@]} expands to nothing. If the double-quoted expansion occurs within a word, the expansion of -the first parameter is joined with the beginning part of the original -word, and the expansion of the last parameter is joined with the last -part of the original word. +the first parameter is joined with the beginning part of the +expansion of the original word, +and the expansion of the last parameter is joined with the last +part of the +expansion of the original word. This is analogous to the expansion of the special parameters * and @ (see Special Parameters -above). ${#name[subscript]} expands to the length of -${name[subscript]}. If subscript is * or -@, the expansion is the number of elements in the array. +above). +

+ +${#name[subscript]} expands to the length of +${name[subscript]}. +If subscript is * or @, +the expansion is the number of elements in the array. +

+ If the subscript @@ -3725,7 +3838,8 @@ will create an array if necessary.

An array variable is considered set if a subscript has been assigned a -value. The null string is a valid value. +value. +The null string is a valid value.

It is possible to obtain the keys (indices) of an array as well as the values. @@ -3738,16 +3852,18 @@ special parameters @ and * within double quotes. The unset -builtin is used to destroy arrays. unset name[subscript] -destroys the array element at index subscript, +builtin is used to destroy arrays. +unset name[subscript] +unsets the array element at index subscript, for both indexed and associative arrays. Negative subscripts to indexed arrays are interpreted as described above. Unsetting the last element of an array variable does not unset the variable. unset name, where name is an array, removes the entire array. -unset name[subscript], where -subscript is * or @, behaves differently depending on -whether name is an indexed or associative array. +unset name[subscript] +behaves differently depending on +whether name is an indexed or associative array +when subscript is * or @. If name is an associative array, this unsets the element with subscript * or @. If name is an indexed array, unset removes all of the elements but @@ -3756,8 +3872,11 @@ does not remove the array itself. When using a variable name with a subscript as an argument to a command, such as with unset, without using the word expansion syntax -described above, the argument is subject to pathname expansion. -If pathname expansion is not desired, the argument should be quoted. +described above, +(e.g., unset a[4]), +the argument is subject to pathname expansion. +Quote the argument if pathname expansion is not desired +(e.g., unset 'a[4]').

The @@ -3786,7 +3905,8 @@ builtin accepts a -a option to assign a list of words read from the standard input -to an array. The +to an array. +The set and @@ -3794,7 +3914,11 @@ and builtins display array values in a way that allows them to be reused as assignments. -  +Other builtins accept array name arguments as well +(e.g., mapfile); see the descriptions +of individual builtins below for details. +The shell provides a number of builtin array variables. + 

EXPANSION

Expansion is performed on the command line after it has been split into @@ -3856,16 +3980,17 @@ as explained above (see PARAMETERS). -  + 

Brace Expansion

Brace expansion -is a mechanism by which arbitrary strings -may be generated. This mechanism is similar to +is a mechanism to generate arbitrary strings +sharing a common prefix and suffix, either of which can be empty. +This mechanism is similar to pathname expansion, but the filenames generated -need not exist. Patterns to be brace expanded take -the form of an optional +need not exist. +Patterns to be brace expanded are formed from an optional preamble, followed by either a series of comma-separated strings or @@ -3901,12 +4026,14 @@ using the default C locale. Note that both x and y must be of the same type (integer or letter). When the increment is supplied, it is used as the difference between -each term. The default increment is 1 or -1 as appropriate. +each term. +The default increment is 1 or -1 as appropriate.

Brace expansion is performed before any other expansions, and any characters special to other expansions are preserved -in the result. It is strictly textual. +in the result. +It is strictly textual. Bash does not apply any syntactic interpretation to the context of the @@ -3917,6 +4044,8 @@ A correctly-formed brace expansion must contain unquoted opening and closing braces, and at least one unquoted comma or a valid sequence expression. Any incorrectly formed brace expansion is left unchanged. +

+ A { or , may be quoted with a backslash to prevent its being considered part of a brace expression. To avoid conflicts with parameter expansion, the string ${ @@ -3951,21 +4080,17 @@ appear as part of a word, and preserves them in the output. Bash removes braces from words as a consequence of brace -expansion. For example, a word entered to +expansion. +For example, a word entered to sh as file{1,2} -appears identically in the output. The same word is -output as +appears identically in the output. +Bash outputs that word as file1 file2 -after expansion by -bash. - -If strict compatibility with -sh - -is desired, start +after brace expansion. +Start bash with the @@ -3981,8 +4106,8 @@ command (see SHELL BUILTIN COMMANDS -below). -  +below) for strict sh compatibility. + 

Tilde Expansion

If a word begins with an unquoted tilde character ( @@ -4002,8 +4127,8 @@ If HOME -is unset, the home directory of the user executing the shell is -substituted instead. +is unset, the tilde expands to +the home directory of the user executing the shell instead. Otherwise, the tilde-prefix is replaced with the home directory associated with the specified login name.

@@ -4017,11 +4142,11 @@ the value of the shell variable replaces the tilde-prefix. If the tilde-prefix is a -the value of the shell variable +the shell substitutes the value of the shell variable OLDPWD, -if it is set, is substituted. +if it is set. If the characters following the tilde in the tilde-prefix consist of a number N, optionally prefixed by a @@ -4032,7 +4157,8 @@ the tilde-prefix is replaced with the corresponding element from the directory stack, as it would be displayed by the dirs -builtin invoked with the tilde-prefix as an argument. +builtin invoked with the characters following the tilde in the +tilde-prefix as an argument. If the characters following the tilde in the tilde-prefix consist of a number without a leading @@ -4042,18 +4168,23 @@ or is assumed.

-If the login name is invalid, or the tilde expansion fails, the word -is unchanged. +The results of tilde expansion are treated as if they were quoted, so +the replacement is not subject to word splitting and pathname expansion. +

+ +If the login name is invalid, or the tilde expansion fails, the +tilde-prefix is unchanged.

-Each variable assignment is checked for unquoted tilde-prefixes immediately +Bash checks each variable assignment +for unquoted tilde-prefixes immediately following a : or the first -=. +=, -In these cases, tilde expansion is also performed. +and performs tilde expansion in these cases. Consequently, one may use filenames with tildes in assignments to PATH, @@ -4076,13 +4207,14 @@ of variable assignments (as described above under when they appear as arguments to simple commands. Bash does not do this, except for the declaration commands listed above, when in posix mode. -  + 

Parameter Expansion

The character introduces parameter expansion, -command substitution, or arithmetic expansion. The parameter name +command substitution, or arithmetic expansion. +The parameter name or symbol to be expanded may be enclosed in braces, which are optional but serve to protect the variable to be expanded from characters immediately following it which could be @@ -4096,10 +4228,14 @@ embedded arithmetic expansion, command substitution, or parameter expansion.

+The basic form of parameter expansion is +

-

-
${parameter}
-The value of parameter is substituted. The braces are required +${parameter} +

+ +which substitutes the value of parameter. +The braces are required when parameter @@ -4112,22 +4248,21 @@ interpreted as part of its name. The parameter is a shell parameter as described above PARAMETERS) or an array reference (Arrays). -

If the first character of parameter is an exclamation point (!), and parameter is not a nameref, it introduces a level of indirection. Bash uses the value formed by expanding the rest of -parameter as the new parameter; this is then -expanded and that value is used in the rest of the expansion, rather +parameter as the new parameter; +this new parameter is then expanded and that value is used in the rest of the expansion, rather than the expansion of the original parameter. This is known as indirect expansion. The value is subject to tilde expansion, parameter expansion, command substitution, and arithmetic expansion. If parameter is a nameref, this expands to the name of the parameter referenced by parameter instead of performing the -complete indirect expansion. +complete indirect expansion, for compatibility. The exceptions to this are the expansions of ${!prefix*} and ${!name[@]} described below. The exclamation point must immediately follow the left brace in order to @@ -4140,8 +4275,8 @@ parameter expansion, command substitution, and arithmetic expansion. When not performing substring expansion, using the forms documented below (e.g., :-), -bash tests for a parameter that is unset or null. Omitting the colon -results in a test only for a parameter that is unset. +bash tests for a parameter that is unset or null. +Omitting the colon tests only for a parameter that is unset.

@@ -4153,7 +4288,8 @@ results in a test only for a parameter that is unset. is unset or null, the expansion of word -is substituted. Otherwise, the value of +is substituted. +Otherwise, the value of parameter is substituted. @@ -4166,13 +4302,13 @@ is unset or null, the expansion of word is assigned to -parameter. +parameter, -The value of -parameter +and the expansion is the final value of +parameter. -is then substituted. Positional parameters and special parameters may -not be assigned to in this way. +Positional parameters and special parameters may +not be assigned in this way.

${parameter:?word}
Display Error if Null or Unset. If @@ -4183,8 +4319,10 @@ if word is not present) is written to the standard error and the shell, if it -is not interactive, exits. Otherwise, the value of parameter is -substituted. +is not interactive, exits with a non-zero status. +An interactive shell does not exit, but does not execute the command +associated with the expansion. +Otherwise, the value of parameter is substituted.
${parameter:+word}
Use Alternate Value. If @@ -4194,6 +4332,7 @@ is null or unset, nothing is substituted, otherwise the expansion of word is substituted. +The value of parameter is not used.
${parameter:offset}
${parameter:offset:length}
@@ -4273,7 +4412,7 @@ When @ is used and the expansion appears within double quotes, each key expands to a separate word.
${#parameter}
Parameter length. -The length in characters of the value of parameter is substituted. +Substitutes the length in characters of the expanded value of parameter. If parameter @@ -4405,15 +4544,17 @@ array in turn, and the expansion is the resultant list. Pattern substitution. The pattern is expanded to produce a pattern just as in -pathname expansion. -Parameter is expanded and the longest match of pattern -against its value is replaced with string. -string undergoes tilde expansion, parameter and variable expansion, -arithmetic expansion, command and process substitution, and quote removal. -The match is performed using the rules described under +pathname expansion and matched against the expanded value of +parameter +using the rules described under Pattern Matching below. +The longest match of pattern +in the expanded value is replaced with string. +string undergoes tilde expansion, parameter and variable expansion, +arithmetic expansion, command and process substitution, and quote removal. +
In the first form above, only the first match is replaced. If there are two slashes separating parameter and pattern (the second form above), all matches of pattern are @@ -4422,9 +4563,8 @@ If pattern is preceded by # (the third form above), it must match at the beginning of the expanded value of parameter. If pattern is preceded by % (the fourth form above), it must match at the end of the expanded value of parameter. +
If the expansion of string is null, -matches of pattern are deleted. -If string is null, matches of pattern are deleted and the / following pattern may be omitted.
@@ -4448,11 +4588,18 @@ shell programmers should quote any occurrences of & they want to be taken literally in the replacement and ensure any instances of & they want to be replaced are unquoted.
+Like the pattern removal operators, double quotes surrounding the +replacement string quote the expanded characters, while double quotes +enclosing the entire parameter substitution do not, since +the expansion is performed in a +context that doesn't take any enclosing double quotes into account. +
If the nocasematch shell option is enabled, the match is performed without regard to the case of alphabetic characters. +
If parameter @@ -4488,6 +4635,7 @@ pathname expansion. Each character in the expanded value of parameter is tested against pattern, and, if it matches the pattern, its case is converted. The pattern should not attempt to match more than one character. +
The ^ operator converts lowercase letters matching pattern to uppercase; the , operator converts matching uppercase letters to lowercase. @@ -4496,6 +4644,7 @@ expanded value; the ^ and , expansions match and convert only the first character in the expanded value. If pattern is omitted, it is treated like a ?, which matches every character. +
If parameter @@ -4616,7 +4765,7 @@ The result of the expansion is subject to word splitting and pathname expansion as described below. -  + 

Command Substitution

Command substitution allows the output of a command to replace @@ -4715,11 +4864,12 @@ escape the inner backquotes with backslashes. If the substitution appears within double quotes, bash does not perform word splitting and pathname expansion on the results. -  + 

Arithmetic Expansion

-Arithmetic expansion allows the evaluation of an arithmetic expression -and the substitution of the result. The format for arithmetic expansion is: +Arithmetic expansion evaluates an arithmetic expression +and substitutes the result. +The format for arithmetic expansion is:

@@ -4751,8 +4901,10 @@ If is invalid, bash -prints a message indicating failure and no substitution occurs. -  +prints a message to standard error indicating failure, +does not perform the substitution, +and does not execute the command associated with the expansion. + 

Process Substitution

Process substitution allows a process's input or output to be @@ -4766,10 +4918,18 @@ appears as a filename. This filename is passed as an argument to the current command as the result of the expansion. +

+ If the >(list) form is used, writing to -the file will provide input for list. If the -<(list) form is used, the file passed as an -argument should be read to obtain the output of list. +the file will provide input for list. +If the +<(list) form is used, reading the file +will obtain the output of list. +No space may appear between the < or > +and the left parenthesis, otherwise the construct would be interpreted +as a redirection. +

+ Process substitution is supported on systems that support named pipes (FIFOs) or the /dev/fd method of naming open files.

@@ -4778,7 +4938,7 @@ When available, process substitution is performed simultaneously with parameter and variable expansion, command substitution, and arithmetic expansion. -  + 

Word Splitting

The shell scans the results of @@ -4822,7 +4982,7 @@ any sequence of IFS -characters not at the beginning or end serves to delimit words. +characters not at the beginning or end delimits words. If IFS @@ -4836,9 +4996,7 @@ the whitespace characters and newline -are ignored at the beginning and end of the -word, as long as the whitespace character is in the -value of +present in the value of IFS @@ -4846,7 +5004,8 @@ value of IFS -whitespace character). +whitespace character) +are ignored at the beginning and end of the word. Any character in IFS @@ -4901,9 +5060,8 @@ becomes after word splitting and null argument removal.

-Note that if no expansion occurs, no splitting -is performed. -  +Note that if no expansion occurs, no splitting is performed. + 

Pathname Expansion

After word splitting, @@ -4925,13 +5083,15 @@ If one of these characters appears, and is not quoted, then the word is regarded as a pattern, -and replaced with an alphabetically sorted list of -filenames matching the pattern +and replaced with a sorted list of filenames matching the pattern (see Pattern Matching -below). +below) +subject to the value of the GLOBSORT shell variable. +

+ If no matching filenames are found, and the shell option nullglob @@ -4945,13 +5105,15 @@ the word is removed. If the failglob -shell option is set, and no matches are found, an error message -is printed and the command is not executed. +shell option is set, and no matches are found, +bash prints an error message and does not execute the command. If the shell option nocaseglob is enabled, the match is performed without regard to the case of alphabetic characters. +

+ When a pattern is used for pathname expansion, the character @@ -4984,6 +5146,8 @@ never match, even if the pattern begins with a When not matching pathnames, the character is not treated specially. +

+ When matching a pathname, 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 @@ -4991,6 +5155,8 @@ below under Pattern Matching. +

+ See the description of shopt @@ -5051,7 +5217,7 @@ to a non-null value has the effect of enabling the dotglob shell option, so all other filenames beginning with a -Q . + will match. To get the old behavior of ignoring filenames beginning with a @@ -5069,7 +5235,10 @@ option is disabled when is unset. -The pattern matching honors the setting of the extglob shell +The +GLOBIGNORE + +pattern matching honors the setting of the extglob shell option.

@@ -5077,8 +5246,8 @@ The GLOBSORT -variable controls how the results of pathname expansion are sorted, as -described above. +shell variable controls how the results of pathname expansion are sorted, +as described above.

Pattern Matching @@ -5116,12 +5285,13 @@ Matches any single character.

[...]
+ Matches any one of the enclosed characters. A pair of characters separated by a hyphen denotes a range expression; any character that falls between those two characters, inclusive, -using the current locale's collating sequence and character set, -is matched. If the first character following the +using the current locale's collating sequence and character set, matches. +If the first character following the [ is a @@ -5130,11 +5300,21 @@ is a or a ^ -then any character not enclosed is matched. +then any character not within the range matches. +A +- + +may be matched by including it as the first or last character +in the set. +A +] + +may be matched by including it as the first character +in the set. +
The sorting order of characters in range expressions, and the characters included in the range, -are determined by -the current locale and the values of the +are determined by the current locale and the values of the LC_COLLATE @@ -5149,27 +5329,19 @@ To obtain the traditional interpretation of range expressions, where is equivalent to [abcd], -set value of the +set the value of the +LC_COLLATE + +or LC_ALL -shell variable to +shell variables to C, or enable the globasciiranges shell option. -A -- - -may be matched by including it as the first or last character -in the set. -A -] - -may be matched by including it as the first character -in the set. -
Within [ @@ -5227,15 +5399,15 @@ sub-patterns:
?(pattern-list)
-Matches zero or one occurrence of the given patterns +Matches zero or one occurrence of the given patterns.
*(pattern-list)
-Matches zero or more occurrences of the given patterns +Matches zero or more occurrences of the given patterns.
+(pattern-list)
-Matches one or more occurrences of the given patterns +Matches one or more occurrences of the given patterns.
@(pattern-list)
-Matches one of the given patterns +Matches one of the given patterns.
!(pattern-list)
-Matches anything except one of the given patterns +Matches anything except one of the given patterns.
@@ -5263,6 +5435,14 @@ include any filenames beginning with unless the pattern or sub-pattern begins with a +If the +globskipdots + +shell option is enabled, the filenames + +and + +never appear in the set. As above, only has a special meaning when matching filenames. @@ -5273,7 +5453,7 @@ especially when the patterns contain alternations and the strings contain multiple matches. Using separate matches against shorter strings, or using arrays of strings instead of a single long string, may be faster. -  + 

Quote Removal

After the preceding expansions, all unquoted occurrences of the @@ -5285,7 +5465,7 @@ characters and " that did not result from one of the above expansions are removed. -  + 

REDIRECTION

Before a command is executed, its input and output @@ -5297,8 +5477,8 @@ using a special notation interpreted by the shell. 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. +When used with the exec builtin, +redirections modify file handles in the current shell execution environment. The following redirection operators may precede or appear anywhere within a simple command @@ -5315,12 +5495,12 @@ may instead be preceded by a word of the form {varname}. 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 varname. -If >&- or <&- is preceded -by {varname}, the value of varname defines the file -descriptor to close. +If {varname} precedes >&- or <&-, +the value of varname defines the file descriptor to close. If {varname} is supplied, the redirection persists beyond -the scope of the command, allowing the shell programmer to manage -the file descriptor's lifetime manually. +the scope of the command, which allows the shell programmer to manage +the file descriptor's lifetime manually +without using the exec builtin. The varredir_close shell option manages this behavior.

@@ -5336,18 +5516,24 @@ the redirection refers to the standard output (file descriptor 1).

-The word following the redirection operator in the following +The word following the redirection operator in the following descriptions, 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. +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, bash reports an error.

-Note that the order of redirections is significant. For example, +The order of redirections is significant. +For example, the command

@@ -5372,7 +5558,7 @@ ls 2>&1 > dirlist directs only the standard output to file dirlist, -because the standard error was duplicated from the standard output +because the standard error was directed to the standard output before the standard output was redirected to dirlist. @@ -5381,7 +5567,7 @@ before the standard output was redirected to Bash handles several filenames specially when they are used in redirections, as described in the following table. If the operating system on which bash is running provides these -special files, bash will use them; otherwise it will emulate them +special files, bash will use them; otherwise it will emulate them internally with the behavior described below.

@@ -5391,7 +5577,7 @@ internally with the behavior described below.

/dev/fd/fd
-If fd is a valid integer, file descriptor fd is duplicated. +If fd is a valid integer, duplicate file descriptor fd.
/dev/stdin
@@ -5427,14 +5613,14 @@ 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 internally. -  + 

Redirecting Input

-Redirection of input causes the file whose name results from +Redirecting input opens the file whose name results from the expansion of word -to be opened for reading on file descriptor +for reading on file descriptor n, or the standard input (file descriptor 0) if @@ -5450,20 +5636,21 @@ The general format for redirecting input is: [n]<word
-  + 

Redirecting Output

-Redirection of output causes the file whose name results from +Redirecting output opens the file whose name results from the expansion of word -to be opened for writing on file descriptor +for writing on file descriptor n, or the standard output (file descriptor 1) if n -is not specified. If the file does not exist it is created; +is not specified. +If the file does not exist it is created; if it does exist it is truncated to zero size.

@@ -5500,23 +5687,24 @@ and the option to the set -builtin command is not enabled, the redirection is attempted even -if the file named by word exists. -  +builtin command is not enabled, +bash attempts the redirection +even if the file named by word exists. + 

Appending Redirected Output

-Redirection of output in this fashion -causes the file whose name results from -the expansion of +Redirecting output in this fashion opens +the file whose name results from the expansion of word -to be opened for appending on file descriptor +for appending on file descriptor n, or the standard output (file descriptor 1) if n -is not specified. If the file does not exist it is created. +is not specified. +If the file does not exist it is created.

The general format for appending output is: @@ -5526,14 +5714,13 @@ The general format for appending output is: [n]>>word

-  + 

Redirecting Standard Output and Standard Error

-This construct allows both the +This construct redirects 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 +to the file whose name is the expansion of word.

@@ -5564,17 +5751,17 @@ This is semantically equivalent to

When using the second form, word may not expand to a number or --. If it does, other redirection operators apply +-. +If it does, other redirection operators apply (see Duplicating File Descriptors below) for compatibility reasons. -  + 

Appending Standard Output and Standard Error

-This construct allows both the +This construct appends 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 +to the file whose name is the expansion of word.

@@ -5598,7 +5785,7 @@ This is semantically equivalent to

(see Duplicating File Descriptors below). -  + 

Here Documents

This type of redirection instructs the shell to read input from the @@ -5606,7 +5793,7 @@ current source until it reads a line containing only delimiter (with no trailing blanks). -All of the lines read up to that point are then used as the standard +All of the lines read up to that point then become the standard input (or file descriptor n if n is specified) for a command.

@@ -5624,7 +5811,8 @@ The format of here-documents is:

-No parameter and variable expansion, command substitution, +The shell does not perform +parameter and variable expansion, command substitution, arithmetic expansion, or pathname expansion is performed on word. @@ -5644,12 +5832,13 @@ If word is unquoted, the delimiter is word itself, +and the here-document text is treated similarly to a double-quoted string: all lines of the here-document are subjected to parameter expansion, command substitution, and arithmetic expansion, the character sequence \<newline> -is ignored, and +is treated literally, and \ must be used to quote the characters @@ -5658,21 +5847,31 @@ must be used to quote the characters $, and -`. +`; +however, double quote characters have no special meaning.

If the redirection operator is <<-, -then all leading tab characters are stripped from input lines and the -line containing +then the shell strips all leading tab characters from input lines +and the line containing delimiter. This allows here-documents within shell scripts to be indented in a natural fashion. -  +

+ +If the delimiter is not quoted, the +\<newline> + +sequence is treated as a line continuation: the two lines are joined +and the backslash-newline is removed. +This happens while reading the here-document, before the check for +the ending delimiter, so joined lines can form the end delimiter. + 

Here Strings

A variant of here documents, the format is: @@ -5694,7 +5893,7 @@ Pathname 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 n if n is specified). -  + 

Duplicating File Descriptors

The redirection operator @@ -5710,14 +5909,14 @@ is used to duplicate input file descriptors. If word -expands to one or more digits, the file descriptor denoted by +expands to one or more digits, file descriptor n is made to be a copy of that file descriptor. -If the digits in +It is a redirection error if the digits in word -do not specify a file descriptor open for input, a redirection error occurs. +do not specify a file descriptor open for input. If word @@ -5727,10 +5926,11 @@ evaluates to file descriptor n -is closed. If +is closed. +If n -is not specified, the standard input (file descriptor 0) is used. +is not specified, this uses the standard input (file descriptor 0).

The operator @@ -5742,14 +5942,15 @@ The operator

-is used similarly to duplicate output file descriptors. If +is used similarly to duplicate output file descriptors. +If n -is not specified, the standard output (file descriptor 1) is used. -If the digits in +is not specified, this uses the standard output (file descriptor 1). +It is a redirection error if the digits in word -do not specify a file descriptor open for output, a redirection error occurs. +do not specify a file descriptor open for output. If word @@ -5760,10 +5961,11 @@ file descriptor n is closed. -As a special case, if n is omitted, and word does not -expand to one or more digits or -, the standard output and standard -error are redirected as described previously. -  +As a special case, if n is omitted, +and word does not expand to one or more digits or -, +this redirects the standard output and standard error as described +previously. + 

Moving File Descriptors

The redirection operator @@ -5795,7 +5997,7 @@ moves the file descriptor digit to file descriptor n, or the standard output (file descriptor 1) if n is not specified. -  + 

Opening File Descriptors for Reading and Writing

The redirection operator @@ -5807,22 +6009,24 @@ The redirection operator

-causes the file whose name is the expansion of +opens the file whose name is the expansion of word -to be opened for both reading and writing on file descriptor +for both reading and writing on file descriptor n, or on file descriptor 0 if n -is not specified. If the file does not exist, it is created. -  +is not specified. +If the file does not exist, it is created. + 

ALIASES

Aliases allow a string to be substituted for a word that is in a position in the input where it can be the first word of a simple -command. Aliases have names and corresponding values that are set +command. +Aliases have names and corresponding values that are set and unset using the alias and unalias builtin commands (see SHELL BUILTIN COMMANDS @@ -5832,7 +6036,8 @@ 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 +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 characters following the word before @@ -5862,8 +6067,8 @@ does not try to recursively expand the replacement text. If the last character of the alias value is a blank, -then the next command -word following the alias is also checked for alias expansion. +the shell checks the next command +word following the alias for alias expansion.

Aliases are created and listed with the @@ -5880,7 +6085,7 @@ If arguments are needed, use a shell function (see FUNCTIONS -below). +below) instead.

Aliases are not expanded when the shell is not interactive, unless @@ -5894,7 +6099,9 @@ shell option is set using shopt under -SHELL BUILTIN COMMANDS +SHELL BUILTIN COMMANDS + + below).

@@ -5905,27 +6112,28 @@ somewhat confusing. 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 +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. +command does not take effect until the shell reads the next line of input. 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 +is itself a command. +As a consequence, aliases defined in a function are not available until after that -function is executed. To be safe, always put +function is executed. +To be safe, always put alias definitions on a separate line, and do not use alias in compound commands.

-For almost every purpose, aliases are superseded by -shell functions. -  +For almost every purpose, shell functions are preferable to aliases. + 

FUNCTIONS

A shell function, defined as described above under @@ -5934,18 +6142,21 @@ A shell function, defined as described above under
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. +the shell executes +the list of commands associated with that function name. Functions are executed in the context of the -current shell; no new process is created to interpret +calling shell; there is no new process created to interpret 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 # -is updated to reflect the change. Special parameter 0 -is unchanged. +is updated to reflect the new positional parameters. +Special parameter 0 is unchanged. The first element of the FUNCNAME @@ -5987,7 +6198,7 @@ trap is not inherited unless the -o errtrace shell option has been enabled.

-Variables local to the function may be declared with the +Variables local to the function are declared with the local builtin command (local variables). @@ -6004,18 +6215,19 @@ Previous scopes consist of that function's caller and so on, back to the scope, where the shell is not executing any shell function. -Consequently, a local variable at the current scope is a variable +A local variable at the current scope is a variable declared using the local or declare builtins in the function that is currently executing.

Local variables -variables with the same name declared at -previous scopes. +variables with the same name declared at previous 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. +hides variables with the same name declared at previous scopes, +including global variables: references and assignments +refer to the local variable, leaving the variables +at previous scopes unmodified. When the function returns, the global variable is once again visible.

@@ -6055,8 +6267,8 @@ variable with that name that had been shadowed will become visible

The FUNCNEST variable, if set to a numeric value greater -than 0, defines a maximum function nesting level. Function -invocations that exceed the limit cause the entire command to +than 0, defines a maximum function nesting level. +Function invocations that exceed the limit cause the entire command to abort.

@@ -6066,6 +6278,10 @@ If the builtin command is executed in a function, the function completes and execution resumes with the next command after the function call. +If return is supplied a numeric argument, +that is the function's return status; otherwise the function's +return status is the exit status of the last command executed +before the return. Any command associated with the RETURN trap is executed before execution resumes. When a function completes, the values of the @@ -6076,7 +6292,7 @@ are restored to the values they had prior to the function's execution.

-Function names and definitions may be listed with the +The -f option to the @@ -6085,7 +6301,9 @@ option to the or typeset -builtin commands. The +builtin commands +will list function names and definitions. +The -F option to @@ -6106,24 +6324,31 @@ option to the export builtin. -A function definition may be deleted using the -f option to +The -f option to the unset -builtin. +builtin will delete a function definition.

Functions may be recursive. The FUNCNEST variable may be used to limit the depth of the function call stack and restrict the number of function invocations. -By default, no limit is imposed on the number of recursive calls. -  +By default, bash imposes no limit on the number of recursive calls. + 

ARITHMETIC EVALUATION

The shell allows arithmetic expressions to be evaluated, under -certain circumstances (see the let and declare builtin -commands, the (( compound command, and Arithmetic Expansion). -Evaluation is done in fixed-width integers with no check for overflow, +certain circumstances +(see the let and declare builtin commands, +the (( compound command, +the arithmetic for command, +the [[ conditional command, +and Arithmetic Expansion). +

+ +Evaluation is done in the largest fixed-width integers available, +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. @@ -6138,14 +6363,14 @@ The levels are listed in order of decreasing precedence.

variable post-increment and post-decrement -
- + - -
-unary minus and plus
++id --id
variable pre-increment and pre-decrement +
- + + +
+unary minus and plus
! ~
@@ -6214,8 +6439,13 @@ Shell variables are allowed as operands; parameter expansion is performed before the expression is evaluated. Within an expression, shell variables may also be referenced by name without using the parameter expansion syntax. +This means you can use "x", where x is a shell variable name, +in an arithmetic expression, and the shell will evaluate its value as +an expression and use the result. A shell variable that is null or unset evaluates to 0 when referenced -by name without using the parameter expansion syntax. +by name in an expression. +

+ The value of a variable is evaluated as an arithmetic expression when it is referenced, or when a variable which has been given the integer attribute using declare -i is assigned a value. @@ -6241,10 +6471,10 @@ letters may be used interchangeably to represent numbers between 10 and 35.

-Operators are evaluated in order of precedence. Sub-expressions in -parentheses are evaluated first and may override the precedence -rules above. -  +Operators are evaluated in precedence order. +Sub-expressions in parentheses are evaluated first +and may override the precedence rules above. + 

CONDITIONAL EXPRESSIONS

Conditional expressions are used by the [[ compound command and @@ -6255,7 +6485,13 @@ 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. +Expressions are formed from the unary or binary primaries listed below. +Unary expressions are often used to examine the status of a file +or shell variable. +Binary operators are used for string, numeric, and file attribute +comparisons. +

+ Bash handles several filenames specially when they are used in expressions. If the operating system on which bash is running provides these @@ -6362,7 +6598,8 @@ True if file exists and is a symbolic link.

-N file
-True if file exists and has been modified since it was last read. +True if file exists and has been modified since it was last +accessed.
-O file
@@ -6371,15 +6608,6 @@ True if file exists and is owned by the effective user id.
True if file exists and is a socket. -
file1 -ef file2
-True if file1 and file2 refer to the same device and -inode numbers. -
file1 -nt file2
-True if file1 is newer (according to modification date) than file2, -or if file1 exists and file2 does not. -
file1 -ot file2
-True if file1 is older than file2, or if file2 exists -and file1 does not.
-o optname
@@ -6419,21 +6647,19 @@ is set and is a name reference.
True if the length of string is zero.
string
-
-n string
- True if the length of string is non-zero. +
string1 == string2
string1 = string2
- -True if the strings are equal. = should be used -with the test command for POSIX conformance. +True if the strings are equal. += should be used with the test command for POSIX conformance. When used with the [[ command, this performs pattern matching as described above (Compound Commands).
string1 != string2
@@ -6442,6 +6668,19 @@ True if the strings are not equal. True if string1 sorts before string2 lexicographically.
string1 > string2
True if string1 sorts after string2 lexicographically. + +
+
+file1 -ef file2 +True if file1 and file2 refer to the same device and +inode numbers. +
file1 -nt file2
+True if file1 is newer (according to modification date) than file2, +or if file1 exists and file2 does not. +
file1 -ot file2
+True if file1 is older than file2, or if file2 exists +and file1 does not. +
arg1 OP arg2
@@ -6465,17 +6704,17 @@ or These arithmetic binary operators return true if arg1 is equal to, not equal to, less than, less than or equal to, greater than, or greater than or equal to arg2, respectively. -Arg1 +arg1 and arg2 may be positive or negative integers. When used with the [[ command, -Arg1 +arg1 and -Arg2 +arg2 are evaluated as arithmetic expressions (see ARITHMETIC EVALUATION @@ -6484,10 +6723,10 @@ are evaluated as arithmetic expressions (see above).
-  + 

SIMPLE COMMAND EXPANSION

-When a simple command is executed, the shell performs the following +When the shell executes a simple command, it performs the following expansions, assignments, and redirections, from left to right, in the following order.
@@ -6497,7 +6736,8 @@ 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 +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.
@@ -6524,16 +6764,19 @@ an error occurs, and the command exits with a non-zero status.

If no command name results, redirections are performed, but do not -affect the current shell environment. A redirection error causes the -command to exit with a non-zero status. +affect 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 expansions -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. -  +described below. +Otherwise, the command exits. +If one of the expansions 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 zero status. + 

COMMAND EXECUTION

After a command has been split into words, if it results in a @@ -6542,14 +6785,15 @@ the following 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 +locate it. +If there exists a shell function by that name, that function is +invoked as described above in FUNCTIONS. 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. +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, @@ -6572,11 +6816,11 @@ under below). -A full search of the directories in +Bash performs a full search of the directories in PATH -is performed only if the command is not found in the hash table. +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 command_not_found_handle. If that function exists, it is invoked in a separate execution environment @@ -6596,10 +6840,10 @@ 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 shell script, a file -containing shell commands, and the shell creates a -new instance of itself -to execute it. +a shell script, a file containing shell commands, +and the shell creates a new instance of itself to execute it. +Bash tries to determine whether the file is a text file or a binary, +and will not execute files it determines to be binaries. 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 @@ -6607,7 +6851,9 @@ commands remembered by the parent (see hash below under -SHELL BUILTIN COMMANDS) +SHELL BUILTIN COMMANDS + + are retained by the child.

@@ -6615,14 +6861,16 @@ If the program is a file beginning with #!, the remainder of the first line specifies an interpreter -for the program. The shell executes the +for the program. +The shell executes the specified interpreter on operating systems that do not -handle this executable format themselves. The arguments to the +handle this executable 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 the command arguments, if any. -  + 

COMMAND EXECUTION ENVIRONMENT

The shell has an execution environment, which consists of the @@ -6694,9 +6942,12 @@ Command substitution, commands grouped with parentheses, and asynchronous commands are invoked in a subshell environment that is a duplicate of the shell environment, except that traps caught by the shell are reset to the values -that the shell inherited from its parent at invocation. Builtin -commands that are invoked as part of a pipeline are also executed in a -subshell environment. Changes made to the subshell environment +that the shell inherited from its parent at invocation. +Builtin commands that are invoked as part of a pipeline, +except possibly in the last element depending on the value of the +lastpipe shell option, +are also executed in a subshell environment. +Changes made to the subshell environment cannot affect the shell's execution environment.

@@ -6715,7 +6966,7 @@ If a command is followed by a & and job control is not active, the default standard input for the command is the empty file /dev/null. Otherwise, the invoked command inherits the file descriptors of the calling shell as modified by redirections. -  + 

ENVIRONMENT

When a program is invoked it is given an array of strings @@ -6734,23 +6985,31 @@ creates a parameter for each name found, automatically marking it for export -to child processes. Executed commands inherit the environment. +to child processes. +Executed commands inherit the environment. The -export +export, + +declare -x, and -declare -x +unset -commands allow parameters and functions to be added to and -deleted from the environment. If the value of a parameter -in the environment is modified, the new value becomes part -of the environment, replacing the old. The environment +commands modify the environment by +adding and deleting parameters and functions. +If the value of a parameter +in the environment is modified, the new value automatically +becomes part of the environment, replacing the old. +The environment inherited by any executed command consists of the shell's initial environment, whose values may be modified in the shell, less any pairs removed by the unset -command, plus any additions via the +or +export -n + +commands, plus any additions via the export and @@ -6759,16 +7018,19 @@ and commands.

-The environment for any -simple command - -or function may be augmented temporarily by prefixing it with -parameter assignments, as described above in -PARAMETERS. +If any parameter assignments, as described above in +PARAMETERS, +appear before a +simple command, + +the variable assignments are part of that command's environment +for as long as it executes. These assignment statements affect only the environment seen by that command. +If these assignments precede a call to a shell function, the variables +are local to the function and exported to that function's children.

If the @@ -6790,23 +7052,27 @@ When invokes an external command, the variable _ -is set to the full filename of the command and passed to that +is set to the full pathname of the command and passed to that command in its environment. -  + 

EXIT STATUS

The exit status of an executed command is the value returned by the -waitpid system call or equivalent function. Exit statuses -fall between 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. +waitpid system call or equivalent function. +Exit statuses fall between 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. +zero exit status has succeeded. +So while an exit status of zero indicates success, a non-zero +exit status indicates failure. +

+ When a command terminates on a fatal signal N, bash uses the value of 128+N as the exit status.

@@ -6833,9 +7099,9 @@ parameter $?. Bash itself returns the exit status of the last command executed, unless a syntax error occurs, in which case it exits -with a non-zero value. See also the exit builtin -command below. -  +with a non-zero value. +See also the exit builtin command below. + 

SIGNALS

When bash is interactive, in the absence of any traps, it ignores @@ -6843,11 +7109,16 @@ When bash is interactive, in the absence of any traps, it ignores
(so that kill 0 does not kill an interactive shell), -and +and catches and handles SIGINT -is caught and handled (so that the wait builtin is interruptible). +(so that the wait builtin is interruptible). +When bash receives +SIGINT, + + +it breaks out of any executing loops. In all cases, bash ignores SIGQUIT. @@ -6868,8 +7139,14 @@ and

-Non-builtin commands run by bash have signal handlers -set to the values inherited by the shell from its parent. +The trap builtin modifies the shell's signal handling, as +described below. +

+ +Non-builtin commands bash executes have signal handlers +set to the values inherited by the shell from its parent, +unless trap sets them to be ignored, in which case the child +process will ignore them as well. When job control is not in effect, asynchronous commands ignore SIGINT @@ -6903,16 +7180,21 @@ Before exiting, an interactive shell resends the to all jobs, running or stopped. -Stopped jobs are sent +The shell sends SIGCONT -to ensure that they receive the -SIGHUP. +to stopped jobs to ensure that they receive the +SIGHUP + + +(see +JOB CONTROL +below for more information about running and stopped jobs). To prevent the shell from -sending the signal to a particular job, it should be removed from the +sending the signal to a particular job, remove it from the jobs table with the disown @@ -6920,8 +7202,7 @@ builtin (see SHELL BUILTIN COMMANDS -below) or marked -to not receive +below) or mark it not to receive SIGHUP @@ -6933,7 +7214,7 @@ using If the huponexit -shell option has been set with +shell option has been set using shopt, bash @@ -6948,10 +7229,11 @@ to all jobs when an interactive login shell exits. If bash 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 command completes. -When bash is waiting for an asynchronous command via the wait -builtin, the reception of a signal for which a trap has been set will -cause the wait builtin to return immediately with an exit status -greater than 128, immediately after which the trap is executed. +If bash is waiting for an asynchronous command via the wait +builtin, +and it receives a signal for which a trap has been set, +the wait builtin will return immediately with an exit status +greater than 128, immediately after which the shell executes the trap.

When job control is not enabled, and bash is waiting for a foreground @@ -6968,6 +7250,11 @@ same process group as the terminal, and ^C sends to all processes in that process group. +See +JOB CONTROL + + +below for more information about process groups.

When bash is running without job control enabled and receives @@ -7025,7 +7312,7 @@ as it does with any other trapped signal it receives while it is waiting for the foreground command to complete, for compatibility.

-  + 

JOB CONTROL

Job control @@ -7227,7 +7514,11 @@ Normally, 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 +any other output, +though it will notify of changes in a job's status after a +foreground command in +a list completes, before executing the next command. +If the -b option to the @@ -7265,7 +7556,7 @@ When the shell is waiting for a job or process using the wait builtin, and job control is enabled, wait will return when the job changes state. The -f option causes wait to wait until the job or process terminates before returning. -  + 

PROMPTING

When executing interactively, @@ -7280,6 +7571,15 @@ when it is ready to read a command, and the secondary prompt
when it needs more input to complete a command. +

+ +Bash + +examines the value of the array variable PROMPT_COMMAND just before +printing each primary prompt. +If any elements in PROMPT_COMMAND are set and non-null, Bash +executes each value, in numeric order, +just as if it had been typed on the command line. Bash displays @@ -7287,6 +7587,8 @@ displays after it reads a command but before executing it. +

+ Bash displays @@ -7295,101 +7597,107 @@ displays as described above before tracing each command when the -x option is enabled. +

+ Bash -allows these prompt strings to be customized by inserting a number of +allows the prompt strings +PS0, PS1, PS2, and PS4, +to be customized by inserting a number of backslash-escaped special characters that are decoded as follows:

-
\a
-an ASCII bell character (07) +An ASCII bell character (07). +
\d
-the date in +The date in format (e.g.,
\D{format}
-the format is passed to +The format is passed to strftime(3) and the result is inserted into the prompt string; an empty format results in a locale-specific -time representation. The braces are required +time representation. +The braces are required.
\e
-an ASCII escape character (033) +An ASCII escape character (033).
\h
-the hostname up to the first +The hostname up to the first
\H
-the hostname +The hostname.
\j
-the number of jobs currently managed by the shell +The number of jobs currently managed by the shell.
\l
-the basename of the shell's terminal device name +The basename of the shell's terminal device name (e.g., +
\n
-newline +A newline.
\r
-carriage return +A carriage return.
\s
-the name of the shell, the basename of +The name of the shell: the basename of $0 -(the portion following the final slash) +(the portion following the final slash).
\t
-the current time in 24-hour HH:MM:SS format +The current time in 24-hour HH:MM:SS format.
\T
-the current time in 12-hour HH:MM:SS format +The current time in 12-hour HH:MM:SS format.
\@
-the current time in 12-hour am/pm format +The current time in 12-hour am/pm format.
\A
-the current time in 24-hour HH:MM format +The current time in 24-hour HH:MM format.
\u
-the username of the current user +The username of the current user.
\v
-the version of bash (e.g., 2.00) +The bash version (e.g., 2.00)
\V
-the release of bash, version + patch level (e.g., 2.00.0) +The bash release, version + patch level (e.g., 2.00.0)
\w
-the value of the PWD shell variable ($PWD), +The value of the PWD shell variable ($PWD), with $HOME @@ -7399,50 +7707,50 @@ abbreviated with a tilde PROMPT_DIRTRIM -variable) +variable).
\W
-the basename of $PWD, +The basename of $PWD, with $HOME -abbreviated with a tilde +abbreviated with a tilde.
\!
-the history number of this command +The history number of this command.
\#
-the command number of this command +The command number of this command.
\$
-if the effective UID is 0, a +If the effective UID is 0, a #, otherwise a -$ +$.
\nnn
-the character corresponding to the octal number nnn +The character corresponding to the octal number nnn.
\\
-a backslash +A backslash.
\[
-begin a sequence of non-printing characters, which could be used to -embed a terminal control sequence into the prompt +Begin a sequence of non-printing characters, which could be used to +embed a terminal control sequence into the prompt.
\]
-end a sequence of non-printing characters +End a sequence of non-printing characters.
@@ -7473,14 +7781,14 @@ below). This can have unwanted side effects if escaped portions of the string appear within command substitution or contain characters special to word expansion. -  + 

READLINE

This is the library that handles reading input when using an interactive shell, unless the --noediting -option is given at shell invocation. +option is supplied at shell invocation. Line editing is also used when using the -e option to the read builtin. By default, the line editing commands are similar to those of Emacs. @@ -7509,7 +7817,7 @@ options to the set builtin. -  + 

Readline Notation

In this section, the Emacs-style notation is used to denote @@ -7519,14 +7827,17 @@ Similarly, meta keys are denoted by M-key, so M-x means Meta-X. -(On keyboards without a -meta +

+ +On keyboards without a +Meta key, M-x means ESC x, i.e., press the Escape key then the x -key. This makes ESC the meta prefix. +key. +This makes ESC the meta prefix. The combination M-C-x means ESC-Control-x, or press the Escape key then hold the Control key while pressing the @@ -7535,6 +7846,21 @@ then hold the Control key while pressing the key.)

+On some keyboards, the Meta key modifier produces meta characters with +the eighth bit (0200) set (you can use the enable-meta-key variable +to control whether or not it does this, if the keyboard allows it). +On many others, the terminal or terminal emulator converts the metafied +key to a key sequence beginning with ESC as described in the +preceding paragraph. +

+ +If the Meta key produces a key sequence with the ESC meta prefix, +you can make M-key key bindings you specify (see +Readline Key Bindings + +below) do the same thing by setting the force-meta-prefix variable. +

+ Readline commands may be given numeric arguments, @@ -7554,7 +7880,7 @@ deleted is saved for possible future retrieval 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. -  + 

Readline Initialization

Readline is customized by putting commands in an initialization @@ -7636,7 +7962,7 @@ and In addition to command names, readline allows keys to be bound to a string that is inserted when the key is pressed (a macro). -  + 

Readline Key Bindings

The syntax for controlling key bindings in the @@ -7756,7 +8082,8 @@ control prefix
\M-
-meta prefix +adding the meta prefix or converting the following character to a meta +character, as described below under force-meta-prefix
\e
@@ -7858,7 +8185,7 @@ builtin command (see below). -  + 

Readline Variables

Readline has variables that can be used to further customize its @@ -8032,14 +8359,17 @@ treated as zero.
convert-meta (On)
-If set to On, 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 meta prefix). -The default is On, but readline will set it to Off if the -locale contains eight-bit characters. +If set to On, readline will convert characters it reads +with the eighth bit set to an ASCII key sequence +by stripping the eighth bit and prefixing it with an escape character +(converting the character to have the meta prefix). +The default is On, but readline will set it to Off +if the locale contains +characters whose encodings may include bytes with the eighth bit set. This variable is dependent on the LC_CTYPE locale category, and may change if the locale is changed. +This variable also affects key bindings; see the description of +force-meta-prefix below.
disable-completion (Off)
@@ -8108,8 +8438,32 @@ arrow keys.
When set to On, 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. +key the terminal claims to support when it is called. +On many terminals, the Meta key is used to send eight-bit characters; +this variable checks for the terminal capability that indicates the +terminal can enable and disable a mode that sets the eighth bit of a +character (0200) if the Meta key is held down when the character is +typed (a meta character). +
force-meta-prefix (Off) + +
+If set to On, readline modifies its behavior when binding key +sequences containing \M- or Meta- +(see Key Bindings above) by converting a key sequence of the form +\M-C or Meta-C to the two-character sequence +ESCC (adding the meta prefix). +If +force-meta-prefix + +is set to Off (the default), +readline uses the value of the +convert-meta + +variable to determine whether to perform this conversion: +if convert-meta is On, +readline performs the conversion described above; +if it is Off, Readline converts C to a meta character by +setting the eighth bit (0200).
expand-tilde (Off)
@@ -8145,12 +8499,14 @@ This setting is automatically enabled for terminals of height 1.
If set to On, readline will enable eight-bit input (that is, it will not strip the eighth bit from the characters it reads), -regardless of what the terminal claims it can support. The name +regardless of what the terminal claims it can support. +The name meta-flag is a synonym for this variable. -The default is Off, but readline will set it to On if the -locale contains eight-bit characters. +The default is Off, but readline will set it to On +if the locale contains +characters whose encodings may include bytes with the eighth bit set. This variable is dependent on the LC_CTYPE locale category, and may change if the locale is changed.
isearch-terminators ( @@ -8229,8 +8585,9 @@ the list. If set to On, readline will display characters with the eighth bit set directly rather than as a meta-prefixed escape sequence. -The default is Off, but readline will set it to On if the -locale contains eight-bit characters. +The default is Off, but readline will set it to On +if the locale contains +characters whose encodings may include bytes with the eighth bit set. This variable is dependent on the LC_CTYPE locale category, and may change if the locale is changed.
page-completions (On) @@ -8238,6 +8595,10 @@ may change if the locale is changed.
If set to On, readline uses an internal more-like pager to display a screenful of possible completions at a time. +
prefer-visible-bell + +
+See bell-style.
print-completions-horizontally (Off)
@@ -8323,7 +8684,7 @@ by stat(2) is appended to the filename when listing possible completions. -  + 

Readline Conditional Constructs

Readline implements a facility similar in spirit to the conditional @@ -8473,7 +8834,7 @@ would read /etc/inputrc: -  + 

Searching

Readline provides commands for searching through the command history @@ -8524,7 +8885,7 @@ new search string, readline uses any remembered search string. 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. -  + 

Readline Command Names

The following is a list of the names of the commands and the default @@ -8534,7 +8895,7 @@ In the following descriptions, point refers to the current cursor position, and mark refers to a cursor position saved by the set-mark command. The text between the point and mark is referred to as the region. -  + 

Commands for Moving

@@ -8612,7 +8973,7 @@ screen. Refresh the current line. -  + 

Commands for Manipulating the History

@@ -8810,7 +9171,7 @@ commands. and emacs as the editor, in that order. -  + 

Commands for Changing Text

@@ -8905,7 +9266,7 @@ By default, this command is unbound, but may be bound to the Insert key on some keyboards. -  + 

Killing and Yanking

@@ -8998,7 +9359,7 @@ or -  + 

Numeric Arguments

@@ -9026,7 +9387,7 @@ first time makes the argument count four, a second time makes the argument count sixteen, and so on. -  + 

Completing

@@ -9155,7 +9516,7 @@ enclosed within braces so the list is available to the shell (see above). -  + 

Keyboard Macros

@@ -9181,7 +9542,7 @@ Print the last keyboard macro defined in a format suitable for the inputrc file. -  + 

Miscellaneous

@@ -9338,27 +9699,27 @@ Display version information about the current instance of -  + 

Programmable Completion

-When word completion is attempted for an argument to a command for +When a user attempts word completion for an argument to a command for which a completion specification (a compspec) has been defined using the complete builtin (see SHELL BUILTIN COMMANDS -below), the programmable completion facilities are invoked. +below), Readline invokes the programmable completion facilities.

First, the command name is identified. +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 the empty string (completion attempted at the beginning of an empty line), any compspec defined with the -E option to complete 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 +If no compspec is found for the full pathname, completion attempts 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 -D option to complete is used as the default. @@ -9466,7 +9827,8 @@ the matches. Any function specified with -F is invoked first. The function may use any of the shell facilities, including the -compgen builtin described below, to generate the matches. +compgen and compopt +builtins described below, to generate the matches. It must put the possible completions in the COMPREPLY @@ -9479,6 +9841,7 @@ in an environment 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. +These are added to the set of possible completions.

After all of the possible completions are generated, any filter @@ -9499,8 +9862,7 @@ of alphabetic characters. Finally, any prefix and suffix specified with the -P and -S 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. +returned to readline as the list of possible completions.

If the previously-applied actions do not generate any matches, and the @@ -9515,11 +9877,12 @@ 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 default bash completions are not attempted, and the readline -default of filename completion is disabled. +The default bash completions and the readline +default of filename completion are disabled. If the -o bashdefault option was supplied to complete when -the compspec was defined, the bash default completions are attempted -if the compspec generates no matches. +the compspec was defined, +if the compspec generates no matches, +the bash default completions are attempted. If the -o default option was supplied to complete when the compspec was defined, readline's default completion will be performed if the compspec (and, if attempted, the default bash completions) @@ -9533,18 +9896,19 @@ the value of the mark-directories readline variable, regardless of the setting of the mark-symlinked-directories readline variable.

-There is some support for dynamically modifying completions. This is -most useful when used in combination with a default completion specified -with complete -D. +There is some support for dynamically modifying completions. +This is most useful when used in combination with a default completion +specified with complete -D. 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 +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 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 than -being loaded all at once. +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 @@ -9577,7 +9941,7 @@ complete -D -F _completion_loader -  + 

HISTORY

When the @@ -9599,7 +9963,8 @@ The text of the last HISTSIZE -commands (default 500) is saved. The shell +commands (default 500) is saved. +The shell stores each command in the history list prior to parameter and variable expansion (see EXPANSION @@ -9616,23 +9981,24 @@ and

-On startup, the history is initialized from the file named by -the variable -HISTFILE - - -(default ~/.bash_history). -The file named by the value of +On startup, bash initializes the history list +by reading history entries from the +the file named by the HISTFILE -is truncated, if necessary, to contain no more than -the number of lines specified by the value of +variable (default ~/.bash_history). +That file is referred to as the history file. +The history file is truncated, if necessary, +to contain no more than the number of history entries +specified by the value of HISTFILESIZE. If HISTFILESIZE 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 followed immediately by a digit are interpreted as timestamps for the following history line. @@ -9641,11 +10007,15 @@ These timestamps are optionally displayed depending on the value of the variable. -When a shell with history enabled exits, the last +When present, history timestamps delimit history entries, making +multi-line entries possible. +

+ +When a shell with history enabled exits, bash copies the last $HISTSIZE -lines are copied from the history list to +entries from the history list to $HISTFILE. @@ -9660,7 +10030,7 @@ under SHELL BUILTIN COMMANDS -below), the lines are appended to the history file, +below), bash appends the entries to the history file, otherwise the history file is overwritten. If HISTFILE @@ -9677,12 +10047,18 @@ with the history 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 +As above, when using +HISTTIMEFORMAT, + + +the timestamps delimit multi-line history entries. +After saving the history, bash truncates the history file to contain no more than HISTFILESIZE -lines. If +lines. +If HISTFILESIZE @@ -9690,27 +10066,26 @@ 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 +The fc -(see +builtin command (see SHELL BUILTIN COMMANDS -below) may be used to list or edit and re-execute a portion of -the history list. +below) will list or edit and re-execute a portion of the history list. The history -builtin may be used to display or modify the history list and +builtin can display or modify the history list and manipulate 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 -list. The +The shell allows control over which commands are saved on the history list. +The HISTCONTROL @@ -9718,8 +10093,7 @@ and HISTIGNORE -variables are used to cause the shell to save only a subset of the -commands entered. +variables are used to save only a subset of the commands entered. The cmdhist @@ -9729,8 +10103,9 @@ semicolons where necessary to preserve syntactic correctness. The lithist -shell option causes the shell to save the command with embedded newlines -instead of semicolons. See the description of the +shell option modifies cmdhist by saving +the command with embedded newlines instead of semicolons. +See the description of the shopt builtin below under @@ -9738,16 +10113,18 @@ builtin below under for information on setting and unsetting shell options. -  + 

HISTORY EXPANSION

The shell supports a history expansion feature that is similar to the history expansion in csh. -This section describes what syntax features are available. This -feature is enabled by default for interactive shells, and can be -disabled using the +This section describes what syntax features are available. +

+ +History expansion is enabled by default for interactive shells, +and can be disabled using the +H option to the @@ -9757,8 +10134,10 @@ builtin command (see SHELL BUILTIN COMMANDS -below). Non-interactive shells do not perform history expansion -by default. +below). +Non-interactive shells do not perform history expansion by default, +but it can be enabled with +

History expansions introduce words from the history list into @@ -9769,16 +10148,19 @@ 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 -account. +on each line individually. +The shell attempts to inform the history +expansion functions about quoting still in effect from previous lines. +

+ It takes place in two parts. -The first is to determine which line from the history list +The first is to determine which history list entry to use during substitution. -The second is to select portions of that line for inclusion into +The second is to select portions of that entry to include into the current one. -The line selected from the history is the event, -and the portions of that line that are acted upon are words. -The line is broken into words in the same fashion as when reading input, +The entry selected from the history is the event, +and the portions of that entry that are acted upon are words. +The entry is split into words in the same fashion as when reading input, so that several metacharacter-separated words surrounded by quotes are considered one word. The event designator selects the event, the optional @@ -9811,7 +10193,7 @@ There is a special abbreviation for substitution, active when the is the first character on the line. It selects the previous history entry, using an event designator equivalent to !!, -and substitutes one string for another in that line. +and substitutes one string for another in that entry. It is described below under Event Designators. This is the only history expansion that does not begin with the history expansion character. @@ -9820,14 +10202,15 @@ expansion character. Several shell options settable with the shopt -builtin may be used to tailor the behavior of history expansion. +builtin will modify history expansion behavior +(see the description of the +shopt + +builtin below).and If the histverify -shell option is enabled (see the description of the -shopt - -builtin below), and +shell option is enabled, and readline is being used, history substitutions are not immediately passed to @@ -9842,18 +10225,20 @@ If is being used, and the histreedit -shell option is enabled, a failed history substitution will be reloaded +shell option is enabled, a failed history substitution is reloaded into the readline editing buffer for correction. +

+ The -p option to the history -builtin command may be used to see what a history expansion will +builtin command shows what a history expansion will do before using it. The -s @@ -9861,7 +10246,7 @@ The option to the history -builtin may be used to add commands to the end of the history list +builtin will add commands to the end of the history list without actually executing them, so that they are available for subsequent recall.

@@ -9876,11 +10261,10 @@ above under The shell uses the history comment character to mark history timestamps when writing the history file. -  + 

Event Designators

-An event designator is a reference to a command line entry in the -history list. +An event designator is a reference to an entry in the history list. The event designator consists of the portion of the word beginning with the history expansion character and ending with the word designator if present, @@ -9898,24 +10282,25 @@ Start a history substitution, except when followed by a blank, newline, carriage return, = -or ( (when the extglob shell option is enabled using -the shopt builtin). +or, when the extglob shell option is enabled using +the shopt builtin, (.
!n
-Refer to command line +Refer to history list entry n.
!-n
-Refer to the current command minus +Refer to the current entry minus n.
!!
-Refer to the previous command. This is a synonym for +Refer to the previous command. +This is a synonym for
!string @@ -9935,12 +10320,14 @@ The trailing ? may be omitted if string is followed immediately by a newline. -If string is missing, the string from the most recent search is used; +If string is missing, this uses +the string from the most recent search; it is an error if there is no previous search string.
^string1^string2^
-Quick substitution. Repeat the previous command, replacing +Quick substitution. +Repeat the previous command, replacing string1 with @@ -9955,10 +10342,12 @@ Equivalent to The entire command line typed so far. -  + 

Word Designators

Word designators are used to select desired words from the event. +They are optional; if the word designator isn't supplied, the history +expansion uses the entire event. A : @@ -9985,8 +10374,8 @@ Words are inserted into the current line separated by single spaces.
0 (zero)
-The zeroth word. For the shell, this is the command -word. +The zeroth word. +For the shell, this is the command word.
n
@@ -9994,11 +10383,12 @@ The nth word.
^
-The first argument. That is, word 1. +The first argument: word 1.
$
-The last word. This is usually the last argument, but will expand to the +The last word. +This is usually the last argument, but will expand to the zeroth word if there is only one word in the line.
% @@ -10026,8 +10416,8 @@ This is a synonym for It is not an error to use * -if there is just one -word in the event; the empty string is returned in that case. +if there is just one word in the event; +it expands to the empty string in this case.
x*
@@ -10042,12 +10432,12 @@ If x is missing, it defaults to 0.

If a word designator is supplied without an event specification, the -previous command is used as the event. -  +previous command is used as the event, equivalent to !!. + 

Modifiers

-After the optional word designator, there may appear a sequence of -one or more of the following modifiers, each preceded by a +After the optional word designator, the expansion may include a +sequence of one or more of the following modifiers, each preceded by a These modify, or edit, the word or words selected from the history event.

@@ -10089,8 +10479,8 @@ but break into words at blanks and newlines. -The q and x modifiers are mutually exclusive; the last one -supplied is used. +The q and x modifiers are mutually exclusive; +expansion uses the last one supplied.

s/old/new/
@@ -10104,16 +10494,16 @@ 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 event line. -The delimiter may be quoted in +A single backslash will quote the delimiter in old and -new +new. -with a single backslash. If & appears in +If & appears in new, -it is replaced by +it is replaced with old. A single backslash will quote the &. @@ -10168,7 +10558,7 @@ or modifier once to each word in the event line. -  + 

SHELL BUILTIN COMMANDS

@@ -10215,6 +10605,7 @@ in the current shell environment and returns the exit status of the last command executed from filename. +
If filename does not contain a slash, . searchs for it. If the -p option is supplied, . treats path as a colon-separated list of directories in which to find filename; @@ -10227,7 +10618,7 @@ to find the directory containing filename does not need to be executable. When bash is not in posix mode, it searches -the current directory if no file is found in +the current directory if filename is not found in PATH, @@ -10242,34 +10633,38 @@ builtin command is turned off, . does not search PATH. +
If any arguments are supplied, they become the positional parameters when filename is executed. Otherwise the positional parameters are unchanged. +
If the -T option is enabled, . inherits any trap on DEBUG; if it is not, any DEBUG trap string is saved and restored around the call to ., and . unsets the DEBUG trap while it executes. If -T is not set, and the sourced file changes -the DEBUG trap, the new value is retained when . completes. -The return status is the status of the last command exited within -the script (0 if no commands are executed), and false if +the DEBUG trap, the new value persists after . completes. +The return status is the status of the last command executed from +filename (0 if no commands are executed), and non-zero if filename is not found or cannot be read.
alias [-p] [name[=value] ...]
-Alias with no arguments or with the +With no arguments or with the -p -option prints the list of aliases in the form +option,alias prints the list of aliases in the form alias name=value on standard output. -When arguments are supplied, an alias is defined for +When arguments are supplied, define an alias for each name whose value is given. A trailing space in value causes the next word to be -checked for alias substitution when the alias is expanded. +checked for alias substitution when the alias is expanded +during command parsing. For each name in the argument list for which no value -is supplied, the name and value of the alias is printed. -Alias returns true unless a name is given for which -no alias has been defined. +is supplied, print the name and value of the alias name. +alias returns true unless a name is given +(without a corresponding =value) +for which no alias has been defined.
bg [jobspec ...]
Resume each suspended job jobspec in the background, as if it had been started with @@ -10302,11 +10697,12 @@ Display current key and function bindings, bind a key sequence to a readline -function or macro, or set a +function or macro +or to a shell command, or set a readline variable. -Each non-option argument is a command as it would appear in a +Each non-option argument is a key binding or command as it would appear in a readline initialization file such as @@ -10343,9 +10739,9 @@ names are vi-move, vi-command, and vi-insert. -vi is equivalent to vi-command (vi-move is also -a synonym); emacs is -equivalent to emacs-standard. +vi is equivalent to vi-command +(vi-move is also a synonym); +emacs is equivalent to emacs-standard.
-l
@@ -10354,7 +10750,9 @@ List the names of all readline functions.
Display readline function names and bindings in such a way -that they can be re-read. +that they can be +used as an argument to a subsequent +bind command or in a readline initialization file. If arguments remain after option processing, bind treats them as readline command names and restricts output to those names.
-P @@ -10367,7 +10765,9 @@ them as readline command names and restricts output to those names.
Display readline key sequences bound to macros and the strings -they output in such a way that they can be re-read. +they output in such a way that they can be used +as an argument to a subsequent bind command +or in a readline initialization file.
-S
@@ -10377,7 +10777,9 @@ they output.
Display readline variable names and values in such a way that they -can be re-read. +can be +used as an argument to a subsequent +bind command or in a readline initialization file.
-V
@@ -10389,11 +10791,11 @@ Read key bindings from filename.
-q function
-Query about which keys invoke the named function. +Display key sequences that invoke the named readline function.
-u function
-Unbind all keys bound to the named function. +Unbind all key sequences bound to the named readline function.
-r keyseq
@@ -10411,7 +10813,7 @@ special backslash-escapes in shell-command before saving it. If the separator is a colon, any enclosing double quotes are optional, and readline does not expand the command string before saving it. Since the entire key binding expression must be a single argument, it -should be enclosed in quotes. +should be enclosed in single quotes. When shell-command is executed, the shell sets the READLINE_LINE @@ -10448,12 +10850,13 @@ those new values will be reflected in the editing state.
List all key sequences bound to shell commands and the associated commands -in a format that can be reused as input. +in a format that can be reused as +an argument to a subsequent @code{bind} command.

-The return value is 0 unless an unrecognized option is given or an +The return value is 0 unless an unrecognized option is supplied or an error occurred. @@ -10468,7 +10871,8 @@ Exit from within a or select -loop. If n is specified, break n levels. +loop. +If n is specified, break exits n enclosing loops. n must be >= 1. If @@ -10478,7 +10882,7 @@ is greater than the number of enclosing loops, all enclosing loops are exited. The return value is 0 unless n is not greater than or equal to 1.

builtin shell-builtin [arguments]
-Execute the specified shell builtin, passing it +Execute the specified shell builtin shell-builtin, passing it arguments, and return its exit status. @@ -10493,13 +10897,15 @@ is not a shell builtin command.
caller [expr]
Returns the context of any active subroutine call (a shell function or a script executed with the . or source builtins). +
Without expr, caller displays the line number and source filename of the current subroutine call. If a non-negative integer is supplied as expr, caller 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. +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 subroutine call or expr does not correspond to a valid position in the call stack. @@ -10509,14 +10915,12 @@ if dir is not supplied, the value of the HOME -shell variable is the default. +shell variable is used as dir. The variable CDPATH -defines the search path for the directory containing -dir: - +exists, cd uses it as a search path: the shell searches each directory name in CDPATH @@ -10526,7 +10930,8 @@ Alternative directory names in CDPATH -are separated by a colon (:). A null directory name in +are separated by a colon (:). +A null directory name in CDPATH @@ -10540,7 +10945,9 @@ then CDPATH -is not used. The +is not used. +
+The -P option causes cd to use the physical directory structure @@ -10551,7 +10958,9 @@ before processing instances of .. in dir (see also the option to the set -builtin command); the +builtin command). +
+The -L option forces symbolic links to be followed by resolving the link @@ -10559,6 +10968,7 @@ after processing instances of .. in dir. If .. appears in dir, it is processed by removing the immediately previous pathname component from dir, back to a slash or the beginning of dir. +
If the -e @@ -10566,10 +10976,12 @@ option is supplied with -P, and the current working directory cannot be successfully determined -after a successful directory change, cd will return an unsuccessful +after a successful directory change, cd will return a non-zero status. +
On systems that support it, the -@ option presents the extended attributes associated with a file as a directory. +
An argument of - @@ -10577,37 +10989,40 @@ is converted to $OLDPWD -before the directory change is attempted. -If a non-empty directory name from -CDPATH +before attempting the directory change. +
+If cd uses a non-empty directory name from +CDPATH, -is used, or if -- is the first argument, and the directory change is -successful, the absolute pathname of the new working directory is -written to the standard output. +or if - is the first argument, and the directory change is +successful, cd writes the absolute pathname of the new +working directory to the standard output. +
If the directory change is successful, cd sets the value of the PWD environment variable to the new directory name, and sets the OLDPWD 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.
command [-pVv] command [arg ...]
-Run +The command builtin runs command with args -suppressing the normal shell function lookup. +suppressing the normal shell function lookup for command. Only builtin commands or commands found in the PATH -are executed. If the +named command are executed. +If the -p -option is given, the search for +option is supplied, the search for command is performed using a default value for @@ -10615,40 +11030,43 @@ is performed using a default value for that is guaranteed to find all of the standard utilities. +
If either the -V or -v -option is supplied, a description of -command +option is supplied, command prints a description of +command. -is printed. The +The -v -option causes a single word indicating the command or filename +option displays a single word indicating the command or filename used to invoke -command +command; -to be displayed; the +the -V option produces a more verbose description. +
If the -V or -v -option is supplied, the exit status is 0 if +option is supplied, the exit status is zero if command -was found, and 1 if not. If neither option is supplied and -an error occurred or +was found, and non-zero if not. +If neither option is supplied and an error occurred or command -cannot be found, the exit status is 127. Otherwise, the exit status of the +cannot be found, the exit status is 127. +Otherwise, the exit status of the command builtin is the exit status of @@ -10672,9 +11090,11 @@ and -I, and write the matches to the standard output. +
If the -V option is supplied, compgen stores the generated completions into the indexed array variable varname instead of writing them to the standard output. +
When using the -F or -C options, the various shell variables set by the programmable completion facilities, while available, will not have useful values. @@ -10683,7 +11103,7 @@ The matches will be generated in the same way as if the programmable completion code had generated them directly from a completion specification with the same flags. If word is specified, only those completions matching word -will be displayed. +will be displayed or stored.
The return value is true unless an invalid option is supplied, or no matches were generated. @@ -10791,8 +11211,8 @@ the end of the line.
After any matches defined by the compspec are generated, -directory name completion is attempted and any -matches are added to the results of the other actions. +attempt directory name completion and add any +matches to the results of the other actions.
-A action
@@ -10915,27 +11335,28 @@ being completed, the second argument ($2) is the word being completed, and the third argument ($3) is the word preceding the word being completed on the current command line. -When it finishes, the possible completions are retrieved from the value +When function finishes, +the possible completions are retrieved from the value of the COMPREPLY array variable.
-G globpat
-The pathname expansion pattern globpat is expanded to generate +Expand the pathname expansion pattern globpat to generate the possible completions.
-P prefix
-prefix is added at the beginning of each possible completion +Add prefix to the beginning of each possible completion after all other options have been applied.
-S suffix
-suffix is appended to each possible completion +Append suffix to each possible completion after all other options have been applied.
-W wordlist
The wordlist is split using the characters in the IFS -special variable as delimiters, and each resultant word is expanded. +special variable as delimiters, and each resulting word is expanded. Shell quoting is honored within wordlist, in order to provide a mechanism for the words to contain shell metacharacters or characters @@ -10979,7 +11400,7 @@ an error occurs adding a completion specification. Modify completion options for each name according to the options, or for the currently-executing completion if no names are supplied. -If no options are given, display the completion options for each +If no options are supplied, display the completion options for each name or the current completion. The possible values of option are those valid for the complete builtin described above. @@ -10997,11 +11418,14 @@ apply to completion on the initial non-assignment word on the line, or after a command delimiter such as ; or |, which is usually command name completion.
+If multiple options are supplied, the -D option takes precedence +over -E, and both take precedence over -I. +
The return value is true unless an invalid option is supplied, an attempt is made to modify the options for a name for which no completion specification exists, or an output error occurs.
continue [n]
-Resume the next iteration of the enclosing +continue resumes the next iteration of the enclosing for, while, @@ -11015,10 +11439,11 @@ loop. If n -is specified, resume at the nth enclosing loop. +is specified, bash resumes the nth enclosing loop. n -must be >= 1. If +must be >= 1. +If n is greater than the number of enclosing loops, the shell resumes @@ -11032,7 +11457,8 @@ The return value is 0 unless n is not greater than or equal to 1.
typeset [-aAfFgiIlnrtux] [-p] [name[=value] ...]
Declare variables and/or give them attributes. -If no names are given then display the values of variables. +If no names are given then display the values of variables +or functions. The -p @@ -11044,15 +11470,17 @@ When is used with name arguments, additional options, other than -f and -F, are ignored. +
When -p -is supplied without name 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 -p, declare will display -the attributes and values of all shell variables. The -f option -will restrict the display to shell functions. +is supplied without name arguments, +declare will display the attributes and values +of all variables having the attributes specified by the additional options. +If no other options are supplied with -p, declare will +display the attributes and values of all shell variables. +The -f option restricts the display to shell functions. +
The -F @@ -11060,18 +11488,21 @@ option inhibits the display of function definitions; only the function name and attributes are printed. If the extdebug shell option is enabled using shopt, the source file name and line number where each name -is defined are displayed as well. The +is defined are displayed as well. +The -F option implies -f. +
The -g option forces variables to be created or modified at the global scope, even when declare is executed in a shell function. -It is ignored in all other cases. +It is ignored when declare is not executed in a shell function. +
The -I @@ -11080,6 +11511,7 @@ option causes local variables to inherit the attributes and value of any existing variable with the same name 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 attribute or to give variables attributes: @@ -11105,11 +11537,12 @@ above).
-f
-Use function names only. +Each name refers to a shell function.
-i
-The variable is treated as an integer; arithmetic evaluation (see +The variable is treated as an integer; +arithmetic evaluation (see ARITHMETIC EVALUATION @@ -11136,7 +11569,8 @@ The nameref attribute cannot be applied to array variables.
-r
-Make names readonly. These names cannot then be assigned values +Make names readonly. +These names cannot then be assigned values by subsequent assignment statements or unset.
-t @@ -11154,7 +11588,7 @@ The lower-case attribute is disabled.
-x
-Mark names for export to subsequent commands via the environment. +Mark each name for export to subsequent commands via the environment.

@@ -11163,10 +11597,12 @@ Using instead of -turns off the attribute instead, -with the exceptions that +a and +A +turns off the specified +attribute instead, with the exceptions that +a and +A may not be used to destroy array variables and +r will not remove the readonly attribute. +

+ When used in a function, declare @@ -11184,6 +11620,8 @@ the variable is set to value. When using -a or -A and the compound assignment 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 @@ -11203,7 +11641,7 @@ or an attempt is made to display a non-existent function with -f.

dirs [-clpv] [+n] [-n]
-Without options, displays the list of currently remembered directories. +Without options, display the list of currently remembered directories. The default display is on a single line with directory names separated by spaces. Directories are added to the list with the @@ -11214,6 +11652,8 @@ command; the command removes entries from the list. The current directory is always the first directory in the stack. +
+Options, if supplied, have the following meanings:
@@ -11256,18 +11696,22 @@ invalid option is supplied or n indexes beyond the end of the directory stack.
-
disown [-ar] [-h] [jobspec ... | pid ... ]
+
disown [-ar] [-h] [id ...]
Without options, remove each -jobspec +id from the table of active jobs. +Each id may be a job specification jobspec +or a process ID +pid; if id is a pid, +disown uses the job containing pid as jobspec. If -jobspec +id is not present, and neither the -a nor the -r option -is supplied, the current job is used. -If the -h option is given, each -jobspec +is supplied, disown removes the current job. +If the -h option is supplied, the job corresponding to each +id is not removed from the table, but is marked so that SIGHUP @@ -11277,8 +11721,9 @@ is not sent to the job if the shell receives a SIGHUP. +
If no -jobspec +id is supplied, the -a @@ -11286,31 +11731,34 @@ is supplied, the option means to remove or mark all jobs; the -r -option without a -jobspec +option without an +id argument restricts operation to running jobs. -The return value is 0 unless a -jobspec +
+The return value is 0 unless an +id does not specify a valid job.
echo [-neE] [arg ...]
Output the args, separated by spaces, followed by a newline. The return status is 0 unless a write error occurs. -If -n is specified, the trailing newline is -suppressed. If the -e option is given, interpretation of -the following backslash-escaped characters is enabled. The +If -n is specified, the trailing newline is not printed. +
+If the -e option is given, echo interprets +the following backslash-escaped characters. +The -E -option disables the interpretation of these escape characters, +option disables interpretation of these escape characters, even on systems where they are interpreted by default. -The xpg_echo shell option may be used to -dynamically determine whether or not echo -interprets any options -and expands these escape characters by default. +The xpg_echo shell option determines +whether or not echo interprets any options +and expands these escape characters. echo does not interpret -- to mean the end of options. +
echo interprets the following escape sequences: @@ -11381,19 +11829,24 @@ the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value HHHHHHHH (one to eight hex digits) -
+ +

+ +echo writes any unrecognized backslash-escaped characters unchanged. +

enable [-a] [-dnps] [-f filename] [name ...]
Enable and disable builtin shell commands. -Disabling a builtin allows a disk command which has the same name +Disabling a builtin allows an executable file 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 -n is used, each name -is disabled; otherwise, -names are enabled. For example, to use the +even though the shell normally searches for builtins before files. +
+If -n is supplied, each name is disabled; otherwise, +names are enabled. +For example, to use the test -binary found via the +binary found usin g PATH @@ -11407,6 +11860,19 @@ instead of the shell builtin version, run +
+If no name arguments are supplied, or if the +-p + +option is supplied, print a list of shell builtins. +With no other option arguments, the list consists of all enabled +shell builtins. +If -n is supplied, print only disabled builtins. +If -a is supplied, the list printed includes all builtins, with an +indication of whether or not each is enabled. +The -s option means to restrict the output to the POSIX +special builtins. +
The -f @@ -11417,33 +11883,23 @@ from shared object filename, on systems that support dynamic loading. +If filename does not contain a slash, Bash will use the value of the BASH_LOADABLES_PATH variable as a -colon-separated list of directories in which to search for filename, -if filename does not contain a slash. -The default is system-dependent, +colon-separated list of directories in which to search for filename. +The default for BASH_LOADABLES_PATH is system-dependent, and may include to force a search of the current directory. The -d -option will delete a builtin previously loaded with --f. - -If no name arguments are given, or if the --p - -option is supplied, a list of shell builtins is printed. -With no other option arguments, the list consists of all enabled -shell builtins. -If -n is supplied, only disabled builtins are printed. -If -a is supplied, the list printed includes all builtins, with an -indication of whether or not each is enabled. -If -s is supplied, the output is restricted to the POSIX -special builtins. +option will delete a builtin previously loaded with -f. +If -s is used with -f, the new builtin becomes a POSIX +special builtin. +
If no options are supplied and a name is not a shell builtin, -enable will attempt to load name from a shared object named -name, as if the command were +enable will attempt to load name from a shared +object named name, as if the command were ``enable -f name name''. @@ -11453,17 +11909,17 @@ If no options are supplied and a name is not a shell builtin, +
The return value is 0 unless a name is not a shell builtin or there is an error loading a new builtin from a shared object.
eval [arg ...]
-The args are read and concatenated together into a single -command. This command is then read and executed by the shell, and -its exit status is returned as the value of -eval. - +Concatenate the args together into a single command, separating +them with spaces. +Bash then reads and execute this command, and returns its exit status +as the return status of eval. If there are no args, @@ -11475,8 +11931,9 @@ returns 0. If command -is specified, it replaces the shell. -No new process is created. The +is specified, it replaces the shell without creating a new process. +command cannot be a shell builtin or function. +The arguments become the arguments to command. @@ -11496,13 +11953,15 @@ does. The option causes command -to be executed with an empty environment. If +to be executed with an empty environment. +If -a is supplied, the shell passes name as the zeroth argument to the executed command. +
If command @@ -11510,10 +11969,11 @@ cannot be executed for some reason, a non-interactive shell exits, unless the execfail -shell option -is enabled. In that case, it returns failure. -An interactive shell returns failure if the file cannot be executed. +shell option is enabled. +In that case, it returns a non-zero status. +An interactive shell returns a non-zero status if the file cannot be executed. A subshell exits unconditionally if exec fails. +
If command @@ -11521,18 +11981,17 @@ 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.
exit [n]
-Cause the shell to exit -with a status of n. If +Cause the shell to exit with a status of n. +If n -is omitted, the exit status -is that of the last command executed. -A trap on +is omitted, the exit status is that of the last command executed. +Any trap on EXIT is executed before the shell terminates. -
export [-fn] [name[=word]] ...
+
export [-fn] [name[=value]] ...
export -p @@ -11542,28 +12001,32 @@ The supplied names are marked for automatic export to the environment of -subsequently executed commands. If the +subsequently executed commands. +If the -f option is given, the names refer to functions. +
+The +-n + +option unexports, or removes the export attribute, from each name. If no names are given, or if the -p -option is supplied, a list -of names of all exported variables is printed. -The --n - -option causes the export property to be removed from each -name. -If a variable name is followed by =word, the value of -the variable is set to word. +option is supplied, export prints a list of names of all exported +variables on the standard output. +
+export allows the value of a variable to be set when it is exported +or unexported by following the variable name with =value. +This sets the value of the variable to value while modifying the +export attribute. export returns an exit status of 0 unless an invalid option is @@ -11576,7 +12039,7 @@ is supplied with a that is not a function.
false
-Does nothing, returns a non-zero status. +Does nothing; returns a non-zero status.
fc [-e ename] [-lnr] [first] [last]
fc -s [pat=rep] [cmd]
@@ -11597,6 +12060,7 @@ 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 first or last of 0 is equivalent to -1 and -0 is equivalent to the current command (usually the fc command); otherwise 0 is equivalent to -1 @@ -11625,32 +12089,33 @@ If is not specified, it is set to the previous command for editing and -16 for listing.
+If the +-l + +option is supplied, the commands are listed on the standard output. The -n option suppresses -the command numbers when listing. The +the command numbers when listing. +The -r option reverses the order of -the commands. If the --l - -option is given, -the commands are listed on -standard output. Otherwise, the editor given by +the commands. +
+Otherwise, fc invokes the editor named by ename -is invoked -on a file containing those commands. If +on a file containing those commands. +If ename -is not given, the -value of the +is not supplied, fc uses the value of the FCEDIT -variable is used, and +variable, and the value of EDITOR @@ -11659,17 +12124,19 @@ if FCEDIT -is not set. If neither variable is set, +is not set. +If neither variable is set, fc uses -vi +vi. -is used. When editing is complete, the edited commands are -echoed and executed. +When editing is complete, fc reads the file containing +the edited commands and echoes and executes them.
-In the second form, command is re-executed after each instance -of pat is replaced by rep. +In the second form, fc re-executes command +after replacing each instance of pat with rep. Command is interpreted the same as first above. -A useful alias to use with this is +
+A useful alias to use with fc is so that typing @@ -11679,7 +12146,7 @@ and typing re-executes the last command.
-If the first form is used, the return value is 0 unless an invalid +If the first form is used, the return value is zero unless an invalid option is encountered or first @@ -11687,19 +12154,17 @@ or last specify history lines out of range. -If the --e - -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-executed, unless +When editing and re-executing a file of commands, +the return value is the value of the last command executed +or failure if an error occurs with the temporary file. +If the second form is used, the return status +is that of the re-executed command, unless cmd -does not specify a valid history line, in which case +does not specify a valid history entry, in which case fc -returns failure. +returns a non-zero status.
fg [jobspec]
Resume jobspec @@ -11708,7 +12173,7 @@ in the foreground, and make it the current job. If jobspec -is not present, the shell's notion of the current job is used. +is not present, use the shell's notion of the current job. 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 @@ -11721,7 +12186,8 @@ specifies a job that was started without job control.
getopts optstring name [arg ...]
getopts -is used by shell procedures to parse positional parameters. +is used by shell scripts and functions to parse positional parameters +and obtain options and their arguments. optstring contains the option characters to be recognized; if a character @@ -11729,6 +12195,7 @@ is followed by a colon, the option is expected 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, getopts @@ -11748,13 +12215,15 @@ variable is initialized to 1 each time the shell or a shell script -is invoked. When an option requires an argument, +is invoked. +When an option requires an argument, getopts places that argument into the variable OPTARG. +
The shell does not reset OPTIND @@ -11763,10 +12232,9 @@ automatically; it must be manually reset between multiple calls to getopts -within the same shell invocation if a new set of parameters -is to be used. +within the same shell invocation to use a new set of parameters.
-When the end of options is encountered, getopts exits with a +When it reaches the end of options, getopts exits with a return value greater than zero. OPTIND @@ -11787,15 +12255,16 @@ parses those instead.
getopts -can report errors in two ways. If the first character of +can report errors in two ways. +If the first character of optstring -is a colon, +is a colon, getopts uses silent -error reporting is used. In normal operation, diagnostic messages -are printed when invalid options or missing option arguments are -encountered. +error reporting. +In normal operation, getopts prints diagnostic messages +when it encounters invalid options or missing option arguments. If the variable OPTERR @@ -11851,22 +12320,23 @@ returns true if an option, specified or unspecified, is found. It returns false if the end of options is encountered or an error occurs.
hash [-lr] [-p filename] [-dt] [name]
-Each time hash is invoked, +Each time hash is invoked, it remembers the full pathname of the command name -is determined by searching +as determined by searching the directories in -$PATH +$PATH. -and remembered. Any previously-remembered pathname is discarded. +Any previously-remembered pathname associated with name is discarded. If the -p option is supplied, hash uses filename -as the full filename of the command. +as the full pathname of the command. +
The -r @@ -11877,29 +12347,35 @@ The -d option causes the shell to forget the remembered location of each name. +
If the -t -option is supplied, the full pathname to which each name corresponds -is printed. If multiple name arguments are supplied with -t, -the name is printed before the hashed full pathname. +option is supplied, hash prints the full pathname corresponding to +each name. +If multiple name arguments are supplied with -t, +hash prints the name before the corresponding hashed +full pathname. The -l -option causes output to be displayed in a format that may be reused as input. +option displays output in a format that may be reused as input. +
If no arguments are given, or if only -l is supplied, -information about remembered commands is printed. +hash prints information about remembered commands. The -t, -d, and -p options (the options that act on the name arguments) are mutually exclusive. Only one will be active. If more than one is supplied, -t has higher priority than --p, and both are higher priority than -d. -The return status is true unless a +-p, and both have higher priority than -d. +
+The return status is zero unless a name is not found or an invalid option is supplied.
help [-dms] [pattern]
-Display helpful information about builtin commands. If +Display helpful information about builtin commands. +If pattern is specified, @@ -11908,8 +12384,8 @@ is specified, gives detailed help on all commands matching pattern; -otherwise help for all the builtins and shell control structures -is printed. +otherwise it displays a list of +all the builtins and shell compound commands.
@@ -11941,18 +12417,18 @@ The return status is 0 unless no command matches
history -p arg [arg ...]
history -s arg [arg ...]
-With no options, display the command -history list with line numbers. Lines listed -with a +With no options, display the command history list with numbers. +Entries prefixed with a * -have been modified. An argument of +have been modified. +An argument of n lists only the last n -lines. +entries. If the shell variable HISTTIMEFORMAT @@ -11962,20 +12438,28 @@ it is used as a format string for strftime(3) to display the time stamp associated with each displayed history entry. -No intervening blank is printed between the formatted time stamp -and the history line. -If filename is supplied, it is used as the -name of the history file; if not, the value of -HISTFILE +If +history + +uses +HISTTIMEFORMAT, + + +it does not print an intervening space between the formatted time stamp +and the history entry. +
+If filename is supplied, history uses it as the +name of the history file; if not, it uses the value of +HISTFILE. -is used. If filename is not supplied and HISTFILE is unset or null, the -a, -n, -r, and -w options have no effect. +
Options, if supplied, have the following meanings:
@@ -11984,6 +12468,7 @@ Options, if supplied, have the following meanings:
Clear the history list by deleting all the entries. +This can be used with the other options to replace the history list.
-d offset
Delete the history entry at position offset. If offset is negative, it is interpreted as relative to one greater @@ -12007,14 +12492,13 @@ These are history lines entered since the beginning of the current
Read the history lines not already read from the history -file into the current history list. These are lines -appended to the history file since the beginning of the +file into the current history list. +These are lines appended to the history file since the beginning of the current bash session.
-r
-Read the contents of the history file -and append them to the current history list. +Read the history file and append its contents to the current history list.
-w
@@ -12024,8 +12508,8 @@ history file's contents.
Perform history substitution on the following args and display -the result on the standard output. -Does not store the results in the history list. +the result on the standard output, +without storing the results in the history list. Each arg must be quoted to disable normal history expansion.
-s @@ -12033,45 +12517,43 @@ Each arg must be quoted to disable normal history expansion. Store the args -in the history list as a single entry. The last command in the -history list is removed before the -args +in the history list as a single entry. +The last command in the +history list is removed before adding the +args. -are added. -
-

+

+
If the HISTTIMEFORMAT -variable is set, the time stamp information -associated with each history entry is written to the history file, +variable is set, history writes the time stamp information +associated with each history entry to the history 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 offset or range is supplied as an argument to -d, or the history expansion supplied as an argument to -p fails. - -
jobs [-lnprs] [ jobspec ... ]
jobs -x command [ args ... ]
-The first form lists the active jobs. The options have the following -meanings: +The first form lists the active jobs. +The options have the following meanings:
-l
-List process IDs -in addition to the normal information. +List process IDs in addition to the normal information.
-n
@@ -12080,8 +12562,7 @@ the user was last notified of their status.
-p
-List only the process ID of the job's process group -leader. +List only the process ID of the job's process group leader.
-r
@@ -12091,20 +12572,19 @@ Display only running jobs.
Display only stopped jobs. -
-

+

+
If jobspec -is given, output is restricted to information about that job. +is supplied, jobs restricts output to information about that job. The return status is 0 unless an invalid option is encountered or an invalid jobspec is supplied. -

- +

If the -x @@ -12121,19 +12601,17 @@ or args with the corresponding process group ID, and executes -command +command, passing it args, returning its exit status. - -
kill [-s sigspec | -n signum | -sigspec] [pid | jobspec] ...
kill -l|-L [sigspec | exit_status]
-Send the signal named by +Send the signal specified by sigspec or @@ -12162,11 +12640,14 @@ is a signal number. If sigspec -is not present, then -SIGTERM +is not supplied, then +kill + +sends +SIGTERM. -is assumed. +
An argument of -l @@ -12174,8 +12655,11 @@ lists the signal names. If any arguments are supplied when -l -is given, the names of the signals corresponding to the arguments are -listed, and the return status is 0. +is given, +kill + +lists the names of the signals corresponding to the arguments, +and the return status is 0. The exit_status argument to -l @@ -12185,6 +12669,7 @@ The -L option is equivalent to -l. +
kill returns true if at least one signal was successfully sent, or false @@ -12193,7 +12678,7 @@ if an error occurs or an invalid option is encountered. Each arg -is an arithmetic expression to be evaluated (see +is evaluated as an arithmetic expression (see ARITHMETIC EVALUATION @@ -12205,12 +12690,15 @@ If the last evaluates to 0, let -returns 1; 0 is returned otherwise. +returns 1; otherwise +let + +returns 0.
local [option] [name[=value] ... | - ]
-For each argument, a local variable named +For each argument, create a local variable named name -is created, and assigned +and assign it value. The option can be any of the options accepted by declare. @@ -12221,22 +12709,25 @@ is used within a function, it causes the variable name to have a visible scope restricted to that function and its children. -If name is -, the set of shell options is made local to the function -in which local is invoked: shell options changed using the -set builtin inside the function -after the call to local -are restored to their original values -when the function returns. -The restore is effected as if a series of set commands were executed -to restore the values that were in place before the function. -With no operands, +It is an error to use local -writes a list of local variables to the standard output. It is -an error to use +when not within a function. +
+If name is -, it makes the set of shell options +local to the function in which local is invoked: +any shell options changed using the set builtin inside +the function after the call to local are restored to their +original values when the function returns. +The restore is performed as if a series of set commands were +executed to restore the values that were in place before the function. +
+With no operands, local -when not within a function. The return status is 0 unless +writes a list of local variables to the standard output. +
+The return status is 0 unless local is used outside a function, an invalid @@ -12244,24 +12735,26 @@ is used outside a function, an invalid is supplied, or name is a readonly variable. -
logout +
logout [n]
-Exit a login shell. +Exit a login shell, +returning a status of n to the shell's parent.
mapfile [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]
readarray [-d delim] [-n count] [-O origin] [-s count] [-t] [-u fd] [-C callback] [-c quantum] [array]
-Read lines from the standard input into the indexed array variable -array, - +Read lines from the standard input, or from file descriptor fd if the -u -option is supplied. +option is supplied, +into the indexed array variable +array. + The variable MAPFILE @@ -12274,7 +12767,7 @@ Options, if supplied, have the following meanings:
-d
-The first character of delim is used to terminate each input line, +Use the first character of delim to terminate each input line, rather than newline. If delim is the empty string, mapfile will terminate a line when it reads a NUL character. @@ -12284,7 +12777,8 @@ when it reads a NUL character. Copy at most count -lines. If count is 0, all lines are copied. +lines. +If count is 0, copy all lines.
-O
@@ -12313,7 +12807,8 @@ Read lines from file descriptor fd instead of the standard input. Evaluate callback -each time quantum lines are read. The -c option specifies +each time quantum lines are read. +The -c option specifies quantum.
-c @@ -12323,9 +12818,9 @@ Specify the number of lines read between each call to callback. - -

+ +

If -C @@ -12338,24 +12833,20 @@ array element to be assigned and the line to be assigned to that element as additional arguments. callback is evaluated after the line is read but before the array element is assigned. -

- +

If not supplied with an explicit origin, mapfile will clear array before assigning to it. -

- -mapfile returns successfully unless an invalid option or option +

+mapfile returns zero unless an invalid option or option argument is supplied, array is invalid or unassignable, or if array is not an indexed array. - -
popd [-n] [+n] [-n]
-Removes entries from the directory stack. +Remove entries from the directory stack. The elements are numbered from 0 starting at the first directory -listed by dirs. -With no arguments, popd -removes the top directory from the stack, and -changes to the new top directory. +listed by dirs, so popd is equivalent to + +With no arguments, popd removes the top directory from the stack, +and changes to the new top directory. Arguments, if supplied, have the following meanings:
@@ -12363,10 +12854,10 @@ Arguments, if supplied, have the following meanings:
-n
-Suppresses the normal change of directory when removing directories -from the stack, so that only the stack is manipulated. +Suppress the normal change of directory when removing directories +from the stack, only manipulate the stack.
+n
-Removes the nth entry counting from the left of the list +Remove the nth entry counting from the left of the list shown by dirs, @@ -12377,7 +12868,7 @@ removes the first directory, the second.
-n
-Removes the nth entry counting from the right of the list +Remove the nth entry counting from the right of the list shown by dirs, @@ -12387,38 +12878,34 @@ removes the last directory, the next to last. -
-

+ +

If the top element of the directory stack is modified, and the -n option was not supplied, popd uses the cd builtin to change to the directory at the top of the stack. If the cd fails, popd returns a non-zero value. -

- +

Otherwise, popd -returns false if an invalid option is encountered, the directory stack -is empty, or a non-existent directory stack entry is specified. -

- +returns false if an invalid option is supplied, the directory stack +is empty, or n specifies a non-existent directory stack entry. +

If the popd command is successful, -bash runs +bash runs dirs to show the final contents of the directory stack, and the return status is 0. - -
printf [-v var] format [arguments]
Write the formatted arguments to the standard output under the control of the format. -The -v option causes the output to be assigned to the variable -var rather than being printed to the standard output. +The -v option assigns the output to the variable +var rather than printing it to the standard output.
The format is a character string which contains three types of objects: plain characters, which are simply copied to standard output, character @@ -12429,7 +12916,7 @@ In addition to the standard printf(3) format characters -csndiouxXeEfFgGaA, +cCsSndiouxXeEfFgGaA, printf interprets the following additional format specifiers:
@@ -12465,38 +12952,36 @@ causes printf to output the date-time string resulting from using The corresponding argument 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 argument is specified, conversion behaves as if -1 had been given. +This format specifier recognizes two special argument values: +-1 represents the current time, +and -2 represents the time the shell was invoked. +If no argument is specified, conversion behaves as if -1 had been supplied. This is an exception to the usual printf behavior. -
-

+ +

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 argument, which usually contains more characters than the original. -

- +

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, which forces them to convert the argument string to a wide-character string and apply any supplied field width and precision in terms of characters, not bytes. +The %S and %C format specifiers are equivalent to %ls and %lc, respectively. -

- +

Arguments to non-string format specifiers are treated as C constants, except that a leading plus or minus sign is allowed, and if the leading character is a single or double quote, the value is the numeric value of the following character, using the current locale. -

- +

The format is reused as necessary to consume all of the arguments. If the format requires more arguments than are supplied, the extra format specifications behave as if a zero value or null string, as @@ -12504,13 +12989,11 @@ appropriate, had been supplied. The return value is zero on success, non-zero if an invalid option is supplied or a write or assignment error occurs. - -
pushd [-n] [+n] [-n]
pushd [-n] [dir]
-Adds a directory to the top of the directory stack, or rotates +Add a directory to the top of the directory stack, or rotate the stack, making the new top of the stack the current working directory. With no arguments, pushd exchanges the top two elements of @@ -12522,10 +13005,10 @@ Arguments, if supplied, have the following meanings:
-n
-Suppresses the normal change of directory when rotating or -adding directories to the stack, so that only the stack is manipulated. +Suppress the normal change of directory when rotating or +adding directories to the stack, only manipulate the stack.
+n
-Rotates the stack so that the nth directory +Rotate the stack so that the nth directory (counting from the left of the list shown by dirs, @@ -12543,38 +13026,34 @@ starting with zero) is at the top. Adds dir -to the directory stack at the top +to the directory stack at the top. - -

+ +

After the stack has been modified, if the -n option was not supplied, pushd uses the cd builtin to change to the directory at the top of the stack. If the cd fails, pushd returns a non-zero value. -

- +

Otherwise, if no arguments are supplied, pushd -returns 0 unless the directory stack is empty. +returns zero unless the directory stack is empty. When rotating the directory stack, pushd -returns 0 unless the directory stack is empty or -a non-existent directory stack element is specified. -

- +returns zero unless the directory stack is empty or +n specifies a non-existent directory stack element. +

If the pushd command is successful, -bash runs +bash runs dirs to show the final contents of the directory stack. - -
pwd [-LP]
Print the absolute pathname of the current working directory. The pathname printed contains no symbolic links if the @@ -12595,14 +13074,13 @@ The return status is 0 unless an error occurs while reading the name of the current directory or an invalid option is supplied.
read [-Eers] [-a aname] [-d delim] [-i text] [-n nchars] [-N nchars] [-p prompt] [-t timeout] [-u fd] [name ...]
-One line is read from the standard input, or from the file descriptor +Read one line from the standard input, or from the file descriptor fd supplied as an argument to the -u option, -split into words as described +split it into words as described above under Word Splitting, -and the first word -is assigned to the first +and assign the first word to the first name, the second word to the second @@ -12615,17 +13093,19 @@ intervening delimiters are assigned to the last If there are fewer words read from the input stream than names, the remaining names are assigned empty values. -The characters in +The characters in the value of the IFS +variable are used to split the line into words using the same rules the shell uses for expansion (described above under Word Splitting). -The backslash character (\) may be used to remove any special -meaning for the next character read and for line continuation. +The backslash character (\) removes any special +meaning for the next character read and is used for line continuation. +
Options, if supplied, have the following meanings:
@@ -12633,8 +13113,7 @@ Options, if supplied, have the following meanings:
-a aname
-The words are assigned to sequential indices -of the array variable +The words are assigned to sequential indices of the array variable aname, starting at 0. @@ -12645,15 +13124,14 @@ Other name arguments are ignored.
-d delim
-The first character of delim is used to terminate the input line, +The first character of delim terminates the input line, rather than newline. If delim is the empty string, read will terminate a line when it reads a NUL character.
-e
-If the standard input -is coming from a terminal, +If the standard input is coming from a terminal, read uses readline @@ -12669,8 +13147,7 @@ active) editing settings, but uses readline's default filename completion.
-E
-If the standard input -is coming from a terminal, +If the standard input is coming from a terminal, read uses readline @@ -12690,23 +13167,25 @@ programmable completion. If readline -is being used to read the line, text is placed into the editing -buffer before editing begins. +is being used to read the line, read places text into +the editing buffer before editing begins.
-n nchars
read returns after reading nchars characters rather than -waiting for a complete line of input, but honors a delimiter if fewer -than nchars characters are read before the delimiter. +waiting for a complete line of input, +unless it encounters EOF or read times out, +but honors a delimiter if it reads fewer +than nchars characters before the delimiter.
-N nchars
read returns after reading exactly nchars characters rather -than waiting for a complete line of input, unless EOF is encountered or -read times out. -Delimiter characters encountered in the input are +than waiting for a complete line of input, +unless it encounters EOF or read times out. +Any delimiter characters in the input are not treated specially and do not cause read to return until -nchars characters are read. +it has read nchars characters. The result is not split on the characters in IFS; the intent is that the variable is assigned exactly the characters read (with the exception of backslash; see the -r option below). @@ -12714,8 +13193,8 @@ that the variable is assigned exactly the characters read
Display prompt on standard error, without a -trailing newline, before attempting to read any input. The prompt -is displayed only if input is coming from a terminal. +trailing newline, before attempting to read any input, but +only if input is coming from a terminal.
-r
@@ -12726,67 +13205,61 @@ continuation.
-s
-Silent mode. If input is coming from a terminal, characters are -not echoed. +Silent mode. +If input is coming from a terminal, characters are not echoed.
-t timeout
-Cause read to time out and return failure if a complete line of -input (or a specified number of characters) -is not read within timeout seconds. +Cause read to time out and return failure if it does not read +a complete line of input (or a specified number of characters) +within timeout seconds. timeout may be a decimal number with a fractional portion following the decimal point. This option is only effective if read is reading input from a terminal, pipe, or other special file; it has no effect when reading from regular files. -If read times out, read saves any partial input read into -the specified variable name. +If read times out, it saves any partial input read into +the specified variable name, and the exit status is greater than 128. If timeout is 0, read returns 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. +In this case, the exit status is 0 if input is available on the specified +file descriptor, or the read will return EOF, non-zero otherwise.
-u fd
-Read input from file descriptor fd. +Read input from file descriptor fd instead of the standard input. -
-

+ +

Other than the case where delim is the empty string, read ignores any NUL characters in the input. -

- +

If no names -are supplied, the line read, +are supplied, read assigns the line read, without the ending delimiter but otherwise unmodified, -is assigned to the variable +to the variable REPLY. +
The exit status is zero, unless end-of-file is encountered, read times out (in which case the status is greater than 128), a variable assignment error (such as assigning to a readonly variable) occurs, or an invalid file descriptor is supplied as the argument to -u. - -
readonly [-aAf] [-p] [name[=word] ...]
The given names are marked readonly; the values of these names -may not be changed by subsequent assignment. +may not be changed by subsequent assignment or unset. If the -f -option is supplied, the functions corresponding to the -names are so -marked. +option is supplied, each name refers to a shell function. The -a @@ -12801,19 +13274,23 @@ takes precedence. If no name -arguments are given, or if the +arguments are supplied, or if the -p -option is supplied, a list of all readonly names is printed. +option is supplied, print a list of all readonly names. The other options may be used to restrict the output to a subset of the set of readonly names. The -p -option causes output to be displayed in a format that -may be reused as input. -If a variable name is followed by =word, the value of -the variable is set to word. +option displays output in a format that may be reused as input. +
+readonly allows the value of a variable to be set at the same time +the readonly attribute is changed by following the variable name with +=value. +This sets the value of the variable is to value while modifying +the readonly attribute. +
The return status is 0 unless an invalid option is encountered, one of the names @@ -12826,7 +13303,8 @@ is supplied with a that is not a function.
return [n]
-Causes a function to stop executing and return the value specified by +Stop executing a shell function or sourced file and return the value +specified by n to its caller. @@ -12834,17 +13312,17 @@ If n is omitted, the return status is that of the last command -executed in the function body. +executed. If return is executed by a trap handler, the last command used to determine the status is the last command executed before the trap handler. If return is executed during a DEBUG trap, the last command used to determine the status is the last command executed by the trap handler before return was invoked. -If +
+When return -is used outside a function, -but during execution of a script by the +is used to terminate execution of a script being executed by the . (source) command, it causes the shell to stop executing @@ -12855,14 +13333,15 @@ or the exit status of the last command executed within the script as the exit status of the script. If n is supplied, the return value is its least significant 8 bits. +
+Any command associated with the RETURN trap is executed +before execution resumes after the function or script. +
The return status is non-zero if return -is supplied a non-numeric argument, or -is used outside a +is supplied a non-numeric argument, or is used outside a function and not during execution of a script by . or source. -Any command associated with the RETURN trap is executed -before execution resumes after the function or script.
set [-abefhkmnptuvxBCEHPT] [-o option-name] [--] [-] [arg ...]
set [+abefhkmnptuvxBCEHPT] [+o option-name] [--] [-] [arg ...]
@@ -12899,8 +13378,9 @@ subsequent commands.
Report the status of terminated background jobs -immediately, rather than before the next primary prompt. This is -effective only when job control is enabled. +immediately, rather than before the next primary prompt or after a +foreground command terminates. +This is effective only when job control is enabled.
-e
@@ -12985,9 +13465,10 @@ those that precede the command name.
-m
-Monitor mode. Job control is enabled. This option is on -by default for interactive shells on systems that support -it (see +Monitor mode. +Job control is enabled. +This option is on by default for interactive shells on systems +that support it (see JOB CONTROL @@ -13219,7 +13700,7 @@ on the standard output. Turn on privileged -mode. In this mode, the +mode. In this mode, the shell does not read the $ENV @@ -13227,7 +13708,7 @@ and $BASH_ENV -files are not processed, shell functions are not inherited from the +files, shell functions are not inherited from the environment, and the SHELLOPTS, @@ -13289,7 +13770,7 @@ arithmetic for command, display the expanded value of followed by the command and its expanded arguments -or associated word list, to standard error. +or associated word list, to the standard error.
-B
@@ -13313,13 +13794,14 @@ does not overwrite an existing file with the and <> -redirection operators. This may be overridden when -creating output files by using the redirection operator +redirection operators. +Using the redirection operator >| instead of ->. +> +will override this and force the creation of an output file.
-E
@@ -13332,8 +13814,8 @@ The ERR trap is normally not inherited in such cases. Enable ! -style history substitution. This option is on by -default when the shell is interactive. +style history substitution. +This option is on by default when the shell is interactive.
-P
@@ -13341,8 +13823,9 @@ If set, the shell does not resolve symbolic links when executing commands such as cd -that change the current working directory. It uses the -physical directory structure instead. By default, +that change the current working directory. +It uses the physical directory structure instead. +By default, bash follows the logical chain of directories when performing commands @@ -13358,24 +13841,24 @@ in such cases.
--
-If no arguments follow this option, then the positional parameters are -unset. Otherwise, the positional parameters are set to the +If no arguments follow this option, unset the positional parameters. +Otherwise, set the positional parameters to the args, even if some of them begin with a -.
-
-Signal the end of options, cause all remaining args to be -assigned to the positional parameters. The +Signal the end of options, and assign all remaining args to +the positional parameters. +The -x and -v options are turned off. -If there are no args, -the positional parameters remain unchanged. +If there are no args, the positional parameters remain unchanged.

@@ -13387,11 +13870,11 @@ the shell. The current set of options may be found in $-. -The return status is always true unless an invalid option is encountered. +The return status is always zero unless an invalid option is encountered.

shift [n]
-The positional parameters from n+1 ... are renamed to +Rename positional parameters from n+1 ... to $1 .... @@ -13432,10 +13915,10 @@ option to the set builtin command. With no options, or with the -p -option, a list of all settable options is displayed, with +option, display a list of all settable options, with an indication of whether or not each is set; -if optnames are supplied, the output is restricted to those options. -The -p option causes output to be displayed in a form that +if any optnames are supplied, the output is restricted to those options. +The -p option displays output in a form that may be reused as input. Other options have the following meanings:
@@ -13454,7 +13937,7 @@ Disable (unset) each optname.
Suppresses normal output (quiet mode); the return status indicates whether the optname is set or unset. -If multiple optname arguments are given with +If multiple optname arguments are supplied with -q, the return status is zero if all optnames are enabled; non-zero @@ -13533,28 +14016,29 @@ value is the directory to change to.
cdspell
-If set, minor errors in the spelling of a directory component in a +If set, the cd -command will be corrected. -The errors checked for are transposed characters, -a missing character, and one character too many. -If a correction is found, the corrected filename is printed, +command attempts to correct +minor errors in the spelling of a directory component. +Minor errors include transposed characters, +a missing character, and one extra character. +If cd corrects the directory name, it prints the corrected filename, and the command proceeds. This option is only used by interactive shells.
checkhash
If set, bash checks that a command found in the hash -table exists before trying to execute it. If a hashed command no -longer exists, a normal path search is performed. +table exists before trying to execute it. +If a hashed command no longer exists, bash performs a normal path search.
checkjobs
If set, bash lists the status of any stopped and running 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 (see +exiting an interactive shell. +If any jobs are running, bash defers the exit until a second +exit is attempted without an intervening command (see JOB CONTROL @@ -13565,14 +14049,17 @@ The shell always postpones exiting if any jobs are stopped.
If set, bash checks the window size after each external (non-builtin) -command and, if necessary, updates the values of +command +and, if necessary, updates the values of LINES and -COLUMNS. +COLUMNS, +using the file descriptor associated with the standard error +if it is a terminal. This option is enabled by default.
cmdhist @@ -13581,8 +14068,8 @@ If set, bash attempts to save all lines of a multiple-line -command in the same history entry. This allows -easy re-editing of multi-line commands. +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 @@ -13653,8 +14140,8 @@ If set, bash replaces directory names with the results of word expansion when performing -filename completion. This changes the contents of the readline editing -buffer. +filename completion. +This changes the contents of the readline editing buffer. If not set, bash @@ -13691,7 +14178,8 @@ If set, a non-interactive shell will not exit if it cannot execute the file specified as an argument to the exec -builtin command. An interactive shell does not exit if +builtin. +An interactive shell does not exit if exec fails. @@ -13709,8 +14197,7 @@ This option is enabled by default for interactive shells.
extdebug
-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 --debugger option. If set after invocation, behavior intended for use by debuggers is enabled: @@ -13764,11 +14251,11 @@ subshells invoked with ( command ) inherit the
extglob
-If set, the extended pattern matching features described +If set, enable the extended pattern matching features described above under -Pathname Expansion are enabled. +Pathname Expansion.
extquote
@@ -13776,7 +14263,8 @@ If set, $'string' and $" string" quoting is performed within ${parameter} expansions -enclosed in double quotes. This option is enabled by default. +enclosed in double quotes. +This option is enabled by default.
failglob
@@ -13810,9 +14298,9 @@ If set, range expressions used in pattern matching bracket expressions (see above) -behave as if in the traditional C locale when performing -comparisons. That is, the current locale's collating sequence -is not taken into account, so +behave as if in the traditional C locale when performing comparisons. +That is, pattern matching does not take +the current locale's collating sequence into account, so b will not collate between @@ -13859,7 +14347,7 @@ variable when the shell exits, rather than overwriting the file. If set, and readline -is being used, a user is given the opportunity to re-edit a +is being used, the user is given the opportunity to re-edit a failed history substitution.
histverify @@ -13868,8 +14356,9 @@ If set, and readline is being used, the results of history substitution are not immediately -passed to the shell parser. Instead, the resulting line is loaded into -the readline editing buffer, allowing further modification. +passed to the shell parser. +Instead, the resulting line is loaded into the readline editing buffer, +allowing further modification.
hostcomplete
@@ -13904,11 +14393,10 @@ This option is enabled when posix mode is enabled.
interactive_comments
-If set, allow a word beginning with -# - -to cause that word and all remaining characters on that -line to be ignored in an interactive shell (see +In an interactive shell, a word beginning with # +causes that word and all remaining characters on that +line to be ignored, as in a non-interactive shell +(see COMMENTS @@ -13933,14 +14421,16 @@ embedded newlines rather than using semicolon separators where possible.
If set, local variables inherit the value and attributes of a variable of the same name that exists at a previous scope before any new value is -assigned. The nameref attribute is not inherited. +assigned. +The nameref attribute is not inherited.
localvar_unset
If set, calling unset on local variables in previous function scopes marks them so subsequent lookups find them unset until that function -returns. This is identical to the behavior of unsetting local variables -at the current function scope. +returns. +This is identical to the behavior of unsetting local variables at the +current function scope.
login_shell
@@ -13967,12 +14457,11 @@ If set, and is being used, bash -will not attempt to search the +does not search PATH -for possible completions when -completion is attempted on an empty line. +for possible completions when completion is attempted on an empty line.
nocaseglob
@@ -14015,8 +14504,7 @@ If set, pathname expansion patterns which match no files above) -expand to nothing and are removed, -rather than expanding to themselves. +expand to nothing and are removed, rather than expanding to themselves.
patsub_replacement
@@ -14030,18 +14518,18 @@ This option is enabled by default.
progcomp
-If set, the programmable completion facilities (see +If set, enable the programmable completion facilities (see Programmable Completion -above) -are enabled. +above). This option is enabled by default.
progcomp_alias
If set, and programmable completion is enabled, bash treats a command name that doesn't have any completions as a possible alias and attempts -alias expansion. If it has an alias, bash attempts programmable +alias expansion. +If it has an alias, bash attempts programmable completion using the command word resulting from the expanded alias.
promptvars @@ -14113,12 +14601,12 @@ Suspend the execution of this shell until it receives a SIGCONT -signal. A login shell, -or a shell without job control enabled, +signal. +A login shell, or a shell without job control enabled, cannot be suspended; the -f -option can be used to override this and force the suspension. +option will 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 @@ -14147,7 +14635,7 @@ an argument of -- as signifying the end of options. Expressions may be combined using the following operators, listed in decreasing order of precedence. The evaluation depends on the number of arguments; see below. -Operator precedence is used when there are five or more arguments. +test uses operator precedence when there are five or more arguments.
@@ -14162,7 +14650,7 @@ is false.
Returns the value of expr. -This may be used to override the normal precedence of operators. +This may be used to override normal operator precedence.
expr1 -a expr2
True if both expr1 @@ -14229,7 +14717,6 @@ Otherwise, the expression is false. The following conditions are applied in the order listed. If the first argument is !, 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 ( and the fourth argument is exactly ), the result is the two-argument test of the second and third arguments. @@ -14248,19 +14735,31 @@ the < and > operators sort using the current locale. If the shell is not in posix mode, the test and [ commands sort lexicographically using ASCII ordering. -
+
+
+The historical operator-precedence parsing with 4 or more arguments can +lead to ambiguities when it encounters strings that look like primaries. +The POSIX +standard has deprecated the -a and -o +primaries and enclosing expressions within parentheses. +Scripts should no longer use them. +It's much more reliable to restrict test invocations to a single primary, +and to replace uses of -a and -o with the shell's +&& and || list operators. +
times
Print the accumulated user and system times for the shell and -for processes run from the shell. The return status is 0. -
trap [-lp] [[action] sigspec ...]
+for processes run from the shell. +The return status is 0. +
trap [-Plp] [[action] sigspec ...]
The action is a command that is read and executed when the shell receives -signal(s) +any of the signals sigspec. If @@ -14269,9 +14768,8 @@ If is absent (and there is a single sigspec) or -, -each specified signal is -reset to its original disposition (the value it had -upon entrance to the shell). +each specified sigspec is +reset to the value it had when the shell was started. If action @@ -14310,7 +14808,7 @@ associated with each sigspec argument. -P requires at least one sigspec argument. -The -P or -p options to trap may be used +The -P or -p options may be used in a subshell environment (e.g., command substitution) and, as long as they are used before trap is used to change a signal's handling, will display the state of its parent's traps. @@ -14318,7 +14816,7 @@ handling, will display the state of its parent's traps. The -l -option causes trap to print a list of signal names and +option prints a list of signal names and their corresponding numbers. Each sigspec @@ -14330,6 +14828,8 @@ Signal names are case insensitive and the prefix is optional. +If -l is supplied with no sigspec arguments, it prints a +list of valid signal names.
If a sigspec @@ -14338,7 +14838,7 @@ is EXIT -(0) the command +(0), action is executed on exit from the shell. @@ -14349,7 +14849,6 @@ is DEBUG, -the command action is executed before every simple command, for command, @@ -14362,8 +14861,13 @@ in a shell function (see above). -Refer to the description of the extdebug option to the -shopt builtin for details of its effect on the DEBUG trap. +Refer to the description of the extdebug shell option +(see +shopt + + +above) +for details of its effect on the DEBUG trap. If a sigspec @@ -14371,7 +14875,6 @@ is RETURN, -the command action is executed each time a shell function or a script executed with @@ -14384,7 +14887,6 @@ is ERR, -the command action is executed whenever @@ -14414,7 +14916,8 @@ or || list except the command following the final && or ||, -any command in a pipeline but the last, +any command in a pipeline but the last +(subject to the state of the pipefail shell option), or if the command's return value is being inverted using !. @@ -14436,11 +14939,11 @@ returns true.
true
Does nothing, returns a 0 status.
type [-aftpP] name [name ...]
-With no options, -indicate how each +Indicate how each name would be interpreted if used as a command name. +
If the -t @@ -14462,27 +14965,26 @@ or if name -is an alias, shell reserved word, function, builtin, or executable disk file, +is an alias, shell reserved word, function, builtin, or executable file, respectively. If the name -is not found, then nothing is printed, and type returns a -non-zero exit status. +is not found, type prints nothing and returns a non-zero exit status. +
If the -p option is used, type -either returns the name of the executable file +either returns the pathname of the executable file that would be found by searching $PATH -if +for name -were specified as a command name, or nothing if would not return @@ -14500,7 +15002,7 @@ search for each name, even if would not return file. -If a command is hashed, +If name is present in the table of hashed commands, -p and @@ -14511,6 +15013,7 @@ first in PATH. +
If the -a @@ -14535,6 +15038,7 @@ and only performs a search for name. +
The -f @@ -14548,13 +15052,15 @@ any are not found.
ulimit [-HS] [-bcdefiklmnpqrstuvxPRT [limit]]
Provides control over the resources available to the shell and to -processes started by it, on systems that allow such control. +processes it starts, on systems that allow such control. +
The -H and -S 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 -H nor -S is specified, both the soft and hard -limits are set. +If neither -H nor -S is specified, +ulimit sets both the soft and hard limits. +
The value of limit @@ -14572,10 +15078,10 @@ no limit, respectively. If limit -is omitted, the current value of the soft limit of the resource is -printed, unless the -H option is given. When more than one -resource is specified, the limit name and unit, if appropriate, -are printed before the value. +is omitted, ulimit prints the current value of the soft limit of +the resource, unless the -H option is given. +When more than one resource is specified, the limit name and unit, +if appropriate, are printed before the value. Other options are interpreted as follows:
@@ -14583,7 +15089,7 @@ Other options are interpreted as follows:
-a
-All current limits are reported; no limits are set +Report all current limits; no limits are set
-b
@@ -14678,15 +15184,18 @@ The maximum number of threads If limit -is given, and the +is supplied, and the -a option is not used, limit is the new value of the specified resource. -If no option is given, then +If no option is supplied, then -f -is assumed. Values are in 1024-byte increments, except for +is assumed. +

+ +Values are in 1024-byte increments, except for -t, which is in seconds; @@ -14722,27 +15231,27 @@ or an error occurs while setting a new limit.

umask [-p] [-S] [mode]
-The user file-creation mask is set to +Set the user file-creation mask to mode. If mode -begins with a digit, it -is interpreted as an octal number; otherwise -it is interpreted as a symbolic mode mask similar +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 chmod(1). If mode -is omitted, the current value of the mask is printed. +is omitted, umask prints the current value of the mask. The -S -option causes the mask to be printed in symbolic form; the -default output is an octal number. +option without a mode argument +prints the mask in a symbolic format; +the default output is an octal number. If the -p @@ -14750,14 +15259,15 @@ option is supplied, and mode 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 mode argument was supplied, and false otherwise. +The return status is zero if the mode was successfully changed or +if no mode argument was supplied, and non-zero otherwise.
unalias [-a] [name ...]
-Remove each name from the list of defined aliases. If +Remove each name from the list of defined aliases. +If -a -is supplied, all alias definitions are removed. The return -value is true unless a supplied +is supplied, remove all alias definitions. +The return value is true unless a supplied name is not a defined alias. @@ -14773,7 +15283,6 @@ option is given, each name refers to a shell variable, and that variable is removed. -Read-only variables may not be unset. If -f @@ -14789,11 +15298,13 @@ option is supplied, and name is a variable with the nameref attribute, name will be unset rather than the variable it references. -n has no effect if the -f option is supplied. +Read-only variables and functions may not be unset. +When variables or functions are removed, they are also removed +from the environment passed to subsequent commands. If no options are supplied, each name refers to a variable; if there is no variable 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. +Some shell variables may not be unset. If any of BASH_ALIASES, @@ -14848,7 +15359,8 @@ or are unset, they lose their special properties, even if they are -subsequently reset. The exit status is true unless a +subsequently reset. +The exit status is true unless a name is readonly or may not be unset. @@ -14856,7 +15368,7 @@ is readonly or may not be unset. Wait for each specified child process id and return the termination status of the last id. Each id may be a process ID or a job specification; -if a job spec is given, wait waits for all processes in the job. +if a job spec is supplied, wait waits for all processes in the job.
If no options or ids are supplied, wait waits for all running background jobs and @@ -14875,7 +15387,9 @@ the exit status is 127. If the -p option is supplied, the process or job identifier of the job for which the exit status is returned is assigned to the variable varname named by the option argument. -The variable will be unset initially, before any assignment. +The variable, +which cannot be readonly, +will be unset initially, before any assignment. This is useful only when the -n option is supplied.
Supplying the -f option, when job control is enabled, @@ -14894,7 +15408,7 @@ than 128, as described under above. Otherwise, the return status is the exit status of the last id.
-  + 

SHELL COMPATIBILITY MODE

Bash-4.0 introduced the concept of a shell compatibility level, @@ -14912,12 +15426,13 @@ There is only one current compatibility level - each option is mutually exclusive. The compatibility level is intended to allow users to select behavior from previous versions that is incompatible with newer versions -while they migrate scripts to use current features and -behavior. It's intended to be a temporary solution. +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 particular -version (e.g., setting compat32 means that quoting the rhs of the regexp +version (e.g., setting compat32 means that quoting the right hand +side of the regexp matching operator quotes special regexp characters in the word, which is default behavior in bash-3.2 and subsequent versions).

@@ -14946,7 +15461,7 @@ corresponding to the compatNN option, like 42) determines the compatibility level.

-Starting with bash-4.4, bash has begun deprecating older compatibility +Starting with bash-4.4, bash began deprecating older compatibility levels. Eventually, the options will be removed in favor of BASH_COMPAT. @@ -14954,12 +15469,13 @@ Eventually, the options will be removed in favor of

-Bash-5.0 was the final version for which there will be an individual shopt -option for the previous version. Users should control the compatibility -level with -BASH_COMPAT. +Bash-5.0 was the final version for which there was an individual shopt +option for the previous version. +BASH_COMPAT +is the only mechanism to control the compatibility level +in versions newer than bash-5.0.

The following table describes the behavior changes controlled by each @@ -14981,8 +15497,8 @@ and it is required for bash-5.1 and later versions.

*
-quoting the rhs of the [[ command's regexp matching operator (=~) -has no special effect +Quoting the rhs of the [[ command's regexp matching operator (=~) +has no special effect.
@@ -14991,7 +15507,7 @@ has no special effect
*
-the < and > operators to the [[ command do not +The < and > operators to the [[ command do not consider the current locale when comparing strings; they use ASCII ordering.
@@ -15002,7 +15518,7 @@ ordering.
*
-the < and > operators to the [[ command do not +The < and > operators to the [[ command do not consider the current locale when comparing strings; they use ASCII ordering. Bash versions prior to bash-4.1 use ASCII collation and @@ -15019,14 +15535,14 @@ bash-4.1 and later use the current locale's collation sequence and
*
-in posix mode, time may be followed by options and still be -recognized as a reserved word (this is POSIX interpretation 267) +In posix mode, time may be followed by options and still be +recognized as a reserved word (this is POSIX interpretation 267).
*
-in posix mode, the parser requires that an even number of single +In posix mode, the parser requires that an even number of single quotes occur in the word 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) +(this is POSIX interpretation 221).
@@ -15035,15 +15551,15 @@ the single quotes are considered quoted
*
-the replacement string in double-quoted pattern substitution does not -undergo quote removal, as it does in versions after bash-4.2 +The replacement string in double-quoted pattern substitution does not +undergo quote removal, as it does in versions after bash-4.2.
*
-in posix mode, single quotes are considered special when expanding +In posix mode, single quotes are considered special when expanding the word 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 interpretation 221); in later versions, single quotes -are not special within double-quoted word expansions +are not special within double-quoted word expansions.
@@ -15052,15 +15568,15 @@ are not special within double-quoted word expansions
*
-word expansion errors are considered non-fatal errors that cause the +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) +to exit).
*
-when executing a shell function, the loop state (while/until/etc.) +When executing a shell function, the loop state (while/until/etc.) is not reset, so break or continue in that function will break -or continue loops in the calling context. Bash-4.4 and later reset -the loop state to prevent this +or continue loops in the calling context. +Bash-4.4 and later reset the loop state to prevent this.
@@ -15069,7 +15585,7 @@ the loop state to prevent this
*
-the shell sets up the values used by +The shell sets up the values used by BASH_ARGV @@ -15078,16 +15594,16 @@ and so they can expand to the shell's positional parameters even if extended -debugging mode is not enabled +debugging mode is not enabled.
*
-a subshell inherits loops from its parent context, so break +A subshell inherits loops from its parent context, so break or continue will cause the subshell to exit. Bash-5.0 and later reset the loop state to prevent the exit
*
-variable assignments preceding builtins like export and readonly +Variable assignments preceding builtins like export and readonly that set attributes continue to affect variables with the same name in the calling environment even if the shell is not in posix -mode +mode.
@@ -15100,18 +15616,19 @@ Bash-5.1 changed the way $RANDOM -is generated to introduce slightly -more randomness. If the shell compatibility level is set to 50 or +is generated to introduce 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 random number generator by assigning a value to RANDOM -will produce the same sequence as in bash-5.0 +will produce the same sequence as in bash-5.0.
*
If the command hash table is empty, bash versions prior to bash-5.1 printed an informational message to that effect, even when producing -output that can be reused as input. Bash-5.1 suppresses that message +output that can be reused as input. +Bash-5.1 suppresses that message when the -l option is supplied.
@@ -15125,32 +15642,32 @@ The unset builtin treats attempts to unset array subscripts @ and * differently depending on whether the array is indexed or associative, and differently than in previous versions.
*
-arithmetic commands ( +Arithmetic commands ( ((...)) ) and the expressions in an arithmetic for -statement can be expanded more than once +statement can be expanded more than once.
*
-expressions used as arguments to arithmetic operators in the [[ -conditional command can be expanded more than once +Expressions used as arguments to arithmetic operators in the [[ +conditional command can be expanded more than once.
*
-the expressions in substring parameter brace expansion can be -expanded more than once +The expressions in substring parameter brace expansion can be +expanded more than once.
*
-the expressions in the +The expressions in the $((...)) -word expansion can be expanded more than once +word expansion can be expanded more than once.
*
-arithmetic expressions used as indexed array subscripts can be -expanded more than once +Arithmetic expressions used as indexed array subscripts can be +expanded more than once.
*
test -v, when given an argument of A[@], where A is an existing associative array, will return true if the array has any set elements. Bash-5.2 will look for and report on a key named @.
*
-the ${parameter[:]=value} word expansion will return +The ${parameter[:]=value} word expansion will return value, before any variable-specific transformations have been performed (e.g., converting to lowercase). Bash-5.2 will return the final value assigned to the variable. @@ -15188,7 +15705,7 @@ the arguments as key sequences to bind. -  + 

RESTRICTED SHELL

@@ -15204,8 +15721,7 @@ is started with the name or the -r -option is supplied at invocation, -the shell becomes restricted. +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 @@ -15214,9 +15730,9 @@ It behaves identically to with the exception that the following are disallowed or not performed:
*
-changing directories with cd +Changing directories with cd.
*
-setting or unsetting the values of +Setting or unsetting the values of SHELL, @@ -15230,51 +15746,56 @@ setting or unsetting the values of or -BASH_ENV +BASH_ENV.
*
-specifying command names containing -/ +Specifying command names containing +/.
*
-specifying a filename containing a +Specifying a filename containing a / as an argument to the . -builtin command +builtin command.
*
-specifying a filename containing a slash as an argument to the +Using the -p option to the +. + +builtin command to specify a search path. +
*
+Specifying a filename containing a slash as an argument to the history -builtin command +builtin command.
*
-specifying a filename containing a slash as an argument to the +Specifying a filename containing a slash as an argument to the -p option to the hash -builtin command +builtin command.
*
-importing function definitions from the shell environment at startup +Importing function definitions from the shell environment at startup.
*
-parsing the value of +Parsing the value of SHELLOPTS -from the shell environment at startup +from the shell environment at startup.
*
-redirecting output using the >, >|, <>, >&, &>, and >> redirection operators +Redirecting output using the >, >|, <>, >&, &>, and >> redirection operators.
*
-using the +Using the exec -builtin command to replace the shell with another command +builtin command to replace the shell with another command.
*
-adding or deleting builtin commands with the +Adding or deleting builtin commands with the -f and @@ -15283,19 +15804,19 @@ and options to the enable -builtin command +builtin command.
*
-using the enable builtin command to enable disabled shell builtins +Using the enable builtin command to enable disabled shell builtins.
*
-specifying the +Specifying the -p option to the command -builtin command +builtin command.
*
-turning off restricted mode with +Turning off restricted mode with set +r or shopt -u restricted_shell.

@@ -15319,7 +15840,7 @@ turns off any restrictions in the shell spawned to execute the script. -  + 

SEE ALSO

@@ -15335,7 +15856,7 @@ script.
readline(3)
-  + 

FILES

@@ -15378,7 +15899,7 @@ command history Individual readline initialization file -  + 

AUTHORS

Brian Fox, Free Software Foundation @@ -15391,7 +15912,7 @@ Chet Ramey, Case Western Reserve University
chet.ramey@case.edu -  + 

BUG REPORTS

If you find a bug in @@ -15446,7 +15967,7 @@ Comments and bug reports concerning this manual page should be directed to chet.ramey@case.edu. -  + 

BUGS

It's too big and too slow. @@ -15483,16 +16004,13 @@ bring it into the foreground.

Array variables may not (yet) be exported. -

- -There may be only one active coprocess at a time.


-
GNU Bash 5.32024 August 13BASH(1) +GNU Bash 5.32024 September 29BASH(1)

@@ -15518,87 +16036,90 @@ There may be only one active coprocess at a time.
COMMENTS
QUOTING
-
PARAMETERS
-
Positional Parameters
-
Special Parameters
-
Shell Variables
-
Arrays
+
Translating Strings
+
+
PARAMETERS
+
+
Positional Parameters
+
Special Parameters
+
Shell Variables
+
Arrays
-
EXPANSION
+
EXPANSION
-
Brace Expansion
-
Tilde Expansion
-
Parameter Expansion
-
Command Substitution
-
Arithmetic Expansion
-
Process Substitution
-
Word Splitting
-
Pathname Expansion
-
Quote Removal
+
Brace Expansion
+
Tilde Expansion
+
Parameter Expansion
+
Command Substitution
+
Arithmetic Expansion
+
Process Substitution
+
Word Splitting
+
Pathname Expansion
+
Quote Removal
-
REDIRECTION
+
REDIRECTION
-
Redirecting Input
-
Redirecting Output
-
Appending Redirected Output
-
Redirecting Standard Output and Standard Error
-
Appending Standard Output and Standard Error
-
Here Documents
-
Here Strings
-
Duplicating File Descriptors
-
Moving File Descriptors
-
Opening File Descriptors for Reading and Writing
+
Redirecting Input
+
Redirecting Output
+
Appending Redirected Output
+
Redirecting Standard Output and Standard Error
+
Appending Standard Output and Standard Error
+
Here Documents
+
Here Strings
+
Duplicating File Descriptors
+
Moving File Descriptors
+
Opening File Descriptors for Reading and Writing
-
ALIASES
-
FUNCTIONS
-
ARITHMETIC EVALUATION
-
CONDITIONAL EXPRESSIONS
-
SIMPLE COMMAND EXPANSION
-
COMMAND EXECUTION
-
COMMAND EXECUTION ENVIRONMENT
-
ENVIRONMENT
-
EXIT STATUS
-
SIGNALS
-
JOB CONTROL
-
PROMPTING
-
READLINE
+
ALIASES
+
FUNCTIONS
+
ARITHMETIC EVALUATION
+
CONDITIONAL EXPRESSIONS
+
SIMPLE COMMAND EXPANSION
+
COMMAND EXECUTION
+
COMMAND EXECUTION ENVIRONMENT
+
ENVIRONMENT
+
EXIT STATUS
+
SIGNALS
+
JOB CONTROL
+
PROMPTING
+
READLINE
-
Readline Notation
-
Readline Initialization
-
Readline Key Bindings
-
Readline Variables
-
Readline Conditional Constructs
-
Searching
-
Readline Command Names
-
Commands for Moving
-
Commands for Manipulating the History
-
Commands for Changing Text
-
Killing and Yanking
-
Numeric Arguments
-
Completing
-
Keyboard Macros
-
Miscellaneous
-
Programmable Completion
+
Readline Notation
+
Readline Initialization
+
Readline Key Bindings
+
Readline Variables
+
Readline Conditional Constructs
+
Searching
+
Readline Command Names
+
Commands for Moving
+
Commands for Manipulating the History
+
Commands for Changing Text
+
Killing and Yanking
+
Numeric Arguments
+
Completing
+
Keyboard Macros
+
Miscellaneous
+
Programmable Completion
-
HISTORY
-
HISTORY EXPANSION
+
HISTORY
+
HISTORY EXPANSION
-
Event Designators
-
Word Designators
-
Modifiers
+
Event Designators
+
Word Designators
+
Modifiers
-
SHELL BUILTIN COMMANDS
-
SHELL COMPATIBILITY MODE
-
RESTRICTED SHELL
-
SEE ALSO
-
FILES
-
AUTHORS
-
BUG REPORTS
-
BUGS
+
SHELL BUILTIN COMMANDS
+
SHELL COMPATIBILITY MODE
+
RESTRICTED SHELL
+
SEE ALSO
+
FILES
+
AUTHORS
+
BUG REPORTS
+
BUGS

-This document was created by man2html from /usr/local/src/bash/bash-20240812/doc/bash.1.
-Time: 13 August 2024 14:46:04 EDT +This document was created by man2html from /usr/local/src/bash/bash-20240927/doc/bash.1.
+Time: 07 October 2024 17:23:36 EDT diff --git a/doc/bash.info b/doc/bash.info index f0761af4f..f931200a4 100644 --- a/doc/bash.info +++ b/doc/bash.info @@ -1,12 +1,12 @@ This is bash.info, produced by makeinfo version 7.1 from bashref.texi. This text is a brief description of the features that are present in the -Bash shell (version 5.3, 5 September 2024). +Bash shell (version 5.3, 29 September 2024). - This is Edition 5.3, last updated 5 September 2024, of ‘The GNU Bash + This is Edition 5.3, last updated 29 September 2024, of ‘The GNU Bash Reference Manual’, for ‘Bash’, Version 5.3. - Copyright © 1988-2023 Free Software Foundation, Inc. + Copyright © 1988-2024 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, @@ -26,10 +26,10 @@ Bash Features ************* This text is a brief description of the features that are present in the -Bash shell (version 5.3, 5 September 2024). The Bash home page is +Bash shell (version 5.3, 29 September 2024). The Bash home page is . - This is Edition 5.3, last updated 5 September 2024, of ‘The GNU Bash + This is Edition 5.3, last updated 29 September 2024, of ‘The GNU Bash Reference Manual’, for ‘Bash’, Version 5.3. Bash contains features that appear in other popular shells, and some @@ -99,7 +99,7 @@ use. version of ‘csh’, Bash is the default shell. Like other GNU software, Bash is quite portable. It currently runs on nearly every version of Unix and a few other operating systems − independently-supported ports -exist for MS-DOS, OS/2, and Windows platforms. +exist for Windows and other platforms.  File: bash.info, Node: What is a shell?, Prev: What is Bash?, Up: Introduction @@ -122,7 +122,8 @@ automate their common tasks. Shells may be used interactively or non-interactively. In interactive mode, they accept input typed from the keyboard. When -executing non-interactively, shells execute commands read from a file. +executing non-interactively, shells execute commands read from a file or +a string. A shell allows execution of GNU commands, both synchronously and asynchronously. The shell waits for synchronous commands to complete @@ -357,13 +358,14 @@ as such, and to prevent parameter expansion. Each of the shell metacharacters (*note Definitions::) has special meaning to the shell and must be quoted if it is to represent itself. -When the command history expansion facilities are being used (*note + + When the command history expansion facilities are being used (*note History Interaction::), the “history expansion” character, usually ‘!’, must be quoted to prevent history expansion. *Note Bash History Facilities::, for more details concerning history expansion. - There are three quoting mechanisms: the “escape character”, single -quotes, and double quotes. + There are four quoting mechanisms: the “escape character”, single +quotes, double quotes, and dollar-single quotes.  File: bash.info, Node: Escape Character, Next: Single Quotes, Up: Quoting @@ -372,10 +374,11 @@ File: bash.info, Node: Escape Character, Next: Single Quotes, Up: Quoting ........................ A non-quoted backslash ‘\’ is the Bash escape character. It preserves -the literal value of the next character that follows, with the exception -of ‘newline’. If a ‘\newline’ pair appears, and the backslash itself is -not quoted, the ‘\newline’ is treated as a line continuation (that is, -it is removed from the input stream and effectively ignored). +the literal value of the next character that follows, removing any +special meaning it has, with the exception of ‘newline’. If a +‘\newline’ pair appears, and the backslash itself is not quoted, the +‘\newline’ is treated as a line continuation (that is, it is removed +from the input stream and effectively ignored).  File: bash.info, Node: Single Quotes, Next: Double Quotes, Prev: Escape Character, Up: Quoting @@ -403,11 +406,12 @@ characters ‘$’ and ‘`’ retain their special meaning within double quotes only when followed by one of the following characters: ‘$’, ‘`’, ‘"’, ‘\’, or ‘newline’. Within double quotes, backslashes that are followed by one of these characters are removed. Backslashes preceding -characters without a special meaning are left unmodified. A double -quote may be quoted within double quotes by preceding it with a -backslash. If enabled, history expansion will be performed unless an -‘!’ appearing in double quotes is escaped using a backslash. The -backslash preceding the ‘!’ is not removed. +characters without a special meaning are left unmodified. + + A double quote may be quoted within double quotes by preceding it +with a backslash. If enabled, history expansion will be performed +unless an ‘!’ appearing in double quotes is escaped using a backslash. +The backslash preceding the ‘!’ is not removed. The special parameters ‘*’ and ‘@’ have special meaning when in double quotes (*note Shell Parameter Expansion::). @@ -485,7 +489,8 @@ translation, using the ‘LC_MESSAGES’, ‘TEXTDOMAINDIR’, and ‘TEXTDOMAIN shell variables, as explained below. See the gettext documentation for additional details not covered here. If the current locale is ‘C’ or ‘POSIX’, if there are no translations available, or if the string is not -translated, the dollar sign is ignored. Since this is a form of double +translated, the dollar sign is ignored, and the string is treated as +double-quoted as described above. Since this is a form of double quoting, the string remains double-quoted by default, whether or not it is translated and replaced. If the ‘noexpand_translation’ option is enabled using the ‘shopt’ builtin (*note The Shopt Builtin::), @@ -590,12 +595,14 @@ File: bash.info, Node: Comments, Prev: Quoting, Up: Shell Syntax In a non-interactive shell, or an interactive shell in which the ‘interactive_comments’ option to the ‘shopt’ builtin is enabled (*note -The Shopt Builtin::), a word beginning with ‘#’ causes that word and all -remaining characters on that line to be ignored. An interactive shell -without the ‘interactive_comments’ option enabled does not allow -comments. The ‘interactive_comments’ option is on by default in -interactive shells. *Note Interactive Shells::, for a description of -what makes a shell interactive. +The Shopt Builtin::), a word beginning with ‘#’ introduces a comment. A +word begins at the beginning of a line, after unquoted whitespace, or +after an operator. The comment causes that word and all remaining +characters on that line to be ignored. An interactive shell without the +‘interactive_comments’ option enabled does not allow comments. The +‘interactive_comments’ option is enabled by default in interactive +shells. *Note Interactive Shells::, for a description of what makes a +shell interactive.  File: bash.info, Node: Shell Commands, Next: Shell Functions, Prev: Shell Syntax, Up: Basic Shell Features @@ -649,9 +656,9 @@ File: bash.info, Node: Simple Commands, Next: Pipelines, Prev: Reserved Words 3.2.2 Simple Commands --------------------- -A simple command is the kind of command encountered most often. It's -just a sequence of words separated by ‘blank’s, terminated by one of the -shell's control operators (*note Definitions::). The first word +A simple command is the kind of command that's executed most often. +It's just a sequence of words separated by ‘blank’s, terminated by one +of the shell's control operators (*note Definitions::). The first word generally specifies a command to be executed, with the rest of the words being that command's arguments. @@ -676,11 +683,12 @@ the input of the next command. That is, each command reads the previous command's output. This connection is performed before any redirections specified by COMMAND1. - If ‘|&’ is used, COMMAND1's standard error, in addition to its -standard output, is connected to COMMAND2's standard input through the -pipe; it is shorthand for ‘2>&1 |’. This implicit redirection of the -standard error to the standard output is performed after any -redirections specified by COMMAND1. + If ‘|&’ is the pipeline operator, COMMAND1's standard error, in +addition to its standard output, is connected to COMMAND2's standard +input through the pipe; it is shorthand for ‘2>&1 |’. This implicit +redirection of the standard error to the standard output is performed +after any redirections specified by COMMAND1, consistent with that +shorthand. The reserved word ‘time’ causes timing statistics to be printed for the pipeline once it finishes. The statistics currently consist of @@ -688,7 +696,7 @@ elapsed (wall-clock) time and user and system time consumed by the command's execution. The ‘-p’ option changes the output format to that specified by POSIX. When the shell is in POSIX mode (*note Bash POSIX Mode::), it does not recognize ‘time’ as a reserved word if the next -token begins with a ‘-’. The ‘TIMEFORMAT’ variable may be set to a +token begins with a ‘-’. The value of the ‘TIMEFORMAT’ variable is a format string that specifies how the timing information should be displayed. *Note Bash Variables::, for a description of the available formats. The use of ‘time’ as a reserved word permits the timing of @@ -700,15 +708,15 @@ be followed by a newline. In this case, the shell displays the total user and system time consumed by the shell and its children. The ‘TIMEFORMAT’ variable specifies the format of the time information. - If the pipeline is not executed asynchronously (*note Lists::), the + If a pipeline is not executed asynchronously (*note Lists::), the shell waits for all commands in the pipeline to complete. Each command in a multi-command pipeline, where pipes are created, is executed in its own “subshell”, which is a separate process (*note Command Execution Environment::). If the ‘lastpipe’ option is enabled -using the ‘shopt’ builtin (*note The Shopt Builtin::), the last element -of a pipeline may be run by the shell process when job control is not -active. +using the ‘shopt’ builtin (*note The Shopt Builtin::), and job control +is not active, the last element of a pipeline may be run by the shell +process. The exit status of a pipeline is the exit status of the last command in the pipeline, unless the ‘pipefail’ option is enabled (*note The Set @@ -716,8 +724,10 @@ Builtin::). If ‘pipefail’ is enabled, the pipeline's return status is the value of the last (rightmost) command to exit with a non-zero status, or zero if all commands exit successfully. If the reserved word ‘!’ precedes the pipeline, the exit status is the logical negation of -the exit status as described above. The shell waits for all commands in -the pipeline to terminate before returning a value. +the exit status as described above. If a pipeline is not executed +asynchronously (*note Lists::), the shell waits for all commands in the +pipeline to terminate before returning a value. The return status of an +asynchronous pipeline is 0.  File: bash.info, Node: Lists, Next: Compound Commands, Prev: Pipelines, Up: Shell Commands @@ -829,9 +839,9 @@ syntax, it may be replaced with one or more newlines. for NAME [ [in [WORDS ...] ] ; ] do COMMANDS; done - Expand WORDS (*note Shell Expansions::), and execute COMMANDS once - for each member in the resultant list, with NAME bound to the - current member. If ‘in WORDS’ is not present, the ‘for’ command + Expand WORDS (*note Shell Expansions::), and then execute COMMANDS + once for each word in the resultant list, with NAME bound to the + current word. If ‘in WORDS’ is not present, the ‘for’ command executes the COMMANDS once for each positional parameter that is set, as if ‘in "$@"’ had been specified (*note Special Parameters::). @@ -844,18 +854,17 @@ syntax, it may be replaced with one or more newlines. for (( EXPR1 ; EXPR2 ; EXPR3 )) ; do COMMANDS ; done - First, the arithmetic expression EXPR1 is evaluated according to - the rules described below (*note Shell Arithmetic::). The - arithmetic expression EXPR2 is then evaluated repeatedly until it - evaluates to zero. Each time EXPR2 evaluates to a non-zero value, - COMMANDS are executed and the arithmetic expression EXPR3 is - evaluated. If any expression is omitted, it behaves as if it - evaluates to 1. The return value is the exit status of the last - command in COMMANDS that is executed, or false if any of the - expressions is invalid. + First, evaluate the arithmetic expression EXPR1 according to the + rules described below (*note Shell Arithmetic::). Then, repeatedly + evaluate the arithmetic expression EXPR2 until it evaluates to + zero. Each time EXPR2 evaluates to a non-zero value, execute + COMMANDS and evaluate the arithmetic expression EXPR3. If any + expression is omitted, it behaves as if it evaluates to 1. The + return value is the exit status of the last command in COMMANDS + that is executed, or non-zero if any of the expressions is invalid. - The ‘break’ and ‘continue’ builtins (*note Bourne Shell Builtins::) -may be used to control loop execution. + Use the ‘break’ and ‘continue’ builtins (*note Bourne Shell +Builtins::) to control loop execution.  File: bash.info, Node: Conditional Constructs, Next: Command Grouping, Prev: Looping Constructs, Up: Compound Commands @@ -892,14 +901,15 @@ File: bash.info, Node: Conditional Constructs, Next: Command Grouping, Prev: esac ‘case’ will selectively execute the COMMAND-LIST corresponding to - the first PATTERN that matches WORD. The match is performed - according to the rules described below in *note Pattern Matching::. - If the ‘nocasematch’ shell option (see the description of ‘shopt’ - in *note The Shopt Builtin::) is enabled, the match is performed - without regard to the case of alphabetic characters. The ‘|’ is - used to separate multiple patterns, and the ‘)’ operator terminates - a pattern list. A list of patterns and an associated command-list - is known as a CLAUSE. + the first PATTERN that matches WORD, proceeding from the first + pattern to the last. The match is performed according to the rules + described below in *note Pattern Matching::. If the ‘nocasematch’ + shell option (see the description of ‘shopt’ in *note The Shopt + Builtin::) is enabled, the match is performed without regard to the + case of alphabetic characters. The ‘|’ is used to separate + multiple patterns in a pattern list, and the ‘)’ operator + terminates the pattern list. A pattern list and an associated + COMMAND-LIST is known as a CLAUSE. Each clause must be terminated with ‘;;’, ‘;&’, or ‘;;&’. The WORD undergoes tilde expansion, parameter expansion, command @@ -928,16 +938,16 @@ File: bash.info, Node: Conditional Constructs, Next: Command Grouping, Prev: esac echo " legs." - If the ‘;;’ operator is used, no subsequent matches are attempted - after the first pattern match. Using ‘;&’ in place of ‘;;’ causes + If the ‘;;’ operator is used, the ‘case’ command completes after + the first pattern match. Using ‘;&’ in place of ‘;;’ causes execution to continue with the COMMAND-LIST associated with the next clause, if any. Using ‘;;&’ in place of ‘;;’ causes the shell to test the patterns in the next clause, if any, and execute any - associated COMMAND-LIST on a successful match, continuing the case + associated COMMAND-LIST if the match succeeds, continuing the case statement execution as if the pattern list had not matched. - The return status is zero if no PATTERN is matched. Otherwise, the - return status is the exit status of the COMMAND-LIST executed. + The return status is zero if no PATTERN matches. Otherwise, the + return status is the exit status of the last COMMAND-LIST executed. ‘select’ @@ -946,15 +956,15 @@ File: bash.info, Node: Conditional Constructs, Next: Command Grouping, Prev: select NAME [in WORDS ...]; do COMMANDS; done - The list of words following ‘in’ is expanded, generating a list of - items, and the set of expanded words is printed on the standard - error output stream, each preceded by a number. If the ‘in WORDS’ - is omitted, the positional parameters are printed, as if ‘in "$@"’ - had been specified. ‘select’ then displays the ‘PS3’ prompt and - reads a line from the standard input. If the line consists of a - number corresponding to one of the displayed words, then the value - of NAME is set to that word. If the line is empty, the words and - prompt are displayed again. If ‘EOF’ is read, the ‘select’ command + First, expand the list of words following ‘in’, generating a list + of items, and print the set of expanded words on the standard error + stream, each preceded by a number. If the ‘in WORDS’ is omitted, + print the positional parameters, as if ‘in "$@"’ had been + specified. ‘select’ then displays the ‘PS3’ prompt and reads a + line from the standard input. If the line consists of a number + corresponding to one of the displayed words, then ‘select’ sets the + value of NAME to that word. If the line is empty, ‘select’ + displays the words and prompt again. If ‘EOF’ is read, ‘select’ completes and returns 1. Any other value read causes NAME to be set to null. The line read is saved in the variable ‘REPLY’. @@ -978,21 +988,21 @@ File: bash.info, Node: Conditional Constructs, Next: Command Grouping, Prev: described below (*note Shell Arithmetic::). The EXPRESSION undergoes the same expansions as if it were within double quotes, but double quote characters in EXPRESSION are not treated specially - are removed. If the value of the expression is non-zero, the + and are removed. If the value of the expression is non-zero, the return status is 0; otherwise the return status is 1. ‘[[...]]’ [[ EXPRESSION ]] - Return a status of 0 or 1 depending on the evaluation of the - conditional expression EXPRESSION. Expressions are composed of the - primaries described below in *note Bash Conditional Expressions::. - The words between the ‘[[’ and ‘]]’ do not undergo word splitting - and filename expansion. The shell performs tilde expansion, - parameter and variable expansion, arithmetic expansion, command - substitution, process substitution, and quote removal on those - words. Conditional operators such as ‘-f’ must be unquoted to be - recognized as primaries. + Evaluate the conditional expression EXPRESSION and return a status + of zero (true) or non-zero (false). Expressions are composed of + the primaries described below in *note Bash Conditional + Expressions::. The words between the ‘[[’ and ‘]]’ do not undergo + word splitting and filename expansion. The shell performs tilde + expansion, parameter and variable expansion, arithmetic expansion, + command substitution, process substitution, and quote removal on + those words. Conditional operators such as ‘-f’ must be unquoted + to be recognized as primaries. When used with ‘[[’, the ‘<’ and ‘>’ operators sort lexicographically using the current locale. @@ -1188,8 +1198,8 @@ list may be redirected to a single stream. { LIST; } Placing a list of commands between curly braces causes the list to - be executed in the current shell context. No subshell is created. - The semicolon (or newline) following LIST is required. + be executed in the current shell environment. No subshell is + created. The semicolon (or newline) following LIST is required. In addition to the creation of a subshell, there is a subtle difference between these two constructs due to historical reasons. The @@ -1225,7 +1235,7 @@ the default name is ‘COPROC’. coproc NAME { COMMAND; } -This form is recommended because simple commands result in the coprocess +This form is preferred because simple commands result in the coprocess always being named ‘COPROC’, and it is simpler to use and more complete than the other compound commands. @@ -1257,7 +1267,7 @@ subshells. The process ID of the shell spawned to execute the coprocess is available as the value of the variable ‘NAME_PID’. The ‘wait’ builtin -command may be used to wait for the coprocess to terminate. +may be used to wait for the coprocess to terminate. Since the coprocess is created as an asynchronous command, the ‘coproc’ command always returns success. The return status of a @@ -1293,10 +1303,10 @@ File: bash.info, Node: Shell Functions, Next: Shell Parameters, Prev: Shell C Shell functions are a way to group commands for later execution using a single name for the group. They are executed just like a "regular" -command. 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. Shell functions are executed in the current shell context; no -new process is created to interpret them. +simple command. When the name of a shell function is used as a simple +command name, the shell executes the list of commands associated with +that function name. Shell functions are executed in the current shell +context; there is no new process created to interpret them. Functions are declared using this syntax: FNAME () COMPOUND-COMMAND [ REDIRECTIONS ] @@ -1311,15 +1321,15 @@ the parentheses are optional. The “body” of the function is the compound command COMPOUND-COMMAND (*note Compound Commands::). That command is usually a LIST enclosed between { and }, but may be any compound command listed above. If the ‘function’ reserved word is used, -but the parentheses are not supplied, the braces are recommended. -COMPOUND-COMMAND is executed whenever FNAME is specified as the name of -a simple command. When the shell is in POSIX mode (*note Bash POSIX -Mode::), FNAME must be a valid shell name and may not be the same as one -of the special builtins (*note Special Builtins::). In default mode, a -function name can be any unquoted shell word that does not contain ‘$’. -Any redirections (*note Redirections::) associated with the shell -function are performed when the function is executed. A function -definition may be deleted using the ‘-f’ option to the ‘unset’ builtin +but the parentheses are not supplied, the braces are recommended. When +the shell is in POSIX mode (*note Bash POSIX Mode::), FNAME must be a +valid shell name and may not be the same as one of the special builtins +(*note Special Builtins::). When not in POSIX mode, a function name can +be any unquoted shell word that does not contain ‘$’. + + Any redirections (*note Redirections::) associated with the shell +function are performed when the function is executed. Function +definitions are deleted using the ‘-f’ option to the ‘unset’ builtin (*note Bourne Shell Builtins::). The exit status of a function definition is zero unless a syntax @@ -1331,17 +1341,22 @@ last command executed in the body. braces that surround the body of the function must be separated from the body by ‘blank’s or newlines. This is because the braces are reserved words and are only recognized as such when they are separated from the -command list by whitespace or another shell metacharacter. Also, when -using the braces, the LIST must be terminated by a semicolon, a ‘&’, or -a newline. +command list by whitespace or another shell metacharacter. When using +the braces, the LIST must be terminated by a semicolon, a ‘&’, or a +newline. + + COMPOUND-COMMAND is executed whenever FNAME is specified as the name +of a simple command. Functions are executed in the context of the +calling shell; there is no new process created to interpret 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 (*note Positional Parameters::). The special parameter ‘#’ that expands to the number of -positional parameters is updated to reflect the change. Special -parameter ‘0’ is unchanged. The first element of the ‘FUNCNAME’ -variable is set to the name of the function while the function is -executing. +positional parameters is updated to reflect the new set of positional +parameters. Special parameter ‘0’ is unchanged. The first element of +the ‘FUNCNAME’ variable is set to the name of the function while the +function is executing. All other aspects of the shell execution environment are identical between a function and its caller with these exceptions: the ‘DEBUG’ and @@ -1362,28 +1377,29 @@ function completes and execution resumes with the next command after the function call. Any command associated with the ‘RETURN’ trap is executed before execution resumes. When a function completes, the values of the positional parameters and the special parameter ‘#’ are -restored to the values they had prior to the function's execution. If a -numeric argument is given to ‘return’, that is the function's return +restored to the values they had prior to the function's execution. If +‘return’ is supplied a numeric argument, that is the function's return status; otherwise the function's return status is the exit status of the last command executed before the ‘return’. - Variables local to the function may be declared with the ‘local’ -builtin (“local variables”). Ordinarily, variables and their values are -shared between a function and its caller. These variables are visible -only to the function and the commands it invokes. This is particularly + Variables local to the function are declared with the ‘local’ builtin +(“local variables”). Ordinarily, variables and their values are shared +between a function and its caller. These variables are visible only to +the function and the commands it invokes. This is particularly important when a shell function calls other functions. In the following description, the “current scope” is a currently- executing function. Previous scopes consist of that function's caller and so on, back to the "global" scope, where the shell is not executing -any shell function. Consequently, a local variable at the current local -scope is a variable declared using the ‘local’ or ‘declare’ builtins in -the function that is currently executing. +any shell function. A local variable at the current local scope is a +variable declared using the ‘local’ or ‘declare’ builtins in the +function that is currently executing. Local variables "shadow" variables with the same name declared at previous 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. +hides variables with the same name declared at previous scopes, +including global variables: references and assignments refer to the +local variable, leaving the variables at previous scopes unmodified. When the function returns, the global variable is once again visible. The shell uses “dynamic scoping” to control a variable's visibility @@ -1428,20 +1444,22 @@ 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 -‘localvar_unset’shell option changes this behavior). +‘localvar_unset’ shell option changes this behavior). - Function names and definitions may be listed with the ‘-f’ option to -the ‘declare’ (‘typeset’) builtin command (*note Bash Builtins::). The -‘-F’ option to ‘declare’ or ‘typeset’ will list the function names only -(and optionally the source file and line number, if the ‘extdebug’ shell + The ‘-f’ option to the ‘declare’ (‘typeset’) builtin command (*note +Bash Builtins::) will list function names and definitions. The ‘-F’ +option to ‘declare’ or ‘typeset’ will list the function names only (and +optionally the source file and line number, if the ‘extdebug’ shell option is enabled). Functions may be exported so that child shell processes (those created when executing a separate shell invocation) automatically have them defined with the ‘-f’ option to the ‘export’ -builtin (*note Bourne Shell Builtins::). +builtin (*note Bourne Shell Builtins::). The ‘-f’ option to the ‘unset’ +builtin (*note Bourne Shell Builtins::) will delete a function +definition. Functions may be recursive. The ‘FUNCNEST’ variable may be used to limit the depth of the function call stack and restrict the number of -function invocations. By default, no limit is placed on the number of +function invocations. By default, Bash places no limit on the number of recursive calls.  @@ -1460,7 +1478,8 @@ number, or one of the special characters listed below. A “variable” is a parameter denoted by a ‘name’. A variable has a ‘value’ and zero or more ‘attributes’. Attributes are assigned using the ‘declare’ builtin command (see the description of the ‘declare’ builtin in *note Bash -Builtins::). +Builtins::). The ‘export’ and ‘readonly’ builtins assign specific +attributes. A parameter is set if it has been assigned a value. The null string is a valid value. Once a variable is set, it may be unset only by using @@ -1480,15 +1499,18 @@ statements may also appear as arguments to the ‘alias’, ‘declare’, (“declaration” commands). When in POSIX mode (*note Bash POSIX Mode::), these builtins may appear in a command after one or more instances of the ‘command’ builtin and retain these assignment statement properties. +For example, + command export var=value In the context where an assignment statement is assigning a value to -a shell variable or array index (*note Arrays::), the ‘+=’ operator can -be used to append to or add to the variable's previous value. This -includes arguments to builtin commands such as ‘declare’ that accept -assignment statements (declaration commands). When ‘+=’ is applied to a -variable for which the ‘integer’ attribute has been set, VALUE is -evaluated as an arithmetic expression and added to the variable's -current value, which is also evaluated. When ‘+=’ is applied to an +a shell variable or array index (*note Arrays::), the ‘+=’ operator will +append to or add to the variable's previous value. This includes +arguments to declaration commands such as ‘declare’ that accept +assignment statements. When ‘+=’ is applied to a variable for which the +‘integer’ attribute has been set, the variable's current value and VALUE +are each evaluated as arithmetic expressions, and the sum of the results +is assigned as the variable's value. The current value is usually an +integer constant, but may be an expression. When ‘+=’ is applied to an array variable using compound assignment (*note Arrays::), the variable's value is not unset (as it is when using ‘=’), and new values are appended to the array beginning at one greater than the array's @@ -1508,11 +1530,11 @@ shell functions to refer to a variable whose name is passed as an argument to the function. For instance, if a variable name is passed to a shell function as its first argument, running declare -n ref=$1 -inside the function creates a nameref variable ‘ref’ whose value is the -variable name passed as the first argument. References and assignments -to ‘ref’, and changes to its attributes, are treated as references, -assignments, and attribute modifications to the variable whose name was -passed as ‘$1’. +inside the function creates a local nameref variable ‘ref’ whose value +is the variable name passed as the first argument. References and +assignments to ‘ref’, and changes to its attributes, are treated as +references, assignments, and attribute modifications to the variable +whose name was passed as ‘$1’. If the control variable in a ‘for’ loop has the nameref attribute, the list of words can be a list of shell variables, and a name reference @@ -1541,7 +1563,9 @@ Shell Builtin Commands::). The positional parameters are temporarily replaced when a shell function is executed (*note Shell Functions::). When a positional parameter consisting of more than a single digit is -expanded, it must be enclosed in braces. +expanded, it must be enclosed in braces. Without braces, a digit +following ‘$’ can only refer to one of the first nine positional +parameters ($1\-$9) or the special parameter $0 (see below).  File: bash.info, Node: Special Parameters, Prev: Positional Parameters, Up: Shell Parameters @@ -1550,37 +1574,39 @@ File: bash.info, Node: Special Parameters, Prev: Positional Parameters, Up: S ------------------------ The shell treats several parameters specially. These parameters may -only be referenced; assignment to them is not allowed. +only be referenced; assignment to them is not allowed. Special +parameters are denoted by one of the following characters. ‘*’ ($*) Expands to the positional parameters, starting from one. When the expansion is not within double quotes, each positional - parameter expands to a separate word. In contexts where these + parameter expands to a separate word. In contexts where word expansions are performed, those words are subject to further word splitting and filename expansion. When the expansion occurs within double quotes, it expands to a single word with the value of each - parameter separated by the first character of the ‘IFS’ special - variable. That is, ‘"$*"’ is equivalent to ‘"$1C$2C..."’, where C - is the first character of the value of the ‘IFS’ variable. If - ‘IFS’ is unset, the parameters are separated by spaces. If ‘IFS’ - is null, the parameters are joined without intervening separators. + parameter separated by the first character of the ‘IFS’ variable. + That is, ‘"$*"’ is equivalent to ‘"$1C$2C..."’, where C is the + first character of the value of the ‘IFS’ variable. If ‘IFS’ is + unset, the parameters are separated by spaces. If ‘IFS’ is null, + the parameters are joined without intervening separators. ‘@’ ($@) Expands to the positional parameters, starting from one. In contexts where word splitting is performed, this expands each positional parameter to a separate word; if not within double quotes, these words are subject to word splitting. In contexts - where word splitting is not performed, this expands to a single - word with each positional parameter separated by a space. When the - expansion occurs within double quotes, and word splitting is - performed, each parameter expands to a separate word. That is, - ‘"$@"’ is equivalent to ‘"$1" "$2" ...’. If the double-quoted - expansion occurs within a word, the expansion of the first - parameter is joined with the beginning part of the original word, - and the expansion of the last parameter is joined with the last - part of the original word. When there are no positional - parameters, ‘"$@"’ and ‘$@’ expand to nothing (i.e., they are - removed). + where word splitting is not performed, such as the value portion of + an assignment statement, this expands to a single word with each + positional parameter separated by a space. When the expansion + occurs within double quotes, and word splitting is performed, each + parameter expands to a separate word. That is, ‘"$@"’ is + equivalent to ‘"$1" "$2" ...’. If the double-quoted expansion + occurs within a word, the expansion of the first parameter is + joined with the expansion of the beginning part of the original + word, and the expansion of the last parameter is joined with the + expansion of the last part of the original word. When there are no + positional parameters, ‘"$@"’ and ‘$@’ expand to nothing (i.e., + they are removed). ‘#’ ($#) Expands to the number of positional parameters in decimal. @@ -1672,15 +1698,15 @@ File: bash.info, Node: Brace Expansion, Next: Tilde Expansion, Up: Shell Expa 3.5.1 Brace Expansion --------------------- -Brace expansion is a mechanism by which arbitrary strings may be -generated. This mechanism is similar to “filename expansion” (*note -Filename Expansion::), but the filenames generated need not exist. -Patterns to be brace expanded take the form of an optional PREAMBLE, -followed by either a series of comma-separated strings or a sequence -expression between a pair of braces, followed by an optional POSTSCRIPT. -The preamble is prefixed to each string contained within the braces, and -the postscript is then appended to each resulting string, expanding left -to right. +Brace expansion is a mechanism to generate arbitrary strings sharing a +common prefix and suffix, either of which can be empty. This mechanism +is similar to “filename expansion” (*note Filename Expansion::), but the +filenames generated need not exist. Patterns to be brace expanded are +formed from an optional PREAMBLE, followed by either a series of +comma-separated strings or a sequence expression between a pair of +braces, followed by an optional POSTSCRIPT. The preamble is prefixed to +each string contained within the braces, and the postscript is then +appended to each resulting string, expanding left to right. Brace expansions may be nested. The results of each expanded string are not sorted; left to right order is preserved. For example, @@ -1731,14 +1757,14 @@ is no unquoted slash) are considered a “tilde-prefix”. If none of the characters in the tilde-prefix are quoted, the characters in the tilde-prefix following the tilde are treated as a possible “login name”. If this login name is the null string, the tilde is replaced with the -value of the ‘HOME’ shell variable. If ‘HOME’ is unset, the home -directory of the user executing the shell is substituted instead. +value of the ‘HOME’ shell variable. If ‘HOME’ is unset, the tilde +expands to the home directory of the user executing the shell instead. Otherwise, the tilde-prefix is replaced with the home directory associated with the specified login name. If the tilde-prefix is ‘~+’, the value of the shell variable ‘PWD’ -replaces the tilde-prefix. If the tilde-prefix is ‘~-’, the value of -the shell variable ‘OLDPWD’, if it is set, is substituted. +replaces the tilde-prefix. If the tilde-prefix is ‘~-’, the shell +substitutes the value of the shell variable ‘OLDPWD’, if it is set. If the characters following the tilde in the tilde-prefix consist of a number N, optionally prefixed by a ‘+’ or a ‘-’, the tilde-prefix is @@ -1748,24 +1774,28 @@ following tilde in the tilde-prefix as an argument (*note The Directory Stack::). If the tilde-prefix, sans the tilde, consists of a number without a leading ‘+’ or ‘-’, ‘+’ is assumed. - If the login name is invalid, or the tilde expansion fails, the word -is left unchanged. + The results of tilde expansion are treated as if they were quoted, so +the replacement is not subject to word splitting and filename expansion. + + If the login name is invalid, or the tilde expansion fails, the +tilde-prefix is left unchanged. - Each variable assignment is checked for unquoted tilde-prefixes -immediately following a ‘:’ or the first ‘=’. In these cases, tilde -expansion is also performed. Consequently, one may use filenames with + Bash checks each variable assignment for unquoted tilde-prefixes +immediately following a ‘:’ or the first ‘=’, and performs tilde +expansion in these cases. Consequently, one may use filenames with tildes in assignments to ‘PATH’, ‘MAILPATH’, and ‘CDPATH’, and the shell assigns the expanded value. The following table shows how Bash treats unquoted tilde-prefixes: ‘~’ - The value of ‘$HOME’ + The value of ‘$HOME’. ‘~/foo’ ‘$HOME/foo’ ‘~fred/foo’ - The subdirectory ‘foo’ of the home directory of the user ‘fred’ + The directory or file ‘foo’ in the home directory of the user + ‘fred’. ‘~+/foo’ ‘$PWD/foo’ @@ -1774,13 +1804,13 @@ assigns the expanded value. ‘${OLDPWD-'~-'}/foo’ ‘~N’ - The string that would be displayed by ‘dirs +N’ + The string that would be displayed by ‘dirs +N’. ‘~+N’ - The string that would be displayed by ‘dirs +N’ + The string that would be displayed by ‘dirs +N’. ‘~-N’ - The string that would be displayed by ‘dirs -N’ + The string that would be displayed by ‘dirs -N’. Bash also performs tilde expansion on words satisfying the conditions of variable assignments (*note Shell Parameters::) when they appear as @@ -1797,32 +1827,36 @@ The ‘$’ character introduces parameter expansion, command substitution, or arithmetic expansion. The parameter name or symbol to be expanded may be enclosed in braces, which are optional but serve to protect the variable to be expanded from characters immediately following it which -could be interpreted as part of the name. +could be interpreted as part of the name. For example, if the first +positional parameter has the value ‘a’, then ‘${11}’ expands to the +value of the eleventh positional parameter, while ‘$11’ expands to ‘a1’. When braces are used, the matching ending brace is the first ‘}’ not escaped by a backslash or within a quoted string, and not within an embedded arithmetic expansion, command substitution, or parameter expansion. - The basic form of parameter expansion is ${PARAMETER}. The value of -PARAMETER is substituted. The PARAMETER is a shell parameter as -described above (*note Shell Parameters::) or an array reference (*note -Arrays::). The braces are required when PARAMETER is a positional -parameter with more than one digit, or when PARAMETER is followed by a -character that is not to be interpreted as part of its name. + The basic form of parameter expansion is ${PARAMETER}, which +substitutes the value of PARAMETER. The PARAMETER is a shell parameter +as described above (*note Shell Parameters::) or an array reference +(*note Arrays::). The braces are required when PARAMETER is a +positional parameter with more than one digit, or when PARAMETER is +followed by a character that is not to be interpreted as part of its +name. If the first character of PARAMETER is an exclamation point (!), and PARAMETER is not a nameref, it introduces a level of indirection. Bash uses the value formed by expanding the rest of PARAMETER as the new -PARAMETER; this is then expanded and that value is used in the rest of -the expansion, rather than the expansion of the original PARAMETER. -This is known as ‘indirect expansion’. The value is subject to tilde -expansion, parameter expansion, command substitution, and arithmetic -expansion. If PARAMETER is a nameref, this expands to the name of the -variable referenced by PARAMETER instead of performing the complete -indirect expansion. The exceptions to this are the expansions of -${!PREFIX*} and ${!NAME[@]} described below. The exclamation point must -immediately follow the left brace in order to introduce indirection. +PARAMETER; this new parameter is then expanded and that value is used in +the rest of the expansion, rather than the expansion of the original +PARAMETER. This is known as ‘indirect expansion’. The value is subject +to tilde expansion, parameter expansion, command substitution, and +arithmetic expansion. If PARAMETER is a nameref, this expands to the +name of the variable referenced by PARAMETER instead of performing the +complete indirect expansion, for compatibility. The exceptions to this +are the expansions of ${!PREFIX*} and ${!NAME[@]} described below. The +exclamation point must immediately follow the left brace in order to +introduce indirection. In each of the cases below, WORD is subject to tilde expansion, parameter expansion, command substitution, and arithmetic expansion. @@ -1847,15 +1881,21 @@ omitted, the operator tests only for existence. $ echo ${v-unset} unset $ v= + $ echo ${v-unset} + $ echo ${v:-unset-or-null} unset-or-null ‘${PARAMETER:=WORD}’ If PARAMETER is unset or null, the expansion of WORD is assigned to - PARAMETER. The value of PARAMETER is then substituted. Positional - parameters and special parameters may not be assigned to in this - way. + PARAMETER, and the result of the expansion is the final value of + PARAMETER. Positional parameters and special parameters may not be + assigned in this way. + $ unset var + $ : ${var=DEFAULT} + $ echo $var + DEFAULT $ var= $ : ${var:=DEFAULT} $ echo $var @@ -1864,8 +1904,10 @@ omitted, the operator tests only for existence. ‘${PARAMETER:?WORD}’ If PARAMETER is null or unset, the expansion of WORD (or a message to that effect if WORD is not present) is written to the standard - error and the shell, if it is not interactive, exits. Otherwise, - the value of PARAMETER is substituted. + error and the shell, if it is not interactive, exits with a + non-zero status. An interactive shell does not exit, but does not + execute the command associated with the expansion. Otherwise, the + value of PARAMETER is substituted. $ var= $ : ${var:?var is unset or null} @@ -1873,11 +1915,16 @@ omitted, the operator tests only for existence. ‘${PARAMETER:+WORD}’ If PARAMETER is null or unset, nothing is substituted, otherwise - the expansion of WORD is substituted. + the expansion of WORD is substituted. The value of PARAMETER is + not used. $ var=123 $ echo ${var:+var is set and not null} var is set and not null + $ var= + $ echo ${var:+var is set and not null} + + $ ‘${PARAMETER:OFFSET}’ ‘${PARAMETER:OFFSET:LENGTH}’ @@ -1896,9 +1943,10 @@ omitted, the operator tests only for existence. If LENGTH evaluates to a number less than zero, it is interpreted as an offset in characters from the end of the value of PARAMETER rather than a number of characters, and the expansion is the - characters between OFFSET and that result. Note that a negative - offset must be separated from the colon by at least one space to - avoid being confused with the ‘:-’ expansion. + characters between OFFSET and that result. + + Note that a negative offset must be separated from the colon by at + least one space to avoid being confused with the ‘:-’ expansion. Here are some examples illustrating substring expansion on parameters and subscripted arrays: @@ -2031,55 +2079,57 @@ omitted, the operator tests only for existence. appears within double quotes, each key expands to a separate word. ‘${#PARAMETER}’ - The length in characters of the expanded value of PARAMETER is - substituted. If PARAMETER is ‘*’ or ‘@’, the value substituted is - the number of positional parameters. If PARAMETER is an array name - subscripted by ‘*’ or ‘@’, the value substituted is the number of - elements in the array. If PARAMETER is an indexed array name - subscripted by a negative number, that number is interpreted as - relative to one greater than the maximum index of PARAMETER, so - negative indices count back from the end of the array, and an index - of -1 references the last element. + Substitutes the length in characters of the value of PARAMETER. If + PARAMETER is ‘*’ or ‘@’, the value substituted is the number of + positional parameters. If PARAMETER is an array name subscripted + by ‘*’ or ‘@’, the value substituted is the number of elements in + the array. If PARAMETER is an indexed array name subscripted by a + negative number, that number is interpreted as relative to one + greater than the maximum index of PARAMETER, so negative indices + count back from the end of the array, and an index of -1 references + the last element. ‘${PARAMETER#WORD}’ ‘${PARAMETER##WORD}’ - The WORD is expanded to produce a pattern and matched according to - the rules described below (*note Pattern Matching::). If the - pattern matches the beginning of the expanded value of PARAMETER, - then the result of the expansion is the expanded value of PARAMETER - with the shortest matching pattern (the ‘#’ case) or the longest - matching pattern (the ‘##’ case) deleted. If PARAMETER is ‘@’ or - ‘*’, the pattern removal operation is applied to each positional - parameter in turn, and the expansion is the resultant list. If - PARAMETER is an array variable subscripted with ‘@’ or ‘*’, the - pattern removal operation is applied to each member of the array in - turn, and the expansion is the resultant list. + The WORD is expanded to produce a pattern and matched against the + expanded value of PARAMETER according to the rules described below + (*note Pattern Matching::). If the pattern matches the beginning + of the expanded value of PARAMETER, then the result of the + expansion is the expanded value of PARAMETER with the shortest + matching pattern (the ‘#’ case) or the longest matching pattern + (the ‘##’ case) deleted. If PARAMETER is ‘@’ or ‘*’, the pattern + removal operation is applied to each positional parameter in turn, + and the expansion is the resultant list. If PARAMETER is an array + variable subscripted with ‘@’ or ‘*’, the pattern removal operation + is applied to each member of the array in turn, and the expansion + is the resultant list. ‘${PARAMETER%WORD}’ ‘${PARAMETER%%WORD}’ - The WORD is expanded to produce a pattern and matched according to - the rules described below (*note Pattern Matching::). If the - pattern matches a trailing portion of the expanded value of - PARAMETER, then the result of the expansion is the value of - PARAMETER with the shortest matching pattern (the ‘%’ case) or the - longest matching pattern (the ‘%%’ case) deleted. If PARAMETER is - ‘@’ or ‘*’, the pattern removal operation is applied to each - positional parameter in turn, and the expansion is the resultant - list. If PARAMETER is an array variable subscripted with ‘@’ or - ‘*’, the pattern removal operation is applied to each member of the - array in turn, and the expansion is the resultant list. + The WORD is expanded to produce a pattern and matched against the + expanded value of PARAMETER according to the rules described below + (*note Pattern Matching::). If the pattern matches a trailing + portion of the expanded value of PARAMETER, then the result of the + expansion is the value of PARAMETER with the shortest matching + pattern (the ‘%’ case) or the longest matching pattern (the ‘%%’ + case) deleted. If PARAMETER is ‘@’ or ‘*’, the pattern removal + operation is applied to each positional parameter in turn, and the + expansion is the resultant list. If PARAMETER is an array variable + subscripted with ‘@’ or ‘*’, the pattern removal operation is + applied to each member of the array in turn, and the expansion is + the resultant list. ‘${PARAMETER/PATTERN/STRING}’ ‘${PARAMETER//PATTERN/STRING}’ ‘${PARAMETER/#PATTERN/STRING}’ ‘${PARAMETER/%PATTERN/STRING}’ The PATTERN is expanded to produce a pattern just as in filename - expansion. PARAMETER is expanded and the longest match of PATTERN - against its value is replaced with STRING. STRING undergoes tilde - expansion, parameter and variable expansion, arithmetic expansion, - command and process substitution, and quote removal. The match is - performed according to the rules described below (*note Pattern - Matching::). + expansion and matched against the expanded value of PARAMETER + according to the rules described below (*note Pattern Matching::). + The longest match of PATTERN in the expanded value is replaced with + STRING. STRING undergoes tilde expansion, parameter and variable + expansion, arithmetic expansion, command and process substitution, + and quote removal. In the first form above, only the first match is replaced. If there are two slashes separating PARAMETER and PATTERN (the second @@ -2087,15 +2137,15 @@ omitted, the operator tests only for existence. PATTERN is preceded by ‘#’ (the third form above), it must match at the beginning of the expanded value of PARAMETER. If PATTERN is preceded by ‘%’ (the fourth form above), it must match at the end - of the expanded value of PARAMETER. If the expansion of STRING is - null, matches of PATTERN are deleted. If STRING is null, matches - of PATTERN are deleted and the ‘/’ following PATTERN may be - omitted. + of the expanded value of PARAMETER. + + If the expansion of STRING is null, matches of PATTERN are deleted + and the ‘/’ following PATTERN may be omitted. - If the ‘patsub_replacement’ shell option is enabled using ‘shopt’, - any unquoted instances of ‘&’ in STRING are replaced with the - matching portion of PATTERN. This is intended to duplicate a - common ‘sed’ idiom. + If the ‘patsub_replacement’ shell option is enabled using ‘shopt’ + (*note The Shopt Builtin::), any unquoted instances of ‘&’ in + STRING are replaced with the matching portion of PATTERN. This is + intended to duplicate a common ‘sed’ idiom. Quoting any part of STRING inhibits replacement in the expansion of the quoted portion, including replacement strings stored in shell @@ -2150,12 +2200,13 @@ omitted, the operator tests only for existence. If the ‘nocasematch’ shell option (see the description of ‘shopt’ in *note The Shopt Builtin::) is enabled, the match is performed - without regard to the case of alphabetic characters. If PARAMETER - is ‘@’ or ‘*’, the substitution operation is applied to each - positional parameter in turn, and the expansion is the resultant - list. If PARAMETER is an array variable subscripted with ‘@’ or - ‘*’, the substitution operation is applied to each member of the - array in turn, and the expansion is the resultant list. + without regard to the case of alphabetic characters. + + If PARAMETER is ‘@’ or ‘*’, the substitution operation is applied + to each positional parameter in turn, and the expansion is the + resultant list. If PARAMETER is an array variable subscripted with + ‘@’ or ‘*’, the substitution operation is applied to each member of + the array in turn, and the expansion is the resultant list. ‘${PARAMETER^PATTERN}’ ‘${PARAMETER^^PATTERN}’ @@ -2321,9 +2372,8 @@ File: bash.info, Node: Arithmetic Expansion, Next: Process Substitution, Prev 3.5.5 Arithmetic Expansion -------------------------- -Arithmetic expansion allows the evaluation of an arithmetic expression -and the substitution of the result. The format for arithmetic expansion -is: +Arithmetic expansion evalutes an arithmetic expression and substitutes +the result. The format for arithmetic expansion is: $(( EXPRESSION )) @@ -2336,8 +2386,9 @@ evaluated. Arithmetic expansions may be nested. The evaluation is performed according to the rules listed below (*note Shell Arithmetic::). If the expression is invalid, Bash prints a -message indicating failure to the standard error and no substitution -occurs. +message indicating failure to the standard error, does not perform the +substitution, and does not execute the command associated with the +expansion.  File: bash.info, Node: Process Substitution, Next: Word Splitting, Prev: Arithmetic Expansion, Up: Shell Expansions @@ -2352,14 +2403,16 @@ or >(LIST) The process LIST is run asynchronously, and its input or output appears as a filename. This filename is passed as an argument to the current -command as the result of the expansion. If the ‘>(LIST)’ form is used, -writing to the file will provide input for LIST. If the ‘<(LIST)’ form -is used, the file passed as an argument should be read to obtain the -output of LIST. Note that no space may appear between the ‘<’ or ‘>’ -and the left parenthesis, otherwise the construct would be interpreted -as a redirection. Process substitution is supported on systems that -support named pipes (FIFOs) or the ‘/dev/fd’ method of naming open -files. +command as the result of the expansion. + + If the ‘>(LIST)’ form is used, writing to the file will provide input +for LIST. If the ‘<(LIST)’ form is used, reading the file will obtain +the output of LIST. Note that no space may appear between the ‘<’ or +‘>’ and the left parenthesis, otherwise the construct would be +interpreted as a redirection. + + Process substitution is supported on systems that support named pipes +(FIFOs) or the ‘/dev/fd’ method of naming open files. When available, process substitution is performed simultaneously with parameter and variable expansion, command substitution, and arithmetic @@ -2382,14 +2435,14 @@ field terminators. If ‘IFS’ is unset, or its value is exactly ‘’, the default, then sequences of ‘space’, ‘tab’, and ‘newline’ at the beginning and end of the results of the previous expansions are ignored, -and any sequence of ‘IFS’ characters not at the beginning or end serves -to delimit words. If ‘IFS’ has a value other than the default, then -sequences of the whitespace characters ‘space’, ‘tab’, and ‘newline’ are -ignored at the beginning and end of the word, as long as the whitespace -character is in the value of ‘IFS’ (an ‘IFS’ whitespace character). Any -character in ‘IFS’ that is not ‘IFS’ whitespace, along with any adjacent -‘IFS’ whitespace characters, delimits a field. A sequence of ‘IFS’ -whitespace characters is also treated as a delimiter. +and any sequence of ‘IFS’ characters not at the beginning or end +delimits words. If ‘IFS’ has a value other than the default, then +sequences of the whitespace characters ‘space’, ‘tab’, and ‘newline’ +present the value of ‘IFS’ (an ‘IFS’ whitespace character) are ignored +at the beginning and end of the word. Any character in ‘IFS’ that is +not ‘IFS’ whitespace, along with any adjacent ‘IFS’ whitespace +characters, delimits a field. A sequence of ‘IFS’ whitespace characters +is also treated as a delimiter. If the value of ‘IFS’ is null, no word splitting occurs. If ‘IFS’ is unset, word splitting behaves as if it contained the default value @@ -2419,15 +2472,17 @@ File: bash.info, Node: Filename Expansion, Next: Quote Removal, Prev: Word Sp After word splitting, unless the ‘-f’ option has been set (*note The Set Builtin::), Bash scans each word for the characters ‘*’, ‘?’, and ‘[’. If one of these characters appears, and is not quoted, then the word is -regarded as a PATTERN, and replaced with an alphabetically sorted list -of filenames matching the pattern (*note Pattern Matching::). If no -matching filenames are found, and the shell option ‘nullglob’ is -disabled, the word is left unchanged. If the ‘nullglob’ option is set, -and no matches are found, the word is removed. If the ‘failglob’ shell -option is set, and no matches are found, an error message is printed and -the command is not executed. If the shell option ‘nocaseglob’ is -enabled, the match is performed without regard to the case of alphabetic -characters. +regarded as a PATTERN, and replaced with a sorted list of filenames +matching the pattern (*note Pattern Matching::), subject to the value of +the ‘GLOBSORT’ shell variable (*note Bash Variables::). + + If no matching filenames are found, and the shell option ‘nullglob’ +is disabled, the word is left unchanged. If the ‘nullglob’ option is +set, and no matches are found, the word is removed. If the ‘failglob’ +shell option is set, and no matches are found, Bash prints an error +message and does not execute the command. If the shell option +‘nocaseglob’ is enabled, the match is performed without regard to the +case of alphabetic characters. When a pattern is used for filename expansion, the character ‘.’ at the start of a filename or immediately following a slash must be matched @@ -2458,11 +2513,12 @@ non-null value has the effect of enabling the ‘dotglob’ shell option, so all other filenames beginning with a ‘.’ will match. To get the old behavior of ignoring filenames beginning with a ‘.’, make ‘.*’ one of the patterns in ‘GLOBIGNORE’. The ‘dotglob’ option is disabled when -‘GLOBIGNORE’ is unset. +‘GLOBIGNORE’ is unset. The ‘GLOBIGNORE’ pattern matching honors the +setting of the ‘extglob’ shell option. After the pattern is expanded and matched against filenames, the -value of the ‘GLOBSORT’ variable controls how the results are sorted, as -described below (*note Bash Variables::). +value of the ‘GLOBSORT’ shell variable controls how the results are +sorted, as described below (*note Bash Variables::).  File: bash.info, Node: Pattern Matching, Up: Filename Expansion @@ -2490,12 +2546,13 @@ characters must be quoted if they are to be matched literally. Matches any one of the enclosed characters. A pair of characters separated by a hyphen denotes a RANGE EXPRESSION; any character that falls between those two characters, inclusive, using the - current locale's collating sequence and character set, is matched. - If the first character following the ‘[’ is a ‘!’ or a ‘^’ then any - character not enclosed is matched. A ‘−’ may be matched by - including it as the first or last character in the set. A ‘]’ may - be matched by including it as the first character in the set. The - sorting order of characters in range expressions, and the + current locale's collating sequence and character set, matches. If + the first character following the ‘[’ is a ‘!’ or a ‘^’ then any + character not within the range matches. To match a ‘−’, include it + as the first or last character in the set. To match a ‘]’, include + it as the first character in the set. + + The sorting order of characters in range expressions, and the characters included in the range, are determined by the current locale and the values of the ‘LC_COLLATE’ and ‘LC_ALL’ shell variables, if set. @@ -2561,7 +2618,9 @@ filenames includes all files beginning with ‘.’, but the filenames ‘.’ 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. +If the ‘globskipdots’ shell option is enabled, the filenames ‘.’ and +‘..’ never appear in the set. As above, ‘.’ only has a special meaning +when matching filenames. Complicated extended pattern matching against long strings is slow, especially when the patterns contain alternations and the strings @@ -2589,21 +2648,22 @@ Before a command is executed, its input and output may be “redirected” using a special notation interpreted by the shell. “Redirection” 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 -operators may precede or appear anywhere within a simple command or may -follow a command. Redirections are processed in the order they appear, -from left to right. +writes to. When used with the ‘exec’ builtin, redirections modify file +handles in the current shell execution environment. The following +redirection operators may precede or appear anywhere within a simple +command or may follow a command. Redirections are processed in the +order they appear, from left to right. Each redirection that may be preceded by a file descriptor number may instead be preceded by a word of the form {VARNAME}. In this case, for each redirection operator except >&- and <&-, the shell will allocate a -file descriptor greater than 10 and assign it to {VARNAME}. If >&- or -<&- is preceded by {VARNAME}, the value of VARNAME defines the file +file descriptor greater than 10 and assign it to {VARNAME}. If +{VARNAME} precedes >&- or <&-, the value of VARNAME defines the file descriptor to close. If {VARNAME} is supplied, the redirection persists -beyond the scope of the command, allowing the shell programmer to manage -the file descriptor's lifetime manually. The ‘varredir_close’ shell -option manages this behavior (*note The Shopt Builtin::). +beyond the scope of the command, which allows the shell programmer to +manage the file descriptor's lifetime manually without using the ‘exec’ +builtin. The ‘varredir_close’ shell option manages this behavior (*note +The Shopt Builtin::). In the following descriptions, if the file descriptor number is omitted, and the first character of the redirection operator is ‘<’, the @@ -2611,14 +2671,13 @@ redirection refers to the standard input (file descriptor 0). If the first character of the redirection operator is ‘>’, the redirection refers to the standard output (file descriptor 1). - The word following the redirection operator in the following + The \fIword\fP following the redirection operator in the following descriptions, unless otherwise noted, is subjected to brace expansion, -tilde expansion, parameter expansion, command substitution, arithmetic -expansion, quote removal, filename expansion, and word splitting. If it -expands to more than one word, Bash reports an error. +tilde expansion, parameter and variable expansion, command substitution, +arithmetic expansion, quote removal, filename expansion, and word +splitting. If it expands to more than one word, Bash reports an error. - Note that the order of redirections is significant. For example, the -command + The order of redirections is significant. For example, the command ls > DIRLIST 2>&1 directs both standard output (file descriptor 1) and standard error (file descriptor 2) to the file DIRLIST, while the command @@ -2634,7 +2693,7 @@ use them; otherwise it will emulate them internally with the behavior described below. ‘/dev/fd/FD’ - If FD is a valid integer, file descriptor FD is duplicated. + If FD is a valid integer, duplicate file descriptor FD. ‘/dev/stdin’ File descriptor 0 is duplicated. @@ -2664,9 +2723,9 @@ internally. 3.6.1 Redirecting Input ----------------------- -Redirection of input causes the file whose name results from the -expansion of WORD to be opened for reading on file descriptor ‘n’, or -the standard input (file descriptor 0) if ‘n’ is not specified. +Redirecting input opens the file whose name results from the expansion +of WORD for reading on file descriptor ‘n’, or the standard input (file +descriptor 0) if ‘n’ is not specified. The general format for redirecting input is: [N][|]WORD @@ -2687,16 +2745,16 @@ size. ‘set’ builtin has been enabled, the redirection will fail if the file whose name results from the expansion of WORD exists and is a regular file. If the redirection operator is ‘>|’, or the redirection operator -is ‘>’ and the ‘noclobber’ option is not enabled, the redirection is -attempted even if the file named by WORD exists. +is ‘>’ and the ‘noclobber’ option is not enabled, Bash attemps the +redirection even if the file named by WORD exists. 3.6.3 Appending Redirected Output --------------------------------- -Redirection of output in this fashion causes the file whose name results -from the expansion of WORD to be opened for appending on file descriptor -N, or the standard output (file descriptor 1) if N is not specified. If -the file does not exist it is created. +Redirecting output in this fashion opens the file whose name results +from the expansion of WORD for appending on file descriptor N, or the +standard output (file descriptor 1) if N is not specified. If the file +does not exist it is created. The general format for appending output is: [N]>>WORD @@ -2704,9 +2762,9 @@ the file does not exist it is created. 3.6.4 Redirecting Standard Output and Standard Error ---------------------------------------------------- -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 WORD. +This construct redirects both the standard output (file descriptor 1) +and the standard error output (file descriptor 2) to the file whose name +is the expansion of WORD. There are two formats for redirecting standard output and standard error: @@ -2723,9 +2781,9 @@ Descriptors below) for compatibility reasons. 3.6.5 Appending Standard Output and Standard Error -------------------------------------------------- -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 WORD. +This construct appends both the standard output (file descriptor 1) and +the standard error output (file descriptor 2) to the file whose name is +the expansion of WORD. The format for appending standard output and standard error is: &>>WORD @@ -2738,8 +2796,8 @@ This is semantically equivalent to This type of redirection instructs the shell to read input from the current source until it reads a line containing only DELIMITER (with no -trailing blanks). All of the lines read up to that point are then used -as the standard input (or file descriptor N if N is specified) for a +trailing blanks). All of the lines read up to that point then become +the standard input (or file descriptor N if N is specified) for a command. The format of here-documents is: @@ -2747,21 +2805,29 @@ command. HERE-DOCUMENT DELIMITER - No parameter and variable expansion, command substitution, arithmetic -expansion, or filename expansion is performed on WORD. + The shell does not perform parameter and variable expansion, command +substitution, arithmetic expansion, or filename expansion on WORD. If any part of WORD is quoted, the DELIMITER is the result of quote removal on WORD, and the lines in the here-document are not expanded. -If WORD is unquoted, DELIMITER is WORD itself, all lines of the +If WORD is unquoted, DELIMITER is WORD itself, and the here-document +text is treated similarly to a double-quoted string: all lines of the here-document are subjected to parameter expansion, command substitution, and arithmetic expansion, the character sequence -‘\newline’ is ignored, and ‘\’ must be used to quote the characters ‘\’, -‘$’, and ‘`’. +‘\newline’ is treated literally, and ‘\’ must be used to quote the +characters ‘\’, ‘$’, and ‘`’; however, double quote characters have no +special meaning. + + If the redirection operator is ‘<<-’, the shell strips leading tab +characters are stripped from input lines and the line containing +DELIMITER. This allows here-documents within shell scripts to be +indented in a natural fashion. - If the redirection operator is ‘<<-’, then all leading tab characters -are stripped from input lines and the line containing DELIMITER. This -allows here-documents within shell scripts to be indented in a natural -fashion. + If the delimiter is not quoted, the ‘\’ sequence is treated +as a line continuation: the two lines are joined and the +backslash-newline is removed. This happens while reading the +here-document, before the check for the ending delimiter, so joined +lines can form the end delimiter. 3.6.7 Here Strings ------------------ @@ -2781,21 +2847,21 @@ standard input (or file descriptor N if N is specified). The redirection operator [N]<&WORD is used to duplicate input file descriptors. If WORD expands to one or -more digits, the file descriptor denoted by N is made to be a copy of -that file descriptor. If the digits in WORD do not specify a file -descriptor open for input, a redirection error occurs. If WORD -evaluates to ‘-’, file descriptor N is closed. If N is not specified, -the standard input (file descriptor 0) is used. +more digits, file descriptor N is made to be a copy of that file +descriptor. It is a redirection error if the digits in WORD do not +specify a file descriptor open for input. If WORD evaluates to ‘-’, +file descriptor N is closed. If N is not specified, this uses the +standard input (file descriptor 0). The operator [N]>&WORD is used similarly to duplicate output file descriptors. If N is not -specified, the standard output (file descriptor 1) is used. If the -digits in WORD do not specify a file descriptor open for output, a -redirection error occurs. If WORD evaluates to ‘-’, file descriptor N -is closed. As a special case, if N is omitted, and WORD does not expand -to one or more digits or ‘-’, the standard output and standard error are -redirected as described previously. +specified, this uses the standard output (file descriptor 1). It is a +redirection error if the digits in WORD do not specify a file descriptor +open for output. If WORD evaluates to ‘-’, file descriptor N is closed. +As a special case, if N is omitted, and WORD does not expand to one or +more digits or ‘-’, this redirects the standard output and standard +error as described previously. 3.6.9 Moving File Descriptors ----------------------------- @@ -2816,9 +2882,9 @@ output (file descriptor 1) if N is not specified. The redirection operator [N]<>WORD -causes the file whose name is the expansion of WORD to be opened for -both reading and writing on file descriptor N, or on file descriptor 0 -if N is not specified. If the file does not exist, it is created. +opens the file whose name is the expansion of WORD for both reading and +writing on file descriptor N, or on file descriptor 0 if N is not +specified. If the file does not exist, it is created.  File: bash.info, Node: Executing Commands, Next: Shell Scripts, Prev: Redirections, Up: Basic Shell Features @@ -2846,7 +2912,7 @@ File: bash.info, Node: Simple Command Expansion, Next: Command Search and Exec 3.7.1 Simple Command Expansion ------------------------------ -When a simple command is executed, the shell performs the following +When the shell executes a simple command, it performs the following expansions, assignments, and redirections, from left to right, in the following order. @@ -2883,8 +2949,8 @@ command to exit with a non-zero status. as described below. Otherwise, the command exits. If one of the expansions 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. +If there were no command substitutions, the command exits with a zero +status.  File: bash.info, Node: Command Search and Execution, Next: Command Execution Environment, Prev: Simple Command Expansion, Up: Executing Commands @@ -2909,8 +2975,8 @@ following actions. containing an executable file by that name. Bash uses a hash table to remember the full pathnames of executable files to avoid multiple ‘PATH’ searches (see the description of ‘hash’ in *note - Bourne Shell Builtins::). A full search of the directories in - ‘$PATH’ is performed only if the command is not found in the hash + Bourne Shell Builtins::). Bash performs a full search of the + directories in ‘$PATH’ 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 ‘command_not_found_handle’. If that function exists, it is invoked in a separate execution environment @@ -2927,8 +2993,8 @@ following actions. 5. 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 - “shell script” and the shell executes it as described in *note - Shell Scripts::. + “shell script”, a file containing shell commands, and the shell + executes it as described in *note Shell Scripts::. 6. If the command was not begun asynchronously, the shell waits for the command to complete and collects its exit status. @@ -2997,9 +3063,11 @@ shell's execution environment. asynchronous commands are invoked in a subshell environment that is a duplicate of the shell environment, except that traps caught by the shell are reset to the values that the shell inherited from its parent -at invocation. Builtin commands that are invoked as part of a pipeline -are also executed in a subshell environment. Changes made to the -subshell environment cannot affect the shell's execution environment. +at invocation. Builtin commands that are invoked as part of a pipeline, +except possibly in the last element depending on the value of the +‘lastpipe’ shell option (*note The Shopt Builtin::), are also executed +in a subshell environment. Changes made to the subshell environment +cannot affect the shell's execution environment. When the shell is in POSIX mode, subshells spawned to execute command substitutions inherit the value of the ‘-e’ option from the parent @@ -3026,20 +3094,23 @@ When a program is invoked it is given an array of strings called the Bash provides several ways to manipulate the environment. On invocation, the shell scans its own environment and creates a parameter for each name found, automatically marking it for ‘export’ to child -processes. Executed commands inherit the environment. The ‘export’ and -‘declare -x’ commands allow parameters and functions to be added to and -deleted from the environment. If the value of a parameter in the -environment is modified, the new value becomes part of the environment, -replacing the old. The environment inherited by any executed command -consists of the shell's initial environment, whose values may be -modified in the shell, less any pairs removed by the ‘unset’ and ‘export --n’ commands, plus any additions via the ‘export’ and ‘declare -x’ -commands. - - The environment for any simple command or function may be augmented -temporarily by prefixing it with parameter assignments, as described in -*note Shell Parameters::. These assignment statements affect only the -environment seen by that command. +processes. Executed commands inherit the environment. The ‘export’, +‘declare -x’, and ‘unset’ commands modify the environment by adding and +deleting parameters and functions. If the value of a parameter in the +environment is modified, the new value automatically becomes part of the +environment, replacing the old. The environment inherited by any +executed command consists of the shell's initial environment, whose +values may be modified in the shell, less any pairs removed by the +‘unset’ and ‘export -n’ commands, plus any additions via the ‘export’ +and ‘declare -x’ commands. + + If any parameter assignment statements, as described in *note Shell +Parameters::, appear before a simple command, the variable assignments +are part of that command's environment for as long as it executes. +These assignment statements affect only the environment seen by that +command. If these assignments precede a call to a shell function, the +variables are local to the function and exported to that function's +children. If the ‘-k’ option is set (*note The Set Builtin::), then all parameter assignments are placed in the environment for a command, not @@ -3063,11 +3134,14 @@ 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. A non-zero exit status indicates failure. This -seemingly counter-intuitive scheme is used so there is one well-defined -way to indicate success and a variety of ways to indicate various -failure modes. When a command terminates on a fatal signal whose number -is N, Bash uses the value 128+N as the exit status. +status has succeeded. So while an exit status of zero indicates +success, a non-zero exit status indicates failure. This seemingly +counter-intuitive scheme is used so there is one well-defined way to +indicate success and a variety of ways to indicate various failure +modes. + + When a command terminates on a fatal signal whose number is N, Bash +uses the value 128+N as the exit status. If a command is not found, the child process created to execute it returns a status of 127. If a command is found but is not executable, @@ -3089,6 +3163,11 @@ arguments. The exit status of the last command is available in the special parameter $? (*note Special Parameters::). + Bash itself returns the exit status of the last command executed, +unless a syntax error occurs, in which case it exits with a non-zero +value. See also the ‘exit’ builtin command (*note Bourne Shell +Builtins::. +  File: bash.info, Node: Signals, Prev: Exit Status, Up: Executing Commands @@ -3097,37 +3176,42 @@ File: bash.info, Node: Signals, Prev: Exit Status, Up: Executing Commands When Bash is interactive, in the absence of any traps, it ignores ‘SIGTERM’ (so that ‘kill 0’ does not kill an interactive shell), and -‘SIGINT’ is caught and handled (so that the ‘wait’ builtin is +catches and handles ‘SIGINT’ (so that the ‘wait’ builtin is interruptible). When Bash receives a ‘SIGINT’, it breaks out of any executing loops. In all cases, Bash ignores ‘SIGQUIT’. If job control is in effect (*note Job Control::), Bash ignores ‘SIGTTIN’, ‘SIGTTOU’, and ‘SIGTSTP’. - Non-builtin commands started by Bash have signal handlers set to the -values inherited by the shell from its parent. When job control is not -in effect, asynchronous commands ignore ‘SIGINT’ and ‘SIGQUIT’ in -addition to these inherited handlers. Commands run as a result of -command substitution ignore the keyboard-generated job control signals -‘SIGTTIN’, ‘SIGTTOU’, and ‘SIGTSTP’. + The ‘trap’ builtin modifies the shell's signal handling, as described +below (*note Bourne Shell Builtins::. + + Non-builtin commands Bash executes have signal handlers set to the +values inherited by the shell from its parent, unless ‘trap’ sets them +to be ignored, in which case the child process will ignore them as well. +When job control is not in effect, asynchronous commands ignore ‘SIGINT’ +and ‘SIGQUIT’ in addition to these inherited handlers. Commands run as +a result of command substitution ignore the keyboard-generated job +control signals ‘SIGTTIN’, ‘SIGTTOU’, and ‘SIGTSTP’. The shell exits by default upon receipt of a ‘SIGHUP’. Before exiting, an interactive shell resends the ‘SIGHUP’ to all jobs, running -or stopped. Stopped jobs are sent ‘SIGCONT’ to ensure that they receive -the ‘SIGHUP’. To prevent the shell from sending the ‘SIGHUP’ signal to -a particular job, it should be removed from the jobs table with the -‘disown’ builtin (*note Job Control Builtins::) or marked to not receive -‘SIGHUP’ using ‘disown -h’. - - If the ‘huponexit’ shell option has been set with ‘shopt’ (*note The +or stopped. The shell sends ‘SIGCONT’ to stopped jobs to ensure that +they receive the ‘SIGHUP’ (*Note Job Control::, for more information +about running and stopped jobs). To prevent the shell from sending the +‘SIGHUP’ signal to a particular job, remove it from the jobs table with +the ‘disown’ builtin (*note Job Control Builtins::) or mark it not to +receive ‘SIGHUP’ using ‘disown -h’. + + If the ‘huponexit’ shell option has been set using ‘shopt’ (*note The Shopt Builtin::), Bash sends a ‘SIGHUP’ to all jobs when an interactive login shell exits. If Bash 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 -command completes. When Bash is waiting for an asynchronous command via -the ‘wait’ builtin, the reception of a signal for which a trap has been -set will cause the ‘wait’ builtin to return immediately with an exit -status greater than 128, immediately after which the trap is executed. +command completes. If Bash is waiting for an asynchronous command via +the ‘wait’ builtin, and it receives a signal for which a trap has been +set, the ‘wait’ builtin will return immediately with an exit status +greater than 128, immediately after which the shell executes the trap. When job control is not enabled, and Bash is waiting for a foreground command to complete, the shell receives keyboard-generated signals such @@ -3166,9 +3250,13 @@ A shell script is a text file containing shell commands. When such a file is used as the first non-option argument when invoking Bash, and neither the ‘-c’ nor ‘-s’ option is supplied (*note Invoking Bash::), Bash reads and executes commands from the file, then exits. This mode -of operation creates a non-interactive shell. The shell first searches -for the file in the current directory, and looks in the directories in -‘$PATH’ if not found there. +of operation creates a non-interactive shell. If the filename does not +contain any slashes, the shell first searches for the file in the +current directory, and looks in the directories in ‘$PATH’ if not found +there. + + Bash tries to determine whether the file is a text file or a binary, +and will not execute files it determines to be binaries. When Bash runs a shell script, it sets the special parameter ‘0’ to the name of the file, rather than the name of the shell, and the @@ -3190,13 +3278,13 @@ invoked to interpret the script, with the exception that the locations of commands remembered by the parent (see the description of ‘hash’ in *note Bourne Shell Builtins::) are retained by the child. - Most versions of Unix make this a part of the operating system's -command execution mechanism. If the first line of a script begins with -the two characters ‘#!’, the remainder of the line specifies an -interpreter for the program and, depending on the operating system, one -or more optional arguments for that interpreter. Thus, you can specify -Bash, ‘awk’, Perl, or some other interpreter and write the rest of the -script file in that language. + The GNU operating system, and most versions of Unix, make this a part +of the operating system's command execution mechanism. If the first +line of a script begins with the two characters ‘#!’, the remainder of +the line specifies an interpreter for the program and, depending on the +operating system, one or more optional arguments for that interpreter. +Thus, you can specify Bash, ‘awk’, Perl, or some other interpreter and +write the rest of the script file in that language. The arguments to the interpreter consist of one or more optional arguments following the interpreter name on the first line of the script @@ -3281,44 +3369,52 @@ standard. ‘. (a period)’ . [-p PATH] FILENAME [ARGUMENTS] - Read and execute commands from the FILENAME argument in the current - shell context. If FILENAME does not contain a slash, ‘.’ searches - for it. If ‘-p’ is supplied, ‘.’ treats PATH as a colon-separated - list of directories in which to find FILENAME; otherwise, ‘.’ uses - the directories in ‘PATH’ to find FILENAME. FILENAME does not need - to be executable. When Bash is not in POSIX mode, it searches the + The ‘.’ command reads and execute commands from the FILENAME + argument in the current shell context. + + If FILENAME does not contain a slash, ‘.’ searches for it. If ‘-p’ + is supplied, ‘.’ treats PATH as a colon-separated list of + directories in which to find FILENAME; otherwise, ‘.’ uses the + directories in ‘PATH’ to find FILENAME. FILENAME does not need to + be executable. When Bash is not in POSIX mode, it searches the current directory if FILENAME is not found in ‘$PATH’, but does not search the current directory if ‘-p’ is supplied. If the - ‘sourcepath’ option (*note The Shopt Builtin::) is turned off ‘.’ - does not search ‘PATH’. If any ARGUMENTS are supplied, they become - the positional parameters when FILENAME is executed. Otherwise the - positional parameters are unchanged. If the ‘-T’ option is - enabled, ‘.’ inherits any trap on ‘DEBUG’; if it is not, any - ‘DEBUG’ trap string is saved and restored around the call to ‘.’, - and ‘.’ unsets the ‘DEBUG’ trap while it executes. If ‘-T’ is not - set, and the sourced file changes the ‘DEBUG’ trap, the new value - is retained when ‘.’ completes. The return status is the exit - status of the last command executed, or zero if no commands are - executed. If FILENAME is not found, or cannot be read, the return - status is non-zero. This builtin is equivalent to ‘source’. + ‘sourcepath’ option (*note The Shopt Builtin::) is turned off, ‘.’ + does not search ‘PATH’. + + If any ARGUMENTS are supplied, they become the positional + parameters when FILENAME is executed. Otherwise the positional + parameters are unchanged. + + If the ‘-T’ option is enabled, ‘.’ inherits any trap on ‘DEBUG’; if + it is not, any ‘DEBUG’ trap string is saved and restored around the + call to ‘.’, and ‘.’ unsets the ‘DEBUG’ trap while it executes. If + ‘-T’ is not set, and the sourced file changes the ‘DEBUG’ trap, the + new value persists after ‘.’ completes. The return status is the + exit status of the last command executed from FILENAME, or zero if + no commands are executed. If FILENAME is not found, or cannot be + read, the return status is non-zero. This builtin is equivalent to + ‘source’. ‘break’ break [N] Exit from a ‘for’, ‘while’, ‘until’, or ‘select’ loop. If N is - supplied, the Nth enclosing loop is exited. N must be greater than - or equal to 1. The return status is zero unless N is not greater - than or equal to 1. + supplied, ‘break’ exits the Nth enclosing loop. N must be greater + than or equal to 1. The return status is zero unless N is not + greater than or equal to 1. ‘cd’ cd [-L|[-P [-e]]] [-@] [DIRECTORY] Change the current working directory to DIRECTORY. If DIRECTORY is - not supplied, the value of the ‘HOME’ shell variable is used. If - the shell variable ‘CDPATH’ exists, ‘cd’ uses it as a search path: - ‘cd’ searches each directory name in ‘CDPATH’ for DIRECTORY, with - alternative directory names in ‘CDPATH’ separated by a colon (‘:’). - If DIRECTORY begins with a slash, ‘CDPATH’ is not used. + not supplied, the value of the ‘HOME’ shell variable is used as + DIRECTORY. If the shell variable ‘CDPATH’ exists, ‘cd’ uses it as + a search path: ‘cd’ searches each directory name in ‘CDPATH’ for + DIRECTORY, with alternative directory names in ‘CDPATH’ separated + by a colon (‘:’). A null directory name in ‘CDPATH’ means the same + thing as the current directory. If DIRECTORY begins with a slash, + ‘CDPATH’ is not used. The ‘-P’ option means to not follow symbolic links: symbolic links are resolved while ‘cd’ is traversing DIRECTORY and before @@ -3334,17 +3430,17 @@ standard. If the ‘-e’ option is supplied with ‘-P’ and the current working directory cannot be successfully determined after a successful - directory change, ‘cd’ will return an unsuccessful status. + directory change, ‘cd’ will return a non-zero status. On systems that support it, the ‘-@’ option presents the extended attributes associated with a file as a directory. - If DIRECTORY is ‘-’, it is converted to ‘$OLDPWD’ before the - directory change is attempted. + If DIRECTORY is ‘-’, it is converted to ‘$OLDPWD’ before attempting + the directory change. - If a non-empty directory name from ‘CDPATH’ is used, or if ‘-’ is - the first argument, and the directory change is successful, the - absolute pathname of the new working directory is written to the + If ‘cd’ uses a non-empty directory name from ‘CDPATH’, or if ‘-’ is + the first argument, and the directory change is successful, ‘cd’ + writes the absolute pathname of the new working directory to the standard output. If the directory change is successful, ‘cd’ sets the value of the @@ -3358,37 +3454,41 @@ standard. ‘continue’ continue [N] - Resume the next iteration of an enclosing ‘for’, ‘while’, ‘until’, - or ‘select’ loop. If N is supplied, the execution of the Nth - enclosing loop is resumed. N must be greater than or equal to 1. - The return status is zero unless N is not greater than or equal to - 1. + ‘continue’ resumes the next iteration of an enclosing ‘for’, + ‘while’, ‘until’, or ‘select’ loop. If N is supplied, Bash resumes + the execution of the Nth enclosing loop. N must be greater than or + equal to 1. The return status is zero unless N is not greater than + or equal to 1. ‘eval’ eval [ARGUMENTS] - The arguments are concatenated together into a single command, - which is then read and executed, and its exit status returned as - the exit status of ‘eval’. If there are no arguments or only empty - arguments, the return status is zero. + The ARGUMENTS are concatenated together into a single command, + separated by spaces. Bash then reads and executes this command and + returns its exit status as the exit status of ‘eval’. If there are + no arguments or only empty arguments, the return status is zero. ‘exec’ exec [-cl] [-a NAME] [COMMAND [ARGUMENTS]] If COMMAND is supplied, it replaces the shell without creating a - new process. If the ‘-l’ option is supplied, the shell places a - dash at the beginning of the zeroth argument passed to COMMAND. - This is what the ‘login’ program does. The ‘-c’ option causes - COMMAND to be executed with an empty environment. If ‘-a’ is - supplied, the shell passes NAME as the zeroth argument to COMMAND. + new process. COMMAND cannot be a shell builtin or function. The + ARGUMENTS become the arguments to COMMAND If the ‘-l’ option is + supplied, the shell places a dash at the beginning of the zeroth + argument passed to COMMAND. This is what the ‘login’ program does. + The ‘-c’ option causes COMMAND to be executed with an empty + environment. If ‘-a’ is supplied, the shell passes NAME as the + zeroth argument to COMMAND. + If COMMAND cannot be executed for some reason, a non-interactive shell exits, unless the ‘execfail’ 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 ‘exec’ fails. If no COMMAND is specified, - redirections may be used to affect the current shell environment. - If there are no redirection errors, the return status is zero; - otherwise the return status is non-zero. + that case, it returns a non-zero status. An interactive shell + returns a non-zero status if the file cannot be executed. A + subshell exits unconditionally if ‘exec’ fails. + + If COMMAND is not specified, redirections may be used to affect the + current shell environment. If there are no redirection errors, the + return status is zero; otherwise the return status is non-zero. ‘exit’ exit [N] @@ -3400,14 +3500,20 @@ standard. ‘export’ export [-fn] [-p] [NAME[=VALUE]] - Mark each NAME to be passed to child processes in the environment. - If the ‘-f’ option is supplied, the NAMEs refer to shell functions; - otherwise the names refer to shell variables. The ‘-n’ option - means to no longer mark each NAME for export. If no NAMEs are - supplied, or if the ‘-p’ option is given, a list of names of all - exported variables is displayed. The ‘-p’ option displays output - in a form that may be reused as input. If a variable name is - followed by =VALUE, the value of the variable is set to VALUE. + Mark each NAME to be passed to subsequently executed commands in + the environment. If the ‘-f’ option is supplied, the NAMEs refer + to shell functions; otherwise the names refer to shell variables. + + The ‘-n’ option means to unexport each name: no longer mark it for + export. If no NAMEs are supplied, or if the ‘-p’ option is given, + ‘export’ displays a list of names of all exported variables on the + standard output. The ‘-p’ option displays output in a form that + may be reused as input. + + ‘export’ allows the value of a variable to be set at the same time + it is exported or unexported by following the variable name with + =VALUE. This sets the value of the variable is to VALUE while + modifying the export attribute. The return status is zero unless an invalid option is supplied, one of the names is not a valid shell variable name, or ‘-f’ is @@ -3416,40 +3522,43 @@ standard. ‘false’ false - Does nothing, returns a non-zero status. + Does nothing; returns a non-zero status. ‘getopts’ getopts OPTSTRING NAME [ARG ...] - ‘getopts’ is used by shell scripts to parse positional parameters. - OPTSTRING contains the option characters to be recognized; if a - character is followed by a colon, the option is expected to have an - argument, which should be separated from it by whitespace. The - colon (‘:’) and question mark (‘?’) may not be used as option - characters. Each time it is invoked, ‘getopts’ places the next - option in the shell variable NAME, initializing NAME if it does not - exist, and the index of the next argument to be processed into the - variable ‘OPTIND’. ‘OPTIND’ is initialized to 1 each time the - shell or a shell script is invoked. When an option requires an - argument, ‘getopts’ places that argument into the variable - ‘OPTARG’. The shell does not reset ‘OPTIND’ automatically; it must - be manually reset between multiple calls to ‘getopts’ within the - same shell invocation if a new set of parameters is to be used. - - When the end of options is encountered, ‘getopts’ exits with a - return value greater than zero. ‘OPTIND’ is set to the index of - the first non-option argument, and NAME is set to ‘?’. + ‘getopts’ is used by shell scripts or functions to parse positional + parameters and obtain options and their arguments. OPTSTRING + contains the option characters to be recognized; if a character is + followed by a colon, the option is expected to have an argument, + which should be separated from it by whitespace. The colon (‘:’) + and question mark (‘?’) may not be used as option characters. + + Each time it is invoked, ‘getopts’ places the next option in the + shell variable NAME, initializing NAME if it does not exist, and + the index of the next argument to be processed into the variable + ‘OPTIND’. ‘OPTIND’ is initialized to 1 each time the shell or a + shell script is invoked. When an option requires an argument, + ‘getopts’ places that argument into the variable ‘OPTARG’. + + The shell does not reset ‘OPTIND’ automatically; it must be + manually reset between multiple calls to ‘getopts’ within the same + shell invocation to use a new set of parameters. + + When it reaches the end of options, ‘getopts’ exits with a return + value greater than zero. ‘OPTIND’ is set to the index of the first + non-option argument, and NAME is set to ‘?’. ‘getopts’ normally parses the positional parameters, but if more arguments are supplied as ARG values, ‘getopts’ parses those instead. ‘getopts’ can report errors in two ways. If the first character of - OPTSTRING is a colon, SILENT error reporting is used. In normal - operation, diagnostic messages are printed when invalid options or - missing option arguments are encountered. If the variable ‘OPTERR’ - is set to 0, no error messages will be displayed, even if the first - character of ‘optstring’ is not a colon. + OPTSTRING is a colon, ‘getopts’ uses SILENT error reporting. In + normal operation, ‘getopts’ prints diagnostic messages when it + encounters invalid options or missing option arguments. If the + variable ‘OPTERR’ is set to 0, no error messages will be displayed, + even if the first character of ‘optstring’ is not a colon. If ‘getopts’ detects an invalid option, it places ‘?’ into NAME and, if not silent, prints an error message and unsets ‘OPTARG’. @@ -3462,6 +3571,10 @@ standard. it sets the value of NAME to a colon (‘:’), and sets ‘OPTARG’ to the option character found. + ‘getopts’ returns true if an option, specified or unspecified, is + found. It returns false when it encounters the end of options or + if an error occurs. + ‘hash’ hash [-r] [-p FILENAME] [-dt] [NAME] @@ -3469,70 +3582,89 @@ standard. commands specified as NAME arguments, so they need not be searched for on subsequent invocations. The commands are found by searching through the directories listed in ‘$PATH’. Any - previously-remembered filename is discarded. The ‘-p’ option - inhibits the path search, and FILENAME is used as the location of - NAME. The ‘-r’ option causes the shell to forget all remembered + previously-remembered filename associated with NAME is discarded. + The ‘-p’ option inhibits the path search, and ‘hash’ uses FILENAME + as the location of NAME. + + The ‘-r’ option causes the shell to forget all remembered locations. Assigning to the ‘PATH’ variable also clears all hashed filenames. The ‘-d’ option causes the shell to forget the - remembered location of each NAME. If the ‘-t’ option is supplied, - the full pathname to which each NAME corresponds is printed. If - multiple NAME arguments are supplied with ‘-t’, the NAME is printed - before the hashed full pathname. The ‘-l’ option causes output to - be displayed in a format that may be reused as input. If no - arguments are given, or if only ‘-l’ is supplied, information about - remembered commands is printed. The ‘-t’, ‘-d’, and ‘-p’ options - (the options that act on the NAME arguments) are mutually - exclusive. Only one will be active. If more than one is supplied, - ‘-t’ has higher priority than ‘-p’, and both are higher priority - than ‘-d’. The return status is zero unless a NAME is not found or - an invalid option is supplied. + remembered location of each NAME. + + If the ‘-t’ option is supplied, ‘hash’ prints the full pathname + corresponding to each NAME. If multiple NAME arguments are + supplied with ‘-t’, ‘hash’ prints each NAME before the + corresponding hashed full path. The ‘-l’ option displays output in + a format that may be reused as input. + + If no arguments are given, or if only ‘-l’ is supplied, ‘hash’ + prints information about remembered commands. The ‘-t’, ‘-d’, and + ‘-p’ options (the options that act on the NAME arguments) are + mutually exclusive. Only one will be active. If more than one is + supplied, ‘-t’ has higher priority than ‘-p’, and both have higher + priority than ‘-d’. + + The return status is zero unless a NAME is not found or an invalid + option is supplied. ‘pwd’ pwd [-LP] Print the absolute pathname of the current working directory. If - the ‘-P’ option is supplied, the pathname printed will not contain - symbolic links. If the ‘-L’ option is supplied, the pathname - printed may contain symbolic links. The return status is zero - unless an error is encountered while determining the name of the - current directory or an invalid option is supplied. + the ‘-P’ option is supplied, or the ‘-o physical’ option to the + ‘set’ builtin (*note The Set Builtin::) is enabled, the pathname + printed will not contain symbolic links. If the ‘-L’ option is + supplied, the pathname printed may contain symbolic links. The + return status is zero unless an error is encountered while + determining the name of the current directory or an invalid option + is supplied. ‘readonly’ readonly [-aAf] [-p] [NAME[=VALUE]] ... Mark each NAME as readonly. The values of these names may not be - changed by subsequent assignment. If the ‘-f’ option is supplied, - each NAME refers to a shell function. The ‘-a’ option means each - NAME refers to an indexed array variable; the ‘-A’ option means - each NAME refers to an associative array variable. If both options - are supplied, ‘-A’ takes precedence. If no NAME arguments are - given, or if the ‘-p’ 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 ‘-p’ option - causes output to be displayed in a format that may be reused as - input. If a variable name is followed by =VALUE, the value of the - variable is set to VALUE. The return status is zero unless an - invalid option is supplied, one of the NAME arguments is not a - valid shell variable or function name, or the ‘-f’ option is - supplied with a name that is not a shell function. + changed by subsequent assignment or unset. If the ‘-f’ option is + supplied, each NAME refers to a shell function. The ‘-a’ option + means each NAME refers to an indexed array variable; the ‘-A’ + option means each NAME refers to an associative array variable. If + both options are supplied, ‘-A’ takes precedence. If no NAME + arguments are supplied, or if the ‘-p’ option is supplied, print a + list of all readonly names. The other options may be used to + restrict the output to a subset of the set of readonly names. The + ‘-p’ option displays output in a format that may be reused as + input. + + ‘readonly’ allows the value of a variable to be set at the same + time the readonly attribute is changed by following the variable + name with =VALUE. This sets the value of the variable is to VALUE + while modifying the readonly attribute. + + The return status is zero unless an invalid option is supplied, one + of the NAME arguments is not a valid shell variable or function + name, or the ‘-f’ option is supplied with a name that is not a + shell function. ‘return’ return [N] - Cause a shell function to stop executing and return the value N to - its caller. If N is not supplied, the return value is the exit - status of the last command executed in the function. If ‘return’ - is executed by a trap handler, the last command used to determine - the status is the last command executed before the trap handler. - If ‘return’ is executed during a ‘DEBUG’ trap, the last command - used to determine the status is the last command executed by the - trap handler before ‘return’ was invoked. ‘return’ may also be - used to terminate execution of a script being executed with the ‘.’ - (‘source’) builtin, returning either N or the exit status of the - last command executed within the script as the exit status of the - script. If N is supplied, the return value is its least - significant 8 bits. Any command associated with the ‘RETURN’ trap - is executed before execution resumes after the function or script. + Stop executing a shell function or sourced file and return the + value N to its caller. If N is not supplied, the return value is + the exit status of the last command executed. If ‘return’ is + executed by a trap handler, the last command used to determine the + status is the last command executed before the trap handler. If + ‘return’ is executed during a ‘DEBUG’ trap, the last command used + to determine the status is the last command executed by the trap + handler before ‘return’ was invoked. + + When ‘return’ is used to terminate execution of a script being + executed with the ‘.’ (‘source’) builtin, it returns either N or + the exit status of the last command executed within the script as + the exit status of the script. If N is supplied, the return value + is its least significant 8 bits. + + Any command associated with the ‘RETURN’ trap is executed before + execution resumes after the function or script. + The return status is non-zero if ‘return’ is supplied a non-numeric argument or is used outside a function and not during the execution of a script by ‘.’ or ‘source’. @@ -3540,12 +3672,12 @@ standard. ‘shift’ shift [N] - Shift the positional parameters to the left by N. The positional + Shift the positional parameters to the left by N: the positional parameters from N+1 ... ‘$#’ are renamed to ‘$1’ ... ‘$#’-N. Parameters represented by the numbers ‘$#’ down to ‘$#’-N+1 are unset. N must be a non-negative number less than or equal to ‘$#’. - If N is zero or greater than ‘$#’, the positional parameters are - not changed. If N is not supplied, it is assumed to be 1. The + If N is not supplied, it is assumed to be 1. If N is zero or + greater than ‘$#’, the positional parameters are not changed. The return status is zero unless N is greater than ‘$#’ or less than zero, non-zero otherwise. @@ -3558,22 +3690,20 @@ standard. argument. Expressions are composed of the primaries described below in *note Bash Conditional Expressions::. ‘test’ does not accept any options, nor does it accept and ignore an argument of - ‘--’ as signifying the end of options. - - When the ‘[’ form is used, the last argument to the command must be - a ‘]’. + ‘--’ as signifying the end of options. When using the ‘[’ form, + the last argument to the command must be a ‘]’. Expressions may be combined using the following operators, listed in decreasing order of precedence. The evaluation depends on the - number of arguments; see below. Operator precedence is used when - there are five or more arguments. + number of arguments; see below. ‘test’ uses operator precedence + when there are five or more arguments. ‘! EXPR’ True if EXPR is false. ‘( EXPR )’ - Returns the value of EXPR. This may be used to override the - normal precedence of operators. + Returns the value of EXPR. This may be used to override + normal operator precedence. ‘EXPR1 -a EXPR2’ True if both EXPR1 and EXPR2 are true. @@ -3662,15 +3792,17 @@ standard. trap [-Plp] [ACTION] [SIGSPEC ...] The ACTION is a command that is read and executed when the shell - receives signal SIGSPEC. If ACTION is absent (and there is a - single SIGSPEC) or equal to ‘-’, each specified signal's - disposition is reset to the value it had when the shell was - started. If ACTION is the null string, then the signal specified - by each SIGSPEC is ignored by the shell and commands it invokes. + receives any of the signals SIGSPEC. If ACTION is absent (and + there is a single SIGSPEC) or equal to ‘-’, each specified + SIGSPEC'ss disposition is reset to the value it had when the shell + was started. If ACTION is the null string, then the signal + specified by each SIGSPEC is ignored by the shell and commands it + invokes. If no arguments are supplied, ‘trap’ prints the actions associated with each trapped signal as a set of ‘trap’ commands that can be reused as shell input to restore the current signal dispositions. + If ACTION is not present and ‘-p’ has been supplied, ‘trap’ displays the trap commands associated with each SIGSPEC, or, if no SIGSPECs are supplied, for all trapped signals, as a set of ‘trap’ @@ -3678,26 +3810,27 @@ standard. signal dispositions. The ‘-P’ option behaves similarly, but displays only the actions associated with each SIGSPEC argument. ‘-P’ requires at least one SIGSPEC argument. The ‘-P’ or ‘-p’ - options to ‘trap’ may be used in a subshell environment (e.g., - command substitution) and, as long as they are used before ‘trap’ - is used to change a signal's handling, will display the state of - its parent's traps. + options may be used in a subshell environment (e.g., command + substitution) and, as long as they are used before ‘trap’ is used + to change a signal's handling, will display the state of its + parent's traps. - The ‘-l’ option causes ‘trap’ to print a list of signal names and - their corresponding numbers. Each SIGSPEC is either a signal name - or a signal number. Signal names are case insensitive and the - ‘SIG’ prefix is optional. + The ‘-l’ option prints a list of signal names and their + corresponding numbers. Each SIGSPEC is either a signal name or a + signal number. Signal names are case insensitive and the ‘SIG’ + prefix is optional. If ‘-l’ is supplied with no SIGSPEC arguments, + it prints a list of valid signal names. If a SIGSPEC is ‘0’ or ‘EXIT’, ACTION is executed when the shell exits. If a SIGSPEC is ‘DEBUG’, ACTION is executed before every simple command, ‘for’ command, ‘case’ command, ‘select’ command, (( arithmetic command, [[ conditional command, arithmetic ‘for’ command, and before the first command executes in a shell function. - Refer to the description of the ‘extdebug’ option to the ‘shopt’ - builtin (*note The Shopt Builtin::) for details of its effect on - the ‘DEBUG’ trap. If a SIGSPEC is ‘RETURN’, ACTION is executed - each time a shell function or a script executed with the ‘.’ or - ‘source’ builtins finishes executing. + Refer to the description of the ‘extdebug’ shell option (*note The + Shopt Builtin::) for details of its effect on the ‘DEBUG’ trap. If + a SIGSPEC is ‘RETURN’, ACTION is executed each time a shell + function or a script executed with the ‘.’ or ‘source’ builtins + finishes executing. If a SIGSPEC is ‘ERR’, ACTION is executed whenever a pipeline (which may consist of a single simple command), a list, or a @@ -3707,18 +3840,19 @@ standard. ‘until’ or ‘while’ keyword, part of the test following the ‘if’ or ‘elif’ reserved words, part of a command executed in a ‘&&’ or ‘||’ list except the command following the final ‘&&’ or ‘||’, any - command in a pipeline but the last, or if the command's return - status is being inverted using ‘!’. These are the same conditions - obeyed by the ‘errexit’ (‘-e’) option. + command in a pipeline but the last, (subject to the state of the + ‘pipefail’ shell option), or if the command's return status is + being inverted using ‘!’. These are the same conditions obeyed by + the ‘errexit’ (‘-e’) option. - Signals ignored upon entry to a non-interactive 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. + When the shell is not interactive, signals ignored upon entry to a + non-interactive 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 is zero unless a SIGSPEC does not specify a valid - signal. + signal; non-zero otherwise. ‘true’ true @@ -3731,13 +3865,13 @@ standard. Set the shell process's file creation mask to MODE. If MODE begins with a digit, it is interpreted as an octal number; if not, it is interpreted as a symbolic mode mask similar to that accepted by the - ‘chmod’ command. If MODE is omitted, the current value of the mask - is printed. If the ‘-S’ option is supplied without a MODE - argument, the mask is printed in a symbolic format. If the ‘-p’ - option is supplied, and MODE is omitted, the output is in a form - that may be reused as input. The return status is zero if the mode - is successfully changed or if no MODE argument is supplied, and - non-zero otherwise. + ‘chmod’ command. If MODE is omitted, ‘umask’ prints the current + value of the mask. If the ‘-S’ option is supplied without a MODE + argument, ‘umask’ prints the mask in a symbolic format; the default + output is an octal number. If the ‘-p’ option is supplied, and + MODE is omitted, the output is in a form that may be reused as + input. The return status is zero if the mode is successfully + changed or if no MODE argument is supplied, and non-zero otherwise. Note that when the mode is interpreted as an octal number, each number of the umask is subtracted from ‘7’. Thus, a umask of ‘022’ @@ -3755,11 +3889,13 @@ standard. references. ‘-n’ has no effect if the ‘-f’ option is supplied. If no options are supplied, each NAME refers to a variable; if there is no variable by that name, a function with that name, if any, is - unset. Readonly variables and functions may not be unset. Some - shell variables lose their special behavior if they are unset; such - behavior is noted in the description of the individual variables. - The return status is zero unless a NAME is readonly or may not be - unset. + unset. Readonly variables and functions may not be unset. When + variables or functions are removed, they are also removed from the + environment passed to subsequent commands. Some shell variables + may not be unset. Some shell variables lose their special behavior + if they are unset; such behavior is noted in the description of the + individual variables. The return status is zero unless a NAME is + readonly or may not be unset.  File: bash.info, Node: Bash Builtins, Next: Modifying Shell Behavior, Prev: Bourne Shell Builtins, Up: Shell Builtin Commands @@ -3776,10 +3912,13 @@ standard. Without arguments or with the ‘-p’ option, ‘alias’ prints the list of aliases on the standard output in a form that allows them to be - reused as input. If arguments are supplied, an alias is defined - for each NAME whose VALUE is given. If no VALUE is given, the name - and value of the alias is printed. Aliases are described in *note - Aliases::. + reused as input. If arguments are supplied, define an alias for + each NAME whose VALUE is given. If no VALUE is given, print the + name and value of the alias NAME. A trailing space in VALUE causes + the next word to be checked for alias substitution when the alias + is expanded during command parsing. ‘alias’ returns true unless a + NAME is given (without a corresponding =VALUE) for which no alias + has been defined. Aliases are described in *note Aliases::. ‘bind’ bind [-m KEYMAP] [-lsvSVX] @@ -3793,10 +3932,16 @@ standard. Display current Readline (*note Command Line Editing::) key and function bindings, bind a key sequence to a Readline function or - macro, or set a Readline variable. Each non-option argument is a - command as it would appear in a Readline initialization file (*note - Readline Init File::), but each binding or command must be passed - as a separate argument; e.g., ‘"\C-x\C-r":re-read-init-file’. + macro or to a shell command, or set a Readline variable. Each + non-option argument is a key binding or command as it would appear + in a Readline initialization file (*note Readline Init File::), but + each binding or command must be passed as a separate argument; + e.g., ‘"\C-x\C-r":re-read-init-file’. + + In the following descriptions, options that display output in a + form available to be re-read format their output as commands that + would appear in a Readline initialization file or that would be + supplied as individual arguments to a ‘bind’ command. Options, if supplied, have the following meanings: @@ -3823,14 +3968,6 @@ standard. arguments remain after option processing, ‘bind’ treats them as readline command names and restricts output to those names. - ‘-v’ - Display Readline variable names and values in such a way that - they can be used as an argument to a subsequent ‘bind’ command - or in a Readline initialization file. - - ‘-V’ - List current Readline variable names and values. - ‘-s’ Display Readline key sequences bound to macros and the strings they output in such a way that they can be used as an argument @@ -3841,14 +3978,22 @@ standard. Display Readline key sequences bound to macros and the strings they output. + ‘-v’ + Display Readline variable names and values in such a way that + they can be used as an argument to a subsequent ‘bind’ command + or in a Readline initialization file. + + ‘-V’ + List current Readline variable names and values. + ‘-f FILENAME’ Read key bindings from FILENAME. ‘-q FUNCTION’ - Query about which keys invoke the named FUNCTION. + Display key sequences that invoke the named Readline FUNCTION. ‘-u FUNCTION’ - Unbind all keys bound to the named FUNCTION. + Unbind all key sequences bound to the named Readline FUNCTION. ‘-r KEYSEQ’ Remove any current binding for KEYSEQ. @@ -3863,8 +4008,8 @@ standard. separator is a colon, any enclosing double quotes are optional, and Readline does not expand the command string before saving it. Since the entire key binding expression - must be a single argument, it should be enclosed in quotes. - When SHELL-COMMAND is executed, the shell sets the + must be a single argument, it should be enclosed in single + quotes. When SHELL-COMMAND is executed, the shell sets thex ‘READLINE_LINE’ variable to the contents of the Readline line buffer and the ‘READLINE_POINT’ and ‘READLINE_MARK’ variables to the current location of the insertion point and the saved @@ -3887,11 +4032,11 @@ standard. ‘builtin’ builtin [SHELL-BUILTIN [ARGS]] - Run a shell builtin, passing it ARGS, and return its exit status. - This is useful when defining a shell function with the same name as - a shell builtin, retaining the functionality of the builtin within - the function. The return status is non-zero if SHELL-BUILTIN is - not a shell builtin command. + Execute the specified shell builtin SHELL-BUILTIN, passing it ARGS, + and return its exit status. This is useful when defining a shell + function with the same name as a shell builtin, retaining the + functionality of the builtin within the function. The return + status is non-zero if SHELL-BUILTIN is not a shell builtin command. ‘caller’ caller [EXPR] @@ -3913,28 +4058,28 @@ standard. ‘command’ command [-pVv] COMMAND [ARGUMENTS ...] - Runs COMMAND with ARGUMENTS ignoring any shell function named - COMMAND. Only shell builtin commands or commands found by - searching the ‘PATH’ are executed. If there is a shell function - named ‘ls’, running ‘command ls’ within the function will execute - the external command ‘ls’ instead of calling the function - recursively. The ‘-p’ option means to use a default value for - ‘PATH’ that is guaranteed to find all of the standard utilities. - The return status in this case is 127 if COMMAND cannot be found or - an error occurred, and the exit status of COMMAND otherwise. - - If either the ‘-V’ or ‘-v’ option is supplied, a description of - COMMAND is printed. The ‘-v’ option causes a single word - indicating the command or file name used to invoke COMMAND to be - displayed; the ‘-V’ option produces a more verbose description. In - this case, the return status is zero if COMMAND is found, and - non-zero if not. + The ‘command’ builtin runs COMMAND with ARGUMENTS ignoring any + shell function named COMMAND. Only shell builtin commands or + commands found by searching the ‘PATH’ are executed. If there is a + shell function named ‘ls’, running ‘command ls’ within the function + will execute the external command ‘ls’ instead of calling the + function recursively. The ‘-p’ option means to use a default value + for ‘PATH’ that is guaranteed to find all of the standard + utilities. The return status in this case is 127 if COMMAND cannot + be found or an error occurred, and the exit status of COMMAND + otherwise. + + If either the ‘-V’ or ‘-v’ option is supplied, ‘command’ prints a + description of COMMAND. The ‘-v’ option displays a single word + indicating the command or file name used to invoke COMMAND; the + ‘-V’ option produces a more verbose description. In this case, the + return status is zero if COMMAND is found, and non-zero if not. ‘declare’ declare [-aAfFgiIlnrtux] [-p] [NAME[=VALUE] ...] Declare variables and give them attributes. If no NAMEs are given, - then display the values of variables instead. + then display the values of variables or shell functions instead. The ‘-p’ option will display the attributes and values of each NAME. When ‘-p’ is used with NAME arguments, additional options, @@ -3944,8 +4089,8 @@ standard. display the attributes and values of all variables having the attributes specified by the additional options. If no other options are supplied with ‘-p’, ‘declare’ will display the - attributes and values of all shell variables. The ‘-f’ option will - restrict the display to shell functions. + attributes and values of all shell variables. The ‘-f’ option + restricts the display to shell functions. The ‘-F’ option inhibits the display of function definitions; only the function name and attributes are printed. If the ‘extdebug’ @@ -3955,7 +4100,8 @@ standard. The ‘-g’ option forces variables to be created or modified at the global scope, even when ‘declare’ is executed in a shell function. - It is ignored in all other cases. + It is ignored in when ‘declare’ is not executed in a shell + function. The ‘-I’ option causes local variables to inherit the attributes (except the ‘nameref’ attribute) and value of any existing variable @@ -3972,7 +4118,7 @@ standard. Each NAME is an associative array variable (*note Arrays::). ‘-f’ - Use function names only. + Each NAME refers to a shell function. ‘-i’ The variable is to be treated as an integer; arithmetic @@ -4011,13 +4157,14 @@ standard. Mark each NAME for export to subsequent commands via the environment. - Using ‘+’ instead of ‘-’ turns off the attribute instead, with the - exceptions that ‘+a’ and ‘+A’ may not be used to destroy array - variables and ‘+r’ will not remove the readonly attribute. When - used in a function, ‘declare’ makes each NAME local, as with the - ‘local’ command, unless the ‘-g’ option is used. If a variable - name is followed by =VALUE, the value of the variable is set to - VALUE. + Using ‘+’ instead of ‘-’ turns off the specified attribute instead, + with the exceptions that ‘+a’ and ‘+A’ may not be used to destroy + array variables and ‘+r’ will not remove the readonly attribute. + + When used in a function, ‘declare’ makes each NAME local, as with + the ‘local’ command, unless the ‘-g’ option is supplied. If a + variable name is followed by =VALUE, the value of the variable is + set to VALUE. When using ‘-a’ or ‘-A’ and the compound assignment syntax to create array variables, additional attributes do not take effect @@ -4038,14 +4185,15 @@ standard. Output the ARGs, separated by spaces, terminated with a newline. The return status is 0 unless a write error occurs. If ‘-n’ is - specified, the trailing newline is suppressed. If the ‘-e’ option - is given, interpretation of the following backslash-escaped - characters is enabled. The ‘-E’ option disables the interpretation - of these escape characters, even on systems where they are - interpreted by default. The ‘xpg_echo’ shell option may be used to - dynamically determine whether or not ‘echo’ interprets any options - and expands these escape characters by default. ‘echo’ does not - interpret ‘--’ to mean the end of options. + specified, the trailing newline is not printed. + + If the ‘-e’ option is given, ‘echo’ interprets the following + backslash-escaped characters. The ‘-E’ option disables + interpretation of these escape characters, even on systems where + they are interpreted by default. The ‘xpg_echo’ shell option + determines whether or not ‘echo’ interprets any options and expands + these escape characters. ‘echo’ does not interpret ‘--’ to mean + the end of options. ‘echo’ interprets the following escape sequences: ‘\a’ @@ -4082,36 +4230,38 @@ standard. the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value HHHHHHHH (one to eight hex digits) + ‘echo’ writes any unrecognized backslash-escaped characters + unchanged. + ‘enable’ enable [-a] [-dnps] [-f FILENAME] [NAME ...] 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 ‘-n’ - is used, the NAMEs become disabled. Otherwise NAMEs are enabled. - For example, to use the ‘test’ binary found via ‘$PATH’ instead of - the shell builtin version, type ‘enable -n test’. - - If the ‘-p’ option is supplied, or no NAME arguments appear, a list - of shell builtins is printed. With no other arguments, the list - consists of all enabled shell builtins. The ‘-a’ option means to - list each builtin with an indication of whether or not it is - enabled. + allows an executable file 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 files. + + If ‘-n’ is supplied, the NAMEs are disabled. Otherwise NAMEs are + enabled. For example, to use the ‘test’ binary found using ‘$PATH’ + instead of the shell builtin version, type ‘enable -n test’. + + If the ‘-p’ option is supplied, or no NAME arguments are supplied, + print a list of shell builtins. With no other arguments, the list + consists of all enabled shell builtins. The ‘-n’ option means to + print only disabled builtins. The ‘-a’ option means to list each + builtin with an indication of whether or not it is enabled. The + ‘-s’ option means to restrict ‘enable’ to the POSIX special + builtins. The ‘-f’ option means to load the new builtin command NAME from shared object FILENAME, on systems that support dynamic loading. - Bash will use the value of the ‘BASH_LOADABLES_PATH’ variable as a - colon-separated list of directories in which to search for - FILENAME, if FILENAME does not contain a slash. The default is - system-dependent, and may include "." to force a search of the - current directory. The ‘-d’ option will delete a builtin loaded - with ‘-f’. - - If there are no options, a list of the shell builtins is displayed. - The ‘-s’ option restricts ‘enable’ to the POSIX special builtins. - If ‘-s’ is used with ‘-f’, the new builtin becomes a special - builtin (*note Special Builtins::). + If FILENAME does not contain a slash. Bash will use the value of + the ‘BASH_LOADABLES_PATH’ variable as a colon-separated list of + directories in which to search for FILENAME. The default for + ‘BASH_LOADABLES_PATH’ is system-dependent, and may include "." to + force a search of the current directory. The ‘-d’ option will + delete a builtin loaded with ‘-f’. If ‘-s’ is used with ‘-f’, the + new builtin becomes a special builtin (*note Special Builtins::). If no options are supplied and a NAME is not a shell builtin, ‘enable’ will attempt to load NAME from a shared object named NAME, @@ -4125,7 +4275,8 @@ standard. Display helpful information about builtin commands. If PATTERN is specified, ‘help’ gives detailed help on all commands matching - PATTERN, otherwise a list of the builtins is printed. + PATTERN, otherwise it displays a list of all builtins and shell + compound commands. Options, if supplied, have the following meanings: @@ -4143,25 +4294,34 @@ standard. let EXPRESSION [EXPRESSION ...] The ‘let’ builtin allows arithmetic to be performed on shell - variables. Each EXPRESSION is evaluated according to the rules - given below in *note Shell Arithmetic::. If the last EXPRESSION - evaluates to 0, ‘let’ returns 1; otherwise 0 is returned. + variables. Each EXPRESSION is evaluated as an arithmetic + expression according to the rules given below in *note Shell + Arithmetic::. If the last EXPRESSION evaluates to 0, ‘let’ returns + 1; otherwise ‘let’ returns 0. ‘local’ local [OPTION] NAME[=VALUE] ... - For each argument, a local variable named NAME is created, and - assigned VALUE. The OPTION can be any of the options accepted by + For each argument, create a local variable named NAME, and assign + it VALUE. The OPTION can be any of the options accepted by ‘declare’. ‘local’ can only be used within a function; it makes the variable NAME have a visible scope restricted to that function - and its children. If NAME is ‘-’, the set of shell options is made - local to the function in which ‘local’ is invoked: shell options - changed using the ‘set’ builtin inside the function after the call - to ‘local’ are restored to their original values when the function - returns. The restore is effected as if a series of ‘set’ commands + and its children. It is an error to use ‘local’ when not within a + function. + + If NAME is ‘-’, it makes the set of shell options local to the + function in which ‘local’ is invoked: any shell options changed + using the ‘set’ builtin inside the function after the call to + ‘local’ are restored to their original values when the function + returns. The restore is performed as if a series of ‘set’ commands were executed to restore the values that were in place before the - function. The return status is zero unless ‘local’ is used outside - a function, an invalid NAME is supplied, or NAME is a readonly + function. + + With no operands, ‘local’ writes a list of local variables to the + standard output. + + The return status is zero unless ‘local’ is used outside a + function, an invalid NAME is supplied, or NAME is a readonly variable. ‘logout’ @@ -4173,18 +4333,17 @@ standard. mapfile [-d DELIM] [-n COUNT] [-O ORIGIN] [-s COUNT] [-t] [-u FD] [-C CALLBACK] [-c QUANTUM] [ARRAY] - Read lines from the standard input into the indexed array variable - ARRAY, or from file descriptor FD if the ‘-u’ option is supplied. + Read lines from the standard input, or from file descriptor FD if + the ‘-u’ option is supplied, into the indexed array variable ARRAY. The variable ‘MAPFILE’ is the default ARRAY. Options, if supplied, have the following meanings: ‘-d’ - The first character of DELIM is used to terminate each input - line, rather than newline. If DELIM is the empty string, - ‘mapfile’ will terminate a line when it reads a NUL character. + Use the first character of DELIM to terminate each input line, + rather than newline. If DELIM is the empty string, ‘mapfile’ + will terminate a line when it reads a NUL character. ‘-n’ - Copy at most COUNT lines. If COUNT is 0, all lines are - copied. + Copy at most COUNT lines. If COUNT is 0, copy all lines. ‘-O’ Begin assigning to ARRAY at index ORIGIN. The default index is 0. @@ -4211,17 +4370,16 @@ standard. If not supplied with an explicit origin, ‘mapfile’ will clear ARRAY before assigning to it. - ‘mapfile’ returns successfully unless an invalid option or option - argument is supplied, ARRAY is invalid or unassignable, or ARRAY is - not an indexed array. + ‘mapfile’ returns zero unless an invalid option or option argument + is supplied, ARRAY is invalid or unassignable, or if ARRAY is not + an indexed array. ‘printf’ printf [-v VAR] FORMAT [ARGUMENTS] Write the formatted ARGUMENTS to the standard output under the - control of the FORMAT. The ‘-v’ option causes the output to be - assigned to the variable VAR rather than being printed to the - standard output. + control of the FORMAT. The ‘-v’ option assigns the output to the + variable VAR rather than printing it to the standard output. The FORMAT is a character string which contains three types of objects: plain characters, which are simply copied to standard @@ -4252,11 +4410,12 @@ standard. Causes ‘printf’ to output the date-time string resulting from using DATEFMT as a format string for ‘strftime’(3). The corresponding ARGUMENT 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 argument is specified, - conversion behaves as if -1 had been given. This is an - exception to the usual ‘printf’ behavior. + of seconds since the epoch. This format specifier recognizes + Two special argument values: -1 represents the current time, + and -2 represents the time the shell was invoked. If no + argument is specified, conversion behaves as if -1 had been + supplied. This is an exception to the usual ‘printf’ + behavior. The %b, %q, and %T format specifiers all use the field width and precision arguments from the format specification and write that @@ -4289,19 +4448,19 @@ standard. read [-Eers] [-a ANAME] [-d DELIM] [-i TEXT] [-n NCHARS] [-N NCHARS] [-p PROMPT] [-t TIMEOUT] [-u FD] [NAME ...] - One line is read from the standard input, or from the file - descriptor FD supplied as an argument to the ‘-u’ option, split - into words as described above in *note Word Splitting::, and the - first word is assigned to the first NAME, the second word to the - second NAME, and so on. If there are more words than names, the - remaining words and their intervening delimiters are assigned to - the last NAME. If there are fewer words read from the input stream - than names, the remaining names are assigned empty values. The - characters in the value of the ‘IFS’ variable are used to split the - line into words using the same rules the shell uses for expansion - (described above in *note Word Splitting::). The backslash - character ‘\’ may be used to remove any special meaning for the - next character read and for line continuation. + Read one line from the standard input, or from the file descriptor + FD supplied as an argument to the ‘-u’ option, split it into words + as described above in *note Word Splitting::, and assign the first + word to the first NAME, the second word to the second NAME, and so + on. If there are more words than names, the remaining words and + their intervening delimiters are assigned to the last NAME. If + there are fewer words read from the input stream than names, the + remaining names are assigned empty values. The characters in the + value of the ‘IFS’ variable are used to split the line into words + using the same rules the shell uses for expansion (described above + in *note Word Splitting::). The backslash character ‘\’ removes + any special meaning for the next character read and is used for + line continuation. Options, if supplied, have the following meanings: @@ -4312,45 +4471,48 @@ standard. ignored. ‘-d DELIM’ - The first character of DELIM is used to terminate the input - line, rather than newline. If DELIM is the empty string, - ‘read’ will terminate a line when it reads a NUL character. + The first character of DELIM terminates the input line, rather + than newline. If DELIM is the empty string, ‘read’ will + terminate a line when it reads a NUL character. ‘-e’ - Readline (*note Command Line Editing::) is used to obtain the - line. Readline uses the current (or default, if line editing - was not previously active) editing settings, but uses - Readline's default filename completion. + If the standard input is coming from a terminal, ‘read’ uses + Readline (*note Command Line Editing::) to obtain the line. + Readline uses the current (or default, if line editing was not + previously active) editing settings, but uses Readline's + default filename completion. ‘-E’ - Readline (*note Command Line Editing::) is used to obtain the - line. Readline uses the current (or default, if line editing - was not previously active) editing settings, but uses Bash's - default completion, including programmable completion. + If the standard input is coming from a terminal, ‘read’ uses + Readline (*note Command Line Editing::) to obtain the line. + Readline uses the current (or default, if line editing was not + previously active) editing settings, but uses Bash's default + completion, including programmable completion. ‘-i TEXT’ - If Readline is being used to read the line, TEXT is placed + If Readline is being used to read the line, ‘read’ places TEXT into the editing buffer before editing begins. ‘-n NCHARS’ ‘read’ returns after reading NCHARS characters rather than - waiting for a complete line of input, but honors a delimiter - if fewer than NCHARS characters are read before the delimiter. + waiting for a complete line of input, unless it encounters EOF + or ‘read’ times out, but honors a delimiter if it reads fewer + than NCHARS characters before the delimiter. ‘-N NCHARS’ ‘read’ returns after reading exactly NCHARS characters rather - than waiting for a complete line of input, unless EOF is - encountered or ‘read’ times out. Delimiter characters - encountered in the input are not treated specially and do not - cause ‘read’ to return until NCHARS characters are read. The - result is not split on the characters in ‘IFS’; the intent is - that the variable is assigned exactly the characters read - (with the exception of backslash; see the ‘-r’ option below). + than waiting for a complete line of input, unless it + encounters EOF or ‘read’ times out. Delimiter characters in + the input are not treated specially and do not cause ‘read’ to + return until it has read NCHARS characters. The result is not + split on the characters in ‘IFS’; the intent is that the + variable is assigned exactly the characters read (with the + exception of backslash; see the ‘-r’ option below). ‘-p PROMPT’ Display PROMPT, without a trailing newline, before attempting - to read any input. The prompt is displayed only if input is - coming from a terminal. + to read any input, but only if input is coming from a + terminal. ‘-r’ If this option is given, backslash does not act as an escape @@ -4363,33 +4525,35 @@ standard. are not echoed. ‘-t TIMEOUT’ - Cause ‘read’ to time out and return failure if a complete line - of input (or a specified number of characters) is not read - within TIMEOUT seconds. TIMEOUT may be a decimal number with - a fractional portion following the decimal point. This option - is only effective if ‘read’ is reading input from a terminal, - pipe, or other special file; it has no effect when reading - from regular files. If ‘read’ times out, ‘read’ saves any - partial input read into the specified variable NAME. If - TIMEOUT is 0, ‘read’ returns 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. + Cause ‘read’ to time out and return failure if it does not + read a complete line of input (or a specified number of + characters) within TIMEOUT seconds. TIMEOUT may be a decimal + number with a fractional portion following the decimal point. + This option is only effective if ‘read’ is reading input from + a terminal, pipe, or other special file; it has no effect when + reading from regular files. If ‘read’ times out, it saves any + partial input read into the specified variable NAME, and + returns a status greater than 128. If TIMEOUT is 0, ‘read’ + returns immediately, without trying to read any data. In this + case, the exit status is 0 if input is available on the + specified file descriptor, or the read will return EOF, + non-zero otherwise. ‘-u FD’ - Read input from file descriptor FD. + Read input from file descriptor FD instead of the standard + input. Other than the case where DELIM is the empty string, ‘read’ ignores any NUL characters in the input. - If no NAMEs are supplied, the line read, without the ending - delimiter but otherwise unmodified, is assigned to the variable - ‘REPLY’. The exit status is zero, unless end-of-file is - encountered, ‘read’ times out (in which case the status is greater - than 128), a variable assignment error (such as assigning to a - readonly variable) occurs, or an invalid file descriptor is - supplied as the argument to ‘-u’. + If no NAMEs are supplied, ‘read’ assigns the line read, without the + ending delimiter but otherwise unmodified, to the variable ‘REPLY’. + + The exit status is zero, unless end-of-file is encountered, ‘read’ + times out (in which case the status is greater than 128), a + variable assignment error (such as assigning to a readonly + variable) occurs, or an invalid file descriptor is supplied as the + argument to ‘-u’. ‘readarray’ readarray [-d DELIM] [-n COUNT] [-O ORIGIN] [-s COUNT] @@ -4408,19 +4572,18 @@ standard. ‘type’ type [-afptP] [NAME ...] - For each NAME, indicate how it would be interpreted if used as a - command name. + Indicate how each NAME would be interpreted if used as a command + name. If the ‘-t’ option is used, ‘type’ prints a single word which is one of ‘alias’, ‘keyword’, ‘function’, ‘builtin’, or ‘file’, if NAME is an alias, shell reserved word, shell function, shell - builtin, or executable disk file, respectively. If the NAME is not - found, then nothing is printed, and ‘type’ returns a failure - status. + builtin, or executable file, respectively. If the NAME is not + found, ‘type’ prints nothing and returns a failure status. If the ‘-p’ option is used, ‘type’ either returns the name of the - executable file that would be found by searching ‘$PATH’, or - nothing if ‘-t’ would not return ‘file’. + executable file that would be found by searching ‘$PATH’ for + ‘name’, or nothing if ‘-t’ would not return ‘file’. The ‘-P’ option forces a path search for each NAME, even if ‘-t’ would not return ‘file’. @@ -4453,9 +4616,9 @@ standard. ulimit [-HS] -a ulimit [-HS] [-bcdefiklmnpqrstuvxPRT] [LIMIT] - ‘ulimit’ provides control over the resources available to processes - started by the shell, on systems that allow such control. If an - option is given, it is interpreted as follows: + ‘ulimit’ provides control over the resources available to the shell + and to processes it starts, on systems that allow such control. If + an option is given, it is interpreted as follows: ‘-S’ Change and report the soft limit associated with a resource. @@ -4464,7 +4627,7 @@ standard. Change and report the hard limit associated with a resource. ‘-a’ - All current limits are reported; no limits are set. + Report all current limits; no limits are set. ‘-b’ The maximum socket buffer size. @@ -4534,23 +4697,25 @@ standard. ‘-T’ The maximum number of threads. - If LIMIT is given, and the ‘-a’ option is not used, LIMIT is the + If LIMIT is supplied, and the ‘-a’ option is not used, LIMIT is the new value of the specified resource. The special LIMIT values ‘hard’, ‘soft’, and ‘unlimited’ stand for the current hard limit, the current soft limit, and no limit, respectively. 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. Otherwise, the - current value of the soft limit for the specified resource is - printed, unless the ‘-H’ option is supplied. When more than one - resource is specified, the limit name and unit, if appropriate, are - printed before the value. When setting new limits, if neither ‘-H’ - nor ‘-S’ is supplied, both the hard and soft limits are set. If no - option is given, then ‘-f’ is assumed. Values are in 1024-byte - increments, except for ‘-t’, which is in seconds; ‘-R’, which is in - microseconds; ‘-p’, which is in units of 512-byte blocks; ‘-P’, - ‘-T’, ‘-b’, ‘-k’, ‘-n’ and ‘-u’, which are unscaled values; and, - when in POSIX Mode (*note Bash POSIX Mode::), ‘-c’ and ‘-f’, which - are in 512-byte increments. + may be increased up to the value of the hard limit. Otherwise, + ‘ulimit’ prints the current value of the soft limit for the + specified resource, unless the ‘-H’ option is supplied. When more + than one resource is specified, the limit name and unit, if + appropriate, are printed before the value. When setting new + limits, if neither ‘-H’ nor ‘-S’ is supplied, ‘ulimit’ sets both + the hard and soft limits. If no option is supplied, then ‘-f’ is + assumed. + + Values are in 1024-byte increments, except for ‘-t’, which is in + seconds; ‘-R’, which is in microseconds; ‘-p’, which is in units of + 512-byte blocks; ‘-P’, ‘-T’, ‘-b’, ‘-k’, ‘-n’ and ‘-u’, which are + unscaled values; and, when in POSIX Mode (*note Bash POSIX Mode::), + ‘-c’ and ‘-f’, which are in 512-byte increments. The return status is zero unless an invalid option or argument is supplied, or an error occurs while setting a new limit. @@ -4559,7 +4724,9 @@ standard. unalias [-a] [NAME ... ] Remove each NAME from the list of aliases. If ‘-a’ is supplied, - all aliases are removed. Aliases are described in *note Aliases::. + remove all aliases. The return value is true unless a supplied + NAME is not a defined alias. Aliases are described in *note + Aliases::.  File: bash.info, Node: Modifying Shell Behavior, Next: Special Builtins, Prev: Bash Builtins, Up: Shell Builtin Commands @@ -4596,7 +4763,10 @@ parameters, or to display the names and values of shell variables. variables cannot be reset. In POSIX mode, only shell variables are listed. - When options are supplied, they set or unset shell attributes. + When options are supplied, they set or unset shell attributes. Any + arguments remaining after option processing replace the positional + parameters. + Options, if specified, have the following meanings: ‘-a’ @@ -4607,7 +4777,8 @@ parameters, or to display the names and values of shell variables. ‘-b’ Cause the status of terminated background jobs to be reported immediately, rather than before printing the next primary - prompt. + prompt or, under some circumstances, when a foreground command + exits. This is effective only when job control is enabled. ‘-e’ Exit immediately if a pipeline (*note Pipelines::), which may @@ -4794,7 +4965,7 @@ parameters, or to display the names and values of shell variables. ‘-x’ Print a trace of simple commands, ‘for’ commands, ‘case’ commands, ‘select’ commands, and arithmetic ‘for’ commands and - their arguments or associated word lists to standard error + their arguments or associated word lists to the standard error after they are expanded and before they are executed. The shell prints the expanded value of the ‘PS4’ variable before the command and its expanded arguments. @@ -4805,7 +4976,9 @@ parameters, or to display the names and values of shell variables. ‘-C’ Prevent output redirection using ‘>’, ‘>&’, and ‘<>’ from - overwriting existing files. + overwriting existing files. Using the redirection operator + ‘>|’ instead of ‘>’ will override this and force the creation + of an output file. ‘-E’ If set, any trap on ‘ERR’ is inherited by shell functions, @@ -4819,11 +4992,11 @@ parameters, or to display the names and values of shell variables. shells. ‘-P’ - If set, do not resolve symbolic links when performing commands - such as ‘cd’ which change the current directory. The physical - directory is used instead. By default, Bash follows the - logical chain of directories when performing commands which - change the current directory. + If set, Bash does not resolve symbolic links when executing + commands such as ‘cd’ which change the current directory. It + uses the physical directory structure instead. By default, + Bash follows the logical chain of directories when performing + commands which change the current directory. For example, if ‘/usr/sys’ is a symbolic link to ‘/usr/local/sys’ then: @@ -4839,22 +5012,21 @@ parameters, or to display the names and values of shell variables. /usr/local ‘-T’ - If set, any trap on ‘DEBUG’ and ‘RETURN’ are inherited by + If set, any traps on ‘DEBUG’ and ‘RETURN’ are inherited by shell functions, command substitutions, and commands executed in a subshell environment. The ‘DEBUG’ and ‘RETURN’ traps are normally not inherited in such cases. ‘--’ - If no arguments follow this option, then the positional - parameters are unset. Otherwise, the positional parameters - are set to the ARGUMENTS, even if some of them begin with a - ‘-’. + If no arguments follow this option, unset the positional + parameters. Otherwise, the positional parameters are set to + the ARGUMENTS, even if some of them begin with a ‘-’. ‘-’ - Signal the end of options, cause all remaining ARGUMENTS to be - assigned to the positional parameters. The ‘-x’ and ‘-v’ - options are turned off. If there are no arguments, the - positional parameters remain unchanged. + Signal the end of options, and assign all remaining ARGUMENTS + to the positional parameters. The ‘-x’ and ‘-v’ options are + turned off. If there are no arguments, the positional + parameters remain unchanged. Using ‘+’ rather than ‘-’ causes these options to be turned off. The options can also be used upon invocation of the shell. The @@ -4873,7 +5045,7 @@ File: bash.info, Node: The Shopt Builtin, Prev: The Set Builtin, Up: Modifyin 4.3.2 The Shopt Builtin ----------------------- -This builtin allows you to change additional shell optional behavior. +This builtin allows you to change additional optional shell behavior. ‘shopt’ shopt [-pqsu] [-o] [OPTNAME ...] @@ -4882,11 +5054,11 @@ This builtin allows you to change additional shell optional behavior. The settings can be either those listed below, or, if the ‘-o’ option is used, those available with the ‘-o’ option to the ‘set’ builtin command (*note The Set Builtin::). With no options, or - with the ‘-p’ option, a list of all settable options is displayed, - with an indication of whether or not each is set; if OPTNAMEs are + with the ‘-p’ option, display a list of all settable options, with + an indication of whether or not each is set; if any OPTNAMEs are supplied, the output is restricted to those options. The ‘-p’ - option causes output to be displayed in a form that may be reused - as input. Other options have the following meanings: + option displays output in a form that may be reused as input. + Other options have the following meanings: ‘-s’ Enable (set) each OPTNAME. @@ -4897,8 +5069,8 @@ This builtin allows you to change additional shell optional behavior. ‘-q’ Suppresses normal output; the return status indicates whether the OPTNAME is set or unset. If multiple OPTNAME arguments - are given with ‘-q’, the return status is zero if all OPTNAMEs - are enabled; non-zero otherwise. + are supplied with ‘-q’, the return status is zero if all + OPTNAMEs are enabled; non-zero otherwise. ‘-o’ Restricts the values of OPTNAME to be those defined for the @@ -4942,25 +5114,24 @@ This builtin allows you to change additional shell optional behavior. whose value is the directory to change to. ‘cdspell’ - If set, minor errors in the spelling of a directory component - in a ‘cd’ command will be corrected. The errors checked for - are transposed characters, a missing character, and a - character too many. If a correction is found, the corrected - path is printed, and the command proceeds. This option is + If set, the ‘cd’ command attempts to correct minor errors in + the spelling of a directory component. Minor errors include + transposed characters, a missing character, and one extra + character. If ‘cd’ corrects the directory name, it prints the + corrected filename, and the command proceeds. This option is only used by interactive shells. ‘checkhash’ If this is set, Bash checks that a command found in the hash table exists before trying to execute it. If a hashed command - no longer exists, a normal path search is performed. + no longer exists, Bash performs a normal path search. ‘checkjobs’ If set, Bash lists the status of any stopped and running 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 (*note Job - Control::). The shell always postpones exiting if any jobs - are stopped. + Bash defers the exit until a second exit is attempted without + an intervening command (*note Job Control::). The shell + always postpones exiting if any jobs are stopped. ‘checkwinsize’ If set, Bash checks the window size after each external @@ -5012,15 +5183,14 @@ This builtin allows you to change additional shell optional behavior. supplied does not exist. ‘dotglob’ - If set, Bash includes filenames beginning with a '.' in the + If set, Bash includes filenames beginning with a ‘.’ in the results of filename expansion. The filenames ‘.’ and ‘..’ must always be matched explicitly, even if ‘dotglob’ is set. ‘execfail’ If this is set, a non-interactive shell will not exit if it cannot execute the file specified as an argument to the ‘exec’ - builtin command. An interactive shell does not exit if ‘exec’ - fails. + builtin. An interactive shell does not exit if ‘exec’ fails. ‘expand_aliases’ If set, aliases are expanded as described below under Aliases, @@ -5059,8 +5229,8 @@ This builtin allows you to change additional shell optional behavior. inherit the ‘ERR’ trap. ‘extglob’ - If set, the extended pattern matching features described above - (*note Pattern Matching::) are enabled. + If set, enable the extended pattern matching features + described above (*note Pattern Matching::). ‘extquote’ If set, ‘$'STRING'’ and ‘$"STRING"’ quoting is performed @@ -5082,10 +5252,10 @@ This builtin allows you to change additional shell optional behavior. If set, range expressions used in pattern matching bracket expressions (*note Pattern Matching::) behave as if in the traditional C locale when performing comparisons. That is, - the current locale's collating sequence is not taken into - account, so ‘b’ will not collate between ‘A’ and ‘B’, and - upper-case and lower-case ASCII characters will collate - together. + pattern matching does not take the current locale's collating + sequence into account, so ‘b’ will not collate between ‘A’ and + ‘B’, and upper-case and lower-case ASCII characters will + collate together. ‘globskipdots’ If set, filename expansion will never match the filenames ‘.’ @@ -5108,7 +5278,7 @@ This builtin allows you to change additional shell optional behavior. than overwriting the file. ‘histreedit’ - If set, and Readline is being used, a user is given the + If set, and Readline is being used, the user is given the opportunity to re-edit a failed history substitution. ‘histverify’ @@ -5134,9 +5304,10 @@ This builtin allows you to change additional shell optional behavior. enabled. ‘interactive_comments’ - Allow a word beginning with ‘#’ to cause that word and all - remaining characters on that line to be ignored in an - interactive shell. This option is enabled by default. + In an interactive shell, a word beginning with ‘#’ causes that + word and all remaining characters on that line to be ignored, + as in a non-interactive shell. This option is enabled by + default. ‘lastpipe’ If set, and job control is not active, the shell runs the last @@ -5167,13 +5338,13 @@ This builtin allows you to change additional shell optional behavior. ‘mailwarn’ If set, and a file that Bash is checking for mail has been - accessed since the last time it was checked, the message ‘"The - mail in MAILFILE has been read"’ is displayed. + accessed since the last time it was checked, Bash displays the + message ‘"The mail in MAILFILE has been read"’. ‘no_empty_cmd_completion’ - If set, and Readline is being used, Bash will not attempt to - search the ‘PATH’ for possible completions when completion is - attempted on an empty line. + If set, and Readline is being used, Bash does not search the + ‘PATH’ for possible completions when completion is attempted + on an empty line. ‘nocaseglob’ If set, Bash matches filenames in a case-insensitive fashion @@ -5204,9 +5375,9 @@ This builtin allows you to change additional shell optional behavior. Expansion::). This option is enabled by default. ‘progcomp’ - If set, the programmable completion facilities (*note - Programmable Completion::) are enabled. This option is - enabled by default. + If set, enable the programmable completion facilities (*note + Programmable Completion::). This option is enabled by + default. ‘progcomp_alias’ If set, and programmable completion is enabled, Bash treats a @@ -5314,10 +5485,12 @@ In some cases, Bash assigns a default value to the variable. ‘IFS’ A list of characters that separate fields; used when the shell - splits words as part of expansion. + splits words as part of expansion and by the ‘read’ builtin to + split lines into words. *Note Word Splitting::, for a description + of word splitting. ‘MAIL’ - If this parameter is set to a filename or directory name and the + If the value is set to a filename or directory name and the ‘MAILPATH’ variable is not set, Bash informs the user of the arrival of mail in the specified file or Maildir-format directory. @@ -5333,7 +5506,7 @@ In some cases, Bash assigns a default value to the variable. builtin. ‘OPTIND’ - The index of the last option argument processed by the ‘getopts’ + The index of the next argument to be processed by the ‘getopts’ builtin. ‘PATH’ @@ -5341,6 +5514,9 @@ In some cases, Bash assigns a default value to the variable. commands. A zero-length (null) directory name in the value of ‘PATH’ indicates the current directory. A null directory name may appear as two adjacent colons, or as an initial or trailing colon. + The default path is system-dependent, and is set by the + administrator who installs ‘bash’. A common value is + "/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin". ‘PS1’ The primary prompt string. The default value is ‘\s-\v\$ ’. *Note @@ -5365,13 +5541,14 @@ variables for controlling the job control facilities (*note Job Control Variables::). ‘_’ - ($_, an underscore.) At shell startup, set to the pathname used to - invoke the shell or shell script being executed as passed in the - environment or argument list. Subsequently, expands to the last + ($_, an underscore.) This has a number of meanings depending on + context. At shell startup, $_ set to the pathname used to invoke + the shell or shell script being executed as passed in the + environment or argument list. Subsequently, it expands to the last argument to the previous simple command executed in the foreground, - after expansion. Also set to the full pathname used to invoke each - command executed and placed in the environment exported to that - command. When checking mail, this parameter holds the name of the + after expansion. It is also set to the full pathname used to + invoke each command executed and placed in the environment exported + to that command. When checking mail, $_ expands to the name of the mail file. ‘BASH’ @@ -5382,9 +5559,9 @@ Variables::). list is a valid argument for the ‘-s’ option to the ‘shopt’ builtin command (*note The Shopt Builtin::). The options appearing in ‘BASHOPTS’ are those reported as ‘on’ by ‘shopt’. If this variable - is in the environment when Bash starts up, each shell option in the - list will be enabled before reading any startup files. This - variable is readonly. + is in the environment when Bash starts up, the shell enables each + option in the list before reading any startup files. This variable + is readonly. ‘BASHPID’ Expands to the process ID of the current Bash process. This @@ -5411,7 +5588,7 @@ Variables::). onto ‘BASH_ARGC’. The shell sets ‘BASH_ARGC’ only when in extended debugging mode (see *note The Shopt Builtin:: for a description of the ‘extdebug’ option to the ‘shopt’ builtin). Setting ‘extdebug’ - after the shell has started to execute a script, or referencing + after the shell has started to execute a subroutine, or referencing this variable when ‘extdebug’ is not set, may result in inconsistent values. Assignments to ‘BASH_ARGC’ have no effect, and it may not be unset. @@ -5421,37 +5598,37 @@ Variables::). Bash execution call stack. The final parameter of the last subroutine call is at the top of the stack; the first parameter of the initial call is at the bottom. When a subroutine is executed, - the parameters supplied are pushed onto ‘BASH_ARGV’. The shell - sets ‘BASH_ARGV’ only when in extended debugging mode (see *note - The Shopt Builtin:: for a description of the ‘extdebug’ option to - the ‘shopt’ builtin). Setting ‘extdebug’ after the shell has - started to execute a script, or referencing this variable when + the shell pushes the supplied parameters onto ‘BASH_ARGV’. The + shell sets ‘BASH_ARGV’ only when in extended debugging mode (see + *note The Shopt Builtin:: for a description of the ‘extdebug’ + option to the ‘shopt’ builtin). Setting ‘extdebug’ after the shell + has started to execute a script, or referencing this variable when ‘extdebug’ is not set, may result in inconsistent values. Assignments to ‘BASH_ARGV’ have no effect, and it may not be unset. ‘BASH_ARGV0’ When referenced, this variable expands to the name of the shell or shell script (identical to ‘$0’; *Note Special Parameters::, for - the description of special parameter 0). Assignment to - ‘BASH_ARGV0’ causes the value assigned to also be assigned to ‘$0’. - If ‘BASH_ARGV0’ is unset, it loses its special properties, even if - it is subsequently reset. + the description of special parameter 0). Assigning a value to + ‘BASH_ARGV0’ assigns the same value to ‘$0’. If ‘BASH_ARGV0’ is + unset, it loses its special properties, even if it is subsequently + reset. ‘BASH_CMDS’ An associative array variable whose members correspond to the internal hash table of commands as maintained by the ‘hash’ builtin - (*note Bourne Shell Builtins::). Elements added to this array - appear in the hash table; however, unsetting array elements - currently does not cause command names to be removed from the hash + (*note Bourne Shell Builtins::). Adding elements to this array + makes them appear in the hash table; however, unsetting array + elements currently does not remove command names from the hash table. If ‘BASH_CMDS’ is unset, it loses its special properties, even if it is subsequently reset. ‘BASH_COMMAND’ - The command currently being executed or about to be executed, - unless the shell is executing a command as the result of a trap, in - which case it is the command executing at the time of the trap. If - ‘BASH_COMMAND’ is unset, it loses its special properties, even if - it is subsequently reset. + Expands to the command currently being executed or about to be + executed, unless the shell is executing a command as the result of + a trap, in which case it is the command executing at the time of + the trap. If ‘BASH_COMMAND’ is unset, it loses its special + properties, even if it is subsequently reset. ‘BASH_COMPAT’ The value is used to set the shell's compatibility level. *Note @@ -5472,8 +5649,8 @@ Variables::). ‘BASH_ENV’ If this variable is set when Bash is invoked to execute a shell script, its value is expanded and used as the name of a startup - file to read before executing the script. *Note Bash Startup - Files::. + file to read before executing the script. Bash does not use ‘PATH’ + to search for the resultant filename. *Note Bash Startup Files::. ‘BASH_EXECUTION_STRING’ The command argument to the ‘-c’ invocation option. @@ -5489,8 +5666,8 @@ Variables::). unset. ‘BASH_LOADABLES_PATH’ - A colon-separated list of directories in which the shell looks for - dynamically loadable builtins specified by the ‘enable’ command. + A colon-separated list of directories in which the ‘enable’ command + looks for dynamically loadable builtins. ‘BASH_MONOSECONDS’ Each time this variable is referenced, it expands to the value @@ -5551,7 +5728,8 @@ Variables::). The value of ‘MACHTYPE’. ‘BASH_VERSION’ - The version number of the current instance of Bash. + Expands to a string describing the version of this instance of Bash + (e.g., 5.2.37(3)-release). ‘BASH_XTRACEFD’ If set to an integer corresponding to a valid file descriptor, Bash @@ -5583,6 +5761,12 @@ Variables::). functions invoked by the programmable completion facilities (*note Programmable Completion::). +‘COMP_KEY’ + The key (or final key of a key sequence) used to invoke the current + completion function. This variable is available only in shell + functions and external commands invoked by the programmable + completion facilities (*note Programmable Completion::). + ‘COMP_LINE’ The current command line. This variable is available only in shell functions and external commands invoked by the programmable @@ -5597,8 +5781,8 @@ Variables::). completion facilities (*note Programmable Completion::). ‘COMP_TYPE’ - Set to an integer value corresponding to the type of completion - attempted that caused a completion function to be called: , + Set to an integer value corresponding to the type of attempted + completion that caused a completion function to be called: , for normal completion, ‘?’, for listing completions after successive tabs, ‘!’, for listing alternatives on partial word completion, ‘@’, to list completions if the word is not unmodified, @@ -5606,10 +5790,6 @@ Variables::). shell functions and external commands invoked by the programmable completion facilities (*note Programmable Completion::). -‘COMP_KEY’ - The key (or final key of a key sequence) used to invoke the current - completion function. - ‘COMP_WORDBREAKS’ The set of characters that the Readline library treats as word separators when performing word completion. If ‘COMP_WORDBREAKS’ @@ -5645,8 +5825,8 @@ Variables::). ‘EMACS’ If Bash finds this variable in the environment when the shell - starts with value ‘t’, it assumes that the shell is running in an - Emacs shell buffer and disables line editing. + starts, and its value is ‘t’, Bash assumes that the shell is + running in an Emacs shell buffer and disables line editing. ‘ENV’ Expanded and executed similarly to ‘BASH_ENV’ (*note Bash Startup @@ -5674,20 +5854,18 @@ Variables::). ‘EXECIGNORE’ A colon-separated list of shell patterns (*note Pattern Matching::) - defining the list of filenames to be ignored by command search - using ‘PATH’. Files whose full pathnames match one of these - patterns are not considered executable files for the purposes of - completion and command execution via ‘PATH’ lookup. This does not - affect the behavior of the ‘[’, ‘test’, and ‘[[’ commands. Full - pathnames in the command hash table are not subject to - ‘EXECIGNORE’. Use this variable to ignore shared library files - that have the executable bit set, but are not executable files. - The pattern matching honors the setting of the ‘extglob’ shell - option. + defining the set of filenames to be ignored by command search using + ‘PATH’. Files whose full pathnames match one of these patterns are + not considered executable files for the purposes of completion and + command execution via ‘PATH’ lookup. This does not affect the + behavior of the ‘[’, ‘test’, and ‘[[’ commands. Full pathnames in + the command hash table are not subject to ‘EXECIGNORE’. Use this + variable to ignore shared library files that have the executable + bit set, but are not executable files. The pattern matching honors + the setting of the ‘extglob’ shell option. ‘FCEDIT’ - The editor used as a default by the ‘-e’ option to the ‘fc’ builtin - command. + The editor used as a default by the ‘fc’ builtin command. ‘FIGNORE’ A colon-separated list of suffixes to ignore when performing @@ -5713,9 +5891,9 @@ Variables::). information. ‘FUNCNEST’ - If set to a numeric value greater than 0, defines a maximum - function nesting level. Function invocations that exceed this - nesting level will cause the current command to abort. + A numeric value greater than 0 defines a maximum function nesting + level. Function invocations that exceed this nesting level will + cause the current command to abort. ‘GLOBIGNORE’ A colon-separated list of patterns defining the set of file names @@ -5725,7 +5903,7 @@ Variables::). matching honors the setting of the ‘extglob’ shell option. ‘GLOBSORT’ - Control how the results of filename expansion are sorted. The + Controls how the results of filename expansion are sorted. The value of this variable specifies the sort criteria and sort order for the results of filename expansion. If this variable is unset or set to the null string, filename expansion uses the historical @@ -5791,7 +5969,7 @@ Variables::). on the history list. If the list of values includes ‘ignorespace’, lines which begin with a space character are not saved in the history list. A value of ‘ignoredups’ causes lines which match the - previous history entry to not be saved. A value of ‘ignoreboth’ is + previous history entry not to be saved. A value of ‘ignoreboth’ is shorthand for ‘ignorespace’ and ‘ignoredups’. A value of ‘erasedups’ causes all previous lines matching the current line to be removed from the history list before that line is saved. Any @@ -5800,23 +5978,26 @@ Variables::). parser are saved on the history list, subject to the value of ‘HISTIGNORE’. The second and subsequent lines of a multi-line compound command are not tested, and are added to the history - regardless of the value of ‘HISTCONTROL’. + regardless of the value of ‘HISTCONTROL’ if the first line of the + command was saved. If the first line was not saved, the second and + subsequent lines of the command are not saved, either. ‘HISTFILE’ The name of the file to which the command history is saved. Bash assigns a default value of ‘~/.bash_history’. If ‘HISTFILE’ is - unset or null, the command history is not saved when a shell exits. + unset or null, the shell does not save the command history when it + exits. ‘HISTFILESIZE’ The maximum number of lines contained in the history file. When this variable is assigned a value, the history file is truncated, if necessary, to contain no more than that number of lines by removing the oldest entries. The history file is also truncated to - this size after writing it when a shell exits. If the value is 0, - the history file is truncated to zero size. Non-numeric values and - numeric values less than zero inhibit truncation. The shell sets - the default value to the value of ‘HISTSIZE’ after reading any - startup files. + this size after writing it when a shell exits or by the ‘history’ + builtin. If the value is 0, the history file is truncated to zero + size. Non-numeric values and numeric values less than zero inhibit + truncation. The shell sets the default value to the value of + ‘HISTSIZE’ after reading any startup files. ‘HISTIGNORE’ A colon-separated list of patterns used to decide which command @@ -5831,12 +6012,14 @@ Variables::). backslash; the backslash is removed before attempting a match. The second and subsequent lines of a multi-line compound command are not tested, and are added to the history regardless of the value of - ‘HISTIGNORE’. The pattern matching honors the setting of the + ‘HISTIGNORE’, if the first line was saved. If the first line was + not saved, the second and subsequent lines of the command are not + saved, either. The pattern matching honors the setting of the ‘extglob’ shell option. - ‘HISTIGNORE’ subsumes the function of ‘HISTCONTROL’. A pattern of - ‘&’ is identical to ‘ignoredups’, and a pattern of ‘[ ]*’ is - identical to ‘ignorespace’. Combining these two patterns, + ‘HISTIGNORE’ subsumes some of the function of ‘HISTCONTROL’. A + pattern of ‘&’ is identical to ‘ignoredups’, and a pattern of ‘[ + ]*’ is identical to ‘ignorespace’. Combining these two patterns, separating them with a colon, provides the functionality of ‘ignoreboth’. @@ -5851,10 +6034,10 @@ Variables::). If this variable is set and not null, its value is used as a format string for ‘strftime’(3) to print the time stamp associated with each history entry displayed by the ‘history’ builtin. If this - variable is set, time stamps are written to the history file so - they may be preserved across shell sessions. This uses the history - comment character to distinguish timestamps from other history - lines. + variable is set, the shell writes time stamps to the history file + so they may be preserved across shell sessions. This uses the + history comment character to distinguish timestamps from other + history lines. ‘HOSTFILE’ Contains the name of a file in the same format as ‘/etc/hosts’ that @@ -5875,13 +6058,12 @@ Variables::). ‘IGNOREEOF’ Controls the action of the shell on receipt of an ‘EOF’ character - as the sole input. If set, the value denotes the number of - consecutive ‘EOF’ characters that can be read as the first - character on an input line before the shell will exit. If the - variable exists but does not have a numeric value, or has no value, - then the default is 10. If the variable does not exist, then ‘EOF’ - signifies the end of input to the shell. This is only in effect - for interactive shells. + as the sole input. If set, the value is the number of consecutive + ‘EOF’ characters that can be read as the first character on an + input line before Bash exits. If the variable is set but does not + have a numeric value, or the value is null, then the default is 10. + If the variable is unset, then ‘EOF’ signifies the end of input to + the shell. This is only in effect for interactive shells. ‘INPUTRC’ The name of the Readline initialization file, overriding the @@ -5927,8 +6109,10 @@ Variables::). ‘LINENO’ The line number in the script or shell function currently - executing. If ‘LINENO’ is unset, it loses its special properties, - even if it is subsequently reset. + executing. Line numbers start with 1. When not in a script or + function, the value is not guaranteed to be meaningful. If + ‘LINENO’ is unset, it loses its special properties, even if it is + subsequently reset. ‘LINES’ Used by the ‘select’ command to determine the column length for @@ -5957,7 +6141,8 @@ Variables::). ‘OPTERR’ If set to the value 1, Bash displays error messages generated by - the ‘getopts’ builtin command. + the ‘getopts’ builtin command. ‘OPTERR’ is initialized to 1 each + time the shell is invoked. ‘OSTYPE’ A string describing the operating system Bash is running on. @@ -6018,8 +6203,10 @@ Variables::). ‘RANDOM’ Each time this parameter is referenced, it expands to a random integer between 0 and 32767. Assigning a value to this variable - seeds the random number generator. If ‘RANDOM’ is unset, it loses - its special properties, even if it is subsequently reset. + initializes (seeds) the random number generator. Seeding the + random number generator with the same constant value will produce + the same sequence of values. If ‘RANDOM’ is unset, it loses its + special properties, even if it is subsequently reset. ‘READLINE_ARGUMENT’ Any numeric argument given to a Readline command that was defined @@ -6040,7 +6227,8 @@ Variables::). for use with ‘bind -x’ (*note Bash Builtins::). ‘REPLY’ - The default variable for the ‘read’ builtin. + The default variable for the ‘read’ builtin; set to the line read + when ‘read’ is not supplied a variable name argument. ‘SECONDS’ This variable expands to the number of seconds since the shell was @@ -6062,9 +6250,9 @@ Variables::). list is a valid argument for the ‘-o’ option to the ‘set’ builtin command (*note The Set Builtin::). The options appearing in ‘SHELLOPTS’ are those reported as ‘on’ by ‘set -o’. If this - variable is in the environment when Bash starts up, each shell - option in the list will be enabled before reading any startup - files. This variable is readonly. + variable is in the environment when Bash starts up, the shell + enables each option in the list before reading any startup files. + This variable is readonly. ‘SHLVL’ Incremented by one each time a new instance of Bash is started. @@ -6105,9 +6293,10 @@ Variables::). The optional P is a digit specifying the precision, the number of fractional digits after a decimal point. A value of 0 causes no - decimal point or fraction to be output. At most six places after - the decimal point may be specified; values of P greater than 6 are - changed to 6. If P is not specified, the value 3 is used. + decimal point or fraction to be output. ‘time’ will print at most + six digits after the decimal point; values of P greater than 6 are + changed to 6. If P is not specified, ‘time’ prints three digits + after the decimal point. The optional ‘l’ specifies a longer format, including minutes, of the form MMmSS.FFs. The value of P determines whether or not the @@ -6119,11 +6308,11 @@ Variables::). A trailing newline is added when the format string is displayed. ‘TMOUT’ - If set to a value greater than zero, ‘TMOUT’ is treated as the - default timeout for the ‘read’ builtin (*note Bash Builtins::). - The ‘select’ command (*note Conditional Constructs::) terminates if - input does not arrive after ‘TMOUT’ seconds when input is coming - from a terminal. + If set to a value greater than zero, the ‘read’ builtin uses the + value as its default timeout (*note Bash Builtins::). The ‘select’ + command (*note Conditional Constructs::) terminates if input does + not arrive after ‘TMOUT’ seconds when input is coming from a + terminal. In an interactive shell, the value is interpreted as the number of seconds to wait for a line of input after issuing the primary @@ -6191,8 +6380,8 @@ single-character options to be recognized. builtin). ‘--dump-po-strings’ - A list of all double-quoted strings preceded by ‘$’ is printed on - the standard output in the GNU ‘gettext’ PO (portable object) file + Print a list of all double-quoted strings preceded by ‘$’ on the + standard output in the GNU ‘gettext’ PO (portable object) file format. Equivalent to ‘-D’ except for the output format. ‘--dump-strings’ @@ -6259,23 +6448,23 @@ invocation which are not available with the ‘set’ builtin. Make this shell act as if it had been directly invoked by login. When the shell is interactive, this is equivalent to starting a login shell with ‘exec -l bash’. When the shell is not - interactive, the login shell startup files will be executed. ‘exec - bash -l’ or ‘exec bash --login’ will replace the current shell with - a Bash login shell. *Note Bash Startup Files::, for a description - of the special behavior of a login shell. + interactive, it will read and execute the login shell startup + files. ‘exec bash -l’ or ‘exec bash --login’ will replace the + current shell with a Bash login shell. *Note Bash Startup Files::, + for a description of the special behavior of a login shell. ‘-r’ Make the shell a restricted shell (*note The Restricted Shell::). ‘-s’ If this option is present, or if no arguments remain after option - processing, then commands are read from the standard input. This + processing, then Bash reads commands from the standard input. This option allows the positional parameters to be set when invoking an interactive shell or when reading input through a pipe. ‘-D’ - A list of all double-quoted strings preceded by ‘$’ is printed on - the standard output. These are the strings that are subject to + Print a list of all double-quoted strings preceded by ‘$’ on the + standard output. These are the strings that are subject to language translation when the current locale is not ‘C’ or ‘POSIX’ (*note Locale Translation::). This implies the ‘-n’ option; no commands will be executed. @@ -6284,8 +6473,8 @@ invocation which are not available with the ‘set’ builtin. SHOPT_OPTION is one of the shell options accepted by the ‘shopt’ builtin (*note The Shopt Builtin::). If SHOPT_OPTION is present, ‘-O’ sets the value of that option; ‘+O’ unsets it. If - SHOPT_OPTION is not supplied, the names and values of the shell - options accepted by ‘shopt’ are printed on the standard output. If + SHOPT_OPTION is not supplied, Bash prints the names and values of + the shell options accepted by ‘shopt’ on the standard output. If the invocation option is ‘+O’, the output is displayed in a format that may be reused as input. @@ -6303,9 +6492,9 @@ or one invoked with the ‘--login’ option. An _interactive_ shell is one started without non-option arguments, unless ‘-s’ is specified, without specifying the ‘-c’ option, and whose -input and output are both connected to terminals (as determined by -‘isatty(3)’), or one started with the ‘-i’ option. *Note Interactive -Shells::, for more information. +input and output (using the standard error) are both connected to +terminals (as determined by ‘isatty(3)’), or one started with the ‘-i’ +option. *Note Interactive Shells::, for more information. If arguments remain after option processing, and neither the ‘-c’ nor the ‘-s’ option has been supplied, the first argument is assumed to be @@ -6348,10 +6537,10 @@ commands from the file ‘~/.bash_logout’, if it exists. Invoked as an interactive non-login shell ......................................... -When an interactive shell that is not a login shell is started, Bash +When Bash runs as an interactive shell that is not a login shell, it reads and executes commands from ‘~/.bashrc’, if that file exists. This may be inhibited by using the ‘--norc’ option. The ‘--rcfile FILE’ -option will cause Bash to use FILE instead of ‘~/.bashrc’. +option causes Bash to use FILE instead of ‘~/.bashrc’. So, typically, your ‘~/.bash_profile’ contains the line if [ -f ~/.bashrc ]; then . ~/.bashrc; fi @@ -6366,7 +6555,7 @@ expands its value if it appears there, and uses the expanded value as the name of a file to read and execute. Bash behaves as if the following command were executed: if [ -n "$BASH_ENV" ]; then . "$BASH_ENV"; fi -but the value of the ‘PATH’ variable is not used to search for the +but does not the value of the ‘PATH’ variable to search for the filename. As noted above, if a non-interactive shell is invoked with the @@ -6383,14 +6572,16 @@ conforming to the POSIX standard as well. When invoked as an interactive login shell, or as a non-interactive shell with the ‘--login’ option, it first attempts to read and execute commands from ‘/etc/profile’ and ‘~/.profile’, in that order. The -‘--noprofile’ option may be used to inhibit this behavior. When invoked -as an interactive shell with the name ‘sh’, Bash looks for the variable -‘ENV’, expands its value if it is defined, and uses the expanded value -as the name of a file to read and execute. Since a shell invoked as -‘sh’ does not attempt to read and execute commands from any other -startup files, the ‘--rcfile’ option has no effect. A non-interactive -shell invoked with the name ‘sh’ does not attempt to read any other -startup files. +‘--noprofile’ option may be used to inhibit this behavior. + + When invoked as an interactive shell with the name ‘sh’, Bash looks +for the variable ‘ENV’, expands its value if it is defined, and uses the +expanded value as the name of a file to read and execute. Since a shell +invoked as ‘sh’ does not attempt to read and execute commands from any +other startup files, the ‘--rcfile’ option has no effect. + + A non-interactive shell invoked with the name ‘sh’ does not attempt +to read any other startup files. When invoked as ‘sh’, Bash enters POSIX mode after the startup files are read. @@ -6400,8 +6591,8 @@ Invoked in POSIX mode When Bash is started in POSIX mode, as with the ‘--posix’ command line option, it follows the POSIX standard for startup files. In this mode, -interactive shells expand the ‘ENV’ variable and commands are read and -executed from the file whose name is the expanded value. No other +interactive shells expand the ‘ENV’ variable and read and execute +commands from the file whose name is the expanded value. No other startup files are read. Invoked by remote shell daemon @@ -6409,14 +6600,14 @@ Invoked by remote shell daemon Bash attempts to determine when it is being run with its standard input connected to a network connection, as when executed by the historical -remote shell daemon, usually ‘rshd’, or the secure shell daemon ‘sshd’. -If Bash determines it is being run non-interactively in this fashion, it -reads and executes commands from ‘~/.bashrc’, if that file exists and is -readable. It will not do this if invoked as ‘sh’. The ‘--norc’ option -may be used to inhibit this behavior, and the ‘--rcfile’ option will -make Bash use a different file instead of ‘~/.bashrc’, but neither -‘rshd’ nor ‘sshd’ generally invoke the shell with those options or allow -them to be specified. +and rarely-seen remote shell daemon, usually ‘rshd’, or the secure shell +daemon ‘sshd’. If Bash determines it is being run non-interactively in +this fashion, it reads and executes commands from ‘~/.bashrc’, if that +file exists and is readable. It will not do this if invoked as ‘sh’. +The ‘--norc’ option may be used to inhibit this behavior, and the +‘--rcfile’ option will make Bash use a different file instead of +‘~/.bashrc’, but neither ‘rshd’ nor ‘sshd’ generally invoke the shell +with those options or allow them to be specified. Invoked with unequal effective and real UID/GIDs ................................................ @@ -6457,7 +6648,7 @@ and error output are both connected to terminals (as determined by terminal. The ‘-s’ invocation option may be used to set the positional -parameters when an interactive shell is started. +parameters when an interactive shell starts.  File: bash.info, Node: Is this Shell Interactive?, Next: Interactive Shell Behavior, Prev: What is an Interactive Shell?, Up: Interactive Shells @@ -6492,35 +6683,35 @@ File: bash.info, Node: Interactive Shell Behavior, Prev: Is this Shell Interac When the shell is running interactively, it changes its behavior in several ways. - 1. Startup files are read and executed as described in *note Bash + 1. Bash reads and executes startup files as described in *note Bash Startup Files::. 2. Job Control (*note Job Control::) is enabled by default. When job control is in effect, Bash ignores the keyboard-generated job control signals ‘SIGTTIN’, ‘SIGTTOU’, and ‘SIGTSTP’. - 3. Bash expands and displays ‘PS1’ before reading the first line of a + 3. Bash executes the values of the set elements of the + ‘PROMPT_COMMAND’ array variable as commands before printing the + primary prompt, ‘$PS1’ (*note Bash Variables::). + + 4. Bash expands and displays ‘PS1’ before reading the first line of a command, and expands and displays ‘PS2’ before reading the second and subsequent lines of a multi-line command. Bash expands and displays ‘PS0’ after it reads a command but before executing it. See *note Controlling the Prompt::, for a complete list of prompt string escape sequences. - 4. Bash executes the values of the set elements of the - ‘PROMPT_COMMAND’ array variable as commands before printing the - primary prompt, ‘$PS1’ (*note Bash Variables::). - - 5. Readline (*note Command Line Editing::) is used to read commands + 5. Bash uses Readline (*note Command Line Editing::) to read commands from the user's terminal. 6. Bash inspects the value of the ‘ignoreeof’ option to ‘set -o’ instead of exiting immediately when it receives an ‘EOF’ on its standard input when reading a command (*note The Set Builtin::). - 7. Command history (*note Bash History Facilities::) and history - expansion (*note History Interaction::) are enabled by default. - Bash will save the command history to the file named by ‘$HISTFILE’ - when a shell with history enabled exits. + 7. Bash enables Command history (*note Bash History Facilities::) and + history expansion (*note History Interaction::) by default. When a + shell with history enabled exits, Bash saves the command history to + the file named by ‘$HISTFILE’. 8. Alias expansion (*note Aliases::) is performed by default. @@ -6533,16 +6724,16 @@ several ways. 11. An interactive login shell sends a ‘SIGHUP’ to all jobs on exit if the ‘huponexit’ shell option has been enabled (*note Signals::). - 12. The ‘-n’ invocation option is ignored, and ‘set -n’ has no effect - (*note The Set Builtin::). + 12. The ‘-n’ option has no effect, whether at invocation or when using + ‘set -n’ (*note The Set Builtin::). 13. Bash will check for mail periodically, depending on the values of the ‘MAIL’, ‘MAILPATH’, and ‘MAILCHECK’ shell variables (*note Bash Variables::). - 14. Expansion errors due to references to unbound shell variables - after ‘set -u’ has been enabled will not cause the shell to exit - (*note The Set Builtin::). + 14. The shell will not exit on expansion errors due to references to + unbound shell variables after ‘set -u’ has been enabled (*note The + Set Builtin::). 15. The shell will not exit on expansion errors caused by VAR being unset or null in ‘${VAR:?WORD}’ expansions (*note Shell Parameter @@ -6581,10 +6772,12 @@ Bourne Shell Builtins::). The ‘test’ and ‘[’ commands determine their behavior based on the number of arguments; see the descriptions of those commands for any other command-specific actions. - Expressions may be unary or binary, and are formed from the following -primaries. Unary expressions are often used to examine the status of a -file. There are string operators and numeric comparison operators as -well. Bash handles several filenames specially when they are used in + Expressions may be unary or binary, and are formed from the primaries +listed below. Unary expressions are often used to examine the status of +a file or shell variable. Binary operators are used for string, +numeric, and file attribute comparisons. + + Bash handles several filenames specially when they are used in expressions. If the operating system on which Bash is running provides these special files, Bash will use them; otherwise it will emulate them internally with this behavior: If the FILE argument to one of the @@ -6655,7 +6848,8 @@ link itself. True if FILE exists and is a symbolic link. ‘-N FILE’ - True if FILE exists and has been modified since it was last read. + True if FILE exists and has been modified since it was last + accessed. ‘-O FILE’ True if FILE exists and is owned by the effective user id. @@ -6729,15 +6923,16 @@ File: bash.info, Node: Shell Arithmetic, Next: Aliases, Prev: Bash Conditiona ==================== The shell allows arithmetic expressions to be evaluated, as one of the -shell expansions or by using the ‘((’ compound command, the ‘let’ -builtin, or the ‘-i’ option to the ‘declare’ builtin. +shell expansions or by using the ‘((’ compound command, the ‘let’ and +‘declare’ builtins, the arithmetic ‘for’ command, the ‘[[’ conditional +command, or the ‘-i’ option to the ‘declare’ builtin. - 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 following list of operators is grouped into -levels of equal-precedence operators. The levels are listed in order of -decreasing precedence. + Evaluation is done in the largest fixed-width integers available, +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 following list of +operators is grouped into levels of equal-precedence operators. The +levels are listed in order of decreasing precedence. ‘ID++ ID--’ variable post-increment and post-decrement @@ -6796,13 +6991,17 @@ decreasing precedence. Shell variables are allowed as operands; parameter expansion is performed 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 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 ‘integer’ attribute using ‘declare -i’ is assigned a value. A -null value evaluates to 0. A shell variable need not have its ‘integer’ -attribute turned on to be used in an expression. +parameter expansion syntax. This means you can use .Q x , where \fIx\fP +is a shell variable name, in an arithmetic expression, and the shell +will evaluate its value as an expression and use the result. A shell +variable that is null or unset evaluates to 0 when referenced by name in +an expression. + + The value of a variable is evaluated as an arithmetic expression when +it is referenced, or when a variable which has been given the ‘integer’ +attribute using ‘declare -i’ is assigned a value. A null value +evaluates to 0. A shell variable need not have its ‘integer’ 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 @@ -6816,7 +7015,7 @@ represented by the lowercase letters, the uppercase letters, ‘@’, and uppercase letters may be used interchangeably to represent numbers between 10 and 35. - Operators are evaluated in order of precedence. Sub-expressions in + Operators are evaluated in precedence order. Sub-expressions in parentheses are evaluated first and may override the precedence rules above. @@ -6847,8 +7046,8 @@ expanded a second time. This means that one may alias ‘ls’ to ‘"ls -F"’, for instance, and Bash does not try to recursively expand the replacement text. - If the last character of the alias value is a ‘blank’, then the next -command word following the alias is also checked for alias expansion. + If the last character of the alias value is a ‘blank’, then the shell +checks the next command word following the alias for alias expansion. Aliases are created and listed with the ‘alias’ command, and removed with the ‘unalias’ command. @@ -6867,14 +7066,15 @@ 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 after -that function is executed. To be safe, always put alias definitions on -a separate line, and do not use ‘alias’ in compound commands. +effect until the shell reads the next line of input. 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 +after that function is executed. To be safe, always put alias +definitions on a separate line, and do not use ‘alias’ in compound +commands. For almost every purpose, shell functions are preferred over aliases. @@ -6898,7 +7098,8 @@ to using the syntax NAME[SUBSCRIPT]=VALUE The SUBSCRIPT is treated as an arithmetic expression that must evaluate -to a number. To explicitly declare an array, use +to a number greater than or equal to zero. To explicitly declare an +array, use declare -a NAME The syntax declare -a NAME[SUBSCRIPT] @@ -6911,19 +7112,21 @@ Associative arrays are created using and ‘readonly’ builtins. Each attribute applies to all members of an array. - Arrays are assigned to using compound assignments of the form + Arrays are assigned using compound assignments of the form NAME=(VALUE1 VALUE2 ... ) where each VALUE may be of the form ‘[SUBSCRIPT]=’STRING. Indexed array -assignments do not require anything but STRING. When assigning to -indexed arrays, if the optional subscript is supplied, that index is -assigned to; otherwise the index of the element assigned is the last -index assigned to by the statement plus one. Indexing starts at zero. +assignments do not require anything but STRING. Each VALUE in the list undergoes the shell expansions described above (*note Shell Expansions::), but VALUEs that are valid variable assignments including the brackets and subscript do not undergo brace expansion and word splitting, as with individual variable assignments. + When assigning to indexed arrays, if the optional subscript is +supplied, that index is assigned to; otherwise the index of the element +assigned is the last index assigned to by the statement plus one. +Indexing starts at zero. + When assigning to an associative array, the words in a compound assignment may be either assignment statements, for which the subscript is required, or a list of words that is interpreted as a sequence of @@ -6947,8 +7150,8 @@ end of the array, and an index of -1 references the last element. using the compound assignment syntax; see *note Shell Parameters:: above. - Any element of an array may be referenced using ‘${NAME[SUBSCRIPT]}’. -The braces are required to avoid conflicts with the shell's filename + An array element is referenced using ‘${NAME[SUBSCRIPT]}’. The +braces are required to avoid conflicts with the shell's filename expansion operators. If the SUBSCRIPT is ‘@’ or ‘*’, the word expands to all members of the array NAME, unless otherwise noted in the description of a builtin or word expansion. These subscripts differ @@ -6958,16 +7161,20 @@ each array member separated by the first character of the ‘IFS’ variable, and ‘${NAME[@]}’ expands each element of NAME to a separate word. When there are no array members, ‘${NAME[@]}’ expands to nothing. If the double-quoted expansion occurs within a word, the expansion of -the first parameter is joined with the beginning part of the original -word, and the expansion of the last parameter is joined with the last -part of the original word. This is analogous to the expansion of the -special parameters ‘@’ and ‘*’. ‘${#NAME[SUBSCRIPT]}’ expands to the -length of ‘${NAME[SUBSCRIPT]}’. If SUBSCRIPT is ‘@’ or ‘*’, the -expansion is the number of elements in the array. If the SUBSCRIPT used -to reference an element of an indexed array evaluates to a number less -than zero, it is interpreted as relative to one greater than the maximum -index of the array, so negative indices count back from the end of the -array, and an index of -1 refers to the last element. +the first parameter is joined with the beginning part of the expansion +of the original word, and the expansion of the last parameter is joined +with the last part of the expansion of the original word. This is +analogous to the expansion of the special parameters ‘@’ and ‘*’. + + ‘${#NAME[SUBSCRIPT]}’ expands to the length of ‘${NAME[SUBSCRIPT]}’. +If SUBSCRIPT is ‘@’ or ‘*’, the expansion is the number of elements in +the array. + + If the SUBSCRIPT used to reference an element of an indexed array +evaluates to a number less than zero, it is interpreted as relative to +one greater than the maximum index of the array, so negative indices +count back from the end of the array, and an index of -1 refers to the +last element. Referencing an array variable without a subscript is equivalent to referencing with a subscript of 0. Any reference to a variable using a @@ -6983,21 +7190,21 @@ to the expansion of the special parameters ‘@’ and ‘*’ within double quotes. The ‘unset’ builtin is used to destroy arrays. ‘unset -NAME[SUBSCRIPT]’ destroys the array element at index SUBSCRIPT. -Negative subscripts to indexed arrays are interpreted as described -above. Unsetting the last element of an array variable does not unset -the variable. ‘unset NAME’, where NAME is an array, removes the entire +NAME[SUBSCRIPT]’ unsets the array element at index SUBSCRIPT. Negative +subscripts to indexed arrays are interpreted as described above. +Unsetting the last element of an array variable does not unset the +variable. ‘unset NAME’, where NAME is an array, removes the entire array. ‘unset NAME[SUBSCRIPT]’ behaves differently depending on the -array type when given a subscript of ‘*’ or ‘@’. When NAME is an -associative array, it removes the element with key ‘*’ or ‘@’. If NAME -is an indexed array, ‘unset’ removes all of the elements, but does not -remove the array itself. +array type when SUBSCRIPT is ‘*’ or ‘@’. When NAME is an associative +array, it removes the element with key ‘*’ or ‘@’. If NAME is an +indexed array, ‘unset’ removes all of the elements, but does not remove +the array itself. When using a variable name with a subscript as an argument to a command, such as with ‘unset’, without using the word expansion syntax -described above, the argument is subject to the shell's filename -expansion. If filename expansion is not desired, the argument should be -quoted. +described above (e.g., unset a[4]), the argument is subject to the +shell's filename expansion. Quote the argument if pathname expansion is +not desired (e.g., unset 'a[4]'). The ‘declare’, ‘local’, and ‘readonly’ builtins each accept a ‘-a’ option to specify an indexed array and a ‘-A’ option to specify an @@ -7006,7 +7213,9 @@ The ‘read’ builtin accepts a ‘-a’ option to assign a list of words read from the standard input to an array, and can read values from the standard input into individual array elements. The ‘set’ and ‘declare’ builtins display array values in a way that allows them to be reused as -input. +input. Other builtins accept array name arguments as well (e.g., +‘mapfile’); see the descriptions of individual builtins for details. +The shell provides a number of builtin array variables.  File: bash.info, Node: The Directory Stack, Next: Controlling the Prompt, Prev: Arrays, Up: Bash Features @@ -7038,10 +7247,12 @@ File: bash.info, Node: Directory Stack Builtins, Up: The Directory Stack ‘dirs’ dirs [-clpv] [+N | -N] - Display the list of currently remembered directories. Directories - are added to the list with the ‘pushd’ command; the ‘popd’ command - removes directories from the list. The current directory is always - the first directory in the stack. + Without options, display the list of currently remembered + directories. Directories are added to the list with the ‘pushd’ + command; the ‘popd’ command removes directories from the list. The + current directory is always the first directory in the stack. + + Options, if supplied, have the following meanings: ‘-c’ Clears the directory stack by deleting all of the elements. @@ -7066,7 +7277,7 @@ File: bash.info, Node: Directory Stack Builtins, Up: The Directory Stack ‘popd’ popd [-n] [+N | -N] - Removes elements from the directory stack. The elements are + Remove elements from the directory stack. The elements are numbered from 0 starting at the first directory listed by ‘dirs’; that is, ‘popd’ is equivalent to ‘popd +0’. @@ -7076,14 +7287,13 @@ File: bash.info, Node: Directory Stack Builtins, Up: The Directory Stack Arguments, if supplied, have the following meanings: ‘-n’ - Suppresses the normal change of directory when removing - directories from the stack, so that only the stack is - manipulated. + Suppress the normal change of directory when removing + directories from the stack, only manipulate the stack. ‘+N’ - Removes the Nth directory (counting from the left of the list + Remove the Nth directory (counting from the left of the list printed by ‘dirs’), starting with zero, from the stack. ‘-N’ - Removes the Nth directory (counting from the right of the list + Remove the Nth directory (counting from the right of the list printed by ‘dirs’), starting with zero, from the stack. If the top element of the directory stack is modified, and the ‘-n’ @@ -7092,8 +7302,8 @@ File: bash.info, Node: Directory Stack Builtins, Up: The Directory Stack returns a non-zero value. Otherwise, ‘popd’ returns an unsuccessful status if an invalid - option is encountered, the directory stack is empty, or a - non-existent directory stack entry is specified. + option is specified, the directory stack is empty, or N specifies a + non-existent directory stack entry. If the ‘popd’ command is successful, Bash runs ‘dirs’ to show the final contents of the directory stack, and the return status is 0. @@ -7101,7 +7311,7 @@ File: bash.info, Node: Directory Stack Builtins, Up: The Directory Stack ‘pushd’ pushd [-n] [+N | -N | DIR] - Adds a directory to the top of the directory stack, or rotates the + Add a directory to the top of the directory stack, or rotate the stack, making the new top of the stack the current working directory. With no arguments, ‘pushd’ exchanges the top two elements of the directory stack. @@ -7109,29 +7319,28 @@ File: bash.info, Node: Directory Stack Builtins, Up: The Directory Stack Arguments, if supplied, have the following meanings: ‘-n’ - Suppresses the normal change of directory when rotating or - adding directories to the stack, so that only the stack is - manipulated. + Suppress the normal change of directory when rotating or + adding directories to the stack, only manipulate the stack. ‘+N’ - Brings the Nth directory (counting from the left of the list - printed by ‘dirs’, starting with zero) to the top of the list - by rotating the stack. + Rotate the stack so that the Nth directory (counting from the + left of the list printed by ‘dirs’, starting with zero) is at + the top. ‘-N’ - Brings the Nth directory (counting from the right of the list - printed by ‘dirs’, starting with zero) to the top of the list - by rotating the stack. + Rotate the stack so that the Nth directory (counting from the + right of the list printed by ‘dirs’, starting with zero) is at + the top. ‘DIR’ - Makes DIR be the top of the stack. + Make DIR be the top of the stack. After the stack has been modified, if the ‘-n’ option was not supplied, ‘pushd’ uses the ‘cd’ builtin to change to the directory at the top of the stack. If the ‘cd’ fails, ‘pushd’ returns a non-zero value. - Otherwise, if no arguments are supplied, ‘pushd’ returns 0 unless - the directory stack is empty. When rotating the directory stack, - ‘pushd’ returns 0 unless the directory stack is empty or a - non-existent directory stack element is specified. + Otherwise, if no arguments are supplied, ‘pushd’ returns zero + unless the directory stack is empty. When rotating the directory + stack, ‘pushd’ returns zero unless the directory stack is empty or + N specifies a non-existent directory stack element. If the ‘pushd’ command is successful, Bash runs ‘dirs’ to show the final contents of the directory stack. @@ -7142,13 +7351,8 @@ File: bash.info, Node: Controlling the Prompt, Next: The Restricted Shell, Pr 6.9 Controlling the Prompt ========================== -Bash examines the value of the array variable ‘PROMPT_COMMAND’ just -before printing each primary prompt. If any elements in -‘PROMPT_COMMAND’ are set and non-null, Bash executes each value, in -numeric order, just as if it had been typed on the command line. - - In addition, the following table describes the special characters -which can appear in the prompt variables ‘PS0’, ‘PS1’, ‘PS2’, and ‘PS4’: +In addition, the following table describes the special characters which +can appear in the prompt variables ‘PS0’, ‘PS1’, ‘PS2’, and ‘PS4’: ‘\a’ A bell character. @@ -7161,19 +7365,19 @@ which can appear in the prompt variables ‘PS0’, ‘PS1’, ‘PS2’, and ‘\e’ An escape character. ‘\h’ - The hostname, up to the first '.'. + The hostname, up to the first ‘.’. ‘\H’ The hostname. ‘\j’ The number of jobs currently managed by the shell. ‘\l’ - The basename of the shell's terminal device name. + The basename of the shell's terminal device name (e.g., "ttys0"). ‘\n’ A newline. ‘\r’ A carriage return. ‘\s’ - The name of the shell, the basename of ‘$0’ (the portion following + The name of the shell: the basename of ‘$0’ (the portion following the final slash). ‘\t’ The time, in 24-hour HH:MM:SS format. @@ -7186,9 +7390,9 @@ which can appear in the prompt variables ‘PS0’, ‘PS1’, ‘PS2’, and ‘\u’ The username of the current user. ‘\v’ - The version of Bash (e.g., 2.00) + The Bash version (e.g., 2.00). ‘\V’ - The release of Bash, version + patchlevel (e.g., 2.00.0) + The Bash release, version + patchlevel (e.g., 2.00.0). ‘\w’ The value of the ‘PWD’ shell variable (‘$PWD’), with ‘$HOME’ abbreviated with a tilde (uses the ‘$PROMPT_DIRTRIM’ variable). @@ -7230,7 +7434,7 @@ File: bash.info, Node: The Restricted Shell, Next: Bash POSIX Mode, Prev: Con ========================= If Bash is started with the name ‘rbash’, or the ‘--restricted’ or ‘-r’ -option is supplied at invocation, the shell becomes restricted. A +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. A restricted shell behaves identically to ‘bash’ with the exception that the following are disallowed or not performed: @@ -7241,6 +7445,8 @@ with the exception that the following are disallowed or not performed: • Specifying command names containing slashes. • Specifying a filename containing a slash as an argument to the ‘.’ builtin command. + • Using the ‘-p’ option to the ‘.’ builtin command to specify a + search path. • Specifying a filename containing a slash as an argument to the ‘history’ builtin command. • Specifying a filename containing a slash as an argument to the ‘-p’ @@ -7676,9 +7882,10 @@ 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 -particular version (e.g., setting ‘compat32’ 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). +particular version (e.g., setting ‘compat32’ means that quoting the +right hand side 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, ‘compat32’, it may affect the behavior of other compatibility levels up to and including the current compatibility @@ -7697,13 +7904,14 @@ assigned to this variable (a decimal version number like 4.2, or an integer corresponding to the ‘compat’NN option, like 42) determines the compatibility level. - Starting with bash-4.4, Bash has begun deprecating older -compatibility levels. Eventually, the options will be removed in favor -of ‘BASH_COMPAT’. + Starting with bash-4.4, Bash began deprecating older compatibility +levels. Eventually, the options will be removed in favor of +‘BASH_COMPAT’. - Bash-5.0 was the final version for which there will be an individual -shopt option for the previous version. Users should control the -compatibility level with ‘BASH_COMPAT’. + Bash-5.0 was the final version for which there was an individual +shopt option for the previous version. ‘BASH_COMPAT’ is the only +mechanism to control the compatibility level in versions newer than +bash-5.0. The following table describes the behavior changes controlled by each compatibility level setting. The ‘compat’NN tag is used as shorthand @@ -7714,59 +7922,59 @@ and later versions, the ‘BASH_COMPAT’ variable is preferred, and it is required for bash-5.1 and later versions. ‘compat31’ - • quoting the rhs of the ‘[[’ command's regexp matching operator + • Quoting the rhs of the ‘[[’ command's regexp matching operator (=~) has no special effect ‘compat40’ - • the ‘<’ and ‘>’ operators to the ‘[[’ command do not consider + • The ‘<’ and ‘>’ operators to the ‘[[’ command do not consider the current locale when comparing strings; they use ASCII ordering. Bash versions prior to bash-4.1 use ASCII collation and strcmp(3); bash-4.1 and later use the current locale's collation sequence and strcoll(3). ‘compat41’ - • in posix mode, ‘time’ may be followed by options and still be + • In posix mode, ‘time’ may be followed by options and still be recognized as a reserved word (this is POSIX interpretation - 267) - • in posix mode, the parser requires that an even number of + 267). + • In posix mode, the parser requires that an even number of single quotes occur in the WORD 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) + (this is POSIX interpretation 221). ‘compat42’ - • the replacement string in double-quoted pattern substitution + • The replacement string in double-quoted pattern substitution does not undergo quote removal, as it does in versions after - bash-4.2 - • in posix mode, single quotes are considered special when + bash-4.2. + • In posix mode, single quotes are considered special when expanding the WORD 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 interpretation 221); in later versions, single quotes are not special within - double-quoted word expansions + double-quoted word expansions. ‘compat43’ - • word expansion errors are considered non-fatal errors that + • 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) - • when executing a shell function, the loop state + shell to exit). + • When executing a shell function, the loop state (while/until/etc.) is not reset, so ‘break’ or ‘continue’ in that function will break or continue loops in the calling context. Bash-4.4 and later reset the loop state to prevent - this + this. ‘compat44’ - • the shell sets up the values used by ‘BASH_ARGV’ and + • The shell sets up the values used by ‘BASH_ARGV’ and ‘BASH_ARGC’ so they can expand to the shell's positional - parameters even if extended debugging mode is not enabled - • a subshell inherits loops from its parent context, so ‘break’ + parameters even if extended debugging mode is not enabled. + • A subshell inherits loops from its parent context, so ‘break’ or ‘continue’ will cause the subshell to exit. Bash-5.0 and - later reset the loop state to prevent the exit - • variable assignments preceding builtins like ‘export’ and + later reset the loop state to prevent the exit. + • Variable assignments preceding builtins like ‘export’ and ‘readonly’ that set attributes continue to affect variables with the same name in the calling environment even if the - shell is not in posix mode + shell is not in posix mode. ‘compat50 (set using BASH_COMPAT)’ • Bash-5.1 changed the way ‘$RANDOM’ is generated to introduce @@ -7774,7 +7982,7 @@ required for bash-5.1 and later versions. set to 50 or lower, it reverts to the method from bash-5.0 and previous versions, so seeding the random number generator by assigning a value to ‘RANDOM’ will produce the same sequence - as in bash-5.0 + as in bash-5.0. • If the command hash table is empty, Bash versions prior to bash-5.1 printed an informational message to that effect, even when producing output that can be reused as input. Bash-5.1 @@ -7784,21 +7992,21 @@ required for bash-5.1 and later versions. • The ‘unset’ builtin will unset the array ‘a’ given an argument like ‘a[@]’. Bash-5.2 will unset an element with key ‘@’ (associative arrays) or remove all the elements without - unsetting the array (indexed arrays) - • arithmetic commands ( ((...)) ) and the expressions in an - arithmetic for statement can be expanded more than once - • expressions used as arguments to arithmetic operators in the - ‘[[’ conditional command can be expanded more than once - • the expressions in substring parameter brace expansion can be - expanded more than once - • the expressions in the $(( ... )) word expansion can be - expanded more than once - • arithmetic expressions used as indexed array subscripts can be - expanded more than once + unsetting the array (indexed arrays). + • Arithmetic commands ( ((...)) ) and the expressions in an + arithmetic for statement can be expanded more than once. + • Expressions used as arguments to arithmetic operators in the + ‘[[’ conditional command can be expanded more than once. + • The expressions in substring parameter brace expansion can be + expanded more than once. + • The expressions in the $(( ... )) word expansion can be + expanded more than once. + • Arithmetic expressions used as indexed array subscripts can be + expanded more than once. • ‘test -v’, when given an argument of ‘A[@]’, where A is an existing associative array, will return true if the array has any set elements. Bash-5.2 will look for and report on a key - named ‘@’ + named ‘@’. • the ${PARAMETER[:]=VALUE} word expansion will return VALUE, before any variable-specific transformations have been performed (e.g., converting to lowercase). Bash-5.2 will @@ -7956,7 +8164,7 @@ File: bash.info, Node: Job Control Builtins, Next: Job Control Variables, Pre fg [JOBSPEC] Resume the job JOBSPEC in the foreground and make it the current - job. If JOBSPEC is not supplied, the current job is used. The + job. If JOBSPEC is not supplied, resume the current job. The return status is that of the command placed into the foreground, or non-zero if run when job control is disabled or, when run with job control enabled, JOBSPEC does not specify a valid job or JOBSPEC @@ -7985,8 +8193,9 @@ File: bash.info, Node: Job Control Builtins, Next: Job Control Variables, Pre ‘-s’ Display only stopped jobs. - If JOBSPEC is given, output is restricted to information about that - job. If JOBSPEC is not supplied, the status of all jobs is listed. + If JOBSPEC is supplied, ‘jobs’ restricts output to information + about that job. If JOBSPEC is not supplied, ‘jobs’ lists the + status of all jobs. If the ‘-x’ option is supplied, ‘jobs’ replaces any JOBSPEC found in COMMAND or ARGUMENTS with the corresponding process group ID, @@ -8001,23 +8210,26 @@ File: bash.info, Node: Job Control Builtins, Next: Job Control Variables, Pre by job specification JOBSPEC or process ID PID. SIGSPEC is either a case-insensitive signal name such as ‘SIGINT’ (with or without the ‘SIG’ prefix) or a signal number; SIGNUM is a signal number. - If SIGSPEC and SIGNUM are not present, ‘SIGTERM’ is used. The ‘-l’ - option lists the signal names. If any arguments are supplied when - ‘-l’ is given, the names of the signals corresponding to the - arguments are listed, and the return status is zero. EXIT_STATUS - is a number specifying a signal number or the exit status of a - process terminated by a signal. The ‘-L’ option is equivalent to - ‘-l’. The return status is zero if at least one signal was - successfully sent, or non-zero if an error occurs or an invalid - option is encountered. + If SIGSPEC and SIGNUM are not present, ‘kill’ sends ‘SIGTERM’. + + The ‘-l’ option lists the signal names. If any arguments are + supplied when ‘-l’ is supplied, the names of the signals + corresponding to the arguments are listed, and the return status is + zero. EXIT_STATUS is a number specifying a signal number or the + exit status of a process terminated by a signal. The ‘-L’ option + is equivalent to ‘-l’. + + The return status is zero if at least one signal was successfully + sent, or non-zero if an error occurs or an invalid option is + encountered. ‘wait’ wait [-fn] [-p VARNAME] [ID ...] Wait until the child process specified by each ID exits and return the exit status of the last ID. Each ID may be a PID or job - specification JOBSPEC; if a job spec is given, ‘wait’ waits for all - processes in the job. + specification JOBSPEC; if a job spec is supplied, ‘wait’ waits for + all processes in the job. If no options or IDs are supplied, ‘wait’ waits for all running background jobs and the last-executed process substitution, if its @@ -8031,9 +8243,9 @@ File: bash.info, Node: Job Control Builtins, Next: Job Control Variables, Pre If the ‘-p’ option is supplied, the process or job identifier of the job for which the exit status is returned is assigned to the - variable VARNAME named by the option argument. The variable will - be unset initially, before any assignment. This is useful only - when the ‘-n’ option is supplied. + variable VARNAME named by the option argument. The variable, which + cannot be readonly, will be unset initially, before any assignment. + This is useful only when the ‘-n’ option is supplied. Supplying the ‘-f’ option, when job control is enabled, forces ‘wait’ to wait for each ID to terminate before returning its @@ -8046,26 +8258,30 @@ File: bash.info, Node: Job Control Builtins, Next: Job Control Variables, Pre Otherwise, the return status is the exit status of the last ID. ‘disown’ - disown [-ar] [-h] [JOBSPEC ... | PID ... ] + disown [-ar] [-h] [ID ...] + + Without options, remove each ID from the table of active jobs. + Each ID may be a PID or job specification JOBSPEC; if ID is a PID, + ‘disown’ uses the job containing PID. If the ‘-h’ option is + supplied, the job is not removed from the table, but is marked so + that ‘SIGHUP’ is not sent to the job if the shell receives a + ‘SIGHUP’. If ID is not present, and neither the ‘-a’ nor the ‘-r’ + option is supplied, ‘disown’ removes the current job. + + If no ID is supplied, the ‘-a’ option means to remove or mark all + jobs; the ‘-r’ option without an ID argument restricts operation to + running jobs. - Without options, remove each JOBSPEC from the table of active jobs. - If the ‘-h’ option is given, the job is not removed from the table, - but is marked so that ‘SIGHUP’ is not sent to the job if the shell - receives a ‘SIGHUP’. If JOBSPEC is not present, and neither the - ‘-a’ nor the ‘-r’ option is supplied, the current job is used. If - no JOBSPEC is supplied, the ‘-a’ option means to remove or mark all - jobs; the ‘-r’ option without a JOBSPEC argument restricts - operation to running jobs. + The return value is 0 unless an ID does not specify a valid job. ‘suspend’ suspend [-f] Suspend the execution of this shell until it receives a ‘SIGCONT’ signal. A login shell, or a shell without job control enabled, - cannot be suspended; the ‘-f’ 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 ‘-f’ is not - supplied. + cannot be suspended; the ‘-f’ option will 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 ‘-f’ is not supplied. When job control is not active, the ‘kill’ and ‘wait’ builtins do not accept JOBSPEC arguments. They must be supplied process IDs. @@ -8078,20 +8294,19 @@ File: bash.info, Node: Job Control Variables, Prev: Job Control Builtins, Up: ‘auto_resume’ This variable controls how the shell interacts with the user and - job control. If this variable exists then single word simple + job control. If this variable exists then single-word simple commands without redirections are treated as candidates for resumption of an existing job. There is no ambiguity allowed; if there is more than one job beginning with the string typed, then - the most recently accessed job will be selected. The name of a - stopped job, in this context, is the command line used to start it. - If this variable is set to the value ‘exact’, the string supplied - must match the name of a stopped job exactly; if set to - ‘substring’, the string supplied needs to match a substring of the - name of a stopped job. The ‘substring’ value provides - functionality analogous to the ‘%?’ job ID (*note Job Control - Basics::). If set to any other value, the supplied string must be - a prefix of a stopped job's name; this provides functionality - analogous to the ‘%’ job ID. + the most recently accessed job is selected. The name of a stopped + job, in this context, is the command line used to start it. If + this variable is set to the value ‘exact’, the string supplied must + match the name of a stopped job exactly; if set to ‘substring’, the + string supplied needs to match a substring of the name of a stopped + job. The ‘substring’ value provides functionality analogous to the + ‘%?’ job ID (*note Job Control Basics::). If set to any other + value, the supplied string must be a prefix of a stopped job's + name; this provides functionality analogous to the ‘%’ job ID.  File: bash.info, Node: Command Line Editing, Next: Using History Interactively, Prev: Job Control, Up: Top @@ -8752,6 +8967,9 @@ Variable Settings display a screenful of possible completions at a time. This variable is ‘on’ by default. + ‘prefer-visible-bell’ + See ‘bell-style’. + ‘print-completions-horizontally’ If set to ‘on’, Readline will display completions with matches sorted horizontally in alphabetical order, rather than down @@ -9838,10 +10056,10 @@ File: bash.info, Node: Programmable Completion, Next: Programmable Completion 8.6 Programmable Completion =========================== -When word completion is attempted for an argument to a command for which -a completion specification (a COMPSPEC) has been defined using the -‘complete’ builtin (*note Programmable Completion Builtins::), the -programmable completion facilities are invoked. +When the user attempts word completion for an argument to a command for +which a completion specification (a COMPSPEC) has been defined using the +‘complete’ builtin (*note Programmable Completion Builtins::), +\fBreadline\fP invokes the programmable completion facilities. First, the command name is identified. If a compspec has been defined for that command, the compspec is used to generate the list of @@ -9849,13 +10067,13 @@ possible completions for the word. If the command word is the empty string (completion attempted at the beginning of an empty line), any compspec defined with the ‘-E’ option to ‘complete’ is used. 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 ‘-D’ option to ‘complete’ is used as the default. If -there is no default compspec, Bash 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 +searched for first. If no compspec is found for the full pathname, +completion attempts 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 ‘-D’ option to ‘complete’ is used as the +default. If there is no default compspec, Bash 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 Bash completion @@ -9907,7 +10125,8 @@ generate the matches. It must put the possible completions in the Next, any command specified with the ‘-C’ option is invoked in an environment 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. +used to escape a newline, if necessary. These are added to the set of +possible completions. After all of the possible completions are generated, any filter specified with the ‘-X’ option is applied to the list. The filter is a @@ -9923,8 +10142,7 @@ characters. Finally, any prefix and suffix specified with the ‘-P’ and ‘-S’ 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. +is returned to Readline as the list of possible completions. If the previously-applied actions do not generate any matches, and the ‘-o dirnames’ option was supplied to ‘complete’ when the compspec @@ -9936,13 +10154,13 @@ 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 -default Bash completions are not attempted, and the Readline default of -filename completion is disabled. If the ‘-o bashdefault’ option was -supplied to ‘complete’ when the compspec was defined, the default Bash -completions are attempted if the compspec generates no matches. If the -‘-o default’ option was supplied to ‘complete’ when the compspec was -defined, Readline's default completion will be performed if the compspec -(and, if attempted, the default Bash completions) generate no matches. +default Bash completions and the Readline default of filename completion +are disabled. If the ‘-o bashdefault’ option was supplied to ‘complete’ +when the compspec was defined, if the compspec generates no matches, the +default Bash completions are attempted. If the ‘-o default’ option was +supplied to ‘complete’ when the compspec was defined, Readline's default +completion will be performed if the compspec (and, if attempted, the +default Bash completions) generate no matches. When a compspec indicates that directory name completion is desired, the programmable completion functions force Readline to append a slash @@ -10002,7 +10220,8 @@ happening. The matches will be generated in the same way as if the programmable completion code had generated them directly from a completion specification with the same flags. If WORD is - specified, only those completions matching WORD will be displayed. + specified, only those completions matching WORD will be displayed + or stored. The return value is true unless an invalid option is supplied, or no matches were generated. @@ -10085,8 +10304,8 @@ happening. ‘plusdirs’ After any matches defined by the compspec are generated, - directory name completion is attempted and any matches - are added to the results of the other actions. + attempt directory name completion and add any matches to + the results of the other actions. ‘-A ACTION’ The ACTION may be one of the following to generate a list of @@ -10184,26 +10403,30 @@ happening. command whose arguments are being completed, $2 is the word being completed, and $3 is the word preceding the word being completed, as described above (*note Programmable - Completion::). When it finishes, the possible completions are - retrieved from the value of the ‘COMPREPLY’ array variable. + Completion::). When ‘function’ finishes, the possible + completions are retrieved from the value of the ‘COMPREPLY’ + array variable. ‘-G GLOBPAT’ - The filename expansion pattern GLOBPAT is expanded to generate - the possible completions. + Expand the filename expansion pattern GLOBPAT to generate the + possible completions. ‘-P PREFIX’ - PREFIX is added at the beginning of each possible completion - after all other options have been applied. + Add PREFIX to the beginning of each possible completion after + all other options have been applied. ‘-S SUFFIX’ - SUFFIX is appended to each possible completion after all other + Append SUFFIX to each possible completion after all other options have been applied. ‘-W WORDLIST’ The WORDLIST is split using the characters in the ‘IFS’ - special variable as delimiters, and each resultant word is - expanded. The possible completions are the members of the - resultant list which match the word being completed. + special variable as delimiters, and each resulting word is + expanded. Shell quoting is honored within WORDLIST in order + to provide a mechanism for the words to contain shell + metacharacters or characters in the value of ‘IFS’. The + possible completions are the members of the resultant list + which match the word being completed. ‘-X FILTERPAT’ FILTERPAT is a pattern as used for filename expansion. It is @@ -10390,17 +10613,29 @@ shell stores each command in the history list prior to parameter and variable expansion but after history expansion is performed, subject to the values of the shell variables ‘HISTIGNORE’ and ‘HISTCONTROL’. - When the shell starts up, the history is initialized from the file -named by the ‘HISTFILE’ variable (default ‘~/.bash_history’). The file -named by the value of ‘HISTFILE’ is truncated, if necessary, to contain -no more than the number of lines specified by the value of the -‘HISTFILESIZE’ variable. When a shell with history enabled exits, the -last ‘$HISTSIZE’ lines are copied from the history list to the file -named by ‘$HISTFILE’. If the ‘histappend’ shell option is set (*note -Bash Builtins::), the lines are appended to the history file, otherwise -the history file is overwritten. If ‘HISTFILE’ is unset or null, or if -the history file is unwritable, the history is not saved. After saving -the history, the history file is truncated to contain no more than + When the shell starts up, Bash initializes the history list by +reading history entries from the file named by the ‘HISTFILE’ variable +(default ‘~/.bash_history’). This is referred to as the “history file”. +That file is truncated, if necessary, to contain no more than the number +of history entries specified by the value of the ‘HISTFILESIZE’ +variable. If ‘HISTFILESIZE’ 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 followed immediately by a digit are interpreted as +timestamps for the following history entry. These timestamps are +optionally displayed depending on the value of the ‘HISTTIMEFORMAT’ +variable (*note Bash Variables::). When present, history timestamps +delimit history entries, making multi-line entries possible. + + When a shell with history enabled exits, Bash copies the last +‘$HISTSIZE’ entries from the history list to the file named by +‘$HISTFILE’. If the ‘histappend’ shell option is set (*note Bash +Builtins::), Bash appends the entries to the history file, otherwise the +history file is overwritten. If ‘HISTFILE’ is unset or null, or if the +history file is unwritable, the history is not saved. After saving the +history, Bash truncates the history file to contain no more than ‘$HISTFILESIZE’ lines. If ‘HISTFILESIZE’ is unset, or set to null, a non-numeric value, or a numeric value less than zero, the history file is not truncated. @@ -10409,24 +10644,25 @@ is not truncated. with each history entry is written to the history 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. +digit are interpreted as timestamps for the following history entry. As +above, when using ‘HISTTIMEFORMAT’, the timestamps delimit multi-line +history entries. - The ‘fc’ builtin command may be used to list or edit and re-execute a -portion of the history list. The ‘history’ builtin may be used to -display or modify the history list and manipulate the history file. -When using command-line editing, search commands are available in each -editing mode that provide access to the history list (*note Commands For -History::). + The ‘fc’ builtin command will list or edit and re-execute a portion +of the history list. The ‘history’ builtin can display or modify the +history list and manipulate the history file. When using command-line +editing, search commands are available in each editing mode that provide +access to the history list (*note Commands For History::). The shell allows control over which commands are saved on the history -list. The ‘HISTCONTROL’ and ‘HISTIGNORE’ variables are used to cause -the shell to save only a subset of the commands entered. The ‘cmdhist’ -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 ‘lithist’ shell -option causes the shell to save the command with embedded newlines -instead of semicolons. The ‘shopt’ builtin is used to set these -options. *Note The Shopt Builtin::, for a description of ‘shopt’. +list. The ‘HISTCONTROL’ and ‘HISTIGNORE’ variables are used to save +only a subset of the commands entered. The ‘cmdhist’ 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 ‘lithist’ shell option modifies +‘cmdhist’ by saving the command with embedded newlines instead of +semicolons. The ‘shopt’ builtin is used to set these options. *Note +The Shopt Builtin::, for a description of ‘shopt’.  File: bash.info, Node: Bash History Builtins, Next: History Interaction, Prev: Bash History Facilities, Up: Using History Interactively @@ -10454,25 +10690,38 @@ history file. If LAST is not specified, it is set to FIRST. If FIRST is not specified, it is set to the previous command for editing and −16 - for listing. If the ‘-l’ flag is given, the commands are listed on - standard output. The ‘-n’ flag suppresses the command numbers when - listing. The ‘-r’ flag reverses the order of the listing. - Otherwise, the editor given by ENAME is invoked on a file - containing those commands. If ENAME is not given, the value of the - following variable expansion is used: ‘${FCEDIT:-${EDITOR:-vi}}’. - This says to use the value of the ‘FCEDIT’ variable if set, or the - value of the ‘EDITOR’ variable if that is set, or ‘vi’ if neither - is set. When editing is complete, the edited commands are echoed - and executed. - - In the second form, COMMAND is re-executed after each instance of - PAT in the selected command is replaced by REP. COMMAND is + for listing. + + If the ‘-l’ flag is supplied, the commands are listed on standard + output. The ‘-n’ flag suppresses the command numbers when listing. + The ‘-r’ flag reverses the order of the listing. + + Otherwise, ‘fc’ invokes the editor named by ENAME on a file + containing those commands. If ENAME is not supplied, ‘fc’ uses the + value of the following variable expansion: + ‘${FCEDIT:-${EDITOR:-vi}}’. This says to use the value of the + ‘FCEDIT’ variable if set, or the value of the ‘EDITOR’ variable if + that is set, or ‘vi’ if neither is set. When editing is complete, + ‘fc’ reads the file of edited commands and echoes and executes + them. + + In the second form, ‘fc’ re-executes COMMAND after replacing each + instance of PAT in the selected command with REP. COMMAND is interpreted the same as FIRST above. A useful alias to use with the ‘fc’ command is ‘r='fc -s'’, so that typing ‘r cc’ runs the last command beginning with ‘cc’ and typing ‘r’ re-executes the last command (*note Aliases::). + If the first form is used, the return value is zero unless an + invalid option is encountered or FIRST or LAST specify history + lines out of range. When editing and re-executing a file of + commands, the return value is the value of the last command + executed or failure if an error occurs with the temporary file. If + the second form is used, the return status is that of the + re-executed command, unless COMMAND does not specify a valid + history entry, in which case ‘fc’ returns a non-zero status. + ‘history’ history [N] history -c @@ -10481,19 +10730,20 @@ history file. history [-anrw] [FILENAME] history -ps ARG - With no options, display the history list with line numbers. Lines + With no options, display the history list with numbers. Entries prefixed with a ‘*’ have been modified. An argument of N lists - only the last N lines. If the shell variable ‘HISTTIMEFORMAT’ is + only the last N entries. If the shell variable ‘HISTTIMEFORMAT’ is set and not null, it is used as a format string for ‘strftime’(3) to display the time stamp associated with each displayed history - entry. No intervening blank is printed between the formatted time - stamp and the history line. + entry. If ‘history’ uses ‘HISTTIMEFORMAT’, it does not print an + intervening space between the formatted time stamp and the history + entry. Options, if supplied, have the following meanings: ‘-c’ Clear the history list. This may be combined with the other - options to replace the history list completely. + options to replace the history list. ‘-d OFFSET’ Delete the history entry at position OFFSET. If OFFSET is @@ -10510,7 +10760,7 @@ history file. and END are interpreted as described above. ‘-a’ - Append the new history lines to the history file. These are + Append the "new" history lines to the history file. These are history lines entered since the beginning of the current Bash session, but not already appended to the history file. @@ -10525,7 +10775,8 @@ history file. list. ‘-w’ - Write out the current history list to the history file. + Write the current history list to the history file, + overwriting it. ‘-p’ Perform history substitution on the ARGs and display the @@ -10533,13 +10784,21 @@ history file. the history list. ‘-s’ - The ARGs are added to the end of the history list as a single - entry. - - If a FILENAME argument is supplied when any of the ‘-w’, ‘-r’, - ‘-a’, or ‘-n’ options is used, Bash uses FILENAME as the history - file. If not, then the value of the ‘HISTFILE’ variable is used. - If ‘HISTFILE’ is unset or null, these options have no effect. + Add the ARGs to the end of the history list as a single entry. + The last command in the history list is removed before adding + the ARGs. + + If a FILENAME argument is supplied with any of the ‘-w’, ‘-r’, + ‘-a’, or ‘-n’ options, Bash uses FILENAME as the history file. If + not, it uses the value of the ‘HISTFILE’ variable. If ‘HISTFILE’ + is unset or null, these options have no effect. + + If the ‘HISTTIMEFORMAT’ variable is set, ‘history’ writes the time + stamp information associated with each history entry to the history + 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 @@ -10552,9 +10811,15 @@ File: bash.info, Node: History Interaction, Prev: Bash History Builtins, Up: 9.3 History Expansion ===================== -The History library provides a history expansion feature that is similar -to the history expansion provided by ‘csh’. This section describes the -syntax used to manipulate the history information. +The shell provides a history expansion feature that is similar to the +history expansion provided by ‘csh’ (also referred to as history +substitution where appropriate). This section describes the syntax used +to manipulate the history information. + + History expansion is enabled by default for interactive shells, and +can be disabled using the ‘+H’ option to the ‘set’ builtin command +(*note The Set Builtin::). Non-interactive shells do not perform +history expansion by default, but it can be enabled with ‘set -H’. History expansions introduce words from the history list into the input stream, making it easy to repeat commands, insert the arguments to @@ -10567,17 +10832,17 @@ line individually. Bash attempts to inform the history expansion functions about quoting still in effect from previous lines. History expansion takes place in two parts. The first is to -determine which line from the history list should be used during -substitution. The second is to select portions of that line for -inclusion into the current one. - - The line selected from the history is called the “event”, and the -portions of that line that are acted upon are called “words”. The line -is broken into words in the same fashion that Bash does, so that several -words surrounded by quotes are considered one word. The “event -designator” selects the event, the optional “word designator” selects -words from the event, and various optional “modifiers” are available to -manipulate the selected words. +determine which entry from the history list should be used during +substitution. The second is to select portions of that entry to include +into the current one. + + The entry selected from the history is called the “event”, and the +portions of that entry that are acted upon are called “words”. The +history entry is broken into words in the same fashion that Bash does, +so that several words surrounded by quotes are considered one word. The +“event designator” selects the event, the optional “word designator” +selects words from the event, and various optional “modifiers” are +available to manipulate the selected words. History expansions are introduced by the appearance of the history expansion character, which is ‘!’ by default. History expansions may @@ -10596,26 +10861,32 @@ history expansion character, but the history expansion 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 +following the history expansion character, even if it is unquoted: +space, tab, newline, carriage return, ‘=’, and the other shell +metacharacters. + There is a special abbreviation for substitution, active when the QUICK SUBSTITUTION character (default ‘^’) is the first character on the -line. It selects the previous history list entry, using an event -designator equivalent to ‘!!’, and substitutes one string for another in -that line. It is described below (*note Event Designators::). This is -the only history expansion that does not begin with the history -expansion character. +line. It selects the previous history entry, using an event designator +equivalent to ‘!!’, and substitutes one string for another in that +entry. It is described below (*note Event Designators::). This is the +only history expansion that does not begin with the history expansion +character. Several shell options settable with the ‘shopt’ builtin (*note The -Shopt Builtin::) may be used to tailor the behavior of history -expansion. If the ‘histverify’ shell option is enabled, and Readline is -being used, history substitutions are not immediately passed to the -shell parser. Instead, the expanded line is reloaded into the Readline -editing buffer for further modification. If Readline is being used, and -the ‘histreedit’ shell option is enabled, a failed history expansion -will be reloaded into the Readline editing buffer for correction. The -‘-p’ option to the ‘history’ builtin command may be used to see what a -history expansion will do before using it. The ‘-s’ option to the -‘history’ builtin may be used to add commands to the end of the history -list without actually executing them, so that they are available for +Shopt Builtin::) will modify history expansion behavior If the +‘histverify’ shell option is enabled, and Readline is being used, +history substitutions are not immediately passed to the shell parser. +Instead, the expanded line is reloaded into the Readline editing buffer +for further modification. If Readline is being used, and the +‘histreedit’ shell option is enabled, a failed history expansion is +reloaded into the Readline editing buffer for correction. + + The ‘-p’ option to the ‘history’ builtin command shows what a history +expansion will do before using it. The ‘-s’ option to the ‘history’ +builtin may be used to add commands to the end of the history list +without actually executing them, so that they are available for subsequent recall. This is most useful in conjunction with Readline. The shell allows control of the various characters used by the @@ -10635,12 +10906,12 @@ File: bash.info, Node: Event Designators, Next: Word Designators, Up: History 9.3.1 Event Designators ----------------------- -An event designator is a reference to a command line entry in the -history list. Unless the reference is absolute, events are relative to -the current position in the history list. The event designator consists -of the portion of the word beginning with the history expansion -character, and ending with the word designator if one is present, or the -end of the word. +An event designator is a reference to an entry in the history list. +Unless the reference is absolute, events are relative to the current +position in the history list. The event designator consists of the +portion of the word beginning with the history expansion character, and +ending with the word designator if one is present, or the end of the +word. ‘!’ Start a history substitution, except when followed by a space, tab, @@ -10648,10 +10919,10 @@ end of the word. defined above (*note Definitions::). ‘!N’ - Refer to command line N. + Refer to history list entry N. ‘!-N’ - Refer to the command N lines back. + Refer to the history entry N entries back. ‘!!’ Refer to the previous command. This is a synonym for ‘!-1’. @@ -10664,8 +10935,8 @@ end of the word. Refer to the most recent command preceding the current position in the history list containing STRING. The trailing ‘?’ may be omitted if the STRING is followed immediately by a newline. If - STRING is missing, the string from the most recent search is used; - it is an error if there is no previous search string. + STRING is missing, this uses the string from the most recent + search; it is an error if there is no previous search string. ‘^STRING1^STRING2^’ Quick Substitution. Repeat the last command, replacing STRING1 @@ -10712,10 +10983,11 @@ spaces. The Nth word. ‘^’ - The first argument; that is, word 1. + The first argument: word 1. ‘$’ - The last argument. + The last argument. This is usually the last argument, but will + expand to the zeroth word if there is only one word in the line. ‘%’ The first word matched by the most recent ‘?STRING?’ search, if the @@ -10730,17 +11002,17 @@ spaces. ‘*’ All of the words, except the ‘0’th. This is a synonym for ‘1-$’. It is not an error to use ‘*’ if there is just one word in the - event; the empty string is returned in that case. + event; it expands to the empty string in this case. ‘X*’ - Abbreviates ‘X-$’ + Abbreviates ‘X-$’. ‘X-’ Abbreviates ‘X-$’ like ‘X*’, but omits the last word. If ‘x’ is missing, it defaults to 0. If a word designator is supplied without an event specification, the -previous command is used as the event. +previous command is used as the event, equivalent to ‘!!’.  File: bash.info, Node: Modifiers, Prev: Word Designators, Up: History Interaction @@ -10774,18 +11046,18 @@ or edit, the word or words selected from the history event. ‘x’ Quote the substituted words as with ‘q’, but break into words at spaces, tabs, and newlines. The ‘q’ and ‘x’ modifiers are mutually - exclusive; the last one supplied is used. + exclusive; expansion uses the last one supplied. ‘s/OLD/NEW/’ Substitute NEW for the first occurrence of OLD in the event line. Any character may be used as the delimiter in place of ‘/’. The delimiter may be quoted in OLD and NEW with a single backslash. If - ‘&’ appears in NEW, it is replaced by OLD. A single backslash will - quote the ‘&’. If OLD is null, it is set to the last OLD - substituted, or, if no previous history substitutions took place, - the last STRING in a !?STRING‘[?]’ search. If NEW is null, each - matching OLD is deleted. The final delimiter is optional if it is - the last character on the input line. + ‘&’ appears in NEW, it is replaced with OLD. A single backslash + will quote the ‘&’ in OLD and NEW. If OLD is null, it is set to + the last OLD substituted, or, if no previous history substitutions + took place, the last STRING in a !?STRING‘[?]’ search. If NEW is + null, each matching OLD is deleted. The final delimiter is + optional if it is the last character on the input line. ‘&’ Repeat the previous substitution. @@ -10809,7 +11081,7 @@ This chapter provides basic instructions for installing Bash on the various supported platforms. The distribution supports the GNU operating systems, nearly every version of Unix, and several non-Unix systems such as BeOS and Interix. Other independent ports exist for -MS-DOS, OS/2, and Windows platforms. +Windows platforms. * Menu: @@ -10856,8 +11128,8 @@ These are installation instructions for Bash. files, some supplemental documentation, a number of example loadable builtin commands, and a set of header files for developing loadable builtins. You may need additional privileges to install - ‘bash’ to your desired destination, so ‘sudo make install’ might be - required. More information about controlling the locations where + ‘bash’ to your desired destination, which may require ‘sudo make + install’. More information about controlling the locations where ‘bash’ and other files are installed is below (*note Installation Names::). @@ -11083,7 +11355,7 @@ File: bash.info, Node: Optional Features, Prev: Operation Controls, Up: Insta The Bash ‘configure’ has a number of ‘--enable-FEATURE’ options, where FEATURE indicates an optional part of Bash. There are also several ‘--with-PACKAGE’ options, where PACKAGE is something like ‘bash-malloc’ -or ‘purify’. To turn off the default use of a package, use +or ‘afs’. To turn off the default use of a package, use ‘--without-PACKAGE’. To configure Bash without a feature that is enabled by default, use ‘--disable-FEATURE’. @@ -11095,18 +11367,18 @@ the Bash ‘configure’ recognizes. ‘--with-bash-malloc’ Use the Bash version of ‘malloc’ in the directory ‘lib/malloc’. - This is not the same ‘malloc’ that appears in GNU libc, but an - older version originally derived from the 4.2 BSD ‘malloc’. This - ‘malloc’ is very fast, but wastes some space on each allocation. - This option is enabled by default. The ‘NOTES’ file contains a - list of systems for which this should be turned off, and - ‘configure’ disables this option automatically for a number of - systems. + This is not the same ‘malloc’ that appears in GNU libc, but a + custom version originally derived from the 4.2 BSD ‘malloc’. This + ‘malloc’ is very fast, but wastes some space on each allocation, + though it uses several techniques to minimize the waste. This + option is enabled by default. The ‘NOTES’ file contains a list of + systems for which this should be turned off, and ‘configure’ + disables this option automatically for a number of systems. ‘--with-curses’ - Use the curses library instead of the termcap library. This should - be supplied if your system has an inadequate or incomplete termcap - database. + Use the curses library instead of the termcap library. ‘configure’ + usually chooses this automatically, since most systems include the + termcap functions in the curses library. ‘--with-gnu-malloc’ A synonym for ‘--with-bash-malloc’. @@ -11123,7 +11395,9 @@ the Bash ‘configure’ recognizes. set to any other value, ‘configure’ treats it as a directory pathname and looks for the installed version of Readline in subdirectories of that directory (include files in PREFIX/‘include’ - and the library in PREFIX/‘lib’). + and the library in PREFIX/‘lib’). The Bash default is to link with + a static library built in the ‘lib/readline’ subdirectory of the + build directory. ‘--with-libintl-prefix[=PREFIX]’ Define this to make Bash link with a locally-installed version of @@ -11131,10 +11405,11 @@ the Bash ‘configure’ recognizes. ‘--with-libiconv-prefix[=PREFIX]’ Define this to make Bash look for libiconv in PREFIX instead of the - standard system locations. There is no version included with Bash. + standard system locations. The Bash distribution does not include + this library. ‘--enable-minimal-config’ - This produces a shell with minimal features, close to the + This produces a shell with minimal features, closer to the historical Bourne shell. There are several ‘--enable-’ options that alter how Bash is @@ -11191,6 +11466,12 @@ does not provide the necessary support. Include support for ‘csh’-like history substitution (*note History Interaction::). +‘--enable-bash-source-fullpath-default’ + Set the default value of the ‘bash_source_fullpath’ shell option + described above under *note The Shopt Builtin:: to be enabled. + This controls how filenames are assigned to the ‘BASH_SOURCE’ array + variable. + ‘--enable-brace-expansion’ Include ‘csh’-like brace expansion ( ‘b{a,b}c’ ↦ ‘bac bbc’ ). See *note Brace Expansion::, for a complete description. @@ -11207,8 +11488,9 @@ does not provide the necessary support. ‘--enable-command-timing’ Include support for recognizing ‘time’ as a reserved word and for displaying timing statistics for the pipeline following ‘time’ - (*note Pipelines::). This allows pipelines as well as shell - builtins and functions to be timed. + (*note Pipelines::). This allows timing pipelines, shell compound + commands, shell builtins, and shell functions, which an external + command cannot do easily. ‘--enable-cond-command’ Include support for the ‘[[’ conditional command. (*note @@ -11311,13 +11593,13 @@ does not provide the necessary support. version of the Readline library (*note Command Line Editing::). ‘--enable-restricted’ - Include support for a “restricted shell”. If this is enabled, - Bash, when called as ‘rbash’, enters a restricted mode. See *note - The Restricted Shell::, for a description of restricted mode. + Include support for a “restricted shell”. If this is enabled, Bash + enters a restricted mode when called as ‘rbash’. See *note The + Restricted Shell::, for a description of restricted mode. ‘--enable-select’ - Include the ‘select’ compound command, which allows the generation - of simple menus (*note Conditional Constructs::). + Include the ‘select’ compound command, which allows generation of + simple menus (*note Conditional Constructs::). ‘--enable-single-help-strings’ Store the text displayed by the ‘help’ builtin as a single string @@ -11357,8 +11639,8 @@ Appendix A Reporting Bugs Please report all bugs you find in Bash. But first, you should make sure that it really is a bug, and that it appears in the latest version -of Bash. The latest version of Bash is always available for FTP from - and from +of Bash. The latest released version of Bash is always available for +FTP from and from . Once you have determined that a bug actually exists, use the @@ -12298,100 +12580,100 @@ D.1 Index of Shell Builtin Commands * .: Bourne Shell Builtins. (line 17) * [: Bourne Shell Builtins. - (line 289) + (line 333) * alias: Bash Builtins. (line 11) * bg: Job Control Builtins. (line 7) -* bind: Bash Builtins. (line 21) +* bind: Bash Builtins. (line 24) * break: Bourne Shell Builtins. - (line 41) -* builtin: Bash Builtins. (line 124) -* caller: Bash Builtins. (line 133) + (line 47) +* builtin: Bash Builtins. (line 133) +* caller: Bash Builtins. (line 142) * cd: Bourne Shell Builtins. - (line 49) -* command: Bash Builtins. (line 150) + (line 55) +* command: Bash Builtins. (line 159) * compgen: Programmable Completion Builtins. (line 12) * complete: Programmable Completion Builtins. - (line 36) + (line 37) * compopt: Programmable Completion Builtins. - (line 248) + (line 253) * continue: Bourne Shell Builtins. - (line 94) -* declare: Bash Builtins. (line 170) + (line 102) +* declare: Bash Builtins. (line 179) * dirs: Directory Stack Builtins. (line 7) * disown: Job Control Builtins. - (line 110) -* echo: Bash Builtins. (line 273) -* enable: Bash Builtins. (line 322) + (line 114) +* echo: Bash Builtins. (line 284) +* enable: Bash Builtins. (line 337) * eval: Bourne Shell Builtins. - (line 103) -* exec: Bourne Shell Builtins. (line 111) +* exec: Bourne Shell Builtins. + (line 119) * exit: Bourne Shell Builtins. - (line 129) + (line 141) * export: Bourne Shell Builtins. - (line 136) + (line 148) * false: Bourne Shell Builtins. - (line 152) + (line 170) * fc: Bash History Builtins. (line 10) * fg: Job Control Builtins. (line 17) * getopts: Bourne Shell Builtins. - (line 157) + (line 175) * hash: Bourne Shell Builtins. - (line 201) -* help: Bash Builtins. (line 360) + (line 226) +* help: Bash Builtins. (line 374) * history: Bash History Builtins. - (line 46) + (line 59) * jobs: Job Control Builtins. (line 27) * kill: Job Control Builtins. - (line 58) -* let: Bash Builtins. (line 379) -* local: Bash Builtins. (line 387) -* logout: Bash Builtins. (line 404) -* mapfile: Bash Builtins. (line 409) + (line 59) +* let: Bash Builtins. (line 394) +* local: Bash Builtins. (line 403) +* logout: Bash Builtins. (line 428) +* mapfile: Bash Builtins. (line 433) * popd: Directory Stack Builtins. - (line 35) -* printf: Bash Builtins. (line 455) + (line 37) +* printf: Bash Builtins. (line 478) * pushd: Directory Stack Builtins. - (line 69) + (line 70) * pwd: Bourne Shell Builtins. - (line 226) -* read: Bash Builtins. (line 525) -* readarray: Bash Builtins. (line 631) + (line 258) +* read: Bash Builtins. (line 548) +* readarray: Bash Builtins. (line 659) * readonly: Bourne Shell Builtins. - (line 236) + (line 270) * return: Bourne Shell Builtins. - (line 255) + (line 295) * set: The Set Builtin. (line 11) * shift: Bourne Shell Builtins. - (line 276) + (line 320) * shopt: The Shopt Builtin. (line 9) -* source: Bash Builtins. (line 640) +* source: Bash Builtins. (line 668) * suspend: Job Control Builtins. - (line 122) + (line 131) * test: Bourne Shell Builtins. - (line 289) + (line 333) * times: Bourne Shell Builtins. - (line 391) + (line 433) * trap: Bourne Shell Builtins. - (line 397) + (line 439) * true: Bourne Shell Builtins. - (line 459) -* type: Bash Builtins. (line 645) -* typeset: Bash Builtins. (line 683) -* ulimit: Bash Builtins. (line 689) + (line 505) +* type: Bash Builtins. (line 673) +* typeset: Bash Builtins. (line 710) +* ulimit: Bash Builtins. (line 716) * umask: Bourne Shell Builtins. - (line 464) -* unalias: Bash Builtins. (line 795) + (line 510) +* unalias: Bash Builtins. (line 824) * unset: Bourne Shell Builtins. - (line 482) + (line 528) * wait: Job Control Builtins. - (line 76) + (line 80)  File: bash.info, Node: Reserved Word Index, Next: Variable Index, Prev: Builtin Index, Up: Indexes @@ -12404,9 +12686,9 @@ D.2 Index of Shell Reserved Words * !: Pipelines. (line 9) * [[: Conditional Constructs. - (line 125) + (line 126) * ]]: Conditional Constructs. - (line 125) + (line 126) * {: Command Grouping. (line 21) * }: Command Grouping. (line 21) * case: Conditional Constructs. @@ -12428,7 +12710,7 @@ D.2 Index of Shell Reserved Words * in: Conditional Constructs. (line 28) * select: Conditional Constructs. - (line 83) + (line 84) * then: Conditional Constructs. (line 7) * time: Pipelines. (line 9) @@ -12445,51 +12727,51 @@ D.3 Parameter and Variable Index * Menu: * _: Bash Variables. (line 13) -* -: Special Parameters. (line 46) -* !: Special Parameters. (line 55) -* ?: Special Parameters. (line 42) -* @: Special Parameters. (line 22) -* *: Special Parameters. (line 9) -* #: Special Parameters. (line 39) -* $: Special Parameters. (line 51) +* -: Special Parameters. (line 48) +* !: Special Parameters. (line 57) +* ?: Special Parameters. (line 44) +* @: Special Parameters. (line 23) +* *: Special Parameters. (line 10) +* #: Special Parameters. (line 41) +* $: Special Parameters. (line 53) * $_: Bash Variables. (line 14) -* $-: Special Parameters. (line 47) -* $!: Special Parameters. (line 56) -* $?: Special Parameters. (line 43) -* $@: Special Parameters. (line 23) -* $*: Special Parameters. (line 10) -* $#: Special Parameters. (line 40) -* $$: Special Parameters. (line 52) -* $0: Special Parameters. (line 61) -* 0: Special Parameters. (line 60) +* $-: Special Parameters. (line 49) +* $!: Special Parameters. (line 58) +* $?: Special Parameters. (line 45) +* $@: Special Parameters. (line 24) +* $*: Special Parameters. (line 11) +* $#: Special Parameters. (line 42) +* $$: Special Parameters. (line 54) +* $0: Special Parameters. (line 63) +* 0: Special Parameters. (line 62) * active-region-end-color: Readline Init File Syntax. (line 51) * active-region-start-color: Readline Init File Syntax. (line 38) * auto_resume: Job Control Variables. (line 6) -* BASH: Bash Variables. (line 23) -* BASH_ALIASES: Bash Variables. (line 42) -* BASH_ARGC: Bash Variables. (line 51) -* BASH_ARGV: Bash Variables. (line 65) -* BASH_ARGV0: Bash Variables. (line 78) -* BASH_CMDS: Bash Variables. (line 86) -* BASH_COMMAND: Bash Variables. (line 95) -* BASH_COMPAT: Bash Variables. (line 102) -* BASH_ENV: Bash Variables. (line 118) -* BASH_EXECUTION_STRING: Bash Variables. (line 124) -* BASH_LINENO: Bash Variables. (line 127) -* BASH_LOADABLES_PATH: Bash Variables. (line 137) -* BASH_MONOSECONDS: Bash Variables. (line 141) -* BASH_REMATCH: Bash Variables. (line 148) -* BASH_SOURCE: Bash Variables. (line 156) -* BASH_SUBSHELL: Bash Variables. (line 164) -* BASH_TRAPSIG: Bash Variables. (line 170) -* BASH_VERSINFO: Bash Variables. (line 176) -* BASH_VERSION: Bash Variables. (line 199) -* BASH_XTRACEFD: Bash Variables. (line 202) -* BASHOPTS: Bash Variables. (line 26) -* BASHPID: Bash Variables. (line 35) +* BASH: Bash Variables. (line 24) +* BASH_ALIASES: Bash Variables. (line 43) +* BASH_ARGC: Bash Variables. (line 52) +* BASH_ARGV: Bash Variables. (line 66) +* BASH_ARGV0: Bash Variables. (line 79) +* BASH_CMDS: Bash Variables. (line 87) +* BASH_COMMAND: Bash Variables. (line 96) +* BASH_COMPAT: Bash Variables. (line 103) +* BASH_ENV: Bash Variables. (line 119) +* BASH_EXECUTION_STRING: Bash Variables. (line 125) +* BASH_LINENO: Bash Variables. (line 128) +* BASH_LOADABLES_PATH: Bash Variables. (line 138) +* BASH_MONOSECONDS: Bash Variables. (line 142) +* BASH_REMATCH: Bash Variables. (line 149) +* BASH_SOURCE: Bash Variables. (line 157) +* BASH_SUBSHELL: Bash Variables. (line 165) +* BASH_TRAPSIG: Bash Variables. (line 171) +* BASH_VERSINFO: Bash Variables. (line 177) +* BASH_VERSION: Bash Variables. (line 200) +* BASH_XTRACEFD: Bash Variables. (line 204) +* BASHOPTS: Bash Variables. (line 27) +* BASHPID: Bash Variables. (line 36) * bell-style: Readline Init File Syntax. (line 64) * bind-tty-special-chars: Readline Init File Syntax. @@ -12498,21 +12780,21 @@ D.3 Parameter and Variable Index (line 79) * CDPATH: Bourne Shell Variables. (line 9) -* CHILD_MAX: Bash Variables. (line 213) +* CHILD_MAX: Bash Variables. (line 215) * colored-completion-prefix: Readline Init File Syntax. (line 84) * colored-stats: Readline Init File Syntax. (line 94) -* COLUMNS: Bash Variables. (line 220) +* COLUMNS: Bash Variables. (line 222) * comment-begin: Readline Init File Syntax. (line 100) -* COMP_CWORD: Bash Variables. (line 226) -* COMP_KEY: Bash Variables. (line 255) -* COMP_LINE: Bash Variables. (line 232) -* COMP_POINT: Bash Variables. (line 237) -* COMP_TYPE: Bash Variables. (line 245) -* COMP_WORDBREAKS: Bash Variables. (line 259) -* COMP_WORDS: Bash Variables. (line 265) +* COMP_CWORD: Bash Variables. (line 228) +* COMP_KEY: Bash Variables. (line 234) +* COMP_LINE: Bash Variables. (line 240) +* COMP_POINT: Bash Variables. (line 245) +* COMP_TYPE: Bash Variables. (line 253) +* COMP_WORDBREAKS: Bash Variables. (line 263) +* COMP_WORDS: Bash Variables. (line 269) * completion-display-width: Readline Init File Syntax. (line 105) * completion-ignore-case: Readline Init File Syntax. @@ -12523,18 +12805,18 @@ D.3 Parameter and Variable Index (line 123) * completion-query-items: Readline Init File Syntax. (line 130) -* COMPREPLY: Bash Variables. (line 272) +* COMPREPLY: Bash Variables. (line 276) * convert-meta: Readline Init File Syntax. (line 141) -* COPROC: Bash Variables. (line 278) -* DIRSTACK: Bash Variables. (line 282) +* COPROC: Bash Variables. (line 282) +* DIRSTACK: Bash Variables. (line 286) * disable-completion: Readline Init File Syntax. (line 153) * echo-control-characters: Readline Init File Syntax. (line 158) * editing-mode: Readline Init File Syntax. (line 163) -* EMACS: Bash Variables. (line 292) +* EMACS: Bash Variables. (line 296) * emacs-mode-string: Readline Init File Syntax. (line 169) * enable-active-region: Readline Init File Syntax. @@ -12543,72 +12825,72 @@ D.3 Parameter and Variable Index (line 192) * enable-keypad: Readline Init File Syntax. (line 201) -* ENV: Bash Variables. (line 297) -* EPOCHREALTIME: Bash Variables. (line 302) -* EPOCHSECONDS: Bash Variables. (line 310) -* EUID: Bash Variables. (line 317) -* EXECIGNORE: Bash Variables. (line 321) +* ENV: Bash Variables. (line 301) +* EPOCHREALTIME: Bash Variables. (line 306) +* EPOCHSECONDS: Bash Variables. (line 314) +* EUID: Bash Variables. (line 321) +* EXECIGNORE: Bash Variables. (line 325) * expand-tilde: Readline Init File Syntax. (line 216) -* FCEDIT: Bash Variables. (line 334) -* FIGNORE: Bash Variables. (line 338) +* FCEDIT: Bash Variables. (line 337) +* FIGNORE: Bash Variables. (line 340) * force-meta-prefix: Readline Init File Syntax. (line 220) -* FUNCNAME: Bash Variables. (line 344) -* FUNCNEST: Bash Variables. (line 361) -* GLOBIGNORE: Bash Variables. (line 366) -* GLOBSORT: Bash Variables. (line 373) -* GROUPS: Bash Variables. (line 408) -* histchars: Bash Variables. (line 414) -* HISTCMD: Bash Variables. (line 429) -* HISTCONTROL: Bash Variables. (line 435) -* HISTFILE: Bash Variables. (line 451) -* HISTFILESIZE: Bash Variables. (line 456) -* HISTIGNORE: Bash Variables. (line 467) +* FUNCNAME: Bash Variables. (line 346) +* FUNCNEST: Bash Variables. (line 363) +* GLOBIGNORE: Bash Variables. (line 368) +* GLOBSORT: Bash Variables. (line 375) +* GROUPS: Bash Variables. (line 410) +* histchars: Bash Variables. (line 416) +* HISTCMD: Bash Variables. (line 431) +* HISTCONTROL: Bash Variables. (line 437) +* HISTFILE: Bash Variables. (line 455) +* HISTFILESIZE: Bash Variables. (line 461) +* HISTIGNORE: Bash Variables. (line 472) * history-preserve-point: Readline Init File Syntax. (line 233) * history-size: Readline Init File Syntax. (line 239) -* HISTSIZE: Bash Variables. (line 489) -* HISTTIMEFORMAT: Bash Variables. (line 496) +* HISTSIZE: Bash Variables. (line 496) +* HISTTIMEFORMAT: Bash Variables. (line 503) * HOME: Bourne Shell Variables. (line 13) * horizontal-scroll-mode: Readline Init File Syntax. (line 248) -* HOSTFILE: Bash Variables. (line 505) -* HOSTNAME: Bash Variables. (line 516) -* HOSTTYPE: Bash Variables. (line 519) +* HOSTFILE: Bash Variables. (line 512) +* HOSTNAME: Bash Variables. (line 523) +* HOSTTYPE: Bash Variables. (line 526) * IFS: Bourne Shell Variables. (line 18) -* IGNOREEOF: Bash Variables. (line 522) +* IGNOREEOF: Bash Variables. (line 529) * input-meta: Readline Init File Syntax. (line 257) -* INPUTRC: Bash Variables. (line 532) -* INSIDE_EMACS: Bash Variables. (line 536) +* INPUTRC: Bash Variables. (line 538) +* INSIDE_EMACS: Bash Variables. (line 542) * isearch-terminators: Readline Init File Syntax. (line 268) * keymap: Readline Init File Syntax. (line 275) * LANG: Creating Internationalized Scripts. (line 51) -* LANG <1>: Bash Variables. (line 542) -* LC_ALL: Bash Variables. (line 546) -* LC_COLLATE: Bash Variables. (line 550) -* LC_CTYPE: Bash Variables. (line 557) +* LANG <1>: Bash Variables. (line 548) +* LC_ALL: Bash Variables. (line 552) +* LC_COLLATE: Bash Variables. (line 556) +* LC_CTYPE: Bash Variables. (line 563) * LC_MESSAGES: Creating Internationalized Scripts. (line 51) -* LC_MESSAGES <1>: Bash Variables. (line 562) -* LC_NUMERIC: Bash Variables. (line 566) -* LC_TIME: Bash Variables. (line 570) -* LINENO: Bash Variables. (line 574) -* LINES: Bash Variables. (line 579) -* MACHTYPE: Bash Variables. (line 585) +* LC_MESSAGES <1>: Bash Variables. (line 568) +* LC_NUMERIC: Bash Variables. (line 572) +* LC_TIME: Bash Variables. (line 576) +* LINENO: Bash Variables. (line 580) +* LINES: Bash Variables. (line 587) +* MACHTYPE: Bash Variables. (line 593) * MAIL: Bourne Shell Variables. - (line 22) -* MAILCHECK: Bash Variables. (line 589) + (line 24) +* MAILCHECK: Bash Variables. (line 597) * MAILPATH: Bourne Shell Variables. - (line 27) -* MAPFILE: Bash Variables. (line 597) + (line 29) +* MAPFILE: Bash Variables. (line 605) * mark-modified-lines: Readline Init File Syntax. (line 305) * mark-symlinked-directories: Readline Init File Syntax. @@ -12619,69 +12901,69 @@ D.3 Parameter and Variable Index (line 322) * meta-flag: Readline Init File Syntax. (line 257) -* OLDPWD: Bash Variables. (line 601) +* OLDPWD: Bash Variables. (line 609) * OPTARG: Bourne Shell Variables. - (line 34) -* OPTERR: Bash Variables. (line 604) + (line 36) +* OPTERR: Bash Variables. (line 612) * OPTIND: Bourne Shell Variables. - (line 38) -* OSTYPE: Bash Variables. (line 608) + (line 40) +* OSTYPE: Bash Variables. (line 617) * output-meta: Readline Init File Syntax. (line 327) * page-completions: Readline Init File Syntax. (line 336) * PATH: Bourne Shell Variables. - (line 42) -* PIPESTATUS: Bash Variables. (line 611) -* POSIXLY_CORRECT: Bash Variables. (line 617) -* PPID: Bash Variables. (line 627) -* PROMPT_COMMAND: Bash Variables. (line 631) -* PROMPT_DIRTRIM: Bash Variables. (line 637) -* PS0: Bash Variables. (line 643) + (line 44) +* PIPESTATUS: Bash Variables. (line 620) +* POSIXLY_CORRECT: Bash Variables. (line 626) +* PPID: Bash Variables. (line 636) +* PROMPT_COMMAND: Bash Variables. (line 640) +* PROMPT_DIRTRIM: Bash Variables. (line 646) +* PS0: Bash Variables. (line 652) * PS1: Bourne Shell Variables. - (line 48) -* PS2: Bourne Shell Variables. (line 53) -* PS3: Bash Variables. (line 648) -* PS4: Bash Variables. (line 653) -* PWD: Bash Variables. (line 661) -* RANDOM: Bash Variables. (line 664) -* READLINE_ARGUMENT: Bash Variables. (line 670) -* READLINE_LINE: Bash Variables. (line 674) -* READLINE_MARK: Bash Variables. (line 678) -* READLINE_POINT: Bash Variables. (line 684) -* REPLY: Bash Variables. (line 688) +* PS2: Bourne Shell Variables. + (line 58) +* PS3: Bash Variables. (line 657) +* PS4: Bash Variables. (line 662) +* PWD: Bash Variables. (line 670) +* RANDOM: Bash Variables. (line 673) +* READLINE_ARGUMENT: Bash Variables. (line 681) +* READLINE_LINE: Bash Variables. (line 685) +* READLINE_MARK: Bash Variables. (line 689) +* READLINE_POINT: Bash Variables. (line 695) +* REPLY: Bash Variables. (line 699) * revert-all-at-newline: Readline Init File Syntax. - (line 346) + (line 349) * search-ignore-case: Readline Init File Syntax. - (line 353) -* SECONDS: Bash Variables. (line 691) -* SHELL: Bash Variables. (line 701) -* SHELLOPTS: Bash Variables. (line 706) -* SHLVL: Bash Variables. (line 715) + (line 356) +* SECONDS: Bash Variables. (line 703) +* SHELL: Bash Variables. (line 713) +* SHELLOPTS: Bash Variables. (line 718) +* SHLVL: Bash Variables. (line 727) * show-all-if-ambiguous: Readline Init File Syntax. - (line 358) + (line 361) * show-all-if-unmodified: Readline Init File Syntax. - (line 364) + (line 367) * show-mode-in-prompt: Readline Init File Syntax. - (line 373) + (line 376) * skip-completed-text: Readline Init File Syntax. - (line 379) -* SRANDOM: Bash Variables. (line 720) + (line 382) +* SRANDOM: Bash Variables. (line 732) * TEXTDOMAIN: Creating Internationalized Scripts. (line 51) * TEXTDOMAINDIR: Creating Internationalized Scripts. (line 51) -* TIMEFORMAT: Bash Variables. (line 729) -* TMOUT: Bash Variables. (line 767) -* TMPDIR: Bash Variables. (line 779) -* UID: Bash Variables. (line 783) +* TIMEFORMAT: Bash Variables. (line 741) +* TMOUT: Bash Variables. (line 780) +* TMPDIR: Bash Variables. (line 792) +* UID: Bash Variables. (line 796) * vi-cmd-mode-string: Readline Init File Syntax. - (line 392) + (line 395) * vi-ins-mode-string: Readline Init File Syntax. - (line 403) + (line 406) * visible-stats: Readline Init File Syntax. - (line 414) + (line 417)  File: bash.info, Node: Function Index, Next: Concept Index, Prev: Variable Index, Up: Indexes @@ -12903,14 +13185,14 @@ D.5 Concept Index * arithmetic evaluation: Shell Arithmetic. (line 6) * arithmetic expansion: Arithmetic Expansion. (line 6) -* arithmetic operators: Shell Arithmetic. (line 17) +* arithmetic operators: Shell Arithmetic. (line 18) * arithmetic, shell: Shell Arithmetic. (line 6) * arrays: Arrays. (line 6) * background: Job Control Basics. (line 6) * Bash configuration: Basic Installation. (line 6) * Bash installation: Basic Installation. (line 6) -* binary arithmetic operators: Shell Arithmetic. (line 17) -* bitwise arithmetic operators: Shell Arithmetic. (line 17) +* binary arithmetic operators: Shell Arithmetic. (line 18) +* bitwise arithmetic operators: Shell Arithmetic. (line 18) * Bourne shell: Basic Shell Features. (line 6) * brace expansion: Brace Expansion. (line 6) @@ -12944,11 +13226,12 @@ D.5 Concept Index (line 6) * completion builtins: Programmable Completion Builtins. (line 6) -* conditional arithmetic operator: Shell Arithmetic. (line 17) +* conditional arithmetic operator: Shell Arithmetic. (line 18) * configuration: Basic Installation. (line 6) * control operator: Definitions. (line 21) * coprocess: Coprocesses. (line 6) * directory stack: The Directory Stack. (line 6) +* dollar-single quote quoting: ANSI-C Quoting. (line 6) * editing command lines: Readline Bare Essentials. (line 6) * environment: Environment. (line 6) @@ -13032,7 +13315,7 @@ D.5 Concept Index * quoting: Quoting. (line 6) * quoting, ANSI: ANSI-C Quoting. (line 6) * Readline, how to use: Job Control Variables. - (line 23) + (line 22) * redirection: Redirections. (line 6) * reserved word: Definitions. (line 70) * reserved words: Reserved Words. (line 6) @@ -13055,7 +13338,7 @@ D.5 Concept Index * tilde expansion: Tilde Expansion. (line 6) * token: Definitions. (line 86) * translation, native languages: Locale Translation. (line 6) -* unary arithmetic operators: Shell Arithmetic. (line 17) +* unary arithmetic operators: Shell Arithmetic. (line 18) * variable, shell: Shell Parameters. (line 6) * variables, readline: Readline Init File Syntax. (line 37) @@ -13067,138 +13350,138 @@ D.5 Concept Index  Tag Table: -Node: Top901 -Node: Introduction2842 -Node: What is Bash?3055 -Node: What is a shell?4196 -Node: Definitions6775 -Node: Basic Shell Features9951 -Node: Shell Syntax11171 -Node: Shell Operation12198 -Node: Quoting13496 -Node: Escape Character14809 -Node: Single Quotes15307 -Node: Double Quotes15656 -Node: ANSI-C Quoting16999 -Node: Locale Translation18384 -Node: Creating Internationalized Scripts19728 -Node: Comments23926 -Node: Shell Commands24561 -Node: Reserved Words25500 -Node: Simple Commands26365 -Node: Pipelines27024 -Node: Lists30087 -Node: Compound Commands31959 -Node: Looping Constructs32968 -Node: Conditional Constructs35512 -Node: Command Grouping50373 -Node: Coprocesses51860 -Node: GNU Parallel54556 -Node: Shell Functions55474 -Node: Shell Parameters63580 -Node: Positional Parameters68113 -Node: Special Parameters69048 -Node: Shell Expansions72358 -Node: Brace Expansion74547 -Node: Tilde Expansion77210 -Node: Shell Parameter Expansion79976 -Node: Command Substitution99083 -Node: Arithmetic Expansion102616 -Node: Process Substitution103581 -Node: Word Splitting104718 -Node: Filename Expansion106859 -Node: Pattern Matching109955 -Node: Quote Removal115188 -Node: Redirections115492 -Node: Executing Commands125301 -Node: Simple Command Expansion125968 -Node: Command Search and Execution128079 -Node: Command Execution Environment130487 -Node: Environment133796 -Node: Exit Status135500 -Node: Signals137285 -Node: Shell Scripts140899 -Node: Shell Builtin Commands143991 -Node: Bourne Shell Builtins146102 -Node: Bash Builtins170872 -Node: Modifying Shell Behavior205971 -Node: The Set Builtin206313 -Node: The Shopt Builtin217896 -Node: Special Builtins234948 -Node: Shell Variables235937 -Node: Bourne Shell Variables236371 -Node: Bash Variables238564 -Node: Bash Features275759 -Node: Invoking Bash276773 -Node: Bash Startup Files283172 -Node: Interactive Shells288475 -Node: What is an Interactive Shell?288883 -Node: Is this Shell Interactive?289549 -Node: Interactive Shell Behavior290373 -Node: Bash Conditional Expressions294127 -Node: Shell Arithmetic299301 -Node: Aliases302383 -Node: Arrays305338 -Node: The Directory Stack312137 -Node: Directory Stack Builtins312934 -Node: Controlling the Prompt317383 -Node: The Restricted Shell320521 -Node: Bash POSIX Mode323308 -Node: Shell Compatibility Mode341567 -Node: Job Control350518 -Node: Job Control Basics350975 -Node: Job Control Builtins356283 -Node: Job Control Variables362227 -Node: Command Line Editing363404 -Node: Introduction and Notation365108 -Node: Readline Interaction367203 -Node: Readline Bare Essentials368391 -Node: Readline Movement Commands370209 -Node: Readline Killing Commands371206 -Node: Readline Arguments373184 -Node: Searching374241 -Node: Readline Init File376470 -Node: Readline Init File Syntax377752 -Node: Conditional Init Constructs404292 -Node: Sample Init File408657 -Node: Bindable Readline Commands411778 -Node: Commands For Moving413003 -Node: Commands For History415230 -Node: Commands For Text420435 -Node: Commands For Killing424569 -Node: Numeric Arguments427370 -Node: Commands For Completion428522 -Node: Keyboard Macros432838 -Node: Miscellaneous Commands433539 -Node: Readline vi Mode440193 -Node: Programmable Completion441145 -Node: Programmable Completion Builtins449102 -Node: A Programmable Completion Example460668 -Node: Using History Interactively466013 -Node: Bash History Facilities466694 -Node: Bash History Builtins469806 -Node: History Interaction475049 -Node: Event Designators479374 -Node: Word Designators480957 -Node: Modifiers483109 -Node: Installing Bash485018 -Node: Basic Installation486152 -Node: Compilers and Options490031 -Node: Compiling For Multiple Architectures490781 -Node: Installation Names492530 -Node: Specifying the System Type494764 -Node: Sharing Defaults495510 -Node: Operation Controls496224 -Node: Optional Features497243 -Node: Reporting Bugs509045 -Node: Major Differences From The Bourne Shell510394 -Node: GNU Free Documentation License530129 -Node: Indexes555306 -Node: Builtin Index555757 -Node: Reserved Word Index562855 -Node: Variable Index565300 -Node: Function Index582572 -Node: Concept Index596428 +Node: Top903 +Node: Introduction2846 +Node: What is Bash?3059 +Node: What is a shell?4192 +Node: Definitions6783 +Node: Basic Shell Features9959 +Node: Shell Syntax11179 +Node: Shell Operation12206 +Node: Quoting13504 +Node: Escape Character14842 +Node: Single Quotes15377 +Node: Double Quotes15726 +Node: ANSI-C Quoting17071 +Node: Locale Translation18456 +Node: Creating Internationalized Scripts19863 +Node: Comments24061 +Node: Shell Commands24828 +Node: Reserved Words25767 +Node: Simple Commands26632 +Node: Pipelines27294 +Node: Lists30521 +Node: Compound Commands32393 +Node: Looping Constructs33402 +Node: Conditional Constructs35921 +Node: Command Grouping50853 +Node: Coprocesses52345 +Node: GNU Parallel55031 +Node: Shell Functions55949 +Node: Shell Parameters64426 +Node: Positional Parameters69164 +Node: Special Parameters70254 +Node: Shell Expansions73715 +Node: Brace Expansion75904 +Node: Tilde Expansion78619 +Node: Shell Parameter Expansion81561 +Node: Command Substitution101333 +Node: Arithmetic Expansion104866 +Node: Process Substitution105879 +Node: Word Splitting106995 +Node: Filename Expansion109092 +Node: Pattern Matching112360 +Node: Quote Removal117688 +Node: Redirections117992 +Node: Executing Commands128207 +Node: Simple Command Expansion128874 +Node: Command Search and Execution130982 +Node: Command Execution Environment133426 +Node: Environment136859 +Node: Exit Status138762 +Node: Signals140820 +Node: Shell Scripts144718 +Node: Shell Builtin Commands148016 +Node: Bourne Shell Builtins150127 +Node: Bash Builtins176426 +Node: Modifying Shell Behavior212868 +Node: The Set Builtin213210 +Node: The Shopt Builtin225146 +Node: Special Builtins242192 +Node: Shell Variables243181 +Node: Bourne Shell Variables243615 +Node: Bash Variables246123 +Node: Bash Features284380 +Node: Invoking Bash285394 +Node: Bash Startup Files291820 +Node: Interactive Shells297133 +Node: What is an Interactive Shell?297541 +Node: Is this Shell Interactive?298203 +Node: Interactive Shell Behavior299027 +Node: Bash Conditional Expressions302788 +Node: Shell Arithmetic308005 +Node: Aliases311344 +Node: Arrays314306 +Node: The Directory Stack321369 +Node: Directory Stack Builtins322166 +Node: Controlling the Prompt326611 +Node: The Restricted Shell329495 +Node: Bash POSIX Mode332377 +Node: Shell Compatibility Mode350636 +Node: Job Control359647 +Node: Job Control Basics360104 +Node: Job Control Builtins365412 +Node: Job Control Variables371580 +Node: Command Line Editing372748 +Node: Introduction and Notation374452 +Node: Readline Interaction376547 +Node: Readline Bare Essentials377735 +Node: Readline Movement Commands379553 +Node: Readline Killing Commands380550 +Node: Readline Arguments382528 +Node: Searching383585 +Node: Readline Init File385814 +Node: Readline Init File Syntax387096 +Node: Conditional Init Constructs413700 +Node: Sample Init File418065 +Node: Bindable Readline Commands421186 +Node: Commands For Moving422411 +Node: Commands For History424638 +Node: Commands For Text429843 +Node: Commands For Killing433977 +Node: Numeric Arguments436778 +Node: Commands For Completion437930 +Node: Keyboard Macros442246 +Node: Miscellaneous Commands442947 +Node: Readline vi Mode449601 +Node: Programmable Completion450553 +Node: Programmable Completion Builtins458544 +Node: A Programmable Completion Example470312 +Node: Using History Interactively475657 +Node: Bash History Facilities476338 +Node: Bash History Builtins480124 +Node: History Interaction486503 +Node: Event Designators491354 +Node: Word Designators492940 +Node: Modifiers495225 +Node: Installing Bash497158 +Node: Basic Installation498274 +Node: Compilers and Options502150 +Node: Compiling For Multiple Architectures502900 +Node: Installation Names504649 +Node: Specifying the System Type506883 +Node: Sharing Defaults507629 +Node: Operation Controls508343 +Node: Optional Features509362 +Node: Reporting Bugs521742 +Node: Major Differences From The Bourne Shell523100 +Node: GNU Free Documentation License542835 +Node: Indexes568012 +Node: Builtin Index568463 +Node: Reserved Word Index575561 +Node: Variable Index578006 +Node: Function Index595278 +Node: Concept Index609134  End Tag Table diff --git a/doc/bash.pdf b/doc/bash.pdf index 177ac878c43a328482efdc6e3be42541dc68d0da..4392930fd47a67aee84eae0c49dcd07d179a4eeb 100644 GIT binary patch literal 424372 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 z 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 ko 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 literal 412235 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 z ze+sJBhi9QV@>9bHB_bLeE0N(V0LLhQ^B?LJN!q0?!tUW)o|+Ht>#2zd=4n)6I9Y#C zI09E@(9$EwCxD@BbDqtdxj!B|h}6Bc+RtG0tgI$?Kwyukp_wT#AW6?PeJt3jX3bl} zc9HQkj+i%-B)bBIZfT9IIk3Z_cXk7GcVwg&7^2|3%!8Wi>FluPYJ7G#ecm=mR8Q*+ z8>43Y;~7n!fJi@LCpRO7?}?gtW2$QW;&T)yZ3VBxSa^|%zyC`xNSM;WhtnNIUurKx6|^iS@@861oe8+lRjhc|sC zd`-vp=A~LQf@r>PA%Zsei={obM&UzC1nFhr%Pa6ZJXlBHh=zHko|DaI4pTjPcQP5p%6)X>Iyx+IBOT-gYg(B8i@yVLI{ zNC>sh_iJ`~pIC&y@0WlcBrEST5~#c5EhtA@&g41Zq1>#>86pxSsnFR#in@a9|UMMYoBQu`)%fF#}z3NZ7;TD0y>a?`L^ zJQZXL$2Eoje0Z|HJGn_>48EInLj;kESn0)EM2bZ&)1Q# zSZ~!OvhhEM1hK6ODluo-?>VKP&Y2Z=wh)xvrD`CURzEf8&GF~sA})*1kiG>WLP!SM zcE0o#0ShovrAv?fLHcYyq5=*J{R1p`%sEq<3sSB3`*8DdoJpXsL%p8t)p>L_u|`k~ zlsZ+Jw#LZ?qYx8-S!z)esR7hLfV6mE-P@SzctNnyyxOZX;B?_|CI|AHuS=4j^MT&4 zXuilUyn3T3d+k&Po~A$~5~AyU@(xR{#32-ai=M&9Gc&ljb-GU=N}Z7gB;K>*1a1sy z&a2&|cN5E)4(R7L{fl=lNg+cs?vUk{Wf*xAj4g$0T+_CXy~}|0_U30yC|lTQ!~eW5 z&%rLcz4d;*OTXx+c8M0977fAeAK-?-kZbRF^V2SV`AEb!0sRyt$vc5BW z;o#lX!IU2LzqU-(d|?l@V0IH6|8}T$MSfBmlvHkMThR)l&xWmlMk`9s@;GhpRTa

@0gGqZlqu(PZUMtUb=#mr;l$&tai@ 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%0A=(J)F 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 =a55hX+-32mEJ*omIU^>hT_6dA<_CmOP5@U^P-L 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

a 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
GWL1-sJ+M#5H+lQIOM+GIE$<&X1h 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 delta 600184 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%0D|snu1JlWB2a$=;$D| z^2OE-2j*6~mhlQ8msJ_~6-XkUM(k`B8BQD_hFlVXPTY5@3nM%Q5^Nu}0}D};@k&sEa;G68mSDRy%CI88bM$ zpHvZ+<3YP&l!^Yc@l12SqIXlbKD~9hdMf&*X#4P-SA=#|K7140t?3RNUh`XIpR597 zQ22baad0*${TgyDYC|?z!}Qy<|7#PwjYwDtntXzDBdYZ@5xq4FJ{SXsK?A)tw*mY= zjtEynsN@0?v#H=07Z+0<28^aC*L4POsV!?+1usACoF>WtICc8V+EG^$nxXncd{3=# z4vj7)jSy2WLBy!|hY+o>f>QWG>Ozbp?XTiJqjeL+w|y8m7GV|;l@gJjlG6TADq5jF zY1L%spj3h7+Y(|AXjS7WVcFuS16Z10t`+ZRu?v7d6l{aGuV9ww0s|*jV+BI#xf4~) zOy?41v3_?IcHu*}s=^r2Q%l3=Z|Bi`_Zqm*9rs$Hf-)!n30>5>E`gpH?zf-1Tf+;V z6OXTJ-#tDX4mMd0R;rJ~D2tXM>&bz_M8uSqh#Gnau&6uJa# z8Eym5GrvMdYZ-gLmG+x9*|p~QyYxwKRuENkUx!9fkVJ@4mrSE;|0@<-cuIJ%VDon_ zs_zUesHM+OUH1vJrOA3k*Y*hkNX7`6^4CDWKNMG+i6-3%yNOSgNRU@99ZP=7Y~C~E zbM!ZP$6X1Sk(%?C!n+AA>yG|J>FIsGo1UfJBU)vq^VV>h_7ljB)J^g!=~K7wa;1;b%vcg(pi+}*(iTea#WL< zv8Gl!5cw{DI0VK?zC715OS4V2I1AD1_({RILIt zIYYd1INO}6-^L(?hL^NWk#v75opr`KeV=81$uRBml?NL zAEj-SbZgIHhk7w3j)^gcun`M0O-ZupW4H}s_kzm`li>y=rtA$Y>nONQ3KNXCm@QbD zS4LlQ);%{{b8d1zFi|+EB5fbe}ztSc$;=GO9vBJfIE|&{JKI;hzIce==uL6 z798qFR(QE}5-HDuV@ilV;I+!jP@hSw7+%h7%&W5iUoF}V#KJc%Tu73 zq8xwgOa8~+WL2$mf7*dl-DF{f-l+X5mOBS>nn@Qdt-uhy2NU0>Xc{TSQrL3W>@`9Q zweL?5uv(~yea%+xgp4JZ00>qM&W^48R7nmD7GKD@tsmMo>yTO&^Kew&qv<9%D--)yVJX*!+F~6ajD(to~%*UNutAOb$?a*j%wuO<2Ag zLafoZ$ZI(jRh~TgTZyg60u5v8zdPm%if8 zd(-2k-9@mHi#Ax8o8p^$2w!dIhFF2qRz-bdWoJ>QaqY4)4V_eyw&}~AcDQZZf`>2| zf>lIvi3$a`QYg*3`)&TV@R+0>EzRNY=C9Fcm4 zgulxrQas?#2m`;{$dl4dJ>n^8$v;MHzI%z15lMBH8r*Aqd)miL->tv6s=FbVbi9qU zO|>oyXqaksp!L2=Y^Q;RPM#-3*1>M<5c3V;01pdE)`f-v60C;q0_PrDxm@b~cT0@f zHopS?b~9|@(VMg2htPBATX|s;doY+6SO(d9mxW%lnOHX@WYrmY#9C~xg&iwitlS1_ z*~V$gE9DB9*t%JoRL1Tid(eRDT2v06>YfQJY%^J?qt@vZFitk~8Zc}?^>|_tV(;WR zgQL8-eNF}e~rYtZORRyU~3GDn_CwSwQxVH%wY>{?R)5FN2=a+EuTMR@ z2aO{mhl)7+^H@I*v*c13zUI^}&%`jwqnW#^8dwD!8P|8&V|wRY9}mm)E<8&kKj(B& z44Y`Gx#dQ7hfGn6NMun*+#k~!6&F~+V4=iqEoGq-qWHI*-a72ws?RmH8Sk1KGB0}s zG#DmjrtGd}4N~L!%UO8kR<|f>Eq;x+5W7@ivPrWTQ~pvx%zbf#tY5w`%`lo;#wbM7 zp1B3`zK4$L#6Yq|h?$q=&eHn1qtV!}LP&t;Zpg=vJC(pDfO&6vwCKNPAFA1s-Y-CS z5Bu|KHTn-bN6nz8q2_a&Oi)qdKAV?K9|tRWv>l$+22k#{yy50?w&AyZ2=t!YdXuRc zc6*&3b33OS@5byR>sQWL-cAgJqqR5(7nuMOHipHYINeZnvxRHLF;wcMdQ!1U?8!{` zFPZ=?czfZHDC!`Iv}&()nnNC0I0Jb>#f)$VNg9CcJ1zpyZnoV>g`gLM#;eNNqzN1ZsS!|vVF-xFE6EpFUC9)4$2bC@8>001nC7ykOYN^ubXEZXx{Lj<~#?F}`A_Pv8 zu`><>0pPWxL|lDh@Fzo?KpTaMFzU6KQEk<5>DgIuRgy=taHN;9k{Xa7{`?GJ#`aGF z(`5i^v`{CYRowjy;jfA%i$N2oY40MZ-8s~9(HOE~hcr>!O2OHcpaZ_2B3_8`vi3FLhE0b5TWd%fjC{5~$YgcLYpw(&`=QGaAJ zdokE7wyN8*#qC5-_rf$aIDjQbCQPc_JD*NoJforb8UAlSDg2+9nwMGy%tyo%EWi0Nwr z+9o=il(LnS3iFe;208Vx7Qfvd*Cjf0xX)YPG6V7tzq1TvK8sHiva3Qyz0Z=7$PR!; zJ-*WmhoKXagh+skBT$V;Nky&1nOp3zz>d4#`*w4i*aj|H@a%nuks*SXYNbgXb=i-j z_&3%alu)YbT8#C>>bVN52#qaPk^W2qg7Igja$+5^DV_7`nYLRyKOKbbJ0b0kma(JE z6*6nS8dA2jA}Ye-@a*Y1|8*Hkk6Cm)9ed{i%p7nPjTw2+L5V3z6}6v>MWmvgy7F21 znXEitCLc@6g(blj%{%Tr>ot+l@Vbrnpp)VsO^FkAl8+rl}Vg7VL_Y9jz-B@UNfw2%F?*{ds6MgHK#rwgQaPw zvF?SH#`+dACs>p{H3+r(E|WyV;WZc?Tz}p#kI|FQKW!$0gTEE^Atccsq8Ck{I%ZctH)fFPv_}+t5}BAceSEs!Lo)sn3b|Z(_BvEirt9TC0bTawci1p3q1Ay5zKNW zmVutl8xNE=D}NjHl#G5HQwIF?2~6a+wMow_$?5zcw?+6(a$8p%8aEtB*b|n~a)^(_0Y5 z(`Kg0=D#uWtrCUe$z@9-e)Jxje=63pHdz4j;o9R9v|9CMkGp53Ytu1H9ePF{oK%w?8TMgv}Cb_VMu&P98ZxfwASCk`$ zkD*y$w|GHml(MrU9iYz|8U0%n^iC}JdkoEatXYQ$RQ5jL5@NV09F>`HT^N|uG%iqW z{S@E1mgm(M0_hz@?nW9M)Qf({F{CGBBdR3hY8L&2lLq*QCq-G6wYq4uQ6axk{qWYR z?;_$`!3yQS6x($%&r&-m;{p@MD#b(b#OM+Jy+0C;h}(Dkf8x&`R1^$#r_sp!XUD3N z>*DaOFq7pc-^6$7+5{>#p){Ifi1bQqM3%HQIiDXEa8&kLU=m`RYK!8ur&+hv`Booi z_8SX1K&I?5IjENaIzA%el!KyzeZLHJ@tqq{hTk-!H0bNV6G-$BS!WClRhANA=9LeL3Sf+fId6(llIQ7|HeOAQ{b z>LWa{G$+b451E}{7T=%5D-QDBvKlXkoJYF>cjC%X!Y~Oqy(i(h9m84}3;vD~C$Fm) ziB8^x={R69VB_#@C-vm57neq5XBbgVmQ=Ylhz4G>@|(no;6ZmGzEpsB_v1MtYKI?@2H4(#fTnr zF4@Hn1e#Y)bUWMu>lKZ()u}`zfum0Xi!g%L?H+riO<+AVj2;%6di^dp#=aVihTjz` z7HT$?T!TRPZfJZa=i#M{qn+%Yf21>C%u0y~t951NCjD5D($Tpw^B=EM7FcMT1W-yE zh9J-pG8a;9@I-j;IBn1$&CUSD1YKQ z*6=+qpib2D=zS)ryaNL65(Jvx`^@bycBq?~it1C}Vl3y_$uiJEFi6rmAIzo0dCsZ0 z(h)%HyB~wf1|PT9U%H7<3fPx>R3{f=IQ05(7+ha+Ubrp;+RmI;5$AuyDTZlDvz-8w zN@u*WkJ-@)X%^hJ*wlEkv<`O+*z&(lqy*FeR-i_8p@yN z2q-gXcr3-cOLZR9L0=LS%!s#t31uZ%vY&#-it=Ao95I%BIB9SidX$lb2BqvGA!5G2 zpymwm0D>6aXJK_}GCEYHk?$aVeeb0o{uDPPj2(zw%AL`WY1CF%08_Y-{y_*3WtJz)6b2=$cf`LC5 zDt^IZD8;pQCOi}7*+y2Mv>i81c>9yLCbX+qDMuR zzUAk*e;joZIWjH_ZEyB;wg)_M;yf<5W}LTjIbCh_`UKoz<~Y3VIdN@&J#Q|136*C+ z8ew-G{xC9Nen%Jv^*Db#%)q;4D=4K>`ty*bcY6abXxiTVmTX-^9WF3vTg$~~D^4HIN^O_`Nv)YezYq^y=^8Yw{ zd_?4C8X@625^)=5w;HwJWXH>kn=G5Q%pRKmmPgI6;$1WCAMkCTqCxvdsiCylf>np2t54~?fGYvNCOoZUlB;2*%H3xamUv`!limRbwE%}9M^O9Px?&e5)k~puw!GtiMY|b2-O)m@z zUamR_fuJz$(WPIVj{ckr_UVa;=PSycDj=3%h3gLJX^BF@>pR{%Fl3eACvwLSF**NQFLV_0#m`e zo!K$N-);f2T?~FlN*|#6i)X!6x-a0$XRinQPT0RCMR}m))5)gd#K5Q|BA(cz5O@at zVxFP#5~zsKY)3nsoo(S1bO74ZzSHX%TP6S#fN+i{jteo=mpnxZYA-!lAduJQ2rCQekUn4@1P=EFR zT)gE6`aS?2EeWapg=f0mSZm~2g0lFj+f|_h`BcrPxkb}5=jdf?U4ZRfl~Puf645=4 z+QYwXqn`ixpD=orN;aQb>@1H#Vq#AA7l&@#QV{}6Ll~|$Si=8ZOurQ2Tv9HFhWtEO z4kX|Ll0=P5l(A{ZCE?mVl;;HH2&O0s6<`4<_%g4>JadB2te|0#C{ zl3qdNKo#j|9^x}*>2eIi4oM?z#-yvWHj}Iu-D8l;-^e}b=2QKi2v-R!<|>%5Lt*pU zSk$eU8PVkyT>!nS0{WM{R<8`l-t5EgOQPOMAYIcrq<(LMKc9 z!1bgE)*^C9w!tM4FFJZ?PcOJbTIvSBoI|0$*55#$45V^*7x>fchPS5||2f#ukZ+te z*2@T;007GVgGu&Kcr1_WFP#~QqxJ9oDaUO zf?!)}qy4k6`en5`pM>`E_ZoXV3pt&E6sC8iTW~1BckzKu1fL3DjtKRlO16AOs zeY6zvcgQuQJa77avGgg9XShGVLZt|+pDQF9R>ZYRY&==>;qBo}s!0_1ypQIH0<6iN zqvM`<-T05Fm~`R^eb9A(M=}_rhMnP@9|tL8qQuJ&@SAJ(Cs9(N#jBI%`Od=N0Pf-y zu`p7MHzK|de?7&m?f%6mtl!eIx}Nij+IQV#e_ox|-ajvkgpXuAy2ht?aX5q2a#M!;OfkN&(a{e>jkWO zbKm*z$XLFkQ79ZFmF=L3gBIfBDY(78ViKd&;)lGTlT7~Ps=lbxr>|O65TppPC_j8$ z+8B#AQ)nkG2Vr!)K}Tju5sz5D(Sijb9*!kv%$i3^xOLM$9|e(Iut2na3~Z`)O|8{hC$>iiXMAC^hlN>GXxkz8YWs^!M0h>4DNrxCYWFH?A=-9{f)g z&@(3QDCmu@9MUWO}ZP2Z_}L{`IP)mhiw*1HO|9;;0xCz&tn=Td@k z66kA6*MLQ61BrNq2FtqyCy(w`+t=21qp~cVnW#df6qoSb!fC>PT;|cKX>4hErmB~i zv`VwOeXS*9+D)d(x0}7S?%X&iD)%G{;*STnm4bu=l))8no+i-Kr4cL9w)!0&B-Y7B z?enm*U!`E#$sf2mn>!mYvtFf+U9!&LQQ0W=ASN^n!agW4Zt-$H%b9da&k5J9YRSHV zL=+epXHbNyKC(aZvLIrtIHk^ZdcfvAIfpR_PKu=KmSXLAONz$n#v&X$3C$9N{AO`4 zZjv&GB#{8Hf@0vq1WU5@)0q(rt)6@Jo)4(IzID+p=KZM6VVZmz)(F_q=g9xiom#Z5 z4pHJML>G3kpWCf39hTX>y3I4PFD~!Co<(zIuJ~c=PR__2)RCx!-a7Xbl|xewf&63+ zRrXGwFKc5ss9&i>+htBl2~s{(%#`(|#MW=g%%ucG+caVk%EX3_NrmIf#YXQjG7!c@ z&KI@Ao~FMwF*4wmufMnSw6rrw>7;CBH_Zn$&xWV2BQRzhp3&<6l8T3S?vHR{j107hQqJONZOLtsjlLz!Bii=493B!{vDndk6h3O-9 zOKi)qQefydn(B<-nCMAcx&er?z*FjrH9KtE5gNfP?KzDP`eRFi?BXMm)w0d0Q~sEXg*S%lf9nM4 z+xzwg6Saq+CJPTDx>CeuuZ=HEf-99kfO$fKf*rzl9MsJ{i4Mwo(q@d&VjP0Ul_zhk z2{Q>1%qbiETA=4T4TQn8kNKdXK8nt&Q16JWIM#G)Y4?^%bT!*_*A3{6RjE@%uz z9kdnf7$Y}m@s1JZg5%Ka$ObF8i&%vOBg>LeqO#XNM)BKDWMMZLg-8~i&}s`x7D4te zunZiPw8S$ri!8JFTp;r@!}X`K^jkwDnR-?|gdn!aFzZi(0l3(dmYXD#=cp5hi8mg;vAk5bExIJQBU$x8{xhFUJ?g=}N8Zn=XxA z9d8%h@xANzU!B^5>lgKr-9Cpqd6y5SFY^t8*;?F2oM4oy4T=G1YnJtD#6Grp{45i6 zP4AXZu2$(xlUQ5FOjFB7OxIUzH(gCbX>cb^;f}mPfCZs2&6wyE#%#0&Vmas-KuIi7 z9g%` zoCiDWmve3XJ*Y=Joeew!l|;h>!DTM_{FyX73xrLq>I}EA!GqKaN*+;_qfgx#B^OV5 z2eT3s7>#Z z2pFxz1(1LSLw{)JGOWDk!l*6*>R7&tT+o7<39{vFba>pREe#;8vNA1v)?y~LsgeX7!FeW{h zJ^le>Ln#a$S)ui9&s1+9>jrsA?^Z+j_YG%Sp4#L=*r*h-MjG;JUR>dw{HVNP6gk?z zy0q=71^TkOkYVvks;*FB!4_wID9NYMAXBh%Vu7fTXjaZy@E;TL(>lLzG-S2xA5Xi0 zAVI11$*A93q!R*chNdtY0)uwEbcjn>rVZK`b^2bP zSWyIZ4J4FuPykj4uD~!;D=c+0D}VAf!|2Na?$*uxYrQikXZeX8tMkI;z%BTgL~AW} zlv4Jbs^q2i{DyLb8L`3Fr+vG&9)Pl+r)M(K&pe#i{g~_e)Lxrdyc#rp!6zPk^bU%} zGN`*H@br3naK?^h-CuYbe6W15f9jznv85@tUh!;SGpoJnNsfEv15u|_?!aIWUi3T= zNYA%Dx0~2lo7J^(uy?R^aCF#5!_A+4hOl+m$HMKMeGVVLdN?+cAKO(92i~1o`fUmP zX72T+%r*by+5M&%l{%OVf}v^NVAtfoPUSuOags%PAC;+U*GNWeI-dJH85F`^(7lYp zVo^l6Bab2@E}x}`h>D^nTf_!VS|*RKYoKUP3|I<7q$T4Lhseqb^zmyMAetb#R8Np7 zl(X#$q#oXW$Z1Zvu7ZED1D0@XCcfT9zmYPt2~($a6xiB(+l2IR?9r zdeR3cH#cbq*WS<{!mQBH{eWvHbQzHtmj^9d;x9={L7vjh;CoWc0;>6g)T(x68QQ$p z-9||BBm79dh<3M5k*{2^pS^asM&4dM{Wh-Zu9ilo9Qhot_p@L>W}LJ}zS?#;p+5pz zc)LEN3_Q;Uw`&YfXLc`~-Q1E#_Gi!(nIgDyE+n74E9{7rhZV3z-ECBepSnl`^CkJhOMqjr~r93lL!B&%O6L)fXBmNg%dx8jzc|C{>r6^ z?@!eB`GzmEHqEMhmxNzw^QUM~K3;l5?-1_1LOOo!?F5dT>wb3r*otZGJR7k>o@rN? zQ$}th8S9&ykG>tPDMpIe&R*~nnnf48Z6gM1IPXZm4)jCeEF8_<++8h99R3qIncBj! zv2znM6FX%z-@}lm$ciHU^Isy*5Hx`1Sp2#qa`!pi>q%}zw-C|}cWVM@b;-x>PW zRSqag(!r$ADZMjv$;lL+DJ&uQP-k_%54L{fQnVASlxbF?ER~Q=Z8l?Fg9#@3f9fqZ zoGBHC+cKUH<;^jB;Y8e*<*|E`p;o@_4ztk&wHA%Y!havk=a7druCb7{TVVyt_`UJ1 zvac0c6uir`JY6Y%m`Mf=`dCsYU`=vwsDw_PIA&51I%^xFyYkW8Ok~ZwYfW0YFHgev zs%DvO{n=!@+C2`rkuSn#beVM*9?`iHozMrNn`Ps2-{CG`4d-zQ{+T+y(g`a+uGO|Blq=ZB8cp7P+Vl}nxDwQ%9f=ygZ;^n*{CZ(mT0ReTq-CE zOtfYyINO*Q5A)OfwXr6?fwy9jXd9JBe?5OD#|V3YOrc8ZKt$N^qX(2_XqsJ(4z?IH zvmPReNWn_9MRsV`K_O2jfn~)mreX^GB%&-hpIGSuSd-Q)5hgu9EUIQyHa!%y0;V)4 zS)8o(5AmW#$1x0o>u)Z=q>kCoWWQeD8#@D{@w4^(tnt9QYO{5B3BPxnhg*tHou-_~ zSG6fe$5r@eP7A#yjh-Cg)oQJ3NUso^-kEBIe!}dI;sfxJQ%>aj0`up>%2;Rq2)DDV z2$+xS^(*lwL8seI#=pbjXlCfmTM-7^BLP|%3yYbwCiw{zuL0J87#l*5v-sTA`Th`g zIeODpTZ|a>IJ?Xm$M(qP9Z7wBG>JZU(FvD=VHn*ka&CiEWB&LiB}PueSKmFF_!pFJ z^52d(SNn+;yBT}8>8L{wwHCb+x>#`qw`pyX(3Sb-NglHF84osf|CKZczd#5xH*_DP zOVRL33Sa5YJ;Yl8ldK-*A+vSpF<0O)sz}J)W8LZ*`|&|dQ1DL@N6Z^Grv(~g{t=yA znAR!;M_1;SW@O!m$$e*?L0GRKKA2%H_%k{lXKW#Vmd&PUsE-?pY#CKn-DLk=(IF5A3)7i%U*HTMHxBy|&YM zJ&Kn&2Dwj!P zz_!=)<}d4;%jo~+(Y7x#61tCosx|)&RyGiHgN-!i9wjwu8Xsw*FUwChoMs~HLJ3m} zfrfi7%c9e3N13KWjnR}CDi2Nn4I{4);vP{J)-O&-Y$mD_+Y^XjW3X0WR`4y(q^y~f z$7@%nw2XKz4#IgZA{~?ewoYxH6b2-jpt#e<>@aTay46JKHDL2%&<%rwhG>f^n-&^R zfzQrA^7kbma_{RC{}mSQW8@9OfL4ZXKwXi727yN?N5;px7IllBgfaGp5vdG68r6V7 zoNAPi)&!d*5d~(!CTWR5CsXMe`f5nU;g7k)>nJjtNkAu|%5+0;RG6fvXzb%;U1Ibi zjpGv`2ts%yBiMgVnaNsJWWgW@BbvdW$HNgP%F3uS5tD=!+=~{Mi7wEgK)^{A4|oLO zQlygx6%b?p4S$Bz(6VEWB%X(wER3$ul&5z6#$Cvsi2_8=;;#njTC-=w_tmJN69lhH zKYxD?FYG2|mO^)hID(lfG-H;c&W`WLR|_;{9--7fSz*S3c@F(P3St}zLLLJrB8>b? zGyvA<8!a^oTNpN&Kc{!n3Py-IsvNQ?46Q!4x^hG=voT^4Ic=!AHfKeFx^#4K@PfV= zNR#F-FiT)Hr4d*2-v_`P~+1B|H8OAikD&Po{!}Js-2+CMm7^+bW-I05@llkGje}mX5 z%2?xt#ON02_4fovKH=_Zuh79=)_2h5r{{3lk66aah#I6{Zr<^}cA`R|=S+IMZw*9) zYC*w_2KDQzfTz!<$TB<3?MR)J)Pq=44ShPW9yUBG0w2K8Ra*K%%?I{kiuv@kz}STO zD?ftZIMX%xFq9#Op_+E8yJ-{B9g1!2rPNz-S-8bPCJWD)KwRNA(DjXmMUf98+q|2e zsP$k3WVyNu;8fG2tPTkMYc%%PN`=tT2r1&-xaH%BHoM?>{M`TPf?0hV{K7uZ7xR+a z)yb#~2gz9s{Np<2?_|UG=-7z5N41Y{HTkNYTjpeq2`8^)n}>3|`%?thxSKA$xe{>* zQ61@ADYbH>Ky}&_5uYR2w2A$Uj+n3W31g1S)8LU(=nXIwJut=Ze0#}hvln=&nE|y^JQb=J*A?y=yeyD%UTKR-_eq-P^@&8br ziFhRQ5$tJQ&evF{yy)kBX{E43I`LUKi98A(ic>g|oBHv&%>6BE&^z~~V5x8;i$W zun&kcUK`IZ^-ig?1VPsgMgCvcM{h*6-D)!Wl%*Yh-W^S}v9*mR-I4p70I3J?wH*m` zz3h_En>T+B6C~X(ru%r7-)hs@Im;Q-(#hAT?tAgA$V&lNmueUaVgL|yd z=d`zAj(a?q^@o1im@JQQ0<3p~NZq}PGBZD?0_VoA_-WDmm5r%MfQP<#T-%0+?awCB z_q{C1Rcl_JOKhb&hiy^5W)(ol*(fgO;n;1FpuM=ZF!~Yf=9HY1CRZpfO@qI)db-acnBxIu+PuL?|1d)bF#6!>9)8tV1pa*j5q3WrB55|sq>n(-92P*Td`-rn+JUVHEjlYL`4OOv4IvDgOC|NyOSl462QyBap{4&#pwFBxD&r2 zVQR?s-2V~J7ABSTJlJ>>0mUj4yAra)#p;vLH6Q+=E>PrHLixHH*Pvz$GHiT`@9t#p z+isAI>= zI9UI#Ip+L-V0k81UZx8aq%rgw>_W%U$yL4RB15FaLn9ou&V zj)aQ*-RT7yM3;|fkQC!7=0HF=1$_NZnxg2}M{j}HBL%(Hx;%1k-8;+(#;~8+b?s$k z_IkA6DMUqx4a&!Yf0vcD2&>>xUVCt=gG~?P;X)Nqpz$#uW(N#>^=a)HkiE4()={Ud zpm=^dI8u%nfWp&WOZ>J}RE{>M8&L{`AB}8J;pno{;F<8ia}P!O+2Jb zIzX|wH+5e9oh0QYedEXgMz$X>ML#ZvusR9YGb^?cz{VY7B27b%JLxiNQ>vKGL~=$W zfn|ap*h?DRgQ&@A3va({s(C{povb~ee=HJ{3H?uUt4*suRX#ybTE+H`HWv29H> zu{p7A+qTUowrx9^*fuAgIGNbCll{Ga)vkT8&(=X#t*-7>-F4r6t%kw^bbSR7-*K<* zOZR|P==8x=XrFUXQsKga05_PwC=`TG@_}i*|Bynq15u)ebvz0O?J%72=UUudAPpo7 zyG=t~Ic`k{1XtICx92Is?IA4(ff7da=CIaU~*^_4LXAATh@ zVwNRjLX(@WR}mir6F`WjSlLpK=(Zg8OQ6nH)wy#jgdulTB}zgS`A)fhW5B)+AsPVj zHxEkPjkl2@MbS1?)v@vZMEl7J!vVF48qOsJk^9cPJ((D~&ZCMfCdE?z73Cte$4Lkr z!z0Aigi!495TCS~RLh|sOVnWI<2^7mPUWaTt9wrWAw{G$2}19ckil4^n2n7?zvS=K zCA5#|bow-`{_cCs)8AR_(>!mfO%lL*(V7;7!?=DS1`T87o>S=`oPSi${q^*mM>a8^ z*)&*`HI#7>=NVszxUd}tmR@Das|vgS2Uv|#t(ZMLXkL}%hlx^I4wCo5GL36K-g3OU zc>>JN#^cs*79C~dU;&|)O+$vK4cBg{-ejV#q5N98t;$kMmu#C*?I{E68wvoy!W}=% zD{-~I7x2VX9vjP<;fMM#`X~BPPive^@I!R^Us5gMvFpJ&5~u{nUVtj*>M{yZ4Cy~J z$T5K+`D;xm&DsM2<%$0HBcwk(I?rN^X0|tSs|eaWcMe?8X3y$d{d%e9PDYJ&yS1@y z9T?09qMD+Z1{qC^WO4ePcw&GXo}}X^Z_zqRuqy8W6zDWOG`#SnYY7Kh>9Lctsg4)l z3r+m9hPKRC{{Y6vfvl1jZIecr{y8I|L2A%{TkYn7zc)Yv`oBx zV7AMu!RtJzql)j5eTzV)#B78d@&G0|J{9!%U=a{#uDC~%`Ey;0;yI|Pdpe6Yo85bg z+pd#g2}MeCbdkYcqKi#53inU?>0TFDj( zv&(jOAucrqD}=EN&Ms9WSg;(h$qARLx|8mYvpZdoolwhEnRrBlxypIQ2+~xolRo~0 z0g5B1mP`-9QZ9)t4)2o zb!bCl3KTaWwiC>*#C@EULf+7g zR~eFD2JzrlQRF;6ho=~Jd9W3*$(@uHLCA2lCWfM;X7d-w0c}P|EbZxiw6>lb&SIia za`OO6nVcK#Lqkq@A#!|-Ma-Vo{1F}57aU{>F~ zG;etIZ9&YuVP2-}sO*a+mLvV`DV6`%yF&s-QMwJEBF)(|{EC@vl;c3ULKk;k@@mxu zo|x&@*`|vc!@hO-b=`Xh-y4iTX@ZrDN;UEN6_p~=itDUG(VQ+FL1l30zIwuizzjO_ zi{z>^A_Rbs=Gu=J^i_uvM)4#&v>tw6s!JYzNMta{K@H0`&r|pJ3)V?v*Gy@GI@S?h zRDxq!*u z=aQ)=#t$7i9VfHn8!FQaE!S2R*Rh}YC~dIB9x$`QPDMAh;D#tL24^Mt$+pvfe>%r4 zwb4GSKxy~Dk#~L=>QYD5?vFHpZ5hqIVHoP~i+_iUFHKX~0k=Sv`&gJK`03!Ha4oiV z4~P8DQKwf!^>WM%fJ`6>7yYMD(gQW2F`8_&)<8j7|EE9<2 z{;&Uy!bk@_fkbcWHH8FEXU>4c0Ow+2Pac4#ZUVOipg?~m2ixZZtEaim)2fNuH-8CO zjC~K~^SB8TW;d-ST~7o=*!Wv`gTN^`TWbqzvEijwE^bgmY2%ncA=iQm{$dTXVF|uK z2tJ7l?%Xm>%SR+2S4XiCncJ0^9LU@o<@cxRq6vA8jkNk4>N0cx6u@*EmyF`fv1m^F zZNoU5`P8C*O4`~1L`CmqT}A#PK$*4jA9lQuaVn&a9^r&=c;krv%FXkHyG7HLnyqJ+ zQZxQXRgPkS>N=Q2HsT6aic}&oNf{?bh!sKgqmKkrlSo7g)^089__~9<4+L|r-y3JO zqgMBEWR1Y~0JT5t>49{4%uY?3$FRR{(N>xN2^mv4ECT%B_3zvF_G%aE^u zMZ*mN!+59#)+d4u&U1NDMV+5W_RX#Jsdi_IMUg*9l=V152=QhZm|7wusv-~&!SW;s9 z6K+fRyB%H{pm}MY9r)&C99Lw=BNu~B1Ga-#L+b37+#3bAxIc^!oSDcwFb2V7 zu|YhLKG5`h12${pDS%qyN$j6l;#I+2(|dqGT0>AQVK-_w^uNN#^&fOa8*qe{l*Buu z$J_S9hmmc-w;}2x?&bp5iZ+7*8_qU;`m14@$MQoHvot{i%(o7EjLnL|@|Prfa5)E& z>ktiKh<6Gjp33n)eL72wufeX;`LA#$3x>yz;*`Aea(JwOQg)&RT0Si**^lru6(~8T zB>Y&6q8rT{)2!$>Nj25jMh^LJDrytxWyhGAN|~yrbX^Y0j%OOM-S?!^Gk+~X7#&je zBkEuTjJ(tfO6RJE(M3#+BkG{Pns~mrh)4P+=83kd;)n`W=;MKQQT4&hf6{C^&&i6l zZgCc7xaDm+{*EK3Rp@0OV38^UUyx`PjG8$k7 z@LWYw;XkfJV&m|}=xqtw!-Dka=gL1zeu>s#DOVg$a%1-B)tb8U=S;q# zN@X;{IwwRrYA=R6;5wK7j+?{+=7NMEg~X)3hf@2zb-Qn_!mU!;S7j@ zJQBn0Noo-%g5UR9P(%^JSxi1mcb>Z*Dy^^KQEikL#G2sgU5wUbXQDDX3a4}rc#uoC zk7(G*S0yGYzJq?EX#kXI!7nk9qOCu-4q=?l(?HxBC zq4>W^2eEM^64jw+57EoX zCs#}V?4~mL=>HYIWp>>Z+!dxC$BYZ_#_F(3QoY&k2ZF1Yl4l&qT~=9{dP%1CDjlj- zk%JYDNFCIUOBT1#8JCwvjlvJ2%sDpCZ;hiZmCrCyO`sqal&-2)3SC_fB3)je%E3Iu z`A8lK>;Vy}Op@o&Eb4}kTHkDFR-MB9;S1@s$+4@T-`z2vb(cXd#0d%JaXVJG={W?6 z?KwvSbN?;Wsa?sOSS*JObnN;lu7Om^D&QrG`8h1G;vEGd*${`50{P;Ix4vhvvcEcd z_lq$F89)QimNY_llMrSL$We#@>(|^!i4)o&L;NQq-CS%`?!kG>rDUOfz-)GtQO{`i zt5k1Hxuk-`gBhj3!I4?)Ov}jH7e&JODLiaqT~L*#I*sC71QA!}k`H9YLj;O)z>%Dl zaxTt~&6Lk?74u)VYUJ6gk`kww%+BF5ONHLB+4U2H@bID5Tcr<60dP1l_mCAsPA@^Ds(1+J5gtM z2w-9gng7-mc7#+867>(-e9J2JFn*7^dF{rHD|*1d8mDlya%F61@5HV*ffn|2DeBoL zMzyu76oGYz;O{1_$xp+nsB#ffk!+HLRHISNie(59LH3?;Mv-k&uC$QJX;Qutqpv?O#~pYtD#Dc@=a8O%h_p(v<`&I2&PAsfzu(ZI8Eq z^4lcu{gu-UJAX6pB(N*`hRqV%I4C|u)IUSYzw6Z32u}k8 zAye63h+D4D8QI?9agxYD}6Epa2+Ar-mm!L~>%O#5)k+jGWxD^7?Z!psM zAm#mp%$0V#SnMXTQhymO7H~xePw`9zH+Q>bMu$ zG9XQ+A*Ryfhmk{&noSv&b`GM}7-^n1(}9DQrSHm6HmVTTnRqTrjgr86;L;I>k?B6i zQflU2S`Y1cn*F> zX2#8sF82SPoa^+cG%4u<}#8at&*F?ErrUFbmy@|h=C9>&g zI{vvht2UcDmi{1-U@D(=8Mbun0ku@%w-}PpyA+_VSM8cha6O^x0@eW1|IXjmZ#Hr6 z+NK0N%90XPY;CF_qOaGh={~E+YgylRGrDG!5IFjfgj=yfvjxq5vF!<&fZl;AjMMtw z74atzu4*CeNVde;iiY5?5>lDbv!;8ic!(vwx$6=!c-p`D{w1(J!~#hEm}7p5i414b zE^nsT;yqkaTo-h}?q8d#5bd%Vf&Nd`95khf5R`|xjbpQq%r|M-Fbi^v!he6?aOGnh zoysqwglu43W}VGLnyD*#;yrhJnWsk&Zy|T2JwRbjKUF(KF$?40efpgu95{Q8b4E)Q zVL7Ru8baD1d(jFsz;C!h^N4esHv{nKZK?2Z_7#!0!?8($Owqbv^B4ID^+NO@pGn;p zyvP=>Rz;L%*5u7Qc7z_hfZ5k9*o7JXo?qsx)x_TXiaNctc7~BxEv2x3xi}>mFKBSr zF-x3VX4gTPGGth&XnVNqgtsOM5Js@k*h~ltXgupn4Xob=3nV1ZAY@FY1{fxnAV74} z7S`l8a7Q$O!nWrTf5Db)PA&GxyKz z-w#E~+mg|(f=j9&eynVnL4AeZKf7CG2}#PrEiL?r0q&QoRa}Fnq4nWWL$ilgI2Q#x zq$=a7?Y#4Z#grH8!-;0a<8IP^hH=n}bgrLQa4Z}b>d*zR=@TeCDqF>JZpTe-)^F1A z%RZSemDj}mjFfk)%tsERODmJ+qisPb5JS|*#hLgJhMRa0hVfV**RobC&-($SS!^33 zP0uYPKuzv>m1X8zj?*+g){AQSmdgUx-re}vksM=m7Sb?8VR8wsWYYF=qMQMQl1btN zKFO?IIBj`;A%;lpZm3mHo5i+G=vAJ^K}=!j^KOE%J2vOVu`Xsj`xUMksE60fbXFJG z+rn9dt6;I8hxMj&In*%OX?-g&eU$#+K2ifQ=eo;8*V2CV7mu$gEgJXK*{*>{v(G26 zq+5qW{_DINel(C97*|ebGXMrAkyeolZEVJXOP+p|& z(2L};`Ra^r5hd*JZWEsH2j9VB(2!x3sUBoV>V0$|^4pbDbR}nl_yw0zF9;#AFA@XV z)I*w#@1kLEqIC)9K(|lRTkAFE*2~b3#m`jXlNGD-;?@^WhO?Gu45mjvbJFPzpw!@$PU5yKE&|_K1%gP&WNW*s|e~U(xyGgeSj}%EKbp0K8l;bs?*(3#_ zI$u|Mjpkwdbgkab;~6-(xeAjVry~s>fyGd|dTh^mSlKjid3IRWAso`Pun z6g|BKtEE*$yGE9>b}}wr=~_mq+G&5ir8duHeY8v)8`@7xNh2HLku&@QkMx7|*xz6F z)-mGcT-iK5-2=2l40gAmq4*nWTz15DYlep4U;4RgHd|>NRNrgl19oZxwQKL!9&#Rl zjH5sYS+}M8RCWk5+xK14%`?xUyV?-6WASAdzAEK1Cok$1rO`sUH=jRVNIu1UU?uH* zyR2uKH=SP8bQ&h%4P8H20s=fp!jswJT@bPgrjK{ezSYt~G9;A#zO|G*wa=h}w3$fh zpyrDafu15Cf*-XH1)aFu^o9rG<@*1W9g|f7$g+5bs6X0pIeB9RVRda!gFj#Ft3HeY zjhEuphQk;_LIb0z@6mgNUq0uy!T?r@zb+8i;L*qH*7xA3Co`mPYnA6}bZ0F>l7KCo zFyfzMI*X4Yd?$J<2|-%d(9KuXGbVue%7<227sCC>b0V(woex&uMFFxBE=UgiV{}V3 z86?vmz+k&F`Z~G~f9D~MAWmyg`71X&1YWzPU@=Hbf+iRJQ$+QqlUo$7?5d#u&HsFn z33PXjDYxYXU}cr|C6@pT?I|uq>$7&>T&_bDFUz^+r*ZAm#g2m~A?f;(aC+tNN$y8Z zK3Q9RSbAv%iDYsb`78!cHi!e}77rJTq#_9hU^pj#ov&rkk~J5y`KdD?gkJD0S&i$? zqwL6HQd>kSBRpf1cTMoxx#@whxXyry_USa0>tgIm6&N0AyWb|gu=Q1|Ut9#Y7irbC zke9W3ANcE@1wqAlmbSS@TFS~T(%ag?q`#V)g6&3pfYcnMz?9~X#(V=LJRfr!izfjQX7$fhnR4U5VS3oieWO1Cx%6_Db5B=Duv~m1I*F;V) zWExDEP-KZQ@|eqRZTdsrz9jJ)}|00-6Ig;~0f21_B#y5^xR}=}^L+E?FuCaQM@_dv3?3 zffx|#*qMwC!*Ie#5v5{CC<#ehKQfP@l*-S~VAolU(MWxN^gXn~n zTPP&sH+ZVr$RgNk2N}5u^6VyC!yvpBg)r)PE0+t`_7XQ__-k#SD?&VW27(Z?Eo0!+ zQ#~E2=61FN8mjGc^T4(}iuY8) zUvg+0=7svBV8iw`454YI`wQb2^}d#zx*xmJ?QIL7}-<5UbwtI zfCRv<_+DMuOoe+kj!=(;2rppGqV#PBL3sAg&1cfT2sjay6i8kW8X}H{+R>7RPUpc3 z)btehZBJYvBn?0(MWYBgT~Ie4fsbe3_OJNkPbKe7&Q6>4ao7uSA(<4cF3Gop#UbPw zGP{Ylg{vN^JNCP>%_2Zem&?s^lATplNfnUHI9tG(qVC%VAc=FP>{`rrLU-rzJ!t7h zuUJUoKj|)z+30^ij>ZUY&LN9!#}g!=pLk5wD-c0tkFq#lWS=P=zC@ry-ymJ1!2~7W z@5HlveJ6ZV*dZS;J7%G6S=8@ z9<6Pcjb8}<&jtfym!U@vK^|ROEpk1N_Ih2N8=Y=`a|EUHN0R(nSEb*d{F05?qS86* zT7(43WFTO~ApWLBvBHs-$xP~^7NU-pH3bnAFm~;+!d+xV8p0CxEpt-EZiZk@&x4+P zk$E9f346))c)kNL_`KS*wtK%|u=}xrq8m8pA~eEAt5z%5+=(vU30A#{X zx%d3EEhdSNdqxLG|3O~nHb{;mL;Mt_7jXH^eG4bv|2c;tbo^uaXT>Goubdq-A}y6T z9_#X;e%YM(Q9;mg?hiUy8~sqlQ)oL)G2JgvWN|sje(g@lV~@o3z*Ki<%L?jB8?LWQ+xT z>P_eN^Evr86ZHF9&5wJM{}=O)zg8}mg;?+5>m65tuTpKcZ3o?CJl%s;EC02o_$YKY z4m}p{7PLy@w4564|sV{!zKuQ*$TAH6|3`2nR-xiHsg0ILzJ;UsXC3 zMfWAzZSfF<%Ix<%mJcRLj7L5>?fkkcnT3+$+K=*n0)j>c3aek7J)k<^pAFijC?OCn z^iab}aB8ajy&Jsh9*F3=iUjWS+KODbxZ>85aUAQ3?2z|o_`%M9En>@i-yW*9{nXsB z8GH+&+oK$SmyqSxyf*S&t%Hw0O>V3qKJ$wf(!vfa*!-v2S(+_-oZXlG^j=={;lbh; z1@Y(H9`P{{Q>!1$qSs9BJ8{6li2f8z!%y{xOgyYu%#n#Hb>?D2C_)FOh^RvwDaX?=*qJq z)^=XJsq+2f?bnl?z?I7PR-3+?-HA@!`|`tYzF#)7Y-rCEn<_C6?PZ+Mp8e@;cBQOF zYylqSd%jB8)kotO1BVLYx}lB+$!T?(<2uzTZ1eH8Uqv6PpFa1>PO4X<#E8}%?n)FX zo+3)Xp7S?Mw9RjFhSeFFS)>~wW08)5xEO}-sWM|*?~)<4gv;u{k!5_{Y`&an4Zx!G z2cwoknpo>h{HA4j(!sl*PC+1ZDfMTKGeX#YK4NB`3H05+$7 zvr+*3e&EXoi-Bz`$3i&lXzkT7S?u1J$X~sepVXBt9b%zHJzRgBnl=!aqMzTHr$E^N zLNnCJ&h(iuDv>DUz(6K>PSt%S5YiIR0GL}v5Y#ttfd^>+dcO_u=sED{c1XBgPr-x| z4RK;h#{uCGyq}17KX;nz{kxU(4=lvActyPvj+KddHN*nQ!qEnhCqO0A?)E)*CW}wu zFNAXGv%)Ks^QzGVOj#R`C5&Fk-)@D0X~}?0_kpX{~{KI-a*{4Zr<83!}j|e%^7ZaEz;6`MnQnB0y*#CK@)1 zSXkD(`4AKvCDE}fF=mFHsp!t5&j0ez;^Ah`8p{$e;|&a7PEJE8r(fh zSRE@BRq;myzw~FSbM!VD!4uXa2U|CGg~o@+imb~0SaW*}i*ls*n{ZhfPf{(`C<_hE z-(z+aaqh*|vAPC;#Yd}hsq>ffO?!6ld6h^H+mblBSBm9J_!4H+SXbrf7N(|U=Reys z6^~7V_gHp9yq_}W?p2r3J_}r>nd;dPFzPmZoqGYXY(>t$enEsOQGZ%stnF!EZ zStXkmP$mCq^XO@!r5&1yq+ry^;?CW$GnKY*rhik>DtJ8r4kX}z+9*05%{1AJHgpaZ zQ%}vxCLb%IQrd@WWd9jH=U9Z#ycQ^T+9Rm~m#Nw)9NTEEoz8vvH!iyI zS%C~=4sh}hha-C<=5FUk&WGkqjHiC}fA0@*qE@*tIQH2OTS{7hE!)>8!=POud@&?`0l@-pW5_4P zeLx&Udw|tyS;`SZ!8(1b>hPk*3L(mv&te^@p^EJ4Dqzl`? zwYOHHH1`G7MwzgBYmh}_j17(OE_4F4+Buv%)V4wT2&)0Tw!Pn=rj%6yfi*AA z*m8*MWZ;jPdt=|IRX5}zM|7a1g;EWn1$YN=d7J($Qyic?C2<0Rk=!&cMF?Adsb_1F zVxG-GgUSdM*@Rd_w;s0OR1(EjA3MT+FgIcJ4nG$o8~{xlU^k!ASidIBrpY2`&EEVe zr42$1d(a@ete>OvP8CB5y40UJ9e;2{CJ1lnzLQig3D;rJmUs>E4)kXeNd0}iVRbyF z-#==`7G?Ztb_C^8v9QikRLQ{ARfq!ANFx~~SQH$glS@OqhMTxqCgK^J#hp-{I^1q6 zk*wy&9HS$XbDt`_XH|1R5FiRjNx{O4GdFsQmmLXV-->(8Objf2vU#LE)~Dak3%YUAD?4x^X*x0=|K0dWiO~2fDw3|f#DnvR3Yw4)|H$FJ^0Hr! zL^zlajczO`l4e+RWX@C-L7judy^v1zHYR{}yr5+=zyDH&iCUqPylNuG5{e42*8z<3co~6?3uh8r`K- z{tOh$W7(}?pn`_`?n3lJ97FVFQemhyTpLT}jiB8;nug|C5ac_zC3_f;@=AYC^W>bF zOF%Y5lW6oJn4mio94M9;ooxM$oe6~(a~w2y8) z#SNA=ZqwkH2}6@ACUplu%HC|Tpwp4=d#&zKiK%+;Jj*JMNsU7sPeGBl9=vLrq~nN7 zSqlb{pnP-51c4DkesvXRv_L&eRY(gS@$$%A4Cg9dQ-lV9Lo2-E6&X}zDg^j4e)2cI zxSHPbN*0$4RP@=6B;r~O3`cW{i78{pH!-2@(@9o;Qn~nr4dVkptN_3Jm$ldK>`_R~ z%j-0#nZSXR35&7NW=sUim18OBOGx*OK_tDRQWc{m%?$Tw4mB}CuJ_Z?t_^$UsYS>H z)O4qS%WXt8%6+sxF)YJlt4m?tEif<1Hf2MDHaaAjI#9X_E$!RP<)V<>zr$=SaJ<4~Rw&E$mG-T6^jnAe5n(5<+j_7@JX<5T za%gR6wkCnsnyy|G#Ow)Oe+*#t`@Y5=J+8NVyzdu19Q*-&)q44X5V>DX0ZRWYOH$;@ zY$iq4&qnbUO=Fkbl4S&b=--{gs%E8w{LB&*@>k8-N%3LVUp*xu^~S-9P;FjoQadyU~3LDu|ch$COY!Dx8ps zK_ZzmD@jbTCO$*yHLtdWof3rNUJ>z9$JoC)p*QX)E{Z+Vu@e{029T|6i+TbWE| z&MWz4Dd5J1EwpE*n~=+**Vf|zHO7ugiJdgD%#OL=ite9GoVlij25`DA*8V6Rvn0%* z%#e88TETzVrXyk+G>tG+UyDZF54ahjw>2=xq54B)-k*f#B{-1NSD^~#r|2-3(T2cH zAzP%gpZFY?35~71DnwUU)Hb`SeRwa=`JeCx0V#F@+sG~&%%n$&K%%~RPL-hSei*tZ3pt*gkkPA!7Xv$9Adx{19TB#KtmbJA(mic&JKqBIOL z^AWV8g+~Sc{LboO)dpjS0OJnOC~|<<*W3)(Gmhn(2sCdjlngs7PbYaAK3mp-oWK}g zEA2A_3i6-q{Tx@JOakRj>7Q{ue#H9&!OZT3a;3N0{a3g)3aGH|l=MwLb8pR-u2njr zj(R%tf+rmm_?ot*_Fy}|op!S$2O-MW9~p+n0!~J zIOHEF$IssD18xH?nihZhd>S?pOhs(3f@kEMJ~wG|RmxosiOA<2zLh|1O)R6+K;?lh z?h2S8d9uUc!6yjrQ^MCxGY+5Ld;s-&ojZ0# z7+*x!f;C#0*|1R%#v7Y0!6YF<%a)786b?NjRgt1H9emL5`#gTk20mWS zJ{7i4-tQc3*_1(WR)oVybHRJOzIU^y<{#4KG*YKa*V22A8U(N{3S*4vB@ef`+z}?O5#AOBGpj<@xtY zjwV%1A6I3g(Eu0LXn*eR5e5##xrLi-S%!Bq>MW+%pv`NO6}%3^Ni#i)Y_(YGgdzwk zaY_btvO98+3_Nxo9vbzb1wvMK_O2}TgCIt5Qbd8`I%AIvSdcZ~`-I`dULodpS1U=k zd&-nI_k6TARD{QA#JI!rZOZr})RThAq~UrSZhPXDs~cw0N-5?C7I6aRrNe_!a9Dpl zAy^}Y^gac_f?LXLJ$|0_GhJN5wF=y?o){T=ffJA#fpfX!b7C1`9STBkeGgUV|D#_+ zF?%FfRBQCO6`!b~LuG0{Tv2*X1gH9-NY0qiDD&#fOw zC6n&tLTToa+b<_vH>50bh1mLrPwNeJiAA(k5P&J<{E)IjW*(t^ZB zwL*-|5wKJ~M??t2YP&W>T%jWP7zN7wV6v?)niboS+P+$Z!!`gjamadV=eq8z2>szn zDN?3#(tIzv7YVfEcvKP+*YZgtR-gVhS6b7+b`+!w_nK_bOtE2{>LgBZR$-pCn>|J) zyh4eYB!wKze&--57+3OqNkJrUK2U@443`qoJRuxHteq(}_{xNS2I?tc1*u0v+iMmf}b<5;mcz9wJqC`iGZFU&Fr&x~s~; z-#k~==OGQsC}QD!@n0>b5RPp$C5u-E=?KJ#_pA6@GNWp#C>4nD;eL_3dYF`GR=EpU zh~rX*bLYV_Vj&>}rJ{?+1;{oP9HNH_RRxtgc8q5)KGFa*Q>6#JXujOIu@dp%3!P|> zu*kTIvoX8V9s%l3n42*{QB9}Q&csjspDeg#Bj3ASkP!_TuMB#wcZ3y=dwkZ4(6m!8qR)GjIMG8tU4DmZ$$Y)r`j(@H1$4(+qbmL6m zQi)I;*Xcz9L5i<-Otz9rtM!5Bq24I(cWkQ4eDSu>A7<+oRFR-E6Il1yXv%jM#axft z|CDPT4EN)F5hTLz+EQCOCxp&%Jxxg<~krYq1YV1OgbR&*YO-+chG7HF4ut}9?=(HIRUT4kMU3)w0WC?`De~sw^%(3%z1Gx z$a29Y+)nJY@v0pg-AcFq0aU2iqeT_ngk^6}=ZhCMh;aLIAxpmNHB!IZAHsOjexX&+ z8eTFsYd7SXX=E@W*XAQe(5)A@Cesf#@{Be4i zhMZdiX_vW}d z`4(;Qqw`~wBPDm*C(N2%2??hhbY9Pb6!bfKjIk=2_to=1ob~V9u~qbFU6>=O|7a5y z7C6&PKyXulF=I0YSa`MBoPXDskpeL(?w_*o_0D6l@Bz3R+hg{Q=YMeMkmJB?1s=@n z$9%aWm=0JxPn=frI1?YPVX)&TwCsk-0)97H_!(GX+f>K|j@+-v7zuD=>&7;4MzNF- z;b6cK0w^f0Y!Hy_;u}kLa z+yYWZqS*Akb(kq+U-QyvdcajJ1`E*Gl~mpfZbIJoARC6SFbifgv5O{7!jaWttLL`1)pjzT{lnNu?@GAN|g25qL>;75hg88?%(9y^;OU1)y1wYV;0GZFs<} z#JDB%AArhibd-X`@~_^)!ro!^+)_t*xXg|yK|%?So2(49*m9qvFDVtR+WEX$(7(A( z1gqV71Hp><@`JElH+W(im2Ji?H`W&3dr%FXNmU7eDSZyxD6<80{vt_!K$ut5iO+_M zZ1J~;jjBq{8%`OZ0XjM2c@EgjO8CAI1 zDOf?jfh0VV^aF>ZCH7o$@dG``Y3$;LA7k1$#d4iv%lERb0ko^|W)(4ODw0FD<*8rGG7+P(07#z(v>DwNXRM!tWLodp6Kp#14jAcGmfnyRoIAkeV^HIXxA488as2YXygiJoXmUZUNk_nHmAZT?fWp; zaE)oc$9pPnROP#Py_)&v-{2lGM0U5UEQ+f5C^^O-Z_V4;)kqlkXbx+X6e6_?kFP;$ zEWm~JfFN2VR)fVe$fb(@b+Jt^d21=**^ z8(toLEEr3oX9)TlEEVjoXEK^`Av09zsJduw?EwHCYK1iYzoy3lF9dW5Vpew6|30mv z21@a4;`du`-#_7wr*g41tM^3epr{fc()XeuV4b5|`=0`=?Jl)r)t$*-35EQ9EjUG@ zl1^KKjRV=G5W|OdyQLbUb`@%(JX5JLF}V%w@(o7Jn*nX5{q(+GG=w(L{#fYO%dKhw zzkD)UR0%QNh^4LK_%r*qP6MEg5!qx3*tShkws}0xj$NL3+izi2W zq!}|YK;*!$TqMvw#|-h zt&VNmwyhPXY}eq%n&nl;MIdO=r0*s4HXj8&N{^H=gk zt^=pB9&rGBeN9FOWJbW>BlkdJvMA+Z%Wp1(#CPUd*+c?C#IbyS99L3XUSOPQg60@r zJ4vIPlz_<7j>(ce-ML%b=SD`L@75Fh?dB6g!&Of1q&wH@S$G4}sI|maIDXoLS(u41 z?==IQsqhNf<*Emw2&l?#>43vmjAp9I3jQ(3(d(wAS5C;ScU;pJdBZuW>#Vy*U!BD9efpA%$V+U_%!Dkt{b)<9bGfoN71YnE+bm@~qaf zrR>dff|g5=Jz6hH7pj`~`|S|sKDVeS1vjDjPOXrvvb-9l4WL^`x$Zn2V(mN z13YF6K--oWrvO2s&ksy~Sg-;^NS!JtSnXkdPKfgQf3|yoTRlUMHr}a)Ah$~+(;eC2{55tYfD7;kN7KNoclF)dW#qI(1%1 zfh=9=b^6BcLq45-UT;KmV|G=CuIDJWF8%wU|;;QE@@fx zBa!$~ZM`%rPMQ-==U*ZxCQ**BU<2|{Q0~irF;OLpJN$Jyh8S36cRIb^{(61>$n}4_ z%j`tiRuxso#CkrE1JiGF*YYE7fL6y?WN;7lz2J2FkiBdi#gAmsog^G2S*cyKTy#>|~AtByO zjDa$P$h^|mJuUJkQUaAQSy@yKY{pR{SkZs(p*|n#>D%AW=T2eV=efCq0gym$XMBBFdt4| zKTeu|woLRnmu6;3rSNYYbIoH_g$rZ`0t6T45GKZ+86O5jLMd?!p`FJzLJ9C>X`xnQ z#TY3+CB<=u9ThzcnIz$n?2&5Tp}&{T8rp8Gz`M1O#kqiTk>~iUE9MOB{QF82Ps#EV;1A zzlQi|OfhLgf2o*ayG{u^0B!^RG9*m@16LN=17!`o0!LEzG|YHVBuTNQyj3B=nDru} zP}XaQh4(W;mnqVxMgi8aQmG^#WDx|((U95BKuo+*{Q*$^gk+D_SgmHSvdc!b_o_yRd015tiuo;P6!g{{Ut zU<(BU#)nVTgsjLR8e$-&rTwk(=R{`_iWwy8q<^=+KRkokSo5|F|KZMzWaUi$R|Wyf zY}%eD)Q(p?xC$r^CCU_-5kGFel&By5o97O{x@O=?&t_6rH=GTqC9U$)gMX+9BU z;Wt#O3j@g3)hZnsT2%TF1QWMx7Tf>?-aAwMk`d2|1c1b#SqVUZiz=eLyRscy#Z1_D#Lcj=QjDIiD#j-UqtBJ8hF;i2~DlY|1+)!GB z?40bB$8iqKoa!C`bALCHA-OIPc)@B86fnM`ndfj1rGxAm)PfDGh}s4HUihtvz55%8 zusiASAd^fTK)r`T^T2mQxvA#()P5YLUS&%h{#JZ(*}=)zee-l3VjzClmv;9+cYL^s z>2kaoKSgS1pBbSCn(8Fa#uA_UEfX&xIUg*Z|Hm~Ycd=Y;KvtfrFd*BdT`ltH+Lhv9 zb7 zfGivLSv1cGS%3*u3)@_UV*09c)BnQ>jdZOj=RZ}+6S{z2Da`D}Ac*_w0W!2$;Z++os)%X}c|vmrbTr%5aG0_wp_M|SbY{oz28*sLm8 zo#bl9pR@{;Z5d1g5{A8?mP6WeUEOT|Ta)59mp+_s@1#{5YR(rH&T#NYRurA-k=>fQ zA%`3;Jj0uG65;jJei82KzGP4-Cb0T283oXPny-!rkIwCZ)(+<3Soc z44Qa?S!ganx6Updj?Q`U`4RU7;vL*+MT63Z>Wv-@=&Z55OGk6=ET#!LIH0pi5q@bi zwQSE?wtf-lI=`*u?Lw};G(s&2xNeJXBG=+)?M09tEC2$jde!_{Ji_6)kxw)?GSLcb4M(5 z1nf+bz{}C;eef~3@kJS@eED~`N^(7le}pzeutj?KfZdij4U<^e_LRwSUFA6Oh0WUQ zn?ntMcL!n)ML>LuomtITHJiR+TZ}c2cCJgOomqz2G^RvHrWkL^pkozEOMnV|MN&+b z<9)>?+ozYw@Co8{gJ^=_=3o%9{<+g!vOELTZ!mW%2NWg*E>EU_sL5#_RXEd^=^~X9 z%DRaO(Sm2>bdat3+1WVY<{=OJbk37mI}JHM^_|@76IPz)~=BP8H`3F9>mzILk=<-+yteGRZ;l zmJQoVAhcWQ=|bnfLUtvuS{J7I4NcopoCg(T|a4KhEq7m};3wC`E()RvGTC`W*X0nuBw6uLe5 z>6huMzsV99Bg+|^76y*I7Dx1OSHGX~?HGUUksoQ1N&s&olMGcEBa2z~`teH(HaL*z z%by@@zPcTBda0Q4@PvhWFtLi~29AS^ncO-@OrgGuFE?L6zG62mVWe@_#k1SzQ@7hogThXeI8%GlS^tkz}I!`(e&d=q5o8e zOKPFlU69%i)DX%A{|1r9lUi$XU?S>43u#D~`F6kkTmW)BnUZGvw}pR^1t4HSZjpc#jzU2Oigx8P(?`Kn z>@*J)g?smWE)=b(AGj&0qToAaZ+%KcTR}r?l`m$URL>RfzGqf@Ie-*z+YTeI^Ws4L zwz{*SKGPB3Y5Ntu(K%Rv%O80>JKA?;kavX>lVbVIl||K%T(|Y zetO7Wgolq7o@$`Crs*gG(eu;x&v!>ppP04_ma-;WkqB8B5!Jofq35V{fK8bSyHEP7 z3+y%#xB2qmM0}lPgg%DQg%`Yc(ExvD>)}EdhTH+yblUv@iy#My0`BP50=QK@}VV9cJeFc#zuAiEna6U}m`PN7icTnrykXE*a#QDyv-7Eqyg1o( zHOR*H*kwS7Nd#=j5)m+y0yZx9J>LY^DmHFV7x`7!oQ^QK5Z6xY1>Vpy^BQWwl4N1Y z-P5tDMAK1CFSV~bTJPxCP`rJZU%ZMB)!HE{1JWO-X~b*7HMv}n6iWNEzM;H8wUjlP4rlG&JOQ0yYtm)Fwoyr$)%udf@ROd+L}RWBgmwc zR%c7Uns-;W2>b{qyaXEj`uclmDvWe>i8OPBpL0CYpRe+=$RUe#>R>UxwN@2SyP{2bM<~z(i{T7 zfYN(&w$tHSV5SqzaaWF&Fa+5;S0!P#g8{h}8&P;n1z3)R%(*wYnROVH4e`9>mG*>b ze4yZmvBPRSxYRgB#YnZ{@Q#piS1+x9Bz<7LJ>A*qr%y4Qz<%0u>AcVxp z**MN;P@t;V0zK1QM#iqN0xRwa9t6prEo!pXs#K~iNsUE=_Qvs&TWZL>W=NVySol; z%g?Tyk3!CojL!@qITebD2O|r}aRY}VH862Cx zU)HWs$T2>l3bV(2l`d6^BtIn3orUpDtoqwler*HG!6Pl;(n=`-%zc&`?!dh_@JivJ z+XL|ESr(|Q`u9++VRq?v%*g}I9N2FzS&y4eJ)P{e0>_tCzY*9En2hLVc#RzT0nt~* z*WlgyW>E09)Za1GS561>W!h;7#VE$h(WsHMug*%4i4rn`ld4>Cbo& zeaUBhQ0=uxBS)_2z5C+EC_oV#ofN`X)y#brcwEWmQJ0o-+1N!n+v)!L zwb_G+Si+EIsNW=QzisIT()TVxvblm#C@e9#xV^0LlHHcFd4u+j`gRNppFbb9eVD8Yk;tJV3#}+Z!~@4Z?!P>MeB}8sX#V^BTg(wkwap{ zK==Oj7y^||jSDS7zw=)}+aO9|1+G_=%MT*o3mTMW2%59TZChzl6{R(e-+v)9=(Cwb zwr()eOA_m8s*W}ALHm^@{3&xlO1CWFR*y<&&7p$mXJ3gR6Zx#&8`lKC98&*%EQe3l zm&M9;EoLw^6EQa9ZUcLVGQv(n5Q};PKZ~y`pTbDfgjDD4=*@x@kwP<4^u6zkST^Wp z@(ppz0PV?8@a~ft6wi}AdgNUUNs?y#tvRq?UUEe-0a@;zx!}khTmKfOaGiWD2zBTk zc3Jmq^c%&sj`C4|JL;?GTueTiWrRcb9ziu5s37&UM9$`9Bmu2%)@-UURKz2UeP4() z;ab{EZRWIs-UrPO4v-EVuzpi-8=B;Lqc@0`-7Q(mwKwWz1qVm1hPT0Dy|zJOGQjK= zgibVXMiP8((Ss6h=aNnqL1TW-yPzV}L4_bJmM0mcgJ99|5sVgCz8~O?50l z{J)t-9+p(nDNqbBF4q6kQQxh-6}Q=j2%Isf=f)_*9xGc;rO?y&=J_S|q00Wzf}J;A z#bx6<(%Aev_3-=sZ-J=}(ZA^;2BiLhmM}`1NMeEcJuZsR1Fo7b7G>7b%YW`a6_1r) zC-@z2qXznSf~}wf|AOxS>tS@SyoaSuCCBb;{$|wL`n|b{Eg-No12kFKu`fyr{k(H8 zOk&(#7U?W5MppP|FVTAAP)(oV4S4?N*oj)<+_Ag=eDGfjqchWWR#>;3UOC5Fr@E=S z%2=0n{&`ZR(?)UMTW7rvuFbokvos8YsK>2!0K?=fIR`n;l`xkqPBg7qwlZQ;OG%m8 zNc7hR(ep=#56Q?C@YW>uZUk1{*{5+2Q{~;2E?M%Gj*<@dE$$z)eNa5<=qB|HTYPUj zWaIh%Ui<+)eWfXf%{Jn{-Z;4zR-nGNc{>m4tXWJWs(9mkNVT>1$<~Uw4*_|%&OBW| zL437Z2WAVm5*_LgkA=2EW_dq(^6~KXtltP%tvQbFgEkPfcI-3qJbD*iNi}y-r&fKtr9MI5ESOtnJw7DlR{`{1m`ToVOEjA(k zuzH;ABEnV!IndT!{-;GC^mfsm=OL+ldB=swY`86ZVBhTzcdlmAjyp^ON-!aB{Ld9U ztHi>-v+7?n;K3h_zqlw3d$G8)n^E2nq`flY+~kr;D8$d5_kj%QHL7^O&|lQ1;JRWq zJH2z&*kdkzBIkU#O*+O|)G0FG{COVVP8AYSO)kmn5mLFvRroLZ%-fIXK1@Stx|yEWdP1KrjXQI2J5*tV z`fXXDfq=P%p0$GoDiHP(OYef=zWz#ua!JTPCvEsP(nL*7HsPqxCDHUfO$RFW0$>$7 zYIm}?C3u5Zx`s;Vj{nHl;g6!jwXhq+&(hTDdmwZOKln|p>Kcxk81U0Ley0%VU;>9- zEhhJK--MA-3n(8(!4ja@!q2Zg8SPFV-cI9+fQhvhB;9-v6uJFXLN&t!S5ugt~nhYDH58rPIi9TMpFrGTIP;Q~_MxA1saQU&;on z;~8g3qFMndNP<`mS}6cz`;bQTSd3{|APDNpM&R;@q$IbqT$m;`DLFxej0*D}YdbaL zjL|Us7_&57t`PuL^R4`h#w=N?rouQm;qN6rFNqbQcGT<^=5WGS}YknLZBs7ZtrAz4wjH^d8 z;%igIM`3b{K=kf# zr4RyNYFj(NJb0HELknK7u*jN*a|nr1FJ5g_YXz<|Zl6WaXGy|qWStVk*Xph|6w{b# zA>+)fJ^I*hAy+~?1SC26jgCDJ*0>A?)coOzBbRG_xyIqyp^kv~B$t;k|8S(=dCY~|zT_T>oGhBAc;Ne)+` zOWgz4df5+SaXXpFJ+AZz%7?n6!`;$Y=$zTR9oaR{GZi14tX^WU;zE9J5VGX$NvFSB z9s1>Q?Z1jo?&}S?``2OtLBxwyatSv4uq@%mvsAG?Xb67Ir_-xRTPjOa!;pDjB5j2o z)3@Qs&2~*gvAPdVWQ_x8#zJFVmY1}qu(82Wyp06Z<6b8;>L<3%zSh?1h z&_FRxITX!sQj!#*VY&SeqE)LRqZ>U@b>+IYoz zRVVrg8T9RdrNM(p`e;}qE5?tp>yG|ic%)$PGphmVuPHEjdc{QmY0@xxUvz-u{vSvF zJlM;!yq;W)5p;Z@GH5lB0jJy#W_AsCWD?F7RWVG9V#bKy%)?x?H2c*>2@+ny2)1M4d!6Ep&Cz)2xws;pvaU>s^3LY2u?!3iG_7rMY zl`cOV^|-NesI$$bimS;O#L)-sTz!D@p-r5(YwGy7$Ne$<*2&g`#PqW(%OrSwfMg>; zLz3H2unj{_SO^U3mket^J7-x3+VD*HwNVZVP7M6uDsig`7Ea1`adwkR?3uH5jo6;0;VhM$d)gaKRF^l}iV`ms3K6bkuLhAN?G3wz@QV0f88ssuotgyw^`MEp~ zWehyc{5Sk{r_A_XEc0<7Y$44Im*J6)dGPA|_vP4Rl@L~;t^YcVj^9%L>XKr7F34t1 z(SWubZIHjkq6dZ9hnH@gl=WZR!3q#F1j@7lFdYbV>ag|&9k?hMP~(;D`MQbQpz z?{aKh=@?V_j#+KvCYk>pSWjQK!6DCdLLm`t7B$ee!9rDR}295 zb%~`+)Ko>e>#k%YXZi!rO|YiuNgS8mX@RL3NMz;`gpsr)UQpO>w4SS^``pW_<1{bl z^Y3pHMZTJG?)=_nt~YA|lL)cQv-8elTsTI^=q-If6hb5OH+g1P7&ikZM#AXldlr`AwnsTO!b zC&$8oyG%E)`(+<-E-jW6;o$RQ9!QFsuoMhz_Mwb=e-icCrWg$@)aa=&)-8bcIUc;rZG3q@_v$t3^=U*q% zh;_R)jkdjaRay(YcMb@b1z2)k&NZ(>`bWQd#gMIK`_w zO-{Z6otIh@PcHFBAVLRz4bIFkUiUQCDdGYd%H6DcC(ZK4h=lDH&gQ-B}DLFB^v z6-S*GMQd*f?HA6*tlyzx_5^5Be#8|GCflZG-$pHqDZpa$Rwlj}!3XJ<+ynvUP+{TZ zwVP-03uQ1uMC zUd>&B@6Kkz44b(IMlxOcp=}k*CpZI}{$Ru@VK>~5XP1bQCuI;Tt{3_TWlaJ;C5p@u ziInO~|6VfyI2(+E%T2*JR)f7UTX$VfL8-c>w?SA*_%B(p2u! zo1iVspLgGkh)TA~q0py~TY7iJBw3tTnff%x?dnf^&ZiJAHJtwm0c)kF3`U$qy(>uPlvvyDcIxLNJOs&@x?L4 zYH<5xw*=5$(V52HQ9?Erv6R9hfXRlaBK1(LG+u3}EY?9Q2_DU%h|v4t&ZJX!6?cJJ;#9recM?B_$VOBF`TsTWo(ry;N~_TT6RLM?{fFXteQkre{$46*|P`mel1 zBgNxC&UVdp7f%Dz!KPCFl2M!;T8vMTe8@z_kIPE+nJ7PCmRF}r@HAy7x|$N((q_r7w@nkyyZ_hs>DJH(GG z7-!TO2Fop`5LwgjWyN1s)T#7W{Agt{5XxijDyR*mSNQ}pMYQHQl^vpE)FsZ{Q*PU- z{CUz80O1XR0@7$no>*PLP+%5LXQ3F79qe38>|a#0RblBSy*SHBd@p3ALB3gr%PTVr z!fFp+lw3`HU`tjhD_uY{dW=(3+7Z--H)N!Vvegv}867CA;&DL{^uUm7LH(LqcAUI2 zbNQQc?TyYnP&J7lGUL5YL}rrWS9WQ`S$|+5!$9DiV;m-?SAvke-=fxtd&mt5e0wLth*Ju#~L5ws} zRzMmtzh-GSpjawhDwj7ue0vJmXHvcgcXp`8fXO%|7;npM1q7o@v?{FcyuB?iBmm4#dfV;}o3_|GaQF(Gnn(C=a zdB$zlk^6x;a4Kn2xLPTTH~KTvGNi`)qz;rraLtf;@sB`S!fhDn^_K_G0&|w4a;#ge zF2Mgdx4%_0!VFRpA+UG0Z#)r-6U}JDuOhtWl0eo(q#1D)sjD!QZLI>-An_zsH<%tg zKIW55t^!5IksTRLl%znQp`l|qk#1T^X>c|KmN zyqHnvfh)bYQ}99q62o+mu2oSv*t2>k#J{_eCDL$(GJ19$1B}m!v$*doqIt(4>1l5} z7D}2fKe)@^=sNVIW(NwvEjx=+K(6)=IdYbPCKvqaN85i(y!Ru@vlnjCuS@Ff|A0ztRkf#yFos00nh zN|uZK03hb8X;(Q=h|?&+Y* z&jcLmxmw()lqRkwywgaBv!{6LbVHNiw8B|p(&6WAVaDMHRqBykb@R3Q=dhSP)*c%gZ|+ohrW(faz~H>mIYayak{@gji{yFT;@l?iu~FItmPa^{lGZsVQUjt3D44v zi5Qf)VN@G15Zz3pJyzjm^L9D|Y9BU7*|=>Nemq>0g6;R45P}7pLhCqN`sXMw13WhJ zn<8xl8BkqH;?%nJ;7qZ=VT8t~6HH|;o1LK0Q{7rfvQ-s(;}K~TgVgRWK*VP)cnK(j zKsCzwP7OZs7pqcJhJ%eV(}D=PD8yP%|C7@&Ee8(x-Ec$Gh_r&*u73rS4X~=10hd#v zv{={zl;2o3*iu`73&fU#VEmE)`)UVh6Y(8?ut=F}((;^C9^t))Y|Zi&OHn2noBkDt z#@2ZPhf}Ww`m#v%EI7J_4X>~GXRvu<`)DfPd_{!0fs})OFg13xO=8!H^3NzUt|vWu zYfv!|tl09eP7JSt_MQsfW6Qnfrtok@bCaR;m<51m9MDGRZCZE6$NAMZe12jN znB`7NN@Lga?RC;MHzU(M zl`4}Zsa#d+wbFy)Y9HQehl{pv?zG0?^WXr+HpOsmO`l=H9e-=MF+9Z++4kd)ih@X2 z6n7OFL$#(s6+VB^!$7sF{Q3zB_CRi4s;-({;1dfmHE!LjiWmF!;SqNjyU~1*AaMPd z!Z_1o<;nPOBjsD2G+8GTS8MTudn=iwR60DR>X;+(XP>!oWxWJQ z+~E{OKOcWijMS0_JhhV5g`lXN_=cC;(m)JzP&T-_PBq#-d$qiI!Ccm9vR@D!@U!*d z!X;}s?h7#!y|(+dh79Z3jj9el{t2f3aQH?p00~co9PTQde3HNv<^ACbNW59=6_8A4 zFk`m3x$oZjW+Umk*i*{+{28>{68+(qPB8NL)`;ZKh+_CQ?8EtZ9kCc?sfv{N{+Sc_ z3XceAg7wJ$fmR?p(f$9NgxON}h`}*Hc~bM^!2WM}M%$f_f2a?Pq8(}@8I7{)0!BB% z-{(jy#J`Y{#^`yG|McK3WNL`k4*mTsxPLK>-&Z432UWe|Af9~XO=-}49#oR)9Vs`E zu~q)t(>hn*2**U+{yD;Z`EQ^zj>KSx|Km%iSRG&{rhU6~^@X!^1>a(wcsh&Wv_SN9}LrgFm#)xvZ=yRdP|78O2YalIy&(^xnCA`4_`HZlWeYk{+O^ zP$x4TsSCn^gg+&BC@sHXc%?bbmyT^5=E=rCgS}; zBgq>k(hN$}urbxJMg$*kD?sPlC{$JsCrcCqWSEoZI7L2^-qu6f2R!ljad6n}YT4&s zfXb}dTdlR&EqIUR3n2M{SlfAlc(YXtJ>dgvPb}qrCuEfYTHH+tl~~coEdaoG{Mcf2 zNO~UYF!1j$gb|ZnQ7B87oKH^$lvq}RPYWdt5W z95zf0JlyoGt18S36k;$Fmo&wZKQ}2=AU1lld6*P#umR$7PZc&Y*WRjE5-LWY<1Y8W zNsTLAX#nD1^^!bELt)@AW}$g*xH0Bdr-6GjT>n!0AQhZ3HkP}1DcCeeoH_YwSM%m$j z7Aqv^(GF%@`B)zqrSGY>?Z1eDLI}*(7qKbr7SA8+5{|y*p!Yy+;=LsEb|n?DV45>S z=^(xy%O;xeX~KC1+*HtO<*y{Wh#(rm;0!j>zDvD7l%|G3qk8wvUpY$lg^@zHhVtlm z*+!&)(PBIBb7??I@g(ilaS8+0@{2ovYr{ z!zfDrNjENe9*zb=hnY55N=`$vULo#QZXu{r7;ZV=SPQk{Hgsnu+^N+>2BdK-QdT~H zH&a;sQ3au6&3eZ*{az?|k}i2*I}mG1o~c9|iga5Sty)I^4niw{r(u;L@=$CCv*Xi# zc3QH~*Y4c41IW}$xmqNVO`MwRM*+B0Fu#|0^MeKTLMefD?}hDO+WVbNlKH5qlZu`0 zMx(vRj7#suVd}9%cM3#I494m^IwxxO*DBjM3+4e+2at{N^(~l-u6_$6igbRTef{+H zlPIA^QPTuM7Q0d#C=NaIDKh5z*!F^tXxtG$!g63ptcletSdZwm?WGG&f3BlucDi*B zYqYeRGxdNX4t_RJcmb|J;g`O<2h{ht*#uu%wfD`p*4#UaqUn1B#-db)V|NQC#c#t! zYMj@`4dJQRT$V6Pa%<#2n-?^P#=j9b9?E@#M?h&~kg`36YIwcRU;7$WXH*8^`n<66 zmRS`@n>G#O8iOlvqMb?2k50!^X)?qa`o$rE5>&v|csptArXt3_&W%Eo*0;6>0-$*^ zP<0#7>+41ieA*l9_6zF#5w=zvE2F1wJgR7iBZjtOBc{l0s`(3m5>Yu-5YnvBTbQ1Y2)Jwg@ruSIAqD81S?w;#s&sePOCix;_e8(nEf zS{nAURq5!mw@lwQ#^Td%K7e1jB)_kUnpwk$%`jFF z|I%>~Gtvis6>(&xI%&4zED|_d_NpDbJeE(@KB(scXIT?+s9=T!-AM#$(8Yzw zyii3752-~y7$|?OpSl&h?2mH+g)I)|Y!%{?EAH4xJ>4LwRHte%DIVY-l)y8eC&(aT zpmDn32Ayzhww*ZUB-u**u6%^dE*O%v)d^*h4XX~$QxDw-=20$+x$ASB`WxsLX?Y>- zB}Ix0Jy>om{^NQ3u@?qz0cQNzbAC3D%T?}x=B)lPsp1aaf28|&*RjxrA{f4d);~9W}^LiX{huol)Mxme9hOgIm z7c!uDmHAc2QYO#)pU{SD72>%qwNEX(GZUN_E=*osK497!a z)pj8@MC}i@iaO!h_ZSr!WRx&2U6Ef#hm|9a$cSZTA!K?&RNzu_?0LRj8RjXuHR_;g=I6DKMcBqlyOD*B6cp}JaH)5$dim0q{FyR1K zY5GE4;kBv^&rZd^?i4of65yG&AxW04v_i|TmHrk1ZK8S%oC0Eihtv4{No_W${5sCR zJUeF)cHl(OmONp0i_Hk-g@DR$4BgX01hcW=fT_}}5aQaXTIn%fq1%20G9SnBq+!zc~A=`%^oLD(Q|3{Rg*jo_QSW0Gt(a zFq#?(dPaS^eUC|}>~(?5%$X=L+93csIiT1)yp1O(MEptiB3mB=mu+O~y3Ts4sfH#v zKvL}Q{v=XrDNs>VBHYJK?G{W|<-$W|dj76`H~^d|6f`O&t6RSyK%`#v)&N@?U~}z~ zu#XLiOxO?+RGTTcrsZ0_H4m%JM*b%II%G|ZuL7&Ch+(|Hx5sIj?Imr9q77QhwP}Ub zOXQSOznIl?d%4>LuW=}ix!|yazM+s0xl}34Ol_Uh0Q3#g%MD1q^bc}$zks+DtRI7@ z_x8BxmDoQFKIjYVBC7bkSW@G{-0$W@F7PuB)700_x-v%`089_Wo$!1+#DsO9N#^M_ z88apNJc0B(yX{S#EiIE>03ozF#FyQI)~I)Yg^0=w^OpjJ9p;~1F_T(@S^-=GgcgcW zzsA6sP`KkdS=m`#lOxeSh_~iI_Y&Ebslj=;*;7e{p=p5Hb`G0usNXpTdr;7#J?2^o z1=KWsd$V-j;aFdbY>F5)!SkIB8f|*xR95Jn)Yq*ZVQfXzTKIgYkf}!(j@((P7UBum zG@l9BYTinw>1D27^}lc2UVqKRrIkXl7CsrX>~$YZn8ASf)m4iOZT;=3WiDkms$zhgieD_3OvT#U z)&72wDPRCepY?)vapQ(AvEPwh;^x)(B`{U+FW+p!zD7 z&7(=YgQ)H)o>NF|m%7{=ipl^5y8WG3aFG}!M+MG}Ge67uCk2q9ls8T%2|3K^HKf1GP6|7D@OcP2*IVI4h_{ z)sC?7(_z!mn;Ww*g)!3w9y|>Cu>riW6bs|QghIPlK6ouxv3Olo!ERqC=8g^6LxuEW z`9Qc=4&jtA>K{ncYSk1#zHBGDyX*Z$Ilc{ED}y{h>7@Uey!zBL^B}AQzyGij(pwU;cwfKBCgnb z>oHHL?`;`i<--lgrwBYx5f45OJ8HIT2WkNa{M>#-^}M~7z4(J?gj0;gDV)x6ry^bZ zNn)px@t`uC%8)%?Tf`uX!s}bQaK--g`b6RLC+Gozx9Fz! zhmE8|cvNw)-iXt~wyyBHKnO_^H%gj+6Yt#JbrW_HF)5XdSCEbYpgEAS-Z!*lfG{@O zEbU>CV#;k(4?~>LK0ak$-!5#|R*<*|j@+vz{{~Jk?7AyA7-m)j5g`EL$;U26RjfG? z>^`9;>8s)bjN{VH>K1>@h12&j{f)@rd3Dlg-$r}v&q54GJttuQ5ld*qRVFF!LiH%W zt|!^LI|g`6d5)~k;f!sy``W(z1AYX?f)kcjSBNc4|YdFa?EI6OVRmd3E^t0eLl}K`=LuP#?{3#x#wb zSt$b;3j0)9(M{lLc3C}w+Z$$qIX^jr@YVx0*#uznHt+P ztOgSM)%nc?s<&&7Dsr<Az?|KK#xbh_iE5IL7(fvQZ-V}Agw$Xuy}E4aGAp_dp6cIl4A?5 zSjRu=P);!G{Gw9PyWGO!kTH2(t4?=6ccAsy_K-}HN~k4xlpKIL8zE+!mQT^VF**2m z_*iGr!jT$1R8X1hh|uWMzC0iC*Kdv)R9)7+`7wPY@u z0nS>1iL{GiIatCa$B>5C8V&_VHoLw;i`idnT_o)_4U$a(C?fxCmVdxl;krU>z8$TR z0($Ll$5kK@U+m@5ff(Li!Bw=PTHVi3{!j2+nrKfWbP>N z&1Tk3V5Q#?V+(usdSGiQctiogYjPk2Be(&Bbt3Z_A}n%FKvm~L!s?(6yNk7fi9*{G z9QQ5{C`l?XvjMIGd4hd)#RG^EF5E*9bnB(CA&6l2yq@A~42yiWs7Brfjn)M2Gni{q zh06&ynryy)u}A(oH@LZsMj0Fe5EFWCbs2lyNtyu(GHtymH9H?*1e^?@t__Y8<_R)hbSUPsl>sz5H&-30gTs)ZJZ2>dp{kgkpDr zn+cUx1@u*^9wl`}^j=uX1BmA!b92AIJRQTbV<0-1)qh-|W=_O#c{}zm?PcOM3j6`$ zT9MPYfu*~bm&i9wLR(w@u^Be=c>M$A6S=vZTzmNvyuy2S&P^C58dbluX-*G>Uf(pE zCJk&JOD3@D?NGG7++_FBU>mff+varVIPA44=|B@Q?6jb&pR!k(!_!73kbm^cVfpyp zGMG~#u%=YT0$V$jnfd9JljxLAnUDbj7`mOS**&xL^Ahn}T5$ z^zk1tA+F9vrQ3=NH2c7H6^=x#r)O3T7yLkffHHGOPMnpG&F;Q_oxp)z%5P$;T2FwqAw zLqgB}4hbCHNBXr9rrG}A$uDfkbq&!tqaczcxL=5=>Z6G{sYYO3*+xSY1Bu#+Wb#gi zSWa%u(qo{0(CF0OjV6YMQwHN4uWcO+Umdj}DP)CodAC`?5wp7`V(WkvKc1+*jlT|+ z_Q=YvY*Jd+Uz)E&Pn4ZWGa{e#MvFZqOHqH%y6E5Wr3F5pBE2UlHL*QWeW}kFdeP%} zz!xD&2MiSn<%RuOQNq=cG31nG+x$q#kUH;{)R`v-5I0egQrna*3bQX`oXNI>IB~5* zvS;a9#GG1oly}W1{YgFYyoeR$6k(~O*8*UIM>DKKXtvn~rY%9sUv3`yZDr+n zq#!sfI{Aq@bFU{W4Y(smQubFKz=-bo2vBJgrD_|0rv`KF>$3v5c)2HLA#Guet#A8xw1UM-C7_H#*^LjSsi2bO+#gTTO1 zH^S-t{ItBi9LhVG<$nPr&{>@Sm*}12f1-CV4xUU>;{VWnI_|pD7SDsA@jMQKiEr{s z44Nk-4nxxDU#Az>G3Nwm`Hp2rQoCyMnz8#S|Bn^P3me`h)Dg1S(Hb&c?^;EOpQVa8 zF5i@}awe{x!=9+3FVo@BpYO|jv|dIMC+aNX|3-fu9NSei45ez0PA}?e+{n3`dxeQ7 z92#HGT(W=^k~f#WWj;h9JpEgorw{XG4uQ|>Zkdotgwy`!)lD61OT4P9_nQ;p+rYki zwlddGIaAa}=mom`$aN}uk1DijuwC#=vMR3=2l^zgsnG6GXDoz7u*T(jdtx7h0QNC; zbw-x&NHy>lhd*^uLlje@JZ4Xkdw(J1h6P@5w1)t@Y|jm+PE}#QT|bHWlCVb_ua|*I z((Z`RujoIW;0PJe)_z=w&D#!|$>FNirb%IRmVqx6)(!Cj6HRQ6+eBg;;LZ&q{bH;y z)O(pg^Aexew(Tao3v(eISV-z#H zkZW3{Mm*DzN~Njr6sYHVFQ=++-dvyU&<&_bWGD@{Zrg zVb$+fK^*_mB&9O3VkRy=l0Rag8Z(_p5O&bV##ZV%N&T^N$5^RS$KdwOZ1XKFLA@x-BQB+ywQ|6J8y zVBbFvwM>Bw)oz3aJ0QU_KM0Fi?TkCg7fU`Y)PVo>CzA6A6Wf&48&vEzvvzY6`NhI( zIkKl`ARu9397z0}_)*(-+20q=AH4|JJFRe{C;EQK4C)Qy>FLpbOxl!ZH9$~3qDJcD zC3?F~Lt-#u$Z_;`BEqp|F&^PPaM*tWX+G4BK($3k?ve&1g$k=EG_l_Go++cX)^%@B zB>3IqXP~Y);6{(hp8G?^_0ATt3PL`N(h3qHjrbf$DBzox0)i*D2KH8FObG!!wh~#X z`T0bo2M?=8PP^XH60?@V2v~G6B;7RDqD4P^Org1B8xM3T9SJZwmfsujL!*c<%a3GXVHJvvX}gBMgOB7( zD0uZ+VJ!5Bk0#;cq2pjYXO^xr)Z=;LhpOftz4w7B*aQ@A0+!0Qaz<*Mk|<*YdgvWM z6%Bj>!Qu+dJ`&MJzNO!`EW$wFP1u~-T$5gQ#z!5!@I!CgMtSJszGwiDg47h1=UoeA z#sOG@8nhj_@mMk-w6lUNaAA?%_ncR9!T_)J#&Y130XDU*m#KcqDtJU|8N$=~&xA7( zi?2%0j|y5QIh2f8gffC6l>^bW(iYF`IcY$@qoW1QTZho-jt(0xj6V*=)~*w5vG-KB z@86Js{2AZGWsrWljTS)OpFQpaQy`KCBwXaBL9l|G*nN1VQy8O-{PG5hB+M4KB86cZb*6P`PeWL5)-|Ov!UfARlT4a=SD4X7>9x1)BA%bW&cX4s~zm&x*wZaW!)CWM@nmnyTQQ>y!m za2OlOHJX=%uHJqWLN84(d3+;Y&_GVo7N?~lAxIqoI-%EiJ8!jz8n`sIJ|zJ z(O+s=0<3Uug_TE4MRmHRYUv(0-i59457I9d*_dp-Spu?5ghv}oTpG_INw{2PatsFd zjfm3a)R7v5mMw0=q09}maAAmLTAjPuqq!MfK%}-&m@I(kCuzAAJfxLMDzd#Gy-Lm> zpo&{DPu5`)T$ECBcT$H$Uz@Fl`KD3rff0`{T@FT}hDbKrttrzKxlYG$U*KP26vU$5 z5W+B_RV(>eT3n~q^OsxqH>c02C0kTNwF4%R*yKbCHlI?Guce$~`qGzi-v>{`{_Bj; z@#0$D9yY*4bi_CaC(UvnIDl$CZcD<4v?hVVrbbIDCMZKr7s;WM&JJHxCy8N5f0BF# zb3g|zC?1Fc5`k)kh3?i6+sybo?~NV}qCTw-tU|%8S?E20P9K7F9pFsBFEYy$Yt z)$Q1bn?s>nKLuCF#2N*wmfjEU-mXP!-@Cd&$+d&@nWA43|25useM!YDQbJnfhY~9j{mg*#0y!T&1S{+Sg%$bNKj1q4? z>aF+Ll%6jwfAFPq;f3hQjZ`CARgD0wUOx$4;M1e4eRN}%1q#~)QJRWtLfO5c-h4gZ562lKL1 zqd=3r-qcjtLOd)f?4FDdMh$PgkrWTrWVWl4&;pB8D;u%=@k2i%wMOeX_QXzkDS7il z;);caK84kPhPQOXdUB=c7mm!F*}t^_)}5gHNLkR7aG_8EiJT&h#53ypn$kp^ZMT4H z${2Z(htCQ@7>5-xDUj7Z)w`ut@#D3*YV%XxB}sZLkp zi#LNVe%d+Sz53N~l)cj4yxm)P%_T>le;aUis$3s0;sl+$4twW`2WHkzZdXV9aohR! zC#W(Cs4srlPQL|2doR||;dmZrxIJ|k+wE_MadVks-V(9b)&)A2YKFI1;wdw)e6F)Y zNu7@}&=5qLADa%EUint%B<5Z}Fh*L}kRoyGXtMmy83tSU^`ZXEU z7$@?Ecfvurbr~>Yi7(9%cgyY)ohLm~bYCleKRh&$y+?7(3pA_ig!esm2;I0rR ziIBOvnqR7X_lR9Y80BwX#DKPD2U-=_Iei*h$`UhCNqL9u;Kb4X54iX!qeStyVePhZP`&DEWmrb7g%cUGNrJf4} zED*XNgYh85${>woTGsdZ;S2f4_ut7_X3wgy&rP`TNeXQ?w9}moOJ@OBH~-SiB=UEP zqIAZe)Rzbuag`=wK4)wKfP)1I0Z{i&N5245!FqiI1tm=Y5hNtuj%SrA$9pp6W@@muKnTJSm*t=!Jm{qC%Q#>kxLFA8|PJCV1{Amn1X zflh2FY&cJr3Ckdac?j%WJ`H*<_ryjd8|9>K+OTJo+e$e1lLJXFfVe@{V<6>vhz6lv zb#E+7eCYSDEYgJKfgWTM-ltM;tPQwQ8N`iN7^r%351c&>)H;wTY|7wYswr5C*0#mS zu8?K7(Hxl=^Y>^vX0l+9q+h$wPKh_c`Em=rYLdZ^Pv-1TQy8hqQQYXgRk;yc z_B1M;(F0&P8rP_q^`MBx#@Du{SLbDXBxSKj6^?i{QWb4Ms@4(hmjhCak_$^;ESbke z5ym2oEfs(wz+Er`=A=QhdE;I6#Uti%2P?e@FXUP&1+Q==A7#4&0~$?gHe81=yg6z# zE>a~72$=7ZJSn$DmrlV!e)z-YF_tcrFhd_EM`@u_u=Tk&t+j2kVAX+{yJn-Bk`P?6 zlBmcgA&m@1CjQuj$6@EcwN%*joqhw%f)Bdh%Zt7~z?qU(jd})LUzB8JJHJx-g2pX# z=-dK_4#Mg0KdZwBFW)b3+8uu+$2C=(hrLy~-?Mb22QzbyCGUF$IhG*aC^ug_{mpZB znzP>Z>p99Wj+N+^VF)ln31pZM5E<5Sj0a&kq?>7L{59<}9 z1_}zaInWxRW{4TAKOPRkkOJg^vQv3fCWz2=MFH~|?R1;;Ju4W0w#DCZ>v9E5!1SoH zq6H(3?f3F~2@!fLf_zq^MYHqyza=D&MpBbp0I3lfY?Zc|(jAJ2m?2yu{zm8m9fH*a zXyyG;P$qFtt&dfTimpr7!?TNZGPN5G7YH2uY`b~D!=Qf+1%KwM4FcRHZSI8Ua&^jF zFibyeVtqiorkxCK?fY$R2a2NTB8EIrUJoP={y0FAEvidFOtLWg=%b!+R%7&p&v%;$ zkZ3{}fB?gQD3X!(7^4=0ppSpk1$JIf4cEqqlAHnKEmMU3%jBNEqf;0W@yldXoE#eJ zQ%kgVG&55H0o~8JHW`j@zlRh%`mmaarItSV^TR|rbGo%D3=b7 zU-#o(O|{D!TzSiT0~4VhJ9yVe{&0oiFzs+k}Z z4GHi|P*>>h4$tn3zwg7J@D1b{z{keoJTD393;eqk66nO1-n&Ni^S%ablWMg!5tECs zYiHZsL`1Kc(7qE3AItHPp&Yio7`!Uh4nO?$_HUKPJ#8N6xC)i&FeY-YeuW)M`EsK) z!tk8PnW3JZ&0PeE>~#fHGmN6dIrOVFe7eV@fcROgUnexcVvRzmQk%#Tz*pBH?egI5 z$U}D0dDjJtd(Ch|abZzMPiT^j_#^OMbfq_6X+Z%#(OdCoY^v9F=Ozt8v;P+ucqA=hSSu~MPvfz^c;{FR0+25sGK?voo z3?EaZxlQkFnb?w_&Cq*S<(C*IvE#$gPzf17!;;zLYhOBYU}@w4Yw*r z+s8owoY`LbD-kk4-Eoq;^|E7WJdp}$FR<-a&MTJX3&aljm%v>fSZ(fQdZDB3xcGi; z*nhy3c=%*-i${Z53DFU=H5I5jl8Dic`o{h#gLxS#Z4JODHN4d&fXVoQbZJbZ_+LC`VGqZZ@)s76Lxi&oX9V}q!$oMSUU?|v$GKp>UK z2|Oql_9*eT;OpGlT#F4;Qg3{@Cz7_tyJz|1Xt`eiQL_WELsO3SY}PlwK_Q$G(05$j z@p0j@w_3QWM5)P}*HdHc%$AQ$mF)DjzinLj_2g7GXtAC@LUx2`XIW#a+2B?gu8|}A zT@FfTdh6Cv8`=F_TKqg4Fv`4%WJ8#_3H^gA{Qfvbr2OLF$4WPr$oHeW%?uhDYP_*L zP_71Q(eeynCk{qts*d3N1Q=LzRo7Tilr|)B*Tx^QJCva<+@TIZGl|wXW;kqC5O+U% z0k?lEc%8;zpXsnPHGC9bUpV^iu@clrI*YtC!fYIJi$U#N7L+`B0#^ z@rmfT^%8s_nNHnF1xo{1Mv;rK;d*gtQ8%HY~ znM`!a8MRd+Q6Rq50b4W#=`1a%F$y44@0^}3ms;6OpKPl1MYhO>aQMvcID=LOk$M4< zooh?&f<&^*t}bAh4PJw;5T>(+V|gU{Fz3y@lB{lN=v*zJOr64+VSVFg*DsV_iz3jjKdQFkiEL{^z`P6fC>|L7 z;I04&^o>;eRyW*eL2H+AN6djYu`3YWWnkV3IZR6rs_W}{5jG?Dga8 z9}r@9(IO-a{7GhkK%0POO(<-3ZSE&x&mXdy4>_K!?CV2BkQCa~-qXYfhZA>Fp2>Nn z@9zg^;Zc=P>TI0bNF1`L^$i6BPRV%059=t7(6T1KeW1*HKWL8QDWtgrI zUo@z3<5S4fkaXg-z!~-(Dj|S*i6xBZ@qDf#gF7hmsY6`8`)O&Ir_=t(X%<|v9q#GL zR==9*5e{cUsp8QnCG@bUraKgS0g72*fB<2Qi{7n-%bmX6LVrz0HUARShTc92^MIk1 z0?DDJ6bMQ8ZnHmY0|SkQq=(v~D&{@y*&^LchEa}!fEwKippZAmJTAFISWq3+PNEr6XC)3IY!~|Zpy~^LL*fNNWPP@o`xrx)9gtLZ(?1ZQjZ|ER8?b~ zWp|mYw61(wUQ;W*dXi+zf+2a_r>xu!VV8dvKq3J3V7JF-gc{N(#D4UTW8Y!5KFL*xmj^|ejQd9wqr;-7@u_puGDXhKG!#MLkFD<$8$m=3={20wr@E+x z0hxN602CKpyq={llbY`(29XbYaKd)Pw5rmSy1DhaR@2#-PWmpoI#U3Yon{V+GXO^%iSu*83Ft(CzwnS+9I zVm>F^VOh`%_E=i|Gz%y#$I0QxKc~rJ-bsqCETw%4udC_?;(;@+#sIs{g_0%i4L~Oy z5FLZNO$0umE6cAi5U2u{_VMmSCR$NsYD()Tslx{D*K#3bJFzug2C2im@X%fz23eZ7 zK_#m~&vdZQnoNRJjRsR|bwsVC_!e!h_U_UX%B-HQ^$UZT%F93*g(U`Vw?Df3pN0$6 z>_N=aUIUDB?BA-}w0w#6FnyealvK!wa04OmRqn#`P6)LW_LG4_LMgNv#8io7&QgVt+jYNsG#r~vI2Vp zoINSfb#9z`2U0q71X?;RIzZQ)xOp%vKJbG?^I=2#{K%X3O=O_Y`QwZdyOK@^mgnV0 z#kX2#)6BwLs)&r7s$M+*A1*Oc}Zf@C$iZxHWc^u?(N1L$bkU|C=gDNTO+ zw;lfVsJ*9gwMxNG6U>c;doQqZmvZ1H{jRez9}5`2xH=wVI(=tJY7Ev)tt+6u!x~>; zOkzdHr_!$xP#8COrD}Vj#r&r?AySis98L@m5&Xu~fW@|~T!Owzq;U{R7`=D@4Xt_9 z4FCUG0@(lO3Ai#{qe0QZ+1a`NZ)IA(-euxpJL*p$AY2ur3Zc&PK)m6y(qImPc8+7* zaULsIyf*!~4NuqYsk6^<{y)xuq&o8Wu|mg0QFVCV#p*S8U&Ra^Sh!X;NToHY?Abh_ z>hS_&K@eHtj?WE`+LH+aj*0yZM(3eS2x{bpwd?>QR^T zz1a4u^gQdE?PfczM;3o~!QZ-6`7T5RK%wJN)`$e`L*!y#sE4;;zD@JQf%b>QC zqy>SubD@}KV@xwm2B5j@1pzI4crUd*n(lHe%J%V{_uSIX+3kfa4p#ELLPp^$Qdv8Go|Ca%1fk?x&- zT4q-&aJ0PY^WgDmQ7?Wf2m69Kj!lAYgRJVmS;N^*I+P3GS`)kg?aBU=w3p)7xT@vD zA?G(8Y;5_NN-pUh@sItO)YA6kobmL)ef_Z($v0;en1r1>gH=nB{CPJ;1@oSVSk@?y(ls(dwn;YkoA4w^{bNOE>w>?)DR zncBY=Y^7#WQwydEd#HT{uV+84uj9W*m|I^c#0}J|Sg4)MnZwNi@$+*c+&BqiG_4@D z5K&eK&Bcp8DF8$W!c@=wtKQPj*lw~Nbcg8*($^7D5&j)+*9AYQ9ss-`gl`C%w5$Ng}YF zISM3s8@D8d+{?GDmI<%r>SXDY8$shPirnIZ?VX7#%mhSYKmO?iZ=Vj6SVM3$Dk4?y z0k6u0&Be=L0P2~dG46wm`=nCZ#JQ&*U#il@_*WB>0HD0DwL&pS><>aPx-n*4XcX>_ z#?vYSi$)v@j}N~gzFIm|QO*@J4H={;_3EP8`UcDEUt2BZwV@iBG!zX;o|c>%5v>q% zSBv7Bu>g8EZ;flkw>abD0p+ds4D2>XE#d_MO}T*KM9se%zvN<@g;nt#^$ zIRLSaxWCEPWLSKF#)FU)OxGDom4tff67X?blaR>P}=25qAbF$}-?{Or)xq&euCWz*7NZ>on42YTi zx@EnVAxS;q_PpV9rdQv20;GeqcF-ETB!}!>qcQ(eEYE$giQ?eCn5}C{T;#VQ0|YipQh+`XAbN^URE9G^ z0Xs96akCLEL3d~#wekpfcY?$s9SOmjVTg{wA*SEl7I@P-5~Qr3_e1S~t?Bs=rS zG1^S0YE{bv{!S}^VczS&pE<2zXhbPD1J7SW#?6>WNCZxxu%k%+YHl>F>J(`;W6zH0 zhsnE3G!Q8I`N*XIBj4%{=&-8C9iJmPhFkDmw>uCr9f?6!EEXpM4UgH0&crX8xW`!`U1B$ojaAzi;Y;P5TVI+-2L369iPEVqA#igNos=2s+H`9-R zO8C9_hYqfVHr#~DR1EVE#nZ7)*yrr83mgihwY*ryR~b-$HTmb=X9q3&4jS_=X+M_s zXId^knesgmHui2^0NP;?eNB}P6E|uN7Pg(st$1)1c-1W&}-@oRS^zzOxjy&?$X1tQe&uu0C|G*NTzwlk|0 zEVn$nxOF`zYYMKB$0#c=xBjy?XG>%}oBq<`0DGqDnX?WXZ=ntY1!1To%BiHJ_&-{$ znz#;nBs|jq6pz4##N~aFb=nVRh`&Ggdj?z|l?}u;upzGa+JQ*m5-zT*6(*_S7j3bP zOWasZ78k%TC(P<_;;;@u7%s9Iqzni86a7BLD2&v;S zx@=M~b0duS=Rp6xsZ5#z14)UOR^&c|&oQP4zgI_q-Qpl`LTNnJM|e#7oH#b0rK6OQ zJQIn#Dq4xe74$(xb(Rlzu~ExX-to|;2!_nB&ilK4v9o_tXNlfWhUx`wUMXCrPo+R)rV z2!JW8&CNGP z&8r`{J90S=#(>9bJ~Xi|!uC<}1fUA$ zx@37IzK!|S7DnyC8y0M9<&Ri?-vd8>EdjAc`^1>VwbTRqhNr}w#l$5RBf|I}0s3+E z-~{jXm{7Fl_?p=pfNc*R-EgbPQ0c?0lxhvZmoVtH$)9)z%2`T#IptvdRuMgWu|K?A{HDxO!4ofumvmZ;vUanEiKYpY$^~#55a&b@LCRCcb=6Q zRAk4Au#ao{KtrXrh=Ece zyS0p~WVwXzs{G|Hw_v~=X6{-HWB0|-AJnv^R?7rj1fftcei-bhV67o-c#b(2o_TJ_ zwdP$66TdT?)W0-?pE~it3VxIsi8Ck{Ty_mPXG4KSYigfdEP5tJ{MR?)0$qWz|7GjK{XY&1f}Ml)zfa|90srl!Zbt?D zGj_EJw!*%vL6Z$&320WQmYJ^z4sasM16j89^%iSgkXqR2|9;MAmRl-#xoJcuqjlpU znE5;r&ovmmldpI1Pq!!3RX5O#)Mkx;@z&n*`5CU2IJq`CV9I)Xd0#djP+qL1NN{jS zt-ah#T6+GzSUlR9piVLCNt}k%su-Fw`@ns2Pv&`AqToHZ?`=Iem)n}RuC%TXm{WT z{Z^Ig1pbbQ2)Jw+mXuN)izD3Vyc|azX(T&1ecS*U`M|kqZd^zb8W)#_$A9A=y#;R? z-(1ckO7qbF>nSL-+yuovNAUNpiQ+0Ws5NtQw|-W1i$0S$_!YCvQ3245XH2k1W+`89A17ESt z=$^}jhQucn!asa3F4eL*mJ?dq|8 zfU{tLMH?mt7;rw8kOR@30^fam1o)7?;!y{OiDF@v1%0 z411~g@O3#w5%a;SLXz1?I=r2b{j6DyS^6L{6op}?>Rl}!-lU*p?A$UqGZ0;uoej}!U81_7SOHAb~WjTS6$^n>mi0W<@{Gy$t zK@pUfa;O{Ir9v?OzC-UD`{M)|{~!}4&dg`>*;1aur^DOZoxo31Mc&pJ5g?nqj$mbZ zip|UY?XDrf|7Ve|noMpwjL6)W2>K*DEP5<>FI@TptG>}{G2&i*vs08Rk?2Q*NSY3y z1^)?8p|l;= zqolUpQ zm?Z)E7rWaB7@*sM;Gl>1Hc1H^yp#ARlM!tmY$@j5{CA3gqB@~jC%?Av@*@_okqL@c zu^0d^aEMhBMDPQg_i(~~QI?A~VpWlQD5y)@>FF7BrJ)7wfvY%_!S=!>GB9p* zkb!xy%zC;Rezv>9m$ns{Mi?enKvRoKBxz;gJ9!#mw0~HX| zOCymQj89SQxg47+-b?gBkGA-`meot?6{1K~ZImMIr4_joZ<3BJ(v{_!eyJw(>qsnl zIDTn8XyOHv}&3#)y}RC1lk&}|71o`qf+Lrc;;_@&Pm~@`Nq?3G{Vk`?{6JN3 zVxY}$d1Ps%KxIzh?UU%_$g-Ue;D3Yi`I9qSu-hS<^A8mH zjG295eL3C<_o-m~+ci8?5pU6uE%U9Xwo?f|h5dvw7rz_WNy>LKJ5bxY>5AU^^Q72k z2?3?&(kEnEbGTNmfK@IzD{HU7ah4EVt-v%!InfNij@6H|Cx zeoJZ`&N2Y)Eojup!Hj!h3yR#5Ah)ZPVJEt1tGM37JG#oPAYwyxKoPzWfdIMO_T=*E8J1N zt`WU~MbLRvT*u(`jafn;CZ33f>mFb+6UaCXjO};;Ys+6Qu{-}B3Wx^gute~|| zv;aUQc?1sw|VwYV+FHt$A0FkAUC*@k*b)Z4&@STDZ-}3y3%-R;^P^Zqd4;hW5S#zU)MA5@SRmEn7ET@_b z^!o0Pj2cl^rhK2rJzn~{KeYG$H;>}#ttf!roFNzzzE{C9$TFTq3OjQndr^f~+r?6J z{wP?caTXOOA#+Qx7C0=kr>DRgkj9xgrR9obI~nUAn@!&9^o1XpurShJr=*KLmG*$lz?Mz;rvNbMXn1YWvS2Af%YUO0%E#bM+bG6i_Y z#fe*C=EiZ+_KWD&{9s@6Pr>70&;Ol{3uTo}4(H$s1ri@D7U0mPZoh(gRa|rMxW+F^ zqsL9IaWo(ba+?Zx#BnY6Bn#|}g z5C-%OVnlXPeuAbLri)?IZ^DpikM*xd_v!`7W7sy>ov5H}K`lrWVCXFoUqX~HZafGc zo9o4?IAB>>$GvMCC^~P-x4^oxfK>wBtv>x|6M4hnETFvuieK%#*%L~R2r%Z8ndL1` zy{8cCRM|*5sk4~+kA!cgIsQFB9;%*Wt<74m8pY-!8{2(hWUjf zTfp=GqMf>eZG;7^2q?-Lyy!_eznu>w!IHbY^*yS#JSZsFS~fW_Ksi;1xLkfJn~PQj zjVs#3b>95kO1jKsL`;jUb#bN$?!o^s;Kxy58&NPwR|>I|cYWFreax_QO(y-g$#6eRI9SbFacoy1v~86$}K(gVHHDKfM#f$3+f}0|eiM#T9`XsjT|w zVBFl9O;0dX$UHpkaLfvpPSzeaBy1f2v+-g8B;a?U2CQn|xju^Bt7%$5{sDXWMaZK= z4xWhaaDWpmu<|R+rYyKj*Y8KDvg$=KGg+EZ`Lo2TW8A8VsZuF9-`s0(ImJ-RU`euP z_T+rxrLb5j0_o1K>QFRTAdOJ znlcu}p0%|YXqswImFaYOgC?xIi2ceb&BgNi&!bV7r|+Z9)6G7l)-zSDQ8uP;A%_-haGz_HXXM zV#LL2k(?WKpeUAne7z}sMt-whc!F7q!N7|4U;J>Zcc5Ki)X+haE!R3(u&LIysdg@J zg(sXfcj>t>3l>ZMOXTENdQ-LSMt>P5W%p&|>Hp}xas$Ym{^7+E$YR`y!MyAorbWF2 zp_MJlqfaRI7Nw*C9Kd^VK^l@4?+%ysxNv?=ef`}MJ{Iih!287|a`NZyH_$#@m@)0j zn*K56;nhLPh%0%6Gm;DS6VFkt6!_bs8dg64`p2~~>uYC%B~Ky!o2)>@fF2X+9mLSs z$jJ1Cq(wDk>~NQ&dBU0{pWcU&|Ktpu3#HmK81IO4?jCmzkWKP59Y#EX38YY`B-C=1 z)vLD7{XTa~IdgJay>M|7{Z5Zz)5(wF@nk$0b#BD@$5k|rZy6DL5*FXzaQQ5e^(F+3 z&Oc_>|nYmz2tnZi2gj z$pjotMKf^=fUb}%J}!O#x4t`@|6?6%@yL1jQz5cK`X~W}AIO4ysPo(hHqQKE8A40` z##nd9%Y|@!HOTFddO%qG*YwGo=LYu}eE|*=Jdi2A9L9}|Gzp}oTaX_}3LB3J@(9}! zSSpxm23niq3gaMs!gWLASj$^HkMmcy6zJ*zFiQ={GSrVXcd-2{*iUG)n2`2bf;7$2CLDD*;EcAIA0GaoC>rG-EtT=FSWDMei|JbBdu`_d-j z+d}&qFfM0KJ|#iX{P5f%XDU+cGlVM%{PJ>H~BZBbsQy|(fYfl#pFT=p!X`^lTXzCXW=$)e0YS+1*pQO>^1y+H%*#}GUP`%LT zt`Yw6X4B0JShaYj#$0xlx}SIn1iH07uP>;Z><;Z9FqD&!hdZ-#WtZ?;(S#f5vO7Sc zN-*-CJc1@$u0WFQ(Z@u@OkN=`$6`1F5o#9yKDT8G~EH2@Or8>9Q=L-s-5lBr1 zKU#!t=s>Z8;JVr+{mS& zXBXZcq#4Zv{1>!&+iI+N0mfj9YN>hQ;=q~3XERwbsBXi6O7jJKZvt5lr4^huYUy)} zZX$zAR$CL*Xk}CfOWk++_@&_kYtwKKApeU4`>zoWwK{QZBMPpz*UW0+QQz*?Y6l_R z)wQFf4n$FZt%Si=<(!bA(93ePbt5yx)Y0177&N|@@G4fVr{y5%Iz@B^GEu{*0I9$A zE~Ia_1;1_~eB?jvL@@z-6-Athxmo7~%-oz(oC@((Z1$WPEFkqi%pvdrTKJC;06HaJ z0tq(dDHj~Z0bFKw3_|86Ul0wi0!t=o!QPX!BVmIW^RvZ*^n?~Yzq0(Ge@(Wg&bdEE zVG}7eKCEI3H%dp{7!B(^^4b$2t38<|4nq1EOJ=KOXK7op@XQXgyjVX+1t2bYXKkgs z=}rN?aS56ztHgKBE!%O3kxZQjIAc2AK1-fiZhWGmQ`C`l-e|%NFTVbFY@Elg&Z;%1>bO%)T7Y(vsVxdootD z`k3A7kSh`7E{3%^+L#E#3*WjFGWkjlBptdTY^=m5649m)BavwJ$}u|(`1|Kc@|V3l zC9wzzUVISwY7?9Ad2+B9Ebjy_|&)@dT!mT-rk)pV=Ur+yeOQ5w$cn=PG9geIHTpuEGxatPceS^ThZEgfj zxB!Xbs@6e~QK;lhn%Ra1f;RvcjKbb!8}@IPw0g4c zWDd2kNg1NiaBSTKRCShjq8KAXyh(`z-X@7f{su%s03$@Md;=CUmXp7stPcSv*>KwQ z!v#JOul{jmOz_$mm0Ll|%Ek&bP=sH3D-G|lCY$QYrE2?xJgvu}IOP6BI#R2_ofmL3 zOEpZ%ydfDt$tOrFx;asXmup)hOF;hgD+iYt1`Vb+(sxP@CM*_9Ohj6GBfub#%_z7z zye^>rMz~@Np74L)*wgp^LSle$v7`$Nf>Hx=wYB3n$C3SC>#^uS=)kq$J`WNH5P75B z_V{drJcIZ=F@YtmVaXQtI2dd1XWF)y(iZ*MZ}Q;NiQj2PaCYgY~q9&Q7$#8P1v&~^&+FaSq$a+FBpL0~qOfxmURh(bg zw+o3env0&TLNrJ)J@-(Dida0y`W%p1m1lN)UB|%N?E%YUy&YusV5#}oR22kPm1D-UiG6)ssW&4ng@?o?_=7%X-)ix z>!rI^sga3KpX1t*%mEoZvZt+3Z**gNHLZRlE{WyhYS6uHy)b#7MHE+u=r14{wOxTB za>-TgQ0=C6smDf<&$}+n1bs)CfHrx1D=4WEDb&KJj!H|2X+%mFurqMKm&Gz@cjq3b z5Sdw>(2M@2P3&ypu+P!PeBREdHLQf*K9dk^)Q`U9J8meKbNue$AuI>~-MH0`3pHTD zR2Gq!P&KIQ_{%u`pw=F5HUmJ7)?cty&9j}42G0qeSj6Q;)24f17BjJ!CyR|93J`X( zm<=Y3v;QlqI}9D*KbKt_K{MawWc}J*$AdWC+Fssv9$tqxjvol}v&gzjnw!s`Ms@76 z;?8WYi2r?PiF?v&cy+_F_O0u0d}qU`QSsrTUvzEoQ2?x#18UY7i3lLtl^Qm9PaCtu z#_7pE0Ykj}$E$sCRMIT^L(UBS6`5!Z^ZJVSYuOlpBqRG6AL zGJXeO<;|-%Awogu@(nmFt%9uKqe)fPeyzp54$G5F?<28L41JU?ct#53+vpc!Q~8#B zsN-+W2jyUjEJ2B8OyldPY80#7B1ze0VF-QW<6?){p-%ZBORF@%vGX`5dNmO;_5>Qp z_y@pkQiR}E?VA)(&GeAQ2{B~4@QH>FNLx~7|3Z$gimaIB*934y=Gamg?U6^E99uGI z$2FQI`3%;$;42|qgVS&@t~O93ogP_rRkbqsOp=s#$yrcfa_n1x5stUCXK3l^Y;<$` zm&lDBLp7%)ErbV~?0KYHla%6R1iFjxOwU1BoEU{ai^wL~Yaba@dFPRK8xzQ(VP&3< z2Lz6vUsaO5vIF)2mWre#)4<2;cDPSuzoA}Rygy04GAJYd#{AV;7EavLt=O zs`qgLU+8MZ&S*;n85biHE6gO|9^(DeUN>|pRkCwp?ErNidSCPO(FM|EkLwAD#hcTr zdLwYx(i$R7l?}*94wHm|d2;+*2~#3@gmA&?j)6$yK_;sx#YaA%5MKxeBljj4f!1(b zTH*`XT*S`+Ht2n1yhv<#CWPc1J1Pe@zEdEiB4|S2f$@_OFU%BEg)C=`BW>54osH0^ ztosz*4Zs9~sZeRs+8Hyr%5&(@(_D2YlOhmp?09GS&n)l{*{o?Bo3xL69lVlRxD4LZ z$;1o6yczmReJA@1rPS2RJ%r_kT%S*c0S(!*(-nv3e%G>^e zBsI&bx}er8NiJg}oaUr;-Y5yS)8mUHxEc<#I{;`0iHb1!i?hT62B%!P!v-x_N(dc< zFpWae0qW1UmV({copYNe0+x4>sdX$D<;9j<0}$Z=s-mf-@7+(k^>Hb4W8jbU;KFfe z*TSsN&2JPBX9G?Z+>NwYsp6Qus{xst!tg+GmQ671Z#4n zre|(gKu*^|TQ>=vyuq<8tZ|+HSGqaQ$N%p+OksMxYUi<76E*B~HjsDo)m1@g7_fvL zNB`%KcV{zssa`Jm0xNs3)Ja)75RO2aLJNQTns_%QU9Mz=MOC5yOcl0rm1J7SZ@rEn zpeenOA9yTIUyPbg0d>|4CWp-6xnf!qRSk=>LxL;KC{~InHu^~-mZ>pAH<@xeXV&yQ5g?!6wAPwxRCcK)HzAM(=dw2-9iO{b678B$ zEm3ppCpJ?L+p=6mBH-a9$$%MXo*!63bPH2yI~PIM6?>xxD(ZwhuOfb?Q#C2F*ZIPl zg|V%>t$wD>9fC>NcU*v5A&a$6+Gsc85oWyIoLlE%O(7{_=vZ}+^7^!Hr%Mi`xmG8T z!UDO^ba_^(mQA5xl4q6YUQ zqTliR;62)uH3Yf!w7vx+qt=X?o?QCAS{vE+?V^5UHyRLa7YKm7wVoM8vA+~iVtm41 z$B-^hf#TsT*kq%Tj-S@HLx_nHRBO@M)$d|i);bdh)`1NngBO-|K*ecFk2%QjBf4sKR&q*jNWB1y`U9jj=sA@jr31 zC{XZ8FyuU%;RC3ca+#H1+pKa$)(X3Pg|CFApstPczB#(%af{ji?H)E5?9FV^l;fS- z;27M1;TjAqdB4mc^qfz6)MDegQz=ROwn5ppI2j@ZI$L)eu`m=+$Z6Ie165w!2jv5c z+$REWWcdNsP7;j#3o5V-5Aog7G#Nkpyh)gXOg)IJV*x!d{Dlp(HGt+yy|g`OPATSA z|F>4V9`6C{S!8*TXzY6i%+QgZ`d|i9 zgg}--@>gTV$G;o9W+14qmA>2TPM`7A2ubFKeu2*4 zB1HcmzbV}8>Bi8|sGyuI|1tQ1sR20p@rP~q-~OS5AUT-)v?SsxYJq%L=$#zE8(nr6zTsZG__Q`uY3 zFN(AuZ^!ixV8eDmj;O+Yzi%g-h&uIRdFo!|8ia%0 zUAvUU%h%_5`^wAJQ}h1vIYf^(EzW1pi|l=S($vZ)oyqQ9!JoI2&-g$H`s3IUk|T6$ z@j4^5+8FgrDzrpj#UtOoC2###yYB{viqq1*WcP1$T;M-$0@ zL=T|*)IOUJ>``x9gDlXv7{Kxh|3i(1!Aaw#q2ubVKa;bBZKAfF25zRssAbW!Qa>9Q zEGcqL%AHjpBEm(tqO>oG>HtF6yWXv$l^O?Y=)F-t>v&9Twv4Hn`i%7Fexh*odJ&6i zDNOW^RdXCho-zGH&3q}OoiK%(b{*oj6rtjEE)bX}RJex+Ec`?1QNV|3)p%+ONik%d1>VMf38bp*a41w9$gwWwW;j>~8;w zDdyS}r~JMPvaRiq6)?Uc5fCE+s-~Wm!zAo80BkBSE1dMmU5nt8c=-%a+>T($&34=E zajoE+rnvahta~i9O2c7r$+SW;Acgyyq}918+XgG4M+;UJ3nV`fkr$cS%c0#6{4mE#K(5Gg5P z0(>nc_A*H>5U5wGqUba~IA*F?z|94kkUPWv@?j~0V8ZFMJPQJayy9=(DsoutSnkx4oYkHf>SJfR9}jAP(Y@~l;GRo{{Nx4 zSYJudA@NIlaM-^3D&$PlsZ<(WAT6C8WioKRkprq#EkZn+!fUrU7)#B|IYks`fYp$U90*ZCj zYT#(4&rxnOP9*$-;7i;f7s?2J$uDhA{*N#7@D11*pVMN!6r)wrnG6ufGaO5nQBsBh z$BtJ~&gRh?UrB=^3C%*9awwHkp{XV6QAmBuE8d?TqNTm$zi6z>pKSz5*4)w9JEcm2 z^qEBNfEoArY3cPOzNzZ!3=rwVRTEH*6A}t1UK*~RI>kRU1AUnX?s9&rw_U?OHc2$O z+QyW6d)Be26>3!GEZQM%uiI@qloO~%{-BfLs@;&vX6v($a@zdqb_me(B2|l-Nh#|8 zIB0Fz1sgZceJ5iA4OIeH{ef=_h4KJC?rrG*05;fx$dBVa(=w=Bo>yTnQ=z?Ss%S5Z z+{U}?OByH|jTLZQSgngjwzBH_jWquOLm*|%B+5C-0FbpD1(=^-5ZD>E;LOKqzW?`r z{#Bxj0hK^@|0jN7C!G*0_k2JlNqrhG>Zk}GP+2Y2V5gyM0^bt_h$6W(Y{{Sji?|Uj z0K)uj82V5gjT57c+AL^v8e<}eMRGJ-&fF}$o6vJ=4&mZi;Z>OjPBH*I!M_5ueLb}6lc&BQ( zXrT<_c;s9<1d}k%Ud03EGbd+a zpS;g#pBNHnTb6Os(1|{GC+7PiYOnMAWUU5z4DQkzxD!K#u=N6$6wWsOO&3&(fxt(p z-%m-yI8tPQs&FCQqe!KjBkPm4)JnbXx9?n^1w+s|Olvd;&1?pK#AVEM$-S`Zl-;n6 zG!XUd#le+05a#O=SRrnHTde{dZIH?3FEtWti{0;vB2zrM?2y4Xd;{4dj*wHFrk^B{ zkwaEhz1aj-NsG7bvx`4D8Yc=xl9?VimW2E&lpAS1BGPWUDtfvx(nlmk2I{AOX$6N? z%*Lk!i7_-7XrLt{nyG`AMqVemKvn5kbXFhF#K4FQ^EU@>CiPmrN~Zx;RXy~%;xjU( z%@7#(6Xei*|DEfkI*I-V z!l35RQe+bdHKPVhN8G{^`<&c-HWc4^=Bbp4VmO+zvSubLHQ-o4gKgEeGh2q{&WXq9 z8-n}h(Qcz$ zr{9Xb@jEy%vnr3*F7n!F|2fDw#`=BBr1a8iH^}Sn{%E4p@bYH`N3UcSeZ5SLdutO- zTid)pI_W-~0f%EB2%Cn3-s;wPvWBHyzgP-($HqN22q4=rxjf4#1y1*+B{MC?l7Exa z)h>GWc#jtPj4@63Z~g$c@YCgVux^-_GEKl;XsJ}kz~Jd1flwR0Exfe7&#MQCgSu43 z0I#7LBRRR-#HB~CIw>J46v#Z8&No1}ed({R2VSsAY_26pCvY#uLE9bUhU98_LLhEJ zCS7zV8Q@2Ga2&=ZZF5patd&@MBHGMc2#5ip2`YizueRXee+8cI5#o7Om%8ymwIpjChp(R!E-9h90$;1-!D>Uom`UqbfJ<9N|G{(4YtK@Aakp&dWSzGhBu!7E zqVBnOK-lUTRw;|V{~m(& zdzF6(a&w6T&RFWA4JLW*nX%xVShqx6t~jSe>HNA1`u-ADK#-2kwGTkY4GJLQ z@ycm4YR1P{W;kX*q|EqCE=I{l(KeuK;_)CqlMPu+bCnyG>b-wAbv65p<}Bh%ycL`| z#%VSzlzosmv>|s3n!T`9SjjQz%iQd|In%Wy2M|7 zS6-zErDssXlLv1?BA|-6WamY=iFHr+nOZg2yZVYo^~e;Z-1YFm(T)IAEc$*Ii=we1 zUYVt;3sVqu{{;1^d3PbYZHd2zX|3x@l8F-s<;9J1d+`ci>!$dEIWaymt&hdJe#hM_ zw-uFraG3E8pzG4v-_EOG?JH;HD2c>#W>Of2X)6RLP#oGgQM`I;mCF-^J96D^pl~3s zY!xm9EC2%j=HrfvX0ij~mJ89sm%M_(j^h4$a)RPZ{d9+{dITU9$Cm%x&B9jJw|_FD zShDisTfNy&2oY@9Dw6X11t?t#bbTgL4C0~zxPUb4g(Ix`QS!l5N;>p>cs#M!14~xF za6?;iF1sPauz));W#8nGzF61UhcqM2)^v>`ZVj>jjvW!;%Xb4n8=5nN6!Avy%y!xw z;+H_nJa72sv66V-A?>mp=p)E%iqUX!^sYsK@_{#_v8$Mj%Ko-~X}4EIiy zeqla%qCR+%(4{_(Pb=I?mfL9AFp`(cq-D0jBm}I3FuIf`O#Zj=t4rw<>2D!`u+yNn z>?+>!&LjR_)B*0!DA^Cj!Y0+4uh4B|BvUvw4e1|St7Z*ltQ+=lU{OOgGzn!;?#zP} z`jT@BV+b*H=vM`e2_838W;T$u?+!bTy>!48h71JfNN6$RedW<>KOwp3%qs^-qU>=<`;SL!+QmcY7wK?THqS3JSofk{A=N%%AQ#GfZL<-$|FF> zmRVgmPVC!O)h)R&%niVPAU7sHo6-k;fzi_M8=%lYS-9E$Coi8~BLfKoFutN!;?-(K z5qw$@(90S=P7uJ0G7l6ux)HWnveCD*QA}clj{3R%-{MMp+XaR6Xu_6*jbP!AXWu2Y zXV^uREMAvF<<_`{w@YT<;-{x{m@n8XooNpravAaP{hcicU@}jnD3Y6Wb?T4S-gdyu zPZzwZF5hXZZdI|a`~fuS*x04rR@d#!&zJY|<5j#Ht5=lPez@3lujpLVu*p_x^zZzB z&&0n9Ly#V)4v`$QT0Pn((j*3S(AjBNCep|+(g5eKY?wN~$EV7q%WJ;6xl}0)ZOv<~ zXh_1+xKXXE`86nJMaxkiymFRNn`E(}OBAKV9YL$nOTdz^KL92eS=uGCqza9}&6PZ! zssTB;S} zA){4-4vf|oEiI`Mvr%W$i<{q3LnOOq%MKt zG9?5>#FwjgwE)(37Dwvr;+9Fo3l<6qf2bWj`3SF}S1-KIrgn;MG7W-w>`P8EHx|D4 z!9F>E9NIlhk-%|tk4${jC=-N1R~mID@Hjzv5oe+4+;n)M>@z=N!pbP3_)O;5Scl*Y z7S{b|%UIAup(XsdR>KL7JbXE4?x7X~3tdt@MT_y+wE%OQx>FCCE^&XUU<)B`f4p`A zLlsIWg+p{TAUbiF+0XsRZKGj-u5*+zUStCbJ@d2 z%F0Cmj50h3nAo(WNv1}8^#rzJ1h!Xr7PG&w$|sDQl_9+_XxS&rE4eO`33cm@DNn;= z^R3&F!+=AOYl|`PQHe2f#-Q(WxYJM|Zb=4MU@#8K#Kd%w@{1qZW(gzl$n z1wapJQM~Ib$b9{i%%x~Bii)?5g3aS}3F5fGV1{7|gGbc2DKSQdibH!A&xG-p58R<9-vu6zY;{0GXO`Qm2!mo(M6|+xdo0is zU)j*{KEmt>6Kyj|j|?1wQwSr=?G5wz8Bjv@r8d3a=nPjSLl~_uGwPtn7UqOlI0=+W zB{D1&F+Wcsca#OTLsa4K7o-$84y*)f0%zLc+}Upd&L*@D-3P;rT?^-RKi>gW3PfwX zBcS|P2ySr=7TU`U1~EdDD%%VUEGsgQKY->Ka#a?0SKov1%aS*`*7wf}SwT395#Tex znK8Q6;MOtGhOQVFM~pJ>&V{{qg^m+wq;WFdX|l8A03ienmz~VpWEInB);$Ydq#aG}j9n0ZwQfWb8wNLvvY&(gcYp@hoj`9> zZIIBW1GwfbDvwR5VZfQlKJ54&0ea1BiQv}v3=+b1UkozL+2H6qPz$`&_v6K)?BC~ z;z(3<9T2X#&_McEq?GcL7T|jSW|tP>TkD8*kAEIUhV2^_ll6XYc*sGu0|uqT{wo<9haL#=(a zv`h?nvf~Y}1XgOjf=(XIAW}l5d5<&Ko7wBnffOss_<<^Z5LPVN06pF7+taKOZY>^? z4&PBK&yx>zb8{^L@*=r7v1xG~xYcZK0WDxC_8?vEDRT6UGtEvoH!x!Rx-MAj)W`jN z>isjY`GlN0p57x0bF~tumkk$?C_Fk{=Qo$uQu$jUQ(4v{iv^D!Xp5WCN7gFQDq!hm z=bp^;E#$oxn6ex$Kz`W3s}rY<0VwAB0lTK;&S6sO^qERX0wn%qD6!S(t7@hbHzdwN zr+Amr^iU<`5GP{0(NGdR@f;Tcg=wybF6~sTzgjM98}3>; zeup0~xd+@0&|6A@BY+Er#B;)8LiwX`VI)-7*#R%T>?v9iAnFs4tjt1S0)N#NkXBL1 z_2kRCn8XQs4gr=hUTFn66;vM*jnYEOIFJ_%DwFOyL%@M{lIK8$Ab}f|Q~UN`q`n%wS8D`b3gH z_g<8NIX4qS7vwT`@Mr`EO%vuffUvLN@tm3%Siu=I?zt~A9*Bxb6rPd*WeUc#GefC! zSQoBL;rJ)^KD67lF@#n2Sf+wF1+=fDP|Dkd)`9DfY!9skDP-`nV0Hy^`1n~aaP)qH z=)f!<;2*gj@A-7y_N<*1gEP=o+#QSm0X`5VEy17c1GB=I4n=M8Y8UN)6I>f>0YoXY zl646Br}THY&Im2v_xF_=r#~`ZTKNhLeEbmR)Bn&p4j8lAAgnzG5{?VvSg3tilKXxC zm@2G60489(`uNl;5D@+p&QHov6Vu@MVY( z0S|EOPzCtR6%W-avMIBbsafmnrFnzxS+thA9qIVh!>vMBpVhAKd4U;GQ#^WON*`I*zyD9QNQaT7Y-`&?1SjK_6*ebX^12?AFpn>o3t16O6-br#Mn{7?qv z4<9tCt5_c~?!d^?-5%0!&5 zd1M}j%U^QaMH>{hvY~mpbY1eaBwn92r~ZSi%7T5joKK!yk}Q++#TQJFHaZP%uI zPgpbSp9?wWGIv1ue%UOd{mZNaDEy`@i)tQc=DezGUs(jr-O8aEd&+qDt0N)MaIV`E zC7kc~kzi!UAqppmmLb$D^1o^-=&#M$U!W;<;gbI`bYSNHqb|k5&GmoOrCN1llQ%g~ z`aU(Os0k~Ukz{+`A{e#Hlju(mJ5^2u7~tShc;(@_s6ui3mN&`!|rtorxVR;D=GNh$c zuq>jZ^I2%85dI8r3$1Xn)E4BRyJd)@o?pFEIgEZ+>H6g}Un)n_@wQkP5uu^!g3(o!QwJH|N)7{DD z%de@fqTVvqfl5Y?MpH_#@dI}bCVBn*3%-OUxhd9gLyE^TNX;IigUtU->ttKzArIdFHPB z$g{tyjt@U+|3*DTgMC;ju&l3tb0H|pr*34~61!9IOaXzvhavfobrid4QgB`-3z6&T z1cp&y1wT2B4RG&6GE-Mn8TMZ5IBY7%pfoeIo*{PRoJd3K>@yR{;>1^w2Rs;Z3^qkn zg5gNP9eca;`~kvP6q-be_&95mk3_!|U|C6$EbmdIMw5irK$$w8WTOkcd>`Oz&Zt_( zU*K>81V1eIyz^=H5P~~tx8UO`xp~ht6zDPh)_ojH0GRA0wBphItup zM~?M8-QD!uhee1b&@+;wJ~;t;{D820j5TL_lSF*HB-Ba1`UqBljfO~aUO!a6Lp zB~;NtSpO0R0n`K)Hn^-&?qQGH@F_GL{w+EEk9=zO0Mi z`#0xM^_oUQV;f#juGbhomswh|>5RzouF%%z4sdYP(@P{RiuR1eHPrz6u*E5+!}H-+ z(Ysm4<+@AyOqvYVYF5I5|E=8$FF8ghep>+lhT9@a_$Z_~baLg{(vVM9IBYY z3W|)BPXxm=j}ovmBMi*01XY=l9-lR<3&mv{WpU?IvSh_6-z|y0hqoXVm%+49ZuQns z4M60Zff7>TgUH!Pn@(5kJviQS!j!UJlwgIuUxvHiWGD1i#qt4i1hNo30>ag{oc-|9X#D57tcn%tLi&)#D1+0pTx27vIsXn>LqMjzlvT`B@hM znWcTEWNsFk&R;-zPp4a0>3&XUych500;JJr$QjOh$rUJnHMS&Nx4U`ue@aJN+srIKy2zo&-H4zNT%@=he^qvV;cT|pj>fnBOTJsnb)xN-Q z@Dv6o_n}2BIe|My`%9Q*#MM_8$oW15tM+EZ<=KSOgJnVn<1F+HO|rp;1=xPk0;)KB z%R>qo4Udr~$AhbsumT#=3gw6+)<9kA#Nh28GC~&AYmB^+*{YtVS^|n8_b_yL%G(U3?C{D zlMeqv<%fZC`tEsgITD^=^iD!30lcGi13xDDyXqchwI+r0x@m?#mymlo$e`%^tBeQZ zszK$zX-H}^A^j?foZ($Ban!YM&Q_KOS@*Sfyu)vzw*|;_ikGXAXwDB8D{6;>c34G- z1bocmQv~i+l0T@Ctu`KCycC8~%m3*S4c)S-9Oh_ZeK{MLkd8@0sJdaL0vM(Pw6~P9 zmWzMGcHor^@6qz_p%(nZ>2589EgV=z!t(-r51RhwRGscU&-Q{=vP+FZEl2Rpb`wbK zH_UfcAB;rnq3F1Tzj^TtOa*&(&KpQ$ECjT@$q=--Q;ycTnP;Df4!fuOdyD@0&9-{1 z#HpCeZO1Sx_3Ed^DW!=BbSV9cpzGJ+VR7Rl%BRJrlw-toNN|Y`0_ZyQ7peH%zHDN7 z-*&=qd2G8nxo8XFRFp2Waw1pM+lpXjj>|LejFjz{*zUH_-F00IRB|Iv@_^$}bPjI@ z-y&@aLVxGkgSqnEJ1way8l)Y2JuWAcn8?`vo&M!P|;c<*V#q&Xe zE{ZQ7qb>GEY?Y8r_9L}T0moc}RBdkc$y2m>odD-6sG+I@=1WW<3l3&M(i@Da1Inp9 z1bzqL4N%Ha0znQUqi|F2-<*1PloDV>cqCT@coZz3|IG&yikVP*kvj){Mn5l?8`Bgt z;-G2ZJ|%uFk7F37robGYTwlm0;CS+^_)uP2piJ>v?z>{ramKnRh~r{H%!eCr*p(TZ z69FyR(=*4%@-REoL?mlofN)uNS42#q(fb2H_kj{$HXzI$HuTSiOw;ze!>HR{IIf{h-|Eyj)3F^O^v8?F}lAtsI z9c`DxQDpyJ!$L?+>=Pf^lT43o2F?z6hF1iWb%iX*_2rQ*N z6$XCCxV+4~Jb^xYsvhV)#-53wY&9Ff=;@i8eR-kc>-{j?-}lXIr85qp4kxPq4j-3K zdA!|_zU1uY?b&EIX_oZ3Ctk&}RCsevPl1*fHM{E0p8K5&tR`+5483 zshFYHbPi}y!5~?fna34<|E>o4i*O0;qNbhJ==jnGt4e>beln9kR84FEo8`L!A3ls) zzr^X%f06kkCwfpWfIZq`dT^?bMGl%fH`Cct$2R$t7-y2<0uP3LYF+zu_H*v(kexzH zUJexe(mv=Jy+f(yWVq>4$kpXRdbce7KMd-92*cp(v&ZJX=roe{JnRjmKSBHX-b#Oa z4pg0@4+@Rkk8N2-$#69RYf}T_17wFg?)>Oa*0zX@BD=lOM2)L+#~RUQt~!zUD^OAfdZ2Fr zm$GjVK_AagkmlAzQw}w|mYRNxm!dI@bo9%l{Dj+arYFVsU!)HYEfu` zP$Np7ts%i=9vvEB`NHD}pP`-m*k{d0F%hM5O&D3;?zRK;dUo?PHImQUnq9!{4}3na zE&n_bHhhCW3&~#zu_c#iX^Cj3PK%QX-=vJ0v4nS_czJ3_$3ai1u&RT~E%tB@LHsHF z@sG@KaIL3~y~LE~Bz|f^Z|sm+cACj2H=igImzBKf>Hc#-C;tT2)4BQ{4js4URrDvG z5t2t=N;T)xhvVgt#jyr6RlmZC_nm$)f&L|$`xNvDSrI4v*=kaE+~8k5_Lcb_5i%N? zdhF`FIFeL?uDnk4ZSyec%ySr)ffFIo5K2W6#E(hF(a9_ntqX6 zjBq0;aWfni-I9HA7SJG_%q%ucW{?=jwtRX)l^wyJK>Ihv)mCG_t)n+JC0%#(I#$ zYeHK9j)4NV*cZcGGJ*ckhoZxy5+qP@7ZF6h0{m-@8wz1jXY}>Z&y6=16d%w&%^L^&b^P6YRXe>IIFNOy-54)a2 zM#E8U!))ONfPH~EP&@5`hGw+yK;3mVUY-qA8liC<=dm z%*nA}8P|+;PLDgR3f77x)G*nDu?-4iIvD{AclV2aG=H` zEX17Y2eSUw(`bX9Y0Q3RqR=>j1UT0~q!kr}cA~t98xKMy3j#3V9W4%f5fuOp@M+N0 zPBNqF@_hN1u(ks0>So2(dPVK|G3@lx<={bh@v}*8BqIKk%+bze1jhJeCpv}6V6}+DoVfqS52PR zpJWP#eh60AuJ>s#@fRY>Z!ke3psOQ?9hg{8?!)NdwOEdjR#CmQjANTJR|4JH)F|k9 z#(yG^oQ=Y6c(nA6qQ{?(M5)A~2fKseY9AJQd7JQ3t;cE4%c zP-Pia%$HtR5!?e*n3b!hgA6*!|6rk|zxueE0IP_7&kP68<`>y;DO=1Nz&uNkiFHHz zhrHlToFUUe3VuY0gViI@R>#R8Phl3$lp`A5#u>Y=S<5eD+;3h4XjmAn>QI;Wt!?5y zSnS?f!jX z(7PV5Hnb1>`TVu$+G?7v8V5XMwNYKSZ1vKH$bq9Eq&Zr()oJGQe1Ha!2W1_y~j4{0C9 z$XplxOXF@v4^7@l_%g@a&QAeU9Uo;*HsJ*72x8KPY4rf%=oSSG_!gH95`$PXJ=}>s zPYHz$B%e&`+kfILCPZJumO_6OfK_&uh$@+N>ylq&5C3JLlwlV^(a%x_;lhCA4a!!S zV3UJDMy#=uGVWb+#*;m4v3hI2d2`)IM~#ncvV=aPu#C+?Uu%a6L5R_ zU3pVZWPZ!PO*+rq`)g4mFuC_yuoSL#D#v>dOOCk;6@y~z`AYHYmT0YbJ*yR0=kX+-IjP!71mByR*+qOS~7f;U+XV9 zTiTkQAtDS02yZvy%$Yi>)IIXe;P5)dvMjB)R&za+i9pEjxsWz4N57g|{aSJJT}8eC z9Kqtm+?V`Mb{WHh(i;d4ehY~cnrcd|jcz|OmPXSgs$ICh;EfoUkL z>5H|m`2qe6n7kYENKkisiC z4@`AyNSjAlOO=Tq{{=qDEW2UYR{cL^RT0U!9 z+!Xcs2<#YipqGe^_ox&uz98MpZCcrC&dPs>UT6u>hlMz6k}4|ks?~1SuRd{IE=m;7 zmj}y%&4Igjz|U2rfcMU|V3U_QP=lxKLO&cHp_a=*Y*(wO>aApq>oj3Wp~<}gM18{3 zKVvpln9f}6(`3q*mV$;}Q!@&LqCbsE|Kp+wf@*I>aSoNxr$rCWL2w>TaC|5>NCj%0 zn4YDVe?iNFrgP{ez(107W$M*Zc{E`Fy4D;({y5;ZJLrO`8XSdg(MZpQC?vJ1wwK>d z`1yV*;CG84gU>Z3Z-*&a?1Vb(=Gb@GpkO3ENfhYNS(cT-Qr&8w37vx{6dEdW242vG zA1VjcYZyVMR^TJ zrB|Xih^6+K>-m4ZRGdtE5WhqJa@h~h#~a7cufmAbJ7=2wmP^W|JPVRy?n551F^r!B zV<3ZPD1;mtyNfJCqUpIbP9ubqWR^XN*!$@5CB}ab5TzOP!xz*1+8&Z6jB$D%N*dEcu{nJ(lM0B3)}>VyuNa7pRnOk(Y>2ZTVC^b<|y!8{hE~MMuhBG z4};EIomlcW}~Sx&%T7Y6(~rKeQk;Z{-pIFFed&Wtv`NRwEZ$(CO* z`mPnjs&!kO5bS}_joy7?4KXgHf;cOBeU1Je%O6muOV`GE=jEg!GWBD64 zc6g#rxXb_tN(<4kvl8BZ2W+AfZTydySQC4%Fu?xbof2@Ua~``sg!+BeBMJ(pwXF5~ zDiRqR^6VwPRSK_=hnPqY{7||R{l}jq=?Y7-+V7{Si-|keNRgyFbcn&*~&!!+X){t_2e$ zGk&`o@0)kiaVh?4vHO+k3DV%yvOB!DPg1j14^)RA@G>zSI6+?=+>IWXb#;nwxi;(; z>ga4@E)xh4RC1`;+@F=Kz_4SMbtlw?M^l;`9EyR4re+M=aW#i{-&+lqWFd+IixT-(4P zX%Rw0ckbvRjlWh`Ssj9ugBtw$_vQW22JC+qRIlyz$9KV$gvgm}xvIyhH%P5;=jgcR z?!)iE5>Sj6qBBHf6SzT!ddc#&n70%&P+7@NGg2A3{Bu7Zm+UK-PGxZ>^ zD$)2ns3`{Kph!IX`1yPtg{gK%VV2858_*%LWNK#SdHk6v5qcgRSLJU)^@0gP1r$|$ z$K7o7ZJmdpo#IObOL&U1H`lc596@VoI2$Ki54Dt>p3?(xrw-5Nup>zlnV)ORghiDx z3w$IC++@l1x|+WrH-hRr53%ve`m1VK1bg0jn|U9!Kk3beNrKpBG8RA4CQ`&6{;bo1 z$>^4{FVCGDf&4=CPul8Yd}O!s}=ht_=*O36nF8)Uw+Kv*@A?#=Mf zb5drwZ5}Ji3x`vGCT{(1Sel|_r9bV4g>_T0LE6Q{enoBjSu+7DaHf-8&>1*sgWt=P z7yVDbRB+|?WUx^KIT~#OFmJ8k9>S844=Wg*FD)w@Wpm>gY;!~PsV*>Zh`rWHw|=fT zcWH7=2(%a;%4!Dh%ljb9s%?CDZeXygNc9W<4ne)}H;jd8EwiR5x8+$;mpS}c3ZW8Yp*PLljeAADC#_&bQt@fC>it0<&mHJJb5l|-mPs9 zgz76r4f8lqH*)*VC*D`VDVW=_X(5K%_vLG!zmY&F3{;}J!uTs{#|YC$>@Xgyb<_v++?U*BuM4R7du@GfJAz6p#PCdd^6sJAJ8~SN&=nqsxkhs{`KeZOo!+DfM) z?uiM9hhUCc?YpZAY2>9?>8T6Otb$Qr92;v!psgs6C)X#0xG$#N;x}$Mt3dc1AP`Rb zS=MIK02dRYCMKg`FZ1kZ_wuW-gvfTOY+cGt?sTV%^cHJrw2j52-pXotPU#hybB5~5 zH#hA`S@n&{x-~R;j}GCJYC#rho2W!ZWQaQZ6I&(TP>G+@7;3X93$bc;LTOA1%Ld~H zv9O;26YDAK$sJN(luyTX%DHA1z|Zi`8+fz8e*#%%MRrQX^_|IceTxv+^`*z##zqO} zf@lEu|4TD-OB<=+fs5Bn&U612x@8A~hf_JyT!@y;P`Sq$o>uE~(tzX;UhaNLbPJCv zPj*87jE!`rSL#n!*o?eHa77-^jO{oIPF*1)fd1lb^ZDDHgIbiWjvZARpr=|4o;Zm> zd{vh`XWuuoAh~)Fju%2|Oj-T=ZXR|lc0NEA^dr=cIUC8!>0xjGA(ITA| zlUOcET1O4-Qw9<*dAoYz`I0AdqW#*(#;BPhnnOS4Sra0+etGFRK$gu^JN;xZx&`G$3tKs3<>pbaz?>9r3da40o2 zAKbSyC(GYk?OY$Okl8O^&wDoqNx30UvN)GI8B(&^8&@4Ggwvt5m`DQ?mke}xhlRq9 zmp-~YJ`KICG*ZU_?jE=Eg0_|NM-Zdei2_M`9hbJ&dqwqeBls|llpe$Yf}qL$Z4n{G z9Wag}yrimDp_5JY+->N=fCP>=#)sAYPXJuSJFM@&G95Ej&o)wsfX(a&pCAwP^~LlbvUBr^Nm%|}Qf8?*6C zSQi1bfXuU#Z)?22a4@PrH?7zwg?doM)^dCk_qk#5F)G{;;6)Fx2aSp(Jif1Nus6hG zL(eMa$84x{HC$MyI-Gagg_CVxZqQES0WDpnhpugi zb5SlNtKW1hJK8)HUd?bv9HB3U_wk^V67J@Y(w$Hh+yk6E6m7*QJ+t-#~I;G6Y&40jM^ z=(Q!OLYMii1xJRUv4@WA)_oYt=QcTI_2LdAyMY`jgP3TwHgsshg2hLY#;Kpw1KLLV zq9c3bnt|Yp=mBzCYywkInVBKQ4TXy9N8So86-Aa4MhwYiQy*H!f3c3;1g}~JVF>kp zi50O7^5~Vyh4{*V1f)j|)Nj0zLZPAj>aj%}jm#l1GeI#FhJ3DM#1Es_{Id<3Yw)(q zoQ9CZh1^>Q`JqWHmCtJE z!>#z$SKbNxx5fEJt$C9V&&$Ez)li0e7V3i!rvQ1WQ6UfVyjRh{0!7^m^?ACXOckz%RPLPhD{_pzYm6^@of|=D63Qm$!ML`r*dPU8JI(O*1C?g5?f1apC zr=ak%NMFD>4?v`9mEH_pB$)RgoSr1rtVc9lfXFc&g>SY{`FL{pFI|9moQiG4e=UfQ zdf8m_4JRa`WKE76*|Fdu6`Hu%n8z+oI$iy=Xr0zLj%ygo^*L1cbx1_Armp1rZVi$@ z359`VfVnp?S#Vl@#2F}4rt6hTJ{z@*oSc#2XmlbU0^lptK(m9Mc3@4)|JX5wsF9_i zrffQ?qCFn;U-k_j@8g&e!lRZJ>&2ysYcs&XT#!40Tan0iKB^}B^|_$AtE^uh9`mpG z2eFO}$w5Q>=|Kq8%fYY|gyt_xqPSIlb_FAbNSrB^A9MM4Ie^3}AP52xx9|f2lyujY ziy0#P1t1q5NPw-R0uw7(tP|1JKVA;G9yJn^|ENn?5%nFOXVicXIM*tF4>pA@iQ#4R z>iPGx#65A(;UkTO`#ugi_BA`G{)?sQ*;-@)m2`;LYd>4#ctzJzckfIs_%k0>u@Em) z$jhY7JSPMVh16mWsU|G|2Bb|tH2O*aQFOX$4WNQY^y>9r|FMnvpk-Zy)Ff_2YJM{2KT^JliMt4sqmzJ}HpLsDx#-RuXgWsB1HbfMQ(i&3Gf^udR`Zhxw z*qhc1$s?6@^A5v)H%{3jz8119;Bq1V3DlaC8J)OV61eq!cq~vHE7?5BHe0G#pM);5 zxAH`DPNN8a;BXMR%9v~MuBLYeaeauF-V4hoyfpngJ=KILmBhm(n=8kzkPc-c$aK?( zk5Wa5Gv*f%-9i_JW_F-0 z#Efn{R$Eb@#1Fav8h!4HicIl>NUMmOloA z3Ci~0KZvw|rmX$C1WNb2<_QY1nz3CglM_vza3-nM{7>X)dujiTiSo>~*J8>|f?vX@sN{aDh?Z4NIXjHa#*o`mu%kWo^CQ4Dz z88tPG23?C@z33@aJcfFk2=e;2SVRSe&4b+yldLI#iiA^BRPx;Hc>%*RxmQn92LZ!2 zV|0|wECJp+qiOz}o@5`rkp8FN?NP{PoPw*3l5{I&iMqZ-XQCBOnFJ3poR!We5BDEXhQJ3Dd;AwI|$JZMj=YQHZT7@4%#n)V*)O) zwPyF4Q2o2`_IP(uwq9@fvdpQ5lTDk6x`kC#_G9ttn66#nWb;`==eWa&a(d(np-CO! zN8mTbY6Xi(dU^{DhOF4iO+QVdfP;a7i4G!hnoa8B&{l_DKdAUTMv~ogHRMT6CR(fK zPp~p^EQ2ZNG}si%vz~C~ObHyDP^rk~s-F$SkLHOM+Nt82enU5?1y+J%64nK9#17Jw z-o!yzdSYSv%L!9Z`E&$%v%+y}Saz%cAxCXxCuN+y6y!Ik^M&=q1vW&LrZH|Dg{PcwIJPER0^MRNC;nXZcnmq`Gq0@ci{#q zaVawG=I87x&aKM@swQ{7Xd9&>my%(ZpS(@7RGCx*QMi7DV*ZDrev|4UY$T8Og*JaB zF^fiFI3(0(lQyv;en{{MW3!_elrSV;m=+{1t(}TdvGV_9aqY-XXu1Vr_dy#I>Vw7yYyYSBk5wzAek9Xl#QVYu4-Wgra2x= zj&aItPYqkdBZd}*n#)OwX%8Vh#p93>0wsxqUgwb*nk)FGb>ZB6P&}jn$yX&XDF0D% zEscTRLggZgRr#P`nudXA!tgRW>(cTzU@={!`5BdaEC~jJU7&@J-cFeq~ zw@z7+GW23+EyJ<@gO*R3KabV-2|w#W z+zyVrgrq+Sm%ol!B*Zr$7rGxRpM}I@FQ-uUZ`T87#Z6m%Q&0^uxym;tjBORwLFB6@ zDRNgb{|Nb5Ct3CnsSS3sO3yWBlydG=t|C1BpaUp_6%WcuCI5RsF5)D%{r<`mG9Epj zT-n?nnhmcThY-Hkx}TeUirPAC`DY~Y*u81at>W*x6o}pp2$Vy?%2usqzD{@t+)zV3 zYytuI=3k%n)q%6Vbx$32lb4H$eVPR{v-t@ZrB~zi<-aWR5lT4 zze?|e)m>4mf&IngrQ4BI&v11MN0ot3@n_}5y3}USRS}QnS5cSxoGu1U;wUcP04z}s z_6RMO;=o;})QLU6G|J^$^#VlD^psMMqu{^uNB1|>+(3$vN(i9J$$wq=P48#UNwIP0MyX8{4}6*)`FT;e31^L*9CoE6Z7C)GT99Z^NLX zM#1UD{p!m8S!G|)a(m6!MC6iM6jhf7R3#)iqxNX{HU$&|Ztc~^FO;L&e-|B2Tyl$& zEJMPr;yVq$U2liI_K2zVrIxG(%`zuf(HNDn%y}e(9f?2aSwcydGWFpLEe%KEB+B)6 z?NefV6|F*XC}nL<%zomK_O0vLD`=#G6d%XgJ#aqs7M545=5FsjGqL1HMamrkkQ!5E z8w~r*q<_ug{%H%>gE)FhS#mxg#Fp9}>q*7(d7b$U^}k`|-DQ*Trusa^svpU4?p@UnP!sSH2u-wuROXoZ@p~r)xB)_0|~`G@CpnNhajfLIMgL5V4~!vLceP zmwa+sHDM@Rv?vtwgh~k(Xu~xV1pfD}v&DE7v470b?h?$YOU>d_`w#{Jer)=$JVA1` zq4of)((^*T29v3R5GLC~V)M8qm{jUpXL0M`z16+kl1|daMTJMBF^^VaxciI+Pa*}v?3}SkEu5}ChcCx+Rquon zaSTgOkykqG;%-ZKOVtk{Q7yLmEm#+c41z61*9({3Zda3kE6#rcLN1}m6Yu>^=~GFu zw=DBNg?v4=KKif$Jl@~#)Rju!9g>^dFwGx%-=)N`FmQnZJH!y-2*D8XLDa%V-~6DC zh$i5BLx!Tn&BQV&vP?7M>Ni+l%6ch6E{xMX4iZ=6T_wAfhL0V$oTYxu<806_EnF=a zV2fI-~Vn01M}O~d>_JQ#DWu8YK?c*rdJy^v=XLSp2Y03|dIQqn(g z(&j@yUbb6ej%M-3$QZyNyvhV478lj^OAqKnbF<8E>1TD!D6^}cm`rr4t}XdrZnv3= zhIK*qOoCrOHzR@01~*F6_`&q7P1~WOtEGn6*`DUtI)<}XK=e1kDc5}n3+J1l{TL>b z?+R820rK{wDgmaacSWQ{x6+U~=iKeb{3c-V;jnyfl-!=6J>V0nYlXIJF;(1Wk%8;i z(~Azu0*^vrWG0;I5aXGB4d01X2*qB7HI;$X6kK^i|K|=|6gxT0^;YZer-}ZtbFxIP z=QW6!XCV&*kg2X8c(ByjlvP>u^L;S)Y^bziCERT1=91i!R9QOg7BN?C(U8nK_|*RH z%rl`zq)SEoa>)=J!*i|aYY)*+NcUtVP;|qFq$y70F7;(FX@M=ih~QD*vDLmsRqhvA zqZ7ea_e!B$>P_%mS((U}M0(j8apS}f#wfE`)mT46fDq|$H)ok}?5k6lp4F8!zJl-O zkSOY4VKtJapN$(}0TqCc9bZ9u+{fTZa%TEt-Cz~r7J(+ycZzg9pGspD67}bmG+z24 zTQjCfSU6;i2jkgO_ba9^V&J*xii&D zcEApz{H4b4#avEOH%RHVeP^)hkpLmUt!JyHb2tQCgj_wG**@ zyd?g51+jO7pH~}>4h78=8ZUA)RQ;<{gw|9Hu$XraGAlnj=@Hk5?St56V(3&Gq;_8~ z01cqa>~+2Wbd)ssVF6;+m_1%5TKf1eavjd|CUKg(T7h4igf}NNQB@L6z(_Zd<_@+? z*ij}$x^OFZuSiq*-eQcm9sY%{JL_k7?ZfOb@P)t5eFQlw%rb+306zYYMGB_~ffXtT zkeMi^*CWp4T1S$8?LCo4+Z-l?;Py-6{%%gZkH(Jbk-PcA?itLy zb`atFXhpv9dY zO`dkMk(!TyvE$ka)`^kL7EeTkW<(&drIP~pVU#Xvd5{wN6owvRA;e7A3YukAKV5mi z5vvHpK`IJ6nC>9V^`Dn$y^KWt9?Z$#xIc)4C@?5{#PCW#nEsVFGHdjm3Uc>EQ8h5p zO}#*_?MU80I_iT+It&$dL`g^j9rad&3+eDXKN7Yfph@T3$EChG(-SB~OMKVh!tBO| zj~hlbZC2oOi=ik#EOYMN<`xJJQvxjfgx?JcA1N{rc|qfi`;>2R&Z&E%PYD?v3)E6y zotA9{Y$}gVp??zW)P>>^`xKUA$Yjh?NCzd_Hv(uitETLbf{YcHHxCp*2d*JOvDlNe zYvT-S^i6oXm1n(Z>f1 z((t_5CZbhD3?5vrzj-NuY)?nEg6u;h9{b~ZdEf+Imoyag0lm{!;QRX3SLfdNGb31) zfGz7$QXsPe-=Si=!C2(^V`I7Qh5Clw@xYRrV~x?uI9@?@i!*v*So`Wk4gb+%NC7)4 zaj-BBHXchIvw{M?7a^9~N|18;US94gaby483q@gtDGxQu^XMR8)?F2_ea&p+ys}Sl z$Lb+0g|lbYMmh{eWE{{Na&;Wa>iY$DH|#xuzw*WwKf-1|Eb{gTCn?^>J{t+VMV>^sF4bKNu*|MIfe7^Wt^v8q|pfgNeMy zu=kKhkiL+P(#6aG=MP7X0M7HUdYa&89L|s%wh$VngV%hx=H(=yM72q_F(@F`5cu{KZaxcx(k-v+79n?6uyI z3`;pY&@#XD0#=uas6W5pOS--bR>4)kVj(3Bt{cDn#OH1Ro1VWdSJFUzoQjm|l6fcD zDc;!r~Cy*Xh^>@(k7p|=7xzp zgReHqL^wA~FYsFh>TPk&GJ^N=tOVjQlYf@U&fy1ubJSsCh=R3PUHj8&N0^KNnoXW% zp(OQ8BZ_3Xf-@!Gnj=iHJ@ne@Zt}K<3b&+w|C@1-@peEt&s$F`X2vO2!0z~dOqIrX zMF}UiHi^jL-@+5OmeZHsJz+YgD3+P>PmTrWI4;$6yOl$(IDOT9UfH(s*r4w5SoAAN z^sOa^YiNDH4bZwey13cGQjRK0Xiksp90W>8JGE|YYG=IZ)7Nj(7pB8+5N{CC<^TPG z;!6Hc(7gqx2QGEA?GIW}{c;VBjZDM{Z00+~R6OB0N1z&n{fW<8Cc)x6%ys{~g%?d- zk&Xb0n2`&M2_2TK5_?8F(2-{4TG*9>DLNYtFX&vjJ#{j5avhnIR|L-ukMoEEAE(dP zVtKmYyI#VtkDnbK_Hz#s4k@>C8yiAM+MD+F-HLwiKo-$@fk9QW%AdDK>nhg_pKPwf z(2{O%#)=5S9&MgvjQ=ZPno`!xtO^Fs!rtw-Kd-tINs{kmjN|VD8%1?3?4su7sO7;@ z-)-AOK$VIncN-0*QyaOHMt^o|OJ{yWOT<1JOPXCei>MCz$+CqFkIEP<^EkcXCVxa= zITrw-g97sZwgwg1F>(Jwe%3?|7cf4Fu%6-unG4T1DajR)`y_KQ%wnt81yzZQ-m#HG zT}~>!yGE=96{n{};C$@miv2nmkqbOk>o>?bN?U%d7A~E-k%N?V#gpEic9cy|=2ZFc zC~I-{DH<4-dSt3O=S80=WB)~OAi4J(c`*kl#(Cm7{7z>1y)a_+d>}(SDY3!6Kj-RQ z@Z;TAQqFv+RVBVY7-lwxYEV%Urq(2qEWQysLtyC!PP&AHrg`m2imuikpq=jlKvH_aeA7^7V0*69? z$WehDIHIwSFv$QflGldgWZqx}#R7Pc#m*l6eJHWz(!J7q=s0aXR}zCGiYHh^3VgpM zlh}0NQ@>H7AuL`&V?8ngd2%Ce>a(r$32;UYD#eSs^9Ga3m%%2eaXhHmM#Ci0O7D|Y zXy)CV%HF7VPXE0k%D)taBKMjr9{K@_`5?||trB8E+`+R#8s*Y=XKF4B&iVEXMMXBJ zFA5l;`@czP(g>Vz?YgfAi3QBZ>J_F@;>DdSn2jy8<1)jd5YY{;LbH&60)MBLx(v9% zy5{mUcQ{K^>*>)o%ORmhS_Su$F4G5u1!qy-O4kuB2A7v%kmJP*b8_xuSzGDa?1B_4eF#l>VQnOr|0bY|#-;piJ`niI zq1p+bx~*sKyK{KiHJ~c0mp%n3^|Vi*qo+Iedj4yAj@otb?|kfrJ|Blnp=4r-`SrD{dpuTAxqy&Va&cdtUt) z%sQmc&u{0^9G^1vWYlHw+D?r&f$SOVFQt===wIFhnm8c|mTNJWY8n7^C{zEEH$wS# z51&OI?Q~5SQiGgiFNOYF08-P!j#?kA0l#|yF)qlM;lkae!z7`aTT+8SX)DTny2}y< z3ZaTXE>}!ahYKR75*zJ>rN3ilFX-}giz5mT6)t-N5J_;88g=%kEA?9I+~ny>yvD8m zgKm{vp&LjM1*zRu*un*t5EIVvOT&H#z+qBfGvV@ztpJeK+ub~^e%|jyeXj11da0(E zU)Q&9FxBUBIlZn~nSHL=<>IYKe})4e8=Z^_A{_*jYM>9C9en#-5SEqukg5xRnYPA^ ztG4F!Rb}k71F!himLM{1ohp%1z9Nw{^CWuHMKByt0n$VGxex$pG94YXh*9CSt^av# z#=MX2vAH;^e~l7NRZyGJCb$uuclCeD_E1OtA}f#vmlpRk1w6l z=hG9s8gQ{er9j0?v+=^nED*G8#g@Zs`x4&6=|PWw-3K7t^;`Y~(n4$5nts z%T-3-VajW^+~}sg>*?r-`e4%DX}}d$LN2FwbMyl&4T+4-U7n4lu~WT6m%jNP5T$itqds&2LB&8Cg5>$LxaSNBH!<6#FS-v zB=fGbcsTMw!}RP}SdX}eScBF#1O}EeWWv{5;_CSKE}F@mlnjKKEGMA7chY7-zFPya z&~6D4s~Rx5Vx@w7{z`r+}nD;vZD0s z{d5M)850P!yWs@A-t@*dk_UQA@+H}Bgut?ge*#_i2BB>t>*Ct7IKvVkV92+L)PElZ zuw-+^j2WY9hfO}Ils(MzhednLP#l^LbPP}AQ7*lNJ74C*rPy9^B6qKA5G5%&FY@VC8TB2JQQnwhB>P%BvlhvcuF;>fmZQZsz z6kGT{gaMYUEqhMZcHCGeQc?7OHNUvT0AV2;KS=DL^G$M0CN-#DJzx{ib{iqerkJ6d z8x;v0o>d8Scc7SAru0~(@@OSsa%Cs>dUcHhg&=xlQ<^c=_n%R|2y+MvMB@Zv8xzcl zp2cxi-H?Vv-u0G@`L4HTFxlwO?P7ZyEhXvS@a=zh(2-aUFwm5fmS>z}PflirTF3s%bPwC|9i&Qw)_EA<!*>?~S#9?WnzkMPm*jc8g%r(b_8 zTTnkQVuo||{fl>`!dKmRIBCLw?qt(#Mvi94mI*lLF8g`s?YFLX9M%1&Af1hLw%Ha? z!vRNys7)j}-kx;LM{CGJ(#nxWgAX|hJ+efpR??2?)zT_DE z&^`IpcE{I6jhBajnGTsjk(G;f!i+gozqy@SI^FAWkc}_IjnRww|81Z+5__*O!MNB{ zMP49i0bBcxR@AQ?Lt~sUFB_m!C)Je8UKi;A;EF-IHgfLn`V0=bM|$GU8JL2L;fe8!tgqq=xM zk()M}_B?XcrJFa&yq@@R zh`|ogzUZDyY${2qHh@epv-^kL_v)InIh=RB>-Dzw6}3Jr)+C}C0}kvuq0nc4xg z7aGk7fHnD1Zgk$=FWF_aE$45Czufc4Ndrt z{f>ZwBkVET^d8v4>=S!eRTsZ0zdH5`=0$F-px)B(UGoLs9)HLd68^fq=F)=;mW1@h zazi;E90!_ZTMVjE*SRyyE&U<!E&JP(giLd-%4k^DJAS*Jg3 z3@<{PX}CZtrqR2QiDdFW=L!m`iWL);1xS!(pGOOyfXV}IS> zCk>lXj2{=^C)N#v%$89?6VI=hSFtng{b71i8>7rP)3J-mprVmle0pZ0_SxP)#gQTd7iErhYIzZLPr;Imc}ZI zsC|p;leQ|6@L+z`no*1xT&)><-q5fboKfmm+mUU%IY~cxAzvhTD%$h-DkdZCA$G+S z!iQEta~7LuxJAHIsVo=4Iv~XVb%u{G!-*HP{qh2~l|`fGf!1g#R(!_3Qw1@By^*yX zijvAEOqMdsxa@h0&t%eND78Ir#mF>|B<)uA3Tf`;T!#DOeKOI4UKcE%spNBO0}I-_ z1+$O%KOnhvwWCqsGpdz(xwkTN=l%_;LFB&(t@v##(gRTT_{jmjr%>AgTH85P-3H2r z_Ny*Js$s`FJFvYA_26`nHDGyO%LoR8>e{--d+Z3e=qZtf zX`V1GZXgT_US!Andj{i!^d&6k1DrDV4q5E{%}KR8yV>>CBC%2`ed_g4F8`!bO$?xs z3@-t9m^JCdYF~vNB^{~xSQSlYb&x)pS!YG9g*RtTuN5zburXU&S+3D7vqTupe`_nulz+<1d4p%LYw#?<;Y1;p-~+XT$`-%5okqT zuPU-%`EVFI%nX~qxHbqUM|o=lTsE1Z6{H+~ooI6jgco@Td)u+9^(XHuJPW6*j6>#% zyu&nX9D*$?N#NmmVMIgM8+vCrh>yPzL5rd^S8j(KqSo?J=KtM`MO5d;D(v02l~q+I z1^DjDZkN9be!lea>niwH*x~chaijWjv~EY;w7Y!2s(oLxNS3Yo{%Jkx5TFPEbE=9K#sY zJTQ8hcpp{l)2VE%G5DQ{C^U5d5x9jq54;=MP587D{exeBBS4goURKT0{XsY0zgZ3o zrki0vv+Fw}I$_e)7m#gF(A$x1|3lur+M*$OSUV?b*sUCZA1d8(FpY)MRf-d8pVTRL zO0hUAP~oXe64|!z5&Sqd`Ctc5*DG0O4_)bD!@Evn2`3RgJx{DUPZiR^Xa+Vi0V8`9 zXHoj`v^lwx_>XM+5l5Od3@6x5zlZf0F3MWR-)nW_56svrbFpiE*`;ik{hhtkzBza7 z@`yEdoB&qWq~*IuLkfp}e&Q;oj%ZGQq>SQa64TW!S}mVe{%<OzVn|&n>U+wR}QzE13Ri7tzo$6SMdK|YYVd`3DX5dRJz)Og1n|mn(pb63b%PqZo zC&d4`jKyS5gv9EHmZoZXZXo{;zBO1s-{L0B{?c+j)UW=XK3>31iCi#fKaUv+@x|~e z0#Q*lJC@RA=p<6R6U?-FGs%eGMvQX05kCF)UQAd`7gj>p;ZB^4`A=>i2)*L)$=j#6 zyAQwmJAxwU`f*`VPaBMenvt&U!VVbGn*v4Axg3M9YiQ$VYRd}X3GSLZt1{YPlAC5c!0RDvT>NBE*hEBEi(cMsEP;(m;($5&-76)^iX@pX^&S--ay^csG@ z$lP@^*lfhO`T2gIwQTEjB>W!$F+k40nJBVCuI?Ykr0(~tAJ^YJm4D~HYByW0^;&6YX-)_8KS7m=`t8TMZCNJz->&;L1e|q)ie&E3>wUAld`2x4n zIFYY%Z-mr_81A1cV8`e+aB(^GbLCV{=%m%XbInuDiVJc5MyV?rGtD z-9HhR|KQ{D4oEn&aO=O#vp0h-i7Ru%Ei{HFV^A5MHwmSDh>teN) zT1Y#_U8``jzV0u5-JEEpIfFX*b=8*FwE!4A%k%kA2Ml1+H-Gf3${kAWiDt*@h)})* zB5qBp2s9t~lX&bHaiq`ZfHs~sa(zcCTAudd1{t$16W&34|8*`;9W!Z|Nqv1k)hQiy zY6je`Mcv#=FO1}KzW6t7%vB;>%V8xRJA(K5&m4Rk7ZAIp+e&VK?DOn7>VT`_Vatv zbDeV##FZvQlwUU?O2Q3;qPfJ9j+P&xr9h_|J|E9+H>d>&8os%zlw;6T?$$@#I0hxG(lxF);`alN zIDf(WhQ%r7m`p28nt&VTZw6zf%ryQ_GWjIL@%1oW3mndCSRsrnrlD?zti6&Yb9Peb zN#GrvWJu)g6hB%V<)tti42n{C`^;^^QgEB_0dZaV#7lfGos3LxPaBU;<> zmI=zZgeW8J{;3-A5P}oV26)MhZNZl9B;w7NgEU;`9=uE=JUG_oSi=_-Obo>fSRIOr z7HVY*W>`i19B|+=g%;-vL6Zw52eJHqNzoRFzJIC{|DS{{tbI@+SsEW`X(k42RevT$ zp1U*@+=Nd`w=~?#w3w{MYvw0=HC@x__Yr8fvqVZM>uf%8bp3yA4ic`6T-aDGO*bmHj@H z{UJ%fJQN!(8_Wf8(PKvfW+6ah%VmRk-Dl?(&lj1pOU|~oD;W^Skn1w!!Uw?Bw*3u%D zYT=WhBQO{V1gAmo@cjkzlaLE%idAp?*;w@o>bxZHQ`LK(<^B)bFkijc8fea(&(77@ zc5EJ>Qe>kJ$OJi@hVX*RpxGe{fpJNXzJ-ksO?!+=AxVDW9fw;SkBd3lGM76;F(-4m z)UKT!G`?Z3>Qmr_{h3yzcU+Lt9ONexk9n;+_47v6vkIDVo|F}o z{^_AcPb;yd{_L_$0L~=>a5-TM%OyPq0XP>0Fxu2dB4Yu#Tk4OcwfBCh2#od<8Sse= ze-64n!G9Lc>eUN4o8_Rr*_0K36FAlx~b_Cu4F!VM#dfhkT&mM9{9qpaGxaUdE%PcL=X~^t&&yW`PiDvkzIZK!cs<*v zaAQkGg&{EEkYhENV!Vtggw-ms>he@~$E7m=ewoZI_iJK}MxwVFNfq9fG#x~5vnYDY zCA5vbA6TGDffhq`66xnp{Y9l`2SMG-P_Ujng6Gl5)HTbq1tgC4%|Q` zLW3W_p|*VAHituvwcTSZFRdtYb>kQI@53#B;-1*KeB^bRx#+Eney|2T62EhkywF}M8**d8xgeh9?guPUW7v^7CEO=)>{e3QGZ9U-p z?$TGBRM0)Np7e!L_5KT=(^u)2!F&M}0XCOWk_Z$5IF|uH1S)@}T1$`Qwh_MXujqq; zr~|hmiliRv9AX=Gki>@|JAe;f1FLCqcH~t{y?X4-BF=wLy{JczdS`-Q4oy)-vRJJ8 z>MLs0E`mR`%cEVYb(ouMcRam{sJDB+d0Mh?pZwx`6!>FZnDrC>qWnYX)_zR#{SA{F%RHTvdx96|}26)GGk+z%=bqdXO#dkz(N&oI4vJQs}wx{iaYmsR<(A0UL@bJwv2 zxqg3`o(U5`=53^GA$`lh!spJN0Ucd~hNY1k_@E;dCIER8K1j6t{*~)|0XsDKr!sz; zKlqIdu!Y-kaQ(LJ08$K$T3PSIbJqK*`XJ%2mB0!%-fgX5Y^bJz+h`5WnNE7koE@AB zI}w}>0-;I+*akLYKD4sGSbpKYN^lDst22L5a&GWjHDYKRg;|!a9I$kRe=#PDh8oxK zk3?qtqvruYwB=^+5bp;Od_bwTD|?yoj#BONjf^_i)qwsIiiS@d{BN772AY{pUzBNV z9A53!T_@1A9?yqokQM2gEU|??*hf$oY0}yd8PT~M) z54vTX3Q$rXDu;~)sKkjPy;ko56UKTdI61RS4bXyk9IGp58|yfXW_wi0C83JVGT#Bk<3WGe79@Zdsc1j5>r&2YUdI|Gqt)SSujyZ@{sKY8VGm zE&2X1+{;u#>%6W(#`5h=o%f%GWYX5Fa^Hth>sp9X#O|?@X_bOd43WfVUrxy===m9-< z&AyaGL666YrR>U~LF#tO6maH`?l@kfv9XCmZLjQRT~XyB@a8Ey$wGxF0zSxh474JF z+o!5)o0IcEN74=GTKa#o7>M#kiN)c=7~}&;r%NAw6292ONeu;Mgjq%qbo(&Y62@DT zQ`tVxg$Ow3gEh z?`0BD$*4#ObWSRNX33MM0{C#tUcwKZJ5h)-(=E5qr5w3DGQfWz9`?lfN`6`}*aK80 zoPUf>=L5ip{wemZ0||(XRg+H<0zl+#g%Yr%IGvp8u3|2;MLVB|0BEMO6cw$g?PMK% z5PUBED>fo-eGnvuA|ne;bWy;$k7FejiSzuAlG-SZyP}_2-I|9(LAcPKtnue9Tf|TX z%vSsVY_TF#QjUKpoj}o;uOaehc6YP5B!hNamxq2J>(tV9%S8MG-5zk4@xh33Gz><$*l%6`IcD;Njji z+?o>NA=p5wvfyVrUlbdA2CmrncztRoILa(tMcY;OVP2ZV)eEp^ zkwq~u@KArj{R_;Av|TD=q5M07QF?(IorcpbBM+5SF^CgGlYDzwKtK&CN%h|KPN>_usJme>V9Vkd`MT z@!`JmmlSx?%(q;>MYqyqzK;6>*8+tQp%+|>qsOuD1F`QWUNtYtSKIiw#lP^y6mQ4k zJRooEd}I;~V}q%Z+=DBCofH&V)p+j0IVgQ@U<`pp*q|ok8-^?(n1TM=j%ql3b3%>B37fdn--DBI z!F~N1#$eE=VC~|TTB$dKJR!p4kZpv|^U%)f{{FHg1ha|{?I4NZDP2M^?NLVo6?EM6 z`-A4w{o(tGGQk6RpXLui@Uyyt8^oR_4Jj-oW=S@#~p~- zRp>(8pEYwfdP>Bn)MTj=(KZU`qGQ4p=C4SD<&r4*E1G0BC(K%KSMR?ZC&0;uVjY&$&6fiSf4sTe zl6M5Z#_H0EE++74tmWm{kC-qOD}hWAcz5TnEy}^5?(DD5l|-n{u?>~xe0Zr8UmG_!JDR> z!CSs`C<`d8)+jvVI{Bw}c8R18KY4Kvso=4W0z{GruWxw4^fFt}to)&aJQ}o~CICxe zkV!G``_5RhN_=1hyYM|mu(nsZnu+oyw{nlwu$gnc+{&|V$EqIYMCAXyfhG@G^Cfa& z4r}>n`(GYGl17)od;t^zHIhO&l0x5sBSxb-HHWI%3SMp`+9jm9%MEQ~>mWRa}rSH-f}CGbz| zie#576&I=5Rp%E8%?`Ia{`l#iFNCE#0O28^e0}xe>$h396G>boh1gx)ghyQ+cRxqp zpUQu`sUG$RrBtN8*&ot0i(Z#wQ}NXMQ{A@w`F3wqRF~5{)Z_jjQ(a_{%J#or{rKX| zmFFRo@|nycP|aFLZBIN@B`O%y{%N1-s2rN|x+38qtxY=Z%GXaIjz zooMYOsE12^W?+I7*gRF#Yx1v~U}Un*c}sP=Q>$xd=DwJWi9$UE)l)aZ84u zsUw_vJUGJ*cWph@-=g;>(W&2qR`1b<^`|`<8Kh06Bq3=B7~ z!l!2FyEA`J_OPZqSVIdFtE5;;UbTPokzEBMhYnXNjo4NDvB3+->@+FB&fr7nYY>a$ zE8aymgWvH4UT|dE`(`>V&Q$0=Z9T-qi}yJlXV&L_00Ctom|hk#LWhSN2h;$LD-;T@ zC@aDNq`m3emX$~%AeG%NqTU8h$HQybXIGG4BrSRPpDllq%Ea1eXTd)=jU0dH(tF%j zsEj1J++X$GI1O_(@v#2=4t!;_GWIKGIilLRW=qMeh#^XsmO>AZI(aMtWD)C&%l-7` z-M{|5#k3M}s*NMFafru;LCrJe4Jvvg3``MAnLZ;7QV;{c(-N}B*621eXBX+`iSHWf zbI%S;hQ!;+i9cJJ2lTzB^{anfeGdaXi(R__>4jN<7(s?Kxz)1Kh>xIqI9No-ay z#}n^ks2#VQ;UG*Bn`Grdk2{5ojqnB~)P@vFi35I{4qyNi&tdMydg6ac$_c}qNkkmOTz%>Yy{jjYHkrZ*3=T8U5LI)6`_a9%sn{F^S9}Cae)+!tW+n3zNr2d3O>L3WY6oNWgTZL&TO)-7rqT*==1C1W_us z^%OF~aR~$tEwdF`Zn2b#IFsH+AGX*rahiE>ger*hTX$O@tp$IKh*gm;eGkE6k*ceC z7;M7lm7p-7AsKa17<{vtKTHhx30Wjh>{T!S*hB4`fz`?2`1#@QtXvv=%RhAmg$#YY z{9vd4yIFbh4MEEPCCQSmrvzC<$GU1kp#Xau%xQ>W^Mo=BlZOa~XNLYN3tMaTb9?0B znU{~v&1a@>CcA$z2yB|~_!k0&N^SgJ=p85464d zB8kh6xIkqr{BmIWITRvUz{F;dsyO+}5xVK92LNiVm-v73@{d2+^9bJAN&lKJG7zgT z=Mv2U`HWN|a~W3ui---g2A0ngPjl9QiDlMUl+Zq70DYJ-V(&^hK2}53eDC(iOfB|| zJasNzot62kc>v`VyyUR-5P5V(2!2`MFMinJ*F18?k|~Fma9T;2_VKs5rzauKfmCM# zUI>`6Ds6v}{^(28i{5k{zy8zZvG(n8d2i5a9(^2JD3t2)@tlMY4wc%99Y0nn7-q^l z%U?N+JcIW%cJ21Mlh;Kb;|5YaM) z>fK(Y;w(nk*DCsM03Dp`i8?P($G^d&=t4LS@7#z8#0PwK+s;UMgw!VF7l);L)r~x6 zheA3RI_2bv`B`MBTBYBIXM?!G;S>v(Q}f8{A~63$P@{%T7{+kw+)fxCX&PNQ)uMlw zHllygx-=Q`#3_1VpN2U2LRMZt9cE4ZV{$DQp$yPlQw<~{5H1D$Q9K;#dkQjNc*?#UoMksRgY}F|3 zb09U=@M2EZaK+?0Y&bhwBypWVoa5x2WS71Ebxpk{gmkS%^c|HLusrpyLu7QU)+qCl zv`ISGTnZ@{J!%zSIQF(g>UGPANf@`ZS@j%ngE#Rj`%dy1PcPe}uQo!I1u*4c^QM4cTwF$%?797j9*FkJGmWUEaO5bKke>$-ltL`;+GNv7pgyGT|9)u z1w@RDB|c3D6#@@jntm+LF*KQg2{ejLa)!lLMPhq?l#{qkjBmuMf`r8VK^RggV+t3W zMKsLZ0fy~uGfr;XH6Mj2oLRqpY=$2{zrS?CRccS)Hq5WK#dlZU+7_iq#9AIvNKid+Q{=G_;t6>i^&ueN z`tOC+p&qp{`zT?1r}EM}T_imiyOw9u*;qh7XpUAOu2*pVZeWTjY>`5Z2xotJp_}g5 zRORG5t~X`V&VwuA5+_jDFIiW>;{>5f9XN9JVepC4RWx1yu*kK=3_t1M`St9=MPuP2 zqjv~G10F1*3M4{=$)fl3GVMQ6y1W}K1AKsfz@p9;^$SvzJbf2z{mL#i9X+pbnREbC z?#YGUq&Zl-1iZ$=;|5elu?A*KOp>|+Jh<;t6>cKV54K-0l^-cBjH@CMae$5B+oF$^ zCVb%E9;-@(h||nJn-C~A&%@fK2y2qfdPIW=S}h^2AD+eFKmH#KV(|YDwAzIB3T19& zb98cLVQmU!Ze(v_Y6>|wHJ7pU2qq9YG&Kq@Ol59obZ8(lGB`Dt;q3$|e_G#f8_5lR z*IzM@?aOG$;rs%E1CmQ!T+yJuI1ksR_n=dRvk+S{@B499>)6&>mUk8RfH*r^ z&CYPhkK{+LN^-`TlEjb@u4E`BQ?fH0JU&MwPQOnkcw94^81a3|COdqe@yEsBBe@_G zkJZQ(eV`a3eWGAxCS6jue{h09Fcc(X5Di6qDkT}p6mbWGBDj;YVHfo)3@E!v$;B`i zh=|o$s9=CQA>gSJ4afSGH=G!2ILC%F>m)Km z!wbH_9KtAhj0n#KmDE8GKBYRs+(J4cfqp~}?Vu@&b^T<7i$3eJe-U9n!MtE3gnF+S ziCOm`XCz}$=vs=$lDI1+VLxma9M#xd@>lJqL`6p4SuX&nlV6 z5{dOeSUIMk2*4p=e@~SWs*k0j!Y7lcisS_&srP^w_Id(fF2M-c!)J_=iX`47sq=t@ z6h!xhtk^>L#hFrU=SASo>288ONqBXjFY(fY{5v>3II#?)xJ<^mZ++LxDdIn zjAs+qX9Gr2=K(o6dzA%~bBVeh{wpn#6rjMOju@kqu}1{3e|^-mMIcg&t_QCuY8Let z-N8f6WxGLjHr+lcNZXOFsH&#+D5QH=1Liz=^=dNx@bzk8rmt74bu*cs-Tcn9d~tE1gEu$Ji)OjH{;T=nhY9|vFmKIA1+6ph&GeUl|HlA> z3BX+4TwMIx%{f`Gn!5gps(epF`52|br-AV8agC>T#tJVvFD5H8iMMrcZ*NUf7zS$msTf{)bkl9KAmmwEG(1T zc~zg+*j1yR%A!%PUNdh$=j~@-uMb3emOVnS@K1y!ZwY`B?`_iX!(w6detXQW&mS|w z^Cgg2Yz87Y0ug|DKy=^)G$bB_hUW`X<9V`zcn4py9xlKkThA{nhc9pm4eykp5UvU# zE>H-)e}FkkjYZIcZW^uEfK9ma^EX$A%x=F!_RK-zwVI6&aNN#Wrzg-?+HvQhK3u|% z4;MewhY>JaUk%&q)~8G7)7^FJ)1~w6vi!W{h{|3 z+Bo0ra?va{`r&V1u4b$2<$5&^YG6^ez}rHGf7gLE1QM&PDHM2J_PqkV-YlDQ2(p|X zQ4n9Ebpin-+e%LK53XPQe$b!(>+GjrbntHdX))UEf*1HbDHVm8pauyx<(Cow+{*$W zV1mgOWu}B6pj;Bh$n=;oHnXpz!@q`Da8YJUfvWB`3Ay;)wuG)l=~^mQYYT9AoVa|q zf9*hb0Pm{$qAAlCcKB5YErAK}xOde;EdNWb?DD#e6xtPvnnKCqn=6Tbanve|Rim9A5yh zbXig-g}@Qv=lg^>2AT7YkSsycg)JjWb~OtHb;5q_pDZsHE1db!ilv5kIwS`?m=r1u z{L>RjSv}I~vuf%)iQrxm(Uw5$V@uz%$neBbdJ;!EC~<(_(oW`}EVcYl&P13eQ{_gMEG@DN5N zhKFby3?xpwK;keQNZb)__T8Z487$*jg`fmYC`-XAz<(5KKIwZL>ry(fGc%S=c%*aG zWUTEVeOIF?1tsfa&^o#Rf7*Ygwp6B!+9N>}R*L&F+k3DIPT^Jt3E7I$?lPa zhaXA&cX6D-=L^(xzH;FCg5Pl#>ByUOwY}u=?t_#DbwsV<^oI`F>x)iE6fBp1_c@(4 z$S<|a^={V8&rwK@EFd%41Z@fOt9SL+7RWWY3VfPgNC=W-W33E47`6{$Nq^!{kOnyp z5usu-xIb4I2|YY8e}v(f3|-?XjE>|I$!h-=(cBiW$@WFB_B7HyGJkfyzH07tk&f`b zw=HNmI~(=)Gfx*a`($Wg5dZJdHugl@$ipokyC!6eqb(1PN!mK`2tvN?a+4qcNq+}n z+d911cCeb(2++#qRWsiF3}G^g4()d%Tx(hBN*X0d#X$U%f2F6`(_4sX1R!V&h%~yl zAna|DZ*Aq;%iYsbKGJK@C}azi&&WFoI|jBn%5zGccu3pe!6ZSc0~R|pAl&ao9RU}q zCs3pjfg;`FB8c+sseT*O6O zq(FMQJtOOV!W%y#2#7d{I4!w44hEb?y)2kvj z%2PE1&)r{IZdAjUc6+Py=+JlVt%|yT3s9)&2+c1ji&sFVRaCV*rf)`?p^TdLd>MJH z>*fD4`mySKCg$s^AKXgv&+q@7D0{5i>Qu*|5L3dw8`>twtB9?=*(ehO0CHCes?4 zg`oc4_atQsDCXvmLX z6m1v8`l;E;qXvzOtpj?n-kL>!>(s=?6i=G8jk6?oRAfE|`mNf{Rq4Q6&h2AvfVdmo8j7b0aGcT(0_IT?M%PK9G+^w@VspOZ<$$Z+T` zN1^`6F3GR-btS{(7ckO&9IFP@)N~P;uISME~eUS!X;{ zBg@D@2*?vPivcZKURp-Ox!R&pWl40Z(8#{zoLu3LU`%?qvg4O)|-*H;`uZtqfE!x+y-j6(Vu3UgR)I&3%M`l^nL9c&khI;Ydwrhv6 zzidT{sx0HQSXkNv&c-HxVamWHu+#8Tb${;bu_lU~<95k$8~*xw*Yx#vQrF7@&=i{C%P`g_wEuwzyge*}XgCR{ZOjZiZk`)4gMs^j zr>mKkk|Iuwch6>jt98_^DNCz3%RS{l?oLxv-ZS=^Iav$A%)j@4?XLdx?S8kmfHiTh zeLOqW+6g}(6V zHqD}{IaVK!HCUBZ`5bQmrCR9GN_xO2BIACKkfA?u&|;FIIiVFnrmWf;;KcC@zw*$G z2c`g{27M7C!v|=8|7@=oV3M8dn)&P-j4{v{xWnqtL#bhRE`~A`L;hF{MdY7<1!7q7Ek7;Gh+L4Qw*yT# zBFVNBzY~K29L0UqaU-wpx{KG@e=ZQ@#Ub~dBc@2y%bbIgBO9@|1vFtZL&heeBzXXa zYKK)(mYMU?G$}c$T1N*`)Bt+J?bN+e(~0d`hu?@@urtFe`d}iF74|cPvyVVtIHO zd;r0GQi}tHq8Y?jeDqYdK8ka}V~9Z2*!9D8CH=52RTY=YXVz;nRdE65rQoQ7K>E@S z^@t(LmK1SujD%=)CgI_Dsk!UksXxPJAn>ell7b_D8xP)I6P$SSdaORadEM3z$EK}U zQ?}ActaHyDF(fXFEAQ%k1zMbjTOJ?kjX)X=;HOk`Z~M=sZnxwZ5Ej?%G1YOBddV^P zS(9A>R+~-St;_@#JEbw$@9Hk|SQRSRq)9RtpdX>&Jl4v)fXMDjew$dMc!CEBLYJk7 zY4=Tk+xk-mpTXc^O`gNTk=NMmu{}A?6#{@UpBg;Ta(c-v+1Gl!L(5T^YHH4g&3)VT z1jMZo52oj>Ku)9?YE~dWTGyWjt4>n$wCU&CYkBFBxE94+;z0h{^x(-yh5}xII7W^F zM77JUfCJ(@&u6h?sQXX14l0$JqXzs-_~MR#4FQ9)x)uKg zzKmTCe9**WP}K^HhuZPz{VmDF-*DWiM5ZRIkoVXKQb1)8tLB*a0Kr<$6*eiB@?YC8 zpvQc2l>fyo0Us3EZ*@zn^Q&%I#<|kZaZ4Mg))TVf!{){CxkJX5xHy*-kGz$LTA{9g zU4vZ#tPYOdsVN@UKwtw2AIcB_C=REF(hfd3b~HD%ctiy+g}Q=1CwZUPaj215ns)K- zEL*564r>(fZ1ZP0Y?cQlfCNl*O&bZB+i#gH*db?*B8jb@7sO^3iYF30OqVwLj*k9# zB8F_a5RFMmBx}}evHfIvhGyv#ry#?BR7ythj}dAufz8b9S#wVkzzmcE9ASgNRrnZz zEgy=hv->xYOD%70i+K*|@2M?9%!C}Fim!wRtLJjXGr7%57c>VkWTq7O1j@;C6@ABp zLDsP5TGq&uILV&08^8w1n%%6h$zzTDSI40f7cF6ueBq%8quqhJa*$A9y~DPDUxk2> zZzO171N<%(zr*hOmNRg>qI_bX-sG8+6GApM5vBFZJ>pN)P>{&0(=+41x{S}0J z2iOmC{*r9Tqf-=I-ESUNEq*V5Ja(0cT*q0a=H~JJXW0H0+19%B%ER8gemU^aRKQst zDZpTq&z#?Uv&t4|FMXn1r(>=ChF`v1od$u6ofUkEc}kkdWKSp25i*&GpPshT@D*EV zQ?V6IkI(Cakjj63I*$_7use)BSc$9asH}{WV&SX*YUyxI@Dz;V9hV7=L z=@|h^h{nN(LpRji49ZX*(ZO)rwVNQ?TkF7`3IfSvD_ihtBoC5*{d?;w*t&8M${m|8 z(cv;_F3XtdJhTq>Y;31wvDvLh6F4|$)5Wbse^6vSTqz^l3Ak)lE65NEmB#_qo{=y! zOJ_kc4cu>#dGI+ScWBInN0=a2i(19Pq#>(#lXfyBAG?kV_@-xGR%~2xyIT}xmjy<0 zKB_%RrFYs1Wkbn-ioP)2^(WNlN@dsAnV0q5g6q5Q8h6!<_1*71Lr>RtzhlW8ZNuWG z4vL#}osKoFBVU&2tG5R#1@1C$C7b<~3$?QFito;H;R3Vr;aVGKUbTz^B;f|8)uFDJ zpEdwSjS4hvE?d2=h66Js z<$Y{U1!?RB=oETX6xXG@@hy`_H6R@Obv@{$abkRN;E!u|l7<&dFNMipub?5wcaHSW z&z?*wc2{_RH0XUEV|}PT001|W*u z&SGYuyL@Uq>H}bj3Xf zwD4A#FE6nv8E3T$X~J(kTEG_f$8NQ_xiLjXwjFva7b?nV*9>^|OLh2MK6SwH069tt z3P<_F32a?ji3{yL!@80`5yEFzGOji@&eLaqv79FHbk=og7pEphfFZfE%3X2PmaL03 znRF2z@-69nhPFi7qz3D|_^hm>AqTF@V@|}p_VIITu&|OCEaI%tXl+ItLa07Yc76tz# zUFHnd8L>H2*gPr6E-3yNRqrYS3T1AW#C!n}mvPqt6azChFqg6P0x5r;T3?ggwhe#x zr`SGOm$_xcKN6+nA!BEf)ETGF#5e7O-zUjN#v+e% zxw*LwN!{!>@1k$-i^G3Vc2`@ib)>(#+8UEYFN?m~QPZ$YCmwRg6wjDKojisr}rg$jnx%~4`G=0@J*YIq0G~Dxx-IagJqWhvNc5Z2~>)$9R zu$PAHsXP`&<{*w^Oz@bQ2#K)Djw7Bk-vj;n3Hzbw2I9ZHoyivP48%8EEv1O_%~on5 z6Cz6Df#eSl<-RJ0vi>v*Ue_&(^08{}Xbe;B>!QD>o(CLo?3tqvxDpX_^-v77610*Q z7p$&!)c_NKDe!-)9j|26)Myei>S-LyWuu;~2Z^x5HiCepp+| zEsrGOC5=aY>)b?rIf$!ms*>ncLp^P`cZQvVW?Sm=649gM6C1e7AjW7MP7wTVRqHZO zMWUXhbeyAT_MaiDl~5}2L|3VT>P=!iSy+D)=c5pM+6I44QmeH)mJEuhw&zS2D@+ z4-_07gi&c!-LB4{L~P9k24{@0+AjlI8WJT-vr0#=Zm9=Vurg1Yi8%Iagp>5YRR@@_ zUz^NoST27r6Ym_P&O3($VjjRyKh))(h35G;Tb1X+#%kssCJ*9v=NbDmxiHfvywHR6w-8^AIz$T2$d~^aK+971$g4dA|dSY_q%8Gy7rt|F)=<1q+F70l8W}{jqWcEZ? z1Vo7&AK$Rcxlzqb<9tI0+&W(f5oJ#=`vdurT~*W=0}M^M0kVXO|rwAMi! zabXC13i_GEMQKeuO6vm@HW$Iz5k&sUxgoLoBMvF>->07X*x`lqTZ&`Y5yUYbjh~LJ zIf;KH0grGajXcG$4IBC;exbo8hhj(-eK-#DaV-q&sJU1S=-I*MhK`~9bLjaq{(M*P z_meoD0-2Lj(0&}mQb4<)pHN{lMxBuH-1trw8e$e(#lGx!UBz6mG4K;34C=!G(3j;B z6Dst$V2+7RMG7AA^SE#vy$y!1V8bO*C&Pc+a!1b6!C8@rOh^*t-OtWQ#t;dwe+o45 zp10efxa0kHifm1iiB#JQr5Hy)BE^y@yMaXV&eDk%X|Cs6>up&s?2i=0fx=nbYUGn~ zA^?m{K?Y*Wn$ysLv#fXARdcFP1KjFOl1himA5$oe-Uh>06*?!nP$&pxgcgdL?{0ra z(cd~Dpb2@)v8sovdC%LBl?h|4IaMZvTXm@ftYZD zkjbj_a(cH#^?BaxM9VED0+zLKZ$*D*^GhJ14&y07vwqyG212@4^Syerjtv#)*~|IE z>o+f7{qVOpzkIj4CQ_uvEP-Jxqd%?^FsH6UC`dgI1;+q<@Ik}GF{i`Wjkys1LKZ)C z)o$S4dnN(smcBrv!ww44)MgY(Qw4F%iI3P5GWl6d0b>WCK1LmYNSTZgHm`r_6+V|2 zt_UPcI-B8gm;^XSJe&bKF2*d+B+H14BfUt_ri>3;!#(EZ_(f6oE%i+)Fi+ApC5>^* zB-(rg-!E|Z9%8Aj6~ZMRQcedFy%gb>bwPC(X|isK!E}p zb#>*kThKW1vKs|$d!fsjvpps>Zb^FHJ9#V=?CTleatZ~Y z%oaJZ7AQOAV)!6q+aV;JHp1H3cj*}bc^$jpWDE}7~A z9DI;6ZDL+JZGm3CNS9E^BnC0?i$wY)2>NC<3GA2(R1NVCeO#nM5=7ukHBN~Mt6Y`> zJK`f--tnP<N|V->x{hJV)C=b3$d}i;L5NyF3U-aYY==2i8D5qmyTWL_iqCjp#5=seh7dsG1$8Ef;?UntW?e##&LlU!$)_nk;mselD0C$bhsvO-~4j3u9Pfw zWv`i57GOBnzOK@>HG;QXMfWW_{EzfNh!@5I5I)ue4{?7H4I2(iv{(ciSf>(mhy-&8 z9=oiHVBfMTf)kvniWm)IZbHG6IND9iMx54nW6m&s!of1*T&d z?rbAtqDp^>#Bw>s*MX8$ML%C@IhBC`fx0pf^xaQke#QV+$t+~ooX)>!IK@&)zAU6- z7iAIHDh`YZi>{|0EC;GIrowX`6b+R%V|Zj5Jd!hh*Pa*i0s@|wseISdCkqP=i+&`{ z++3ZG)ja9Jj%w)3`queWGx^k1&h#`d_BY3RZ83jAEm-1-&r}@Ml)>Ty7o!!1W9Z%O zjy%fMRpGawpK%>z#5}&B{ttyy&~Lt)%>KFG6$d&N;Oqlz9&(ul_$CJd`Rd{v6%XBJ zivJoXwbS?#>C;en`asF($OLw|j1{Or)Yw5z;Cu&kyLjPRVakf9npRUPfbV8zuu{f7 zgf)LoUnnM4QTUF$K1QwJkZ>yK(yQO`SO7#oyT7*`!f;mI`Xh-?TukYBv;(wr5_%pv za8z9ZWAl>(UuF+N7bQK5;|8K|xC-_zJTGk?zd}T2ITfCrq3BVOmKEukEDJ=O{a0&2 zX*vb4!sfhXzBq$EJU;qqwtbWfr)<-J)3NB%+&S!j1xwoO>f?Tf*4?0aHb9>+q~T)~ zbvBYJ3+QG#xpEb^q3Bk@eJ->#C*VE~4(sv80gO`F>8ZPkb$AX5pSk4A#A+QyW{?9- zd;g0|kUCC5Qz>7;(r)+TZ$U4@YaNcK@mdEx2FEMR=D-=Cjas5m?Eh2jN*YEVt)B^6 zgY8FuCGaTb`B>aYt%%bF{AYQjBs?KqSir{~lwI>?_nR4CP|h;>2OF_JDX5=obt4KL zsWv>#f6K0=E=*Ri=b`O*o_*B;Mu3dP)wz(TW-VOwN7~`Ra5PKk!D5lhlE7DvwJ7Wz zkEXDV!7n>|@c^K#@)r5!MM;dpn;Zn}V3wADXPK$=?1UElPL@2uCVL`Jsz9=VD)6yw zYL+uxQmQZL41$ba6iA!#Y;|pE*L;$5H8YR&&C@&*p6hv!gfp|fotz9`I{!N%#QP`l zfcJ(x50JJ|qUaj8;ax1~D8WUxbeGHOg~NBY=b}B1JQP(oCvpOb;9XxHpko*beh8R< zC{`@~-n~EYSvDkkC4iEWLruX#=QB5#3ah=rbVW0sD1u*tRHL76LCvp!0ABZBeZ8Wl zl|y^NnmFZXtaZ}{gpRs(m}^(m<#SfX4!lKwG5Bx$^7kX?n+ed}5-aB*hH8E6;<_~e#AV~) zQbT}57$Cm7ok0T%BHf6DPH?GSV!+wA>%jt2s%$C`zPt2pM%4$<_WZpXJDv9Z-g!D1`pO;b|cz-BwvV6xS5xJV*R$Sh#1pPJ+YEnDg?gW(aH@Ly!_PnNlJs*!U zq-GXH0BM-S*LQx6<9JPw3|#;0;*pyOr};z=(`87ztb@3>qvwzzj&p1e^jk3d(-~2g ziCibAbwDz`ly#H>RxZY#r7@-ifN&65Aau}`v_w+b#I_=TwZMZt#& z;-^c9@7_)$LvV|aERU;YGxNNED0rZ9c2RVG>iQ^^4sHzPyaXoYObOrhZ8z|4&HZgq z!!=rcnla-$$}Ds5x1nqD+x_)Qgy0B19#TQ$G%K;Z80CI^T72TByXG569e3_a`2L}4 z#;>MpO5tRoo5hZrlVxzTYu?cV4u7-E7wY=uZG&?C4hh~!@mBQu+kbsB`{woQ7dPjt zmlvEnDX9X2FJ8Z1y_I4`p6APS1vmx?5?`sho@c9LofHdI{{x|oz?_%Cd;t^zIhP^K z0Tq{V7X~VS&01}b+_n+^?q9L(m*`qAE0Gc4-rTJ}zUQGcA>%}3Q96wLf|jW|mhk6O_2DAX0jyVFz``s|-_Wmj z@hlY~D95dRU2N{|{fj4&NMa}E7Xrtua9cvDe6^00h!X1i-q`i;FV<-+r)uc1MFm~c z_S9G4xSeTD0m$H9)GhXHs-mx&+O#}R({9Rt78IEQY+wP<`FuQ_MOS*3L@`5_FCqcG zs!$?SPdyTh27o^rgr|~HD*VmWDA2)Y@ zf4~2SU-T>#Q5HGTt-0jE4H=&tj89yECFjAFwM*)0u6uK4jDUpJY$}VLJvCIco3cH& zWpA*DzrLXj=2~PR&=kY1skew%mE>gYNfulKPI022@V~OB&hic>?K+sVvtlQJd+2UX z^i6@PH9P@qs3_^Peh1p-@~Ptj$YaNU(N3V@lIjyYvm_TXMf<{XSN45XZ+$q&dAuG+ z=+WW4x%~0+FK^zwzWT;@GCCA#s)w;~AinvOkZLmB>o;$FQ>j#B+IcTR*oUfZ>ci-- zWE2nr+sa(q-AeXgayVc&WPjr70tB^y(-@Y!^jeHaWi~^djLGA}tYtlsz^}-EwF;%s zGMa0ByKk;dS5y^a$cOiQYO38B`I;l5lYJ|XT7xyIjHBoeRlh?#$|PQJW4VaI9}lLt zwC!mW!MRMmd0jy4ahpv%bi$v`B=RQ(9qI3(k{a zr8`ossNRK9T=Jey9U6!&S`68Lk@o~TbGPJn^U&?*?JM7YqDaJv^Kw>tuks`upF5FP zUhUbb+}>VtY)vDf(mA+pcV%1pgi+}IwNIGYLQ+G(cMDnWfUv6(=qe@;1Px?rP`GLK z;C(<*w^oHXhK`B9+?1&38a0i56?nCpiq2+qG!r0_BGe8`$EK_9yxt;z5?ZHr}ys5SrH*I;_n&Xbk z`{uT6eV+E%R`u|~@l+Q>xjP#4__lmH9ueubd<$#_a2SPQa7T-IQ~*d8!=`dt=QRcO zGvkSqluz9D9!yUI%8vSf93S(3s|OR>H}%$@GPYS(0^jyK)ANV80>t1fQo)tqAu8Y? zaqbS+?$WohVcaz0p2_8qMmU@83H$aC_JA|KWEi3jhl=%O0|af$Cv&R>KbIy#jWqDb z$AbpDYKhKCMf1aQz8W%yC10In&vVr}Wmmm4C%EcZt7o}tkUm6zjCj0?RNz&{m_22% zh-;L>GMpuMlSw$=GoKCLj6NGG9-j@ZgU{9}`)nNfh|ks{O~z#At0(wu-#kEe9fH65 zPrY?T&_fz=4q|99HttIc&~%yzVcRXhhe|zoRpLI7JXu0{;93Fhc_6e>2Ddm(IWm15 z@-9q5!&6SZHB_&E*)7;L$fBKNV+Ebsc4TK@HWMle6GvocraOxov+a0~ApznvB?G=h zOJuPNn`~#`Jgw^ecBYa=JCpL6oJb{XXiJlVa~_HD6Yb0q5SY}0Ib8xX@NPAdows5U z%Oi`tKj1l$X*GMV9%2zmC$sQlI~HN&#>^0lQakY(dDcdM?QVRl&&5@lka6~~ymJnq zgwE452*fBM>|!0|B1;*k-`${g(0$MYFA|k0p!Ml^?7dXw9C3 zlg5~!=dKBVlu*_i>j^>`91TX(nkw$liSj{9!!EitebXWbh{5W=+Lzmsq>jwHuU4qKT`mIZ{h;+zaDoGf-Y))*p)R)G&=`u zLGKNr7u-K`9jW7GtU(mh4#=D4A;hQIc`9o4LWt+smV&7BTfR*RN;*{a0J{;Icr{{e zhK&-Xh6uK|sU6weW;mX;y}~#6n)u&!Wr|17a%M#bzrMA>^|&Wg1wfpTFisX z=0KQ#h5VxDStsY3pmymbJ#6056Uua^_(rn?lY;aBt!vfta3MYkYssz(1C4GgrZwM&ii@g{6jgt%xL| zSklh6B7ap=b4iHA5HcO(@ZsAiM;ul+?V9h1BfFcKr#|rGQwsC7B~cfwU?9cc zIh&(4N;a|NlI)_#r&(+|l%|H`!n+@kVt9YSp0e&vD3o1`Zi=wgaZCI4l*W9TVvbQ+ zNzGe?g4GcE#SPVq27E%%!^W~Wuvhhe8O%&iF<1lMaT>n0lK753%BIhq51l=bw=wyw zSU5-caXCKf8**L}=>__8o1a(6a<xC= zEkMiuv~j~GuLn1H^N24|gQ+oXDVoET;i4MIpxfUWE47xa^mQlPb8!f10+EI zVItgPCSMhkU1{c>uP)X}6yjBT?R_(kMKWG9J+voqAXz*Ek#-=mwm)1^YG%#YPrgFW zw}1_F?n8~Pj@&qIW#+oAYQ_jVP=`)ar>7|sx>y9V?B>%M6=?ibtTH1S<=iuD# zy2fyh%k2zr&#)ej6ohOhI#J=DJ76b=Yfjxmm|TAPidawIRjhO8kfmk^Du%zh`Zs+J zq5qe`d;t`f!Fdc5lYnzAf5jTvj@!ub-CrT(VNC%eF8kn>1PjE$I`BROh&_2)FA|z+ zjTrFIvMG-TLH<2;bn_a@N3cL(z-m@k7wfL-;)q=Y|HLkjcBxWfuCra)yodAsN<9H{cFpqMvyFblI-5+;92Y)^nm%;S=e}hsgP`}?Fw2p&U zg{?{ky*rz_=H=^srUFw8*WTFuLFy!r1C{T8x&P_KkM|=Fv6NrQEMk6vTM=p4)w?9q zp-|ef+%=cFDvQA!kzEm(PlIWX{3L@*F@QiVZ#BhG?qwF7tM-Ani-)3W?ZDf0$6yhF zL?Rgay$Ar)GHPYre_q|~Wg0x*!DEsI#$G^t_${lVuAdm^@oZXD#qJ=O<%3Y6h?(Qz zY(Rw~_q+jJC8MD1TI6j2hIqTEakm(%j!+QN9vOEeVTYbM#0R2~&L}iU@LCVmrFQtN zfiyT98v?5;5B_dR8A#QdOVNWOiSx+uESTw0b!crJshQ>?e;L?w*OTAS1M`IX0ivCQ zUim$^Ec(7cCY~%mcc;ZcrVlcBJDB3QL@XRW?h@Vu%7>?%2}fdg+p?e}Pw2-w_yE>R z1H%ue!h#qf9{T=un(W|I1m1_v2Q;J(qtqEug>jhg4{;)czabmfZa^BT4&Iuk+ba=# z+{0c`Gp(f~em?*`x{&eD)i@jlE5nOsxnj@PA;O5h%Xf1le9Rgw?Tr=Xe{q+hO z=*a&O(2+Zq<+blkTcWv;0ICjm-3!3o$PEhg@uFlk_YU`;j^|{~vr2TRlLUAtp5H?N zZiyC$sZ2f6OULXcK_SCD5hLm?V%eG)2fv0c4eTe7^B}AkcM z&KwiO)QR+tnL|Fzy<;ZqmT&PmxDYrJr;rr}VFWfD`uxCZF^;u-&YH|+C{pPS)jLVR%eQPQ zLajz$a;at}#XLtdr0ouDdZj^Qky_cFvM!v-B_I0LEDeT$7a%(_(cD zw}cTo2e;Io!MBrHHl;~%>5(DQ$p;=Szolerf7qA&_&yT4Hq6Nx;I(mhL+4p#9TV_) z^~I7i<3UDgC{wj4P@U6O%hnY-DC^FS4^44IABl2$1^)KtLMqeCC7zH1x9Z2<_E#bb7*4ie+had$~7_p28J{BEHb8u1(2;8Zdw2|*%>zQ z9SEF?H~=S67DU{^kQ=zS^JK_qo`Fl>k(?#FgXJu<);6&?rFF>j{n0ne0DE#dd=ma{ zT_I|7autN)1R#C&a3=Fo-q?-pViKyzb+|tk92X!(u2v?>m8(;@8dEDiOnwOuf6hur zzvb))>wzu0LW0Z^wPd>hW5LU8(wGwRet0-Z%PHX;AsO2~1j_1FY_+{aKUpw({7 zCP58L9eeEmY&R7%df;za6bElwf94f@+cNuQVGXv$84Ex#Q*bB7PfP2fYWGTdm0vTS7ShcEVQ-yOg)p;BPLZIR1DIrdk7{0eF)Z73a|de_SDxNUo}W zx9v|VOhx`1yOaK+JLNNXilN?~kj^h8HPBAm5-YbDsppSPd$SGF`=}ucrC2(!aZ*#SLqlUyc-I$IBeYvGB zCgCoI8_+BY6G$%$R~+45e@9EVSFXhZI5lNh+Y&W8$J%uzG`Caq-_&#d8|oSE6S49b zbJQonh@i$-GVdFF+B7|(@-r$oQ{8ie^BvYeByWK#_9^d zqoJ_{S`-)uqrS9^R97c6RE^o_m>O=Gt~6lERNzK8_h+*e#HkD?4=s99>_5m^w#=1* zhfEgr*%_O;i?ao_d?=OW4X$ShcJ??I+-s790>b+!j;t~3S)f))D6@E{Ac!=)^7HdR zkA0Y-Z_EVOL`jNwf1@7(H*ix9CG-39{TOuGQJ*`;yEDklZP}}9RS#ABi|gPnWK-O`L}Ks^o* z@sPXq^@rQ-Vo~yR5$0 z#{E-2PErvje@2C)R{17O;BI{u#e$zfoB^(FqM zpNLg)Al6919LrLMk<`z6x#eAL(mIXm#)*`g)b56L%X+H=F~!~1_3WM}s`2c~f={d4 zweocY7fW#fu-0hIqkzSs4T9@X22J5CxUG$)Q7**7e{lAb#LvaoV}*kYsUjS4QryZ| zkWmq4uOD!v82rnVDtQhDTQp>X-w)tSj>0(8bX10_KJr1S#A+9+Jh)+FD7v=}`>X%+ zng~qUp&Dr9LA`{4zNH$@K#aat=_N7T|J4oYVXHTOu!{Xo?V1tx0&0G!Cs`7ZexRA7 zscG6lf1@61JT5h4JTOeSH8^{CjX z1=jEfxE{YA;qFu@JjUve01%1(2!K{R97a5vI3wt4se}Tka!9kL0E@ZI6VeBwa40*? z9&eX%`g|b$m=qT45kKw~A8MQ$q=KdfOZ?fiaXet3>|h$V?_L0*JkF%yk=2GPXKJ+J zx4*XSNCBtobU~!MuX~~0y67&y)5$cReKJBFIr{*dXNS0=IFQ_qH-A9I#h89g@0uFe z!MeLV1OnkuyQXoYKkShG_rBJdk`4~%5sw$o@4g$EbY-}CfH=E^{yOj9?OETC+cpw@&tKuU%0SE&e~D7>5TNZfMf%br-9DuOPHRzX z;k=e1$w^c6kM9hJlqp%e-lm5>91a0uYD5k{4re}o)bdpd|M;p%S4K)!sC>13c#%45 zcfX>>+wWd*-){pQH&M^8Z(rQJ)_TQLR-^@A-PW#G4sExH zNJAX7xDH7db4=CgxNo-QU@PVaO@a(tSumYLRC1OUaisg90^|$xXu~oeMNa)+Hw(*f zp-6oQo(aagMksO$r9BOQ6$}4tEVHoKuDgQe8Wizgfii4=kBh~iInzpqMA)_cu;f*U zILntEF(XXqacsNAE!cn~o%87~JW^PK3CS0LO&ki%gr3xv(i&?^=}B#&6@47a2TLz8 zyl8y`6_+Q#YzI5go3g5axOyl&m4mNCwFFNH#d4#@1q09J$s?-3mK&Dm#UxwYkkbSHf9Gb#vBC(qDq(oiJNoE=M?N%LOYd;)FR`~m-rkY1 z90vPv9C~^hS{mNcdhEfQcb4qiwu8|4#U7yM@2SJ>H$VD$Tla2@$o_->IUK{EO4U>K z|5W{7Pt{CQs%9CaYUgtlj3Gx&5pooaQI5is%TXAA*V5!JN73wZ6ztO+g$nR#3a@_t z*N@csGEFH(R~sc*re|6C6)|sJHhYjX#L9>QjZvkzM=y}J9q1q5wY)sRx8~SexlYxi4p!p@#P9soSIhE zwmkq?-E0S1xAzSzUsgT-B=mt(0C$w0A*^!D)xd*?a=-tC!qjt-$xsBP$Q6+HsjK%K zj1G}x83PHRGm*SS2O-WbwnjlE9+x!+ZV<44T9Bb{CtC^w+nRnG=fE{xF5o0RJ=3yG zw0LNL1V(U8C=pmp`QT8|JIMCae(yKvA-V6L+>GIgs?yo(iEVcWvKj*YsV3b z+EGA}n~{fIlEN$@PpFDg!_qXL5W!d}E`@+iYF8}4B9MzzqiA(7!8ooSY`FDdA7kBr zJ0X5<3@hZw>&tR9W`0cAETxjwAzmKn-tOQ(Mut7KIqd7I3 zdhv*Iw+sFxQV`n3^v(e84($-)t68dMhm+?#yKNAp*N3aI;3D3*4U}^ayU~?m8OClE_Gn#Q~xb9P$a z8xRi$6LMbV;)yE%;WT_snd31~Q-oUb@Hpq63GQ6uV5YMljpyRVU7_NR9mK^g)nmn- zrz{oXnZ>QnS|*%w7sai#oF?D2x`Fj6gM>&vc8w1yJUE>2i|dA>q4P;xyU`kd#k9$u zte1?XSzOqHWD`24SV6-VHcA4ICTx#G6csl@3U~16HU`V$zPO=BvlwduY0nFBt+)-J z6gRk=6t^sSI?Kj^ymWLHI@+sPh=a7qBI$JJp4^6v854^}Va}qF zK1{~?5Z~7HsZu6?Ha^0JK>quF6Cn=|qwH4^c*jubgtK z6CIYYWe(3-CthO0zma526*F}lR3j;>CG3*P^X>Z)(HK!+GgoxIXEAqAZoIs9`W1yN zqd(WZsb^nKVi_LP-Gy9~XPKvFGB14S@^?-5)hy3G`?47ur^2O}lYhUMd$oAuG>qqB zF6Hn~n|}c4t8zb=f&Bp#mz?hb6aq3amjOToDwpup1_XcH#u2{jSIi-hIe@0ae(_-l z0_@nz;}8S(0y$U$%pGzxOgQA2kF53YQ`J??A!mEFvqo|Y1ZbMw#p>$ns_(1f%1sRa z`2(D3~>(@|B7Q(q0+oia&oBO|vT@Ba4c z`@7i&tJICgqU0lM(_|yHh{0U8Hpz^T+K{zcB*JWWHc`=!+ntQ6vhJ(>Sht_R#MDGT zjYV4)eTh#t`e7Q+(@0~Or@>m}`@ZjbJi@h~z>$A46^Yig@!hc==#72X4r4#Lg;%z}^@mlbwl$0u-tH23*eR#u*K2k8e`hg?7<|{e()d3t?l>%YS_#|FP4ArS< zQTJHyA(KC|^M9S{e{U@&cSWmnP~Ya1kWZ{gRT^-~wXQ@bUP`@tEyIq>gpyYg`;UJk z*t#<|jV6dMm(n#1FbHwdc?t(Z1qfE+IB~9g6Ur%R;cCoHDV2#doh45Nihib@+HRz6 zTpE{bM@Mr7%b@&p!v7gvdRpjulKUl?0}1#%v3}QG$T0MG<|V#@2*{*~{(2zoHCtA8 zwCV7Mut0-i3!u3MPw*XBqw@HY+X#P2IMJQi>H>gspt<6F#z<1RbXYr770rJ)of`-< z0tTFTUpIbf#{7X^L}#Q?#oR(rjDikjaIo)AXHa!tH}yz9U&1~a-dDu{Y$eD&Yi0#W z1-R+?4T;qvvFhlXGn`2SxVI(qs(k^kZjlgfqgL~OY7J9sfzljUZCNpKTv2~2VV>V< z=2J8C=>_G&e5#-1Q{Y2wZst?{h)<=~v{5Xt28BxXgPN!BP=A^pE6nwRnZ@1Yut<@uGvW>iC4SEzjsn$fDi8Ee48Pm;!jhz6^#H*o$8`)`EDSO+vanS@3j>spQC@FteW~%V_O*T zrb$GuX70sUc&HsFgZ{Ro-?1-%nEbByP0{{qpzDTw$)azlrOceSo&2%7n9m0yFXCuA zvs6b2BQqt8k}Iwoj|GE1U1wL5|0qtVh9`7yX*5?!4qs7b_yPeKf0dqAh(b*C1ib`& ztR>VIdUjkJ@+}OdnOlFEI*89OG*&*ZW-fj_y$*ArL+I6LcvX4=^k9s%%cYRXh063g z-k|CL94iUweU?6p^Bvdp*i-Ge1&eCgOn!*t zIHW2QCYx{a!0yUs{m;ra>={iEFhg9BP7%*Glux_u`E?|>-uyJ&NYmN?ZKrN~=1d6|5 z*R{djNp)=wx)vfg`1ZDZnU)Px!o4j)D|Cu&_s~k6_8(8G=&- z6zf&HuR?!xpyOPac)p4cQk%AVaHUx2%S0^HRT6^!`cvEWlPK}n4eQUkGbpUu(LL%pZqdu=HdNM=R(vD;9Vd^4HTD*( z=aBsB4Q&@zsFnx(!_CULpM1hh{1b(qFYK4+wK9K;DEv+rr;lkw83rmGtiLJ2M8|cS z`=&%w^+3PjL+cdEk+~v#`!@JJ%(b&>d2p3zu7{N|l-;;T19dljqCzW+dm5}Vf~|4+ zj05P5YTv?_G)3)>v)vWWM5{?Il6Vb99!wI+w~%mig#+$pV06{Zgeb?vBDS|7r&@N% z0QN~1{LM`}+R<=_%Fj>Nt+0sA50Vd#xfgUp*9ox9vT?ETRpGNrwHnxm)cemqHGixr z{9jAPsW131a))9#Lf8oZH@N=*!EGt>mx28O6ag@oQIZH0128x=lfeflf8|+Quj956 ze&1i=r&b2mEbpR%MS!GfdI5?6*#qPu2~e#q?-5{It}c7B|GqOEQWkxrwGVJwv?%;w zUWUWraORsCN~}2i#H!${Tq#y)x7r@xa6j69Tv6l4Kfe)yZUcmy3FWsBZ~pMTF)P7Y z!3(i^*iTtK>{dT#e|#*@e|^=iH%h5YeYM_bZL)96uHMqn`^V~Vpyu~$r?RT-hqmh0 z8>ww!GA-A?KK$*?pB_dTjFfi@i zTY+r3&ffQJefrp;FxMvrm57{KrHI8hbeKHT*T6|# zwjGWY5q58hq<;()`?biL_E`4Rt-G&+5Oykrbj*Pqj%h1Mj-QFl$|;#)xy(UgPjQ-K zlu-Qo?%lgNHn5vjHc~w`?QTvn8-uF1K`f$ufMXG9kua1@<;BPlHL<`{=1e&qDTmXp zYCn<=(P)$`vc5j-e=2HLzn#ldS2riGRGyv7wmep3jxb%GcGMUz>%(DT<+eE?B)b2y=5!jMQ^U-v^FR&tAM`$yOm4PF*koN*qx;>16Prmv{kR>uZ)Kyn=z zcn$hTeW*?#{}mtVj%-Hd`CfNE)O`=8>*eJ^(qJMbS$C10f0~{eXVPT52aBtAu&;5_ z-rhef< z9|Ff+)ot7Qf84{|oZXs&+2WZ;rHDACsP}Vh1b+dCc$jck+Zx5Kc5nc}XmyHlKvgj0 zw2_ucB`!$k2p^YFD?_wy)_5;3~pRw&g{U zOZfGg@b$YnE+DdS@-}+qOsf>Vyzap=hb|gC*rOlWe+3-|)2&ZrSU@ov6H;B&>3vIQ zf1R}l347YY-HC^VGLh1Q!Y)YZWdjMC=uqCi;s4mQQK0%`O(6$;>oJT5kv+me81}I( z@wbUnY?QUo2L$mdv3d3ZrTsi_=AcUVMN@|+H!iVtV0kP(qQg%9Onwt@Pt+-CZVOfh zgP*DAe`7670>X&QM^EUCm*Iu>kc0f2}aiM}<`o=pYgv25_K`>`pmw0dB8w z9`&Sb_K!K&7nZ4FbnDIBt_eE){w*=PpuN3;_PK){^bM%arAeV04D--*KALJH7gT4! zGqk$NT3@p!i-E>iX zLL6-9sw8W=K&Y0I>+xun#=tX(#DJzbNNvd zgtC;1%1PXwInM=UNk4#l!d>Zypx4=;C?8{qIgF*i>+%tJk$wui;FaDQELTg`z&R88 zzS_w#&h0$tdMPNIS-@AQb&Sqmh_A&o0h-2K%)J+2*1>`Do8~R^#JrJv#Mv=`f4JNw zarPTuo=_moLkjI9Y*3X&UWzbw}JOVJV* zs$!vfOY5@+jlUlYv{2TiRBCh_e`uERQ6+j;6=-}_ijOV8utNJoZw?t`*zDX^pK8CO zH&8%uNX}==DgL~UDzJ`H+25PBlG&&K&oau}&Vopjx1w27**MF1E)&7y0|=V6zcSE( zj!C(87gT}vm$Nn@IWxk}37Wc;0hbby%)85r_HmMF@nvX$W7=^CgaQ-Xe{g!TiG4#a zW@=uPNt8{+@%>4fCY5GRU#DrW_Vy66PJKa8yduPON+;Mt_H6lG*I+MceB6atPKc;&SFVc70XU_Xyp7*|<`-)}% z<05{f9S>|`)MY>WjZf3%+-0W_&e-wm); z#}%ODxM=b%0lUq9spb-w7l<2$hE6;YxdyBbTg0b*Uphm}mrED220sjFiIozXM7g8y z21F9FXDYl*t`i4&3Kjyv)zK#aGl}BncD4XvT)!}kTTK=`?pQ4C==+@h7F=0k=)Uz7 zRM_;96xfkJL*u%*GRJpKQBau;(}YylN|{s;fmhJ5VoF>k?A32|*T0P)SK@cc5UAS< z!!L`UZT|&;u9qd3f&Bp$mob6WM!TmKH-7o^8!dDjAlyWh?;qa$;paSGX_Z#0(yNDk%<5sc`jq^1s4s)> z)_)sgOk)1H-dLL_@9VzV^3cbFKOVXH^V*rj*Tc2*{d$wxqRJC%*1tXc?ahaWQHDIr zeo$DXypy&pR@$b<7MVy}IGbu?Sz42p>rGx{$%pkuCtv;cIyC1e5Umlq?OR5PQG&FOOV6Mqie`SA5ppZlggGry@8fuAnZB8c_RgFnM6 zU{~WuCq0UXoYy+>JhL5{L#OHa>*)x7_ZGWVG8}}s7p()U3#i&9zT3CmNmh+y`}TNj z*D(FeS|E-f_Bu!ajrQCN_qy+!r}GBSLkBRa&NUz41o8u$fk=%_SWvk0&hMJeZ-0kI z*uc=fYfs!d`u)K4Lo4LX(}5TXZF81+k{B1yB!;23+xadfsq(baIY?H(#mQCabiFAG zl{_E^tE=RBot3Z#P6k)Kv6%wq^}usOAiC6Dk4BB{LoIZty8Ab7?RPvunR!whO_R0=QuRpn|pw0+nD)PDlX!Bd2-@d!Fk3ztu|d%Jo#?zujBV5PsKXdbCM z&oq6FVtfgrvl=^|JJzG~Ub>b{W$Quu^Al@yGs=THEm@u{)@fnNpi@*Rc3Gj=A{h$f zl5;B~Q)Lm&Tv=W1~W8LAQkQNo(dp`#ht#w+g@}f+us(*R~QkZrV z5idaClp$&4BZ~-EnF9)@IW}zaNx%;WM>yzz1KYOFf{i_Sp3Cf9W}^Vr)Q?IXs9%wL z&XgoaQ-bSsDo_5pXK`w}iEn&{XKeG;Vz=|Bx{-6%d$JuIo}xyJO*v(->y56m)S!^D zW&f(Q?Ro@(vK+VK9zk3Q7JpH*)17&kkOIDs3~MrYkOn#jx7z(|>gGhy85=U~60s_s z;Q0{uI4rnW0kpD<_FO>1x_i2gw)`C*GU7wOObk3L#BZ??BRASOO$yP@_gj>Q-+a0(6w3ZQm3k;>E(dCj@%1i(XF9 z9CxzP2b99wa0SLe@P8;g7HOn{0Gm})gO8WwRwZPX!Pjh6CH?iWADRI&Ey^Z{OryZV z0a#<6h*Wbnv^-ZT`46nRwu9#$;Exz~UL^IA*NXjvpDenhOpgfzt0#m)PCcR&gITja z#S)6N$Pu}!R9VAJ5iCtnKw!gf3@aRymi-K9;aDTi9F9D%K#)Vgh?J*$I zJV2!ZU*Yw_s7SWgt{d+eXU5F0NO=59)3uVcZNS_sYehTL%ni)CG!O$2+l`V;$mnES zQ^Ep6h^YAOuUlMk;Q5*d$KzuMk)}QSz=^UeqJazUDIGFs3CC|!#&ff!&4zklSRV6( zCD0|st7#U5o_~ybSJfS7Bqh#K)`4RT?&=+4zMZ z5nn$#p{oS-v9Y6s2Ae}G--FCWHyU|2OrQ#pS>V}kFxR?=iil0hlqK_fYM1R;}z-G6OJY#?|B%#$^e%!6zG*LMOz zXp&b+8b()*at6j6Cz#`6%yA>;xC!RWGiaP=D~HC^%7y;%I`HhS4ZF!e3_&hHkefiz zJ<5n~`+r**0BK7!4+;k{)S;DFo4mVw(Xe`=OW4-e-pe~jv~H(b4=+k${}r}shX3yl zis%j$0VLyq=1f%)6ynTH3>cGJfnj;9>?zk7-MM1h762L$K&*Y6<;i* z)Lt0Y3!8)tVX?F@uy(A@<)$fFpxeacg073(1SC~;BfH%MbecZQN=@a*`5fzhSm1a| zY`DlX!^f$2p$@emAcHHJPo?;QG4{x}tJsPvHQ5RM+A15JV@4eC23fPML#q}>;g}pV z7Jt-@o{+v&0yC-0@>>Zk;}Y1U?Df&t-F6M}{lNXG9u`dd^?KMld09fpKzk`8M8z?# z$Us9(Um%1C`^ypU6lWVYzLtCAI}Q^}2+hr&7X)fSO&L5#y8|dlk&h&q-;4q7i&0G9No`bAAN;IV;4+k0w0$C<<<-t*K z4h*}O{BNmBRwI?W?O7%J>v?>4IxrT_IWj7gVp5t(*rdl!#vaAv^R-RSqij-CN`Gs| zT3}XG@-BA~B!@YNi)Ig5Yjv7eZk54}6e@e=DI2Ia5&6PncFuJE@^;{}hNYFl6vYOU zRcVFXV_j0IUNk^YbFx5snqy1fJR1f2`CTGWoPq2chm__4#DC|L#01sCNo>W}L zMkBnrU=}TB6u?%yj~TvX+K<=fI5hmquo6U!4GBynI@Qc2+1$7A<{ts29=Ii}rlbpI z{R5>d(sD@Lu_0Qv%$P=egAUA{nm<8z(7ZVr5w}x95fyb`NjP)Xs)F&F}v4?%^*>@y#Gv7RcB@fGHkS z7YXONZTF2wBbb%H2TFQ~ASot@2+&u6sv-R0P*NQ=v;)pzo9E^CzJ=F+g~Yu!O*214!Geh`;cq}(*j{! zDLF|$?y~gSzZq+T$%S$dlutdAGfTgd54x!#eTw0*S7`PC-prBh8h4?f)8~ z-bCa}|Jcl!#{Yce6~8#03C8MTQ0E!4Ru?iZAP6qou&Elksk=)rU22?r9Un5V&ylPV zo_AF!l!VG=wBw#d8Grv_$*??Ix`~V5DnBJZRI^e^!3PE?M9AEk=cID2#qDW`E1{5< zap=KWAyYw9QjJ!!2LRN$zi#obL{KW_SLVh#q-eAp&58cgV=jKNz(JC8U) zk4o$YhR}@iwww#GyTywsbc#(iQPXG8%x6-{=L2*{ESVaUDIg&m88JWQ|8Ge#c@Z*8 zk_7)niiF|(^=+{D{{dz3v<{bn{Q(pKGMACi2NeM~m*EHlDSyoxO|RRy@t$AdLx9M@ zGb>V*DD7>t%@$kquxMVXQ98-uKk|L}NbXYuO)Z)E|F&Ytxp8vd$}-ZJX06 zulYznKw#ht+;bx%A!8za*r}2%00zr|cgx@%vebk@-X1QF1h>S$rCorX6PO2B1G(6v z@uQ^^!S|PXi#L47yNYkfI{ec0AVgk$!tFr;*8ri8NtQ%2T|1P#9Y-A!jwsf49EB=q z_VlSg<__rc)S-Xs2+*iV2fthaIPz##GNQWS&%5HcQ0ltaJ>c9pI#kfHLITXWEj^=f zo-?wdZJT!KGH}N(KOiC?iG&4u-4>wIbw?A61Ah6s0Oz=ctM;DoE0q!UfQ^hrlE(Je zNVX{rmrjz9E}b~lNl*v#c8e4rX>Mbf zDhQ6$iujV3HJ{Mbyo=B!!KrB-QB@8+?f5vSx&B@w_Bqz4lI;im0M3Xe7$6x)Q5u49 znnRnPXx-W({O0sCvPF-JQ~@@kVjHx@HQocS1$gasfUR+Af*(Qs;oJBNAqp34&axP# zSg<(zhD3izG{XY34n~L4x{;!Om}!WIZHp7|w5$&dz?2{%gU#9<4WH(A4$`vw3Idx^ zrLPp7I{Z*P(xNo;Pu_v&qOu+)`0?_PeqzwtdrD zCLntf#eu{4z>#;|g|rnGE&pMWZ|EWi90MUKn}no9i9|&pp@~gkgt4ZFYFnOr-a3h9 zaUw#k-Ofp{utbb-jqD3a?j6ZA-xb}qEs<6i?hNvH7Ktf%#@Yy-sXMWlU^gS+o6*?8 z*h_zWESwX^^g*PgiJwMU!$+X>+;^WJXnJP<8wJ|T305W+8N~UQk?f%F5Isj~$#!;; zh9Z>N)G(5fVQ9rBtW|_2i~@WYnRI`s zSf9ThOO~viZkxI*yMB@`pb7zc4g`DPdxK|ug)s61os;PCIaV#RP*2qooS|8y3fvK_ zFjdW&RFCso@}SO()W@PNdzT+SQIsI}=Lnp7p}hCL#pl=-|29V^vSW2#>C{+-)lvr|_gM-$)wak7_j01+cMN#SyDyyob(8cj zdRFcrQ{_*+SR@O?MM@~+1>0~zKQ?*vJvRKDCaEbq(|4VV&nkK%E?Yy zl8x0>82`RTui2KI;@Z&Pm4|Ut0oJT^;MX=67Otw&Y;1mb(vnHRMZ;twaW$1VO!p*i z&Ks=Ffc=O_t4Wn~O9fboCRNZRY@R0Z@;T#rjVQFqe4n7BsqYK$^wNJ?=Za%WT_})2 z6%BFTR*>)!s!E$a0nms)7Q5vSjwr8!f#(Ho!xC%64#F^OxUM&sI!WJ`H_h1vP>8)n zjjCpw01<`jMBQ|N7U;Jy4hv8`+w)7*;A-L9uGr_7YAvng6IN7!;VxJbxukPbmDEsB z)6x`>OTYD+InTJc7=VA&mB!D#j}d8T{x_ys{dG)>^m8635>ciHm28%)x~ba zRocXvkdTO|6aui4_evXv-i*MPN}Czd>xxW^NGPt!eDeI!-oy^yQ$jQ^&U9d|`nnnp zOI}Dn!QP>MiqJ7nE($(M!q>*>ZYV|bs?58BL(a&N*gXD*FP48$=8Uw!qPVFA(LF6l z4GGMk?~d+i0Yh&_;7eLCLwcZE)Kw2(m)}fF-`M_Rj5<=cuZ>!7B#-G?$@eQ`c z@JKBDaOo+x#o>RKL)&1Z5DQ}b{GaBjBLJ%?w(h)A7LA%G4OqE`$|Sxg0fyd;z?Wn& zLpoI!qzxQ~&_vv)e_$#5`GNC>FauGTX|6ripsW6qhLQ^8stPz=2pfiLx- zW=OpnJVtVM{zf`9BINmO51);xk*WTsJR9jrk^Rz{9~P>l*Rt$^fNpV;B3^jvD2l; zI{ZLcI*xyaHVn?t8tFSDob+Jug-XfbUv-84fi@rmzn0xnf>$?u+mZP*@D{2iHY7J@ET({3Y8X`eupSZO2uLl;$Rj}C8#toE6 zGD6Zf+_Kx1ejQHb9@KVd1i|Xl2<@y91Yc*ZpILv2?X>&*Cej1?X=SQseH(xn`ZoU; zO@!}Dgm3uCN&RYDbSP!&cHjnu7a@qNcO6RXCu6F$0E z^@Ri7PUL@oh4ses80&}6YP!y4_qS`;tJg&*h{en;!U9F3FHc2i?mbO7=*%K7!1ZXcl&Vd_7)yh;;S?wgVe>mlyV1shw?enJIP!og^J{>41{|`;54@R<#2S8 znmH8qc*Fk=(2{+y^)}S2AvZIIxB3@*$F1eWUjrQbYb|FdIG+kp%JmyaBJ57tSzWcV zUB@d5%0u0>vl?`&siQXz|6c5Nv5fx&35o&(QI~=J0Tclme~ns8 zZ`{ZczWZ0`5X2PVp~+@99|3ZR7rQ}n*&tSsgV)$lGc65wIpl;7OaAw%S2xK~Pb3)d z^rKj;uBxv3s;KlPfq&^umE06r7FW8w*`MAev^qTA@Zg_+eU}Q|4hVNE%1?LiKK^9P zO`612Ql&R{4{KI;hnp|a56AjEf7#)7mt|R${poh6wTV8}W3%U_&qv#~JpAdl%pzM) z^I*r@ozi(_B5iKJ-u?aEk9S@MqtqLPMaoyCO%n~f`X(=RoMxIu{tF0cOtkM$r@A}v zr0H%|5q-N=Wz_$U|J!AQey3wI;wXjPpGSAe0-u=`=3#%u(XW(SSAnXi(f4U;dpJ`v+c~Zqo=4hU0ND`g!QV)@8J} z;H8Fm`X^pTm4^n?1Q7?vnP2-U@%m9L|gfeEEV8e{`^9dnEh3w`Y7~ zVcffMG}PyjhkImJ&!DZxBc4J2VsN7p4zGf7+Z#e0D-+MmtwviD6#L@7iGOp*7vUG>UI`CMly&bJI>_J)_C{ zNCQYf#y4J0WJ<@Be>hUUa05KvB91&mro$cCXvCS@rn47Z>vrtJR>PP7R}>lpdH0AGz-LeO!SV==MZXlZfCD%%@FeEPTX8bxo?Qusupz-P zaD*i^Vzihx5#+tZoh3B#H0;+`W8uG#mYysf`*I0Tr3AMUf3-(}Fi$t>u8MWx;^4U- zo99rt%+fe7ePBJYKOO7`GymgB+zE?7<%jHl#zvd^c?$HU3yt?ub-280qA_A=(+)W$zLvzMdD;!HQ=Km2_ z85L)F~k}Pgs&2CW)Bh^Lb!qKnZ$)Ef3^zqmRD8uOJb7I+Dkx}Y7-Y} z4vH({GI9PC3qw?Z~faLjseC+*I&f0!iAO{~oJUa=>X4gr;`as?-3_cC90 z?FpiSKrxs?Qq^rZxaSplo}B#S!G8PL&EYBlLY>jZkwU=E0UG}d?;M_*kt1rkh~S}5 zv4%b`B5N*8$w%)911x7>elf2YC0 z6=Vfv_^4$APQ!Cwrr z0sH5Wo3-~&`+V+)pciKau=iO8e+`688P_!}#(7gn|D&M(2P3$c`x!s_+6~E;?gk0y zP&`gJo50{wu?1NedEJGv-!4teWx;s$FlAh(KGsW@qzva*Wx%`roj=%p%atlP&n}1& zi~&rpR@oL=uNykx>^|Yc6p$I%zoswE@7HA=_(H4w3q#we^$} z7UGeA9n!+!%^3~RhxUcQ#RcdrqDj4x45y+oFa~vBv~e8@%~EID6>{2yJP?B`ymYYV zw%&94)n<93Zx5)Vq9Pv+e=^~omtHq^0(}CXsC9x_ZJ8`R5S%SogC^YwX=3CV$N$R7 zmaKXVFloAGYB2l~&rsJ4b`&7$ev}G*)3t(!PW4JE=ZJxmc*8jyqAKp)s7h3g3nU!A zG*OU<$B|e4$&r?l8?O%*xVmAXWYb0K29~(#kX>@L90gM@t=h?=y7jHnYcQ`Z>7cl34Yw9KGhf;l_ z<2=dV5bL+6N0#B!L)p3XMcx`3)79~j)E(c!i3H#T)ocr#xO1J+z@3!FD3uU}St$q` zsm6sVEU@9Ie_dqd+2YiNS)wa(ogdx%Tq|~hDuhV-p&lB^!$A2DDt*ywQF*Mu zSMgr!GJCDpBGkJTd8pTN!PJ9xouV6#BF)Mw9MWM8YF=;(SsI0I>G;B|?^^T&l}cPz z>WW7L1vZzc&Z3$3A>}`pz({=B1MwKb$&2;_M(Ar15z1rZ@8j3G4JuV-tgF}TQa8K6eu=-qx_Eg75Oij`sSDjG;yhn0D!IyNVWt9&JLNpX!C_(l>?R1_*-XXYx@ZBO}?P-mpn^m)7RdMP$~fth^2 ze*=n@O!x9FoP@zWfsItf3+9`-dww;5;geM%k+;hEqc$zI%}KuJ!}27H@^J%J2K+FM z-DkLl|LP8e0xRsO3{y?l5@`0#u%A!ZV&BW3dbrD9<^CY>&{M;sJc1Jk4YAS}U-V6# zmt{UsG~L1dAqIZ1KC`v=RMzcz@u6|7nC_J*LzD0R|$c43`l)0u=!@mthGB z69F`nu@)+S%^F>g_d2%{u7AB|x>dcCDT*8T!cH z_1Aa4NJ(D#?8jn(HARkw^Uax|)GC5MwaTMa8pmO7veowZRYbGx^NI(*{P2|$xHSN- zCy;M8Uw!kvwJQ~cd6cWw=4py*vs--#-tLQ2U$%FD>o|^s_%C;BV{GuI=&CJGJ?zWF zfrsDUWpPjz{m_=(-CCO@w}DCSe&77~)pr|DgVp**ViEERwJI{OYF0^RLKPb(ndoSc zWRnH`zT`oNgnr%OLmr%lI~BAipfU@ZuI%n%+UlU-)opV;7WIzbd)Wi40Ji5xz@~yv z6};Ym3$B-{m$ia_{#&*UFO{FFUUu(6E*+2eg}m7f+ih9y%3X*;TCEi`vsQ7aEc5a$ zKdjYYv`U&(w|mdC1oK78iKZ8Ox! z9_V;o@o1>}>JJ>1@&@pq0{@DcKbEqeARM}XawmWd@ev6Jidg^+wD?M@_?0vYnp!4a zXq&@fy(@o+m0~I7-k^kD4H7^zXw}Pt&-VRNoX?b z_WJV@!8S~F`bBzG?3RmjD#T-8iakbu94?PSon*j*4U;70ci*8|^)hF~Guo0Awiex_kV2`N|^4%$mK`BDH;I;9X`n6a1{izn8H55yR(AwM$pIP~*1WR&><4ggr% z4K0K_nf`Pt>aJ=8%7L`yu4>C|4-5Aa0f?Q%8&2Yxc`avge#hW5X|-hu^n0QRrZIY7 zW_*MD8SVDNkrN({EBWP6i=#(>31m3#`DJiUG%s{edfGM+E0HG(762#W6kNYWHiEO@ z{CGB6g*r}F)@JaluN=`1dOZPOIHu2$63-7Tai%5?AsmI8A3nT=k0S*f9FVliAoT#Vk$Vu zCwM>}g)lT&{AJz2(xK{lp4xhT`1zuuKxSIq$cTf!!pJ$&GerS4s3^lEfA~Alj6xSp z$qrLZu_nmxqjLr@5`bf^ET}k-uh8#+*CX^&Iygt^)ga*>tkCGW<9&>> zjt{a)7I0w8T_QrkEXA~pR(VTYKl;=v@!0~eNHRy$4kUNsFq_8|oRILGi~S0W*e@JB z)(v&0a8pSDelA)OzG4(t%6 zk>$a2S(j~bp!^r!$DB8HSxU8&Jx<7D#}IT%z~r&&Iy^}h62GE-9*!kv&)tHubnM>4MfV+1LfpxQXev00(=aOqUE z#j&Kr3IYD~*SmFp4vF!FfCH7GF=?3R_J$&J0=ZmdI)HhEp&~Ohco5+6`QhP2d6UqL zQ$JI-E_74G$9G(uF@cU>Mf}`^7VPXc;vMuA4$hIzL(Mner;y&pVFcg^z1ERn)jG@* zsZ--H4HFQ3qJsy@>AR(@7EKM{Tye`)M4YD*pyE7}w3KasnJT$r>nb=(Obr+W9h_5jw>0rlY8r3cE$eBG1 z2tAEBr_@V-(&Yu}ETHc1$Le!|e3fG-BcDj<-TTcFnQ<1zV=Yq&WsvPY?}-9O){X~| zV(t#5Ja}=!Sj0)Aa*?7`g(~tT-b(>`UZCepz!LK$n1l2Zwm_Zaqm0@CLMX%{b_qy7 zv{)`evE|}>5TZ+wrC=zQ2!*@?RG-`+Is@l_JgHfKb*9LA5%nWv<{vxWxEXpGJjuS! z_Hh!+8`oOssd_+=1Di^7a^<78Nf<$uI+M#gG#3NTMD}A6P@HQpxugP@zu-zrLjW8N z0J#0UsU~Q=nJS4>S;_d{q*Y% zn26R3Axx)XmQEws=3(>mEr#jcB{T87-SQrP5?mijViQlQ)Yxdujau%Jz>-f%jh7~j z_L2ihKsIBCj8`!_ww#Xc(YU?^41AwTAgg*`wiRxDsk7osaHXYcP;wUV@TqN% zJgTUag8?L5k|k14F!DV?&EATGnYYs0@-iJwG$F4zx24t`90=X#nmg5PQ#V8B(1|#I z7t&U?!^P7)4k6{e>8MJ)wO%qBaEn;q63rlZ8*j0kvcPG&0{9Jo_yI+q#v?QlRNiZtgxuU%12JJ zM(Q>CLP`STG@0`7w_kt0o|51hokH{~pV%aXOvo`%V#ac|N%3bX+w=@_Kuth@JZW-P zNJC;zJ-#FXYa`QNIvn85$lO4E9vb5nfZm6A3v{UikHJouLFTa=kuZ2c_a`vbNu*r1AE=0?vVZ&2a(sf4K_%IQd@dNE3IkW2 zJ9b%jbaxXckE_46Bo1a|an*!yBC1lJ~29+V4Bl zkvDW0@=1fMsC(&lM;8eM|4B`J1A)Lu?irCoRVpq+t~bBuL$WR3g4z_%y1v>Dhoa?a zQ1Lyt+o_tgcq7{kbVCBrV-w0^Rd8&^GkwRC!lZRYETimXiu)coDc7-oHoL@sj6o&! z=gh9^nwR<#|D%G&B*nTMnQn6y+9VokVQteJ+9VUmH z)Bz{nNW+cVB#~>A;EGcD>pqDMGaKJXy@S5O!a34OXB^4EAc4QfqW$QUjn8OHI#2wa z6ON}2xL7qoF_zw9)@f*e$9v7e_4HoF7&!cO{@O}b*s2JV_{{p(`^76s6&h>i=T{t> z{Pne$(U%QYg`>Idhf`BiXLPB-kwD?-!=1}TwQFeNIOop~%y>;q87K@WH^u>Z(2|6$ z27V{#0qdfGA$c4#fs5s&3S&65RE8(a)oPM~*CX^|F*!qde#w-71rTugiYX61$cRI9fFo)*3au>tnM?;jPx$j?6 zC?|5g$t7vmpoO{{VV8va^?g{Q(pKHJ2gG z0TY)@`vWY0om%T}OWjsiAA@fW#d&al-Sy5G6PT~Ach<(i`=YN)CVe=# zC`sI zN1mvEo9ieI2G>;lJhaT!KcV==c!i>=6zDe1g4;taD<7_PP@K=8$}Dh=5byZ0EI*=04Jc?0k;> z-Ob-_w^rSmJXMKFMR%I{>84T}6lCD(^6+TlIEm`QIk`@tELDVa`wmnIT7nynlPvh) z+}bIkJXbohS4o_z%$OG(!*lOu>>JLpUUcQpAZp6;ef*)lW5PEr+b;=x`~~jKWN_|( zV(*w!>ufE$O{}ufDeEj_=%y4h9k43SCaKEvY^g=kxeY_qxeYZwJJb-$iDZc*a6?w7K|L^+U%O|f3m>^Y z@*}$oj+U$GDJl^g2av(_JULC^4WP*3Qr60qb>-w5AJ`|21YI-%`7Jn%^3}k9v&7IR z*}@tHH}MJ$!%ZZ{^L@q2)Tve(ndHoLGz5Vp34O1v?XFim;9RDOF2ZgX)l1F}dbS2TFno}-m)q;r*Ny}TaEf>GvE zM24nM@79!lV4^R(`aEF501qgCJbO{19U(tDuU}y6#?l1b^)(8BJ4rIn2RS};YOiEp z4pD0>kgpq=sW=9bqrqd-4)UtEL}9ys$bhf;iTy>9 ziWB`i?9axj7gJ+I-gm``cRGL-P;m4o*}8UEFU_;pWO^`=aGmMBW+}0d52lzdDyEPw za4>YvC;56{rlOyvBOBZoLviF`U+)3=P|A;kn?_a`Q9@btj&hpyZkL+*C2VZGl>+26 zUwUq4N8u69V_dhR@JL~Q;qhA1C~%O(Tt^QE45lAkQSlqNfDZZ#SP0nCp5K+wZlCqh zD7Gqo&1IQfMS6_BoKQq$2tSnw-?J>|qLXbguk-eVUj`1N_J6FSLL zp)>a1lm=naUmOyPbpyK)5zr*}a3KIV@eQ$q616UFEP4Ns}n}zQv49 zT6e$F|6~J+&lC90Lyg!NM-V1a>i`lO37$yhD2Joo4LoR@O`FIeAeij;1dfCY4_v#J zJr=<%Cln@OHOf?f8tSDNc!3SXmljPOhni%U;;Z6G_6nY*n*y2#Y2vj&@%U=SMA*;} zCQ2D^vAf_LBU%b=TyP0-1V#8ffddq*-9kRVaz46&f(jrSS(b3cxftrZ`Uuj{K_TQQ zRxQ*b%*p1zGhS)g(%_$ z&hSjG1z;3{Zro>?_&L<}=#dfb+%irmY5~{tHAnE&V-0O1kI#|kQsR3DUcY#{I7{FI z3dtfAbozt9E_|cwhb_G~ZL@37L(RYhY_Z#4PR=7Dq&$!`nCiJZK-SWJ5>UbJM8Lxr z=|F2Z=>8^u)`?Pxk5jVUm74`K#M*T97YK3BbVc%Ttdn>BvkOI@XMWa z0vb=Pitn zMWVE1i}R_4t(z!R;8RQM0CT0F%9TXXtg0hk8%OQBa3a-6nZmxfD67~m`Wn4~FfaJxQd=G-z(bUI>+GKcMafpEL;Upv=F2 z5$>iH#;U3X;gan1?ramkuPldQ9%H=h&B6nHt%Ug@1aHqYLS2~7F-8GHbi+owEg3O{ zHDgS$@Pfw>NIn%K;55EH?q@2;{2Vp0$>!PoE7-|k-9Fz2f+VZbXtc@laB8bfe>HP# zIyJIz<(4-aE?vWvwpr{677HtdX5BD<;c$BO522)g5v7s*aaaj8QHjn$aw*OW-Y^vVDi-TSc3B@ zsi3{EwKVR5pRpD#n$j)XxnnUeYR6wtBPJMDB{L~58*h9w*aLsVB~RN`{k!phWrCm= z(5~;$JTZ|>WlN*I2jx;gA#Om}GwxWc*pBuj&bAGw;kp5!uNkJyBTlipxziDx7Gi1vJsmXbxa`^woLR5(&@7q zjvaWL0YJdk9Rpg=vSmk4n&XB1QXHQe?PTcq>?0ox4~2BVCDKtGz*pxGmq3>9l(%yR z2)^ge4Pz5s*7w;SAtP1G%X#;?bOQKME;?f|_y@O@uLLWV1Q4-6NDO&@Xq4C)YDFp} zJ$FKh@3`gCQTdR}y09?z#TbqujZF1bV#hLrRvSE5<@i)wrtt2Yp9mwB`VO{QbXnrynJknz96B?<;_MDSzHcGj zxYdVx8@#{NSf@c?=;;%GpRxWEAMn}yN&REBGNFOg3>FLt>V*nOxOX%5tr}>x=vW1< zpaB>wKqBtIOnKXXv*8X0C$3{909czu8Tt@Di)}x)R6^uoAib=f?b76eBw^+sP5qfi zr{dE!;|P2jI7s9Sl=Dz}jX3hJvM{)oG!C&c;;(?}yg6 z5ZL`^t70d_Hv(Ip5lOJ3V=xD_?Qi<{0WBK+=8u1P#W($TzEv*5GbpaOpa4sctxD5X z8B38R_n(#WWcs#$fe%xWg8HF9PN7~4|1JU}wOsOq0n2Q~c={$GeHs)q#2%~v1C5Fs zIxyQdD{0n7fs>SP$S~e*K;^cP?_>V!5Pj%|k&)I5B6a#AwM6Pjy7%vJR>INhjEYhI z?E$HmUcP!g(hXnujgr&@+fB;5f8;6dS8d&PmOzS|puxjhr_Jk5=lDVP{)wIPDAk({ zjl!4znF9H)9h5%_ly>?&r~HstMu z-+y907R?^v0|ipe9afB@{|7E}i=UT){Q(pKHItEl69X|ZHJ1Uh0x5ruR#~s(G!%Zn zzoG~vT#4q!cDBwNgBX?vgrGbzJfx|6W0AyF?B3^m zZG8!5-0rm2LciPYvMhfW?`v-xX8qZkuH)^8ZKZ{&!*w)%yHi=Q&qY>k|2h16_v2y0 zkSq0tU{Ujb(8@FeX|^e~i8&aCN%Xx2ro-i^_Sy9Dcox_fhNHC=mlUFQ(TlO2B^Fe00sWaK-k6PYt` z236`6P^A(>-AAz-c#Zl>d`x9F5?iZ$^6wuV*^*9T1SUh_4b)_-9V6 zenjGh)h8P>80R;lXdc~5qhpdin=Z?wTDuHlc*O9$@P5h;R8oi`J}*QiMR_YlzuieO z4|XB^^>XR#%`Sgud}fnTCfi*BHG8<3JDE`1&Mz-(Bh1ObifjMLm8xzzz@5cbs50RJ zQiv=*;h3t21$SwOgUxCuHdHh1O|*tsNnu%a$a>u7SdA}Hp&6Zz693|Z>3y5%1(PizlW` zlWZ?x?41chNegr+g4S8Y4Gu#CN?%)V1nI19ZnkVVw{<{dUEK*6wk48IlpFR zIxxfIYAVtsFRPmpo0RnW4W~7$I!lUD z-}FCMf~rV#T1;2-*cuov29G?M+>E)J6b64t0#yQ(9c;UpJPN9Y=1bx0>g|iR(`hve zDG(<+nkKmM<=tvyr7D3hwb#bFzxt8d3Ijz=_BrPy?9*!UE)EK~F-DE{{CGzuf9U|> zsJj{(5!VrX8_73xn3(Yl%*@qUP{Az7zaaLin3`+7TP2i6K9$Bdzkh%DdDT>v6nYDC zG`W2ke*!sU2PKz*{Q(pKHj|Nm69Y3eHJ1Uh0x5r`T1$`PHWI$iukc}kRRd#2d{fD3 zC&}gk1PL-7Al!_%AG-)$dPH2C$qH$2Q+!^HJu=DXWBU;I<+70+3b7kqWQU1`o44&$ub&FU^w z#m#?*+aKS2dpl6lLR`5d&U~?^H7jnJ;9B9Dz?E@|ajC*`H*0M~_I_90ta-NI->juo z*}GG{@9P6z=8U(yI^=7)1=ypo%o!p!zGiIp5MT3GWn0DDha2ItzN`<`hHibV z`(1pi--UVIuJYW#uZ)+340mWH82l^es_lBZ_=sC++A!BIjqlK3S3e#1;jJKyNJ8gb zRW0=_P0mbiRz?A9LS4{xoV}h*PuSR!sNeAW>Y=Zj192mnV1kBs?HhW>VoEOY$xiX?)g_Re!6KAg{(-YfS67@`gJo#JTLKUPYWG9#p z4y#Yq!>O-2ymI4=K_z&1Q@0?K{qv1eSs;a0*_?WsTzjMa%d7j3`tV3^m4^n%wKV0} zHji!j1ZJx8VsHf#UD(@Ha-(~woRfch;NVa_R9#oL&ve;0^k0M3KcR;nVX*hU`c#o4 z(S+^k08bw9K@S7aZn>}f8{o@R0@Hpv0-wNs*VXs?uv*gw@`vD-euveep3#m>H23JW z2?s(^fze2rb=9$K%N|Wgs_fL)z(iej%)i7H1SSP<8VGwqcegw5b6mlz(I|i6;=Zjb z@HG95mpa?Pmi(r>hqk_leSlUwdPI(iuaLw8wU4{{0k^QD%XeiLM)d(S1`&nc-nKxw zd0LQq*PPlz7{5nDdW&O+!NBWt*vLemJ`_;Mf}Q)Y0rDV{Fc{+yT%hi8Hzn%KM@Tv6 z80JvGL?IsPKTouOyhLT-b5wsFUhm*hiFzj0h1I;Ot17Hled?>j#)mYC5}>;%lZ0YK zj1fezEn!Q_>2U{mF|l6o7_wfty{V#t;LQ!)i?0M%!TAr!@2))dRoi`ev$o2Po}4$`hw^*s!J2S2>7Qk-C%S?{<^;OF7pRnp3#TU z1(UGgbu7o(7g$~rUF3gN;Kne=II(^A&7AM|bG|29@!O3GFd5IyayP2b%!n&D6DD8S z%YtM|`rcYpPShrme@vpV4+!P7M{!;m9M*CQKrMI7xr_D_X0IpHQ}(kUx^xaeC*&M9 zyNdzAW#3~`?R>^;FbzD@?Ws1vKO)3IchE1~LFI}$d+m1O>SMDdyzObJq(Lrx4D8zyPH4uF(3gIja#@Y`VzAQoYWQ2gByF@2G- zO~y@a7Hoe_6%;cQ^dt<6L8nk8_GcLzW_^)V9_VEd(p`$kS_#91U6g?n|3-Y%5F!9C zp&MvC$1oo38D~&4VR*&FR{-I*RTm)R}a zH|3(lg4VLa4f?1))mO+kseA);1|!-xk64|jVwQhm09&r7)K)!|duJ)BS1Ey39V_e% z6y1Xc{r&Vokiy7oCVt$cJT9VS8vnu z2TAZ@m!p9zo=+n+UHjm~xv$``tfyGn#p&(i5cE5m7!uxNeK`0?kJEhrfdacJMr{Na zOL~8S1gLv4l)Gu5&H308!i%>0^HjIQLw+Wt7hoGof0nC(OBv;|pF_0_lqV9zX3VY( z48+(#{iC^{{A>NPx77GMf*jeRBV#wy7wR}Kb~hl=alH^CEk?Pu;FH{1Ybv!aW1`qwio^ola| z$PU#_FGED^;()|r-v;y(dT!J>ssrY$1LnaQErJLTa*11D!~pj9AxN z>E+;+w?!Oa?M0n959W|&i+wm8^>LZlheM*CV{EQ+i+ps|g8a*_WayyD%r~{YHCn=s zzP}d4J0`X03lro#^zaf8np@>hZ$1w~cRg@hwi}jACJ46BoKfnz)UQCUVw#z-Xe(oD zao-%U<~Wmyb7^Km`V!1T=!jUrhR%QHhTzhDmxMnYDxbmbKP2%_VVM?YUj2OIp{p+o zb`(kt)ie;Do>2!4p;rO8;Ruq$IYhgd`=(^lEjSIqClxaQ{<}eXl!LJELYB~OeLKK+ zXuX*Rw%Ur?PZ2YNv~Oc;MC8sZWEL|6upl!7pFM>dJ9_qitF}qofws&9BM5)xKl>ab zh#RS?aN1mD4?HeJ2C+V-Ok$3$jwR*Y7jb)r z$PI*3IXBc_tJ0rV76Ey~Ae<{<6wPO+okfUcI2wY-!eCv>nvZxSB~|4)q|=jDUS= z-LwWB)aFAw$n$e*+u08WMTNjHpMtN8ZXS1d;`dGgRz7v z-Z#&kATWZ1$$>E4DDe+GW?y!@B(CKgGTewTldj>I%LhGoRoPOjfmW9py0~AgrtR8s zyYqSzwrhtF7=2=q^A*#hdg`#h?sPovYwUHT99#-8#9S_2FX`jjy0L$9hT5)6=>@Wk z;5y-$i>@^@V++HlKrQ`wwGOFc9Z&E!baP+(vu+()Q}7>q@YFKYlFSeOrw3SY=^+mM zqm2ypL@|eV5Qj$?e!-Y>mX8|!Ds(#f_^YM^LtzJfp1P_d)Iog{ zZsroeC-ot1rkrs#=KL!PG#il*4!^$sbr-~Cq} z_$ajO@k@}7{wa7EGe~~X-OK@Mj50kB&0sj#!c$0=6?P{bAk?1LS_F@O_|*xn9)m30 zijmbZfC_VioE%yy>9RTGo%T0lbY+v4esH>fkfc)o^C*z!ue+w2d>TDhl9~;9$C-(E`@J za0(G-uP4(}rw|LG^HUYvDquJUQV?`?H-cDanBjcpweNS0??2`|7K;9SC3o?B1s+)S z^2pVKYJn|COD;DTk6dZ?dNMtEc)Jq6aXCg5b1( z`&5wIDPDn%`U9wEdJy_H0C2-h3V)W$45-k$y7!+O#pBWz!WMqnLDwJ0-mq_Rq;LSp zNsn^65d1(|R?X0VmK70;Z{kTCp4BYBxcYf=5{1Vg{zF0<$4{fio#EWGJYV{I_@o<n^IlHg~TM-lR9Cy?8)VKBPhmCiWqt#86MK~_Rk3BdS%jzD#cA&Yy zY)e^J7V)c8xcN}}CL4?Z@}%Skp<0hnlU;GP1|eI$(w|qlxP)zUGnm-v&{d>(cg}F3 z-ZRQxCF$`PkT6QxVNKxA>kAtc?S{`WSxg%L0}R9{mw~PY6az3fHkYyV2qq6XH8lz^ zOl59obZ8(lGB}q3ItM9#y;@suTe%T_*RSAX`$Ca(;ROg5NV@By#V!!ULD4qNgW?FW zu#RL%@*@5B{f5#>ZRyySbrbd zkP|f_7pEoL6LvYOEBGgj*Mlo1j3kPy)aI(LrZ!o7O-&LPseOrmw<0T>lw6bweZl@q zF*|#b+mv`Q+fsrlEEGo=gm)_2i&Y&3w#h0%N~Wb2M=`g_k|V;$7(;L*7>7AX6Q(5$ zPk1VXF-h8Je3x<^VKlzXriAfjsnI5gjw-dO)NwG0VU~#3@kk(HR!9Y=vTZU1&g~I~ znPFmtp;%*p0(|6ul*OJ!$0an099M4RG7iJ+9Ah(pnpB)H79F`du|trA#S8W?NpLER zqrvV)Gu!-ll%maw_2GFn3FC`dJHq%(2q#M-SXWLE@SWgzlTsT_ zkdi`yh)XH8$uO)m2`}XkY-zB4j%;rTBob2(lV@(H02^ho^NWIK=1$S}kh7h$>CYuM z9o3b9BZ~r;w-Ey8EHSt73>292McAxxX!pv6wU2hbE?pu0R)9@HoQ=?j08?! zLu}s>B>V?|DZ3imIuzI-ZgV6^<~0!(g=5=paJ*HUJ0!zUbB7dN&CMO)-W3QNy?Qko z|Li`%$ruoR=f?m1*T10&ewMtQ>HO~I=Huw6pB^0uka;aT11}cywR`o-jW29ZoADR6 z$WFupbt~f#^Hv1VOOEXWCK|t8F0L-8Yxlv8-~N1m;l}T$-`4KCj`#n)o#Knhm+5Hy z7wDVL*DC{gdw(>3H(f36mRHl&hD6%4-=?2ulQ)ZR?nA(X1i<7CCyczg< zK3`zA4;${X^)&9<2)T4mHkQ~~QG0hZzP$UiZl8ah&3_+_-z=7&r^}7v@X?lcg^e+c zhtr9FReXWxs*y@ipCw|*>t?}AH~#D5{ldZce|mpC{ZEhpo7kT>ce9)IZ2o7n)zK@k z6D-juLo=x_6_BXpwVrDM60$D_2~`hYHWS2@JXo`L1#c(o^>jHm^}kKlSJ$)om*EBw z@}PMO4qoAo0IUZY9HYM>q=W|u$so>s80`#y(v-alKR=MD_yEQ|0B`p|b`N{^K!y(> zAF8`ZJRW>?AABVr2)-Kkzy~(nLQOj%ZG{?!f{&EEDMiHd#Ufwv31LBt_`A1dGF-EtIC}kr6xz!t2HD31P_Kdn5x~)mJ!?;SdR(FG+eA@n*8RHs$}AEN7E{ zPdC%mU=%XY*AkgrVgF*ej7Nxmx%Lfe${`qhIEb_Q2xz=0l-&69VhaV_1HCReBuy)%Oztz;URT;2VJz}f(&-joWWiWeU={?)d1GZfTZu{B8 zK6dCmdtlwyTseWwTpn)TLTJ7 zY2M^vM3#}t)7!teo1a3zRTvghNUSgBE90*n3G-RhOMtG{szDk`+j5YQhH~yt1mWZJ zZFJkNWE-I^}?u=(~xyE@`(C;m_2GxLeU^h&kv*uC(GqX&N`Z! zDDP7f>G9M=9W_x$P1I2nb&N!%6XZnHBmg5kl#tLEI#iMT)BSUhia=J&zF2s$(v=Q>?{03IM_0BK@r`bf4;t%O;$rIM4^a(irBjEYx@(deG4X8-1y^g9w`{WKEjw^W zC9Itg2lIs}N<=UQ4%OO!(u_o+77OWMj{0O@<1{ghku^!K&YDa$bdXVB9&zCBbOn=5 zzE0QErrRUk<&*0t7H>@+g2gk6WkE_ucBh9TK0Q+`PoFB4?au0X zVC@VNE7_4xJUcL=mZwB7MBu~jQ%{5HXw-@BqfYpE)N$92kxt-$u9A>W;4W@+2T|#s zNQYJF!oJkOZ5>1xctwlmih|gnq6zSMqyY)*e4bgpJ82G!kE`|a?&<^)M-4EFNWXy=s@x(Gt6Ka*JN6FEcf|K1GBlbo5ff@w_O{ugL3M37HqRPzu z>BQyj^lCOaDLYAjFm@uxR_w;IZ6(^ZYyT4dzWB5~<@IuLbAk>cnAk4hIU*u#I*7>U z&Y_wR5pmowJc5xj_!&rheB^Bt2B{rxmXgS^ycn0*6b6-vo>;LX0H|?QM?gY zH5Nh8jzb!`_S1*wqtnhH;SBxd_oUpx1pT-9AB*2-^DoV3kYWx*PDa6JKlHNt zb9+@7@k}4PD*TZ>8c8i)lK{;YJTyNVvtQDq(L?gPok12(l+*FohbOqo(9#2;^fCxN z*kT@Xm2vccHd47Vzc#@j)_H)MN?Cb5#bVD0ozfR_#hhrv@F}*bvs?YG@#KnUU&!XOv3`Npmsipl0 zu}dvE<+DcrZNACY+Cicn@+RM;n2ub={{RtYlBEillY#;h0XLU1m<1F8IhO%I1S)^6 zT1$`IxDmelSIi;6Y5+GQK14}AZT!ft0|z!X6Xf7Eu$pf6v|zQ=(PPJ6Z{`Ln;8E1O&;H*QnFlSH{0X0*!H#$H`Ms)hiBZ4+rYrhV&u!a zXMg@{lHBl^<#En$?)J;6?shjHqgQ{2;?$e=b|a;X)Qj7VQc3iWgQ+U&dO4I;U)J>S zsyQBude_}lQ{i2(0nQT^IuJznQk7R=KC&+C6V4NaIt{8h;+xoleskcDZ+6v0ze8 zDj{gp#nFVcrxa6J<^j-(;dUk!U_@wtYx`!XaVtXQb}K^U(YB~9YO#NP4?iht2_ITh zjAN~isgDi=+oP5RfVS+YuWsrM>ISx{;v5cfd~rXT{c^PV_fR_E(cysnXacl_*h636 z1Pv7sF6F2MGOVB_C?>T!N252@hQ|pLc?yk;aqTpA4_f$a#mO{N@GfCGNtW-x@g&hl zno$eygkly?9wKNY2}^%PI*#}h5`2>?rg`cX)->{sMY_t;Xx}zRY-LdqnqMmh7#bJY z!;yy^S;}}eS?cqkF|$-pJ9#{mRZz(yV_NDbCz>!j)O}f9GZCm*N0acrE0ipoci5TA zZ2KSpayBnqfvp0}niIe@kJqeGB`|e*ety2{ICx3l2H{XT1oD3Xh(4XF(z*_mfA;0x zDj7_nl<0{9(r}S52_|=O z(=p5RbUH^g*rDrbiOGTB!voldr2@EU4{?pU8`lHY4|Z?6`i8nV97w7)Ie+YM{>JW@ zOKpL=^a_)w2Qq(Q0|JCH^3B*Y)RpPF&_45wB~NS<0F$T7qs1Amr^H33yl1 zuif74OD7Cp@j4n|CVa26-L1GBctQSV^X@+%Hy_3a^Xb#4vHkt03oePvl&NHb+pcWE zUYho6&^d94;K^n0B*1y3dFH#PSC+y65^@)v1;q31(6)cZd3XEf5!+4s*`gIk%)-!@ zO%R~DVo9vmHsD7{!O}TGVn~vF#nwUj;@Vj?%Y|G51Er-93cKir(dx-eA*3rIeKRG> zB2#2tnpl^8v|I&#S7;w{ve{Mq`2O#2g3eR3B%6+{8=3dGSX&nNm0OQcor3vVVxr*v z+l2_Wu{M7}$QQ?)<+I0p_4>nK?tTn9k_EukB?nhCqrjs~pkHOqjr@~if$#X{q!q6Kffqq*-4MX9)8&Jt3K8vXPYMBVBsj12>4XeufbB9%kEWS8|nl@d- zMr*pJB1G?;BTqr#Ge5p$!v3~%Kt*y#aAX@d-4aG2pzrTcSI0arh`76d&c=G~~ z-_dlFPdM{f3D`mY?HMYuseKAy6u#u3PTMh@kwz6ScEAg1~oXvj( zY4dIc+-fetOyJg(1mo{a80_jHkiw`Dq&i#C6Hg(H)9PB!lFk7OK~E4*a&W)O*R*E| z))f?cB)*|+GhI^V71SpTTW-t}bjGoNz# zsc+(#F2-o92@h;do}NYP zt=ZA6aDd3%h(aM|u!v|g(5A**1KjCz8g^e;O7?k~k|_$Dk^-lnzd8CV7h!+5p4M!_ z#XBw_Eau;i8kqoE^jWFLqDJ#I7X<2&GnL+$6_Z<_d3HhExgb8dAbPUIBIxcEa2NSx zFkdWY!_6qZZFp&*T@8qzRzFPY2uqQT21GylgG?1Z?hys`^SV zcLw~{kt)}U3+KnE={_H}_zi!4yN5}Jiry|6J3P)+`sd*z0n#XwC*5GKrXcxPR&J?f zy+aDQsCV#Dqho2q3A-OENB?XogiWQ>1&H2b7}v;=y51Z+dgu=YCP(i0DcrO@y({hI zMZS6g!7TxqSjFc16@sI3agIBj9_+hwAee+PB#Zgdn|f!D2)c{DZ_9uCp*NiaKo&Ed zDh~if*Ev^IQVtL#$Ky4N?dm-9pN|(@Pf&j=H3PwT&aWn6KGg$`84d(UhG)e-opC%T zZfg_Wgin)i8>?T(BPll`8XZ~`68A+`@~8LjUVr%4>)=Kpe9tv)pG4yH?ve%DORGVF zCaakQb=d?E>vNFz0MmcdSfiXyV;M-b&E=&|?Ue(L9)l0^xupw%6dQypj%d|}KCxBv zkRH+u*onBRfFV=wKye++kt~bTjzgyQb_ibu&suAiVu4z3RrI|9so9?wPQrnCVNK zvdf&;Fp;b)CK7R0p>4*>zGIeNrFKk57Etqfjg)7+<{ZJ&_nqESGuVPyrHgTq%opR( zp6)@QUAo`jtjDu=A=ta8-+ugjDbM1o8Pb(|L&Zy!$9jJ^p{HA3df)ViO~{5#`&f1+ zeCv_mKVs08$9U;p_hs$={a|tLasGP!Y9ql~o%mm`TXW7*TWnZp{3p{5Hp56p!^A=q zFcoT*l)tnXWyac-vs5f8x##(6E?7ASKE=f~7q#Nz{i=pos{S7rwcbS6U)0KE^`bUr zDow7qs0Dva%teI7O|8q3(7~OBv=w>=&Dn9RT=Aue^h=&Ov0%Xxgl^F_UZe(+Ga%Ev{3T2mmz5)jVF*uju9|IHuH8Ph0ItM9# zomok5GVszFOY?y`tPD@F#b9vdgp<9fBx-*^n5We#xu^J9zXo?uh#Bl zBJw1cyT{{vsmH_aOZ4-pxC~|Y5NoY}BlD++*ccoA>r~b?lYY8Z^-wkZ@N;`U7tNu6 zh?UAR6F#= zU5grrHX2$cN%0V;xr!c7B@?=GxORSCKNQ2Y=W*qKe=R#d_1e^B-=m0dvV4AjGL<`_ zi~&jLRE_6Zo<0#a&jL$Wy=ey?1W91#F4l zwAN4KpT26I>u~{c-jDE<%joq~?Qz1%&-UBFdSpxxf^FfI1jd40waX(|0tYTCzm@xk zSVq?em{#KG03%r5Bsy^AQH6pKJ92yjj%wgH!S`^?K3Rq>{FDLpf`sya+uEe|xMl=! z6k$~wtPl);YY3%q7`QM-q>Mfvy*q;c7;Tp-KvkFQbp;O$cyk~u42Q2;pHteV{)I>7 z`7$8KFU+u*^U=HY$uHc2qDW%{s<&&HI!X_$mH+*f*pR=yHx|%vH?c5#!=VuG>!&a* z*5blh7`ib76z6hn_obSDpS}}kG859t!0DZJZAk;?mE*>%Ygv)0?DvH1ddwxZa z{d`=@i&BczsC6M0YuZFO>lVo|NuoZ))8$fEC5EbzjsgbXcIBlm_9gLRq_T_PxaWF> zOs~~&YOe#+_n2cL1@NnaiB0*+&zFvpMFdOsf*n6q;>PPiPAG|ghCFjE+LVx^(c;xe zlc|7m5qR3mP_+%ONn*oqf1TvbBnJV}y;v|DC5LgrKZl|}dBQNAkp^Eut}H5_tEOS; zfz~bs*~P{QLy34ME!I9zY^Tp+c$AhwB!^UfU6lmdi0Og7Kfb;>^1o*b&O$20DS$ zfn*EaJg)Dqw9sy>kMVxP1rqzl13=(?aqY`hgpuY#OL96CF=~3e|y7Dp1KY`*n{@MQ-Ivo?bdf0zNb*uEHN;+;xhJ8 zo3W6HEKh$&EU*t|Qt0eWGFnf%a`ON0CtW?u&P79DR9ii{3qDNlf=@>(9h~vud1_<+OT^=AK89*1Gn{WoqLpa(OeTkwcDHSFp z`Hn(HehECswJZG+KQf?J=4b{s-uz;F>6ea!IJ=1w%c7A-Wj?Bb<3WWb8 z($pmrC;O^U5cnb37tfcw=tsZj_3La~vdz0Q993f zE&^nK&D0nsWKX34!x(d;9xjkN_Z=F5dDuY1lAcPIGD)<*cAW>m{3a-0=WjBv!^|6- zRIy5U8HV7w$KtReI$+B~5+mfuJ^MH<+;wf|!!EgLHa)Zt-SIZu?%F?lgpa3qt@?6- z-QQmVQw1(_H(ZA}+h|>>FS@gJZB~=W94W7VqubA@*q z{oPS;X}e*oZKZdo<9hjS!-;oJGW%^E?3W)_mx2mz$J?-%qQ0&#h2o^|HJeEy zQkgCT{U1g5Uo^GllvenwoAt8b^6UK(kJ#Dv1xF*}*Y0*oe2SYER|{GK&c9 zl!QQu4X;aS8uep%XhMrGl#?;1BmWqhndMT4j2loV29syfEHZX{+yK+iLf*C-I&~bj z@H+$6I?HA|-ed(yH$d;`5rZThE$VmZ$|GGUr+gi!)2X-t=?Dmd>MK?eXBSm}Bn@|7 zFa@{lL%#t&n5o+vIo?I9@iKIbF9opELgwu%#B#mh&Ud4MliEV7HHsQH8+x5V$WgDb z)442~ets#d{H+)yueNy(XFQV!(>2(4yjMCYlzm_AkdPbEwrXHQlu{Y;F{BmD0(!DRPfS6uinlL>QE7J1FOF?px47*q zHI9d{`E-yU*4$Pn&;*YKh|Dq-p{45@Va=#${2Ji&c$qjI*3ZToZ$)a-rHrsU zaYMq2sSZpW{ZHn8nPqWNSnK>jNMAB!cRA1QH~l4-Db3%>a8U5ieDicl_2U~9HE2II zv_4h1B;xe=Cfj7Wa1$8WuBLJceA6kt@e^J+FHTB1lMca=gtQfZsn~cqbg}lPvh~x~ z*HA3)1c}F@?#p$IIKFxdxBvz&(biwWb!h0BP-GoxBf;g%D5SGx+}jt=B;rs4*EZg01zmYP}Wn$$0uMhux^TR`=z({!` zsW|hJRy(Iv=sdM|*6CCz&E!5+WA{7`xb6ALv`THEU~!sQ4@h#BoQ7)0t;c(rCttWd zgablz+t;`vJ&YayK9~JaVN)c}aM(QQhI)UjyS8jXr%1}aJi;820Q-j2Q&h|;l2)ae zE&@qN_}JI&(<=3FRO7c zOAbKY776ncJD&FlhjEF2sjs$3e)rVEY3e_)UG4sIzcIol^`2iWdFmE<7uMvi+An{- z@0zB=EkEHuWH$Cb;=`A)2A(AIhY;a}P1n8!ZW_tQP};>~V4DP}i=_I@5@2FSAeETD z<5?syjpxM;Ki>1{@V(NnQ}$1%W7Xow==b|{sF_JTW5D$e-3gX%cKq@qZ^;is1?o_a zaI}?k?ECHr$5cg9kNg{t4sFN*JC+jK-)#G zu;#H+XYjJi7i!Hw)lw$qz`s$cp}kaUWTX(u4`mP|P8n;2BeqBq_)80^q;7wsa&*73 zmcCs(wKOJm5w0(p8V#lLSiUD}r>__lR6-?mB-~gn^Gr`hoq`=Xw}DDWtc7Bg8|gfn=L6d04l*>N8BV zVE^{~%PfQjv7cHI|9Rqj$YxkG1G%-ybKlV;NOE9H$dg!i!Ygt86-g{rsjz82@%Z0A zJ-q+d-_{tWbgFEem#(el(n1ukuLQO#OEa}Z6)B;1z0;zygDa;zB3?JyfkEG zL(Z_JclONEuUR#~t(vs+Wq`}VodX;<84u;?w_PfhTj+}O&KVo8>B>epNA_fKY!LLj z4?kX288xZQ#)88pr=ouf5ks3ITVM@F7;DhqS3@n~nk*QKQ8hbQ7e&VNkJk)+$Mg=qmiUf5gBMN_@bMAGB@@?t;84m9G zmt&)i0CV9oyVQWT`ov*3aX=}}W)3=@DfZ;>4xc&L)joVxGd{xuI@UA-%cfbbc>Mr8 z9pJ5#iXsNX1{FIPd;>q!LzuPgPOR%yf6bR>HdRjC!e0YHa#T9-1Eb#tSQG%s$^{$-Le6HpKUV_%VPhgg-Y z)n^_GGK^Dx$%KYU{lM`p4Ym;fN4p2l7p4skDs!ZEjurHqYiWo`rI0sx?mUyPo@_N- z)C(teHCl`y`X*hsgPBOP%y=!mDdRIP3Zw1%BiWLTk^+AraxXZNBKs#Z&vD5qom-@I zGMixvqY#K1A5SAsrzi$ykVEXe_rZa=REE&y71Gl-7te5der{?`M-@i7E3z^+)hGIZ8)s0@8$OgK9pAb-G#2WAHbqKWr=9`Z3;K|t%t6+!PJ zq2O^q=4uiThsyHXl6VIPHwz5Gx@E}Z^VAe_H4R?bSBW&w-oU;^B_pta|cVlsSLr$*wM++75EbEx&MtXt{i<20oz$ z_~vH^L_jdUdLJGU0HEU&xgRB_*pT$N_QTQh;0!tsLa-hNK1iIwZG>WsS!amMJOQvq z@LD;0t#lDyZOta978HM2 z=S>DNh?>Fa)(i-I<~1!SQkA>gw7}&{i~`k@-6d{iENDCq7^0`v&zkBK)}=};-Tr?( zj=MmSPWE7wd`NI5Q;`b~{sLFrOt`$_JOi8~D+mmUZKOii zOFx{SqlKr=S$xDj$X5I%La;%n2i8i2Rt#U4=XZ;2^Cc0=)J`t*Vy}fPC3rJmmXgXP zq>?m?%pW$U41*rmqXQTMbC-#;%uQmSu8t;oRVD|uwDWOUGll1X8}BNa<_UO_fA zO>tvjJDrHVj5|ZNuivYv3fS_V(9Kl=AJEcXh$_`n8WQ++p@=yo4GU|DYp&F3-%cexohh*K z$BGJWKJe`Qo4y(*ll_THU>rd*gZ&&TD@}7Tw(~d2gnkfCex5)KJ`dT}xEdu75cFQj zo?R;QR}rW{1+<*y*i#bkqwk@MdB7KrnAFp)MEZ|Y zPLHu7@%t&%u&1OBjt^OaxVYq4ts-KQ>vZPt60MmS2~U=j9_;qfg{JEce=P^?iCijB zJ@H%Pq3=#l2c9y9m3QFKw`14WKFwREOiewEe5XKp+D|LWR<#kF{8W0z z(@B-QYvVO?0WPKbSa*M?q4~1$DwqcuP{g5aHd8oH(ZKzX7H!LZM+vW!GI^M8*w*0b z3J4@3K7%1Sw}2K5hNVdv}#%Zg}S19}eq6 zP-!-~_f5ZA2t!9_W~nCAUSR$I#O13Zd|pt9^Ly2Xd&z0RF97z5GI9*b!r-N*g^v$l zusKJh1vB}M5(A&`!jWB?yR#2C=;}>|tl^?yry&W7cKIq^^3+Y&v5PAvTD)uqzsZ$^LrofQEF;1fWUCsuI7rbzIS zsDt647az&MV-+HgHTFnQfvLXrg5OovOrJRQedV2dM~(}(3AE3ug@`K<%=>+~>B&-; zEiXP6_kSw{;{C+y1rp5U#A;Z81qR`rDm0j}voDdf%lNix_0rkQiyBuXEasZ?7QexA z!91@Qe6WAedc%3Lg&RQP7j;%&6O>JB`nDK~q?-vUYyGY%eRJ++F*%!o_PYf%9h}=N`-8 z6y>>a-w&<$T@yacfR1+#K=f1G(F7A$~%dhuT^M`Cy zTy(zrjcfWfx|VOuFFc2jNM2;`S==%+8OF>_hO!vJFe_LBSPEwrcf@(Tkqsa?O9_Y@ zW*(I)|H&W~N&DK@;rRlhxTY^k11^f<>#(!3j!g?IUhz<3`AyXIc;!l&3UWF~8k_!p zC8d8X)L-vcO6lUqU9;cQ(pTqpKek7jeBB)m^>H)YuY|Bx6k6VYeE8>^Zypi`T8LMo zijXhh%9Um2&N#)mRD^Ex>w144+F$O4D;fsa8d3b`xc?3DtBUT}(BN}R_*cav;A)Go zT(3twYQs@pe7B{IL)Qn8aaSKNE^7z+9nOEJ)4pvsZ;@!g)#SKJ7?-62+B}}CF#yd8 z(u`{nVRm)6c-KDdKm>5$ZY2f6n7b91@JoQFzU}&UM4Ew6#U)|6fQ2#4$SNUmT10{~ zr4yoW;X)}2kSg7b{BlJ%?r;k0$QN7>IQqrcG$%}s=KgaOGICyIw%c({LW z#&dt9hljBq&jYQ4R6N6k(X0ZRiD8^B`Mv2oQrYuy-wdA5s;I;3)r@5dFih+?)`w;Z zM^Q0bCdrXT$l}c*!92NJB8v_U;^F{ z;c~oY$-035+$H|6-Y@ErViiw%6j)3~r4%bGJJ%89yAs~4?|Bg{d!@7_T9kjtNku?V zdjRy}9GeY6kfXs}uM4=e?uhyty{3QQw*xK&%i6bVg4?&pPXmx|W$DRBP%t}QEOWpJ z@RTNT;QK|HMyT9-L|s#^B%0xOa%C&cO&}Q7GlFpz^}$mM3x_(|JWS?v;-w38!ZOea zM0rvj2>juG#fwBH&@&TCw03_{*<|gaavpJ9`@O;AJsj_7Bic8P>u|8?d$d9vwqdI| zuE9i!m>$W&#m~ET-w@oUf%QXs^h$~go+StrJ;EiXUh!p67PQ~F;=|6Q=b2+rGsoc2 zG3aLFN{m;Xz>KQCY9Ae<$g{}_;Cj4eAfZkesz+!6k(?myk5T@+2dMuzW}f`C>` zRPv=DAR)w04#r1sxHs|BN%UqK%-IJo+zZk@Hv!fw4g7-A3;_fm3%kj@{JM`VFd%yh z&_qIgd}_$^uOK;+rJH}N=3}%{!9jT*hvvWMhTImd)x*#}9S=cS(FK(*xFGS23*yEy zXA=FZ?V=Mlti1HW{!wzbJa;`xsb{6adBx0>FFhj`V-i%~Y@0s3HFm-OOOUUqW^Si`dd@GO%2YB`9zK)CDUmwR#HZCbc($hCN-(3`3k=oFPAUIb zfASQBcTNz2nhgX$EO?BN3AtmpY;cxAhV}|&lam|lpU%;hWYm$}mFNxB%q4qAp7auWJ;w-r8 z{KhOr3OZ3q&%&8XP(08AwZYfgI@bqHp5J=UuXBeFlkos)pGz-cExXdMTkgJy&x$_)eXNC z6~3^pfntB;ipWSJSMJxQdLAa5b~x>WjUvl7wA_ZfYWmrB{h=Od3kuaS*e(PYQR$g( zP5~I`o5TQPYT%iMuH`~QuHMJ#%A!1|kZ>Hh^$8|Vyop!@wUMzB9nX>A- zSd?%s^B_2-9uW?<^gDU43*sR^FWoDmmQnncXB94?LCGN)LQV6$y?|JT{++mz7oytJ zQAmGx)*00j>IgMYkr2(d^Wx=J+2&C2T9=I0%dSc%iZ=hjD0NuEr~Xhj~8 zdYqR@sTmVshpCAfNxjipkp{ex3PqHh6{5FFDAK^2rILcYAd90*&qCN131YcJ;~>te zi>JRv|A@((qYTzg8LXQ`>NhC!18o?)6Rm$h;( z(6ZD_aB)fDT;L_sWg;1E4h-mO!@#14&} zmmpPa_hf7U;E8%ajdvv2=GS(lrPP!Z)D4?~?du_ct*Lh&5^YHA{|&bct2y z1_bz)x;zO_PcgX^CzvZQs)@)3$ewKBRhbuI<~4**y%^sBjta?b*8O!M|FUt@MMh%- za(cn#^uSgK>D#WKw{)@?Cn^(Y#8H2skx{<5%y6gyjFYcmxMg}uPpL6wG6a1a>fHNo zS!hDli|;wcZ4%tyzxnE?Zx^4#Vk|`*Bne%4sU|XsWjLDarojyM!W2XHQ-<6UYCx1y z?8O~$;1O>E&@K#8e1>s5#LWqiaKKR#8%`#!;4I}t7l%nsI0|xFN?$Ft$?lwcM)1FAab6p_Gy0L-pR5s#TVo;$*TSoQ(m5Y^WX^IvZTS zFSe^G+2fXj_S(zNh_oQOb>E&w8i)6&g>Pr_fmsOCR@_PtxPhX5N`DsHcNMcP1&g0c zT`pY&X~x8xp*#2M0|WPbL9kNgl3GoAGrO zU%%1fRzk&Sro)XGez?04ox$hZm!q?(=8*^Qo_~f>(ecCkQ(V@0(SmFxZoO zz$$Gd5bSlfKbKss>)4$~Ku5ceaB`~L6`z~JyJKplnk=xuWY#un!Xg<$OaKMqO6+!p8#U+ zGAj`Lax5E?4k#7A(#n4^gzIhiJ$A=csLPOw?ahyT>Qx@H5_upc8#9)b=Avwk znI4t_h6)41#mg1Q@9`^@-^+?E0;7`0g!;l{ZWd?Vc^ukJGrM@!K&IlxP?C*e1&`A4&&&}Lq*Drrx12F23y4>YLODK3y z*m)*^AG4*xW{f`()@I1%g^Y-p1DQkRWo?vfIH!Eb!j5|g660%Z=_%#`cjKza5JbhTJz=bt}c zr3KoS#e1KeCRqdR1{iVbqiPP#^i?1ElG1DB5ydV1m#zl?0bBjQ(3gSz0Tco`HJ8DM z2NaiZWC1FFtyx)*uTQg*XDzAOA{_q3tGFMoT-16>Y; z`Hb?z{ktE3(t5)SRuvWB+&|7)-S0P_vb*Q{WpLepHkVRn>Mz?|DV_cL><$N7`fzRz zLvy0ZU3)y%r+vT8g(yprX|?@)|Mzzv??(x=5N{L}DR0QiRmsf8SjD(hB<^V|Y<524 z{|_LA&0N=`4DhL$f2tId!oo@Zt3Q1oXqN0XlXj%px5)Gh-qi4HXp>w8E4jJBl{2MP zq{#z+Ni`>t%*ZlQoKgoFR*c8|kUB-Pa=IQTnd{Espvcar-VH2uvJs41xjuSnAgro% zr0|M9_X8aeG){-qw03Gw`N=)iL-YGKZt~PK(N_o8`}f-9q5wtNYLj!xxTfQV=Nk2| zRn{WCmYMtaxjxWR`bjKjR=nj&#yhcXt_z)i{rs3x5U-di)hz|_DpE8(3HOKVT9TL~ zSJ_kNYH}=;9WR!Up5xe--y;5d$s>ZR`LqZ@*AfU*_XI#@0# zn-eFp7lm(#53EGC!v_OVpWGg_q>R0yrAjkZ@Eckxty*Yleo%jYc{wz0kC#z0YX;hX zk90K{NzSwLmV*Vt!0l;$Xz6z{M3`_dYL(qThlS1!=k7$~eyE3YPy#PBSifE>!5;~s zEj*x9;62euFTBSvQQq<%Qajlb z{xdXe@Q#l)`6axd04^^fpw@%809f)8N?FieiFJX}w}_%ZDr+ymZa6?i$zAbnp6I z*96)2v=(LuO3K8iIjzx#v|z4(kSVoBNz@I*5vlVTc>;B;nfm+v>UL;mBpjGLN%ZMM z-9OXX-OLgxk#XEIJbFxZB9=yCX?^r*hSgUBm6JjoyGfTp8^)4@1M^u2#)|(K&ij(laN&x z%uHbMQ#vWlF7w!S$DpB*HqJdIf8uZkC6(I84Ak9)&U_Z0h!y($an$<^GQ!pa1*E_# zCBLwMW%U@7KVL(;<%Hk7wxs4WZJ7)If`fIL9cv6_uQVCMA5K7M+FHqO0& zJRDNQ(iW6<2%%`)Tf|{BUjYTtq3MS?FD#t!ckgz90X*Y*?Bp?%?+G2)e_$CEpgP1c zI|4uMv~!Gd2Z0Z>aBc5`Ouj_(?7~iXs_F_b9}l*R=kEU+K$LSSv6nI0 zXA716W0ju3BH&4OK`BAgsB*g7+!Cd?L^72xbF=SUbl+e|zZG1K<%X0a6go~GKfgvY zxD`u~^IZzEEF9+=T2PjWe+k#zZ>`KA?T3pc;j;vLwzp9TKz3cNv7`qFY4FCmWu+>Y z_d-DNEmt!uAf(j@gglZ-3CaQVj)CwOkCM>+OmrX^L;x42ZMv)|S*333Tfk6OvuaKW z0e;bhBhll1a>2>u@um#cC5-VA%!`4f(U8F5(CM1JTgeW2L#4it8pTpmH z&@eOp_YtIzIy$^A_GVD?5{*U_OTDF0qld%QYlt`KE8OE}{|IF~-+JWH5x6avitsB< zz+L}JH~Tab6VmOYc=?)&fCTPHTvP0)}054*-WL0Z&v(X3O$c_aIQ`GxAjTV8wLVJwR!E_W%c> zdw_p%xm#a@3Yk1S5d>o)R;D>N5u}Mt1Z=P;ng}JNe<`#?TYzzyTTO&OozKWqO@tNG z5g-PE!pjv)dxZjq-nxkPiYt#{}fg*rI#j#_bugg+Ty;%K4G?BkF)aa0cs4ip+YUOLPa-= zm3gqMe|}Lx!GQYjAt;|#)&E$K%6UZ_a4W>9im$p9*s3(}G(H9h9yo~tA_;yQq6y4b z`WK<+55MI6ICvz|z=LCnPP&K1g};01vEC$Sff#G-$`X7a5LJ0C5C|}zvXYxhK*e>d zix`RXi8|#UOO~r1VikLcFo-?G%4Bz_s}`ScRk|aRth$D>P{HAG^U~opS3Zlp={k}4 z>(^PaoOwI-IxSRg>i`w%ry>K{&xe7=z84&wU992*&Z&$W38*Ne-t%=P(L%%+GH`T` z{T5Wte*tnP6tLylxs)z3q_~W}g*`-pl zTxGlR_%3my-Sdtb|M}ND?$^bzFrKaa@&4Ukf6{u#6P71A-`zjWN!{;v57CE1aT;uQ z7k^7BBlW{wtdx#E9c*3G(2wV;9;${qAKK%wX!iYGEJT`$Nb9@L_dmb;=l#fm7UD)$ zape_Wg)l5j_|9aCajA&m;b4K8G>d*sxa#_WI=~e*hC|i)X3;&LkG8oJFxul#9u+-J zwI{ej7TFH>@d!qF#O`7ZQ};wakAB0u0e?$o!IDgwOeI{wF%uVl(SmQznbIn(d4Iv- zDqYE0mZc-vc9X20$ik9cEONoP$#*fAjBA>jZa1_YD$58EhNVW?Hhs0Xo!w(!Mvqlf zbgwkGw(;cvB6KZ~JQ0x-wc*fN>o`d~3!HdZ2%izJTr-my_sw!zCP3=OB+7oJ{7?t8BG9dde_^*w}3#E7=bgjYmzIE=a<{6vH+d7Q(7Sy(9>n`=qLb@7 z@W(d(N{%;6hXkkonk^Usw&=1(u!M`H&?jE=4PF%oTahzX`EBOHgE=Hg)Y<-A4|E7g zDfi4nqit+_$#ov|jq^_z8@#gJrBuoiz3o}sdRAV~|3y2<`z$Aa2GP7j#K3MNlTh}cveW_5p-nj9S6*^HL zNc!c)=~P$Nn{^01qbs!CK7^~f>IaL^jTlZWYnD5PCqeKz!pO`kP0r#6b}kSGMx4*f zYztuwQ$oKHVT_ti4<<7|YJZ%Z!3*@-8Rs5e;B<2#ZHL4chNeum&@=YS_DCq-_9$Z< zatD~ypKp-4V^K8@hOmo7<28_fBfv`~ydD*wfsGQEUJcXE9ARd1VCbyt!elIyZ^jxt z)gdVy=9v;;sb_>#0L4|d!~`}P4h4kU0vojnHo~a4gH1BRgPehl@_%5XrpXXw(s_{a zprc06ksfr$jcN%xhUNLi-HH%?0v2C_!1a(bha!>rvqdTvCW?K$6@E`e=WG<)?tHfx zVza^6Tnyt}Spq6JbH(o9vZvk1$?O(zPHFeHDeZQw?asCBX8;r8>myQ+9FF~gG7TV^ z=1e4f0g^gE6>UAXBY(6lQql|9oS~*l<N|QLy_eGing(p!@^@T9G*L8w8?>xcqxhJFwTzhnd zQ`=Wx)*MDcQ;D$b*gD4cWM{&u!5wkQ21=N+A1DF5`OR1YL4Oa_YG*sw5GaE>CC|h8 z4-c!^yJ9jQbJCJ3DbL}E>@tCPpI#X4dcnYw5%d1G1tQrT@BrY+iOqHmV)U4_{rx5s z1)`Tl1CI4AiVjZ-1{J~!Hp+9?P023|)TFVps4Z4u%22p4*|f)-3^pC;!Cce&?d!H9 zlVlFIo5lmU4u9eFBCyR&NG57a@j78@RJ#M$75WgYxf6U z00wP`ggxBN4Iy4at#Yt6V#`bALM#j``m{c!3s9-Ps(;=wV=NkK)WK_u{ThfN)Jd#T zkGT7>dOky*=^za2S=@IB1R5Hw2HFAawr4uik}X5+HK0KJ?%`1QrQT-S-)W+*es>s1 zlc%ma79E_4<}8Ji*_w$u%X^c7(%OCibr+q>-}2~CxX_S*y`t282r&63UMU4>vbgey zVVDLantz$?n!O5U@@vl)NNB?FAQ|G&2e1SsU$?zaIrCZY^9h##Z%)lcb%$o;3Iy)Z z+FQ%P_D=9hrqQRet4^5F^|Y!#wC8$H?WUz~-8Rpzq=5FhM-5WCb@Vho4)6VLXHVx6 z{~!Da*(=8yu&#>7+HM)7fFuj91jbZ4@6O#zLHD43adDw|o{@Vl8wOH}oY);?#i~yYJRAu_|`~^~(a*s|HfL z!smADrZL-d8*5-ZTMX^uj6iKl6Nl<($=m(Z#N0Ubt$TQ$e(9>Q{sq5m&#vK%JVid< zQH#(AVc``nfAs6zSz)DL@QB&UE44>LK7S{fQ37Wi{9Zzds@?-EVF8rt5CukbAbvYL zoIC%@0k}S#eY6V?GXJw(%T|qLmS_ikK&ao4AkH`?JjB1$r_a9aqmsBtx|JT2ODJhE zGhRaq$Y`hh>RS|f%6K+D)&CKLKkdHr?*H?Fm2Mg z^dyJi{@72?575WA87e_|7Jf~@@i%cj&G-Pf#*Rwoh29Mp&G_D%K+F|iqO`}%WP|KsvFP*w3uJOo+j3hwvgDQINqR9qe(OQ%Wx4GDgCH%6 zq{ymbJ-#Yh-bL_F-lfr<(^{k^x!WAxMAX|n-*MyN!yD=6tzqJNH1pl#o4@|u+B+GE zG)m>&<8HjvZg5n?0@p+eyz1$nZMnyjj^jw`@Af<>)oj+yQ1QkpX$RQtG4a^ zS}Et$%EtF!9{=&?{bNsoRq94kapo0TrEwy@ixVTHHcW1wZSGaF+5-itT(w7dCaZi? z{2EDQjaG#pZSpqnxY^bIxzD-r`+vQ)tE@cT%a!jb z{M3EsxB9xztJzmA%Z^5o)T~7r0nclxg|y5@+ht9cZv}`u)~k;@oC4gZWA3dI#>Ma< zeUWX5c%CLJ|9Xk=l&dW~v!RM-Om>fNjqmAbRI@>{i zL0x%p)9WsF<4MvJ#N*(kQ9pjezj-VA^NNK`{DHv{txc*{RgF(rws}4sa*}P=@=(^~ zJl39$$Fj(`Z#|#!M5p0cV`T%QU6UP`#Gw)po(!{&O)=Su7=I-)NGk#XZCjIsH$~Q= zd~n9sqTBQE_^^Pv1UHMPl0|C#A(7PVNFQRf08I6T?J)`48 zih<3{Z?VZLrss*N5~o%pJWjq<=YcD=pfxPA=H8Ok-%Pn~d2iIWcC~xB{YTPs9;j)|e{P@CErNiEygl zalI&fX+)Cry0|A90&iZ(dF71|oOGn8{_8ar2d}LMQ@(icVDM4TDT=eq$d*x?m3OGr zzy+u^Xa~NXt2=ahb%)mLzR8M2-tL=_@qYGOjFEa(H-B%vc&ru1tOuehyiJ)pNVXuSk_!{{8;&3N0FSr z@Rp4)tbb3q`q->#5pUMm_GaxyW_=#LA7QB_xq$8Jq_?<#En1uvDl%bCePl$UjS0N& zvpyi@EswOtp(wMae7R4|ibA(rJ&|VvHJlm_POq!-gy!zbvxUBvza)V{2%XFt~R z6Kv+i_mJm+hIczg2flXbRF)iom5`~VH$*;XCV+jq3%M_NZcqUGta|ozWX!K}2}JFg zg$_9nqFVT9TY8+Y5d$(LGGlMSLjz>SGk@y9A@FOx3plyuFEPkujX#vI4{|ue%kk?j zQVOjHP*N_cE2M;JGIx;*w%cSNq;_fDcw)R41rLT`d%;t_2dnnrnqM<~fMyh}??6%D zGlU6jSJ?qwj0y>cVo?^2ClrMV221%RwtY;gws0t3Yk`yqb2e^^`B-- zc^Dv(ta*0Fz=lq{%~|(~3J@>GV-Ab6#I9RbHL1-QwSD^dVNoT}A16bem1C;=&Fj8b zeN;gN;J|_iX@n7}JI@d`!qR2@4}V}h`HoyzOFhkn&)5UPbstEgrDal~RPUcJh7UE+ z_5R-<9~XtBusPu01qLCDv+lO^CRLO42BG@5d~;$bqC!nYhZI1A{)7-gbHOE{S{dm@ z9$gT*11ZM#&y=|@N6c{R&+p&;^5H@bAM5y4vB9R1y+LenOarncu_e)1Y=7`Jj!iuL zJNoLpdEr+;k;l>x`S`h*y{X8FSoUYR>lMe&9l1(p=zeiM$c}W}OM#4f5%WOoH0dmh zdUahy+kO7n=4HO=E*$I#A@wU#>Wr`g|Kl5mH*kW7yel^RKArpdbLa&xjt9k+068HN zE3iT(@!X~L3okKZ;Bc?XTYm|ax^pgU^Mg0GW6U^KXD64OO|q~pOy)PJXDlP{M8W)8w9Na%N~ z0%XwkTwpo?oFJmCo;{vak)nMjDHJJ}yP#YW>ksxjlq)gns&eVLpY#6VVKFyzK%csz zT5`C!cvZFJ1PCIlBh7M-fM5VI+>`ONW8s;F95?3?^txa7MX!o5tFK5Xsu(~5K^Yyq za9I;`Fu)v6O@CA{2wGj{7oyUDd-(41 zg>Ibd27i$u8HyK#^@1=#5YWh5KXk_GWv7}*NPCAQX?NjHNe}Mu77oFTcNfYvql<04 z_G-8Quw}vnv+bDMp+sh8;T=U_B1PC19s>%7mq8WrjZiSnT#PJ0{7~@z;fD()*Th_r zfe~^@IRE(L>N2dYOzkE=`Zh!SIX|;A4HNy%Z+`+_PtH**1gflDu4;-QN4?B$nqKF3 zz|j}@1%Eu`YFMjPG1?vbaT7V>63srtD^X%L@yF%(U=ylTP6Gt?KH<+eI&OQJxmB5w z)5cxUX=7Kho6YfZ{n6K~V!W@m6Dwv1&Npc6lDSO|&#I7_v(L5sn}ft(@igrJEY^R0 zZGZ4gaL$3%^_KpZCBfNoc}Z|u2ymYYXjX^I!jO;wO)VAlu&d8!J=L`*_r;r<*BLEl zb-Jfn6?w@w;*WcJD{mT#TuUh&EUx+z0VU*1*UCZ-aC)6z)E_fiNcwE^$ayMf=$dff z1Z#1D62phJ!|zKJgwsP{^i5V# z6vTFaS3>JeE^4ud>a8~BA1WD>utK*62#i|7^MLK;0)W!|3qPo?s9UOmv0}Y!YX&)F7DpI6lR z@h=~^qlom_318BO0U1} zi>jibFGE@NWlbMHG>1c8Z@arlh%^;zo!&j(|Lwz{?neo<5I2g7lviZsDrLzk$rR&K zk+@%r9z+px-R}$PbWT?29@_>a%hsEs>weeK*neWKDod)?o3_aNvZ-n2kas^hUJa@N zyPNs$B2Jmn8GlG?cRmpBZQ*Dak_yeziIkxg`TDQB5L=$HM4H>U8kQO5NuMlb@m$tU zwb!!WQ!l4xTRxZlN942uQo)2WtB6a+HE}4xcEY6VvU6>H2OQz_k8RNxTN=#WWL{H? z0;cOtpI7v4*9?a{7<{r*Mf(}HkIlN=If@2^fD!d8H-Dt2dpjTzY1>rghK3i00+Wzl z+*y&1k|*n~Jd{MdJ51OE*x$)w!(Co})+0s6np=}GY zJ<1fXUw`g27^4~r`fPU8+DnBUGAQUQxB)@97d!eIQjI5! zEA45TBi+vVzTI#)|^BkL#es5>daddhKK%$rzy1@Ny&s1 z)8G?rMFZ{@!`LDB7Z*NUSR|UZ7&l8IZZa0@bg6k+!@h6;iIMAj>-2D=ASMlM zO@IBa&-~2<8u!Fu}+BkcLhR zY$(!M?VwY1N-J`Q$CBCHcp^`;3vFjos6)oA5(^Q`C!C3F^p3XZhN|zJmNm6UXMd$b z*>w<0+)WZGFv%8f7#4#Irly#hY8?z(DdU-#^bYWeAoz(GV|m6DPl4P)}wWVG^M7#Rs(e;UWBIeAq81^57TAd%l@mD~1%yvnxqLw-i`x3`OzDs^F{CBVuPGBrl`)7z%WK*eyP~zl zqoGnSj;V+=9u#2r#L7rhZ`~prr@};~W86;12s%+sC&`d;d?{%sa!T5}pnoM5OSw6< zB<|_=ww6q-C0*1N43hf$U=^~gVLB04y(D3AGRlb=3#xW&SL{*+jYH0!*!8}Np-Blr z*2D=)gs^A_;n6#=9oQC#!s^nGC`yiYtNA5C>n1vN74s@mnk8ZxZ_btJW?n}|^%>7q zDt+gvV36>Nv9M&_2 zkS7-R1x_opzfu55rn0v0+wy7Xi;uyYS&EDqe&SdcG*eTKc`eB?#8imkhYQ5mZF4Lh zs1G-;_B}`GYyld(+oxh_fumiEu2|GiKn3%I(BQwuTs`+pjV9aY9e=T|8*0%vWwCJ^ zmb=+iJFS<`JKtpKGj|f44in{Vu>?nW6}7q;X@!PVs?!_X zHl5OjkFXZzH8a$OE+d&Sa&bB5QS>uVrx}&B1QM;#!i>nSZsu6j$6g%qxSSSZjK*~+ zvQsptx!nL>GX@$MpnofLc3By$_VSvxgH+`ZpNDtWi7|EZ7}9yZZR+ZcX674pT z0(d?~dfwpi!Uz#1v4e9s>ERsqJ)E;lTe;wU0ndD%z9UnEFLiEc64xSM>+f=YXRvB19Dg3BC-B)bO~MyP4+Uxxk5$33 z>B?`x_{!&nA-H9|&D(7l{D=%+ro(5$#?An$BnFhBmw@VD{_Rhsa`C3o(GdEONQFxR;yldZI-bAQ zpLtSKOn=E`!u}YZgzOjKfStrJ^oEmyt!wH9kaH^_oMgH3Pnc_e*eM2K-jKUB9;AWS0ewQO6 z08D2}*lM1p7e^LK#CQXR$)+qbmE&>Z{*cJLmw!({Df0lMaJX(~T>-`~LQlh);8zPG zi0N`FxL@~}Wdq#s1z-yO)AM?WBi`o4b3TeXVm*s61z8Pr3BLux{Z;0s-2gfpaFJ!9 zM(`_LKy@XwFUnK0hV40cmoEM?fKU6E0kq>1cP!ZT?7_{kKtsLgZ-XS!>pyyjwu@S~ zdVgyX4;;HsF$f18xBB!?M*3e+#Q4N?87Nq$R{doa9YxvT|tWmTLjKq3w@Yo!*!>pP45?YhWh z_=iul;?bhC$W@a!sPVl`f3->@`9FEDjLw?h0L)0l|C!i`r>e3pE?Rsc`ETMk$0z?r z|F}?bFPYz>gF&dEPcE^5dL+(5ar3Izp6(gphtFC61C(7EAeZ6j0u%u;lfmv40y8z2 zQI`fOe;HkGSPesPzVr{nonHEXnxQ?fsC{?dIx3^lqCU8&|Dje<@|8-mYS$bo74fb~^%ne=2rOaiGP! za=*_Hn|c)sVT_2hUHyLhk2gQub{uFS7P5+%7kK5$u=FamigBrk-M=Wma44cz`~`?v&_QzsQZH$A_Rt ze_H+AG5f=&098Nyeho{VM92IgY;Yl_5~wU=+}ec_wAdFUm=g68fC@RW@d?%Jo{*KR zSZdBRlH`(cO{iWbm5Av6bXYetUC zYQ+VwYO&)1`ixgiiFzU5yLHc*Ws=zXFfaqae>wyW#X^B+;!y){`?1(Lj1`sW5Gyjn zSkcd-om-|syQu`1m6xPyvEu>yT(nP!cCivTx;r(*kn0==S0NT?fzBv1-a7{__Gtc7 z9sYeswx_LQUe|6z8|Xs_%jr?Oe`8+djU#m#;1fj{y4BD{zr%d4BF7%sHKq1{;~zoB zbSR@S_zG(A1itwQIpJOWg&x&6Zz~s9V6PaRExre91RCQco+eDDq9yVd77Qva69!pK zSz;t@{^BF54lEV-#ASUtf^Q#ph1*;cWa}%y<0@zdaGR~8t^0DfD{pGI47$TO!xZwwQd!XjT}cZV^l|sa^E?E zk}25{M3ZYUy%$!4(FcE~jgsJ<(;zU1xR(%Z=s2`V)pJCtKHY(iYs@5&f8o_9m5|T8 z!BQ-4a_mxVVuuu|xrqL{f5tzp-LZkZ>1oV}&l3ge77OK1n6(}5A>TXndJP%0a&y+y z0iF=n4!*N*S8Xx zZ-QoyvYd&`E>lb@z~MWSVey}%sF+ZTjHbZ>#8iNMS7Wp0OA@7c18EcVHFEg+30fzg zf%aG|znhI>IZU@_f1_9mu(lksf!QAQI8~yr5VJ}&DdU3ww{gzq{R+Bhk*1-rq@l3v z&Nyu6EI$`@Gbv_m!UI@&PtTk#W@^x|BDigZ>v@*^Ipaciyu{DwswLCm%?ek2^Np*P zQ+TCDCdER-qfj7drwGWt%wUn}8YBE0J$&;!Jhj>8vt2SMf5~HH(K`2Z?Vwjmv4irR z672g<2_S@)O?q{NVBPc>w1i?vw~(&;14Tr1*=-P>7#j&QP}zsM zhb}Od`uoJvoySHuz9@t0y*mBXC+qrqfc@#)|MnhaLz@pJIR#OEx(~DlGS>vEz}vf{ z?)@DVDVNx6f5o#JCu>7SJyxYx_1e`nnD_cj@0iL38j_;JYM`4$?(hgO@1EZB0I7QS zgH_)$!=m-RKG_53iG&__(y&ynZmMG4v_W-hj=oKYc=A5rgRiVZPw zFV|R8>;elLojtR#?kuc>h4sk7+FLjdrZgFo*`#v{)|b8Y!H6B~e`)B)S7lD&ujt)O zD)l8kZHEiAA0)s{8Vdo8uy!Zfpj$s8)TcF4-V!t?V4F1!oyaL`dW>em;R!kk(*bB* zl5r=OlWB)#Qk_eih}fph3r^6M^WT=2^ETQ|+lq`!cRy>w3C{D%-}!XtYEG|k)%sPg zsyH9c!MLCJ8Jf(&qMgjugh>ulp8QaY)8!N4e|wz0)dZu77w6Q{;0uN&HU#G@y0H|l zppAx>K4ZbNcYR!;fsGlvJ_5+~5u+zaUJjeRmz%Cd0I>IR6Iuj(R&Y8x`s5ZoKlw@GFjsJgL_8r`IyM6){zG%&w4osFqr=#_$3eLa6?eaPTc4H|DpSI*?w`5 zf81Xl`QUI1L-K{8&xjXP1M$+S02g?}&0G71ocDQKblpCw1;;)?6NS%?ex6r;nw#pO^qbjXT4Gp| zE@BuoH4trHQxKfcu84`IPG4VBzxo_Oe_ujI*SfJ{hCvc8vDCwaqW+?8IAj~Evah8Z zyv}PiDTCFbaVdoU<#Fka+m~UiYgz}$5A98Gu8#Jzbd095npJ|Sw&BQ~#ELFqX8b7VRG^&~NmUsDSewHi+xNFDpMcQD&ly@9?XR_&_Cc?sfe{t)R zpB3Zk^VS_4&DrO*D2p#GDHmwH40xod9=HXQBAGyFtr{Dl%X zd;&%qz1qXKwf_JCP9^e};phSs0Wy~X=mir4GBz`pAs+`Rf2CPjZ`{Zce)q4?TPVQO zVV@-P=G{0OCwswBvH^CDgyK*VVTzpPVafaJQ`J>$lB1UGMPR_w7pv?1s;VU~Qurq? ziu5AWS`;R~sP12+es#FLpuyX3UPwN7fP;t4$*-mHI+f@#JTCRjC!~!sSLtZHV0l?l#&a4|mN}kEgP#Um^?eWwHG-lfq>gT;x9* zQJh0X%=7WxMVW&eEJi#TTYONKFkf)DypueHt zX5!uPL_Aha+0xc^S>Xro$F>~r4)s`-d}QQLyO`EgAw^!uz1oQXWsCTibl?*jwNhjt zE>mJ1f8O*1swT^mu|)PhG~F%Dn@LFl`Y(+Gsnh*^^Ng784xui zJ-a;V`ia)-#}jJ`bh32<5>#hFnSL@(1L+3Ff7e8jm4}<4ybP5G;_(@;zsy49HeJQX z0_EB(W@?u2-{a>sDoVTLy6KLG9bc>+y5FYA`cRJ}2v74(c))B8515qngIaBurQvqI zXAWMH(Hj1AyzA%o7$H-46@^xmEjUw1wh>5O$SnEku8ul1IIYWn7Yt<9EXTd8!AMdtS3H7-(HH+J)0Z}|5`Q59xe}6`2*^2yIosG~1kwOsbedD*66)=BfAjRIZlf#h9XXCX~sZDEe8@Gs3JO z{4z!|6Snw0Ad?EYS`AezA%KP`POG922JmBNq0fWP8P8BeV`%rI*FO{@fAs?mf*MDf zKQumtz-Uc?Fd1q9Vhd45CX3n4t-&>G~bd<5W)Il`$D@CII6ARSj(T z!-s!IYdAc|GJV@%!UydD_bm?cwT!^YSpPah+D5tX5J}U|2y-~cVD!fb5pbzmdkLgU zCv%d}uZ$yOZBtJ1T3{t%f1Dy6!EZ@FP%qv4=y4&A9MtV4pIY?|lcAoelE=@P+;VUS zM?|e(E{gCp&ex=ifM4hOw^l%<8%pCQUW+IvtO-uel8U97NJXm5-iBACxDxZ&U5>Y=C6+#z&(3?F$DrB-=?%Jk_75w2~Hv`HoKo*IHKe-I(u^@oNHCHSp} zVOe5(Lc$$C>zNs=hucq-J9h$|+(9E{_Pfwb+T>><>C{;tvQZ;dfE$|U9C)Z$PR9v~ zOobER8)LL$Q8-*qy?Ylk@ImH!u4&;?*$?pLxci+Sw5%Ww(GC@aOa&NmnMcm9?MGlA?56yH(>r@Kh+48=orH)4w z&T(?9K5+x&ESqkD)HGIXKtH#z05LHw9l0y0!gl#`u2>xte^-%H8e>YPh{N$h49g~) zE@jh3<*o<;jO$*hu-5h6A(Ff)u2Hh)Cgu)Wi`2^1b9ktX&vxd_O0Q z^;G#>H8iIw=D2I&hgMla=Gme+&qbC8bQ3YnK!fK(r4uirfC247+dB61P}MO~YmdRc zGh(k1a$F%Sxc1HgegXkNYccNz(>tRgrnl#<QjHlK= zX?^tX0Lv=@BvR_GapW`V>|am#Nr##{zex=t3|L*B2m)eT6PDqguezByDG8dGvqwcp zu4~7t3$^#OLVB4HuT@Ij3M`d$5^<%gZ_ACR7QU?V?tSaqEL<4rt4+IADDH5cV2+f+ zY5V`1ecu)sF)RSniv{KYmXVa}$44+Es`6|BRGX?XYCHTka}n@UVC@&JvE>wQ@- zx_zC9lmN>sxvv2Zr+T`qikAH#jLHH^2_fROg;E-d zi?h@Qg?|)5RW3|wk`s`*a{X56-Jguo2%m@BoT4bw1 zII(M6h+LU?F~{8&W$!$^HE!CjlBS#Habp$O-&$o~8p|B+3l?wV4Woo;J#QEX50G7G zN&g!S5GjiF%{9a_B1Zfw3;vo1fBgf=!u=Hg<@tYQAN~24;phSs0W+839|IHuIW(7X zWC1CErCLjq+qea+QTg6KwSJ>*nxH2LJfRW*Z|Vv#Qu^Pwz6n+8j1C_{U$~@j#aXVLGAw@$uas ze$jfvGiEc(H;?=2QIEUL=j5m7@}+alLn@_zOwuIKm&d=o`}uL;Knrmvt4Mi+SFQ}pH+i8Lmx|c!o*lBHl6_xqyXsui z>{~_r>cqXeZQli=f!e*o9qTgCZ0Q=vJG?TVzEVietdPK>f8DVSM0370;~9@MRo!-f zuH4a!&in9+@^}QP@#H}B8Q&=$x=96GFB58$a>=+3_oFKnI%(h@OL!#EI7Za@xH5$Radzd*Mvh})w%gng-`&=em7#xVC+6PJ4sU%d!#Hhi!na)IirYtM0 z9SF<1K6iBR6ZmG4IC|aw+}Ar=KR2{g)--obLrbvbAK8MrHE#DF*Gy8z=SWuYpnI*t zD+Uq3>Us4Z5Qi8q%*?XixQzyCF3 zrKK@mTG^yUSx~S%I@69}q$S8YqkLI>I!m97}xF zcmKZKA7S0-Yv#-|!34y@x9vHHfNGc0SMbu8hMaxZZ&3-zKuJ5Na}zl7w|5N%l5>b> zso(|EIiHJdVy>8*@;v!}h%d^D5E4~pd`NtcCzFf%wHQ#5GDZ_zkI($(kWbuQkCQ@M zrbe@V+y1RoQ~SsBeOwGog$Kbd;4zi)nG4kCIwfWh{#1L);Sg-unsQQ&cqIi%@4AW}BE8gDM zeHMn1>hqsgkK#;?#`@Lg_O+wnc5*QOz#C)i%bNI80g(#w_bhtBH)OoDxZ#M zk+|eN8V84pY>{SQJ*Pm>bxrjIC=WBW0>xlHz>WI6YApaV3#(RSG>0KM%W@s5A}^88 z$V-g@JM;co)6Ud?gUMCEIxVm;!*zuJB;Hqh+|<&X0ApMq`@{qce@J3kA(@okCZ{XoPZE*04QF)tjG!o^@IDT`zz@n8$I?~;Uhp0qu72~JqRPj zaP4@95ZxflLg}C#nS}id=&m3T4%#4>Lw08_rxX;g0Em3TgmKx$nz7(4Q~3hDj2|I)C0a{!3N=NjhX#U4%mFto5qW(js3nUSw-$a6&$cgAXlyIQTfPF52yH^h0E+QZ zu<~?P6^*s7FUgIJmXDQJt_a`5YJCp70p^c{H1W}Y83&{0aW-+=xs8L4xZ*b~YnBFA zRc)9Ulj+;4<|9@M(bdSyj3GH>jC`q8FTY&OMUSaBhM1ZAa??(jq8;h-AzHOU_abq(5KH z1KMhT$7WP)`n10@Cz=rrUx{ovlZC!O%o+;y`nh_lx|U{yU|}%#R!y?U-?1;HG*o!b z_ac0dZvokBEVt|9ciJ6J8y@oFQBd$^YA&5n$Os#>kAtaM;JgVGv+B;r7Vl5OUM(u1 zTvvLCN$$1Vxu^bcrSSj&dH_j5HE{G`05Gn90!OY!Q%s#>b1i_freoW-wPV|Mc5K_m zif!ArZJRr`ZTp@(XQpcYL4WI~>qWy}z0gCXu>GSWQ*AT^SM}+ zHLr1=VkjPGhKQ2_w_@Y?h!0@Lk5K1Mcm(~f66nY`H;fczngD|r_-svJWPd-p-NO{Y ze4g@#%gir$*s~ZaC%;_;Da3reC$QK(@%1x6!$quinF~PG56Sa}0wB#`gc)-EUE-u5 z9bQmmg=U26vY5fI;`Z0I5B-K#k*4y>ny(A-Ah6gO48!|Uj@TUEW=@LGOaetf=sguS zZ;k%bUEV(A=W&&#&r6_A%Ugc3pL-zAxBw@Skb`Pg>V|%X1!TrybOq-$Vg|oACtT%S zL^wBQH?t2j6w(dl2f!YyWq5`*;KiUaAd%SZgW>6|1MV}{CqLKz`8Q9h5#rO zd@>q9=nT8n350fnu7Pt4c#6Uux_KiA9{RR>4^-=dNnlE|_zV}?)(lE3=CFk{YBZO(p`j!}ZJT$=0H5Zf#rF(eA14^=Ex`JK5bZfxJbc>~I z%D#G^%JSdvYpxC}fdzxx-)Qn58??(>0RiI9BNuu`U^>;-HX+@*y>rlp?}SKe0f_`(nI) zGPMj9de>-K0r(GAo;I3q_e*z4QA11IqE+4Wl%f8HXMz6#dkPd%%q$VTr6h@i?`oAW zWM7*g*>Q;J2G@XCVhQwjIqO#P{)4DychkVe&(e{TzKa0cy=FVoQvpn8d0u@tV)lLy zdXKo~-tX$W-FZ_9{+T*SVCTj^_z5PB>4{pN4fXAK0B}~-Trzn(3qYmW^&LBtr6q+M zQ7ebm|A=)X87cfEfv5=`MWu&lQ|R=XX+TPha*|SV_5x~gTHF}ijuN)<>PNIDNSN7- zw(QvW8g?^bY{}cT8UotZDC<^2fMuI&6no26HE6PeL|%Litf!oR<9^_gD_bPLplyeD z;yYBf0eBb!A#dQGQ7V_AKA?X!@w&wB#Ajt=JpB|kmDc=-D_j2`guFiEjSa+noA#!U}7`eyNYOGk<$^Y+NZnPh?e z0b0IX|J1Y#-5Zv^{nyz3UO%p^v~;531!GzngD3g#+Lv=9m61MYR-Q`C#;8fbk5)PY zjpF=NLShQ+Ez5gQ(n+Bc{b5!rKE&>OVyQ2Z-5ql$^UJy&NeGHS0T2`e{UP3GR}9bQ zH45zszhz<%vNiFlv2A@TMBy(V-r8vOM;izmw0|*#NZwe|C&&l-fek14yZe7ZJ!#

6p#rbaj~rqZZ=-_G~(a#$CU5X~^GnAoJVW>ZDA&M{rrMDzdtJLcFq z#7zs6PGBI81YFTc(z@V0^T-6Gqkr3{T+!?95gh?bSi&1*GP{Y?|_1af`s@O*$=b{2Q)WX7c8S8p7GL6f6 zHOOR3I@Fzg7{sz#HQ zEt_n1(#!>ro%yKk3K@522EA(ey&nN4bzWcSH!p@4U@oxzxNocE+oscMgNd@!wf}U} z7ZWOQkvd8y{%zguG>3Y#@Y&9uFD}qIj_6{3*$MKRWA>5j6qH*Ov^&O8+(#c~PXoM< zKwmC)>vg+A2GHJ9tR)Aa7KNONd@GyIazH_IWLZHPUCZVFWjz)IxsGm!E#ru-_?RX1 zAIx(WZL4}TFFvWMxQjw{>Ll>IpnM~oFZjA5ua_+n+{ZrhZm`qCf9M|Kajq^@RAp25 zU({dvcKY4%d^8H3$kK9kJ8s*y8v!o1u+HVwcGtgGWVrhw3TdaD`2?Q!t{p;yMCjU| zAqo(xYamG-Eg%oUHwMUbvH%wZaj)H_wzX`uFn-ILEO){Ar>po4@NVJab8G?Vy?}#q z2lm`Xux3uzB5_AK!_A7hVsU4@u^5XlkCN)7tJHX1h6uN7C5*2}az)^u1LHyMOl{Ev5B|U*) zkDYtbyHbM!gThr{LEF6(lJsJ}>AFv0C#xsaoZx1{duem;Np!WDpL03qx~`J{vGP`* zz{-Ti56enbnTNb{|LkU#835bP)+6|qbI-2E zv9l8k21brU6>8s978AtA)`MN%7Bgp3*3jbJK%J|Xsw18Ib~g16V&^y_=17G7jjRq& zFP|hcp(4%Tc*uKN^la*P?m_<`)0=3}$_HEmBiJFSpGIwpwD+5=%&!}^_JVtdf&K2` zH!wyn2)>twZMB+((6!;Fpca7p%_EmStI>A)a`Ivp*Ic(TvaJ)uUco)7LETHXf< zb7`JlhfAVhRcbHMu&tp%cbA?2atwabZO|puxk=>?wk#eRRqC#T<2tJ4QKN&~!z*-! zAX7?8=3O_T0ieS$N#@=$Lbe@{kt;SWdji@CvR&c4r+xVqS z0HhZBkJ#cC*T9h&e`54u%{a|l9fAuROY(K7?M}3T1OT5R{Z(&;qi6(vX_;MwvNXvu zRyEYAWV-N2n>(){N3)nrJ0MZ3!l@F70AVQT{$DDrUX_TzN>qBxCd?Oyb-ho3!jqM zbt3A$t~nC$wCxm$-f?k|0-8Ph@}1{Y5}r3lu9>64Qw=E7jxMI02Vz6yyL_V#$4UiWQa-8|I%sIQexxa|qJat7KFp`@ z9dN!=jd_a%>*BG;*6BiXj#UXY=8zOwc-whr5-Fk&G0mrMLgYY@5)r?qB3I08rMMSM ziDjHeiTF31hC!J!tBBBK2-*rAAjOCW-m1&-PZ*J{XF=AJr#+KTu?`)6=_P_Qh*^kB z%lX2Rc`FHPUJ2?+AI;=qs2#Av=FfII1jzKkI_)F3T-5CPip<|@jS}7o=QR&eRPQB& z`*$Dgb38ScSi$pM=f)@;4}p?~tVZsXo&K8U9#q&_XD?MCK_^0}IK>=A#G^|fG7k6P zlR%w%x{4swd>`y_4CNduPd88Gejtdi;;qEUzkiE$YA!?x>M-&CyHzV3oAT?*2`DfA zGzoOJ|AL}z-&lAh?PF=6e5LEYyPhU7c2NC0?qir9gc}~%2n%NA1ghhR&HTeHJItr= zAFi1j(F9DF5YFA7tjIw9yhvLD$uBfBX|hv8magn&d?T_UK*d+2`uLbbZjUTgaJ59C9sv*cHBJs(A4A31}mMcAQ)36~m&H z&lz3*#{hnc@QMy-&yOh{Puu8sf8#F(korDKApcDc04s-6Sc4~YdjyI67)g;wh{Rcp za^_AEIk>g=*9s_h7=OtFW!IIFd#SZw2I7C&?*w>#SMPky@UPx}BR~Cw~#MvnwM@+tR$64v!s1R!Vc< z(`=!^8PIZS_yDseHT2@}WABZnh}8|PWO-r^Unaq?-vWSLS>*mte;0aM))NRiFmu}8 zH5d&*b31O69R)C_Z-@tzjZv8gIwO_@nRpL19lu;A8T{T|ghDeL^_0Xoil?S_T;NkM{ z^0VwNK+|%7JXMrkcf&DOd^5FdKaf?k^I8h%f`P|jN==zcCa)q(iXKZGW*cc0%Pq5t z2&S&^Z{z`gh@=B*dC57apJWK~^Bw{fIh500r6=&L%!E{)Srfh$suHjV0eWR&uQYF4!@9wSELoIl!v9st(IO!oQ_F~Ss!SwGVVuZZ;k2SY3d&|t$7FBcKbUxM%43N4OFirB4mlI+Ee?P%oBX@X}r((`R66UTZHkN>D*f$-Xs!@F?8kb zo}jGDZC-cVjV5DKO+`33M>rVghT8#j+5RN7cZs&o>#Cnaiu@x!LezZ(`S>RP*lex( zv7s(&9t+W{)9*jHM~RXkLx@m99~RUb*c*R&d%XxQZ`tk@duz);{~-gMfmSa;a!?&u#f_ViSh5G#KdpMO3rb z4|mS{qy2lmNgMM=%*D!Q!kN`Cauo6?5DD6I&&Qu<2l8z@0ns6nzaN!!yXL)GMn#q9 zABOuLsOt{2=j<>!{NVmSJe&alrY%eQ8mRp(1It%g2|QAm+YfCKVJ*|gvss$wowW)& z7NVu%2l~Im?XcI~o-XeoSk3+-Q3`p*Hb5duJ8L^Ag2IZc$|*vI!k6H$gImMfl)DQu z&UqDsv~lY2Il1fMQ~OQ&d#Qbx(c%0|wi6SoM`8mjs($`f-D<~ipmi+Z`u_Kj@JGO5 zo@-<&JVMoHS&Eb{yA;uXa5aZqb=D(!E@_nbviFxkel)CtV#&2t`RF?n$-IRe$aKXLh8eHi#+EiQHU1;mMo?hOYCMKhn zGk{Jk+Z-rN85{}bE-pq`EDfZ_jxA9d6>vBhDTdooG8#uD|4n=y=YekkJ`9?uCrq}q znDD%2-(UD{6DeX3AynzNsf_PSQ~%6nuVkB>Lo8YwPyJ(qFs=ePlJa+LziFe|X%l1) zY&=9(V}{QWeL#Bfv$5DS9lgaZ4;)CG^BX#gMcL8V*xg$W(%yM-1Geq)b3k*QW_}33 z#qVO9406vZ2|q+~BEc15(5Y5!HUZ;d#D6#{Iii%Z5n#HB) z9VC|Yn~0X$|NMOTb^JsC4=x@R{{$#r#xVGPH(_Ub$DIP)ygD=p`*akq+*_@(?D-yy zIRyw?z8vr7Mu?^hmK4fLoduaW3E6W$u~|wYkKeH}0j47BbpH97pk!o%@95|EE3rJoB!?RpXy>ZZOjSUah^P_JLJ4*xR`o*$y z85)Gl+#^Z`z8jOAp&|0-<@1EPT%0ENOpY2@IvoKVxrLwLsgkgG*cZNS%>rEvdD#hP zMy0!z)CKT)RBgBq5RhD)r_S_wt!5s-85;?u&#tO$Ump^j<_un8hqbLnMaQv;`_aB& zs+~sCfg@pf4A`;qSER*QSEOX_F9Ri=Vt50{+y3>(I~ES6&B(O}wjn6igRLc@2skI4 z37CL7RI00@hQ$q+>)3Wps$w~*X{~m>{MD~C>W|}3P#Wo!drf7Z==N;2z(>3g*;$Eo z#uZbveBFA5mO1~ju7(^})1Y0hw=G+qzCZ$R2nI#`4lW!dX(Xsiw3|F_AN2rNpT9M} zn6j9&YgCUmdP|_ANj6RCPUQqSJ;ev%eS!#OHiqpsdjXrbg+n=2kXW7qBMuo|6~fj(x0L%l^_V$yYK_d& zvJPcM4lVA4b)j_Gt8#z+dNCWxs!pz2o;FR{mB^P_K~_PtuL~+PQ#O z4mqh?-daYm2Hl$?uaP^WvqmV4W_8RKF{F97@>cBL0;;sv8%ay{4@Gb8lxK<=r_w|Z zj90X7L(4DnrDTEyCG`x&I^ukw4NLd!rDChd4@HJi3XCnGq~08zx~* zG(d{zXzA>9NI<`PU@ar-zb6*8ZC1^(@*#a;S}e4%+DDkBL8Q1jj*O=@7&n=%946Qi zXCzuPB<#SFa}j$h7x6!6=1`;zV@3dcdM=3WyrXmQr?EC9HfQ*s z(|-V<6WuwR|DuLcA`}`hM_T<82+jX5?VD9vg(D%NSWB^yfHXdZBKEy1%WSU${(h{|$MM2nf`{(2R3}cS zV$jI+ZK}VhVgj@aiUe8*MUQiB4_Q$c4y_}!fKHmY9+k0DFYtn0qsLb4wWQMm+ipLq3XUu=Qz)pZa*44!1hVy#(l?*#Zc>r*Cd9Y?qjw-qt(qVizM*d&x zsopp}Y7P~^8yN;poe?7OtmanAup0;tky?(ySr0S%uv;`={&pctC#M}zyx#kp#+H`g z@QRf!S`L?A?s-Y94W=D0l+>(C;x>({ETqTqc{pxkP1nGETBxqdJ~ZyLA5c)~B(-_` z#G775+5q@)gFfE*9hH0K#c?uBhj_4(J_)D3g6g|j{bpJsp7APMJ*jNEcPJ|1uZd2>HHqFnS;`C0^* z@JDN%H6_8KWe&*89KdtlJh($HOA?qO1~89d#6KAeta=JmS}YlgZkI&P-wukT$k>>eFd$LBn;_kBz0y`)OW%oCN+bcei6vk+X^l=TXA5cdZ7W zh5so>9Wb41WBwSpn`GBI^GuU6_y7DhfXxB-bIEHG$_f;4j}Du zfF>_Msgv?aqz5t@V0o8f376(<*yJC!UVfW)Q8fe_eV`-p+4!e&BLjT(2Lo6rN8F*r z;hofdv8WfX+W*hOrt!jU{042Ni6kzFG8O5~f;jhXII#wqQdI22-}S{u;q13$OpFas z&q&5Z%Z5QJX(x)h`Xlg^Q-aVk1VAlD`z_O{nDE44F(B)~Ha`$6N+C*%6BIeJ98vUQ zSrgYX_2vCg&Bfxfa|F}AXqRBBFd*U^sdLNZ-07abnBg>2s(<5tc+mM{!;KIAwPf3M z*-|=KrvXTND)8nHRD`DA_e1InRsX0?VC&x3+fepv{;H6@x<~48Q}3Yj1z_|QD?8)x z8z_^2W?+)(JL>Y{bv*^d#(y9T9f%zNXr2~)jqoqf_+-(?1z&EBf;8~Vuf;}E&DHpZ z?J-ns`rZS=v7pto5T6tE+~J;*2%4ME8`YK1u)r@}SL%-N8-0zwt1BJv*ikU+HF9yY zP$~<;UWp%;;2^MEsiISr8bG#c$`5}r)qdq3mXTgTe2<|oC*QB7x4)-+UfdQ^#PGu4 zl3&{4BH4juw02m;UzmK^^aG8E8i-9o1usMw91-Y_`ZoK3n5=EY-+E<^he{>RRR7u` zx3d^`)%RQym2jt16KZrX=u=x^)m(w|tCPGlJ=SQ8O-Gcl4^;Dx6hLLXWJ=UNf4PVc zK6OM=l*Ak-&E3I|$yXxlse0vR%WGqU~OsN*;FLsOfRz8CbA#*&Pv00_9y+&x@ zlXs=`07?GApcP2WVB+2E=zcd@dYR=+J6ao`Y&o(#loq|xu>kyb#6&{YHh-t0G&!P5fg}Uj95e3w?X)T|+rC0^M7_1|-NA z3KCkrhLdvhf|0{Dg@aC5Gpq@iSfqgo*m~YQr8OalcN26ND|IOq^D;OU-<2otN&Rm#*4*ad?5;Lo`}yrTW#owY+8t>&l6NZZnVhj2AEd z2dmEdRQjmCg*I>MBwKA-dowm&o_N|Va)(ztWL+rtolJjf>)2PxYqiN{;7Rv`Ip31GlbtA_`ug@=X&l?uVzw!$%d{u}u%!9XxSN zBh;w5Eb~@8yW2R%i3+T9hq?PbpfypbG=#A7t_`%9z<2X*B7*(VQlTHlI(gf)@FaY&Ql8$)BP5gIMvvsfRrX!nV!xjcpm5B6)z?^1pEMZd z_MSPQVx8e5hm}8MM|Bw*ls|vgZV=d?zq@WteyCY|q6G)435}EA{SbHkYghGs0Q`Pc zA0hSqQ}e~nXFrT}&MW$&Cvp|+cy)5K$x^G;e}2n?O*{0yBnG4@-pWxH0cL_->&f9O%l9`lr_^@BWNB&}wR{}kYKb3#NA_(} z%K7bOf={g1zf)$di~=^QUx?HyAP6h}71G(#n9{+~K)Kji(};y3sR3G=aa-&tey?@u zX+SvrGvRH?ZEMz$dM3`E7@Ga}L0dJsE8_I7WG!)kJ~g^X?od9y*+KuTLaN4_k4nxj ziV(mTg@S!`GM)PR%*z{{Yt!~OJiOoMKKAP+d%XjT_WQxjdRtvf?>_a^QuglF^{Mvu zwcQT+AH)$$s;;>4zi<|^y+fzGnX^8C=$iw9k%E}#o}P%8n;_4DT@ zZ%%I;9Htpbfec-pzj%4t^4N3MBy%@imWcr!`OA)_yDy}UEqd1DtF1039ZZtd38MxY{{)k&v|{^CQV;hUwkYLV`69T243w(99?s? z7QnBwlq6#o<7?mz%e@E1l%R8MsgEY1qse^5vGHjoFw!V>eQjC35&BZ?^>IB{rlOm| z1Hn5**TLhVC)nvlzFm@LF=B($`m_4l*X{RsScL^I4PfTe{PCzgg)XjQE^VBSN?WSb z?f5hMjHFg&XohmAZh_9FO7p%BT>ywxl1T_B_KGp`kdK3GJD2#XD-M|@yI=0Dxx~=- zsm%2Da;J-eAo#d73f#a7=faqwG$(mXa7A72ZKZqL!SC>QfmnH-l@o33LB|NcjI4>8 z;#|Hl1}Gm;OD+dfwbEW*VDTuI$|@9;UYt)mEAUfxOH6{r^8A%!@+h1%iX!2hSGhCZ z-}>dEPMyjwA<=%5Q}@S9aIh6B6bm9vVm+q(LO@G)%;}C`AyZDxxZ)PcE>Q_~hwEsP z#z`JqVjM;CxC%o+d*!v-t1!rbLE*(H^F`MY0@Mk6TLr-hsKpcH0D%>k%QC=wQ%JCu z2Esvgltn0nEuJn}<-6ktulTiUQ3!m0N_dHJ->vi)j-JX|S$fT|EqSl!c8A}^8|ACS z*%CfWBne5w@7is$h&{lLQj~@tGl#fOw$C#4VE=Hm)^_(R-yV;IYxuZ14PJGd+ixaC z0RT+*(7+22AXHNGUeG^2a)Ey)Kanxeef76Fh*kXsMwCIiR+7L+gkcT9P zupmff&9b4%e`~=Pxz0=-8QKFFQ)|+(0JTi_+MYJPFbz^24!Z@kl{oMuqcFuTMYRxI zj37yn>_3vOor(!@WsGxD9-rE|NJar+)NXMEOyHTYB=tB>Hyg0CtEP%qf9=Y|kI0UL zvkksDoem5n@2=I(ie2ssD$m0le7f|H@1R2y#Y8?j4F>Vh5~osL^z{zE&<&S90MP;b zC#jLxw0})OX^!VC{PyF+1LqVjP*=!AT%+^ih1AGS$b%mv9`A)gK)bshU<}ztBzZ$^ zKouL@l!!?xvzv4vfumh#Kv}s>VGzZsRm?)E8PCKjuM`~E_v&mzQk7pY4>qTt>l z<=DVG$}0|IM{Ch~drI%x0#?4$0AhO}=EG1xU;~$kRIs8u0h8cnm^XyXFP(1eBxj^IREqp&6?(-N zy!zI-V)3M-1PIrj;W*i*ZZxzESa_)qR(dPIy<{`}2`baUVI9})5imxjfHJu<>f-ho zCEj=Zdrdk~)6|GM2g~|LpIBw7`B9KPCK(PY^M>IRO8-WDc3F66M8C0%klgTrf1#@I z&a?BS?%^E*pK@lVY<{XM#|=-|$^4e*t64?A;{%!ZqT!{nK`!8K_!kf&C1gRQ>I(h# zYjA|6Gbb|n{8$#vL=pUVfW9u>5T)YsZ)bOa8}0sOu2_`>@bX!*VO~CEPUP4#no^QP z&gVQY?1F)G+w$bD>BBy+Y%HSA?WUcs&#Y^RBM?~7g2|$~peeIt3i$Fg4*OoOL#SM) zTmFEF@LRB-L;|5TYc{pO(53CMI%;C{svOYRG}->x1w}l;X;kL~z_zz$iX;-0QGu`J zX)a$2PSnGiG~fUkl?E{dM?pRI^lAs)XhF3B|uQG6WW*>uXbOAFCu$TI=@YWOK3?*s48en)D}rwSU^8H#gU`5&k{ ztYvh}yT~KS7RY=Hz&Q;~4v3-9uhkU{KvAq~R-iDZDHrF?Zs3`-F>8_S(Ej{O@h2ZN z1BT)q20y#A5?hD88yE}p-N+K_r{(t5FPhD~3}SlB;O)fe^~JY&pzBO4sDv-^rX0cfKp$c-iAE0*Mj<|;58FdfE`V5z_kF|UyTw>Er4 zJDBY`CL=wej4sT<&60~0`#=sv_Kq(HH0_{EhnF|N&^ZFRMv>pW*uo}fAdRmsI==01 z4?N~`ZVo$AjjPU*jOZ`~;|OhY2p*8B)kj#g2AR$7JO80JD7eV;S}XBqI=xWNU{|j7 ziAQG9ETOmzK)(NJz3nkhE-UwOH+6^!$8G#~6gMncR^s;=Ec9j)`cfy7eduh(7z;5c z*z{h)=Z{lyI(I#jxPN(thL>nwf1QR~G0;55Q`6bj0$K|R-xZ%~f%w=m{ko?Tn_t%c zd`bynXZrC%6X1HD;3v?Z$nvXgi$ogh<92Uh@<@ievc$QI@0o=Kpsv2XSKawi5-k_s^%TBaB-ZPjVJk>(`|Ydpx&ekqdc! zLmMRMAFhi*7ZcRC-u0N<2opRWkqHTr2~6EUomnWzcs%y>r#=b?&3T)s`xT)z8@(Z1 zxqx9RK>59(6eQALw!iM2JYKZ5yskgF)0&fC+Au1NLhS@)yshOvurv^%#Fl4tILd$a z(>)!bXpSau$vQI_CaaHOt#OFC!(}|Mqmbt#Gop<(6^a$3!r~<((6V$FU0aQq2zl(cd(YeC?r$QC8u0mAt=LPx7iNZx5Ya4(jCUF|+pkIz4nmkJ04R zJVAkR_frqh_$qoz|H$5>@3%T|*mFm@YwDtY1XYad>ywL#s?zuw=8c!zR9qyjj9t0Uy*6k5;YTjtT_to4WS-Gpk65)93bXGfqn z71_7RDXP_0UCyyCO!=WE0jBfa&&54ez}Ba-#wOdJ#31T(xPwrTaq8MT=GvXCyFzD!O3wC}3;{mcnv#yY&IPdM+}_ zQ9*1da9`2Hfg_4E5U7rtkafkx^9x#n$o|F}wkMLSa zoGKG?dZp4?$rF4#4eHx3uW@s2o|HyNKI->!BL z85^>%Yt*Ei7$O9>E+&RqBp0vULX{W-zft&D(6S=3(Lmb%7oVGI zCds&UrcQE<7EfI&w~2ZnmJ$H1dI$A4eBC-W5mQaF)K?FGVC$ggey&yTeleIE+Ol|L zj?WT3>r&VHw@mg3FNcEO=^}LT{W)()d}%`@EeB%#d02jNB^D5F#+QXu00@;_tt`&p zEO=#=a^^=TA@%rSB>@G@PPwxtAQ4DJhxAOA?+Y<6LyPjUj-0RCrFlSJ$Cwd*`-})M zL=6qcmpMX@Ur~hglhdySNB=(!iw6%TMxX}>h>!Aj;1`RW@@bFUp-4(@O^Z$0l&Mya zRfsw$dfh}(M3a4ge`5h4Oa?M@q6Kd59=8XwShc@bb`SK9vx2n700nr09o2H3`BaPV z0TQ`q7H%dmI5w(P4HiIphM_dmSbgkEM#ORWp*f+w&3*C>gTZhC-Zu$QQu;7VpqCG%bV2Tt-ei zPqhyw`y1M3B=NIf^%;{sDE?l|?gHaIQ4%Qb%J=9vMTJLPAQ@Z%&itIFQTBXJaF_uG z=CTew2*KRdF01h-Y;&w6BuWz+Zfb2pGpK)M*@RXOh4i(>*eLJF`+T<;ZKPGwg3r_O z@!8NTdj&b)6$wy5pUW8RnI$41rmuxd2YY0oRaaY{#U78y@>86pOwPZE(0I+JYzoB1 z-{vPF6~eIZQ>J`15-LL6^5QXBS(L+MiiT^Yf?Ugx5aR3Lv(S^FIy}>M&eSuJqTHlo zVClbak=)Z`0;3Ql#y0-iw>>Z+MkyMEPmq{;^(XD7t_FOvvnEw%>uq&5kvo3m{1Qk} zQYPYU_1{LkB+A|8YH{;%ql`xEfXLG^PQ{!;dZzdZ4qakIsFPSfemhCX7LFU0;gt_T z;~kU~_`i&BQN&lgxaZ1O0;||A#lUfO2^vZ~sh!Co=U%g;SQq+P#5pGr< zA5sBI?Hj$`W(|Vl8GN%5itYW_#(+tOCoLExM1T#T+LW-p+j(4wNZiGUj?{>s5~6WV z#Jbm2d%m3rOadQa3O@4PkW`8{#?DFD%CyA9DaNWw%g- z@x&8QYvcg3yd{}`Kph)4Q2)kh1#%NKXj`5~$L{@$akwHS z6d)N$7Z!w4@c@z09h@2rbj$96`jpd7`_@37*J+dB7W>G!`GYee2&6QX0;cj}w-sY~ zII%=<^Lg8FqCDytXdV%th~Wq*eCSe_E&!;Ru*1^!m3PxT16r9w{x4KJB2#P*WuyZ& zPAuP)oVIo=)SI*AX@WN&jEKp8gWNcW{3;QpLY1zUvgXO0xX*^G9t!XT1rS&9Nf4jdi8 z3*s^^Tzp;?!E-bqmKcokdY>}QNB_;mntI{nJtrO&eyhw!4$y8 zt>`g`ATD%}kFf1=P=yH6#bsB;L%9VCd-!wM!<4~$S26ut;>}-O^eURZ1ITP3UK5IP zzj$SE&LYW1A9WL@i=*~V7tl$JWvf_Uqp}EZXM-giQD54o7Gf|^CY88yMkh*Uiiom9 zxQQlpF~H#%yzhmMsQSZuy1yf4!;XQN)-Kiv6cvc1nk<|S#qFi_wiDu3>Z^q?zZbS) zoq)rJmQ2R{k@H9{Ly}Gc0Zjf&8@_1e`h`xOsiNxX$P!cu#6rE&GrZavUBe%k4zsq& z^3*4bs766g>)NxkQOnk)sMY>?eaLBe-p(Xp%UO(x9Q(>5V#an`(qq?cg9SpDQCJX z-C(jjzDp8`ksT@8MLttC}qITrFrsyUfjpwN%{eNVTLq}y~Q-LVdC$t6L1mJ{lbG~ulT;^1bkui5<}w$KFN3bF){Cb?c))8Z^qsD+Gg3RsZCC! zCy5K!y=&YWr^nL^rkq*u@Z@uECUae=)05$xwPo0cybTLU#FWlv8Kh36o)G#;pI@V{ zj}mbGcp6MRj|&;aypkbVenm;K*HfaTlVGYH-BeU*fNy>PGPe|jsq4TZeIgyt%90@- z)K?68(q|up`UnUf{}1Su5~0xlYf+ievi)B>>`$(K!)_(`3a?V}&W1u7E7y@Ct6 zg?he@wjL~{48PQ@+3)uZuBlY2aSsd&#{SU4MHkY~c^7ZDOpH>;%+1Ot z2XRd6ocq?>F`<3)c#WU~TcXeB+lf8l!JB*-4WhH}YdgNeb9=`pn@5{-7@*hUR(&+R z-w)8&$d15&8(Dc!&^Fe1F_p=4oB6%7oOR=eE@p`XF6H#Qc_^^k4Zvd!FFF%fQ+kN3 z-6*B$kYTQBZm7OF6;XT1pL?`N%&%l07~sRq*U5!AktX_MBL%7wtTC;oRg7+0I){8T*w@azzO5|hC zAzX&9iKb|jD4m4#9+JNxta_lM_bX`7Gz zXSdK;XBchA|AmrxAV{PBWBg?7R6Sk1GJlm_&)FOffDX%WP-+yM_|hv2h(m-lkRWmhR0os)7Ug zr(Ax?=*e)kh54ql7T{Am(Kb)ITUxK}bOngp88PB=!r*1Nl5ZDazSG5kCO#fQ|r-N?1AcHKiF;f522qOe}vyG;(=6H-F| z41Aq$fVw3lXc+<8WhG+iU$Wi2N>hy?f!FK205NVjA0dkd0wjchi9$qB=Rgbtxx7GH z!WM+$Hn6{e#ch&@ur@DwgdfPjh;>L05fit+ymPWc0;SFbH~?ye=3=yj&!tZ@U{D9F z7&NwZ#x6?BC%T#!_)QN>b zMv40l{?{bN#_nDep{tOy2+Xn?$gm-#iAAcG2?RqgrZ^31z-5xUN?48g=Ur_L^+on> zDgXRa?i^YUZpBbI2+;*CXQ2vdaIu)<;l81oGyfVzb?Fk?^S*L)j(p zC2>#FH0FVo?9*%z7OSx8SZ3#ChqrMcvyRtwf&S?*S@W5Qh{6OEz3|=N15~)MR%=lWAZo%Ov`_th<{%Q(yN?y#^-HEloJ}%|$YlsyHzxss7m36mx*~Ehj11 z6uyl+St5CmA50vd^bvN`Ei%_w4fJ+GgF0D9xF#-t&s-BnIXKyt%u|z0r8=8>hAzxD z)X2B+MU9x+g4QY{?i8$kO3)T0IadmU|oYR*hNcsew?$tRGAsy=Du+$8m!Wnd#a7t z2v(vie5!*VPeFhW&Y%fnMZIp0oJ>V67^LEVDf}`fX@KsY*mOfhftH`#wi-GEVTYh{ z&wEUQ4tIaxM2n@j>Xn70Y?cO_h6RV$*A7mZ#Uf*tD4W_FZj13LAgR1W&_u}cQnKT+ zTEb=u@sKCCK@);FR!Ka=*xb-jl5q}zJ1S|7{)r+kKJXY>2_b?!0_Dq&ACXnC(P15b znVXRDNT&DipD&oA6BkSvk=Qbq>xNqvqd=vd@b8^lqcLZ)w@ZP%Is3^VeGT=S*uce5m0d|ek*a^-P~ZOqD} z0ysKk2M+l`YO%#AQ7>UL2b;x%%~tJyqFpB`xfy97=Ydpkxj4U+{-Xp)yEU^)!{K`V z2i}QAnX8QO#}a_%hEn=GIBclGB)dK-zfFs(0B z$tx3vhL2s}V|7Wy4Td+N6E1C0JaN4zra65YpkfquD3{@vkJL!@4+do;z$`+4;hS(Z z8CgQ=v^d<PR&TD6LlkoQf zI63FvpGJr2x~aQz;hEG`7;f$S9^|t2L@Kp;te1*am*)Ao{ia)~z3_DC3E_^+@1t#4! zn0zj)Azhm=!cS_b<%aBJs6tHR{_sZ{-SLpXo7w_sXgU7zfJUo^nbgvMF~|u5xGfBM znTe?}G|*}b<}VmN0>sVDyYFwfAp>Q?Y;-v#PBeLUiIo_wOn9A?08cn2PK0k18`6PW zlozq#5Cj`;d(MLGEhNcfE7F*HNEm;}AI!1M*24!vS5B{O(SQ*8{!J#+O-nhQ4?nHKNY5|VlkdU!mj_Zfk{c;Pe~&<`H^SiX zWXvq&WIoEwaCTsO7~?Y#S_PF;xX4D^C9&-?^)xCwg`W=;EQkINZpo)tm*MCF6ahDt zK?M{8F)}olLHGnIe_C0O7xxUmY~RN#T#*l<7?_B`Z~Nv);c+?P&LOLyZrA zd&3>w3J6yL<=gu=fBs498=kT?`G^4m}M|9JD`{ltM5;!0ML@&d0S)lA%Eg<@PP zVz-99WtJtKsWx@$znDOWr5SLhTXsokF2sz))vu~u9%u8Gs8rC9^tNV9gd z&s&4C%=GdEGus{PW^mi55n8*-aYP&U>~^J^s z0cobR@>C%5T&r2+<A5KI+U+@?sgnQ9oj z#;scKfA?lnSA*HT+!iuHbx(`rxgNHyH5VWmx);*HR9YG17|9-6{;E*9S4GMAbiK6O zrWz{LNSP-0crh{)iTO%qA(DQmhOwu1?f$2(`{@3A!{rl2g}OrbSnupT+TpgL|AXJh zD*&3xtOU3cnaaW<-Mwr~zwYY8&~_jT1qZaIe_s@CRcN@g7bS?vBA^{ZnNs`5cR$@x zt7)6ne@)j?&tk`O-5U@`mX^sqvbD9Q9O1*s2mp1GkyIoB7<&RHCPW^#RYTKU6f|Uo zXQvF!cy*&$w~G0?HfCcsET&m2owE#h%2_D|@w6I=FcTpm*9==uyB?z&s065V>1jTY ze*}>ece%jfBchr`IOw?hu{86I#HK(zmO1Tp% zwGdCzG_gou^{)3kUmr9&e~%~pN$^bb(KlvS?_(^=lqsn~qYw6mwfBd?Vp#z(Y zA_7lSCiG>5&zYEEu6}CT&bUoy^o7o^fB*c&$*UAB&5Na$u90$Eb=4ZQ(d%fl&^>p_ zY*KQ~z&+9DKckw088>+KQ83PcIJ*eO8B4PXFne0F>Tr9llYTrLcD32uk?9j#K(MPD zM}abOvorGP%#-TGG|mmfpuNGGj1Q(BJTaK}iX;WTFyl)UB*Q1v7@K`-acScqf5`%k zvr52;s_)@CjKi3rUBFKn^Iu0EL4h=;`~UFc`(OSQ6@)8Vrn*|(( z4LRzRC~cH!Bb?yk>@@wG!b1=i*j2N8 ziG-dZH^?h|%2m?ZsCT^{yB?Y61-U<%u}9;|#ai&ShJd%;(BK5u&<^05e?I8xzc)j- zoEs&z#)0l>3?zY5ZA>GiEbi;qR%Glb zXq)H3$aV5@wTU^zB4xbbF~rYK3~*A~PkzZJwj?+aIomYa&F~FNzPr3++tp8X6BRhp zsgpJPKafoV5)fMk7ZEDyf5+7@Z5WL`(D^HM;{3Do$}p|>!xaapcDsja{W-R((yZXc z$*SwitNv%KnqiEp1VsKpDCHN823>imW0THaA?cH(OoB(|+0rpngr>kFpqK2aNeL*n z2q>WeK-qvrI9i{a+2)jzh4gi^F<*@%N3MOO0o_Z9nUoNK=*5|*f7Ii|At-EmQgpC@ z!xTW?ptojawzO=QTuT{*p6WvAS*kFsj7OfZ#~iQyKJq&f*gh9Q< zSwMXYwJy@d5IMJ&72NRmF1dJtBn8u{7x>5p-;dLA7wqM5+&MzsSBJ-XXU^oWv+U#G z%OS~5g<7T;eLHq*e-lD)z^|KhW_F0#L?&2SP8%PpVS6TH4pie))VO$<+~YBW$TK^^ zp9x!{ma17U@>yxEmmB)ai^Yvq0G5<_`N!TRJCifbm}Nr|V~#6%kY_NSXW*1mrVD+c zn&+uk0eP&VceJQw;5W0LRUI-aI^D;&pcRcvGfoSV{ii$Xe;=wRXVI!WK7-02UxGmR zx-)p{3uic9)C-Zv%|YgF)zBPj3d{xw%oXlNFZ9O@NM!5E9{A6Jq| zb;Qn3SUSRZPicreD;Kdw5L0C=EAy*rYdQq)f}`iC*AQ#dCfgSGc*YLZSaI+f$J%kX zq2UK#{IN7Xf6+K}X0Q$jK0rLi$+7n%7?$ElMcp;kvI#~3vbYvYw}D4kX109JYym^g zK|Q!KIVWGMXc>^hwVxn8u4xk}h`*8TXx5ZNa3Cj$^Li9Xnu<2DDYhmCiTVGr=!1Jvxt33Q zpWyMOMaJ?h^kz{pix4IJx^=XoEmH6em#Z>m=#Hs&%PEh{Qo3)qOYe{yraRM{?h7iK z+4us3e`Z1--LzLl8`))k0hJchbsW#+UZ!rs!WGa%IJzDO%E^&xQ}>@~h5|uH4t%*6 zAy}RGql!5ePT&aE-czgroGSz#z5JXPTAqr9(7=B+tuK;7N`*=NovZ57OA%3QsU8r7 zf|E^C@e5`gn4M@y%Gr#|X8|J%|o|R*DKngi)1~9Op-h<1lY*=Wjj$pb*il-?0 ze=IZ4KfV9{{_mH;*eR6-AJ~+1&~8D6;OGk^ggOBrpK*OUz_`V!71fHJIZV$kz(o}L ziaacGzKVS_rZVqhD8F0y_4_k=Dwvv0WA*;bp*WAEZW@F1wS8cPc18be_5!WUUmw)~ ziI^I%1zJ3pEGxb}(!vc5!JFePeu)ZFf0g3$B?jkR+@kh~ru`MVCk6;EzuBi>>Cq+> zf(W~eJVOZZO;J$-A}eu)v(vd;;IRKmdEi^9SJ1`cg2@Ld}k zb8)EkmqIz+iRO?35{{g!i-=ifbL4f#CvcV)@`6e)7Mk3RFSEc3@~F--Jqk_7e*-h7 z%Fk{z4p68-pOePRV=o8|`q72y`>LyVFGtT!VFAawiU_q>;0=}y!WtirtT=%Z?qmi3&$~Rqgiu$wdKvyo#JhS} zxw4@eG}_=C&;V`URRm*p&`KRze`~5q3>E%H#&KEssUW@LN;p{^oH^Ljk zNG=Bi_hCWZtasyPvQQedaj8K|6JA3T%pwE- zCv?mza_(V2PXn(_eQ)!Y49hW5Hx5Rt^5TN^gH-0<_MEr=*|5(T|DsCff8LOQxwQ@P zf#o?qfzjak2d3D6| z?i43Mdq-34XX;w_17~n=Ny=Fg$gq8Meo|`88W(ChW42tlB*fOnjoar&D!LIn9Rw`< zDNTqeEnJD1edk$#U1T52s3@#+E(=a&_)2pvPPhu;{{W2MHmjH6=mHd%>@x!t0x>p| zu@)+qZ;1m6e`tCsJrkk?-%O{6Cet)&FP%g;CkIM|B#cRdCP6>)>$|`L6y?A+ojBte ziv$+H?zi7QK)MRxkFJVfl|>OL;(WDj&H_E!?^pQn@$WNg>(BitioE#sxgW=g_vygue;SA0jJ%e-#h16DY09=5&iydV zvd~NO^Dpav&i-0Y8YE%3P*o-QgswEsNV-b%n9wLjbwBKsCe)J$rjCXc>3l_4kTeP5 z04?nAjLhk-2?^4|%7{*K(c-3jz~6CT)hpNbSxB-xu}kG$$6N=5DM`Y}N>u{T$~|WG zZiU2$e^N@;bowRqq`<+?0gc-Vp9kv%>g~pMtJEA`p?GOFyW#SnG+6mGj!6&}@DLH2 z82#KB(HxA(t$JH@smqQyB3YPO!3`3D;CX3C5;(^PF!RWqw}$ilC=R@y$+1_M#$bgk z9%3ZOi5%4+LpyrOc^i&v5UZ7~4uA z8HeDG*0<^eM|IkBaM>M-n{|P9oi;uU5)uZdVCzkZ3vWMBEcOBRgce8U3=DV6QxY2- zuSGzjV)8)6wzXp9f6{oxtqmG(e$s-%LV8NkvE~hbh@ocEQ1SgI z<8Qyz@`16OJ}P|SZ?+ZN@yohtyQ_YXo3It(KcrPNwDY3L+ldL$zTZ61)U z$ee~az>FY*qN$Q}kRgB=*Su1BJS-?6s&jdBiqw@*+nx`t+(b&^< zE+~M71JoX~wHlCzQsNUNVr|HcS^;N{TlIFp$(hZH`B8@DSS>Rm<;ijzbpl-0rMIo$re-VU=Rxk5zhSx5~2ZqC@xA8x@Jgd`jFm*rep5f-0 zEg&F!)@cWbUg7|TzY1TmllWvft!B$%Fb?CT_KzAgxkGJ>Kb8YemI$l+`xn;zQ1;b5 z-6IVwu;3;2H~9l|!DIUWXPwBk2Xg1|7Zxj>9#!^FTr^Dq^^W7M;8KJ3*Y==GYugfX0{Q-609DLFp73i@Q z78TWG*34kF?HPDo;Zy;bi@jUDq-us@nD}y?_<6^O#K$Tq z5$)b8$VGo_5kRTWK@vE7f9xzEG@Q!EFHSw?)w<=|1H|uPKHReqL9Q8WyvXf4?=FS?~h?H+W&|PmRO8%G%1% z0T{{mZCMYC*?9RAwY$6;*=V6Rzx1KzAOh^tDfqfI6K#WvJ0f58{4U##`Zo%+?M z`4o^h)yuRC!koey(chitk+;}{W|0YT5Lgp(G@&R|5rhsA zu17eBnK|L$5jf~sz;%lW-tlgJ(7eva%j&#MTUS3ZF>G{zNt+tDAqL!{=2Zr6tXVRZ znNAG+)_EzS^NUpjb-LUe@UM&`s5d6vh2Q)PFw)f6&3yzT^!%R_@GJZqUVK z>yzUBoP06-K+2P)Nnp<>h5Y_w%SMdHetOmdcB4ta6Il3xKy_DexvQ4fvhinD+T#US z)5vnyac|bfh}lI&f!yxx)Htwyu}RmR5x)CZ^ihpnG2%m%6ra|{ChGu;HS9qW!0|!uR!<9VNew-0Pkw!> zSS9K)8c$=fdkF>@QDmuDMOJe-ZmKG;kKI00DoIpev;D`rf4unl&Pxz0b)%?A`B+vvmsOfX*qu#{klK*A;WylI ztyGM35mDTo3lg@ujzQF%apg|gpYBwi*n&3Z?G#CE*(m0X>Qh)9Q z?|-@wFLc|6G83s{>E8Z{(p|e^I5u!sRaxhk=S7k%)4SVbijq;Llw^X5zN~mDr$@V& z0nErCzl7tW4X!O8R?&4tcgSo0VBi7jlmx}8X_@1v#R-@7{f{s&RRFdI@`7xk)I!Fr zMO7Z!rYjB&Sl`W>-~EZV(VyEQXIZv3e}8l0&9j9?OJV))m$EAREfG~BB9o0|C7h{= zRB&H@L2-&24$7z~07s;S9<hYu)rT7`o#4 zkxeJw5B8ifvd30C0q(g~5T)@HTM1KZt z(V?w216XZ)aCR&9VH{_C@ql3N!vsIfFPj$@OQCf9ymnS3(%&rTV4V)#*2QQALw{iB zyghDmL@Iw?KW;HfgiJj}*PQw%`J@w{P^Z$_&IUu3B9t-dP&;jlP3huT#M!iW&kT2= zHmOia#@9p3;PkL<%(ty$861YTEq`isxSl55DL5LpDT)b4$n?t7r$nzvTleKe4=7c` zO*5amdCU(CVlPc@o_$+F<5E$AW9R1)*;yCDFa^9&p_K+sEB9{?D-;yA9s z(gTfideluFGGLAzz_(f&HT7X+#B1m&`0R@QC5$pN@}VPG$yGUUrcF0=@qeNkspp~^ z0N&wB(|yCwGt+r%rdQ{Y)4JjV!YL;RoTY^${SDUJuVq&tTxm72Tihk{cOLIz%Uozi zCEQPC%m6+k#c_%i$Dy+^TxGIs0~2t0i3vDlt`3plvuj(Da0qvyiFJUa^@YCcrcJgy z8}KxXJq(1uY+|m3bmlSU!hhCf$36rI5v6O08?M(&SsW3;fc9VK0wb%HK}8`IM*Z1^ zT??pL^AxDt3=aEn8g<0k_0gbvSUx(W<8wvQIncxZpkOOk$OzyZ z^Byl>M_{rjqRNu_=@KnlB;^H2;e@~y9|!~)5NV7n;0lnE-V?nG9Dg|Lgzk7l5(QUF zw8O2-T3XqYcNJx3ysNs|WTYYiHsLS*{qu~-)?$CBXlQ24G@AZQt8B@3bTF8rn6F~* z1MK`A5xQe`%LTe&0$IYF6D=Ve;>u)ivA4Ha2`laLF6Y^XP8<~1TgpS`BQqZ}!qXF3 zhKU!UUt0j{t{W<{XMbaZeLhTr2Rvn@Oh|Cr`y~Ldim{|)L5pvP;@T6z z>4^(V6QQiXjc_w=LaJuscoBbhm{kb9a?G#i(&eylYuXr651%zXIca^lB}kTt%=&}b z&eWY8W*)!cv}n(S_SBE|oM+3M8v_6dGfNJyx17K&J0mvmlz+>Vfh3kH%On?u!BBUH{Nl3mR4v0jhSZms;ail(^C7GOL%|}(W~(s6s#&=- zX#tt-DABd)%74vP0fbiNJ?>Yswj;`!X{i6>s4I$fPeU04bTYNhv}ziUK);q|t|0xywAx^!oO<_iz49LofYDj2}@NT=RR@L`IJ~GbT=j zgv9(dHAd=Z^jI@>ioh|-O#=m^Nz~-IhbJsFG3I#-O@F64`iY?Pd+=LhszQc|KPnAFaj3n}Jc{m>$(G{Q=$A3Bt0EwCKGnE}&Go^`1lQn@`i z2QQB_IYx0Lbj20cbnX36O+^x{l)TX_&Cr<&C@8M-pPW@K+SV}y9UE5~A0S`vXaY`Z zY>)XA41Zs8T6US3>zz>YEgBvX)WaSD zT;jT2<67-)M+iY2KW^C&91zGWlch}WimIVI!Oj6Dr;sP*jC>nC1Pf6`oO@*AtvIn-flwD6#t|EdNcQjO&V76zYsekLViuPLA$*G=b1zDk%2`cO~Pf#uR z26lyU-tX*Q+Oaib@NAd0e>)vkN_cr>c`+~Adbl!g&nD%5q8a# z41b#L7J`d30unam>{wgos4|gh_B>bz+lR{TS62~Z`!zV0rw8)uWcnEZhOdfqzK8WM z<(N|A4jPJ@DC1&ESqK4{XDuW#zjMLMwc89FWzYQhXN3(zL|g)|8$14YX9r_gD*B%y zGHQ$9WY^I1&{SZlhujsGI040Q&!j!gfPY;TE!iP|Ot~ryoQZy|nI+x#CV=TE13>V7 zuVTC92BBwaj)Bt~Ln1o360;`-do`-|?~rP}c9_`s;v@~JqTKUej& zAHIBh_4?;u-rkLIC2Y1Li%b#`8@=q=gil2n>j^#A(2u?sz-&6tk2s$9n^m_2dE!|R z`^aWvA&N+|>Ku8^fB25(Km0#yPJh?BvOm8%s=f;T*bQGser%>FleuOJKE0EnKMs6PZIqc6!oW@; zJc66Bt6mU0q)Jx~NmIle2B)ERz=@!Ned?}hsm+H(heOjIscDx|kJ&w)uz#spHidCz zYy?2v=-6qOj3a5zyESc<_gig9Mt*67iaX)(;(vjpm$n#O;~S|ky~Jl(UkCn>ez5?$ zDbIyjnsh%S%%=(QB!V~qqH8RVKWBj_qmT={W z02CJk6&u1DKG=I8CIog;4QnfL>NVY60w&b?2l8ZT#L3km-Rw#CnYG)`; zEDgbm?Uigr1u0dHo?0A5vU6*6L}EKvb;Pl~B}cj80wSn{HkJS-%p*LKk_-T0US01} z0f`|V#HC>DqQEXSBq^v%DOQ6rpbV@iCYPAAja7#s?1HBxSdei-Dt{4F07pO)Y(DnY zV*3I`4zZ1a-7z<)I&N~I2-b5nJR>B;*~SR-vWbrj;$3N3S5OU4->zlO#uGk=(9dJWBk>5yTCgKBD; z2HUBrHWLZ1vKayN($#DxLa?VQWV^r;YH2vbimGNBym&DfzWsPRcEgj|Y`z){FYbO_ zwda3KX1@)Fr}M?tc;S8tu>J6EFnlw`)yy&Z8oQA>U(DYx zMmIO3U#DZktMP#VKiV zAWQT}Mjs87ApB}#A!#(V#~(i2F2>6xo|nBtLQcgKyczN~pM&KQ>XF@l6Li3a#uo4% zxkTd*l6xO={Z`yTLg}kj6(s`=V5aJ8&~JhcN%aLft`+&7eX9fCY5}8pj1coc{7?_nb~0LW=B7m>z=*u8Ct9O0)rEdzUFmol}uhAP^35G(baT= z!0Xwh+40$AI_@1&h16>>C03uUSA-I@#Ql+2Yp(Qk>Ie4YM7!EaVgH~-@whx?3V$8+ z>HgM7yfHe;8z9kkM7ASoJ5qWZrlm~TB{n}wh-JlR{AD(c{CW);CWeD0B$aTqz@v4A zV5i{$Bu*BK(Z@sNv~U5|Z%1$m)(*GO{%i*#pZArywY#hp+lUlvhtabV$-&z_#_vR; zyb1DrM?(F*H5E3=ITJN6_gHd%aeqCYwsibtFybGMqQe9C7=IVH?{21eMq{=psWW=<)W`Vf3-xUy)rZ+J!#ctO60Z+rnSraI3xT zdx|2SQOdHmlu_F?TDQ0V=YPfPzrHjC{(U$9ynbuynDcQtMoGIGD6xkI){WvxI7}ZT z!V@L?hC{sFp+~X*Zg=n>Y||3<+v#N0zj|gu<&Jc2BYo5RM@0YV;Z5{H#})IXBPL3Z zm{_(kv24ANYzsS)zRF+>OVR7*{-hvC@B`hH1FM0xFE+g#OZV75qJMd$mvi9LEwP2q z%cxodPR=3Y-#+|FD6sUac9S-!u(B`l4^-BlqVz#!Z5?`Cj}v$l*dc-XGzr|NPs6j& zcbL|;cGTFK_g6RFHZ9Jy_iYer9B(m3{9hNZe=^|5`PJ_Y z-2VgC8j)p};phSs0XdVw?i2zyHkUy^11W!v8eNa$xb1y^Mf!5}02|kmCCk3IyXm&* z;eZx<1N33;9-Ks(c-OI0+qu~(?#GuDDSwSq2MequilHfz;+IBjBKRjZS+p^69A+xr z?9U$}2W?(9H2M7Z4}$TwfVdrD{`mCaFMrc|Bcd>iGO>9&j!8WoHqXK1DZg~KdDwr( zaU7`cAGS*A;FpsvO9K6PEy}K_Xz^H|&v|udAGT5&BLfpX{Py(IhfhyE2U^NISw+kh zUWGDYvPn`EidYf5|2|pdMVO$zbVXgYw8$GvllFSKl!ZNfgr$sv?quI^BMn;H@$VWM zuT>9f`M5}^>zZPB?Q9!@DB>*mCw+g0=@m!*#RWu=26n$i0lL z*(rYj%-m%tidQYLNc|0)v}v;=9^#C=Sz3DJngEj!l0PCBd(ej#_Ky z?kzO~I$uQPx#l?B-?FfCr&CQ9r1N>t7Dk6_@2s<=={?~|K+y3^^X%M6%LxrCj z+wCQPf#Yax0`bmKOQpgn0*9@$P)6~}Nj&y;guZZ+IZ?+2h*E$NB_a-9PlfkH$ko}o z#y4Cf!5)2JjVfrJH*9}9f}`ala!x}FR#jTsYQ5V$vDyKzB)8}7`^ToMeSYTAe1LS!41F96j32QHwI>_d%t4M@K z-^;wmUSWSubgVq&Cns)8rx~2xkgG~Ws4{ggbBw*l+>Ge5bQOPH2C0)!BF&Lkd;S^t zcCt;h^fv=sjNzx&eM2#3DSR=S2#5=ER z5+D|DG{yiRy5fIz8GAcIU-G&$qP<3li^g`>2GdJOKT#_PtLkd|U)$8QqVOED|204v zKRQ15lZ)h_T~07@dZ@{Jx3sM4jwaRxESzC{!m;ze?ln))obir%Q8JZ+$4lPuW<4VE zKEw|c6Ui4EXOmEgfFVJ3u^d79Qi#UrBW3D?FSz+~F+zVswx1a7(ZJ@HXsOU7#^YS8 zt|-?@QA+ssib)-i1vkoZQ5qG-O3&k>%MqiPGQTM9GZZ(sE$_Or2S#wrON>S`jG!)I z7C>zaY~pEje;PCyd*)QqC05x2GkL{f5f{CxaACjM{nck}TOpFrWV5@5JS!b7>q&wz zl0HZJ?z?|QjuXI9t2#>JUfqBEu}+7LOkFW`b1u_ipKbTX-&9QT4L6)~6I=r$fQ9qtmX_pp35V++cMJ@ldT#3Yn>g|n z2)QWfMBG>04OL12eJ$XUFWE9kNQ0*N5Pw=cCzKxjB@Q8AK@IqiBYiz5^0SDIJA+Zf zqNacH2~j&&JJD}hM<$$w4p6f1N=PvTBV6RviWq_s0)4HBbC$=RO3Kks_LD@DwotW} z=VQP9uH!J=gXQWAu2p129|BMXIVuQJvz==Xcm;u9eW{>Y#0H5{37Z0dz5T#+93^GU zQ4%O<lRp75qS3U6WsERxf&KnLsI$$-aLs{QP;5c@v6Mj4v@TMjjn~0i-ud&3ghJ zH+Wp5BUXcRcF;*#JnH(WzS|VX?l_!5poo)D#i>snJXyL*G|ydg%WY`tZ^UYWu)%-Ex)@IfpRoJ3<@+cTNaoW2b8=UsLFUUf znlXV=?+zSAVG3pg=|`xe)m{N(Z%61$2c8j~6luT^9nU1Lwl*#T!NR)&V|p#Ov~)%U zBc-1>8w{6IBDZTi|GNSBUtR@#r zNy5c>5_Ylkyurm782fBH8g(?4%KQy&X>Z7sm=viN`%~{T=2!6E%fV8F$&gLlaE&^Y zy>oH*TB%9Y!u8-3V`b30TY|f+P-zyKQe%m#iPr%n401(9s)9;6HM7W1L{fh>4_6H0 z+mUK&?WU8KaO!#HZtojmz7|gB{VsnXhcqpQi)asilM|v;-^x2?uI7d;RjA`$nBaxc z_&#D25o##vG?VWGUc``;Pd;S8X~=9vXZW45&SWa-5dkMoPHsX&FFRcH(Rze{VfN}e zq)28`IYuHB*~Hk;?&E~QHVl7rT@lE8GO~LFdhZR>k=k&>cI{$plqOVW)pp|{d{Tzs zh?3!<`BI^!WSAy$p%_uFcZb9HiaEf|Ta`gPj^Y*0Aderk=#oJoIm#`J_SG`L*-|L7 zlg%o3&v?IorlCGLGR-+Wr)V+wrP=W;+c@G&C{?NJ?I`;USIM#ZFvfozXnXKninC)S zC%+kXz1Z@i^5UL4r{O_qP&>X-BO*M!32(WrkM*z_^Y;st2TN^ z1K6a!(R%7k;!@^&cQB&AkXv$1sNOx)xl|K3j#Ngvh8zy8H&=gSD!$7A{&H=3)}89s z`f1L`rn5b0f)l{Yl(#NJZBUr6;H0LpFkn`X4Dkl?|7H zeFGE$FqZ+40Tcl=mq0%QDu1^5e5WV|X=mT-?Q;L_K3UQT z9qlAUYp^~>Uc7Cz-+#?i78#%j2*X4;FzFIRcRIDNKY$N8L5cfo(mFpFH{Mj%|D2-c zSlSm%^5`Dux~}R5;Bcut9J^c{OkS04+^^-^vZ^f>t7mPs9Q^~QQrAfuj1UqB(d7Rw zojr_k)Y!?1EO#!{ox5JCn)JCYy#VnkB0*rlz+)yPlb+CEJ8Jg^hw*u z#M}nM4#Z%wT}-RG*3F@dLRDsYx%I*xj8G#ml3_~dE71srnc}@LI6hV}`eQTY4k|E< z2fe)~#_EW~5mUWPcbWhw{K3Il5_C8eIfTpxC7_byh(=>ae9O%a;z9)+)+ytd!ZGFl z%eHq@Hc2ehkbg)GL}5Y=4Z)^f=1}|N)i{`4z!;S%Z6QeRk$cj3N}+u){Tr|g(96~x zIk27r2F^!GH0^&va1;$-f0_2bz)Hj;{}YCq);k_%)ce@3Py1L!SkQPrA4fP6mt0J+ zjK!3XEzHDQq3c}xrE1bcu>j=Jg}nl*6qY0&AG{~(WPe=Q%N8q0v3qkon$m|x_Xt46~XFt!0{9EByd zem~`oaLipvQRv4*RhyRzN=VLF$;Q0fENQ0n1Cv2^4}_3R9!P?@5KsIvMY9Bi1RsN4 z1AA+L3xAG!Be>VIz*SCC?~}Co4p6V~a{~yej8Rffsb(C~V94+nb55|E)% z6|-n!Uls_(VHl10@ZPs!5M3$JU!8$W3UuoX{D1lmrV&SnWa}RgN}pN92!?F{h{Q}> zw8~2dC*o69ohj|mf?EmXuYgv>cQ61tDVoZUzJ!G7)HI&|WsJEzD}#5<7JoLmdV-@ zKBua0U0}jO&;V_A*KdO&7#?j00sP2CXHO@SX?qv*x4O(J$;)Si3B(jbt}_Y-1BMHP z>7|1c@hQSQQ|fO&slV(15QT{^1fjIdHGhiD{WY992#!+dgLhRox$F9*G%tWHbz|!R zC!((h@SF(s%si-~aM4<@5IWe4<-iLEPtsGyjaBwHDhc;fUkKDmn+W4!t?X-ofChk% zZ62<+a3V9kN!r2;<)B+Ux$pki)iyjMa(AQFLvMXCRepN`L4t^@DsB%n8ix@sZM73_C;W!=5a=ok8fWH##;d5;sEnz`Qnd% z4a1oT{4_|#Y`H!pwOq|Ud9OFwt}D!Zf1#A}^q=MntwZmAQ&bg!Zu+w7%9=i2H`{Gi zuiE)S$~cx@Ea#t>e|zy}IdBk4c_piedCF^a$g2!OU(TXL`$B1AcenZ4mU&j;xyM%v zV?PRzzQw%HwgqvWwTwL?uBERN?XVYjQxt{pH9#20pCYpmfD~#N6F*YSWVtKWe_442 zlecRScoKPS(Y>65NVL~&3Ids;>&;wvHGMwK!_dpB-mZpT!y7Xi;6!+n#4D<@=KW<$ zm;=F63cwyPvJlD_A@O68RiwQtYdf4N@7EvH(%h>C-P1^xL&{9t7Ks&mI#^Sl` zX!fP-HiVcFpl<5Le+tu#4itPNr@s%)Epa^}{O{)&;!bo+RwtT*hUY(( zjUh0q3XV5fyP?^aO<~5HrMChRSz)bVf-DobVKJI)QdA@g8KoeCUjv~EgAWoV-r6)< zTEG+ReIhaPLy;e)gZZ7kwt}e|t_@03uQIb@$_<^h&AJ@5b3>n`1F(+R#Pvc*5T6W3 zx=w^tAgqeFMRDxQRFH!Cf9qM82wzBX!Jj$o#R2++|2-y3zN*Msseqfv7lLM=;3;nK zP3YyoFz!Cw-~NLZ|K8Z=UKO9M(Zt>^vl;NnFxIHBT~V*lf)Ii)i{m!?H!cj_4hOFIp z30W+Fr@}lmZSmdX>eF|Ot54-+_I_@WyA)Mmf~pd}a+uT9ENgrAAqt{1ub3!>R|WB> zSe1|#JrdYyuvuq$e*qCA5}}J2$Vt^UJhMJB?^?1C5LIlicpQL1xO@5-XAbGpdf&Qm zvj#^$aaEy(9}Jf@MaJlh$v0NXw_ii5$m+^SXP!HQ{CsbfdH$bOCQ5xVR+(udLG~P} zB}Vz)p!1C(E3%_Lv|S6|I&TZF8$xWkW&Dm_`49u$G3Q+qe@sdd`C;k~|KaA<{kwm@ z`RSKQE zucg)6uQ&sQ9mmAX5Wwcxk_!q1(CeJM6i_2wz&-Hhk9A{;m48oB_;yVT0})cF(@Ml9 z2SGw%yUVZ=>TG_xA~+QnIHLjwXcz2V%ON9x)xNd641Hmy_h_1aM@0;R$`$Rd;e>{B zh2pm!N=%~O5QtAn(34hE8Vd*EA#kPRLr@NAKRRR`)+~T2uPqfMs^UV7hZHdw{G}^M z>^Uus)&_CX_J6xwRTl1eI2GlAD;XOv<;N<8OfDSX$iAWqp{n9Etfo&Y`9fDb0OUmS z2qb~vtYm!aD&d=wEF|3UxS{F;=T^Qa1W^*RdFIbl`wlSI+@`Y z+_qyVC}G#{(7UIKuMXhDtJ`uDfy_D5TpiMu^e_l8@P7~;=gG{{I8ElTWOD!=2#z#5 zkoyP6IUY~bJcDByg|$^q*@P1;&PW|$V)c~{Dp!ukWTDPgCdG43m$~{^YM;OGGr|() z+}4U+mx=TTCVVJP;n4GW^*ExNOA-A|jh+qTv_>)88USB2jFgLCxHJT8TA?D)@_AAS z#;G4f$$w0yi4SjgsSsrB#R2+MA$UY|TnHkAXywG)r{#w4^KpM4Qk@v$dUWLAZTs%C zHTj6kLJhV2L|G^k3ELtVLtm;37jwvqJ@&-Cjz}KVgo{|EuKc6cg5U-Me&$(CUTfdU zpoPA+T88kZ&KX!TWRo#9-U2?#$|a8cG>k^>z<=4>6)M(UR55CDp)#+zd#Y`YU1AvF ztbNe);xhZMqZyOA{vCWC$qhkm|Ip^9+*zN3d~l!h+$}`{ z5{bnB<(l#FH8Z|M#&#kT;ioDc`;WpH+kuTGwhC*Sxef`Gn_H{O7U)!mK8xpFR<~f% z7_O!EUh&=of?KF2tVgoc%c}ZjjL{_O=GRK&4O zP>)2`@9r12?bwk>uH;5WJr zm`9mU3I&@{BD^3JDEHDm(*9o$rClPft#dAoJM*!3P45&+MeO1pnwG27EQy$%ObiNU zQ?$nVc5v6Jqb{&? z@e?QP4nRVza9pJ#4uLesSgJFH^lZX}aM!RWKJ%zr4V{X^7(?X87f#)O8n80_<%Uq6q>v4@G=ZDo-y1h9LjYuk zl_3T-+8aNL6AvvJ(F4rqmD=qYhlm7Lc;gDKM=4Q7j3Ii5NjfTT{ z{APyBR}uX2RUWNUDOs+v)q4LbGOO*=iU#+;zT%cH1j2AadHe9{^)GR};t|WEoUb0X zQ&ta~)yLq?t~m6%y?+j+l!5y3I#enS-tTl((bDZuR()C1{WIskP4au9TA12H5t%c1&`NY ztFN@S(c5CEdVgj;VdgR+k0lc*6;D~}oaW6rr+L@v&$xrG@qZ7V5obX&^oPNYTfHe; zX9HXqy0U(v;Xi$X@HhwS3Ae#dUI|z#Qb+MU7)Ye@1UJE=Bp;dm*~g7@red{Z2jTh+ zDW!mKGWX42e>%xG9{CctZQJavmQZ7)y!N>*dsGX#BY!X#d2HR0)93n2*%=aJ$xjhi zmG1nOH1?U9@$Q@%f8T;nNfC6qzrpxO;P}>YaJg@b1C79no-Ol)Mbh!QyTA8sCpgP; z?ugJ$kzZNwG@M;;aLUnJQ`(dV9bqX_ZHL-;P-lf(6P%K|IGi+JL~l1dg0}j>eIzqM z29*H5>wgi9ai+iM^~hnm?6k<_Cl0X`$* zb83R1=c8kh;*W8yg1Tt|nfHjyMFpekt6T3a;ZdVBrT5*iMuB&2l3FNheUyyf@I-HQ7$U9S})4Y>JiOV}6(U^B&Jg(Wfi)0+zyh9VH8tfMo zL4R~$!a-6@9s~R>;u(YRVz_&E8Qeu9+^JyG(25BoC347HrVMH@#y;a&wEg7k9z}gL zHBeKPYa*}8`d=MUJnwW(qiLaJpc@xQ^zi`4BuE8hpw63l;GpSvlJ&-$c@)dj5k#JM z<&-Uri`w`V%=?{oFW|rfoVRTe-BL{FxPMLw9341Qfhj&X6^r=turm?bmFuFKkXs** z1xw?lir}_(a$1VgsARNfg{#I_p0M$9ZsDbURw#HdSS^=(A-+M}a}r zJXwK&=^D?nD+t=bq}!S5Nho*563wn6>8uzDj}@b74k6-E!#JI47>SKo=EXp&#eYi4 zWB!SvWpK`QpSPqrd^~!>>!E93cV9bid_;i1 zv-AvG6t*MqIK3jLr%~T{i?1kw3W(2kuNtt+DH)*jNm#=3g~Na;e)J~PjAe8ET!G_= z7^A{G-Fg2)Q@!3bG`f2CkDq-On13p0`EJ3RG0XMvyzw{`a`GSXD0DKSkym**bh-ni zqRj0FHyKZfk3GN*CI6Ee40*;P{{K+o%+3qlT&l?z{0LMs@TxiBKU@O%5<-UnU*_?# zzQtu*W@YkJeG9FT9R2v`yW0=HdaWR!b{k{J7N{?rmIEY?#q#~#!-xB~UVmm8J2oXn zt4Y3TbqCYO$st^!no+%M5txIvq)ZkOI^P$SsmT*6CVyj`P=+!Z& z5=n2WJ$yse-VK_C5QUa0xxs+)WYd*MhPl@)7HzTDp)ahV@-sLUTlK+Us3Aa2g^>k+ z2gdDl*=d7eCE6u%%a)q1y|*;GsY}M&(Wvysix*0I@gUyv409uYc{rX_LfLf zt>`Xew)E_py_Kc0DF8dwP7PR2M*GOaNr^emGQw`PV)!+M_NMz8y zh-~gh=iKOh`9ucJxivowv;l|Q)K~O8T=NlWVrb~s1r&PpuBhzit=>anX0JY$1`&|f zgo=+Kc*Y_zHV$KWHh;8()vpc29NJL12*jf6;6Nr06YC_2vbAL5b2fN;bT-5(nV;xSwGO#g$_p^+m=D6w=NVDFc60~~2GT$xS+cCihqk60m?&sIMeyo6Od(EO zn}m_5=~AX>wQH2dNpd+nJkGj`MXZ6;$sd-R$@u09!ODq?(}swsbU*+8=*2ME7h}DX%mRCnTDHwl zAJeMuHVRzg7%5lb`RiNfe2S&nqF$ySPSR`wW@h@WnAIn zB>&-@sx=(A&m7Pp9`o3$2F{{l7NvZy!lvEm)+RN7cYmkUwCA|u=XH4FjUARGV{l%H zOSnJ*Z!RK)67;a$@(awI^L~4YmF-U}u5_@?|GF$H_cM^yvcD=F^X+%O&2lCax$M$x zd7^B2B7?Wg{SE-WlH?v|L#kFI3Rp4wq93~X4?sori~&j!W7qzz+s0vQr8|42T-0Nz zn6L%}FBq!Q#?Q;&mas&{)PAT+i^+H;`5%4JO;neGeFGGiFNp&bmsjrxEPt(8OONA5 z4!+N?@KFX@wW^0yQgYgv%)TxGraPO%q|wmWa$A5}awIvO-e13Dk$QGH_6Cc=pi5MV z#bS{kKbGYtf`4+8MH{QN$V|G~y?ltAw0+*t;LG1XNS+tM#BetAXy?ofEl z>*s<$+V9K0Z0fwCdEMkcuxxw*OM&Oopg88J;J31A1zVb|ELD+6q#{c@w>_A*NfTjU z7s<2>dI!#ogRkM~*Y5l{JT$|IR!G!*1u2b)je(V%7SK`WFNMz*6N^-)!$cv(qtCaY zOfw;24Kj|;>tUOM1Am^MD|Az;g8s;Z-?niKo<0{HJvRsX+Z8<=#4}5GO^t5q+oq~O zibC?|RtD@+5DdPC4?Nxt<4nR)7c2efOpFIDWGuXB=KQZu<>ZYl(e9JN4P|5{1U}cR}^bx0-z9xIWZ)WR`Lou4YR}9bPt-Y zl{(Yzi`}sE)PG@?BrCsC9D?w^=t;zI^?1kUp%Rhds`J1+-w;8nrc?{S?B0fRh|Ednjd zApbHyU@v@TB)E0TB~qWa1?^nJLB{ba!n*V6RF#AvX#xiZ0E<`wrL{Ttr*ltZ2R87x zExNufcYg$cR=eaz`G7oj^ftzfG7f(|5ug$&?1XCY8w>v@b08ZOrR3E2!qE%)4q_PKjuBjUihm~XG%IF@C`ySy~sO~l{MIg zt}s#XBS!|j9wO4s!J1_Ot0zsIHtRBVXezEWRDTkIR6ra68G@)p+n>AdE>j9QBy`yM zd>sQl8a(~E=G=h=2vK`P0pd4f40|FKkTAB%ZGo!f2moFp1dtUAou(_}&)1Cqq3o8{ zpX;0Lmr(@8DEohHAj?Doo~N>3DF{Z{>TThh?CJ-4$X{q6`WAFC4uw5s~{%$Cj<2h z9>E#P->LH2AXO$*qHj5fg%NrCe10j2ITM)Uv?>GxJ$eUMMkID( zYTh%HQkZx|v^z?4IwNVPGlKDWMlvP0fq(2jMcc6CKoTrwKG&F3WDre%rW&AD=MIT} zz%<#rSb`Gecy%~Yku=Gcu3-bQt-&aIExW=W_AZu}G2dK^`7c~n5Yja_3pfA*n+(kY zJ~sz{+9LV9DO!M%#bZTr#Y?Lh>(_FuWFX%czeLj1uGYch0VA5G_*sntcbO|R8Gm}- zRIf@JIUO6k%)T#O;PDF!Y9*vn*QxWYiCgr$m)J5;FE~1#T4&G|vP_f1*=!$IUaDMC zWxRc0stf?lR2hUsm8Xk{$2)ptR;+!jIF6J^vst%FY3_?um;-(!eR%C3!}R6<(Q2{64~1T zS!dD<$ag;D<3vQ+7@y;P$GZqp&<>c{G{=K@8%=kpNdcXLmF|)fJTT6>gGp=zj{R!ML2@ zQp2ew@+Rk4wL}$OlsDyi8wdDP>NkLHdK+5THp}6Xiped0L9GDLU>M|3tvT9dVg<}y z-S@bpjpS75qG&2~AP4rrQtaD^z(#W>3~x%F%e4k22a;SUhRVR%rshu-L)7Y=1IutR z#M6i{1I9`S95jlouM!%JyML(?h8CKgpWPnu4c|85L*l{+g)WQ+v7I%~CMM4BW)BW@ zYS@7&FFTUCPz;QR?-o$ju>QR3T(=$U%G^PZ>t<08-hX)_ z0{DONJ7&C*(ru2D+eiiGeCu{?c|yvCulMJc0@F=}V(?P*fR64NJc5>!LGbO;$h*bT z%%hK`yK#&)d|d3#6o2#zT*CyUqnFfHqnxf_LB!zNQtyqg=oYgr`4$r-;ED3Nc6G(N zx)Q47q8Hc}42GF47;^&|a_8ah_^Hd+YbyvyNB=o+EZX7#|LYy7yOjvz3GV*)0Q;c; z|6?QP*gD$6Dfd>>HTfIcc(}w5)I5!D3iAxGVrszr8&p7tqJMZuqJ*`d`)0SlM))yj zRF-ni=m;;YonXAq1wIuxd~#wAl#CiClJKi(QgfisSk=A+uk}s)w)~KSpzy{DUE3%s zJ9r<|)AOsV^R8N`;kOJJ%-IdUYNo!=d-0hHIk6qTpQI64GQu=F#N8pu;g_rN3W?2S zvmFnj8jUx&$$#pukJ%oTc}tP3@y-kFFWP)0G&4l+ZjJ44d3Sv3nsd7=o(|`#I^|<4 zeJQ+WJegRRV?!#yuB$5WT)Xi%w!w00iPS|08wCt~ybt*J*ZY4w-T(O0mrtL4wj@xK zrXMX989vmv0d{6w%KbVu5QHd$9&AMr$cZgolA4tIOkDVjZlMu6hxeyUcCiryc4M^M z*bKO@zSfBGw}ZCpt( zRVS-5%i>yBtIhshLeSxH#fx9Qd#40%4T$R*=KK41|NJ)3S1O6?q*kl@?VQwov-%j_ z?aX1c!_7L&vPl2ye`c+99(~x^u4B;qW7~~w&zn29-lFM|fLeN#$_?+zZab zq)s5aVReRYnDLy$-i=5Q%Q993bTxkMfP|oJ%bXfdWw1 zJJUZ}f#0aef5l6xUW;WbP`XF1~#`DBP}pH`q|lAEjYm6a4R+#C){#3fn;0+*%fP|9ue>^Xwv`66ll+V) z?4Z8d&ty?P@R-^C)etL1OW+fK?2O;NJ=dm1$hB#~?50!f!RkF4841$)ncoSnM}zmI1qo?no(XLDTk2>qq=he_n+!0T;In7>BRqnzVNOZ@<{haTJ7h z1monYVo3pD_zyo!R>-Rvx3KAjO6MTO4KFiv%f>NmNXSlmBjuNUjVx!)AOUmc3X-G- zkYkTg{>J2qmi^s5T&tpLW?Gd-9?i$bR7Lcj6%L`+iCO`L%>gh!n(-(=sw@BtLCVBN ze|He>8-}pr0B<<=rUIDFRTA9KUVHhlc;W z-MC&b0y!-~21w&*_lJ>5Xs8F{&K)7Se+n9i_B;(vd4d(gI#0_}wt`I-{hH*7xAwBv z%Q6*%m|ACXQRG+JJwaa2uot@13zFv@DzZ{Cdmn#r4-B|-EW+TrPndhF9AXCh2}Dz> zx@20{D$bJnja&!pD{Nm9CB8vx3X^%NspwKCmsUlrklx%y{HfbE-4lANAul`&e{knV zS@c#8CU>WFu;t`&iZB35-d=rMKT4!yQ_{aRXXG{<7M5oHfhX=Mkx|We|QTTnoormqQwl1_B zkig8b8<%~m1`mPdc?sG#@TKuB{d-nU^IDaLvI8(ld7gKaS79pk27Mx=e|o~B_<|$o znKenUIcW+pJOfW|2Adb^ zk4~UiWc4aj5JOpcEtL!QdWOD~$}fnL6d%Hlylje|(ojXQgT>aDo3= z>C1WmbFLXPwK!MNQTl>I!kJE9IeVF;evM@I%9*~FV4yhTqehuPT{<-r3^3shV1r2p zAsByUA|a0es^0(bfdGE9eLyoy5FvQa^IaoXUhwA>X8d%eYDmgjU$Zvhu4l+gwmu_x z;mP20(2Jy;$Un|rfBf#A%YfjYf()0wi*1&E7Msus)m8mQX#(~Yc`k`w@!b^Tkf_e9 z4oKJ8(f+nQcHN&xH`>230qG=^Aw88LfFYUCBX|aJ#mVZaxdYhVj^^wgLvX2zXiRgU zN2mlu2b&JFr~WCBq~3(r^zgJ^oHwSYKz!HpynNc(o>%i}e^F{m9&`eJ5%ZWs!XgPb z@5ymHa-W55KFgl`q zZDy<%WAbr&<&`A(7X_=2t(Sp)0~D7+m;)67HJ1=O2rGYCO_Q8B621FZ)NQB;qeUMG zn49gjy}O4!w0q{_nV6xf)Ln!rs0GR&^XoTLnW6ww?%vBrA4*86B$ax4`9#Z20)KK- zB%4fYQJ8$QKfOqNZ}+&N#@+iDlI>zJj3<__?_d1wU7BuWB8sGtoBM~UtNX*|WAx@& zo(I=$W37L6WPaYp#-!1QqpNG`dVQ(tp=#*iO?x_(&7t4MN@bafGQ0i#{$DTN-j5Na zN-5)FV5q``4P<`HB=eAA#jo*KAbPcs$m;DhJ4U34S7BZ!{(1n4S zm%eHqv6)4?a*w_~^)*a!JU+Da>%$_ueS13B4uYhS$qFIR3=Akx9Q(XYA~M!_@S&mE?gGJSe}>Xb za+Xs*d(hx?=XOjt0CpJM={&5Xp(P-kA+fF_>`>2_V>wWZLemBgS0Jjvs5x!y~=aTQ=1I6RWcJ6bC*1<$SIy z$L~3`w6LBh!v21bY4^42hi50h9Ugz{cK4jz`*3h^KK}-Yo5AD*-`AG|#g#6~K{0aw zW7RZ-Suo;b46Txk{uDoLW2>d-EbQle+3|R<>;oN?Y<4*D*^^RFXEV*Pthl9NPc-r8 zTBc-fMH&__R;*%Qsj2bs95zXr7)>kxIJxs2^%Qhvi5)2^F05p zCyP*9F+s7?sYp#W&(oUrc~u~OoDRF?SnVGq+qt`KK9(6milG3j{Y|~f(7Nq z%!SrkJ`qv zvUmLxV&)1t$S(uT8WV-tzPs!kHYB^oZS~ze3}m_QDn7V8wjj& z+_mVP^%M5+$$%U$XO0nO6k+exh>EHMvLhH)`?4nCKylq<$hmHc<1wa{4X{v|i#%)r z0Sa*jmruVRIp6Pe4wU^sclSL1;U36v;HQ_i>m;}mc-BCV2sIBx4r7*H5a0y29WMVH zvn{WM*_NuWS)hOZXYVu>g+yqlLK{UcB`(b-UN)^snOqcBhh)U>R;3KMHD;bLl8yeh z4I6f2S8Oh<8tMMv_BB%Jn!Yel-@Yqc_=ew-H0hmNGLX?3#0^3Wg^78BfY>;mSg-KU z!sVPRagjzqwiUHMj-M%@h)USNV!o05Rman*279JcsKkG1_8prhg~&CqbdrcPdy-Ar zI-Z!XvFXAof80qWMRBNlxT253GYN+hHB5WyV4-_YNlS^7g)2@HG%_^cZWac;zC96j z#JLuUmh;3g8F;$oyIfBfE<8VNbD&#=mV9%C7|QS+1)m;}#hOsTpo8Oq*5rZ(uD$4j z-jeN5bgh3q9DRZs%u6@fq^cRB^798f6teE3DCt#W=BT&jU{y$D2F#r;5=rT>mNROv#SNN1i!eqR zB7|diL)|4$xa_(XhaGhz^_2@>77oCOei-0lvVgRol}{r;g?b*SJM0sUj6%ugw~?B9 zO8kG(CAtuq9@E=)t8Vnv25Dx$S`45h=}a%GL66+^lD>CcQ;f`U3^fpoVa=SJ0M;`( z69s)mx9_?f9GB3NfD0mnFE+qAD}fh@kk>Lsh*=HX2z{-k;TRa0o$)bX9yVef%KpIc z^w+OG{Ns;Tckkb#O>F(E??ymk&r5>8zP8JTVaP4yarx#dQQhgt*`Om3uAAe7{jWs$7oiTP?-oI73I zh#(rcFA+FC@;5Q)`*oY^@NWSs>G(yJN;O~x{jllq2Zz)$^94Hs6u7C+A(`D^cH zWc%w*2c|+*uT9PrX{>kTuT%J#&V=#tKwzrp=t1Zx<*fRHmLj(@Ks;cW>{1x%>Az zg-$D7AE*deaY;p%@$t6n{6Ct~2{4Q$U|{DJ7`B+;0*4m3Fe5I!0~T!YEtHH1(M8Y{ z#S9@jUm_%kkm5E%@N%W~{~aMR`yL_sW?e<;l8rOo-rcQvg=3wIL@qu8ihS3zG7KgWffc9?53n{wyRIcyE}dAjJtnY3n3Eu zhpV-edGhhjG!22?_I1+WcGTg}I)8CN8C^8=ZJQ4ZVHv~KB zy&-(@m3<{+sglKo5=880WH=}4r2qvo;zzr{jydYv#%$AI{h6<#ZJf_Jep1%iXS z{NCHnT;eZzQIfwbP!~n2_<;TGYr-k`%v)J1a~W~k&Y>4A(UPesM8tcS#QAUpyJ zMBEY`E>fiimcIF)SsL)Zd6Fd-QBbKqNKk2YOTQ=Ze3cltv+jW5fw23!1J_zK7*ly# zDG3XavOE~<+kZVNM;?DKKWV2A29wqT*_@@h98mwgBubT*RYWikCw*)oT0jO-a&WOt zV_W22lq~Ui51?DygX0m*`%{~Oco6+Jcl8xZ!ngM1!wznQ#K!TGnP{jcbm!p3?7fPmL(rXERe^*lqpe=urrB!F?m(rq&2)|@Z zHXy{o1OnUM`_ zXx-BZU}hq(Dy4#|a>l7_NL3_l526(hUS`BNQ5D$KC^1?Sk#12@w7Z_zqr5PW> z|NZq(fBEZ&AD4gFlaSa)M{TJjs@I(4yaXd-V8>vaLZqddo95G7-9ljTB1`^$Rf=fW7K<@gc__wsT(Wav z1lYP#9GWhX7FF?#G!c6}L0=H(oT%qAFau6NylDJkp&_EQ=izp@mKE;2wbelavt{qb>&m|VX|7(uL{HohcT|0f;L+t z!0z62u`C)(i*lF*-ab#%r<@WSC`iwALw|pYMSQ){tvS0E?8;RT&{6Jy6qu##ynhYf zLPGuFBM^Ug?TKC!h&o7U%r_9bAqfWsG~I%0JleyYDWrA5o*u0ataPujzkh?(lr>@K_fp)q0gYbOiKKKj|B-)|S5PB{=Wfg3eDRG2i!-N2wFR{#JS`5_*CO<%o0z)Cv8N8 z12_M4Uyt><2qgtc*wE2g*Y(G`Bl9nq*TxsNwU^I_f+iR~^U;7TCQd3S3Hv8aoV7bx z_E>yhqRlVH)w{C`Jb0a7Co58M?+Y|M>{x!IjqH=cU|OJ za(!$&kj_8H!e9hSUVI!QIp}Q_%tXqNg8aintoDD&lJs;M<|#EiAr{2cClQQpFwncj zCrx1-vXNI<(y3g=C_7Wju6Gop=rRWzDi;RZMh`B6gZO^{+@~@Amw|l)6qgyS0~P`| zG?P*IDSuf>ljF7(zR#~vIft;TOoSu=E;+?B72A`O%cGpet`1s4x0vCg5LEZfzt39$ ziegi4<&x5YzypZ4eQyDkZW8#Vn=089Qi@8In_c@ZA?on7;lZyzy-WSR7&gYUo$t5r z{_>;Nn=}zsQl*>iUdTGo6nYpM#7Z}L)!R4Nwt(7SQhx5vhg z7I`n#)A&Z5N|9=Q;o~Eylva_m+edS1MzIE**nbC8 z1;XSWxTj;^*{}8ZM(m~M;FEdcgHPtU4|S7lkO3VxvnfbfVsZyno*v&$h2YesSmm@*tQL1wkGJ`~2xHjq0b)G>&jB zCtPFN&zAzLObHD+_cnpU?l%Np9(oDuSLn-%TvT}K9DsFqutPoG+hMo?hBFjqGN3Ti zn8aEt12W4ZcY1JRJ)XSXV54W^czrxrCO_Zl98h)g)7~G8>uYIOmm-m6K!4>Q2n_Jb zrv%*};}GPj$e}b|pblk39drRgx)BN(PBNASo~I6!964FT6!^gt72-LoqFHATV3=77 zf@eg?(046QAt%H-Nkd{mCSJ7UwM>ko+DE}fwxO6KtwG6)=uSm>j_zac>aVN84Q7ye z*w*$`p7(ZzBghZrG}^;p9e+}3m5LN#v4B(ve|wL>upM~*7F_+%G(BdF7Zgcj4aUd0 zSmVrh6Oc=~8pJ}!(58Ak@MyJUrz#VfltJk~-BPsiu(9Xo&Oq0KLj^83KJ4=KL2LR!xhZ+{FXLNe+H1PQLx z{%zAub8K-g(=sj)YQ-81|33w=F>XB8$Lqaka?UwfUizGqm8my)USK)mwa~~7eZvG4 z7M~p;r5|~GHh@2eVwjHR0LI|}anFZOt0-t-!^v*NW|%fqk|T6gQbeE_cY7E`7*6a# zSm{t4+-bks-HAFpB!83JfJ$6(@L+bBJH9*({fXLape;5P(e4DfkX7du)?_Z9&zZF8 zc}hxUbi1D*z-l+%mDFA(AmVh!uH9c_1z}vsS!!oo;>qOdSBzWK z5ztu296Y!K+=uP}7lK3f&WESWL|HC+Z!=(4M0*;}=ZKm;lYgiw3QoWQirf$1c=CcA zFh5~dlHejslK6Pt@53pbeL=w-&jtgh4dGnss9fwrmqTWN zMq3oud7l7NZhtgzFpfk0053oQxy!n3UURt?uXrV4Rxoh>5~-qY8gT~35i}f*x|j;m zyr&s|sTu5Z-JhI4X4fA>ZpOL4^uhJj6AZNk-#jb(vL@VI?OEnE;J>HN?gf8Z*sh0E znv|lN${8v%*vBi)(yZ>WNx`0%?Es}KA}|P$`)Z2`lYgu#t{{k-ssH7o6Vkmbazsw! z17XQF&mk*Jjn7ps5aPL-wo%w%UY`Rq$0*l&4ooZ~ek;b-Kv71m9eW$-kEbqN5>VvH z_dd5&m5^n55g)A?zF@*CvA~2jt3?7No1Pc2rL_M!O^F@Xys-V3)6p^IwxNfC`%;k9f6#v_2?@!Lr=fFzv;u;O8v>+H&%KwfCi5YQS`!(H6AXOL zI~XoK_*nqSR4HXXZ?JJX^TySPIQs^WX*@7Ff?*JfVG;S2nRhTtPTsja0YbBRKb6!s za~}p|tl>i8`w0y)JM^!`)Pb{+42fGp1;cUu$bYMN$Dq02<3=-3gMf?16AeH3Qq3#^ zx8mxh8Lt1?Cansgb@kSjnfAuB&1)CtivusO%UbFv7by>ImB@2-qv&Dx8^SLSon4;eG*PAZBZxW6!#Hh??{;-aj7SZwICm4J z5`T(Bn1R)VXP*nLCdaWA@dm{P1m=S^`|s8qUI1RD4sV8TU|+jq zW4M_hQ(U>I=TPQB`U`k<{XKqa|8@@@_xu{=BAereUbU zE((CGP?s$&_N|k>PYVWcTuH8q8C>XU$)2szGH+bT33WL z`Cnm*$i50?Ze(+Ga%Ev{3T19&ZmJ< z479Z3Ll5pT!OUX!6wLIkC+K0zbX$Ndc_li@{QIq9k+LMK+smqGY+LjvrD-?O!+a@Y}yWFwYkQV?5#f`1s);zh>EnrHM)v+dS^4q8@jf zr|8o`pRDP(v40RElK|qaF@KKWbZTc^MtdfP^giBW1ENtv(V#Mt^8JZfIKK>2ci-rX6Zqf8FvT zGPJV?p>@~N;@iQrs34e1>M+vh1fDA+)9<_fShug_)ytW*Hs4Pg#CL7tZJaqJ_C^*- zHg^iza=76YHgQXygImxgS(*ly0B!CPAe^*?0BQZo`6Dl!KVW&~kJ9-Ab}s&a#g#wa zaz`dE3V)20Z-=@;-((VeW2&>oofX%xl7UkSIK)Xu-PZiU^Q6dm;OhESQ6kAo7I>bX z*5t4(5vdwa>)IW-plfwQT36jMb~eXc6bUQU{2PQsDkTI!mJY@&bBX6^k~6-^(=;h% zaU-7scRXQV$^WHLr_1lAvhG`XZB^T(;AP-Ql2vD@1Rvg$Qi7XCj{lxJS8SXB zO+d20Vp#f|?LcWvNNtq}CT3L)Uvj1^4(|-s=pBD8oP~--yYB2h9@2<8fifu=c^4SS zVXzCCM#rNlFA_c6S$e)W^npUz9)N8n<_;mC+Kz(8K#&SZ`@2Kt+%)gD-SiS5IS;KR zSLLj|;m(*qw7j&J9NH|DdMf_3IraitqVo8QBEbud8NzzKfTmE#HnPl25oswVgeL8WwYi29C!}BHg`#QKfrdi+XeH@PiQ&a8U`{y@rVHiNhXr zJHa`-5eC`L{~pYd@LB`km>|}0GfV@b&=!9R_;YVgjjqhmwD!kvA|7k5aU!YeF=FTH zcU7JH-n3N!irt=e|6E5V*mXmW{Qa%!HA0u4=it-T10;-gQKc7ufuKp2)N@;bOiI=($fVP?uh3FKh0kYelH(kWzMmUtrVl38LEH2 zexX*3!cyR*%L4+WS8_1!!D|7EZdm=^o`OS0A@Bv!>%M?3h=9vz$HN2TyA8F!1N{-^xW}; zeXX1=gpMTv+mV#fBQ_J4wB5nW>X;6u%3 zNehq$LCih9g_mgnA1d{Y5=e7Ygp>;^qV--^bpuG&b>>3(z;gM1RevS;L-CD(L`pM$ ztNwcKc*4F`e-}cRz&nk~B&Ua`&k!qpH%<>_BGkO_PHdHBfpfXH728YZx~hL`FJ&3A zEWJveLO`(rRSFL3-Lfxm#}oFo7#NDm=~%pSwUEC)2k z`Mi2e;!aHBPQD*^*N7%W-Lr0Ls#ABu-<*x`H=`B^L)9_@foT?jz~KNK(7gd(fXC0U zZ+oMy=g~wOXUOz=cm$(MXaaw9ZBQa;)Ho`X9PlNIhOXKE>?sF5t*gkb+u%9ao{t~6 z8-D3$IkDhQaN1&|_aGvTun!zhXpdVtc6emd>y5Zj8TDRZsV)5;bah|Ytb{v_29&*S|Hi|NoO{Gc+vvhTa&+PNfZgf@SnI64DVG5X{BBTsR|1BH<8 zYkL4;0N=4t%!Ijp=h#Bfz(YJ2u$Vz2HAK{Vx{icLj}YD%qc1+rO64LJf3L6w(EO@# zhkYa3Teza+i6|A!n<{^i#Z6q{x#J1@T4`JeUEm7PCQlSS;C+jOb$!<~F5ZxeaYY5O zSh-31>^}CFhj3%?>ajRWiz^rb?H9@m3^D)_d43Br=q%E56^(jBMaiL}oc;2sLtMcErrI#k;vW_k$>eJV zuwn;y^Nwy`9bSLQxC*fhd-O}<905MFu|)G%fw{lQL6VCMD9q;*t?5?8%cAi)=l*&d zvB65g(~YlS)Q1$dt}S!ADoF=8=}JtbBUeYnT|HEj`KqT~(A5v;z|#3&G75Gzt$k`B z#o4W}CB|!=!H3Je^ZIb8_xAa#>0i3_%lg$(U8sISlshp6+{P%x)O3Mu_S-&PV*;2W-E%CH9Ez@)rrZOs0NMUA?4uU2Sn(oC@>>!#Z3+}E;ssj3 z2?AN-dWC2uRTsxb(SPp@FIsA&wT&QHk{S+YhI3{PO*awzqnj++B%G5>q?_XSCeo|@ z{l*MF{qlxdxex?HPx9UF%}*cVctazSMH$`f_P(lJxw#GAAM$Qg{Wj#B2Y=#v8wwEz zHwRVMX6fBj)nnC|$@}(r%$su9hKwZ%3({!&W%t{gpLeqbF=MYZ6(xVPRrZMwgl$W!0-m4DG@R=yvU{WgM@ z^-JVYOt_HFpRil=IdoDBPugy*TASq+8pB1z|x!bZNcrxQs?enP~$(r$@P2P-9X0iE@_q~D`e=X{EP%k7rJ!L$Pxy^VUC+-Gd z$)XyD`GiqykK2$2`F~gyd0p!}WPv_vFj9DBwcT8*q3Ej)E_*P7`7l)Xjk!P$iHbLl znG!7kcmZzUWhzs5QU8LYO@37Wt-2@)lhldoctFnSmR)G<-y_g@67cNYC#W<;W^jBe2?ZEG?~{`bJ@FNv&XxKF3aqG_VN`i(CM{N1E&VK3RsG z8-?{fVl&6_u$V+dBytUlSjXiG7Ac9P0REE@WHv8h(MX4$_$n5cN3^14uLKd>FqSO1f!v3}sfsGctV&{cJHwi}(Gut%wkaHrWEPknbZO{T*xPWP zLg~#1Fba{KrY8tMZ}A%w19kir7+}D!=4cKhpgHeLd$49RaAHwolf*8n?59Da^#Mbr zdSh7PRR-KMQ*8W{JFnBlCB+QFIn&3X+s04_Y<~?9kg{iqt7EywXrWxN-$P3PKsG^ti9ydTH|%UUFQr*qII z1gzY-gwV4R1I+ac24?#nNe$ZEj&q~w7yB&2(~M-v^0nZ_-Xyt(*Ldia#eJ`4YsTSP zD}Mq80NX<)G%#_m0GG$%Ej-emi! z(Y4JgDyQCD2}sR76hG7^rtP<>BQrOXI={80%v!430$OBG>Wm2m+JHUX*e|?9)v*|- ze)h#K+Hk{vjY3p5=HsM6=MKO+(u8vf$$!BW0|-mDPkw4`kD#p@HB(wRVWZ8h4{tRc z_1+AO>$8m3XN|3NGpPJ-z1x|AILyY|9?cP-$=u2al zxgMWl2nkIRZk)#%#Qr6U;iN-Pe1C;voGU$}PRMnj(K#Y+ReB}!_7v7X|G4@1x5?k% zTkTJ&zFe7w6Lq4|kKBpF84S3gfT!Ne?-(l`dg5!`=}hVA?>cBdB{WGEb!2B#)-TK# zID$+`oXFQ*zx0~)g>G=Y`ig<)7uPWN>h&E^m~YUfSsYxOA7Xy&ADZ;IXh0j#I@y_e zz~l7j5evE*RihhqZEwe*yKEZ-oS9*Dx7yXXc-d1&{Hwj)J61>Jhjg(sV>jYm z{|_f^E-;sYeFGE$IhS#X0TTlj9of&D5+s5^~e}z66Fa=ms&cUk%TG)=0 zIEWiJyGTFSMlzXbrcu9l8A$53}GCF8? z1>T6TKh{w^+(^6K&UU={(zZK>o!X**73+N|eI_fb!^U_qh0jnF1m zUQmfZ#jv=AWP!h|Pfb;zv?CNg3qHC^@G=upIcs4dXst*xOjKSpoh>T{I}zi5awcL# z^;o14LbnIEdO+SSvi^kuww>T=W??M@_ewXRZj1@u_}goLTyBXz89e8AB7Ce6$qe<1 z>(yX-{dtkI%BC9YsT!-qX(Wp05==xAISIb{>fMXmZLGfjshhUss#9 zINHW`#TJ2SurJ$=x6v%{xhmZh2+rlzX$tbFjsYN)=2^?@9T|#>!(Mh@{)QfBT(AI?-U{%4g`|V%XQZPd zEwoe@q+^5v3CyI!#Ck!13PR$6gr;KfPjUA66e#h?HnpbQg zxccOM4$mm}TlY!v`Dm-QtSf%~5Jq8J6!TmGHY7{}DFcFY7F|de4tX=eUdU3jBZ=i3 zP*G2c7LicAe1A&>v#ip8P^2?az4lCee9qo_wD-<$RW#=X;N_1liaeQe?|8m*@b?M;3;E2&F0Z z+ZH_`OPq<|#>1|t_yhJ10QppkhaC51=Z>Z*UN>9!YFkEuTe_ux=D4TD${ ziQfWVnx=G-W{Potu%&}=HXnV{9=U4COERVHlFC`AuB>S|slJ6Hw-OZxjfv< z8RGJvv5YG-td7m&42wW^BOOP~G(ZMZXc_RZD}5ftR~7+$;OifNp)e9C;mVq%vi0>M zT}y6R&=J46BPqw=qADJiB!_~B1QDAocy0S69x7iDgisoPRS53LGD9qaDuxe=xpP}Y zFm3@yEd@n}T6Yrp20)HY$!AhQ0UHlkRPDG7lYu)QDJFC>j>mN`8FrAM zp-FOD2RF8@E8^>;D<81PZ|+YA&jaBdo0?oTM~eo3L6d?2bFe;rw(bLEOVwM+ebK>H zi;Wc20f~xd#ow}EbestT9W~1)>t*xipI==qo3h##pP9XxTy!rN^FQUHom`-X=w)KA zlSu{+V6K%(a-B?)P{gsE+RL?ZK9UP@9)K>+!-@@EPCF?Cu#?J3yoXok5VDW=cp6Kq z{>^=V%JH1;rsAFk2~f1YSPJg{DVll%QS6@jF=#Zf;3j39_Is=s89FXK;MJ8LG1F;W ze?p5Op;F79LB*Lt3>dwhiB_dOOfC1BjRMt_iIll36Y)G^SRWiv0qnxfGr{f5T zQ*ju0Zc%92m{Z=Afjy9e^8TTp6~L}Nx@2pA8wY3^t3xC%N*Q3czuJ7TawHoqqs4+L zj=3U1H21x&mXuXiWmnq$w20}jeu2Q}5|k?~E`~nm-tTVYb-oSNCFJCTCBe`OR(>Rz zBdj`xwjJc{d#o11bog)>Y^3R=jdaB@K7To9Co1VZ^@G%=-QfQ}@ZZzRzWvORaCaNBLGeTcrZ+d!>cZ{&~sY!>MvAOo*5viP{P-0mNRbDb&e(#$RV$*ExVeOm=8hg zyzU*$Km*i&FgO^XjLQ?r6*c0Vaj;k)H8k=dg`ADcBt|3sLVHIS58cjti zT{Zt1BZyZakV?r57 z%tVz+MXbT@z+5DRp9^zDhrJo0FU=8Wht3ijP?HGFbieL52 zCAfx<4A%ern*<{C<035CY}1{NbVAIL0>RXs#~GEEJY>RgD!sWrJT1+>0w!M_O&e0D$NvI9Db1IG0s#}3xJLsIm%Q`{8<%O?0}TQ-GncXS z0x5sRT3v5jHxhmKui)eE3q{Thzkr}X($u?IG*}}J7TwMEL9vBIs4N+hT%`ZLXLv7_ zCYIz_S5|-org(WdbIF-AXNL5Y#W>?78c*H?C&q`2zuEYL|CECvE@+f!IFR-f6KbOr z6O-45Gbz_G-V|TXJUdM3ShNcxyMYT||nd-X%t>|?e z9ux}NVnZ%@l~D{)H;X_=!7S{ZA<6ZPY$*DoEqp-?QJdeJ(cKR*`bK&|18*x#ek~8A#Q}$>j)rx5{!td6GVr)a4gtPVNnSY zJC<~uI1>^+3VjK!peqFtA^Z9UnNaF_3!CUNHj#rfkz9Q$CaQ3>u<_E3i)a;HsSr%W zgxZHzB7KVKW7geem{csf_i94PtCfFoNG1{M$_GI!X)q!SS+t6OY_bF1l+G@qc@YQwRs2sumqoDA`26O zRf>&RY1pcTZD8DU^X!=!U7CNN}x zGPMV=gp6(Ne!wD9ZDQ8Z#d2|VIl;o1(Z$PiGkQDuv^E=o-TGdPKTLnlMn6LMWWHW0 zde!%JNmq-z<<(@>AzJNwJ-MEaUo1X#3m>u7sSuX+V!XuL9ZuGPb=Ou9Tyaxx}kJQFj-|;9rDal6QW{AZ`0?NRx0`??u*lHse)7!~xI{(s2 z9xoQ(9YVB%Jt7h7@Qr^VCJV27N~u6WOA4u0L0+7<31AlB8VEjH1z%2YZfBGKJ8?fQ zZf?f&>wy{obFE<4nhtfj_sIWwx>_G$so7Z%;G@izfTcmab(x<^A|fDc%5TKhkK7{? zOMAPxn_nMqnf04}vQEQ$idH#6pkxc5N&!#~t1Jvb)fSKfT>^iEGMhQ=(mtf|upSyDlpgmeUs^-@hId2ZUXs`hVvUen zmtE~rGz2_s2bh1h0^v{B)Ae-zVX!$$;u>*;!BnEEB#1hvRYPKiOM(@Vvr6=&kxNhpCqfni2!lq$G*Q>ke|U1qgqonO3oI(!INK@$bu5zi8w2 z;(9U=C{uwsA{7QeYU)r;6owMwb`{=!tnPu8T`#9s>q&K*%a4=UY_NS&CL1(+&l=po z+zMOqG(e4NoQ=vKY@DAnfP)Q^=)OUc`!<7QiuVn&fjDijyP-LS!5~fn)J8LNkV)5p zcr0Y$R@;BAayh>0F!R&xc)mg?A8ZN{z)7L!5=hJ=tklQTh{q=*hN)u)8*G=I@3u$5haM|g>L0esBQyF?v zlEY<-E2YC-iCZY)&^M&f9*%=u2`oH#BjS)HgNzs0FcJ_69=T$AWIA>Trb9dyOv{!k zx3Yg6B1=Ah2O>@-gW#01NQP2#tTeKr4m z@f+;0h6i}aJ$sCFwBpZkKss%)$Mk=#_PC`q85>B)*cvS*PMb#!w$o-zGv2frd=x8I zorAJlE&Bu9yqKuumdXwzo@<$X0n_QJ{%XCvyILQ`jx?~>+cA1YL8u-9xv<@Q&!@A= ze0+1vGLohmDFb1>B5HRM0!J#o?5Eb)Y$yVtJ#Ix!w34Pd2QVhUt7^pEk#m1MsVQrQL_fPo)L}Wc6MS`DjzO8bry) zu+w8S8=m!;x9&ZgX^xnX>6DQSOh7@r$!&uREAo&cg+@BZ1)Q{{*hRd(Fsd4o?{PHGYQ z2rM~wRF#BmEL{bbvOKY1NVIx$GiahL{V9MTbqsRK+AktTDq(}#fx(5`$uy9t>5yJC zDOz&gTr(+@Pjx<7FP5;?TaU!i>J?-pwSY`HOoNI7nZKd*`_-V}LB@XpM3176f2jn2 z!6cDL=P>N{AeSvnvJ7C7xv|933c>9@A(w_SW%vydy?mf&ib!>0cX25&RyJ)f0>7Qk zu8(}S7_38gpRtYIMJNXXbo(tg2*LxtTU_pXI z$URt(KLPeT9a;)yZe*9md;t#vG%%MT%mEVvGchxl0XhdMf1O&}j^wrxec!L>hXB?9 zD@GJak&2&YosHulKn(A|d9aN{+pU=v+%0u<*|qcasSBywsJCZ=1*R#oRIDP4rw&Ui zcM1HHyFA%hr9`gXZhwB0P;dLR`{ljR0Nz)fvijp@>mD-AImpLt@(roRi>Uwb(n>>j=3?IAlKSNpHr7r4EzoVUR z!RA~==n#~f8`{6Y0FPlGk9HHb-tYZ$i6wp z=svg;OC_XX3(qh!tdCB>igG{nrGKhw{w2-Wcx>A8scnY(09L0akBUdy2YwYC=&Gg$ zU$s=x{i$nsq$_)`r&;S8aLcfDDf(kwoXdrElFb`BGAJ{wAj{A&@c$G3X@14OCHI%b z9-ofXb4$f#7ecX>~k0qJ@YgIpS@42W>7#jvQ`dD?W>{7H~O>xGMF8K(6 z=&?B+x-eVGeYBX=)jUo^TYF#mQ}c5o^{Esne*;mS&7(Rt7}c@Ng-tVl@7?`}zk1Qd z0U*hQWgf^FP|f?Sl%{_KL#wm^O*v=Jp>2&*Dt|*5()?CDfsczoq>=(Rhx0R1Pq-RJjK}1AtKgG=bLqZTy1r%n6l`OWPgc)h+!1vWW>&ABXDHS6=^ks&SH^6O(jh zxrTI|B_fjT4?W?Dw0 z&A7=B_7J@MTwE9dOUSeYTF?iZw6W(>OT?Sx1;;KCG8;p$X#LdvvFS>`uqqK?f9e9m z+H#J?km-`B=r}35&}NLmrrr#2l+i)vE7tZAPtor@!=~mGj)l7!+^K^DHqQSQ zCIpv7-#vyrPRARjfOBm;k14sQ@@^3}xFqC!8Sw%CH0CMK4rKJ1(+tSI!!?nBHMEX0 zwL+(>00l&C`;HUbaKRjJ^F>lMe*wy{8BYC_J59))nFlNE`dozi9)Znqc72@NbRK6B?yxQS+vAElbZ*_Bw(TBIWy9E*{&maM*R__w6p z+2i!RHwmy{D=}MPO#a%5EAP!v0}+4AAyD-mP196Zl`a?Q1Yq0wL(=s!(N~|4gO@l0xub0hk2WZ{gbwWaOzDW4=kkoAKIHI(p@w|}ht)4x zLtF(!i5P|34|eb^23UNJYl=Mtn$I~pf`Lv_q<95w4L$hZbK&*CZ+YOpkf*SHg@;L_ zMegL7YEktyA_mvqe*f!7i_7L5gGlER#fNnazRt zOBiIOu(_GTe=$xN;5f}w!bj}$$cs%vUbKc_#4jPEFAjV3wH|$OkaWojftlu6hm(=PZ9Mk5={1=A!?)kO0+3-sju}h1MVT^?-#d&Q?94~xg{Hss4upsBOqT_G zk?|FJ$c(s4gsG1EEY#ivJ@f4^Oqre?sb!<5jVBtGB^?N}|s zekLi{;_3#27QRrN2>Wv+wOj#$(6cV*dl!n3p2-a#3M~%?3l^@RMGb59Y;%JOEeNHS zIqrVjfN6xB(lNR-+sEO@p$=dx@v7xt+PBrE=f0`Lh9jS={@|B1* z9~lBG1jLh)3{{V^!nA4P0>Q z2qSd%W_zarNV&F`0+B1cP*_`ky@3(JfqW`VB9JC((z_YGa|>o${yZ`-KyPR#01?Pj zK$*(`+v)on-uZ2U3ri~#vxK*6$5{$9-^@6NeKKtg8XyK%L zf1wva`i2)K0WZ|bi$^}acyE+K!RWF$$p!Ai_?d>_guOP_m#*zK4x3w%CgVK^HkWpE z^FjpaN!oR}l2kXL#=c#ygzz-#cDXVYW~%6Tmh7pVkrwun$B!Dmk#}d0jE-}Jpdc||Dz*?HkA#_zHP`*rne^+ZR z6OhBuO*QcO<$78Hddc@r%orYsb8gc({9>uiHj(@B+(D2nT9%Un`yW^gsU&w18PEFr8XSyPdTnB4;EVAS}8x9a3QEtwB zbmqTvVgG{5!gDuVE~ko^i*lalqgbFb$`YNi*N!P*xLx1Yt_Ag)&R7%Ze+(Kj)e@9+ z0NZjAP1h(+Dn(+{%jVb6luL@E5*MoYiDfuT+?>iJc0pxe@XXg}qB1ag?JJoACnTwVl!tgRS-Zw4N7U~PM zg(MsP9siR6UE#QIz^t<9Q>?YhG5M&m+IF(2Q{~xL6@1|QzMkc>A6#CZ?%)!mCfy-t#uj71*j za(4IF-|B8TyN|9`#jbUK^~GFk9VLIhm>ZKsw=1_^6X?@LrlX=Ri-+}vjNHXsM$N@s zr7_H9`r`B5-(Fnbbp#|zJ(E(zJSNqSNVS;}QX3-m)#dG9f4Thd=2MKvju}f*VP|ux zg-i(jA1k*79!wn7?$On5yKu{w2#`^`DjQ@kkAA&K5@yd4virJ!14fJOvZ3#`;@_2{ zCEH@dsMX_Ws$sd|Tur|LgtLpf+_gwMh=3@SMC#9R5|>LLS7lLKE(%y+K)!G^F**>7 z)xzc)w(v`Tm=uPT!T^ME{sP;b4yr|Dl#4TE!GW>9?*557xCaR@&peuQ9{Y|d$b+ol-M|W z`#33+SQz_!k!Y0%T<n#T$tD;#=`PP=t2FZATv(pNW*lgIr1GM1ZO~ISOuUATd zJp^806`nn%pDQAmhj>TJVV-*2BJBx8;^LM(^KvgFo`mMr9(472HG&PDPz_ zY>Ykcp-(xs(WXQHjBJAkBhv0)Rr`7y3_g=W;r4y;a;jjgj$RQ{X4Yf~18U@nN5L5M<#&BE37q`#|Jy&mfA{Y4=ErBb=sQYC((Z2I!+I_0k%9An ze4C_cfa1Qo#lH2{0JD_efbS->YTpvvTM58BT|i)1`jYHnzg@egVSI9$W9{Os*eK(L zg}<~3kprIv{v$srGr9Zih-ciQ4bUwVtA-v-hM7yK-4p~v6>`dnn2xWdQzBBf`hdveGN1JvP z8BpUZG9;#;pQUU3Mb&soq4WZOxVOYyh5#kI4nVbU2(UQfpF+CHMXrX-41&V*w5X+jh4DBKJ1I|VA@0b5JZ0cVGCz{+($jFzdQWq~cwwQ>Q*i(m z%M}qg2$c$*<-;qcE=tHXjSe2ZT+-*%1pwGzK#E4|yMf7JeS>mag>0HSd6)&3UCn^s z#g=|uT~m_}Y}fgv4S7Tp906|W!m`r|#j%!{1CjJeN)hT`4R#fOsC>kR5$S>sUhsfu z`k5c0jFbTKqsv~l%1D&2^tL&Ow$B5x&|PU0%In}9Qm){!dImbHLm~Yv3*r4bUa^bD z-GU{dvhQ1SIn^ttkE5}N`yed^);0;oL_zZ)W2r?Xk5osa>Yo&yZvzf|rVWm04aKN7T&?gukZ`v=hF>QW* z0c4>PB2n&ZvDvL16YE>P$fq|B92iA-MePW{np7?c-cu|J!D%AmcqBpgAjwqcC}GP< z%*pPJR6=#ZfE3awTGFg4YS)j2kSQV4F4L|;b^%L@a4hG4kimjHb;rt{^bMU@gw)2! zeAqasxGSRsJN}kC;z&^vkcvF5{ zm@*9=cRPZ0q1-_tdOf_uCEFTYuX3-hH$lqy>|YC%XTr zGha+To*;LJ^sQ%E)Zs4<7e=0LS_IgvNE0>TApZXL=KALS^BBhm1|x@UPnnON5fFi& z5pdFfKO-Efy^A+BvU3-dx>WzPp|jV=N%S447a1>uE!Kch{MAj&kz)Z0294!YkWv zy^Fj5q5S-xsbeu>3q5Kcpoh*RhrJ9a0I5@d;({NY;QKN_bd>vGS-1cM2G>aAB%bV* z$xLKQjySk||MA1sHE{4pIn4w1=@Zk%e=2bCobH~FZCz`jA=MkO{ljnJf=-GnkA<>F zm!$I?Ol-ZT4tnnSgY;?Q;FR3yi7T3)WDw+%cjx-X92|4_j|lqyQbKIr9-8B6mJZ*4 zb)hO-;bqx434s)ckNd56=$rvcmE_UK=7cjcKuP!XdfF=(7+MwZ(8b|N)dRlE(b#JV z4hH!T0?5X3G@)uDq*#f_l2I)=d{u9{s%z>ZEU1hf6vwBTf#TTe(!9e^>T6(oUMz8PJcJkP)ZrZKTJcV;$Xhkn++}fGRe(6cbXBsHd~}yWc)s&VHPo zemI~1_Gxzg4$mKJ7^f_mghDbA)4mxfC3&!@H+2O%ghmJbP&7rSm+&phgH73XM1NJU zXk}S8dePNQsayI`R`lV^x?D`7G+5KLTWk8>lFbaa8Z49r_3w7;s%|XPZ&k4^7sY1t z4J8Llkeq@9-PFYr?5xT1ce`@al~qf#_QCMfi}F`46v{273ht(`_Khe|5;Dhu6-C0C ziefm+oS`dog2!$$WqF=Ex<$R+7Jt=}`B;WgoG>0KkUnQ3$_Cf-@$%wwetvd&@#FlN zyRkZ-7Yoz@tSQqp=*lf>pJt#<+0xpd(>SpR)U-lhvY>H@T)9D`tA$>kz~?Lr%8tnO z*9XwVa_egQyVgDXI4CwdJ8g8gYbs-3nDzFxJ3N=xerr3u{T{EHXTi3v>VK}T03tBW zgN1=Y8W_alBu}|Pb=fpbl00~CH-H4q!InHgK-V-pI6AXO zXMr&<96c1BB)2AxRp5U0AG^}pLsz)3qjfNv2L^e@B##_m&OcqAy?f&7lZ>TN>Zn1p zn5U?j53)H+@*c4-!BrkJwSUL1Q)gGTx1|j`!X1!(XV^`-N zXV+)%Uglpj3|koo2WkonW}MP3JEy{xFKe(24YzuWq<2=?)^V_(i+{E)?~RM#><*!A zxl%BM!QXxQL}|v9a+mbC|M(OTf~mN_`tR)#WmPoxi2e!+2+r>Ma+U#J4)ivDo@d9R zA|#$z_GrAh@yZgjG|%<{v09d0Syu)Qz}ZGfn*7RR-fBJ0hcZeasAiK`ah9afGda;w zhXZm?3Li5y;>{sjfq!r$jbssvSwxeYv$5o`(00vk(Y3b}7ebNdOybFd@bFOFo0up9 z5smc{ke6keL%vTLX7Z=?a@65~+@sf+sgVKaR59^o^2*Z~`AFK6fOX31o)))7M;Xelh<`p2gfd|%sx`!&m8(Q& zksR~M{cclWeZ>>ZMBwf%9L%sXNUTcu1ysTivR4Zhty;i^)FO=L2R< zUkE>Bn>EI7xPNIl;Gf21OIsoBY`_{A*%wuXITdccD{uep(*rWizT!bw z!V{Jnr85Z;r)ae(OXyl~f$q**LB-%pYJdI!g-1mYJYmsZ2+TkfjG!jZ46Fxsz*fWf zM-~OErhnf0gaB-(adb?GzlbAZ2&m_HZ@ZbP30zce=|q3oh^XP>pt?KmcuC4cA|3JC zR>)Lv;Sp6$zj_r~GeiQQrVil0g4}4UHA>i0^~Kq?7_?AOK)b#Qt9DHjQ${{pq2)t; zKA+Ctoqzc7qW1KCwP^Z$Whdat*A(www5ir1>k*O7FiH+H|&-n1H|;3)fZ z=WE2@x7iAck)V$WM@Hp7Rs)V%kbjL9-U&chC?)8ih!{%@bnk8e>%C*OV{$>R$3dbAg9(IB5oDZuw1RX89_u9TwYtUtoJ ztcIiEqJ48RN8w=<;Y}%j6;AVIUZR_>^l2dN9y*QvlO7dZ+i+>75=3$eflO#4V`)(_ zH7tU^M6dF0sz|(({Rl?>{)FA%yW2`P&Q~j$q=$(3E^Y?z|i!b+0A$nRZqihN2j@aZveNt@`IV$zqN)y_OjsjFhTp8wQN^U+O$!)t$W#oruZJ; zjn?Kp1c*j}-yVDUhTZy~mqV8ov1U*z7)>21lTX4!9a7s;VWteVb#Ye2&uR&Y z#Z|m?@Oji0tnTjkp8)(B8s9U$2%jfySwkJ8hk8k5_d#TJd3LjwO{uB(o>%JXrL}&H zmZ^llwl9C5=htcY5_`vQJ5g6s$FeYhokEa|is2RT7&W=@(V%orqZl`ESh&w=)G{9t zn0t&aOny-0Ho`gEhywm?q0_F(H7q_gPPWQx_Z&+sCrcvZ^7)+et7#V_S~BBPLzHcK zl$6R$7)W2G@I{1MblJY1^)R}oa^kfq1f1z$ci-jH=oZ<+E9&f3wD2Uo9i?FU{h1tZ z8{Px%k+f$%-9QVi+bDec&6*VO^Q`SansO1hH~1m^usvaH=fN`y8(mN-YKb6+$YdY8 zhaWxr33@_e`lYW1S^3MCpN1*a~F=y`$jiZ7W2g+A)iCWHG zOSR=S4!R_ZowGOaU4E1CqC$85o;M0zz9=fg_WN((XCEPQ_|2ao+kuWl)V%t?B21X- zkEx5JAjhRvp?DUk?jqFbbE^;3MbUERv+aVB?qkm`OKq&v|J07M;m^A)*9X6WP16D4 zmTT`y8TH7a3>o)kI|mx^A&H3TprabrEr*83g8TF$`#hTFrdD#|{kDoY%ALzrkTG%Ah%TrHFwllr?$#L#6sg)s)u`GmY27WzFLH2qF}oECgM!11peEdF zT;{=YGn?1LAOiBcwx=y5KHee5pQZuW1hZn)uv0mNcUpACGRo-aw)9*7*Y|&)=}TxM zh>%J@vP|QO!7Grcsoe%tg)Cy&guBHX-O}njVO?$9Iha}+G#)nz{$NYGQx$MNDgIJH zuU7XihSntu@y=l^yBo*Z4aQ+wxGY?^Zqk)kwN^$J5O&h3PfyoWTk+ z&1U$ALAOr}S6LA$;?g63*Kp?t0<;TQ zKDQ-}s{oX~VM}3`W)Ga^TV)lUbI&hISvVO{v)mRqW{NZ!f6Xu z3Kf2?^<0!@Ue&f{tOuoy$-k&TRw~X_OpfmsRk7J#EDVag=BcP(nQ=T;?8LV;43x@Y zl~@Sb@VfCw+z~tuip@SC48u!BUE|54Vv6YNIwYQ39$X?=G?GzKu?r@`>ZKPQz@1Vo zoZ4&!s49ZAh$nw>vem=DLsdJqA1Tqp>xz5Trk9JjYI;{R*|A+EE>1+zI{VetbUH8s zpKlKrht~r?nf*IaF$$p*nMPsm{tc}~=hq44t@G!q?uJDn)Sm(iNE7rY%cZD)5v6r! zK2JP0kvzKIj)djUAsKi!p}3e=qC&cZN>6Mc;d+v|6hIj|&d(E(bmS>2UUFb>-r7eK zvTv9gM0p=C#5Obzko8wcR}O&qwyDDY|i@weaM*!Z%^N#$A2_8 zCduaNx>C06l`I?~ijiLQa!>`A$W9-};wsARp#E%-*-j4!7T#Y6JIwfO@WWopc^qal zTC!h3W{VZBCW52xny<%ef|oyT;^2Pgx}UIxqMrb2K<~!v5pBWSN;9bha7Yi#HZq?huEfG5w>2pb{5fEEKMvj>Z0-?WQXA?g zAi^Ww(CS+oY{Az!(K$%D<(IlytEPuS<}}c~_wiM>BcFPs(opM2q+fk+4{o?NYSzN3X*M|;E~k^{q?rkg zIoFgBw;w7a87)7ci4K@mZWihOik?>g$5u#x zS7do^QW1a7YT*qrpHiPop%<3V%NSR zI;Z3No`Scg#4zzpp}?2_L);R)zL1TO0R60?yf${6*f2v@h9afMGh-KZmAp-FrYopf zd8v@6aK)dg*6jC>HgSjh_2^haBJs5j;-!hIngngIXfK=-1U?J zj3CKzxW+FTtyzhxnJFB!v;zqagSnKRi*{6PT*r zq+cA`yXiR9V7aRh9NL~He@To$peW@36yEPrUZ%ZUOU69+irxO+tv{IV5%YSlR2DGi zlh?zu5c!Y&UB|fTmz=WD2~n{=*l5%QR^B^5RMBU_UPGJMGqg)S)u@_IPUVGro*rZHJpe!SsBJI^Y=Mb3 zWQTvBJuFSkcT2>GmdJ`<6@(8PRJY!#*PBH^9#e`+-rJOKVaxrE=7{%h z@Dbv%p82KX2ZOQErcU#lsp{9!^UcmyS9TTAt)kAa`iOOgpKDN54sU@BXg;z4`v`4S z69q(6*vF>&YA05YZBG~J)Y^%Lg-&|Bn?~QAl5W>}VhgJX<+tI4&!yfflY6~_?mg@3 zM<;EVhOwUqN??Egld8JI)|{7c~D zDsoQSdewh|{<7%&y5|Tq0cPE3%d1TMI@ksKL{JN%uN|VPD&Ss4vwG*DV@xjSvNzQ2 zmfCjNjn;3|Dl;g-{!pmwlXeFFG>-xu)G)4h1A(Rg+2fpN_Nm4=^UsSg)-{B9`T z_T)!gPVIU`VO0!+$dJI@@?D>?MWB4lFZkUYE8cbdPR5gieYHGfZ!bYtFG23f#{ufO zaQ(bnR6Gp6)EkacT@E%Qo#L4eSEm2QY`GfbUKhrb=)Xl&f~gOZ$$7GGiPOADA|6~s0Pz0w0P{OojWprO;1!iP zQW+L$GmsNveGiVm_;@tlp~+%|l*7|?C^v-e>S$b_Lw;k%6(kKt2zv|cK{HXY z#5r8U6x|GWRObw7{Rm9}Sx%G?n$X;1opR+)KZrkxj}#*SstALB6c7cDP10+6QvH$?Hli;7L$_Xpfz0}E->I!B1xFV#SfIQf1ZXjJaW(8=gK+-phI zXXYLlvWP!i8)$Z&Cb{03C`8e24Ng2!0vlFBEMmUG&g7BR+cLD_NN~z>yENi_uZ2P{ zJhLT{Uq?IFPds?Bvlt~Tdaf0U~U&HSL zf+hYRzM|f7WGlTp*SdemxhMo$c|1~ef8;tckRBK%%C#@}cU^A>CP8Y$Z->OR(`SW! zC5xDL1PUtK7GwgN| z3C)$PtmRP8xRA2muBw5-sw1^J13Z`APuN3`JLej(TLL5|$_$EbQgiTvP`-m3Tm#-f zbX0SWRb>piB}&JM-(w4&F&N1*tlKZ7OREp=1^`%D%K2g<$rhOy{}M(IL~Np4M2m6L z%yOi7Lq0@dviEkntZfNw&Z+0H;H%-)y?vgc&1Y>@=~du^PVkxXY=m)+XWh|Tv3IT|RXY#2(XuJBiZLr|`eWhf)K7Bu)5yA8VqKVc zkwTPl@n>c=Y{wxYitM^yQf>d`w5y%=X%RON#h*4G$ zHAyN+%pn@c4EcAA?Rxifv6VQJ!U`mHm!1KB`8t50Z9oTJ=+O|h7}{!@LXR`@X$;f z0kx=c*5CA>_cdBKx@+<+lHJJ;dZxK65KAGVA8IizkwhI5y9PVocU!RL{X(isBXj80 ziY2hAyJUBSsUc@KgQPv@k%~K^lF4xqL|1&zWcI#j4uRLZWHv8+9-1)wz$A-I$6mT) zhAXy8gQI9QeTihgSrPSLRW*=*WNvX&QFn*L0wd<(s_r2P>IGR0%_d;9&r+y0{cz5I z79rqV*9?bR+7zD84`sn!>z%ljD3<+wsmE?AOFua?%}Izi8B>6LA7RFyK2KmjAR~#$ z({}*mMyk3#Qs?P!Qz3*<;2%6v!Q;{O*9YL-wB+TBI&XmUTT(0RgMwgzVw3M+?TJX< ztF|0{DkoU!{{Hzr{6BRxpKupw@2IYKY1g;}@wDrp`Av~C;Qcycq&m+fM-EDn9@U_Y zttb(@XXkwU3sv*17jKy*J3CK+WW3p%0Wuv;D!Xp8hs662(x4^I?w zhP)X6;M8UJA2eX(< zG?SmIk%Em3isA4^yJWv>c<2S%yL0o+eh91b(xpdebMg6|%6NLc_34hhP39j>PGT%^6)C!}(hWt@nazjmk zPv}MBl@?p{wZ+%O))HTDx!coB?QlEOVwV_R~0EY;YrS`r06$^#AfllBd2GLZL*(Iu-+ zjy*J&Sz-TL$JLZv)tz*i#FZG+NYAllGk-FtmqaUa0er8BzNBSRUP0=GOUyj7 ztORf+ky~9@+$#-mVe-WU`NvU)JXkI1(rT&95U-*Dx1rIIuBylUI;PpW-QG@%2i&s?xMcFS zWr?xw!L`j=z3jQF{fF6?l9H$*W@X|Zg`%iJ_dcv@DqFYe0tWgRSJ}Nk@>IL<&fDxi z8r#IS&pm#MpH$M`Et(Tvb*7DV7Sj4OLF@gq#K4G%P6PH(Yj!sLTlV&zPl$ZdY`!qx zLbEB6{wM{#Udik;{e>eL%{GkUSEIE=^=KNe0xs)v=7yZ!5YnfA3i!jv6d3p#C3_S#Gn z>#`M8IRKy$cl4bEro@&soY3GvpK&ORG5(;R+Et{ZJI6;7+1tc9$6|-B#^h8o zBQ+^0ogMLYLm#I7^k;x#y{-&&*#^87E+~uXV}Oys2=@^IgP2+Hr*S9PBlCwQ?sQ|U zD)h3Z=7~Dh?p(SS+j7{5a$EA~G zM@WWxVESMpD*VDkxi ze`#k-F01grTqlL`I*H=QFefDIz!=L)Mxyq{GdQ-AT}v|Qnv7x_8W1JH(a`i;QUGj^ zp0SL()NOIGD)#FZ4Z0kEr`9E6HUo;Yi}vpLD~MH?U5zA0p+eS1SQUbR%uAMIgJG~d z{ut-6j|oT8G5p3eS&8z+4naR*A62ybbY(Ic{o|v0XtGf*X?TzF9S67vIc7u6HvI*^ z5?D*KW?L2%#LM-d-0YOhdhM(NjDChM=G3=y9%Rj)%oGhZh-EYqnHvq zE``_K9u$tt=Bkn3Byr&!;ZH`lHQ$hZ-WPg5&JDFk)za49O_g`KC%~!ECzlG5LV6r1 zr?}r{C2p^MA!5%wE(M}9Ix*s~h}0G-~8(rHz6-U@OZE4kbx% zEEF?f^QQ?eKqn+J5UL;-q0tcV z^!fKZQdic}WGprB7Rqt(nYb2?Dy(%%7#)Rb$0&Jhlt{PNw=w@pYo*l&In(85S|D_k zD1D*+=n>0-cio_Iv?qxuvi0@X13I<8uq&afnFQ6q)H0)?j_2t_m5PM`L$S0G`}4yoyAkt{I-jMb6G<%l!hfj!B0+=jw=lQs-RClcXT2h))esAsCIU>hPV)afMo6Ay_BDR}Js~!WTc#*(41efTs*zl(Z4Y zWmo@qCZvBK_#7eeLq}&a;Or+i6xO~NNrEIS zwtzuz`@c7$KE2)^PoI-yCgCV{cV2*g38cH^_}AEF74q#|4_8`%(41wYYZerCsO&n6 zLrw-aWRp}Ft6;f%v%v}~YYf{H`O3tQ__?xeY&V-D@VGy(MYd@nuON%h6y=%f^*27!sV?$`H za>ti|0JeG?(P?AUshzretYJot;=!=@y=5>xc3Y+ReNR9VKS(}t6$Gt{bs33>;8lM4 zsvg7+q}es@u)~*dm!qS2-v>V^mAfAQBGoavkvy~B=#%N?smV$ssq#;|HO>l^7G zr>LI2G(#;R@XcXADK``UJ?KRNH-9;kxF}9oIw-vWQ~QXm>5B0)eBzE?KuhzhmNH~{ zOFTq*uNaOs811i*hWRh+%&Up&*7JHBlwRyH0KIc;#I#rtdyVR`Ll#`Se<&TCgF3eW zfiW4{?eFxUAXvSy`(7%f0HHahmqP@t=w3cmYd?<{*WgCbc-u(2&6JK26r~8hH=;0V ztt??tVwS0l9U~VRA3ipGFq&P=$yxs3pbUv!DyU8ZdWsr(y2k!|V}4j%L42W4aYuL* zaB&LOx}9wjQO~S74N?W26{o%~-KmrC-nKK5jskV#;NRi>_B%XK+8y_!acbQ>oyBy` zQ|0H#Znbdk2-e?G4a2L>;a6nW5QI>M?J*99uebpm-d3e+x@E09`oH|Dm|7JZnDP!T zi!sZZ39Y=&Hu2GV44I5NbG=IQP?AE!fFilx`+dFcvY)K^llG{s&5Jw_(_z>9Kk>5O>5AMX=GSZmfjpu zE5}_03tTDlXQm|xd~vf@sBypA<-)E9YC&W1en6(eJQPEoV5~bDd~BVtU`_=;02y!n zT$84>Ba--UE z*nBGQeo4nIbrAtt%OlRXg6mZrfV5tE?j@5U(DEmSPm;)Jw*?!nXVXa}b^v-3_INJ% z9I~nuPN4~hP~=hq&3{155qwk?))q!s4kz?eU>=cx`rL(AkWaFT^@n>% z3yG1N6-gx)$CCgPUDjT*BVMRS&!^`@&lxm^4Mc;RYKLZ@p36a8@Q9Wj zI%sk>G*8CM191@o5(`%Hw;?4j(l*~m92}UiQd1RKr9`$ih-847!5ABQ_4&6)}gKm4EhV~s3KQ8C*BSdMmN(4pX?M{BJ0aiA8 z9Ny}>+CZbqG}uv3*HhR$q}CcvS#~#!!}ASxmvCTHy)UQF>>nfqvY*@OhF3=AUwG=Y zZ@Q?w#B3@W3zsN!#H=he7&T zjZ3Z222>gjJLJ;@OOd`N{#Tl)r(Jh`Yn#s*>5~K-j0GhPy0)mY2&4s3U9gT-R7P9E z>uX@lW{JP~#OVwr+uc@|^vBeI>zWiJE^;S?l+4&bAt?S#uwCdnegg515+MHWHD%?|=)3N#MHvz#kQVC3!&p*gal$?m3%i8qXz0I5P zY!RVdvZ5WKq8C`@zfO+e%}Jugy#1SGig*BMlAfay*HadKzQt_>0&mS&97*=6BRP}k zZwRYz7upy8Pa4)lL?TgNlN5;5;`k83eIRxS{S7_WofgF(RDN;DQ*xAMj5LW(+YJo2;DRzeB&&I1A0;xqOQ$?rs++1FYKrnTVfF{i4?Ff8KV$SH~ z2Z`aJn~k{DZz|XK!oo}C?)~(RblWdSCt^sVpru?M<(Do73A72nFDz3sH@-T#Ehg=a3#^;!I2=;g#aBe$%0#R)&n5+4xIX3OQaJrO53pQ?P8EQ+TL#rT13P+ZV`riT$u9<}WS8`jUM zWTIxy>FoJCa#@XM=ir=%Mi`)RpWi*&WQf02dLt?`(C}JC5X9*QbnWT>;-Bo=QJ8L| zzP7%oFDVFw+>|^%SDbByUb}~m^ZTI+I?-jhJv)$G@KsS$(;msKoB(kCsi3a(9+f)l z#-;4WJ~%IM!~98u*6DEXo$N^c2RXcZthO!uGP0UR|HpA>8!->n+{rQOsMo2TgWp0> zpNWb3Sb903jU%G2r91IAyG&VP5L@~<1x*7re-M@$Xo31zUwEaMUH7Oqs#>F^?X7Gg z^!!Ec2R-Eh)#RWr%q(DOTNoLf;?fy5NAm`)*NU1RyY!Q=X?&U*!*&)*;hHRjB{b2}4DvaoMFr7B5+x>5rt~5;8Vf zVDFqN<)0tkjalI-7t6s#NtqEpN35~HX4Q%fR`Y(7rM&Lz*nI(Xu|SC^-HnLqi9!Yf z_v|&TUIpiDm;B?a|OA0w4=_c6~|Mkc6k0}+B4y6gIKy4bQg>tg&B0Tf1uu{J^4L6 z9fLIl$-p^4Ry@p@z~zfIGw1tQP$2WH789QU(HQBp#-c=#xs z#o3WD&kJlt9&En!1|%z~MAm40EhBoAbs=qs-+6zZy8*k;*q9o}krwqEsdgS3)?c9mwLVE3-TC+ntPIZ-`-VVA;%aS&q!!89Jsc}|ddoeS|MkrL?kU{)Bc9y40 zk!wwx7I4_LC2SE4j`{hTdjuNfpp}Hx0n;vI=u+xKUx5k=v!8LsG*63k#15Ro|9B3? zo{p5EiOl3o7}qBlX8^5#OY=pYhUU;hPBXgekBk^!BWJO79@HKb6<@P1Z)Rfe?%Y?X zW0Z}8cT=nGxmQq2u7rsxFu$$c7fB;Q_l1hx0jTBp?p$-ajFNN##m>)S6Xq57tW-g{e(3L4fD=^A4REqNjS0;K3lSoI_7EjTqj+{|i^xMxu z1!!~$ac>B5uHU&fTVy<0HF4MHVIq@&XLY-}P~%LvN8G-jgR{}*#d7JVdQjFzZwSzJIGv6?|17m zW(Hyd0^)%KJengt`~iOgo-wiqEL@5|0Cyf_G=Us)k(XLt!VZp*?k!e04zqIFEm%TXAm!37 z01$pEGU#tLg=mhQKuT#Szm%UVVDOl$Ns)FVyW2E@Cweer#nLKF7u<+)H+*InUu=CG zX{Rf#AEJgFv{&Pj(smZoMROa5tIEdEBCFu%`gp%Ny}n)pzLrXY0-J@g$r$=42BBe; zB*h4zM}@22&%-{qn34u{2CsX7d}5W70MK3Mo6+c3wej9T$XYQPklugH$KSk@bI0G> zNL}4xK0(+zVxiYdApZ#Q%*C)xaz)K_W}lnbn(~>ylF%9YUmg<8Ldy z2eOZ!b6%{ZAkM5IAzi8bJr?CV8h5O9y;^H^h#bGgr2`)dRBgs21=%U{ z`Ey!tB@vuS!*nzb*#yHGYqQ!fX5rYzSdkn1GLSad_)TFxo{2TW9q5c zaqy`l@w`yMv%H!-;mRb)sci65^j`QbPKFG2A=spkJ`4a*0c3VE=ykCH0~gSn;{@I8?vZw^mje@=1J*c)OH2@=Ix8^(#Z%St z7NwOV`6#Yg(JW;f;~Ai|y?jrR;C|<1{I$`z6|MY5MliN1%yZ2G&`z(T^rW$P_3h~b z3X=c|Yo{_{$}fpxYzFN}?kl;ZZ+<)pzvLf z4R)O~E#B9R&oNWkxw2d>-N6e@07r-Q*LERPxg|=X8D>)53$2=t{PG%&N{~64A4yQ6 zLk(4JWniGJv+)E~2gvEIT>A|~dg7QQih8-U;5-h87F;?yt<(g`6Nr8G{+|2NRKv{G zt8A_P#F&@}X7yo1g1v#?_xlW2x+&O2ZWINBLaKv_Rei=HV(A+i862Ne<{{?c<7A-F z@4qXXfBZxNPBD{G6O~Q-Z%Ak!*|PsG;&J}}oeWU6bP*wN8lVPG-(kD`UZ8JKQJ`a- z7VT+A@FeK?;*b#(tr*hV!|D&_HKqccorGP^wiw`Z7M;?(${St8Tu&M<=FFYrz}p+O z&(vF4R7EO1NXt;y`hkrq5*|)x@B4WmLGOt#ygkkQpJ=+j&`;AJQPz@B_jU6TGQ4Q* zedqCPS_)r40M@d}rGu^%*Rt7Xf)x3dS`ps2+%h4&t^Vr!5I~=LqeDM?7e~R2PF}pP zZT0nf`dq?}r*tN$41YpZIO&AEsT-6U=lqttZr!_e(*(Enf>Z*c=ht7mL11Nne%OJXtZgtA@-;sByk&%gTSng`m)L%o5VZ4OK0 zSjy27gQLu*FwOoRR4WOP;RZV1Tt7~SKDOeC{4tIp!5@Z6!fb5^?4@xAY_i+o0(1Q* zJh+5<^>vxV{3oN@T*GK#d3(w~IB(bI4#*K~cM#r-qR#MV0QT zoVuXS%WbA8CG||x0l*;CqkczdC%4YAdb&Vcp$%j+5t{3gOE=71Z`R>?o8z~7#%aS4 zc`3-q*eo88tk7MX7!twOGlfUy+Pq`;&%9r109v?pMOt;{FwXMwb-zs#{hQ(A`q8W_ ze>vn>W&k_0Vb(&eEV1-*)~jFV+n5)sUV=laPXXZF_(ZX28KG6u5*UTM1ZzQ&E$?$sy4 zxtY-(vW2|YXfD(=dk{}~jrZ{^?VJ;cSKiOiBc7leluNoc=%!og@~oQy23yacd#gri zxK(gC3Dj&Jpz)q@Vw)+Ly zAJspqmOt-o{?mOP2JXF)G;BS-c(6&qBS(^(E8q3ra`xYV)h;0zHCu1XmeNa60{HmO z_aPmFXK&r)%7NS?@(DK@%FA3yGJ~H z)-$^#$;bSXcP{^kV+Z*s&p1DFc0{vtz4{oyLfoC1J1Id2^gB^Mfcj9~w$lRWv?Ow|REeh{pR_SJ5_wbTt45;fw#A5eDIJhec;z6CJ8oM(6915?>yRbX>S>i+m&q(b#cBZdBWr< zlA_bZNEFdavuA^NIYwF9S_e-;0>O&XSPQ)XLY!H3Hfgx((}$29H?PSfpnejIrN7Ce z9PY$%0j=OLrkj7OIzyimjQ=PqfI&|#W{8A@B~KeU0Pe`y5!B%c>+BjwR^j@kkeKx6 zf~q+MRE}y_Vp!Q?L>!Is~kI& z0}3J?HW>$<({$=+YBgV4z#$%S6C+ioyO=oF+9=UtE9P30a6TLyo&rq_Wb|XrMlb!h zahmta_tAxZSSam}Q4e9g7*>4CY41gX?a`*Zh(?6toKWL;(9bpk^MD{ItGfp4oa;FJ zlPYks(kM?ak0P+)r9Gv75|eu8bGzWth#QQ8!(mM%gMp5tXw_6wAcl@;$$3;At!!&_ zxj(j=HYi)6z-^~MsNZ1pXPN7PUE~Yrl^dOSa`b+1kUOSwD}TAAbrNOrO%rn|tx@4( zMz9rJ0mz04H{uVyzH9c-uD@PuM7@4nRJzF<(z*D-i9<$$Twe>$4y^VSMbQ!>G|RXq zQT)?ISJ}fUiV;rs01T(obGj#tAlvj5x&)Vdl?0~}lFPE}Au%ThaHEv~G%;B1D z{~->R>U`AJJEzA!XxeBWn@`~il-(v8U6Sunhtd4IO;x`te5Wg$caHb$X*tsukLJKS z?L}wRsiyfD9;?j9iO<54Gta8}Uaaeyc0@^flp!3Psr~o^sKqLrO!}iDG0;@5y!O-R z$559zBuEo|p%w;7z2bzTGWV6lZ<-^zB8V4AlArf|?Ua*=&WBu6DB^VLD!EHTS}dVU3Bslc zPWjMM~!4rC@?f9aB;l;0x~^Q_co{Z<&xsz?ynnZIPGs8J|JQC3qrp0SXj~ z)mL>WT$2pLoDH(KEn}DN`l0+Bte2Q_+8rg5FeNDxg}{qLwbye$>EY^`YlRE4=%{e`t$`0^ zX%UosMMw3_D6LX8Ri)HARJfEKg+C@H2-RtsI1CH-ns63>x{cCav&sTDyE+M4Islm)&;kK!-k(h_r7h0EifOfJ#@G)3*?<~v%)*kwy@O~ZFAx*X_ z39^i2lV8S+pzFc==wuT$e8YZh&Qbs)jCPu=K8@+=>8xgDNj=g&ebjG|k8cLXX_@Bx z-#BetLOp&j2Sgo`!wXyI8`njGlpF$lCXnh+QR0)emUArz!HdBKwisT&Wr1t=gMil`sF7Iqo}t#IMJGo#vB#eC*f#WWbA z&mayG(MrH`rSo9h9Anxk*m$bLpfoHbmpb0X!CWn5JtS*qFyWU!uNiAg+vsrW(N8t) z<#EwmOW`nGk%EC!_93hq9C$oXjIG7Z=Zj~# z$mu5YlmlK3Qw_=uGo3zc z*0!8DI;Tl4Ud)2W@UTzhHkG^M00;wRywX1tF8G_)!VkArlRc{yZq7^wFb#;Z8PO+l+7*QguoGlZ0Se zhlCD?dDJ?Ew`G1IAD^5&-=<^3xvI{obSBF4v#4G4y`R=A_$pC?QPd9#=Z-_zwVn!b z69D(sqRRM7iFo8Tw`sJ~2krlf{S5P1`roMo*MEQUakBnDou_K+I&ATx`QO&v4S~^t zH&nt`O!by%b5TW;3rKAXXyvH7VrE8$rc!7oZOwSC@Ab0fkT6s@Uy};UB^Dp(^>!pY zSQ37|H7#e47@wDtW}a+u<>lEKSg?Dx`ya9GfWcr3OnOvtIqb>uJPL3ABfveZIElU!|G z3{HEM7p!%c3vrz)A~%jwDKI&R99l%<`~B%Rar$uQbykr#iO6c@O!i@9z7LpP(~pvk z0PJWP#0C7uk&vbShu%v1u1?-HPp-8WBEqyO0Qoi^PQY;ib03y@ox?4XCI2V6b%G4l z6vyUY@=eS$PZnn#86xkRqL!a0mFsRp*p1S^phS+n6Gu)_t-ehC^XWT8m*ep11=$S_0=+k+JI9%M?T@@j1i;K<0nFYHsCmr%6Z*zxI;~ ztRXs>zL>I;EVKpvTvYyM=nsz8^4`=X2MSKZc)i5T$4xuKNEC%e*I43*aNJiP`j0y) zaXk&z@N)LdtXAq=>{tboSs;0|IV2PwvGA~|(adhcV7M|*c;wfO^Hwp+-3=iZjcW3m z{5F)cICyY`1GEK=yEnzFH>QFIxtEp@X*%L4%_77I^O44tItyXu`i;%N8yO5L0kA|9 z_vXe58~OhMKtR90Gc`+1h#)A+$PK)7=si=WZT-}MK-GnSG;ivN$&PhZzVZwgUIlW5 zD(BAOxo+$-CO3t_QW)=A{_WX0_5Rn7tB0$z>QO9BJ;D(h0Dn8P^Z-Fu>ck(*0OTvW zA}fnOGfK5cVf&f{++H7G*)+vk*Mk8+iyD94Z9<_@r2Ox#tKHG$NAwBez-TmWAm0~m z5(i@&J>L9%`FVMFdG&Z+>Cuo5boIkzvY{tbzgoBS(2?r{If`$b(XQ7tiUv9*X@`F; zn!4I5ay~77)6s|TS$a-7IM;Sr)3q2Q0hA7YC2O@@dq_E39H@3G@o?%DF*AmNVGMsm zExw4H#ujs&tmrr6-zD?}?dVm^SsK%gpw@z0}PsJyFW=v{Tr=-_cM;g+Yr(1T*J4{Q=98 zDOy!R5>o3apnNMjZt}9enGYE}BpBMBProo_dEx0|&Q`d+`aESQFs7gQCoJzv$i<^% z2mCH?Z%^ks4Q*eVLWKP+YXT*1l(!Vql0)oE1TlC#0;FQ21CkYt<0RUPmBKe&g;2 z(rV2Z#%ar=p=*UbMqgB+@Q7tlWnY;S3FTO6O!WUds<@jC_zK01e;6# z@TAu&HNMLU081WVCiH|GLHqaP`y4~P=#fv{>5Q3bkscMFCK2tSE8Ty;+`6aI77(M3}fnrmJ<7NkE z`e2tK$EMV0E$(mu$sKk#Kxkl=_^urU7#i6CpE!D$O!Y`8;S3;(Ce#V!ntx z&q5m)`q7MQ0A_SD;~8g27$7xx*0Vzd6Q@Z8(*K}k&I37-?~qDOr6M$*un#IDIy zKa187Js*c97zK?%eD0U;%;!Gd4L1OM{ zU|~@IaD@s9E_F52LY{6Rml{^}9@s9v?CZ`@;&mH{z|-#W!W%wg-9VWVy6RziZbH=K^>l@D45>j@%7~NCCMGJA`vDp+Ujb&E1*RBY?(Ws2I)+ z<1nySoj4waqTkaEpG;r|q?_iJbs3Fx?$!*8Ex-K}`k8<7cyqtJ|8U-2zf8<2SH=e$ z$J)j**;poYzLw_r2NQS|j~CN8)*h0FlQv8}?<*5FuwcFzKvmVpI*EOvzQ#qJ7SfOL z=3+v(5YA;@csQ;c)oWoWCqI@PKD!9IiqPkU)_}4wpSBK%j*P$K?V6hBpaZA&6tBkU z7*;XIXTyJ{f29^W_NwEFd)ED-E3>B1AJRa&pKf`p*29O-3XX)~KyVY3Lobi4(4*GWmW-CdtsHB%eJv;n%VjAQVA)yF~kT^_I?kSjT_p2v}k_{K_XO)zORSG;^Ao{L&}g zFtz8?e53OJd@G<8`BP2VCJx;ow6>{t2La955Skju9cz-}hmBVnxR8|3>$?uLN82tY z8P+lpOGmgMG!CJXt;kdO3A@Iq#^JktQGzo*f$=UdM&WpbedY^O#$vMnO2v5!7~&tR zFk((=Ync|vW9-nqCF+q?_WAoeYFscMMPRt+FU1vKEx@iG$}{|&!=K;y&W^vFPj@$= zXYcwSZ?1p4xxe~l^20Fnx_&aaL_#C}9{^o5v6sPo0TTi=IF|wF1rq}@H#L{hM*}K< zSzC|Wx)FZQuUMc3jtoSqD3QAKrP#B{X|~Nai(R+rK@zlzO|ON>mMY2Fq`$s1oFOeK za_xf!*1U|!x$_%RT!ru_uJZ6IjpHDf+0|Jj}(_ax+|NxxV_~-E51d*X_c8kK@==e_Z%dD(`WttBQvHvB+YtXv^YrwGf_O z_`>TJew2nVmy5-xlJ{S+PdN?ufd)2l-d%)Eqto_HmHjGKWhz_%~rKqz9r>x=!m zXxAiWB8Fm06)5QhecB&b7x|DVl0hgUOSEbZ{;J+J#okEavtTni6k!x(U=99oQ@6XK z514Xf89$1{APf`WI}gB+Y@XYHw>NKI-~9EYeMm|{pe9;hAJ$% z-RV`mUw1GhXn^cUEzLCStEO2Wsx`G&xcXKb<9wkZ5QrMPqU0~^MsBr_p^z0igINzv zo|4nAN}ST`k-=CLvr3#=drq|#i=%I%lJ2jUZ{~C)^FZdQr37YY)`D$+WjI=GZlx#* zROVLtx=;y+uM3{uV?Ft0=Fi4w|~;)yKtBZ(sK`Rd62#IqdL1OUgSuwYunS2iDosXXHFnG4y{9 z1*dgmjaYjB)ouNfhsY&j7f~<`S~Olm6C5|t8W|DvJD(*u=!YqP;{KQ0x91Z$`d5~L zo?EgYcJqnukzi${U(>V^2?n>d$pO$JiLjx+^+W_8@Z@K=a&{_kqXZ%{m6okt(QL{} z&xWoH;>hv;`A}AU$wEADA+wpFh`|=w*dqIy^hplkM1zrivEvp+m-Mti#;< z*_`Y+GRQ6+jhLj=LV|25nMrSlVFQV(c+yPsr1!dIhlQ?x(^-B}XQ0j?4xP@PbYC}p zHz%NPNk{&5^h6BWdba~;ajE}2UWm0!%3!Qzat6UF=Q=L0)Qq4&1#Z&9Ec}qw>s&te z+QWYD)&>k4sw#LX*Foyu8(|QVhqeKN! zt^lHi0i2e9XW*};_6OuMXnne8C2Yo?0~>!Jwin$i*aK>Td)(GK9%J zrK|iHuN}>8;7F$#cD@WxdEYU{&( zJ%ihulKs0X_ZrXCJROz?aRw=&z>Ya|6e^=LLgP%mp}~4z@pM5yUAb%MxKlQOsdK^& zWt<100t-MDARtW6n3bvh0r{L+CyS2V5V?tih#DWLb|eet0=!^i!5b37IH@^!jFV!3 z=Rbshltkn#1z^cgoeL;K>ko+M!fCXibI$ps0vu1X%Dczgf4=?oUpMa_9$w!pFH0@v zv{4CTNNi1T40P;_aY$vsFEr2*Aq|yyu+;kL?@+smIId(t z9WHuYMYr8tnHkF@aImMTyYk!okz>e4((WjK%GQ{70EeE+l~8FW@+yYxCbRgQWr^4y zP|ulmyyPTN0xL-%1hqbpuCQq=O3gbeF4o#)Pnp~72~#5c!8IimIH`;;6v0xTkzu;% zFnaqCgnn2QHo^1CbSfD8{ep_jD9TnW;+fWA+wfgE*mDlk07hXOh&j z2V#Ihl6mhb0VTHBf`(OSl3tK$qA(3a8lBf$G`!Oq=?#F6!34Oq?mNp($*oDYg^|(% z3^>(9Hc4Qmbrnp!1>;atjvE727;{_%8F;VzOCjm~?Qf~Zj%a00Z3)6F<$`N}zLbg~ znK+ty>{61<^iyXK;a0nIWwL)jcf!l9Mdgf&A%nPjRURQb=*NJVEIt9&1;ju$R?Wk^ zyZa>^t9N(Te|vTLu^J^I8yZ_JY4CWQ|555(j4Z05D8Fg_wzT2#^D5kKQRP+&@oji{Bi_RXAq$q#0V{q zH!WpcuC#<=!_yRBewhwleo-3_>)9eS41+jwc;NTFqsV$c}(xgIf+HHoAdf)=kd3!M*w7_y2Beq5_HAqO8#CX54#lixjB{l}#m6z2|`G zXu=2!zYr&dc`Q)^UkZeOH@tzyLH(@(Ytb{0ica1<0T#)mJ3T&%SU%5YOc_L>JHt<$ zw-E+IJY4Jj`L%4AA(QT13fj8!ZK)IoDivdOt%~OOIF-bw(6q?YK!(wk05=Nrb0wdp z_6OuMSaiDR7*HcONsv?H!wr}9ZCzC)S`ypr8GH9e_D?3MLLCl&7Bs**N+ba5^v7!n z733F+LbPWD880}>O_9Lo&$d_@bYhro^{!^53UR+a-bBQcMBQq8-ZfRRq6-4)J(oRW z#ey&0;E*jFsPiw)6_4R%AVH1d7rW+!R}T6ptYF$=r|ET9Wu6_TpfM~%uPVPR%)937 zm2DPC>2mt1#E)-(J)^KO3$M$CAdG}IulVW%w_*Z!|EV&r4}euLMoG#)f;1(g37|*p z!hoaL@bk4i)$>&KZTY~6lzYg%rs-MMC;NT3$635*pgZ#?Ao5AT0 zC2W$+J)h0LbChFEx|S?6saSrIR5wD7budVB27DkfBsf!T))I}Cv zB*p}pO)plP7a>8LhYN0e{`rLxyd@wm2biyKU;O#6QFNigAPX~faeF@`b-TX!viRvS z-*&FKTpD8*f6-qqm)1s$n@3lc4EpslHH*9{^1Jd31Xm0D7TNmq1Dmi+hr6j@^UBL`kuet zW6^SJn>YE!(ax=o7ar`sZ}V#H*4!(Lua`Q7UGuUdf9|xlfsP};@~0a$$DCF{s+C6q z(w+}@xL%B0#{;f`DIj^V)HV*nG`?6W6R3zu5e1Wmi)~YHwjH(=w2KNE?vNl3-oaG? z|Mztx*fLEmR`q5>>>#u(DjCOfz+tySI*&Ea7qq8GSMe~CnK=`qk|6ANyZk+4-nc1893D^#ltWbVQ7K%7naHz{s9Ig@{n zeS-ffQQ{vCPz9IEMB7Er@o%BBO)FgU)q{Sle|q&`{Ym`2gGibPZaNv?(O#HMJQ8N? zl4QZRaoe(3<()^{;A%TKrfn&hU9oX39GOY%B9~c}Te-H)n`bmfGS<~Xxmpv!8G6WT zIMSQaeIu1Fk+89}GqiI^q~V(l@V4Y|5M}M|^Bow!vg1DO1g89FP6bqA0-N?`;ZJia ze~<+x?ls_LFh>S-J`6x+fcGp=Iuj%F&o^gTK;&+&sQJbe0+au z_|0W5jMN*U$4BoToGc)wxI-qNaLmE&9Li@1XduO8nz3PY5+^8;S}(5Jws@%M z{s@OZ13kko@q}OAHzP#i!UYHH=eqT10_&MaZ6h5bO%k>n9(Zt-YnCInMfYS_454T5Ud$h(Cf3X1yX~WQ8k!y+-1M=npx?bTC@=)}f#4ZX3A@b+5 z%h&ApvDb$Kg!z~Y39=bz7_hT;=q4&BSi2S_@lb+i&7uiH(_4Uo;tsGX^AUpSZ~rBu z9dY>@q79YA7g3m!5&E&q^w`S*`i#q*5*@pI6tf9bK$o}NPL zPk!t?m{*eCclnF&mkj`@~=&4^?J&;5n6&%@p~6q%X>-SxZ(gDw#9ku&P0 z82_D+;Gu5Ti}>>Ac)2_q|507qFXT%t)M=ktu8Jx zPUVqVnbc7nBvzd*mPwFhf7wtp!=s{UlQ7T_!rCMb6m0*;SM0Hu1N50Io)VpiX2_z+ zA+(+ep^wU|9m(r~n#GDP-^Mz~;*)A7*vkR>oSIFD4kFVz0aS?^2;kI=zQ6kX%Xuc0 zBv5CtVR8v|Tkzo_2*pol!%!z11#J-5W!hi=CU3sZ=6fkbZGAjMf6|eQl5rk|E5X5| zGx7@yFOs_9A$T|d5QXuX zY}ld~9de=fF`z|RT|^dkqat8wh=3j~m-X5rY_PU6j!;!RTa&Zh_iIV7hw zl0$}ZiC{R1B%j9`=X0pe`bOc1~8-Oyr4^^cywTkgDkQqt1NWP1LWBn%aGvz7jDhz zu7SHoZ+RZe9{U8-Q=%u_myU(%*nNF^_ph_lc`8Eq3IwNoKBL27j)6!|$vDhaCQJlo zGTQ51KAWv;f3Qk6J}+B`?ZmMfE8oraPai+LxjDTtD!JNtvKfSM9Z7~MZLyN5Vq-Qr z#Q`c(S*qr#Ma{pa8>X6lueTN(fF{A4c(m9rrJb=f2ka0Z1KJ>7alFhWp-4MgRUGN zWPX%I`#?i5qXDL0m3!L~i(xb+^5RAVw2|q>7>TU#+g}WIifT2>v{WQQS=Q&YR09dc zP{-l18iitW4G8^eM62ULxo-sZ*$>!mBCyKErpKYLzovf0kiud~w(mbe7n^lZ;-&dH=C<%`+EwB43w*M*G}$Zo?=f!X*`*I4bzcaM~T< z)|FfGwz&@?SC>0q(^Tn^(#+%nexSkD1hE|#XCPAPi!-npN;CoHi!=DP(n+J0LW~q= z05VgY!Rif1%edJ}NZfl;^7Ry_1sa0>pctbfT5a;GEfukT`QsRK1gO2^yZ=FZ_!QY@IJ^k^!pgQaesYhI73}FbnFA1!hl5$ zXUXAQzL}xKSp&S-G;w-*1)))alW~E@#=k=o{1xzhbiZ1ECrJ{de_5@iOoQv4ZWTC6_S&2Ze)*>*g zb(}{qS0<~kH-CTe+s!CI8pqF+6ghtuH9HYCD`Y4VNupj~z5d6$j~{T)(^I8+n8CW1 z?PgblgfbGr_f?v*?3yV0$3e9fPY)eE6+M!8{jDBod@%Z0b?Y9OyFHSB;-Fo{MR45X z|8JmxB0#0tHPr@*J6^QjYx;p(%SqGg?HXkVIoBcyMM~o8Ubh=vg{yTcBnS_`PSPxJ zTPJDm-x`_jbgO$cbUpFmPDpOMfe20AI-@E6N!QZTJeWc64e<>-H8A;jIM^+^eqco} zY~o}WB>byNe}8pkSv_`t$>T6iOJ^C7)3YS3H{((LMn1kC*g4K)$9n-X#~^cu&xFtE zjDeKik_OPhv2S&SL^)|Qx7y4}n=r9chB-QV_D*??!ZqryHM{yibKpE^%e9bkn3qef z3}{3dr#{0OnmP0uj9#~Q^jZ&K|6CMgf254A=U;{g5rveU!e4w}(Pl_#`B(Z&Boe*Blch2VF1J48 z$4MTh#c2Isgt(MpR3whk33P0Y9?%bRX#);vO=mPu*KibTrnnGc2A;F9lOb2vn_4m2 z9r})G{ZMOjK~(L3jwgbaDD{?~13z)UL_+v{Gx|SAR%7!(v%Ll(L*Mb&7P!`;3`NX< zd~^BXxAz~fKD@qp6zCR*AjC*YwoP;7*KSKsHXe))s#kl>U|$A~d^9#PV5FD=fSAZA z*mf8IdmB{)&6uILK5NGZiXNQbfI>v@Ky&cZ9lUiIVfRjd2$l-qaS4Ka3W@|o%NDlX ztD#1qk`YNkm|U}I0M#^ODufYunf!q#K<4{;a5xM*`ur^}!&K(ZjVxMw)EooO6vA<# z{d)3&idMg0S%~B}v+Irxj~P(VSNz_9a(t7>y-Y|uQ=iVz<%amWvO<6l0xb66-J z#Xk4CMwrKcBgacxi@*@B#!7J-W$imoI#9Qc%7W7*j^=J#qEh(@2IS$)B|ujhcoFFerk1h-!O3dq z6+o2t+v%E@+iTT=yBVJws$NsbDh}vv*EAg}?B4u;m1fwL0bwyZFx}+AzpW)LYywB6 z0fm{VJD}JjytvegsU&xRM*2NSW?@pwCq1YbJ;)DOA}WC^ zJ`wXX@n-QNv5Qc`2E5+Ex7@;KzkY7MUU{KE3Z*Ef`i^a+8+BmplFp$Jiy5Ph-XJt} z)-}z4bK&=oJId|vI7*9N^izcg6CEd-x1VnLRCp%6>1-8i3GDwA)=L!tv?DvOwdau6 zPwJxlqjhop|Ir2Ip6BVpD(+z=XaKeE?^TL(kWWuHAbKIF3^-Hv8?GTxI(4VHyx4U6 z!*L)-o{;BDlt$;b-h#OtxB9bBmNHDTDbTNfVIe_FzoM1TuR=~wSsa#`JgGlWdYGA@ zi?%4|TVzQHK!553CsM?zoR@33rosmxWPOK~6H=xcY)j<>5(knYv1M{?K#U92U^Y#7 zOJXbamKe5}^B8)OZnxxO5W12yJt?EqmNI0K+Y|+l3bx)`NQDDN+hx} zltubWe_x7JGa^wdj-A1YMlN`NhZS=t0(vsqitI;*lrxt&)V%*o?k^ z?_DGXmT?g%K-NMe5gTb94D{-cg)$07mjBxE0L{h|SJ>a}sX@Y3?{}ICX}g7e3UbQS z;Vcd&oWZx6aZ&)x3mKnwYG_!0Y+D@sOb&Rtbus7~Vmjn_VK8fzIWjPd51a_!D6^wU zkjBi@q3gKi*m3VvbyAN{`tMVnL5r67_iDw+m0P>vb^hN_#oYsYIfhI6xj7Sa+_J9~jj znEG(|$+C4yA$Po{iJ@0@gKR%v3AOqjJM5*kR8_eG1zf529rU)^^X-l{8w#wQ<9@llZy z5hhdE+rkGou)9?(kR$GYSe8m})vTf*YH$3RI6)%Xa{ zMmKO!uiF%1JY^JU3HEq*VPQA{bV-tvJLX3$hLuVTWdYuE70FW{VI22*#_l=#>7pkV z6LFA)kc6z&ga|&rg^sKq?>&G51i*tMfVwrG$ej7$ry~B@e6V%#%p)-K6DK%XaEp6dIuAz22D5RNvR*eKvcEU{q((>g(A-%_lnjYdX48*hSQU5^H18Dd# z*t^__)3{}xxz@Dk&q>#bI_69(Ep-SkrTRYuju#_x=^O47g`zpUWN7rD-F0E>E-2lX zjLCr}U!S*sFr#CGDW0FVKfSxWdQRe&V<9Nhg7qhpIH2BH+D|P!nB{TgP)sJzL3!1l zM;$M$h_kADz^o1}Ci!AW+90aO54d9yildFq*~Vk7LGRsFu5|#^4mL-P)7i{=tZ^G5 zFQ<0yxhlN9eE018CcZh-JsgNXJh_`^ENU4ks^x7d+9;vDEj>a|^t~RteEzBJjwOFu z|8-rD)koJh5352_=Y-JyKcR;;b(aC$1QnOz9|IHtG?xKD1S)^kSxax^I1aw|uc*TU z;{w`h>t)%;e$DPIcF>JU4hv+0S*Przyj^8i`;qRnrZ)LLdw$l+u4z}e3Fs{Gm)I95Sd(;7;`Xk(OIF{xrPY;1pE+iqk z@7{m-+vo9JO*?^{vz;OqO9^t@ZGdfAS3Z#>=opW5*GK}Yrh-KYiYgh`oZel9pS(K> z91aZHEo^`F$La0jgc)Iu+mQ}FzTh@I;R9vX-1YmS>U=ykXIkljk}>AA;E80g*G!40 z?EP{htC$^?d8v)H0aIuv-v8Rf;l}SJ;3V z>8LG=Wd>7Vu1KXTEjdep$G~hg#B+zhImxJXlNU2pQ zh1-8->PGKKo9ox>P$f}t$nM~0;Hp8KE|ua&*b~znQi?jG(?A>^sXZz!SXzm|q?|<9 zWEBlCrJBGA21lIJC~N6CdVtbV@NHYTUs>P5LAx!`uW(qppTPM+lD@}(^%wkK5ZKn;Qg1-BMia@pf9ed{=7hcyolRFPy2t<}}AA1M^g^1-Iw@3ShW z+GJN&u3B+Na9cM+`9l6BCy|-VB2!HxQ;y}1E01W>6r1|4D*r_5d%_bXGb{!`w4#57 zVP4$ycXz6cr;%evKTY=-Lz%VJk z7n{CA2b{ceMwv2qE@y{b)^shLoCbw2*NF=HrfO%FcTQx(I1#W(S5&#(1ZE^B)p>~w z_O(5UyrAg`0Fr>J+@vd|5~htl6Rdv&bvPmSMC+320)RkP1Ry~}2S6a=1tuX{oS=DXYfQCp zX!fLhuBlSU{%Vo^CsBdXw8n7urRbPNF`p%L-xg9pStu4c3Zc{+Sa9MA6Ec5x@g>Ii z>i386P={2OwP(W2x$RqklPChLu%H7YG#oxNi@Gq#>;48H;%i^q(7~l)2Rk_c4ix$D z>IRYIfyV#xXKl&i(VTzrN;$1-ej;AwxErDWD2oNeC~^tI3I_<7HMuLlWC}%@nPE%a zcZVLGTG(7-pQE3^am^1f8AX4&t9rjiK$DC_Mc08lc|A!oosOl*=TEdVf&hVh-E`TF zMKD;d0iU!E{tXdINtI|F#K9OsV4rmWO-e<<$FF^PzXtkjSCD<2TD4bVtmC7x%nLtw zi#!=aIjR=^QheVO77*kB%hPl+T9)2g`FtMi{P3~+zQ}i-(y>$81l@lam%doU_9=N< zXU?aw?w6g*n3+T@#fO}6I4QPc_@QhMyUaxh8ZL7;3oT(O4EIGlOjIxc&FIpPjO>!V zf^#X|QrmAfz~r{y?H<;E;Ac-@OweUjcHwQgD||f!M8c%?L#ism#j>%Bt;( zET=sHEqz@S;JF%I?LTiA_NC3n>mIX)iy|EvBQD`HtHwDxc!4EaNmVMnu*J%WJOTZr zO!(4McQq6w=Unv%Vr#_7aCb7c^h;uEbj+$Qu%55(o>e-2sHuO8s_Kpgwyzu-QV+;O zhaPkF80F`Eq+*dCbM$ZE0YiOlAbZ|4S@S@XQ$-z=IFKcTG)$&vYdRthC)B=@ZqCvQ z_WpRMX@bPHlkbmhfeHRGiv5v{di~m^%7`|?2`5+p&IEHEXw%je_QkjanIar+C7~+Ub4-8k%4}EunYlt)#ZLIvC%uu@ zo^z=D;|T>44Z~4`*IqPYiPTG$Cs7Zgf0BN%xlt)v##c8*OiD4~{Dhn_XOS8ebKVHH z7_RyWo`qc4Zt9q3e#hZ5emg52NUfuLKfm6p>Ju4hTCkAELbemKQHNN z0Nl}KvFv}Cd5n?ALf1$t(T%jJP#WcnSt4)-2z9LSOAj< zs}>Q*LoaK`?uKM*E7tqcqD4&CyCQZUt?bG-d%u5X7YQ|BEiZ1#aJX6z7~+l?*YXk$ zSpuvOy{*_Nbj?j9}C zQE-2}TfFeyE#cjPT%}MNYIXK%iHO4^wfAOe#&UkKgi^(fa~fSapMl}$PZz)ZlZL<6 zRuKH&6797=dK`z&rP7 zj$g_oKkL(yPrI-EU@$fq=f9ul*n+WIOKQQB9iq(uA5f>O0*p)uBH5^!*k(dxLk z#AK3ke{?B{Vh$#kq|L$ErOd6AP*NKYN=(HxnV6jfHtDfdP?brVf)h4%+M*>Tlgc(x za_dV@akvnSMLmqn}&+mp3q zn**a1v(S`-%eBde#gtG?2QY>bshO0Oib;^g6>fUT>Pl+XRM4Zh4J@_f*uKJYOR_yL z>|ko8H_RH^c-WpA`*zh;7>s>Yn0Q-Jfw7BP2^$Y%vbAA=3Sq2-9<{B_rVJqmOkyJh ze+sP+h7H^X0>n@>YZOCE=r`0r7bLe4@CgGLR_sS8Z4Y{kVST8zVpXvsmKr0~vuDrF zW^X>-EZpq*dcEn+W*4{by7u=E%k_WHX6Kvj)ne=38V!Ws&SpO?E<5*@sCZ=)Gkb>d z!iIdb?TE!wO=$PrJ$vS67jE|V&6|yzf4y{n`RC@{e?kf`HtTM?Sy}Pl^X+o}ZnfC` z)qVHf8UC3tFWuW{s0!{UH~aaQU!i3)3Aesot$rKb2xjXu;QFTx0ZDIL^oNG8AbVTa zD}m+o?O#E)d0&L(*H%RP+3W4*@?rsHx!LQNuiWg-;$!FThU#_xdj5WKHZzqhf7ad3 zxGY(JQ}b?fyS-fOdiHB|KQ6A8^YhKeelrxp-iSF!J4`B4ckucFmYpHlc%w8 zD;Nv!Yw}Q2hng@H`ZoV3?AI6w0Phu)Dp@^Y0Rm!_l0A&>sBygcurQ0b_^`R@tZ;t2 zTy@L!=Z5k1LSP$3*$2=XsNI(Yf0vZmSDj7-DAyOTF(}?Mz-)Q|`Fjq0RETrz`g$+N zVzv5Aj@@Woz~OiT*~1-TA0Uz%W~UW{YVj33L<(B~D@sU!8C-NOKIG~4C9!(&Aa)|O zc&0@x9?U+eb;c;ZS`4KTGzv;4SSg>Z2IDacz#e49qZ~G#xDX8<5Le`re~HV&yFC{T z>=Xwoivvx?fy(00INmj;u?$8My}u{;ggwd#PgK>1C`b3`;%0HVoHw{&ZS(6z zx7dyZ3}Q=Pj6eYxiys@20xSqyCMOV)MVQJt~8W@&F^C`o(RRo{He;G!(C$a=`ljB5& z1z#<@ zll2guoW2a6Soa}3e}|Zc2b}VNN*-{^qv07-_Il^dSnwCpm5039x5<~l5*Y-?v3fh* zYrtUSlKHrI#}2(mpmlA>2!jh*Eex>ZJ$q23uxw|G-a<`|=HaImqu&)ueeB0@s`yLp zkN&=u9HgbWO{8qT0yzSXXn$w&MaRg}P|Gq7wMZljjr6K1e;>j&$?33V-eWTj_)P*D*LkELymCxQ89*UANe-o4V)S<%i|^{rJSF1|LaVe_|A|Tt)I6SWcP0ZMi&6eys7x zF4qyeJo+|-%-t!tEhG13kZo+)4i}`qT#xGaAIn|0*|t-V@3FG&{PJkzq~Xc)9X$dn z{Yp^%VM$M8HJJ~Wk>lxBqr+i}4%wOxfnW}!4GOtP!15UgtzeBrxv>XF#N%`vvF01r z^XulbfB*LJX1?A%R(gVDF`IQ;(g^TbvY=U~5`q{m5Iq{2*-{<_W zxt#aG%bP7kSj`_Rj6$lY_V8n$KF1Ke+(V#WdY_Z&N#IcE5Dq1LAsmVvz#+?E{QHY& zduXw*8IY346RnD;x{qJE-3uVJcc5^u_Ym#je?ihIcM=tF#5{=F?98;?NiZ_3d+zc+ zKk>evudg2CZWoCa^hYULG#`;xl}Y9%Bn)6|R`OZ2X&@(i0|qdvoE9&hfWDf2|4J-* zdm@wUV%0^nhI`Vf{WFvm;uaI3>(L0PT;FsD7%cJ8V%JA;x%G&zs&NE32hUXQz&T*D ze-5}UgBvSD<2oE;R2_Z#h)77%@0YDyU{x_cc-cA-=;HBCAI+^s5R~QNYPUt;^GwLg zjYt0Ew&;;=H*@e5?SUVAE`1sRrUa?!1hX5FC8AJ*RED?>FC0SV?s%1hj{ba3#<` zC228clxnf%X%aO0tn}1Lii9IMVXdb#=H0ux`UuG(TxK!X9qfpu9l>!%04qRVj#JpZ zR*%2|A#;162ML0&_H5b?{ZGFZwY`@xGC_qxN{)|b2r(QOf`oFiA;|u@6$aiPB-l$x zLqUd5G}MfCl*tl5d*V&lvi<#-z;I&buLtP=003SVvzKv{1QY=>mjUPn6aq3ZmjOBl zDSxe6-H+t94S&DCVjcp-i^QrvExUcnrMV(Si=?*;w7}-jdS|>lZoHm}?YYhU_a#Ni zU!%EMB*i{hmN^tfQsj@+iVcT9u_^e*D#Z$&Z??~GxSQ>sHZ*wump8)Gr9ha@DBs?_ z`NKP7HiEN)7h-ewIA?XY+uSGL?#ts)b$>UhQYy**c#~>vlDB2QrXICWKj zlS-?&NeXlG;qI?*zPlUOHB!D(K%_jEFk4BO<(dhlNy0RRwTG_W4%H49Uhl|QmTgj@ zm@xE%?|wPeA8$;Slugy%NSh3>7ps!t;D5eYF3VZQ4M<0eb+ILcVA|+F!){WOnSbQ( z<SN0gF(|;LxWRGj6PC`(!U@_CD!g{Wtnj(;=>Bp*jIP}$T zcQ$p=*(|d%AD!*vtDH@1o&4Cl)V>YUw!(r^H%7p za(6)yDq}X65k>Uq9iLZ(cZA#h0VRBawYW__y0bw)cN2B{c<7$XVVr5=sAf0=I9P zPZ;VLdAgP?Gucuda2}i@MUj+Y&{rSP=2cfVexh!lnkwDm?)PO^ZYj3Hm%|aa-qXvl zFHsK3ljjmiKhg99gjk9w$baf|JT|pESh(asPjUmN-Gigv29?6cmwmlOdG?c-ZaYFl zywyu{wFj?>k{BA3lyy@+G~QWW>R~_nP|Rrrhcjl2;HZ5y#Qa2ZmW$EjA5L{M)a?Z) zln{ywyK=(qMep-G--B1*q!x6EHg|*S*J^tjDtg%-o}baqWeaBB^?x`ilE?1wOrM=E z;ov7Obk`5`(jMBBEaq8vPp9X~A3+kRmIc4$5Wzw%bzR_?7`7*y#NX=bHg}hq(yn5;b;;CC7FEQ|zomVr))z(u~ zU3c&R8^wUl_kRG4`gjoZd37EE>uV9vf%HR%c@w;m_9hh%D8bDgXsUx4cxq|v5k-Yr zs-}D$k|3ytC*PlcpYiR9vGW|9+*SRyt1*K?KHQBftdT7sE-oaTXvvD~Dzf#|>5M#v zY*$Q|$QGr{nDQr9DyGE>!rn)Bisp83wkJHRH2qVQE$+ds_u8;M0ILLT|XUD+lV<^Ck713WX-*G<%%s${8T2DGsQ1v^DjNw! z{6r(MYjlfKXUt9h=ld1Ge&tIvw_xVuf2%7NLb+M$WstzQkII(8^{MSaAhA6X6LMq z4#Z9Le7O_E&`Ud9TyA`KOMUAd{Ek#oxuQ{OxZrb0Ad}5+M-_|M-gF{08MOno!+?5P zYbQZye_TIE!=2?lZY%@yet)mwa}wT3To`Ae`w4ik3tC()R(LGLFz03J36+JA1zdG7 zFbo)>m-h>}j-=&uIkj>^YGQ{=mK--8OkbMLi$J&mM%hA`Q-unn4b9-No9Dz`EynT& z7B1qMR5n&e-OLL6uzZH58X_R38o+%ftFoT#O%P9RqGU{yMaL5h8lCA{qey$XWti(N z=D=hFqj-2F6W!{h>hrom>KLpL{JR7-P{hZ^2#7lmX}q1?^pi|o<((Yn%1xa%t}Ms- zm7eM^2edkUoV5a_WPLND^x03l^w?*r?9-ba;uD@Npft&`8!*%G*d0|l z3K3~IxSWybw>K%YO2b^RYNGcVB@rKC(hx9;$z#Km@f^H2-8{@hREcL3zrhMC!aX7{ z3SSk_FO`qZhKyYH0O9{^jo72ff>+q;{+ zhOdAqpZep%(}o(QsuuG41cK0B0Gj=Rsujyjn}q5&BXCqKC}^j3=noh z_EVYh81UXLoU4N=U3q3=C+t7`H(=Df*$J|k^n1{kp5xJ?%BhP$3mEtTa{w!U>Rny| zkOx5ju+et_^rdDt*2Qn($tsZ0cT>Jfox*aOh!;HV|}n%&}Px6 zz+XZtPnWhhJN|Jj0AOx`pWHghgHf#>SpAh`!`UIXYhpaot}YOKT*l*XR%soV+8ZvcE>5P9`QX!g3F-CF-w zku1R9P@V`cAEZi01NHRTDG}I+DoyxO;QL|_@#)g{L!AN>072Mk_f2s0`D!fYllUn@ zD_Qo1WNTY`#_zH&>0)PUZ#eDd00o!8`}5Mmn4vB+DuZTHdwI6cGIeBHafA?1OZ=c7 z5J=3+Szw1y?^K)=@63Ar;1ukNW zg2E9}?|fYju*zQrvA@chTCZ`CEht^~(ygo?=;s9J!xZUec=)eLM+y zrlSHagG`xYKwAvuE72{==MLq_kAjRo-q7|7c+&DLX~{K)Qz(0f`^LH)fsj=(U z1~lhr49-3cJAYlz?jAgTZ~>94-uZXGsKDS+oo$EXoY!YxdtN{RSO1*9)>JX^A#Pb}fRFIJGz-OC5b|F*puYHIg$;i(8U zP3U!JJq(?T;a@T_XxC0a1-%g?VyX^^M;s3?T|WT?S{+0!J(YRpE!9Ip)xgKyLhR)O zo>?YP%TV2`S3AwPK_Z9M%RFX)6i)sUd|mxnAK&~$h3rEjjU!wT95BjWyp9j+{z9}| z2kQENDGLbe|MkZOVPa1gegmTh=*Y%zwITO>YCaM7*#OC=y`g00T=gk%gyXS<9PMG@ zw(A~Zv`Ah^*=#n3f4!(RMESt`jsSyzE|RI!VQ3H65x6x>?i)6^zSpL(xK7->AlA7E zZUEMm4;=wM>P-4Dq36L5+uK!~giSl>-X|`aS2s85)i(&8@#BQ?%ih(1&ulfB%#7XL zVwv+JeRe$SqruozY5myr9s&myUUyRLO~EguHp}CXN%;XdF}WMO)D%syg6VaMB*u z#8Fc+owDM2(zU1WHA(`3MK zoQzc>HgQ>F6b*=iYtnDos?&oJv3@Ud&wUkOSa7?J%E_N7%5fUtMV550HEJeBo?`)= zraD$VCv07IGvQ6so>ImeFTeWlCv;kdHYjmiZ#-wGMfp1@vRwLGKAN)f-fQ&47M~w1 z^;pBPiAsDw9ux2_Y-Ea66)-ey3dy;vFLBYNpPkgTWN2gG=ZenK-c;s;Rai+QpGM1E zVH1(nJdu-EE1v+c=L!L_Q@O=$s`|Lgijz%qf-&dv;&|0IQDvam5e(+&8?pY1qJUK^ z&U4%mpeg*5-8xU`(6c1HOb{Ws3uec0omtHMXqj+}Csyr4@pUDBJ-3$NwcBjpO)36& z2>*A*ABUlH9BysX<`q$1H}`HSCWN>AF={g$hhjj|8>myOC!;mJrhIa{jmNgZr{XAXM`f8_X`Tt$aqa)j!U1Jth*FT*du2I3B|8SP<+~iL zhp0cB#6}M%pa#oE3pC;~cL*~R&?C8-V0-nqpeLX_D@|}Wc{Kbal&eH)W`}ys3=wOw z$xsQ$>Bp@uu&Jg$VStaRf+SKW*$HCq@z^#l5oi(6v^~T=q0&Le_zb(&a=_&%8|;X; zMn%VUXA)us2FH%4QAwv)IQi~pg9JvbMobmr%-N|&mKC=ej>8qK6=k-})RztlPg1!@ z#MmDaWU9-5hxB1BnAy>`6d4Ir)`cSM{udczz7umxx#!=l|LYyl#6!6QzW}@WVd5hv~j92KGITnvx-fPHW}6^z@=qT>FZqfI=0>*n)>Zy`2>VV8?YK_vpQBg1e0vElhOPN^uP0RwEveryE-G@Ed&zqC2 zyyIdhL>&_VWN&40qxC?PW9u%KR7ldwO!e)^+M+6>f@RXr%@Y&rR ztNi?USmL{T$8aPo+%kD|$A6dKsLD)yZ>`DJxck=@G~1$iPjQe>fgWmUWU{`)Vz?Rr zzVEWZ!r_%fJ3uBVGyfWVrKUWVM=2mjIS&fiOM6qmU1Ndp)A6^B=i7rNKN9eGze{`WtfQp1u9UgMCd0-&<6cT zTRN+|02|W35jk9O7j0rL#BS15VLJ{0*jwLB!N@deu*ggw*eC-039kE^-rr^>_%n7> zBg|rCiAL^(6L9eOI2Pec#!yi(AV%UgHE)I2Stl1EIgCyYFP6PXECPLUh?t zHN`uFmm}idC8_Vjzl5MJNoa^*pEIBIkWzeSUIhyZPF^nevDqQnxbTWaaPO&Sy9|dM zL@6@X*pozdb{Xblq)5Jw|+#QD^W6N*Ll3;$; z<9tSUNP%9?K?qNgDyQmtwlYEh%VyQ~m;O!I271*p*at1YPU8BwS`*i2 zJG)vUSVq_T5MQVz#w+7VHwGwVh6y@I6&f|H6RJJUOliwKhu#Ci2<&1ad?OCt(CV}R zTtzPYz^92pM74`M`8vz|A8MIjqbW;IgB%jZ^oPLsu`3dUUISKXP-`7PN+z^9XIy9w zoYgUyHw5M3F&itK*eBKi=J0e<{)A~&5(?o&&rR+6;t;Ag!VPnKA!M+*ttl)tP_<4~ zDKRN&Yws&)*5@MctRfqz<|*5CpvcBHxSM}NbLJJ$7k|6P1wy93AEpR^1@#?H`6V)R z>W^I}A1Zrfo9W&kIFwQwpmvIanr%&k$@7r4(le=sRjAt!q-O5`)F%IBtk(~k2#C{Y zP@OIWx?;R@x?(AO1O4@|L2y(0DY5cY(=)c|)lMu37@qhwzJqChK*d-`KhSxyFCHsK zyu@LlP7cCK^~_4ySjn2VT`lZbO!F+B>Tg7c?{PfVnw3vkmgo*SgBh(wnrtclCirah z>&1x=#I>#xWY59_c9RC$mwY7PG1;1n*0N4m%hQUXx-{cVou15Rr+1p?)cqt_s+ z#1_*>i2>EqC@t2*mJFPhib(kFH3ePzq~bbw3^Zk8G+|aevOQJi7{aufc~c*IbDl8+Nz^klMv_Su9>N12TClm)`}m$* z_E_rpR}64B_p{&52lfaq8w#UTtgxGjq)VD&0%vojDR&dXs&o8>zY$o}hq%>k@IIyx znSlOGltqhmgy8c#_upIKE1T$6xxi7#-a1uZ1o;jau@X8mPdQ36c*IG9ZRA_V9%nWp z71Kx%GlW36K3%mGF$=4o@!S63hrLOoJ{e6Mz6KatMqx0xatofplVah}1D^*Rfw}dV zeFgUx2(fD7JNLt z4JN=*o7D$cdE+tLAQxk`yFdR-BTiPM3I64#c2p?Y)07{RXP}?1$sm*jUVBOvS2Voq zM2%V5tqO09KTeFD^)y-9eB}cw`+}_+2{C)VT z1H_k_Fu1DBwqgz+lwtcpm3-WP>LA#@_ay7M z@S_N+^vR2?GhlB#T4lPFHB-C7vG8sqxi@4)d(-$If&X7IE(kYUy0aPZ|E>&V<2NNx z{^M`BV1A`Q@kYWcibhJ_%Qa{?-U!Ifa560?G8-{1l4i2w2FB0L*2=0Z#%8|%^wwx; z+wP@^z|dd4sZDw>zim7jw@NMN^2);1FRg9<<>wDhZ?89n*A5OvEhVerwt(-wYt~K# z*-WzD*49m_?6!mBPei~50JE&ePSdtT%`8B#rdgp#Q@ph-F<&z?YNAlE)x1?lwknBj z;`*X)(=flg2meLB#P0yu`Q(t2Ei*1`!ENASvZB287z44mXtrueYCuwpDTweHKDODse-h(aMr@0rHznKEa3q9I!xp&#z;`1ArLA@ojsE2~ zB52OZ9~oDjgTVRs7@XaxO4~1FWN}#bIVLo|!lxznWS`|{T zprOnh#->XdrLmOWU#XBQ5&ZCu$FB zENOHMZ~Q%PFkkZk);4O80*G4_vnGksNU^%tt?8|fqPViCWjxP~R^cr)Hwayp!zW6d zep#-k@ZoN?g|&1W@Rg>w%ZoDzwQDMK2_|K=%~B6*7B&I<>Gi1`IIRQp_1X#UY(@5e zkNLvG+npzzlkX_QRxjMu56SL&OcphNz;hO_CkKPF)FmGQ*0tG7elDusi{X{Ks+Un_ z=s7!N6R`H(0&K7KIzk;h;6+OTCaxD%r57~6M;-9{SIlDV-R*Fxs-48knve zdzWa*g_7<7kYp9b$;JPuWl?ky#I|He8Wu~y=u+Y#q*&VT5Cm=M?d(zx?3I6|N7gEn zbJSo-Lu{_qnx#+FVd*K6{Ve&`^~ML*w4x*tD8#B4jS*}xTB?0^3Tr0fIE26V=Nfo4 za0v=Q&5G_CSS1Hx_@OB|{g(ZgpXGJ!qd-3sr%g-&r)i=VyBU*?8^-|vaJaxuYFfEAY=;f4K(BRQC@Mcn~2oCZ*$ zUZc1J?tp!9IdWTrv|{8)mM-k@KeU0cCMqDg)o;L#&9H5f=uIzSScTAl=!8?||C_Kz1m}g6D^bn#&rc(D8>D=n3|H8D zSSbb->0)Q|5niEjAdHKK2sJIS*52)6-g5$02+}>XHuB zvr0uGq)gX@

{Z6X_KCAEY5o<^Yb{U7@ZZ@j*22nJHhDV(4KM=Gq{JQI?Ftd_Vwb zm(*ym*VdfX@S*eji)C>iVk)Jbvu%o0L{>~J+(5`m9ed1IDenA~>o!K7?;xd-p}a;Q zgtzU?MP9)bbwt0a(2dLqzL9xa>6@oZmK;QLa9%Lse$1wyn7C+<>*IYd;ES@tc7}3m zJw{^~N0;ee*$PFC)VH($&P>%EWqbfibMc&zxnb)W*&E=giO_pB??v;najq?9zzPEO z49GfLfktq=X$}w}F(z+b&e#`lR1(HqoDI{MJ)&2#A#%}K-5Nz&!b|kA@ri^yWV;CP zoZSRdJr(7^S^ zV{5MCKn06uzGI{5sDi(s^x@-omu7nkks(q}qBuw(4A}yaGd8IPx^0 z1p81dk;!ThwhSrhM>tI_d$6Jdg46dUuZ+*J3w>!825O*7)xodz;l*(lap=93x?RlV zs3`GyJS_Wdb#XhKz#IT1hz0Xp<3AV|JUV>MPfp>Yh85dsqa)xBR=yL!)AqoJ{c=>s zb(VaubPIB-1ZV9~AibL?bf;1dAlr}>(|`QH0Po;OJ4QOGvi=3TdESMTgMTuK*eI~+ z5LU6;XSxW;7TJd`U3dj0nUe)J<@H}?c=f3q1pBARo?*Ql6`%l0DA%(HsuUy1Mk{^Z zlEF%#lGGLa)KYEUA?3-+OH6WwC*3pK?Ob?0f4(FsEwZj!w*zq9h`3{ucZt>!@L1UK zus89ys-Eq6NQ73la8CHdOg@-3g7e&{Ao(+^l=m;pMB0vx=Pu zN#FKh2nTs$eDeWi+zF%(AZT-R3)}cPAx#XADX$zen>;os1HvKCvxB5(Mz=OA2xAt< zN~*zI9|$kDoWcQ7U;$Zm?V#6IpfWWL$HY-_U@I+rmdml8LQv1=bW9*}+mrU-0up^tx#ZB66mNSn7KQS5ZZG^~GwXn;NQd((C>)!55|lF2@*x-z zt=fr^gm(sS!8}hYf<6B517LxIgP_iUL&oW0&?~Ondz1EZLcZ5$P@@AHL@@f?EZch& z)eAX6=G=yNae1(G3iFGl0dRkFkkNKJxEfc@h0x%S%?WZodRKFw6L@$^HTTs{r>I<~ zXEmI9MpHn(!$l*Fv&Hr){y@#p2unIEXU*h<_%zaReP7sB5frorlMd{f%pHPsHOf6z z?Q~iPqpc8OsH3J4bZVGWPUWV_*By!9g`^_>Y9EF5zas3~E%=bIvXns+Ne6bed0oa+ zqlt#G%wu=8cm~dLTYZOL#a-qZ_xF6)ez1Yl=~RGk7&Jr!<0wzLOs|}}8BC5}!bkf? zPg`9}!J;+p>ABWCf(11Uh=t8mPMy)5@?PbXE=w)0`8b)RGnG{9fg>{45T{FtrJOMz zx&{~uee;jp!cmX?4AVZCeZTMBzZADa6FO?Kgg=092?egEtBD4|1Vh>I`>NTrfPk7Q zvPVGGUg3jQ3?bJ_84(ib;>-eUliAFlUNqu_gj~fkQE~ECvCe}?vb+&*Nr#aoOy0OD z6Hw7)Us>_(i2FG%qTgX|j*Z-V-*>GiPk|uBKk9!%fH>0a!))A6@@as;(5v}N=$vz5 z7~uSBH%bLq?zqWhYFDyS;#7H&vf>>Ldwl_~`>mVtio$J56fjQQf1v`-_Kn(H7&l*Rwqd4Za^vzQcD7Auk_M;Ar2byAI_m@hx32 z9{P_Vc@kPp7yfQ8MzRDKmH@w60|$&NqKI0cEajjGybr$K03VFAIj;#TnS8N$M5zJv zV#0+zto(9Mc{2h7G++GUESw2mbbnt;R5b#dY(f2|{BzMYX)}$O$DtfFb68^^8+@3D z{Q7tAm^%U$3lY_CKp7?CepndVh3culT0Plg6-2=`tnzb-8ykomv{pw+d$->R%*MLX zJ{@tAqj#!f!<+b<_y5rgV>bNm3jcz}WhkXLs6wEDu(SVv z?bSH`|LxVZwf{%z0k3sP!9WGU#OeNbXK%*HzSn*IJRE!zC&ngMF2#Asjc64KDc9?U z`8-*tP7v7+mqFP?qqc9Q zedCLH;lLQ{`N!eOsbw9C40YbU9j)K!j(kdvF-487sXUNo?qT*qSfS|;e3La?Ao$wL8+Zgj|y z#2FLwZU^j=P7quZ9KZZ%8#hLzLB9qCNdORh%D-?*?qqL{+R%_nEZ7Kv$wA}O`UX1> zlOB%gX6Q0t#$00^`YG%%BG~S1)!DFS**^KN>ZaZq>7xq41`N8Z>eHe~j#_owfZF-j z?#k^)H{H~d?Idlflc-q+HY(UH4;K%nZ(_#A!u>#zWHYvvotX!c`=DmqrtR&Adq6T# zq=d!T#tVXWg~Fq&z8Fb_TODk1$DaIIPCd6bR?itf9HkYJf#W)7dT1gK)4fsj7qKoD zbF=uK9#}B`_Y5RX!88&hRUe-LN*yXHX?%EVOXzc9o2j&I_H~YjV)*u)qh`B`9+I#9#5BSfuz#H~Lq4UF z+QZ~jCxS-&U|JxI|I&;p9Ej<@4VC?FZC>$+#~ zOm@^CyOeO)B3+pyV@b)Cg}@}C?CjTj{4j=)?Bo25Vv|R(CCZJ zM#{-+rR<*@7bfF7_nT`aKcv=PV_c%B7|+n(N5xAhGCBn^PO(RLfz(DpxSz(Oh6b>b zSE>WX1BryOyaV17b|7|c6o8$l7-wZ8C^sA)NneMsm!r-P=pJbWXpBxUl6OHMbn9_{jIKt?_Pd!;Cqo@>{R&mS$AlrCO zoaLeCedYI$Wc{jtkzYPQ(Mt}^qqEMdiFkK75j6{o4ZldisCD%56o5LzK+}`Q?0ukl zWt45lTt%V`qmwn@4$L=Mt;*U_E3%r3l1|J^4fp#crVrC7*a%O%^*MK@kVOwxCpp zbeI#fv3SsH>ii1Y8c+k>cC&Mpc(Fv+Q7RYWW)u4L=h}N1@fVPr9ITO(9pE=JivbFy zSWrZS-uQ6!>rAyUMY34f@ap+h37_9IE8ml%>bHV%oJw3%PF%yMv-fxxwr$z=Kn;1s zm9HLP8l!?QK~FhA3|%hXhm!>KCFp6;G+g4Zv9nRCYt@mI2uSc&3=$7k*ow=7o6NbK zihRH>!@lubb!rEtN6D~&^9JE#`4iZ7WuhHDH>lGqgzO~J+<*X|YIvi54)GGbo!4gD zzj{N+8*Q{l=3xt0bZDS5%#+~Ur6Qs-{^=#SuKY>*5LW9slQQE4P0r`3NF)`*4vA39 z<$RccfY`H;3;1zf;N_kx%zv!TO1AjrgVtd&E2Kq4p_7!%moy93FdXYSm zh0I{i-Ifj%gBGkUWuYW{l#EHHx_&~47TM~|0SYGi1K7@^@RanIxZz&xnKWUh+Ss?2 zoifcpBiU~DY^rbMT(7X|Cr~cuJqvsV^ii*O_x)>IUF&W^wIv_W*A2zHxobiyh_d-- zA6+Rer}>BE-d=m29zlggtbeaJCHh7$Bzu`RzmxU`YTpr%uoLvKa|7=*6?I${#szJ* z&>E5M2ng7)+xhwjR>*_*8i^Uro{5kwG;Nfx)${pGP4~Ifm7+FPX!g{}l6m~1E<*p(202tc>uR)IBigK)^eCr6Z|%__yNL^4aj z^vBOm0x~5U5-n)S=031Z5+Ibrl|SO(70nFvGZE`j2vL!>=x+MU*Y3*_5YA(j5%)pm zm3n_D^sMzClwLwh3o+NC|5=My=XsW0!q#wg-UYsJx&z9ors62W3b= z0En%_gHm3J4uje)>c{V`e2rwL?dmU@Vn=FV-}A!w{R6hR;BcEr6+9 zd^Z&=3c-N7R1$&A&mQxa{%7ZCZ^sF@tXXs}y7D+k%_2O_`nqELpZ4jw#R88Qj? zNU$AIt!-JdNQij(Jg=mI39s3JUkO{2@LhJrZ4f3ha^J?Bv%%fFA*U^K zIhnH~{D$GjEj}qJP|j^uctz0yMEP^0!Y`~tK~T@jRu)MgBrne6Dj6>cYAZ-F(FlPo z^jYMK!mEi;lrq@nDk_QKXJM}Y7mZ1Ctfh-MI3?2Wz)EL9l*iv+t$-@eiJO|YB@ zYcVCw?(v+=TsjV_=PIC$sqg?S&pn^Fx)aFSis z!9nK^<;=|q<2fIc@&MkwWd9cE4y%$PgAZ+21ni!M8EErD&k40caE?LzC1bmK1Q^uj zCnwgyuX&xfxa(@_^B_fZUnjr~UMaj}BYIlTu1i3P#XoBg{~qD6a8^qp2<`O;79SJ+ z=Kl)NIsdN!os;E%F9&G=IJWVdBln$vFafY~1gh38Ov3SS5{{fT`z@??S=~JpBECpZ z6WU0~q$pFg@7vtD7n( z{EgK~cD7vIWFarRxi4yk+NekFDW~A>_wn*(XMldyQYsk95lWcG(L!y~6jTMga%NOE zmGr@L_J#c}Ou2r;rb6p1v7qufvy940o5PnRmHb1&7sVDJ8Zfk^M zK*pO~lE5dZh+1V7IU=Qx*6c9$?(bexdcUkJHAJBE&0 zokW#8VoVwEGTiyv>bcwXdqY1MCuSNuX7oo`@OpyOm@y+nUwVp2cRTJGl@8s_XX>{P z^sUVxK?hf9yV6$MZDAlCBLEfoG^%H64b{K9E-I~;unC`8&qY)viVbvFEwlbT3DacH zDlpGg#5BcJ-SbC}Ol+~6wAJkf+%Q4oP-^5uuBrxrE>pIud=X?=>K4qRWL;cf6FFfS z!*u!2yE;2$7qM;)ic{GRHZ5j<$UdH;nA;Ii%e6Qu^a%xWSX7sQ^M+V|HJ;Dg>$F{dUkj(wzudpgXylBF)L^|rU$_j53uyPI9+$h)o;6HP3nyX7uzMqqV8}@wx=$8*rcBD0 zf1jRnB9Kvb6a#t}(YH4BRh;SU6_3zqcDs1j6;j4mps^igz&MYx|D@-4b9-yY=59qB z@l*{P$uVkiaRwZ%_aY5~7b~$*`6Gz}%ZU%*Vg4wVvBn_o35g5d=i1;O>U2OEh_C{T z2f-tB!}>?h{)!Ls)VUU8p_nAx%9NEpML*^o4j+8amDxYots29Uw=7icAu9HgKHZea zha?}2t?V=oPf3?BLzmFN=*_9}Mc@4jR2=R>)#ECvkK47pZ)mU_nA-wNUi)rx)}m9Sp}?edO;D8AH$VGLf$Aq-%%0E+p$6Be7h3Xm2oY8hPZtFN+y{938Y`O zShcnCP|nPoL)mcn!k4r6RRXpg{3}3Ww4EQa74f-jPXXFh;V8QpV*_snpGU9WA zXS7O)za?T;H6U|&NDQ{-lkOiqZ_*u~z78~%IsY9Y6yrHITpas%TEe8wnuZUcXzVtZbWAp>{c0}5=<*~Ox9zoA;zFn{e-YNayboOK2p2&SK~X| zKmf$lUGz{?`P%yFO0Cwe9AWe037|} z1KKzI6H1Tl=TQL;I(1eG0Z4rAKN(!T?af}4E^#_5uy92glQO|Scz=7|?p*gM#K>k~NI0GjMTQ*%LD1j6hWZm2H)*hSF z-O*sNvln@GPjVXeU+&ggwPnJ{q@YbE6ETlQ&i;S?WTKdmXIqB|RNm{!YhkvtiipE^ zdPWcS%g3R)a9eo3b{h4W8C{97S~vamgAZq=>L9dE|z~`AwXi}c47b8 z>xvSD=L$fQ>P3aE6^tZS2`UQ_qg;_)PY(Z|30D6*lG5{a?Lc1N-)Go&Upe1)rvt>` zsk080UMxwwb@@4I+;{MUD!HX=&7y-a+p_-hwNjPGQof|r^M5NjR8buD#zWV}Y%Eb4 zX8HiQ-L|Ln)_FZDH+a<_eRF8$@fD?BAo+it0Nwhjq7gj!@iVn|{n_#)k~Da@iHPrC zuG<>D(<5lu7z2cNPHQmb6M#xC; zxRLh*#fHuqRwPYrZ#@8`B-%Kx|N zete?B6Hqxb18GqI_a#nDD0Uk@)*hg#*pYz-v@?j-(2DUSeIq&nRAgzQ)}9e!kFg1p ze@Ttg4o1B>(`@tSZxE@ttT9N}w&g>~u%oKx=dVRUBZBJlv}3jK@h}dW>n-twW6L$` z>+Xy$;sBh$LNZ9iCqit>QbFRx>6+E@0t@I}$L|EMP!3&3EnizHjfh(KX*VF;BD`~# zw=POGyW{?T;##P(&uUb1D!z6o9G$9Z-k5-4kuMjaM7E_POJnL7moQ6zC`-Fb_=7-2RS0>YGDG;?mB~VLZxaLA z1%=flNDu6B1~yJN=r6@#1|NX`BE`DH#S*fjZzl_$ zuQ?op&wcH8peu3G@YV#qRdFTwlOm<&L5}(#4ngIzNrm$=kWKPxuOHGf=e!kbZM|PJOC8qAFgp^=9odr zwb7hxk4}|EhzkX$67g2@Ki_)oAkSqAzNGD+ci-`kmO?lOiY(Nxda5CFi~6Km@$q6t z6ZnyRa{X+toJn{3vbS^H$#i{!r{iK5^4e`|x*fVOWO{^m&2T76U9!q7<*481fq?ck zyR)!I+Bfa?itQj|0RY+>*tMSeBGSj{A5X;Gt1I>xy<$L6Paa!zX7Fw72R6k?)I^20~*hy#)R2G`LP9;@PD*v z$Lbg3=2MwTf#u#5wK0O58Z4Tgj?_TAcVm3Y^~f}3;*AY4 zcChxvm;*61(f9X$*j3c>``AsL#X1VS!-yM?ea43X-dc>n^qIXeREL=hQp0P7pc5*j z7^)0^Vtw|sf6++bSX0T=FmEUgrTi6KxGohGWZk02SR%0!Vu*ld3N~QU6vWazPKJb_@=YbSd zXd8C`-zocxw1PxVHG+^sE;i5DiC`UYV+?r`e@RtG(GtD_!-G1_Brt2aN`?$Qu| zprQ)TD9-V4!MtFWbYXoa^07MIK_W~%>rZwtN(g6dZlZ<35_Ur>Pm7kFl9-=E=R@CZ z{L`nkrZTp0ya1z2#Y#|SPks#Ith~H|k#5U(@K#>86%&KqWyx(eneRv2rZ?9S>gmkZR=R-6 z7ot-+%F+Mjt^fB&BN#IW6I-${JT*XPGj5Xu$$z(w=|crOqWwTTMGXx+>#wezGMUg} zA)TD6@Ipke2mP02g!b`~gpG3y3Lba697C(EvZ6GKn}$CqMY!?Y z(f}JvnPCE3>0j4$V&8d^hA(o0#R2ie+43+YI z!%{KS1cf&e(?&*5zJSBEp6l#XWEu;yosLr#&O?SU#ya@m?j6}O25E>oe~L-mC_Igg z>W)ZLsW$Y-tL`Tf1UQ?j;pZ^?D_sdKXvXvla}@G>wE0&Ghx^z0G957X9)|c`){_SG z#~-if&{Z!&nd?P&6W#pUT{cEa&LiNy{4ip{%TTxR+V6r3zd}U-sAqHqe9i5d03RL{ zC8hD(IW%R*8A@i+O^PxiK$1izlO&NO!6g0$wgxW1_(Pw!;W~kdBar%z=yn1z3u!rd zf}+LnUZVT-IJPClbO_)Cljbr+GT9=?){kw`zv6`$(q;3v-*mmkk4cDz*!VWV^Y%aO z_ld}ThO;R3E@Jz=R+Syxr`-iGi}bQD&RiUDmmnGXQ++vA&qx5{LyB1J<*qa}$6igT zk_)7HH>RvxfG4DSYXlL(h1zQ~PMel}gnG}ks&tGk#Pvys-T?@XDgxTTLx5)M_cP|p37fL%M$x6nELO@g{7xP{NB53 z#j1#;i5o&hk4@KUSd-b#&b4W>qCvU{5|xuQRkmp^uP!wRlv;4IHl8w=8W`!aVCsSU zB^TEPYL;6ezX2|)sqNOa6Cd6FqS`i27E0*r23GMB%NnaEs*9@q3&IR&xz~DE?v>7Z zViqt!tNF_W(zsdrw3Xlw-l!{>T;g~K(z6a}?@^d>2|oX3^iqEOW}u=51P-UvZ4z{C zP22C(VPK9FlSpaAgPj&2q33$9b?Vqz;erT-m6auc!vQtQi0LLN^R}d6>nSksCx`vR z<uo(*^3@g5fQ+^5gywH{_<>VF3!dJX@{WHa8q{kQLHW z5h!U_+@`MhOVy3d_59fj3?_OY(F2{IykT#+UL$2p>IPg~DrVv@PC6eBj7ul#E$P)0 zifO>Ifd!v_mXFe7Cs;;T8qO>Dz;ezIbhG#+UI3y&Vo^5pSwv`Eu@y?>QHWN}>eqy1 z6XN33`LY}Yu{BH_5Rv$Y!%*jS&`QVvpEvhHHR>XgU8Fm?I&$M1tz;K-#cW8Vp# zDxi(0kz-UYj9=1yxqT*VvXf(yiiR6seZ`}e$DA_pd>X(FroPTY39@S-4Hl=swoK5s zeBNLlfR+;W*4I3_H{(Fjb;@Vs+1#0=-VuSxfVO{+{L`Lbd@BwuK7NxoV}S4HK^}+P zZ&n@ar=4v;iI5&?H#&y#V)!DZK1Pmm&=Gdil6ZPzVV~ivfgF=uC7Yy(0zb>vFqkx!g6yv3PSMbE()>@3@91;D0@?Lw`i$%WUP;sMVh*)LGpo8(34T^PX@F==mP4x^*0l zZAQ{miAX3T%L0!ap&2P5K}m*a{XD5bR;8-Nj#CM?&im-_as%T!)q*Zv^hi0;S;-|EYQF=-IzK z=yB2YNM2K`c6<#guDtRoEb-1jS(rDwe*z0n?C)KCR;lm}xrxy`n0$c`zYAQZULBOGMlx+8}C z`zfmZYz`3mRjpi{X)j@*alq2FF?SoOPQiR~4pgAnLvGY2d0y&r%_eP(3L3KZ^5lj3 z!e?$4nKZ^}&CHv`Jvce78(+zb!VjQW-Z+vi4P~05X=jmPHXQ~pg*Y<flJEi4uDK_lGE*nE)HQl1$VUreJRB(Y#wp^L0_<(}F+Px{pYYpKROW2FU$HuK_X0qe1{n9A$1N_KQ7I7gmw4cSpdeqS6o?p=;w(}j8LYibDWpz=QXu+K zDR2+36n@&DKRmr$VFeC!I82)OQ1*KQ>GwsL`_+s4Q^3%L@T*cLq?nl|=ti>vf>ZVR6!kIH17Y=Q~W733} zKk*pfetWGH1&L8xX1R@t@tWOYo8?Rz8QJSZTbbtP(k2MURMgm^sDT0D>gc6t!>s%5 zP*hlbK$Q6R9{hZ$OFWK4=d%C+BL_I(i}_{)V=)qbcNeV`pc3MvAUDn9BlrPu(wgT( zf8>T8LTQ6^v_Mc20#*h(DAmllJv8m3uYWY;&OKDIHN89*{RX}B9u>>a6akD1ppd+6 z!y3Id_{9)IasEtsAuUz_;4KVzICUWr55UO;I+BMkP|j-$BteRo=3aB)&zK%yaqe}ys!Qp<}q(*T`Jz+>gb0_nWGSS5J|)?mFa z5;7cVH1JE7%7xLKhJ8CtB{0_Pn?toFhVKWJ!WYtN1PNh1xUX0m19_-1qwDKk7q3y_ z+>}}9H6aES4OY%)rLSQ!A6?s1)0H33ct9g3h-=jN;usVc&QF3Q&1bs4KfKKKf1MO1 zoQb6)yp($k4#~&=)(!4GqzJ(?#rT{gPA_HiFaIr{8(56QI|>T@hBC`|qj#{|@caVvB7ll)R3HvnIKT1uAKG8)D zcHD(e`+ZS|FXodpqL`1}0LWbCeYycJHl+}+qYLTy#y6O-Hv;ZU4eo2ck;xg)Mh$&^?ldx{^AQR& zr3k7-YQwBp_@uM6Yo_ezl^(~|m(fG)q!&^*$hIckGMM&~glFw`#eAitE|A-~7TbDS zVU^@+S`3LKj6xy_qn>K0n3-9{q%{{RBy5|RlL{#+AYfW9TjytGe{PvbvkNj8oN3J` z$0x2p)rOl6N4@y!Q1m1f<%=$qNr7eD#52H@`}hQ^)zOXCb9XtQx*AMK2uLY-e(5eJ zKqnLM*j>&7>FHe#1XiN+?wxOtkq65;pqQKU>(S#ys;tv%QlV2HXa!KC%_VjQ=wt#O zE3+0zm$x_>s3EAHe}croC+cRv3VwgM^zjU9Bi8TszVP-RldglfLADah!%kQ(MJ%k8VEL14dMMSJx5FSP{ZX4svC+v zO})P1n$Jf3;2~g$Py^c(^<)?H0kjJ^If_~7+_ny#ZzqV{f1WEBA;jryO#4u!@h@uU zYS9S^p6P&fBkpi)j>y!UFHfPcK1Sv0%nfP^KE*C>P(5NDxX#bs(B|xz$0y}wPKMiG zFQn#q+=}I5{BY|wRneZimYcNw1O1_e0Lcv%2$L4V_ea$TvB>;k?mgdy(9hW`;TkQ;7ZLVCe+HSdU}2xS7hc*QaPQeaCn1u2+8zICzN zx$s(a!#cgYwryIxvy@^m=8V#{Noy`-Z8N-Z+GR^af3V|?x9u(V@ja7rd1qDj#1K?O z9zYGjX=#1qWhw>?t3%+iD)bXz(9zw2rEVY2_#X;PLB6B)s;GAdq@NBH13R#AJ3u`& zgQxNak5lw}4E)wtI52aPy5fG}xoexl)7WDSln5Krvn6Mhql}|MQCj*<20ndWm!J?y zfMIpEe=nnJPdXu_(}g6>;|gsR5g71i9mL{MwOh<8k9$fqLr6A*ql5Y5?$LTRofoR* zHtMA~Q+o7@Uww7COnnB=SneiC)Enh&dD|bZxiKP>`Zisk3}#gWyA*%M>pm?0hwj~w zFZPKS%y=mn!uo#zvSTot3T19&b98cLVQmU!m)=+e2m(1ZmqE1y69O*XEj{{cr)=1$sbVX^Xaq+R~Pil3gIU-`*L{NS3^E z?F9;d5IH30jWZ92bg=N@7c6prk%pm{N7-V%f96}N*)FK@-Pg|op69|ucQo_M+h?!d z#_=NXz1+`(#qDOy>b6+?=)5WAU4N_0(hbAVNj_V;Q4~90%BCdB+hrCyO17O*&C(S~ z=EqLpi{;O^-#+{5b`Ts3aiNAd^RbG_k%~zcc|jPFidR=C?$z5wjAsRb7sU}UwR3bq zbEcev*uxgjaov-A;zxWYP787`>1VuO#)%`1maCmYA4SfcQLe7mM(tI#6n~l1lIvtu z@c1%tV9L@BoC2B(8{^qCio0b3Dibg86m94I;%Y?stc}}dlzk`^}oVsFH>ZhP!y6L+SZ1i60s(_5TNQ*0C;+_*Pi$aftHr=W< za(%hAuV2%`&p$uAmuhnyz(#M&QD7hKYveSg-n18n)ax5ozYdq zzF|3^+?v`_izJ)^`pOCspSqe?;=&XbZfdjdxvq#AkXUwGD$+lQ zpa6=d?nFnZrswQ4XWvm^O$=&xvQ>q*bW=Zae$Z{Hd7k9&VSoKKmT>}bnH}Okc8Cur z8q^_@VbAi}H8r(ZZ|WGeQASm3G71NKFod+47*K(ma8F|Zg|@7_mO21H)s~uQzio_s zirtYetmQv8x)@PK@A9 zAWvCmqoYFMw14Q8FmQb8ekfH%go$ThWYs$p+7)Vo?yyUGci<{^hvi%PF?^$>g~0mf^12xBYE6ZUjlf|7boq;a_7RPu}E z+tLgTYZ_`ET!pb21P+1Qu_?^MPps1Z+&075hZ1xEhkumREv>RJnZvecvE_5GqEXJh zM|Xrg_tGpIE&x@lwrUo=qtJsK9xAf7HG0*xin#Yd4sw5+6O*Q%pA1)#LalcekZkd% zXVEYAf^1muf>>*|l#o{y1SVk`+q=*>j?sUKaQbLgkVtVziIj+OPK+l}_b3IBgeibu zf6AuM$A2U^jxLm;Y%sxCRkuVcE!@Daq_!GKFr;Sd#xRP#*uQ8~BF_)g$D2Zq$#O4_ z;%SV*UA9tu6(Yb1$-Xc;03Q;&rk|#({t89?L+DdN4rrcuNzP)vp`5jPTQr8FzG;C2 z7~eKT+SJ2YWc!2%(0D_iovgN<+*%^sG}KRi5PwxrE&5Jk2kUk+D2uHGJ^DfLn&rgR6(7&I(-%s8WUa&Ui zFMrqy;pN%zYT*CxB-i-Bl?#{5%hRd13k4ZsQw@wR`zL~XJV5{`u&wuU=h4Q!gCH?j zbYGKtl*&^lAtyX9e(y64d-jw70a&0A=||Q&pIC-q;)g?(FPmA|6oDtwAwmB!i(ps)vIY3ouEW zFX*N^=hr0h;ynIK*CI0J1HeuVor$Ubq)EKs7%VJ0BC3_P^b(2Hki+$x&76V|V}EfP z{|zw)dwXO=>ePGPwzkmVxUUXc(Tu>SFRe%{(zCul@buJa_$sj0n+M#Kxm<~SFAS0= zhHwTKMG_%Nd<9rs=&dcANGo!7EWB7ueQneqoi=1#7I2KD!m-QInlx~>MoFryQ#?}a zp#|ie2n5B@Fg?)F`y{sd7_`6)OMg}vz7NzMM2&AxW=%dtvI3`@=2)@ruD=+qd6$n0 z?!!8fMyD{`%MNG!zt3XL3ua~$O~m;LuEL9k;QI9x)9jcjMmzGPXvbD<3S}^SAXn$Z zJxc&m({m6cA}{cxaWo@$xUV&X#HyD_U;8@6gEf7_g!LS@Y4E)rAAB;iF@JEI4n2{D z(~#p0;x}d4hXg(Zo~)J-4S=yN(xHY?P!&FmE3I&Zd1?Qyc;X~G2s(yT7_pf=ezFVW z(9>HXHfR|Ze=w$*zRezONX_Ln+Gupa?{Y1d6#QQW>&@HH+4lfj+^%dq z)X0x`c>Uize*#%ttxA`{d;t>zHZYd~=miu4F*cV0ItMA0fCU79+&1n#zhY1vP!EuC zEyLhbGzd{TF(-N)eP zb9o(Xw?7zTg7lw%`$HTj!B1s>X2|<}ZUS2lV`uyQL8p0?1S&H7-|v2X^Y6Q9<3#IM za)_8WEN1CW#i5B)Ei9&a94Zqti)ond4@s(ncl(11>Z2=lDoNNwJXc3Yx!t-B`(%-X`O~T zGrLqLVUolz$mOsP9{Pq{Yof#=C{~3mg3>B9x`06zrY?~Df-V4ok=-Q*Cm@*#*4gsZ z^N?JB3|7bHGaTC34)(+V&!GUV613rrfsDsp^>{|4fl(GA096&|=-h;QM7*=5pHKaY zvE@z}wTNA7Wor?{1qukeMZ7w%OF76EL_89)BJm11tb%+Qygp82)(wD|y~zKZ7*~$D zXx3T;TD#We(F(Zz0VD@3Je8;G8`>)8fK7lVWNgZvDh!-a!SG^-a!c`;m*DSbh)sOFwy@p%>=-~H5Xrb-F)>(jp#`jsjR=+{ zT3l@7Vk96A_RGM_-liZ<%SffS$IOx>7S(2`a2kwq&ad9Gf~w|NkCK~28D7RJkkAeJ z=pO&*8_{|;E0g3%ogBHBWktCk>tII53DgIN>&u)4@{N-j8055ofy5G?jV}~`%Ots| zVii+N))jLq%@`wY8WO;Nza$U1^z&F$9hR>|u zzL1M$EesK(;Iaur#}P6aiRp#d7eMDgU$`6$!^|_KQ=UM={EE^^hfy>+h3JtYEaf(A zaIj%#FN<467V?Rc!X?gsn{`|frm=ZN?R7APLPuWI$gZ4yPKkG1YR8446N?MH<9L3t zV$x03Ul>Fug*Z}wBCPBlN9RJlP-+;9>;eHdo`yj5w6~Z>YRXpS!wnUftbp=!(lbPg ztss_#DxZ)bm=;>2yOPz$N`YIftai`#abrTm1F2_;_xJle4uokcSy4bP zS#eq2l&nzq1O5D!%scECm|qi}N>({8EmS;9ma^nE;UID000w-2z+k?SarQ(J5l7N5 z%GXIy&Cse}(W%&fU@XRYyk{T2eNOsuaJ;JfpNZ$bmCyR-9BmGqTg04DT;%Ef}%syy^ z%nOMLagK6;(YF`-M5!gtV9y7#7zmyj`9<(%3|rn1)e%6hS)y|Uy`PP4HCjMvQ6RK#%)r8KXy9uY>#169Q>sIue95$)Xx zivX{#h+QF%g8?lk3xp~%W+2Ki{>q~U4SW9W=oUL< z+KA_W1MH?Z4maSs--URC`#>^f9Ilj!n>P--ykQIt<<^#_+pT2zUGYt@dsk?t&Q|e0 zv`-8nPOuvY>6X;4>GY^1PbL+aI$oZ=`-qAH+^}It)%T-a+|2-V+127wPb1F+H;%(A z3vyQ$EUy2^SvMi@@|?#ZaH&%2P4q66XID{w#Hn0OgLiRFWR>v|>b;>!5qg5@ig;j-maUwtcTNv7p;ky3ie_6qg?Ah`%Sog^Q8 zivh+-YGKw5rD&UpqE@+|pna(X}Lrh&I@kHOmZ|p2pkG)$NzI z7bY#|xzvHdRBG(pYmO7p%Se5vHO?G=@Lde93EOq9=wDUDo!3CH%;owOeM&>1@=-c* zPwAQWl-_ma9?HqDo4Q&(rAx~R!pXH`W~!5w_ynoS;Z#9!h#iQscA5VP%-ib zo0#}p(Vap{X6}<{X6?ssmMbca!gzi|KG|a}_s7P&Zvj=x`rQ}zf2z2a!aV9)SI26g zzFeXvdLFwTYgnkFTSG1(O$w4m+W9&H!!WChxaD`HOZla`pxVX@0?-pL?){5AHg#_d z_;6MIW&O7+K^kju0#Zy$1v)gvs7;z7S&rPL5k93l`8pjV#fBAJoxwl_?LJF({~*SHdIF{CG*0SlCY*Cb<^xg zRft=@igkzlZPr&Lr=pS?Cd3Cvqb!qX3y{BT*B%5j4D* zQsWtVvJt@q=)$}{avI?Zh4c7-#Gh>qv@~+4sF9pApQ2T}r`dSd#(K0QSN0X-gR59W zs_`*KK1E+rKJ@{@*S4-RK700sXnc`23r5t;nIU=*ZaHDk!MBYEF(GJcVdt@Wu3>^g zo)p<=T7e=$?nYLF?QktVt=$|2E#)qfH_>JG#bBaOd@n^4L*eEjcEnbHutH2GYHWRK zVlHhg`YP3xVm3ILHcK%Wz?O&RacCTgy`ei+G%#&SIFv|n6NW|2m>xSwJReD!t)_my zUn-T(6Lo-fXQC-fpNsct@9qQJU7ptnaOK2 z`P=GZWhO7pUoJj>%>ICZzMgIP=f&-Ov6(M_FhBlyhJU9?5F}apdW^{y+P8-*CAB%_ zqau7*T|c4_vDnN|6Rm0|gNHn@zP&R1wEFmQy1e4@n6=6C*Q+_Cct1=GoQC&e8TF)8 z8(Z}AHu`bJ2vV#^z4^f9U;Xoc_0PYv@$2epc2|g(<_*$B z#WKH{$?yOE58M!O!kOjmV)1tHOB!La@U<^qJYOw0P0(}rNa@}`M~KPWCj4(Z%Q?bV z$h(9vc+zue5O zIv<}c7K1%X69NoCjaRXXtPfCQoupC4h*_{E0-HL2%k0#GT!ufzy<+?f<5^EHH}n6^ zb^_cCRz#$iAUXM5EWk&~w$?P(`T&KDP1;DSsG8x;wFBTYJEC~dTK|T_29I#MWsuGTuh~x0% zfsm-x5}x;I*ZZS6x1D~I;&MH|-VBcq@XUz(2yO*H1}L5_XvTLh-SV@S<4JsPZoZR{ zKd0RHw z?jT|oB2!3$kaYlcIG?YecBQ;mIp9HA@ICAcZ1vM@tSJCD`igX=l;AG{gr$?XO;nQ~(lx z_xHIo2z$!kLhz2vhP)4kKLYZOZjaZOhk1R99c=$X6?IrtJF@f7oa5x(rts}j!b93m(Zu(r}&^SK7qJp3+>h!=@YDljUGI)DjP zqX|wyB+7_FNR17W_#!s5aG3y6kQjV_^;Y+5;~%ScT%7i?UM+^=Bak@OUx7vnxM9fA zhRPZ(#W_@)XbUgq%lDLH(*Y(J_Q&hZK*&nU5Lnl%KuqEj`N6rP1p13yT>pH zi3((xcLpJ#QW8d4T{1S$(q{mn#O4Dmps+9q%w7*D;Hk<)g5%d6YOFX7*v1im)Oc_4 zum#!VACQzzc}aoqMeF@9CJnZvc>jw5Y@UJPw6fF5fj;jkC}lSw(Dz_A^%yqo!g?Rg zQ(q&>yR6WU(tcF#(}VU9Sbg8w)%wpC=BJnQ1-xpohr@%YxW00RKx+%scC31KM~ofv z8;m*`+zaIJ3G0Ivr(`_KBG14hx5bg*rF~0BL2cFHO|8_tpVN!L*tVf(M$cV+r7K*3N^-A+qGkNRyh2 zB@nypM!^rkODpa~qUfFz|U0O6mX0D&`)(|TmG>Bkv@ z++#9qfmwL6dw%JPjqTHaC+Hic#M3@`op3lQ*uXml8K91KLBdmD8+E^ryg>S2ekS;L zPG@*r3P9JS8avX1sC`A}ANVT=KAk*GWi~(=tc-(qmDGhU zujm_#aqwd_Z^sD0b-VpyksZfan@N%NF98b4@Qk)|#0)Lr5bYy>wOAotZ0YCCW_^44 z2-Rtp)k{8rFNOLj75=Y2zwda{$z-YQAxp)bUIQ#Aec8CP+5OiJPTybIvp+qZ4CbC# zm0hE!Y_%tPrKfCvRfgXa004wH_aEsS?7sg4{UgIdW%UH-<-NAg^9qbyG>&!!3Y4$# z+92x=oel_$vZj$^Y!pWz+R_b+IT2`4WmGAcYTKn$7J6%kfqcO6xO+bLJYUZ@9{>#J zm&3EI!+AtOo^=iTcqulglh*HIMt(q0{puwqT&?U9a8ksk*G6Kee*hL4=zVBYe z`R%gR(FPYUToBQ~UILE7RZ?%Vt8AT1<1rW^TfuQ`tMx$zvdDw(cpMIFyuEzTZ~qUE z<|WgY!F&M|0yZ(1!OsO1m)=YSDu2aVTd&)=5q{6FI1dFPx3MDLblF9KW{YI8eJYw$ z^dTFdIyTR-5LqJV+Bs&C8oD>b{mt?Gv^UaeEDqQBL9+jTV3^gG*r zu5cbMP&d8ZzJPa;MpeDFUw`b@FUVgaIv87tsM@U7BC@>H0mn~WPZW0`lPnsRt=A|R z*yviQSQuizwhv`reZqOjx6-gKHhTMDTi_OF2o3VkFwMk;C}`g68Wx8y4jjrUhi^bAV57%KhHc-Sbc#O#ZYoDJ)o(cY8ZsuI#$%q4w+b4SzjP9f+5^c08l| zN_#24;67fyO=WnJAcfqdv@OZfC=ZrMVIUxt5?*r-CIZ$+`yKd7~$9`!s zBVwbCC;jkhkv9=*qdm>1a)0uCO_XshWD;v-re|}z^Tfq`6T)0#ak8$?fW^#{qTp2q za`fk@GCT$9ghQieTYvStgY8ivaom16f>m}^!{hy~?CEV(Qb$Jzy+6Uy)PpDLR-}hJ z!V^r&yh68NL?%z7+f}Zk#;NE!137>QNwo#>4J_=dP1U2GAzWs_k&VSC)@#FM38}<0tWb0h- zi>rE{eT&{N>vJaJBA?i#(>^??eb?~OZ8jF%!uER_=$F;KC}Q(;bx(lTWcon>nWnW{ z!oaoAX>2kvL%|Mt0`1vU6BPAol{vRSZ5|lF5O+eL^$lnG`u|Y1ECt+~LB?x`li;H6 zPCYsklj!K+v40#JcW#@O8r_jvo9gF8Xxt3;-Zw42C}&#O5x4_vf}xuc(Xody8|RFN zIFW-&BuIV0RWF34Gc>Wu2SqHwIWCD+#Yv_-5uC)fsR139q@?mR7WoWO?oQRduWIz- zTI=XdxxxMISS`K$_{5KZK9-Na_o}9FQc@l`z*j|7y8!$>sL#godzis;4bboi&Z+%q4?7z`e_Jl zVM_yAVpF)-0`zmHc|f;iZ!fbV&Xt-PCj`zIALL-y|2$QAT9V=u6l}kv@DO^yM3;9{ zz*_k?Y)8v9`uon-{6S|j!`EDV3Qr2xEpCkB<$o*-oWu(}agKyxfFf9!)f{_>pvpb9 zCMU)&NyA`M@Vmwv5oiZ@Y*_T~ENmBS|`8y*bc?U{(rodv@dN>|%gIy1v)@u-r z9e?*H#>l3&jN(oc-FdlKt1sK$<0#Mimu;KN==F8V~6Ktr#lD`**x&$Q|Ac zd;ai(<{rxj&MV|uVL(a|%Obr|$icPUc;fX)y|9_tl8!<2G|bHf>`^jKRQ5DAF|hLy z!#QQ5ePV? zl7EIQl-{^L@~PUM06)(wA2W#zq0%6c%N9>yuL=`_y(&_IBkUfBm-2%mJxe>aNW2lJ zxYZoD+R-Y61*uDjp*auJ1~vky1ApoE;EjC~EJb&v zw4{h%X#vquHAKSNZvxt4CeJhPR;KbG&OD*~knhngV%bv~^I!ML8`nfePHW+I6-G4Ipn;4>& zYYCZ5<0MTNLf=_@BE#T~IT93o42*F5BWs#~^B0jEh)fhl$+Lt9WCuyvRE9BHm!yYs zp_@<+&#;au6D(15?0E=zFlrbwTy*hU))`;$a}>?u28$$4)2E5cOvU9^eZP1H2_UOF zliJd{;C*s^HR26w3W3xY)_+p~)OsF{&tM;To3SQ;VbjC^J%z2_Kz+nJ31%}6VeoAW2H75}+Li4y#0`Nl2(B=l(%M5=`CvL5eSpheU9{aY z<;>c@$AB`WeA|WE6HM!dISaUf(4d45xReYFmP(FQb!<>7?Bg%!=zmaasmsAHS4ue4 zWXA!cT>8K%eDW_xx9_@-Wz{;M4VMpq2pJn79%!6nJ!9}tb-uQj9CcR z(@J{a$-2zLl`AUF5kT@amkTERYB$7j^N0X2bzgl9ZWo4{0ezLZ*PL!$cDc7ZavphD z)OYR5qcYV8p~u$;sed)320Fh~WfGZ;%~$|@tjeU~e6&O^2jSu78Rii_+8{Q@@)tIJ zKE%Nm^c=$BiHDX-IE$a^<#Hvb8&a2Hce9#F0!)kix2*NPdSWeS5v*h^M<+Ttebzd% z>DDFM(e||Q$ze&B;DCi7UW#SlF~7>o#;cRD(8w&h*ojpQypSxWmxAZ>P{mWn zj(d{G$IuEpOCD_PKHvj;P=fe`oSRJL!2tv>3cS?*jVBz+FV%sW;19Y2fLmlyx(cKl zq)->7YeJoSfq#`iz#gtDX%K-fW+mU5RO#Zi+E{6Iy79`@r$lb>zHJWFKU_&# z7ds{i*Gq!S%CQEPYo|#`%8@2em*I6Qy*k$eLu*0p*52C|W7%%@$xB6*0FWNTT}xX3 zk44M?agIgzKfGEJ`Ls&-oK|btFScb*ZU~Z|ifZGa&wocSY9^pUbb4llA-Jk^cDLY` zV{=aD<~#sq>YY(KOR1bP0D|SYSwi5jqND>rV)waFHj#;lGn3y4rDK!nYlQ};UI*k$ zm4?}(v$6?r0@_SGzJIs#l|6s|@E2sdY{5*x4yjmzz zC+Es8UDmEnbr=%geYMXU7k@D9<9J?SBCjQ|@h-!F&M| z12!==mthGB6PM8x1S@~dT3L_ewh?~cUolAxSYvD};-w=`wv#w;9`ayMkO$j9G~JpR zdDX49q~6_$;s2hxC{f+g9DsA6A0$%jBI{t)S4FC;1b*tONUkzt;=<-v+x?q_db|58 ze);AvZMPW%0_h*HbKp)88PhCg>(fbWGqte5 z`P4;Rz>yw8t2)33)3c#w%Zf?Jlw}1A#{2;8Fqgas3UxMt-K94S{}|qP1;vLX#75H zL}-ATfp)paSt{O(FqS=J5&hWK2iny6=tA;hqJ%mFL&g8zlV3i7JVv?$ahc350#{?e zhKL5fv|W8)AHWY$E8xk13~`svhX>5jzlofgzBeUuhHq%V`)Z)obvz2$!cU$pnvvL= z%`tzYF^m%}aKnGmX~+e%g8gExj&2@kV))>nB@Auv+mkeD^WoEz3%S%Ob4lMp$TFly zzK*PbZS80FOm{;0pNml~H*q#?rq7q`AN-&mM||p6y?csk5@&Yw&!0U{G+v?t@f$** zDQ27Elb?ULxZkr_<@!bYeO%XfON4M;)~P>L?n*i0DVIj!VwbqC$aYK8STZuBm_eo`(z%ezt#AUHcXzI7n3%RQG-%w92YGcGbWO zf;swGtYF@{sws#1J zO$G<*wh=)Dh#4~Dp}Id?3s9=Jl=wko+nzki#O5sn(RWJ$@UCn3oIkRi8Hj(-6eXaC zlooy=sL_d{cvaNx|3LDFr?55Au+c_wo2;l8x-EYb`o_m?ctZmsM8kYgq(Q%2SVUW} zsl8Ud5vwHJVr@!mz{EHNs?Z%~5Zr^fp*;;Un){{=LcM4t*j@c}s>LEl_>TPqB;na{ zR9DfRe;IoY@UkTYh;R4P)UtnC0g|4xAQhaJVsh~lpvwf&YLY}>9E3USoVF&7CAp#n zadXZ(emM0cF8nx+!CbQ5adS3#O6axcR}n)^01x->LH;6z2zdKYH_ei%ZE1IemSRIK zk>QBN9jYx!ukXu_EN$HYzBr6dWTXU5W(d{b`G(F~e95*2U%dm7i35M?X|h2EU85eE zrhE>h0nLX}$cQJe{0jQMzCVmkEnG))^7er0vkDNUEQ$S?2yD>~hK`kG1pcDbxH;;A zd%e%B)`j&ovY>^Kwh`B7T39&CNXw>#XL~!86oRzhpwRh_JkF#1`}@Qt=y$w{S3UG7 z`THF|OCb@e2fKv?0quXPY39A-d?QP}$j*Z7KH=zvOkwzPc|id@)qpC-`1SL047U@& z{moLq3}L`(-kk!{NrU`zaXknk?KtX}`3hK@0cVPo1){E5fT{CaY+&zFBdkWBzY=Fjr$LI@7F zmZg^WDJ>D5*NABZ0VQ#AR>1o}l@;q!UN1a-jT7Iw#wp+B+1LBJ0S2f+0&!9bz>WY{ zTCNxIIRCwu3M(g&*b^p@*j`N_3;lconFqKUiLvHZshZg3*(*@AfOMS$lALb>DijNv z@Djv#UnRb9a8iGOzFDq4Y8B_jXv?QVUoAplqaXtwP2l!aH$yELj0O=R=WaZMhP-M!bm9Q{7}y1WVDKQ_4kP~n6OYVZ62k&l42-e0J3iAC0W6ky*34PJnR5E*90N);3~ zLYjXUFK{@EVrMv%-TN0I~G@hG@3 zzPvck_5o6QxJV~phO?(8sC1c}1SORyBWH@%WWj9%><-fo_}D)(r{za( z1K^th7VJ9%ETCJNeVk&H8C8X`rxrmt8>gx`gG8W;4QTL355Trq&CD2^(UUMH?8JZm zp=z2>d+x=v(WYWeW1F!XYLXcWFPJP14~||lE*N1qSuef-=MdKU#5VCu$miy8Svu}P z{Eckh+c8-AbY{0+uUSuLbTOgtZBurOeg@!Ah?SP2dz`s(MAL4|=0#Se0f??#zyL$d zr=v;8ns@D?d0bpw9vgj@Y@xh$5ng{_F)-71TVaI8FXbY9N;Ej}ad&LW#WI8muS>MY zfwippXaVQx$J5xmN10hhc=yXmOrl`nZl>YTaV1KsqWH2X^bC@q5l3vkSUH0XPI&!l zkt8`9c+OYLv&wTZaMPEIBP7E|NbpVeFL^|0@|5WIl7w>{n)Gx$Huc(NE4+WVVu}|q zHr-k&-w95T*q6oWdF+F9YFq8FyiK)lwYDqpBARxg<*nQc!SHdO<5Ml1?5y|2^OY&4 z$h~4`E>17ZY*v=1x>itrPot*p&+7c%ANSndksm9i)-H!O`FQSkwb4q&xPZA29l#Jv za_R|Iq>dB>5~(vKa#)gN7iWJ>Ry(Qnz@ROUN?D}z=BwI-@1V^KBFg0Lfh5h1ZkMOe zXnGE)+#+Y$`lapa_x0{nE*>0&CBI~TREieiiZzQ+iHRqGvlcQT!6`;~x8~JUTuct; zDVJ+wH{Ca!yc#ZiSNF#zgMx4#7sGKp~f@IaLk9MLp?6nH;) zWKpQ#65V*!Wj{Z68*l$$qpRe|*GL^6@fThR0;7?fHA`{#8Vji;=k*X5a;uqq8s`|V zb##N4N`Nl2(Vrk%Zilu*50$y-+W{QAQG676E;`hD0b4kqVjnnRK#~&;Z1zY4*8Pr~ z6r%Y|1RuPUwBenkiLtF%OY^vYd0+Q6-*OBH*L?3(>D72!7}#8+AstWs!)~R12$H|7 zAL8`2Sj_E1SSw_5Ox1DY0{L0dKJ&1`ug<%D;U!(;wR7a*-YI?bBq6*rcOlzsPVy zRhyY~!fo z!#P=UoKjNdxTLM}!PbGA;qI`^At!ujrBr@=y3qg#%yM>D73WcN7yxWG8vXnl6dMjd zu_^f`Pg7Q^VzWQJ;%0TY-_YRQpI-?}w*$gmK>7Oi)gOM)dLuY1c_}uxcOk3W!{(Rd z&9OR9^{{{4rD>XE-)?tG>Ev}a9%^^O^2I7BtE0Q|gQ5h1@1{@*_50NU(vK)_X z#Q*;7yZ5)>z4@ypjn1n%6GA%5@mRMll5KVhh;o^4b|Pg$(_;`M1M!;*WM#xHhmBLl zfgN%K50H|TmONtx6Wg86Wb%EWkz6P5Q6s4^8iDESxoM}S8`sW)EI~$<5>HUAA=?xg zQy_mF95f4_fQfbT%WmJEKYg&1Z-{FqL#~B}Vd0MbEWg$pKMP;86D1qpwU zH6#63?E}(QDAO0a=K251g&M|%PaQJoE{I3m!6hShCE5f8ZD!qXw_nW}Im?{p-n4Z! z#6mriBg}vB^rLfUcyy@S8Y2JRowOwqe#F1*q`iZQ9IPl7i;PKtcfcl+ghE099(Ee=Th@Z zsA=V?+*!^;6NZ34&Z_U^bT0h5dR-F&s!En#=;D9Vzo82# z0;PIZ7dewlQ8BtGi%1t`=?Z@lh6F{Jsy5(xsj;iR7tF{uXSkih>JrO{r zVKpkl*D}sho<7OBWNGFp@a%sw%|inr_g}f@`+g=(89gGAsT6*9v((mi6D?t;!xj6; z)lgjWUQr*c)k*+6S!^|%OxN&>1}gb=!TE5kJ8wZ?{0SYP|IHM_!(#Y;o@@}Fr>5^l zIJda*h8~uLzJ%*P>Y-n^eOWSD<`;qZ`&(c0@~ZU#3kdyn*4I1=Pvn38*!oCB)_1#` zrJ=b$+Hl8pbOCLVl38e>k~CDS$?&;0VCf=U7w>>5=TCS7sHJ??4*(EnD)s~9>iwWF zevl__JMRZLiTyy9Jn#cYj3e=cABYnAh)l(f;NV*T_Z>7gk1XEro&@_@0iKine}VlJ zT(u~p2Iif?oi^wQj}(6%_}Fe!JBPv%Wmk=k2p%&;_)+Iexj=+33X4Bic@ox#fmxj& zw+wFI5V(-k9Kfvz;~r-Kam>GwPzg;i6@;{2Z5{^UgHud=xEGGE`?BPcNuE9H&Ju@? z3Lu(-7TQ2G5=}#Z-K_CfP>GfouXYbPQ;Uf)R#EEu?{i~&bq{~4BXull2#sT zdT`m*5AMnN8fJes{=F#lyHI_$$ThY-8Rzr4ZR*2~MdDR>@(9)5^=)hP^5ARZ36)b< z9b{OM+?&Ao_NkW4mB#KljQSp=8tRey3F(A@0d9o-M@v(q+9Rrq=BDYAarXw(hokFF z(XnJ2^v6)9%xRXFc5AJTZJJRHWaCgX-o_37b@eA4APtFu~RD z3^k*i>@i~+VMcX<8E<08d3j4wVhD@>0IYmuY*k)2Hu#(TN@F9tur!uy#zrF2iQC-} z2FMcE(c*v6b7OHbaK_3)MX5AGl&I>D=Ei9i;iTam+yBJiD0&L8IKHrYi#d$DmvCSb zJ&$gXXraF(4f7t4Z>_kZ90SWIdu4=>3sDVaf5B}fvJBUdOHs1L((7qlD3)hFkO);1 zQ@R4QGIYJQA_&IPQbuN6iqaaq$yh31RMNe5?ZtnTDz6<(0V4AOv|nWi2|{X5^O3Im zk!e9S8kk4bC|D=+sQ5Aj)=hO#4g@2iv9zL=IuI9?!oXrAnGPkpDgDc0CLuQx* z%4biBBTI8vHSIdagkGx39D{UmAByy>EC{t&3H1*>mTbx2KgmZFSv9nE^dTzzat^!<#c9%n&=E>g^l-U zqRWr4^c6;PmR@#K7vB-Cf0?jV$959|JSG43)a1me@*ih7bDyLC1=pwJmkMQWWOJ9s zd;tyuHZqejofHByIG5oF11W#ySy_+VxDkH$uNdSd8f2suDN@Jg$wxNX0JAoB8}P&0 zNH{I_v~0E1(Xr#n@!wO$qRwGY_W*ed47e$ZD%SC_>MIVr3gI8S%EGH8ih@j}SKGs@ z(9AaXS2Xzf&##zW=fgsOw(`y9)ptKgdBwsY3o~}L+08|5@~dCHw|jqe>~wSOM^WU( z-(UMeNbikm_cZgvbsBkEb$z4TYoEtyC_NS?*Pl0kef6i!xUuB?LJe`{Qx)Ttig79e z770@E*th!}cf3mDKwSAu!pHIa9Y~eluYUE}j{bnFzxyHPbFqmCgp5E7^WjglWVthA zutW|^{_T=tmWW}A?-qZP1T5t*5R(_pc{!i$l0`Uumarg8mri+|=MbzYOgu$DAYX60 zx_P9>uC~8>Jxm;FQ14c6R$sQA+FtY2`+5VT6Nmn@9pq zSrjnINMrMf2xG6(4>T|;2|ydFWG03sqtw;>wr?6;;hT;o9&mqLH)c;Wfo^6VEN33s zlnO7n_T!j)AB%2pHK=J{)!g?7lm`a2H?HukY#3p>j#0z|o{YfL-;DNqRoxqhMZ!7^ zP8-Dm2e{+`_pWI|m-=9hvmcpI;nLybd8pw1=%&Cp+_zdRfil>b8XL`bg_Ya($75OO z{DvO)3RnGx|LK2~*1NhaYooC7G`>4%RTULD`@ThQe}Bq-X^;qRk5c9GolJsw@Z2w; z5u~BkWTG@B1#nQ+%|VqoPP{ET4V;U6+t=tR{GB-nA0PH$x%tMR*XVARH}tFW`~+GD zK?Macq60N|$pZNpjCu%`>S$C~<>T-XfpQTvT2$CrAHaW`$G(IkmIp3Z`o>KQcREv` z3=*EKGvLzSEJ!D;zG=V%r~@OM(FfV$10JN}S&>-~#p4P*WhiY9Rwlepp$xZmPe>#b z!J=JLALuuAd0pAGnjiLz)rnmU5oMv|to;m3geP%MLZhbtbPX;%g@|^83{HO`7#jcI!O4xLB}(RKiq_=jWM;or zUrk|YT_^#r7-z{-sw7ubDM?4{-C+jz^r}GG>gp(+WK%NMN)~28m@W^+>z$#=g4=8) zfN0LC2t4jpOAGA&SYL4d00H92r9OpBn2IVyY6|Tj%>f%8${^&Ui`?ar#h~X%SnFd~ z)D?e8HRNH?r>Z-v@L1GcK;@!QAGdX!Q-{0>cO6#PH%MPA6V$sVKZsjiz_c!z;^zIA)jF77Ovz zHrObnZThMN8c0(Vy?D;BF(ZxDWk+$Rh8fA&0nXB8Pvt zmbQcGIm}>w#Ev_vA_;hOQCNk@o|+CDgtYBwI*i9G%@go!nz%{o<0{3?nPp^cr%HgC zv6+D=LJ;}-8`KQj2RRyzCz5BK%96ykN6Ly@n+AiCTF*KXI&jMzzoCF(f;J59!TkzzrFK_6S+dF>`c-8b(>jZF&mlEu3C65C!RdUKtu-~3qq{%!p zKv&>F#r6fCx3y)iw(+z929_OW*)qVZDkj`B2cn{#?G=2IdO;&K&JpS4$Co?S-`lxS|X2PPp!YHLs4OYSaj@=j--D{NA&ol z(^pNSEI93QoGa8_=>`WF!zXln`1$?qht1#KzQ4VF{nI;_zA4nZF`Qre*4`V~>b?64ldq&B*V=IcB+2{oo1NpcH0zp zhWi0jNsg$6}|P*t(uV|9=qgAD4WUU;<0~icgHhILTGf^(~!RV zm-8anPZThMvK78w zeRv$n4)`Z#kPLtM`f?5Lx&8>WAQo8Bq0MG9R_*X%3aU^2%`;AfWS7kPAhe(*`Gwgh zM4FC|SchtpKenpW{*q{KX^nBD`KZx&i*5;~GB*Yc+nxk?&1S3{5NXNMMd7%EY&6_> z6Ni99(dd8lz&rDoxJiFyA4ewnqPK*1x?J9K`Qe%IdU-8eF z1p2mVZ3g;#@cWlI;4d%M<|Wd{WWBPW~k<#fHahq@LFe>46sQA@R{m%)4i69G1t(c1+S12H%@m%wTRDt{Q+Zreui z-Cv=i0ZO6PhPzx|d8(bGb^#-SEi?~~QP9-dVoQ+<4?Fq$&g?8NiK?U|g#l}i*||^h zi4A{z6512raabsWNxV9-^=a`qp~dy@C)~iz0C3iWJfEMueCN6oZnMx1`DFgkM>Ste zZmrkLXkDpdI&&Py@?K46Qh&PEc~max4w##1qB9|wXFDB#**^Zx3|{q|CV$y})IHIQ15w9O zQ6$l$5xh`fv+NiV%7auaq_jxA0vrX^izn669BB2PqNj-FQ1(n>-i$EC!Q!?THnd*Y zW884?3c(wgPqu5fG}iDFSb0$;c}6D>d79=^;aks1_Bdcu!c#7_-8IiCxH}-@hZ8Qomy@0k z{r1B+iB>PyE4n{kA!k3b@0b119mZYW z)e#7&vJ1Kq7Ny5{AUesf-(P*0|MlkbdVYO*HO6cZGFP@T^;NvP)bP*&zwx&N=Hs`w zKV#k^0lRmc6^-NXv><0LKfr>53EvsFV1u2~ziH6WbbmX_vIt<~Y{%G72kUB?lvQ4Q zB~lrNd%eQ{_qvy8n&K`SC#G$T^VKTK7RMyupATlrAphT(>S^l5KBg{*g-BZ9yWCN6 zl~8gt#V9e{CMJaJ)6rZEG3SMTgL_;f%oqNK%jH15cuvaEu!P=B^b*ouoI898%0vjM zam#E3?SF}#__A!g^XDw+{JgU*R;y)HL~%QEJumap+@9UMzSKs(Y&=2l7HX*7wkx3P zxN7DX$T2RJ4B{vpL^C9?o~Cy2&4YfH8&{SCO0tE!t*lOAduNsVNUP!>-FhG6vbXyP zoU2D{7+o2L?;F$ zqqAh=5$hsft&eI^@Am2QZMGO>K#0#|z6(kW>}kGcd);J`&rphc3RKUoI8 zPJd!p#UnJ&0?&f+9EiX=OCm(oJZ}>^ZnO?Z-xUVDF6$^wzY>x~qH~+>vjHW32@$+O z9c-cAVo3`J18OLxu`S7_N952({ozlW-bE1VkjBHLG7B@smWdf-5hkN6;sh2QC$LFj zgX4A>Kqg5@;dHZ#aAUxdEKci%8n9qU7JmxSDZ|kNc+jYWB6aETjyi5|j8651t-Gia zZKu@c*C7tQkU)3zeaM|+&ljQwde#FU`H;1VRI_=5wFxzc+=YzO;+AF?TwZkS+w^fO zijx%7t;##lql65)*56PNn7iSoC=x8}94H9E?h#{%u-`BvFJRNuFw38*1-fwLiMeNU;vvp&~(rD$2GRgQWy_1-`N-RTSt{)P}BxGFclOY^Wd zQ{q-WuG89Kfs%1p(Lahp()H?8<@n1wSNCg1mJy{r- zrq?gc=6f-_`jV3P{fzP zd;t>zHZzkkofHB&G?#H?0V#jI8f$Odxbb^_g+CN`S~Saw6sgCdaN!($i4VCZh&Pu4 z*TYrTYQ1W;(n60UF8bp;!yzeYBiTM9I0UgMax|P7&YR26eE7%D68|g;0+z`5EIT~& z^=xx{MuT@RpK$}X2Eg?Q^2O%aUw%;PjQcF{6MnYYjZtm3XTNyg@6&%{mp7|*5CmTM z-D)kR@?NCvo@Rbn#etWnUEk#GYAwRpS04A1)vuc$pIvU;#!84sQizaWkQjw$T(Urh z!jKrolJP(ii6P_uYOO-yZB}dU?QHqsk3H;8$L5D~L5 z2rbxiKpIQ0ZiZcEa7&*Fz+%2xui-c>*E2grg2leH(13c5+5li273*dW4_8bDj-mS4 z6?JtYtNwT_;Rp(S7)EAkhse%AfdosU2;?3xt_Vp{twij7#6N#EC{*laDPlz__(sMe z3B6XIq8{F8uso{|S_PBH8<=OHuYvF`2y!HpDUwLji&K4T7rUBP+PpJMM|!3eE#yRL z(bUy}#>AFy_~FFRp>8zIzzK?=Cdj5POWFxu_JlIF>?NpT)i!MmfTmNk5)do#2`kCK zN^Iq^Pn{r1E{T6vYz>`7mX_t6*|VNIeNZ_T3U{=NstUFjI0JU*aRc){xNf6DhZVvhO zJEA|7WBOw-NCi|Xt?Qb~fBHO{)pfzb!NR~TR=0*WB&mPNv#xFmlr+*}yn&Ljf8B`&-3J3A_V)JSikHF!BcpO2muC6yfT)n=W!v!Z4 z^Z4;JUH*Ul=UHJ#jK_TJ%^^_DyIkQj6-O5I#l`ij-xiR{ghjqXN{7-EYvWeqn8iv? z+-iDL=Iw&&kTyI;bBu*$#qQ480{GzrI4@(1>A{*rW;|b7R1UT+!LR&5bfxqF46@91 zh+ZTs9Z_eTPis~x^K5Q=?erthx~}?Odk=ijOc#G~*&GiE3&P;U*e4>L7gHc4OH}-I z#$q*2jeq6Y%JZ4DMm$t!dDtt91EzJ-nn=jh zLF+nL@@W%e-v5V!#gWqy-6uofKhL%b0|AC2PCPcXY!>2x2*!eJ_izmK)w-vz2J(Mv zmzugfh{uZjEi-jN7_d0R&ST7EXwuRRl%n}mGB!0FwV(28S2vl}?sR9G#156j76>2Y8q2EmIF0# zUNrc{HShtcG}y=0#Wgb5wZA?m$9+t1v8k#8Pe!M_@G#Ql5Bz7+=MR7IVxiX~@EKlC zks4!Fe71!IL&4R9cLD(Q^bAJVrZm}>M!XDlI~dYsTlg1EQ0q~b+E zNq`4x{%_59T0;T8uCRY?jWcy+mcTenrB@C02ZHWsJ*7wA=DWV6rN#*cHq^<9Bj~i8 zi9BFztwiWunM(`E6%r|@DhJM~FHv4Hvh8WT!#j+4fK}Y$?~u!+CyQLS)(doP zbjO6gG-P~wo0GY$5B&>z6r4ecr>Kv#5IUcx2Eu5;`7CfwZI+raZ_tq^1*jwV+9K=A zw9(oDOCS5Pg0vs95Hh@VpzmMcc92L);g0f8uipH0x!?y9mowPl16!0eaD{wwZZ1HOzUd{3 zKQIh0zD{{3d`~Wwu(4;{f@#~~Gj|?fx=uczMW2gtt1=j}GEXV>&`9>?!`Y?*E@;Jr zr|oF#wzd5@H9%Pk#ymMUV}y1-Y>so&xS9FPDVd|yn-C1Gt6I9%s z-LmKNrAh*+jmzzSzPf&YF?-1o#1G!Mjyk|^FJ4~0d-$#d_1m~!kw6(EPD4E^TcSbTXN@nU}9a#vxJrq>|z91c{XxBaf4-M(L^#|m~oC7#XAZJui zKvtYMJG)Nyv8rdq{)NT&tpF{lLwA#IIJ zpwkCS0R@jC9_s9xAh>KO;OW{sChWq*)PWU2c{9kF^x;d{-!J-+HVx; zwWtV&Cy6jLPC_aiwWiH<%|38vg{^~!YZobo8@-8)pB$5 z@8Hc|9|zOlF48m&@^5Yze@bP+Yi;*D^4)Ej21XBKZ|v*%#B8KBKzQV8v=2VsjuSPq-I%q3*AP)Z!Ws&CQPo3<`M09!LbjR~Mw@L-w zmWTZAc-cE{E_qA^4?qlCn3l&Uhte%++2h0g`?qh-_>P(J$2UoG|2^{XF3y0 z7A#4CwDU&utrsa^e}h;_qda)ro2KD0mL`n-W2l>Ys1Zpt-V3ef{?lzz1YI*84EIsJ zC@UoK3Wl~d12^#gNVs7}*07RAXWb$_%w6iBe?~IgE{_9JdLB8XK7Ma(6p+sUZHr0MX+Ah7ep}+3hwcMcB zgQMzN-euT(f3m~DZz+~y`eSd{iA@K$dTmZTFw+YBjyenikh5I@bpxJ(hr6DCSCex(SkzCB1Y~H~4gdu&2sQY-?TsNWp-l$)ben-?)s0>?hKEs>fB4JHLW6vZS;?Z|(y1p^5vCxm ztgOPch`-?29ra>D&dxobV(M~Jy3&3ajuv81u7Z2KJN*x08CRAXB#@vxnpV7@jG0WqmavYV{PLkMDD zkcJR1e@@ghk?vwkV$7LWQH4brvw39|&v9H%ijvfhzhpH%1)!uTBqHJjDH$8uN&r|7 zmWj}9o{?Cz)|ay53V#B#*XV_wYD6wB+8A^va!~1k?Dm;)GO0?!wE7w+6Qzzy{08yu zY&I>+FwHO2H+3f9Nl&2zV37f9?1}P(@5V$Yf7b!yjc#|N-boDDYuSiG3QVuNv9~h0 zV)qxX>$B8Me{e`+oly5q`A_x6oahPlMHZ^4JeU5)*t&NX zxE)(kqV~}X?s12#R-9QSMHP74cgcXb1fCUBr_>Vr%sx_FxQL3`|MnKWJg8Hn5bS59 zR*3O<*1(zTM?+Rc=~Q5z<`tD>00N(Nh#R=v3qqC(RdV4K0BBu5%xYhO5Akk>f0EcL zc;E<}#zinr{0VgRQ3R)Dp7K!mD5z=V26Au+H6+2N$|9inBfo)qs;H_uPoR!1tV_L3~B07*B%-k^R)I zc%$_s8gM$pH#zsq6xOP0ntw);f8sE>e)h7EB_+Xwx01iw8-#t~+lOTFyLgtOvWnw7vi zEd81+OJ&N3%ag+)SQifMYdRMZncx$br7nKRHMAi7nWh<%DhiA2(h{9ryv9qjB%!x4 zTRk?z6=UG7H^@wCda*rzXW_)j*3OKS*%q(9^ylK4EQ{(~7G;>le?AWJP9!*5c962h ztbVgHjPuwnWrqiuq_HRd*k40NpBL2`;!jnzxoZP{DafR$3#Hg}@`hR4xmhj1uLox@ zEfyWbUItGmW^sBj;_#vCUCp5BEWQ~bZ}>d@k{A8s0676C2tX$9k5ajZMyXt7X2wCs zU`TP4IAJXoSJA0Je@LZArPl&dgPK3{w(*WM!^jVM_~@ODYc86_hvJ<-Z6=*PAd9#L-ezJcMj9<5x@t;tAt zI3gP54r`3oh{jm(ovgXy7pf|ZPkGeud4`FSPFTSsR_Kf5e>jhI_r3w~MPZ`KIjg^p zafi->9$dOG1-0@HiC!r_ZRH(Zb@lSDag~5Ye`P_-=M~P}CN}mgF7ISMsW)3Saa|a7 zoR11!m7xj~%Gf85m+$vR4&i)&->F=Elv~XwN~M~nE8dS~=k^6Y-Cz3dl3SO;^>$8V zc?KT4_&-a4e<#<-tZ)671I*-n{Pv===smcojy3LB!K=a5H>#8v_`G}wq}#4(I^_Nt zQQ(pg3jeir&d;R>fSi}2zLP)RxJj13a?as0cH&#(j|$=CIU}{4WC$1Q;TsnlAreH{ zIWDk_p2L&-6cS8p`5Oxh(7AYT+!tOA5|%vix~J^qe{cW#@0*8@AK$)N&fTG`z@7Q4 zUcS+lzXdo*2WT|wygFw*5yl1Bm>A>Fr0|Jj{900{aJ`rC4?}V!47QSRHytRf=V|i^ z6l^6We(hJW+eG5tEG)dr#COa+G4doVBCoAKeR#F}%dAq9Fv@)rFbFSH#alx{5*g;%Rv-BtI8Z= zbe4P#R+Hisqdoqe@&FNWbYZDVl*b6R}JIB7Bl(4AC$)R4kPgzJsk5EPB zf6!@3l4_|w65zbl5ECpAAd<1P#slnuiAMHBp~$vi?SrEu&@nr6MPFDJPY(oC=nc za-UpP;_Ht*EJ9K&B;^FJ*l*x~9XeN%f07+)dsR+9K2E4n8gs882uoO1cbKYotv<{? zdD0RD<_SrpcRsrMO5ge3S*Xgd*;^%{@>x!8?_BtoWKk-OcXPG_53Gq7e0=|I`MCTr zdqxya3qNcz5cn1TCBhU9xuD@yQ#*_ImFshu>4yI%fw16;7%e)P&BV);flEGIf2N55 zo-Yhx;){=RNspp)&I;k|BfJayCzm~91xx-s0Ba@KozyM)4+c^$UD6!?IEb20gKWV$ zFE;xx?th|Oce@sAJA4R!g2!zzg&5TiGOzE5ryL;tF3OBo_$X_{o)KutP7?mmSubE zK4<<9yA5DLm%)4i69P6gmjUPn6aq3amvLkPEPsyN#_?TWu>lNt2H2t42d})@i4@DQ zlfYUe54MrChP^w4IOK$fq)m`~d#bvs$tIVhm0`%!N3puP?y6pK6T^SvrigDcrJ_RT zH^=jf*sXRCH#GR^PcH<+9RTnUKz@7o;^pfkxe;+x#D%!IyAM&_l{Y`{{%|sv!FKzD zQh#cf{(gVZI@x_|`V+0Z-sfs(%`kSh-ydX}$H`6zvH$h%`xme7rh^kHzmP(Ne1=58 zAEh^Gt|Or|QE5Nf<2cwd+8=V2?(R+%P@_||J6qGZq23KAGtlVRp3kN!Y0{7H_F@Mx zVmDO7xW}Kip}mh)UDK#(2SR8+U8YY>U4NP0uF$KU=`7wK?sE_-5($x5+FxR!8w=m6 zT<*+0o@DV@WNr?VlclYRJX{6xdZdep!fm`7?o>@RRHm*UY58Kh-ttGk#7S(Uhv*ij z1<=_u2pnm;fhO%e6GETdkIm7Y5mGJ|q*u5Ps72&}4kC%tJaNBDO9CxG0%;n91b-Y4 zUcOF6C^}Vu%oN~vz?ZhKJ`q@wF2H1zCWQz4>s!G<3pJ1;%C+!7$gmAeQbtlGGbZ^w zCMV$@u8M+{nPU|G{&Nd|CL^6qpZ;zOdlF?b^AKMXuA${$lsOJSVTZPRq)D@f|BdIp z%y;j=sIr|`6Wk>2yGD=DAe2N;1b=N(1ooqo0umK@!JpkBn2xSEq?@} z+|srf)Gd8h-Qq~3>N$0bqa?|mQ#ZsUJy2&KOjp*n@0nGp0vuw=Drc;UZ-1r~cr7~& zRr5fr;qC@eMIK2#8(r6)FT)4$7F)EXILtk4dqI=;=AOrqEX2~@;nU9=yoSr9dduJ! z$13pXYT{czfR`FCbSZQ_H3|@~jSA&fy~Fn~NxW$dGK;cV9$&rs^WQcFB5~-U(8Ceh z&HzU{IvL!1vyg#;n9!X~O@HHWjf)_s1<&YQ zEd14xe(;V$FGAVO3wI*QrDi@XkES&c=U~rBXF$>PaiG+7)mYCnK7Taim<&|yphN+2 z>E4Vro+4vly>J|ZKtZbg8w2P*pmuI) zpm%n9i!V-z$fA{xc%ZwdBkxjIm=t=)u7B4S5;BH~Uv3ACiKav@ z6l}s5aA~{G_zo%~+egB)V&@W%u^(tQWgs|V^{q;p5<|Casz@W5OnH%${IiZ1{N*9Z z(Y_6zUG?aW@&a%8$ix|>jwi%gp#IpBXEBZ?uye%e$)H$m$B|V)AdKb0W?FXeY3!XE zjB1Fj@DU!JW`Db~dZ-3JAy)}7V^adiv4yf{y){z^6QVE`6w_$!V>O&;Wa!5oftQ!b z?vM6Zn+`Q#BM~F>gekwH^(>pSzwS`ZY zG*gh_ttUy+GEsrjHOh4QTQe25>0{;D_in6eFkpXc6~~dv)yfPrzV|EQ7T!6IcNI`5 zi^9nSrruk@a27c3e>}Clr41G;i~7+_Hqgu)>-?yVHm0)clG~8pI z!9CB5o_5O73DRv%Ngr<1B#id`c)?1nNWsjH^?z6%Sb>Sih5Y8iV;nA{k8YihrKPt} zc7xX|69JiVmQShI@Oaq{6KR;dTr0gqB*j!!`73Tn_%3J}V>IMqGC{EL7IS~9GsKTb61hM7Dj1eu z`QqSL4i6Xez*{m|lddyR9GQP1=^pwS($`2G={}(6U zu8uv;?_E4jQce#Lf-@pC9+z#yT7NY#D!9Z2GIz`CWaFS!ooz6+7W$fSR07n>DG1%Y z`SI23zx?#$H+S3V3_~yOxU^?fXrE?uZN08S@m^x*`XOd`+Q6fM=L^7B4Hk?h=)`R# zB2q3wlu8rs_Vle};dI)}4n_x7L7o*_VZ0DquDYDqt8 z7j5H&pdU|>`oCK!A#%)_QP>un9$Fmbv*+(=4{M={?_aj=WyeVbrvDn-0gE**1uxDw952&0T%iWNQ$ZAQv*%EYs3tqb37Ho{4sCEM zV3^ zhH&}lr->$voMFlkhEgyyavVO!UQE^X*L#vuEqant(KB2};~?R}DSr_ru}yPqADZgl z+c|NX0YAPdSg0wvGJJ&b2T<(bd_XQbO)#tO>38r{H}(_LHni`jnpA49un$x%AtLHF zNUXWYl<)~GS((!2BNFDZp5Vi^C#1;_f9<(mM0v4}w|c>Lm2MxX(JSCM@#F|iylIUE)1rVn}V^SAM{qWJva|g(o#QQ$#y%{ zVNV>Eo!bW(CqDlQ1aT{9Tp)G)l>LRTKw;lh`?ov)G^943f~9XZzQGJSO-W%kUW9|U zx9hbs4#kyPIh|@{oFt(B!`QjP7f)^Im-|>a#7twvzMafmn|}n?!k(6I20KrU2v>cH znpW*6NIuXcYi4i__RucQLUes=1*wf<&3!aBwb8LD$Y|2hXxmvd>up^#$KMbQQ_MXR)o=!M?*!(*H{9A$KiJ1e= z*}yQS)1NfGgOVix(lFb$ZQHhO+qUh~wmEIv*0gQg)3&XD_uG3Pq9QUYDk{^!Ji<^# z1$$lLME9t}3m?Vbc$t{Qz8=l@6#?hUu-p_yB>GPITEG*g|8_=b!iALie9LCD7JK3y z+zI>n9-=%`8TqdT#jE~+fOP?R{_LYUfLbCvtkeB-d?$v*kCnLfvXity@Gd_vm}k!nk0X& z@ryR-;adHcR1?ucxEYXXQ5X{IH}V5mtvMR{KW)h%!2(AIW#MAU0B!=I2JGlaCtOJ( z_x2esfRJsUr8zU~?gv`TPg`+01*UT`Nu}tgt(fOc)!i>n^-+?Lvh<|-dIzIkh?Wjz zCS^AIHFk{1gZxKaF*y`UzxJV>Pr4;z-91v!c`#&_sLcuXZkp(#ew>@&bCk=Hf*vE!rfTU( ze2Et4|2bmB$vZ;kiKmWjvBk(~W`1s>m~&wZ9=il(17j{di&f%e0Za!q{GaD@j4l6g z%y$Pch3F?Up3AV=6Vs8KCPi4knyMpu`E8HFISo$DFQLLf0<^iJLqk$aoe~!byyFBLQ(Czn zRZ%4ZXnR5RGzYyW0kOCAXKJ5~m%$}w5MR7s^2#O&>b$$r6_g@p5@VoYNxXJ%l&c?`<_i~H&=|ND?veaQd;CB8claipDXEJOI#V9`O5h3YH@=2 zo8UTx4y{PVsNpgXT)+Xa#`_cM8WLlTpq1`VP7XV@h%1UwfcbHxs8_E_OsrFATad^@ zrIi&S$A0#O@COs09-|gc(G`xrdmDIH7=}pcrT00l+3Wdo`b&wei_hwUb`vU;JhK$M z+o{L1idnoP{LBK_+nBM1G14Bp{!Lmoc{H#PL5}-!JW*L~8|o$ATbbWV{JY7=`%^z= zI~&GU`Lw5C04BdG2uQoqr9$5gcdIxD=#HmxROJ;19R6U30ezmtv{w|OI%DIJc(z8! z!`phGAp3);dAS4qvy8%^sM)y|l!eByDJUcA$Fs`vc7;=}j$q0H?uf9@L=SN^JutC9 z)o9|8OBx*=X6cd&D+Nm_Z}Gs}{u zTtIKVoIE2}kzd*C>!Hw5nYn-g77SwlJn&I^BfK|H>~0eohX?jcGRe;qadNYM7*d2YV>#!Yv#W z@npZoQlJ`>li@xoN}no5m=`vs+s!T=!)`_wkT`{nW{CMrPykn{ei&4+dAOq(GhqXQ zek~{9N%1SQosMmhK!^!DuIVKdSW_kSKu%U+77UgP8wz%}fd6ltf@L3%@qmvARAmC& z=}2XaucJwKa6Hgd4B~pIi*%pBPUWs+@K{et0fu(k;t8Ec!+P8dDYX4xJ&ih@cw@^2 zfSn_9nY$20;5$Uv(YCvM>EKg+kctZt?fm6jOnKNx1(JDd+We7=Q52!knJI%88V2-^ z6&6%vZU`uUa_`X0N23p{b*fbp5_SY`n7NXcLpQd+ehh_t-RbAU21)o!RP}sgdO*Xg zn^d+yFOr7-A4#@$-F&ONb$@tAOEfDzK-6W^Zqi_upLln(Iaa-_&qNa0<4Ut}e?5Nx zR`qEHCNWKGLavvRH5S~!f{P;4TJ1N9Dx9)s-sMrQzNdbG_LM%Dmg`{Jge&(NXn%;0 zvFvGcu547tKf*Tsl>xRGHLu+OcV1&40 zX0Bw9H%0Ezi2`pa)9L7f_-({$0F^e+%xgzZ+<_i{dS)0a$HMrex0+!Z^E*odtm5yO z1$>5OBa$XWZ^I^u0%!%8nV#GniGusdoHZdaKyr(V+(-{*Q{MyZuW}Vjy3KX6wN;&(0KI+?HAV9b zFpM=Jcni_%7@WsLc-81T6%>7Obn`~@K;ZAcCHu17PZmP$%&F449J2kmsplXp8C9&` zzm=bCQR>)kzn7kFG4FLL;Sdc)qm0GkM~z3aWe z=vem$d>@YE^F`>9MWe?nbDWHWv%b&qg`^dhbID0KeKMOS;--5?NUssLjIUtd&C?(# zML3AZq1pY3`^zXlD@mpdeCR@{e#l4g`5%_H5OY8N#Hn@nX>1_6@b(>vGS~L^nKC^w z97^IPj&BrKeh5{}D$|@%z*0!qYTf?!cd$Mk7lXjGNx}GE;OVr>?##U!8}`c6RviU= z`nZuSMmzl(2t-7;C^024RlMz{Ikr{n59Cid3#MaYiiv+UQkn$H zy_d)?Fkr8U*?%ey`Bv6u6UVKtatX#s*G9|}*&u?6HPAai zULT&miXpQ0FT+ufR0a1EL=t+cVul1fbew0~$U09R4sW1`X5{~+rDzg0f zyLLPFl0)JxE?Mv9Wn9+@JJ1Kg+ENgl1#5atJjj>C4t_{jzhY|3r!r!awp4b$1>2P-u zUW96?ChADJQ5}ftpU(tAyQ~0$7?D|3zKk|qx`g}?z@D(sQuTb@NOwSn!b+R!kfiEc z`y)~F-WDuufAxST(?_)i{rA`39rtCTf+qkG(N}MJOl#l~FUX=ZPbFkQ$90>pIFhc2 zSpK|=H~JR`4gz+UxURJ`imfxf6MdNEVO}qviH+uSprYQ=J{+NO3DixbsY!o-7+69S z*UJJ3AXaOvREJnoNF^F4ECFZg4d$Q~X{7tW{bO*#hkBrM$)prxFYE0d3ni33sSIV< zz)y((_;0k2z97q-U`4)~LA50PGN>YAIxFT-y*%f!*pErLqt%9@EsCTP3ad6cseavN{Q{j(OI!Ybi+=Y1221{L(f=Q2W(CX-sGq3S zA_W5pvvBen@MgQv#Pdg~9(QoyL9?2WB(V_k^1eTxOK=LQkVs}{fd)Z@N(%Nl#BLAY zQF4m^ok&Fqo8|0Y%3fFADu-te__~QZ^49&+kvskM@iTMVE58&MD~^om;`+;_e-Y64 zPW~}e$oJaTvqe)%^7z?Zy9%&=a^Jv@e7M%HBhh^kwe9YHchR z&LYeA7Rm8`j1KNPW(A~oU3-~q2*6Y7 z9=etBanOGkl>A_?&K8$lRz;B3&#NoCdzWbA$8G6{UEWOg+Su?3Fv&)9ftN{>o5_?j zT=L6M#OQn?x3}0Ue*Y*)cnR2jt~B}w8sb%dK>Jc$;O1SIbJ#zt-J79aSI-i*xr{lv zR!QR2dR15X%ElE6Yy#>YY18@mOrds3PjIEW2J0%jt1j<7S)#g5tP&X4)0H2k_V{xq z5|+Y(w7fyw1$RrW)d*-iUh*^_+QXIGKb=Gl_!G@^=ZR_`&iHSc-P*1z-eZ?!7==r? zI0ljno>x=w#sW{UU@)4USSh{2c!cxIqs`P*Iq{G-9U$vfr2v1RK%VbKkR0DNAwLIg z@v{y($~pAHaDH`~;!32%Rmcpk+hx;}qUk2SVj15N^w(2xgfH*6g~y4!g*U5`!L*ct zWK{}TEuuI~?v+%e_?tCP9ok|%s!fx!x90-td^&s+cBN+AYDrO=ZnQ{_!>ETnZ}Y@5&KF$CZe^Sx$I>3}o$rKN2EB7VD)&(*-oUxfSY zm0&S`&FHIeUPZAiuxBJ$o+Q{bD!~wL*HW{_#LTCZE(9w1lS6=eFij(m;UooD$^5&cuVZN_y~Q(XHCtILPs?@DdtPZv^` zv>9`G1b}v<=;{$pAz{hmIvhLfA@G`y@jz&^sgTzGpJ5>#FvYte%~yaPTnRLXxj6F(2|V-9GFRFbZ?Cn}q=La@jHo1r zR(0U-^3Zs&A=CLTxaif>)F$PU+R>qcx_^WH3INbRw5zDzR}tGeUkt)-`LZqzgUjJo z=iudZveF1WC4v@~6VuAe+y1P_D+*F_94rRs`EKSZ>KN5wt3U}8%@jQKqAu9*Ip{3F z7?)xXiauBx5pU(O@(OL>fHB{7i{9@c|k6K|- zUd0;;;m>IEY8pTlH?48EtApnTQ2g`@x7hu7oB<%6un;0xs1Una_Ki{7y8pReA>28o z@3!$$ODyv>@}@QIR4zj%x!HKGyZWRn0Im>tZEIL7Bh8KUJu3)45ee--1OFptdf3B2 zm31`=rD4rH+fl|u6{EAJXw-5nYeTSb2mN-Nee!5#6~gK!U9+rUYuHY059qT*k?MJ(i|jh+ zzMv=7meag3Ka~i5HHdMhkM}GFwuf`YWf8xLEhn&9pfz;YfFRO!SC!IqW6nSg)a)#yX6zZUk}clIff7zrnxZ}rDwk0$m7JgS+lxm zO*4Y*L}#K{0}x~twBlE6a)c?Kh#J#ny~M7m!mQtI=E32hM9_V^E^HV>Tp5+5E=oyr zZ|aBZsy{ZUaZDE@jbnwoaT}c5B#aD+m?Z2Fx;asonJ^%*-MHx~(;ZMr0Hd^+4o8pd z7}N^9j>st<>O;?{7%rra$Xsa5QVKKeBh0o4w8`$RDz{d+GNhKXlPMI`G^uCs*>`&@ zpBP?pZ2~ub=By=MyK9_>F>(V4XgYGc;6qyIkzma2Le!&DyYV(>oM1D9RGfXB2vb0- zz^y*#b0@jRGah3-3}&-Dz!14HD~8JulNrbw9nQSnu+b!?+7|j0Tbe6hiYr@&%W@47 zHGW35)pY=rhteg+H>N4xKaBiUocND3!zbu5+4_)={2qdnb>8Xz&Y*o85ET(_9_w`s zVZe_?Ef%MQv?oNal%c6?*#_$3ITx3Z!qkHwCM3#Vuvf+^=LtF(fKUb=@U-1^v3*oH z*VcDOnSjtZ1JyvfB2V{_u;*#pqX^A_!B73H6yY7zJ4@S(JX))8pth>h#MeJ=Wv9{yQxM|J)hIx@vcOD0J_u{(>XN~-&c-k{ zm6vmB_>xe@9x<(naDk46<(c1*;lrJ1nG38^U#Imyjb0gAfFl>W;V>8!sHRHgwW?o} z)s_Z+BZW-Ld}H{BO}xq8_Hxz?p1z=hu+o zWU!}#g14Hc&RtkBof@|^Ujhm)7D`01B+bJwY|4xeNRiYW=Bb5p!Myr}IQZ|j%L%jf zlcCz?(M2DnfY(jC#)lLOR(h<%%180$q9rI2{+dybjkp8K4pM$^*@+3&^ZUv9G7_xQ zHpcyX1-&9Sscl$q=}P#HdOoV7mxwJJai%fN8dGR&OXotE6A~X$ije~#o(V4(D?+3G zM&)i0>w6i8YT^UL-XG_7jPv8*pMGcxD~xWnvk(b&z-|0co}%h%UPt{K_QbRPejp7Oj)l*b$Q1|-y*D)qOD;Itx<+nR_vqrY3Uj_6rL#pYj2*FHCLo*Ob|h@ZhmgQl@3K}fJjd%52ty$)MF6v z7Q&gV-<(HhysAnGD^g2N%TOjU)M>_TlW5$E9(wVoLpY^hH?^OQRta%89UCEb6tHIp zpb{QglzR8u4vJBjsg$fpkS$pc0j4Edvy$iHag@jA;t;le#SXdTDrz=HE@gf~T_ny+ z8Z2>3ZnQB0^`P6@UJvpN7}+Tx$QK)|YL zceUi3B>vDi3@nD|w}+n&XJwZ4U=e6Oac!Dpud&5LtMH-Z>7*rvQxDOWX4~$Q(ObutPcOm_u)tV`KI>N$oQ1 zy$s^;CiN=>p=#GoJJF*{A}4Es-{Bw&uCh57&kp6977~$FYVRu%{|3PP1qJDS`Tu(> z?EmYnfG~6aU#PoQ=Q81_4gNO(Fj7S2WUzmwll}!0jnO%E8I1<)@<|VmQ!B}8I&7-= zHGb3f>nEM`V5;HTEgl2vU>99R6`ep>iq6UWh01B}mm-UuR@G6d;AkRyjmY_Qci8R- z_88WWRmZir*Ym!_Y3)P$uOe2~*|ps;rfX~G3(b$~;t^o=v85z~ZDzO~E>k+-%a0fJ zFk?>)T0Bm z-Znn`EPTG%rDAIAqTB#ny06WJDnHAfL<=3>+_xI1>CPfeIj|;WDGVF(O*VptF4zkF z*DLKp_y@o+{7)CZvPu#YZxerSZ%icC4dVpMy_! z>z-~OQz*RQteiEa&aO1DmhJ@JYd)YI);vkFN{n|(s^s4wI64@*LxX<>n-{5og)l#g z_0?HBCsM?;VZMTe=H&vLB34m0{*dB$C{;agu9la?iA-@I z)L(%5#^_L^gU4*&vlN3P!Q}!sI#;O@CPP{;Rv(FCF1By6rvNJjwpB8J%znvqNQy*m z{@HP!2fAVOwLwYJ4i;{ zyt~<*vtsJ&IQ4o%Aq|Q1IdV@W9N6Ynaxj2|q;cuM&pVK|AGn-BAS61DSmM#D3cAMS z<!j{5_eXK8t%ma_kuaO!O#0vLQ;lr7$yLUmG4ivVan&l8LcDze7w%B8`o?2__vK+a9;CopL*>T z$VI0sHQ7gT@$&v!NHGgdfw+Aw4uW`JotsLU8)r1&9zsG-%$(aaJ0ko9)+SrWDvq-1ibO{MLIpFwJ3|UkRZN&EP_Pv%NG23wpRf-hazdk@yL$pd- z9ewPVnK6j1*@0an6SsD{n6?l03b!PC&{j!mqGUf+vnIUQG6#T?BVVZ#$gdn4ir~Y+ z#*;1J2Ad?y*lTL9YdYlcvzHecy)eYz%I36%^xn<)$3aI%ZcxR-|K(4glRkqweUdAD zD%xdjH-t<P5NY6dSW;0BuQ+a{xxGzE%$9exdJa)8-MW&QQjxMmERm>ZxHiXKCH#41Fj zHqiJf#&*fkUvmCz<%7zST1!Q|^;g=3O|bB=OT_<-N)dt0j9{({UkDP64tkZJ-(jAx zGJvHY99um)Ru?a5#UOt+&X@&M#Mphv*fOKAFdaq8QjA*<8$;q0SIT5h=poE;|4ej; zjgOPTqJquRAE!=|&4E@ZjcG*ANeOXKCEQv=Z55p+JCty{coygUs6 zFQ~{3SZO%Ar^QMCV%N z55|G^(OL-{fdB|akF=FZrdPPTu)E>GHH^&t$g42_qW7#SG?+2XwRsEJYA z&xkd5a@%o4hlse19xX0ivI+W^9d|j4aux`%iegGqaTl!zQ#o%m#_;oh*O|rs``=JWaDo1i#e&1i#3+#U16~6{*O1!(U6hUSQEg=TxfSR%T6na3+-y$sS zNHI$4qUL*rwl&nl$5g)lc)%h~pR52Lfm+?K>?$_NMvFq=><`KE)UPhAJ08`+I9FILf@(%11NYB^wj zy;Hf+6e1;cj@UVgNqLog2Pyo5(Y59OF57U3%(MBU+H6Yiw(fPD${OA_ZuP<*MF1Rk zf>eIlUrpTDPFzy$xvsL{nf34)#hg1%A+0|S^_Qci?tCD0i?xM2-@6$dtnTxsrlO}tso=cqwe zI@|Ob8AzrmhU%gs?z(&rSupd$H`h)tXKv; zYY~O8TPWZePF|*_oa?K6C@1vum2av?s;P|Xi|ttE5I6ZSJjPt zrFSZ$WS3?#>oQUrBlG5sEn6LCuPAOuXtV7B>?J-gM0zK`Nbw=BtG6y=GapI^dsyJ; zXBe#S7#_oR9`7e?k{i6NReUPwZg5_}M-WJqE?hy)@A$rDU8wX;nLaVTzfl5)wsR*H zuoI+Xsu2}P=+nD6_leWN3xMuIdF-Lq1JjZ1R~4<~N%4sd)nN{G}@ZsI>g zwPc1~`w||!(hjAt;j8J_s(+_r`{N6tIRyM&I+%eH#`_+k@w&dzI&@ei0gcNX;0KKV z73@{9mNBTyy!c#u!poQp4wP>=F7pGaJ))5w{hQEKSI=zdm?yXWPJ@+E8}|%MI`V>3 zXA87{4a zOQPua8mupKE_wu%{28mt4EO1@Yk{=zdvY!WBYf3*7(Hi1gtO_zaNBR(!R}3L0qiEN z&vp(qLi&KOZzI|wJpDkp&@Ax9(KOAsru0Z$!zWT=2)8*$VEAfO*jv}ifcopUI~dRC zvHpOzw+@K@?;uHv`#+G&!p+2%A^ZkL4bahc+#dh$1M7KFAl1OKp_`LVZlJAoc|4+Q zqgp=ikP`N#MWh3`F}@mijO@L?pc7HX{Y#S1>Zh9G=haw0=hZB|leOyRDth*a zj3zktgmoSFLxcuagxjuUa0LPkE z<(HXf3hBkO*2@>ZhaGog(%X;1=bh)#|A>l&PWc+3?|Ui6(Qzz9)ilprw8ZZtT04o# z9<}$M>B^z~Bpc7in60Xq+YU>NfJ=FGmgyK+!e`aX_SNeTYCFP;=%vq`ZI``nZk_wG z=k_fw1rCpPJO1V>q4Q}T16~-D91helN~6 z+((LpsJgdw2O(<#b2N?&^wcD#@d9okh^l>W_U=oSF2bbz1N!khLgUoKea*nv&%(QB z0a(EU)940bT%0P29lbT}j!9D#l-2(;$?ruW>#j`&St7xKQ9iA_A zGg9h>lK9Er)p?5iO((Ey{(o%%eh#> z=~a9T>2!EX#w_x6Ab_Y(3Q$o#hf8BgAIV2AdOJElEO@^F9)yH)TD3GRz6d*|>%S=) zm@gjugfa|sjVyV9TZE5L$Rj@?ycIFJh?(so!{VB?a0b*LU`G0p<TaYt?<$T4)rKA2er_sCey2cQi-lPj&5RZI?OwfhhC*7Sg+&A;Lf$?|`_2AFD+;Gk=oc)Q zzn>8a0>l_413B8=qjrBpQjj57t>*3S-_r74{Jkhh`P<=KRVW>J-K?;orZAS|>`o+m z6eoY@k7+9aDlRS+VKok4CpD_G$##18$&$Xa8!;-L)5BCjIR$MiPED#DG6m3DqJ?o{ zE*vfe0t1$@HTB|BifnN#_al8#_c;Cj43GoEmPSf11#z9|(1B_LupFfW1yZ3K=!{0LBMS*xHI=KhKS z5&A$ro*wBzF5g8i5dqOZN|7OEdXQmmpCDr4AlGRN;DNIvDoA$Gxm1@Te$iyqVc1=8 z1mO-ZYP?>HmjGE7+^SJ;V_!F znXCW+ZfzQaBsk#vVu$ee{)7?mb6LH`jz1SmbC4whXQLfRu6mdF2t>IS;-0G5CcerNfFKxp4ej zy6rPOe4_wHmo~C1Jeh%Ze+yr+e-W5(9VS};mzfLM?^O{GCUnZtXyMYa1P04MecDZM z9m0(q0SEsT)Nvo`Wh+7gjrzGyBu0feltk%4KytJypUwUp&kcaqiZuvwM#Tc=8Kncn z^d2*(?=@&k)4o0IkAn%!ZWxE<;y<1wA=FY%p|9%P*+*Ce1M!ws1k+~D3zOD?&X0k| zgn-Yra`9^8>dNcTj8AIlNmQ8(r)Q}Gn{+P#H{rZ!oAFEJYa>oKQ4Wu!vLg)-IfFGB zSWuN5?58$~L`*}L(KaL|tT;eP22KG4pXCO>jt}mM8uOmN5Y<4H)`@&@nKI(%Gn0-c zq6pA4=zl1JAexVmtfZzS6TK$~9i>|z%cPaddfBPH7}6;L};H?A(<%&qfKO(6HTD&oR0v@8pg?k9ACRp5d)jSxw&uLtQtxiIqcdjb5$n<9L?iS z1Zis~Denj=V7^3TA>@gS1>-pp<9|=A5B~s-KBi6zRH{`HSO>d?d^WlcZNtBbn5)hb z*hfaCpKJ9LDD&2IN3+hMbsSHHp_+JlKwFzp8*x7B38q#r$7(c!=|ll$I|RTc!RlUj zLGL!ADmsrs!1z(Y23G-CRq1#5PdD18iv`qKzK0hZ)vfINg3s7@*{1`vj^Jq^$Uw<@ zW+qwE1EkZ2S(R+UmlJB0BkdwjQ<|>ocf99NfN~ciV)Z$7AO=W_cP)jERNS#r8oLiO zmmE0+x#Yu)+#IyY7$?BGwl}gx_L7>9gTA6Q*c_46&(1~Kq~7tp*EV3)AvKukL5O&t znYN>YUTFshO4Eb5p}0h(uwtTA7O(I#tZ8F1m&3afPKs4yKl)@*?q5BvJcbdnV^J2cYnapm$aaMjP%sMM;*C= zJ@C8N$mnHPTqa>nX1EMjZ?E))Cg{^fnI~;&V+|LPHDe%IpBfU#{uLLc;HbJWk5}9? zXXQ)O6y;|a=&~Y&*K7=i5h4=8CD#$My(Rog9F;X(1!ghYS*;G+buIr;YrqQJrx!xf7TkX}6h%g8v zROli6N(T0UrblHeVJ26y(T=*H^DhxNe4ozLTrJB8*2c%hzNV>5nH~4$VvPggoDsO& zjq(sQ_OXiU7I>94_^7iC4bKg$Abh}e@-Sr{rGVDOCI|)Qjd7o}d#oW77O%#(w zYFtgrTwE(5hv`N{pE}O>Cpx0ioU&*h_9a-_mi6I8j85Mep`!@92w@}+WAO7Yh(%M5 z-cR&2CyvUD*w(N5g>;UD3LkN$DS+Zx-o)V_h!6BpyZQ{ zXVw3KC=ZZ60fi3=EF%3NHJ?7`OdBs!13!&~Rm^@_%fY(W9T=-!Gkr8FNnJ;6EdXhK z&|D`4gg~MM49R_SlLbt)5zf$cm}z+5M&z~08Fod8?LeGNc8DHeFyaTpG*P2x+3&fS zkg6!Sht?+&cYm4D$`7k9S022+J@B}P+%FIOx5Jhc9UW{}NBxgE!H`8-2(Lp=al$>f za4l#%*s?FkCls|C+lpQPoQJ%YaK1x<`;R-?7?bPi9KF;8H0U)$Rp9mg6kUt{<(eCb z*pN|8u~I+RX_*aUW|j2HQT~siEIW@D%@6n}0C?(W67PTfeJ}K1{^s}(e-Hfkow;_x z*8k!6p9pX{VA?GII~jvjkEU$+hK+vgqmgbYs!DR?LMeL0ggByKes}knWNs|pKmAzE z-5*tTht*Z-U9$W6U9>6P+kZM*Ms{AFNQi9!9fzacga%ZZ?cq_E8`GSxj0XPsWu7!q zQzdGiub=N4uif3R3tOh{1p0jd9bD6*E6?iIR_muSoOrqS0QEoP>W9nS#;vQ`NhL`t z8y9Pzf_-m?{#;xuAF$lRnfc9sb{hVmb7+jR#BANT)k##}&ui{kdI)e%{aY^cv`rfw zwaNRHEpo~8^>;5lgrkCt59F=c2%|Cv2N8!veoR0lpw$w?R7u|Y}e_2U0AKj zXOGqbvbz?py`a26f!mraHsMV96-;-+(23glMDC5-ugzX7^+{9uXLT~QN~1S6JAdXI zug;O|boTF;i7g2=tTEJQ+U05?^0X4ZN{e9xU?%7lKLcs?1%YH)RIbI3IW_~U);J8% zZgj|A1f?+N+8Vwy8TQ}-&yqL!e@1dcXxCd}ArhSqo#bwK@BUVKZm)wZu|t8E#(f8Q zx@~pY{CRM4bNTb>Rkw+M4)-bw&suz(vw#~USm4$b(C$W=JEnb5??y4(ZJ-7lefIKI z`{rtkYfa!k)J-$8RVFT7#M0oX{So)u4FPHg8%-u88TIW1I69QH!osnCL6#tR%1fj{j5Yjv+Hks3w!HXU-Sv12x= z;^!v+zd`eTA{lQL%pTMsjQ!g~R zxm%j5tS*wY+w9BNS^kxfYiALP6BM&&uq`QIE*cvErwjKXPZFyR3wy! z5y!fm>nT?4cmBE@Vti9U*cM&ZJc=>vP`$K*V~hMdlz{8Nw%eocjACz`t?m2IFcf5) zV@byV%@?eP)$Z?KHKA*9jhng1c5krEvhpIfQ!E((nloWQOg}{BX~Hm?B~|C!62ZnA z0(FMNC+@8huZR*If#4>ebhz9clA`a?&J5*;q*0Z=M{f?H3TeTye1|r|kDU=%8YYX$ z=B2hdvu9Id^#?_i*dSrDHtsQrHhd2)cWeAMH38(S8^5Bv*7g`RTPMhR-bVl2EM)$W zWABLpqLAUF5?iqn590GNYAckSwL`BCW-j}_&k5`IzVBYiPZsIgXx5Q!%#1~AO}Xwp z`q~w5Io+md^-fbl=@J`er(0F1Cg#JE;o`Tz+`}+(AV8q6j{9?g8mx{&-=&_oxTqh>iD!m678HeWI()5r z!4_93Ci)$o?FB^V(@u%Cjx&Ws1u&74c*{)wiVRQClPcg)@&zG7T6hfu`39@{o`IBBgnLn5S|P9p&>z0gX(J!tDw5GD;Hl# z&6sCk0?YoGXkc82IK1wi!KJIdW}ux-6p6yeN+YnTZIas!pV#K z!MaBFyKL{T?{|ja*Vj@}60nQD43Beoh^@Y%b7iWO2C!M>n-B6u3%WsgnE;+O6kH}% zdEG0xi^k}&eCp)@YnSR}IPqvjMKPiB+9o9rPYIZmY1(pj7w~q0km6BzK{UOD1*7 zR0Id+JUCAXLn1Qqr322NFJTz0il@qT)tq%=Q)z`v&^m0r{<_OU?JU^%Q3Sx?Z|R>w zNs!XNKIfIf*7<@9NTB7*gwdCXM@;h6um5g3@MwvxjDQ(s{mDyLmPJQxqJ1|OW!3YFs!64=k}HQ&0HwCy^XDlBu!AC_Z_*XB~CxL@^tbt--B8|X$X`@yQTC4MbhbQ>Uj z`WLA({MYhn@)>d9xz5J{N8uOyfBNfCY0Rv+qtN!67-#x*KFcNT8c|%;ivD76Rb-Do zvdwbnInhn}H5NV3*)E^wDn6pB&<0#$aDeUyRyl^JbBTEV5dyPxY6wcn99Wz1LbMxD zf6rP^8q|e32QTK(2+{}3tsTsQkb`!rC&?t>m+^ zRMs=UeVQX%M-uUn@vG9FPl!aL2BVz!K%Bx?)=1hH)+Pt4cj)2HYi)}dBFvQ_znbxg3nLF9Kd`-P#XtSY7YwQG%! zb|U=qouDlI7Ov=jT;FMD-=Bbtt{5y?+w4b_8y8;N`-yb*mRgI7lF!;ZYC8Cy>6@6j zp%XkX3f`38MHhK;BhA7b?#iZnFp)nXaqoU?cwgv4*lYL&OtaH3*GZ1!T+sKfk_kBN zhdm@~neepTF~*x71%qc|a6Hf-8pfj-)*ir;1m$yr|5R2>9fi>tUrtQT{aJTi@rjvI zyVlRf{zVB6S`l^k65jKER|YxT(=zvoK>qMHZO~hloK!IgYfwin?Rc=u9AVD0Y{?7;TjV zJphx*I5{M4R(b6q9Antqw;#_4HtIC&-P!ea;+{k5lU8J!*ix^IoqP% zQ+lo3dQmU|+~4Y;&Ml?H4pU&?3Flp~Z2^F<8xLVVjO!J?7D`Bj9Ys|+oo~tdvhsM* zB@QVI$E_h&troSE9#y~YpPQt1ry1c7-`XpmgJ`Mf#HCHeuStY~B5jWkm?Q5*IKiQHc<^uS^|rUIZ- z`ALca@3q6s{D|qwr8L#XkKU)F`7k5&yyc7J2T(k9vAW5=InPRx+;Zmw>mq}<^Tth@ zc{kJw6!m7bIMK$0!FB~&%a4{S+ z!A+Hr#I>SeiDp^S%G`K?Iv~Beo}`F6O3@zy<&C^7Iq^qI8Epz5Du7f_2CaF|vxJw` zNp#vbGU7f}a1p@fs+tpudscwV_L1<5d-t(!i*jqOdnB5Xg)5iVcp^y=b|niXCLGzb z^hwBmvFQ>DVydY)kyz5ltQ98;kbAe|s;#HK+0e4JzktL;ixKm({;UZyz&Md?*J+rK z^;!X3XKC+zQR%v$3P77_gmm=BLz6a!p~0tp$d3k%#pA3I^ZZs2 zJ()qfJW<;cN+v8z)8Y)rz*WD-?y=V3HcztSYu?Zf3z@j}?$|HB_>GA@Hzm zL2EXX|6~@Kjq82GUT%J+cc}3Tl*SUBN?C}%NPv7A+u{D`c2vJ4#2<9A( zBH8PQ(PueT1Z0!DS)b@281Ufy7~58XmI>(DR&TR(1d<|GOK9^+8vQ@2-XTmAEy&tU z+qNog+qP}n_LsJ8+qP}nHY;7J|8(D;+`*p3I99y-iC7C@9l;%B_X%D~Ww++JO+m4v zzJG#2I(xy*i5#Tj<|jB2X>0EY%@U2#6JW*mCQKxh+%aw?N{ac0x(dC-V9@t@xUM1a z`}}%3^&g_bl|Sp|TE25)>EAx*G%?LoC<4xou>o}o!*Hpdb!A9GKB@R)iEzp6=_j~_K|LmiMD|8~r``V3AO^*tr4cmi_J zq2BR63!AJ6Jv&Yl5jEalk)7iZT!gq}oxg77B}4=K%#H)JIr3NYhCQh}6i__>@+U}( z(a$MgZszbNHrh(gj!&}Gs*hdX6AHM4D&6jzX^oX|UW@z)f!&C~JgpA4;mK+jRm6Tz z%juE^HyirdUMi^?|Jy_W7u~ixzy!FFqe(!ER0sd@{dVQ#5+4eB@Wbk_>^jcN!Xj^# ztrfx;bY$r%HC(>jSHRK#ic6d-<b<3U@3v`JIq2P{F;PnZcP*K-Jl(jZ!P{KS zv|NFs{Ws~POz*c`ypQPL<)+Zrm{qK9Au@m+z1W~-RW2F|1#y069DKST>n+Qg3|zGlDEf@`>r(}P;hHd zD6nQ=AIQw88cot^AZ=9mC#qo5@aT;afj|SaCqJGp^X>+NVWqECqabJCAo%#c-~S19 zN*_{ah;=zjM+%=;-(HI0sBed(!~6gIgr4}}Zggbc_`1Cv&F^D3Csk4|3D@1dswjJO zuWp~b6!O0H={W#Wlp{aQdl$Dz1=!zO9=a;mwep_rTy!0n&vT?oXxHxV{CywWyAL&! z&E`)KJ^TZOGOazUHQ3jMspWM2VSUY*Kj1%x1}jC|_!mof-Qi>J5+_HNOJ02T+x#V( z^V)U0s{9Y`FP!YZ>nm3Xt=4Y5evRnocyuYyZ)-eFK^TO1AQAW#?%Jev4P2094 zySBxtiQ)BXyLUYNWN=dhU1UhhZI$!pU2~gmElaDc6jnW0H`vQxAWD_)Ee|zU^=mlh zN+vz7bGQQCej9mn;|V^RnLjX@L7m%GIxRvmywZa6Ky(0G-g|88aj4AcPRr|}e3DsS zaL$3PNo4@N{SliROK>+V(?V17r4~aY$)a~pOYZo#^uyB&V`(w;gTDnPnY;mlf}kxw znt@Y8mXF>`X2REp-W>K6q3qrrxq@z2C;27frY4CkYeO;4pVQ2jw8Mvj|Hv9)?$9q@ zA^Y?|i__K+9KH51z++6%82jjL+<|rRLb9-_&~gBrs8?yd9W_^u$+Qd?BQ=uAmcAVw zv|Nsod`&;JlgL~x8oVSMH1u%PqtM$`>Q;Y;f1)ZEDV(rtvGP$h2CW+W9xyU(*9}o1 z=gV`l(k8(uAcPX{rT#cqo6oJUNw-eQ_@a5BPJAt%R|Hiwmq{8z3ylRFTXt?8Kz) zJnsVq_J?l?x6YLBk!EJ$OR2S>bSeg|PvuIpB9(_5cW;l5hvUPWj6GeVAcEN zhf0Bk33-w3IPRQ_%lR-qmj?N8Hv)?2S zg49L2JIgtr)L_z+37*+qY$P-g6j#20;pG^7pz|MP{LiRKNXOvv`svSN#618BF=>b( z>J8{#qO>j?Y{QZsCD5X66#=tXCM;dOow@Z==4_IIO0xT&!TDNBdq%2~wyCloaerJl zNAj%<*DJbGl(xT&v$%Z=kiOMByC+55-g_QIy`=fQei4zaGd-baxSujErAbKZCd)^B zcmKdI+v0!#lp@SjTYqd=6ffY#&Z|sGg<&%$c_@zRHk+^y@cowm(`CwmqufD^17QG} z^;5jB?;WuLw@8ImkX4QIholt#)R2Pl4^L$rPZkIqn8NDOMKTr{_Jf{V4 zQ(O*)8cfDzgs|!q<5hJC54m`Zgy8fwzMW`{92uU6Dv*q$XvDkcpXxIRYuV z8RdRN;>mug87t~s6NL;vl|QDkIg)o}_Sh)APIU($xHZH@-087;xmbmi7=6)$o-T~2 zy|H>+{zZnPCkPBq&UXWZcfLb;bW!nnX&FE3?$g`tGz)Hu&Rd_|-2LG?MO z>iji0I&lOdloB%;kiF35gCeSXBXn5ylg4$n{O<=Dp(k}Vz7)$u>A0#3;ntBL6 zkjdOpc?>~gy5q+~524{dg?kXHifMAz60H>;kM{hJm6 zM8kpWcCl~Kug5A23jRstOFYsoh8Au*VCp_MFke_R4z{GIoMECI(R_!}*tr*aGMcrq z13EQ2Q-kIyZf%~!T*JUr6gjjP`ZMU#4 z#3pbtqGc|bwQ!u2)AlQ-0dGr)d-QFT15uvYsS(kkj8TCF0g=m+70}@aPXV^i+M_`= zi5%NI{_w4-AZ1-NF&utfYBTu-!{`82f+J-FV#(h*rxe#@wyIeSo`Lxjb=0K{=Nfh5 z5fA9AkVV+@A@vAZMRJtmr5m5g#=yFjox{sKf=QtuT%k)o}@kX zJ8@ts?qh$=jn2-dV4JIqcf~MXg{YD##0oH;gl8Xv7KO9L-6*8%iZT2AMNBI--thn( z2hxf*-fNHMEXyU29~gx1m?G9-h&rcMlS#DZ5UbwAHc8GtGsDZ7db64GYn%_CWBRl| ztDT{JH@Dw~hufTxg)Yx$*Atlcqi(WYqgE6fT+^Is5S`wz347s68vxOgOGG5ak^$7D z#gL7H$s{npeLCXx8-0cU>frwwS#y%TH#svVIpt&;^ z37p%z!_aPA-?$Knu$E}vZEB)@SppQl;+!ewW0HT279ItPwyl37)!*+AX+22XG|>0M zTLVLWHE;9EEMeiYbxoN+K{vQAduRoVisrcUaK*5=RmhIFpdzIa6C@qd4js^bn4hIg zLSTLoiT-7JMfL;$R0F`lcJQuUwtGL}2+ol7m%ji*BBCI0a~~?C1)v;+=>Yj0ipa%w zd$VLvo9LZ+<@_c;po`kiQPB-aqm~ceJel*5;3FgQ+3xpxWE{b5r+Z}GFVX28^vqSb z)3$nk#*3yp5m3?WL_Bo9uTx@II{unVhp)|iwa+t8+lSjf8npozeItJhKhMO+1X`14 zotVrjg7beZp@A9GoiHJ&0j1h@@yBh*KmPqg;4mw&Ihv1h zB-svf^@HH)AhUD}i0LAQt*3fqZ6}h>uXPjg^Kjus`m*)Cln9(EXrt+w7Up@_^aiC5 z@%6S{Q>CWrnX6|HKQPS9|&X`-JKov+5bjvC<+wa<;k--pDa0s@QjlRs1(_`xlx!mD+0W^_K9W`U9Z4 z;>x!lHDHV2z}d?3^Ze{^1Rd|){l^!T#pU7uI`SRISA9ufHcw)GzM-s=K$;HD>WdiQ z>cUTBH5@rN2EN;UbY1yf*JX9Sa-E~Q@AAzBrg=qA zl%>!aICHY@5owa+G+Mg8^SDjYr{dz#k_=QkGP|!WE=9H6rW>o$m_?T~_;f7xSyfvj zU{w&M6XsejPBc33{TGD!_QI;I2>1OzP$D>$h`!=*$klAgC1Jt)V2`y7NYmR_&)(Y%#klT!yti)4RXp8Q(<&Vv<%e zrj^QgP&`@D7|Qrdp2xTmK4+2lnous;hO5ambc~A9K+XrDZi}$ zAz2TCraH^}n+|h>6%UT0;iBVKA5ePnQa%_OJf0a8$WrUNVfwOx54z9{AX^A7;zx8@ zYvdvWqD@Zbx?U!}qH@gP&SqgRMOt8Ow@;3D5kEWfwGN&eV3;W#OwQdrFlKgSCa3(s zQsmdjZs3wFJ@>?QOTGap@V_6AV@$$Li#2G9P62v(;%V8Xe_U8&9%x^Tz??`dFUFhP z1L+MgpM$k&Ui#v@+!iB1FG*yBv&r5yds+9 zs=KMK>VMXhTnp`cpu!EttxmY*Qie?OwYYuO^ex*=?k zA`HiywjGYH)(s^9N9;V(q@2sVsplao(3kGO0!Ek%2;Gb}B%>MIq+IFg9lV-u{6&w{ zF>oQv1+7e5+hPR=V>=g=aJZ*>Eu{kB%vQDm5Zr{j#k4B{=`5(Zd;On};gs--@==$% z{s}xj-nS8aQy%2!pPVTVzRXa>n-aGgOf2+R8*GLUT7D7$IcYd@&LQ?PTT8u!BDaig zNjY0WefXG60&~1&5BMjqGkJx11v7j$AxCEAi*>w`tDcS~JS;u_=6_bw6scHC1lKv> zcZ#JcF9Qs{!4SDS{kh5d3BzfeIQ|Q?{JI4DZXX^goSk+Lz$JzLL*?KptWTy1TlmuW zMclN0f0^9?lSn=P3^v(sluOi#=RNS2)|>p{#i)%2bU+Ie)Pp#|(<=G>Y-xpb z8-!1$y-Pp`R7!a;G>y51H5I_1zf*t3ZkD#KCHOQ62haVqkj^d}E5Boe#uq+fh-X*P zo&GHYAYK}HZuPXF!y$g*;){<$!%BP$-?}PM`!Qv^-BaAq+4$1!w%>zFG~Ulv{v}B+ z&yB0Ip)0pSRBCwiWtED5hcLs;=s0Al#D)Xyc!mQ+I&V9PMDomCjsH$rNOyCS%8hI8 z89t|o|ERZsx^+=?cIVxVH0OR`jctVTj%bbnSeOKM0e5hUu)Kwg-hL#v>OS72Fb-iu zZms*uzsRnP6fXo9{Lwiai;-&=J7fw6;}LJIbxj1Dbr=U1`g=9GXQP%QR$cxY?=%6LLqU`EUE0uuofE_W zG=Nd@9`UjWGF>UqInzh0ESRnEgB1a3WrK8VXB-2CK?1qy)oT$`4lg3bFN7W}Mfl;I zvk`1wc1Z#=kbM!GwuG{?gt9R^6gTVOECRs+t<*%>3r?3iG+W8;!LYEA2TuPK{d@gK zZ3K;K_pL<$3Rk=22>_-+nd5!BH~kt=!ID>#onlp8Kd2OM1tljAhnMEr_?lg9b@^VD z;atG%B`VAL8^>IkG7=K&$PiRdIKl80lqy#xT2?p~W3MeZM`huDb)&Z>RHDu!BIoLN0zWQMG9hX{H^s`LC~LFD07l0H#f@eF4ItbB_zD+ukAvmO+kWGWVGR-qSnG1pJ#~AMj%_S;^ z;O;g_2glE*EogWt*>?oM1R|wh|Iqqjb;?793#Vap?rvD`?0?m4n+nFY*i0L_jWqeU zK5LH*H}t;CIQ*o-##|3j1KF68!}!33x>W{PWsY+qVrEhAf zj4R`W&aUz>h8!gjL?U0^O5~M=c3TdJe{LCa)V$<_$=ke0da-m^78%V1rMgL zXFcToPEw`N+56XV4JM=RaUO`Dk8c_}R~@3AIm-TSz)N_4*=25=8Zzd;yC0*us~^WV zV((AYJcxZeK$}#O=v{nvZL8ID-7eFS-L|bP0lc1$L)#cvy7<<`?D(fg{g1PNeKyWh z=wISfc;Hqy>h5XhYFA^eF+u`CoZF%@J6@4m!!U~YA)t8Uxj!ybU3hIJ>(#*vwCIJ( zsFdDkYxxHWUMFv>!_ha*JB;P#A@%v)=`nRt{FI7$PrVimgH+kczKi0=8XW8fJsv_nyX6G|_ z)J%`5@~5pemqR8~+b%0=8z6P|Ja)11P6j6MkMyzVKkDlVvYWz&OKPAgna?}V{(`IAuuBC;&9bg= z0T);YuBwzrUZ5fFHy~dR8y`u*!5Imez)R$aJkK-N2cO^O)x~vN7X!kt^dF64qcMHJ z@A=29cfI{FWKIAZwX|&9#gUe6?8g^R6r80+fDfYo){)T>t29~-%ljeUX47v(`LdHM zH6dU9#*MPPN`j4lW`VG;$P#QCDYd0kaP&55tUnly`@Gt{6gT`UkY2QJvEFf}9&p`B zK0Xl8FSfCvym%hiUA%ShSJm%xW-iZSYKTNMRIf%z9K73Z`pyI>A7o@(@O?g)cuuWO59w5;`&z-jpB%~3 zRJ6tlzkyj9G?~oC-}et%U^eSeQiUtbK@~GIcWc*5+`qqB@0nm!bcdh zj5LcZ10xMMt!pAZ$6q5kF*GOL6qZjCaA%NAL6wq?@V?M0ff1Ao`ie89cPrKaDNbh% z%zI4WX>QkgY0O$tU4&Fr}W+j^^{NZ_w`4%96n}Z|>KzQFv7E`QS|-jq+w%?S9P=o?~qK zJ|dL;PQz_*6lF?K*EAZ>uSF-*eRY(hVd=uSzNzi*PKx(xGzqx-1dCu^t(O}cPoeLsdqHLuzpyT_)wTcE% zz~U4y`TpH`ebN#09`e&?(g9Oi5O9UM9bH!R23aF~AdA%vfs z!oq>=oEPZ;<0q#!N1eR8(5qG{PtO*rgXg!oV4qbq}5QP2^#M&cX;FbI-{gVh}> z?nRD0)h^ZQTiIYspG=*8!iA7OUv-|bRE*9a2LVDn&H8x~H8V(ETXrgL^5G?vcpHd9 zTx4=x^}p~MR@ZbpB}G0(d%vHPQ(=q$8p!mooxo+3GG8)Fy`NVM&K~y8M2uG6A*@T0 zskoZf{`kR@pW}113}m(i1b+R{N(4w$X|(7|vEVil23V{~kj1a?m|dDFgUxs=%L>); zW|EDz3;cZhvw3NucPA#)qiNFG;eBUvR4}O%j;{%Xxn}F52_)ebkCEMUS;eKJeI@@P z=Hy1^SA-Tc?C-cJtKg`ygfwbrz^$V02y)lR@|3%bS=V`^+Yu=WcimP8r>V2?_71X93JA9B1?pgU zxQdVcfwDsgfYD@4z-6L&yAVfKA{`Q9_Tgte?TZ_i2rw?us`34C!XKr_V5EU3N1nq=!vX=h#sgh$*+yuW*B7%fUhNY5JH zPL@v#E?Q22^TKaLw6Uju8|0;dBf80NIVLrukqS6%#&BFsCRUV{qy<+L)*^Wyfi6f1 zVOd}uPK;{KR$*#0mzWHK2sc=xo$!iyf&rP}NL%ZtO92LFq?7U7(92asJceKARfMK) z2Uy@0;p9Y$|Me0(4=9>(6*^E@&z<)1KTzawWnp8cXXkG#ZG+vS$OSIBf7!E#mO zEFrwSJ+!9i?Ugo6GAAF1u?F-1U@hmYAMdSv0iM;P!zq}Kw z@fODJS&@+p%x!g+C-~b7Vk1jpBb3sc@NnvYVA)g4H01bR(XVXI_}dPX`*5ydCt3@# zzN=<~$K2n#G*h-x`Cn}2!PLRm8}b-S02Nu9GSte9_hKza=Lq~FP z!KJI*9DNndpj}(JzHCka{C*UO$;D?T@2xXQEyYj=O;m_9y z35aX`o{@wx97r4T%v__LZMj6Hq%~$9sY%mk5SyMDB=ExK@^mJ+l}%(JY>LS@UOVn# zd@_3AsD6ZpaeE>FgAJ*`hS1aT9=_CNb3GqXEUVZ=Z|L^KpK`sFDTrztI5C8ipgJj1(%qr~NsaVOtzmzeL`b8)&- zw?={un-`ck1{~^kB=0KOv|F4eL$vZ7-N)4t=G)`&i2PsQsVH4^NcI#d4tM(BFA_E! z)G*DID%suPv9Y!p8Kwsw?fbqkDS$PO{=M(x)!W^HDeLc88>{^%8&|y0~l)fyQjLH#~qQxxAQcrB|w1}7M0b9 zs9gH`R;ZJ?5S;c;BY!<~rCdhV4C-yxF%tz@AOIYuIqyL+BCo|*Yd@gGFVNj8@QQeU zk+WxWj9etz&Z%}*T?ZYf;aojaQEN2%0fx!3BEqkxIgwAkIM?y-3VX*~y0gIq0wLQKvr9ok=!f_c|6fGM1G_?wc(OR56E_2hgXc$pXKzS%$@=oH03h7-ST> zr{2nkpW2Prl1#+0-(y04bzWs3fgpVrzXxb^&sn-zZ*JuDlJLW6H=xgyEszny1}~~g z_|oJ+MMG@;@e9e2Ju@tB$*JPcsfk5*ZT8V$dQO5%kq6$5s*W(Kp&J6~=!vP&2R zt||tW2#jc!$m9>J*Gu102o(JZ~Jf- zIhvR&m4q{S%t(j3E62et8|}gEpV}_Gn>yY!rQ=@!!vrIE-e}} zO$WrQW(c?IDNGhqdydJ7WE+6{%)IDVsJdg9K+WB-u0Gb^VB#q`_cgLl2&qmeTS8_4 zeo3zJ=aj6S0U6Hi4Ra|t9@+Dr^vARTHmm$EgCYh5(XC)NE(T}xx22r$xr@W%Vq!#u zn3lt>a^NRQ%n2N~S7-5oW3*cSRO|1Vl(H&p^T4@KF@)xqWP`Z~$ENR1H2+rd3WTe7 zp74Nf#_@n`bZ3B(1egM-BP=mTHC%vH94JnzxeVuA0g0f3Eu3JOO@{e*nm)21Lw;BL z@nZ99skVZXKm-ao(6V@>o6WKbL5N24S*$HL3#5;!2dsi7X|xOw<^RY+=3= zq!HbNfLo>;I-)>6_{KzTEKSB5jOSRP!1qr*KNFzf7D`^za+;98#{5q;ARb@C4 z_-((gxxddgNk30Zl3sx{fus&v>TzBwY7u}qcy0sfF@3HUntkTB5NsV`&( z(Td4Qoi%6&FLY}*p{KE`y9iaB$TA{9pmRZzE0d=~(ft7~h3(9MxdBwMjepaknShof zAW-AF9M(R_h}{F#5shOoVh7D)&_Mv*Z|-MsQ(Ir)Nr840rBC-CWLerzAQfT&1>uo4 z2n*T)i`(E8w8+fgz;Okzm3iF=yuZNRn7qp?;O28ylPpZlXv)gehvvbvojCM3W7Kg5 zaOt!mSNISx$lY)lTaM{;I8-5iXu=6KsuMHzzBaKb_Q1hNM*3Q*&g_+ zn%JQI^f*wNOn|^jM&J=N9fA`FFemA|!S=$C7)3ZwSB9B$8EVTKkhUygVG87H3VL9f zfI^6*&!^*6@#o?5{F=$aQON}@6GyQ^ubMb63AS+;6|>f`>u$y?IX+f*E_jEKU>wz< zRemmYk~rkO2%S<8B)_7X9O}>hEzD)<ODfFRI0&juQ|)Hql*0F^TnHxG<) z2=yr@nuSXx!YTQg#8Fnb^!de5*<{}YrM!NTAj&T^dd=2B+ws|4m}|laEI}-y#iS~S zP=YJpT#5rAK>CtJ!+0kX6A5=Gja_~eomYT0p+$fEM;WKnk3M7n4W2qe3 zVookyToKc=c*ozDM)YzB;LPr3Vz277U3+|<5(iE^;;0F~``zf7C_C$mDQl|miDyqE*{qH%ocF+hK?&k8(ZR;TbI^A14wSe5|QG#aCJ8=d$Op`2nf_ z_}0MS=O5Ljl@OOXj>CiACHKl?cH|pp_ZgV7H#I-m*e9UA{6NlQLN*g zzsaO<{DA95PUFJr9Otw1IKn5HH{L|4x*PTgzSPm{f{Bh381DwD3{i90l70h&BO9ql zcx9J3kCfwHfx-C2p?r~T(7A*rvlHz3c{pm;Bbm^!A^pNt4R&tRXK2?u6+S z7A;Q>4o{A`b6_k7&(i(L^=8>mnEKf~B3~&*be=_ZVK-Z<4j zmsI&!SE1^o=SJBM)~V5)sM@gx%At{HYnPjdGT3ca7K|Z{2i^nhs$eH-+jn4{=Z< zGk|u2mmLD<8dm&Dnd}C^#xH&f!CBKPi)^s*hFht)s-v|y<$h_i^7PW>XC2tvlXkor z2up6pWD`go#vAPO9>*0B!MkB*ZFK%q<6dJKbFDL9$iZ;}5S zJlJ7RN*7NFUNLP;oFUFfvab+XQ4`LG{I%C&cJBh#LjfyMSw20ns#-)k*nesrYTzNv zsNW>Md62QLyFDw)!ybg458KSszT1WRaW>eE@ShOdOQVXT`8q*!HdDUaa{v=>0n!ll zf?(xqE@@8=t1eD$#*i)+>nuM>uupm&3&=hw>r4}drr(+>$j(Lvb$*Kmv)U>AQp2LC@hI{Vb1 ziA9Ox4&Q0p-7Oj?QAC?XP+26It>)`PSEC6hwy*o?c+O)#U%6Jn_^{dsjgi;o)g6QLG|J$$U z+v6T|g6Lvw($N%)QnTxyBO)*@trgbvzzDL)EJ!7yHvc5?JwzP?PwiB;$uz0^-YfW2 zPr`7a_H9j1lhP|-GTkkp7}6%9Sd*jA%FtM;6E{CAxWo~_-o_#lV-$1z4QPJ1U5by- zYBfF_d`pY9(}F$LTUMA-Q+>irPoXu!3k}QIXgwsO(b=Q)#u8Y8I+oX43(t^QrjGhj z*XCi1EWV=@LfS=ak$5vFQY6u={_B<|nN+P|WjoKS$U5qG(0B##scfhO2Led^XRY96 z$a-I6=cOW`VE;jYZ(*#iG*kx9UTZImJTxh;*^TVzFW@KrF$p=i9FCff1+}+3A9`fI*XQFP&+H-QjqIsqs_A>+t>`iiC>N84aW>_gz%a@7+Xw0{BLF| z42{=a>+VH_^*F8;c*jW}hX&$_Q*>QmqS7i2$?fVSOGYFrrNpk1!afyu=ZMg9oj$Pv zFah}Zo9J9HBCkZy4Y@mbSB>x{ct=I2*kPfw5+^d878YiJm@8%hc(f>GqPR**1gRld zf$9W6@KT`0ND2)k!PGtR5rxwd2UlH?To>xlaQtXvQd=O7mUAzv5!KKRiEMO7u_3tE zYyG8nFV==2R=zwh76};mlOx`+`#-wyvpOP3>n&oMD;lXBpl5Y5F9*qybYjYMZIpXr zKrfh#ayuqLAkA3PdUKlX0$L{V&=3SZ8W#hgl!(a^CoQh@PZCJ6k0J?1EeU7+;Dbv$ zkJvzPi6@s)PiI};Et151G!o^FxwJ8;>7jCf@xoyw$J3e|M@h9M(Z5fXk0Ix$#q|@=hz?}oY zDMgSiXC##y&eP6U;kyc4ErnPjyny1rD{l_y&Z{~yD2q~@y&E;6StWs0Lc(nMg$|gN zz4nCBKA{u%=GD$l**BUT)xAfy=^skAG_s)>UU!+}=}`VHm}#6he38UBA43Sh*_iG58up5PGG9Gu0wwRL z)R-_+@7(=4W&7NxK4}c?>JK&CZWax=wEvK*XvKZ+JO8`?@mn)c)Np85KJj4+^ta0} zdCk~d1e4YJ%Y~h`1|HD43pfMpoc*|*|H_~5e~eeti|YKWrd4QIvk)V-3Tp~SA%WK& zM)rBE#2dE*iOnc%^Oij)ZzUl_6q`UvQucTc<{ZUM@v|^8oT$vrSY2s_b#Xanc7Qy2 zLbB9n1TD`Sq4+Q8YPXSnibvccr?`jGbcC!gkJQ;P3Gw3lu&L|WTrmTTObuXnc|-qF zbW^z}lOiqYp`IRUa5rbJSryJ!J~LSoknO|vF0qH;DJdEG(Yq2TypG(7yy>%Q5wHQvsy7Y!@u$=P=?zK4uWU%<&$Eh~mzv{fm25Ko?H`IiD4 zcz?s>(?*!RhI0dEbvAaeg2k+LKFIXN#E68w!0XcR8}iYXK6&`A2ia6U(`6hka0s$? zR0&*C^JKQ?lWk5n_H_t)xm8QO3Pi*37{==VZWz<)YNS9g=XjLS!|K7|>rUoRMlV%zTh0P-00CIWy&cHu{zXyDvF(+fa*eg8RZM-N`d-y0ln>KlmO z1?VL{0lgW0&gyb&JbSjc^WSncAC>uSpU{6>dN-$f+hH9(%`PZj(*tN)HmWG*_j z^3pGoWS%2EVs-;zC9uJ*nkeyqCmHIMFuZ-P!q-zmy67j5X%ZlO#ZIVmKaxux4wQ>q z3=O6x#y9~57Z0Z{-YLZ*YA@DSBm*hTZmH|%3?zspHA$vMiSp|RWzoF~f8dL871US1 zir6kDpR9Nt_~p46+W|+F6`b>S2#`@4LP_;jhHSUTTDn&vwWVGmnYq0{N1-@0I8BSi z&Na>1TJ^p8jdqmOj|$Gep!@~I694}L!E~!xFog7;XDD1mE;cq823a$E3s*}bCNB1L zU~Wh%z^L|aJZ?KOVBKJF{3MiwO9Vj+3)oqzPHwR%a2`CV!#`mjHeXQ;rG#(bw5p`}6v2rkqkBBZ?kufFnPO>3A zptNRbbMXEOEmcH|FIf`~U1OcO;tH2O48QVh5%*Pf-CR*>U7Q{6Ps$RdQ~=yaz#kG! zBnJ5i-5^*_vebZ#23O)Sf=*>eQcMkx;UHxX8PlTbMhFb!SS{&@Fa|j24Ql0f45yO< z9@qx7WNWz5q9N${2H`4l&4kAaVM6`$(ds&ooHM^LkUo%dSEguifO%|j zpak^%BiQR@H&_)VGcZ|3VYiv1WGG!vPKc@$7@e6qzbIvDi6O|?h?yutlq3{&eSoA} zyJbl*zax>Z8z?L38W3g=dii`*nJm1dl(@7WtlNPaBy@ln0(#(}X%HlO5w?;VAXs)S zW$C~)tqVbRQ6qEI6kI)^Q7eEuR2Ac-@`%#np1fXPu53TMeL^4}&EKv};P-E}l3l>{ z>9O&n{oh#*i%cYQ8o^cI<6G;^ERFh^XLe!DaRBV^6l$en1P>0EzEn-_Pm9*>K3lDq zO__inz^2S0OQH5-zsaz&+pVme|K0q- zn7>=YpV>ZDGAbeM2`SVJuTJyFBW9mIo#y7XjYh3Xfldwokb5*9tx|@3xqJN0?)z8Z zZ2DKejH7xs+qo9&%)Ot)J1&6deR`%edjr)2|_P5I$(9Hbsq~U=$ zYy3z!eiyEAz3I$jK-X?i9S%Vgpr|CB7I=Zw13!Qjsadu64)QnnNxcOwxxKSmR=x3t z>%hxfA6nGrRcDz!8dcDzAdZ)g22}7tcZ1?I6?~KAjd!uC1ev_LSY3 zHbm{oANKvW>e+kgy}7&dXfGZIadq{1TkyC?gjBQ)@pQ{vcEdbcKvt^0+a51#)zI#+ z^)9v36Q@DT)2Wmjypy2Yw~Hs-7}(2+R0pdhAOCQ`7vZYk;CJKuItyiC8CeBgyTQ9Vq}xSq%`SLJYxt2aOMmp>PAMQHL=kWe1{qH zg_$g(8%T(MC{jm(F3Z>fl+0ifW(7wck`mq2VB8c`STfQv$4WrB!-hm@3f9N#>(yhB~iZ~jXTMHU7D^>S)_q>ncwu=YM)5a z?2WR|-u&tWSdO^|y?PE$Y?j}`YU?45KJ!QbVY_%tLVk{zl!%|pfG9rRVq;GuSeOVc zkoqA-HtsVndTVFZpmvH>pi?mFIE@rf3*fVvH(=2%RxHWOD90T0?N=;Wd>Oo^D>w`q z!vm!@@{Xy?xJWWnD28Zd1&fC)ycj=IBcgQ0fqEPU5K|ro1+j)ej|ZEz)E_f6*9RM3 zc2Xy^;te+8%9F;0HGxfAdXUIt&n+s(wD~U|8dg3u8~#6@&LKJzKwH+aZQHhO+qP~0 zvCWQc+qToOZFlUv^X|Fp&i1%QwRY9|%3)5}I}iselZl!cLEB>&sZ3UrPi4xO06R_D zWwP}U8P)j98EP}F9=#s4Y@5}>jFS(xxnGCT%k0{c5stIXvSvOb{+T=9Lctp_l`~V! z8ZmlVF2N?{B)9OHXtfYlWXk8N%Jv(HVSoLKX@SQg+;6j0LyB)%onM20Q66m22{7zk z15>Vd&}bF!$+SOvEr&Nzz$}?UMkOzamdy}4mGj@3Py3m3X7Z6yoL3uidOF7Uk=aIe zkh~V)!00DE#?ef|dnWa6`$z!<-4aw9rOwYACUBFuQKnz-@%8|xve#K{zz(#&vmXSyH3r5B|m38T-eWEajP&iL|X z(v`r-6^PqA7LzsN+O8Er`SXK+^j4^;H-Doz$w+Go8BdkrxBZ1V4*d%8PiHA$i zg5Znk3M#a`23*nB(|Aah(X;Q?KmU_z5x{icl_u6wvDtLIt9{zFSfmtIb`E2>P=M;XMyWeh=< zF3app4U`+pX8h&l3BY#n3R^~nB%Bu)RO9q(I6vO6JW)P$SJ!5CF?a|3z1a$1OLQJd z=Ym#Cp4)i%2d#D#&JJJ;Pnf5|F&dH=QXE zI@;+F5gASkK07gU&0+>ht{R9q_#hA{NsH3=668o%nAI0nR;o)E$U3TQNI}kj_E* z1fOX-uNKv(eXp5K=H3J%xPxgPUeNKGUrLiI_~WHUsH3qgTXU%1nyY_d)Wu3Xg?Qj= za-8r_cA^bYwjthJsA{faS5mu$lSJ4nn{zrMX zzMMo5H0q9+c+5@7PdKK52bN_yqG{DLYon&HwiFRyMtLs&sBJ_M7&BS4lTb`xIwY+9 zMw{^%5-&XmVR{7hh)b)1{MHw=E6rPf3vlrDk^&D9z}RTB4u>u~id{2mQ2@82g-VjD z^zjbiTW=wsn-AqR*sdEMgIM~Ty^a{jbxK3=T6+e89;+!)O2(%LTsBlATeO|Yz58>c7uVb#)sUE=48+8QmkIyc z>R~$uAgeJ9hoeZ>02%rp_mv17uNI4RS-N*5EIgKTj0mRQacBL;5o6k@=$*^Xc;oFT zXkyc#ighu!Fk!8#7Y?Za0i-aPomiAdoYjMYw^6cQGQqF)?7qnaY)$9)l+Phg{$!&w zUp{?$hQmr6a8Em0v)xu-n=%oKH1~YHT}fj-z!QrU&;OrT5iTJV%+PZGqi4Nu!JJEW z?tm57J*tx(G^LmAnt4*i2rzdRUA9IdqG}H~kU6crWF6ah5}XY;H4l%J1*k!^o;w9A z*Tzzmo5ZN>aNk^qMQU~_`99n0tG$KO)F(GpTZVN=|+bAb$&ymw#qK{gJ=>^CEMjpi(`>bci_wBnD-( zP)w0>S~P5n>HAT54ncs@k9kIkE)-Y{@+UV1X1^dk1r~im3;dX@3Mf%j2dPwSDr>xW zdf1AL4ow`Y_FTl2pFt1-xK1GONr;dH@Hb+CM^TdyXySv382=e~4Xkabcfh_-C#KRjYm&hgCx3o4bD==#+=ft_t$aH!L2vALPJ~c!{(r|_I^hRz}@`A zESWa4$jKvhXhtBzm5d!Z{>Jr1ptEY4)zHR}GQbw%LTa$8Zkw=(4K}NMEyi0&o)KP5 z9gGTZiY?xK?Ll44QrauHa3+l`X{#~|)A&Tc)vT7mN>|=S=tm9BhUQzD)#yXh5`s?fbr`Lk48R+K=KwtX<8kgxR{VL!Gws*G3``6^V9Zh|BnlFk5J2zf> zHF8rxXe!5CeRXn|vdiL2Z8=EiJ;i6rB8(G>!xOXu?1dxT*Jz@WNQ&rAUw zLWYftq*+ooOr)B*Gone4JlL9aC7Nf5?|Q~hJz?@l6jcy8G^WPEUN+M@wv4EO@;NQt zBudx%$qs_iTbc9?0VZ+H$@4lVzV{f}g4y8VKIt2cz-WAPjV;Cj@4J^EhRgzUI}-r? zO!UA8(~EdhiF2t+uG#Pp&|NWUc%-8IK$;E=H(W3%6Dz1sP7aR)1|s9s6nctr)v}BM z-(kj>ewfh5l2L-ll|Cz$4*J-vEc)TIS5p-UO@tCh^T2grrgD~mE32LXBsMEZ=|^H<31BrStn-n_&+bk#m9QiV${_A6qjr zU}RY8ge|CW@WQvjqkwgyy=R72y|Yy4!;*Y1<;qQ1A7m>`?jdb$1d%{d$*~37Wl`In zPc64dEjN(IEA8n5m}lIm^&l}_ejC@E&Gg7*R&1Yl3E@Z6B zJ7w!YF%^@?f)G}6lwh@6}sHiY@VT7+}>QtQo95xRci^hl>7y8~I(u1sVak03C zqfs(m`70|U+M3=lgN$e za_mQdav#Yw%d8H5#n+!c8lKb8g>av^Nps%~!fU-mg&$lB$ii5P^NWuvogXjTg?Vdm zwQ*s*EXS`vThGtAm$bd?45^D}Lasd{n+Ksu$CS!ZF78l40G*Fo$wKT*DKxgN^6I!x zpv||V8hL;m6B6|baO9E2$nn)cb#2NTtP8bWW)$*@8jUyF-qPPcGvWbJ@c zeyuQPlhd*wPLp0}tu%=KoiS-8HB9Ux(NA{``b_Xst`-g76`94G4q##hbN#@U>a#*2 zpp>_Ww=jEcKDCFrBKI$qNEhBbk!o^gGs}7EMMnJCrxj%ki=@0O-aLUE4089 zU<4KY$970O|8%Vxs$tD01CU8JBO_$pHzZIZsAaY_C2;osU&+)={ z4oH~V0Cxq!>r!xc7pc)072W`xnC+!OfG|s;aHEI@gs*?djPwS95~eQKh6PGSkaE7# zIuQSHPeVFdZ>k@$5$j!F1qC!I6XT$txo+hU=RKJb7^%NHwH|7QlCOMetT(uGaN^(@ zTB_&RL%~oaOH#nblBy!&QeI$KzW#7)D}c)ovomwzF$Dg7$}Ej!#N7g*uxgt_vmP*- zmVt2uToEHE#5@zd(<<<0-T~2e`doR1YQU8{RhlmuaL~V5iY0Sxe$W6zqKMpQTAMVc zQ1yo5tGX}cfG|;^f!|KrGrn=nxv&V!7)S;(K?@{jwDhR0>Kg{47|rlNvTDylW1N#c zQary8f5Uo|yK^MOkc|N<&}7NQB#E8nk;&S0JuxNpw6{r%5#*7Bf-&+kYw7$eW<=W}r2$oi9{bH=Dzx4k9|Wo7Z^ z%`qOwroV$U6~MFc8DR-Shl;MetBU+6uY5TMC(|vkC2pLo8aM!G)k|H7ixtb%Gv3USi;J+9Sh1vJc2CkZ6;FDPdrkrD3EoS3>jIYn|A+u#B=?&KLBwPZM9|&YF{2h4Vfp;zT22j}?j10~R zxC*^86SoeQca6+0a=mG3ILu-yFY~GC=-4>Yy0Ovm*i)RtMnz=~SI`h{2G_wr1mh%$ zF`8HH=L6;rfX$;3p(q4$qV3x&We63W6;wV%weR)`%xR~h)y3PvL_15 z*{u7cb#~rvVAaS@NmWc!vooe1NEvM@43Z$b1N!lN(3gi~Xq`%VEONy%Fc5TjtoL{W zY5?hd_GYNX3IA!>$U=eqTR!c(c!UEq0sbqsnn3pZZl=iyl7ppr!28wr*$N4P(vFsQ zOje@Rg%(gixOIAcX4qu1csH13M;s1h1`ZuYp?Kcsa=sU%aeR|5s&1)v#dy<6zvltx zHL-#yKZY8WPYF2b2r6|%ci@KpuygxSDWD6P;8o3o1dIL02qwou>jgQ(esshb&V!2= zZN{OZK0y-#zu|Hkm9(2J%PPMrqXiN+VccLc_p04TX# zgK>;}XUK!By08?!{`^`{C^lXkP%vfHKtaotFMls?_X(Y1fiS~M7nFr#NO+OaHBSvz z?6^of1&~O7EwC#Zf^A5`pJV29>1CO;Qp*Gk#c5hH1>$2=JB~bqMLy zHY{6X9q?oL8(Mk@DZB&v#{xPTZbntoM~z1$lw=V{@|3;avUE$>t9zMZK%&;08 zYREkYzVz`H(6fN+Un>a+hqN&Uz1~oR99{o z@1=>X<^50=Zkzs-i~Xd~E=RvjBqOHymS@@uJ{v1>;M6#8Q&XhvY*%hw)8xfv$-7AS zVnLJ*_T{-3^Bbd?S+OaF=^QK(wd&ev_2UrLl*<0j}gG#z=w7nWD1qW z%*BRj+_1|pyL2JlqzSV@tCLDwswJQj` zA!PA%QK$hx{ps%}s`X?OPM?f+CVQIuc>hYttx>yo8lJ?x%-;#I?~OdhUQ|ze?X8W_i+|+2MYtl6p<`ZJ0_#%qQk={BT zGfQ5(&EjK+XJe#J5{A(w4_vkf4x6#SOv9tcy*OnvZoKeQR$Jb%`<>0elGDqs+<#^T%ffA;ZiS}!KQ_N%5j@05 z9eW)C#gg}I6~xKb6K_oVhP7XAf3W?JJPWq(3c^Cws7yJ z8^-~-{uh3^N*WfRfR%TaqXE*fpE(K{R0sgH%Ir(kt&M2p5`Jmir)g`dn#z!~ zlVzFSxgDIFmyCQuVE~S4o1>nt5gTz1sM^9oZ%=J2l*zrl9{dAYKi}~m8821|ZrXcU zv)*ZGfennTTeAUU*Se)+c31KgrN%?*bv?wQ2`M&~O>Xs@d7(!^0p(YTb2}TiV5rRs z%auDrh=Cle>qm5zbcr(b6n_v9e$GoxrihLLEWHYET!GJBYF|`bBdRvzMus}a$ z>H?M#@)cL!*$ap3!6GS{40ny%PX)t|)qz;%Dzw;iYH^1QVdSDIn+Y!vQIpSO zl&nyx^0cmZ6F~iw!zDv=KE%JD@Nv-3<-j^=&G-Zp`q0Y2MLNU5On5F4IuV->&H=5I6eXVz!=Lr(~{T|QM_oHOQ#O@VyLn;5e|5e!@(i2dyS7Y z2Fw`Vdbim)hQ)!+gaxrSoc|Oe8>S5;414sNdE(!a9mw$W*hMRG+55pa6<%4K|E*(&AI^Z&Hwh&fo!zF<@EM0KT|og_usbg^ zTRrnn={&G(1w`0xrpy4p5ToBH6Ers(W$g;PK#B5rtI+sFOOG7FePyS=QABVAeD{lO zEVySKPb?eG0Qg%e2Fd|yxwR{3k#r0p2}Vx$5nwVM3OGsW48VMjEFVs(qh>d9Pi z)b&uh>iJi_xvOFat^i2}sMPdhe-n@Erkjhyvgqj}66szc9GyIsE33jM!QecK%D(w5HXiK|yR=Tvt{aFq7un{a~7 z=>W#y7bq=Tr$=O-89xSt2?>G0xj%&*>0Bqt z*lqY3(-!G}L?rpx7NINs>5n2y2bk`hs7D=w?f_<*;hr?){Y6`plj+Sgfc*tTo8(j2 zbL#7D5UcJE!e7>_GyYw6uh`29rG2N7&;lbsnGjb)2$n(Mz#0%J#q&V*Tkx)^jWPW# zi*1pdWn)6JzE+REw79rq=FjV|k`};|a!{I5tLtoOZI9*c7H-p)vX1N;2Jq?ly7>A> zY-mU5g5C^bqj{UQ72kYNKF7A6LeZ^mW~-*5ugtQlxxp$KJGJ!?T-_2As3k!vPIN#c zaL{G%s|O)2XX(&?bGa`V$9%JeBSydRcGdI#+8-!YT{Rwy*d26kFvjcV(0&et}|2EYwf`=Oz-++%F0y6#e(2Vrn#2~^B`Ho1-UpxuB5H_|n33mJVy!dveKALvM z6UzB*4>qoWu1?>XS1?C?+eoG5G_ z=SIk5S(8q41pfj57E51Z)QfZU8=W3%s2$2RC*&_;ka975Z4>to0Tc@V=)SwFpZ}pG zI>?W>e&pw{@RL*Z#aU~^5Nm%)AoF!PQ9F|1vGU_c;9M$zqyIy!Shl{Un9F;&_i-m` zT~L!k&40vZbJ>x-!7f9w({CkuOquss+WF#CT& zDY@GJH~XATJz%yDS${3t6wWEtAPiEE5o6RVr8Ar^JmSUv_?fK57Tnif4ItTnc3KeY+s>1ne58*h8u_R(xt-P$o6*EuVV zPGzVEbiZ#^dvdaZX09?Gqge)ospncm^-alUQ<-LNRSIjUVY{z&#S$Q_bwxS^<&%&g ztD!%8@*O}evs{ih_U=q)=>xcKzn5QjCPF=q*sR*!2EBA-4Abd4J5RTeX$@cI@Ke# zpDiw@&ppClliH}=B@U-TC$PQB*1zjdh@V-MZa>JKlrKh54zB>-P~gCoz3$2rVS?-g zJoDRq?}R9@RQR2a(&jyFw3el82ruHJ7Ui3}?co3u*`4+XjVw5|hFU*+U775WOSqRZ ze)X)W8dO*{@gf;?3UXcC(JC6$+|zX_nB2!@{XPB<<7mVH7hPOS@#K7&XUzs(dv@S3 z953Iu@A=hA4RU}4dQfBEmYD%LM>e@1yw;l2MvU~~sUrO*Nn4<)8-+{A&@h5;9PT!P z5N9~KDk&aEQ;g#st{xtQ!3akSFhauPz=+HbHqIKfz??5fb22y`Y(jJW9kCN@B!fmNh=) zH<9KOdacRMDPuEd*8=Gh&W)qdBK>kl(UEghI;Ev*s3ZkPtjEo_h@bE+s|I&qn^!ltlL6fL1(;JnC5SR7itD! z^M$s;2uzk7lOO=Fw28rRrjr#}dupz;x1-qsZZ4n58s0`nlpeXC%RUOH6E zn+N3hW=41c)o!#kfI@*wisps*gqG*|;(-?sD}(DOcnoK!QqOPO==ItmN>|@?_&P}j z+4d%d4k+vHE|XdOD=XgH8=W~zuX4>*i_w(lx-#?)GkmUG&@#aRDAL)b0E zwDvhQIc7R|a|Ln8>${2=OmM-w7o{sN9f={S!Q1+bpTZ~F`9vt)0z27RAjG0l4Fn{G zs&VA*!aq~b&EQzROmnGnduf{YQ7ajM;2f8GJ43M5nH`B5er6P2S@0TIlV(y&508AV!zonF9#*XAFXy8ccGfhS#||jbWw}n)Ju_JR#e0y|eNS zkpctuJ2XVGKe&4e$jWro)QOQasIYFmz6r7HLI|9GEQzJ+2e*SogfEC9LDjQWm# zA+f2}6+lJtd|!*uM0W0IK(~<@1RDP1(CCQ^VhfLXkJ)Faat}C>=HH6)?*ouw)q9Kj zqy`RiaE2E#%v#QWuK(;w6f-H7UVGZJO;8#0jy(iD{$`xOmq}@2YqlB~Eski&Vu5-> zRQX3+IteL-Y~vrkTj;4$Q&G<{{6Wi+@q{(pBd(Q@)KU8i5Oqr;dxnzF4KqQ;@r}S56*u7*5?#`lXHhb1 zh2)$tAmMM#XPU4lT8xRyOtyzplDB~P)=pWcU!ORDO#;p*8z@*nOSNE(BdzAlFbBT= zyogMoO;lWyTW=p+SqPBRo1!V8&!haFIV-@e6#7N$8<}VX&MT?Lw*Yu77oP>Pn4<#+ z*>F3k@WjO_NeitGgm$jtuCW?t=t>6tJA!Iou)B2L?mWu*IPs~2le}$vaMueeD%$Mr z7UvZ8S*H2$PA#QV2_P1RKuk1~4gD;LRcCC_V-&PC@qGo-wx!w+V=_Sk+sY(-*R6R1V$jw= z0pr9{1qXxSB?RAnJ^~L<_iP{BQ#P04GnN^Xr+k~YPd>36ba0zqLZcwky4O6JVQcHO zK`P69BA#9R`w4gir~+Y214ji1Kd1}8f1Ci+hOWKX{f`XO9_6EM^1mDo%H-^dI^L_l zP}y8wA^m2cT)uKio=Jhe+c{C_iA^VE{Hv0RizDEjh>+yw$(P##Nig1;IVyqb4bz!s z;x(7re>i!zQhSZEsF@~aqzXjCDSoXF)49TvFc|l!4t9&Fan0wy)^gDMNs6<$}`Z4k+-tZ zYEql3G9+izJjPSTROdF~Z zw+%G|b^!l&A=Dy$npFd$GyjwxNL!BR-7%%LbNb3l zgm-Yqr(CVl%r^7PMTUM|@MvIZ>eXuzhvj|uu7@A3kht+kxK?RQb}Hx_(MP1_+%lZM zM}PY&3h0_;6-y;T(oQHZVUWqnT$pyBeVs6L?^PQtzQvxx@uz4Ojv7&jl-E_FX^q2i zWT8RiFtLwSM&AkZo)+!Wz&ew7AL`|K#=qBCgrY2eiEK|J^PGYQHyZT~(OyHstz#&J zw7<50fo7}VZ2mXgWzA?@fk4l2dI6^c$T}W#p!ChxpX)9Qm7q&27kM~BHwgy=0i%HW zu7gF^SagT|EheoTfBE`YmbIBAoo{J|CCsAfi&i)ES1(y%2p4RfKGL_4OQm$sF8qE!cM|UUy0g(6boMH!FC?9lUNoa>C zLV?D3Z z<4Gt#g2dy$^y9w#gTJMm5(I-J$BTMiRmU6ea5i#o_R0A2y=63?BCKT3x=~4Zqm}{z z%>{IqIHZK;XVVjHBk{^4VVljA)|bc7;c|V!at_5aGaVvSNBfxoJ}-V}T87m`QDO{E zV5p}wT-Mqb#uAMX50aigTH@9=Yk?Qvkee~?Vp2nQAWb;6kd&gJhY^5>lQ6}&d`*HS zSUY3I$xs2OjP-YsP&VD8(#}!p33BL>lYGp*bc2dguKbN&a8YD)_33^*5vB+@a%nJb zHW65&80lXzW4=#-YY8}1f=RIh)Y~!ajCoC*NxQuM-S=Z=@rlOR;>Z#yCskLie^{ei zsztNQ4n5=m(cJRTcgLiu`dSk{1XM;QvP{#2xdp0p93gDzl5RsP z)}V?B3kxbtTjMdw)iu19j%B|ZV?$^RYq}Nh2ugIBKQ-xqHV{MW88d6Aksv|hC@Q$d zA1PvPq*Ofs-smK)U9uMO&j`rlf`pW{8Z&Sh5R46h+NyY%QV}$M0wIG4AHIe0wQ;10 zA$hXQ=?s!PkHl1gFgyV%Y#wKH2eqQnOHVq80}owWUFta(G`3~Pv=G_Zy3ZT$n+92* z4;OMq#A`*~JDF;Tk97_7BredN(S#W;Do40oa&HvC&>*OFs#vZXvmt;-^aX0XN?=>- z?>CTnP*mKqD>I}33`eV?9N6=e?#ADdeKM6O4rlh3j}<; z4w+^mCMjqWx99^o*%sN94I)%8nq3eZ}*VzP@Ht6l$skseA=rVx|*Oek1@q=_rU z4sVqv_o^tT!dyoYN)$#g{TpM;EAW3FN_tx*d{FO{DsN>jiN<~i)R=>WHZvAd=&M&0}!IL!=TQ~MjXZL3k7lQ zJjJrHkETloQLdY&13aoASI+tKj~iaHWhGVwU8);_c9N26x%t7k&*E zc)Prx+NithS9 zm2CL1wXV`wVNi6^D~RAOo2sN4+txpv;(L>f$q(LobE6q-GP9LJFaePB6T2M%Ut1|W zZ63)-%wojF*i35~hK9sp;!V?L5F{SH)~9od-A8_d2)Qf+<-oR?vT9nl8jy@K#rU%= z*Rip%B(rU|i_53dYE|l1&TEEvlVH=D;Nb~9q6X)lS{5?Of4)f*CWlWZ%~v&Qd|G*N z*03_$4JA`6Li=HEZMP!ZPjU{`J zFiLegFYh^$tJ5PqeR&!B;^Qm0=&H`2$Pa1wHjE3!(|mROk}0o4nt1fe&U$Q1_1p1` za!%=t4;euC2@*5R+HYYp{`}5fPI`c7j$tQvHpr0|VZh!J3J#M=QPv2Kq~kZbXoniXcj3l}w(K8{NyL$Zcw*1`q3L)eUaBEtsmiqfFu*wrdu(>mL zLre0bbjSa^tNE;Smw$J}#@-oQB6ADy{`#5y9G4EHlXpx-(+r@l%8a3DML(T8){!ce z-t+-*A^e*|MDP??qaS{5R1>ji`O3#d(koZKgS>>JZ|(ng7W3VLp`91vb+F~p-xiiC z0vfi~;~#MiaC<8DR2Llwn-N@-7v=BwRD@Uc|L*Bke6)(pw@Ih465Yv9p~Idmzk8)m znHuXxI0*`2CHWh@l1et-5GLO;rI2lBjn_7$&|B`IqkY&^d!+~6zV}FCupPw1FGVKI zZ;yf{*j;DiH-EJW-yB+cOx?v;v;0#b?)Y=apn>&zdAq3BxSJ+djz#&;6GX^TirY-U@O3+#$WnMS zt^RN*0Hvc4zr$w_^q#x?tcI9dxBXYb7i0ApbzrPwj>i>NXP~Q+EQ;DO+Tnqh@ z<$OD9^X-h_N0yD|BiRo7H&-ac$hKd-Dfk%i9NxM_B-6+=XM_f|HocP?f9cDle3|#A zZX!SYr*S!2&ip777$R-!Pp*#@Foy&1fe~+Jqq3kIv5yfUG1wN0d(I%zVmJ`(L5#gG zz>cQup=}1v8Fb6X&?De%V>6o_4aNo1|6d)lA>=;qLV=*b^Uo_OtCd0IJayos8*m1-8TP>J-(vxH5n!~im}sUrn~_7{JlVjH!}ZPzS5`jc?Iz)lJ&h1%4j?| zs%4`q{H8oG5$6fYogiOLrwq(`p29&??P>NM5g8rkNfQ<(|Hz)<*$6b46pw2bpkO`E z6z5o9V}n(W@3ABhm2$5W1~sS1|A~>;vm+92(kdEsJ0%Pj*YskG2_mAdrx<$#swC7^ zQpEe3Cq2PJAY8XQ!5r-ct_6wN3nlP73_|g_PsG!}S@uOM642Pn@$sU?DXMq3M%o4< zUT)i4Q$-_|C6^H{j9QDrBED7&h)|?YcH_b8cRitLE9+#k(Rp!*Q$?7Z30B-jEWkf@ zw1s;#%loWhiABdt=Wj+o{E{I+PqZcFOsy9b)mXTv7`o0N9wXLk@X%uPO5P_>4<_>U<6fzVPgJq9u1gy?8=bUnU zd>$+;CkBbgEHqzkLQw?((yL4fvLg7D8=S#+&8Qk3YuixkxlXq}j`!=pPQffoS_5J^eVc491Pv=?^7rX2bR7?nGR z$JL|s@-Yc^6lF!MW-8I#Y;eF80`~znF95ehWMVOWFx+d66jxEGo_iDBMTNBGz4g<~ zkZO5cd|P2vyLjWn@maz?JeT6odn^H!gq{lt!LDMx7V3ihTNi*~bl-E<78C|Lz zYtUa^=Uxensl#jWwdmi}_l{0336khwn8~jT_crSPN`i&*lAE^wkQNblhnS9p2om*0 z&|+B_#C--GlY*mr5npOii+WCbNqI)1jTdnO>h@T|epv_3wxWfpro}CuG8hvrFVZZw z)vvO2+55Y*+4>VpF4Uy_Us7>y5t=4^R6l7XG&`TE*`f5QUVK2}Jf9xKq0tpk)X=hG zyE+Pr)O3XC-m3Zuy{Z?518=PpGMh1NHXExxMOpccFr!tt>^{BxI_HRR=lkD=D{ch= zCJw2gZ>=;PO-f&K438NrDX1K|Q^oCAMUj>hz=il@G{7H9obGZ6D?lwyGiE7VKqnHi z@b8L)T&AFNSWRlY+B5+VV#M^@kZ_()NQTM*{5Vw_B8rNyF3y8C-h*P^I|i^xSBFSIC_!*2sZofUx=ZCJr3N!0j|GYh2AOd8PA(17;^&%t6k9?}i9}XM`Gp2GRwgkfg zGL=NXN2V3-D1H}NV=d&c0O#71RmDK;8~M)8M@@5pj}(`8*oVfx0C=FMqkk zfu}jXwHMaNeJsZ`duJwCAxSWg-w?721`j3*>*X_7;brF&?#dNAaHNluR@*!0` zYlEx|*z1^UCW6qr+gkr35AwfmQe%(HyRR*ALMGG=S*h z=u+-#A&yx=DSz=_9=&{DgvK7y?d07qu$OPf*V&Se*x-HnfjLFS09b)i^3hW5=eQl$HhIL9ANcCzlP@UvG-?r>#1guGSqSU&O9)rd>dN z9}t8*`q)vS$4HI2fO;Dc5GVLKI*w{>rX!&P@gXEv5r$D`NV_G0Eh0;l zJh{hu2-oL$8I?DSGcTDpb%|5OQGy5utRJc7N+}_>6b}5N8{CE~IqnWB+a+J00ZO5e z7zb3j&d2`BLH##*s+36@uU-99D%`31`9K`4`Y)kA$#CEq-;WfR^wK>K-YuT zfRm)#jtUflWVR{SUVeicq*5Izm2tzDK?f{6efsG18#p?ljDYHG;C8*n3g(}p23H7V z4?9;J>lxoK76b=@`ul*2zt~Rs|GZfR zkEe4A&IM@Jb!>aZwr$&XvSQo*V%xTDCo8sX+cwU>arWI*_0@Du)%*1HJ3UV0*iPK3 z{1b{uVdJ~HdXG*t_4i0&xQkh!CSZfru|z>`5}{$Ct`2fQ;huZzG5GFU$;FuS;agIp zOw}u!gPMoRV#rSrrI(&2)v}YyEcHVUm{hRzJN^WN&&mKuL&WR4B`U3H1W0FYP-K3B ztA7-m__T!N%aKS;BU!uae*~~ns093XeHSqWXD=|W#^jnAMDKXt!Bb`OvxDe?bxa60 z0)9)-_BP~$133v7x)k@y1U}Ab{)J$#0z)vjVB&HcmCh>)GvB3vq)B+T4%6=n01*#m zK}JQv9>oK;oe4x8Ja9x6nd6dIc6FmHLFFf$Ot`%y&3bK=F$NWtm zshS}zNuCY+nJM;&rWsEKw8pXpd)kyTiCrpME&Tvic?7NbJ~}6J%@wA6o88P0>`YYG zlTC=Cp_v0^Bj*(u>(@GoypBF?i-O!NAL)jDHbkTFm2q$;qES*QMqDrJ%|lh^G$Shi zXVDo)gjmWAFo`9$qTl1ZdA2dmi15=VX#P&gJi+PrI`>=QVU&x=qu!?oXF*P#R16%6 z?P7o`OAvm6BVUKM(40i8%I$_@On?1_*K1xao}AvlUEC{^O5W9yg)}Y=Wl6d|y~i$@ zDq0<9TG|6HjMQ~7Zd~qsqC3$hB}&jDIFM(q6T?g0Ff9RA7e145{;dkhOIZE;Rw8ne z&tPnJ@n_7h%n#KJ^FWL>6s*8uy}uhjEW!W@x&Wq0AA=$F_5Eo3YudIggFA8W`D^LS zriEx#E{#a#S~0PqNiT?#RO@ zJK?1B%sB(6JSrh;tI1eQ_9hFW#{lrh)V^nlXp-XCr1yJQ>ZvxOOau^%jT)FhZ&RYgj5)n= znsYx=UR0F}T|fNL%RnkI5tX_ahzoXXY{{T30&hexnq>np2ICPev|8KPab0cpn3CYo zt3MsBImGXM0c7q8d%Nm&mIDD#YZu@yapy1R3YTij)u57D)q#&*$XSbbg?*O>!t|B5 z2j+=M!;;P|cJ(=;+L^vKkfsM?P)`rScp{hDU2Y1QhDr!)&%dkbB)Q6Xn_K_{Mh8ZF zbpwlYV>}C^MYA3b3O-cJsg*&A04AZZ31&3!p*luHU7%?~V-JQEB=iA-D;&UmKDhqG zV6#8wX1NTv+<{f(csDQEgme#*fS5Ll3$(m!8~Z5BANj*OpKP`$x^b6Hv+^b;d<{=z zk+&Lu>HGP#S=JO{N-LKZZRn@nc`pBMnr~m{A*Xp!aZ)R;uEQG~M4> zW%NTaOnW-Y4P5L`v&=kKQ;39pkP+NR!wxy=KoDMmA9_|;JTUGCnr6MlwFMzxk#i^* zZ7f#5~9t+FMCxj3N7pJeu1EkTo^mv|`XhVjqAz`nk%cO9>D6 z%&uKXXXqNA2;SxnE6vHOjLU01VR=z{OxK5n@8z0+NKO~pCuwpn59e!h5I=bB9=1jn zzD7)%qK3^uOl)IFct29IFuh&ewtaiAzcT6SJNJ!H=o1Sn?rlIGy^;KB6V0u<6s}ap zR?ZCO{RXIG$}s4q{?!LJ-CLHLO_qnuiCc1>} z0-#iY>p$yuNA35%y@k8t5aN-P%8-xkQ8@nz_to~Y6BP7U*F9H40QaKe z=EnYjmWCRgDrfua`z7wyuRZ6_SkqNZHt~s!dK6jJM6y%^4RsQwZTjZ@lEAPn;LdS- z__V-&7PZmAcN~{vM4E#7)K>sM;Jh$gT;Sf|;{6kGy_eXgQM3f&t+>axO-#6A2uKv* zumkWvtYmcx!$HTpJ7abdcEZ*)gRNW~f80Z86Z`4C>HJe6pieZ;XQ}HR=5;Fx+lLme zMB!<7TpO8D5Yx$+fcP;W71ca>wkI^|sV&;;`iZ=@Vv51H5?)lqclJ%Lo^W}G-MEJ6 z14Q!2!0>5M^))=HPpdQ9PJ!_SmKz-~M+C9RW=$K7Ts@_pfa8G~ORzVE)y&e-B`%n^ z!23Mz`ye!AuW>LdB%$`_NFgo4e4zo#SHwO=uF`3RZcfnwQpTOIld_=5+k!mR9-=iK z!^%`Pj>8kV<0POPTEAK*Li!uzxnvpxH>3x3<(YE^-dP>J` zrEP}IN%-#xFw(|{gM~?S1286@LSDR^0PY<8Vs;8lRj&vG@$a^V&LN?Ias3)8ebx{(|USqLfFdh-@d7qyD${lMo1;XnA)XmO<>VGJi+DiK=fj~RBFHpnsLdX-f= z`b@D>S|Ms(8vTMeD2V}U%;BL=_D+0s=U~Se>#dqoF>!V%S5oAUxR9sY_F626zAOO| z#n8|71^#)#ZcAgaEBFL(TRbB2uIG&IP)HNdU3@gP` zb8^@HCpnQh3-ryqU|DLd1*z1vmpMvKm|Lm^ChTk2_hqzmy%>V1TA9X)8nlNEK30|W zE#Ux3c)V|~ORAnWapH_arMi|90fE-UAajrCZ%H!wdkGA5vVIXjU6pXg2-#067MoGp zSB;?E(Z^!lh^CoZ;Y17FMjc&^{w-sWESf9#`A~Bgd~P_gFBH}ReInmuhO82FgG|Rx ztiSG9-t-60vk9ahXo1?6f91ZH&w=ROtD;^@>>_b-Ra~xcacC{WoKlU7m9{dmZl!vU z9$J#g#=HTZZB+yynPLLIE9Syr3k3s&7*a}q742OvA(bG#N!p^3>R?CN#;*c1*ogk9 zuqnI^RREo&n`%y!FHHUjw>N+W5radqGxQE_sM@0+&#GGIdI`a0O>b%_n_xajUOqEK z%dSz!*rA$|O)4SpUj-KJnSf8{j8WpSI@9-#G?69_hk*eQT;tj(S8eD(a~&H>^B@t) z*_TXAo8G_33jxmN`e8iFpm1kPS#-c$(yF8a-v^n5g21}DKi-4jO5UYnBy=2Tdrpc9 z5v7p)%w0T~Q zX}pAnplrm3dN@^{cB1RkdCL+(Vb)@O_+R9QQO*F$D?{q+9gEtVs=0*j|5F;QjupTT z5(~B?C1qM4!xtHUU$zVmxQP0Z)3)v%Kx-hh0ly|PG`F|<4f~_1esoY{%(kI{aP=Ov zqGbt*E)O#tLHg{cyibAwi>+~xLOttDBK=-M7izb1RQj}XK<@)ph-@9=DuvFGJH`{B z1aks7SfRQnP+H+k<$Aqd8D{>;BVVk>ll{|7e_J^X0cgbhgMKNL!Foan`PwbN zLa*Y(N_FVvIE?>VcK-3OthBf5G*p`^tHY*)<9@5nvqEB8UA7b)rkwMzav;({dt{ig zBh@4P(dxt9N==K;me_8es{JeP<9Dj9RK^OJ5Db&!lSYE9e=<4IC|!xtIN{t39`ac0 zF~q3j@&f0cs%-0~T;9NSyAz#7P1$Jq`3)|>8TSq2^R%%dxsfSx{@bBA|2DH;Du3w}i{rB$zRnZc;?x_=_3bOUu1Z2^lfkz3MpF6e3_rPPxk zbyNs|X{j5`f=61JZc8&Xd-6WNw6r$+!z2BHab{qZC}y+`v2y*e45iqtZBtrOz+jWM z4^=OwR!Ayb({5=VqkHpb)0=?Z+jSpc&pwI)FSgGZlFo4x_CcExaYEa_BQmgbf+F)e z3Aj4Jw`W$FO4>4!y|2S94rq&_zQe$iNiuJu95OGN(v*Q-9&i!kH?f-ShAA=57x~hO zm06Lb3oq*IDilxsQcmlyZg5EXMX=d}v(h}U>0sqStkt)Jrcq#9W(nVV#9Y>D-O?|G zHAKN*o=0~?eDvLY(gQ+9S^mULBCPNIp`LKva!o?L*(!B5WI z1jey}=&2KT73Ig}t19;vEUWS|;#E>u#bN{7MXI}Hkzbl*?|^Hkk66*0#QK;F%6Dx{ zxvrTE*zhj$yaI0y@~|LY4)CIb6$Ww(_BvB~BR9wyE(KCeiQj6Z1<-()g#pb3mr8uL z5RA20{!AVQmNMQ1aW+sym7*m^vOp3I9V5OC+T87^jTU5^?^|!2g+MOb3!AQGq%R{X z+9#Ip?yA+bnmpt%HRxeQ3-84BS@3rbqH30fMjTjr;c{rNVOGF;4TV8P&ZW5;P2Tr8o)niz#6#;?Ew?!ZQ02 zk3Nt6gkMWKdy}S2wK;J;pnef zDvBq^9I`?yC+5T#kG@cxAt=2>P}hQ_J$_Qb8j(sa5E6$10H`X|8J*pU5Wxug?=xbl zkW>W1CGKLsSVHna;m>Po*Thg4rqDd$N|bt*f{jZP#ARz?4hjpo$_4N`ncZ zXpn@1cVaUj45sC~yp_to0@v_JbJXk98i1-Vo%D{T#XB5Ndj3h0peYoLNi=MuKjhFz zy^%tDByK<-11hOEJE^}Ayn@n4^fgWZ6P?H*3>U6#DJ4ycKFKwA_MKwOEhk&Tw6_GJ zJrB19yq}0_Jx-(tKaCT(+@DInAb+5)S<?Q%dKCJlyx)=t* zU_=BDn{k=H_*NNWVfix7w1K!>PZ+1AWY{wFO9YGTOo%ukQn1Fc+Vh`_;4Z*(I0x@` zQNJ8yy(cFgP%=%0mIdVEB)1?0l!o(5puW4cp^_nj*(gZudKBDy8A2~^I?L@GgZG~rx&-Mg!krT~*E0 zfC3bqJNCK~HabQ`z9@q*97t+=(DKWAx;ejz_`2Qy0q_>4p@D}T3FnprXm-~}}2 zkfT4K+l95gs#3=QXM*yv*IkVU$7VqYu}!T`&O*4FACkInFX6J0C$YKF;Y_c#UkKY* zY>^uJ14qKnkR+>w(Fn(;21hfxGeB9~#dp3?`d#|o*ZychqamO`_}NYn7s*Na3;kXu;P&E&Rl4`0(Tqz!W{oe* zJ0+V018b;HMvlEahrA!8q&o}7>Xw@81umpdl(5Wy=xd#TgI{_}G^}C@xOclK0irV& zEk~DO@P#S?E=s!BdfTn-*J5xBS{n+$JTd$A_xj^s0&yY42*k*?^sQ9HbYV%CeY%)H(zH|wk(|O-UOZcgE{9Vpf_UMw7$iXG zP%gHlbhkY4JpmQOI$25ws2upN+=URm4OfCoeonukI>}24dE3Gt+R%=GsClv{wN9?u zm6Yfh)kcj|@n<5xAFA^L!?k=twDQI^DcU>z-omJKo2c0Cm_p}>Hy%x1r|5IKriO!V ze?D8CMT1DiMGGCGhZ}FkNWU#jrgE`sq)`XT;W}7D^(4ah_GBRhj0TC2^>|OPow5i7 z*$FrzOg2A+Ztip#Q8u%cI9Dx_+}(-|&T0Say{Jr|IbjMV&`W!}xa$`qP|$BqsbM@^ zSxrhSD~CNaZw(N{?ZWQ;6900)SO`&Ey3HDx%K9t0iO#2{Gdsa z33qUg@+m6HkkuqO@A3mgT5xYfPRNv#h61JQV|^kIp-6 zrC8yYjCQ6NysN35Zj@61Xw`UdS*)wmCR+Oyr89)5?JSTCKWr-& zT&47Bc_?HU_`m3p>A{*dY;*9cH&up+gnsKIQU;Y9SJs~_d6ZhYP|-q11rHOSKvt~Q z6md$kJ`O6Ie#O)LqK?gF*O%DbMz(P|I$z8DpE{qi*qj*yJ4V$2vyo%Ek&>Egi+>_Z zgLJWBwf2%Ekk*s8ds{mPTN|U;J(th4pE|U#i?1o3265Nd9ygn}inkt7zYUjFzX6B+ z+cBl3dg4vLu_QhnEyI{52X%>h3%@SH$nus?>>i&EFuAJgHCGAVhi_)1|^lFEFz zZOrf^+r8KkN3yQ~3ojMLGug+z`!)D(|F1@V9c)K_SQE2!NTeEnJ)w)BAKtv+35G&t zln~_jUb@cY0u(=l58Ks7MkE|PkAy$6Qckf919=T?HdLn1iZO%M-9CnN3f7gOoTbLs zA@A31Y@V(l4fGv~Evd*=+>ezj#1d*{s0@d%g_{ zm5o9x#bZto*n>2++|zn@}$Zwvp6}kHv{{CU$hrB+k!-&>d{;ceNgC)6XjVn9u^-w zvnqg+q0;yidS&-wT{3DCltC)$G=~x`%x>G=lKTn(!*Fu5@SiTiXJih7U~2~FfNvNU z-Se-8%K2_J@w9L`L6RAp+=!ikFTVLYVXVZ;RI>yH~XT+-OOwKJ+_?W!#7y-mtWUlQF;TI!3^cBOB|9R{C+0jlH`< zRbqR z1h@(n8eLWf9fWKh%O@|91B2t5@#WMAcLgDmA6#i|bXTC73Qu&?(*GJ=TXHbLgD|sT zwjWJRFQ6^idrnV&oYCmmlHZ!_5jU|%j_+>-f9vH8WW>Btp~}?dE0S9JglagZgS0tfJN1U za6>fVh`_!yw>N4|@1#&l;M1?8-V*}Q6$(hVrj@nbpFB=hx3L9O*r_ADj;h%pTF|K{ z-S+lD77FqYcMNP^VHmF-9}5EFO4;KB0^j2a!!bu8!pPSV8kn)xQg z6~V7dMHnibzY7!ciwNcD7f5Y#pmXWwzRQrSd!8&su8UZJh<8W~%`uj##5e!~sJ%Em zwNLqwZrB5g9d1{V1p8810?2rpL%P@onIH!)m1jMbq#S5m6ddRvS!hmMr3(Qv60vvvRhvc@W2R;eKnvyA7x4 z3`w|~l-f#!`X-Ep(Nx{?#l8XHVpy=e$9ERqUxRDiD5qUV?$GO?|d$lzDZ4< zCb22Vhe0=*Vw`w!N4wT3Syw6pp_c*1Ya|`MheD;z?+lP`S0~m2a(XCAvJy}A+y96F;dUz z;X&8015u{WW6d5tiO~Tk9Y55owR*r?C)I!5vv{@|S-&s5)giKzEcs7X+3Zmi=b~gv zhcyLim}EtVUlNX(i1#aul@9O83XAWjY+C5gy=4S3`*MJRMMk=e9|Mydx-O%Dail>HhyUZlw^-<@8O{S zYZ;S^Tc1#^xMnk`^hF+PWwYCTRAuG$;`A0zNkNpkbXcSk8Cb-9Pt}Lkw_*FSR^oZx zu`bJ8e>nUSz*Q)1>524nr|LFXAy&PdIHF{HPju;D7JfOa$#%q~5caY;oE+p}q|YVG zI1+n{bMyE<_ICjP5R}}@rSbcQ9GIMY@KZdo%#*IaA1VuB(mP%uj}QWO8*NVd4d(XB z*ueFHC;o9V2@n~$s4%~32|&sj^n}y-q~~J@1q~O2Cnj>znT$nKgn1QJ^u znhaQALFr+OU_1IlVE?^!(t8jNVIX!WwQ*Y9u8O?ZG|yI5QcYw|ltUh`6^o+G4jOjQ z2YjFvqz5#z*vGdqkpLIH=T~&awCLqqEuCAp&T|Me^TAA1NeJz=(_}6S){&H3@Tow! zLH^pEEh?Y=PQCy@su2(Wr!z-S1c3?6nzj!GN(E@q+K$_7M+VIP-7f`}hggYzBT|xP z@Rf|`(Vb7jf2pBTtQDJk>;o<$h-@y@mcnr3tId`{vJ-$^EZ9JwPI8U=Szjc>vJKo)&ehg-E zYyoXNRHn&2>o>{Lg|E}+CKrj}ztvVUMTn-$YR}(p6r!2;;gcqxd7FUlHwPZ-c&K|> zxr9e+wZ)D~UCUIv1z9F~bjwcz9St@%J8#c=unc3PF21$CMkGqbg|R1iEowvQ6HsGw zJxI6l!!wgsVTr#MPLOV6#4<@c>xtreB7j*Iy0*_!KI9S$dGkf}+6p`r50e|YmSZLO z1EGj%`f07gr0H0h5!8)Ma3-;5rjttlR}{Q&D>=`nw!o&anqA1*gEhCb`=^a}&%`Fq z>0EPv&C7s!KmH&N&W)Ko#JsS2z8AZBn*P(#|V|p8YqUln;DJv9{-XgbA&Bei5+6wY0K*N_XNw##{p}DQ9cBmN( z@fS4W2aAF!6fB1kROH0Sb71+JG>VLXLuWh2xfF%X4ie`cC%lbRD{YJo^}hV~Z!XD0 z)&bb03RC@$ho0^O&(QaG9Qy0wA|MStSm{CffF`Z551gE=P6`k781iX8djO{Rq2qIb zo$Vy#C-^8HLtES7``xG7M(S3nK46oSX)!`yv@?#P!gNXf6*7`My>d*=RI|^&&wNkS z7|Ot-84Di?x>;F}zFhY-l>u8jn6?!Z=iA;uKNsT7hw;#|SpXhlJw}69AK=wpF;CBR zHoxDM-kmFtLAUcxj6U2NgUqpTvxL@>cuUraFM6mprPpJngAw zl6|SLqvRhhg^_0*BNY4W14wluZ^l)P%|l3V$X6s`%n%aaH`+ynwUe0h`uVPwl0_GfDkCF3}l0(NoZ;GOur%7aNi z*Ry9Nx=tz-uW#Ot$Xwpc@!rVGS-PwB z@C>5o4hoOOW8U^O0$ia#-#4d~OZQ^?aa^!{fK_b%vq|8=kalSN<0uhfy@RAMJ|Z?l z=0Af7kG88X;KG>0Jt_B6ZkUmZ1%HWxg_G7Xcrcybp`PM_uUd*!E|bq$bui%C^-t%M zBKgxn^lto_fv63cEN*n13q5b4S_bF5kr2#0;LJuZ5cDnO0G}ZzN2!Cb)~(X_AV=uN z{oldQA=}o@jn=Jb0kRVbVlZfZ$|A;h%PcCmZO`g>b#%_c zfa`_{fAlWUt*Y692WA$jft7;!pa?1%iR@6QCTC#!(JibQ@#Gr=ZfxHRoc6euF+7%) zIWmhlYqN;ct&OnCa}kWE|8RMj4f?}6&mn@sF_~)uAnh&({qrkD{Wk=Aajq&HRM}Bd zl#Y+$+2JL;vIh6@Si(YS_m&^v^&X1F*T1t5z`psuJAO593oF3l?K;(is5H=y83rin ztwhqAXQEy9 zP#Ny^YKEmd-n9CMw(HN zDsN_hR0cMyIE$QHl4#1TqyO<$8Qg1e6TzAfV8B&4yR;V^J62p7B6AQ+9NjbX(V24M z3(tJgi37fVGKN} z`=oECKiwyV{}#~Rm2||X-oX-<#GdauU;*8O5wD;#d{sTI|8zEyYZE|yajhg9KZ1M% zR8*0NK{L8NFh!rXEDaNNIWrvuy5f$g^nE0 z-mcPMdU?a+#VAhV1RZIH4AMvDOF$~mD6SAkvwZP#QwBS{*YITw)KKLeFzWaZ^DEO5z6ar%{h>|AW7JztQaeRZ-krbbejZ z%8;zWd0BJ5;FV3SxyErsjfVAL)cZH~AgJoO8!qhOOwV3iO0*H9P7hXkddN+*D=P3W zR*lP92^oD-jKTPDjxGv?A$K9W)3cEQTHq6Uu!PLbX!teL+;htelYfGa&9iL)F!haA zbb>}!Q$Z4~z%|lv^g2)5Yi+Tg3b;v0w{os7m*glY+-0J=ZxeH&e3LrKD`^wd@PBrY z_z`eJ%h#;llYvNsZ;@_Q*%OA5<7R6(|N0rt0iW+F!*WtV(T7%bYD4D(KTSimroF~O z72Ls~8*s;V^P337zRNl9N+Dq=Y6vd`x?crcLI9AYMMlIM;OPyCmkuEjxSA05fe7It zu~fA>vP@e%Y`YFz)$%@T>C{nm*&($rGo(*wF+UoKu(a)DY16v);xzsNi{d;n{_kB9 z`+twi2VrGS>NlYVB*@tZF~Wu3ensL2u{Ne75%Sbpy%yxK+ifFQN^M#oQRl0C-kM{V zSK5X}h!{P7Jfq@3jUt90kfH`wkWyT7@15Fok^MY;AoZ0;DPrkS-A3)X5s?AUplJw3 zPPeEjC6eV_KlO6hVnGvG_+g4m5uaCASYJ!$`83SDZFV;UdR#XdBM(_2VTj=cB2NwU zb%9K9f0JAke}t!%K>{63@RSyL4GB@=GFkdXvBp_T?K^igK-I|4lbU+|(b1m7pPgno zQpPu^Lft-EXw$}^m$g2Yx&5$?&bvcpP9K-Os;=e&MH(tR@q25x2|QhY)ZGx9kCS?z z#;b;AC(F;<%62MU6e1^$1TCYt&WQz{2Q z&;#b}HW<--PiYF>l!Yo6(~+Q3UVtolT(!F@rt!&JA(OC-*cuXSrQbiv8c-#%E#``$ zp%G4Uy=VD)IY6-0KLSVAn8jOdVNGS4S5rYF!5Q^)i>8T$e!1&WYF*juH{MF?*jDbnZ(GJ>3J30T& z<=j8aB!Q_=$=lw>IuJ47M2osq`2*HqB2epzh8diN2UU~GJwGEkg&v!42Z!U4Or)H1 zHYjFLLTc;bYHwP?Zgt*N=U33S2r^rj?XB90_y0`h=(b|W(V0Hhwh{^j@XKh1PnT+g zXlOu~Bz!*kBG7hfT{Zgo5tOP37)1D&rT!6J^%6Lt^jIgv55z$;84x8QLST|v@uP0qIV!4A}jj{55c-AqjKZ#KUr88ypa&sQh97b{~qF^mr zN9t!{8^cKzQ6^hPt|0U9%lxsFVVlTjeduI7*fhv){yY5x;Ge zda!;6LQhBMmlJ9!GhQRlwyU3jRYu@NXPDT6Ef@CR&b(=P^p5ozu zfJyDev+YJ!)1KTg;o?Y0-kH6sD04cR;cR*{N&MCk|iNnn3l9H71@rp;Z(zryC zQi@rTdxh0$!?q!*6N!64^r`6UbeGfX2{R1>d&gXd1093YrB{23iQqZ<>5UbRi4Zc| zbQ=#Cv~?iYU=Z$oHv6~r4`wP@+PfIeoR5;IW&S1>3s*IH{iPX?`33uUx$|-OfU(t{ zTFg%4JLO!k-He4(>LuZMvm$L{z}Jqn2&Y#nvn!JLM$G+D8gpC zXrB3N84(CKog1HPyXmmDP>|?Mz`e(nmMJ{KCVi>FNTjLKg`r<;d-c<0#c5RdxU6iq zA4koK40CW+&Cn3o5=HSGuZ%D6<70BJO0K*R|GAnV%Dat}2a zwqS!TDT##;PqL*a@`=f|Ua2YAd}9DHf2X;E}W`Xzn{R0u5cuM!*VNe~^PmFoOzPIvo~iXjYS zsIl0+0nd<{PLSm|HeNssaNAX*FI3J&3J>fUPFQ!fsm>$jS1_0^Le)(Pn^`Mru}3cG z=8usPm@ZQ)is-1*>^=(=#o`w{g{>@3Wn#|HPCAf6+%hhLTfd)35>P*{Y_4+GGwmy* zebJOdNF#gP!5TD>{K+%f|1C7N7G@*2spD@IDXVuKOir^)IH z_1tVCcjlCmSde)l3n;RPHGWw;BD~cGwyO+;RA`1GHirHIIJg)yPJP4JO;AX2lg8tv zH1RpKwzj$EzGB^m>Q4_u@o2R#a$htA`io?~=h}GvecIR1uH(m+p+)5%pwz{3IKg}9 zM=X5`?ZvVUYrrv$uPI^tn%N3-05@TvjRWIj+Ow&B6u8>gksD z$!e5(pJGt}-lx%eTZryfS?i7_(?DZ$Y9(+#4LM%csJK_17{Uf2cc#(=R5i^^t<;;K z^oIn)&yBiiCr4w~@Lsa(*9t1BCn8a$kz;{sgkjry+Iz9n@AVDV&%Wzd zJegWigeI{)&WWOu=2z#kDMhI0v1dNmHAA+%N9quO@6+!Ho6fs4_Rh+I)9yQPN8Dox zM_ev#lHd>j*Bw7jci(Zi-%&v%ehRim@)39-h9`$~`7?1_+V2YV(&&w9u_oKz>xHh!2u zPy#hTk%xjRzmwweAszxjd+wg|+p&KhG33Mbf=cJ|Z`o!M!hR4)=5!IWU*qJDSiZ9+3#{h&bPRj zV*;$lxCKO8rcT|Y@s>vP-~&e2hq5YC+|`)nY^oIN1FJS2o_9KCU!u>n0W{oy+kd~S>~DKO#ZrAs%gQ}3tvVcAnmr3$W@_Dh zG26BsEo$XBmebw}2y!p?(cO*J5tydEw;T(=sfK`a=rE0i8MN?JpMh zK^zZ*5n!|1t21kJvvKCD9V$vey&~OfD#NuOu4ZZ&%OpP+<<_y&oGbFYaoq}x%1xwj z_%krTNB2ycT+{;-8U(S6gsu5}0(^QKCqpo|cQhGDpbdwYyzC-@=@UhtECrN*<-&E2 z$@?0t>DV3jv=tgN0I!pe9e=>$Y)AhtZ|MO89p;U#)G4Ar?wA8rH*1S60iWyn z`uxh`+{QosVN`D8Twsst!+6YE$E0Gx&^zC)X}D(y0l z7+lJ{9oIm%EUyH$?s{Q$75dC)aI?Rr~=F$0YjCN2qH)RvDI8xbLJ*C7g{r$Ab|oXU-%`j*5f?YPd~BnROX$x znzmPUT?YGz`XVxcr|F2Dto)N)T+Ss z&>~>vj$4f~&{n0mHS+$Yq1I(yoWO17_(X9-DpXA1O+|7Wnnu;NQ0%Wufi+W{SO#k( zRQsXIGHi$9yQ9WjT^=F|biobT{bSsSY|m+K%sv{;x%>JSN=XsdW@(D3|2EIeAq-=@!n_lGX+0G-|fqOFk7<+X(?JUAVd?eRHtX2up*`7P9lo~YH^t4WI0{2C(+OW~P&Ubdd zcc1c~+Mq6EeGC;6L0Oslq6b4XD$Tq)e4yghrp&XfGfNBp=5OA{H3C{kD80@Vws|JZc`OihHCiu(1QTBWfWKN23!X`3kDlg zmo|P_HH-)ZWSpo5M)$$yufFCaDP0Z-2(ae5v~JERPihqNxa-S$XwD(O`jR)+2aOnf zILIzKjke76Vn2jZ#Ulk^GX1_KAvVrH2Q5Mapw7_3(p~&Lh!IGA38O$`s3&#Kcf^M z(4Fik4br#B%jR-KTlE}VPd=d|GZ6;-gA`0aQOQCvkLi6KMB5}9c7*^z#PwaDw!)mE zdHnqusWxFFmNaCNS4v=oRd)Y8O#^qeGD;ymsEVr1{}CwdtBqHSlMtsnlxZC0S^u8k zqgxWe=H;54AM8^xYMGUQ>QTx0Q`J`)!5<}*xI1uNbh0kfmC;a`Ad&2^B!5@ zJN4d)i!2$(A&%TA4cig+@C(q+)7Oa1+!1flKTI5NC)R2Eb1ejr!CfmI^+zJ5jkNo6 zEspn*fn@@}-je{`6RYTJd-AWXQ{|XRWmt#BsV#3!Lb8jh5O*w>i)Kv|+4CO&jLT+K zGk}eRa&S7JKN}9C*&^t!ComDy@yw&8obq~)_Sw^8?ZhDL?B-PZb%GK|17nVB`uFJk zhW5->N)+AWATBVZ%&uP=!tHj%8557$`=BO}CBJ+OF-$c?+uKZ0Wxk899}2b=1d8YF zOYb1jzTkppjtRov#6YQ)db-H~V?1v&+rSFLRH|p5XLl)#tMeQ=-aD00C1yfYP`uK| ze;N<61MRvvEE`uRZ#(|r*u~$&2)}cK3;EMwNw=bhtGTMz+@M7(DPDeoyJDtWyUc?C>1XBw0CAdgf#kBG zoeM?~9^Zb@67CxynQ`(?j83E>xs}nONj{elxE1lWVYpsm_m-+Eh5SPMl@kJ|OYtb} zor$=k^-82#ydu{sNwqeVZi$zDt9!ZBS0`_MX!)%Adxc@2(g)5!Yh(G=DdhKYyr4;U zsY#8Uz_Z9cKYa4mpmTBu_0QrLWY<)w<-a8wm?MpF3K%^Nv0X3_fS^ z=>G)#zXe{h9%2j-Sogc}<@0LBLWLwTACpOZYOZQZ44)8Q~0ranYRDfXT8qt=$wL??B((N>ZmzATm;A1b2t_ zM%duHH+lvtU?en#nkXtB==-Cxng$B}jy1Ah_XG8tj?v^mCe^U?UXX?)fj?@nlS!3g z@Ev>+p!o5ekE>83FwjitHs zj~(RGe{+n}P6bAnoFwz?5<}q8#-vfX^P?-9XXaR(ZZ2NEqKb81D4~FGuu2VdA8frY z!`T5!hurxbZM#a(Rr!F?nC;7MRCUQ8u(o;c`IqARtwa|7xy`>St}MOE_73m-F_G_l zr@yicIduYuUe}0ob;nN~zDBp@&mT)zDX9h6meCw4WiY#|%TRg%BOp-!I=Wi((RP)s z{K-9ex%*l;Z&tQqLcC>gD6olZueCr{NbLs*2SQ`iy4EwprN*KqUQ0GeO2CvzZ~PU9 zp?V1}G%FvnUa4ff7%2>J(R(e;HG-6)4H_bnP>pM> z`0b6A{eLW-Q+S}k(ye3Lww;MNv2ADKiEVtbZQIEt6Wg|JYhwHCz5jDlSN+socdfUc z>ROKXr_MiNg?k*(q5N>6>_P%M26|oBAk{EWoH3cbMf$UVUTTbD z8P&sdjv+%W_l{+E8o7?teyLUwK(1X)i!~q;X~^=USBX-V@nCdg_7Ft9=yWj|qE=9; zn!>Jvm+dn5Ij6TTp>T34ORb=J5xq4ed6ei;PUh~K6Est z=G|y+qMwGub5;2qMgkS+q7Qz)*`I385D+=2-gBdq7>clqW3nuX=d9^709%P=Z^33( zvwpDeO!X{r*U4#)W!!HOvCi&no+s0XlZV7wOU4k&mF*R!%{$IiKkC5)FfgHLU0d1bwwVJe6QwZUE?hM`fWl6{EwVdUJCA~AQE z)Ihsev>D>%NGM0B*b7z#@X|BM8p04eKjZ(m1n)nprnjiG70i%++^B0Q{b*Mkir))z zU>Qj)M|Dk7c1g(Cx0e%DoDDTmZ$(#L3JK$CoNWd=v6_;Xsv7%wE7B5p=4pmEa#RJr z0j;ijuJ&Tj9pC^?<$Dh%S8GUi#p_&P?qR*u9Mu05RiPfsYJNJ|aFCyQ81riDljYB=m9z!yepLgQs!Ir$~sTVN7fNCt$zkiC3x+^qPAw}tt zOA$?!T~zjLr;jB6KO_VP{>9QhxZZ0b(NLwao&fgU+mkG6`r#;T1}GDvo_ zts(M0FS@O_BZ@XDQwxf`v(V?0uq%E)OEt(wm!pWqCkPc<;BTvn1Wc}?9SS=%1D6HY zZW-zkEJYDDL$}SHSY)nHAd(MW)*O7Cv?NVhEus%ElahaM6e`tlG9{n0&*4LAgcJ$- zy=mn_Yi{*q1ubGVie1wA z(_8S_1|(bSSj8&GB5yx5Z6?%>XV9C!lE0B(pXA~Hf1%>}FKMEu^|e4v0LHH)=Ve*% zOQ%8vq1axLnKSzGR5er?H=Y!uOJ!aikFn|uiqAZ7e(M73o!?%K3W_;(VBHLOK4 zo+Q6PXr`&uY2Ke?>W5b<;VlSR$bL(%aT$7i4wC3{S@qKn4?9ZEzes>t%lX=Fi z-eg6c&qWI}jWR_e39yqlFsM(cK+B_`Wj-0u^#;>S8VIo~eq>WamEGPj_hrHv4(@OK zjbyoZ4zg0n^i>DTY>401S2OueTLlb^F&b9jVxSX<4{J>!@^A7kLbZHkBrwfzMVsI3DLF92Iy3kOl(IR>5jVR%>o51f10q=4qmIU+rx?SdG8 z;q7Ygj`Ts?h^hkWFy32x1p){b`PZEXOY-vR65!xf6|f6AYJKWT;ENk#=AuaAq3Wp4 zZl{hRcV` zVL%6*OR7Y>re#dKC&gFX3yF{-0WMA>Pk0RuyO*b}#RXq?Z8x?3OWp&54dPnAUp0Bd ziKeUa^1Nr=JYIL^m!oU2Af0OaW#um;g#wO+sHrR?ARd|b$TaL%{9;U6zXT0ZbmU+_ zL8jVPx!)Dqjufh47M|XaSI1o)=kIP>)=T&ax-qyhcbnY#Y5>h0(xl4g3(o{C_n`%?qTJ$*c(TWT^F z-N64#k5pBTjGBrLKH{i+b^Ut(WTx)n?Qg5iL!Ov8&OW6`7G8LK)-Wu)B#?V2t=2!w z%}K*<)rEveVLuLjZoZ)3f09fXGH>%L^31LWFnR^(g!lR#=uK_ybgX*dy;%-#xfOw3 zIE-_#6IN|PaPd<(jDm(?lW|VkMn(88GLU40R=@o&U4@#AREVU9^LfQ8*bux;W8 z4|dHlwBFi7ysT4ScZ_gJe}bTmM_j|=#||+lrb#|>nK~TY-Kr3ith#L3o7Z^z0!lu> zEeyu0TcOo{`Sq63*K}7k*B)w@fTtNzU0GDt{E1t9Bz1A9sTtiKi>5#)3a@x3F{=vC zN;RmpUW8{`!l@l zPBv-2%X_wb%9~BuVL3Hg*5`QX53NBWi73u2oxqqPvDH+JJGN!9e-@jcLC9aXkM_=u znY#Zs$oFLdg$eP4gOxpvR0Ntf?Xe3A8J;Y1F@>MP#Dr@#Bn`P6N(gw67~?0VdW*`q zCffdZdgty|HHr^wYxm}6&=yE`2cEa{A}4-z6ICdJAI9j}0QLo3uUZ zYa^;VZ@wxgn~tkeZGRr@jd1M<$bk(iKm7N%Lrl4)Q<)1&U^SUlVuq0AK%sd6?0yb0 zb;9#27@BzQmS&hmA|O>(_q^cItlxAp?du+F*RU{-?}dSmk-&fnni;8kSxvhZGT3Y9ULJS@0%x2+~YQ)ozU;yOu# z@FRuCY}QSnsJvhW|?q zk=hRPqoOa2`#eEWd_PXWeXoe$rPPF+AWU_m)-AF56W~!RO+dZVUN5}YRB4#CX3U6h zELOi-W=sxVthCtwlj!h(digMUIkW~k-M#iH1=F#op$zw%1GFzx)K`{H1I5Lzhl=X8xpA?;wYI@9#V?#Ci#{-(_9_dm$*QYbiNRBp0xHeL9wq`AW=bF z^B)i5yunbfGr{|?27$#Ytw%KkHTg}4YZ_F}rhh5cwB`Qj1^t~&lBEW>0xhqLh7#-f zkP)TAc8f_6bo^D{ZE^}K%%knE`C_zxYV{dH^Z@BaNli6E6db3T@9z;L8>|x^62#0O z9ia}zf3;N8*nAc(c;M*3A?x$Aj+d+api}bdu;+<<1h#r-p&WwQGVSW(3|8$# zZ-DMMPOS|orZnD(zp4JSoWZQa-p`ZZB?1_~Br});^4DgQi*&}Q;$S+7Y#38EW|^Ea zp1SkJo;=fV7137Ox9@lk#8{Il=k%N?^_+b3MUjlV7d`UAm3m(%GG)bRI*9)6dZnI6 zpZNAn@Dv@q?6}2GY}{f(;=VkTGzaCN9{~fO9V;i}-u1)3X0RDZQ1*1b45Xx+gFJZI z#NEhF1_S}s3KIufNW5mPfhVCh>*Hk&XD20CN#t0t(&%u9QA9VRL)Baxw6PYg<~F;uT)<|N z5P!fH+?UVR5DdKft(Iu@ti@s|1H}RMfWcRpy{II5A6D?Efm_j1ZLt*X4SQYDpe4ZF!wgj); zl%%d$e{QY)SScOGj<#;JNwCWCpXw&kzl3B`){JivC&}hMi>-05 zIwX79R)qm?rjM&cc|kG>i^sOWO;Z=L(gDNx-6R5<@*vXgqPF67)LPcXHhpx%gFQeb zd<7va(Kez4RuF&i0H=!k$Fq-){m1xoi!$w8Fyxd*8*@1i_Iq0MHGMb|032`6&^*n3 z4_qk!6J1ixMbwu-Al$#flGC{kDtWGE*Pikd!+Znl!}>6Xh$6lGdNjo+VygO5xi1kx zuEYH>Qd9Od;71hUj9c)=k7C<5^haNX+qzR}H(mG7A z<3bE^-8lwUDy_5H6f&^kM(xDiYl0YLHoLFCKlYf3fwxY|0#KaMl^GOwkmvZ{3o+gq zsdtIz3BDF%@cvS8@nFII8u*%&CPVWn&E94XAbx9h9<=O!_iwW=Kmg93v5!W1n`4q` zLMiaP5(ObC!60uoUQ-N$&GkSusrEGE!0`E2i z3043^kI|VYsdp$IoC?~zSQFIwbapKot+ro6-XVsPB&0p^sBmMx1lxut1IB{E1~xzI zkaV{s+4YdAQO`~;J@;=1qM>pwbX!L6FWbo}O;GK>4?})`0qp8PIf#)noz7(f#hN%W z{G(WC3f^4hl`)twtP>G#xgW5e<3!wjScTf>Q;}4mFiefqOAz=x$9^KxV)=w-PByyj zU;7(-0X<;#!_r+i?P#njcJ&=1+Jor-=JoMBT*#$~o%9~a<$@UQnLFGQ8>{3w%=w<< zo$o=KEyc1?0R_}=7_^tq8@&zeeP)>z#a5+@L8p{S^Z=gxMtw+3a)J6o^wU0wb~TWa zhEEbj4p_a-D}1BIZtjz)!HimdX3l^N*++BqWDzM2bgG;UN`w7NAm|U2KE)ifQwSJ2 zeB(4%jiRlgd`W!2PC$Nv&~GjE9O?>C>x#N#9cMan!1mjl-QwT*MAgbK2L9S@NryV` z?TKVrsMQEP&?KJVPPgbLyIDqJ9<}aCY8K_uTj@UBHXSfL4+ItyxcNK2I_+*5;}KNK z2H`=ik-DR6h&1OgLv+)5=0%08h_|n;QuOLCmw1uDJk+NDyi2|IY%8@m3t5DXN3@3_ z?(VJiKpzz|6({lH>rn*Z-XpF;WsFKRg656Rb~)!G>Pfu*fu;%TsEu)hnp|$A@efg= zgh+V0ojU`luS&lLB51|xs@=H`+X41dvzxNh# zF-q*7DrnMXG*zcO2Zdw>R#GIZFMgU%UK0O!feAYVKv;rfp#M*@^?D*;K#;I8*l zVM%Kzu80%GZ>NWhdJ8-O2`Pwlw(Nb*dg+`_-FExxs!ujMMjZ?_zDr;Id}kYXCLLsg zW9+F!9m6PY>yfFy0LaCIkGV||mc{B|RbEAY`r=>arQczOG-tH7Z@DE!=^4~J%>JEIo@)mT+ z#s^IH`$?W|)!+ZRnp!Ds8|E;d06x|7dY?nea~{Blv`~oZ6(>$~tNFMYV&(i3)Q8=5 zY1)$}7@?Q$#Mpl`b=%8Ar#R*zl5`^Hrd14^l;#v9_*e=K?d{h+Ij#MJ2H^x#dW$C} zBv|t!Icl(@TvkKH`c9^brd6%t9!^qrTc>V&%y?NWW`IM4oGA7ezC}vA= zE3Uh>BM~w$WKxXGnGkW(%b6&9Ts_jH35Kw1EYt~WK%7zU>@2*3eU}Y5w{);^Wh?13 z{0@Y=H*zmGnxy^c?_hZVYCXPS!_pnYal_Ib{KK4&8Q^Y%ne6s)+x0*ZZYgyfPm9#~ zkKkitnngkHAYDBZWl?QnUIGKDxy7~59l+wRr6z7%hWKdKcXi6W`ZueFX~=vO)6>2+ z`y2W6Q`wz*!N=fr}E7IqoMOjp>Z4ETO$mVXgVRU39X5!-qQt3Z_IbXrx!AyqEveAWd#DjTiL zeObuweu~8c5%%;$IA!kM2o$k3IYzuhSaloHz>snj?H@+Z7;by|`q2_x)P<8#7Au7| z{Tb0bNqp0$pCObsS&5VlFx4;tm`Rkx36v)FrgEv#qsH#yCw-{xbNhq2{0kTtJK<>D z&+yq?e{szs39KrhSF}B-{(5NUxA2|Mi)*(YK#HF$WK>>yB+Qpcti;TJap2Vjv5;MK@@D4WN?y`isY4miMiLDIM>Z3IRnx{&AW6sQ^dD^Il&I4rsqN zibN8#RHcoo$NJ91-`Vgs2Hp36p!&_V+yJm-e=7r6`;pR4m>kGe9w#zcj z(H;u(fAh}Ztla;%rXWpm8Y&koxu)fM8mb-~K=|_!Y|JoDd3??WnadGGI}*B>PMZD7 zqDYbuI32ZL{WR1Ng@M@jdG+PysNEez{p?SJ2I@(MHfvOQlG;q=QomTd0TP*nKr4ZN ztNn&pe!Rb5S>4dP((jV*I#QeXAX*wtq-Q~j>LmRE4q69$QoH7J;2mKP&&eWM|IXtC zfN`fNZ%%X{uLa2Zzm?JF2U6?~&P}4+su^Xmh_R)Ki-GZwUAXSFHGuRskTp=d3&I6* z-zP@>01x1^jQXbd%@Kyl1=f0s1wH&uw^GR*R8JA(k>6*Q&5Q4vs1-25Rw4OHK5oyG zP_Az%h#QfJq2!|8kI~tfXa&hbu&%@haI0c{hYlaRlhO8>Xw4f-RV)c-Q1}mQE6i=B z4sA%vpa}dLrA3A2x5N7QrOkhf5Zu9T=70n*IW;#pJBw|Qy!w~LFB^H1p~-RX#2`s| zfaJd4fz2_e^8Biopk+vzV?j!Q#!k9<9_3~*@zJzB_RR*?!~@ce!BtH+nUA0zP#t_6QbvEpZ8wZ{bBZ~V= zh&61jG9Q;i`eYZ!Xtf}7VY*}$Af=wifAJzynYb)r63cuK5OyGA9+xNwh zSFWqCCGz_Wg98=tu6wiLvBvXzTHMdRjvrKfxr9FARv(Wf{Gr&28Zb$)J!LW4n6fB zo<3)FgQ%%PB=y7i!dCwYHpu+{Tlp+$2>}SyC_J33aLjUMb`~zb|08<1*pvF8X@DVZ zS$ljgleJ^pS_rPz{6cqW-qg{9m>8Z7ci*-4KvCQTJhbDjFFPo{<##A;q<@1bxj;p z_95uOw3h^pcn0A}{~0qx>yyA(U;xAJfpRRkC2J77itEaUWYF(c?a5*idrir3uX73} z@1jcjYl|^T;#HR$t_Sa2bcm zgwh8=c*Tn^Bqinx?7}ij&818srRqpbL#66yO7c~5Ov(#z8!B{xY)&q;&_EJcS!p#^ z*d$ZREJ82_AA$7}T&Q zP-OC!fj+eJ z3X;K55=o$Sm{1r8mD{XusjVvQKb*9IUF>!TJkR12CH zOG9Tq7t@;$OHt@tzHHx(t|#a|KicdCf$W2Ue_K93K4C2;(>7u#88*Jg9v*!f+6@dR zxjM*Zmkp+wu^SGSr~!AZY)?W?P2LgV1`ap!0Co51nY0Pa;+#vF*s}$hSXB3E`|PB% zv&Wr{r>}S8*BMiwiSwy( zdBaxXSc|M@AcVkA-=?|h(Slsj96PFN$c=U9<2MstwG5&{70`kvGTEI;M(Ux!uaJO! zRgHOpHQ54uoH@j%^c_7eExrCO#Tb)Rd+Lg2?JIQ(b0kLk6YNM$wM0A72ZCn;Ep!3n zKd$M2uH|3I?9pF9F{g_tDe(Abh2~Y|G;5W++d$72dm^D#4E8oWH%gnoz}UQE+dv!j z^@<_Dni+I(32<^V^ZIDkv$>2onsW2?t?NRb#qs)ejf9SuCCRrwBURvWG4x)yqW?nF zd+5;Wx;VgHNF;$5^|Ak=~a#Dbe?Su)55J6PbTm<@!>$Bz#S`o`<> zrv2f*eYQqqvtDsz%^f7E99$}y$YNfeWNu|x=103-32F$3@o=a#ZR99P?lx zZ0*iz;ceB*HZH9Sz@Bg~^0t~htU&y?uUe(6G40Zd#rVRGwK+#ihyqLNLLwX%^j>AB z2y?Xvdc_X5Y3Y(efmVz2#FL=d+E5&6WvR|atvD}GmNRW}5%sK(A`?~>H{iRejJ^<_ znV#EC1suEV6cdDHC7+$i&m$$tC?>u5QJH?J9P>nX|2+CNJA$|#I(&I`}qBc~o$FB+*734L1F(-21?dvB{pQ8kg{nq$+Zc zFz!orri*BIt>$hrNOVPV=719CpyYWs$xMi?3e*h9)A`nDzo)$DRpNyww73I~be6X!ZynZCc-EyO;oOyb8lvoO*lZI66WGfIvr2i5Ta5_Lz zg>Btpxwe=j`z?Fs2zmIIhm!C}`NdJW)6D4Xpmsy9trt-by4~pS*}5Yi8lll!pPghF zE^yFPq(_I?qWB&S<(`gHK#3cB6Lwsp`|}CuSqb{Z72>4{`Q@5Lc|12EWC!=73H*Z> z>_aE77Pp|e-0nMoz}s8w zJ-97pR_y+Yt3RGUWpS%-r6H=V=_c=|FH1HfSJaZz!=-X1wTqcdfxflX4ePxBfIIhW znG^!zGrH)&&41JY`2CLQ8?w~|cklnnuDvoC%rvcZaJsacC8#2>$orO*Whf39h@?IC z`2U{3NV5+APk7pf5(E<3@0yA16A?S5SaJuEt*Q6Qc@_efRCHBlZm(6LE2=nhn~f$# zlPK%8Mn-tKjnVt_RuA{6Qhto8H`5~7ixf6L;}hw9KgRsM@X9!sN@8s8*1%PLalk1fupio>tHg9aslTv3BT2??))kVMYiSnN6S2}F z@jQIBm|6~83T_2yTjzrCeZegH{y|RVI-5_C|0FuDc$hsT;ll~1#AL8iEF2%L8b_i8 zDaqn1C2%p!|K;rjui}RgQu)tIP}+k~QTAEay%e(Tc9Hv0$GO^tmE~`lG`n1AC~UJ| zW$^PDQN=6$+JOs;t#@2!-@=^X)|m%TEyGJ#mI-`W89dNo3>&9hBC3X-atlIz(f3l$|DddE!48R!=qENE#l>hl#^lW5R z-Vw`1WoeRlAN|xLQ0&R!PT^#GpsJq0!|?a#Kw-aF%J#}_*f6qo6aktJ+gO81!fIAr zjbel}!8CxPj?a?JhGDF(rTA5)irZt3GLUyGC}3nMNJ zVKgM8mJ8ivuOT{REU{OJbr&dYap8WC4lkqK?!&f?yQTHphHybXe$UsN+U3I_BLwAj zrq`pzUymY{K{Ml47Fx4y>b;ZgAsxWcy?l&+gw&n5#BiXrQ7EYys4(&dj*NfvVoQpA z9$SrLEb;qi-vdtQ;=}U%^CZ3A6vrO?S%oc)31+E@hvkkl z0cc~^KeU&>O7rB`^LO(nN>VklCKjEOmAw;LuBK(mb{^l}cOzQRH4ap{nKYgsym&$|sX z@PVa-3d7Y;@FUOjdzH{TRDA+tcPUinW620NU9@k)ef;s93lhJJ#3}EN?29x@o+BQK z;2`yP%bAT<7k_rSyY6?nMoA5-jL|?JTh=FNgB|&Mh)cJu=P?*6JB=k%Nb*;M)4?&W z(3a8&R2xR^L{*zg@p5PH!^SFynn3?a&QED&h{!YOjh3rpgm~r|{-Gq(WvuYO z9IPjaXJBk3i0K*7hJyKlrJ_5Mv#0gfw^1-h+7t8`l+_c#u2qJpZetIaJ5^~$hfwH% z6i-~56)yA94};2y{Sw4Cg4hok(GxRg<)1Nc0RoHNwmwha-j1yAea)3KuA;rZ$9|w| zM)W;ohLvD1=Q1%C`rrI8&2D52nsqJ{hV8S`Bn>V#jcX|ao{Rh$`-}KMss{GbyFHBs z50uK(_D3|`MxoG3_WG?}z3F5cf#pA7*u!xkf&~V0Vz#WIK8OxB(QlkOgWY|rqCOi& zT1!W%?Za3-pvfs!auHrACm9s(eVZUwKto>p@DWjUqAhb3zqX6dlqWi@|Ms%yr|)+y z^3ESzl>qBdtEW%AS_Y{RmAA_g`=47M2XEpE#-@-Vnx`^v4P-h(`WLC0K}_ucN306e znwHhVz1pyQ9D0$8Fh+?p&flz^4!5WPu|B=$E8a^v?=wtSk|6_Ecci76uZ1DayY=6j zxWkKa12eYT*RAWr+VFX{dO>R*XmU111XSDl8wBaY@j=4c#1)@n-F5>o(`Vxys`}L$ z+nfQWkxHRGaqo$SM;M))lMWt~cI z(Y-bDM!`-+Hls^hs54PT&;p2eGFmC-50^z|cC05@1h$#ABJy>sR7VNG@=U(o-7}JZ zTU$>Q6Y^EFk|J|gClpi-#K#nC&_Ot9w4+qA7}Sea&>N)W@YaH$2%>)@gCn_!%#(y{ z;wj8m+GDuvsEbgK%{?|+s(gGyLv=o6tj5UDjsFk6np95L*KGs4Un}2S6*vm-!hL?5 zu5IlBztY}p*w5rDL^lM0)HFP4_|qGtjaSqiM^0_J6bcjz4I8mTHYjq_UerpiINNh| zaq7%3jx*(-^4~u-bmwZs8Jj6#CT999;|c4Ug^Q#lC1?XBxHk6aW_h|sQ%(1WnF8|+ zC~H;6;Ui_;;MVO8lb7V%2FSSKHt|jjCar1OYz^r_(TQIM_K^M6?r~jut{%dq%1PhA}&dJL0AI7Bx z@bsNGIPU~{`t1uW7>Ho}4WE|}6Xoo@H-|G*-N$oT@@(wyVHYXO z+6iLPl{Gz^U++U%x{5-Tk8HH!qwvL4TfOf7R$9Ppw$zNIpJAq+R)kkyS!Nyo7!)Jra3>qSeE~nh~7famKI%qA6Nf6s2&ai!OE>hIV0xdJbg-sW2p$lcoQ_kpo>v53OyH*n*;?4gcoal+vaUtoAdYcR>Btm4gc34!}brA zu(vz%_qnznyV^5W)ui$tOu``=zX?OiPwnG4+QIZC6o0Q@Cj7Lrc#ukuq|0?RrFVgo zvxWT<8Q8d-L={XSj_c!0#RAluwD%D8n}qLxshzRzCcOJ>?#mMbD8(2)eoM6m97AW~^&r5}jlz)?(*GM@qUM<#=teO%>%gJ>UNMOG>m) z$;>pSv~jv&GPT0iS5m|wI}pEtnZXm}uLVuUNUh*h-b1dHE5^7DNYo6X4g{a#NBe(_ ztQr3ViBNCBAx}ieb~P|i6VnZigpuQyQvz zI4|o?B1TGy*RL#1%Ppb@QQ=Ew>&7h%jCr62$913cPB1E9HU+$J#)L@z5?_z@kk|u+ zTeezO@-a1hRgR^moV;ZWh% z{bH7AXfSGzPdQ2AgqIrMQ@UM<#Ya0?E@ABzBVAP~Z4$U29mUb;`k_~f11TzBU}q@6 zA4!T|r@J&>xwWAM+rp*Pzl1s`;q{gT2;2>v9n5}1_LCn2+40TbXGjArBg1C;syF_) zg?^3MU%js@?XUWjZu-(V9JG*+GONs@PtH<<5+_ls0*ON(q*0Q;qaDHp!7Wzrc@jaE zy>oXKrACQLf~q8)3>(RacEw_<34N1qbePW*!MvXWj;^F&dq=GmD}53NSF6LFl}Z<_ zWPF*$fB*vka#wZ^2z5yv1Znuobo&!Ky1)$hlG3?QTP~$j(|%DX)Rdfrh#w+KB7l!1 zkwyX$^~k)p6e_td^lvZl4<6LpT@bDXyMYuuk?KN%5#J>q4I$|ZLr+~sPZe6Ka%~7< z@4V7x*MUbZ_|3hIA1lf8zVf7aSC6k?j8lwLrS$dnOSYOGTPPRw_gc>?>LqdD%mi(EOOFkcDr9G)&DNNuw-7c}3@+ z76=6LBUKXeH{U8u?)tgRV)>lis$W8U((7;5gG?UE!@nYaz854}#Z)CJr8qF%^ufg5 z4O!Cez_sJTEF(|(F?+x%Fgn!kk^p;gh&=Hfy-GCWv11BN?hxnbO}!PnZ>)O>r?BuR z1jHUtG#ojix?S3GNi1I5bTagj)&%eUKOCdvu8r~XKrB6OwUVLW+VeE{?))p?8& z0aWd7EF}dlzD2h#DQbp#N;YTeo;>Bi+k3(K^M2CA=qDz%UMOjPcCh~sCxC|Ti>;Et z$G_iypUhGk@AZ=$Q-ju0Ep=NEXQlsW=966$pZ}Lg0g`r@{CXWsZ^=7S7m+5T0{PxR z6?+rOvQkOV(EU73iu2fb*k|VCNIht=b6SvUvI&V)yvZ)LCt*D*zOp5v^I_+`S|hYY zD_WDVi2sG)c7M7vSnyut1`v4PcO^tbiZUVx;@p2a2kHL~X3Lk=u0~*fg2pUMe6vQ~ z+v^y>#cvL3HVX?*GA|S76#WIWT-$MM=K{lo_{&Hh-Z}l}!cJpGphJp5hS~^E`bo*W ze}N|Gi?Jn(I4>h&d?pzbzVlGPZZ-yVt*dB=-(GP+E zFt*W5D^%&tJ5}=M2t&OqAP72Bik~;&!-Nq(>8_1=U6bJmIb!B6Y(S&+cd%JreOMwm=XJtHenY!_P-&0>_}Qm$fU_eV(5Eu}Eo*wlaE)+T`--dz-fr?-*(Rc>YD zoS)e@HM;6KwGdPJ#I{_D*)EY%$d-lT%*L82UKKVZ@s3UY-ID=fhm`eT7ihH0Qopp# zY*nXXgncKe2~-;s!2bH@!WO|+RK|2cordr`OF`Bmo7+{B+xw)&q0VGs7U`64wEX7Y zUs{oxSPe~!m^n>nfG(AT>Td-F+$ZDL=LPet$ zvoiN>$6)d)1U(fkQ#Ha)EZ2(lr%AtIt3O?BfTJ{witFfVm&C!gG4tz^%kIn3Vm41X zne@8JB?FdU5!*LGIJH*aNy&14iD0T>H6?xy4Hce+`;YpJcN<)vv1Qx}re6FM4{}6h zecn_{m78rg2=HcyHAIz3-u0157+GSn*1?PID>68LJ6lFFpBW_S<)tCj0_Z6sz>g?{NHyqai8-yu0RcM-^ z5^xv@ijisgHuoMh$b?X)BsXJSlg;XZ!cKyV%MQQap$9C1W6Z(F*ifrslH47ASlY@8 zQVW#U?M&)QGFYfRrzufp6#coh{Q2C4m^IaQxpGc(r(s@&H9{-kD6=n1wCVZ-Q2Wexb}uSxze zAEKZa~qcGn>cGm?HO807-}VKQ$)69j+c zy+{<{j+Tv1$G1)Gr&J})bApU+1dW;p!kh8aWpVwp8*d>$#-HE6p|rPB53fRQRZq=4 z6N!$mH0bmP+DTY&ETzRYk{N)Y;q#?1MnnOOFoGQ5f`{ruIt_O$q&ogWUmj_ z-?O8s8U)qb#9bdUXI`XVT|K1FR=x-L4^iUy!K*Gl``({>KZ(CjY~Jhx;W%{vN0X_i zkXWFc|L2^Uf@dAKF?`zr3}M3H5&o*%gf^TiTXlsit1wv&D-FPJY!u7Uk}Z}|5!~sy z?sRKARPKgH;=VND&dzzBRM8*0DXWQmp<|<>v+--<5sb2I>gd|<>*x_w1#5xobp?6d zKVHl8lS-t=loZ!1ugcO7KR5S&GAxGn-rXzR3h5HE{{hnYVG(zBbF75F-VCMGpD8Go$+Z+G8Xd;dOSmzvx%jx z3BYs$y_iVQ)jW&Uu1E~NKAu~?{od~{xVU6j6B*_+UUOEzp3YY&^*AH$Q15tHxa2iQ zS0RC7s#u!>YAt&|-wuymikRp}3cqdz5KGN8Vr2EWyC@@#vHa_cjnehIXi{VgWU8Kx z${m+S$$0DT%J5ct6i3t{To{=QDaw!1MB#PomuKAX0)t|&$6D@)_sUHApn9r$8T}I6 z_}mRijDF!-@Egd_9CFJ3ZOyC#JN#0r2zCHju#@Ip0QuW7M|Y-ZC-=a(jyI*n$^RpO z44+WaGn+rb4f+%2(z#fSk3~^@@d&IkPwM~Gbd{|*fp-liV}@HsrYeN zw)E5G4;xA;f$OTKEN{!Q1PnE8mC&=_>+6=`HZ!eZCAn?RmHw>R-%(RFrT%9$R6!up zzGi}5R9^v2X|wyNq#MuQq%Bgj=U-K*`)zO|Pd!}PMl8TJT|^3V6X&A0#t_+*k^2RP z9+hrrR1YRrYO{jOPusC^Uso6g)si!~Lz7HDBdw>+D!7v@iQCjMrqR8wSGzRsZK&0{ z(c;VDt=f#|)k5K24u@L>M#PxA$_NmAxs*c*hL0cGj)RbMF?PWWH#qmg<%mx3BynZ12j7LF0Ve4LRfu&GlOYJX4O1Vekr-BS-rrAj0Dn1(?`W>sQB&D`nb2Y-OlDz5 z7GnY?L_A>>G_t1YD^^ScPYVP=dZ~mfhQhw(4muz!9`4cyP?HDzoy|)Jm)a?n=;qra zD~KQ6TpI8ji=hSoB7K^+{2WO9R*_ByGl2+gg{86np?WP&Q!^j>g7om>S=U}*((lx( zl1?b=^Oj3}V(@GHCb^jLFE=*=0pn_IiFR@^TTe4R*CXg%OC_|4oC^R(VTWYF8qeQ_ zL6$sD#+HjL4qM+I|Bs)P>F^ao(;JUy;PF+rpLpBt(pEF@Rp?Z7 zX@&(JJ7~nS-HS9j{{w)0q67jGWFCSbp#D*Swox{R{|LW{qhJC1PogxmbX=9ZUKnxF ziJocaF}e*W-X=4+iCXA2Vc(z5KFajk{5fH$0Td-7=DX3W_D%7pa0kb^^WM1L$|Etc zDkxI%wVmFNPh~^Ng3@Fu^tC7Yn!H62A4YF?dYvZZv2xi;BS6Dg5Y$7nQvov?{WVfR?g_0xDQjGEizK4|+>9C|{{w?o$hM$_kh~1Z;k~FP;=|8;*J^ zZ!$BSOJIF^;1XX*jVOWbPNcq^`L7pU7LkHKuKu3#w?zUUq*_qL&sSpXPs8N1Nnsy) zQ?3Ieo_L5K96)Qy4BU{_H!2+E*BClv)jG!H7F2p4}OEfVCqe{dOfY&WFnSl zZ6+PG@{i{a6jPymbLdcQbFgC~$FKKvkkR36Tc9|UIsj9~c}QricCz~4@q#X4QFJv_ zkGe{u>A^QrmLyIex4ZA(8AT`gV*lEaeA$L0c~ZDV36y-X*!=BszLxsId_ffxSoAWJ zz?iHeROZ)OBg4YMYT2!ZrR|apf!YQLBbG`CxhpFxx79&R27XTmwBRjQwV$h|gZ~dd zK)}Bx_GPnwj6{tqRms^c!Yzwh8?bcm4gT;XQCoDMx8SMz83l5h??lA9h?GtzCO~$g zF=r?JhtZ~_Kb}?^i%tZXU~&1$rHTFJ;Ozq_Z|9oDzZzH7enJA8y>y z-_s#zQL=q*R>m&b2bj!0=(@+?ZsGk;JAs3K4e|2QHxO$i~~cLiF1%k9=306C9KRVi|0R~IJ{)N2!0cdU*G z@zJNm=qgD%qsvUEehxO!iKEikTv~-AFh+v@d>Ht_x_4{Cxoav1+Rh$%2O;3V*H;T~ z+q6X8wpt2fu6N~?j7xz~$(AcmPEH}K<23iOnvvU$T{wgRDAwn?J@<$EHRY0FmkLsU zmvZAOT7ccQ{L7IcwqeN)voV^)lNK8FVPj!#e6b*gqB}~*Dt9dgx2-#DUH6M^d>d(P zMon6e?jc8aIY|*%1aZzSTVgd#`m@iVVK%f&lodI|<09-JQDbqbg@n<;tM(mT6cAo! zH`gNGPCYrfkW+wOpzSu&yr$EG|8Bc~dxn)Jeq7A+A-Yy5lv=0~&@*w)g~9i$ib3}c zmz;!w;dp7{#B(~FdmwUIJPDBUpmH~P5r_aLfe4U*cDW;HqAbszB7-E3;xwDdU_2R( z=VE}RQ4IM+4BP<7Y?S8{XA?>$_mau8sm15HbZ7HX2n@#Nkmq5CH4n{3cImQz1qbXA z@lkR)xzj2bu$St2mz%T?+vu*;hjnS5i*a98iWm3n#J1J0gcp#PEVy)s)pGQ3AuqkB zOrcoBXxeP$!8^#(D{9lQa|S?htqImp}#K+^yGEMTxn&d&Jwg_Sz5{LrCT!m#=T#_M_ zhe>1;vv{j~A^657oyoF)NF1}02eO2vfUsm5d?ER9#`Ue=cOn&J&UgqDRlhj$)h|w_ zH=Ls5Oz1RJ@8&nB1NFy%CsAnx|H zbg39`Cok&nkL#tNE#E*Lu&TuF36S~)l8K7k&2E8mADwup zof-~g3l#nf(Qf$dThjkRv6H0CqZ@dSI`6oJQT`s32`mbKI|j6Nq}v`)g55oTELp_! z`~-~WX3sBD{)NZ37xd@8f-H!~aF2{QB$R+n#Z|8iTfp98o-&@1#=te2)|xEMWK^~E z)t_oyFUz8SsD`m8YPY8^7m{t_EK$)9d*Z5Spg-!Sq2^=?>d`X2pZ+bh@+6`Y1kx7u z14A5iPXdSIhTEM$8@Jq_X>Z%r9yo2H>if^AKoBO~#(`hoiEbG4*>XNYNX z_+&aXa5xD8es{DRM`=ydp}`({FC9O*W7SpMAL?#{!c#!4vqM5Bqc?Tpc}-A(Mbv)H{`r-N*0 z^#=FG6O-V?6xKk119B~^A%C(=L(X|nM_J6|eK$Fem%7vYYQ#f#)8-_A{66%s_kc5P z)(spN9weRD+STCT7OwOPr^0QLFK-i3uws3ff6OxeupVMC&tRyBmi~_=3IPI(^$2Eb zQ2d))J#269tNyqU%yzeb|FA^tQ?kKefOJNiD}uN&{^i>mvBS`JJ^YgLtFWTY||Xw{g^DoO_Txz(Xy3TEXZ z`e_sM$ROCL9Qh1LxzfPdWR<2Vdc>hsuG9Dsf6!Pqz(P?^#^Zlbz}ZsW$5-i!TxwXGY# zMY?|#$nKrRPI*C@FjtWe?Rx*2M({4~FrpubgRUePSl(OxT1rLTGh8$E7It8W?5|*& zuARV+2s3~oR_iJ@k*YlM(*_&4HV8v5W`&{c2ovmR8b#rVuo_{CbHGo!JHR8Rmp?mKO*f$QuxsnONKDy>7K3 zp9c`{Zh*e8DStc)vG#CaIaLGQJ_sL?fH;DdD_44#CCii4D{g(rE5FiAAJI-ng z7ZqJWDBgx=AttmZpL2Ruf#sk^9B`c@wMCjif9(hDH+Selk=Kls(wxKfB{>>Up0*PNmdERkMKz>6WL$XT+;yC$4gSSoy~ zieEoN4&^FaLinPCJIrS44j)I5;NCuPJ8leo&K^=vR9l&1V@kf*_VS=;pUNNrtWuTh zjDNK(=r151hTIJCTxi2BGVxXz#pDG9F(;OKsw~^i0iUCTqYi`tW!%`nhcMb>vmq); zYewBOkH8iOduJm;sX2$(SOJ1t6IwIWQ|riqvAU%%MHYM z-73ddgRXb_T%@{k24oo50p$cBNWsgm*UmZ+0i#SYnT8&!$fwg|A z6!*ogP|57&G=zr1?_h|ML}LrV?WmQTL`j}9KvVCC=z*9QlSI>NA;LcQWP`(PN5iYo zL4x&se5VPxhUa$BdQQawgV69a_Tk@u_T$H?EQq^cVUR=a zEXw758ecCsawrhW^0MHF-@N_7w}1a0T1Ckvn5nj3ENIeI0fK;90YkQOoDcE)&^qe^ z=FoKa=W4iGi#^)MuOXRhov?Ij>OL$qW5tZBz0`M4OZCrH&zJi8X{l4`{)}3bo`g!k zr94}E>WBDWPg{Bq1%x(NYz;^vlaH#@_@}EI@VsZE_w}deIEs_`^V3G@$AA4ZWrm_< z1@f;I`Tz&=)Wf-8J)SWo)Yr*jj7{eR@t@{je5N~_Kx_tgBofHh{I99<=y8B6#Z;o! zsru*j^Ay~FNB=ej9seYy=t)Yt{~{!xpQuBiIRk*nLyBh?wTUWxx#0hM1L2GR5BU6a zg*SBW{w9-G!7WcQYlI6hnZ-@|6J$a9H{=m$${vBH2`R$`B2{_; zm)y&Oh2VHmXA&a6CXcWs6%g$61pRM`AB#VHjb;CS#Q#Pt$Kr1$8Z@!>Pv+_$pm@}Q z9izv7TBLGQ>ed!Qv4k4%F6;p*I94%di!1LFl8H3%u7rPY{}0cG9ch_7e^oB$Ica)8LMv_C7qE zcC>n5lzmx0-o;YdR7Aq4yI=4B`R4uo$bgaZm7F5x4OWFtnBCb_Godtb+qzS8C)4P6 z{13PiQ3tGX73KINqkVHi;Q3BOmFvreyXuY#QAk2WITTJl3+r zih-N>>n)CjVUtRl^KhYwN-$AflyH;l2+|+(o>onNfAk)Sdkyc*OfEF z>rs7hFc=<|Gs9~WzV7IVbc2gvTyhC+;A*o}{Ah8YF<4v&i^DG(8V!MZeg2GKllHY) znc9evSL00$i*#uLyk|7-h9@ABv;s|yKMz%ZUVp+Rk19yBsB|f=Dm`U<%0lsXn@ZPA ztyPW}%~XzC5(BRdDo5a?a@>t7_w3dMp+lAg2kF5qjs8r0V zG4B3%n`V%ml1Jhh2dT=y_@%o*MR;Dzjp_~+XctSKG9$&cga$5a(=7T9s+$%jI-zX${S{ZMzEpfGfVp3!`OH7uoeID=V^H07_2zNt5+`Gcn`#~_1 zF_A6ZcGg_9SM<-7xRLk7MjJqig(8iaH^Hc*?Z6}LW-R*sz)o_79q7R3jmediu;2$% zjMCm-zIpJm^c=1`Y+YhFOZY7ttYqFG1I-BkE1GMzCC`{v@@6hf%;*_c+ay4LYt8_~h78sbeF_R#KyqtZS3s%JiN%=c!od`7;ghDW zJag%gToH)L)&CxYho=I%>y>2tybIlYN1ZadV`%$)wFT#R7<>Y-D3ij1B8!bV)G(zb z(Y*IK5<{%-KF)Q5l*af1Xo|w3s#!|06fNb8bEOC}_!}KK@QT9;$wpl|GY`hGO_C1G4Uwr-5&^tD^T+YtsO>u-ag-@ zYPkN2RzM%VO&{+6aP$5va!AQ!HWic~Un>WC8F4-IsJIRTQRoa(#WIyHI)mRX4do7= zkm2DM(p?YH7=TB2qSc{o{0iv(7hfXsx(n|OX(;~=raCu%w%z%EaAvZxz=agISzk0n zv>nUb!=;4ot0v+;$>DE3hCuVlw-W{1x)mhPV5Y}3!Hf!$$Kk=k%2n6JC-ozLap=9a zSd`50Wv4aGIN8dod}=mskhPN8DKz#CMQ7VoIJIOjL%Pt);SeD+Na|yX=sSX7eZpU# z67UV*PU|jL15~VdR1(&dk421zIgU3_rp^rhD%`5Do?&Y#`UACfx$4T z!Jasp5B43~)RfXpD)D+%89VCrlv9N#Z_g}CmtqXjK!tyJ{%a0jT+4IlF5!vpA@7di z@nmy6Ntj(f+$;v+zLDU3IvVcqo3G%1Qd%uqCH#Qi-Ne`xEgwP_ z<|Z+NLHz3kG(-NO1;D4gr`gYS+p#lBHjACxiU=0@H}*qP+2{wC7dW(f*Hd;96E|4b zD(4$bzn?cxxJOy>7w7Zigfl#e#v2OwJB2S>WVO33{lWnZxA-Z??ONo1k`_0z~JhKl8n*4*3s{=K017Z)p9a5?vn5%Lo0fS!}ZEP z5j2wksZ2iM8~V-n$1Zd#C5DTDc_Oa~5GW6!C$iZ<2*(rcc-5B^GWGk3@ApFomH8H- zD#KX&(g1l;(BBX=y@F{d#FY>GE|I5XVQ&%-7nj>4R#L zs|(*e$j~*yls1kWxVd!0@l)xa24K}4y{F*u;Zl$9*z#qgJNxn#edsr@c_i2h0h=*y z%qj$bE>-1QqnjbHjsOK#o+1Eu^eQW;)uJW+y#oE>7$8F@RM2*q1Uo_t1;3`l@~~wR zAQfg?dJ^zyt|!PWm|mX->gJXP_zU6rLU`B_3p{9nPg3!k7DL%4MG_pe#8 zd*1Z_*1ZsvRDe-CM%D&~qGnR*=|v!vrg3aWd!@3vrtSZXuB28oUE$8_3Kx_uROCq# z7tzIP*JZWZF1|Rg5Amr|#nR=RJM!hy6~cF3f9J2a1%EzJxT~V3m6SfGXAe0LuZI+j(c%$&M zL&f}%1Rk>2gsY|Gj!IL|hg0XXinpm&19w?onMIYG-}rO_okB;U%KE_kluMU7rzPw+ zxU#Q*^?a{7*v(e$f8ujmE%hP4V^4LDzmb7OY#i&fs>TxJgzErJQ;i9Hft6}yzbYmX^djhDh4(;5~4S@+uAW0 zBKWL2EOh|jx=np=`%%_48 z-;0_oIMk^UfAtcJl2As|%s7LOvYPG~TTipl2d}%ZQD&28^XX zO293K9@v>(L^Vzsof6wNaGwb)iU3yOdtoBy6z}a5%A-dLQbt1Twmu2jq<)6j?NE=Y z*Jr6E#Flm;#JrIBLr0&J6yU+MqyIJzWXz^F{FVpZt8uwLgXIh-z28{FVAgq&^9k*W z{pi6wHi^fW=#(U6I83~e25=z_IpL9LvT%Jde+$LaStuD1BI+ffRb|>jJ^b~YHHUc- z@pz-`=IW9YO5(|&9}sO5zpQXKA^z+%{b$#^QOMn1>tPlO;`#ni=@Qd^J39@!AfkC$ zpW39rrOmB5W!ErQ+4WM?@BV@i))?x)Q(jc_g$S4tBB1!HY59c#b#PRR0#wkIg1ReV ze~kEmD?im`0cmZF0BIW|uxVq&9jge_fy3L%pstM@>hVt87|LCe&X{W6CW9vYJU}E2 zNffj|WOsE{5Fzo{AVGHL>>}Wt49!k7)_msY#J2PQd!S#sK?pMqzEzraT>t7(c%#g$g(vj@ zsNZM?jzL6GB3Y9bDADM=;Sm-z-KfSBn(+ms#{xzq$d9Es2q%D0P3*SRBS2`tasczd zhk`KU?Ju`+c`#?Uwlo^_#yjZE4Uvp(cyf2GIl z$^3Y4DNE2b3Uo}nl7~(e8_b@W?XJj=_5n_VxWI%+?fP*+!qfHRY2AGELSW$}8#WR1 z{-3+m+rK`(8Px&cSUX(VIudwcua%gSOH&2sB#6MsFk?q@5_MZ@w?jVaxjxf=xS=#Y zh8r$SxS4Sx^oZ0GUZ;8ei&tKCe@}cIh>{K!;$RaWzR6fbB%ivltEt@%`G`V8rW3J9 zp+#`nhsodb^>h?|03w$QI}W0@zUL%6bN0P{xXJbXPgUfpIneh-BG8u}_lOr1mUr1L z??7eCy9hhwU4*|CJ$(N?=)r#ahkE##7c=1AUE4qlRjT5CX=bLTLpAr5f4c374yx+3 zJ>Cvm8Y7N?3vmf~GfqU?3fv!8qwfeZI_yVIan7dgs_5UC4 zRMo>g!%icd;PHJ`2)XKoGv%+TC*&V8okBf9NSNl@iN(XLP_#u8QSd_>Ah5OZw3?rHJ4G62owS`F_&><0V#j2S=(;pxDkDyujl{^ zL`Fu8c$JhqZM-v!33ijgj)P4wJ3!=ax?4fF)X>Ft{ytSK>S}tr2MGMoQjsba>vHOl z=9>im_$E&_sgx{N*=BoslQ?O!-_XM^Kfd99UJMiC+04J(z4_yNtv5Vjd6M(Z-NRhf z-EQ+ax;+%<&NhEHv6M2({&W*7rK8*WbSkPH34bapOHc21Wmi`Fn^*{w@rY}E^X2ZZ zZ{FRF252F!v=nE)G}X*a6^UkIV=~3KRAg;i?yKU6tFHH@Q)Uv>?&f`>dCuypIN6r@ zZx##0{-c=ZOd08y=<4&??k=zKH`Gf@)DQTp=v#148rgpxN&Zvcw{K}u`9QxQqOomV z-H0sen%Y}hdUeIND<5xA%k^gWEd=qR&HreJPM11 z$ZpHu60WSzjiL=1$TQBg(!-*0A2N({rt~-`yiuW(mpgqdnzFb*+Up~f#&S#!+-#X90(>?jZYkKJ!oE-EFlqZ*rYwwuHR~@6i z?iel%Gw|8MG4U%KepofkUKLKTn!3wxmo z;8P_u`X7Ex)Ez7dC`xtPmY6$E1iL#QZCBP6RzfOx^nJ7M2V+{VsIjE!T(m3gI(jO* zgR^ECSX?w%7c9-Pu`J#PqrV7OeMalTIgmr1r1>fZ-d|3EhrZgP*3jyq9Jq5Hl*v#s zO5}fQ9g955B@@>zCRv)M^9;gOrVPS`FoRI)!Of!AT3pzM&I$}FxdnG#8MI=%%H>%u}6N4fugadm8g;>+C|P`A&b(R9AzkUmPbsp~kw|tu*cF9n{1NyS#@+ z-73{oib}!eCH>Oo(_x3{Y!Q4rH+E}xZjJS^*Q5RBc9AoS&}&s(f$Ty~Z%=VFgR6$!AeWW6h)49ilzfqu#)zqG4ic08LN z*wtF8GXvbp9cdWK1}(y}!C!2DRSEUz7>|%X5n*J7y(pStF9|5);i0izQ`#YzJfh-> z6=w#mo@d5GQ=f>4&{DutpqU%!)V+UQGPBnZIROGXLeTBsfByK(yN^HpE7-%%jeIr_DE*eMcp-Do;JfDlIrIdtWPzkg@ z2;f|UiMhJQfP|$cUm|!$EA3o`!n$2e(!H&0Q*@T1DUyTZt zky;K^dtX+S$7i3qFxeJc1kVG#t$hO%r&99TA38b<0D_SvOE^9H<3pw12huIAyjIG>ND-Ccj}`A?TU-}VnzdA{wz@h0ea0RYU!-0?y=X3e zW7&Qagao1>IM6jYD)nvuRmGg~d>M)qPmxFL76P)iZ|N!_C2)2!O7wrCfdjB@T9P3H z943Vj+`w6LI`VyZ|0$Rl3FBtO`RT-lcLcb|bObyO0HvU*%OyY|5s|qDB62KGC7OsV zi6{QRlF#!A-x}NY$F3OIDvBl^By&a3fS-B9#8W5mScl;#UnXRL8m+ph9J=V(dsTF@ zCtTmBS>xw9aG9pb7q)+b$c5JFcsi8hzF^=~bn{mqnYC>*_Br7Pp_^0_<-0o5|9QpH zraVGare^i}`F5Z)&?6ULtaDf;e3`=u9%e<##|BEWmV|WvM9D+lkZ9hAabWDj$fLlw zA3BnkUIn5Rj}Qas9iVF9KPp)rcYXB47%J`q`?61fXq7B{Y{`E+8owV14LpyUXN2CV zp8?#Orn@3Y^zt}^RB)`2WKkiBUbe18`OE?gzy(7Xgj8FNuyQ$mGsJSmmS9z$X2%83 zE`>1w)_Rd01H04%Gtth^jClL^USbRH9eDY75TPK8&6q{M3vx@AiV>ZDPrAx5H-n0h z*KS`ho{TiEvU`6Bb-UV-&*DGho1yy}H#}Uj@C;7@tF+q|t@W3hg*$TltHVV!@s6?X zsMtrqcqOddnXI!mlx5rn7M~xm!7_oMKaF{`J*9?-r zI@;Dti^|WcD3h>zAT=$0AMku?rb$JPs`fC6I{er=Xmo%2LL;FVXl@g#wC+$;p-dBS zQXAtPpD$l7z71(HOsCV`ZFBkV_6jXO{9kN&ca0W+Dezzuti+sUVsg-jpgIKy!o{T& zwz#&ZpwXMV_2YOc>6>mar{QQR@{zT=1`uK9V;j3^jmQWf{Q?*p3Z*7p*)4o zm^RC%b}D~%*lG+XmJ7ej(jZwuKMQ^f@5{^VZ842dLvvpSf!Q!IA=9h7%~;OI2#hLc z`~qLA`YXoxeZy&7udep&GobVE-wrOhruaDYk-ERA4_s7t^WZfzDBQ?ac>3`mjPG^7MJ`k2r7S#S#59J zI1c{aUoqG#unw@JvtDf3Til0jn(pEZ>^pzkT&$&(LGts(TB#_wtam$8su(_HYO?KfJjCD)8|y;^h0ctjJk zL(|v_58RcHYx~V+2Qr&VgK{O$(aF(hlumzb^}$ zvx{|-%HZ9G$R{?$w$gvk)RkP=lhhK0pz_$Og%i_V@qkLP6)Khs@S=8K8YH1Jh1zM= zHD+D~{n4wSLtYie0WkC6JDw#($YRdVYAkb=wxVC6dxGc({n-z?28u5=*^VG({LQ^(<3JrUvUfv*UlF-L`J$`xQBLodSua zS4e!ku^80mkGrTkm9SI~?sqJGX7t6u0j1Hus83BZf1lm&FiEjS43B06$d_ z?5>xEi!=)dovhz1NyQb@TpZ~QHcx`0%8Sf&PVXt6-*nWfyDi*q=THr?_P555?_t>c zAokmBeJFF{G{ArO=ohSsG=vAunNGyqGd@E!&F#h<%I*j7sEDJAeYlUr#Jyf&tO>o8 z$XB?K1h$;r4;V0AXLpcB{1O9szC214&Sjyy6sh3rwt$PI;Uc+ig#k5+jy6)k*0eOR zZ|p-+A6h&)4tPUb&zIZJAy<_PI#HOMGNwo*+?*jYudja=%^5K{x?^un++{SUcdvxW zXy#qs!iuAXG0S3;OxxQVt*F8=#5j)LywL8=3r%NU;6)3%xjW|;sJF)-h-EM(@<9i= zkZG`}fQ;g#TCfJ$Hx+ZWCv*EIVK9)Xds~|7o+u??1yp$wpHw-7JE2FFzdNDwIE8ZB$MB5s*4ay>gYp-z4XZmo{D?jdntVXc_ z8JUu(Rb8zO#M`@SHw12^f5kSyhMDU95iuKwf)-SvbczIHD4x2EfF!eVI1SkheFkIW zaBjV5ecYdhnEN< zVnLS$iBm9{dOU+v^dw{gXF{37(|Js%kZ#nOWC2=GPhA~0?99E(M=fm&5ihg3tujl) zHA;U>8LL^`T|sP9>P&3oOaaC7xZ^-V@v(X>Rm!AHXP)ZQWw#|o_d=4gXEI7T&8n2z zmgE$A0x_54!P+y;Oh*VOmO*2?LsLs(G=1^p?P+%?eDf5Qm2m`>kj@NFUB`cr2OZ@jSx$5)*ZX zu2LVm{lR4~*R@U4bC5zZz`ZS_Bj^}0l~l2C&JbZ)2s|uNf)kD8o3G`U*qf#+vO{S+THu)dV)>n9a%i!7UO2T*m{8)065XWr z+oj{juG!D<^&5v=DMIa|o0|9=g3L`_mM+$RrRN4DjYp5vREg~|YHs^A8XAA`WyT^1 zfK)KrIm^#OVP9`Kh^>Qn9c@wgJq>jmYg+K=+a9Rj)xO?xQLoSEP^Lsj1+4W~(>+Ml z_-Nqb6yiOkcuzoLua1^RcBqX*>-qA!pNX{rQoyHjYB{yw;1ndRwN63%h|m3kqq_a{ zb}^t+(2g+_Xbg7_+DoOu<63{WB@UX!+n6e*_>co%iW9mQa&R_EA2Hm1KzuuTp;LMk zA}=5ncXjhfU5|&LMH7eEp4G^ zu1K@rtS8=1wm5MTsG_Er$erO54{`oJPlaYZgo2t7a>!HUqO?TMf@8Szbm(x-$21}u zKp8Eyi6%~hOsQBL>E}dp2z05I=OVdaTJq;aa`49yxcXSodRc3dJ@;R_k^`>CQ*Fjm zIf6Idy@wDYPFNK2qkMms)03-6@QuM0X^CHg8Zg@SZC7|thhLj^yA0D~mX4*$iO2`# z%y|293SZW5_9Q_g(PWw3cZ0mQrUi)Qnv=VUUA&v^&s6JmMVb4j8=it6rpfF=*>8JO zwFFC{*#8_xVQcO2BRmJMjHF!Qb5{iU>H81yJ@w5WfR=cDz35v2kA$pke& zUAuF*_Ej(Q7evhwCg3|aBmxl~iw>a%AeVlo=sout(T^9USFkYRUZ585pEV8nCs_;x z@6F_HA`*&f5qJakkz*bE^774ljHSO^Br3T6`{F(1EaH=*%b8mVe9N5s`vjE>8B=8; zqvNMdM>~4P)L4ITA^n7l2&|{Vcm@8)BuMprJ@?$}3HyScj~6|15s*ePPDlClx`vX? z%lMH}InrPIFhaf(^}d2r)8jLs#=tfZvlLO!u%@>G6LB0dn;z<7>$@Pgf#NA%vf^ zy=PvJ+)JjPFFCh7iUs8x1_zYt6G2-be%#hrH6zg*{)>BH4!zxxN2@1x*AWBU@GR*) z@ArkDFF077Ex%SkS{kzL4d%xiZ}Sw&QhD@C+$j{z<&bZN2LLRo9fFrVj+4psJp;R^ zeyIUxjR$}H`0ni@-V%^c`d@~r z+C?J%F1qVaWT+O>0iLY%oG#n>3Kz3EdT%nSZ9;rMAYcvc&fK=d z@!#baFwW$2tI~9=N$EML^Gkb3{p5!BC?Od+s)C5!3sDA?>39e4+2xY2PT|A;REh9Bw1mbQOVXH>aSERh_m;Japg z>ydx+?XcfIww>KkyRjYQ^@rhoRr3DI@gt)GVbj#Rfv53YuAV$u21+?C(j_8#2lBxN zkoQ`){9_bL=EnXDRMsNGM=ktJ&x8GO1J}dsf(<8teg&E$|sWW_3!!02C{q5zC z)W#pmI{a4wLGUo_Ph8c_&XmP}>@a6Zq{*t;!K?SCy)X88-T7XY?@hN|kaaS*pwGYQ zbKmE){{x3zB$v?$0u%x`HxPhwUElSg-HsQDVh};pDWI? zsw5rD<;u3zFE0yBuh*qorL-VP$%-#pDBEl^QVQ^U6r(G}bbhWS{%yefdi>+*56gd_ z=k|k!;qp@b-ru*cych}dHP2$9e%}aiTxat7-huxn8Y?B`NPBfnltP{d(bNWaxKsUF zuqo3EnwNYBgC<#SpdlKuOeDjR5m04mH_j>(AtDMhO=gU3`@HO-&cPW3wc9=+N@8g z=LO08!^T8L&dT;}CA}}mGfwt;bT5$l{3E}i+mw}y6*gkp(uXDr$hKe!;k>0yt575? zza@oMJFlxo$3RFU-oEJcYNoPsVKQPeoKKwj!_%yqnoQ>N$-K+GkNG>`?G=B#GSz^# zebIbqV&Hwy!Jo3d-sq$Qt}vw z+O|&}+jc4SjclTmMhSvs`ZfSNt!@qvFNF_24TYEo(ONyx2~7E^bPTc8svAOkb1;R1 z^!T)M*nw(fP;HmkTFb-#xxRmBPthlO*exz7zB2W+kz6L$@Kz+QDB{@kGQK7zHQ847 zC$&v93Uaz>wa2=X@h4gtUkhm(kk6*Cf@U9uidv_aFFWzyiBppe`o8;Lde<|1!tFDC z)*ECUPw3r(lvR-%mG@qj6{b6L0!J*iY!o@68RY&L$G)WpOPcc%gTH@ZAv=ig2hHI^ z9;~W7*{v!rM^SS_J=>ZeJv4Pt>Cobx_mV#0HsP>i@OWXyUpq+RE4ma&&4#=$a}M$ zGrq-1hZi(!=_EX_+6%}QP0b{3Z>)N;6U}CAk9?pxJmOD%>u&7D7I~GbRYq^*TCLtn zNc^d%@Q1Cl+I6r3(BZhm&1(rRG{sixm$MB~oMuNQ1+XX>flPnL2t**O6a=OjSKAVC zASy1ti2TUaI-AYjCc(+AWGdh@C72@fjwH9LEXoC#Ab(|a0;Q}5N?HxX&gx(a&kG&b zpkvvVkuos~#9m}A`xDsrUB~tPI)Rz419dF)_%A}vbQ*N>S(dB76-TqERoB4^Ff43( zDhP##)>7F}BM*ODTk$CuTa0rmI}w~Un}*~O{Xu>dz~PnTH}XUdmqedn{p5v<0s)J% z20#Lb1+fkvxF&Nv?Q>Wo<+Cs2IFM6SB&vo~+>fTaS{6mt9nIh&wNPIxKqXk_HE=fq zRUF7b6}#dUWrd7qxU2SMDQUBUF?Ei@0o8gWI5&SL_!k53`0XLTckO33| zHaM5z2m>mAS6Oe{Mi74YuMmm=Spn9Xd-3R7k|t@3rfFjZD3AszMbg%`6seMw?ZAJ& zGdoL)l$pdpVZhv-84l<8=8#wf@Fx~Yu!xl6iH;Z9?ksTB=6XSgcdyTcms^40Y9#r5 zeRlE6n1u*<5+q`=z8b4q=Zg>Q#Wvk{MYCKfrC9ub{c@$XVK3_4F0FDR{$i_wPA_xY z+3I?^k}`}16DD4MT>pIbay=Meq zZJD;ggZ_8M* zXUkZ#^^bEd=?Gksy*vUb2-v$K%}ZM?1@lIKWoh-aqhnW;C7IA|>$c}Z%*vv(b=49N zv+RN(mEkfpJ_y1?;^-J8U2ynn6tnfVn9C1f2{iT=u4)2xRk!;zD`vA4^F+n{3-un& zf|tDQEgntpV&NGzQLDNm!X&4TKmznpMsmws()RC#ugoly-s?r$3Ge}H-Q4YHA=|NDb+tzN%f=CZUyKU+`RcP9BCD@j3 zX`c5I^)UjcmP62_;Xbb_Y{~9fa#9Z%NOFYV6up_&wKu_mF&R zyDgpmnoFAqVh+gav-0FiU>M-?l$6yCA#zqJ3;`Vt@Og4Sr&Iv&&47ldzGx?@#_wb` z)o5xf?^4M2X}7I>K%q|W_G#4)WdlrTA^qz(2HT=IozXB>O(J>lm|fy1I6t2~-??!K zy@)J<%2(X*7>}BLcxB7Nn~Y0;L~ruPb0X~1YtK^QsjVsqco2%m8Qcqh-RcvS&UBm| z-WtF5Xx923R#)5?P6CA^A~=LFjp@a=6*h6LuuHXFT9!plR~o*vm{VLIJEhP0?D)|T zLNQ?Pe0HRPE72nt4s+~Kw-!e)+UX02F4@R|;>J}p&KA6OcISnLr3ub|2sdm&yL~re zLRtEejSEq1CXISh-w@s_S4>K?bk;w?jUEbg-Zf!(kc{Gqy~n2vUJnyF$=Dm3dpI(q zfbDABmQ)1$$z6(uwM4(CM_K?rK*7KDOxXEad($^LU}ZJLss}vWaqOVzw1|O04!UpQ zh#Jef22IL#J5b~&J*>of+U;KdfBGKb8Aj}VW$*A9g&wIug9RN8JKWLLhoGg~Jw4pA z><%bOZP%8*?IPKW@6)EElQR;YWF#DLnD_Ph?@)Cb$BAAT*yJNv)S>1+d<+&j@StZy zCtTb*!QDb}8R7C(E-uf0pDRo)6E2{0qAHyvGjKus8YoK>vcDnryk7_Cf4wov)?4es zui5ZC)+b&!0|*SuX+4EmgR=?;r6W^jHQS94qcIg1E5JSURPD5S_k~p1yCrX_Q+pgQU@QXmmfL*{tB<=yXYZ%an z4V^hXAmbB}Hmmo?SK)y;TrH=Y0%ZKG3_&N~l7ElI&Rcd$M+ zezs8oD%$aIh3Hzk`vwSu1~Ti9?dP^Dc3z-8^gm>s9#6fjOW2#*f635N2o_?$y(GdP zWZlqIpb;uxTF)SEVE_wrnd5iEz%bwQX`w&@HUX4zphLn2A??@B2faWVm{>}}Pr=yz zUi}}2><@!emchXA2~oi_X8@n{>njsn{Y>?#P5wGmJ=l!nO+IUqTE z_#xk(x|-K;Btd}K-7HpD*Im`4Z({hZjX{O?~vYs_UEf8&B@)TdSkKY>RDQea3Nl z_=W^74+E#Qu}TupXz%w`ce`;(8f|Y)7VV1@;NXQ_*=^hE;dTS-B>^STzPUAN^o1vV z!+__m1`6B1cDU=!#^@aO1paHQv~Z#8i+XpWlQxJyi+Xjt$*hg; zdcq zrsf5H8bCmT#-%H4by};$yu{W`0ORxO1$!+JG_V&ZaC~^WsDWKuUOKhSQ(GLnH$3gi zl0mM}W#U9-Y5tP9or<*yKp)Ctcc|)eg`i&x68O0|D8_?!;*a5Wv-bZe>hi%z7p(Y?eHw?;^9C#3zOetAEQ(k z{>*8k3?TMtslg?%0oO-O$miP{l_rA;ZJXl}ycmD_jN)ZR<$pSS zv?TEW-|?t<CazV$vT z4riItHu%xHw(C@@*bZm>+ug_ek9YriyLK*@t90~+f!Dla5*2NQ3ePKO1o#9ez2i~Q zjbzY(ea;b&BJRGO6AXOWNI)^MN`HaunMN|tHa1ULjCmGy1!Cif#Vh1%bBa><*bg2G z-k~IbcaV1o?_jMjzxE7DROG49i{M4quQAa0T$y{O18+K_nB271Y2q9L4}(u~+gWx?49&wmEZMlf<@ zv8XJ*9k_<8tiL!qwH3u!fFO^GO9e!+lJgr_9#94aVR^BAX0 z;q$0??1OHM0=$H0oy#M%ixjj8!+yC#`%8S(ok7XKF8%|4kikf4rV2UOO?PQHG+VLPUBhD-1W;S;B^M7yeKfJvXwqO`wk%enYry-4`N;~U7L9?-JC@wgAL zK~b6UxB{xW=Gr|LJNh+@ahb|Y5+G4@h_-Lf^|t8Ih}a9IMtQsRLSQBi?5Qp>u3}ON z$pk2e%VYKn@D5UVN`Lta@+}A~FOJ}mc+~HUI*eqAzF9^He9_33n9p`R>?9g)E94}l zU9cLoXNH!=P4RJx?22~HomJrBH3yFjGJ|GJ6$=HP<-x*SMj^>%W6F|6U#cE6X*Z2i zuskG^H2GTfR3>;6a*Ag{6J#P;;$9n?AQ=gu%vln;1EAC_gnwS3*lcD%vZsn@%djpa ztIh&tnVB2}-b?C}N!~TW>CyUOF<5_Qg8WvaZVIYsW=FfG++b~fOx7`70@b{G&On!FOa=N zIxPl}Aa;|P3ElzeCw0X&5F-1DdPgo66`%u4ymUTq9#s&l@+&360YLERM?;a zSi$1*QS)&!cy}0+%;DLLxoZ2Rt@^&K(MRY6RdY4uLx1|6xmSAgiEV@p&o!$V?%guA z>|qawaF$j`eB@_{?bpu397=#gI=M_uO`gD>xC0&!eHi+!kXYi|5hqOelN3Tj&kNIR z9@AQ9P4ok&f(R$CsfUB$7g#wA+1Q3x>3qXMD8uHHh_{yJamKiaW>%t^9io{H(QGXw zL*k~*rGMMH8c%??Nj~$+=)a7^c;ex#t%(Z-as(1U?SI*z1r^g~Ln^TR7zm7Mdbs_P2QMt%mCnPeP^ zuTSS2%t)pM%;5vcxRgYX&EX(@eqjcY10U{CaD1<@bU#BWWG$PCi+0sh)yqm-4((;` z-k(~Q2wqz31W2?VHHvgejOejx7ltDgVt-Ofw;^^~-B~+P4REv9P3C^xRIq$CL$dj} zT{90jdN%fZhZd_bc5GMRVZub(aR5VR3(sBEoeqUmnYcijfJi7Ug7=T|f>i^MprKdfYkDl?TiHmmdw}E~ zDG^dvr}F_cnpu)%i-5}7Hf`&`ge_EYRTgYJ3)eN)=0X0OaG#Np7~%CBe&3ZvJ9xSg zzGGOi6s*8Z==xL#X+v4*86wW$Eq^aPifo5Pu4Yc*Wgbr(&RQK`>vjD8*gNa8JO7(t$i5t~B)l*!E2}5UBHmTrg;FRJOda#+27t zX%M+sHk`Q=T$V_P_tU`rG_k;ZlF;g93m8Q<@M(M8p#)dmyMySrylWw9sD1E8Zt5R- zQCdW@N=)h&L zn)vGR8g1fiB@_Ui#c?et%<>I!^Tlo_Aps~XkBi#{9d20;O-;FV3?^7|ffi4?l{Dpx zz#MPdy0RS(3M<_=&ZqFV5L;f_Hf;+|krG8PRg6@*y_)LekXVnux;Q}gcunLMhRMbC zT0C@&Xm9cv*!rc-Lw}RbI-~N`t%X+zZv(DG>NmfXsP`lEC?9|i#e^^i>SE51PSLg}$$QP6c|d^P`xp@K{%iVufh|Ivj2PEB^qf*@*AwE|H| zavteMG4CSUnk=O*pN0}Uc`+OX=zq-wd?g$$kj4D08TtQtwvYhYVX3I z>DeL7At&UFR)XPwPgPg3d2G+_1Ok?Q)O1%>*Ikk~3H*~cWpa~iElN||Yz{9Hx7y#| z(BS94y^stS17JLZ{Pym}*KgDGMkb<6N_lg)n;&(zz4;J*x37*T+uz22TI;BMeH$B- zM*kY>_MVo0tcO$Af1$~{_Er_q$==2?>ThLKZE$p|KjE@%07^-zvq)yi?QeH~fAPbe zM=e$AN*WOIF%j8{h^#O|YC}ZqHhA4lkqL7X%T(lrUx(w;=tFD~;On=Unjd2lk(6+$ zgSBmSV5sF~st}pZMzG(1#uJ;iAIG7y(_E-rjlbH}{cyVe@X&!W7qajNHr0jm6b`5J zkS(z+jmT9B11)4Km%NFGCoWxZ=vW1>Tq5>OkQs1&K0@^N`1~=?azc)fo9=L^+HL4a zhrL`dW33Lc%rc=;&0@p6x!Z$?>$Hr1O{Bq>bCX@yA8=GegVTV2#%@jnEmQ>2SM5Fj zvfI&@(Hr=PzB@1)<>J|NA+++;kJkneR$3(5({$=Wr@=F4QU*k2d6EP+YA>OPnZxlk z62E8FcQT~POh}V2WvHoAz|vd0>E)3Ac>ZEQc=&G}?` z2QEK|+c?i<^lf*4+6Q@+m7>(?b-XII7vD)p%9X~LXIZ7@f^;DA2;q-l^T75IlQceK zHYyrH4@ZL7)QG7C!Zi?Ap+Mxy2@ZUQQ%@Ebwth|01m4xHH}F+?w5ibM;sQMm3=W+W zOMvg~#)4hWBc6{6;lMt+-`o4TZTSKfJ=DNh2YT9*N&{toi+3e-01*jrN$#FdCk0^* z^NOa<8=MdLm)X$MK9W$iG_KpN{Y>yRxsQ%Eh!j}fdlv(%C{nLrD0TF(x4oTRm`AO> zubj65l6WP6LV%!pAP06H+yiJsq`-ov?(#=G^xapK-zS873Z& zd}Mi#>=Pb;naL^rdvEd1EOE2~pOM@QX$(kbo(u4FSK0;RZEV+HvI}W(ja?``l(S=i zYl0t1jD)HE?-|}9&7!KY^s2P)9vAjwNnc_RY{UsItPV(*2PAv|90cLTp4Cd~RHVhq z_Kff0erdp0`1imGO5k}oR}CD4aS5)S_Cfy+CyKIv@IIJgi8WJXCX%99`5b)Vzrxvh z5`nF<{X>n80k2BvgTxwTg2XzEI@$+r5usTjlH4o_^)lvI2*NoEGpQ4wTW^8VrMU6$ z-|d33AO#rGD`Y`s-qh0DWl`ImNMxOD%O~50lAHtCCxRn*0JFSs$z3U-CfR*L$Ymjl z+#?Ntej)|G5~fcjLaE|9#etahc@oj%J2HXK&iy09uOOJdqbMttizJZ?4{_}6r@A{k zk6`BJ+hE8+19YBjz|G{zGP9J?68!$mF(yff;6j+f1IcW45!)o>EfDf*OCkt*L&PRCFVX%xM`#NyW zC^=Ka3iRnrlx4Z3FW}YiAQ(K5^MKLxP#9cYph9XX^4v>z++TQ|SxD*0fIC1iZ|Qb_ z%l8u@FzEWN^Y%F0t@h@qsp$P^8eg%IGnpt7vrqx|Q^RuZ0>-&a(DWlZ*DpZ>k|dzR zDwN4B2-RrB7uF2V9nC0G^1BNywzSdl#T9)}_ZvoY(~%jkY6`22(~)lQ+a#Z2^j{D= zmn;8u!7QumC;|JPngu1skkLYEm}`@N!Kjg(sRLqvaV9f{EBJo+rAL6D@45y8Pn0$y zj(!EczOSo~4gbo1K345eJ0`(zMjSB0dL0r)KtvQ-wq(Lrf4u$fhwtCry^g>71HbQo zejR_R|NJv3raBiU)idjFR0)EQH>(1YGM{ze3@xuJa>R!h_Lf#g2JjTAANNCl8kE6{ z7=J6F8+?*nq>0y}1;02q0L$-%fFI5US1J07R}`B&Gn}QYOEBOd>&(+`H|>Y8Rc4;4 z5KDvDLZV_+5LhYfbI42%a^sbMqBadJ~6t2 zLX;3iFC>VgX{~22auy?jCLSAqd$O+<(LC81yIlnGV?xl6ARCmYeMbg(JEjXf;Iwrc z4!IDeJR7sM42S@Wv86GV5nhFKAILM4J6YB>7Tik{k(LYX$8)D#nlGw$RM>-|3s@>5 zh*s(rJ>!P)>%zt;2j8Uh4vbRG`a? z2FDnobn#5`l)9H+vDO`bTMwaAvji}np7fiSSgdp@(D3rYlbFdJqOO}H8oCj4XTosg z9K?~0L>c`jbaw&6sS?M9@y+IfBBv$ z*MLaf)3SSq5c^9dQZq^ICHCi~o|nN0l{q&6qaZiZ(q-PB8zF0dG%xPHq_Y=wy~lKu zInS{ikp&}r;yNbrgSG2cf|8{G({uw*=#YE5oiIYjGw?uPWPPZ^<`*zhF2X@t52`$U67g5>#sV7d(o&s;LN7r}jz#iK7Si#MSH-V$URLI`+*iIlHf?Jx@uv4a8U z*7N^99-L=?MMEckwi{x@t&6zK1-$YTO!yF2ZU698pM;O_EvV*Vi_4^QLpFAe3|w72 z^$f=$$fyG7^Bk!9`=Ad4NkLYo~csLTMM+!A-$T=!U;7c zRH4~>(OS!(q14)?5=Hb602&AiJUBYw&*;T*KHA^4SVC&3%mqh+6}H5i-M?I8I`OQ1 z#V*{{xN(IG$}Wa$Y3V?Hfi2hFkN}xSZ+I7Yem?j@Bd%PE?@EzPp-daD7UlU=G6vQT zd}8a`y@vaLML3uh5f|4KSV_sAy=5v!;yXB!GFO0_E=j?w?`_jeEh(c`I2_s9;!(oq(o6=TLHK5CF$t zat8uN6|YnTfN4R+XZUtdp3ydrIMp>)!gApHAQ~uO2^y= zbpt`!Y8Stzh+TC!(y$r^%8xd6MImoGsvVB(lya=j9#bkN2K?Vrm2G%8$ zJo=|YcdXq&$j$W*;u>sxY^wHmh8gI4>__M=!;t>FIOxIYn@c5AGZJn1QT#7P9+-&- zz8brKHVwXUG_|+1ak3o@%-?%c=SurK`VOe`SgJW5o0{tDaELb%MPyfb?W%Nxdk0$~ zUxr{+CRqjraWH@cpY1i^yT(>Ms-hfqQqIh8N<~<T3EMN8K)~mkX26#% zX*gT$`2`)71>BJMwBWe!g*$pVaU_0(UO}^ei@^P{J^;q7Fi|*sa^x@B6pRqCjyly| z76Hgo5g}%u{#V8K7Vlp~$@7*dgv{J^9H$lM4b)fehT4Uwm(usi*7*)+D3gJNQqI!j zID>5PLSsdWEKye-3W;*DOq7>slLTXpQW`XrWYtp*F|AzLwS9MPwp0)rJML5+dfZ(? zht-N}N7R>r`H{OgRnPsMhyB>bX~#krE#T%JlX<6lSc{g<6k>OWR&nS|8Fm$@Ea9vf znkGmpiEEew{15BKVVIY3Zw3?sIW?C-wF46YHJ5Q01}lFV%WmYj@jhSCx2OTPB2w?% zvdL^_f*gX4gB+3opN0Ax zKcs0I)qj83AF?cu{%PC(i9lakI}YZRCSUu#tfEox4>$!uoUvI8M586im9H|I zaaz^>M9&XtrYzzzsn;SnG@EqgF^>3@<8VHM9OA7D52cI?7#>6o#=SnXknf*qM`boS z0Q)J@S!`P;<#8#4>9cCDIRGoniZ!c$)}4PwKbKVj@&s4su~Ge#8|F@<2nu$JKo+-Y z(fV-p!5J?2CH#MOCaQZvU756Hy4G%g7uBFrV$8NIhaxoZxQAdB@du{++I#0|5yF@0hofMY7?{jdOZgPGK^T)w#)180D zRZ@H`gd)z$>LVeDI8EdSQUD|&^Kg=3dNCN57z_{IMPytGv5HtY>5FyKCol`mJ^!}u+CTxF_(gJ%Ug8ECU+PjH1PFMhdgnM-HxAK9w_OA2P z_C2LzfVnWbL|Vo;2lz?Z6Q8NArEHNUGJ2TC6;VV}Ka8x64suoVN-9%Md?kvHw3(4u z0FN$Cm+1*6UMx52um5fO1Mi}1%VcpaK)pl(PK*F-W(1%(BrqpBfYDI^nvZ`1C~?4- z4O{AS`(!zbyhM>BV2*$#(qu=p4_IdVK&Z11StXui2b-C6wMAJ|1p!ziMBEeaSe?#f zzEz|*pjky(wD37FA~=%m2$q~3E!DZUBfwxgf+e=2o3(2`((W&$l_jYg*2H$%H{K?J zfu&WzVmoq-IS%Yl^kYA^*$jU)0S8)Fz<$UYbN2iZXaB-#$h0HhH%#LdpI2hOawD{z zTS#{TqNFUMoAq+}hA^9WEn@s*cO+N``hMC1!ulzEK8GPAXK* zWdae7SWJsFdTz%Psmq}bhFm47LivMZy44a^+j|7QVHOumC=T3aSN0>#+;2-*$~cqR zEfOwQ5>7c^p<6YLPuN#Bm(70mCR$uMk{y>RAAV^8yGZZHzA$wCLQMLqfwD}jt@Nww z6J(^`DPQDVuv3`m)meXUv7KdrTP$QVooC0ZQ`h6+MRvMey4J}6X3rrSEqUDZJm+i}A6FZrsvygsLd5-wC{+i~ds3w@O(HX>QI~4APE8J;1JoCZq*W~Ibd|8beErA$&tL!c zd6WJccnvN~_nB5bIA_WevfZq90>oMaEEFi;xEX|&1ex7_V>rLZ7Zo=g3|;NKV(K~! zo4IocR{|pj>)n4%P73Rzx!tKjq#UGc8O!3zA~e3<=pzM8SJ@PC4v{QcbG<6iiZ$dv)-$BtrWA_+Q$q3VZPgFVmwGFKk-Rom?Pp>8=)#!I2B+#lcP8_(| z6(mPU>vp3kdp@;JWtDW5C|B{4gb8u*8A^o!l<3DAJZy}B+ko_g|^Eo=p!T~wR|m} zN7Z(gi-La=4$a~;1JTb#L7G6WCfqts_lLZY(HAW8KnM81McqmseSSe8G6&#x*o?}F zORPdx3opv*a(>ax>H>22gHbdoBdoB^;9R6_uuDMG3*Gj?|es-v-*YskNEY(FG~ZiB(<`y>rTjMZvGUb@Jp+` z^RltwyTrJnCSAGqRd1;1=VJ8tc9=pt>5ldX&m6wf$!!>I5J2i$ekPK_6*X`#%qb=l z8?JK8Obzv?3xXK!*Qup9{BBWAuS`K+nSy`J>!lmvl)iCPzNL0uAARD0wKEJ`u+Wb8 zsz?5eQKP`{2PnGm6LIbyV)%_XoLsw8{(b2V&p>&iIC0 z=k#$V#p8V*cPh!N*>+LLh5rnJJ9y_ciwJW$AxCpM;#nt}p{jUq-?R{4Ce?W%A98;Y zUe^FYjiWwaoH^xnpoKj2-RGk>y^~Xle}~{il}3+KfAq!F;-%CZ)UVSph7WYmlY;=g zFOo@dHN}SoUw&g&?lI~H^TGGSWfX?#sJ`ue{DUcU=@?3I*m?|bsxQbfe;^hzqrOdX@aFQ6P}}l=qrUo#U{?cHqLj|IDoY-Id;Hg{pB~4nrAhLQG$7^+ zM5x%ntl4C_iIg@>$>Yi4EzP#BE{^Zpx!N6icVzfe+njmSp9JAFQD?SQ$Nz`2u6d0n zOrQiVP=psqk~Dv^Ne&mLqa8DVxg+?q3j?}Jl}CTg=aiS=5Q1ERf%&#+`>MHgJl8z= zE0;Y(Jb40x(>A*#OQSr|o1M~d5T8=EfM((tq(m&h;eaRDZF7+sk0Kz z{eE3}meEt$ovLP>_e@b~8YM+4Oi_HR9{?9NjMMG0A#S@4#i7);!*k=za~d!@k!xGl zJT+0z^F!MrZJb+lMqicCV3UYAsje%!Ir^K@rS(rGB za@{Kp2TF#Ja!b+GuxdH8zb5oD*8j=Z6#pRyBiogRc<= zx3l>uk25ROv3egXq3+Q>tqOu791R3uDD+H3(7E)U0G0+k z5dc~2m*+38#Pu#Jl+qzT%+OnOCtuKDhPntOoK13>skCG-&Td6 z+ZpfSu{vLCcNT}zF|0eey57~*N3tV^p>Kbq1R=?D^l3O1+8HteGl>Lfc?w6!Im!-j78!+uJ*yE$t3nusVDb_P8tkdsS3OTpi4Dw*V*VbVO|bRs zU_oYj1mn5tPoSOQ-F;MP260ry6zp`qJtNyj{nvSLZNTgXcmzN9J2)+#W+xZkSO-pl z3?N44A7qDxDj|qDgv+`^dG+dq0C9hl)9x#T1V*5fbm@QqX2t$s(klUuKcR&R-S9Z4 z8vtOVv^*PcpOBWyG&_IBleyNF?8)&YaT=(_wJcc?#!?nqWO3gC{O5$}mH`-M+&PKQT9uo0;o;43VEAB@Mi07_u45@!=i)nw!H@Iuu zbacA-Fgg_`l=5E~p|ausOi^gUGhkFhydD)gfqR#BeIGB{Y zh-ZpdER2ysoG3${UQ=?4JB>PmV3{V73#>w)l0&*IM_1>wJ65o!{<5Mt*VY}}(RGVD z1Up3_iJX22BDs80hY7awm=SkuNlk02}X zi@h9oJ|)kiSkINkix^6P_i-9aa>1p*s!7;5%Ji59|Mz8+fNd2YP<4O4ta1KCW!g?o zTPhtDC5r`ExJhC1MwX3yll)1R}({}A~TgP=+IG3DS+CP!WmSK z+y&`jIB-0$zP3XgG6R3U?~}i1310u?~tn4gc9V4x@bJ<+c2}}_>7$je&mD!1|s1Pm8^Is6+GSVap_si(PnP`E1ueT!3B+w z6tfdd6L6SGeau#X&z8jbgW8%7Ba-%-~K+3^-7A~eDFv79q&Nii{~ z=1J<+JOSxgv!qF7HcIkjqq8hZP4NO%9(xy{uXR%wn~qwJx6t#%Hks6pABK*!_sCC} zU(tVA)fAt-A_nVDv=;;lnWy$ZsHX^=^i*LZ(WqqmM(}^`C{hB7WX$NzaktN|t)9ND zX%o6z%1dX05UtkMdab50MNo@vO4REk#em$$0K5H#7*HOuKf|qAn~!URW(fe6Qc>Ap zvP*!6DTXZN0s#hW?|2c)<#sE19Orkitp)YzxO&T_w!&JPe1Wg#dG1=a9oqaZgP{E8 z()F%9Qr>^6CUla*(eEbI<-!s8Zy~yr-0&W^@8t^jc+aonzKQp7ejCm4h>_KvR90b_p)#Js zsD^w@Exb279x&$Pkp~BmAh~7?B1fr}J(hpCrvi*k(5V|Y7VCM~k%9*)U|@tPO*6;? zBu;}gXsDuhhd~?~pK&Ias`=#-fh5JBn~=1Hu$*qCzUC;ocqia12&}FlVo-0x0Wg{1TUwQv~~e;zrX6GO+V$s0Blc`9pL0eYhO@F+t?~4X3|=N9e}gw{l|YfynH^97W%<9&Dc zyUgXK>dsv72^;denhzCh5zjRL09RhMt`sWuDNpg_qJ%LT6*;$c;3#kebqO3lO3}&2 zFl&4xoYG%U`E~r*lS7fe9L(jjMqsq2gboWdDRNTe`BpL zL}EF|p0MEaLY8yxi*Gt|b(8xh8I zf%0{;_cckNaPWYBXEI9!ESfC1vf=-8*?wHvqOZ=b>&x?14x$E@)RjzD;5>hxTc1RQ zJ-kyjb|xBppCKPPVA52x5r6ly1sw)Y49q}Y#3*|zT4`G;&{Ie;e!^`&Kj;K&bgg_> zC8*KY6dhfhrM?yI_cv4!D4MaBv{SK01$^3;c~w z2yQa)dFw@I`9d0&zgl2TVwFN9^4sw5?~CK`^A%n?VL1j&@BR@yH86iJ6$a@K3>I&j z`640r4M8*k>IGKRWcD7cQdgYCuN# zoqm+DCdyT@Dfp9&7aEj;yqmDs`jhi5=O6UpRT2priH#Cf%ndT--H%KTITLEKk}h)u z29?#fUE(ClGKF8gB(Z+6OU%f-3466mJlisezH;{e0X&tLWS4Po1{DD{m$CE+CJ#9` zF$ynCWo~D5Xdp5(GMC{911W#aTHA6Xw-J5kSK!fk2ne7XmriZDYUQ;OS0z=hUFGKW zK5!*kVwoaUB$ZnKeNJOIiY`MfHA7Q*kw6RvXfzH^p9Us7GS2wof?==!v++$qOd!!h zG9f1vJR6EZ3(j!SM?RSpw6XUl<537~N~TdpFXFXZPe!7)z!UFk$)kUZK%^y%MXBgh z^dEg41V2;Kry)0Hp$=mSYj?q!;8Gl+`B3Kt-CNbQQeMF(ohO|o5N_dT8Ex~P+ zgTBddS&7;&qhAqy16_Zz3k4&f1NQ2K!qIRLeIv4ArrKXJ9IKt24QHpNh;}*w)D^=L z)lV!Yx}tUX8AJ7AbSOogMJy%~Ykx2!q8pTwH!(SFm(VWP<&GJpti8Yuu_U!B1(Tdp z?_og_mP$*ECC?eY$R@GJTEl^fW9>JhROg6cQmnmY^pPrj654-duNLEH%DIkEOcEEh z4qkOsO9lR|@XFC-_#Cq+cuExu87s|orAh+kM0+XDnkk-l(M{qc?9x<9FsGHjQrS_h$UBfB%HxfrMZkEMMHt=buL3ep?%!E*Bf~=8YMj z0#l`Fe~N|4+ajDOZ4oxaZ8@m}eEorr#y_r>=O3mU^U;5de|&dp#%I$n8*?|t*>5*f zJeXWgN8|4>-gL29>z=N|jmGb%>*ek0e7bH(rq=y!dNG@vEWenK4iyPpktKY>K$8{T zHa<(Wq#dD|ZhkOb-FaW1YUliVPpNtT;gmeRY)a#|i^USXeQX$3?WqjAEi_JlWJrBw zH2!e=c~gIX|8=(bbu>O%t}dplW<2*vtvbhiu=j0-2S~C7hbk;UMA-svX!Evu=z|&m zd3m-paO^jKnXNa=)o(vLc0XXEtI7Fhwp{!{oz&X~EDsg3q6ikU9)KfZ3&uX036wED zHW)>?1LPY$TO|TY-lmW`?RYz%P1e)({edg;FpYm_k=ND8lUN3O_k`$!O$s8{&@~9U zp#!>M2y{b>*t{)-I}De$rhVk4t!V)t2ID-GY&G1bRBS+4*%IlfL$=Otz?Fdy=-9)Gp%AGdBhU>}VVyzaOE>{oD8ct4> zY*BTSlO=>v#A$dby@Dm7fR4bDDT1^iE+p8<(rL)aWPPQh|6{V6=~4|`5pu#TtJO7-|HuB`7>k-l}M9S=w^|ONUM){)wLI zF20%1HbCa(6TS}n@b#lcu@oyH$rthUeIYemT~K&R(d71{=t55^I zdM1mk=8k@mP1yq7`W*cp7{N-tK`9qJ;xVI2z1dqwn0-q>YAK7(hN#3+cgiSl=mQyM~ygx zJdpbJC69aQ)VFMh=mO#}0om!~tO7xCKLOqY1alpIgBn+cw;W9v&QVI6$Bj z&^*MO$D}H9Sd(1e9c^Zdi*~u*PbU}i*`i&#D(DWNvB^58hkF6y1$Jr1`wFIn1l+=o zfY>LccF+3ZJ52Wrf^(0A;V{J&y(m+ch@%P6N0;;0}@*A&5vk-sKMbESg z@{D5)9ty&%o++xH);u%^TTi8tdAZ}|p{*IY3Gy7-dZg`TcZ`1y0+q<(z~Fx9s1~Jz z$Z~%oi!E&>KRl|z`vqH1^Ehgv8kPaN>-bTv?tqBBs5veIZGupj!BH)i|1U74{1gl+ z_6I|1lchv$VX)TmNK6nFYF2+=uhkH(^ooKUA@zIMyYpuVw0x% zp&-4-Z-H$)()<&6bg@kUwh8}X;zY=pxCc8Yq##K5IY;a2J)Pwp+5WznNJ@Li_D794 z!ki@i<=LHt?+xQ-OFV+H>TsZvBaEWHbKn8lRhCiRbvoBc0}>t!2k$% z8xc;~Lp;Ex1UXGAE1`2p{1H+LQuUp>0Z0;DoU6G5z*had>V)Z1r%~!=!ph z&k%X+k7|bAcCmh$frSv*qNnv4==UtP?676u&{_65F7ML_>t}!U+WxBzJ+_?Q<-O?B zg?qQ6hh{M8h{{F!Ggv8uZ#$7q)@yXVxxx$yIe#MG++3ydqU&sNzl)T|12)?a8Txy^ zBX$V&*F&-oY#%k!a}@p5>=37R2hfP(o*v+dbN$gMZ5Wkp&=l9^JW|@4_H0k2t%-v% z%xvLmcF6_|q(^@gqF=xHY=i5*ANl@2n1yoJyXks%xtM@RhsG5t*6Vj6S#N2Yqbkx* z2}*Ag?RN!@v|MlKe8TKC!e)p=I-(6!*aFHS2v);4@l}uSj&)$?6V}1_kRWfQp5M9S zTzoS;tzV=dDM+D_ciw5D-YxImO@Em!W}D%6-AX^r;anlm+ieYByAS7fjH+~{7foN~ zw8xFSV70ON?i&6VnkxZam!WS56ag@oQIZH00x~q0As+`Rf7Mw_kJ~m7zUNo$qA4O5 zF)LEkgWE&UN7AOZwp--T2dcH{wNP7fB{_-v>pR0CB~dG{wLpQQ*n>%m9M1Eb87{vH z;g4Ub@G6ZWret=t+CK};YJGo2gCDOi-nje1MYk%L^2X0$t2^EBq6Txw$I-rVz?=0sYrpO z*-_FCUl%cFSsJ-5KkALsLtEjm3|7^CpOOsX$3?wVreW!3b^RTOsk{I*p2X$1yxhD1?bW&6{R}_AYslW!PWu^ z@D5xqdBk|ko!cNssQ#wS>(*kA3_cVoAeS6G6-J}{}ZcuMw1E{Ai{Z3_8RdFmU5PGIn!WKZ?L6Q9D-NVJ#C#A zJ8}+~O$KNxSfo17cr_U)!+3f@wD!5d0Giwx&DcAuebKghO_O3{8QGpm1Tl+~8GacF zf5yYu?K6-BR5#UbS0NuCOg1%$3_u|yOVikQlw!XJBj>G2xv&Fxw*135r=L=PKsYuC z$b+|=NseU*F0E#84CoSh48slkqQN@hCC-x0Yw(LDWX7Ai+S7=j8V?#@jzomMj1`3Q zOd~M|BZ^G<5;r=pSGZ|Q(BN?V*y!~ae-_$X|5IMludZtc>c)VWJhr;lenKd1KJnAY z_*xQd8c9r|@?hlmnRw2p=z(c)6h4iVI7@0o$+s^!APb|Bm;G=ojO>4+e`di?$GfI2 z+9Lu6dR3+Xu+Vx4C264Z)R!0v}#zB+>zfIBQ41MOt0e~nTm zv#vTgmo7xiLe8i4G>*%RD=%MwW&pgR)Pug)e;uLZjguhXbpSI!%)dx%Ymy1=C+W~k z*Vi}Aq%lRtk|_BP9D_gV86K%=#}^WCPpMG~{p3ChAFVai7zC9&5@yEKIKL<7$98H$kea!+vuHMwUz?hUb_t+P$?C5 zS!+whA}Jo;T6+3D?y~TSK^bAOt52hAs{;mYzC)zs3BjNx^DwcS^g~jK*ziOep?`VN zlrLHuHpjzZS7;N{!Z8Kw+pcAViT-%V%f{3gI0XeXH0rin?#cX+NHlemy-ZRBU((je zoDX(`ahG;)W+i=OUmx-sa%f}YJcA--41vTX&wQq6si6`|uZmwoE>}4fQW5VA1$(;l z1Es>OSE{j@3f{JK5(|;kByyPag?|Vf=?f8<7z6V3GWn@$+mgL6O0-03%WN1?SCpRV zeE7GRLE;(yprdE_Gq zFXjXe(CceV?>Oll5NGyAa~sarx~z=z(nqRQaU42Qarn2cEBNIgeF~MsKziI^q{l%4 zBBJ90*4CD!#Lh(!q-}l0>g2CV&Fw#ILk&#+!QzBN!}&6%hLj)0~-A`E&4jd z6$2=+t8W8E*XMEfW?^@WL5T++2ai55v)RbrJoQ?nArW@{}_I zmrZCO85qgEETA5+-lIYX0fIVd7wE2$?jM#>5yMixzi6UmS!VIWcerxCD%5#ZTz-)s zsKV9UXQC>3_-y_A>_(@{n5eH|2z}vHm$wc*U)m?ofultMzkdjq>amh)iYMElj~JQ@ z%b(7=M?yaDs|A=0ss;1<)|&qnY+bIl>s_H>pWJA3<%kS1MV@;Q6yOTHudQC4>z1>b z&$`i*-WHLq{s{?lYD&esCz9QP3NT zlxi|(k3bHXFCE(LDrjw6_f!GMH%b}W!Jv_M_=TQnr%^ERVZeQy@=VX|mKPs{PM7~- z_$6^x=jFWJ%RqG0TfVcbe6+V+Ojr!}nQRot*nO9mG$PbVtJ(|3f{^ z>B{VXwEqF$mf4x~-kEAvhexF}akyZ&EO?faj7_tx1 zB+6x0ij++{Pf4V>DOVR63TiNl@Q`I;#y7Y7F{#_#=GWlsgFdyU zf4SKTA%g6So2`^_@QW>~ds_Owux;Hu(d1oq6Qx0GZnivVZg`+`9JR$?xNJ(;6>%<- zfG6_i_uGHH`sQ{JEsmlqb- zrzUaiQ&l_LJ{@U&UpMsTk3|Whgk_2B>GSPBmSo_H@igi;edc9&*G?s<>Xta^iWW@M z0CS+X*+yVwDdlF%1>><-riN`%9CX&uU{OL5vrxo6@6T6F^cm4A_VfhHH;#M~e-z+n zmWF?Jwx#!V<(c=#=RdD#Bb_cR81hVV+kfI(I(m78gN{`2L{r-~6%(z7vb*Hq?A z-kC*)OeK-G3h&QYw-h9~wuX_yuxX_5)_LTXXN*Ta`W}~TH!;kz={QT37@Yg=t}%ZV zx;2(0_+yECB7kh#f3wc`f=_WKe`9$*wIwyVNLd_aFV%GWLQSJAxu~h&e~+f|$Ul)^ zS-f`+^%3q-3KFYT?&%9+<2427UDp!d`dGBy0M416WZJs7E+iC&go}3`yxUKNoh1^< zA(drwX+IjLNUZSekA=lj;RP(bd^@w(T?rym5=m0X)afi-YI4<(`H+fOe-h7v10@$K zayb$nqfm$0&e-C<(yhyric`eGy6sM`gG zd;|-@_-K15=MfY_PcmcRf7v(NIEjKEu<)V{d9ZUbo5n639uR;sko1M}?Vf5q@1@{S z5>KeDE@^pWWq5bCGFpRUuEf_Jz0I9P;Um5C`!&t2`Oujv?-}fAm6A3tcoB|uGuz^Y z5>WrjvPSDXK+@&Gy|Z&TweYcahc@VsA}X*dpb}UKcm-D!g%Z5eN_B?VoN^5xge9ak|4>vnyIJFe#l(iW$uModZIl zsWqj^+g_o4Qy;w##^8kFSyl3`b~wX0ISl}|q<=V##KRiC`pJN{K#d%lSZeR>jV{Uo zPM&mosPxg0AP__pe|R+>vV)Z*)N9&Z8tteKpVw9CbvSEg^lnjyg>u{eS9&R)ywoI||!D+$4`Af(yWLZUO*$q*u!Uq7;kdP?#6-&ZKbIZoe-U z>kFW1k%&pL>kX#RU@rWpXMP6|3yr^Qv`Aqj2yeHH=$ilOf9PH59oa`N+w$5&Jgo`y zBS6uekF;v)!F-i?*ZO zB*e6}LSd|H7xf8Fbclm}*C5#M&FD!$L9*8h`*^LevKLm0nXpn!vMfxseJUF)0n z%~E2VHc@rCTh6fK?)}Ybg2mKuEt#p&6BfoZulach5C1_n;R^>DKj%9k3a~YfhC33v z&X9fc4Ff#P#A*7V&UDJ5jh>QCr-aLv~EYx%3O`ErrsdL-tt_8--C%~JQFgCDb zO0(c?f7PQzSSKv08=WI^riLbh{y*iDTalygzflRG%q=yEIPv%&MlPqQxbG;iPbv#& zcbE~Lyo8Z-a`1} zgPNxD+;0~r-KzB=}VrvM%&S~ z#IZ5XXLdC6P0r#WrO=DZD-TIRHA&70Z!6<4c#AnO9_)(aJLjFD4rLf0i_J>qi-7BO=*JHw?m)X-%h~lx!uE#ag3_yeM=d)e(yg< z@9`XlZuF8uLMDu#(~iG3UDV0%94AW3f5k39g^YqvzFcGxGOpwzhh%ow7G;BJfBo|J z#T0?VAw^h-O3LZzKuLDNfh71wv|i%mIY69;NIr2Oz;L762zYtatxG}&ywx6bn)*wa zvM@}p@ZGcKJ#Wb8rZqdS8Krqx##)OPJXF0DrhpmJ85e>P)EQk33GZ@3_?S5Fe;V2{ z!d0$4aZ2`8)3@%kexayN9azD)E>wT7Lsg%y_i}v(Zf9-nC``sJ3ut*Q^Tn$uy(ZDu z+WlW50eO2wQQaF$3mA;}9AE=ZbPqjoGHOg4|INYg^B|^Z`uX&76PG-+QCtPT*q$WD zp_8Vr{_Lt8EwH4R?|;OF{s(efe|o+?w%4^k!naq>2QK`1G-|5uFM#L?u>C)PXub-x z#%0>Md_!8U7*Q%5z5r%ixb~2OB{OIJZuO5*aI>dbVD7O4Jzu}xe?)X1hAcTJD|^-d zd?U*&JC$Hz!e0ctkml?-28sd{7++@CKwq{fm~-Yf#FXDEt8a`;x{CW3!*lSZ3ZYmu5{bGW>VJhXk<(BhZB zy_1Z$2gLmZ^TWft`yZ{{$VjA7DmM?ujg72u+68(K`R2E+bawa0!++o3{q-S`vP!-2 zOvHR~XzVsJ7D`%!hXPwJF+ys?=S91{b!z*u>iX<_E~}^AUdML(A?r@a$dYN0N+lwW z6}|p&Dm!?=#M{G8CEHWh^hJvRw{6-QL0`(eV3fzKD-ZOrgyY)b(3f?^507 z2c8rEq^=0kp9%te*?(EP&DydaIs$Y<)9ir3ZQb@o&U~D+evhIc?@|kCiFG*e(uv*P zmm&XCvwteT-g%MtD$*iCv+$Bj zIyI|MHxcM-q?nxvP}S8Q-{!}}32%0LxgB;AZ#v$d2$=E155>=)a1~!^f2@!_Fo*Ih zYFXRu&!D)Lu*xbgP;@vORuxk0>9wG2IH@D#;w#(=Jw+>7QGGO*@6zq_x?9sexEpK! zZjFu;&IOFRyMI?VZZJ)fE1kX8n#I;;`)gSN=Xs4HJ$LjFO_0sa(?gdu0*q53y}g5D z!8`XV6-tk8DI_`O2X-3pN%qmq8|S)jN-#l{jJ{cP1#{OH#9cWh;U6tL5g_D=u=s#C z4&LXvMvhYhTuLW2C}})`P`mQdoC|+TaLO~@e1?C%5r3es3GGl{n)1x=uwx@v-4A4~ zDcEYtN3fep)|quPUxUz@1XnxcYw7?hk(DD3vS8SGVWGg)+v3pI=u8Md)MT$&S$R*K z;db@V9*PmsTWHQ(fANUZdwJQY3G|;e)|Er)(vdH54<{eXr=cy@gm6lvX+VC@eAPrB z-uyk1W`BHl1M$uZBh$Gzu%45MZ#I!|E$CxIOJH(yylik(n}DGmXK3%e^#J0~p=#Ey zBLQ8@;1h@S+@Ykvq->8`E>G^IL5wM zXgdq~Re@74u7ThWPIhcZc}h$kqeO-%EHs*@U+H=(IQrX zT}1M9+agp6R5f7+I<#fev#OL!giQ_WigT)FUH#l(vV$!6ZI>9z-)0#GZYmIN)+swv zAc+deue)KLGLbiQ3D$Sj)FLVNoK8Wsq3nxb1V$v0n_Gcdw*nJKH>@BLI$05dtAB&l zJmh?@GRZ?g+~*;eF5a6RWuf)3)0fm6TA&RtEbNlb=CHX=~|hs7nU_H0=u7A9J__TbBB@Z5$Y1eQPE9{~2TI@Scj zTzxL?XyfxO#T3Hp+pOwBWfsso#((EPhAZeu&c%gu1RV|a2ry2S$zix~MGeFdT6q#F zRAkdGhKAy+o(uOLP2+J($P|kJ3nPSn#O*l&2$PxB+F4Eh7qko4}br8cP zjuj~&QXzn=EYC{{2(*X5{{`Y3T_o(iuO{v_BiFDt>36L>hT42qk0RM=Dds@j4$9J; zt2rGDC*}OU00RW{W`de_W{XA)nRngQV<$`!{I(l%uEa;DH?KK;s+X|~j=2_De)||g zCT!Z`e*^N5b)-zUKh-TiD1R&Le@5d5K=$Yh<$7Q;2eghF-H;tkI;>&hx$u2k^JGA! z3AraO&TRM@cQFWihF)_$`)DPSYqYs}TTVzfi%FhrO+73wgTbmar49?Btj>b*OJ;}F zboMimXL{%N$VOdJEayGOVTg}6+Dc)7sn=&dBldoRzA|iD67^DjDt``iBgi4zFx#Eg zLPhb+&3^m%qI3L51~t(ioIe|iV*r*eUP`1O38v0$w1&hJeNUnhdp|*6k!VTOvk5Ad zAyZ1|CVfk6z>Y${x|Uj?F_G!picKS;`07um0&|7Zit7(rXFc>O4OWi0^HnzdJ`E7= zX?dtyY(8m2Q>^n)@P9)e`}lzi<1K%NZ-DkWmp?o@3H?qQL4UPKO(P8qk(dCbf-Vk? z(@43^hn9L>DY>lk*Nedus^pJ-!0!mBKh+qN_|Z%O@lML^%_3WA&HDyEU~bmi;F>7Hkm~mf5(Zx z<0zg@YG6B5SbsCD_NoT_IB4NqKHgN7oCs-@=+*TOD97+I^9dCx55l@q3#-2!Cj9t3FOX{Giyl7! zPwe)`k{crJuiZx62Tz2S2Ho9n^+^Fl-CO zS4tXzhkQ?~vZo??arKAna9W=jLF;{u2Wz799s6RIY!yo^2A@DD+3Fh&a6FPzlV6wllP!Fod*4AX_#@!aXkuiNC5G%aevAgA@X4xwv);Nw_VX>Eu{k3(bycZNmfJ{ zxn8^rIDbw~hhI9K8j(?!*|%pD9fFaczCd+I6BdoNI+Z?U57cp9d`Ix`%5@$Cn?LF2 zzXQz*o&P}V2U(23*JL5}`IHT-ChJf9u%?#+()5Fp2aHqIy|K~QJuN3lN9f6^t$(G? zTwiBFxQlt>hH$_>RVx)of zl3RQk(fof3@G!n&ZiG`me_jOA@coYseJ$(7ko3|O#=7=!&;Dput5Xdr@XFv1YsA5# zAg4xl?wFU)pf+;or6Oi0Vq^Y)cLO-;xR;@C2NVG^mm$mn6PNO%2QGhEZ`{Zce)q4? zn>m1nVqZKKFc4dby$&|95o-ekj)A2(l!hw~Im^Sc|9z^us(FcHO%g1;(?|7H=T}9E ziva!;7fEmtDdi_RzQ_(Q0z2B=Ur^&8?_LO|+XCTsLiy(A#noG5E=1rbK_V`0?xtJa z>@Gfg*ZcI?<;`ZRl=6Q>@Y80iwej9pZI_m1QQgzTo3!0;w$da)=!r1ge7X7Si@)3q z=Nc)`ydY9Oyn7XC$lDj)MtCqLysYaR*KWUDf)WJEJEr$JpAv?b%Li*2_(34fe6XW_ z=D`{stVB3}@ST5q#i4Ha1w{peht%=`g^5aQ7tUmw-U4;()qO`=ZFOkS@uH&N6o0h0 zD;i*I-F&CfHb16K+U3-{Yw81$b$cFa>%Pfy-ySbC=(lDaVSRjm2ilkf-uI2Y0(Gi9 zN7arKud8Wf$G?4rbbZ^WB@J|YxM@2l&a8-Y>Y$B+q(XnAJ&EZ*ou#t+gCkj!qw%hs7eiA&Ic`;} zjUPnDk=~*Xf2ZA3I_%ig_f2}>6Cr-mEwuN#$9sT_#r=H@vBLY;CRXSNEVE>&z#Yyl ztgcGjK2qc*R<3RWUxxa>U{#b1j4keH@4+3ZNQ3oDv@867N7I&n@Jj(AtuO*$zuKaQihqyLI809&K5 z7)D-whrjVtL4efW-x1Bg3GAT1!3E%TAr7{v*OzD;0Rn>!*$B?JE>2=+wnJ)T6Eye< zPmZUdCs&nznDC_=`W;?;I=DDx+A5*gngxFfXg)%d zXT{+f{DCpv?+^%S2F(`UTM{rJB94XAy(t#bl8j!w zS{{X!`?Om%10#Hyh;z+Aj?RYM*UlYhf|f5jnlE%n@YrBnK)xjbJT2x1LU?}W)KltH z2nDAR6&e!7hQqOkyaDbaE;*c#ti}kU*Tp44anAOG`OFP$E zkCqq%5_O(Rp?wWJY_p~~cBCRY0Br+?&2+@NKoBL~+yn&4luo>d%38uB^+tb8jb@bS zi7SHH3{8l%GV$&Uww^W9h(L5fbgpSAkhlwERnZle*Ko9s)Y&F1&FcRLc!_j{vh~R{^Xl$S`=u}h)Y}Ixq9`6C09#E%Ol3CCxwz0Bs z(Tjjw(f+h*qnLuvBFy#mt1M0^p}v0m%ji_co4fM)m-4@?y#J~EX1Xq*j z4~#)a)3P^A*$3@Y4rP{v#87(>sG_{4 zu6T&zrNs35ZrBc8;Ss<=Z_8~sh^kFH@VYiV*cQ0^;*cZYOp?J*A;GasGp^_er~iw( zm&I(M_xo7NK}m=SNKwK?eIQ8**;6lVC_#7Z!%@kF5qn<2%cy@=P|^GjAu^ykJk27z zSbH|f(IcjUHM`nvQ?!?~a$;z}QM^ds@^$+*=Q|PU6eq8EINsW{C(64BCtxi{!A8f6KGJ;}~x@sOk5J_=NrdypYiV zFSgsZ$v}UyuTJ@dDDh1+m}lDD_lF??!`#&BG5!KhTy;GL&~tLGwgNVFq-3D9_nsS0 z9kD&y8FbPn_t)KQ>>ClEb^KPv0VHV)E~b4~WBDG7W?XRRxa6Xktr)knoYfT^0Co%( zWD$;a*SmaL)}ItD7lr-qM6!-)vyk%KjAT+!aM*vxolJ@5s9-zmTym}Cyt zY(>gg92yZaF-!a_4FNKov7r(N(p9%E!DowSnie7}Ows;XIGz_NHdO=1=h;`BbRgal{J-Dlz+3Ml`_Z0y=n-Gg+=5+~-tiW9m&q~W=i< zQB-{Po{x4mB4^mf8pVo6{|wRSWlMj9U`rp6L*(DmgH7g8uBjQwQ~?8~3F_>!&O! zPvI9%-j6STu?@iuswJ3N$)dG2vS@UUdYb&IvC5P+7Vo6|rxGEi0Wy=p?h}_lum{Hhv9}1Z2UH6LR&CVDm!WS56ah1r;U5DO z0yHz1aby80f1O!dkJ~mDe$TI%x5_}p5pTLI(1)~5x?L38B5{EN-2&xUv@MJ*Iii%= z*hqc}EjcBn7?O?&nu+%e&vB?~dx+>uwWsf6gPC{9_XfA)_A~)2q6!ngecp ztITl|Gg%~QMALlp$M#=u-fgFMC1W=dXit7YVV2%eLAXenr!dV0pCnHzB&w@_GcIJk&@8d zlIxCke|py*n(BYrpd9+6wgVCE+q!NyERUWh8MS9i(Ri@MbMTfuWl6)0BYuUuRX=_T z!p$91+K>f(5(c1IoWt6G19Ux5f`UuA*_DMn`Ou@K8KO-T;NV#*1X z6c7JuET>5psiwq%QI_)08rPMe|be+^FB{c0C@8uzNk6Hv?vpt&SPk&bl! zC!r!tDKK9olX5BmsaECmYCvqFAR^Dk56C^Lo;b0E9>|lq_6ZmRPos~z4^hoh!gBFC z(J_|=$wjf0F90M!FPs2ejCbCb`tyA=)b;B?MZEE-tc-f7JxGB~tFj|N^lRMSx8BlA zfBi5V4i>v1D$<0c#U!?u?S&F4~fwHF0(awkGehwugu7Vg@VXj%0k;Ivm$KW6W)}cC)f3KtPm+4H*T!m&!hiDbsEn; zpsSj`J*iS(aaoqW75Apwl~osXR!cdO z+M(O|)g69TYTT+CT!v@$u5STbA&XDIozT}vv^JcIxeqA{aHj*r)90X%$|2U#f7_ra z3BTCfDTkth$43#SO^p>IzRQ+JNcTtv6)^t0}ajm6g> zI@i|Ro|*7Ug2CsFi+=`VI`dWy8*hgmHDv{ZOM}rR9&%m}Rt~yxvGa0ifOaMz>qxU( z1)XG*ahY9LoqKEfEcKQTk6*WZe=aEa&tfU3*WN3#e0)#U1{f2NYk>oYlxL^UHh|g% z)1I^)LBInxJD^Db$Ij~Q;!{;>P@g+$#pL#-vsw58{7ZMPot)ea=qCZ8Y09HNL#%K> zyyQG6GvE`#rC6Ecb+^tT#Y?BFzCzedZpynE@5DJgbvoC&_b$DzHekM1e-@+2mpNnX zF9$Xu;1^Tkn9mbO%dLWYYRnqnZwgSN>VX{-qIb+1{cT%>YKH#gO0JR0Tj53NWXDHk z@MeWSP9Vd{{_mY_ha2G>$136Cl;T)7HUo%Xcd>h9K13jxN-8J(d!RT2fZP>ur$g>B zV}N>g!|gmHjAxfLt^}{sf1?sWlLh2pj4nXs99=phR#^q6X>?Xy@7MSEYgGeq1|F@t zT*QJ^H4U6y*^$xS;ix+3DtJodB_WODr>Z{&B`OkfNh8i`_Xt5YC{O|CctD^4#OneD zEr{9WE*@{BjIKNavV(-5t}@Naq6&TkZ*i~ z2+{6>!I?oCU(78W-obc$<$A`6WRu@J4_&o?zUn(BQG8`}oD|X4#;F#c0jxFtK}f|p zzUgxS2@!IyphCgPVEn3s4IEQAT}jw#Cr#YxV0xE;bI(>)6C$M@`mp%{?lX1^S}dyO zWr&pNh1-l;?_vv%f5QMebm)dPpXX#r)OB?{*wa^_(!iQvAf|0mjek|R$54~5fNB!O97nI5;X zPR*~S3zUODm;8!fUHNkX!%O&v3?YPd81f?MQ@(J%v#R}4f6X{rm8ZTxg6cJnuSF!9 zq$HEKWjw23PS^bpa;>qlNCh2FYHx1J1;5u8!((Pz?J?9pTky4m&q~LtV=%tpn577B zo3hhSIDTJ^MeoOF)9aHjce~b)z<7Ansm7>ocY9{**m=e2&DdJBPO`Bg&G=-Re3j>B z{7OuxG$-gwVCMSf?NYkdi<^OjE%2n0T=rI8>k#1w?#yqL1Q2NU*2j3hL>LBfly-Kv{^DF>>GG$%y2%}mG@Dr24&@i zf8>L=7oC}fVk~m4yuD7q1D5*JfL$Bg#_h)SW$EAR?u4}4wzcXN#N*c+j&h*|@a%sn zg1;SA-dGE>X6=NCfB5Nw5md|@_qSyZG~p!4i$sN&1LOwYxKrou@^>hZxK=Lg2lf5{ouubvrgF-SqQF>C^RFjdb%@P+&TTJ zY9S#ABpGG%OlcH-uprKz&StG(cw{??$Az=Dd-T(`vCauMz+i2C?u3%l6=Q%15*)Z* zq?4BFkyHCu+5ZCGEim*Zpy76CbzK|cd2f2~b| z3*<19%m$NFFmZqYvjaqKvE9O`rH-Wb#Dh@fzL(1zmA2r!K zzHvgHYL;y>lQJ$-I^@H(Fp=&0s%?699jin{Uw3#2n48b%D$S%4u$7zk&u?FT{rVrz zx7Y)=NR%G=s^0Tti*sgi1?vRdH9_RhekX5*ftSZ0l2L%c@&Da+bhmBWux=Ys-m*nJlbV ze^+-G){-fcaB$CegNHTI%nFK2{!HiK}u$&l5yDLuh0EbPrj)oQ;%S68=JOx=mJ9mn4 z#EQJlmed7n*WTKRfSSbLZ?-7GCoN5{e>}As{BKWmXMD6Q{rY|K2zF`8qI0T%dn}II zKlg(@fS|M)6-ymd9W-)OPj`)Sey09RzUY%cS@%hi2$m-NT}~;bdDAIV6`ZnZ*Vb`7 zYHlqi_XtM!Xnyu|x5sMOQ)}iV0@N%QPBMcZ5TxQL*_E>?0aiLQ=8xT|uQm5De@u(O z4Fc4;xgV$Ki+1{}m{gyCW!%IpT%{Vh?+%$ri@ z|MfUMn9)+*Y0C5zoLj zez1NMFi4TgKmQ`I^{U@%#!XlTM9nmo zMl`}Uq!mQ)KC=a{c#h{G$CxvO17;U;%osaxHcAEq(@-y5Wz`rUloTa(oQp`ZB}Z6n zg(K@=$`zR8l*%ETqGndje@8JhS?{{e1!RUQ%P;91;OyZIrE9Q2`6nrzr(p2eC8bN0 z@*XuVMdmb)lv$=GMvY@DKp}N^U@R^T6{It`8BTj3$_2y$&q>UCB231#p3>%^XF&$z zj=T3KTqGN@$RtDrb0Oydvk2BX_#_|8kXr~&-fWyW;J0bXYR=3^e}-(7dOorPBT8!B zCKT2g&LF@ryhYdsbKm$-HPxZ0V+wPt8M&K0zs;>v8PrJ85p>Yeeah3;dMd^^Wuks> z>zXKZNF@6Gh`fV136ZtG!8BGz+q&&7ji4Tc3Ou^_s|xW;zcr9He!jVwnn-_UN=qdr+`++t#k~#OA)m zeIKdg;S5@ppR;Wb$EwCUDu!I0P!9D!5?sh~6PlQA%#~qTY8EKvA@7Dvq$?=*A#^Id z8Bs}5H20zQ?M_WRR0m6(J1V#!4<1gaX4EcU2c2Xo?;x(af9UQ3X=?k1UD32JZW3&s zYgbN^w|4_kF!4Dn#s!AcJm1JXgS=6_QIL<^@r-??C_i76Kp8JW=a}-E+_Kps$Nn{CW z4yGuU&RXw!e~}ytP=BUzarnO<4y)lsgC#GriWdSG;1&=rq>)UU^eusV?s&$&CU7Z0 z;AvQt5Er8|S3WB93>?dqy5O&avsa{zsEUl8{oko_HtI$^_qIa3K#KRPj<_c`g`oih z2}#hTkT0c60p6Xe+NFscO6K;yD-JHH6^pVQx?AU1f5262(NO>md+LwI13cb%P{)8< zgri8WJgf6J%>L06N*eR^w`)(Owlv%c31^Mj>oQYm$$^5z(8K3(2rh$2^iY-7N1XAX z(4>PB5O`nI=!vZ~c;FFku?SXwacueMFcZMP8-|*chVa5ka|spHBYWyJt5r&L;?B z4LTI|CLDxL$i)=*c@Z>9FT~Tqy3A}C#g1cDe}AkC5~2%lL=LvDf>pnGNz;Zw)g7=E zF0=Yv2?^ZvMuFBeRDSO>y5DXuybouZFWzLPb9l%W_@G<5Ae4uz093Z8x?G-{QfUbhAvt?o!4IBNFYn(*|SkUg_0RwIw>MPbR<+*+GnDDJ33BTLEt$#Fu~e+jK?_hP>d)5 zBePq}h@7Szbs1c9T@$&PzojoS_+`nPCM*drt-dB%Eeeru(iI!u#3e|E<7*3pf2d4@ zpHKlj&D>i&H5`6Gi;oJ>UIC64B;a`M)7Bmb-*HcVuC;zoEtyIKAVR4T7hP98$JOCj zTfknAyKC=A%Ub{HW;A+81m)RN&FbFsk0jmz%h-eMYIw=@{L$bF3qNU+3yUK%i)s1J zJ{_U_iG31uae49oEZ+}MTn_QEf9I;S)wROBkW; zOB0}_REM>;{eFgSy*ns0ZN( zBta8h)7cdT3pau#b_V%*1?L-|w6X6&boKL|Vv^^R4_-Kw#0R`LzZK%Ec=)<;YA&vp zYBqh54PNK&fQ4yq?Rf!5Uz~N$1lZo|)f=(K6Ys?j*q+6m;$L<Hu^8(Np2!zPCK!4G75lvFlq2)&=R8|-`D%`P{|+DRHz}8)ZwC|sHIp%&6azIf zHIu;yD3{RC2LylQx($BcUom~E1FW>x#j;hP58dFjJ;gy$v_W5T4p5KnB*uEi1KYFN zv}k{ONnL!4e4H#6*pX$LA}NykNQE6@_{R=9KBPiWEwe*$`VgDh?(tv;fB(}5=I96z zk{RXayAPlKm?Q@lQypt|xO`` zUwqE{ryIf(9jl0?@y#!HfBEpk-MDVT`5Og9%GVOAm4qsjlnH4iB&0g$$EG5AGmyON z@)uH{E=_f+&O<)b?HQ$6tC^%!9S9SYC6>$GQ{96uDvplVx+&e*>V>0gZv?tt3HnWH<|_qZ=OgC7Jm;jyMtf{Pg;kbOW}rfJ5MC-Q1Jw$7pO z;b_hOWUTlV|HCcBH%S9h~$pzMwH+g^c8{yANzlI z#)wcd>aQj^QX3pNV}b(*U{n^Fs37H(P0l@7J8zIgEMgs*JylI(hhJ|J6^(M4sjX8; zDk>8Vg2t37zIO^aYBD1aokA<7>r+UYQ^@E52M%#@q%)c&tMh1n7@-SYFjB40gwG?E zfx#0nd(7CL-y2#oBMy1}g5i$4FrI&Hrqmf!hr8G^) zoKXO*2_?gnvW$5mGG#Vo?1hAf7}h=ZLp@yW*5T_dM~X8lbpjAjQNh)oBROg^BM&*! zis{mkP#R5z74-hklh_Pw=eod=Ikl*bMyq0A%tO=wBR z6pbbK{Eq+0KOX;ESV|?AX@zPw5~jZia!Y6`MqYVgH~4rgLYhcUvyq?O0FtILcvt|f z#}shJL1r90lI@~(OHF3vL9~CqWV&*1Fq$w2s>SP!Qx&iA`e$ozRPqOJ?_jdz@|9z! zkkqoo)C^*;{_we|&-u0in z*SdSIl-;|GMY%)VsuaSCS4>qe2aL%tWWUu-GzdT$egS#Fj!^u9{)C8P#~3ylVfFWHQQ6?y{McCHs(CeyGenWO4r7UKqz*~ zY+MtgXtFA!7vd4!EVjZw=|;4fb`8B3kfenU!QcF_a{w24<6I{YE9+X@>+E|h1w5>0 z0UBWA#B@_c;%1(!(EoJ;mRpm>s1RgY=Sl&=9kbQO=Ij15I`*u7w)2&R$r`%Jn*F8? zSFUURl8T zPuQ=|sQbjXHQXlJf%XAJAH|D76|8XT{Xs6rF1c_k7oFoF`(#T{Nr6EW8)QGRk}dYhfCQ`XqhcB=n7o5kFnJI`rOg4vQQfRQ z-gP8F2C2fS7ZU?ZGz87up%Sp*6ZXQ27L0p{7M9B0vA$@|PLu~dPu@R%z;knyGGkc# zTd(4txW>)TqN803DZze-7jzJG?gt-LQrRbxt8Hn1D+>{6-GtzhKFETLz-v&BIVS7c zhGqlZtQ`$>7G!Q!r~I>f2tbb0s56!gnQt!->hr1dyghaEI^xsoU90Vp=I>)z{ks7p2 zt7uIkjI`yg8&%0>$ZqQsVRi3KH;<@Pe%H7LLOWWy8n!-&wwo>=yiCSSta=*;!feHW zIC5-j?OzjdoRNiqDbrYl)=^6x=1MW)2Y;8SsldOx`bv_@Kf{x4HW+W>(I`tM`MMF~)9 zfR>KKaRIl2M<_K+*NQ5Mx$DKXS>M@{q}5v-f4HeVjJC;GiqhS9f$VoaB> z7Nc|W-$_o_sI+r>UKp3MqF>)}5~Uy3&SmnMGo%rg0$A|coP^WN3R~CH!@!*nfC{cB zHI-#404ewRl(RiWC5pLcpA_8f^h#7MuNyBh!p>PvW$L9&=hM=yB-11q)bnEpgVo(M zK3LgkxC?j~*Q46k6TaBq2r)3|(c)S{j%Qw!#;ZCxH?wse);y_9>rRO!K9vUR!^&L* zZ^7n&V}Zy{OGWh+_Rk+=k~!%<0gtcuzm6yllx!Ht}_x8HX6HSd9I?{ZZJiI zLo6K))bPG)v!5Xs53xW&cMg^AV$5lsI!Jh?QphU)Y{UdBDsMW_eZjyg@}l3*W#ni( zmL1C11siX3T>HQhJM`CvgrFR*d;4(SDB2Vk{q^Mz1aGde^3nFP(#A#w5LtO9F_)&q z2hb6U94Ojj&Ua8mA*^z!ZsT!5UXub%-W)*pcdA_C!M*!2YIaIzAcEd3cWy(FsF~8H zR#J2$G%^oJ!p3B&WW)~~hAPmqATtjj&dtcOgCx<9APHx)q&`3?^5xUO4#pvR01JsG zHR2{H{h^vxZbY`oP&__UGsbmPn-yr^t1)lGh-+?~THpQuRPNVEg>%jY` zRb+p$mbEqlyPyHfZ6V%QP)ozXa!i`xhikzPGC1~Aua3cZc6C!M@OO6hsC!8D6Z|G# zLYfPEj^wkC{#3;Sp;uFV74Uew(htJXFr4{N6CU1w*8^=-ldz0<50RN&$U8E)qyjQ$ zf)Y=LIbz5_L?v6arxweL=q@`ftNj7AAJ!j(w6#mNX{7)saG77MG;!(7r9cqrA_XS$ zgFi7$A!0gGp)-|O^AO!UqvtuLUF+k5F+E|w^Emqy!-GtwoUw5zp;KC9O?(ed z&RtY)sCQ`L>w;3b9x=_gpjj8zTK?E6D1o+LB&S4mbV#=vLO>l>HpP&c(=Br!y$a(= zx2UAiKt%y;##vGdrrP^zJQ51@5oRCcCeM%LrM*3v=W-24!zz@A-jnq1Bo?kz9~0oL zi@4BxYd4+|@p--7aHom{+RY@I^)~Icr+`1=_-QPyT}aKaeY7T5Zsr{=eO3)IC2_2a z8=h6(v;jgRcM;qx`m$R38hpsOv?e=h{69j0y+{DZ4-cCV*w|a|YsDp9iAZy)GKZBx zm3m4h3+q-*pvoO5*r1h>Li?+R@SM%CY)VOeenLnD#mUw94E>bFB{zVAG=z^;B zzcxT7({gl6X?szb`>-J9W}!%(@EXv}FJdS~2e9buHoj1;>0Aa=G<}W(90o%^7M zZT0~!d><{p-TAux5(`gUuRX+f4Fq@`eeT*LZz?rV6SRfa&{WWDW#Ers&FJKHW%>?M zs2ZVoPNzHD*dwctp%O1lyih#n1K>4i7a~=~2bL{Vbqu%UJP4JprUa1dtg|(_i7EGg zxt~dPoZxulVz`0IUn2}?w0QG?b0s(SSH_KX|AO99My}c6bCR|3JS`}3;0a_M(Y7O z1J{&UBw!CEtF+)ln*;DyO>NXd%i|ieOL#@!pS*ti=~Khvkt@| z<&;6$eqymXkI=wLS&fzDP9-RXpu*Pqa$psaX{d5;ij}v=+UESWad)CzaC)!?W1!oz zKZ1&;)cNZO2K!T1quVyN(w%gj?act=kDd|5E*3O6m}>T?%49+bu~j7+TmJUDG?B9$ zd~_fsf~%+yibWzjZJ`PoAJ~+k@ z0IlgPXpcIb(lrY#F%k`bW(BCjVCzkIN&&fn-6bQO7hDzCxq;|pYo$17&2 z&)@iYsldDGlinv{42~ENVhI}Equ|&s1XIGsWuROuv12@w(J4qHR*MOz1@JY2!D1VG zH-hDz(E%T;$gtV85*9~!elIM2^fl4{2POhWZG<%+PR={rOg98S5ZSUPTmMU&aV94M zP(e5t(+{q}r~%qq@jD&=(s(RspM~IROz)Nw+cz9RAi5(CGl9A@^uVxN&9xh}FIEpp z`uWvpmFX%gm2f6R3Tqp1*wvEe?C&LG+#f&{UZ4Jj>6(5 zfc%0w&Hm7+|0!FE3l+jHv-S94HFE=O@Oe7KZ+0?l0eTriZZ%)idl^da_ty3D)zq{E zmZLeeJa#^GON~w%Gj4u5e#WakUXHt>9{zD=Hc-W(AxgxcY)Z0z5D3l zO?3BtwiocFnpNdTgj;X2V6uzrFXK(1lO%tUFun+TzBLzYJ;L@!XzrP-Eq`aMLM-9t zXHmQZzW7X=K+q|s2m3I&_}H!|BUqQi$7vBefVK11!;c;=`33sPmm=m%ECQ3JlJK+Z zJeW^7ak03uz?tIdMmw#1*7e^&){+^^zKliTwsseV?uFg36!>O;LjG-(h#R!c7ebGR2k%%}6Z7bg)J4T)|W!gJD$l)g_ zLZZfezNAuqsJ4F|Fxf#cGVqhvj^gttc;`1=0!hvzT`OTNln`k&HKquqU&ENww(=8r zQnZ*?i3jbQ2HaNokHctWK*y3p_42pL8M@|f!p7?uK7?*2rrT!A#%fU?1pR)m`uxTM z;Alko3}|e#GgDM;LT8zS0}Dq5P%P3L^CldkgV44L5P8^cC7t5}Q|3dW8Uum*ycU$k z_u{hQuytfx0+rX_4JyANLmoo4s>YEW_>*+1SYbQ1mgbZ`Q=Gt`rpZc(CZL|8 z9IE)pgFz>e4G06W~D&V&S{B(w}@Et_X_0_@fuGD;qKkPd4U(SLM9EuxS zr)Yv6xa{T3wFmyq{f0z`MGR>;>rh5;Sjmcri>;*KTOeJ~CZPj$J7Du<~U%FKWRr5+V% z(nFn$=6`)oL(yd^^dXxt&wDuvJ~T}+7vbEe<_s&&&)EtO3|G$L(+aqto((;y@bk&Cq1CAJ1aaT;a?9F3 zU6UL=^$*sZ2VDT!8Drwvge=)h4-m+YF$(62Sol(?;alv*T8lxH=h(PL#*fmgcvfNy z(3?u?k;-|WYZ2}s*yU9uVrAR$NRXpxju#oviX>$(Jn5^g;n*18M`*=~6uCbsH99QHQ?2g%x2;S8l zP1HVT(Y`72z8SXlLKYEPv}Bfrni#do5KO84ki{bPrLNDUX}}jO%{NI_@bsaGv)dx_ zdfb4gmXf<7=nxJ8MImeovafHi3&jq@05j=?kSo~y3&wJ4zI#VN7&zjmie-i z$#~!h-w=8�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 OB*%Q=!Zi~;=Klwo+@pB_ diff --git a/doc/bashref.rw b/doc/bashref.rw index 6a221125c..f88fb686e 100644 --- a/doc/bashref.rw +++ b/doc/bashref.rw @@ -1,8 +1,8 @@ \entry{time}{10}{\code {time}} \entry{!}{10}{\code {!}} -\entry{until}{11}{\code {until}} -\entry{do}{11}{\code {do}} -\entry{done}{11}{\code {done}} +\entry{until}{12}{\code {until}} +\entry{do}{12}{\code {do}} +\entry{done}{12}{\code {done}} \entry{while}{12}{\code {while}} \entry{for}{12}{\code {for}} \entry{if}{12}{\code {if}} @@ -13,9 +13,9 @@ \entry{case}{13}{\code {case}} \entry{in}{13}{\code {in}} \entry{esac}{13}{\code {esac}} -\entry{select}{13}{\code {select}} +\entry{select}{14}{\code {select}} \entry{[[}{14}{\code {[[}} \entry{]]}{14}{\code {]]}} -\entry{{\indexlbrace }}{17}{\code {{\tt \char 123}}} -\entry{{\indexrbrace }}{17}{\code {{\tt \char 125}}} +\entry{{\indexlbrace }}{18}{\code {{\tt \char 123}}} +\entry{{\indexrbrace }}{18}{\code {{\tt \char 125}}} \entry{function}{19}{\code {function}} diff --git a/doc/bashref.rws b/doc/bashref.rws index 195abeb5b..b739da8ea 100644 --- a/doc/bashref.rws +++ b/doc/bashref.rws @@ -5,14 +5,14 @@ \initial {]} \entry{\code {]]}}{14} \initial {{\indexlbrace }} -\entry{\code {{\tt \char 123}}}{17} +\entry{\code {{\tt \char 123}}}{18} \initial {{\indexrbrace }} -\entry{\code {{\tt \char 125}}}{17} +\entry{\code {{\tt \char 125}}}{18} \initial {C} \entry{\code {case}}{13} \initial {D} -\entry{\code {do}}{11} -\entry{\code {done}}{11} +\entry{\code {do}}{12} +\entry{\code {done}}{12} \initial {E} \entry{\code {elif}}{12} \entry{\code {else}}{12} @@ -25,11 +25,11 @@ \entry{\code {if}}{12} \entry{\code {in}}{13} \initial {S} -\entry{\code {select}}{13} +\entry{\code {select}}{14} \initial {T} \entry{\code {then}}{12} \entry{\code {time}}{10} \initial {U} -\entry{\code {until}}{11} +\entry{\code {until}}{12} \initial {W} \entry{\code {while}}{12} diff --git a/doc/bashref.texi b/doc/bashref.texi index 342d706db..e8757324a 100644 --- a/doc/bashref.texi +++ b/doc/bashref.texi @@ -14,7 +14,7 @@ This is Edition @value{EDITION}, last updated @value{UPDATED}, of @cite{The GNU Bash Reference Manual}, for @code{Bash}, Version @value{VERSION}. -Copyright @copyright{} 1988--2023 Free Software Foundation, Inc. +Copyright @copyright{} 1988--2024 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document @@ -130,22 +130,22 @@ While the @sc{gnu} operating system provides other shells, including a version of @code{csh}, Bash is the default shell. Like other @sc{gnu} software, Bash is quite portable. It currently runs on nearly every version of Unix and a few other operating systems @minus{} -independently-supported ports exist for @sc{ms-dos}, @sc{os/2}, -and Windows platforms. +independently-supported ports exist for Windows and other platforms. @node What is a shell? @section What is a shell? -At its base, a shell is simply a macro processor that executes -commands. The term macro processor means functionality where text +At its base, a shell is simply a macro processor that executes commands. +The term macro processor means functionality where text and symbols are expanded to create larger expressions. -A Unix shell is both a command interpreter and a programming -language. As a command interpreter, the shell provides the user +A Unix shell is both a command interpreter and a programming language. +As a command interpreter, the shell provides the user interface to the rich set of @sc{gnu} utilities. The programming language features allow these utilities to be combined. Files containing commands can be created, and become -commands themselves. These new commands have the same status as +commands themselves. +These new commands have the same status as system commands in directories such as @file{/bin}, allowing users or groups to establish custom environments to automate their common tasks. @@ -153,7 +153,7 @@ tasks. Shells may be used interactively or non-interactively. In interactive mode, they accept input typed from the keyboard. When executing non-interactively, shells execute commands read -from a file. +from a file or a string. A shell allows execution of @sc{gnu} commands, both synchronously and asynchronously. @@ -174,19 +174,18 @@ they directly manipulate the shell itself. The @code{history}, @code{getopts}, @code{kill}, or @code{pwd} builtins, among others, could be implemented in separate utilities, but they are more convenient to use as builtin commands. -All of the shell builtins are described in -subsequent sections. +All of the shell builtins are described in subsequent sections. While executing commands is essential, most of the power (and -complexity) of shells is due to their embedded programming -languages. Like any high-level language, the shell provides -variables, flow control constructs, quoting, and functions. +complexity) of shells is due to their embedded programming languages. +Like any high-level language, the shell provides variables, +flow control constructs, quoting, and functions. Shells offer features geared specifically for interactive use rather than to augment the programming language. These interactive features include job control, command line -editing, command history and aliases. Each of these features is -described in this manual. +editing, command history and aliases. +Each of these features is described in this manual. @node Definitions @chapter Definitions @@ -210,8 +209,8 @@ than by an executable program somewhere in the file system. @item control operator @cindex control operator -A @code{token} that performs a control function. It is a @code{newline} -or one of the following: +A @code{token} that performs a control function. +It is a @code{newline} or one of the following: @samp{||}, @samp{&&}, @samp{&}, @samp{;}, @samp{;;}, @samp{;&}, @samp{;;&}, @samp{|}, @samp{|&}, @samp{(}, or @samp{)}. @@ -222,9 +221,9 @@ to eight bits, so the maximum value is 255. @item field @cindex field -A unit of text that is the result of one of the shell expansions. After -expansion, when executing a command, the resulting fields are used as -the command name and arguments. +A unit of text that is the result of one of the shell expansions. +After expansion, when executing a command, the resulting fields are +used as the command name and arguments. @item filename @cindex filename @@ -242,8 +241,9 @@ A mechanism by which users can selectively stop (suspend) and restart @item metacharacter @cindex metacharacter -A character that, when unquoted, separates words. A metacharacter is -a @code{space}, @code{tab}, @code{newline}, or one of the following characters: +A character that, when unquoted, separates words. +A metacharacter is a @code{space}, @code{tab}, @code{newline}, +or one of the following characters: @samp{|}, @samp{&}, @samp{;}, @samp{(}, @samp{)}, @samp{<}, or @samp{>}. @@ -251,8 +251,8 @@ a @code{space}, @code{tab}, @code{newline}, or one of the following characters: @cindex name @cindex identifier A @code{word} consisting solely of letters, numbers, and underscores, -and beginning with a letter or underscore. @code{Name}s are used as -shell variable and function names. +and beginning with a letter or underscore. +@code{Name}s are used as shell variable and function names. Also referred to as an @code{identifier}. @item operator @@ -273,9 +273,9 @@ during its lifetime. @item reserved word @cindex reserved word -A @code{word} that has a special meaning to the shell. Most reserved -words introduce shell flow control constructs, such as @code{for} and -@code{while}. +A @code{word} that has a special meaning to the shell. +Most reserved words introduce shell flow control constructs, such as +@code{for} and @code{while}. @item return status @cindex return status @@ -410,7 +410,8 @@ status (@pxref{Exit Status}). @end menu Quoting is used to remove the special meaning of certain -characters or words to the shell. Quoting can be used to +characters or words to the shell. +Quoting can be used to disable special treatment for special characters, to prevent reserved words from being recognized as such, and to prevent parameter expansion. @@ -418,29 +419,34 @@ parameter expansion. Each of the shell metacharacters (@pxref{Definitions}) has special meaning to the shell and must be quoted if it is to represent itself. + When the command history expansion facilities are being used (@pxref{History Interaction}), the @dfn{history expansion} character, usually @samp{!}, must be quoted -to prevent history expansion. @xref{Bash History Facilities}, for -more details concerning history expansion. +to prevent history expansion. +@xref{Bash History Facilities}, for more details concerning history +expansion. -There are three quoting mechanisms: the -@dfn{escape character}, single quotes, and double quotes. +There are four quoting mechanisms: the +@dfn{escape character}, single quotes, double quotes, +and dollar-single quotes. @node Escape Character @subsubsection Escape Character A non-quoted backslash @samp{\} is the Bash escape character. It preserves the literal value of the next character that follows, -with the exception of @code{newline}. If a @code{\newline} pair -appears, and the backslash itself is not quoted, the @code{\newline} -is treated as a line continuation (that is, it is removed from -the input stream and effectively ignored). +removing any special meaning it has, +with the exception of @code{newline}. +If a @code{\newline} pair appears, and the backslash itself is not quoted, +the @code{\newline} is treated as a line continuation (that is, it is +removed from the input stream and effectively ignored). @node Single Quotes @subsubsection Single Quotes Enclosing characters in single quotes (@samp{'}) preserves the literal value -of each character within the quotes. A single quote may not occur +of each character within the quotes. +A single quote may not occur between single quotes, even when preceded by a backslash. @node Double Quotes @@ -460,8 +466,10 @@ The backslash retains its special meaning only when followed by one of the following characters: @samp{$}, @samp{`}, @samp{"}, @samp{\}, or @code{newline}. Within double quotes, backslashes that are followed by one of these -characters are removed. Backslashes preceding characters without a +characters are removed. +Backslashes preceding characters without a special meaning are left unmodified. + A double quote may be quoted within double quotes by preceding it with a backslash. If enabled, history expansion will be performed unless an @samp{!} @@ -474,6 +482,7 @@ when in double quotes (@pxref{Shell Parameter Expansion}). @node ANSI-C Quoting @subsubsection ANSI-C Quoting @cindex quoting, ANSI +@cindex dollar-single quote quoting Character sequences of the form @code{$'@var{string}'} are treated as a special kind of single quotes. @@ -547,8 +556,8 @@ and @code{TEXTDOMAIN} shell variables, as explained below. See the gettext documentation for additional details not covered here. If the current locale is @code{C} or @code{POSIX}, if there are no translations available, -or if the string is not translated, -the dollar sign is ignored. +or if the string is not translated, the dollar sign is ignored, +and the string is treated as double-quoted as described above. Since this is a form of double quoting, the string remains double-quoted by default, whether or not it is translated and replaced. If the @code{noexpand_translation} option is enabled @@ -674,11 +683,15 @@ in any of the supported languages by setting the @env{LANG} or In a non-interactive shell, or an interactive shell in which the @code{interactive_comments} option to the @code{shopt} builtin is enabled (@pxref{The Shopt Builtin}), -a word beginning with @samp{#} -causes that word and all remaining characters on that line to -be ignored. An interactive shell without the @code{interactive_comments} -option enabled does not allow comments. The @code{interactive_comments} -option is on by default in interactive shells. +a word beginning with @samp{#} introduces a comment. +A word begins at the beginning of a line, after unquoted whitespace, or +after an operator. +The comment causes that word and all remaining characters on that line to +be ignored. +An interactive shell without the @code{interactive_comments} +option enabled does not allow comments. +The @code{interactive_comments} +option is enabled by default in interactive shells. @xref{Interactive Shells}, for a description of what makes a shell interactive. @@ -735,10 +748,10 @@ words if they are the third word in a @code{for} command. @subsection Simple Commands @cindex commands, simple -A simple command is the kind of command encountered most often. +A simple command is the kind of command that's executed most often. It's just a sequence of words separated by @code{blank}s, terminated -by one of the shell's control operators (@pxref{Definitions}). The -first word generally specifies a command to be executed, with the +by one of the shell's control operators (@pxref{Definitions}). +The first word generally specifies a command to be executed, with the rest of the words being that command's arguments. The return status (@pxref{Exit Status}) of a simple command is @@ -765,16 +778,18 @@ The format for a pipeline is @noindent The output of each command in the pipeline is connected via a pipe to the input of the next command. -That is, each command reads the previous command's output. This -connection is performed before any redirections specified by +That is, each command reads the previous command's output. +This connection is performed before any redirections specified by @var{command1}. -If @samp{|&} is used, @var{command1}'s standard error, in addition to +If @samp{|&} is the pipeline operator, +@var{command1}'s standard error, in addition to its standard output, is connected to @var{command2}'s standard input through the pipe; it is shorthand for @code{2>&1 |}. This implicit redirection of the standard error to the standard output is -performed after any redirections specified by @var{command1}. +performed after any redirections specified by @var{command1}, +consistent with that shorthand. The reserved word @code{time} causes timing statistics to be printed for the pipeline once it finishes. @@ -785,19 +800,20 @@ by @sc{posix}. When the shell is in @sc{posix} mode (@pxref{Bash POSIX Mode}), it does not recognize @code{time} as a reserved word if the next token begins with a @samp{-}. -The @env{TIMEFORMAT} variable may be set to a format string that +The value of the @env{TIMEFORMAT} variable is a format string that specifies how the timing information should be displayed. @xref{Bash Variables}, for a description of the available formats. The use of @code{time} as a reserved word permits the timing of -shell builtins, shell functions, and pipelines. An external -@code{time} command cannot time these easily. +shell builtins, shell functions, and pipelines. +An external @code{time} command cannot time these easily. When the shell is in @sc{posix} mode (@pxref{Bash POSIX Mode}), @code{time} -may be followed by a newline. In this case, the shell displays the +may be followed by a newline. +In this case, the shell displays the total user and system time consumed by the shell and its children. The @env{TIMEFORMAT} variable specifies the format of the time information. -If the pipeline is not executed asynchronously (@pxref{Lists}), the +If a pipeline is not executed asynchronously (@pxref{Lists}), the shell waits for all commands in the pipeline to complete. Each command in a multi-command pipeline, @@ -806,8 +822,8 @@ is executed in its own @dfn{subshell}, which is a separate process (@pxref{Command Execution Environment}). If the @code{lastpipe} option is enabled using the @code{shopt} builtin (@pxref{The Shopt Builtin}), -the last element of a pipeline may be run by the shell process -when job control is not active. +and job control is not active, +the last element of a pipeline may be run by the shell process. The exit status of a pipeline is the exit status of the last command in the @@ -819,8 +835,10 @@ or zero if all commands exit successfully. If the reserved word @samp{!} precedes the pipeline, the exit status is the logical negation of the exit status as described above. -The shell waits for all commands in the pipeline to terminate before +If a pipeline is not executed asynchronously (@pxref{Lists}), the +shell waits for all commands in the pipeline to terminate before returning a value. +The return status of an asynchronous pipeline is 0. @node Lists @subsection Lists of Commands @@ -854,8 +872,8 @@ The return status is the exit status of the last command executed. @sc{and} and @sc{or} lists are sequences of one or more pipelines separated by the control operators @samp{&&} and @samp{||}, -respectively. @sc{and} and @sc{or} lists are executed with left -associativity. +respectively. +@sc{and} and @sc{or} lists are executed with left associativity. An @sc{and} list has the form @example @@ -948,9 +966,9 @@ The syntax of the @code{for} command is: for @var{name} [ [in [@var{words} @dots{}] ] ; ] do @var{commands}; done @end example -Expand @var{words} (@pxref{Shell Expansions}), and execute @var{commands} -once for each member -in the resultant list, with @var{name} bound to the current member. +Expand @var{words} (@pxref{Shell Expansions}), and then +execute @var{commands} once for each word +in the resultant list, with @var{name} bound to the current word. If @samp{in @var{words}} is not present, the @code{for} command executes the @var{commands} once for each positional parameter that is set, as if @samp{in "$@@"} had been specified @@ -966,19 +984,20 @@ An alternate form of the @code{for} command is also supported: for (( @var{expr1} ; @var{expr2} ; @var{expr3} )) ; do @var{commands} ; done @end example -First, the arithmetic expression @var{expr1} is evaluated according +First, evaluate the arithmetic expression @var{expr1} according to the rules described below (@pxref{Shell Arithmetic}). -The arithmetic expression @var{expr2} is then evaluated repeatedly +Then, repeatedly evaluate the arithmetic expression @var{expr2} until it evaluates to zero. -Each time @var{expr2} evaluates to a non-zero value, @var{commands} are -executed and the arithmetic expression @var{expr3} is evaluated. +Each time @var{expr2} evaluates to a non-zero value, execute @var{commands} +and evaluate the arithmetic expression @var{expr3}. If any expression is omitted, it behaves as if it evaluates to 1. The return value is the exit status of the last command in @var{commands} -that is executed, or false if any of the expressions is invalid. +that is executed, or non-zero if any of the expressions is invalid. @end table -The @code{break} and @code{continue} builtins (@pxref{Bourne Shell Builtins}) -may be used to control loop execution. +Use the @code{break} and @code{continue} builtins +(@pxref{Bourne Shell Builtins}) +to control loop execution. @node Conditional Constructs @subsubsection Conditional Constructs @@ -1027,16 +1046,17 @@ esac @end example @code{case} will selectively execute the @var{command-list} corresponding to -the first @var{pattern} that matches @var{word}. +the first @var{pattern} that matches @var{word}, +proceeding from the first pattern to the last. The match is performed according to the rules described below in @ref{Pattern Matching}. If the @code{nocasematch} shell option (see the description of @code{shopt} in @ref{The Shopt Builtin}) is enabled, the match is performed without regard to the case of alphabetic characters. -The @samp{|} is used to separate multiple patterns, and the @samp{)} -operator terminates a pattern list. -A list of patterns and an associated command-list is known +The @samp{|} is used to separate multiple patterns in a pattern list, +and the @samp{)} operator terminates the pattern list. +A pattern list and an associated @var{command-list} is known as a @var{clause}. Each clause must be terminated with @samp{;;}, @samp{;&}, or @samp{;;&}. @@ -1072,17 +1092,18 @@ echo " legs." @noindent -If the @samp{;;} operator is used, no subsequent matches are attempted after -the first pattern match. +If the @samp{;;} operator is used, the @code{case} command completes +after the first pattern match. Using @samp{;&} in place of @samp{;;} causes execution to continue with the @var{command-list} associated with the next clause, if any. Using @samp{;;&} in place of @samp{;;} causes the shell to test the patterns in the next clause, if any, and execute any associated @var{command-list} -on a successful match, +if the match succeeds, continuing the case statement execution as if the pattern list had not matched. -The return status is zero if no @var{pattern} is matched. Otherwise, the -return status is the exit status of the @var{command-list} executed. +The return status is zero if no @var{pattern} matches. +Otherwise, the return status is the exit status of the +last @var{command-list} executed. @item select @rwindex select @@ -1094,17 +1115,17 @@ It has almost the same syntax as the @code{for} command: select @var{name} [in @var{words} @dots{}]; do @var{commands}; done @end example -The list of words following @code{in} is expanded, generating a list -of items, and the set of expanded words is printed on the standard -error output stream, each preceded by a number. If the -@samp{in @var{words}} is omitted, the positional parameters are printed, +First, expand the list of words following @code{in}, generating a list +of items, and print the set of expanded words on the standard +error stream, each preceded by a number. +If the @samp{in @var{words}} is omitted, print the positional parameters, as if @samp{in "$@@"} had been specified. @code{select} then displays the @env{PS3} prompt and reads a line from the standard input. If the line consists of a number corresponding to one of the displayed -words, then the value of @var{name} is set to that word. -If the line is empty, the words and prompt are displayed again. -If @code{EOF} is read, the @code{select} command completes and returns 1. +words, then @code{select} sets the value of @var{name} to that word. +If the line is empty, @code{select} displays the words and prompt again. +If @code{EOF} is read, @code{select} completes and returns 1. Any other value read causes @var{name} to be set to null. The line read is saved in the variable @env{REPLY}. @@ -1134,11 +1155,10 @@ described below (@pxref{Shell Arithmetic}). The @var{expression} undergoes the same expansions as if it were within double quotes, but double quote characters in @var{expression} are not treated specially -are removed. +and are removed. If the value of the expression is non-zero, the return status is 0; otherwise the return status is 1. - @item [[@dots{}]] @rwindex [[ @rwindex ]] @@ -1146,8 +1166,8 @@ otherwise the return status is 1. [[ @var{expression} ]] @end example -Return a status of 0 or 1 depending on the evaluation of -the conditional expression @var{expression}. +Evaluate the conditional expression @var{expression} and +return a status of zero (true) or non-zero (false). Expressions are composed of the primaries described below in @ref{Bash Conditional Expressions}. The words between the @code{[[} and @code{]]} do not undergo word splitting @@ -1292,7 +1312,8 @@ pattern='\.' The first two matches will succeed, but the second two will not, because in the second two the backslash will be part of the pattern to be matched. In the first two examples, the pattern passed to the regular expression -parser is @samp{\.}. The backslash removes the special meaning from +parser is @samp{\.}. +The backslash removes the special meaning from @samp{.}, so the literal @samp{.} matches. In the second two examples, the pattern passed to the regular expression parser has the backslash quoted (e.g., @samp{\\\.}), which will not match @@ -1391,7 +1412,8 @@ remain in effect after the subshell completes. @end example Placing a list of commands between curly braces causes the list to -be executed in the current shell context. No subshell is created. +be executed in the current shell environment. +No subshell is created. The semicolon (or newline) following @var{list} is required. @end table @@ -1436,7 +1458,7 @@ coproc @var{NAME} @{ @var{command}; @} @end example @noindent -This form is recommended because simple commands result in the coprocess +This form is preferred because simple commands result in the coprocess always being named @code{COPROC}, and it is simpler to use and more complete than the other compound commands. @@ -1476,7 +1498,7 @@ the file descriptors are not available in subshells. The process ID of the shell spawned to execute the coprocess is available as the value of the variable @env{@var{NAME}_PID}. The @code{wait} -builtin command may be used to wait for the coprocess to terminate. +builtin may be used to wait for the coprocess to terminate. Since the coprocess is created as an asynchronous command, the @code{coproc} command always returns success. @@ -1506,12 +1528,13 @@ is available at @cindex functions, shell Shell functions are a way to group commands for later execution -using a single name for the group. They are executed just like -a "regular" command. +using a single name for the group. +They are executed just like a "regular" simple command. 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. +the shell executes +the list of commands associated with that function name. Shell functions are executed in the current -shell context; no new process is created to interpret them. +shell context; there is no new process created to interpret them. Functions are declared using this syntax: @rwindex function @@ -1525,27 +1548,26 @@ or function @var{fname} [()] @var{compound-command} [ @var{redirections} ] @end example -This defines a shell function named @var{fname}. The reserved -word @code{function} is optional. -If the @code{function} reserved -word is supplied, the parentheses are optional. +This defines a shell function named @var{fname}. +The reserved word @code{function} is optional. +If the @code{function} reserved word is supplied, the parentheses are optional. The @dfn{body} of the function is the compound command @var{compound-command} (@pxref{Compound Commands}). That command is usually a @var{list} enclosed between @{ and @}, but may be any compound command listed above. If the @code{function} reserved word is used, but the parentheses are not supplied, the braces are recommended. -@var{compound-command} is executed whenever @var{fname} is specified as the -name of a simple command. When the shell is in @sc{posix} mode (@pxref{Bash POSIX Mode}), @var{fname} must be a valid shell name and may not be the same as one of the special builtins (@pxref{Special Builtins}). -In default mode, a function name can be any unquoted shell word that does +When not in @sc{posix} mode, +a function name can be any unquoted shell word that does not contain @samp{$}. + Any redirections (@pxref{Redirections}) associated with the shell function are performed when the function is executed. -A function definition may be deleted using the @option{-f} option to the +Function definitions are deleted using the @option{-f} option to the @code{unset} builtin (@pxref{Bourne Shell Builtins}). The exit status of a function definition is zero unless a syntax error @@ -1559,14 +1581,21 @@ that surround the body of the function must be separated from the body by This is because the braces are reserved words and are only recognized as such when they are separated from the command list by whitespace or another shell metacharacter. -Also, when using the braces, the @var{list} must be terminated by a semicolon, +When using the braces, the @var{list} must be terminated by a semicolon, a @samp{&}, or a newline. +@var{compound-command} is executed whenever @var{fname} is specified +as the name of a simple command. +Functions are executed in the context of the +calling shell; there is no new process created to interpret +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 (@pxref{Positional Parameters}). The special parameter @samp{#} that expands to the number of -positional parameters is updated to reflect the change. +positional parameters +is updated to reflect the new set of positional parameters. Special parameter @code{0} is unchanged. The first element of the @env{FUNCNAME} variable is set to the name of the function while the function is executing. @@ -1599,17 +1628,19 @@ before execution resumes. When a function completes, the values of the positional parameters and the special parameter @samp{#} are restored to the values they had prior to the function's -execution. If a numeric argument is given to @code{return}, +execution. +If @code{return} is supplied a numeric argument, that is the function's return status; otherwise the function's return status is the exit status of the last command executed before the @code{return}. -Variables local to the function may be declared with the +Variables local to the function are declared with the @code{local} builtin (@dfn{local variables}). Ordinarily, variables and their values are shared between a function and its caller. These variables are visible only to -the function and the commands it invokes. This is particularly +the function and the commands it invokes. +This is particularly important when a shell function calls other functions. In the following description, the @dfn{current scope} is a currently- @@ -1617,14 +1648,17 @@ executing function. Previous scopes consist of that function's caller and so on, back to the "global" scope, where the shell is not executing any shell function. -Consequently, a local variable at the current local scope is a variable +A local variable at the current local scope is a variable declared using the @code{local} or @code{declare} builtins in the function that is currently executing. -Local variables "shadow" variables with the same name declared at -previous 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 previous scopes. +For instance, a local variable declared in a function +hides variables with the same name declared at previous scopes, +including global variables: references and assignments +refer to the local variable, leaving the variables +at previous scopes unmodified. When the function returns, the global variable is once again visible. The shell uses @dfn{dynamic scoping} to control a variable's visibility @@ -1679,11 +1713,11 @@ 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 @code{localvar_unset}shell option changes this behavior). +(see below how @code{localvar_unset} shell option changes this behavior). -Function names and definitions may be listed with the -@option{-f} option to the @code{declare} (@code{typeset}) -builtin command (@pxref{Bash Builtins}). +The @option{-f} option to the @code{declare} (@code{typeset}) +builtin command (@pxref{Bash Builtins}) +will list function names and definitions. The @option{-F} option to @code{declare} or @code{typeset} will list the function names only (and optionally the source file and line number, if the @code{extdebug} @@ -1693,11 +1727,15 @@ Functions may be exported so that child shell processes automatically have them defined with the @option{-f} option to the @code{export} builtin (@pxref{Bourne Shell Builtins}). +The @option{-f} option to +the @code{unset} builtin +(@pxref{Bourne Shell Builtins}) +will delete a function definition. Functions may be recursive. The @code{FUNCNEST} variable may be used to limit the depth of the function call stack and restrict the number of function invocations. -By default, no limit is placed on the number of recursive calls. +By default, Bash places no limit on the number of recursive calls. @node Shell Parameters @section Shell Parameters @@ -1717,9 +1755,11 @@ A @dfn{variable} is a parameter denoted by a @code{name}. A variable has a @code{value} and zero or more @code{attributes}. Attributes are assigned using the @code{declare} builtin command (see the description of the @code{declare} builtin in @ref{Bash Builtins}). +The @code{export} and @code{readonly} builtins assign specific attributes. -A parameter is set if it has been assigned a value. The null string is -a valid value. Once a variable is set, it may be unset only by using +A parameter is set if it has been assigned a value. +The null string is a valid value. +Once a variable is set, it may be unset only by using the @code{unset} builtin command. A variable may be assigned to by a statement of the form @@ -1727,9 +1767,8 @@ A variable may be assigned to by a statement of the form @var{name}=[@var{value}] @end example @noindent -If @var{value} -is not given, the variable is assigned the null string. All -@var{value}s undergo tilde expansion, parameter and variable expansion, +If @var{value} is not given, the variable is assigned the null string. +All @var{value}s undergo tilde expansion, parameter and variable expansion, command substitution, arithmetic expansion, and quote removal (@pxref{Shell Parameter Expansion}). If the variable has its @code{integer} @@ -1744,16 +1783,22 @@ and @code{local} builtin commands (@dfn{declaration} commands). When in @sc{posix} mode (@pxref{Bash POSIX Mode}), these builtins may appear in a command after one or more instances of the @code{command} builtin and retain these assignment statement properties. +For example, +@example +command export var=value +@end example In the context where an assignment statement is assigning a value to a shell variable or array index (@pxref{Arrays}), the @samp{+=} -operator can be used to -append to or add to the variable's previous value. -This includes arguments to builtin commands such as @code{declare} that -accept assignment statements (declaration commands). +operator will append to or add to the variable's previous value. +This includes arguments to declaration commands such as @code{declare} +that accept assignment statements. When @samp{+=} is applied to a variable for which the @code{integer} attribute -has been set, @var{value} is evaluated as an arithmetic expression and -added to the variable's current value, which is also evaluated. +has been set, +the variable's current value and @var{value} are each evaluated as +arithmetic expressions, +and the sum of the results is assigned as the variable's value. +The current value is usually an integer constant, but may be an expression. When @samp{+=} is applied to an array variable using compound assignment (@pxref{Arrays}), the variable's value is not unset (as it is when using @samp{=}), and new @@ -1781,8 +1826,8 @@ argument, running declare -n ref=$1 @end example @noindent -inside the function creates a nameref variable @env{ref} whose value is -the variable name passed as the first argument. +inside the function creates a local nameref variable @env{ref} whose value +is the variable name passed as the first argument. References and assignments to @env{ref}, and changes to its attributes, are treated as references, assignments, and attribute modifications to the variable whose name was passed as @code{$1}. @@ -1804,7 +1849,8 @@ as an argument, the variable referenced by the nameref variable will be unset. @cindex parameters, positional A @dfn{positional parameter} is a parameter denoted by one or more -digits, other than the single digit @code{0}. Positional parameters are +digits, other than the single digit @code{0}. +Positional parameters are assigned from the shell's arguments when it is invoked, and may be reassigned using the @code{set} builtin command. Positional parameter @code{N} may be referenced as @code{$@{N@}}, or @@ -1818,6 +1864,9 @@ temporarily replaced when a shell function is executed When a positional parameter consisting of more than a single digit is expanded, it must be enclosed in braces. +Without braces, a digit following @samp{$} can only refer to +one of the first nine positional parameters ($1\-$9) or the +special parameter $0 (see below). @node Special Parameters @subsection Special Parameters @@ -1825,6 +1874,7 @@ digit is expanded, it must be enclosed in braces. The shell treats several parameters specially. These parameters may only be referenced; assignment to them is not allowed. +Special parameters are denoted by one of the following characters. @vtable @code @@ -1833,11 +1883,12 @@ only be referenced; assignment to them is not allowed. ($*) Expands to the positional parameters, starting from one. When the expansion is not within double quotes, each positional parameter expands to a separate word. -In contexts where these expansions are performed, those words +In contexts where word expansions are performed, those words are subject to further word splitting and filename expansion. When the expansion occurs within double quotes, it expands to a single word with the value of each parameter separated by the first character of the -@env{IFS} special variable. That is, @code{"$*"} is equivalent +@env{IFS} variable. +That is, @code{"$*"} is equivalent to @code{"$1@var{c}$2@var{c}@dots{}"}, where @var{c} is the first character of the value of the @code{IFS} variable. @@ -1852,17 +1903,19 @@ In contexts where word splitting is performed, this expands each positional parameter to a separate word; if not within double quotes, these words are subject to word splitting. In contexts where word splitting is not performed, +such as the value portion of an assignment statement, this expands to a single word with each positional parameter separated by a space. -When the -expansion occurs within double quotes, and word splitting is performed, -each parameter expands to a -separate word. That is, @code{"$@@"} is equivalent to +When the expansion occurs within double quotes, +and word splitting is performed, +each parameter expands to a separate word. +That is, @code{"$@@"} is equivalent to @code{"$1" "$2" @dots{}}. If the double-quoted expansion occurs within a word, the expansion of -the first parameter is joined with the beginning part of the original -word, and the expansion of the last parameter is joined with the last -part of the original word. +the first parameter is joined with the expansion of the +beginning part of the original +word, and the expansion of the last parameter is joined with the +expansion of the last part of the original word. When there are no positional parameters, @code{"$@@"} and @code{$@@} expand to nothing (i.e., they are removed). @@ -1884,8 +1937,9 @@ builtin command, or those set by the shell itself @item $ @vindex $$ -($$) Expands to the process @sc{id} of the shell. In a subshell, it -expands to the process @sc{id} of the invoking shell, not the subshell. +($$) Expands to the process @sc{id} of the shell. +In a subshell, it expands to the process @sc{id} of the invoking shell, +not the subshell. @item ! @vindex $! @@ -1895,13 +1949,15 @@ the @code{bg} builtin (@pxref{Job Control Builtins}). @item 0 @vindex $0 -($0) Expands to the name of the shell or shell script. This is set at -shell initialization. If Bash is invoked with a file of commands -(@pxref{Shell Scripts}), @code{$0} is set to the name of that file. +($0) Expands to the name of the shell or shell script. +This is set at shell initialization. +If Bash is invoked with a file of commands (@pxref{Shell Scripts}), +@code{$0} is set to the name of that file. If Bash is started with the @option{-c} option (@pxref{Invoking Bash}), then @code{$0} is set to the first argument after the string to be -executed, if one is present. Otherwise, it is set -to the filename used to invoke Bash, as given by argument zero. +executed, if one is present. +Otherwise, it is set to the filename used to invoke Bash, as given by +argument zero. @end vtable @node Shell Expansions @@ -1971,11 +2027,12 @@ The only exceptions to this are the expansions of @cindex brace expansion @cindex expansion, brace -Brace expansion is a mechanism by which arbitrary strings may be generated. +Brace expansion is a mechanism to generate arbitrary strings +sharing a common prefix and suffix, either of which can be empty. This mechanism is similar to @dfn{filename expansion} (@pxref{Filename Expansion}), but the filenames generated need not exist. -Patterns to be brace expanded take the form of an optional @var{preamble}, +Patterns to be brace expanded are formed from an optional @var{preamble}, followed by either a series of comma-separated strings or a sequence expression between a pair of braces, followed by an optional @var{postscript}. @@ -2006,13 +2063,15 @@ using the default C locale. Note that both @var{x} and @var{y} must be of the same type (integer or letter). When the increment is supplied, it is used as the difference between -each term. The default increment is 1 or -1 as appropriate. +each term. +The default increment is 1 or -1 as appropriate. Brace expansion is performed before any other expansions, and any characters special to other expansions are preserved -in the result. It is strictly textual. Bash -does not apply any syntactic interpretation to the context of the -expansion or the text between the braces. +in the result. +It is strictly textual. +Bash does not apply any syntactic interpretation to the context +of the expansion or the text between the braces. A correctly-formed brace expansion must contain unquoted opening and closing braces, and at least one unquoted comma or a valid @@ -2049,15 +2108,16 @@ characters in the tilde-prefix following the tilde are treated as a possible @dfn{login name}. If this login name is the null string, the tilde is replaced with the value of the @env{HOME} shell variable. -If @env{HOME} is unset, the home directory of the user executing the -shell is substituted instead. +If @env{HOME} is unset, the tilde expands to +the home directory of the user executing the shell instead. Otherwise, the tilde-prefix is replaced with the home directory associated with the specified login name. If the tilde-prefix is @samp{~+}, the value of the shell variable @env{PWD} replaces the tilde-prefix. -If the tilde-prefix is @samp{~-}, the value of the shell variable -@env{OLDPWD}, if it is set, is substituted. +If the tilde-prefix is @samp{~-}, the shell substitutes +the value of the shell variable +@env{OLDPWD}, if it is set. If the characters following the tilde in the tilde-prefix consist of a number @var{N}, optionally prefixed by a @samp{+} or a @samp{-}, @@ -2068,12 +2128,16 @@ in the tilde-prefix as an argument (@pxref{The Directory Stack}). If the tilde-prefix, sans the tilde, consists of a number without a leading @samp{+} or @samp{-}, @samp{+} is assumed. -If the login name is invalid, or the tilde expansion fails, the word is -left unchanged. +The results of tilde expansion are treated as if they were quoted, so +the replacement is not subject to word splitting and filename expansion. -Each variable assignment is checked for unquoted tilde-prefixes immediately -following a @samp{:} or the first @samp{=}. -In these cases, tilde expansion is also performed. +If the login name is invalid, or the tilde expansion fails, the +tilde-prefix is left unchanged. + +Bash checks each variable assignment +for unquoted tilde-prefixes immediately +following a @samp{:} or the first @samp{=}, +and performs tilde expansion in these cases. Consequently, one may use filenames with tildes in assignments to @env{PATH}, @env{MAILPATH}, and @env{CDPATH}, and the shell assigns the expanded value. @@ -2082,13 +2146,13 @@ The following table shows how Bash treats unquoted tilde-prefixes: @table @code @item ~ -The value of @code{$HOME} +The value of @code{$HOME}. @item ~/foo @file{$HOME/foo} @item ~fred/foo -The subdirectory @code{foo} of the home directory of the user -@code{fred} +The directory or file @code{foo} in the home directory of the user +@code{fred}. @item ~+/foo @file{$PWD/foo} @@ -2097,13 +2161,13 @@ The subdirectory @code{foo} of the home directory of the user @file{$@{OLDPWD-'~-'@}/foo} @item ~@var{N} -The string that would be displayed by @samp{dirs +@var{N}} +The string that would be displayed by @samp{dirs +@var{N}}. @item ~+@var{N} -The string that would be displayed by @samp{dirs +@var{N}} +The string that would be displayed by @samp{dirs +@var{N}}. @item ~-@var{N} -The string that would be displayed by @samp{dirs -@var{N}} +The string that would be displayed by @samp{dirs -@var{N}}. @end table Bash also performs tilde expansion on words satisfying the conditions of @@ -2118,19 +2182,23 @@ above, when in @sc{posix} mode. @cindex expansion, parameter The @samp{$} character introduces parameter expansion, -command substitution, or arithmetic expansion. The parameter name +command substitution, or arithmetic expansion. +The parameter name or symbol to be expanded may be enclosed in braces, which are optional but serve to protect the variable to be expanded from characters immediately following it which could be interpreted as part of the name. +For example, if the first positional parameter has the value @samp{a}, +then @code{$@{11@}} expands to the value of the eleventh positional +parameter, while @code{$11} expands to @samp{a1}. When braces are used, the matching ending brace is the first @samp{@}} not escaped by a backslash or within a quoted string, and not within an embedded arithmetic expansion, command substitution, or parameter expansion. -The basic form of parameter expansion is $@{@var{parameter}@}. -The value of @var{parameter} is substituted. +The basic form of parameter expansion is $@{@var{parameter}@}, +which substitutes the value of @var{parameter}. The @var{parameter} is a shell parameter as described above (@pxref{Shell Parameters}) or an array reference (@pxref{Arrays}). The braces are required when @var{parameter} @@ -2142,7 +2210,8 @@ If the first character of @var{parameter} is an exclamation point (!), and @var{parameter} is not a nameref, it introduces a level of indirection. Bash uses the value formed by expanding the rest of -@var{parameter} as the new @var{parameter}; this is then +@var{parameter} as the new @var{parameter}; +this new parameter is then expanded and that value is used in the rest of the expansion, rather than the expansion of the original @var{parameter}. This is known as @code{indirect expansion}. @@ -2150,7 +2219,7 @@ The value is subject to tilde expansion, parameter expansion, command substitution, and arithmetic expansion. If @var{parameter} is a nameref, this expands to the name of the variable referenced by @var{parameter} instead of performing the -complete indirect expansion. +complete indirect expansion, for compatibility. The exceptions to this are the expansions of $@{!@var{prefix}*@} and $@{!@var{name}[@@]@} described below. @@ -2171,8 +2240,8 @@ is not null; if the colon is omitted, the operator tests only for existence. @item $@{@var{parameter}:@minus{}@var{word}@} If @var{parameter} is unset or null, the expansion of -@var{word} is substituted. Otherwise, the value of -@var{parameter} is substituted. +@var{word} is substituted. +Otherwise, the value of @var{parameter} is substituted. @example $ v=123 @@ -2184,19 +2253,25 @@ $ unset v $ echo $@{v-unset@} unset $ v= +$ echo $@{v-unset@} + $ echo $@{v:-unset-or-null@} unset-or-null @end example @item $@{@var{parameter}:=@var{word}@} -If @var{parameter} -is unset or null, the expansion of @var{word} -is assigned to @var{parameter}. -The value of @var{parameter} is then substituted. -Positional parameters and special parameters may not be assigned to +If @var{parameter} is unset or null, the expansion of @var{word} +is assigned to @var{parameter}, +and the result of the expansion +is the final value of @var{parameter}. +Positional parameters and special parameters may not be assigned in this way. @example +$ unset var +$ : $@{var=DEFAULT@} +$ echo $var +DEFAULT $ var= $ : $@{var:=DEFAULT@} $ echo $var @@ -2208,8 +2283,10 @@ If @var{parameter} is null or unset, the expansion of @var{word} (or a message to that effect if @var{word} is not present) is written to the standard error and the shell, if it -is not interactive, exits. Otherwise, the value of @var{parameter} is -substituted. +is not interactive, exits with a non-zero status. +An interactive shell does not exit, but does not execute the command +associated with the expansion. +Otherwise, the value of @var{parameter} is substituted. @example $ var= @@ -2221,11 +2298,16 @@ bash: var: var is unset or null If @var{parameter} is null or unset, nothing is substituted, otherwise the expansion of @var{word} is substituted. +The value of @var{parameter} is not used. @example $ var=123 $ echo $@{var:+var is set and not null@} var is set and not null +$ var= +$ echo $@{var:+var is set and not null@} + +$ @end example @item $@{@var{parameter}:@var{offset}@} @@ -2250,6 +2332,7 @@ it is interpreted as an offset in characters from the end of the value of @var{parameter} rather than a number of characters, and the expansion is the characters between @var{offset} and that result. + Note that a negative offset must be separated from the colon by at least one space to avoid being confused with the @samp{:-} expansion. @@ -2393,8 +2476,7 @@ When @samp{@@} is used and the expansion appears within double quotes, each key expands to a separate word. @item $@{#@var{parameter}@} -The length in characters of the expanded value of @var{parameter} is -substituted. +Substitutes the length in characters of the value of @var{parameter}. If @var{parameter} is @samp{*} or @samp{@@}, the value substituted is the number of positional parameters. If @var{parameter} is an array name subscripted by @samp{*} or @samp{@@}, @@ -2408,8 +2490,11 @@ array, and an index of -1 references the last element. @item $@{@var{parameter}#@var{word}@} @itemx $@{@var{parameter}##@var{word}@} The @var{word} -is expanded to produce a pattern and matched according to the rules -described below (@pxref{Pattern Matching}). If the pattern matches +is expanded to produce a pattern and matched +against the expanded value of @var{parameter} +according to the rules +described below (@pxref{Pattern Matching}). +If the pattern matches the beginning of the expanded value of @var{parameter}, then the result of the expansion is the expanded value of @var{parameter} with the shortest matching pattern (the @samp{#} case) or the @@ -2425,7 +2510,9 @@ array in turn, and the expansion is the resultant list. @item $@{@var{parameter}%@var{word}@} @itemx $@{@var{parameter}%%@var{word}@} The @var{word} -is expanded to produce a pattern and matched according to the rules +is expanded to produce a pattern and matched +against the expanded value of @var{parameter} +according to the rules described below (@pxref{Pattern Matching}). If the pattern matches a trailing portion of the expanded value of @var{parameter}, then the result of the expansion is the value of @@ -2444,13 +2531,14 @@ array in turn, and the expansion is the resultant list. @itemx $@{@var{parameter}/#@var{pattern}/@var{string}@} @itemx $@{@var{parameter}/%@var{pattern}/@var{string}@} The @var{pattern} is expanded to produce a pattern just as in -filename expansion. -@var{Parameter} is expanded and the longest match of @var{pattern} -against its value is replaced with @var{string}. +filename expansion and matched +against the expanded value of @var{parameter} +according to the rules +described below (@pxref{Pattern Matching}). +The longest match of @var{pattern} +in the expanded value is replaced with @var{string}. @var{string} undergoes tilde expansion, parameter and variable expansion, arithmetic expansion, command and process substitution, and quote removal. -The match is performed according to the rules described below -(@pxref{Pattern Matching}). In the first form above, only the first match is replaced. If there are two slashes separating @var{parameter} and @var{pattern} @@ -2460,13 +2548,13 @@ If @var{pattern} is preceded by @samp{#} (the third form above), it must match at the beginning of the expanded value of @var{parameter}. If @var{pattern} is preceded by @samp{%} (the fourth form above), it must match at the end of the expanded value of @var{parameter}. + If the expansion of @var{string} is null, -matches of @var{pattern} are deleted. -If @var{string} is null, matches of @var{pattern} are deleted and the @samp{/} following @var{pattern} may be omitted. -If the @code{patsub_replacement} shell option is enabled using @code{shopt}, +If the @code{patsub_replacement} shell option is enabled using @code{shopt} +(@pxref{The Shopt Builtin}), any unquoted instances of @samp{&} in @var{string} are replaced with the matching portion of @var{pattern}. This is intended to duplicate a common @code{sed} idiom. @@ -2538,6 +2626,7 @@ If the @code{nocasematch} shell option (see the description of @code{shopt} in @ref{The Shopt Builtin}) is enabled, the match is performed without regard to the case of alphabetic characters. + If @var{parameter} is @samp{@@} or @samp{*}, the substitution operation is applied to each positional parameter in turn, and the expansion is the resultant list. @@ -2735,8 +2824,9 @@ word splitting and filename expansion on the results. @cindex expansion, arithmetic @cindex arithmetic expansion -Arithmetic expansion allows the evaluation of an arithmetic expression -and the substitution of the result. The format for arithmetic expansion is: +Arithmetic expansion evalutes an arithmetic expression +and substitutes the result. +The format for arithmetic expansion is: @example $(( @var{expression} )) @@ -2754,7 +2844,9 @@ Arithmetic expansions may be nested. The evaluation is performed according to the rules listed below (@pxref{Shell Arithmetic}). If the expression is invalid, Bash prints a message indicating -failure to the standard error and no substitution occurs. +failure to the standard error, +does not perform the substitution, +and does not execute the command associated with the expansion. @node Process Substitution @subsection Process Substitution @@ -2777,13 +2869,16 @@ appears as a filename. This filename is passed as an argument to the current command as the result of the expansion. + If the @code{>(@var{list})} form is used, writing to -the file will provide input for @var{list}. If the -@code{<(@var{list})} form is used, the file passed as an -argument should be read to obtain the output of @var{list}. +the file will provide input for @var{list}. +If the +@code{<(@var{list})} form is used, reading the file +will obtain the output of @var{list}. Note that no space may appear between the @code{<} or @code{>} and the left parenthesis, otherwise the construct would be interpreted as a redirection. + Process substitution is supported on systems that support named pipes (@sc{fifo}s) or the @file{/dev/fd} method of naming open files. @@ -2808,12 +2903,11 @@ the default, then sequences of @code{space}, @code{tab}, and @code{newline} at the beginning and end of the results of the previous expansions are ignored, and any sequence of @env{IFS} -characters not at the beginning or end serves to delimit words. +characters not at the beginning or end delimits words. If @env{IFS} has a value other than the default, then sequences of the whitespace characters @code{space}, @code{tab}, and @code{newline} -are ignored at the beginning and end of the -word, as long as the whitespace character is in the -value of @env{IFS} (an @env{IFS} whitespace character). +present the value of @env{IFS} (an @env{IFS} whitespace character) +are ignored at the beginning and end of the word. Any character in @env{IFS} that is not @env{IFS} whitespace, along with any adjacent @env{IFS} whitespace characters, delimits a field. A sequence of @env{IFS} @@ -2836,8 +2930,7 @@ That is, the word @code{-d''} becomes @code{-d} after word splitting and null argument removal. -Note that if no expansion occurs, no splitting -is performed. +Note that if no expansion occurs, no splitting is performed. @node Filename Expansion @subsection Filename Expansion @@ -2854,15 +2947,18 @@ After word splitting, unless the @option{-f} option has been set @samp{*}, @samp{?}, and @samp{[}. If one of these characters appears, and is not quoted, then the word is regarded as a @var{pattern}, -and replaced with an alphabetically sorted list of -filenames matching the pattern (@pxref{Pattern Matching}). +and replaced with a sorted list of filenames matching the pattern +(@pxref{Pattern Matching}), +subject to the value of the @code{GLOBSORT} shell variable +(@pxref{Bash Variables}). + If no matching filenames are found, and the shell option @code{nullglob} is disabled, the word is left unchanged. If the @code{nullglob} option is set, and no matches are found, the word is removed. If the @code{failglob} shell option is set, and no matches are found, -an error message is printed and the command is not executed. +Bash prints an error message and does not execute the command. If the shell option @code{nocaseglob} is enabled, the match is performed without regard to the case of alphabetic characters. @@ -2889,7 +2985,8 @@ for a description of the @code{nocaseglob}, @code{nullglob}, The @env{GLOBIGNORE} shell variable may be used to restrict the set of file names matching a -pattern. If @env{GLOBIGNORE} +pattern. +If @env{GLOBIGNORE} is set, each matching file name that also matches one of the patterns in @env{GLOBIGNORE} is removed from the list of matches. If the @code{nocaseglob} option is set, the matching against the patterns in @@ -2906,9 +3003,13 @@ To get the old behavior of ignoring filenames beginning with a @samp{.}, make @samp{.*} one of the patterns in @env{GLOBIGNORE}. The @code{dotglob} option is disabled when @env{GLOBIGNORE} is unset. +The @code{GLOBIGNORE} +pattern matching honors the setting of the @code{extglob} shell +option. After the pattern is expanded and matched against filenames, the value of the -@env{GLOBSORT} variable controls how the results are sorted, as described +@env{GLOBSORT} shell +variable controls how the results are sorted, as described below (@pxref{Bash Variables}). @node Pattern Matching @@ -2940,23 +3041,26 @@ Matches any single character. Matches any one of the enclosed characters. A pair of characters separated by a hyphen denotes a @var{range expression}; any character that falls between those two characters, inclusive, -using the current locale's collating sequence and character set, -is matched. If the first character following the +using the current locale's collating sequence and character set, matches. +If the first character following the @samp{[} is a @samp{!} or a @samp{^} -then any character not enclosed is matched. A @samp{@minus{}} -may be matched by including it as the first or last character -in the set. A @samp{]} may be matched by including it as the first +then any character not within the range matches. +To match a @samp{@minus{}}, include it as the first +or last character in the set. +To match a @samp{]}, include it as the first character in the set. + The sorting order of characters in range expressions, and the characters included in the range, -are determined by -the current locale and the values of the +are determined by the current locale and the values of the @env{LC_COLLATE} and @env{LC_ALL} shell variables, if set. For example, in the default C locale, @samp{[a-dx-z]} is equivalent to -@samp{[abcdxyz]}. Many locales sort characters in dictionary order, and in -these locales @samp{[a-dx-z]} is typically not equivalent to @samp{[abcdxyz]}; -it might be equivalent to @samp{[aBbCcDdxYyZz]}, for example. To obtain +@samp{[abcdxyz]}. +Many locales sort characters in dictionary order, and in these locales +@samp{[a-dx-z]} is typically not equivalent to @samp{[abcdxyz]}; +it might be equivalent to @samp{[aBbCcDdxYyZz]}, for example. +To obtain the traditional interpretation of ranges in bracket expressions, you can force the use of the C locale by setting the @env{LC_COLLATE} or @env{LC_ALL} environment variable to the value @samp{C}, or enable the @@ -3025,6 +3129,10 @@ 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 @samp{.}. +If the @code{globskipdots} +shell option is enabled, the filenames +@samp{.} and @samp{..} +never appear in the set. As above, @samp{.} only has a special meaning when matching filenames. Complicated extended pattern matching against long strings is slow, @@ -3048,11 +3156,11 @@ Before a command is executed, its input and output may be @dfn{redirected} using a special notation interpreted by the shell. @dfn{Redirection} allows commands' file handles to be -duplicated, opened, closed, -made to refer to different files, +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 +When used with the @code{exec} builtin, +redirections modify file handles in the current shell execution environment. +The following redirection operators may precede or appear anywhere within a simple command or may follow a command. Redirections are processed in the order they appear, from @@ -3062,29 +3170,39 @@ Each redirection that may be preceded by a file descriptor number may instead be preceded by a word of the form @{@var{varname}@}. In this case, for each redirection operator except >&- and <&-, the shell will allocate a file descriptor greater -than 10 and assign it to @{@var{varname}@}. If >&- or <&- is preceded -by @{@var{varname}@}, the value of @var{varname} defines the file +than 10 and assign it to @{@var{varname}@}. +If @{@var{varname}@} precedes >&- or <&-, +the value of @var{varname} defines the file descriptor to close. If @{@var{varname}@} is supplied, the redirection persists beyond -the scope of the command, allowing the shell programmer to manage -the file descriptor's lifetime manually. +the scope of the command, which allows the shell programmer to manage +the file descriptor's lifetime manually without using +the @code{exec} builtin. The @code{varredir_close} shell option manages this behavior (@pxref{The Shopt Builtin}). In the following descriptions, if the file descriptor number is omitted, and the first character of the redirection operator is @samp{<}, the redirection refers to the standard input (file -descriptor 0). If the first character of the redirection operator +descriptor 0). +If the first character of the redirection operator is @samp{>}, the redirection refers to the standard output (file descriptor 1). -The word following the redirection operator in the following -descriptions, unless otherwise noted, is subjected to brace expansion, -tilde expansion, parameter expansion, command substitution, arithmetic -expansion, quote removal, filename expansion, and word splitting. +The \fIword\fP following the redirection operator in the following +descriptions, unless otherwise noted, is subjected to +brace expansion, +tilde expansion, +parameter and variable expansion, +command substitution, +arithmetic expansion, +quote removal, +filename expansion, +and word splitting. If it expands to more than one word, Bash reports an error. -Note that the order of redirections is significant. For example, +The order of redirections is significant. +For example, the command @example ls > @var{dirlist} 2>&1 @@ -3108,7 +3226,7 @@ internally with the behavior described below. @table @code @item /dev/fd/@var{fd} -If @var{fd} is a valid integer, file descriptor @var{fd} is duplicated. +If @var{fd} is a valid integer, duplicate file descriptor @var{fd}. @item /dev/stdin File descriptor 0 is duplicated. @@ -3137,9 +3255,8 @@ care, as they may conflict with file descriptors the shell uses internally. @subsection Redirecting Input -Redirection of input causes the file whose name results from -the expansion of @var{word} -to be opened for reading on file descriptor @code{n}, +Redirecting input opens the file whose name results from +the expansion of @var{word} for reading on file descriptor @code{n}, or the standard input (file descriptor 0) if @code{n} is not specified. @@ -3149,11 +3266,12 @@ The general format for redirecting input is: @end example @subsection Redirecting Output -Redirection of output causes the file whose name results from +Redirecting output opens the file whose name results from the expansion of @var{word} -to be opened for writing on file descriptor @var{n}, +for writing on file descriptor @var{n}, or the standard output (file descriptor 1) if @var{n} -is not specified. If the file does not exist it is created; +is not specified. +If the file does not exist it is created; if it does exist it is truncated to zero size. The general format for redirecting output is: @@ -3166,16 +3284,17 @@ option to the @code{set} builtin has been enabled, the redirection will fail if the file whose name results from the expansion of @var{word} exists and is a regular file. If the redirection operator is @samp{>|}, or the redirection operator is -@samp{>} and the @code{noclobber} option is not enabled, the redirection -is attempted even if the file named by @var{word} exists. +@samp{>} and the @code{noclobber} option is not enabled, +Bash attemps the redirection +even if the file named by @var{word} exists. @subsection Appending Redirected Output -Redirection of output in this fashion -causes the file whose name results from -the expansion of @var{word} -to be opened for appending on file descriptor @var{n}, +Redirecting output in this fashion opens +the file whose name results from the expansion of @var{word} +for appending on file descriptor @var{n}, or the standard output (file descriptor 1) if @var{n} -is not specified. If the file does not exist it is created. +is not specified. +If the file does not exist it is created. The general format for appending output is: @example @@ -3183,11 +3302,10 @@ The general format for appending output is: @end example @subsection Redirecting Standard Output and Standard Error -This construct allows both the +This construct redirects 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 @var{word}. +to the file whose name is the expansion of @var{word}. There are two formats for redirecting standard output and standard error: @@ -3206,15 +3324,15 @@ This is semantically equivalent to >@var{word} 2>&1 @end example When using the second form, @var{word} may not expand to a number or -@samp{-}. If it does, other redirection operators apply +@samp{-}. +If it does, other redirection operators apply (see Duplicating File Descriptors below) for compatibility reasons. @subsection Appending Standard Output and Standard Error -This construct allows both the +This construct appends 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 @var{word}. +to the file whose name is the expansion of @var{word}. The format for appending standard output and standard error is: @example @@ -3231,7 +3349,7 @@ This is semantically equivalent to This type of redirection instructs the shell to read input from the current source until it reads a line containing only @var{delimiter} (with no trailing blanks). -All of the lines read up to that point are then used as the standard +All of the lines read up to that point then become the standard input (or file descriptor @var{n} if @var{n} is specified) for a command. The format of here-documents is: @@ -3241,8 +3359,9 @@ The format of here-documents is: @var{delimiter} @end example -No parameter and variable expansion, command substitution, -arithmetic expansion, or filename expansion is performed on +The shell does not perform +parameter and variable expansion, command substitution, +arithmetic expansion, or filename expansion on @var{word}. If any part of @var{word} is quoted, the @@ -3250,18 +3369,27 @@ If any part of @var{word} is quoted, the and the lines in the here-document are not expanded. If @var{word} is unquoted, @var{delimiter} is @var{word} itself, +and the here-document text is treated similarly to a double-quoted string: all lines of the here-document are subjected to parameter expansion, command substitution, and arithmetic expansion, -the character sequence @code{\newline} is ignored, and @samp{\} -must be used to quote the characters -@samp{\}, @samp{$}, and @samp{`}. +the character sequence @code{\newline} is treated literally, +and @samp{\} must be used to quote the characters +@samp{\}, @samp{$}, and @samp{`}; +however, double quote characters have no special meaning. If the redirection operator is @samp{<<-}, -then all leading tab characters are stripped from input lines and the -line containing @var{delimiter}. +the shell strips leading tab characters are stripped from input lines +and the line containing @var{delimiter}. This allows here-documents within shell scripts to be indented in a natural fashion. +If the delimiter is not quoted, the +@code{\} +sequence is treated as a line continuation: the two lines are joined +and the backslash-newline is removed. +This happens while reading the here-document, before the check for +the ending delimiter, so joined lines can form the end delimiter. + @subsection Here Strings A variant of here documents, the format is: @example @@ -3272,8 +3400,7 @@ The @var{word} undergoes tilde expansion, parameter and variable expansion, command substitution, arithmetic expansion, and quote removal. Filename expansion and word splitting are not performed. -The result is supplied as a single string, -with a newline appended, +The result is supplied as a single string, with a newline appended, to the command on its standard input (or file descriptor @var{n} if @var{n} is specified). @@ -3285,28 +3412,29 @@ The redirection operator @noindent is used to duplicate input file descriptors. If @var{word} -expands to one or more digits, the file descriptor denoted by @var{n} +expands to one or more digits, file descriptor @var{n} is made to be a copy of that file descriptor. -If the digits in @var{word} do not specify a file descriptor open for -input, a redirection error occurs. +It is a redirection error if the digits in +@var{word} do not specify a file descriptor open for input. If @var{word} evaluates to @samp{-}, file descriptor @var{n} is closed. -If @var{n} is not specified, the standard input (file descriptor 0) is used. +If @var{n} is not specified, this uses the standard input (file descriptor 0). The operator @example [@var{n}]>&@var{word} @end example @noindent -is used similarly to duplicate output file descriptors. If -@var{n} is not specified, the standard output (file descriptor 1) is used. -If the digits in @var{word} do not specify a file descriptor open for -output, a redirection error occurs. +is used similarly to duplicate output file descriptors. +If @var{n} is not specified, this uses the standard output (file descriptor 1). +It is a redirection error if the digits in +@var{word} do not specify a file descriptor open for output. If @var{word} evaluates to @samp{-}, file descriptor @var{n} is closed. -As a special case, if @var{n} is omitted, and @var{word} does not -expand to one or more digits or @samp{-}, the standard output and standard -error are redirected as described previously. +As a special case, if @var{n} is omitted, and +@var{word} does not expand to one or more digits or @samp{-}, +this redirects the standard output and standard error as described +previously. @subsection Moving File Descriptors The redirection operator @@ -3332,10 +3460,11 @@ The redirection operator [@var{n}]<>@var{word} @end example @noindent -causes the file whose name is the expansion of @var{word} -to be opened for both reading and writing on file descriptor +opens the file whose name is the expansion of @var{word} +for both reading and writing on file descriptor @var{n}, or on file descriptor 0 if @var{n} -is not specified. If the file does not exist, it is created. +is not specified. +If the file does not exist, it is created. @node Executing Commands @section Executing Commands @@ -3358,7 +3487,7 @@ is not specified. If the file does not exist, it is created. @subsection Simple Command Expansion @cindex command expansion -When a simple command is executed, the shell performs the following +When the shell executes a simple command, it performs the following expansions, assignments, and redirections, from left to right, in the following order. @@ -3395,14 +3524,17 @@ If any of the assignments attempts to assign a 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 -affect the current shell environment. A redirection error causes the -command to exit with a non-zero status. +affect 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 expansions -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. +described below. +Otherwise, the command exits. +If one of the expansions 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 zero status. @node Command Search and Execution @subsection Command Search and Execution @@ -3416,23 +3548,25 @@ the following actions. @enumerate @item If the command name contains no slashes, the shell attempts to -locate it. If there exists a shell function by that name, that +locate it. +If there exists a shell function by that name, that function is invoked as described in @ref{Shell Functions}. @item 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. +it in the list of shell builtins. +If a match is found, that builtin is invoked. @item If the name is neither a shell function nor a builtin, and contains no slashes, Bash searches each element of @env{$PATH} for a directory containing an executable file -by that name. Bash uses a hash table to remember the full +by that name. +Bash uses a hash table to remember the full pathnames of executable files to avoid multiple @env{PATH} searches (see the description of @code{hash} in @ref{Bourne Shell Builtins}). -A full search of the directories in @env{$PATH} -is performed only if the command is not found in the hash table. +Bash performs a full search of the directories in @env{$PATH} +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 @code{command_not_found_handle}. If that function exists, it is invoked in a separate execution environment @@ -3452,8 +3586,9 @@ to the command are set to the arguments supplied, if any. @item 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 -@dfn{shell script} and the shell executes it as described in -@ref{Shell Scripts}. +@dfn{shell script}, +a file containing shell commands, +and the shell executes it as described in @ref{Shell Scripts}. @item If the command was not begun asynchronously, the shell waits for @@ -3512,8 +3647,8 @@ various process @sc{id}s, including those of background jobs When a simple command other than a builtin or shell function is to be executed, it is invoked in a separate execution environment that consists of -the following. Unless otherwise noted, the values are inherited -from the shell. +the following. +Unless otherwise noted, the values are inherited from the shell. @itemize @bullet @item @@ -3545,9 +3680,12 @@ Command substitution, commands grouped with parentheses, and asynchronous commands are invoked in a subshell environment that is a duplicate of the shell environment, except that traps caught by the shell are reset to the values -that the shell inherited from its parent at invocation. Builtin -commands that are invoked as part of a pipeline are also executed -in a subshell environment. Changes made to the subshell environment +that the shell inherited from its parent at invocation. +Builtin commands that are invoked as part of a pipeline, +except possibly in the last element depending on the value of the +@code{lastpipe} shell option (@pxref{The Shopt Builtin}), +are also executed in a subshell environment. +Changes made to the subshell environment cannot affect the shell's execution environment. When the shell is in @sc{posix} mode, @@ -3575,24 +3713,30 @@ This is a list of name-value pairs, of the form @code{name=value}. Bash provides several ways to manipulate the environment. On invocation, the shell scans its own environment and creates a parameter for each name found, automatically marking -it for @code{export} -to child processes. Executed commands inherit the environment. -The @code{export} and @samp{declare -x} -commands allow parameters and functions to be added to and -deleted from the environment. If the value of a parameter -in the environment is modified, the new value becomes part -of the environment, replacing the old. The environment +it for @code{export} to child processes. +Executed commands inherit the environment. +The @code{export}, @samp{declare -x}, and @code{unset} +commands modify the environment by +adding and deleting parameters and functions. +If the value of a parameter in the environment is modified, +the new value automatically becomes part +of the environment, replacing the old. +The environment inherited by any executed command consists of the shell's initial environment, whose values may be modified in the shell, less any pairs removed by the @code{unset} and @samp{export -n} commands, plus any additions via the @code{export} and @samp{declare -x} commands. -The environment for any simple command -or function may be augmented temporarily by prefixing it with -parameter assignments, as described in @ref{Shell Parameters}. +If any parameter assignment statements, +as described in @ref{Shell Parameters}, +appear before a simple command, +the variable assignments are part of that command's environment +for as long as it executes. These assignment statements affect only the environment seen by that command. +If these assignments precede a call to a shell function, the variables +are local to the function and exported to that function's children. If the @option{-k} option is set (@pxref{The Set Builtin}), then all parameter assignments are placed in the environment for a command, @@ -3607,25 +3751,28 @@ command in its environment. @cindex exit status The exit status of an executed command is the value returned by the -@code{waitpid} system call or equivalent function. Exit statuses -fall between 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. +@code{waitpid} system call or equivalent function. +Exit statuses fall between 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. -A non-zero exit status indicates failure. +So while an exit status of zero indicates success, a non-zero +exit status indicates failure. This seemingly counter-intuitive scheme is used so there is one well-defined way to indicate success and a variety of ways to indicate various failure modes. + When a command terminates on a fatal signal whose number is @var{N}, Bash uses the value 128+@var{N} as the exit status. If a command is not found, the child process created to -execute it returns a status of 127. If a command is found -but is not executable, the return status is 126. +execute it returns 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. @@ -3643,21 +3790,32 @@ generally invalid options or missing arguments. The exit status of the last command is available in the special parameter $? (@pxref{Special Parameters}). +Bash itself returns the exit status of the last command +executed, unless a syntax error occurs, in which case it exits +with a non-zero value. +See also the @code{exit} builtin command (@pxref{Bourne Shell Builtins}. + @node Signals @subsection Signals @cindex signal handling -When Bash is interactive, in the absence of any traps, it ignores -@code{SIGTERM} (so that @samp{kill 0} does not kill an interactive shell), -and @code{SIGINT} -is caught and handled (so that the @code{wait} builtin is interruptible). +When Bash is interactive, in the absence of any traps, +it ignores @code{SIGTERM} +(so that @samp{kill 0} does not kill an interactive shell), +and catches and handles @code{SIGINT} +(so that the @code{wait} builtin is interruptible). When Bash receives a @code{SIGINT}, it breaks out of any executing loops. In all cases, Bash ignores @code{SIGQUIT}. If job control is in effect (@pxref{Job Control}), Bash ignores @code{SIGTTIN}, @code{SIGTTOU}, and @code{SIGTSTP}. -Non-builtin commands started by Bash have signal handlers set to the -values inherited by the shell from its parent. +The @code{trap} builtin modifies the shell's signal handling, as +described below (@pxref{Bourne Shell Builtins}. + +Non-builtin commands Bash executes have signal handlers set to the +values inherited by the shell from its parent, +unless @code{trap} sets them to be ignored, in which case the child +process will ignore them as well. When job control is not in effect, asynchronous commands ignore @code{SIGINT} and @code{SIGQUIT} in addition to these inherited handlers. @@ -3668,26 +3826,25 @@ command substitution ignore the keyboard-generated job control signals The shell exits by default upon receipt of a @code{SIGHUP}. Before exiting, an interactive shell resends the @code{SIGHUP} to all jobs, running or stopped. -Stopped jobs are sent @code{SIGCONT} to ensure that they receive -the @code{SIGHUP}. +The shell sends @code{SIGCONT} to stopped jobs to ensure that they +receive the @code{SIGHUP} +(@xref{Job Control}, for more information about running and stopped jobs). To prevent the shell from sending the @code{SIGHUP} signal to a -particular job, it should be removed -from the jobs table with the @code{disown} -builtin (@pxref{Job Control Builtins}) or marked -to not receive @code{SIGHUP} using @code{disown -h}. +particular job, remove it from the jobs table with the @code{disown} +builtin (@pxref{Job Control Builtins}) or mark it +not to receive @code{SIGHUP} using @code{disown -h}. -If the @code{huponexit} shell option has been set with @code{shopt} +If the @code{huponexit} shell option has been set using @code{shopt} (@pxref{The Shopt Builtin}), Bash sends a @code{SIGHUP} to all jobs when an interactive login shell exits. If Bash 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 command completes. -When Bash is waiting for an asynchronous -command via the @code{wait} builtin, the reception of a signal for -which a trap has been set will cause the @code{wait} builtin to return -immediately with an exit status greater than 128, immediately after -which the trap is executed. +If Bash is waiting for an asynchronous command via the @code{wait} builtin, +and it receives a signal for which a trap has been set, +the @code{wait} builtin will return immediately with an exit status +greater than 128, immediately after which the shell executes the trap. When job control is not enabled, and Bash is waiting for a foreground command to complete, the shell receives keyboard-generated signals @@ -3714,7 +3871,8 @@ handled the @code{SIGINT} itself and did not treat it as a fatal signal. In that case, Bash does not treat @code{SIGINT} as a fatal signal, either, instead assuming that the @code{SIGINT} was used as part of the program's normal operation (e.g., @command{emacs} uses it to abort editing -commands) or deliberately discarded. However, Bash will run any +commands) or deliberately discarded. +However, Bash will run any trap set on @code{SIGINT}, as it does with any other trapped signal it receives while it is waiting for the foreground command to complete, for compatibility. @@ -3724,14 +3882,18 @@ complete, for compatibility. @section Shell Scripts @cindex shell script -A shell script is a text file containing shell commands. When such -a file is used as the first non-option argument when invoking Bash, -and neither the @option{-c} nor @option{-s} option is supplied -(@pxref{Invoking Bash}), -Bash reads and executes commands from the file, then exits. This -mode of operation creates a non-interactive shell. The shell first -searches for the file in the current directory, and looks in the -directories in @env{$PATH} if not found there. +A shell script is a text file containing shell commands. +When such a file is used as the first non-option argument when +invoking Bash, and neither the @option{-c} nor @option{-s} option +is supplied (@pxref{Invoking Bash}), +Bash reads and executes commands from the file, then exits. +This mode of operation creates a non-interactive shell. +If the filename does not contain any slashes, the shell first searches +for the file in the current directory, and looks in the directories in +@env{$PATH} if not found there. + +Bash tries to determine whether the file is a text file or a binary, +and will not execute files it determines to be binaries. When Bash runs a shell script, it sets the special parameter @code{0} to the name @@ -3741,10 +3903,9 @@ If no additional arguments are supplied, the positional parameters are unset. A shell script may be made executable by using the @code{chmod} command -to turn on the execute bit. When Bash finds such a file while -searching the @env{$PATH} for a command, it creates a -new instance of itself -to execute it. +to turn on the execute bit. +When Bash finds such a file while searching the @env{$PATH} for a command, +it creates a new instance of itself to execute it. In other words, executing @example filename @var{arguments} @@ -3763,8 +3924,10 @@ exception that the locations of commands remembered by the parent (see the description of @code{hash} in @ref{Bourne Shell Builtins}) are retained by the child. -Most versions of Unix make this a part of the operating system's command -execution mechanism. If the first line of a script begins with +The @sc{gnu} operating system, +and most versions of Unix, +make this a part of the operating system's command execution mechanism. +If the first line of a script begins with the two characters @samp{#!}, the remainder of the line specifies an interpreter for the program and, depending on the operating system, one or more optional arguments for that interpreter. @@ -3787,7 +3950,8 @@ portable to assume that using more than one argument will work. Bash scripts often begin with @code{#! /bin/bash} (assuming that Bash has been installed in @file{/bin}), since this ensures that Bash will be used to interpret the script, even if it is executed -under another shell. It's a common idiom to use @code{env} to find +under another shell. +It's a common idiom to use @code{env} to find @code{bash} even if it's been installed in another directory: @code{#!/usr/bin/env bash} will find the first occurrence of @code{bash} in @env{$PATH}. @@ -3860,8 +4024,9 @@ The return status is zero. . [-p @var{path}] @var{filename} [@var{arguments}] @end example -Read and execute commands from the @var{filename} argument in the -current shell context. +The @code{.} command reads and execute commands from the @var{filename} +argument in the current shell context. + If @var{filename} does not contain a slash, @code{.} searches for it. If @option{-p} is supplied, @code{.} treats @var{path} as a colon-separated list of directories in which to find @var{filename}; @@ -3870,20 +4035,24 @@ otherwise, @code{.} uses the directories in @env{PATH} to find @var{filename}. When Bash is not in @sc{posix} mode, it searches the current directory if @var{filename} is not found in @env{$PATH}, but does not search the current directory if @option{-p} is supplied. -If the @code{sourcepath} option (@pxref{The Shopt Builtin}) is turned off +If the @code{sourcepath} option (@pxref{The Shopt Builtin}) is turned off, @code{.} does not search @env{PATH}. + If any @var{arguments} are supplied, they become the positional parameters when @var{filename} is executed. Otherwise the positional parameters are unchanged. + If the @option{-T} option is enabled, @code{.} inherits any trap on @code{DEBUG}; if it is not, any @code{DEBUG} trap string is saved and restored around the call to @code{.}, and @code{.} unsets the @code{DEBUG} trap while it executes. If @option{-T} is not set, and the sourced file changes -the @code{DEBUG} trap, the new value is retained when @code{.} completes. -The return status is the exit status of the last command executed, or -zero if no commands are executed. If @var{filename} is not found, or -cannot be read, the return status is non-zero. +the @code{DEBUG} trap, the new value persists after @code{.} completes. +The return status is the exit status of the last command executed +from @var{filename}, or +zero if no commands are executed. +If @var{filename} is not found, or cannot be read, +the return status is non-zero. This builtin is equivalent to @code{source}. @item break @@ -3893,7 +4062,7 @@ break [@var{n}] @end example Exit from a @code{for}, @code{while}, @code{until}, or @code{select} loop. -If @var{n} is supplied, the @var{n}th enclosing loop is exited. +If @var{n} is supplied, @code{break} exits the @var{n}th enclosing loop. @var{n} must be greater than or equal to 1. The return status is zero unless @var{n} is not greater than or equal to 1. @@ -3905,12 +4074,14 @@ cd [-L|[-P [-e]]] [-@@] [@var{directory}] Change the current working directory to @var{directory}. If @var{directory} is not supplied, the value of the @env{HOME} -shell variable is used. +shell variable is used as @var{directory}. If the shell variable @env{CDPATH} exists, @code{cd} uses it as a search path: @code{cd} searches each directory name in @env{CDPATH} for @var{directory}, with alternative directory names in @env{CDPATH} separated by a colon (@samp{:}). +A null directory name in @env{CDPATH} means the same thing as the +current directory. If @var{directory} begins with a slash, @env{CDPATH} is not used. The @option{-P} option means to not follow symbolic links: symbolic links @@ -3927,19 +4098,19 @@ of @var{directory}. If the @option{-e} option is supplied with @option{-P} and the current working directory cannot be successfully determined -after a successful directory change, @code{cd} will return an unsuccessful +after a successful directory change, @code{cd} will return a non-zero status. On systems that support it, the @option{-@@} option presents the extended attributes associated with a file as a directory. If @var{directory} is @samp{-}, it is converted to @env{$OLDPWD} -before the directory change is attempted. +before attempting the directory change. -If a non-empty directory name from @env{CDPATH} is used, or if +If @code{cd} uses a non-empty directory name from @env{CDPATH}, or if @samp{-} is the first argument, and the directory change is -successful, the absolute pathname of the new working directory is -written to the standard output. +successful, @code{cd} writes the absolute pathname of the new +working directory to the standard output. If the directory change is successful, @code{cd} sets the value of the @env{PWD} environment variable to the new directory name, and sets the @@ -3955,10 +4126,10 @@ non-zero otherwise. continue [@var{n}] @end example -Resume the next iteration of an enclosing @code{for}, @code{while}, -@code{until}, or @code{select} loop. -If @var{n} is supplied, the execution of the @var{n}th enclosing loop -is resumed. +@code{continue} resumes the next iteration of an enclosing @code{for}, +@code{while}, @code{until}, or @code{select} loop. +If @var{n} is supplied, Bash resumes the execution of the @var{n}th +enclosing loop. @var{n} must be greater than or equal to 1. The return status is zero unless @var{n} is not greater than or equal to 1. @@ -3968,9 +4139,10 @@ The return status is zero unless @var{n} is not greater than or equal to 1. eval [@var{arguments}] @end example -The arguments are concatenated together into a single command, which is -then read and executed, and its exit status returned as the exit status -of @code{eval}. +The @var{arguments} are concatenated together into a single command, +separated by spaces. +Bash then reads and executes this command and returns its exit status +as the exit status of @code{eval}. If there are no arguments or only empty arguments, the return status is zero. @@ -3982,6 +4154,8 @@ exec [-cl] [-a @var{name}] [@var{command} [@var{arguments}]] If @var{command} is supplied, it replaces the shell without creating a new process. +@var{command} cannot be a shell builtin or function. +The @var{arguments} become the arguments to @var{command} If the @option{-l} option is supplied, the shell places a dash at the beginning of the zeroth argument passed to @var{command}. This is what the @code{login} program does. @@ -3989,15 +4163,18 @@ The @option{-c} option causes @var{command} to be executed with an empty environment. If @option{-a} is supplied, the shell passes @var{name} as the zeroth argument to @var{command}. + If @var{command} cannot be executed for some reason, a non-interactive shell exits, -unless the @code{execfail} shell option -is enabled. In that case, it returns failure. -An interactive shell returns failure if the file cannot be executed. +unless the @code{execfail} shell option is enabled. +In that case, it returns a non-zero status. +An interactive shell returns a non-zero status if the file cannot be executed. A subshell exits unconditionally if @code{exec} fails. -If no @var{command} is specified, redirections may be used to affect -the current shell environment. If there are no redirection errors, the -return status is zero; otherwise the return status is non-zero. + +If @var{command} is not specified, redirections may be used to affect +the current shell environment. +If there are no redirection errors, the return status is zero; +otherwise the return status is non-zero. @item exit @btindex exit @@ -4015,15 +4192,23 @@ Any trap on @code{EXIT} is executed before the shell terminates. export [-fn] [-p] [@var{name}[=@var{value}]] @end example -Mark each @var{name} to be passed to child processes -in the environment. If the @option{-f} option is supplied, the @var{name}s +Mark each @var{name} to be passed to subsequently executed commands in the +environment. +If the @option{-f} option is supplied, the @var{name}s refer to shell functions; otherwise the names refer to shell variables. -The @option{-n} option means to no longer mark each @var{name} for export. -If no @var{name}s are supplied, or if the @option{-p} option is given, a -list of names of all exported variables is displayed. + +The @option{-n} option means to unexport each name: no longer mark +it for export. +If no @var{name}s are supplied, or if the @option{-p} option is given, +@code{export} displays a list of names of all exported variables on the +standard output. The @option{-p} option displays output in a form that may be reused as input. -If a variable name is followed by =@var{value}, the value of -the variable is set to @var{value}. + +@code{export} allows the value of a variable to be set at the same time +it is exported or unexported by following the variable name with +=@var{value}. +This sets the value of the variable is to @var{value} while modifying +the export attribute. The return status is zero unless an invalid option is supplied, one of the names is not a valid shell variable name, or @option{-f} is supplied @@ -4035,7 +4220,7 @@ with a name that is not a shell function. false @end example -Does nothing, returns a non-zero status. +Does nothing; returns a non-zero status. @item getopts @btindex getopts @@ -4043,12 +4228,14 @@ Does nothing, returns a non-zero status. getopts @var{optstring} @var{name} [@var{arg} @dots{}] @end example -@code{getopts} is used by shell scripts to parse positional parameters. +@code{getopts} is used by shell scripts or functions to parse positional +parameters and obtain options and their arguments. @var{optstring} contains the option characters to be recognized; if a character is followed by a colon, the option is expected to have an argument, which should be separated from it by whitespace. The colon (@samp{:}) and question mark (@samp{?}) may not be used as option characters. + Each time it is invoked, @code{getopts} places the next option in the shell variable @var{name}, initializing @var{name} if it does not exist, @@ -4058,11 +4245,12 @@ variable @env{OPTIND}. is invoked. When an option requires an argument, @code{getopts} places that argument into the variable @env{OPTARG}. + The shell does not reset @env{OPTIND} automatically; it must be manually reset between multiple calls to @code{getopts} within the same shell -invocation if a new set of parameters is to be used. +invocation to use a new set of parameters. -When the end of options is encountered, @code{getopts} exits with a +When it reaches the end of options, @code{getopts} exits with a return value greater than zero. @env{OPTIND} is set to the index of the first non-option argument, and @var{name} is set to @samp{?}. @@ -4071,11 +4259,12 @@ and @var{name} is set to @samp{?}. normally parses the positional parameters, but if more arguments are supplied as @var{arg} values, @code{getopts} parses those instead. -@code{getopts} can report errors in two ways. If the first character of -@var{optstring} is a colon, @var{silent} -error reporting is used. In normal operation, diagnostic messages -are printed when invalid options or missing option arguments are -encountered. +@code{getopts} can report errors in two ways. +If the first character of +@var{optstring} is a colon, @code{getopts} uses @var{silent} +error reporting. +In normal operation, @code{getopts} prints diagnostic messages +when it encounters invalid options or missing option arguments. If the variable @env{OPTERR} is set to 0, no error messages will be displayed, even if the first character of @code{optstring} is not a colon. @@ -4094,6 +4283,10 @@ If @code{getopts} is silent, it sets the value of @var{name} to a colon (@samp{:}), and sets @env{OPTARG} to the option character found. +@code{getopts} returns true if an option, specified or unspecified, +is found. +It returns false when it encounters the end of options or if an error occurs. + @item hash @btindex hash @example @@ -4105,26 +4298,30 @@ commands specified as @var{name} arguments, so they need not be searched for on subsequent invocations. The commands are found by searching through the directories listed in @env{$PATH}. -Any previously-remembered filename is discarded. -The @option{-p} option inhibits the path search, and @var{filename} is -used as the location of @var{name}. +Any previously-remembered filename associated with @var{name} is discarded. +The @option{-p} option inhibits the path search, and @code{hash} uses +@var{filename} as the location of @var{name}. + The @option{-r} option causes the shell to forget all remembered locations. Assigning to the @env{PATH} variable also clears all hashed filenames. The @option{-d} option causes the shell to forget the remembered location of each @var{name}. -If the @option{-t} option is supplied, the full pathname to which each -@var{name} corresponds is printed. If multiple @var{name} arguments are -supplied with @option{-t}, the @var{name} is printed before the hashed -full pathname. -The @option{-l} option causes output to be displayed in a format -that may be reused as input. + +If the @option{-t} option is supplied, @code{hash} prints the full pathname +corresponding to each @var{name}. +If multiple @var{name} arguments are +supplied with @option{-t}, @code{hash} prints each @var{name} +before the corresponding hashed full path. +The @option{-l} option displays output in a format that may be reused as input. + If no arguments are given, or if only @option{-l} is supplied, -information about remembered commands is printed. +@code{hash} prints information about remembered commands. The @option{-t}, @option{-d}, and @option{-p} options (the options that act on the @var{name} arguments) are mutually exclusive. Only one will be active. If more than one is supplied, @option{-t} has higher priority than -@option{-p}, and both are higher priority than @option{-d}. +@option{-p}, and both have higher priority than @option{-d}. + The return status is zero unless a @var{name} is not found or an invalid option is supplied. @@ -4135,7 +4332,10 @@ pwd [-LP] @end example Print the absolute pathname of the current working directory. -If the @option{-P} option is supplied, the pathname printed will not +If the @option{-P} option is supplied, +or the @option{-o physical} option to the @code{set} builtin +(@pxref{The Set Builtin}) is enabled, +the pathname printed will not contain symbolic links. If the @option{-L} option is supplied, the pathname printed may contain symbolic links. @@ -4150,21 +4350,27 @@ readonly [-aAf] [-p] [@var{name}[=@var{value}]] @dots{} @end example Mark each @var{name} as readonly. -The values of these names may not be changed by subsequent assignment. +The values of these names may not be changed by subsequent assignment +or unset. If the @option{-f} option is supplied, each @var{name} refers to a shell function. The @option{-a} option means each @var{name} refers to an indexed array variable; the @option{-A} option means each @var{name} refers to an associative array variable. If both options are supplied, @option{-A} takes precedence. -If no @var{name} arguments are given, or if the @option{-p} -option is supplied, a list of all readonly names is printed. +If no @var{name} arguments are supplied, or if the @option{-p} +option is supplied, print a list of all readonly names. The other options may be used to restrict the output to a subset of the set of readonly names. -The @option{-p} option causes output to be displayed in a format that -may be reused as input. -If a variable name is followed by =@var{value}, the value of -the variable is set to @var{value}. +The @option{-p} +option displays output in a format that may be reused as input. + +@code{readonly} allows the value of a variable to be set at the same time +the readonly attribute is changed by following the variable name with +=@var{value}. +This sets the value of the variable is to @var{value} while modifying +the readonly attribute. + The return status is zero unless an invalid option is supplied, one of the @var{name} arguments is not a valid shell variable or function name, or the @option{-f} option is supplied with a name that is not a shell function. @@ -4175,24 +4381,27 @@ or the @option{-f} option is supplied with a name that is not a shell function. return [@var{n}] @end example -Cause a shell function to stop executing and return the value @var{n} +Stop executing a shell function or sourced file and return the value @var{n} to its caller. If @var{n} is not supplied, the return value is the exit status of the -last command executed in the function. +last command executed. If @code{return} is executed by a trap handler, the last command used to determine the status is the last command executed before the trap handler. If @code{return} is executed during a @code{DEBUG} trap, the last command used to determine the status is the last command executed by the trap handler before @code{return} was invoked. -@code{return} may also be used to terminate execution of a script -being executed with the @code{.} (@code{source}) builtin, -returning either @var{n} or + +When @code{return} is used to terminate execution of a script +being executed with the @code{.} (@code{source}) builtin, it +returns either @var{n} or the exit status of the last command executed within the script as the exit status of the script. If @var{n} is supplied, the return value is its least significant 8 bits. + Any command associated with the @code{RETURN} trap is executed before execution resumes after the function or script. + The return status is non-zero if @code{return} is supplied a non-numeric argument or is used outside a function and not during the execution of a script by @code{.} or @code{source}. @@ -4203,15 +4412,15 @@ and not during the execution of a script by @code{.} or @code{source}. shift [@var{n}] @end example -Shift the positional parameters to the left by @var{n}. -The positional parameters from @var{n}+1 @dots{} @code{$#} are +Shift the positional parameters to the left by @var{n}: +the positional parameters from @var{n}+1 @dots{} @code{$#} are renamed to @code{$1} @dots{} @code{$#}-@var{n}. Parameters represented by the numbers @code{$#} down to @code{$#}-@var{n}+1 are unset. @var{n} must be a non-negative number less than or equal to @code{$#}. +If @var{n} is not supplied, it is assumed to be 1. If @var{n} is zero or greater than @code{$#}, the positional parameters are not changed. -If @var{n} is not supplied, it is assumed to be 1. The return status is zero unless @var{n} is greater than @code{$#} or less than zero, non-zero otherwise. @@ -4223,21 +4432,20 @@ less than zero, non-zero otherwise. test @var{expr} @end example -Evaluate a conditional expression @var{expr} and return a status of 0 -(true) or 1 (false). +Evaluate a conditional expression @var{expr} and return a status of +0 (true) or 1 (false). Each operator and operand must be a separate argument. Expressions are composed of the primaries described below in @ref{Bash Conditional Expressions}. -@code{test} does not accept any options, nor does it accept and ignore -an argument of @option{--} as signifying the end of options. - -When the @code{[} form is used, the last argument to the command must +@code{test} does not accept any options, nor does it accept and +ignore an argument of @option{--} as signifying the end of options. +When using the @code{[} form, the last argument to the command must be a @code{]}. Expressions may be combined using the following operators, listed in decreasing order of precedence. The evaluation depends on the number of arguments; see below. -Operator precedence is used when there are five or more arguments. +@code{test} uses operator precedence when there are five or more arguments. @table @code @item ! @var{expr} @@ -4245,7 +4453,7 @@ True if @var{expr} is false. @item ( @var{expr} ) Returns the value of @var{expr}. -This may be used to override the normal precedence of operators. +This may be used to override normal operator precedence. @item @var{expr1} -a @var{expr2} True if both @var{expr1} and @var{expr2} are true. @@ -4319,9 +4527,8 @@ using the rules listed above. If the shell is in @sc{posix} mode, or if the expression is part of the @code{[[} command, the @samp{<} and @samp{>} operators sort using the current locale. -If the shell is not in @sc{posix} mode, -the @code{test} and @samp{[} commands -sort lexicographically using ASCII ordering. +If the shell is not in @sc{posix} mode, the @code{test} and @samp{[} +commands sort lexicographically using ASCII ordering. The historical operator-precedence parsing with 4 or more arguments can lead to ambiguities when it encounters strings that look like primaries. @@ -4359,9 +4566,10 @@ trap [-Plp] [@var{action}] [@var{sigspec} @dots{}] @end example The @var{action} is a command that is read and executed when the -shell receives signal @var{sigspec}. If @var{action} is absent (and +shell receives any of the signals @var{sigspec}. +If @var{action} is absent (and there is a single @var{sigspec}) or -equal to @samp{-}, each specified signal's disposition is reset +equal to @samp{-}, each specified @var{sigspec}'ss disposition is reset to the value it had when the shell was started. If @var{action} is the null string, then the signal specified by each @var{sigspec} is ignored by the shell and commands it invokes. @@ -4370,6 +4578,7 @@ If no arguments are supplied, @code{trap} prints the actions associated with each trapped signal as a set of @code{trap} commands that can be reused as shell input to restore the current signal dispositions. + If @var{action} is not present and @option{-p} has been supplied, @code{trap} displays the trap commands associated with each @var{sigspec}, or, if no @var{sigspec}s are supplied, for all trapped signals, @@ -4378,15 +4587,17 @@ restore the current signal dispositions. The @option{-P} option behaves similarly, but displays only the actions associated with each @var{sigspec} argument. @option{-P} requires at least one @var{sigspec} argument. -The @option{-P} or @option{-p} options to @code{trap} may be +The @option{-P} or @option{-p} options may be used in a subshell environment (e.g., command substitution) and, as long as they are used before @code{trap} is used to change a signal's handling, will display the state of its parent's traps. -The @option{-l} option causes @code{trap} to print a list of signal names +The @option{-l} option prints a list of signal names and their corresponding numbers. Each @var{sigspec} is either a signal name or a signal number. Signal names are case insensitive and the @code{SIG} prefix is optional. +If @option{-l} is supplied with no @var{sigspec} arguments, it prints a +list of valid signal names. If a @var{sigspec} is @code{0} or @code{EXIT}, @var{action} is executed when the shell exits. @@ -4395,8 +4606,8 @@ before every simple command, @code{for} command, @code{case} command, @code{select} command, (( arithmetic command, [[ conditional command, arithmetic @code{for} command, and before the first command executes in a shell function. -Refer to the description of the @code{extdebug} option to the -@code{shopt} builtin (@pxref{The Shopt Builtin}) for details of its +Refer to the description of the @code{extdebug} shell option +(@pxref{The Shopt Builtin}) for details of its effect on the @code{DEBUG} trap. If a @var{sigspec} is @code{RETURN}, @var{action} is executed each time a shell function or a script executed with the @code{.} or @@ -4414,19 +4625,21 @@ part of the test following the @code{if} or @code{elif} reserved words, part of a command executed in a @code{&&} or @code{||} list except the command following the final @code{&&} or @code{||}, any command in a pipeline but the last, +(subject to the state of the @code{pipefail} shell option), or if the command's return status is being inverted using @code{!}. These are the same conditions obeyed by the @code{errexit} (@option{-e}) option. -Signals ignored upon entry to a non-interactive shell cannot be trapped or +When the shell is not interactive, +signals ignored upon entry to a non-interactive 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 is zero unless a @var{sigspec} does not specify a -valid signal. +valid signal; non-zero otherwise. @item true @btindex true @@ -4442,13 +4655,15 @@ Does nothing, returns a 0 status. umask [-p] [-S] [@var{mode}] @end example -Set the shell process's file creation mask to @var{mode}. If -@var{mode} begins with a digit, it is interpreted as an octal number; +Set the shell process's file creation mask to @var{mode}. +If @var{mode} begins with a digit, it is interpreted as an octal number; if not, it is interpreted as a symbolic mode mask similar -to that accepted by the @code{chmod} command. If @var{mode} is -omitted, the current value of the mask is printed. If the @option{-S} -option is supplied without a @var{mode} argument, the mask is printed -in a symbolic format. +to that accepted by the @code{chmod} command. +If @var{mode} is omitted, @code{umask} prints the current value of the mask. +If the @option{-S} +option is supplied without a @var{mode} argument, @code{umask} +prints the mask in a symbolic format; +the default output is an octal number. If the @option{-p} option is supplied, and @var{mode} is omitted, the output is in a form that may be reused as input. The return status is zero if the mode is successfully changed or if @@ -4477,6 +4692,9 @@ If no options are supplied, each @var{name} refers to a variable; if there is no variable by that name, a function with that name, if any, is unset. Readonly variables and functions may not be unset. +When variables or functions are removed, they are also removed +from the environment passed to subsequent commands. +Some shell variables may not be unset. Some shell variables lose their special behavior if they are unset; such behavior is noted in the description of the individual variables. The return status is zero unless a @var{name} is readonly or may not be unset. @@ -4500,9 +4718,15 @@ alias [-p] [@var{name}[=@var{value}] @dots{}] Without arguments or with the @option{-p} option, @code{alias} prints the list of aliases on the standard output in a form that allows them to be reused as input. -If arguments are supplied, an alias is defined for each @var{name} -whose @var{value} is given. If no @var{value} is given, the name -and value of the alias is printed. +If arguments are supplied, define an alias for each @var{name} +whose @var{value} is given. +If no @var{value} is given, print the name and value of the alias @var{name}. +A trailing space in @var{value} causes the next word to be +checked for alias substitution when the alias is expanded +during command parsing. +@code{alias} returns true unless a @var{name} is given +(without a corresponding =@var{value}) +for which no alias has been defined. Aliases are described in @ref{Aliases}. @item bind @@ -4520,13 +4744,19 @@ bind @var{readline-command-line} Display current Readline (@pxref{Command Line Editing}) key and function bindings, -bind a key sequence to a Readline function or macro, +bind a key sequence to a Readline function or macro +or to a shell command, or set a Readline variable. -Each non-option argument is a command as it would appear in a +Each non-option argument is a key binding or command as it would appear in a Readline initialization file (@pxref{Readline Init File}), but each binding or command must be passed as a separate argument; e.g., @samp{"\C-x\C-r":re-read-init-file}. +In the following descriptions, options that display output in a form +available to be re-read format their output +as commands that would appear in a Readline initialization file or +that would be supplied as individual arguments to a @code{bind} command. + Options, if supplied, have the following meanings: @table @code @@ -4542,17 +4772,17 @@ names are @code{vi-move}, @code{vi-command}, and @code{vi-insert}. -@code{vi} is equivalent to @code{vi-command} (@code{vi-move} is also a -synonym); @code{emacs} is equivalent to @code{emacs-standard}. +@code{vi} is equivalent to @code{vi-command} +(@code{vi-move} is also a synonym); +@code{emacs} is equivalent to @code{emacs-standard}. @item -l List the names of all Readline functions. @item -p Display Readline function names and bindings -in such a way that they can be used as -an argument to a subsequent @code{bind} command -or in a Readline initialization file. +in such a way that they can be used as an argument to a subsequent +@code{bind} command or in a Readline initialization file. If arguments remain after option processing, @code{bind} treats them as readline command names and restricts output to those names. @@ -4561,32 +4791,32 @@ List current Readline function names and bindings. If arguments remain after option processing, @code{bind} treats them as readline command names and restricts output to those names. -@item -v -Display Readline variable names and values -in such a way that they can be used as +@item -s +Display Readline key sequences bound to macros and the strings +they output in such a way that they can be used as an argument to a subsequent @code{bind} command or in a Readline initialization file. -@item -V -List current Readline variable names and values. +@item -S +Display Readline key sequences bound to macros and the strings they output. -@item -s -Display Readline key sequences bound to macros and the strings they output +@item -v +Display Readline variable names and values in such a way that they can be used as an argument to a subsequent @code{bind} command or in a Readline initialization file. -@item -S -Display Readline key sequences bound to macros and the strings they output. +@item -V +List current Readline variable names and values. @item -f @var{filename} Read key bindings from @var{filename}. @item -q @var{function} -Query about which keys invoke the named @var{function}. +Display key sequences that invoke the named Readline @var{function}. @item -u @var{function} -Unbind all keys bound to the named @var{function}. +Unbind all key sequences bound to the named Readline @var{function}. @item -r @var{keyseq} Remove any current binding for @var{keyseq}. @@ -4602,18 +4832,20 @@ special backslash-escapes in @var{shell-command} before saving it. If the separator is a colon, any enclosing double quotes are optional, and Readline does not expand the command string before saving it. Since the entire key binding expression must be a single argument, it -should be enclosed in quotes. -When @var{shell-command} is executed, the shell sets the +should be enclosed in single quotes. +When @var{shell-command} is executed, the shell sets thex @code{READLINE_LINE} variable to the contents of the Readline line -buffer and the @code{READLINE_POINT} and @code{READLINE_MARK} variables -to the current location of the insertion point and the saved insertion -point (the @var{mark}), respectively. +buffer +and the +@code{READLINE_POINT} and @code{READLINE_MARK} +variables to the current location of the insertion point and the saved +insertion point (the @var{mark}), respectively. The shell assigns any numeric argument the user supplied to the @code{READLINE_ARGUMENT} variable. If there was no argument, that variable is not set. -If the executed command changes the value of any of @code{READLINE_LINE}, -@code{READLINE_POINT}, or @code{READLINE_MARK}, those new values will be -reflected in the editing state. +If the executed command changes the value of any of +@code{READLINE_LINE}, @code{READLINE_POINT}, or @code{READLINE_MARK}, +those new values will be reflected in the editing state. @item -X List all key sequences bound to shell commands and the associated commands @@ -4631,10 +4863,11 @@ error occurs. builtin [@var{shell-builtin} [@var{args}]] @end example -Run a shell builtin, passing it @var{args}, and return its exit status. +Execute the specified shell builtin @var{shell-builtin}, +passing it @var{args}, and return its exit status. This is useful when defining a shell function with the same -name as a shell builtin, retaining the functionality of the builtin within -the function. +name as a shell builtin, +retaining the functionality of the builtin within the function. The return status is non-zero if @var{shell-builtin} is not a shell builtin command. @@ -4651,9 +4884,9 @@ Without @var{expr}, @code{caller} displays the line number and source filename of the current subroutine call. If a non-negative integer is supplied as @var{expr}, @code{caller} 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. +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 subroutine call or @var{expr} does not correspond to a valid position in the @@ -4665,8 +4898,8 @@ call stack. command [-pVv] @var{command} [@var{arguments} @dots{}] @end example -Runs @var{command} with @var{arguments} ignoring any shell function -named @var{command}. +The @code{command} builtin runs @var{command} with @var{arguments} +ignoring any shell function named @var{command}. Only shell builtin commands or commands found by searching the @env{PATH} are executed. If there is a shell function named @code{ls}, running @samp{command ls} @@ -4678,11 +4911,13 @@ The return status in this case is 127 if @var{command} cannot be found or an error occurred, and the exit status of @var{command} otherwise. -If either the @option{-V} or @option{-v} option is supplied, a -description of @var{command} is printed. The @option{-v} option -causes a single word indicating the command or file name used to -invoke @var{command} to be displayed; the @option{-V} option produces -a more verbose description. In this case, the return status is +If either the @option{-V} or @option{-v} option is supplied, @code{command} +prints a description of @var{command}. +The @option{-v} option +displays a single word indicating the command or file name used to +invoke @var{command}; +the @option{-V} option produces a more verbose description. +In this case, the return status is zero if @var{command} is found, and non-zero if not. @item declare @@ -4691,20 +4926,21 @@ zero if @var{command} is found, and non-zero if not. declare [-aAfFgiIlnrtux] [-p] [@var{name}[=@var{value}] @dots{}] @end example -Declare variables and give them attributes. If no @var{name}s -are given, then display the values of variables instead. +Declare variables and give them attributes. +If no @var{name}s are given, then display the values of variables or +shell functions instead. The @option{-p} option will display the attributes and values of each @var{name}. When @option{-p} is used with @var{name} arguments, additional options, other than @option{-f} and @option{-F}, are ignored. -When @option{-p} is supplied without @var{name} arguments, @code{declare} -will display the attributes and values of all variables having the -attributes specified by the additional options. +When @option{-p} is supplied without @var{name} arguments, +@code{declare} will display the attributes and values +of all variables having the attributes specified by the additional options. If no other options are supplied with @option{-p}, @code{declare} will -display the attributes and values of all shell variables. The @option{-f} -option will restrict the display to shell functions. +display the attributes and values of all shell variables. +The @option{-f} option restricts the display to shell functions. The @option{-F} option inhibits the display of function definitions; only the function name and attributes are printed. @@ -4715,7 +4951,7 @@ each @var{name} is defined are displayed as well. The @option{-g} option forces variables to be created or modified at the global scope, even when @code{declare} is executed in a shell function. -It is ignored in all other cases. +It is ignored in when @code{declare} is not executed in a shell function. The @option{-I} option causes local variables to inherit the attributes (except the @code{nameref} attribute) @@ -4734,11 +4970,11 @@ Each @var{name} is an indexed array variable (@pxref{Arrays}). Each @var{name} is an associative array variable (@pxref{Arrays}). @item -f -Use function names only. +Each @var{name} refers to a shell function. @item -i -The variable is to be treated as -an integer; arithmetic evaluation (@pxref{Shell Arithmetic}) is +The variable is to be treated as an integer; +arithmetic evaluation (@pxref{Shell Arithmetic}) is performed when the variable is assigned a value. @item -l @@ -4757,7 +4993,8 @@ to @var{name}, except for those using or changing the The nameref attribute cannot be applied to array variables. @item -r -Make @var{name}s readonly. These names cannot then be assigned values +Make @var{name}s readonly. +These names cannot then be assigned values by subsequent assignment statements or unset. @item -t @@ -4776,12 +5013,13 @@ Mark each @var{name} for export to subsequent commands via the environment. @end table -Using @samp{+} instead of @samp{-} turns off the attribute instead, -with the exceptions that @samp{+a} and @samp{+A} +Using @samp{+} instead of @samp{-} turns off the specified +attribute instead, with the exceptions that @samp{+a} and @samp{+A} may not be used to destroy array variables and @samp{+r} will not remove the readonly attribute. + When used in a function, @code{declare} makes each @var{name} local, -as with the @code{local} command, unless the @option{-g} option is used. +as with the @code{local} command, unless the @option{-g} option is supplied. If a variable name is followed by =@var{value}, the value of the variable is set to @var{value}. @@ -4808,15 +5046,15 @@ echo [-neE] [@var{arg} @dots{}] Output the @var{arg}s, separated by spaces, terminated with a newline. The return status is 0 unless a write error occurs. -If @option{-n} is specified, the trailing newline is suppressed. -If the @option{-e} option is given, interpretation of the following -backslash-escaped characters is enabled. -The @option{-E} option disables the interpretation of these escape characters, +If @option{-n} is specified, the trailing newline is not printed. + +If the @option{-e} option is given, @code{echo} interprets the following +backslash-escaped characters. +The @option{-E} option disables interpretation of these escape characters, even on systems where they are interpreted by default. -The @code{xpg_echo} shell option may be used to -dynamically determine whether or not @code{echo} -interprets any options and -expands these escape characters by default. +The @code{xpg_echo} shell option determines +whether or not @code{echo} interprets any options and +expands these escape characters. @code{echo} does not interpret @option{--} to mean the end of options. @code{echo} interprets the following escape sequences: @@ -4856,6 +5094,8 @@ the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value @var{HHHHHHHH} (one to eight hex digits) @end table +@code{echo} writes any unrecognized backslash-escaped characters unchanged. + @item enable @btindex enable @example @@ -4863,32 +5103,34 @@ enable [-a] [-dnps] [-f @var{filename}] [@var{name} @dots{}] @end example Enable and disable builtin shell commands. -Disabling a builtin allows a disk command which has the same name +Disabling a builtin allows an executable file 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 @option{-n} is used, the @var{name}s become disabled. Otherwise -@var{name}s are enabled. For example, to use the @code{test} binary -found via @env{$PATH} instead of the shell builtin version, type +even though the shell normally searches for builtins before files. + +If @option{-n} is supplied, the @var{name}s are disabled. +Otherwise @var{name}s are enabled. +For example, to use the @code{test} binary +found using @env{$PATH} instead of the shell builtin version, type @samp{enable -n test}. -If the @option{-p} option is supplied, or no @var{name} arguments appear, -a list of shell builtins is printed. With no other arguments, the list -consists of all enabled shell builtins. +If the @option{-p} option is supplied, or no @var{name} arguments are +supplied, print a list of shell builtins. +With no other arguments, the list consists of all enabled shell builtins. +The @option{-n} option means to print only disabled builtins. The @option{-a} option means to list each builtin with an indication of whether or not it is enabled. +The @option{-s} option means to +restrict @code{enable} to the @sc{posix} special builtins. The @option{-f} option means to load the new builtin command @var{name} from shared object @var{filename}, on systems that support dynamic loading. +If @var{filename} does not contain a slash. Bash will use the value of the @env{BASH_LOADABLES_PATH} variable as a -colon-separated list of directories in which to search for @var{filename}, -if @var{filename} does not contain a slash. -The default is system-dependent, +colon-separated list of directories in which to search for @var{filename}. +The default for @env{BASH_LOADABLES_PATH} is system-dependent, and may include "." to force a search of the current directory. The @option{-d} option will delete a builtin loaded with @option{-f}. - -If there are no options, a list of the shell builtins is displayed. -The @option{-s} option restricts @code{enable} to the @sc{posix} special -builtins. If @option{-s} is used with @option{-f}, the new builtin becomes +If @option{-s} is used with @option{-f}, the new builtin becomes a special builtin (@pxref{Special Builtins}). If no options are supplied and a @var{name} is not a shell builtin, @@ -4907,8 +5149,8 @@ help [-dms] [@var{pattern}] Display helpful information about builtin commands. If @var{pattern} is specified, @code{help} gives detailed help -on all commands matching @var{pattern}, otherwise a list of -the builtins is printed. +on all commands matching @var{pattern}, otherwise it displays +a list of all builtins and shell compound commands. Options, if supplied, have the following meanings: @@ -4929,11 +5171,12 @@ The return status is zero unless no command matches @var{pattern}. let @var{expression} [@var{expression} @dots{}] @end example -The @code{let} builtin allows arithmetic to be performed on shell -variables. Each @var{expression} is evaluated according to the -rules given below in @ref{Shell Arithmetic}. If the -last @var{expression} evaluates to 0, @code{let} returns 1; -otherwise 0 is returned. +The @code{let} builtin allows arithmetic to be performed on shell variables. +Each @var{expression} is evaluated as an arithmetic expression +according to the rules given below in @ref{Shell Arithmetic}. +If the last @var{expression} evaluates to 0, +@code{let} returns 1; +otherwise @code{let} returns 0. @item local @btindex local @@ -4941,20 +5184,25 @@ otherwise 0 is returned. local [@var{option}] @var{name}[=@var{value}] @dots{} @end example -For each argument, a local variable named @var{name} is created, -and assigned @var{value}. +For each argument, create a local variable named @var{name}, +and assign it @var{value}. The @var{option} can be any of the options accepted by @code{declare}. @code{local} can only be used within a function; it makes the variable @var{name} have a visible scope restricted to that function and its children. -If @var{name} is @samp{-}, the set of shell options is made local to the -function in which @code{local} is invoked: shell options changed using -the @code{set} builtin inside the function -after the call to @code{local} -are restored to their original -values when the function returns. -The restore is effected as if a series of @code{set} commands were executed -to restore the values that were in place before the function. +It is an error to use @code{local} when not within a function. + +If @var{name} is @samp{-}, it makes the set of shell options +local to the function in which @code{local} is invoked: +any shell options changed using the @code{set} builtin inside +the function after the call to @code{local} are restored to their +original values when the function returns. +The restore is performed as if a series of @code{set} commands were +executed to restore the values that were in place before the function. + +With no operands, @code{local} +writes a list of local variables to the standard output. + The return status is zero unless @code{local} is used outside a function, an invalid @var{name} is supplied, or @var{name} is a readonly variable. @@ -4975,21 +5223,22 @@ mapfile [-d @var{delim}] [-n @var{count}] [-O @var{origin}] [-s @var{count}] [-t] [-u @var{fd}] [-C @var{callback}] [-c @var{quantum}] [@var{array}] @end example -Read lines from the standard input into the indexed array variable @var{array}, -or from file descriptor @var{fd} -if the @option{-u} option is supplied. +Read lines from the standard input, +or from file descriptor @var{fd} if the @option{-u} option is supplied, +into the indexed array variable @var{array}. The variable @code{MAPFILE} is the default @var{array}. Options, if supplied, have the following meanings: @table @code @item -d -The first character of @var{delim} is used to terminate each input line, +Use the first character of @var{delim} to terminate each input line, rather than newline. If @var{delim} is the empty string, @code{mapfile} will terminate a line when it reads a NUL character. @item -n -Copy at most @var{count} lines. If @var{count} is 0, all lines are copied. +Copy at most @var{count} lines. +If @var{count} is 0, copy all lines. @item -O Begin assigning to @var{array} at index @var{origin}. The default index is 0. @@ -5017,9 +5266,9 @@ array element is assigned. If not supplied with an explicit origin, @code{mapfile} will clear @var{array} before assigning to it. -@code{mapfile} returns successfully unless an invalid option or option -argument is supplied, @var{array} is invalid or unassignable, or @var{array} -is not an indexed array. +@code{mapfile} returns zero unless an invalid option or option +argument is supplied, @var{array} is invalid or unassignable, or if +@var{array} is not an indexed array. @item printf @btindex printf @@ -5029,8 +5278,8 @@ printf [-v @var{var}] @var{format} [@var{arguments}] Write the formatted @var{arguments} to the standard output under the control of the @var{format}. -The @option{-v} option causes the output to be assigned to the variable -@var{var} rather than being printed to the standard output. +The @option{-v} option assigns the output to the variable +@var{var} rather than printing it to the standard output. The @var{format} is a character string which contains three types of objects: plain characters, which are simply copied to standard output, character @@ -5064,9 +5313,10 @@ Causes @code{printf} to output the date-time string resulting from using @var{datefmt} as a format string for @code{strftime}(3). The corresponding @var{argument} 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 argument is specified, conversion behaves as if -1 had been given. +This format specifier recognizes Two special argument values: +-1 represents the current time, +and -2 represents the time the shell was invoked. +If no argument is specified, conversion behaves as if -1 had been supplied. This is an exception to the usual @code{printf} behavior. @end table @@ -5109,12 +5359,11 @@ read [-Eers] [-a @var{aname}] [-d @var{delim}] [-i @var{text}] [-n @var{nchars}] [-N @var{nchars}] [-p @var{prompt}] [-t @var{timeout}] [-u @var{fd}] [@var{name} @dots{}] @end example -One line is read from the standard input, or from the file descriptor +Read one line from the standard input, or from the file descriptor @var{fd} supplied as an argument to the @option{-u} option, -split into words as described above in @ref{Word Splitting}, -and the first word -is assigned to the first @var{name}, the second word to the second @var{name}, -and so on. +split it into words as described above in @ref{Word Splitting}, +and assign the first word to the first @var{name}, +the second word to the second @var{name}, and so on. If there are more words than names, the remaining words and their intervening delimiters are assigned to the last @var{name}. @@ -5123,59 +5372,66 @@ the remaining names are assigned empty values. The characters in the value of the @env{IFS} variable are used to split the line into words using the same rules the shell uses for expansion (described above in @ref{Word Splitting}). -The backslash character @samp{\} may be used to remove any special -meaning for the next character read and for line continuation. +The backslash character @samp{\} removes any special +meaning for the next character read and is used for line continuation. Options, if supplied, have the following meanings: @table @code @item -a @var{aname} The words are assigned to sequential indices of the array variable -@var{aname}, starting at 0. +@var{aname}, +starting at 0. All elements are removed from @var{aname} before the assignment. Other @var{name} arguments are ignored. @item -d @var{delim} -The first character of @var{delim} is used to terminate the input line, +The first character of @var{delim} terminates the input line, rather than newline. If @var{delim} is the empty string, @code{read} will terminate a line when it reads a NUL character. @item -e -Readline (@pxref{Command Line Editing}) is used to obtain the line. +If the standard input is coming from a terminal, +@code{read} uses +Readline (@pxref{Command Line Editing}) +to obtain the line. Readline uses the current (or default, if line editing was not previously active) editing settings, but uses Readline's default filename completion. @item -E -Readline (@pxref{Command Line Editing}) is used to obtain the line. +If the standard input is coming from a terminal, +@code{read} uses +Readline (@pxref{Command Line Editing}) to obtain the line. Readline uses the current (or default, if line editing was not previously active) editing settings, but uses Bash's default completion, including programmable completion. @item -i @var{text} -If Readline is being used to read the line, @var{text} is placed into +If Readline is being used to read the line, @code{read} places @var{text} into the editing buffer before editing begins. @item -n @var{nchars} @code{read} returns after reading @var{nchars} characters rather than -waiting for a complete line of input, but honors a delimiter if fewer -than @var{nchars} characters are read before the delimiter. +waiting for a complete line of input, +unless it encounters EOF or @code{read} times out, +but honors a delimiter if it reads fewer +than @var{nchars} characters before the delimiter. @item -N @var{nchars} @code{read} returns after reading exactly @var{nchars} characters rather -than waiting for a complete line of input, unless EOF is encountered or -@code{read} times out. -Delimiter characters encountered in the input are +than waiting for a complete line of input, +unless it encounters EOF or @code{read} times out. +Delimiter characters in the input are not treated specially and do not cause @code{read} to return until -@var{nchars} characters are read. +it has read @var{nchars} characters. The result is not split on the characters in @code{IFS}; the intent is that the variable is assigned exactly the characters read (with the exception of backslash; see the @option{-r} option below). @item -p @var{prompt} Display @var{prompt}, without a trailing newline, before attempting -to read any input. -The prompt is displayed only if input is coming from a terminal. +to read any input, but only if input is coming from a terminal. @item -r If this option is given, backslash does not act as an escape character. @@ -5184,38 +5440,36 @@ In particular, a backslash-newline pair may not then be used as a line continuation. @item -s -Silent mode. If input is coming from a terminal, characters are -not echoed. +Silent mode. +If input is coming from a terminal, characters are not echoed. @item -t @var{timeout} -Cause @code{read} to time out and return failure if a complete line of -input (or a specified number of characters) -is not read within @var{timeout} seconds. +Cause @code{read} to time out and return failure if it does not read +a complete line of input (or a specified number of characters) +within @var{timeout} seconds. @var{timeout} may be a decimal number with a fractional portion following the decimal point. This option is only effective if @code{read} is reading input from a terminal, pipe, or other special file; it has no effect when reading from regular files. -If @code{read} times out, @code{read} saves any partial input read into -the specified variable @var{name}. +If @code{read} times out, it saves any partial input read into +the specified variable @var{name}, and returns a status greater than 128. If @var{timeout} is 0, @code{read} returns 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. +In this case, the exit status is 0 if input is available on the specified +file descriptor, or the read will return EOF, non-zero otherwise. @item -u @var{fd} -Read input from file descriptor @var{fd}. +Read input from file descriptor @var{fd} instead of the standard input. @end table Other than the case where @var{delim} is the empty string, @code{read} ignores any NUL characters in the input. -If no @var{name}s are supplied, the line read, +If no @var{name}s are supplied, @code{read} assigns the line read, without the ending delimiter but otherwise unmodified, -is assigned to the -variable @env{REPLY}. +to the variable @env{REPLY}. + The exit status is zero, unless end-of-file is encountered, @code{read} times out (in which case the status is greater than 128), a variable assignment error (such as assigning to a readonly variable) occurs, @@ -5248,19 +5502,20 @@ A synonym for @code{.} (@pxref{Bourne Shell Builtins}). type [-afptP] [@var{name} @dots{}] @end example -For each @var{name}, indicate how it would be interpreted if used as a -command name. +Indicate how each @var{name} would be interpreted if used as a command +name. If the @option{-t} option is used, @code{type} prints a single word which is one of @samp{alias}, @samp{keyword}, @samp{function}, @samp{builtin}, or @samp{file}, if @var{name} is an alias, shell reserved word, shell function, -shell builtin, or executable disk file, respectively. -If the @var{name} is not found, then nothing is printed, and -@code{type} returns a failure status. +shell builtin, or executable file, respectively. +If the @var{name} is not found, @code{type} prints nothing and +returns a failure status. If the @option{-p} option is used, @code{type} either returns the name -of the executable file that would be found by searching @code{$PATH}, +of the executable file that would be found by searching @code{$PATH} +for @code{name}, or nothing if @option{-t} would not return @samp{file}. The @option{-P} option forces a path search for each @var{name}, even if @@ -5302,9 +5557,9 @@ ulimit [-HS] -a ulimit [-HS] [-bcdefiklmnpqrstuvxPRT] [@var{limit}] @end example -@code{ulimit} provides control over the resources available to processes -started by the shell, on systems that allow such control. If an -option is given, it is interpreted as follows: +@code{ulimit} provides control over the resources available to the +shell and to processes it starts, on systems that allow such control. +If an option is given, it is interpreted as follows: @table @code @item -S @@ -5314,7 +5569,7 @@ Change and report the soft limit associated with a resource. Change and report the hard limit associated with a resource. @item -a -All current limits are reported; no limits are set. +Report all current limits; no limits are set. @item -b The maximum socket buffer size. @@ -5382,22 +5637,23 @@ The maximum time a real-time process can run before blocking, in microseconds. The maximum number of threads. @end table -If @var{limit} is given, and the @option{-a} option is not used, +If @var{limit} is supplied, and the @option{-a} option is not used, @var{limit} is the new value of the specified resource. The special @var{limit} values @code{hard}, @code{soft}, and @code{unlimited} stand for the current hard limit, the current soft limit, and no limit, respectively. 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. -Otherwise, the current value of the soft limit for the specified resource -is printed, unless the @option{-H} option is supplied. +Otherwise, @code{ulimit} prints the current value of the soft limit +for the specified resource, unless the @option{-H} option is supplied. When more than one resource is specified, the limit name and unit, if appropriate, are printed before the value. When setting new limits, if neither @option{-H} nor @option{-S} is supplied, -both the hard and soft limits are set. -If no option is given, then @option{-f} is assumed. Values are in 1024-byte -increments, except for +@code{ulimit} sets both the hard and soft limits. +If no option is supplied, then @option{-f} is assumed. + +Values are in 1024-byte increments, except for @option{-t}, which is in seconds; @option{-R}, which is in microseconds; @option{-p}, which is in units of 512-byte blocks; @@ -5418,8 +5674,9 @@ or an error occurs while setting a new limit. unalias [-a] [@var{name} @dots{} ] @end example -Remove each @var{name} from the list of aliases. If @option{-a} is -supplied, all aliases are removed. +Remove each @var{name} from the list of aliases. +If @option{-a} is supplied, remove all aliases. +The return value is true unless a supplied @var{name} is not a defined alias. Aliases are described in @ref{Aliases}. @end table @@ -5457,6 +5714,9 @@ Read-only variables cannot be reset. In @sc{posix} mode, only shell variables are listed. When options are supplied, they set or unset shell attributes. +Any arguments remaining after option processing replace the +positional parameters. + Options, if specified, have the following meanings: @table @code @@ -5467,7 +5727,9 @@ subsequent commands. @item -b Cause the status of terminated background jobs to be reported -immediately, rather than before printing the next primary prompt. +immediately, rather than before printing the next primary prompt +or, under some circumstances, when a foreground command exits. +This is effective only when job control is enabled. @item -e Exit immediately if @@ -5663,7 +5925,7 @@ Print shell input lines as they are read. @item -x Print a trace of simple commands, @code{for} commands, @code{case} commands, @code{select} commands, and arithmetic @code{for} commands -and their arguments or associated word lists to standard error +and their arguments or associated word lists to the standard error after they are expanded and before they are executed. The shell prints the expanded value of the @env{PS4} variable before the command and its expanded arguments. @@ -5675,6 +5937,8 @@ This option is on by default. @item -C Prevent output redirection using @samp{>}, @samp{>&}, and @samp{<>} from overwriting existing files. +Using the redirection operator @samp{>|} instead of @samp{>} +will override this and force the creation of an output file. @item -E If set, any trap on @code{ERR} is inherited by shell functions, command @@ -5686,9 +5950,10 @@ Enable @samp{!} style history substitution (@pxref{History Interaction}). This option is on by default for interactive shells. @item -P -If set, do not resolve symbolic links when performing commands such as -@code{cd} which change the current directory. The physical directory -is used instead. By default, Bash follows +If set, Bash does not resolve symbolic links when executing commands +such as @code{cd} which change the current directory. +It uses the physical directory structure instead. +By default, Bash follows the logical chain of directories when performing commands which change the current directory. @@ -5711,27 +5976,28 @@ $ cd ..; pwd @end example @item -T -If set, any trap on @code{DEBUG} and @code{RETURN} are inherited by +If set, any traps on @code{DEBUG} and @code{RETURN} are inherited by shell functions, command substitutions, and commands executed in a subshell environment. The @code{DEBUG} and @code{RETURN} traps are normally not inherited in such cases. @item -- -If no arguments follow this option, then the positional parameters are -unset. Otherwise, the positional parameters are set to the +If no arguments follow this option, unset the positional parameters. +Otherwise, the positional parameters are set to the @var{arguments}, even if some of them begin with a @samp{-}. @item - -Signal the end of options, cause all remaining @var{arguments} -to be assigned to the positional parameters. The @option{-x} -and @option{-v} options are turned off. +Signal the end of options, and assign all remaining @var{arguments} +to the positional parameters. +The @option{-x} and @option{-v} options are turned off. If there are no arguments, the positional parameters remain unchanged. @end table Using @samp{+} rather than @samp{-} causes these options to be -turned off. The options can also be used upon invocation of the -shell. The current set of options may be found in @code{$-}. +turned off. +The options can also be used upon invocation of the shell. +The current set of options may be found in @code{$-}. The remaining N @var{arguments} are positional parameters and are assigned, in order, to @code{$1}, @code{$2}, @dots{} @code{$N}. @@ -5743,7 +6009,7 @@ The return status is always zero unless an invalid option is supplied. @node The Shopt Builtin @subsection The Shopt Builtin -This builtin allows you to change additional shell optional behavior. +This builtin allows you to change additional optional shell behavior. @table @code @@ -5757,10 +6023,10 @@ Toggle the values of settings controlling optional shell behavior. The settings can be either those listed below, or, if the @option{-o} option is used, those available with the @option{-o} option to the @code{set} builtin command (@pxref{The Set Builtin}). -With no options, or with the @option{-p} option, a list of all settable -options is displayed, with an indication of whether or not each is set; -if @var{optname}s are supplied, the output is restricted to those options. -The @option{-p} option causes output to be displayed in a form that +With no options, or with the @option{-p} option, display a list of all +settable options, with an indication of whether or not each is set; +if any @var{optname}s are supplied, the output is restricted to those options. +The @option{-p} option displays output in a form that may be reused as input. Other options have the following meanings: @@ -5774,7 +6040,7 @@ Disable (unset) each @var{optname}. @item -q Suppresses normal output; the return status indicates whether the @var{optname} is set or unset. -If multiple @var{optname} arguments are given with @option{-q}, +If multiple @var{optname} arguments are supplied with @option{-q}, the return status is zero if all @var{optname}s are enabled; non-zero otherwise. @@ -5824,23 +6090,25 @@ is not a directory is assumed to be the name of a variable whose value is the directory to change to. @item cdspell -If set, minor errors in the spelling of a directory component in a -@code{cd} command will be corrected. -The errors checked for are transposed characters, -a missing character, and a character too many. -If a correction is found, the corrected path is printed, +If set, the @code{cd} command +attempts to correct +minor errors in the spelling of a directory component. +Minor errors include transposed characters, +a missing character, and one extra character. +If @code{cd} corrects the directory name, it prints the corrected filename, and the command proceeds. This option is only used by interactive shells. @item checkhash If this is set, Bash checks that a command found in the hash -table exists before trying to execute it. If a hashed command no -longer exists, a normal path search is performed. +table exists before trying to execute it. +If a hashed command no longer exists, Bash performs a normal path search. @item checkjobs If set, Bash lists the status of any stopped and running 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 +exiting an interactive shell. +If any jobs are running, Bash defers +the exit until a second exit is attempted without an intervening command (@pxref{Job Control}). The shell always postpones exiting if any jobs are stopped. @@ -5854,8 +6122,8 @@ This option is enabled by default. @item cmdhist If set, Bash attempts to save all lines of a multiple-line -command in the same history entry. This allows -easy re-editing of multi-line commands. +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 (@pxref{Bash History Facilities}). @@ -5889,8 +6157,8 @@ versions through 4.2. @item direxpand If set, Bash replaces directory names with the results of word expansion when performing -filename completion. This changes the contents of the Readline editing -buffer. +filename completion. +This changes the contents of the Readline editing buffer. If not set, Bash attempts to preserve what the user typed. @item dirspell @@ -5899,7 +6167,7 @@ attempts spelling correction on directory names during word completion if the directory name initially supplied does not exist. @item dotglob -If set, Bash includes filenames beginning with a `.' in +If set, Bash includes filenames beginning with a @samp{.} in the results of filename expansion. The filenames @samp{.} and @samp{..} must always be matched explicitly, even if @code{dotglob} is set. @@ -5907,8 +6175,8 @@ even if @code{dotglob} is set. @item execfail If this is set, a non-interactive shell will not exit if it cannot execute the file specified as an argument to the @code{exec} -builtin command. An interactive shell does not exit if @code{exec} -fails. +builtin. +An interactive shell does not exit if @code{exec} fails. @item expand_aliases If set, aliases are expanded as described below under Aliases, @@ -5916,8 +6184,7 @@ If set, aliases are expanded as described below under Aliases, This option is enabled by default for interactive shells. @item extdebug -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 @option{--debugger} option. If set after invocation, behavior intended for use by debuggers is enabled: @@ -5954,13 +6221,14 @@ subshells invoked with @code{( @var{command} )} inherit the @end enumerate @item extglob -If set, the extended pattern matching features described above -(@pxref{Pattern Matching}) are enabled. +If set, enable the extended pattern matching features described above +(@pxref{Pattern Matching}). @item extquote If set, @code{$'@var{string}'} and @code{$"@var{string}"} quoting is performed within @code{$@{@var{parameter}@}} expansions -enclosed in double quotes. This option is enabled by default. +enclosed in double quotes. +This option is enabled by default. @item failglob If set, patterns which fail to match filenames during filename expansion @@ -5977,15 +6245,15 @@ This option is enabled by default. If set, range expressions used in pattern matching bracket expressions (@pxref{Pattern Matching}) behave as if in the traditional C locale when performing -comparisons. That is, the current locale's collating sequence -is not taken into account, so -@samp{b} will not collate between @samp{A} and @samp{B}, +comparisons. +That is, pattern matching does not take +the current locale's collating sequence into account, +so @samp{b} will not collate between @samp{A} and @samp{B}, and upper-case and lower-case ASCII characters will collate together. @item globskipdots If set, filename expansion will never match the filenames -@samp{.} and @samp{..}, -even if the pattern begins with a @samp{.}. +@samp{.} and @samp{..}, even if the pattern begins with a @samp{.}. This option is enabled by default. @item globstar @@ -6004,21 +6272,21 @@ of the @env{HISTFILE} variable when the shell exits, rather than overwriting the file. @item histreedit -If set, and Readline -is being used, a user is given the opportunity to re-edit a -failed history substitution. +If set, and Readline is being used, +the user is given the opportunity to re-edit a failed history substitution. @item histverify If set, and Readline is being used, the results of history substitution are not immediately -passed to the shell parser. Instead, the resulting line is loaded into -the Readline editing buffer, allowing further modification. +passed to the shell parser. +Instead, the resulting line is loaded into the Readline editing buffer, +allowing further modification. @item hostcomplete If set, and Readline is being used, Bash will attempt to perform hostname completion when a word containing a @samp{@@} is being -completed (@pxref{Commands For Completion}). This option is enabled -by default. +completed (@pxref{Commands For Completion}). +This option is enabled by default. @item huponexit If set, Bash will send @code{SIGHUP} to all jobs when an interactive @@ -6030,9 +6298,9 @@ instead of unsetting it in the subshell environment. This option is enabled when @sc{posix} mode is enabled. @item interactive_comments -Allow a word beginning with @samp{#} -to cause that word and all remaining characters on that -line to be ignored in an interactive shell. +In an interactive shell, a word beginning with @samp{#} +causes that word and all remaining characters on that +line to be ignored, as in a non-interactive shell. This option is enabled by default. @item lastpipe @@ -6052,8 +6320,9 @@ assigned. The @code{nameref} attribute is not inherited. @item localvar_unset If set, calling @code{unset} on local variables in previous function scopes marks them so subsequent lookups find them unset until that function -returns. This is identical to the behavior of unsetting local variables -at the current function scope. +returns. +This is identical to the behavior of unsetting local variables at the +current function scope. @item login_shell The shell sets this option if it is started as a login shell @@ -6062,13 +6331,13 @@ The value may not be changed. @item mailwarn If set, and a file that Bash is checking for mail has been -accessed since the last time it was checked, the message -@code{"The mail in @var{mailfile} has been read"} is displayed. +accessed since the last time it was checked, Bash displays the message +@code{"The mail in @var{mailfile} has been read"}. @item no_empty_cmd_completion -If set, and Readline is being used, Bash will not attempt to search -the @env{PATH} for possible completions when completion is attempted -on an empty line. +If set, and Readline is being used, Bash does not search +the @env{PATH} +for possible completions when completion is attempted on an empty line. @item nocaseglob If set, Bash matches filenames in a case-insensitive fashion when @@ -6090,8 +6359,7 @@ If the string is not translated, this has no effect. @item nullglob If set, filename expansion patterns which match no files (@pxref{Filename Expansion}) -expand to nothing and are removed, -rather than expanding to themselves. +expand to nothing and are removed, rather than expanding to themselves. @item patsub_replacement If set, Bash @@ -6101,14 +6369,15 @@ above (@pxref{Shell Parameter Expansion}). This option is enabled by default. @item progcomp -If set, the programmable completion facilities -(@pxref{Programmable Completion}) are enabled. +If set, enable the programmable completion facilities +(@pxref{Programmable Completion}). This option is enabled by default. @item progcomp_alias If set, and programmable completion is enabled, Bash treats a command name that doesn't have any completions as a possible alias and attempts -alias expansion. If it has an alias, Bash attempts programmable +alias expansion. +If it has an alias, Bash attempts programmable completion using the command word resulting from the expanded alias. @item promptvars @@ -6145,8 +6414,7 @@ leaving them open when the command completes. If set, the @code{echo} builtin expands backslash-escape sequences by default. If the @code{posix} shell option (@pxref{The Set Builtin}) is also enabled, -@code{echo} does not -interpret any options. +@code{echo} does not interpret any options. @end table @end table @@ -6214,10 +6482,12 @@ The value of this variable is also used by tilde expansion @item IFS A list of characters that separate fields; used when the shell splits -words as part of expansion. +words as part of expansion and by the @code{read} builtin to split +lines into words. +@xref{Word Splitting}, for a description of word splitting. @item MAIL -If this parameter is set to a filename or directory name +If the value is set to a filename or directory name and the @env{MAILPATH} variable is not set, Bash informs the user of the arrival of mail in the specified file or Maildir-format directory. @@ -6235,7 +6505,7 @@ the current mail file. The value of the last option argument processed by the @code{getopts} builtin. @item OPTIND -The index of the last option argument processed by the @code{getopts} builtin. +The index of the next argument to be processed by the @code{getopts} builtin. @item PATH A colon-separated list of directories in which the shell looks for @@ -6244,14 +6514,20 @@ A zero-length (null) directory name in the value of @code{PATH} indicates the current directory. A null directory name may appear as two adjacent colons, or as an initial or trailing colon. +The default path is system-dependent, and is set by the administrator +who installs @code{bash}. +A common value is +"/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin". @item PS1 -The primary prompt string. The default value is @samp{\s-\v\$ }. +The primary prompt string. +The default value is @samp{\s-\v\$ }. @xref{Controlling the Prompt}, for the complete list of escape sequences that are expanded before @env{PS1} is displayed. @item PS2 -The secondary prompt string. The default value is @samp{> }. +The secondary prompt string. +The default value is @samp{> }. @env{PS2} is expanded in the same way as @env{PS1} before being displayed. @@ -6272,30 +6548,32 @@ variables for controlling the job control facilities @item _ @vindex $_ ($_, an underscore.) -At shell startup, set to the pathname used to invoke the +This has a number of meanings depending on context. +At shell startup, $_ set to the pathname used to invoke the shell or shell script being executed as passed in the environment or argument list. -Subsequently, expands to the last argument to the previous simple +Subsequently, it expands to the last argument to the previous simple command executed in the foreground, after expansion. -Also set to the full pathname used to invoke each command executed +It is also set to the full pathname used to invoke each command executed and placed in the environment exported to that command. -When checking mail, this parameter holds the name of the mail file. +When checking mail, $_ expands to the name of the mail file. @item BASH The full pathname used to execute the current instance of Bash. @item BASHOPTS -A colon-separated list of enabled shell options. Each word in -the list is a valid argument for the @option{-s} option to the -@code{shopt} builtin command (@pxref{The Shopt Builtin}). +A colon-separated list of enabled shell options. +Each word in the list is a valid argument for the @option{-s} option +to the @code{shopt} builtin command (@pxref{The Shopt Builtin}). The options appearing in @env{BASHOPTS} are those reported as @samp{on} by @samp{shopt}. If this variable is in the environment when Bash -starts up, each shell option in the list will be enabled before -reading any startup files. This variable is readonly. +starts up, the shell enables each option in the list before +reading any startup files. +This variable is readonly. @item BASHPID -Expands to the process ID of the current Bash process. +Expands to the process @sc{id} of the current Bash process. This differs from @code{$$} under certain circumstances, such as subshells that do not require Bash to be re-initialized. Assignments to @env{BASHPID} have no effect. @@ -6316,26 +6594,28 @@ subsequently reset. @item BASH_ARGC An array variable whose values are the number of parameters in each -frame of the current Bash execution call stack. The number of -parameters to the current subroutine (shell function or script executed -with @code{.} or @code{source}) is at the top of the stack. When a +frame of the current Bash execution call stack. +The number of parameters to the current subroutine (shell function or +script executed with @code{.} or @code{source}) is at the top of the stack. +When a subroutine is executed, the number of parameters passed is pushed onto @code{BASH_ARGC}. The shell sets @code{BASH_ARGC} only when in extended debugging mode (see @ref{The Shopt Builtin} for a description of the @code{extdebug} option to the @code{shopt} builtin). -Setting @code{extdebug} after the shell has started to execute a script, +Setting @code{extdebug} after the shell has started to execute a subroutine, or referencing this variable when @code{extdebug} is not set, may result in inconsistent values. Assignments to @env{BASH_ARGC} have no effect, and it may not be unset. @item BASH_ARGV An array variable containing all of the parameters in the current Bash -execution call stack. The final parameter of the last subroutine call -is at the top of the stack; the first parameter of the initial call is -at the bottom. When a subroutine is executed, the parameters supplied -are pushed onto @code{BASH_ARGV}. +execution call stack. +The final parameter of the last subroutine call is at the top of the stack; +the first parameter of the initial call is at the bottom. +When a subroutine is executed, the shell pushes the supplied parameters +onto @code{BASH_ARGV}. The shell sets @code{BASH_ARGV} only when in extended debugging mode (see @ref{The Shopt Builtin} for a description of the @code{extdebug} option to the @code{shopt} @@ -6349,8 +6629,8 @@ Assignments to @env{BASH_ARGV} have no effect, and it may not be unset. When referenced, this variable expands to the name of the shell or shell script (identical to @code{$0}; @xref{Special Parameters}, for the description of special parameter 0). -Assignment to @code{BASH_ARGV0} -causes the value assigned to also be assigned to @code{$0}. +Assigning a value to @code{BASH_ARGV0} +assigns the same value to @code{$0}. If @env{BASH_ARGV0} is unset, it loses its special properties, even if it is subsequently reset. @@ -6359,16 +6639,16 @@ subsequently reset. An associative array variable whose members correspond to the internal hash table of commands as maintained by the @code{hash} builtin (@pxref{Bourne Shell Builtins}). -Elements added to this array appear in the hash table; however, -unsetting array elements currently does not cause command names to be removed +Adding elements to this array makes them appear in the hash table; however, +unsetting array elements currently does not remove command names from the hash table. If @env{BASH_CMDS} is unset, it loses its special properties, even if it is subsequently reset. @item BASH_COMMAND -The command currently being executed or about to be executed, unless the -shell is executing a command as the result of a trap, +Expands to the command currently being executed or about to be executed, +unless the shell is executing a command as the result of a trap, in which case it is the command executing at the time of the trap. If @env{BASH_COMMAND} is unset, it loses its special properties, even if it is @@ -6395,7 +6675,9 @@ The current version is also a valid value. @item BASH_ENV If this variable is set when Bash is invoked to execute a shell script, its value is expanded and used as the name of a startup file -to read before executing the script. @xref{Bash Startup Files}. +to read before executing the script. +Bash does not use @env{PATH} to search for the resultant filename. +@xref{Bash Startup Files}. @item BASH_EXECUTION_STRING The command argument to the @option{-c} invocation option. @@ -6411,9 +6693,8 @@ Use @code{LINENO} to obtain the current line number. Assignments to @env{BASH_LINENO} have no effect, and it may not be unset. @item BASH_LOADABLES_PATH -A colon-separated list of directories in which the shell looks for -dynamically loadable builtins specified by the -@code{enable} command. +A colon-separated list of directories in which the @code{enable} +command looks for dynamically loadable builtins. @item BASH_MONOSECONDS Each time this variable is referenced, it expands to the value returned @@ -6482,7 +6763,8 @@ The value of @env{MACHTYPE}. @end table @item BASH_VERSION -The version number of the current instance of Bash. +Expands to a string describing the version of this instance of +Bash (e.g., 5.2.37(3)-release). @item BASH_XTRACEFD If set to an integer corresponding to a valid file descriptor, Bash @@ -6518,6 +6800,13 @@ cursor position. This variable is available only in shell functions invoked by the programmable completion facilities (@pxref{Programmable Completion}). +@item COMP_KEY +The key (or final key of a key sequence) used to invoke the current +completion function. +This variable is available only in shell functions and external +commands invoked by the +programmable completion facilities (@pxref{Programmable Completion}). + @item COMP_LINE The current command line. This variable is available only in shell functions and external @@ -6534,7 +6823,7 @@ commands invoked by the programmable completion facilities (@pxref{Programmable Completion}). @item COMP_TYPE -Set to an integer value corresponding to the type of completion attempted +Set to an integer value corresponding to the type of attempted completion that caused a completion function to be called: @key{TAB}, for normal completion, @samp{?}, for listing completions after successive tabs, @@ -6546,10 +6835,6 @@ This variable is available only in shell functions and external commands invoked by the programmable completion facilities (@pxref{Programmable Completion}). -@item COMP_KEY -The key (or final key of a key sequence) used to invoke the current -completion function. - @item COMP_WORDBREAKS The set of characters that the Readline library treats as word separators when performing word completion. @@ -6589,8 +6874,8 @@ it is subsequently reset. @item EMACS If Bash finds this variable in the environment when the shell -starts with value @samp{t}, it assumes that the shell is running in an -Emacs shell buffer and disables line editing. +starts, and its value is @samp{t}, Bash assumes that the shell is +running in an Emacs shell buffer and disables line editing. @item ENV Expanded and executed similarly to @code{BASH_ENV} @@ -6618,12 +6903,12 @@ is unset, it loses its special properties, even if it is subsequently reset. @item EUID -The numeric effective user id of the current user. This variable -is readonly. +The numeric effective user id of the current user. +This variable is readonly. @item EXECIGNORE A colon-separated list of shell patterns (@pxref{Pattern Matching}) -defining the list of filenames to be ignored by command search using +defining the set of filenames to be ignored by command search using @code{PATH}. Files whose full pathnames match one of these patterns are not considered executable files for the purposes of completion and command execution @@ -6637,8 +6922,7 @@ The pattern matching honors the setting of the @code{extglob} shell option. @item FCEDIT -The editor used as a default by the @option{-e} option to the @code{fc} -builtin command. +The editor used as a default by the @code{fc} builtin command. @item FIGNORE A colon-separated list of suffixes to ignore when performing @@ -6670,8 +6954,8 @@ The @code{caller} builtin displays the current call stack using this information. @item FUNCNEST -If set to a numeric value greater than 0, defines a maximum function -nesting level. Function invocations that exceed this nesting level +A numeric value greater than 0 defines a maximum function nesting level. +Function invocations that exceed this nesting level will cause the current command to abort. @item GLOBIGNORE @@ -6684,7 +6968,7 @@ The pattern matching honors the setting of the @code{extglob} shell option. @item GLOBSORT -Control how the results of filename expansion are sorted. +Controls how the results of filename expansion are sorted. The value of this variable specifies the sort criteria and sort order for the results of filename expansion. If this variable is unset or set to the null string, filename expansion @@ -6701,7 +6985,8 @@ The valid sort specifiers are @samp{ctime}, and @samp{blocks}, -which sort the files on name, names in numeric rather than lexicographic order, +which sort the files on name, +names in numeric rather than lexicographic order, file size, modification time, access time, inode change time, and number of blocks, respectively. If any of the non-name keys compare as equal (e.g., if two files are @@ -6766,7 +7051,7 @@ the history list. If the list of values includes @samp{ignorespace}, lines which begin with a space character are not saved in the history list. A value of @samp{ignoredups} causes lines which match the previous -history entry to not be saved. +history entry not to be saved. A value of @samp{ignoreboth} is shorthand for @samp{ignorespace} and @samp{ignoredups}. A value of @samp{erasedups} causes all previous lines matching the @@ -6778,13 +7063,15 @@ all lines read by the shell parser are saved on the history list, subject to the value of @env{HISTIGNORE}. The second and subsequent lines of a multi-line compound command are not tested, and are added to the history regardless of the value of -@env{HISTCONTROL}. +@env{HISTCONTROL} if the first line of the command was saved. +If the first line was not saved, the second and subsequent lines of +the command are not saved, either. @item HISTFILE The name of the file to which the command history is saved. Bash assigns a default value of @file{~/.bash_history}. If @env{HISTFILE} is unset or null, -the command history is not saved when a shell exits. +the shell does not save the command history when it exits. @item HISTFILESIZE The maximum number of lines contained in the history file. @@ -6792,7 +7079,7 @@ When this variable is assigned a value, the history file is truncated, if necessary, to contain no more than that number of lines by removing the oldest entries. The history file is also truncated to this size after -writing it when a shell exits. +writing it when a shell exits or by the @code{history} builtin. If the value is 0, the history file is truncated to zero size. Non-numeric values and numeric values less than zero inhibit truncation. The shell sets the default value to the value of @env{HISTSIZE} @@ -6808,18 +7095,21 @@ anchored at the beginning of the line and must match the complete line (Bash will not implicitly append a @samp{*}). Each pattern is tested against the line after the checks specified by @env{HISTCONTROL} -are applied. In addition to the normal shell pattern matching -characters, @samp{&} matches the previous history line. @samp{&} -may be escaped using a backslash; the backslash is removed +are applied. +In addition to the normal shell pattern matching characters, @samp{&} +matches the previous history line. +@samp{&} may be escaped using a backslash; the backslash is removed before attempting a match. The second and subsequent lines of a multi-line compound command are not tested, and are added to the history regardless of the value of -@env{HISTIGNORE}. +@env{HISTIGNORE}, if the first line was saved. +If the first line was not saved, the second and subsequent lines of +the command are not saved, either. The pattern matching honors the setting of the @code{extglob} shell option. -@env{HISTIGNORE} subsumes the function of @env{HISTCONTROL}. A -pattern of @samp{&} is identical to @code{ignoredups}, and a +@env{HISTIGNORE} subsumes some of the function of @env{HISTCONTROL}. +A pattern of @samp{&} is identical to @code{ignoredups}, and a pattern of @samp{[ ]*} is identical to @code{ignorespace}. Combining these two patterns, separating them with a colon, provides the functionality of @code{ignoreboth}. @@ -6835,7 +7125,7 @@ The shell sets the default value to 500 after reading any startup files. If this variable is set and not null, its value is used as a format string for @code{strftime}(3) to print the time stamp associated with each history entry displayed by the @code{history} builtin. -If this variable is set, time stamps are written to the history file so +If this variable is set, the shell writes time stamps to the history file so they may be preserved across shell sessions. This uses the history comment character to distinguish timestamps from other history lines. @@ -6861,13 +7151,15 @@ A string describing the machine Bash is running on. @item IGNOREEOF Controls the action of the shell on receipt of an @code{EOF} character -as the sole input. If set, the value denotes the number +as the sole input. +If set, the value is the number of consecutive @code{EOF} characters that can be read as the -first character on an input line -before the shell will exit. If the variable exists but does not -have a numeric value, or has no value, then the default is 10. -If the variable does not exist, then @code{EOF} signifies the end of -input to the shell. This is only in effect for interactive shells. +first character on an input line before Bash exits. +If the variable is set but does not have a numeric value, +or the value is null, then the default is 10. +If the variable is unset, then @code{EOF} signifies the end of +input to the shell. +This is only in effect for interactive shells. @item INPUTRC The name of the Readline initialization file, overriding the default @@ -6911,6 +7203,9 @@ formatting. @item LINENO The line number in the script or shell function currently executing. +Line numbers start with 1. +When not in a script or function, the value is not +guaranteed to be meaningful. If @env{LINENO} is unset, it loses its special properties, even if it is subsequently reset. @@ -6944,6 +7239,8 @@ The previous working directory as set by the @code{cd} builtin. @item OPTERR If set to the value 1, Bash displays error messages generated by the @code{getopts} builtin command. +@env{OPTERR} +is initialized to 1 each time the shell is invoked. @item OSTYPE A string describing the operating system Bash is running on. @@ -6970,8 +7267,8 @@ When the shell enters @sc{posix} mode, it sets this variable if it was not already set. @item PPID -The process @sc{id} of the shell's parent process. This variable -is readonly. +The process @sc{id} of the shell's parent process. +This variable is readonly. @item PROMPT_COMMAND If this variable is set, and is an array, @@ -7010,7 +7307,9 @@ The current working directory as set by the @code{cd} builtin. @item RANDOM Each time this parameter is referenced, it expands to a random integer between 0 and 32767. Assigning a value to this -variable seeds the random number generator. +variable initializes (seeds) the random number generator. +Seeding the random number generator with the same constant value will +produce the same sequence of values. If @env{RANDOM} is unset, it loses its special properties, even if it is subsequently reset. @@ -7036,7 +7335,9 @@ The position of the insertion point in the Readline line buffer, for use with @samp{bind -x} (@pxref{Bash Builtins}). @item REPLY -The default variable for the @code{read} builtin. +The default variable for the @code{read} builtin; +set to the line read when @code{read} is not supplied a variable name +argument. @item SECONDS This variable expands to the number of seconds since the shell was started. @@ -7055,22 +7356,24 @@ If it is not set when the shell starts, Bash assigns to it the full pathname of the current user's login shell. @item SHELLOPTS -A colon-separated list of enabled shell options. Each word in -the list is a valid argument for the @option{-o} option to the -@code{set} builtin command (@pxref{The Set Builtin}). +A colon-separated list of enabled shell options. +Each word in the list is a valid argument for the @option{-o} option +to the @code{set} builtin command (@pxref{The Set Builtin}). The options appearing in @env{SHELLOPTS} are those reported as @samp{on} by @samp{set -o}. If this variable is in the environment when Bash -starts up, each shell option in the list will be enabled before -reading any startup files. This variable is readonly. +starts up, the shell enables each option in the list before +reading any startup files. +This variable is readonly. @item SHLVL -Incremented by one each time a new instance of Bash is started. This is -intended to be a count of how deeply your Bash shells are nested. +Incremented by one each time a new instance of Bash is started. +This is intended to be a count of how deeply your Bash shells are nested. @item SRANDOM This variable expands to a 32-bit pseudo-random number each time it is -referenced. The random number generator is not linear on systems that +referenced. +The random number generator is not linear on systems that support @file{/dev/urandom} or @code{arc4random}, so each returned number has no relationship to the numbers preceding it. The random number generator cannot be seeded, so assignments to this @@ -7110,9 +7413,10 @@ The CPU percentage, computed as (%U + %S) / %R. The optional @var{p} is a digit specifying the precision, the number of fractional digits after a decimal point. A value of 0 causes no decimal point or fraction to be output. -At most six places after the decimal point may be specified; +@code{time} will print at most six digits after the decimal point; values of @var{p} greater than 6 are changed to 6. -If @var{p} is not specified, the value 3 is used. +If @var{p} is not specified, +@code{time} prints three digits after the decimal point. The optional @code{l} specifies a longer format, including minutes, of the form @var{MM}m@var{SS}.@var{FF}s. @@ -7126,8 +7430,9 @@ If the value is null, Bash does not display any timing information. A trailing newline is added when the format string is displayed. @item TMOUT -If set to a value greater than zero, @code{TMOUT} is treated as the -default timeout for the @code{read} builtin (@pxref{Bash Builtins}). +If set to a value greater than zero, the @code{read} builtin uses the +value as its +default timeout (@pxref{Bash Builtins}). The @code{select} command (@pxref{Conditional Constructs}) terminates if input does not arrive after @code{TMOUT} seconds when input is coming from a terminal. @@ -7135,9 +7440,8 @@ from a terminal. In an interactive shell, the value is interpreted as the number of seconds to wait for a line of input after issuing the primary prompt. -Bash -terminates after waiting for that number of seconds if a complete -line of input does not arrive. +Bash terminates after waiting for that number of seconds if a +complete line of input does not arrive. @item TMPDIR If set, Bash uses its value as the name of a directory in which @@ -7187,19 +7491,20 @@ bash [long-opt] -s [-abefhkmnptuvxdBCDHP] [-o @var{option}] All of the single-character options used with the @code{set} builtin (@pxref{The Set Builtin}) can be used as options when the shell is invoked. In addition, there are several multi-character -options that you can use. These options must appear on the command +options that you can use. +These options must appear on the command line before the single-character options to be recognized. @table @code @item --debugger -Arrange for the debugger profile to be executed before the shell -starts. Turns on extended debugging mode (see @ref{The Shopt Builtin} +Arrange for the debugger profile to be executed before the shell starts. +Turns on extended debugging mode (see @ref{The Shopt Builtin} for a description of the @code{extdebug} option to the @code{shopt} builtin). @item --dump-po-strings -A list of all double-quoted strings preceded by @samp{$} -is printed on the standard output +Print a list of all double-quoted strings preceded by @samp{$} +on the standard output in the @sc{gnu} @code{gettext} PO (portable object) file format. Equivalent to @option{-D} except for the output format. @@ -7229,22 +7534,23 @@ when Bash is invoked as a login shell. @item --norc Don't read the @file{~/.bashrc} initialization file in an -interactive shell. This is on by default if the shell is -invoked as @code{sh}. +interactive shell. +This is on by default if the shell is invoked as @code{sh}. @item --posix Change the behavior of Bash where the default operation differs -from the @sc{posix} standard to match the standard. This -is intended to make Bash behave as a strict superset of that -standard. @xref{Bash POSIX Mode}, for a description of the Bash -@sc{posix} mode. +from the @sc{posix} standard to match the standard. +This is intended to make Bash behave as a strict superset of that +standard. +@xref{Bash POSIX Mode}, for a description of the Bash @sc{posix} mode. @item --restricted Equivalent to @option{-r}. Make the shell a restricted shell (@pxref{The Restricted Shell}). @item --verbose -Equivalent to @option{-v}. Print shell input lines as they're read. +Equivalent to @option{-v}. +Print shell input lines as they're read. @item --version Show version information for this instance of @@ -7265,15 +7571,15 @@ The assignment to @code{$0} sets the name of the shell, which is used in warning and error messages. @item -i -Force the shell to run interactively. Interactive shells are -described in @ref{Interactive Shells}. +Force the shell to run interactively. +Interactive shells are described in @ref{Interactive Shells}. @item -l Make this shell act as if it had been directly invoked by login. When the shell is interactive, this is equivalent to starting a login shell with @samp{exec -l bash}. -When the shell is not interactive, the login shell startup files will -be executed. +When the shell is not interactive, it will read and execute the login +shell startup files. @samp{exec bash -l} or @samp{exec bash --login} will replace the current shell with a Bash login shell. @xref{Bash Startup Files}, for a description of the special behavior @@ -7284,14 +7590,14 @@ Make the shell a restricted shell (@pxref{The Restricted Shell}). @item -s If this option is present, or if no arguments remain after option -processing, then commands are read from the standard input. +processing, then Bash reads commands from the standard input. This option allows the positional parameters to be set when invoking an interactive shell or when reading input through a pipe. @item -D -A list of all double-quoted strings preceded by @samp{$} -is printed on the standard output. +Print a list of all double-quoted strings preceded by @samp{$} +on the standard output. These are the strings that are subject to language translation when the current locale is not @code{C} or @code{POSIX} (@pxref{Locale Translation}). @@ -7302,8 +7608,9 @@ This implies the @option{-n} option; no commands will be executed. @code{shopt} builtin (@pxref{The Shopt Builtin}). If @var{shopt_option} is present, @option{-O} sets the value of that option; @option{+O} unsets it. -If @var{shopt_option} is not supplied, the names and values of the shell -options accepted by @code{shopt} are printed on the standard output. +If @var{shopt_option} is not supplied, Bash +prints the names and values of the shell +options accepted by @code{shopt} on the standard output. If the invocation option is @option{+O}, the output is displayed in a format that may be reused as input. @@ -7325,11 +7632,11 @@ A @emph{login} shell is one whose first character of argument zero is @cindex interactive shell An @emph{interactive} shell is one started without non-option arguments, -unless @option{-s} is specified, -without specifying the @option{-c} option, and whose input and output are both +unless @option{-s} is specified, without specifying the @option{-c} option, +and whose input and output (using the standard error) are both connected to terminals (as determined by @code{isatty(3)}), or one -started with the @option{-i} option. @xref{Interactive Shells}, for more -information. +started with the @option{-i} option. +@xref{Interactive Shells}, for more information. If arguments remain after option processing, and neither the @option{-c} nor the @option{-s} @@ -7340,7 +7647,8 @@ is set to the name of the file, and the positional parameters are set to the remaining arguments. Bash reads and executes commands from this file, then exits. Bash's exit status is the exit status of the last command executed -in the script. If no commands are executed, the exit status is 0. +in the script. +If no commands are executed, the exit status is 0. @node Bash Startup Files @section Bash Startup Files @@ -7371,11 +7679,11 @@ the file @file{~/.bash_logout}, if it exists. @subsubheading Invoked as an interactive non-login shell -When an interactive shell that is not a login shell is started, Bash +When Bash runs as an interactive shell that is not a login shell, it reads and executes commands from @file{~/.bashrc}, if that file exists. This may be inhibited by using the @option{--norc} option. -The @option{--rcfile @var{file}} option will -cause Bash to +The @option{--rcfile @var{file}} option +causes Bash to use @var{file} instead of @file{~/.bashrc}. So, typically, your @file{~/.bash_profile} contains the line @@ -7390,13 +7698,13 @@ after (or before) any login-specific initializations. When Bash is started non-interactively, to run a shell script, for example, it looks for the variable @env{BASH_ENV} in the environment, expands its value if it appears there, and uses the expanded value as -the name of a file to read and execute. Bash behaves as if the -following command were executed: +the name of a file to read and execute. +Bash behaves as if the following command were executed: @example @code{if [ -n "$BASH_ENV" ]; then . "$BASH_ENV"; fi} @end example @noindent -but the value of the @env{PATH} variable is not used to search for the +but does not the value of the @env{PATH} variable to search for the filename. As noted above, if a non-interactive shell is invoked with the @@ -7414,12 +7722,14 @@ shell with the @option{--login} option, it first attempts to read and execute commands from @file{/etc/profile} and @file{~/.profile}, in that order. The @option{--noprofile} option may be used to inhibit this behavior. + When invoked as an interactive shell with the name @code{sh}, Bash looks for the variable @env{ENV}, expands its value if it is defined, and uses the expanded value as the name of a file to read and execute. Since a shell invoked as @code{sh} does not attempt to read and execute commands from any other startup files, the @option{--rcfile} option has no effect. + A non-interactive shell invoked with the name @code{sh} does not attempt to read any other startup files. @@ -7432,7 +7742,7 @@ When Bash is started in @sc{posix} mode, as with the @option{--posix} command line option, it follows the @sc{posix} standard for startup files. In this mode, interactive shells expand the @env{ENV} variable -and commands are read and executed from the file whose name is the +and read and execute commands from the file whose name is the expanded value. No other startup files are read. @@ -7440,7 +7750,7 @@ No other startup files are read. Bash attempts to determine when it is being run with its standard input connected to a network connection, as when executed by -the historical remote shell daemon, usually @code{rshd}, +the historical and rarely-seen remote shell daemon, usually @code{rshd}, or the secure shell daemon @code{sshd}. If Bash determines it is being run non-interactively in this fashion, @@ -7491,7 +7801,7 @@ An interactive shell generally reads from and writes to a user's terminal. The @option{-s} invocation option may be used to set the positional parameters -when an interactive shell is started. +when an interactive shell starts. @node Is this Shell Interactive? @subsection Is this Shell Interactive? @@ -7499,7 +7809,8 @@ when an interactive shell is started. To determine within a startup script whether or not Bash is running interactively, test the value of the @samp{-} special parameter. -It contains @code{i} when the shell is interactive. For example: +It contains @code{i} when the shell is interactive. +For example: @example case "$-" in @@ -7510,7 +7821,8 @@ esac Alternatively, startup scripts may examine the variable @env{PS1}; it is unset in non-interactive shells, and set in -interactive shells. Thus: +interactive shells. +Thus: @example if [ -z "$PS1" ]; then @@ -7528,12 +7840,17 @@ several ways. @enumerate @item -Startup files are read and executed as described in @ref{Bash Startup Files}. +Bash reads and executes startup files as described in @ref{Bash Startup Files}. + +@item +Job Control (@pxref{Job Control}) is enabled by default. +When job control is in effect, Bash ignores the keyboard-generated +job control signals @code{SIGTTIN}, @code{SIGTTOU}, and @code{SIGTSTP}. @item -Job Control (@pxref{Job Control}) is enabled by default. When job -control is in effect, Bash ignores the keyboard-generated job control -signals @code{SIGTTIN}, @code{SIGTTOU}, and @code{SIGTSTP}. +Bash executes the values of the set elements of the @env{PROMPT_COMMAND} +array variable as commands before printing the primary prompt, @env{$PS1} +(@pxref{Bash Variables}). @item Bash expands and displays @env{PS1} before reading the first line @@ -7545,12 +7862,7 @@ See @ref{Controlling the Prompt}, for a complete list of prompt string escape sequences. @item -Bash executes the values of the set elements of the @env{PROMPT_COMMAND} -array variable as commands before printing the primary prompt, @env{$PS1} -(@pxref{Bash Variables}). - -@item -Readline (@pxref{Command Line Editing}) is used to read commands from +Bash uses Readline (@pxref{Command Line Editing}) to read commands from the user's terminal. @item @@ -7559,11 +7871,11 @@ instead of exiting immediately when it receives an @code{EOF} on its standard input when reading a command (@pxref{The Set Builtin}). @item -Command history (@pxref{Bash History Facilities}) +Bash enables Command history (@pxref{Bash History Facilities}) and history expansion (@pxref{History Interaction}) -are enabled by default. -Bash will save the command history to the file named by @env{$HISTFILE} -when a shell with history enabled exits. +by default. +When a shell with history enabled exits, +Bash saves the command history to the file named by @env{$HISTFILE}. @item Alias expansion (@pxref{Aliases}) is performed by default. @@ -7582,8 +7894,8 @@ An interactive login shell sends a @code{SIGHUP} to all jobs on exit if the @code{huponexit} shell option has been enabled (@pxref{Signals}). @item -The @option{-n} invocation option is ignored, and @samp{set -n} has -no effect (@pxref{The Set Builtin}). +The @option{-n} option has no effect, whether at invocation or when +using @samp{set -n} (@pxref{The Set Builtin}). @item Bash will check for mail periodically, depending on the values of the @@ -7591,13 +7903,14 @@ Bash will check for mail periodically, depending on the values of the (@pxref{Bash Variables}). @item -Expansion errors due to references to unbound shell variables after -@samp{set -u} has been enabled will not cause the shell to exit -(@pxref{The Set Builtin}). +The shell will not exit on +expansion errors due to references to unbound shell variables after +@samp{set -u} has been enabled (@pxref{The Set Builtin}). @item -The shell will not exit on expansion errors caused by @var{var} being unset -or null in @code{$@{@var{var}:?@var{word}@}} expansions +The shell will not exit on +expansion errors caused by @var{var} being unset or null in +@code{$@{@var{var}:?@var{word}@}} expansions (@pxref{Shell Parameter Expansion}). @item @@ -7643,9 +7956,12 @@ of arguments; see the descriptions of those commands for any other command-specific actions. Expressions may be unary or binary, -and are formed from the following primaries. -Unary expressions are often used to examine the status of a file. -There are string operators and numeric comparison operators as well. +and are formed from the primaries listed below. +Unary expressions are often used to examine the status of a file +or shell variable. +Binary operators are used for string, numeric, and file attribute +comparisons. + Bash handles several filenames specially when they are used in expressions. If the operating system on which Bash is running provides these @@ -7720,7 +8036,8 @@ True if @var{file} exists and is owned by the effective group id. True if @var{file} exists and is a symbolic link. @item -N @var{file} -True if @var{file} exists and has been modified since it was last read. +True if @var{file} exists and has been modified since it was last +accessed. @item -O @var{file} True if @var{file} exists and is owned by the effective user id. @@ -7789,7 +8106,7 @@ is equal to, not equal to, less than, less than or equal to, greater than, or greater than or equal to @var{arg2}, respectively. @var{Arg1} and @var{arg2} may be positive or negative integers. -When used with the @code{[[} command, @var{Arg1} and @var{Arg2} +When used with the @code{[[} command, @var{arg1} and @var{arg2} are evaluated as arithmetic expressions (@pxref{Shell Arithmetic}). @end table @@ -7802,10 +8119,14 @@ are evaluated as arithmetic expressions (@pxref{Shell Arithmetic}). @cindex arithmetic evaluation The shell allows arithmetic expressions to be evaluated, as one of -the shell expansions or by using the @code{((} compound command, the -@code{let} builtin, or the @option{-i} option to the @code{declare} builtin. - -Evaluation is done in fixed-width integers with no check for overflow, +the shell expansions or by using the @code{((} compound command, +the @code{let} and @code{declare} builtins, +the arithmetic @code{for} command, +the @code{[[} conditional command, +or the @option{-i} option to the @code{declare} builtin. + +Evaluation is done in the largest fixed-width integers available, +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. @@ -7879,8 +8200,14 @@ Shell variables are allowed as operands; parameter expansion is performed before the expression is evaluated. Within an expression, shell variables may also be referenced by name without using the parameter expansion syntax. +This means you can use +.Q x , +where \fIx\fP is a shell variable name, in an arithmetic expression, +and the shell will evaluate its value as an expression and use the +result. A shell variable that is null or unset evaluates to 0 when referenced -by name without using the parameter expansion syntax. +by name in an expression. + The value of a variable is evaluated as an arithmetic expression when it is referenced, or when a variable which has been given the @code{integer} attribute using @samp{declare -i} is assigned a value. @@ -7904,9 +8231,9 @@ If @var{base} is less than or equal to 36, lowercase and uppercase letters may be used interchangeably to represent numbers between 10 and 35. -Operators are evaluated in order of precedence. Sub-expressions in -parentheses are evaluated first and may override the precedence -rules above. +Operators are evaluated in precedence order. +Sub-expressions in parentheses are evaluated first +and may override the precedence rules above. @node Aliases @section Aliases @@ -7920,7 +8247,8 @@ and unset using the @code{alias} and @code{unalias} builtin commands (@pxref{Shell Builtin Commands}). 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 +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 characters following the word before @@ -7939,8 +8267,8 @@ for instance, and Bash does not try to recursively expand the replacement text. If the last character of the alias value is a -@code{blank}, then the next command word following the -alias is also checked for alias expansion. +@code{blank}, then the shell checks +the next command word following the alias for alias expansion. Aliases are created and listed with the @code{alias} command, and removed with the @code{unalias} command. @@ -7955,20 +8283,21 @@ unless the @code{expand_aliases} shell option is set using @code{shopt} (@pxref{The Shopt Builtin}). The rules concerning the definition and use of aliases are -somewhat confusing. Bash -always reads at least one complete line of input, +somewhat confusing. +Bash 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 +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. +command does not take effect until the shell reads the next line of input. 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 +is itself a command. +As a consequence, aliases defined in a function are not available until after that function is executed. To be safe, always put alias definitions on a separate line, and do not use @code{alias} @@ -7999,7 +8328,8 @@ using the syntax @noindent The @var{subscript} -is treated as an arithmetic expression that must evaluate to a number. +is treated as an arithmetic expression that must evaluate to a number +greater than or equal to zero. To explicitly declare an array, use @example declare -a @var{name} @@ -8020,10 +8350,10 @@ declare -A @var{name} Attributes may be specified for an array variable using the @code{declare} and -@code{readonly} builtins. Each attribute applies to all members of -an array. +@code{readonly} builtins. +Each attribute applies to all members of an array. -Arrays are assigned to using compound assignments of the form +Arrays are assigned using compound assignments of the form @example @var{name}=(@var{value1} @var{value2} @dots{} ) @end example @@ -8031,10 +8361,6 @@ Arrays are assigned to using compound assignments of the form where each @var{value} may be of the form @code{[@var{subscript}]=}@var{string}. Indexed array assignments do not require anything but @var{string}. -When assigning to indexed arrays, if -the optional subscript is supplied, that index is assigned to; -otherwise the index of the element assigned is the last index assigned -to by the statement plus one. Indexing starts at zero. Each @var{value} in the list undergoes the shell expansions described above (@pxref{Shell Expansions}), @@ -8043,6 +8369,12 @@ including the brackets and subscript do not undergo brace expansion and word splitting, as with individual variable assignments. +When assigning to indexed arrays, if +the optional subscript is supplied, that index is assigned to; +otherwise the index of the element assigned is the last index assigned +to by the statement plus one. +Indexing starts at zero. + When assigning to an associative array, the words in a compound assignment may be either assignment statements, for which the subscript is required, or a list of words that is interpreted as a sequence of alternating keys @@ -8056,7 +8388,8 @@ When using key/value pairs, the keys may not be missing or empty; a final missing value is treated like the empty string. This syntax is also accepted by the @code{declare} -builtin. Individual array elements may be assigned to using the +builtin. +Individual array elements may be assigned to using the @code{@var{name}[@var{subscript}]=@var{value}} syntax introduced above. When assigning to an indexed array, if @var{name} @@ -8068,11 +8401,12 @@ array, and an index of -1 references the last element. The @samp{+=} operator will append to an array variable when assigning using the compound assignment syntax; see @ref{Shell Parameters} above. -Any element of an array may be referenced using +An array element is referenced using @code{$@{@var{name}[@var{subscript}]@}}. The braces are required to avoid -conflicts with the shell's filename expansion operators. If the -@var{subscript} is @samp{@@} or @samp{*}, the word expands to all members +conflicts with the shell's filename expansion operators. +If the @var{subscript} is @samp{@@} or @samp{*}, +the word expands to all members of the array @var{name}, unless otherwise noted in the description of a builtin or word expansion. These subscripts differ only when the word @@ -8081,18 +8415,22 @@ If the word is double-quoted, @code{$@{@var{name}[*]@}} expands to a single word with the value of each array member separated by the first character of the @env{IFS} variable, and @code{$@{@var{name}[@@]@}} expands each element of -@var{name} to a separate word. When there are no array members, -@code{$@{@var{name}[@@]@}} expands to nothing. -If the double-quoted expansion occurs within a word, the expansion of -the first parameter is joined with the beginning part of the original -word, and the expansion of the last parameter is joined with the last -part of the original word. +@var{name} to a separate word. +When there are no array members, @code{$@{@var{name}[@@]@}} expands to +nothing. +If the double-quoted expansion occurs within a word, +the expansion of the first parameter is joined with the beginning part of the +expansion of the original word, +and the expansion of the last parameter is joined with the last part of the +expansion of the original word. This is analogous to the expansion of the special parameters @samp{@@} and @samp{*}. + @code{$@{#@var{name}[@var{subscript}]@}} expands to the length of @code{$@{@var{name}[@var{subscript}]@}}. -If @var{subscript} is @samp{@@} or -@samp{*}, the expansion is the number of elements in the array. +If @var{subscript} is @samp{@@} or @samp{*}, +the expansion is the number of elements in the array. + If the @var{subscript} used to reference an element of an indexed array evaluates to a number less than zero, it is @@ -8106,7 +8444,8 @@ Any reference to a variable using a valid subscript is valid, and Bash will create an array if necessary. An array variable is considered set if a subscript has been assigned a -value. The null string is a valid value. +value. +The null string is a valid value. It is possible to obtain the keys (indices) of an array as well as the values. $@{!@var{name}[@@]@} and $@{!@var{name}[*]@} expand to the indices @@ -8116,14 +8455,14 @@ special parameters @samp{@@} and @samp{*} within double quotes. The @code{unset} builtin is used to destroy arrays. @code{unset @var{name}[@var{subscript}]} -destroys the array element at index @var{subscript}. +unsets the array element at index @var{subscript}. Negative subscripts to indexed arrays are interpreted as described above. Unsetting the last element of an array variable does not unset the variable. @code{unset @var{name}}, where @var{name} is an array, removes the entire array. @code{unset @var{name}[@var{subscript}]} behaves differently -depending on the array type when given a -subscript of @samp{*} or @samp{@@}. +depending on the array type when +@var{subscript} is @samp{*} or @samp{@@}. When @var{name} is an associative array, it removes the element with key @samp{*} or @samp{@@}. If @var{name} is an indexed array, @code{unset} removes all of the elements, @@ -8131,8 +8470,10 @@ but does not remove the array itself. When using a variable name with a subscript as an argument to a command, such as with @code{unset}, without using the word expansion syntax -described above, the argument is subject to the shell's filename expansion. -If filename expansion is not desired, the argument should be quoted. +described above (e.g., unset a[4]), +the argument is subject to the shell's filename expansion. +Quote the argument if pathname expansion is not desired +(e.g., unset 'a[4]'). The @code{declare}, @code{local}, and @code{readonly} builtins each accept a @option{-a} option to specify an indexed @@ -8144,6 +8485,10 @@ to an array, and can read values from the standard input into individual array elements. The @code{set} and @code{declare} builtins display array values in a way that allows them to be reused as input. +Other builtins accept array name arguments as well +(e.g., @code{mapfile}); see the descriptions +of individual builtins for details. +The shell provides a number of builtin array variables. @node The Directory Stack @section The Directory Stack @@ -8176,11 +8521,13 @@ as the value of the @env{DIRSTACK} shell variable. dirs [-clpv] [+@var{N} | -@var{N}] @end example -Display the list of currently remembered directories. Directories -are added to the list with the @code{pushd} command; the -@code{popd} command removes directories from the list. +Without options, display the list of currently remembered directories. +Directories are added to the list with the @code{pushd} command; +the @code{popd} command removes directories from the list. The current directory is always the first directory in the stack. +Options, if supplied, have the following meanings: + @table @code @item -c Clears the directory stack by deleting all of the elements. @@ -8209,26 +8556,25 @@ with zero. popd [-n] [+@var{N} | -@var{N}] @end example -Removes elements from the directory stack. +Remove elements from the directory stack. The elements are numbered from 0 starting at the first directory listed by @code{dirs}; that is, @code{popd} is equivalent to @code{popd +0}. -When no arguments are given, @code{popd} -removes the top directory from the stack and changes to -the new top directory. +When no arguments are given, @code{popd} removes the top directory +from the stack and changes to the new top directory. Arguments, if supplied, have the following meanings: @table @code @item -n -Suppresses the normal change of directory when removing directories -from the stack, so that only the stack is manipulated. +Suppress the normal change of directory when removing directories +from the stack, only manipulate the stack. @item +@var{N} -Removes the @var{N}th directory (counting from the left of the +Remove the @var{N}th directory (counting from the left of the list printed by @code{dirs}), starting with zero, from the stack. @item -@var{N} -Removes the @var{N}th directory (counting from the right of the +Remove the @var{N}th directory (counting from the right of the list printed by @code{dirs}), starting with zero, from the stack. @end table @@ -8238,8 +8584,8 @@ builtin to change to the directory at the top of the stack. If the @code{cd} fails, @code{popd} returns a non-zero value. Otherwise, @code{popd} returns an unsuccessful status if -an invalid option is encountered, the directory stack -is empty, or a non-existent directory stack entry is specified. +an invalid option is specified, the directory stack +is empty, or @var{N} specifies a non-existent directory stack entry. If the @code{popd} command is successful, Bash runs @code{dirs} to show the final contents of the directory stack, @@ -8251,7 +8597,7 @@ and the return status is 0. pushd [-n] [@var{+N} | @var{-N} | @var{dir}] @end example -Adds a directory to the top of the directory stack, or rotates +Add a directory to the top of the directory stack, or rotate the stack, making the new top of the stack the current working directory. With no arguments, @code{pushd} exchanges the top two elements @@ -8261,18 +8607,18 @@ Arguments, if supplied, have the following meanings: @table @code @item -n -Suppresses the normal change of directory when rotating or -adding directories to the stack, so that only the stack is manipulated. +Suppress the normal change of directory when rotating or +adding directories to the stack, only manipulate the stack. @item +@var{N} -Brings the @var{N}th directory (counting from the left of the -list printed by @code{dirs}, starting with zero) to the top of -the list by rotating the stack. +Rotate the stack so that +the @var{N}th directory (counting from the left of the +list printed by @code{dirs}, starting with zero) is at the top. @item -@var{N} -Brings the @var{N}th directory (counting from the right of the -list printed by @code{dirs}, starting with zero) to the top of -the list by rotating the stack. +Rotate the stack so that +the @var{N}th directory (counting from the right of the +list printed by @code{dirs}, starting with zero) is at the top. @item @var{dir} -Makes @var{dir} be the top of the stack. +Make @var{dir} be the top of the stack. @end table After the stack has been modified, if the @option{-n} option was not @@ -8280,11 +8626,11 @@ supplied, @code{pushd} uses the @code{cd} builtin to change to the directory at the top of the stack. If the @code{cd} fails, @code{pushd} returns a non-zero value. -Otherwise, if no arguments are supplied, @code{pushd} returns 0 unless the -directory stack is empty. -When rotating the directory stack, @code{pushd} returns 0 unless -the directory stack is empty or a non-existent directory stack element -is specified. +Otherwise, if no arguments are supplied, @code{pushd} returns zero +unless the directory stack is empty. +When rotating the directory stack, @code{pushd} returns zero unless +the directory stack is empty or @var{N} specifies a non-existent +directory stack element. If the @code{pushd} command is successful, Bash runs @code{dirs} to show the final contents of the directory stack. @@ -8295,12 +8641,6 @@ Bash runs @code{dirs} to show the final contents of the directory stack. @section Controlling the Prompt @cindex prompting -Bash examines the value of the array variable @env{PROMPT_COMMAND} just before -printing each primary prompt. -If any elements in @env{PROMPT_COMMAND} are set and non-null, Bash -executes each value, in numeric order, -just as if it had been typed on the command line. - In addition, the following table describes the special characters which can appear in the prompt variables @env{PS0}, @env{PS1}, @env{PS2}, and @env{PS4}: @@ -8313,23 +8653,24 @@ The date, in "Weekday Month Date" format (e.g., "Tue May 26"). @item \D@{@var{format}@} The @var{format} is passed to @code{strftime}(3) and the result is inserted into the prompt string; an empty @var{format} results in a locale-specific -time representation. The braces are required. +time representation. +The braces are required. @item \e An escape character. @item \h -The hostname, up to the first `.'. +The hostname, up to the first @samp{.}. @item \H The hostname. @item \j The number of jobs currently managed by the shell. @item \l -The basename of the shell's terminal device name. +The basename of the shell's terminal device name (e.g., "ttys0"). @item \n A newline. @item \r A carriage return. @item \s -The name of the shell, the basename of @code{$0} (the portion +The name of the shell: the basename of @code{$0} (the portion following the final slash). @item \t The time, in 24-hour HH:MM:SS format. @@ -8342,9 +8683,9 @@ The time, in 24-hour HH:MM format. @item \u The username of the current user. @item \v -The version of Bash (e.g., 2.00) +The Bash version (e.g., 2.00). @item \V -The release of Bash, version + patchlevel (e.g., 2.00.0) +The Bash release, version + patchlevel (e.g., 2.00.0). @item \w The value of the @code{PWD} shell variable (@env{$PWD}), with @env{$HOME} abbreviated with a tilde @@ -8391,7 +8732,7 @@ If Bash is started with the name @code{rbash}, or the @option{--restricted} or @option{-r} -option is supplied at invocation, the shell becomes restricted. +option is supplied at invocation, the shell becomes @var{restricted}. A restricted shell is used to set up an environment more controlled than the standard shell. A restricted shell behaves identically to @code{bash} @@ -8410,6 +8751,9 @@ Specifying command names containing slashes. Specifying a filename containing a slash as an argument to the @code{.} builtin command. @item +Using the @option{-p} option to the @code{.} builtin command +to specify a search path. +@item Specifying a filename containing a slash as an argument to the @code{history} builtin command. @item @@ -8944,11 +9288,12 @@ There is only one current compatibility level -- each option is mutually exclusive. The compatibility level is intended to allow users to select behavior from previous versions that is incompatible with newer versions -while they migrate scripts to use current features and -behavior. It's intended to be a temporary solution. +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 particular -version (e.g., setting @code{compat32} means that quoting the rhs of the regexp +version (e.g., setting @code{compat32} means that quoting the right hand +side of the regexp matching operator quotes special regexp characters in the word, which is default behavior in bash-3.2 and subsequent versions). @@ -8971,13 +9316,14 @@ to this variable (a decimal version number like 4.2, or an integer corresponding to the @code{compat}@var{NN} option, like 42) determines the compatibility level. -Starting with bash-4.4, Bash has begun deprecating older compatibility +Starting with bash-4.4, Bash began deprecating older compatibility levels. Eventually, the options will be removed in favor of @env{BASH_COMPAT}. -Bash-5.0 was the final version for which there will be an individual shopt +Bash-5.0 was the final version for which there was an individual shopt option for the previous version. -Users should control the compatibility level with @env{BASH_COMPAT}. +@env{BASH_COMPAT} is the only mechanism to control the compatibility level +in versions newer than bash-5.0. The following table describes the behavior changes controlled by each compatibility level setting. @@ -8993,14 +9339,14 @@ and it is required for bash-5.1 and later versions. @item compat31 @itemize @bullet @item -quoting the rhs of the @code{[[} command's regexp matching operator (=~) +Quoting the rhs of the @code{[[} command's regexp matching operator (=~) has no special effect @end itemize @item compat40 @itemize @bullet @item -the @samp{<} and @samp{>} operators to the @code{[[} command do not +The @samp{<} and @samp{>} operators to the @code{[[} command do not consider the current locale when comparing strings; they use ASCII ordering. Bash versions prior to bash-4.1 use ASCII collation and strcmp(3); @@ -9011,74 +9357,75 @@ strcoll(3). @item compat41 @itemize @bullet @item -in posix mode, @code{time} may be followed by options and still be -recognized as a reserved word (this is @sc{posix} interpretation 267) +In posix mode, @code{time} may be followed by options and still be +recognized as a reserved word (this is @sc{posix} interpretation 267). @item -in posix mode, the parser requires that an even number of single +In posix mode, the parser requires that an even number of single quotes occur in the @var{word} portion of a double-quoted $@{@dots{}@} parameter expansion and treats them specially, so that characters within the single quotes are considered quoted -(this is @sc{posix} interpretation 221) +(this is @sc{posix} interpretation 221). @end itemize @item compat42 @itemize @bullet @item -the replacement string in double-quoted pattern substitution does not -undergo quote removal, as it does in versions after bash-4.2 +The replacement string in double-quoted pattern substitution does not +undergo quote removal, as it does in versions after bash-4.2. @item -in posix mode, single quotes are considered special when expanding +In posix mode, single quotes are considered special when expanding the @var{word} portion of a double-quoted $@{@dots{}@} parameter expansion and can be used to quote a closing brace or other special character (this is part of @sc{posix} interpretation 221); in later versions, single quotes -are not special within double-quoted word expansions +are not special within double-quoted word expansions. @end itemize @item compat43 @itemize @bullet @item -word expansion errors are considered non-fatal errors that cause the +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) +to exit). @item -when executing a shell function, the loop state (while/until/etc.) +When executing a shell function, the loop state (while/until/etc.) is not reset, so @code{break} or @code{continue} in that function will break -or continue loops in the calling context. Bash-4.4 and later reset -the loop state to prevent this +or continue loops in the calling context. +Bash-4.4 and later reset the loop state to prevent this. @end itemize @item compat44 @itemize @bullet @item -the shell sets up the values used by @env{BASH_ARGV} and @env{BASH_ARGC} +The shell sets up the values used by @env{BASH_ARGV} and @env{BASH_ARGC} so they can expand to the shell's positional parameters even if extended -debugging mode is not enabled +debugging mode is not enabled. @item -a subshell inherits loops from its parent context, so @code{break} +A subshell inherits loops from its parent context, so @code{break} or @code{continue} will cause the subshell to exit. -Bash-5.0 and later reset the loop state to prevent the exit +Bash-5.0 and later reset the loop state to prevent the exit. @item -variable assignments preceding builtins like @code{export} and @code{readonly} +Variable assignments preceding builtins like @code{export} and @code{readonly} that set attributes continue to affect variables with the same name in the calling environment even if the shell is not in posix -mode +mode. @end itemize @item compat50 (set using BASH_COMPAT) @itemize @bullet @item Bash-5.1 changed the way @code{$RANDOM} is generated to introduce 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, +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 random number generator by assigning a value to -@env{RANDOM} will produce the same sequence as in bash-5.0 +@env{RANDOM} will produce the same sequence as in bash-5.0. @item If the command hash table is empty, Bash versions prior to bash-5.1 printed an informational message to that effect, even when producing -output that can be reused as input. Bash-5.1 suppresses that message -when the @option{-l} option is supplied. +output that can be reused as input. +Bash-5.1 suppresses that message when the @option{-l} option is supplied. @end itemize @item compat51 (set using BASH_COMPAT) @@ -9087,27 +9434,27 @@ when the @option{-l} option is supplied. The @code{unset} builtin will unset the array @code{a} given an argument like @samp{a[@@]}. Bash-5.2 will unset an element with key @samp{@@} (associative arrays) -or remove all the elements without unsetting the array (indexed arrays) +or remove all the elements without unsetting the array (indexed arrays). @item -arithmetic commands ( ((...)) ) and the expressions in an arithmetic for -statement can be expanded more than once +Arithmetic commands ( ((...)) ) and the expressions in an arithmetic for +statement can be expanded more than once. @item -expressions used as arguments to arithmetic operators in the @code{[[} -conditional command can be expanded more than once +Expressions used as arguments to arithmetic operators in the @code{[[} +conditional command can be expanded more than once. @item -the expressions in substring parameter brace expansion can be -expanded more than once +The expressions in substring parameter brace expansion can be +expanded more than once. @item -the expressions in the $(( ... )) word expansion can be expanded -more than once +The expressions in the $(( ... )) word expansion can be expanded +more than once. @item -arithmetic expressions used as indexed array subscripts can be -expanded more than once +Arithmetic expressions used as indexed array subscripts can be +expanded more than once. @item @code{test -v}, when given an argument of @samp{A[@@]}, where @var{A} is an existing associative array, will return true if the array has any set elements. -Bash-5.2 will look for and report on a key named @samp{@@} +Bash-5.2 will look for and report on a key named @samp{@@}. @item the $@{@var{parameter}[:]=@var{value}@} word expansion will return @var{value}, before any variable-specific transformations have been @@ -9297,7 +9644,7 @@ fg [@var{jobspec}] @end example Resume the job @var{jobspec} in the foreground and make it the current job. -If @var{jobspec} is not supplied, the current job is used. +If @var{jobspec} is not supplied, resume the current job. The return status is that of the command placed into the foreground, or non-zero if run when job control is disabled or, when run with job control enabled, @var{jobspec} does not specify a valid job or @@ -9310,8 +9657,8 @@ jobs [-lnprs] [@var{jobspec}] jobs -x @var{command} [@var{arguments}] @end example -The first form lists the active jobs. The options have the -following meanings: +The first form lists the active jobs. +The options have the following meanings: @table @code @item -l @@ -9331,10 +9678,9 @@ Display only running jobs. Display only stopped jobs. @end table -If @var{jobspec} is given, -output is restricted to information about that job. -If @var{jobspec} is not supplied, the status of all jobs is -listed. +If @var{jobspec} is supplied, +@code{jobs} restricts output to information about that job. +If @var{jobspec} is not supplied, @code{jobs} lists the status of all jobs. If the @option{-x} option is supplied, @code{jobs} replaces any @var{jobspec} found in @var{command} or @var{arguments} with the @@ -9353,14 +9699,17 @@ named by job specification @var{jobspec} or process @sc{id} @var{pid}. @var{sigspec} is either a case-insensitive signal name such as @code{SIGINT} (with or without the @code{SIG} prefix) or a signal number; @var{signum} is a signal number. -If @var{sigspec} and @var{signum} are not present, @code{SIGTERM} is used. +If @var{sigspec} and @var{signum} are not present, @code{kill} +sends @code{SIGTERM}. + The @option{-l} option lists the signal names. -If any arguments are supplied when @option{-l} is given, the names of the +If any arguments are supplied when @option{-l} is supplied, the names of the signals corresponding to the arguments are listed, and the return status is zero. @var{exit_status} is a number specifying a signal number or the exit status of a process terminated by a signal. The @option{-L} option is equivalent to @option{-l}. + The return status is zero if at least one signal was successfully sent, or non-zero if an error occurs or an invalid option is encountered. @@ -9373,7 +9722,7 @@ wait [-fn] [-p @var{varname}] [@var{id} @dots{}] Wait until the child process specified by each @var{id} exits and return the exit status of the last @var{id}. Each @var{id} may be a @var{pid} or job specification @var{jobspec}; -if a job spec is given, @code{wait} waits for all processes in the job. +if a job spec is supplied, @code{wait} waits for all processes in the job. If no options or @var{id}s are supplied, @code{wait} waits for all running background jobs and @@ -9392,7 +9741,9 @@ the exit status is 127. If the @option{-p} option is supplied, the process or job identifier of the job for which the exit status is returned is assigned to the variable @var{varname} named by the option argument. -The variable will be unset initially, before any assignment. +The variable, +which cannot be readonly, +will be unset initially, before any assignment. This is useful only when the @option{-n} option is supplied. Supplying the @option{-f} option, when job control is enabled, @@ -9410,20 +9761,27 @@ Otherwise, the return status is the exit status of the last @var{id}. @item disown @btindex disown @example -disown [-ar] [-h] [@var{jobspec} @dots{} | @var{pid} @dots{} ] +disown [-ar] [-h] [@var{id} @dots{}] @end example -Without options, remove each @var{jobspec} from the table of +Without options, remove each @var{id} from the table of active jobs. -If the @option{-h} option is given, the job is not removed from the table, +Each @var{id} may be a @var{pid} or job specification @var{jobspec}; +if @var{id} is a @var{pid}, +@code{disown} uses the job containing @var{pid}. +If the @option{-h} option is supplied, the job is not removed from the table, but is marked so that @code{SIGHUP} is not sent to the job if the shell receives a @code{SIGHUP}. -If @var{jobspec} is not present, and neither the @option{-a} nor the -@option{-r} option is supplied, the current job is used. -If no @var{jobspec} is supplied, the @option{-a} option means to remove or -mark all jobs; the @option{-r} option without a @var{jobspec} +If @var{id} is not present, and neither the @option{-a} nor the +@option{-r} option is supplied, @code{disown} removes the current job. + +If no @var{id} is supplied, the @option{-a} option means to remove or +mark all jobs; the @option{-r} option without an @var{id} argument restricts operation to running jobs. +The return value is 0 unless an @var{id} +does not specify a valid job. + @item suspend @btindex suspend @example @@ -9432,10 +9790,9 @@ suspend [-f] Suspend the execution of this shell until it receives a @code{SIGCONT} signal. -A login shell, -or a shell without job control enabled, +A login shell, or a shell without job control enabled, cannot be suspended; the @option{-f} -option can be used to override this and force the suspension. +option will 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 @@ -9455,17 +9812,21 @@ supplied process @sc{id}s. @item auto_resume This variable controls how the shell interacts with the user and -job control. If this variable exists then single word simple +job control. +If this variable exists then single-word simple commands without redirections are treated as candidates for resumption -of an existing job. There is no ambiguity allowed; if there is -more than one job beginning with the string typed, then -the most recently accessed job will be selected. +of an existing job. +There is no ambiguity allowed; if there is more than one job +beginning with the string typed, then +the most recently accessed job is selected. The name of a stopped job, in this context, is the command line -used to start it. If this variable is set to the value @samp{exact}, +used to start it. +If this variable is set to the value @samp{exact}, the string supplied must match the name of a stopped job exactly; if set to @samp{substring}, the string supplied needs to match a substring of the name of a -stopped job. The @samp{substring} value provides functionality +stopped job. +The @samp{substring} value provides functionality analogous to the @samp{%?} job @sc{id} (@pxref{Job Control Basics}). If set to any other value, the supplied string must be a prefix of a stopped job's name; this provides functionality @@ -9486,11 +9847,11 @@ analogous to the @samp{%} job @sc{id}. @chapter Installing Bash This chapter provides basic instructions for installing Bash on -the various supported platforms. The distribution supports the +the various supported platforms. +The distribution supports the @sc{gnu} operating systems, nearly every version of Unix, and several non-Unix systems such as BeOS and Interix. -Other independent ports exist for -@sc{ms-dos}, @sc{os/2}, and Windows platforms. +Other independent ports exist for Windows platforms. @menu * Basic Installation:: Installation instructions. @@ -9522,10 +9883,10 @@ The simplest way to compile Bash is: @enumerate @item @code{cd} to the directory containing the source code and type -@samp{./configure} to configure Bash for your system. If you're -using @code{csh} on an old version of System V, you might need to -type @samp{sh ./configure} instead to prevent @code{csh} from trying -to execute @code{configure} itself. +@samp{./configure} to configure Bash for your system. +If you're using @code{csh} on an old version of System V, you might +need to type @samp{sh ./configure} instead to prevent @code{csh} +from trying to execute @code{configure} itself. Running @code{configure} takes some time. While running, it prints messages telling which features it is @@ -9545,18 +9906,19 @@ files, some supplemental documentation, a number of example loadable builtin commands, and a set of header files for developing loadable builtins. You may need additional privileges to install @code{bash} to your -desired destination, so @samp{sudo make install} might be required. +desired destination, which may require @samp{sudo make install}. More information about controlling the locations where @code{bash} and other files are installed is below (@pxref{Installation Names}). @end enumerate The @code{configure} shell script attempts to guess correct -values for various system-dependent variables used during -compilation. It uses those values to create a @file{Makefile} in +values for various system-dependent variables used during compilation. +It uses those values to create a @file{Makefile} in each directory of the package (the top directory, the @file{builtins}, @file{doc}, @file{po}, and @file{support} directories, -each directory under @file{lib}, and several others). It also creates a +each directory under @file{lib}, and several others). +It also creates a @file{config.h} file containing system-dependent definitions. Finally, it creates a shell script named @code{config.status} that you can run in the future to recreate the current configuration, a @@ -9579,7 +9941,8 @@ at the Bash prompt in your Bash source directory. If you want to build Bash in a directory separate from the source directory -- to build for multiple architectures, for example -- -just use the full path to the configure script. The following commands +just use the full path to the configure script. +The following commands will build Bash in a directory under @file{/usr/local/build} from the source code in @file{/usr/local/src/bash-4.4}: @@ -9607,7 +9970,8 @@ If you do this, make sure you are using Autoconf version 2.69 or newer. You can remove the program binaries and object files from the -source code directory by typing @samp{make clean}. To also remove the +source code directory by typing @samp{make clean}. +To also remove the files that @code{configure} created (so you can compile Bash for a different kind of computer), type @samp{make distclean}. @@ -9615,10 +9979,11 @@ a different kind of computer), type @samp{make distclean}. @section Compilers and Options Some systems require unusual options for compilation or linking -that the @code{configure} script does not know about. You can -give @code{configure} initial values for variables by setting -them in the environment. Using a Bourne-compatible shell, you -can do that on the command line like this: +that the @code{configure} script does not know about. +You can give @code{configure} initial values for variables by setting +them in the environment. +Using a Bourne-compatible shell, you can do that on the command line +like this: @example CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure @@ -9638,26 +10003,30 @@ is available. You can compile Bash for more than one kind of computer at the same time, by placing the object files for each architecture in their -own directory. To do this, you must use a version of @code{make} that +own directory. +To do this, you must use a version of @code{make} that supports the @code{VPATH} variable, such as GNU @code{make}. @code{cd} to the directory where you want the object files and executables to go and run the @code{configure} script from the source directory (@pxref{Basic Installation}). You may need to -supply the @option{--srcdir=PATH} argument to tell @code{configure} where the -source files are. @code{configure} automatically checks for the +supply the @option{--srcdir=PATH} argument to tell @code{configure} +where the source files are. +@code{configure} automatically checks for the source code in the directory that @code{configure} is in and in `..'. If you have to use a @code{make} that does not support the @code{VPATH} variable, you can compile Bash for one architecture at a -time in the source code directory. After you have installed +time in the source code directory. +After you have installed Bash for one architecture, use @samp{make distclean} before reconfiguring for another architecture. Alternatively, if your system supports symbolic links, you can use the @file{support/mkclone} script to create a build tree which has -symbolic links back to each file in the source directory. Here's an +symbolic links back to each file in the source directory. +Here's an example that creates a build directory in the current directory from a source directory @file{/usr/gnu/src/bash-2.0}: @@ -9698,9 +10067,10 @@ you can specify these variables as arguments to @code{make}: If you want to see the files Bash will install and where it will install them without changing anything on your system, specify the variable -@env{DESTDIR} as an argument to @code{make}. Its value should be the -absolute directory path you'd like to use as the root of your sample -installation tree. For example, +@env{DESTDIR} as an argument to @code{make}. +Its value should be the absolute directory path you'd like to use as the +root of your sample installation tree. +For example, @example mkdir /fs1/bash-install @@ -9723,9 +10093,11 @@ variables and their effects. There may be some features @code{configure} can not figure out automatically, but needs to determine by the type of host Bash -will run on. Usually @code{configure} can figure that +will run on. +Usually @code{configure} can figure that out, but if it prints a message saying it can not guess the host -type, give it the @option{--host=TYPE} option. @samp{TYPE} can +type, give it the @option{--host=TYPE} option. +@samp{TYPE} can either be a short name for the system type, such as @samp{sun4}, or a canonical name with three fields: @samp{CPU-COMPANY-SYSTEM} (e.g., @samp{i386-unknown-freebsd4.2}). @@ -9739,11 +10111,14 @@ values of each field. If you want to set default values for @code{configure} scripts to share, you can create a site shell script called @code{config.site} that gives default values for variables like -@code{CC}, @code{cache_file}, and @code{prefix}. @code{configure} +@code{CC}, @code{cache_file}, and @code{prefix}. +@code{configure} looks for @file{PREFIX/share/config.site} if it exists, then -@file{PREFIX/etc/config.site} if it exists. Or, you can set the +@file{PREFIX/etc/config.site} if it exists. +Or, you can set the @code{CONFIG_SITE} environment variable to the location of the site -script. A warning: the Bash @code{configure} looks for a site script, +script. +A warning: the Bash @code{configure} looks for a site script, but not all @code{configure} scripts do. @node Operation Controls @@ -9756,9 +10131,9 @@ operates. @item --cache-file=@var{file} Use and save the results of the tests in -@var{file} instead of @file{./config.cache}. Set @var{file} to -@file{/dev/null} to disable caching, for debugging -@code{configure}. +@var{file} instead of @file{./config.cache}. +Set @var{file} to @file{/dev/null} to disable caching, +for debugging @code{configure}. @item --help Print a summary of the options to @code{configure}, and exit. @@ -9769,8 +10144,8 @@ Print a summary of the options to @code{configure}, and exit. Do not print messages saying which checks are being made. @item --srcdir=@var{dir} -Look for the Bash source code in directory @var{dir}. Usually -@code{configure} can determine that directory automatically. +Look for the Bash source code in directory @var{dir}. +Usually @code{configure} can determine that directory automatically. @item --version Print the version of Autoconf used to generate the @code{configure} @@ -9778,7 +10153,8 @@ script, and exit. @end table @code{configure} also accepts some other, not widely used, boilerplate -options. @samp{configure --help} prints the complete list. +options. +@samp{configure --help} prints the complete list. @node Optional Features @section Optional Features @@ -9786,13 +10162,14 @@ options. @samp{configure --help} prints the complete list. The Bash @code{configure} has a number of @option{--enable-@var{feature}} options, where @var{feature} indicates an optional part of Bash. There are also several @option{--with-@var{package}} options, -where @var{package} is something like @samp{bash-malloc} or @samp{purify}. +where @var{package} is something like @samp{bash-malloc} or @samp{afs}. To turn off the default use of a package, use -@option{--without-@var{package}}. To configure Bash without a feature +@option{--without-@var{package}}. +To configure Bash without a feature that is enabled by default, use @option{--disable-@var{feature}}. -Here is a complete list of the @option{--enable-} and -@option{--with-} options that the Bash @code{configure} recognizes. +Here is a complete list of the @option{--enable-} and @option{--with-} +options that the Bash @code{configure} recognizes. @table @code @item --with-afs @@ -9800,27 +10177,30 @@ Define if you are using the Andrew File System from Transarc. @item --with-bash-malloc Use the Bash version of -@code{malloc} in the directory @file{lib/malloc}. This is not the same -@code{malloc} that appears in @sc{gnu} libc, but an older version -originally derived from the 4.2 @sc{bsd} @code{malloc}. This @code{malloc} -is very fast, but wastes some space on each allocation. +@code{malloc} in the directory @file{lib/malloc}. +This is not the same +@code{malloc} that appears in @sc{gnu} libc, but a custom version +originally derived from the 4.2 @sc{bsd} @code{malloc}. +This @code{malloc} is very fast, but wastes some space on each allocation, +though it uses several techniques to minimize the waste. This option is enabled by default. The @file{NOTES} file contains a list of systems for which this should be turned off, and @code{configure} disables this option automatically for a number of systems. @item --with-curses -Use the curses library instead of the termcap library. This should -be supplied if your system has an inadequate or incomplete termcap -database. +Use the curses library instead of the termcap library. +@code{configure} usually chooses this automatically, since most systems +include the termcap functions in the curses library. @item --with-gnu-malloc A synonym for @code{--with-bash-malloc}. @item --with-installed-readline[=@var{PREFIX}] Define this to make Bash link with a locally-installed version of Readline -rather than the version in @file{lib/readline}. This works only with -Readline 5.0 and later versions. If @var{PREFIX} is @code{yes} or not +rather than the version in @file{lib/readline}. +This works only with Readline 5.0 and later versions. +If @var{PREFIX} is @code{yes} or not supplied, @code{configure} uses the values of the make variables @code{includedir} and @code{libdir}, which are subdirectories of @code{prefix} by default, to find the installed version of Readline if it is not in @@ -9832,6 +10212,8 @@ a directory pathname and looks for the installed version of Readline in subdirectories of that directory (include files in @var{PREFIX}/@code{include} and the library in @var{PREFIX}/@code{lib}). +The Bash default is to link with a static library built in the +@file{lib/readline} subdirectory of the build directory. @item --with-libintl-prefix[=@var{PREFIX}] Define this to make Bash link with a locally-installed version of the @@ -9839,10 +10221,11 @@ libintl library instead of the version in @file{lib/intl}. @item --with-libiconv-prefix[=@var{PREFIX}] Define this to make Bash look for libiconv in @var{PREFIX} instead of the -standard system locations. There is no version included with Bash. +standard system locations. +The Bash distribution does not include this library. @item --enable-minimal-config -This produces a shell with minimal features, close to the historical +This produces a shell with minimal features, closer to the historical Bourne shell. @end table @@ -9853,7 +10236,8 @@ compiled, linked, and installed, rather than changing run-time features. @item --enable-largefile Enable support for @url{http://www.unix.org/version2/whatsnew/lfs20mar.html, large files} if the operating system requires special compiler options -to build programs which can access large files. This is enabled by +to build programs which can access large files. +This is enabled by default, if the operating system provides large file support. @item --enable-profiling @@ -9908,8 +10292,8 @@ Include support for @code{csh}-like history substitution (@pxref{History Interaction}). @item --enable-bash-source-fullpath-default -Set the default value of the @code{bash_source_fullpath} shell option described -above under @ref{The Shopt Builtin} to be enabled. +Set the default value of the @code{bash_source_fullpath} shell option +described above under @ref{The Shopt Builtin} to be enabled. This controls how filenames are assigned to the @code{BASH_SOURCE} array variable. @@ -9920,7 +10304,8 @@ See @ref{Brace Expansion}, for a complete description. @item --enable-casemod-attributes Include support for case-modifying attributes in the @code{declare} builtin -and assignment statements. Variables with the @code{uppercase} attribute, +and assignment statements. +Variables with the @code{uppercase} attribute, for example, will have their values converted to uppercase upon assignment. @item --enable-casemod-expansion @@ -9930,7 +10315,8 @@ Include support for case-modifying word expansions. Include support for recognizing @code{time} as a reserved word and for displaying timing statistics for the pipeline following @code{time} (@pxref{Pipelines}). -This allows pipelines as well as shell builtins and functions to be timed. +This allows timing pipelines, shell compound commands, shell builtins, +and shell functions, which an external command cannot do easily. @item --enable-cond-command Include support for the @code{[[} conditional command. @@ -9984,8 +10370,8 @@ above under @ref{The Shopt Builtin} to be enabled. @item --enable-function-import Include support for importing function definitions exported by another -instance of the shell from the environment. This option is enabled by -default. +instance of the shell from the environment. +This option is enabled by default. @item --enable-glob-asciiranges-default Set the default value of the @code{globasciiranges} shell option described @@ -10027,7 +10413,8 @@ If Readline is not enabled, this option has no effect. @item --enable-prompt-string-decoding Turn on the interpretation of a number of backslash-escaped characters in the @env{$PS0}, @env{$PS1}, @env{$PS2}, and @env{$PS4} prompt -strings. See @ref{Controlling the Prompt}, for a complete list of prompt +strings. +See @ref{Controlling the Prompt}, for a complete list of prompt string escape sequences. @item --enable-readline @@ -10035,17 +10422,19 @@ Include support for command-line editing and history with the Bash version of the Readline library (@pxref{Command Line Editing}). @item --enable-restricted -Include support for a @dfn{restricted shell}. If this is enabled, Bash, -when called as @code{rbash}, enters a restricted mode. See -@ref{The Restricted Shell}, for a description of restricted mode. +Include support for a @dfn{restricted shell}. +If this is enabled, +Bash enters a restricted mode when called as @code{rbash}. +See @ref{The Restricted Shell}, for a description of restricted mode. @item --enable-select -Include the @code{select} compound command, which allows the generation of +Include the @code{select} compound command, which allows generation of simple menus (@pxref{Conditional Constructs}). @item --enable-single-help-strings Store the text displayed by the @code{help} builtin as a single string for -each help topic. This aids in translating the text to different languages. +each help topic. +This aids in translating the text to different languages. You may need to disable this if your compiler cannot handle very long string literals. @@ -10084,7 +10473,7 @@ Please report all bugs you find in Bash. But first, you should make sure that it really is a bug, and that it appears in the latest version of Bash. -The latest version of Bash is always available for FTP from +The latest released version of Bash is always available for FTP from @uref{ftp://ftp.gnu.org/pub/gnu/bash/} and from @uref{http://git.savannah.gnu.org/cgit/bash.git/snapshot/bash-master.tar.gz}. @@ -10573,7 +10962,6 @@ The SVR4.2 @code{sh} uses a @env{TIMEOUT} variable like Bash uses @noindent More features unique to Bash may be found in @ref{Bash Features}. - @appendixsec Implementation Differences From The SVR4.2 Shell Since Bash is a completely new implementation, it does not suffer from diff --git a/doc/bashref.toc b/doc/bashref.toc index 5212e8ce9..aac5ea899 100644 --- a/doc/bashref.toc +++ b/doc/bashref.toc @@ -16,128 +16,128 @@ @numsubsecentry{Reserved Words}{3.2.1}{Reserved Words}{9} @numsubsecentry{Simple Commands}{3.2.2}{Simple Commands}{9} @numsubsecentry{Pipelines}{3.2.3}{Pipelines}{10} -@numsubsecentry{Lists of Commands}{3.2.4}{Lists}{10} +@numsubsecentry{Lists of Commands}{3.2.4}{Lists}{11} @numsubsecentry{Compound Commands}{3.2.5}{Compound Commands}{11} -@numsubsubsecentry{Looping Constructs}{3.2.5.1}{Looping Constructs}{11} +@numsubsubsecentry{Looping Constructs}{3.2.5.1}{Looping Constructs}{12} @numsubsubsecentry{Conditional Constructs}{3.2.5.2}{Conditional Constructs}{12} @numsubsubsecentry{Grouping Commands}{3.2.5.3}{Command Grouping}{17} @numsubsecentry{Coprocesses}{3.2.6}{Coprocesses}{18} @numsubsecentry{GNU Parallel}{3.2.7}{GNU Parallel}{19} @numsecentry{Shell Functions}{3.3}{Shell Functions}{19} -@numsecentry{Shell Parameters}{3.4}{Shell Parameters}{21} +@numsecentry{Shell Parameters}{3.4}{Shell Parameters}{22} @numsubsecentry{Positional Parameters}{3.4.1}{Positional Parameters}{23} @numsubsecentry{Special Parameters}{3.4.2}{Special Parameters}{23} @numsecentry{Shell Expansions}{3.5}{Shell Expansions}{24} -@numsubsecentry{Brace Expansion}{3.5.1}{Brace Expansion}{24} -@numsubsecentry{Tilde Expansion}{3.5.2}{Tilde Expansion}{25} -@numsubsecentry{Shell Parameter Expansion}{3.5.3}{Shell Parameter Expansion}{26} -@numsubsecentry{Command Substitution}{3.5.4}{Command Substitution}{34} -@numsubsecentry{Arithmetic Expansion}{3.5.5}{Arithmetic Expansion}{35} -@numsubsecentry{Process Substitution}{3.5.6}{Process Substitution}{35} -@numsubsecentry{Word Splitting}{3.5.7}{Word Splitting}{36} -@numsubsecentry{Filename Expansion}{3.5.8}{Filename Expansion}{36} -@numsubsubsecentry{Pattern Matching}{3.5.8.1}{Pattern Matching}{37} -@numsubsecentry{Quote Removal}{3.5.9}{Quote Removal}{39} -@numsecentry{Redirections}{3.6}{Redirections}{39} -@numsubsecentry{Redirecting Input}{3.6.1}{}{40} -@numsubsecentry{Redirecting Output}{3.6.2}{}{40} -@numsubsecentry{Appending Redirected Output}{3.6.3}{}{40} -@numsubsecentry{Redirecting Standard Output and Standard Error}{3.6.4}{}{41} -@numsubsecentry{Appending Standard Output and Standard Error}{3.6.5}{}{41} -@numsubsecentry{Here Documents}{3.6.6}{}{41} -@numsubsecentry{Here Strings}{3.6.7}{}{42} -@numsubsecentry{Duplicating File Descriptors}{3.6.8}{}{42} -@numsubsecentry{Moving File Descriptors}{3.6.9}{}{42} -@numsubsecentry{Opening File Descriptors for Reading and Writing}{3.6.10}{}{42} -@numsecentry{Executing Commands}{3.7}{Executing Commands}{43} -@numsubsecentry{Simple Command Expansion}{3.7.1}{Simple Command Expansion}{43} -@numsubsecentry{Command Search and Execution}{3.7.2}{Command Search and Execution}{43} -@numsubsecentry{Command Execution Environment}{3.7.3}{Command Execution Environment}{44} -@numsubsecentry{Environment}{3.7.4}{Environment}{45} -@numsubsecentry{Exit Status}{3.7.5}{Exit Status}{45} -@numsubsecentry{Signals}{3.7.6}{Signals}{46} -@numsecentry{Shell Scripts}{3.8}{Shell Scripts}{47} -@numchapentry{Shell Builtin Commands}{4}{Shell Builtin Commands}{49} -@numsecentry{Bourne Shell Builtins}{4.1}{Bourne Shell Builtins}{49} -@numsecentry{Bash Builtin Commands}{4.2}{Bash Builtins}{57} -@numsecentry{Modifying Shell Behavior}{4.3}{Modifying Shell Behavior}{69} -@numsubsecentry{The Set Builtin}{4.3.1}{The Set Builtin}{69} -@numsubsecentry{The Shopt Builtin}{4.3.2}{The Shopt Builtin}{74} -@numsecentry{Special Builtins}{4.4}{Special Builtins}{80} -@numchapentry{Shell Variables}{5}{Shell Variables}{81} -@numsecentry{Bourne Shell Variables}{5.1}{Bourne Shell Variables}{81} -@numsecentry{Bash Variables}{5.2}{Bash Variables}{81} -@numchapentry{Bash Features}{6}{Bash Features}{94} -@numsecentry{Invoking Bash}{6.1}{Invoking Bash}{94} -@numsecentry{Bash Startup Files}{6.2}{Bash Startup Files}{96} -@numsecentry{Interactive Shells}{6.3}{Interactive Shells}{98} -@numsubsecentry{What is an Interactive Shell?}{6.3.1}{What is an Interactive Shell?}{98} -@numsubsecentry{Is this Shell Interactive?}{6.3.2}{Is this Shell Interactive?}{98} -@numsubsecentry{Interactive Shell Behavior}{6.3.3}{Interactive Shell Behavior}{98} -@numsecentry{Bash Conditional Expressions}{6.4}{Bash Conditional Expressions}{99} -@numsecentry{Shell Arithmetic}{6.5}{Shell Arithmetic}{101} -@numsecentry{Aliases}{6.6}{Aliases}{103} -@numsecentry{Arrays}{6.7}{Arrays}{103} -@numsecentry{The Directory Stack}{6.8}{The Directory Stack}{105} -@numsubsecentry{Directory Stack Builtins}{6.8.1}{Directory Stack Builtins}{106} -@numsecentry{Controlling the Prompt}{6.9}{Controlling the Prompt}{107} -@numsecentry{The Restricted Shell}{6.10}{The Restricted Shell}{109} -@numsecentry{Bash and POSIX}{6.11}{Bash POSIX Mode}{109} -@numsubsecentry{What is POSIX?}{6.11.1}{}{109} -@numsubsecentry{Bash POSIX Mode}{6.11.2}{}{110} -@numsecentry{Shell Compatibility Mode}{6.12}{Shell Compatibility Mode}{114} -@numchapentry{Job Control}{7}{Job Control}{118} -@numsecentry{Job Control Basics}{7.1}{Job Control Basics}{118} -@numsecentry{Job Control Builtins}{7.2}{Job Control Builtins}{119} -@numsecentry{Job Control Variables}{7.3}{Job Control Variables}{121} -@numchapentry{Command Line Editing}{8}{Command Line Editing}{122} -@numsecentry{Introduction to Line Editing}{8.1}{Introduction and Notation}{122} -@numsecentry{Readline Interaction}{8.2}{Readline Interaction}{122} -@numsubsecentry{Readline Bare Essentials}{8.2.1}{Readline Bare Essentials}{123} -@numsubsecentry{Readline Movement Commands}{8.2.2}{Readline Movement Commands}{123} -@numsubsecentry{Readline Killing Commands}{8.2.3}{Readline Killing Commands}{124} -@numsubsecentry{Readline Arguments}{8.2.4}{Readline Arguments}{124} -@numsubsecentry{Searching for Commands in the History}{8.2.5}{Searching}{124} -@numsecentry{Readline Init File}{8.3}{Readline Init File}{125} -@numsubsecentry{Readline Init File Syntax}{8.3.1}{Readline Init File Syntax}{125} -@numsubsecentry{Conditional Init Constructs}{8.3.2}{Conditional Init Constructs}{134} -@numsubsecentry{Sample Init File}{8.3.3}{Sample Init File}{136} -@numsecentry{Bindable Readline Commands}{8.4}{Bindable Readline Commands}{139} -@numsubsecentry{Commands For Moving}{8.4.1}{Commands For Moving}{139} -@numsubsecentry{Commands For Manipulating The History}{8.4.2}{Commands For History}{140} -@numsubsecentry{Commands For Changing Text}{8.4.3}{Commands For Text}{142} -@numsubsecentry{Killing And Yanking}{8.4.4}{Commands For Killing}{143} -@numsubsecentry{Specifying Numeric Arguments}{8.4.5}{Numeric Arguments}{145} -@numsubsecentry{Letting Readline Type For You}{8.4.6}{Commands For Completion}{145} -@numsubsecentry{Keyboard Macros}{8.4.7}{Keyboard Macros}{147} -@numsubsecentry{Some Miscellaneous Commands}{8.4.8}{Miscellaneous Commands}{147} -@numsecentry{Readline vi Mode}{8.5}{Readline vi Mode}{149} -@numsecentry{Programmable Completion}{8.6}{Programmable Completion}{150} -@numsecentry{Programmable Completion Builtins}{8.7}{Programmable Completion Builtins}{152} -@numsecentry{A Programmable Completion Example}{8.8}{A Programmable Completion Example}{156} -@numchapentry{Using History Interactively}{9}{Using History Interactively}{159} -@numsecentry{Bash History Facilities}{9.1}{Bash History Facilities}{159} -@numsecentry{Bash History Builtins}{9.2}{Bash History Builtins}{159} -@numsecentry{History Expansion}{9.3}{History Interaction}{161} -@numsubsecentry{Event Designators}{9.3.1}{Event Designators}{162} -@numsubsecentry{Word Designators}{9.3.2}{Word Designators}{163} -@numsubsecentry{Modifiers}{9.3.3}{Modifiers}{164} -@numchapentry{Installing Bash}{10}{Installing Bash}{165} -@numsecentry{Basic Installation}{10.1}{Basic Installation}{165} -@numsecentry{Compilers and Options}{10.2}{Compilers and Options}{166} -@numsecentry{Compiling For Multiple Architectures}{10.3}{Compiling For Multiple Architectures}{166} -@numsecentry{Installation Names}{10.4}{Installation Names}{167} -@numsecentry{Specifying the System Type}{10.5}{Specifying the System Type}{167} -@numsecentry{Sharing Defaults}{10.6}{Sharing Defaults}{167} -@numsecentry{Operation Controls}{10.7}{Operation Controls}{168} -@numsecentry{Optional Features}{10.8}{Optional Features}{168} -@appentry{Reporting Bugs}{A}{Reporting Bugs}{174} -@appentry{Major Differences From The Bourne Shell}{B}{Major Differences From The Bourne Shell}{175} -@appsecentry{Implementation Differences From The SVR4.2 Shell}{B.1}{}{180} -@appentry{GNU Free Documentation License}{C}{GNU Free Documentation License}{181} -@appentry{Indexes}{D}{Indexes}{189} -@appsecentry{Index of Shell Builtin Commands}{D.1}{Builtin Index}{189} -@appsecentry{Index of Shell Reserved Words}{D.2}{Reserved Word Index}{190} -@appsecentry{Parameter and Variable Index}{D.3}{Variable Index}{191} -@appsecentry{Function Index}{D.4}{Function Index}{193} -@appsecentry{Concept Index}{D.5}{Concept Index}{195} +@numsubsecentry{Brace Expansion}{3.5.1}{Brace Expansion}{25} +@numsubsecentry{Tilde Expansion}{3.5.2}{Tilde Expansion}{26} +@numsubsecentry{Shell Parameter Expansion}{3.5.3}{Shell Parameter Expansion}{27} +@numsubsecentry{Command Substitution}{3.5.4}{Command Substitution}{35} +@numsubsecentry{Arithmetic Expansion}{3.5.5}{Arithmetic Expansion}{36} +@numsubsecentry{Process Substitution}{3.5.6}{Process Substitution}{36} +@numsubsecentry{Word Splitting}{3.5.7}{Word Splitting}{37} +@numsubsecentry{Filename Expansion}{3.5.8}{Filename Expansion}{37} +@numsubsubsecentry{Pattern Matching}{3.5.8.1}{Pattern Matching}{38} +@numsubsecentry{Quote Removal}{3.5.9}{Quote Removal}{40} +@numsecentry{Redirections}{3.6}{Redirections}{40} +@numsubsecentry{Redirecting Input}{3.6.1}{}{41} +@numsubsecentry{Redirecting Output}{3.6.2}{}{41} +@numsubsecentry{Appending Redirected Output}{3.6.3}{}{42} +@numsubsecentry{Redirecting Standard Output and Standard Error}{3.6.4}{}{42} +@numsubsecentry{Appending Standard Output and Standard Error}{3.6.5}{}{42} +@numsubsecentry{Here Documents}{3.6.6}{}{42} +@numsubsecentry{Here Strings}{3.6.7}{}{43} +@numsubsecentry{Duplicating File Descriptors}{3.6.8}{}{43} +@numsubsecentry{Moving File Descriptors}{3.6.9}{}{43} +@numsubsecentry{Opening File Descriptors for Reading and Writing}{3.6.10}{}{44} +@numsecentry{Executing Commands}{3.7}{Executing Commands}{44} +@numsubsecentry{Simple Command Expansion}{3.7.1}{Simple Command Expansion}{44} +@numsubsecentry{Command Search and Execution}{3.7.2}{Command Search and Execution}{44} +@numsubsecentry{Command Execution Environment}{3.7.3}{Command Execution Environment}{45} +@numsubsecentry{Environment}{3.7.4}{Environment}{46} +@numsubsecentry{Exit Status}{3.7.5}{Exit Status}{47} +@numsubsecentry{Signals}{3.7.6}{Signals}{47} +@numsecentry{Shell Scripts}{3.8}{Shell Scripts}{48} +@numchapentry{Shell Builtin Commands}{4}{Shell Builtin Commands}{50} +@numsecentry{Bourne Shell Builtins}{4.1}{Bourne Shell Builtins}{50} +@numsecentry{Bash Builtin Commands}{4.2}{Bash Builtins}{59} +@numsecentry{Modifying Shell Behavior}{4.3}{Modifying Shell Behavior}{71} +@numsubsecentry{The Set Builtin}{4.3.1}{The Set Builtin}{71} +@numsubsecentry{The Shopt Builtin}{4.3.2}{The Shopt Builtin}{76} +@numsecentry{Special Builtins}{4.4}{Special Builtins}{82} +@numchapentry{Shell Variables}{5}{Shell Variables}{84} +@numsecentry{Bourne Shell Variables}{5.1}{Bourne Shell Variables}{84} +@numsecentry{Bash Variables}{5.2}{Bash Variables}{85} +@numchapentry{Bash Features}{6}{Bash Features}{98} +@numsecentry{Invoking Bash}{6.1}{Invoking Bash}{98} +@numsecentry{Bash Startup Files}{6.2}{Bash Startup Files}{100} +@numsecentry{Interactive Shells}{6.3}{Interactive Shells}{102} +@numsubsecentry{What is an Interactive Shell?}{6.3.1}{What is an Interactive Shell?}{102} +@numsubsecentry{Is this Shell Interactive?}{6.3.2}{Is this Shell Interactive?}{102} +@numsubsecentry{Interactive Shell Behavior}{6.3.3}{Interactive Shell Behavior}{102} +@numsecentry{Bash Conditional Expressions}{6.4}{Bash Conditional Expressions}{103} +@numsecentry{Shell Arithmetic}{6.5}{Shell Arithmetic}{105} +@numsecentry{Aliases}{6.6}{Aliases}{107} +@numsecentry{Arrays}{6.7}{Arrays}{108} +@numsecentry{The Directory Stack}{6.8}{The Directory Stack}{110} +@numsubsecentry{Directory Stack Builtins}{6.8.1}{Directory Stack Builtins}{110} +@numsecentry{Controlling the Prompt}{6.9}{Controlling the Prompt}{111} +@numsecentry{The Restricted Shell}{6.10}{The Restricted Shell}{113} +@numsecentry{Bash and POSIX}{6.11}{Bash POSIX Mode}{114} +@numsubsecentry{What is POSIX?}{6.11.1}{}{114} +@numsubsecentry{Bash POSIX Mode}{6.11.2}{}{114} +@numsecentry{Shell Compatibility Mode}{6.12}{Shell Compatibility Mode}{119} +@numchapentry{Job Control}{7}{Job Control}{123} +@numsecentry{Job Control Basics}{7.1}{Job Control Basics}{123} +@numsecentry{Job Control Builtins}{7.2}{Job Control Builtins}{124} +@numsecentry{Job Control Variables}{7.3}{Job Control Variables}{126} +@numchapentry{Command Line Editing}{8}{Command Line Editing}{127} +@numsecentry{Introduction to Line Editing}{8.1}{Introduction and Notation}{127} +@numsecentry{Readline Interaction}{8.2}{Readline Interaction}{127} +@numsubsecentry{Readline Bare Essentials}{8.2.1}{Readline Bare Essentials}{128} +@numsubsecentry{Readline Movement Commands}{8.2.2}{Readline Movement Commands}{128} +@numsubsecentry{Readline Killing Commands}{8.2.3}{Readline Killing Commands}{129} +@numsubsecentry{Readline Arguments}{8.2.4}{Readline Arguments}{129} +@numsubsecentry{Searching for Commands in the History}{8.2.5}{Searching}{129} +@numsecentry{Readline Init File}{8.3}{Readline Init File}{130} +@numsubsecentry{Readline Init File Syntax}{8.3.1}{Readline Init File Syntax}{130} +@numsubsecentry{Conditional Init Constructs}{8.3.2}{Conditional Init Constructs}{140} +@numsubsecentry{Sample Init File}{8.3.3}{Sample Init File}{141} +@numsecentry{Bindable Readline Commands}{8.4}{Bindable Readline Commands}{144} +@numsubsecentry{Commands For Moving}{8.4.1}{Commands For Moving}{144} +@numsubsecentry{Commands For Manipulating The History}{8.4.2}{Commands For History}{145} +@numsubsecentry{Commands For Changing Text}{8.4.3}{Commands For Text}{147} +@numsubsecentry{Killing And Yanking}{8.4.4}{Commands For Killing}{148} +@numsubsecentry{Specifying Numeric Arguments}{8.4.5}{Numeric Arguments}{150} +@numsubsecentry{Letting Readline Type For You}{8.4.6}{Commands For Completion}{150} +@numsubsecentry{Keyboard Macros}{8.4.7}{Keyboard Macros}{152} +@numsubsecentry{Some Miscellaneous Commands}{8.4.8}{Miscellaneous Commands}{152} +@numsecentry{Readline vi Mode}{8.5}{Readline vi Mode}{154} +@numsecentry{Programmable Completion}{8.6}{Programmable Completion}{155} +@numsecentry{Programmable Completion Builtins}{8.7}{Programmable Completion Builtins}{157} +@numsecentry{A Programmable Completion Example}{8.8}{A Programmable Completion Example}{161} +@numchapentry{Using History Interactively}{9}{Using History Interactively}{164} +@numsecentry{Bash History Facilities}{9.1}{Bash History Facilities}{164} +@numsecentry{Bash History Builtins}{9.2}{Bash History Builtins}{165} +@numsecentry{History Expansion}{9.3}{History Interaction}{167} +@numsubsecentry{Event Designators}{9.3.1}{Event Designators}{168} +@numsubsecentry{Word Designators}{9.3.2}{Word Designators}{169} +@numsubsecentry{Modifiers}{9.3.3}{Modifiers}{169} +@numchapentry{Installing Bash}{10}{Installing Bash}{171} +@numsecentry{Basic Installation}{10.1}{Basic Installation}{171} +@numsecentry{Compilers and Options}{10.2}{Compilers and Options}{172} +@numsecentry{Compiling For Multiple Architectures}{10.3}{Compiling For Multiple Architectures}{172} +@numsecentry{Installation Names}{10.4}{Installation Names}{173} +@numsecentry{Specifying the System Type}{10.5}{Specifying the System Type}{173} +@numsecentry{Sharing Defaults}{10.6}{Sharing Defaults}{173} +@numsecentry{Operation Controls}{10.7}{Operation Controls}{174} +@numsecentry{Optional Features}{10.8}{Optional Features}{174} +@appentry{Reporting Bugs}{A}{Reporting Bugs}{180} +@appentry{Major Differences From The Bourne Shell}{B}{Major Differences From The Bourne Shell}{181} +@appsecentry{Implementation Differences From The SVR4.2 Shell}{B.1}{}{186} +@appentry{GNU Free Documentation License}{C}{GNU Free Documentation License}{187} +@appentry{Indexes}{D}{Indexes}{195} +@appsecentry{Index of Shell Builtin Commands}{D.1}{Builtin Index}{195} +@appsecentry{Index of Shell Reserved Words}{D.2}{Reserved Word Index}{196} +@appsecentry{Parameter and Variable Index}{D.3}{Variable Index}{197} +@appsecentry{Function Index}{D.4}{Function Index}{199} +@appsecentry{Concept Index}{D.5}{Concept Index}{201} diff --git a/doc/bashref.vr b/doc/bashref.vr index ae3b87e13..0d2150c36 100644 --- a/doc/bashref.vr +++ b/doc/bashref.vr @@ -4,174 +4,175 @@ \entry{TEXTDOMAINDIR}{8}{\code {TEXTDOMAINDIR}} \entry{*}{23}{\code {*}} \entry{$*}{23}{\code {$*}} -\entry{@}{23}{\code {@}} -\entry{$@}{23}{\code {$@}} -\entry{#}{23}{\code {#}} -\entry{$#}{23}{\code {$#}} -\entry{?}{23}{\code {?}} -\entry{$?}{23}{\code {$?}} -\entry{-}{23}{\code {-}} -\entry{$-}{23}{\code {$-}} -\entry{$}{23}{\code {$}} -\entry{$$}{23}{\code {$$}} +\entry{@}{24}{\code {@}} +\entry{$@}{24}{\code {$@}} +\entry{#}{24}{\code {#}} +\entry{$#}{24}{\code {$#}} +\entry{?}{24}{\code {?}} +\entry{$?}{24}{\code {$?}} +\entry{-}{24}{\code {-}} +\entry{$-}{24}{\code {$-}} +\entry{$}{24}{\code {$}} +\entry{$$}{24}{\code {$$}} \entry{!}{24}{\code {!}} \entry{$!}{24}{\code {$!}} \entry{0}{24}{\code {0}} \entry{$0}{24}{\code {$0}} -\entry{CDPATH}{81}{\code {CDPATH}} -\entry{HOME}{81}{\code {HOME}} -\entry{IFS}{81}{\code {IFS}} -\entry{MAIL}{81}{\code {MAIL}} -\entry{MAILPATH}{81}{\code {MAILPATH}} -\entry{OPTARG}{81}{\code {OPTARG}} -\entry{OPTIND}{81}{\code {OPTIND}} -\entry{PATH}{81}{\code {PATH}} -\entry{PS1}{81}{\code {PS1}} -\entry{PS2}{81}{\code {PS2}} -\entry{_}{81}{\code {_}} -\entry{$_}{81}{\code {$_}} -\entry{BASH}{82}{\code {BASH}} -\entry{BASHOPTS}{82}{\code {BASHOPTS}} -\entry{BASHPID}{82}{\code {BASHPID}} -\entry{BASH_ALIASES}{82}{\code {BASH_ALIASES}} -\entry{BASH_ARGC}{82}{\code {BASH_ARGC}} -\entry{BASH_ARGV}{82}{\code {BASH_ARGV}} -\entry{BASH_ARGV0}{83}{\code {BASH_ARGV0}} -\entry{BASH_CMDS}{83}{\code {BASH_CMDS}} -\entry{BASH_COMMAND}{83}{\code {BASH_COMMAND}} -\entry{BASH_COMPAT}{83}{\code {BASH_COMPAT}} -\entry{BASH_ENV}{83}{\code {BASH_ENV}} -\entry{BASH_EXECUTION_STRING}{83}{\code {BASH_EXECUTION_STRING}} -\entry{BASH_LINENO}{83}{\code {BASH_LINENO}} -\entry{BASH_LOADABLES_PATH}{84}{\code {BASH_LOADABLES_PATH}} -\entry{BASH_MONOSECONDS}{84}{\code {BASH_MONOSECONDS}} -\entry{BASH_REMATCH}{84}{\code {BASH_REMATCH}} -\entry{BASH_SOURCE}{84}{\code {BASH_SOURCE}} -\entry{BASH_SUBSHELL}{84}{\code {BASH_SUBSHELL}} -\entry{BASH_TRAPSIG}{84}{\code {BASH_TRAPSIG}} -\entry{BASH_VERSINFO}{84}{\code {BASH_VERSINFO}} -\entry{BASH_VERSION}{85}{\code {BASH_VERSION}} -\entry{BASH_XTRACEFD}{85}{\code {BASH_XTRACEFD}} -\entry{CHILD_MAX}{85}{\code {CHILD_MAX}} -\entry{COLUMNS}{85}{\code {COLUMNS}} -\entry{COMP_CWORD}{85}{\code {COMP_CWORD}} -\entry{COMP_LINE}{85}{\code {COMP_LINE}} -\entry{COMP_POINT}{85}{\code {COMP_POINT}} -\entry{COMP_TYPE}{85}{\code {COMP_TYPE}} -\entry{COMP_KEY}{86}{\code {COMP_KEY}} -\entry{COMP_WORDBREAKS}{86}{\code {COMP_WORDBREAKS}} -\entry{COMP_WORDS}{86}{\code {COMP_WORDS}} -\entry{COMPREPLY}{86}{\code {COMPREPLY}} -\entry{COPROC}{86}{\code {COPROC}} -\entry{DIRSTACK}{86}{\code {DIRSTACK}} -\entry{EMACS}{86}{\code {EMACS}} -\entry{ENV}{86}{\code {ENV}} -\entry{EPOCHREALTIME}{86}{\code {EPOCHREALTIME}} -\entry{EPOCHSECONDS}{86}{\code {EPOCHSECONDS}} -\entry{EUID}{87}{\code {EUID}} -\entry{EXECIGNORE}{87}{\code {EXECIGNORE}} -\entry{FCEDIT}{87}{\code {FCEDIT}} -\entry{FIGNORE}{87}{\code {FIGNORE}} -\entry{FUNCNAME}{87}{\code {FUNCNAME}} -\entry{FUNCNEST}{87}{\code {FUNCNEST}} -\entry{GLOBIGNORE}{87}{\code {GLOBIGNORE}} -\entry{GLOBSORT}{87}{\code {GLOBSORT}} -\entry{GROUPS}{88}{\code {GROUPS}} -\entry{histchars}{88}{\code {histchars}} -\entry{HISTCMD}{88}{\code {HISTCMD}} -\entry{HISTCONTROL}{88}{\code {HISTCONTROL}} -\entry{HISTFILE}{89}{\code {HISTFILE}} -\entry{HISTFILESIZE}{89}{\code {HISTFILESIZE}} -\entry{HISTIGNORE}{89}{\code {HISTIGNORE}} -\entry{HISTSIZE}{89}{\code {HISTSIZE}} -\entry{HISTTIMEFORMAT}{89}{\code {HISTTIMEFORMAT}} -\entry{HOSTFILE}{89}{\code {HOSTFILE}} -\entry{HOSTNAME}{90}{\code {HOSTNAME}} -\entry{HOSTTYPE}{90}{\code {HOSTTYPE}} -\entry{IGNOREEOF}{90}{\code {IGNOREEOF}} -\entry{INPUTRC}{90}{\code {INPUTRC}} -\entry{INSIDE_EMACS}{90}{\code {INSIDE_EMACS}} -\entry{LANG}{90}{\code {LANG}} -\entry{LC_ALL}{90}{\code {LC_ALL}} -\entry{LC_COLLATE}{90}{\code {LC_COLLATE}} -\entry{LC_CTYPE}{90}{\code {LC_CTYPE}} -\entry{LC_MESSAGES}{90}{\code {LC_MESSAGES}} -\entry{LC_NUMERIC}{90}{\code {LC_NUMERIC}} -\entry{LC_TIME}{90}{\code {LC_TIME}} -\entry{LINENO}{90}{\code {LINENO}} -\entry{LINES}{90}{\code {LINES}} -\entry{MACHTYPE}{91}{\code {MACHTYPE}} -\entry{MAILCHECK}{91}{\code {MAILCHECK}} -\entry{MAPFILE}{91}{\code {MAPFILE}} -\entry{OLDPWD}{91}{\code {OLDPWD}} -\entry{OPTERR}{91}{\code {OPTERR}} -\entry{OSTYPE}{91}{\code {OSTYPE}} -\entry{PIPESTATUS}{91}{\code {PIPESTATUS}} -\entry{POSIXLY_CORRECT}{91}{\code {POSIXLY_CORRECT}} -\entry{PPID}{91}{\code {PPID}} -\entry{PROMPT_COMMAND}{91}{\code {PROMPT_COMMAND}} -\entry{PROMPT_DIRTRIM}{91}{\code {PROMPT_DIRTRIM}} -\entry{PS0}{91}{\code {PS0}} -\entry{PS3}{91}{\code {PS3}} -\entry{PS4}{92}{\code {PS4}} -\entry{PWD}{92}{\code {PWD}} -\entry{RANDOM}{92}{\code {RANDOM}} -\entry{READLINE_ARGUMENT}{92}{\code {READLINE_ARGUMENT}} -\entry{READLINE_LINE}{92}{\code {READLINE_LINE}} -\entry{READLINE_MARK}{92}{\code {READLINE_MARK}} -\entry{READLINE_POINT}{92}{\code {READLINE_POINT}} -\entry{REPLY}{92}{\code {REPLY}} -\entry{SECONDS}{92}{\code {SECONDS}} -\entry{SHELL}{92}{\code {SHELL}} -\entry{SHELLOPTS}{92}{\code {SHELLOPTS}} -\entry{SHLVL}{92}{\code {SHLVL}} -\entry{SRANDOM}{93}{\code {SRANDOM}} -\entry{TIMEFORMAT}{93}{\code {TIMEFORMAT}} -\entry{TMOUT}{93}{\code {TMOUT}} -\entry{TMPDIR}{93}{\code {TMPDIR}} -\entry{UID}{93}{\code {UID}} -\entry{auto_resume}{121}{\code {auto_resume}} -\entry{active-region-start-color}{126}{\code {active-region-start-color}} -\entry{active-region-end-color}{126}{\code {active-region-end-color}} -\entry{bell-style}{126}{\code {bell-style}} -\entry{bind-tty-special-chars}{126}{\code {bind-tty-special-chars}} -\entry{blink-matching-paren}{127}{\code {blink-matching-paren}} -\entry{colored-completion-prefix}{127}{\code {colored-completion-prefix}} -\entry{colored-stats}{127}{\code {colored-stats}} -\entry{comment-begin}{127}{\code {comment-begin}} -\entry{completion-display-width}{127}{\code {completion-display-width}} -\entry{completion-ignore-case}{127}{\code {completion-ignore-case}} -\entry{completion-map-case}{127}{\code {completion-map-case}} -\entry{completion-prefix-display-length}{127}{\code {completion-prefix-display-length}} -\entry{completion-query-items}{127}{\code {completion-query-items}} -\entry{convert-meta}{128}{\code {convert-meta}} -\entry{disable-completion}{128}{\code {disable-completion}} -\entry{echo-control-characters}{128}{\code {echo-control-characters}} -\entry{editing-mode}{128}{\code {editing-mode}} -\entry{emacs-mode-string}{128}{\code {emacs-mode-string}} -\entry{enable-active-region}{128}{\code {enable-active-region}} -\entry{enable-bracketed-paste}{129}{\code {enable-bracketed-paste}} -\entry{enable-keypad}{129}{\code {enable-keypad}} -\entry{expand-tilde}{129}{\code {expand-tilde}} -\entry{history-preserve-point}{129}{\code {history-preserve-point}} -\entry{history-size}{129}{\code {history-size}} -\entry{horizontal-scroll-mode}{129}{\code {horizontal-scroll-mode}} -\entry{input-meta}{130}{\code {input-meta}} -\entry{meta-flag}{130}{\code {meta-flag}} -\entry{isearch-terminators}{130}{\code {isearch-terminators}} -\entry{keymap}{130}{\code {keymap}} -\entry{mark-modified-lines}{130}{\code {mark-modified-lines}} -\entry{mark-symlinked-directories}{130}{\code {mark-symlinked-directories}} -\entry{match-hidden-files}{131}{\code {match-hidden-files}} -\entry{menu-complete-display-prefix}{131}{\code {menu-complete-display-prefix}} -\entry{output-meta}{131}{\code {output-meta}} -\entry{page-completions}{131}{\code {page-completions}} -\entry{revert-all-at-newline}{131}{\code {revert-all-at-newline}} -\entry{search-ignore-case}{131}{\code {search-ignore-case}} -\entry{show-all-if-ambiguous}{131}{\code {show-all-if-ambiguous}} -\entry{show-all-if-unmodified}{131}{\code {show-all-if-unmodified}} -\entry{show-mode-in-prompt}{132}{\code {show-mode-in-prompt}} -\entry{skip-completed-text}{132}{\code {skip-completed-text}} -\entry{vi-cmd-mode-string}{132}{\code {vi-cmd-mode-string}} -\entry{vi-ins-mode-string}{132}{\code {vi-ins-mode-string}} -\entry{visible-stats}{132}{\code {visible-stats}} +\entry{CDPATH}{84}{\code {CDPATH}} +\entry{HOME}{84}{\code {HOME}} +\entry{IFS}{84}{\code {IFS}} +\entry{MAIL}{84}{\code {MAIL}} +\entry{MAILPATH}{84}{\code {MAILPATH}} +\entry{OPTARG}{84}{\code {OPTARG}} +\entry{OPTIND}{84}{\code {OPTIND}} +\entry{PATH}{84}{\code {PATH}} +\entry{PS1}{84}{\code {PS1}} +\entry{PS2}{84}{\code {PS2}} +\entry{_}{85}{\code {_}} +\entry{$_}{85}{\code {$_}} +\entry{BASH}{85}{\code {BASH}} +\entry{BASHOPTS}{85}{\code {BASHOPTS}} +\entry{BASHPID}{85}{\code {BASHPID}} +\entry{BASH_ALIASES}{85}{\code {BASH_ALIASES}} +\entry{BASH_ARGC}{85}{\code {BASH_ARGC}} +\entry{BASH_ARGV}{85}{\code {BASH_ARGV}} +\entry{BASH_ARGV0}{86}{\code {BASH_ARGV0}} +\entry{BASH_CMDS}{86}{\code {BASH_CMDS}} +\entry{BASH_COMMAND}{86}{\code {BASH_COMMAND}} +\entry{BASH_COMPAT}{86}{\code {BASH_COMPAT}} +\entry{BASH_ENV}{86}{\code {BASH_ENV}} +\entry{BASH_EXECUTION_STRING}{86}{\code {BASH_EXECUTION_STRING}} +\entry{BASH_LINENO}{87}{\code {BASH_LINENO}} +\entry{BASH_LOADABLES_PATH}{87}{\code {BASH_LOADABLES_PATH}} +\entry{BASH_MONOSECONDS}{87}{\code {BASH_MONOSECONDS}} +\entry{BASH_REMATCH}{87}{\code {BASH_REMATCH}} +\entry{BASH_SOURCE}{87}{\code {BASH_SOURCE}} +\entry{BASH_SUBSHELL}{87}{\code {BASH_SUBSHELL}} +\entry{BASH_TRAPSIG}{87}{\code {BASH_TRAPSIG}} +\entry{BASH_VERSINFO}{87}{\code {BASH_VERSINFO}} +\entry{BASH_VERSION}{88}{\code {BASH_VERSION}} +\entry{BASH_XTRACEFD}{88}{\code {BASH_XTRACEFD}} +\entry{CHILD_MAX}{88}{\code {CHILD_MAX}} +\entry{COLUMNS}{88}{\code {COLUMNS}} +\entry{COMP_CWORD}{88}{\code {COMP_CWORD}} +\entry{COMP_KEY}{88}{\code {COMP_KEY}} +\entry{COMP_LINE}{88}{\code {COMP_LINE}} +\entry{COMP_POINT}{89}{\code {COMP_POINT}} +\entry{COMP_TYPE}{89}{\code {COMP_TYPE}} +\entry{COMP_WORDBREAKS}{89}{\code {COMP_WORDBREAKS}} +\entry{COMP_WORDS}{89}{\code {COMP_WORDS}} +\entry{COMPREPLY}{89}{\code {COMPREPLY}} +\entry{COPROC}{89}{\code {COPROC}} +\entry{DIRSTACK}{89}{\code {DIRSTACK}} +\entry{EMACS}{89}{\code {EMACS}} +\entry{ENV}{89}{\code {ENV}} +\entry{EPOCHREALTIME}{90}{\code {EPOCHREALTIME}} +\entry{EPOCHSECONDS}{90}{\code {EPOCHSECONDS}} +\entry{EUID}{90}{\code {EUID}} +\entry{EXECIGNORE}{90}{\code {EXECIGNORE}} +\entry{FCEDIT}{90}{\code {FCEDIT}} +\entry{FIGNORE}{90}{\code {FIGNORE}} +\entry{FUNCNAME}{90}{\code {FUNCNAME}} +\entry{FUNCNEST}{90}{\code {FUNCNEST}} +\entry{GLOBIGNORE}{90}{\code {GLOBIGNORE}} +\entry{GLOBSORT}{91}{\code {GLOBSORT}} +\entry{GROUPS}{91}{\code {GROUPS}} +\entry{histchars}{91}{\code {histchars}} +\entry{HISTCMD}{91}{\code {HISTCMD}} +\entry{HISTCONTROL}{91}{\code {HISTCONTROL}} +\entry{HISTFILE}{92}{\code {HISTFILE}} +\entry{HISTFILESIZE}{92}{\code {HISTFILESIZE}} +\entry{HISTIGNORE}{92}{\code {HISTIGNORE}} +\entry{HISTSIZE}{92}{\code {HISTSIZE}} +\entry{HISTTIMEFORMAT}{93}{\code {HISTTIMEFORMAT}} +\entry{HOSTFILE}{93}{\code {HOSTFILE}} +\entry{HOSTNAME}{93}{\code {HOSTNAME}} +\entry{HOSTTYPE}{93}{\code {HOSTTYPE}} +\entry{IGNOREEOF}{93}{\code {IGNOREEOF}} +\entry{INPUTRC}{93}{\code {INPUTRC}} +\entry{INSIDE_EMACS}{93}{\code {INSIDE_EMACS}} +\entry{LANG}{93}{\code {LANG}} +\entry{LC_ALL}{93}{\code {LC_ALL}} +\entry{LC_COLLATE}{93}{\code {LC_COLLATE}} +\entry{LC_CTYPE}{93}{\code {LC_CTYPE}} +\entry{LC_MESSAGES}{94}{\code {LC_MESSAGES}} +\entry{LC_NUMERIC}{94}{\code {LC_NUMERIC}} +\entry{LC_TIME}{94}{\code {LC_TIME}} +\entry{LINENO}{94}{\code {LINENO}} +\entry{LINES}{94}{\code {LINES}} +\entry{MACHTYPE}{94}{\code {MACHTYPE}} +\entry{MAILCHECK}{94}{\code {MAILCHECK}} +\entry{MAPFILE}{94}{\code {MAPFILE}} +\entry{OLDPWD}{94}{\code {OLDPWD}} +\entry{OPTERR}{94}{\code {OPTERR}} +\entry{OSTYPE}{94}{\code {OSTYPE}} +\entry{PIPESTATUS}{94}{\code {PIPESTATUS}} +\entry{POSIXLY_CORRECT}{94}{\code {POSIXLY_CORRECT}} +\entry{PPID}{95}{\code {PPID}} +\entry{PROMPT_COMMAND}{95}{\code {PROMPT_COMMAND}} +\entry{PROMPT_DIRTRIM}{95}{\code {PROMPT_DIRTRIM}} +\entry{PS0}{95}{\code {PS0}} +\entry{PS3}{95}{\code {PS3}} +\entry{PS4}{95}{\code {PS4}} +\entry{PWD}{95}{\code {PWD}} +\entry{RANDOM}{95}{\code {RANDOM}} +\entry{READLINE_ARGUMENT}{95}{\code {READLINE_ARGUMENT}} +\entry{READLINE_LINE}{95}{\code {READLINE_LINE}} +\entry{READLINE_MARK}{95}{\code {READLINE_MARK}} +\entry{READLINE_POINT}{95}{\code {READLINE_POINT}} +\entry{REPLY}{95}{\code {REPLY}} +\entry{SECONDS}{95}{\code {SECONDS}} +\entry{SHELL}{96}{\code {SHELL}} +\entry{SHELLOPTS}{96}{\code {SHELLOPTS}} +\entry{SHLVL}{96}{\code {SHLVL}} +\entry{SRANDOM}{96}{\code {SRANDOM}} +\entry{TIMEFORMAT}{96}{\code {TIMEFORMAT}} +\entry{TMOUT}{97}{\code {TMOUT}} +\entry{TMPDIR}{97}{\code {TMPDIR}} +\entry{UID}{97}{\code {UID}} +\entry{auto_resume}{126}{\code {auto_resume}} +\entry{active-region-start-color}{131}{\code {active-region-start-color}} +\entry{active-region-end-color}{131}{\code {active-region-end-color}} +\entry{bell-style}{131}{\code {bell-style}} +\entry{bind-tty-special-chars}{131}{\code {bind-tty-special-chars}} +\entry{blink-matching-paren}{132}{\code {blink-matching-paren}} +\entry{colored-completion-prefix}{132}{\code {colored-completion-prefix}} +\entry{colored-stats}{132}{\code {colored-stats}} +\entry{comment-begin}{132}{\code {comment-begin}} +\entry{completion-display-width}{132}{\code {completion-display-width}} +\entry{completion-ignore-case}{132}{\code {completion-ignore-case}} +\entry{completion-map-case}{132}{\code {completion-map-case}} +\entry{completion-prefix-display-length}{132}{\code {completion-prefix-display-length}} +\entry{completion-query-items}{132}{\code {completion-query-items}} +\entry{convert-meta}{133}{\code {convert-meta}} +\entry{disable-completion}{133}{\code {disable-completion}} +\entry{echo-control-characters}{133}{\code {echo-control-characters}} +\entry{editing-mode}{133}{\code {editing-mode}} +\entry{emacs-mode-string}{133}{\code {emacs-mode-string}} +\entry{enable-active-region}{133}{\code {enable-active-region}} +\entry{enable-bracketed-paste}{134}{\code {enable-bracketed-paste}} +\entry{enable-keypad}{134}{\code {enable-keypad}} +\entry{expand-tilde}{134}{\code {expand-tilde}} +\entry{force-meta-prefix}{134}{\code {force-meta-prefix}} +\entry{history-preserve-point}{134}{\code {history-preserve-point}} +\entry{history-size}{135}{\code {history-size}} +\entry{horizontal-scroll-mode}{135}{\code {horizontal-scroll-mode}} +\entry{input-meta}{135}{\code {input-meta}} +\entry{meta-flag}{135}{\code {meta-flag}} +\entry{isearch-terminators}{135}{\code {isearch-terminators}} +\entry{keymap}{135}{\code {keymap}} +\entry{mark-modified-lines}{136}{\code {mark-modified-lines}} +\entry{mark-symlinked-directories}{136}{\code {mark-symlinked-directories}} +\entry{match-hidden-files}{136}{\code {match-hidden-files}} +\entry{menu-complete-display-prefix}{136}{\code {menu-complete-display-prefix}} +\entry{output-meta}{136}{\code {output-meta}} +\entry{page-completions}{136}{\code {page-completions}} +\entry{revert-all-at-newline}{137}{\code {revert-all-at-newline}} +\entry{search-ignore-case}{137}{\code {search-ignore-case}} +\entry{show-all-if-ambiguous}{137}{\code {show-all-if-ambiguous}} +\entry{show-all-if-unmodified}{137}{\code {show-all-if-unmodified}} +\entry{show-mode-in-prompt}{137}{\code {show-mode-in-prompt}} +\entry{skip-completed-text}{137}{\code {skip-completed-text}} +\entry{vi-cmd-mode-string}{137}{\code {vi-cmd-mode-string}} +\entry{vi-ins-mode-string}{138}{\code {vi-ins-mode-string}} +\entry{visible-stats}{138}{\code {visible-stats}} diff --git a/doc/bashref.vrs b/doc/bashref.vrs index cce96799b..01af45ebd 100644 --- a/doc/bashref.vrs +++ b/doc/bashref.vrs @@ -1,203 +1,204 @@ \initial {!} \entry{\code {!}}{24} \initial {#} -\entry{\code {#}}{23} +\entry{\code {#}}{24} \initial {$} -\entry{\code {$}}{23} +\entry{\code {$}}{24} \entry{\code {$!}}{24} -\entry{\code {$#}}{23} -\entry{\code {$$}}{23} +\entry{\code {$#}}{24} +\entry{\code {$$}}{24} \entry{\code {$*}}{23} -\entry{\code {$-}}{23} -\entry{\code {$?}}{23} -\entry{\code {$@}}{23} -\entry{\code {$_}}{81} +\entry{\code {$-}}{24} +\entry{\code {$?}}{24} +\entry{\code {$@}}{24} +\entry{\code {$_}}{85} \entry{\code {$0}}{24} \initial {*} \entry{\code {*}}{23} \initial {-} -\entry{\code {-}}{23} +\entry{\code {-}}{24} \initial {?} -\entry{\code {?}}{23} +\entry{\code {?}}{24} \initial {@} -\entry{\code {@}}{23} +\entry{\code {@}}{24} \initial {_} -\entry{\code {_}}{81} +\entry{\code {_}}{85} \initial {0} \entry{\code {0}}{24} \initial {A} -\entry{\code {active-region-end-color}}{126} -\entry{\code {active-region-start-color}}{126} -\entry{\code {auto_resume}}{121} +\entry{\code {active-region-end-color}}{131} +\entry{\code {active-region-start-color}}{131} +\entry{\code {auto_resume}}{126} \initial {B} -\entry{\code {BASH}}{82} -\entry{\code {BASH_ALIASES}}{82} -\entry{\code {BASH_ARGC}}{82} -\entry{\code {BASH_ARGV}}{82} -\entry{\code {BASH_ARGV0}}{83} -\entry{\code {BASH_CMDS}}{83} -\entry{\code {BASH_COMMAND}}{83} -\entry{\code {BASH_COMPAT}}{83} -\entry{\code {BASH_ENV}}{83} -\entry{\code {BASH_EXECUTION_STRING}}{83} -\entry{\code {BASH_LINENO}}{83} -\entry{\code {BASH_LOADABLES_PATH}}{84} -\entry{\code {BASH_MONOSECONDS}}{84} -\entry{\code {BASH_REMATCH}}{84} -\entry{\code {BASH_SOURCE}}{84} -\entry{\code {BASH_SUBSHELL}}{84} -\entry{\code {BASH_TRAPSIG}}{84} -\entry{\code {BASH_VERSINFO}}{84} -\entry{\code {BASH_VERSION}}{85} -\entry{\code {BASH_XTRACEFD}}{85} -\entry{\code {BASHOPTS}}{82} -\entry{\code {BASHPID}}{82} -\entry{\code {bell-style}}{126} -\entry{\code {bind-tty-special-chars}}{126} -\entry{\code {blink-matching-paren}}{127} +\entry{\code {BASH}}{85} +\entry{\code {BASH_ALIASES}}{85} +\entry{\code {BASH_ARGC}}{85} +\entry{\code {BASH_ARGV}}{85} +\entry{\code {BASH_ARGV0}}{86} +\entry{\code {BASH_CMDS}}{86} +\entry{\code {BASH_COMMAND}}{86} +\entry{\code {BASH_COMPAT}}{86} +\entry{\code {BASH_ENV}}{86} +\entry{\code {BASH_EXECUTION_STRING}}{86} +\entry{\code {BASH_LINENO}}{87} +\entry{\code {BASH_LOADABLES_PATH}}{87} +\entry{\code {BASH_MONOSECONDS}}{87} +\entry{\code {BASH_REMATCH}}{87} +\entry{\code {BASH_SOURCE}}{87} +\entry{\code {BASH_SUBSHELL}}{87} +\entry{\code {BASH_TRAPSIG}}{87} +\entry{\code {BASH_VERSINFO}}{87} +\entry{\code {BASH_VERSION}}{88} +\entry{\code {BASH_XTRACEFD}}{88} +\entry{\code {BASHOPTS}}{85} +\entry{\code {BASHPID}}{85} +\entry{\code {bell-style}}{131} +\entry{\code {bind-tty-special-chars}}{131} +\entry{\code {blink-matching-paren}}{132} \initial {C} -\entry{\code {CDPATH}}{81} -\entry{\code {CHILD_MAX}}{85} -\entry{\code {colored-completion-prefix}}{127} -\entry{\code {colored-stats}}{127} -\entry{\code {COLUMNS}}{85} -\entry{\code {comment-begin}}{127} -\entry{\code {COMP_CWORD}}{85} -\entry{\code {COMP_KEY}}{86} -\entry{\code {COMP_LINE}}{85} -\entry{\code {COMP_POINT}}{85} -\entry{\code {COMP_TYPE}}{85} -\entry{\code {COMP_WORDBREAKS}}{86} -\entry{\code {COMP_WORDS}}{86} -\entry{\code {completion-display-width}}{127} -\entry{\code {completion-ignore-case}}{127} -\entry{\code {completion-map-case}}{127} -\entry{\code {completion-prefix-display-length}}{127} -\entry{\code {completion-query-items}}{127} -\entry{\code {COMPREPLY}}{86} -\entry{\code {convert-meta}}{128} -\entry{\code {COPROC}}{86} +\entry{\code {CDPATH}}{84} +\entry{\code {CHILD_MAX}}{88} +\entry{\code {colored-completion-prefix}}{132} +\entry{\code {colored-stats}}{132} +\entry{\code {COLUMNS}}{88} +\entry{\code {comment-begin}}{132} +\entry{\code {COMP_CWORD}}{88} +\entry{\code {COMP_KEY}}{88} +\entry{\code {COMP_LINE}}{88} +\entry{\code {COMP_POINT}}{89} +\entry{\code {COMP_TYPE}}{89} +\entry{\code {COMP_WORDBREAKS}}{89} +\entry{\code {COMP_WORDS}}{89} +\entry{\code {completion-display-width}}{132} +\entry{\code {completion-ignore-case}}{132} +\entry{\code {completion-map-case}}{132} +\entry{\code {completion-prefix-display-length}}{132} +\entry{\code {completion-query-items}}{132} +\entry{\code {COMPREPLY}}{89} +\entry{\code {convert-meta}}{133} +\entry{\code {COPROC}}{89} \initial {D} -\entry{\code {DIRSTACK}}{86} -\entry{\code {disable-completion}}{128} +\entry{\code {DIRSTACK}}{89} +\entry{\code {disable-completion}}{133} \initial {E} -\entry{\code {echo-control-characters}}{128} -\entry{\code {editing-mode}}{128} -\entry{\code {emacs-mode-string}}{128} -\entry{\code {EMACS}}{86} -\entry{\code {enable-active-region}}{128} -\entry{\code {enable-bracketed-paste}}{129} -\entry{\code {enable-keypad}}{129} -\entry{\code {ENV}}{86} -\entry{\code {EPOCHREALTIME}}{86} -\entry{\code {EPOCHSECONDS}}{86} -\entry{\code {EUID}}{87} -\entry{\code {EXECIGNORE}}{87} -\entry{\code {expand-tilde}}{129} +\entry{\code {echo-control-characters}}{133} +\entry{\code {editing-mode}}{133} +\entry{\code {emacs-mode-string}}{133} +\entry{\code {EMACS}}{89} +\entry{\code {enable-active-region}}{133} +\entry{\code {enable-bracketed-paste}}{134} +\entry{\code {enable-keypad}}{134} +\entry{\code {ENV}}{89} +\entry{\code {EPOCHREALTIME}}{90} +\entry{\code {EPOCHSECONDS}}{90} +\entry{\code {EUID}}{90} +\entry{\code {EXECIGNORE}}{90} +\entry{\code {expand-tilde}}{134} \initial {F} -\entry{\code {FCEDIT}}{87} -\entry{\code {FIGNORE}}{87} -\entry{\code {FUNCNAME}}{87} -\entry{\code {FUNCNEST}}{87} +\entry{\code {FCEDIT}}{90} +\entry{\code {FIGNORE}}{90} +\entry{\code {force-meta-prefix}}{134} +\entry{\code {FUNCNAME}}{90} +\entry{\code {FUNCNEST}}{90} \initial {G} -\entry{\code {GLOBIGNORE}}{87} -\entry{\code {GLOBSORT}}{87} -\entry{\code {GROUPS}}{88} +\entry{\code {GLOBIGNORE}}{90} +\entry{\code {GLOBSORT}}{91} +\entry{\code {GROUPS}}{91} \initial {H} -\entry{\code {histchars}}{88} -\entry{\code {HISTCMD}}{88} -\entry{\code {HISTCONTROL}}{88} -\entry{\code {HISTFILE}}{89} -\entry{\code {HISTFILESIZE}}{89} -\entry{\code {HISTIGNORE}}{89} -\entry{\code {history-preserve-point}}{129} -\entry{\code {history-size}}{129} -\entry{\code {HISTSIZE}}{89} -\entry{\code {HISTTIMEFORMAT}}{89} -\entry{\code {HOME}}{81} -\entry{\code {horizontal-scroll-mode}}{129} -\entry{\code {HOSTFILE}}{89} -\entry{\code {HOSTNAME}}{90} -\entry{\code {HOSTTYPE}}{90} +\entry{\code {histchars}}{91} +\entry{\code {HISTCMD}}{91} +\entry{\code {HISTCONTROL}}{91} +\entry{\code {HISTFILE}}{92} +\entry{\code {HISTFILESIZE}}{92} +\entry{\code {HISTIGNORE}}{92} +\entry{\code {history-preserve-point}}{134} +\entry{\code {history-size}}{135} +\entry{\code {HISTSIZE}}{92} +\entry{\code {HISTTIMEFORMAT}}{93} +\entry{\code {HOME}}{84} +\entry{\code {horizontal-scroll-mode}}{135} +\entry{\code {HOSTFILE}}{93} +\entry{\code {HOSTNAME}}{93} +\entry{\code {HOSTTYPE}}{93} \initial {I} -\entry{\code {IFS}}{81} -\entry{\code {IGNOREEOF}}{90} -\entry{\code {input-meta}}{130} -\entry{\code {INPUTRC}}{90} -\entry{\code {INSIDE_EMACS}}{90} -\entry{\code {isearch-terminators}}{130} +\entry{\code {IFS}}{84} +\entry{\code {IGNOREEOF}}{93} +\entry{\code {input-meta}}{135} +\entry{\code {INPUTRC}}{93} +\entry{\code {INSIDE_EMACS}}{93} +\entry{\code {isearch-terminators}}{135} \initial {K} -\entry{\code {keymap}}{130} +\entry{\code {keymap}}{135} \initial {L} -\entry{\code {LANG}}{8, 90} -\entry{\code {LC_ALL}}{90} -\entry{\code {LC_COLLATE}}{90} -\entry{\code {LC_CTYPE}}{90} -\entry{\code {LC_MESSAGES}}{8, 90} -\entry{\code {LC_NUMERIC}}{90} -\entry{\code {LC_TIME}}{90} -\entry{\code {LINENO}}{90} -\entry{\code {LINES}}{90} +\entry{\code {LANG}}{8, 93} +\entry{\code {LC_ALL}}{93} +\entry{\code {LC_COLLATE}}{93} +\entry{\code {LC_CTYPE}}{93} +\entry{\code {LC_MESSAGES}}{8, 94} +\entry{\code {LC_NUMERIC}}{94} +\entry{\code {LC_TIME}}{94} +\entry{\code {LINENO}}{94} +\entry{\code {LINES}}{94} \initial {M} -\entry{\code {MACHTYPE}}{91} -\entry{\code {MAIL}}{81} -\entry{\code {MAILCHECK}}{91} -\entry{\code {MAILPATH}}{81} -\entry{\code {MAPFILE}}{91} -\entry{\code {mark-modified-lines}}{130} -\entry{\code {mark-symlinked-directories}}{130} -\entry{\code {match-hidden-files}}{131} -\entry{\code {menu-complete-display-prefix}}{131} -\entry{\code {meta-flag}}{130} +\entry{\code {MACHTYPE}}{94} +\entry{\code {MAIL}}{84} +\entry{\code {MAILCHECK}}{94} +\entry{\code {MAILPATH}}{84} +\entry{\code {MAPFILE}}{94} +\entry{\code {mark-modified-lines}}{136} +\entry{\code {mark-symlinked-directories}}{136} +\entry{\code {match-hidden-files}}{136} +\entry{\code {menu-complete-display-prefix}}{136} +\entry{\code {meta-flag}}{135} \initial {O} -\entry{\code {OLDPWD}}{91} -\entry{\code {OPTARG}}{81} -\entry{\code {OPTERR}}{91} -\entry{\code {OPTIND}}{81} -\entry{\code {OSTYPE}}{91} -\entry{\code {output-meta}}{131} +\entry{\code {OLDPWD}}{94} +\entry{\code {OPTARG}}{84} +\entry{\code {OPTERR}}{94} +\entry{\code {OPTIND}}{84} +\entry{\code {OSTYPE}}{94} +\entry{\code {output-meta}}{136} \initial {P} -\entry{\code {page-completions}}{131} -\entry{\code {PATH}}{81} -\entry{\code {PIPESTATUS}}{91} -\entry{\code {POSIXLY_CORRECT}}{91} -\entry{\code {PPID}}{91} -\entry{\code {PROMPT_COMMAND}}{91} -\entry{\code {PROMPT_DIRTRIM}}{91} -\entry{\code {PS0}}{91} -\entry{\code {PS1}}{81} -\entry{\code {PS2}}{81} -\entry{\code {PS3}}{91} -\entry{\code {PS4}}{92} -\entry{\code {PWD}}{92} +\entry{\code {page-completions}}{136} +\entry{\code {PATH}}{84} +\entry{\code {PIPESTATUS}}{94} +\entry{\code {POSIXLY_CORRECT}}{94} +\entry{\code {PPID}}{95} +\entry{\code {PROMPT_COMMAND}}{95} +\entry{\code {PROMPT_DIRTRIM}}{95} +\entry{\code {PS0}}{95} +\entry{\code {PS1}}{84} +\entry{\code {PS2}}{84} +\entry{\code {PS3}}{95} +\entry{\code {PS4}}{95} +\entry{\code {PWD}}{95} \initial {R} -\entry{\code {RANDOM}}{92} -\entry{\code {READLINE_ARGUMENT}}{92} -\entry{\code {READLINE_LINE}}{92} -\entry{\code {READLINE_MARK}}{92} -\entry{\code {READLINE_POINT}}{92} -\entry{\code {REPLY}}{92} -\entry{\code {revert-all-at-newline}}{131} +\entry{\code {RANDOM}}{95} +\entry{\code {READLINE_ARGUMENT}}{95} +\entry{\code {READLINE_LINE}}{95} +\entry{\code {READLINE_MARK}}{95} +\entry{\code {READLINE_POINT}}{95} +\entry{\code {REPLY}}{95} +\entry{\code {revert-all-at-newline}}{137} \initial {S} -\entry{\code {search-ignore-case}}{131} -\entry{\code {SECONDS}}{92} -\entry{\code {SHELL}}{92} -\entry{\code {SHELLOPTS}}{92} -\entry{\code {SHLVL}}{92} -\entry{\code {show-all-if-ambiguous}}{131} -\entry{\code {show-all-if-unmodified}}{131} -\entry{\code {show-mode-in-prompt}}{132} -\entry{\code {skip-completed-text}}{132} -\entry{\code {SRANDOM}}{93} +\entry{\code {search-ignore-case}}{137} +\entry{\code {SECONDS}}{95} +\entry{\code {SHELL}}{96} +\entry{\code {SHELLOPTS}}{96} +\entry{\code {SHLVL}}{96} +\entry{\code {show-all-if-ambiguous}}{137} +\entry{\code {show-all-if-unmodified}}{137} +\entry{\code {show-mode-in-prompt}}{137} +\entry{\code {skip-completed-text}}{137} +\entry{\code {SRANDOM}}{96} \initial {T} \entry{\code {TEXTDOMAIN}}{8} \entry{\code {TEXTDOMAINDIR}}{8} -\entry{\code {TIMEFORMAT}}{93} -\entry{\code {TMOUT}}{93} -\entry{\code {TMPDIR}}{93} +\entry{\code {TIMEFORMAT}}{96} +\entry{\code {TMOUT}}{97} +\entry{\code {TMPDIR}}{97} \initial {U} -\entry{\code {UID}}{93} +\entry{\code {UID}}{97} \initial {V} -\entry{\code {vi-cmd-mode-string}}{132} -\entry{\code {vi-ins-mode-string}}{132} -\entry{\code {visible-stats}}{132} +\entry{\code {vi-cmd-mode-string}}{137} +\entry{\code {vi-ins-mode-string}}{138} +\entry{\code {visible-stats}}{138} diff --git a/doc/builtins.0 b/doc/builtins.0 index 6800cdc7f..632eeccef 100644 --- a/doc/builtins.0 +++ b/doc/builtins.0 @@ -29,37 +29,41 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS ssoouurrccee [--pp _p_a_t_h] _f_i_l_e_n_a_m_e [_a_r_g_u_m_e_n_t_s] The .. command (ssoouurrccee) reads and execute commands from _f_i_l_e_n_a_m_e in the current shell environment and returns the exit status of - the last command executed from _f_i_l_e_n_a_m_e. If _f_i_l_e_n_a_m_e does not - contain a slash, .. searchs for it. If the --pp option is sup- - plied, .. treats _p_a_t_h as a colon-separated list of directories - in which to find _f_i_l_e_n_a_m_e; otherwise, .. uses the entries in - PPAATTHH to find the directory containing _f_i_l_e_n_a_m_e. _f_i_l_e_n_a_m_e does - not need to be executable. When bbaasshh is not in _p_o_s_i_x _m_o_d_e, it - searches the current directory if no file is found in PPAATTHH, but - does not search the current directory if --pp is supplied. If the - ssoouurrcceeppaatthh option to the sshhoopptt builtin command is turned off, .. - does not search PPAATTHH. If any _a_r_g_u_m_e_n_t_s are supplied, they be- - come the positional parameters when _f_i_l_e_n_a_m_e is executed. Oth- - erwise the positional parameters are unchanged. If the --TT op- - tion is enabled, .. inherits any trap on DDEEBBUUGG; if it is not, any - DDEEBBUUGG trap string is saved and restored around the call to .., - and .. unsets the DDEEBBUUGG trap while it executes. If --TT is not - set, and the sourced file changes the DDEEBBUUGG trap, the new value - is retained when .. completes. The return status is the status - of the last command exited within the script (0 if no commands - are executed), and false if _f_i_l_e_n_a_m_e is not found or cannot be - read. + the last command executed from _f_i_l_e_n_a_m_e. + + If _f_i_l_e_n_a_m_e does not contain a slash, .. searchs for it. If the + --pp option is supplied, .. treats _p_a_t_h as a colon-separated list + of directories in which to find _f_i_l_e_n_a_m_e; otherwise, .. uses the + entries in PPAATTHH to find the directory containing _f_i_l_e_n_a_m_e. + _f_i_l_e_n_a_m_e does not need to be executable. When bbaasshh is not in + _p_o_s_i_x _m_o_d_e, it searches the current directory if _f_i_l_e_n_a_m_e is not + found in PPAATTHH, but does not search the current directory if --pp + is supplied. If the ssoouurrcceeppaatthh option to the sshhoopptt builtin com- + mand is turned off, .. does not search PPAATTHH. + + If any _a_r_g_u_m_e_n_t_s are supplied, they become the positional para- + meters when _f_i_l_e_n_a_m_e is executed. Otherwise the positional pa- + rameters are unchanged. + + If the --TT option is enabled, .. inherits any trap on DDEEBBUUGG; if it + is not, any DDEEBBUUGG trap string is saved and restored around the + call to .., and .. unsets the DDEEBBUUGG trap while it executes. If --TT + is not set, and the sourced file changes the DDEEBBUUGG trap, the new + value persists after .. completes. The return status is the sta- + tus of the last command executed from _f_i_l_e_n_a_m_e (0 if no commands + are executed), and non-zero if _f_i_l_e_n_a_m_e is not found or cannot + be read. aalliiaass [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] - AAlliiaass with no arguments or with the --pp option prints the list of - aliases in the form aalliiaass _n_a_m_e=_v_a_l_u_e on standard output. When - arguments are supplied, an alias is defined for each _n_a_m_e whose - _v_a_l_u_e is given. A trailing space in _v_a_l_u_e causes the next word - to be checked for alias substitution when the alias is expanded. - For each _n_a_m_e in the argument list for which no _v_a_l_u_e is sup- - plied, the name and value of the alias is printed. AAlliiaass re- - turns true unless a _n_a_m_e is given for which no alias has been - defined. + With no arguments or with the --pp option,aalliiaass prints the list of + aliases in the form aalliiaass _n_a_m_e=_v_a_l_u_e on standard output. When + arguments are supplied, define an alias for each _n_a_m_e whose + _v_a_l_u_e is given. A trailing space in _v_a_l_u_e causes the next word + to be checked for alias substitution when the alias is expanded + during command parsing. For each _n_a_m_e in the argument list for + which no _v_a_l_u_e is supplied, print the name and value of the + alias _n_a_m_e. aalliiaass returns true unless a _n_a_m_e is given (without + a corresponding =_v_a_l_u_e) for which no alias has been defined. bbgg [_j_o_b_s_p_e_c ...] Resume each suspended job _j_o_b_s_p_e_c in the background, as if it @@ -78,15 +82,16 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS bbiinndd [--mm _k_e_y_m_a_p] _k_e_y_s_e_q:_r_e_a_d_l_i_n_e_-_c_o_m_m_a_n_d bbiinndd _r_e_a_d_l_i_n_e_-_c_o_m_m_a_n_d_-_l_i_n_e Display current rreeaaddlliinnee key and function bindings, bind a key - sequence to a rreeaaddlliinnee function or macro, or set a rreeaaddlliinnee - variable. Each non-option argument is a command as it would ap- - pear in a rreeaaddlliinnee initialization file such as _._i_n_p_u_t_r_c, but - each binding or command must be passed as a separate argument; - e.g., \C-x\C-r: re-read-init-file. In the following descrip- - tions, output available to be re-read is formatted as commands - that would appear in a rreeaaddlliinnee initialization file or that - would be supplied as individual arguments to a bbiinndd command. - Options, if supplied, have the following meanings: + sequence to a rreeaaddlliinnee function or macro or to a shell command, + or set a rreeaaddlliinnee variable. Each non-option argument is a key + binding or command as it would appear in a rreeaaddlliinnee initializa- + tion file such as _._i_n_p_u_t_r_c, but each binding or command must be + passed as a separate argument; e.g., \C-x\C-r: + re-read-init-file. In the following descriptions, output avail- + able to be re-read is formatted as commands that would appear in + a rreeaaddlliinnee initialization file or that would be supplied as in- + dividual arguments to a bbiinndd command. Options, if supplied, + have the following meanings: --mm _k_e_y_m_a_p Use _k_e_y_m_a_p as the keymap to be affected by the subsequent bindings. Acceptable _k_e_y_m_a_p names are _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_- @@ -96,27 +101,33 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS _d_a_r_d. --ll List the names of all rreeaaddlliinnee functions. --pp Display rreeaaddlliinnee function names and bindings in such a - way that they can be re-read. If arguments remain after - option processing, bbiinndd treats them as readline command - names and restricts output to those names. + way that they can be used as an argument to a subsequent + bbiinndd command or in a rreeaaddlliinnee initialization file. If + arguments remain after option processing, bbiinndd treats + them as readline command names and restricts output to + those names. --PP List current rreeaaddlliinnee function names and bindings. If arguments remain after option processing, bbiinndd treats them as readline command names and restricts output to those names. --ss Display rreeaaddlliinnee key sequences bound to macros and the - strings they output in such a way that they can be re- - read. + strings they output in such a way that they can be used + as an argument to a subsequent bbiinndd command or in a rreeaadd-- + lliinnee initialization file. --SS Display rreeaaddlliinnee key sequences bound to macros and the strings they output. --vv Display rreeaaddlliinnee variable names and values in such a way - that they can be re-read. + that they can be used as an argument to a subsequent bbiinndd + command or in a rreeaaddlliinnee initialization file. --VV List current rreeaaddlliinnee variable names and values. --ff _f_i_l_e_n_a_m_e Read key bindings from _f_i_l_e_n_a_m_e. --qq _f_u_n_c_t_i_o_n - Query about which keys invoke the named _f_u_n_c_t_i_o_n. + Display key sequences that invoke the named rreeaaddlliinnee + _f_u_n_c_t_i_o_n. --uu _f_u_n_c_t_i_o_n - Unbind all keys bound to the named _f_u_n_c_t_i_o_n. + Unbind all key sequences bound to the named rreeaaddlliinnee + _f_u_n_c_t_i_o_n. --rr _k_e_y_s_e_q Remove any current binding for _k_e_y_s_e_q. --xx _k_e_y_s_e_q[[:: ]]_s_h_e_l_l_-_c_o_m_m_a_n_d @@ -130,113 +141,137 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS enclosing double quotes are optional, and rreeaaddlliinnee does not expand the command string before saving it. Since the entire key binding expression must be a single argu- - ment, it should be enclosed in quotes. When _s_h_e_l_l_-_c_o_m_- - _m_a_n_d is executed, the shell sets the RREEAADDLLIINNEE__LLIINNEE vari- - able to the contents of the rreeaaddlliinnee line buffer and the - RREEAADDLLIINNEE__PPOOIINNTT and RREEAADDLLIINNEE__MMAARRKK 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 RREEAADDLLIINNEE__AARRGGUU-- - MMEENNTT variable. If there was no argument, that variable - is not set. If the executed command changes the value of - any of RREEAADDLLIINNEE__LLIINNEE, RREEAADDLLIINNEE__PPOOIINNTT, or RREEAADDLLIINNEE__MMAARRKK, - those new values will be reflected in the editing state. + ment, it should be enclosed in single quotes. When + _s_h_e_l_l_-_c_o_m_m_a_n_d is executed, the shell sets the RREEAADD-- + LLIINNEE__LLIINNEE variable to the contents of the rreeaaddlliinnee line + buffer and the RREEAADDLLIINNEE__PPOOIINNTT and RREEAADDLLIINNEE__MMAARRKK 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 RREEAADDLLIINNEE__AARRGGUUMMEENNTT variable. If there was no argu- + ment, that variable is not set. If the executed command + changes the value of any of RREEAADDLLIINNEE__LLIINNEE, RREEAADD-- + LLIINNEE__PPOOIINNTT, or RREEAADDLLIINNEE__MMAARRKK, those new values will be + reflected in the editing state. --XX List all key sequences bound to shell commands and the - associated commands in a format that can be reused as in- - put. + associated commands in a format that can be reused as an + argument to a subsequent @code{bind} command. - The return value is 0 unless an unrecognized option is given or - an error occurred. + The return value is 0 unless an unrecognized option is supplied + or an error occurred. bbrreeaakk [_n] - Exit from within a ffoorr, wwhhiillee, uunnttiill, or sseelleecctt loop. If _n is - specified, break _n levels. _n must be >= 1. If _n is greater - than the number of enclosing loops, all enclosing loops are ex- - ited. The return value is 0 unless _n is not greater than or - equal to 1. + Exit from within a ffoorr, wwhhiillee, uunnttiill, or sseelleecctt loop. If _n is + specified, bbrreeaakk exits _n enclosing loops. _n must be >= 1. If _n + is greater than the number of enclosing loops, all enclosing + loops are exited. The return value is 0 unless _n is not greater + than or equal to 1. bbuuiillttiinn _s_h_e_l_l_-_b_u_i_l_t_i_n [_a_r_g_u_m_e_n_t_s] - Execute the specified shell builtin, passing it _a_r_g_u_m_e_n_t_s, and - return its exit status. This is useful when defining a function - whose name is the same as a shell builtin, retaining the func- - tionality of the builtin within the function. The ccdd builtin is - commonly redefined this way. The return status is false if - _s_h_e_l_l_-_b_u_i_l_t_i_n is not a shell builtin command. + Execute the specified shell builtin _s_h_e_l_l_-_b_u_i_l_t_i_n, passing it + _a_r_g_u_m_e_n_t_s, and return its exit status. This is useful when + defining a function whose name is the same as a shell builtin, + retaining the functionality of the builtin within the function. + The ccdd builtin is commonly redefined this way. The return sta- + tus is false if _s_h_e_l_l_-_b_u_i_l_t_i_n is not a shell builtin command. ccaalllleerr [_e_x_p_r] Returns the context of any active subroutine call (a shell func- - tion or a script executed with the .. or ssoouurrccee builtins). With- - out _e_x_p_r, ccaalllleerr displays the line number and source filename of - the current subroutine call. If a non-negative integer is sup- - plied as _e_x_p_r, ccaalllleerr 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. + tion or a script executed with the .. or ssoouurrccee builtins). + + Without _e_x_p_r, ccaalllleerr displays the line number and source file- + name of the current subroutine call. If a non-negative integer + is supplied as _e_x_p_r, ccaalllleerr displays the line number, subroutine + name, and source file corresponding to that position in the cur- + rent 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 _e_x_p_r does not correspond to a valid position in the call stack. ccdd [--LL|[--PP [--ee]]] [-@] [_d_i_r] Change the current directory to _d_i_r. if _d_i_r is not supplied, - the value of the HHOOMMEE shell variable is the default. The vari- - able CCDDPPAATTHH defines the search path for the directory containing - _d_i_r: the shell searches each directory name in CCDDPPAATTHH for _d_i_r. - Alternative directory names in CCDDPPAATTHH are separated by a colon - (:). A null directory name in CCDDPPAATTHH is the same as the current - directory, i.e., If _d_i_r begins with a slash (/), then CCDDPPAATTHH is - not used. The --PP option causes ccdd to use the physical directory - structure by resolving symbolic links while traversing _d_i_r and - before processing instances of _._. in _d_i_r (see also the --PP option - to the sseett builtin command); the --LL option forces symbolic links - to be followed by resolving the link after processing instances - of _._. in _d_i_r. If _._. appears in _d_i_r, it is processed by removing - the immediately previous pathname component from _d_i_r, back to a - slash or the beginning of _d_i_r. If the --ee option is supplied - with --PP, and the current working directory cannot be success- - fully determined after a successful directory change, ccdd will - return an unsuccessful status. On systems that support it, the - --@@ option presents the extended attributes associated with a - file as a directory. An argument of -- is converted to $$OOLLDDPPWWDD - before the directory change is attempted. If a non-empty direc- - tory name from CCDDPPAATTHH is used, or if -- is the first argument, - and the directory change is successful, the absolute pathname of - the new working directory is written to the standard output. If - the directory change is successful, ccdd sets the value of the PPWWDD - environment variable to the new directory name, and sets the + the value of the HHOOMMEE shell variable is used as _d_i_r. The vari- + able CCDDPPAATTHH exists, ccdd uses it as a search path: the shell + searches each directory name in CCDDPPAATTHH for _d_i_r. Alternative di- + rectory names in CCDDPPAATTHH are separated by a colon (:). A null + directory name in CCDDPPAATTHH is the same as the current directory, + i.e., If _d_i_r begins with a slash (/), then CCDDPPAATTHH is not used. + + The --PP option causes ccdd to use the physical directory structure + by resolving symbolic links while traversing _d_i_r and before pro- + cessing instances of _._. in _d_i_r (see also the --PP option to the + sseett builtin command). + + The --LL option forces symbolic links to be followed by resolving + the link after processing instances of _._. in _d_i_r. If _._. appears + in _d_i_r, it is processed by removing the immediately previous + pathname component from _d_i_r, back to a slash or the beginning of + _d_i_r. + + If the --ee option is supplied with --PP, and the current working + directory cannot be successfully determined after a successful + directory change, ccdd will return a non-zero status. + + On systems that support it, the --@@ option presents the extended + attributes associated with a file as a directory. + + An argument of -- is converted to $$OOLLDDPPWWDD before attempting the + directory change. + + If ccdd uses a non-empty directory name from CCDDPPAATTHH,, or if -- is + the first argument, and the directory change is successful, ccdd + writes the absolute pathname of the new working directory to the + standard output. + + If the directory change is successful, ccdd sets the value of the + PPWWDD environment variable to the new directory name, and sets the OOLLDDPPWWDD 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. + directory before the change. + + The return value is true if the directory was successfully + changed; false otherwise. ccoommmmaanndd [--ppVVvv] _c_o_m_m_a_n_d [_a_r_g ...] - Run _c_o_m_m_a_n_d with _a_r_g_s suppressing the normal shell function - lookup. Only builtin commands or commands found in the PPAATTHH are - executed. If the --pp option is given, the search for _c_o_m_m_a_n_d is - performed using a default value for PPAATTHH that is guaranteed to - find all of the standard utilities. If either the --VV or --vv op- - tion is supplied, a description of _c_o_m_m_a_n_d is printed. The --vv - option causes a single word indicating the command or filename - used to invoke _c_o_m_m_a_n_d to be displayed; the --VV option produces a - more verbose description. If the --VV or --vv option is supplied, - the exit status is 0 if _c_o_m_m_a_n_d was found, and 1 if not. If - neither option is supplied and an error occurred or _c_o_m_m_a_n_d can- - not be found, the exit status is 127. Otherwise, the exit sta- - tus of the ccoommmmaanndd builtin is the exit status of _c_o_m_m_a_n_d. + The ccoommmmaanndd builtin runs _c_o_m_m_a_n_d with _a_r_g_s suppressing the nor- + mal shell function lookup for _c_o_m_m_a_n_d. Only builtin commands or + commands found in the PPAATTHH named _c_o_m_m_a_n_d are executed. If the + --pp option is supplied, the search for _c_o_m_m_a_n_d is performed using + a default value for PPAATTHH that is guaranteed to find all of the + standard utilities. + + If either the --VV or --vv option is supplied, ccoommmmaanndd prints a de- + scription of _c_o_m_m_a_n_d. The --vv option displays a single word in- + dicating the command or filename used to invoke _c_o_m_m_a_n_d; the --VV + option produces a more verbose description. + + If the --VV or --vv option is supplied, the exit status is zero if + _c_o_m_m_a_n_d was found, and non-zero if not. If neither option is + supplied and an error occurred or _c_o_m_m_a_n_d cannot be found, the + exit status is 127. Otherwise, the exit status of the ccoommmmaanndd + builtin is the exit status of _c_o_m_m_a_n_d. ccoommppggeenn [--VV _v_a_r_n_a_m_e] [_o_p_t_i_o_n] [_w_o_r_d] - Generate possible completion matches for _w_o_r_d according to the - _o_p_t_i_o_ns, which may be any option accepted by the ccoommpplleettee + Generate possible completion matches for _w_o_r_d according to the + _o_p_t_i_o_ns, which may be any option accepted by the ccoommpplleettee builtin with the exceptions of --pp, --rr, --DD, --EE, and --II, and write - the matches to the standard output. If the --VV option is sup- - plied, ccoommppggeenn stores the generated completions into the indexed - array variable _v_a_r_n_a_m_e instead of writing them to the standard - output. When using the --FF or --CC options, the various shell - variables set by the programmable completion facilities, while - available, will not have useful values. + the matches to the standard output. + + If the --VV option is supplied, ccoommppggeenn stores the generated com- + pletions into the indexed array variable _v_a_r_n_a_m_e instead of + writing them to the standard output. + + When using the --FF or --CC 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 _w_o_r_d is specified, - only those completions matching _w_o_r_d will be displayed. + tion specification with the same flags. If _w_o_r_d is specified, + only those completions matching _w_o_r_d will be displayed or + stored. The return value is true unless an invalid option is supplied, or no matches were generated. @@ -305,9 +340,9 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS line. pplluussddiirrss 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. + generated, attempt directory name completion and + add any matches to the results of the other ac- + tions. --AA _a_c_t_i_o_n The _a_c_t_i_o_n may be one of the following to generate a list of possible completions: @@ -361,21 +396,21 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS guments are being completed, the second argument ($$22) is the word being completed, and the third argument ($$33) 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 CCOOMMPPRREEPPLLYY - array variable. + rent command line. When _f_u_n_c_t_i_o_n finishes, the possible + completions are retrieved from the value of the CCOOMMPPRREE-- + PPLLYY array variable. --GG _g_l_o_b_p_a_t - The pathname expansion pattern _g_l_o_b_p_a_t is expanded to - generate the possible completions. + Expand the pathname expansion pattern _g_l_o_b_p_a_t to gener- + ate the possible completions. --PP _p_r_e_f_i_x - _p_r_e_f_i_x is added at the beginning of each possible com- - pletion after all other options have been applied. + Add _p_r_e_f_i_x to the beginning of each possible completion + after all other options have been applied. --SS _s_u_f_f_i_x - _s_u_f_f_i_x is appended to each possible completion after all + Append _s_u_f_f_i_x to each possible completion after all other options have been applied. --WW _w_o_r_d_l_i_s_t The _w_o_r_d_l_i_s_t is split using the characters in the IIFFSS - special variable as delimiters, and each resultant word + special variable as delimiters, and each resulting word is expanded. Shell quoting is honored within _w_o_r_d_l_i_s_t, in order to provide a mechanism for the words to contain shell metacharacters or characters in the value of IIFFSS. @@ -398,8 +433,8 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS ccoommppoopptt [--oo _o_p_t_i_o_n] [--DDEEII] [++oo _o_p_t_i_o_n] [_n_a_m_e] Modify completion options for each _n_a_m_e according to the _o_p_- _t_i_o_ns, or for the currently-executing completion if no _n_a_m_es are - supplied. If no _o_p_t_i_o_ns are given, display the completion op- - tions for each _n_a_m_e or the current completion. The possible + supplied. If no _o_p_t_i_o_ns are supplied, display the completion + options for each _n_a_m_e or the current completion. The possible values of _o_p_t_i_o_n are those valid for the ccoommpplleettee builtin de- scribed above. The --DD option indicates that other supplied op- tions should apply to the command completion; that is, comple- @@ -411,138 +446,160 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS assignment word on the line, or after a command delimiter such as ;; or ||, which is usually command name completion. + If multiple options are supplied, the --DD option takes precedence + over --EE, and both take precedence over --II. + The return value is true unless an invalid option is supplied, an attempt is made to modify the options for a _n_a_m_e for which no completion specification exists, or an output error occurs. ccoonnttiinnuuee [_n] - Resume the next iteration of the enclosing ffoorr, wwhhiillee, uunnttiill, or - sseelleecctt loop. If _n is specified, resume at the _nth enclosing - loop. _n must be >= 1. If _n is greater than the number of en- - closing loops, the shell resumes the last enclosing loop (the - loop). The return value is 0 unless _n is not greater than or - equal to 1. + ccoonnttiinnuuee resumes the next iteration of the enclosing ffoorr, wwhhiillee, + uunnttiill, or sseelleecctt loop. If _n is specified, bbaasshh resumes the _nth + enclosing loop. _n must be >= 1. If _n is greater than the num- + ber of enclosing loops, the shell resumes the last enclosing + loop (the loop). The return value is 0 unless _n is not greater + than or equal to 1. ddeeccllaarree [--aaAAffFFggiiIIllnnrrttuuxx] [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] ttyyppeesseett [--aaAAffFFggiiIIllnnrrttuuxx] [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] Declare variables and/or give them attributes. If no _n_a_m_es are - given then display the values of variables. The --pp option will - display the attributes and values of each _n_a_m_e. When --pp is used - with _n_a_m_e arguments, additional options, other than --ff and --FF, - are ignored. When --pp is supplied without _n_a_m_e 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 --pp, ddeeccllaarree will display the attrib- - utes and values of all shell variables. The --ff option will re- - strict the display to shell functions. The --FF option inhibits - the display of function definitions; only the function name and - attributes are printed. If the eexxttddeebbuugg shell option is enabled - using sshhoopptt, the source file name and line number where each - _n_a_m_e is defined are displayed as well. The --FF option implies - --ff. The --gg option forces variables to be created or modified at - the global scope, even when ddeeccllaarree is executed in a shell func- - tion. It is ignored in all other cases. The --II option causes - local variables to inherit the attributes (except the _n_a_m_e_r_e_f - attribute) and value of any existing variable with the same _n_a_m_e - 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 at- - tribute or to give variables attributes: - --aa Each _n_a_m_e is an indexed array variable (see AArrrraayyss in + given then display the values of variables or functions. The --pp + option will display the attributes and values of each _n_a_m_e. + When --pp is used with _n_a_m_e arguments, additional options, other + than --ff and --FF, are ignored. + + When --pp is supplied without _n_a_m_e arguments, ddeeccllaarree will display + the attributes and values of all variables having the attributes + specified by the additional options. If no other options are + supplied with --pp, ddeeccllaarree will display the attributes and values + of all shell variables. The --ff option restricts the display to + shell functions. + + The --FF option inhibits the display of function definitions; only + the function name and attributes are printed. If the eexxttddeebbuugg + shell option is enabled using sshhoopptt, the source file name and + line number where each _n_a_m_e is defined are displayed as well. + The --FF option implies --ff. + + The --gg option forces variables to be created or modified at the + global scope, even when ddeeccllaarree is executed in a shell function. + It is ignored when ddeeccllaarree is not executed in a shell function. + + The --II option causes local variables to inherit the attributes + (except the _n_a_m_e_r_e_f attribute) and value of any existing vari- + able with the same _n_a_m_e 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 vari- + ables with the specified attribute or to give variables attrib- + utes: + --aa Each _n_a_m_e is an indexed array variable (see AArrrraayyss in _b_a_s_h(1)). --AA Each _n_a_m_e is an associative array variable (see AArrrraayyss in _b_a_s_h(1)). - --ff Use function names only. + --ff Each _n_a_m_e refers to a shell function. --ii The variable is treated as an integer; arithmetic evalua- - tion (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN in _b_a_s_h(1)) is performed + tion (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN in _b_a_s_h(1)) is performed when the variable is assigned a value. - --ll When the variable is assigned a value, all upper-case - characters are converted to lower-case. The upper-case + --ll When the variable is assigned a value, all upper-case + characters are converted to lower-case. The upper-case attribute is disabled. - --nn Give each _n_a_m_e the _n_a_m_e_r_e_f attribute, making it a name - reference to another variable. That other variable is - defined by the value of _n_a_m_e. All references, assign- - ments, and attribute modifications to _n_a_m_e, except those - using or changing the --nn attribute itself, are performed - on the variable referenced by _n_a_m_e's value. The nameref + --nn Give each _n_a_m_e the _n_a_m_e_r_e_f attribute, making it a name + reference to another variable. That other variable is + defined by the value of _n_a_m_e. All references, assign- + ments, and attribute modifications to _n_a_m_e, except those + using or changing the --nn attribute itself, are performed + on the variable referenced by _n_a_m_e's value. The nameref attribute cannot be applied to array variables. --rr Make _n_a_m_es readonly. These names cannot then be assigned values by subsequent assignment statements or unset. --tt Give each _n_a_m_e the _t_r_a_c_e attribute. Traced functions in- - herit the DDEEBBUUGG and RREETTUURRNN traps from the calling shell. + herit the DDEEBBUUGG and RREETTUURRNN traps from the calling shell. The trace attribute has no special meaning for variables. - --uu When the variable is assigned a value, all lower-case - characters are converted to upper-case. The lower-case + --uu When the variable is assigned a value, all lower-case + characters are converted to upper-case. The lower-case attribute is disabled. - --xx Mark _n_a_m_es for export to subsequent commands via the en- - vironment. - - Using instead of turns off the attribute instead, with the ex- - ceptions that ++aa and ++AA may not be used to destroy array vari- - ables and ++rr will not remove the readonly attribute. When used - in a function, ddeeccllaarree and ttyyppeesseett make each _n_a_m_e local, as with - the llooccaall command, unless the --gg option is supplied. If a vari- - able name is followed by =_v_a_l_u_e, the value of the variable is - set to _v_a_l_u_e. When using --aa or --AA and the compound assignment - 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 an attempt is made to assign a value to - a readonly variable, an attempt is made to assign a value to an - array variable without using the compound assignment syntax (see - AArrrraayyss in _b_a_s_h(1)), one of the _n_a_m_e_s is not a valid shell vari- - able name, an attempt is made to turn off readonly 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 --ff. + --xx Mark each _n_a_m_e for export to subsequent commands via the + environment. + + Using instead of turns off the specified attribute instead, with + the exceptions that ++aa and ++AA may not be used to destroy array + variables and ++rr will not remove the readonly attribute. + + When used in a function, ddeeccllaarree and ttyyppeesseett make each _n_a_m_e lo- + cal, as with the llooccaall command, unless the --gg option is sup- + plied. If a variable name is followed by =_v_a_l_u_e, the value of + the variable is set to _v_a_l_u_e. When using --aa or --AA and the com- + pound assignment 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 an attempt is made + to assign a value to a readonly variable, an attempt is made to + assign a value to an array variable without using the compound + assignment syntax (see AArrrraayyss in _b_a_s_h(1)), one of the _n_a_m_e_s is + not a valid shell variable name, an attempt is made to turn off + readonly 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 --ff. ddiirrss [[--ccllppvv]] [[++_n]] [[--_n]] - 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 ppuusshhdd command; the ppooppdd command removes entries - from the list. The current directory is always the first direc- - tory in the stack. - --cc Clears the directory stack by deleting all of the en- + Without options, display the list of currently remembered direc- + tories. The default display is on a single line with directory + names separated by spaces. Directories are added to the list + with the ppuusshhdd command; the ppooppdd command removes entries from + the list. The current directory is always the first directory + in the stack. + + Options, if supplied, have the following meanings: + --cc Clears the directory stack by deleting all of the en- tries. - --ll Produces a listing using full pathnames; the default + --ll Produces a listing using full pathnames; the default listing format uses a tilde to denote the home directory. --pp Print the directory stack with one entry per line. - --vv Print the directory stack with one entry per line, pre- + --vv Print the directory stack with one entry per line, pre- fixing each entry with its index in the stack. ++_n Displays the _nth entry counting from the left of the list shown by ddiirrss when invoked without options, starting with zero. - --_n Displays the _nth entry counting from the right of the + --_n Displays the _nth entry counting from the right of the list shown by ddiirrss when invoked without options, starting with zero. - The return value is 0 unless an invalid option is supplied or _n + The return value is 0 unless an invalid option is supplied or _n indexes beyond the end of the directory stack. - ddiissoowwnn [--aarr] [--hh] [_j_o_b_s_p_e_c ... | _p_i_d ... ] - Without options, remove each _j_o_b_s_p_e_c from the table of active - jobs. If _j_o_b_s_p_e_c is not present, and neither the --aa nor the --rr - option is supplied, the _c_u_r_r_e_n_t _j_o_b is used. If the --hh option - is given, each _j_o_b_s_p_e_c is not removed from the table, but is - marked so that SSIIGGHHUUPP is not sent to the job if the shell re- - ceives a SSIIGGHHUUPP. If no _j_o_b_s_p_e_c is supplied, the --aa option means - to remove or mark all jobs; the --rr option without a _j_o_b_s_p_e_c ar- - gument restricts operation to running jobs. The return value is - 0 unless a _j_o_b_s_p_e_c does not specify a valid job. + ddiissoowwnn [--aarr] [--hh] [_i_d ...] + Without options, remove each _i_d from the table of active jobs. + Each _i_d may be a job specification _j_o_b_s_p_e_c or a process ID _p_i_d; + if _i_d is a _p_i_d, ddiissoowwnn uses the job containing _p_i_d as _j_o_b_s_p_e_c. + If _i_d is not present, and neither the --aa nor the --rr option is + supplied, ddiissoowwnn removes the _c_u_r_r_e_n_t _j_o_b. If the --hh option is + supplied, the job corresponding to each _i_d is not removed from + the table, but is marked so that SSIIGGHHUUPP is not sent to the job + if the shell receives a SSIIGGHHUUPP. + + If no _i_d is supplied, the --aa option means to remove or mark all + jobs; the --rr option without an _i_d argument restricts operation + to running jobs. + + The return value is 0 unless an _i_d does not specify a valid job. eecchhoo [--nneeEE] [_a_r_g ...] Output the _a_r_gs, separated by spaces, followed by a newline. The return status is 0 unless a write error occurs. If --nn is - specified, the trailing newline is suppressed. If the --ee option - is given, interpretation of the following backslash-escaped - characters is enabled. The --EE option disables the interpreta- - tion of these escape characters, even on systems where they are - interpreted by default. The xxppgg__eecchhoo shell option may be used - to dynamically determine whether or not eecchhoo interprets any op- - tions and expands these escape characters by default. eecchhoo does - not interpret ---- to mean the end of options. eecchhoo interprets - the following escape sequences: + specified, the trailing newline is not printed. + + If the --ee option is given, eecchhoo interprets the following back- + slash-escaped characters. The --EE option disables interpretation + of these escape characters, even on systems where they are in- + terpreted by default. The xxppgg__eecchhoo shell option determines + whether or not eecchhoo interprets any options and expands these es- + cape characters. eecchhoo does not interpret ---- to mean the end of + options. + + eecchhoo interprets the following escape sequences: \\aa alert (bell) \\bb backspace \\cc suppress further output @@ -564,198 +621,232 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value _H_H_H_H_H_H_H_H (one to eight hex digits) + eecchhoo writes any unrecognized backslash-escaped characters un- + changed. + eennaabbllee [--aa] [--ddnnppss] [--ff _f_i_l_e_n_a_m_e] [_n_a_m_e ...] - 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 --nn is used, each _n_a_m_e is disabled; otherwise, _n_a_m_e_s are en- - abled. For example, to use the tteesstt binary found via the PPAATTHH - instead of the shell builtin version, run The --ff option means to - load the new builtin command _n_a_m_e from shared object _f_i_l_e_n_a_m_e, - on systems that support dynamic loading. BBaasshh will use the - value of the BBAASSHH__LLOOAADDAABBLLEESS__PPAATTHH variable as a colon-separated - list of directories in which to search for _f_i_l_e_n_a_m_e, if _f_i_l_e_n_a_m_e - does not contain a slash. The default is system-dependent, and - may include to force a search of the current directory. The --dd - option will delete a builtin previously loaded with --ff. If no - _n_a_m_e arguments are given, or if the --pp option is supplied, a - list of shell builtins is printed. With no other option argu- - ments, the list consists of all enabled shell builtins. If --nn - is supplied, only disabled builtins are printed. If --aa is sup- - plied, the list printed includes all builtins, with an indica- - tion of whether or not each is enabled. If --ss is supplied, the - output is restricted to the POSIX _s_p_e_c_i_a_l builtins. If no op- - tions are supplied and a _n_a_m_e is not a shell builtin, eennaabbllee - will attempt to load _n_a_m_e from a shared object named _n_a_m_e, as if - the command were The return value is 0 unless a _n_a_m_e is not a - shell builtin or there is an error loading a new builtin from a - shared object. + Enable and disable builtin shell commands. Disabling a builtin + allows an executable file 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 files. + + If --nn is supplied, each _n_a_m_e is disabled; otherwise, _n_a_m_es are + enabled. For example, to use the tteesstt binary found usin g PPAATTHH + instead of the shell builtin version, run + + If no _n_a_m_e arguments are supplied, or if the --pp option is sup- + plied, print a list of shell builtins. With no other option ar- + guments, the list consists of all enabled shell builtins. If --nn + is supplied, print only disabled builtins. If --aa is supplied, + the list printed includes all builtins, with an indication of + whether or not each is enabled. The --ss option means to restrict + the output to the POSIX _s_p_e_c_i_a_l builtins. + + The --ff option means to load the new builtin command _n_a_m_e from + shared object _f_i_l_e_n_a_m_e, on systems that support dynamic loading. + If _f_i_l_e_n_a_m_e does not contain a slash, BBaasshh will use the value of + the BBAASSHH__LLOOAADDAABBLLEESS__PPAATTHH variable as a colon-separated list of + directories in which to search for _f_i_l_e_n_a_m_e. The default for + BBAASSHH__LLOOAADDAABBLLEESS__PPAATTHH is system-dependent, and may include to + force a search of the current directory. The --dd option will + delete a builtin previously loaded with --ff. If _-_s is used with + _-_f, the new builtin becomes a POSIX special builtin. + + If no options are supplied and a _n_a_m_e is not a shell builtin, + eennaabbllee will attempt to load _n_a_m_e from a shared object named + _n_a_m_e, as if the command were + + The return value is 0 unless a _n_a_m_e is not a shell builtin or + there is an error loading a new builtin from a shared object. eevvaall [_a_r_g ...] - The _a_r_gs 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 eevvaall. If there are - no _a_r_g_s, or only null arguments, eevvaall returns 0. + Concatenate the _a_r_gs together into a single command, separating + them with spaces. BBaasshh then reads and execute this command, and + returns its exit status as the return status of eevvaall. If there + are no _a_r_g_s, or only null arguments, eevvaall returns 0. eexxeecc [--ccll] [--aa _n_a_m_e] [_c_o_m_m_a_n_d [_a_r_g_u_m_e_n_t_s]] - If _c_o_m_m_a_n_d is specified, it replaces the shell. No new process - is created. The _a_r_g_u_m_e_n_t_s become the arguments to _c_o_m_m_a_n_d. If - the --ll option is supplied, the shell places a dash at the begin- - ning of the zeroth argument passed to _c_o_m_m_a_n_d. This is what _l_o_- - _g_i_n(1) does. The --cc option causes _c_o_m_m_a_n_d to be executed with - an empty environment. If --aa is supplied, the shell passes _n_a_m_e - as the zeroth argument to the executed command. If _c_o_m_m_a_n_d can- - not be executed for some reason, a non-interactive shell exits, - unless the eexxeeccffaaiill 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 - eexxeecc fails. If _c_o_m_m_a_n_d 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. + If _c_o_m_m_a_n_d is specified, it replaces the shell without creating + a new process. _c_o_m_m_a_n_d cannot be a shell builtin or function. + The _a_r_g_u_m_e_n_t_s become the arguments to _c_o_m_m_a_n_d. If the --ll option + is supplied, the shell places a dash at the beginning of the ze- + roth argument passed to _c_o_m_m_a_n_d. This is what _l_o_g_i_n(1) does. + The --cc option causes _c_o_m_m_a_n_d to be executed with an empty envi- + ronment. If --aa is supplied, the shell passes _n_a_m_e as the zeroth + argument to the executed command. + + If _c_o_m_m_a_n_d cannot be executed for some reason, a non-interactive + shell exits, unless the eexxeeccffaaiill shell option is enabled. In + that case, it returns a non-zero status. An interactive shell + returns a non-zero status if the file cannot be executed. A + subshell exits unconditionally if eexxeecc fails. + + If _c_o_m_m_a_n_d is not specified, any redirections take effect in the + current shell, and the return status is 0. If there is a redi- + rection error, the return status is 1. eexxiitt [_n] Cause the shell to exit with a status of _n. If _n is omitted, - the exit status is that of the last command executed. A trap on - EEXXIITT is executed before the shell terminates. + the exit status is that of the last command executed. Any trap + on EEXXIITT is executed before the shell terminates. - eexxppoorrtt [--ffnn] [_n_a_m_e[=_w_o_r_d]] ... + eexxppoorrtt [--ffnn] [_n_a_m_e[=_v_a_l_u_e]] ... eexxppoorrtt --pp - The supplied _n_a_m_e_s are marked for automatic export to the envi- - ronment of subsequently executed commands. If the --ff option is - given, the _n_a_m_e_s refer to functions. If no _n_a_m_e_s are given, or - if the --pp option is supplied, a list of names of all exported - variables is printed. The --nn option causes the export property - to be removed from each _n_a_m_e. If a variable name is followed by - =_w_o_r_d, the value of the variable is set to _w_o_r_d. eexxppoorrtt returns - an exit status of 0 unless an invalid option is encountered, one - of the _n_a_m_e_s is not a valid shell variable name, or --ff is sup- - plied with a _n_a_m_e that is not a function. - - ffaallssee Does nothing, returns a non-zero status. + The supplied _n_a_m_e_s are marked for automatic export to the envi- + ronment of subsequently executed commands. If the --ff option is + given, the _n_a_m_e_s refer to functions. + + The --nn option unexports, or removes the export attribute, from + each _n_a_m_e. If no _n_a_m_e_s are given, or if the --pp option is sup- + plied, eexxppoorrtt prints a list of names of all exported variables + on the standard output. + + eexxppoorrtt allows the value of a variable to be set when it is ex- + ported or unexported by following the variable name with =_v_a_l_u_e. + This sets the value of the variable to _v_a_l_u_e while modifying the + export attribute. eexxppoorrtt returns an exit status of 0 unless an + invalid option is encountered, one of the _n_a_m_e_s is not a valid + shell variable name, or --ff is supplied with a _n_a_m_e that is not a + function. + + ffaallssee Does nothing; returns a non-zero status. ffcc [--ee _e_n_a_m_e] [--llnnrr] [_f_i_r_s_t] [_l_a_s_t] ffcc --ss [_p_a_t=_r_e_p] [_c_m_d] - The first form selects a range of commands from _f_i_r_s_t to _l_a_s_t - from the history list and displays or edits and re-executes - them. _F_i_r_s_t and _l_a_s_t 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 - _f_i_r_s_t or _l_a_s_t of 0 is equivalent to -1 and -0 is equivalent to - the current command (usually the ffcc command); otherwise 0 is - equivalent to -1 and -0 is invalid. If _l_a_s_t is not specified, - it is set to the current command for listing (so that prints the - last 10 commands) and to _f_i_r_s_t otherwise. If _f_i_r_s_t is not spec- - ified, it is set to the previous command for editing and -16 for - listing. - - The --nn option suppresses the command numbers when listing. The - --rr option reverses the order of the commands. If the --ll option - is given, the commands are listed on standard output. Other- - wise, the editor given by _e_n_a_m_e is invoked on a file containing - those commands. If _e_n_a_m_e is not given, the value of the FFCCEEDDIITT - variable is used, and the value of EEDDIITTOORR if FFCCEEDDIITT is not set. - If neither variable is set, _v_i is used. When editing is com- - plete, the edited commands are echoed and executed. - - In the second form, _c_o_m_m_a_n_d is re-executed after each instance - of _p_a_t is replaced by _r_e_p. _C_o_m_m_a_n_d is interpreted the same as - _f_i_r_s_t above. A useful alias to use with this is so that typing - runs the last command beginning with and typing re-executes the - last command. - - If the first form is used, the return value is 0 unless an in- - valid option is encountered or _f_i_r_s_t or _l_a_s_t specify history - lines out of range. If the --ee 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 _c_m_d does not specify a valid history line, in - which case ffcc returns failure. + The first form selects a range of commands from _f_i_r_s_t to _l_a_s_t + from the history list and displays or edits and re-executes + them. _F_i_r_s_t and _l_a_s_t 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 _f_i_r_s_t or _l_a_s_t of 0 is equivalent to -1 and -0 is + equivalent to the current command (usually the ffcc command); oth- + erwise 0 is equivalent to -1 and -0 is invalid. If _l_a_s_t is not + specified, it is set to the current command for listing (so that + prints the last 10 commands) and to _f_i_r_s_t otherwise. If _f_i_r_s_t + is not specified, it is set to the previous command for editing + and -16 for listing. + + If the --ll option is supplied, the commands are listed on the + standard output. The --nn option suppresses the command numbers + when listing. The --rr option reverses the order of the commands. + + Otherwise, ffcc invokes the editor named by _e_n_a_m_e on a file con- + taining those commands. If _e_n_a_m_e is not supplied, ffcc uses the + value of the FFCCEEDDIITT variable, and the value of EEDDIITTOORR if FFCCEEDDIITT + is not set. If neither variable is set, ffcc uses _v_i_. When edit- + ing is complete, ffcc reads the file containing the edited com- + mands and echoes and executes them. + + In the second form, ffcc re-executes _c_o_m_m_a_n_d after replacing each + instance of _p_a_t with _r_e_p. _C_o_m_m_a_n_d is interpreted the same as + _f_i_r_s_t above. + + A useful alias to use with ffcc is so that typing runs the last + command beginning with and typing re-executes the last command. + + If the first form is used, the return value is zero unless an + invalid option is encountered or _f_i_r_s_t or _l_a_s_t specify history + lines out of range. When editing and re-executing a file of + commands, the return value is the value of the last command exe- + cuted or failure if an error occurs with the temporary file. If + the second form is used, the return status is that of the re-ex- + ecuted command, unless _c_m_d does not specify a valid history en- + try, in which case ffcc returns a non-zero status. ffgg [_j_o_b_s_p_e_c] Resume _j_o_b_s_p_e_c in the foreground, and make it the current job. - If _j_o_b_s_p_e_c is not present, the shell's notion of the _c_u_r_r_e_n_t _j_o_b - 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 _j_o_b_s_p_e_c does not spec- - ify a valid job or _j_o_b_s_p_e_c specifies a job that was started - without job control. + If _j_o_b_s_p_e_c is not present, use the shell's notion of the _c_u_r_r_e_n_t + _j_o_b. 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 _j_o_b_s_p_e_c does not specify a + valid job or _j_o_b_s_p_e_c specifies a job that was started without + job control. ggeettooppttss _o_p_t_s_t_r_i_n_g _n_a_m_e [_a_r_g ...] - ggeettooppttss is used by shell procedures to parse positional parame- - ters. _o_p_t_s_t_r_i_n_g 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, ggeettooppttss - places the next option in the shell variable _n_a_m_e, initializing - _n_a_m_e if it does not exist, and the index of the next argument to - be processed into the variable OOPPTTIINNDD. OOPPTTIINNDD is initialized to - 1 each time the shell or a shell script is invoked. When an op- - tion requires an argument, ggeettooppttss places that argument into the - variable OOPPTTAARRGG. The shell does not reset OOPPTTIINNDD automatically; - it must be manually reset between multiple calls to ggeettooppttss - within the same shell invocation if a new set of parameters is - to be used. - - When the end of options is encountered, ggeettooppttss exits with a re- - turn value greater than zero. OOPPTTIINNDD is set to the index of the + ggeettooppttss is used by shell scripts and functions to parse posi- + tional parameters and obtain options and their arguments. _o_p_t_- + _s_t_r_i_n_g contains the option characters to be recognized; if a + character is followed by a colon, the option is expected 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, ggeettooppttss places the next option in the + shell variable _n_a_m_e, initializing _n_a_m_e if it does not exist, and + the index of the next argument to be processed into the variable + OOPPTTIINNDD. OOPPTTIINNDD is initialized to 1 each time the shell or a + shell script is invoked. When an option requires an argument, + ggeettooppttss places that argument into the variable OOPPTTAARRGG. + + The shell does not reset OOPPTTIINNDD automatically; it must be manu- + ally reset between multiple calls to ggeettooppttss within the same + shell invocation to use a new set of parameters. + + When it reaches the end of options, ggeettooppttss exits with a return + value greater than zero. OOPPTTIINNDD is set to the index of the first non-option argument, and _n_a_m_e is set to ?. - ggeettooppttss normally parses the positional parameters, but if more - arguments are supplied as _a_r_g values, ggeettooppttss parses those in- + ggeettooppttss normally parses the positional parameters, but if more + arguments are supplied as _a_r_g values, ggeettooppttss parses those in- stead. - ggeettooppttss can report errors in two ways. If the first character - of _o_p_t_s_t_r_i_n_g is a colon, _s_i_l_e_n_t error reporting is used. In - normal operation, diagnostic messages are printed when invalid - options or missing option arguments are encountered. If the - variable OOPPTTEERRRR is set to 0, no error messages will be dis- + ggeettooppttss can report errors in two ways. If the first character + of _o_p_t_s_t_r_i_n_g is a colon, ggeettooppttss uses _s_i_l_e_n_t error reporting. + In normal operation, ggeettooppttss prints diagnostic messages when it + encounters invalid options or missing option arguments. If the + variable OOPPTTEERRRR is set to 0, no error messages will be dis- played, even if the first character of _o_p_t_s_t_r_i_n_g is not a colon. If ggeettooppttss detects an invalid option, it places ? into _n_a_m_e and, - if not silent, prints an error message and unsets OOPPTTAARRGG. If - ggeettooppttss is silent, it assigns the option character found to OOPP-- + if not silent, prints an error message and unsets OOPPTTAARRGG. If + ggeettooppttss is silent, it assigns the option character found to OOPP-- TTAARRGG and does not print a diagnostic message. - If a required argument is not found, and ggeettooppttss is not silent, + If a required argument is not found, and ggeettooppttss is not silent, it sets the value of _n_a_m_e to a question mark (??), unsets OOPPTTAARRGG, - and prints a diagnostic message. If ggeettooppttss is silent, it sets - the value of _n_a_m_e to a colon (::) and sets OOPPTTAARRGG to the option + and prints a diagnostic message. If ggeettooppttss is silent, it sets + the value of _n_a_m_e to a colon (::) and sets OOPPTTAARRGG to the option character found. - ggeettooppttss returns true if an option, specified or unspecified, is + ggeettooppttss returns true if an option, specified or unspecified, is found. It returns false if the end of options is encountered or an error occurs. hhaasshh [--llrr] [--pp _f_i_l_e_n_a_m_e] [--ddtt] [_n_a_m_e] - Each time hhaasshh is invoked, the full pathname of the command _n_a_m_e - is determined by searching the directories in $$PPAATTHH and remem- - bered. Any previously-remembered pathname is discarded. If the - --pp option is supplied, hhaasshh uses _f_i_l_e_n_a_m_e as the full filename - of the command. The --rr option causes the shell to forget all - remembered locations. Assigning to the PPAATTHH variable also - clears all hashed filenames. The --dd option causes the shell to - forget the remembered location of each _n_a_m_e. If the --tt option - is supplied, the full pathname to which each _n_a_m_e corresponds is - printed. If multiple _n_a_m_e arguments are supplied with --tt, the - _n_a_m_e is printed before the hashed full pathname. The --ll option - causes output to be displayed in a format that may be reused as - input. If no arguments are given, or if only --ll is supplied, - information about remembered commands is printed. The --tt, --dd, - and --pp options (the options that act on the _n_a_m_e arguments) are - mutually exclusive. Only one will be active. If more than one - is supplied, --tt has higher priority than --pp, and both are higher - priority than --dd. The return status is true unless a _n_a_m_e is - not found or an invalid option is supplied. + Each time hhaasshh is invoked, it remembers the full pathname of the + command _n_a_m_e as determined by searching the directories in + $$PPAATTHH. Any previously-remembered pathname associated with _n_a_m_e + is discarded. If the --pp option is supplied, hhaasshh uses _f_i_l_e_n_a_m_e + as the full pathname of the command. + + The --rr option causes the shell to forget all remembered loca- + tions. Assigning to the PPAATTHH variable also clears all hashed + filenames. The --dd option causes the shell to forget the remem- + bered location of each _n_a_m_e. + + If the --tt option is supplied, hhaasshh prints the full pathname cor- + responding to each _n_a_m_e. If multiple _n_a_m_e arguments are sup- + plied with --tt, hhaasshh prints the _n_a_m_e before the corresponding + hashed full pathname. The --ll option displays output in a format + that may be reused as input. + + If no arguments are given, or if only --ll is supplied, hhaasshh + prints information about remembered commands. The --tt, --dd, and + --pp options (the options that act on the _n_a_m_e arguments) are mu- + tually exclusive. Only one will be active. If more than one is + supplied, --tt has higher priority than --pp, and both have higher + priority than --dd. + + The return status is zero unless a _n_a_m_e is not found or an in- + valid option is supplied. hheellpp [--ddmmss] [_p_a_t_t_e_r_n] Display helpful information about builtin commands. If _p_a_t_t_e_r_n is specified, hheellpp gives detailed help on all commands matching - _p_a_t_t_e_r_n; otherwise help for all the builtins and shell control - structures is printed. + _p_a_t_t_e_r_n; otherwise it displays a list of all the builtins and + shell compound commands. --dd Display a short description of each _p_a_t_t_e_r_n --mm Display the description of each _p_a_t_t_e_r_n in a manpage-like format @@ -770,171 +861,185 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS hhiissttoorryy --aannrrww [_f_i_l_e_n_a_m_e] hhiissttoorryy --pp _a_r_g [_a_r_g ...] hhiissttoorryy --ss _a_r_g [_a_r_g ...] - With no options, display the command history list with line num- - bers. Lines listed with a ** have been modified. An argument of - _n lists only the last _n lines. If the shell variable HHIISSTTTTIIMMEE-- + With no options, display the command history list with numbers. + Entries prefixed with a ** have been modified. An argument of _n + lists only the last _n entries. If the shell variable HHIISSTTTTIIMMEE-- FFOORRMMAATT is set and not null, it is used as a format string for _s_t_r_f_t_i_m_e(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 _f_i_l_e_n_a_m_e is - supplied, it is used as the name of the history file; if not, - the value of HHIISSTTFFIILLEE is used. If _f_i_l_e_n_a_m_e is not supplied and - HHIISSTTFFIILLEE is unset or null, the --aa,, --nn,, --rr,, and --ww options have - no effect. Options, if supplied, have the following meanings: - --cc Clear the history list by deleting all the entries. + played history entry. If hhiissttoorryy uses HHIISSTTTTIIMMEEFFOORRMMAATT, it does + not print an intervening space between the formatted time stamp + and the history entry. + + If _f_i_l_e_n_a_m_e is supplied, hhiissttoorryy uses it as the name of the his- + tory file; if not, it uses the value of HHIISSTTFFIILLEE. If _f_i_l_e_n_a_m_e + is not supplied and HHIISSTTFFIILLEE is unset or null, the --aa,, --nn,, --rr,, + and --ww options have no effect. + + Options, if supplied, have the following meanings: + --cc Clear the history list by deleting all the entries. This + can be used with the other options to replace the history + list. --dd _o_f_f_s_e_t - Delete the history entry at position _o_f_f_s_e_t. If _o_f_f_s_e_t + Delete the history entry at position _o_f_f_s_e_t. If _o_f_f_s_e_t 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 hhiissttoorryy --dd command. --dd _s_t_a_r_t-_e_n_d - Delete the range of history entries between positions - _s_t_a_r_t and _e_n_d, inclusive. Positive and negative values + Delete the range of history entries between positions + _s_t_a_r_t and _e_n_d, inclusive. Positive and negative values for _s_t_a_r_t and _e_n_d are interpreted as described above. - --aa Append the history lines to the history file. These are - history lines entered since the beginning of the current - bbaasshh session, but not already appended to the history + --aa Append the history lines to the history file. These are + history lines entered since the beginning of the current + bbaasshh session, but not already appended to the history file. - --nn 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 + --nn 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 bbaasshh session. - --rr Read the contents of the history file and append them to - the current history list. + --rr Read the history file and append its contents to the cur- + rent history list. --ww Write the current history list to the history file, over- writing the history file's contents. --pp Perform history substitution on the following _a_r_g_s and - display the result on the standard output. Does not - store the results in the history list. Each _a_r_g must be + display the result on the standard output, without stor- + ing the results in the history list. Each _a_r_g must be quoted to disable normal history expansion. --ss Store the _a_r_g_s in the history list as a single entry. The last command in the history list is removed before - the _a_r_g_s are added. - - If the HHIISSTTTTIIMMEEFFOORRMMAATT 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 _o_f_f_s_e_t or range - is supplied as an argument to --dd, or the history expansion sup- - plied as an argument to --pp fails. + adding the _a_r_g_s. + + If the HHIISSTTTTIIMMEEFFOORRMMAATT variable is set, hhiissttoorryy writes the time + stamp information associated with each history entry 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 _o_f_f_s_e_t or range is supplied as an argument to --dd, or the + history expansion supplied as an argument to --pp fails. jjoobbss [--llnnpprrss] [ _j_o_b_s_p_e_c ... ] jjoobbss --xx _c_o_m_m_a_n_d [ _a_r_g_s ... ] The first form lists the active jobs. The options have the fol- lowing meanings: --ll List process IDs in addition to the normal information. - --nn Display information only about jobs that have changed + --nn Display information only about jobs that have changed status since the user was last notified of their status. - --pp List only the process ID of the job's process group + --pp List only the process ID of the job's process group leader. --rr Display only running jobs. --ss Display only stopped jobs. - If _j_o_b_s_p_e_c is given, output is restricted to information about - that job. The return status is 0 unless an invalid option is - encountered or an invalid _j_o_b_s_p_e_c is supplied. + If _j_o_b_s_p_e_c is supplied, jjoobbss restricts output to information + about that job. The return status is 0 unless an invalid option + is encountered or an invalid _j_o_b_s_p_e_c is supplied. If the --xx option is supplied, jjoobbss replaces any _j_o_b_s_p_e_c found in _c_o_m_m_a_n_d or _a_r_g_s with the corresponding process group ID, and ex- - ecutes _c_o_m_m_a_n_d passing it _a_r_g_s, returning its exit status. + ecutes _c_o_m_m_a_n_d, passing it _a_r_g_s, returning its exit status. kkiillll [--ss _s_i_g_s_p_e_c | --nn _s_i_g_n_u_m | --_s_i_g_s_p_e_c] [_p_i_d | _j_o_b_s_p_e_c] ... kkiillll --ll|--LL [_s_i_g_s_p_e_c | _e_x_i_t___s_t_a_t_u_s] - Send the signal named by _s_i_g_s_p_e_c or _s_i_g_n_u_m to the processes + Send the signal specified by _s_i_g_s_p_e_c or _s_i_g_n_u_m to the processes named by _p_i_d or _j_o_b_s_p_e_c. _s_i_g_s_p_e_c is either a case-insensitive signal name such as SSIIGGKKIILLLL (with or without the SSIIGG prefix) or a signal number; _s_i_g_n_u_m is a signal number. If _s_i_g_s_p_e_c is not - present, then SSIIGGTTEERRMM is assumed. An argument of --ll lists the - signal names. If any arguments are supplied when --ll is given, - the names of the signals corresponding to the arguments are - listed, and the return status is 0. The _e_x_i_t___s_t_a_t_u_s argument to - --ll is a number specifying either a signal number or the exit - status of a process terminated by a signal. The --LL option is - equivalent to --ll. kkiillll returns true if at least one signal was - successfully sent, or false if an error occurs or an invalid op- - tion is encountered. + supplied, then kkiillll sends SSIIGGTTEERRMM. + + An argument of --ll lists the signal names. If any arguments are + supplied when --ll is given, kkiillll lists the names of the signals + corresponding to the arguments, and the return status is 0. The + _e_x_i_t___s_t_a_t_u_s argument to --ll is a number specifying either a sig- + nal number or the exit status of a process terminated by a sig- + nal. The --LL option is equivalent to --ll. + + kkiillll returns true if at least one signal was successfully sent, + or false if an error occurs or an invalid option is encountered. lleett _a_r_g [_a_r_g ...] - Each _a_r_g is an arithmetic expression to be evaluated (see AARRIITTHH-- + Each _a_r_g is evaluated as an arithmetic expression (see AARRIITTHH-- MMEETTIICC EEVVAALLUUAATTIIOONN in _b_a_s_h(1)). If the last _a_r_g evaluates to 0, - lleett returns 1; 0 is returned otherwise. + lleett returns 1; otherwise lleett returns 0. llooccaall [_o_p_t_i_o_n] [_n_a_m_e[=_v_a_l_u_e] ... | - ] - For each argument, a local variable named _n_a_m_e is created, and - assigned _v_a_l_u_e. The _o_p_t_i_o_n can be any of the options accepted - by ddeeccllaarree. When llooccaall is used within a function, it causes the + For each argument, create a local variable named _n_a_m_e and assign + it _v_a_l_u_e. The _o_p_t_i_o_n can be any of the options accepted by ddee-- + ccllaarree. When llooccaall is used within a function, it causes the variable _n_a_m_e to have a visible scope restricted to that func- - tion and its children. If _n_a_m_e is -, the set of shell options - is made local to the function in which llooccaall is invoked: shell - options changed using the sseett builtin inside the function after - the call to llooccaall are restored to their original values when the - function returns. The restore is effected as if a series of sseett - commands were executed to restore the values that were in place - before the function. With no operands, llooccaall writes a list of - local variables to the standard output. It is an error to use - llooccaall when not within a function. The return status is 0 unless - llooccaall is used outside a function, an invalid _n_a_m_e is supplied, - or _n_a_m_e is a readonly variable. - - llooggoouutt Exit a login shell. + tion and its children. It is an error to use llooccaall when not + within a function. + + If _n_a_m_e is -, it makes the set of shell options local to the + function in which llooccaall is invoked: any shell options changed + using the sseett builtin inside the function after the call to lloo-- + ccaall are restored to their original values when the function re- + turns. The restore is performed as if a series of sseett commands + were executed to restore the values that were in place before + the function. + + With no operands, llooccaall writes a list of local variables to the + standard output. + + The return status is 0 unless llooccaall is used outside a function, + an invalid _n_a_m_e is supplied, or _n_a_m_e is a readonly variable. + + llooggoouutt [[_n]] + Exit a login shell, returning a status of _n to the shell's par- + ent. mmaappffiillee [--dd _d_e_l_i_m] [--nn _c_o_u_n_t] [--OO _o_r_i_g_i_n] [--ss _c_o_u_n_t] [--tt] [--uu _f_d] [--CC _c_a_l_l_b_a_c_k] [--cc _q_u_a_n_t_u_m] [_a_r_r_a_y] rreeaaddaarrrraayy [--dd _d_e_l_i_m] [--nn _c_o_u_n_t] [--OO _o_r_i_g_i_n] [--ss _c_o_u_n_t] [--tt] [--uu _f_d] [--CC _c_a_l_l_b_a_c_k] [--cc _q_u_a_n_t_u_m] [_a_r_r_a_y] - Read lines from the standard input into the indexed array vari- - able _a_r_r_a_y, or from file descriptor _f_d if the --uu option is sup- - plied. The variable MMAAPPFFIILLEE is the default _a_r_r_a_y. Options, if + Read lines from the standard input, or from file descriptor _f_d + if the --uu option is supplied, into the indexed array variable + _a_r_r_a_y. The variable MMAAPPFFIILLEE is the default _a_r_r_a_y. Options, if supplied, have the following meanings: - --dd The first character of _d_e_l_i_m is used to terminate each - input line, rather than newline. If _d_e_l_i_m is the empty - string, mmaappffiillee will terminate a line when it reads a NUL - character. - --nn Copy at most _c_o_u_n_t lines. If _c_o_u_n_t is 0, all lines are - copied. - --OO Begin assigning to _a_r_r_a_y at index _o_r_i_g_i_n. The default + --dd Use the first character of _d_e_l_i_m to terminate each input + line, rather than newline. If _d_e_l_i_m is the empty string, + mmaappffiillee will terminate a line when it reads a NUL charac- + ter. + --nn Copy at most _c_o_u_n_t lines. If _c_o_u_n_t is 0, copy all lines. + --OO Begin assigning to _a_r_r_a_y at index _o_r_i_g_i_n. The default index is 0. --ss Discard the first _c_o_u_n_t lines read. - --tt Remove a trailing _d_e_l_i_m (default newline) from each line + --tt Remove a trailing _d_e_l_i_m (default newline) from each line read. - --uu Read lines from file descriptor _f_d instead of the stan- + --uu Read lines from file descriptor _f_d instead of the stan- dard input. - --CC Evaluate _c_a_l_l_b_a_c_k each time _q_u_a_n_t_u_m lines are read. The + --CC Evaluate _c_a_l_l_b_a_c_k each time _q_u_a_n_t_u_m lines are read. The --cc option specifies _q_u_a_n_t_u_m. - --cc Specify the number of lines read between each call to + --cc Specify the number of lines read between each call to _c_a_l_l_b_a_c_k. - If --CC is specified without --cc, the default quantum is 5000. + If --CC is specified without --cc, the default quantum is 5000. When _c_a_l_l_b_a_c_k 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. _c_a_l_l_b_a_c_k is evaluated after + element as additional arguments. _c_a_l_l_b_a_c_k is evaluated after the line is read but before the array element is assigned. - If not supplied with an explicit origin, mmaappffiillee will clear _a_r_- + If not supplied with an explicit origin, mmaappffiillee will clear _a_r_- _r_a_y before assigning to it. - mmaappffiillee returns successfully unless an invalid option or option - argument is supplied, _a_r_r_a_y is invalid or unassignable, or if - _a_r_r_a_y is not an indexed array. + mmaappffiillee returns zero unless an invalid option or option argument + is supplied, _a_r_r_a_y is invalid or unassignable, or if _a_r_r_a_y is + not an indexed array. ppooppdd [-nn] [+_n] [-_n] - Removes entries from the directory stack. The elements are num- - bered from 0 starting at the first directory listed by ddiirrss. - With no arguments, ppooppdd removes the top directory from the - stack, and changes to the new top directory. Arguments, if sup- - plied, have the following meanings: - --nn Suppresses the normal change of directory when removing - directories from the stack, so that only the stack is ma- - nipulated. - ++_n Removes the _nth entry counting from the left of the list - shown by ddiirrss, starting with zero, from the stack. For + Remove entries from the directory stack. The elements are num- + bered from 0 starting at the first directory listed by ddiirrss, so + ppooppdd is equivalent to With no arguments, ppooppdd removes the top + directory from the stack, and changes to the new top directory. + Arguments, if supplied, have the following meanings: + --nn Suppress the normal change of directory when removing di- + rectories from the stack, only manipulate the stack. + ++_n Remove the _nth entry counting from the left of the list + shown by ddiirrss, starting with zero, from the stack. For example: removes the first directory, the second. - --_n Removes the _nth entry counting from the right of the list + --_n Remove the _nth entry counting from the right of the list shown by ddiirrss, starting with zero. For example: removes the last directory, the next to last. @@ -943,19 +1048,18 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS to the directory at the top of the stack. If the ccdd fails, ppooppdd returns a non-zero value. - Otherwise, ppooppdd returns false if an invalid option is encoun- - tered, the directory stack is empty, or a non-existent directory - stack entry is specified. + Otherwise, ppooppdd returns false if an invalid option is supplied, + the directory stack is empty, or _n specifies a non-existent di- + rectory stack entry. - If the ppooppdd command is successful, bash runs ddiirrss to show the - final contents of the directory stack, and the return status is + If the ppooppdd command is successful, bbaasshh runs ddiirrss to show the + final contents of the directory stack, and the return status is 0. pprriinnttff [--vv _v_a_r] _f_o_r_m_a_t [_a_r_g_u_m_e_n_t_s] - Write the formatted _a_r_g_u_m_e_n_t_s to the standard output under the - control of the _f_o_r_m_a_t. The --vv option causes the output to be - assigned to the variable _v_a_r rather than being printed to the - standard output. + Write the formatted _a_r_g_u_m_e_n_t_s to the standard output under the + control of the _f_o_r_m_a_t. The --vv option assigns the output to the + variable _v_a_r rather than printing it to the standard output. The _f_o_r_m_a_t is a character string which contains three types of objects: plain characters, which are simply copied to standard @@ -980,12 +1084,12 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS causes pprriinnttff to output the date-time string resulting from using _d_a_t_e_f_m_t as a format string for _s_t_r_f_t_i_m_e(3). The corresponding _a_r_g_u_m_e_n_t 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- - gument is specified, conversion behaves as if -1 had been - given. This is an exception to the usual pprriinnttff behav- - ior. + number of seconds since the epoch. This format specifier + recognizes two special argument values: -1 represents the + current time, and -2 represents the time the shell was + invoked. If no argument is specified, conversion behaves + as if -1 had been supplied. This is an exception to the + usual pprriinnttff behavior. The %b, %q, and %T format specifiers all use the field width and precision arguments from the format specification and write that @@ -1017,70 +1121,70 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS ppuusshhdd [--nn] [+_n] [-_n] ppuusshhdd [--nn] [_d_i_r] - 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, ppuusshhdd exchanges the top two ele- - ments of the directory stack. Arguments, if supplied, have the + Add a directory to the top of the directory stack, or rotate the + stack, making the new top of the stack the current working di- + rectory. With no arguments, ppuusshhdd exchanges the top two ele- + ments of the directory stack. Arguments, if supplied, have the following meanings: - --nn Suppresses the normal change of directory when rotating - or adding directories to the stack, so that only the - stack is manipulated. - ++_n Rotates the stack so that the _nth directory (counting - from the left of the list shown by ddiirrss, starting with - zero) is at the top. + --nn Suppress the normal change of directory when rotating or + adding directories to the stack, only manipulate the + stack. + ++_n Rotate the stack so that the _nth directory (counting from + the left of the list shown by ddiirrss, starting with zero) + is at the top. --_n Rotates the stack so that the _nth directory (counting from the right of the list shown by ddiirrss, starting with zero) is at the top. - _d_i_r Adds _d_i_r to the directory stack at the top + _d_i_r Adds _d_i_r to the directory stack at the top. After the stack has been modified, if the --nn option was not sup- plied, ppuusshhdd uses the ccdd builtin to change to the directory at the top of the stack. If the ccdd fails, ppuusshhdd returns a non-zero value. - Otherwise, if no arguments are supplied, ppuusshhdd returns 0 unless - the directory stack is empty. When rotating the directory - stack, ppuusshhdd returns 0 unless the directory stack is empty or a - non-existent directory stack element is specified. + Otherwise, if no arguments are supplied, ppuusshhdd returns zero un- + less the directory stack is empty. When rotating the directory + stack, ppuusshhdd returns zero unless the directory stack is empty or + _n specifies a non-existent directory stack element. - If the ppuusshhdd command is successful, bash runs ddiirrss to show the + If the ppuusshhdd command is successful, bbaasshh runs ddiirrss to show the final contents of the directory stack. ppwwdd [--LLPP] - 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 --PP option is supplied or the --oo pphhyyssiiccaall option to the sseett builtin command - is enabled. If the --LL option is used, the pathname printed may - contain symbolic links. The return status is 0 unless an error + is enabled. If the --LL 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. rreeaadd [--EEeerrss] [--aa _a_n_a_m_e] [--dd _d_e_l_i_m] [--ii _t_e_x_t] [--nn _n_c_h_a_r_s] [--NN _n_c_h_a_r_s] [--pp _p_r_o_m_p_t] [--tt _t_i_m_e_o_u_t] [--uu _f_d] [_n_a_m_e ...] - One line is read from the standard input, or from the file de- - scriptor _f_d supplied as an argument to the --uu option, split into - words as described in _b_a_s_h (1) under WWoorrdd SSpplliittttiinngg, and the - first word is assigned to the first _n_a_m_e, the second word to the - second _n_a_m_e, and so on. If there are more words than names, the - remaining words and their intervening delimiters are assigned to + Read one line from the standard input, or from the file descrip- + tor _f_d supplied as an argument to the --uu option, split it into + words as described in _b_a_s_h (1) under WWoorrdd SSpplliittttiinngg, and assign + the first word to the first _n_a_m_e, the second word to the second + _n_a_m_e, and so on. If there are more words than names, the re- + maining words and their intervening delimiters are assigned to the last _n_a_m_e. If there are fewer words read from the input stream than names, the remaining names are assigned empty val- - ues. The characters in IIFFSS are used to split the line into - words using the same rules the shell uses for expansion (de- - scribed in _b_a_s_h (1) under WWoorrdd SSpplliittttiinngg). The backslash char- - acter (\\) may be used to remove any special meaning for the next - character read and for line continuation. Options, if supplied, - have the following meanings: + ues. The characters in the value of the IIFFSS variable are used + to split the line into words using the same rules the shell uses + for expansion (described in _b_a_s_h (1) under WWoorrdd SSpplliittttiinngg). The + backslash character (\\) removes any special meaning for the next + character read and is used for line continuation. + + Options, if supplied, have the following meanings: --aa _a_n_a_m_e The words are assigned to sequential indices of the array variable _a_n_a_m_e, starting at 0. _a_n_a_m_e is unset before any new values are assigned. Other _n_a_m_e arguments are ig- nored. --dd _d_e_l_i_m - The first character of _d_e_l_i_m is used to terminate the in- - put line, rather than newline. If _d_e_l_i_m is the empty - string, rreeaadd will terminate a line when it reads a NUL - character. + The first character of _d_e_l_i_m terminates the input line, + rather than newline. If _d_e_l_i_m is the empty string, rreeaadd + will terminate a line when it reads a NUL character. --ee If the standard input is coming from a terminal, rreeaadd uses rreeaaddlliinnee (see RREEAADDLLIINNEE in _b_a_s_h(1)) to obtain the line. Readline uses the current (or default, if line @@ -1093,117 +1197,129 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS uses bash's default completion, including programmable completion. --ii _t_e_x_t - If rreeaaddlliinnee is being used to read the line, _t_e_x_t is - placed into the editing buffer before editing begins. + If rreeaaddlliinnee is being used to read the line, rreeaadd places + _t_e_x_t into the editing buffer before editing begins. --nn _n_c_h_a_r_s rreeaadd returns after reading _n_c_h_a_r_s characters rather than - waiting for a complete line of input, but honors a delim- - iter if fewer than _n_c_h_a_r_s characters are read before the - delimiter. + waiting for a complete line of input, unless it encoun- + ters EOF or rreeaadd times out, but honors a delimiter if it + reads fewer than _n_c_h_a_r_s characters before the delimiter. --NN _n_c_h_a_r_s - rreeaadd returns after reading exactly _n_c_h_a_r_s characters - rather than waiting for a complete line of input, unless - EOF is encountered or rreeaadd times out. Delimiter charac- - ters encountered in the input are not treated specially - and do not cause rreeaadd to return until _n_c_h_a_r_s characters - are read. The result is not split on the characters in - IIFFSS; the intent is that the variable is assigned exactly - the characters read (with the exception of backslash; see - the --rr option below). + rreeaadd returns after reading exactly _n_c_h_a_r_s characters + rather than waiting for a complete line of input, unless + it encounters EOF or rreeaadd times out. Any delimiter char- + acters in the input are not treated specially and do not + cause rreeaadd to return until it has read _n_c_h_a_r_s characters. + The result is not split on the characters in IIFFSS; the in- + tent is that the variable is assigned exactly the charac- + ters read (with the exception of backslash; see the --rr + option below). --pp _p_r_o_m_p_t Display _p_r_o_m_p_t on standard error, without a trailing new- - line, before attempting to read any input. The prompt is - displayed only if input is coming from a terminal. + line, before attempting to read any input, but only if + input is coming from a terminal. --rr 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. --ss Silent mode. If input is coming from a terminal, charac- ters are not echoed. --tt _t_i_m_e_o_u_t - Cause rreeaadd to time out and return failure if a complete - line of input (or a specified number of characters) is - not read within _t_i_m_e_o_u_t seconds. _t_i_m_e_o_u_t may be a deci- - mal number with a fractional portion following the deci- - mal point. This option is only effective if rreeaadd is - reading input from a terminal, pipe, or other special - file; it has no effect when reading from regular files. - If rreeaadd times out, rreeaadd saves any partial input read into - the specified variable _n_a_m_e. If _t_i_m_e_o_u_t is 0, rreeaadd 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. - --uu _f_d Read input from file descriptor _f_d. - - Other than the case where _d_e_l_i_m is the empty string, rreeaadd ig- + Cause rreeaadd to time out and return failure if it does not + read a complete line of input (or a specified number of + characters) within _t_i_m_e_o_u_t seconds. _t_i_m_e_o_u_t may be a + decimal number with a fractional portion following the + decimal point. This option is only effective if rreeaadd is + reading input from a terminal, pipe, or other special + file; it has no effect when reading from regular files. + If rreeaadd times out, it saves any partial input read into + the specified variable _n_a_m_e, and the exit status is + greater than 128. If _t_i_m_e_o_u_t is 0, rreeaadd returns immedi- + ately, without trying to read any data. In this case, + the exit status is 0 if input is available on the speci- + fied file descriptor, or the read will return EOF, non- + zero otherwise. + --uu _f_d Read input from file descriptor _f_d instead of the stan- + dard input. + + Other than the case where _d_e_l_i_m is the empty string, rreeaadd ig- nores any NUL characters in the input. - If no _n_a_m_e_s are supplied, the line read, without the ending de- - limiter but otherwise unmodified, is assigned to the variable - RREEPPLLYY. The exit status is zero, unless end-of-file is encoun- - tered, rreeaadd 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 --uu. + If no _n_a_m_e_s are supplied, rreeaadd assigns the line read, without + the ending delimiter but otherwise unmodified, to the variable + RREEPPLLYY. + + The exit status is zero, unless end-of-file is encountered, rreeaadd + times out (in which case the status is greater than 128), a + variable assignment error (such as assigning to a readonly vari- + able) occurs, or an invalid file descriptor is supplied as the + argument to --uu. rreeaaddoonnllyy [--aaAAff] [--pp] [_n_a_m_e[=_w_o_r_d] ...] The given _n_a_m_e_s are marked readonly; the values of these _n_a_m_e_s - may not be changed by subsequent assignment. If the --ff option - is supplied, the functions corresponding to the _n_a_m_e_s are so - marked. The --aa option restricts the variables to indexed ar- - rays; the --AA option restricts the variables to associative ar- - rays. If both options are supplied, --AA takes precedence. If no - _n_a_m_e arguments are given, or if the --pp 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 --pp option causes output to be displayed in a format - that may be reused as input. If a variable name is followed by - =_w_o_r_d, the value of the variable is set to _w_o_r_d. The return - status is 0 unless an invalid option is encountered, one of the - _n_a_m_e_s is not a valid shell variable name, or --ff is supplied with - a _n_a_m_e that is not a function. + may not be changed by subsequent assignment or unset. If the --ff + option is supplied, each _n_a_m_e refers to a shell function. The + --aa option restricts the variables to indexed arrays; the --AA op- + tion restricts the variables to associative arrays. If both op- + tions are supplied, --AA takes precedence. If no _n_a_m_e arguments + are supplied, or if the --pp option is supplied, print a list of + all readonly names. The other options may be used to restrict + the output to a subset of the set of readonly names. The --pp op- + tion displays output in a format that may be reused as input. + + rreeaaddoonnllyy allows the value of a variable to be set at the same + time the readonly attribute is changed by following the variable + name with =_v_a_l_u_e. This sets the value of the variable is to + _v_a_l_u_e while modifying the readonly attribute. + + The return status is 0 unless an invalid option is encountered, + one of the _n_a_m_e_s is not a valid shell variable name, or --ff is + supplied with a _n_a_m_e that is not a function. rreettuurrnn [_n] - Causes a function to stop executing and return the value speci- - fied by _n to its caller. If _n is omitted, the return status is - that of the last command executed in the function body. If rree-- - ttuurrnn 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 rreettuurrnn is executed during a DDEEBBUUGG trap, the last - command used to determine the status is the last command exe- - cuted by the trap handler before rreettuurrnn was invoked. If rreettuurrnn - is used outside a function, but during execution of a script by - the .. (ssoouurrccee) command, it causes the shell to stop executing - that script and return either _n or the exit status of the last - command executed within the script as the exit status of the - script. If _n is supplied, the return value is its least signif- - icant 8 bits. The return status is non-zero if rreettuurrnn is sup- - plied a non-numeric argument, or is used outside a function and - not during execution of a script by .. or ssoouurrccee. Any command - associated with the RREETTUURRNN trap is executed before execution re- - sumes after the function or script. + Stop executing a shell function or sourced file and return the + value specified by _n to its caller. If _n is omitted, the return + status is that of the last command executed. If rreettuurrnn is exe- + cuted by a trap handler, the last command used to determine the + status is the last command executed before the trap handler. If + rreettuurrnn is executed during a DDEEBBUUGG trap, the last command used to + determine the status is the last command executed by the trap + handler before rreettuurrnn was invoked. + + When rreettuurrnn is used to terminate execution of a script being ex- + ecuted by the .. (ssoouurrccee) command, it causes the shell to stop + executing that script and return either _n or the exit status of + the last command executed within the script as the exit status + of the script. If _n is supplied, the return value is its least + significant 8 bits. + + Any command associated with the RREETTUURRNN trap is executed before + execution resumes after the function or script. + + The return status is non-zero if rreettuurrnn is supplied a non-nu- + meric argument, or is used outside a function and not during ex- + ecution of a script by .. or ssoouurrccee. sseett [--aabbeeffhhkkmmnnppttuuvvxxBBCCEEHHPPTT] [--oo _o_p_t_i_o_n_-_n_a_m_e] [----] [--] [_a_r_g ...] sseett [++aabbeeffhhkkmmnnppttuuvvxxBBCCEEHHPPTT] [++oo _o_p_t_i_o_n_-_n_a_m_e] [----] [--] [_a_r_g ...] sseett --oo - sseett ++oo 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- + sseett ++oo 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 _p_o_s_i_x _m_o_d_e, 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 _p_o_s_i_x _m_o_d_e, 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 $$11, - $$22, ..., $$_n. Options, if specified, have the following mean- + $$22, ..., $$_n. Options, if specified, have the following mean- ings: --aa 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. - --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. + --bb Report the status of terminated background jobs immedi- + ately, rather than before the next primary prompt or af- + ter a foreground command terminates. This is effective + only when job control is enabled. --ee Exit immediately if a _p_i_p_e_l_i_n_e (which may consist of a single _s_i_m_p_l_e _c_o_m_m_a_n_d), a _l_i_s_t, or a _c_o_m_p_o_u_n_d _c_o_m_m_a_n_d (see SSHHEELLLL GGRRAAMMMMAARR in _b_a_s_h(1)), exits with a non-zero @@ -1308,39 +1424,39 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS no _o_p_t_i_o_n_-_n_a_m_e, sseett prints a series of sseett commands to recreate the current option settings on the standard output. - --pp Turn on _p_r_i_v_i_l_e_g_e_d mode. In this mode, the $$EENNVV and - $$BBAASSHH__EENNVV files are not processed, shell functions are - not inherited from the environment, and the SSHHEELLLLOOPPTTSS, - BBAASSHHOOPPTTSS, CCDDPPAATTHH, and GGLLOOBBIIGGNNOORREE 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 --pp option is not sup- - plied, these actions are taken and the effective user id - is set to the real user id. If the --pp option is sup- - plied at startup, the effective user id is not reset. - Turning this option off causes the effective user and + --pp Turn on _p_r_i_v_i_l_e_g_e_d mode. In this mode, the shell does + not read the $$EENNVV and $$BBAASSHH__EENNVV files, shell functions + are not inherited from the environment, and the SSHHEELL-- + LLOOPPTTSS, BBAASSHHOOPPTTSS, CCDDPPAATTHH, and GGLLOOBBIIGGNNOORREE variables, if + they appear 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 --pp option is + not supplied, these actions are taken and the effective + user id is set to the real user id. If the --pp option is + supplied 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. --rr Enable restricted shell mode. This option cannot be un- set once it has been set. --tt Exit after reading and executing one command. --uu Treat unset variables and parameters other than the spe- - cial parameters and or array variables subscripted with - or as an error when performing parameter expansion. If - expansion is attempted on an unset variable or parame- - ter, the shell prints an error message, and, if not in- + cial parameters and or array variables subscripted with + or as an error when performing parameter expansion. If + expansion is attempted on an unset variable or parame- + ter, the shell prints an error message, and, if not in- teractive, exits with a non-zero status. --vv Print shell input lines as they are read. - --xx After expanding each _s_i_m_p_l_e _c_o_m_m_a_n_d, ffoorr command, ccaassee + --xx After expanding each _s_i_m_p_l_e _c_o_m_m_a_n_d, ffoorr command, ccaassee command, sseelleecctt command, or arithmetic ffoorr command, dis- - play the expanded value of PPSS44, followed by the command - and its expanded arguments or associated word list, to - standard error. - --BB The shell performs brace expansion (see BBrraaccee EExxppaannssiioonn + play the expanded value of PPSS44, followed by the command + and its expanded arguments or associated word list, to + the standard error. + --BB The shell performs brace expansion (see BBrraaccee EExxppaannssiioonn in _b_a_s_h(1)). This is on by default. - --CC If set, bbaasshh does not overwrite an existing file with - the >>, >>&&, and <<>> redirection operators. This may be - overridden when creating output files by using the redi- - rection operator >>|| instead of >>. + --CC If set, bbaasshh does not overwrite an existing file with + the >>, >>&&, and <<>> redirection operators. Using the + redirection operator >>|| instead of >> will override this + and force the creation of an output file. --EE If set, any trap on EERRRR is inherited by shell functions, command substitutions, and commands executed in a sub- shell environment. The EERRRR trap is normally not inher- @@ -1357,48 +1473,47 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS shell functions, command substitutions, and commands ex- ecuted in a subshell environment. The DDEEBBUUGG and RREETTUURRNN traps are normally not inherited in such cases. - ---- If no arguments follow this option, then the positional - parameters are unset. Otherwise, the positional parame- - ters are set to the _a_r_gs, even if some of them begin - with a --. - -- Signal the end of options, cause all remaining _a_r_gs to - be assigned to the positional parameters. The --xx and --vv - options are turned off. If there are no _a_r_gs, the posi- - tional parameters remain unchanged. + ---- If no arguments follow this option, unset the positional + parameters. Otherwise, set the positional parameters to + the _a_r_gs, even if some of them begin with a --. + -- Signal the end of options, and assign all remaining _a_r_gs + to the positional parameters. The --xx and --vv options are + turned off. If there are no _a_r_gs, the positional para- + meters remain unchanged. 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 $$--. The re- - turn status is always true unless an invalid option is encoun- + turn status is always zero unless an invalid option is encoun- tered. sshhiifftt [_n] - The positional parameters from _n+1 ... are renamed to $$11 ........ - Parameters represented by the numbers $$## down to $$##-_n+1 are un- - set. _n must be a non-negative number less than or equal to $$##. - If _n is 0, no parameters are changed. If _n is not given, it is - assumed to be 1. If _n is greater than $$##, the positional para- - meters are not changed. The return status is greater than zero - if _n is greater than $$## or less than zero; otherwise 0. + Rename positional parameters from _n+1 ... to $$11 ........ Parameters + represented by the numbers $$## down to $$##-_n+1 are unset. _n must + be a non-negative number less than or equal to $$##. If _n is 0, + no parameters are changed. If _n is not given, it is assumed to + be 1. If _n is greater than $$##, the positional parameters are + not changed. The return status is greater than zero if _n is + greater than $$## or less than zero; otherwise 0. sshhoopptt [--ppqqssuu] [--oo] [_o_p_t_n_a_m_e ...] - 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 --oo option is used, those available with the --oo option to the sseett - builtin command. With no options, or with the --pp option, a list - of all settable options is displayed, with an indication of - whether or not each is set; if _o_p_t_n_a_m_e_s are supplied, the output - is restricted to those options. The --pp option causes output to - be displayed in a form that may be reused as input. Other op- - tions have the following meanings: + builtin command. With no options, or with the --pp option, dis- + play a list of all settable options, with an indication of + whether or not each is set; if any _o_p_t_n_a_m_e_s are supplied, the + output is restricted to those options. The --pp option displays + output in a form that may be reused as input. Other options + have the following meanings: --ss Enable (set) each _o_p_t_n_a_m_e. --uu Disable (unset) each _o_p_t_n_a_m_e. - --qq Suppresses normal output (quiet mode); the return status + --qq Suppresses normal output (quiet mode); the return status indicates whether the _o_p_t_n_a_m_e is set or unset. If multi- - ple _o_p_t_n_a_m_e arguments are given with --qq, the return sta- - tus is zero if all _o_p_t_n_a_m_e_s are enabled; non-zero other- - wise. + ple _o_p_t_n_a_m_e arguments are supplied with --qq, the return + status is zero if all _o_p_t_n_a_m_e_s are enabled; non-zero oth- + erwise. --oo Restricts the values of _o_p_t_n_a_m_e to be those defined for the --oo option to the sseett builtin. @@ -1433,30 +1548,30 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS If set, an argument to the ccdd builtin command that is not a directory is assumed to be the name of a variable whose value is the directory to change to. - ccddssppeellll If set, minor errors in the spelling of a directory com- - ponent in a ccdd 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 - shells. + ccddssppeellll If set, the ccdd command attempts to correct minor errors + in the spelling of a directory component. Minor errors + include transposed characters, a missing character, and + one extra character. If ccdd corrects the directory name, + it prints the corrected filename, and the command pro- + ceeds. This option is only used by interactive shells. cchheecckkhhaasshh If set, bbaasshh 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- - formed. + command no longer exists, bbaasshh performs a normal path + search. cchheecckkjjoobbss If set, bbaasshh lists the status of any stopped and running 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 - (see JJOOBB CCOONNTTRROOLL in _b_a_s_h(1)). The shell always post- - pones exiting if any jobs are stopped. + are running, bbaasshh defers the exit until a second exit is + attempted without an intervening command (see JJOOBB CCOONN-- + TTRROOLL in _b_a_s_h(1)). The shell always postpones exiting if + any jobs are stopped. cchheecckkwwiinnssiizzee - If set, bbaasshh checks the window size after each external - (non-builtin) command and, if necessary, updates the - values of LLIINNEESS and CCOOLLUUMMNNSS. This option is enabled by - default. + If set, bbaasshh checks the window size after each external + (non-builtin) command and, if necessary, updates the + values of LLIINNEESS and CCOOLLUUMMNNSS, using the file descriptor + associated with the standard error if it is a terminal. + This option is enabled by default. ccmmddhhiisstt If set, bbaasshh 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 @@ -1508,8 +1623,8 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS eexxeeccffaaiill If set, a non-interactive shell will not exit if it can- not execute the file specified as an argument to the - eexxeecc builtin command. An interactive shell does not - exit if eexxeecc fails. + eexxeecc builtin. An interactive shell does not exit if + eexxeecc fails. eexxppaanndd__aalliiaasseess If set, aliases are expanded as described in _b_a_s_h(1) un- @@ -1548,34 +1663,34 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS shell functions, and subshells invoked with (( _c_o_m_m_a_n_d )) inherit the EERRRR trap. - eexxttgglloobb If set, the extended pattern matching features described - in _b_a_s_h(1) under PPaatthhnnaammee EExxppaannssiioonn are enabled. + eexxttgglloobb If set, enable the extended pattern matching features + described in _b_a_s_h(1) under PPaatthhnnaammee EExxppaannssiioonn. eexxttqquuoottee - If set, $$_s_t_r_i_n_g and $$_s_t_r_i_n_g quoting is performed within + If set, $$_s_t_r_i_n_g and $$_s_t_r_i_n_g quoting is performed within $${{_p_a_r_a_m_e_t_e_r}} expansions enclosed in double quotes. This option is enabled by default. ffaaiillgglloobb - 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. ffoorrccee__ffiiggnnoorree - If set, the suffixes specified by the FFIIGGNNOORREE shell - variable cause words to be ignored when performing word + If set, the suffixes specified by the FFIIGGNNOORREE shell + variable cause words to be ignored when performing word completion even if the ignored words are the only possi- - ble completions. See SSHHEELLLL VVAARRIIAABBLLEESS in _b_a_s_h(1) for a - description of FFIIGGNNOORREE. This option is enabled by de- + ble completions. See SSHHEELLLL VVAARRIIAABBLLEESS in _b_a_s_h(1) for a + description of FFIIGGNNOORREE. This option is enabled by de- fault. gglloobbaasscciiiirraannggeess - If set, range expressions used in pattern matching - bracket expressions (see PPaatttteerrnn MMaattcchhiinngg in _b_a_s_h(1)) + If set, range expressions used in pattern matching + bracket expressions (see PPaatttteerrnn MMaattcchhiinngg in _b_a_s_h(1)) behave as if in the traditional C locale when performing - comparisons. That is, the current locale's collating - sequence is not taken into account, so bb will not col- - late between AA and BB, and upper-case and lower-case - ASCII characters will collate together. + comparisons. That is, pattern matching does not take + the current locale's collating sequence into account, so + bb will not collate between AA and BB, and upper-case and + lower-case ASCII characters will collate together. gglloobbsskkiippddoottss If set, pathname expansion will never match the file- @@ -1598,20 +1713,21 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS its, rather than overwriting the file. hhiissttrreeeeddiitt - If set, and rreeaaddlliinnee is being used, a user is given the - opportunity to re-edit a failed history substitution. + If set, and rreeaaddlliinnee is being used, the user is given + the opportunity to re-edit a failed history substitu- + tion. hhiissttvveerriiffyy - If set, and rreeaaddlliinnee 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 rreeaaddlliinnee 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 rreeaaddlliinnee editing buffer, allowing further modi- fication. hhoossttccoommpplleettee If set, and rreeaaddlliinnee is being used, bbaasshh will attempt to - perform hostname completion when a word containing a @@ - is being completed (see CCoommpplleettiinngg under RREEAADDLLIINNEE in + perform hostname completion when a word containing a @@ + is being completed (see CCoommpplleettiinngg under RREEAADDLLIINNEE in _b_a_s_h(1)). This is enabled by default. hhuuppoonneexxiitt @@ -1619,23 +1735,23 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS active login shell exits. iinnhheerriitt__eerrrreexxiitt - If set, command substitution inherits the value of the - eerrrreexxiitt option, instead of unsetting it in the subshell - environment. This option is enabled when _p_o_s_i_x _m_o_d_e is + If set, command substitution inherits the value of the + eerrrreexxiitt option, instead of unsetting it in the subshell + environment. This option is enabled when _p_o_s_i_x _m_o_d_e is enabled. iinntteerraaccttiivvee__ccoommmmeennttss - If set, allow a word beginning with ## to cause that word - and all remaining characters on that line to be ignored - in an interactive shell (see CCOOMMMMEENNTTSS in _b_a_s_h(1)). This - option is enabled by default. + In an interactive shell, a word beginning with ## causes + that word and all remaining characters on that line to + be ignored, as in a non-interactive shell (see CCOOMMMMEENNTTSS + in _b_a_s_h(1)). This option is enabled by default. llaassttppiippee - 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. - lliitthhiisstt If set, and the ccmmddhhiisstt option is enabled, multi-line + lliitthhiisstt If set, and the ccmmddhhiisstt option is enabled, multi-line commands are saved to the history with embedded newlines rather than using semicolon separators where possible. @@ -1646,9 +1762,9 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS tribute is not inherited. llooccaallvvaarr__uunnsseett - If set, calling uunnsseett on local variables in previous - function scopes marks them so subsequent lookups find - them unset until that function returns. This is identi- + If set, calling uunnsseett 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. @@ -1663,110 +1779,110 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS displays the message nnoo__eemmppttyy__ccmmdd__ccoommpplleettiioonn - If set, and rreeaaddlliinnee is being used, bbaasshh will not at- - tempt to search the PPAATTHH for possible completions when - completion is attempted on an empty line. + If set, and rreeaaddlliinnee is being used, bbaasshh does not search + PPAATTHH for possible completions when completion is at- + tempted on an empty line. nnooccaasseegglloobb - If set, bbaasshh matches filenames in a case-insensitive + If set, bbaasshh matches filenames in a case-insensitive fashion when performing pathname expansion (see PPaatthhnnaammee EExxppaannssiioonn in _b_a_s_h(1)). nnooccaasseemmaattcchh - If set, bbaasshh matches patterns in a case-insensitive + If set, bbaasshh matches patterns in a case-insensitive fashion when performing matching while executing ccaassee or [[[[ 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. nnooeexxppaanndd__ttrraannssllaattiioonn - If set, bbaasshh encloses the translated results of $$... - quoting in single quotes instead of double quotes. If + If set, bbaasshh encloses the translated results of $$... + quoting in single quotes instead of double quotes. If the string is not translated, this has no effect. nnuullllgglloobb If set, pathname expansion patterns which match no files - (see PPaatthhnnaammee EExxppaannssiioonn in _b_a_s_h(1)) expand to nothing + (see PPaatthhnnaammee EExxppaannssiioonn in _b_a_s_h(1)) expand to nothing and are removed, rather than expanding to themselves. ppaattssuubb__rreeppllaacceemmeenntt If set, bbaasshh expands occurrences of && in the replacement - string of pattern substitution to the text matched by - the pattern, as described under PPaarraammeetteerr EExxppaannssiioonn in + string of pattern substitution to the text matched by + the pattern, as described under PPaarraammeetteerr EExxppaannssiioonn in _b_a_s_h(1). This option is enabled by default. pprrooggccoommpp - If set, the programmable completion facilities (see PPrroo-- - ggrraammmmaabbllee CCoommpplleettiioonn in _b_a_s_h(1)) are enabled. This op- - tion is enabled by default. + If set, enable the programmable completion facilities + (see PPrrooggrraammmmaabbllee CCoommpplleettiioonn in _b_a_s_h(1)). This option + is enabled by default. pprrooggccoommpp__aalliiaass If set, and programmable completion is enabled, bbaasshh treats a command name that doesn't have any completions - as a possible alias and attempts alias expansion. If it - has an alias, bbaasshh attempts programmable completion us- + as a possible alias and attempts alias expansion. If it + has an alias, bbaasshh attempts programmable completion us- ing the command word resulting from the expanded alias. pprroommppttvvaarrss If set, prompt strings undergo parameter expansion, com- - mand substitution, arithmetic expansion, and quote re- - moval after being expanded as described in PPRROOMMPPTTIINNGG in + mand substitution, arithmetic expansion, and quote re- + moval after being expanded as described in PPRROOMMPPTTIINNGG in _b_a_s_h(1). This option is enabled by default. rreessttrriicctteedd__sshheellll - The shell sets this option if it is started in re- - stricted mode (see RREESSTTRRIICCTTEEDD SSHHEELLLL in _b_a_s_h(1)). The - value may not be changed. This is not reset when the - startup files are executed, allowing the startup files + The shell sets this option if it is started in re- + stricted mode (see RREESSTTRRIICCTTEEDD SSHHEELLLL in _b_a_s_h(1)). The + value may not be changed. This is not reset when the + startup files are executed, allowing the startup files to discover whether or not a shell is restricted. sshhiifftt__vveerrbboossee - If set, the sshhiifftt builtin prints an error message when + If set, the sshhiifftt builtin prints an error message when the shift count exceeds the number of positional parame- ters. ssoouurrcceeppaatthh If set, the .. (ssoouurrccee) builtin uses the value of PPAATTHH to - find the directory containing the file supplied as an - argument when the --pp option is not supplied. This op- + find the directory containing the file supplied as an + argument when the --pp option is not supplied. This op- tion is enabled by default. vvaarrrreeddiirr__cclloossee - If set, the shell automatically closes file descriptors - assigned using the _{_v_a_r_n_a_m_e_} redirection syntax (see - RREEDDIIRREECCTTIIOONN in _b_a_s_h(1)) instead of leaving them open + If set, the shell automatically closes file descriptors + assigned using the _{_v_a_r_n_a_m_e_} redirection syntax (see + RREEDDIIRREECCTTIIOONN in _b_a_s_h(1)) instead of leaving them open when the command completes. xxppgg__eecchhoo - If set, the eecchhoo builtin expands backslash-escape se- - quences by default. If the ppoossiixx shell option is also + If set, the eecchhoo builtin expands backslash-escape se- + quences by default. If the ppoossiixx shell option is also enabled, eecchhoo does not interpret any options. ssuussppeenndd [--ff] - Suspend the execution of this shell until it receives a SSIIGGCCOONNTT - signal. A login shell, or a shell without job control enabled, - cannot be suspended; the --ff 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 --ff is - not supplied. + Suspend the execution of this shell until it receives a SSIIGGCCOONNTT + signal. A login shell, or a shell without job control enabled, + cannot be suspended; the --ff option will 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 --ff is not sup- + plied. tteesstt _e_x_p_r [[ _e_x_p_r ]] Return a status of 0 (true) or 1 (false) depending on the evalu- - ation of the conditional expression _e_x_p_r. Each operator and - operand must be a separate argument. Expressions are composed - of the primaries described in _b_a_s_h(1) under CCOONNDDIITTIIOONNAALL EEXXPPRREESS-- + ation of the conditional expression _e_x_p_r. Each operator and + operand must be a separate argument. Expressions are composed + of the primaries described in _b_a_s_h(1) under CCOONNDDIITTIIOONNAALL EEXXPPRREESS-- SSIIOONNSS. tteesstt does not accept any options, nor does it accept and ignore an argument of ---- 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- - dence is used when there are five or more arguments. + 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. tteesstt uses operator + precedence when there are five or more arguments. !! _e_x_p_r True if _e_x_p_r is false. (( _e_x_p_r )) Returns the value of _e_x_p_r. This may be used to override - the normal precedence of operators. + normal operator precedence. _e_x_p_r_1 -aa _e_x_p_r_2 True if both _e_x_p_r_1 and _e_x_p_r_2 are true. _e_x_p_r_1 -oo _e_x_p_r_2 @@ -1805,138 +1921,151 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS The following conditions are applied in the order listed. If the first argument is !!, 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 (( and - the fourth argument is exactly )), the result is the two- - argument test of the second and third arguments. Other- - wise, the expression is parsed and evaluated according to + arguments. If the first argument is exactly (( and the + fourth argument is exactly )), the result is the two-argu- + ment test of the second and third arguments. Otherwise, + 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 the shell is in _p_o_s_i_x _m_o_d_e, or if the expression is part of the [[[[ command, the << and >> operators sort using the current lo- - cale. If the shell is not in _p_o_s_i_x _m_o_d_e, the tteesstt and [[ com- + cale. If the shell is not in _p_o_s_i_x _m_o_d_e, the tteesstt and [[ com- mands sort lexicographically using ASCII ordering. + The historical operator-precedence parsing with 4 or more + arguments can lead to ambiguities when it encounters + strings that look like primaries. The POSIX standard has + deprecated the --aa and --oo primaries and enclosing expres- + sions within parentheses. Scripts should no longer use + them. It's much more reliable to restrict test invoca- + tions to a single primary, and to replace uses of --aa and + --oo with the shell's &&&& and |||| list operators. + ttiimmeess Print the accumulated user and system times for the shell and for processes run from the shell. The return status is 0. - ttrraapp [--llpp] [[_a_c_t_i_o_n] _s_i_g_s_p_e_c ...] + ttrraapp [--PPllpp] [[_a_c_t_i_o_n] _s_i_g_s_p_e_c ...] The _a_c_t_i_o_n is a command that is read and executed when the shell - receives signal(s) _s_i_g_s_p_e_c. If _a_c_t_i_o_n is absent (and there is a - single _s_i_g_s_p_e_c) or --, each specified signal is reset to its - original disposition (the value it had upon entrance to the - shell). If _a_c_t_i_o_n is the null string the signal specified by - each _s_i_g_s_p_e_c is ignored by the shell and by the commands it in- - vokes. - - If no arguments are supplied, ttrraapp displays the actions associ- + receives any of the signals _s_i_g_s_p_e_c. If _a_c_t_i_o_n is absent (and + there is a single _s_i_g_s_p_e_c) or --, each specified _s_i_g_s_p_e_c is reset + to the value it had when the shell was started. If _a_c_t_i_o_n is + the null string the signal specified by each _s_i_g_s_p_e_c is ignored + by the shell and by the commands it invokes. + + If no arguments are supplied, ttrraapp displays the actions associ- ated with each trapped signal as a set of ttrraapp commands that can - be reused as shell input to restore the current signal disposi- - tions. If --pp is given, and _a_c_t_i_o_n is not present, then ttrraapp - displays the actions associated with each _s_i_g_s_p_e_c or, if none + be reused as shell input to restore the current signal disposi- + tions. If --pp is given, and _a_c_t_i_o_n is not present, then ttrraapp + displays the actions associated with each _s_i_g_s_p_e_c or, if none are supplied, for all trapped signals, as a set of ttrraapp commands - that can be reused as shell input to restore the current signal - dispositions. The --PP option behaves similarly, but displays - only the actions associated with each _s_i_g_s_p_e_c argument. --PP re- - quires at least one _s_i_g_s_p_e_c argument. The --PP or --pp options to - ttrraapp may be used in a subshell environment (e.g., command sub- - stitution) and, as long as they are used before ttrraapp is used to - change a signal's handling, will display the state of its par- - ent's traps. - - The --ll option causes ttrraapp to print a list of signal names and - their corresponding numbers. Each _s_i_g_s_p_e_c is either a signal - name defined in <_s_i_g_n_a_l_._h>, or a signal number. Signal names - are case insensitive and the SSIIGG prefix is optional. - - If a _s_i_g_s_p_e_c is EEXXIITT (0) the command _a_c_t_i_o_n is executed on exit - from the shell. If a _s_i_g_s_p_e_c is DDEEBBUUGG, the command _a_c_t_i_o_n is - executed before every _s_i_m_p_l_e _c_o_m_m_a_n_d, _f_o_r command, _c_a_s_e command, - _s_e_l_e_c_t command, (( arithmetic command, [[ conditional command, - arithmetic _f_o_r command, and before the first command executes in - a shell function (see SSHHEELLLL GGRRAAMMMMAARR in _b_a_s_h(1)). Refer to the - description of the eexxttddeebbuugg option to the sshhoopptt builtin for de- - tails of its effect on the DDEEBBUUGG trap. If a _s_i_g_s_p_e_c is RREETTUURRNN, - the command _a_c_t_i_o_n is executed each time a shell function or a - script executed with the .. or ssoouurrccee builtins finishes execut- - ing. - - If a _s_i_g_s_p_e_c is EERRRR, the command _a_c_t_i_o_n 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 EERRRR trap is not executed if the + that can be reused as shell input to restore the current signal + dispositions. The --PP option behaves similarly, but displays + only the actions associated with each _s_i_g_s_p_e_c argument. --PP re- + quires at least one _s_i_g_s_p_e_c argument. The --PP or --pp options may + be used in a subshell environment (e.g., command substitution) + and, as long as they are used before ttrraapp is used to change a + signal's handling, will display the state of its parent's traps. + + The --ll option prints a list of signal names and their corre- + sponding numbers. Each _s_i_g_s_p_e_c is either a signal name defined + in <_s_i_g_n_a_l_._h>, or a signal number. Signal names are case insen- + sitive and the SSIIGG prefix is optional. If --ll is supplied with + no _s_i_g_s_p_e_c arguments, it prints a list of valid signal names. + + If a _s_i_g_s_p_e_c is EEXXIITT (0), _a_c_t_i_o_n is executed on exit from the + shell. If a _s_i_g_s_p_e_c is DDEEBBUUGG, _a_c_t_i_o_n is executed before every + _s_i_m_p_l_e _c_o_m_m_a_n_d, _f_o_r command, _c_a_s_e command, _s_e_l_e_c_t command, (( + arithmetic command, [[ conditional command, arithmetic _f_o_r com- + mand, and before the first command executes in a shell function + (see SSHHEELLLL GGRRAAMMMMAARR in _b_a_s_h(1)). Refer to the description of the + eexxttddeebbuugg shell option (see sshhoopptt in _b_a_s_h(1)) for details of its + effect on the DDEEBBUUGG trap. If a _s_i_g_s_p_e_c is RREETTUURRNN, _a_c_t_i_o_n is ex- + ecuted each time a shell function or a script executed with the + .. or ssoouurrccee builtins finishes executing. + + If a _s_i_g_s_p_e_c is EERRRR, _a_c_t_i_o_n 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 EERRRR trap is not executed if the failed command is part of the command list immediately following - a wwhhiillee or uunnttiill keyword, part of the test in an _i_f statement, + a wwhhiillee or uunnttiill keyword, part of the test in an _i_f statement, part of a command executed in a &&&& or |||| list except the command - following the final &&&& or ||||, any command in a pipeline but the - last, or if the command's return value is being inverted using - !!. These are the same conditions obeyed by the eerrrreexxiitt (--ee) op- - tion. + following the final &&&& or ||||, any command in a pipeline but the + last (subject to the state of the ppiippeeffaaiill shell option), or if + the command's return value is being inverted using !!. These are + the same conditions obeyed by the eerrrreexxiitt (--ee) option. 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 _s_i_g_s_p_e_c is invalid; otherwise ttrraapp returns true. ttrruuee Does nothing, returns a 0 status. ttyyppee [--aaffttppPP] _n_a_m_e [_n_a_m_e ...] - With no options, indicate how each _n_a_m_e would be interpreted if - used as a command name. If the --tt option is used, ttyyppee prints a - string which is one of _a_l_i_a_s, _k_e_y_w_o_r_d, _f_u_n_c_t_i_o_n, _b_u_i_l_t_i_n, or - _f_i_l_e if _n_a_m_e is an alias, shell reserved word, function, - builtin, or executable disk file, respectively. If the _n_a_m_e is - not found, then nothing is printed, and ttyyppee returns a non-zero - exit status. If the --pp option is used, ttyyppee either returns the - name of the executable file that would be found by searching - $$PPAATTHH if _n_a_m_e were specified as a command name, or nothing if - would not return _f_i_l_e. The --PP option forces a PPAATTHH search for - each _n_a_m_e, even if would not return _f_i_l_e. If a command is - hashed, --pp and --PP print the hashed value, which is not necessar- - ily the file that appears first in PPAATTHH. If the --aa option is - used, ttyyppee prints all of the places that contain a command named - _n_a_m_e. This includes aliases, reserved words, functions, and - builtins, but the path search options (--pp and --PP) can be sup- - plied to restrict the output to executable files. ttyyppee does not - consult the table of hashed commands when using --aa with --pp, and - only performs a PPAATTHH search for _n_a_m_e. The --ff option suppresses - shell function lookup, as with the ccoommmmaanndd builtin. ttyyppee re- - turns true if all of the arguments are found, false if any are - not found. + Indicate how each _n_a_m_e would be interpreted if used as a command + name. + + If the --tt option is used, ttyyppee prints a string which is one of + _a_l_i_a_s, _k_e_y_w_o_r_d, _f_u_n_c_t_i_o_n, _b_u_i_l_t_i_n, or _f_i_l_e if _n_a_m_e is an alias, + shell reserved word, function, builtin, or executable file, re- + spectively. If the _n_a_m_e is not found, ttyyppee prints nothing and + returns a non-zero exit status. + + If the --pp option is used, ttyyppee either returns the pathname of + the executable file that would be found by searching $$PPAATTHH for + _n_a_m_e or nothing if would not return _f_i_l_e. The --PP option forces + a PPAATTHH search for each _n_a_m_e, even if would not return _f_i_l_e. If + _n_a_m_e is present in the table of hashed commands, --pp and --PP print + the hashed value, which is not necessarily the file that appears + first in PPAATTHH. + + If the --aa option is used, ttyyppee prints all of the places that + contain a command named _n_a_m_e. This includes aliases, reserved + words, functions, and builtins, but the path search options (--pp + and --PP) can be supplied to restrict the output to executable + files. ttyyppee does not consult the table of hashed commands when + using --aa with --pp, and only performs a PPAATTHH search for _n_a_m_e. + + The --ff option suppresses shell function lookup, as with the ccoomm-- + mmaanndd builtin. ttyyppee returns true if all of the arguments are + found, false if any are not found. uulliimmiitt [--HHSS] --aa uulliimmiitt [--HHSS] [--bbccddeeffiikkllmmnnppqqrrssttuuvvxxPPRRTT [_l_i_m_i_t]] Provides control over the resources available to the shell and - to processes started by it, on systems that allow such control. + to processes it starts, on systems that allow such control. + The --HH and --SS 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 --HH nor --SS is speci- - fied, both the soft and hard limits are set. The value of _l_i_m_i_t - can be a number in the unit specified for the resource or one of - the special values hhaarrdd, ssoofftt, or uunnlliimmiitteedd, which stand for the - current hard limit, the current soft limit, and no limit, re- - spectively. If _l_i_m_i_t is omitted, the current value of the soft - limit of the resource is printed, unless the --HH option is given. - 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: - --aa All current limits are reported; no limits are 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 --HH nor --SS is speci- + fied, uulliimmiitt sets both the soft and hard limits. + + The value of _l_i_m_i_t can be a number in the unit specified for the + resource or one of the special values hhaarrdd, ssoofftt, or uunnlliimmiitteedd, + which stand for the current hard limit, the current soft limit, + and no limit, respectively. If _l_i_m_i_t is omitted, uulliimmiitt prints + the current value of the soft limit of the resource, unless the + --HH option is given. When more than one resource is specified, + the limit name and unit, if appropriate, are printed before the + value. Other options are interpreted as follows: + --aa Report all current limits; no limits are set --bb The maximum socket buffer size --cc The maximum size of core files created --dd The maximum size of a process's data segment --ee The maximum scheduling priority ( - --ff The maximum size of files written by the shell and its + --ff The maximum size of files written by the shell and its children --ii The maximum number of pending signals --kk The maximum number of kqueues that may be allocated --ll The maximum size that may be locked into memory - --mm The maximum resident set size (many systems do not honor + --mm The maximum resident set size (many systems do not honor this limit) --nn The maximum number of open file descriptors (most systems do not allow this value to be set) @@ -1945,67 +2074,70 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS --rr The maximum real-time scheduling priority --ss The maximum stack size --tt The maximum amount of cpu time in seconds - --uu The maximum number of processes available to a single + --uu The maximum number of processes available to a single user - --vv The maximum amount of virtual memory available to the + --vv The maximum amount of virtual memory available to the shell and, on some systems, to its children --xx The maximum number of file locks --PP The maximum number of pseudoterminals - --RR The maximum time a real-time process can run before + --RR The maximum time a real-time process can run before blocking, in microseconds --TT The maximum number of threads - If _l_i_m_i_t is given, and the --aa option is not used, _l_i_m_i_t is the - new value of the specified resource. If no option is given, - then --ff is assumed. Values are in 1024-byte increments, except - for --tt, which is in seconds; --RR, which is in microseconds; --pp, - which is in units of 512-byte blocks; --PP, --TT, --bb, --kk, --nn, and - --uu, which are unscaled values; and, when in posix mode, --cc and - --ff, 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. + If _l_i_m_i_t is supplied, and the --aa option is not used, _l_i_m_i_t is + the new value of the specified resource. If no option is sup- + plied, then --ff is assumed. + + Values are in 1024-byte increments, except for --tt, which is in + seconds; --RR, which is in microseconds; --pp, which is in units of + 512-byte blocks; --PP, --TT, --bb, --kk, --nn, and --uu, which are unscaled + values; and, when in posix mode, --cc and --ff, 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. uummaasskk [--pp] [--SS] [_m_o_d_e] - The user file-creation mask is set to _m_o_d_e. If _m_o_d_e 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 - _c_h_m_o_d(1). If _m_o_d_e is omitted, the current value of the mask is - printed. The --SS option causes the mask to be printed in sym- - bolic form; the default output is an octal number. If the --pp - option is supplied, and _m_o_d_e 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 _m_o_d_e argument was supplied, - and false otherwise. + Set the user file-creation mask to _m_o_d_e. If _m_o_d_e begins with a + digit, it is interpreted as an octal number; otherwise it is in- + terpreted as a symbolic mode mask similar to that accepted by + _c_h_m_o_d(1). If _m_o_d_e is omitted, uummaasskk prints the current value of + the mask. The --SS option without a _m_o_d_e argument prints the mask + in a symbolic format; the default output is an octal number. If + the --pp option is supplied, and _m_o_d_e is omitted, the output is in + a form that may be reused as input. The return status is zero + if the mode was successfully changed or if no _m_o_d_e argument was + supplied, and non-zero otherwise. uunnaalliiaass [-aa] [_n_a_m_e ...] Remove each _n_a_m_e from the list of defined aliases. If --aa is - supplied, all alias definitions are removed. The return value - is true unless a supplied _n_a_m_e is not a defined alias. + supplied, remove all alias definitions. The return value is + true unless a supplied _n_a_m_e is not a defined alias. uunnsseett [-ffvv] [-nn] [_n_a_m_e ...] For each _n_a_m_e, remove the corresponding variable or function. If the --vv option is given, each _n_a_m_e refers to a shell variable, - and that variable is removed. Read-only variables may not be - unset. If --ff is specified, each _n_a_m_e refers to a shell func- - tion, and the function definition is removed. If the --nn option - is supplied, and _n_a_m_e is a variable with the _n_a_m_e_r_e_f attribute, - _n_a_m_e will be unset rather than the variable it references. --nn - has no effect if the --ff option is supplied. If no options are - supplied, each _n_a_m_e 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 BBAASSHH__AALLIIAASSEESS, - BBAASSHH__AARRGGVV00, BBAASSHH__CCMMDDSS, BBAASSHH__CCOOMMMMAANNDD, BBAASSHH__SSUUBBSSHHEELLLL, BBAASSHHPPIIDD, - CCOOMMPP__WWOORRDDBBRREEAAKKSS, DDIIRRSSTTAACCKK, EEPPOOCCHHRREEAALLTTIIMMEE, EEPPOOCCHHSSEECCOONNDDSS, FFUUNNCC-- - NNAAMMEE, GGRROOUUPPSS, HHIISSTTCCMMDD, LLIINNEENNOO, RRAANNDDOOMM, SSEECCOONNDDSS, or SSRRAANNDDOOMM are - unset, they lose their special properties, even if they are sub- - sequently reset. The exit status is true unless a _n_a_m_e is read- - only or may not be unset. + and that variable is removed. If --ff is specified, each _n_a_m_e + refers to a shell function, and the function definition is re- + moved. If the --nn option is supplied, and _n_a_m_e is a variable + with the _n_a_m_e_r_e_f attribute, _n_a_m_e will be unset rather than the + variable it references. --nn has no effect if the --ff option is + supplied. Read-only variables and functions may not be unset. + When variables or functions are removed, they are also removed + from the environment passed to subsequent commands. If no op- + tions are supplied, each _n_a_m_e refers to a variable; if there is + no variable by that name, a function with that name, if any, is + unset. Some shell variables may not be unset. If any of + BBAASSHH__AALLIIAASSEESS, BBAASSHH__AARRGGVV00, BBAASSHH__CCMMDDSS, BBAASSHH__CCOOMMMMAANNDD, BBAASSHH__SSUUBB-- + SSHHEELLLL, BBAASSHHPPIIDD, CCOOMMPP__WWOORRDDBBRREEAAKKSS, DDIIRRSSTTAACCKK, EEPPOOCCHHRREEAALLTTIIMMEE, + EEPPOOCCHHSSEECCOONNDDSS, FFUUNNCCNNAAMMEE, GGRROOUUPPSS, HHIISSTTCCMMDD, LLIINNEENNOO, RRAANNDDOOMM, SSEECC-- + OONNDDSS, or SSRRAANNDDOOMM are unset, they lose their special properties, + even if they are subsequently reset. The exit status is true + unless a _n_a_m_e is readonly or may not be unset. wwaaiitt [--ffnn] [--pp _v_a_r_n_a_m_e] [_i_d ...] Wait for each specified child process _i_d and return the termina- - tion status of the last _i_d. Each _i_d may be a process ID or a - job specification; if a job spec is given, wwaaiitt waits for all + tion status of the last _i_d. Each _i_d may be a process ID or a + job specification; if a job spec is supplied, wwaaiitt waits for all processes in the job. If no options or _i_ds are supplied, wwaaiitt waits for all running @@ -2021,9 +2153,9 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS If the --pp option is supplied, the process or job identifier of the job for which the exit status is returned is assigned to the - variable _v_a_r_n_a_m_e named by the option argument. The variable - will be unset initially, before any assignment. This is useful - only when the --nn option is supplied. + variable _v_a_r_n_a_m_e named by the option argument. The variable, + which cannot be readonly, will be unset initially, before any + assignment. This is useful only when the --nn option is supplied. Supplying the --ff option, when job control is enabled, forces wwaaiitt to wait for each _i_d to terminate before returning its sta- @@ -2042,38 +2174,38 @@ SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE level -- each option is mutually exclusive. The compatibility level is intended to allow users to select behavior from previous versions that is incompatible with newer versions while they migrate scripts to use - current features and behavior. It's intended to be a temporary solu- + current features and behavior. It's intended to be a temporary solu- tion. This section does not mention behavior that is standard for a particu- - lar version (e.g., setting ccoommppaatt3322 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, ccoommppaatt3322, 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 bbaasshh, but that behavior may have been - present in earlier versions. For instance, the change to use locale- - based comparisons with the [[[[ command came in bash-4.1, and earlier + lar version (e.g., setting ccoommppaatt3322 means that quoting the right hand + side of the regexp matching operator quotes special regexp characters + in the word, which is default behavior in bash-3.2 and subsequent ver- + sions). + + If a user enables, say, ccoommppaatt3322, 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 bbaasshh, but that behavior may have been + present in earlier versions. For instance, the change to use locale- + based comparisons with the [[[[ command came in bash-4.1, and earlier versions used ASCII-based comparisons, so enabling ccoommppaatt3322 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: BBAASSHH__CCOOMMPPAATT. The value as- + Bash-4.3 introduced a new shell variable: BBAASSHH__CCOOMMPPAATT. The value as- signed to this variable (a decimal version number like 4.2, or an inte- - ger corresponding to the ccoommppaatt_N_N option, like 42) determines the com- + ger corresponding to the ccoommppaatt_N_N option, like 42) determines the com- patibility level. - Starting with bash-4.4, bbaasshh has begun deprecating older compatibility - levels. Eventually, the options will be removed in favor of BBAASSHH__CCOOMM-- - PPAATT. + Starting with bash-4.4, bbaasshh began deprecating older compatibility lev- + els. Eventually, the options will be removed in favor of BBAASSHH__CCOOMMPPAATT. - Bash-5.0 was the final version for which there will be an individual - shopt option for the previous version. Users should control the compat- - ibility level with BBAASSHH__CCOOMMPPAATT. + Bash-5.0 was the final version for which there was an individual shopt + option for the previous version. BBAASSHH__CCOOMMPPAATT is the only mechanism to + control the compatibility level in versions newer than bash-5.0. The following table describes the behavior changes controlled by each compatibility level setting. The ccoommppaatt_N_N tag is used as shorthand for @@ -2084,77 +2216,78 @@ SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE quired for bash-5.1 and later versions. ccoommppaatt3311 - +o quoting the rhs of the [[[[ command's regexp matching oper- - ator (=) has no special effect + +o Quoting the rhs of the [[[[ command's regexp matching oper- + ator (=) has no special effect. ccoommppaatt3322 - +o the << and >> operators to the [[[[ command do not consider + +o The << and >> operators to the [[[[ command do not consider the current locale when comparing strings; they use ASCII ordering. ccoommppaatt4400 - +o the << and >> operators to the [[[[ command do not consider + +o The << and >> operators to the [[[[ command do not consider the current locale when comparing strings; they use ASCII ordering. BBaasshh versions prior to bash-4.1 use ASCII col- lation and _s_t_r_c_m_p(3); bash-4.1 and later use the current locale's collation sequence and _s_t_r_c_o_l_l(3). ccoommppaatt4411 - +o in _p_o_s_i_x mode, ttiimmee may be followed by options and still + +o In _p_o_s_i_x mode, ttiimmee may be followed by options and still be recognized as a reserved word (this is POSIX interpre- - tation 267) - +o in _p_o_s_i_x mode, the parser requires that an even number of + tation 267). + +o In _p_o_s_i_x mode, the parser requires that an even number of single quotes occur in the _w_o_r_d 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) + quoted (this is POSIX interpretation 221). ccoommppaatt4422 - +o the replacement string in double-quoted pattern substitu- + +o The replacement string in double-quoted pattern substitu- tion does not undergo quote removal, as it does in ver- - sions after bash-4.2 - +o in posix mode, single quotes are considered special when + sions after bash-4.2. + +o In posix mode, single quotes are considered special when expanding the _w_o_r_d 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 + special within double-quoted word expansions. ccoommppaatt4433 - +o word expansion errors are considered non-fatal errors + +o 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) - +o when executing a shell function, the loop state + that cause the shell to exit). + +o When executing a shell function, the loop state (while/until/etc.) is not reset, so bbrreeaakk or ccoonnttiinnuuee in that function will break or continue loops in the calling context. Bash-4.4 and later reset the loop state to pre- - vent this + vent this. ccoommppaatt4444 - +o the shell sets up the values used by BBAASSHH__AARRGGVV and - BBAASSHH__AARRGGCC so they can expand to the shell's positional - parameters even if extended debugging mode is not enabled - +o a subshell inherits loops from its parent context, so + +o The shell sets up the values used by BBAASSHH__AARRGGVV and + BBAASSHH__AARRGGCC so they can expand to the shell's positional + parameters even if extended debugging mode is not en- + abled. + +o A subshell inherits loops from its parent context, so bbrreeaakk or ccoonnttiinnuuee will cause the subshell to exit. Bash-5.0 and later reset the loop state to prevent the exit - +o variable assignments preceding builtins like eexxppoorrtt and + +o Variable assignments preceding builtins like eexxppoorrtt and rreeaaddoonnllyy that set attributes continue to affect variables with the same name in the calling environment even if the - shell is not in posix mode + shell is not in posix mode. ccoommppaatt5500 +o Bash-5.1 changed the way $$RRAANNDDOOMM is generated to intro- - duce slightly more randomness. If the shell compatibility - level is set to 50 or lower, it reverts to the method + duce slightly more randomness. If the shell compatibil- + ity 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 RRAANNDDOOMM will - produce the same sequence as in bash-5.0 + produce the same sequence as in bash-5.0. +o 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 --ll op- + input. Bash-5.1 suppresses that message when the --ll op- tion is supplied. ccoommppaatt5511 @@ -2162,42 +2295,43 @@ SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE scripts @@ and ** differently depending on whether the ar- ray is indexed or associative, and differently than in previous versions. - +o arithmetic commands ( ((((...)))) ) and the expressions in an - arithmetic for statement can be expanded more than once - +o expressions used as arguments to arithmetic operators in - the [[[[ conditional command can be expanded more than once - +o the expressions in substring parameter brace expansion - can be expanded more than once - +o the expressions in the $$((((...)))) word expansion can be ex- - panded more than once - +o arithmetic expressions used as indexed array subscripts - can be expanded more than once - +o tteesstt --vv, when given an argument of AA[[@@]], where AA is an + +o Arithmetic commands ( ((((...)))) ) and the expressions in an + arithmetic for statement can be expanded more than once. + +o Expressions used as arguments to arithmetic operators in + the [[[[ conditional command can be expanded more than + once. + +o The expressions in substring parameter brace expansion + can be expanded more than once. + +o The expressions in the $$((((...)))) word expansion can be ex- + panded more than once. + +o Arithmetic expressions used as indexed array subscripts + can be expanded more than once. + +o tteesstt --vv, when given an argument of AA[[@@]], where AA is an existing associative array, will return true if the array - has any set elements. Bash-5.2 will look for and report + has any set elements. Bash-5.2 will look for and report on a key named @@. - +o the ${_p_a_r_a_m_e_t_e_r[[::]]==_v_a_l_u_e} word expansion will return - _v_a_l_u_e, before any variable-specific transformations have + +o The ${_p_a_r_a_m_e_t_e_r[[::]]==_v_a_l_u_e} word expansion will return + _v_a_l_u_e, before any variable-specific transformations have been performed (e.g., converting to lowercase). Bash-5.2 will return the final value assigned to the variable. - +o Parsing command substitutions will behave as if extended + +o Parsing command substitutions will behave as if extended globbing (see the description of the sshhoopptt builtin above) - is enabled, so that parsing a command substitution con- + is enabled, so that parsing a command substitution con- taining an extglob pattern (say, as part of a shell func- - tion) will not fail. This assumes the intent is to en- - able extglob before the command is executed and word ex- - pansions are performed. It will fail at word expansion - time if extglob hasn't been enabled by the time the com- + tion) will not fail. This assumes the intent is to en- + able extglob before the command is executed and word ex- + pansions are performed. It will fail at word expansion + time if extglob hasn't been enabled by the time the com- mand is executed. ccoommppaatt5522 - +o The tteesstt builtin uses its historical algorithm to parse - parenthesized subexpressions when given five or more ar- + +o The tteesstt builtin uses its historical algorithm to parse + parenthesized subexpressions when given five or more ar- guments. - +o If the --pp or --PP option is supplied to the bbiinndd builtin, + +o If the --pp or --PP option is supplied to the bbiinndd builtin, bbiinndd treats any arguments remaining after option process- - ing as bindable command names, and displays any key se- - quences bound to those commands, instead of treating the + ing as bindable command names, and displays any key se- + quences bound to those commands, instead of treating the arguments as key sequences to bind. SSEEEE AALLSSOO diff --git a/doc/rbash.0 b/doc/rbash.0 index 230b358b1..36a5ad11f 100644 --- a/doc/rbash.0 +++ b/doc/rbash.0 @@ -5,53 +5,56 @@ NNAAMMEE RREESSTTRRIICCTTEEDD SSHHEELLLL If bbaasshh is started with the name rrbbaasshh, or the --rr option is supplied at - invocation, the shell becomes restricted. A restricted shell is used + invocation, the shell becomes _r_e_s_t_r_i_c_t_e_d. A restricted shell is used to set up an environment more controlled than the standard shell. It behaves identically to bbaasshh with the exception that the following are disallowed or not performed: - +o changing directories with ccdd + +o Changing directories with ccdd. - +o setting or unsetting the values of SSHHEELLLL, PPAATTHH, HHIISSTTFFIILLEE, EENNVV, - or BBAASSHH__EENNVV + +o Setting or unsetting the values of SSHHEELLLL, PPAATTHH, HHIISSTTFFIILLEE, EENNVV, + or BBAASSHH__EENNVV. - +o specifying command names containing // + +o Specifying command names containing //. - +o specifying a filename containing a // as an argument to the .. - builtin command + +o Specifying a filename containing a // as an argument to the .. + builtin command. - +o specifying a filename containing a slash as an argument to the - hhiissttoorryy builtin command + +o Using the --pp option to the .. builtin command to specify a + search path. - +o specifying a filename containing a slash as an argument to the - --pp option to the hhaasshh builtin command + +o Specifying a filename containing a slash as an argument to the + hhiissttoorryy builtin command. - +o importing function definitions from the shell environment at - startup + +o Specifying a filename containing a slash as an argument to the + --pp option to the hhaasshh builtin command. - +o parsing the value of SSHHEELLLLOOPPTTSS from the shell environment at - startup + +o Importing function definitions from the shell environment at + startup. - +o redirecting output using the >, >|, <>, >&, &>, and >> redirec- - tion operators + +o Parsing the value of SSHHEELLLLOOPPTTSS from the shell environment at + startup. - +o using the eexxeecc builtin command to replace the shell with another - command + +o Redirecting output using the >, >|, <>, >&, &>, and >> redirec- + tion operators. - +o adding or deleting builtin commands with the --ff and --dd options - to the eennaabbllee builtin command + +o Using the eexxeecc builtin command to replace the shell with another + command. - +o using the eennaabbllee builtin command to enable disabled shell - builtins + +o Adding or deleting builtin commands with the --ff and --dd options + to the eennaabbllee builtin command. - +o specifying the --pp option to the ccoommmmaanndd builtin command + +o Using the eennaabbllee builtin command to enable disabled shell + builtins. - +o turning off restricted mode with sseett ++rr or sshhoopptt --uu rree-- + +o Specifying the --pp option to the ccoommmmaanndd builtin command. + + +o Turning off restricted mode with sseett ++rr or sshhoopptt --uu rree-- ssttrriicctteedd__sshheellll. These restrictions are enforced after any startup files are read. - When a command that is found to be a shell script is executed, rrbbaasshh + When a command that is found to be a shell script is executed, rrbbaasshh turns off any restrictions in the shell spawned to execute the script. SSEEEE AALLSSOO diff --git a/doc/version.texi b/doc/version.texi index 47e555048..033724680 100644 --- a/doc/version.texi +++ b/doc/version.texi @@ -2,10 +2,10 @@ Copyright (C) 1988-2024 Free Software Foundation, Inc. @end ignore -@set LASTCHANGE Thu Sep 5 15:41:56 EDT 2024 +@set LASTCHANGE Sun Sep 29 22:28:43 EDT 2024 @set EDITION 5.3 @set VERSION 5.3 -@set UPDATED 5 September 2024 +@set UPDATED 29 September 2024 @set UPDATED-MONTH September 2024 diff --git a/expr.c b/expr.c index f547ba35f..30014aa24 100644 --- a/expr.c +++ b/expr.c @@ -26,8 +26,8 @@ order of decreasing precedence. "id++", "id--" [post-increment and post-decrement] - "-", "+" [(unary operators)] "++id", "--id" [pre-increment and pre-decrement] + "-", "+" [(unary operators)] "!", "~" "**" [(exponentiation)] "*", "/", "%" diff --git a/lib/readline/doc/hsuser.texi b/lib/readline/doc/hsuser.texi index 106c369ba..4c99bc363 100644 --- a/lib/readline/doc/hsuser.texi +++ b/lib/readline/doc/hsuser.texi @@ -1,7 +1,7 @@ @ignore This file documents the user interface to the GNU History library. -Copyright (C) 1988--2022 Free Software Foundation, Inc. +Copyright (C) 1988--2024 Free Software Foundation, Inc. Authored by Brian Fox and Chet Ramey. Permission is granted to make and distribute verbatim copies of this manual @@ -38,9 +38,10 @@ For information on using the @sc{gnu} History Library in other programs, see the @sc{gnu} Readline Library Manual. @end ifset @ifclear BashFeatures -This chapter describes how to use the @sc{gnu} History Library interactively, -from a user's standpoint. It should be considered a user's guide. For -information on using the @sc{gnu} History Library in your own programs, +This chapter describes how to use the @sc{gnu} History Library +interactively, from a user's standpoint. +It should be considered a user's guide. +For information on using the @sc{gnu} History Library in your own programs, @pxref{Programming with GNU History}. @end ifclear @@ -79,20 +80,33 @@ but after history expansion is performed, subject to the values of the shell variables @env{HISTIGNORE} and @env{HISTCONTROL}. -When the shell starts up, the history is initialized from the +When the shell starts up, Bash initializes the history list +by reading history entries from the file named by the @env{HISTFILE} variable (default @file{~/.bash_history}). -The file named by the value of @env{HISTFILE} is truncated, if -necessary, to contain no more than the number of lines specified by +This is referred to as the @dfn{history file}. +That file is truncated, if necessary, +to contain no more than the number of history entries specified by the value of the @env{HISTFILESIZE} variable. -When a shell with history enabled exits, the last -@env{$HISTSIZE} lines are copied from the history list to the file +If @env{HISTFILESIZE} 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 followed immediately +by a digit are interpreted as timestamps for the following history entry. +These timestamps are optionally displayed depending on the value of the +@env{HISTTIMEFORMAT} variable (@pxref{Bash Variables}). +When present, history timestamps delimit history entries, making +multi-line entries possible. + +When a shell with history enabled exits, Bash copies the last +@env{$HISTSIZE} entries from the history list to the file named by @env{$HISTFILE}. If the @code{histappend} shell option is set (@pxref{Bash Builtins}), -the lines are appended to the history file, +Bash appends the entries to the history file, otherwise the history file is overwritten. If @env{HISTFILE} is unset or null, or if the history file is unwritable, the history is not saved. -After saving the history, the history file is truncated +After saving the history, Bash truncates the history file to contain no more than @env{$HISTFILESIZE} lines. If @env{HISTFILESIZE} is unset, or set to null, a non-numeric value, or a numeric value less than zero, the history file is not truncated. @@ -103,27 +117,27 @@ 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. +As above, when using @env{HISTTIMEFORMAT}, +the timestamps delimit multi-line history entries. -The @code{fc} builtin command may be used to list or edit and re-execute +The @code{fc} builtin command will list or edit and re-execute a portion of the history list. -The @code{history} builtin may be used to display or modify the history +The @code{history} builtin can display or modify the history list and manipulate the history file. When using command-line editing, search commands are available in each editing mode that provide access to the history list (@pxref{Commands For History}). -The shell allows control over which commands are saved on the history -list. +The shell allows control over which commands are saved on the history list. The @env{HISTCONTROL} and @env{HISTIGNORE} -variables are used to cause the shell to save only a subset of the -commands entered. +variables are used to save only a subset of the commands entered. The @code{cmdhist} 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 @code{lithist} -shell option causes the shell to save the command with embedded newlines -instead of semicolons. +shell option modifies @code{cmdhist} by saving +the command with embedded newlines instead of semicolons. The @code{shopt} builtin is used to set these options. @xref{The Shopt Builtin}, for a description of @code{shopt}. @@ -157,27 +171,44 @@ and -0 is equivalent to the current command (usually the @code{fc} command); otherwise 0 is equivalent to -1 and -0 is invalid. -If @var{last} is not specified, it is set to -@var{first}. If @var{first} is not specified, it is set to the previous -command for editing and @minus{}16 for listing. If the @option{-l} flag is -given, the commands are listed on standard output. The @option{-n} flag -suppresses the command numbers when listing. The @option{-r} flag -reverses the order of the listing. Otherwise, the editor given by -@var{ename} is invoked on a file containing those commands. If -@var{ename} is not given, the value of the following variable expansion -is used: @code{$@{FCEDIT:-$@{EDITOR:-vi@}@}}. This says to use the +If @var{last} is not specified, it is set to @var{first}. +If @var{first} is not specified, it is set to the previous +command for editing and @minus{}16 for listing. + +If the @option{-l} flag is supplied, +the commands are listed on standard output. +The @option{-n} flag suppresses the command numbers when listing. +The @option{-r} flag reverses the order of the listing. + +Otherwise, @code{fc} invokes the editor named by +@var{ename} on a file containing those commands. +If @var{ename} is not supplied, @code{fc} uses the value of the following +variable expansion: @code{$@{FCEDIT:-$@{EDITOR:-vi@}@}}. +This says to use the value of the @env{FCEDIT} variable if set, or the value of the @env{EDITOR} variable if that is set, or @code{vi} if neither is set. -When editing is complete, the edited commands are echoed and executed. +When editing is complete, @code{fc} reads the file of edited commands +and echoes and executes them. -In the second form, @var{command} is re-executed after each instance -of @var{pat} in the selected command is replaced by @var{rep}. +In the second form, @code{fc} re-executes @var{command} after +replacing each instance of @var{pat} in the selected command with @var{rep}. @var{command} is interpreted the same as @var{first} above. A useful alias to use with the @code{fc} command is @code{r='fc -s'}, so that typing @samp{r cc} runs the last command beginning with @code{cc} and typing @samp{r} re-executes the last command (@pxref{Aliases}). +If the first form is used, the return value is zero unless an invalid +option is encountered or @var{first} or @var{last} +specify history lines out of range. +When editing and re-executing a file of commands, +the return value is the value of the last command executed +or failure if an error occurs with the temporary file. +If the second form is used, the return status +is that of the re-executed command, unless +@var{command} does not specify a valid history entry, in which case +@code{fc} returns a non-zero status. + @item history @btindex history @example @@ -189,21 +220,22 @@ history [-anrw] [@var{filename}] history -ps @var{arg} @end example -With no options, display the history list with line numbers. -Lines prefixed with a @samp{*} have been modified. -An argument of @var{n} lists only the last @var{n} lines. +With no options, display the history list with numbers. +Entries prefixed with a @samp{*} have been modified. +An argument of @var{n} lists only the last @var{n} entries. If the shell variable @env{HISTTIMEFORMAT} is set and not null, it is used as a format string for @code{strftime}(3) to display the time stamp associated with each displayed history entry. -No intervening blank is printed between the formatted time stamp -and the history line. +If @code{history} uses @env{HISTTIMEFORMAT}, it does not print an +intervening space between the formatted time stamp and the history entry. Options, if supplied, have the following meanings: @table @code @item -c -Clear the history list. This may be combined -with the other options to replace the history list completely. +Clear the history list. +This may be combined +with the other options to replace the history list. @item -d @var{offset} Delete the history entry at position @var{offset}. @@ -221,38 +253,46 @@ Positive and negative values for @var{start} and @var{end} are interpreted as described above. @item -a -Append the new history lines to the history file. +Append the "new" history lines to the history file. These are history lines entered since the beginning of the current Bash session, but not already appended to the history file. @item -n Append the history lines not already read from the history file -to the current history list. These are lines appended to the history +to the current history list. +These are lines appended to the history file since the beginning of the current Bash session. @item -r -Read the history file and append its contents to -the history list. +Read the history file and append its contents to the history list. @item -w -Write out the current history list to the history file. +Write the current history list to the history file, overwriting it. @item -p Perform history substitution on the @var{arg}s and display the result on the standard output, without storing the results in the history list. @item -s -The @var{arg}s are added to the end of -the history list as a single entry. +Add the @var{arg}s to the end of the history list as a single entry. +The last command in the history list is removed before adding the @var{arg}s. @end table If a @var{filename} argument is supplied -when any of the @option{-w}, @option{-r}, @option{-a}, or @option{-n} options -is used, Bash uses @var{filename} as the history file. -If not, then the value of the @env{HISTFILE} variable is used. +with any of the @option{-w}, @option{-r}, @option{-a}, or @option{-n} +options, Bash uses @var{filename} as the history file. +If not, it uses the value of the @env{HISTFILE} variable. If @env{HISTFILE} is unset or null, these options have no effect. +If the @env{HISTTIMEFORMAT} +variable is set, @code{history} writes the time stamp information +associated with each history entry to the history 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 @var{offset} or range is supplied as an argument to @option{-d}, or the @@ -265,9 +305,25 @@ history expansion supplied as an argument to @option{-p} fails. @section History Expansion @cindex history expansion -The History library provides a history expansion feature that is similar -to the history expansion provided by @code{csh}. This section -describes the syntax used to manipulate the history information. +@ifset BashFeatures +The shell +@end ifset +@ifclear BashFeatures +The History library +@end ifclear +provides a history expansion feature that is similar +to the history expansion provided by @code{csh} +(also referred to as history substitution where appropriate). +This section describes the syntax used to manipulate the +history information. + +@ifset BashFeatures +History expansion is enabled by default for interactive shells, +and can be disabled using the @option{+H} option to the @code{set} +builtin command (@pxref{The Set Builtin}). +Non-interactive shells do not perform history expansion by default, +but it can be enabled with @code{set -H}. +@end ifset History expansions introduce words from the history list into the input stream, making it easy to repeat commands, insert the @@ -277,18 +333,20 @@ fix errors in previous commands quickly. @ifset BashFeatures 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. Bash attempts to inform the history +on each line individually. +Bash attempts to inform the history expansion functions about quoting still in effect from previous lines. @end ifset -History expansion takes place in two parts. The first is to determine -which line from the history list should be used during substitution. -The second is to select portions of that line for inclusion into the +History expansion takes place in two parts. +The first is to determine +which entry from the history list should be used during substitution. +The second is to select portions of that entry to include into the current one. -The line selected from the history is called the @dfn{event}, -and the portions of that line that are acted upon are called @dfn{words}. -The line is broken into words in the same fashion +The entry selected from the history is called the @dfn{event}, +and the portions of that entry that are acted upon are called @dfn{words}. +The history entry is broken into words in the same fashion that Bash does, so that several words surrounded by quotes are considered one word. The @dfn{event designator} selects the event, the optional @@ -314,32 +372,38 @@ When using the shell, only @samp{\} and @samp{'} may be used to escape the history expansion character, but the history expansion 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 +following the history expansion character, even if it is unquoted: +space, tab, newline, carriage return, @samp{=}, +and the other shell metacharacters. @end ifset There is a special abbreviation for substitution, active when the @var{quick substitution} character (default @samp{^}) is the first character on the line. -It selects the previous history list entry, using an event designator +It selects the previous history entry, using an event designator equivalent to @code{!!}, -and substitutes one string for another in that line. +and substitutes one string for another in that entry. It is described below (@pxref{Event Designators}). This is the only history expansion that does not begin with the history expansion character. @ifset BashFeatures Several shell options settable with the @code{shopt} -builtin (@pxref{The Shopt Builtin}) may be used to tailor -the behavior of history expansion. If the -@code{histverify} shell option is enabled, and Readline +builtin (@pxref{The Shopt Builtin}) +will modify history expansion behavior +If the @code{histverify} shell option is enabled, and Readline is being used, history substitutions are not immediately passed to the shell parser. Instead, the expanded line is reloaded into the Readline editing buffer for further modification. If Readline is being used, and the @code{histreedit} -shell option is enabled, a failed history expansion will be +shell option is enabled, a failed history expansion is reloaded into the Readline editing buffer for correction. + The @option{-p} option to the @code{history} builtin command -may be used to see what a history expansion will do before using it. +shows what a history expansion will do before using it. The @option{-s} option to the @code{history} builtin may be used to add commands to the end of the history list without actually executing them, so that they are available for subsequent recall. @@ -347,9 +411,9 @@ This is most useful in conjunction with Readline. The shell allows control of the various characters used by the history expansion mechanism with the @code{histchars} variable, -as explained above (@pxref{Bash Variables}). The shell uses -the history comment character to mark history timestamps when -writing the history file. +as explained above (@pxref{Bash Variables}). +The shell uses the history comment character to mark history +timestamps when writing the history file. @end ifset @menu @@ -362,8 +426,7 @@ writing the history file. @subsection Event Designators @cindex event designators -An event designator is a reference to a command line entry in the -history list. +An event designator is a reference to an entry in the history list. Unless the reference is absolute, events are relative to the current position in the history list. The event designator consists of the portion of the word beginning @@ -386,13 +449,14 @@ the end of the line, or @samp{=}. @end ifclear @item @code{!@var{n}} -Refer to command line @var{n}. +Refer to history list entry @var{n}. @item @code{!-@var{n}} -Refer to the command @var{n} lines back. +Refer to the history entry @var{n} entries back. @item @code{!!} -Refer to the previous command. This is a synonym for @samp{!-1}. +Refer to the previous command. +This is a synonym for @samp{!-1}. @item @code{!@var{string}} Refer to the most recent command @@ -406,13 +470,14 @@ containing @var{string}. The trailing @samp{?} may be omitted if the @var{string} is followed immediately by a newline. -If @var{string} is missing, the string from the most recent search is used; +If @var{string} is missing, this uses +the string from the most recent search; it is an error if there is no previous search string. @item @code{^@var{string1}^@var{string2}^} -Quick Substitution. Repeat the last command, replacing @var{string1} -with @var{string2}. Equivalent to -@code{!!:s^@var{string1}^@var{string2}^}. +Quick Substitution. +Repeat the last command, replacing @var{string1} with @var{string2}. +Equivalent to @code{!!:s^@var{string1}^@var{string2}^}. @item @code{!#} The entire command line typed so far. @@ -425,23 +490,24 @@ The entire command line typed so far. Word designators are used to select desired words from the event. They are optional; if the word designator isn't supplied, the history expansion uses the entire event. -A @samp{:} separates the event specification from the word designator. It -may be omitted if the word designator begins with a @samp{^}, @samp{$}, -@samp{*}, @samp{-}, or @samp{%}. 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 separated by single spaces. +A @samp{:} separates the event specification from the word designator. +It may be omitted if the word designator begins with a @samp{^}, @samp{$}, +@samp{*}, @samp{-}, or @samp{%}. +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 separated by single spaces. @need 0.75 For example, @table @code @item !! -designates the preceding command. When you type this, the preceding -command is repeated in toto. +designates the preceding command. +When you type this, the preceding command is repeated in toto. @item !!:$ -designates the last argument of the preceding command. This may be -shortened to @code{!$}. +designates the last argument of the preceding command. +This may be shortened to @code{!$}. @item !fi:2 designates the second argument of the most recent command starting with @@ -450,20 +516,23 @@ the letters @code{fi}. @need 0.75 Here are the word designators: - + @table @code @item 0 (zero) -The @code{0}th word. For many applications, this is the command word. +The @code{0}th word. +For many applications, this is the command word. @item @var{n} The @var{n}th word. @item ^ -The first argument; that is, word 1. +The first argument: word 1. @item $ The last argument. +This is usually the last argument, but will expand to the +zeroth word if there is only one word in the line. @item % The first word matched by the most recent @samp{?@var{string}?} search, @@ -476,12 +545,13 @@ the line. A range of words; @samp{-@var{y}} abbreviates @samp{0-@var{y}}. @item * -All of the words, except the @code{0}th. This is a synonym for @samp{1-$}. +All of the words, except the @code{0}th. +This is a synonym for @samp{1-$}. It is not an error to use @samp{*} if there is just one word in the event; -the empty string is returned in that case. +it expands to the empty string in this case. @item @var{x}* -Abbreviates @samp{@var{x}-$} +Abbreviates @samp{@var{x}-$}. @item @var{x}- Abbreviates @samp{@var{x}-$} like @samp{@var{x}*}, but omits the last word. @@ -490,7 +560,7 @@ If @samp{x} is missing, it defaults to 0. @end table If a word designator is supplied without an event specification, the -previous command is used as the event. +previous command is used as the event, equivalent to @code{!!}. @node Modifiers @subsection Modifiers @@ -524,8 +594,8 @@ Quote the substituted words, escaping further substitutions. @item x Quote the substituted words as with @samp{q}, but break into words at spaces, tabs, and newlines. -The @samp{q} and @samp{x} modifiers are mutually exclusive; the last one -supplied is used. +The @samp{q} and @samp{x} modifiers are mutually exclusive; +expansion uses the last one supplied. @end ifset @item s/@var{old}/@var{new}/ @@ -533,9 +603,9 @@ Substitute @var{new} for the first occurrence of @var{old} in the event line. Any character may be used as the delimiter in place of @samp{/}. The delimiter may be quoted in @var{old} and @var{new} -with a single backslash. If @samp{&} appears in @var{new}, -it is replaced by @var{old}. A single backslash will quote -the @samp{&}. +with a single backslash. +If @samp{&} appears in @var{new}, it is replaced with @var{old}. +A single backslash will quote the @samp{&} in @var{old} and @var{new}. If @var{old} is null, it is set to the last @var{old} substituted, or, if no previous history substitutions took place, the last @var{string} @@ -550,8 +620,8 @@ Repeat the previous substitution. @item g @itemx a -Cause changes to be applied over the entire event line. Used in -conjunction with @samp{s}, as in @code{gs/@var{old}/@var{new}/}, +Cause changes to be applied over the entire event line. +Used in conjunction with @samp{s}, as in @code{gs/@var{old}/@var{new}/}, or with @samp{&}. @item G diff --git a/lib/readline/doc/rluser.texi b/lib/readline/doc/rluser.texi index c4ba476d3..52a128549 100644 --- a/lib/readline/doc/rluser.texi +++ b/lib/readline/doc/rluser.texi @@ -11,7 +11,7 @@ use these features. There is a document entitled "readline.texinfo" which contains both end-user and programmer documentation for the GNU Readline Library. -Copyright (C) 1988--2023 Free Software Foundation, Inc. +Copyright (C) 1988--2024 Free Software Foundation, Inc. Authored by Brian Fox and Chet Ramey. @@ -2003,10 +2003,10 @@ so forth. @section Programmable Completion @cindex programmable completion -When word completion is attempted for an argument to a command for +When the user attempts word completion for an argument to a command for which a completion specification (a @var{compspec}) has been defined using the @code{complete} builtin (@pxref{Programmable Completion Builtins}), -the programmable completion facilities are invoked. +\fBreadline\fP invokes the programmable completion facilities. First, the command name is identified. If a compspec has been defined for that command, the @@ -2016,13 +2016,13 @@ beginning of an empty line), any compspec defined with the @option{-E} option to @code{complete} is used. 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 +If no compspec is found for the full pathname, completion attempts 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 @option{-D} option to @code{complete} is used as the default. If there is no default compspec, Bash 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 +for the command word from any successful expansion. Once a compspec has been found, it is used to generate the list of matching words. @@ -2087,6 +2087,7 @@ in an environment 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. +These are added to the set of possible completions. After all of the possible completions are generated, any filter specified with the @option{-X} option is applied to the list. @@ -2104,8 +2105,7 @@ of alphabetic characters. Finally, any prefix and suffix specified with the @option{-P} and @option{-S} 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. +returned to Readline as the list of possible completions. If the previously-applied actions do not generate any matches, and the @option{-o dirnames} option was supplied to @code{complete} when the @@ -2117,11 +2117,11 @@ 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 default Bash completions are not attempted, and the Readline default -of filename completion is disabled. +The default Bash completions and the Readline default +of filename completion are disabled. If the @option{-o bashdefault} option was supplied to @code{complete} when -the compspec was defined, the default Bash completions are attempted -if the compspec generates no matches. +the compspec was defined, if the compspec generates no matches, +the default Bash completions are attempted. If the @option{-o default} option was supplied to @code{complete} when the compspec was defined, Readline's default completion will be performed if the compspec (and, if attempted, the default Bash completions) @@ -2133,17 +2133,19 @@ to completed names which are symbolic links to directories, subject to the value of the @var{mark-directories} Readline variable, regardless of the setting of the @var{mark-symlinked-directories} Readline variable. -There is some support for dynamically modifying completions. This is -most useful when used in combination with a default completion specified -with @option{-D}. It's possible for shell functions executed as completion +There is some support for dynamically modifying completions. +This is most useful when used in combination with a default completion +specified with @option{-D}. +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 +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 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 than -being loaded all at once. +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 default @@ -2196,7 +2198,7 @@ The matches will be generated in the same way as if the programmable completion code had generated them directly from a completion specification with the same flags. If @var{word} is specified, only those completions matching @var{word} -will be displayed. +will be displayed or stored. The return value is true unless an invalid option is supplied, or no matches were generated. @@ -2243,7 +2245,6 @@ The arguments to the @option{-G}, @option{-W}, and @option{-X} options should be quoted to protect them from expansion before the @code{complete} builtin is invoked. - @table @code @item -o @var{comp-option} The @var{comp-option} controls several aspects of the compspec's behavior @@ -2287,9 +2288,8 @@ the end of the line. @item plusdirs After any matches defined by the compspec are generated, -directory name completion is attempted and any -matches are added to the results of the other actions. - +attempt directory name completion and add any +matches to the results of the other actions. @end table @item -A @var{action} @@ -2385,25 +2385,30 @@ When it is executed, $1 is the name of the command whose arguments are being completed, $2 is the word being completed, and $3 is the word preceding the word being completed, as described above (@pxref{Programmable Completion}). -When it finishes, the possible completions are retrieved from the value +When @code{function} finishes, +the possible completions are retrieved from the value of the @env{COMPREPLY} array variable. @item -G @var{globpat} -The filename expansion pattern @var{globpat} is expanded to generate +Expand the filename expansion pattern @var{globpat} to generate the possible completions. @item -P @var{prefix} -@var{prefix} is added at the beginning of each possible completion +Add @var{prefix} to the beginning of each possible completion after all other options have been applied. @item -S @var{suffix} -@var{suffix} is appended to each possible completion +Append @var{suffix} to each possible completion after all other options have been applied. @item -W @var{wordlist} The @var{wordlist} is split using the characters in the -@env{IFS} special variable as delimiters, and each resultant word +@env{IFS} special variable as delimiters, and each resulting word is expanded. +Shell quoting is honored within @var{wordlist} +in order to provide a +mechanism for the words to contain shell metacharacters or characters +in the value of @env{IFS}. The possible completions are the members of the resultant list which match the word being completed. @@ -2458,7 +2463,6 @@ over @option{-E}, and both take precedence over @option{-I} The return value is true unless an invalid option is supplied, an attempt is made to modify the options for a @var{name} for which no completion specification exists, or an output error occurs. - @end table @node A Programmable Completion Example @@ -2488,7 +2492,8 @@ a newline to accommodate file names containing spaces and tabs -- @code{compgen} prints the possible completions it generates one per line. Possible completions go into the @var{COMPREPLY} array variable, one -completion per array element. The programmable completion system retrieves +completion per array element. +The programmable completion system retrieves the completions from there when the function returns. @example @@ -2562,7 +2567,7 @@ extend @code{_comp_cd} to append a slash if we're using directories found via @var{CDPATH}: Readline can't tell those completions are directories). The @option{-o nospace} option tells Readline to not append a space character to the directory name, in case we want to append to it. -The @option{-o bashdefault} option brings in the rest of the "Bash default" +The @option{-o bashdefault} option brings in the rest of the ``Bash default'' completions -- possible completions that Bash adds to the default Readline set. These include things like command name completion, variable completion -- 2.47.2

*4@N``tqsk^wTl(IDYXb^iOr9>^z(;q^H?1~k*c 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%0AuAH6cGfDvYX;n&HXzLOMiE^^vMQkX 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\code {end-of-history (M->)}} -\entry{reverse-search-history (C-r)}{140}{\code {reverse-search-history (C-r)}} -\entry{forward-search-history (C-s)}{140}{\code {forward-search-history (C-s)}} -\entry{non-incremental-reverse-search-history (M-p)}{140}{\code {non-incremental-reverse-search-history (M-p)}} -\entry{non-incremental-forward-search-history (M-n)}{141}{\code {non-incremental-forward-search-history (M-n)}} -\entry{history-search-backward ()}{141}{\code {history-search-backward ()}} -\entry{history-search-forward ()}{141}{\code {history-search-forward ()}} -\entry{history-substring-search-backward ()}{141}{\code {history-substring-search-backward ()}} -\entry{history-substring-search-forward ()}{141}{\code {history-substring-search-forward ()}} -\entry{yank-nth-arg (M-C-y)}{141}{\code {yank-nth-arg (M-C-y)}} -\entry{yank-last-arg (M-. or M-_)}{141}{\code {yank-last-arg (M-. or M-_)}} -\entry{operate-and-get-next (C-o)}{142}{\code {operate-and-get-next (C-o)}} -\entry{fetch-history ()}{142}{\code {fetch-history ()}} -\entry{end-of-file (usually C-d)}{142}{\code {\i {end-of-file} (usually C-d)}} -\entry{delete-char (C-d)}{142}{\code {delete-char (C-d)}} -\entry{backward-delete-char (Rubout)}{142}{\code {backward-delete-char (Rubout)}} -\entry{forward-backward-delete-char ()}{142}{\code {forward-backward-delete-char ()}} -\entry{quoted-insert (C-q or C-v)}{142}{\code {quoted-insert (C-q or C-v)}} -\entry{self-insert (a, b, A, 1, !, ...{})}{142}{\code {self-insert (a, b, A, 1, !, \dots {})}} -\entry{bracketed-paste-begin ()}{142}{\code {bracketed-paste-begin ()}} -\entry{transpose-chars (C-t)}{142}{\code {transpose-chars (C-t)}} -\entry{transpose-words (M-t)}{143}{\code {transpose-words (M-t)}} -\entry{shell-transpose-words (M-C-t)}{143}{\code {shell-transpose-words (M-C-t)}} -\entry{upcase-word (M-u)}{143}{\code {upcase-word (M-u)}} -\entry{downcase-word (M-l)}{143}{\code {downcase-word (M-l)}} -\entry{capitalize-word (M-c)}{143}{\code {capitalize-word (M-c)}} -\entry{overwrite-mode ()}{143}{\code {overwrite-mode ()}} -\entry{kill-line (C-k)}{143}{\code {kill-line (C-k)}} -\entry{backward-kill-line (C-x Rubout)}{143}{\code {backward-kill-line (C-x Rubout)}} -\entry{unix-line-discard (C-u)}{143}{\code {unix-line-discard (C-u)}} -\entry{kill-whole-line ()}{144}{\code {kill-whole-line ()}} -\entry{kill-word (M-d)}{144}{\code {kill-word (M-d)}} -\entry{backward-kill-word (M-DEL)}{144}{\code {backward-kill-word (M-\key {DEL})}} -\entry{shell-kill-word (M-C-d)}{144}{\code {shell-kill-word (M-C-d)}} -\entry{shell-backward-kill-word ()}{144}{\code {shell-backward-kill-word ()}} -\entry{unix-word-rubout (C-w)}{144}{\code {unix-word-rubout (C-w)}} -\entry{unix-filename-rubout ()}{144}{\code {unix-filename-rubout ()}} -\entry{delete-horizontal-space ()}{144}{\code {delete-horizontal-space ()}} -\entry{kill-region ()}{144}{\code {kill-region ()}} -\entry{copy-region-as-kill ()}{144}{\code {copy-region-as-kill ()}} -\entry{copy-backward-word ()}{144}{\code {copy-backward-word ()}} -\entry{copy-forward-word ()}{144}{\code {copy-forward-word ()}} -\entry{yank (C-y)}{144}{\code {yank (C-y)}} -\entry{yank-pop (M-y)}{144}{\code {yank-pop (M-y)}} -\entry{digit-argument (M-0, M-1, ...{} M--)}{145}{\code {digit-argument (\kbd {M-0}, \kbd {M-1}, \dots {} \kbd {M--})}} -\entry{universal-argument ()}{145}{\code {universal-argument ()}} -\entry{complete (TAB)}{145}{\code {complete (\key {TAB})}} -\entry{possible-completions (M-?)}{145}{\code {possible-completions (M-?)}} -\entry{insert-completions (M-*)}{145}{\code {insert-completions (M-*)}} -\entry{menu-complete ()}{145}{\code {menu-complete ()}} -\entry{menu-complete-backward ()}{145}{\code {menu-complete-backward ()}} -\entry{delete-char-or-list ()}{146}{\code {delete-char-or-list ()}} -\entry{complete-filename (M-/)}{146}{\code {complete-filename (M-/)}} -\entry{possible-filename-completions (C-x /)}{146}{\code {possible-filename-completions (C-x /)}} -\entry{complete-username (M-~)}{146}{\code {complete-username (M-~)}} -\entry{possible-username-completions (C-x ~)}{146}{\code {possible-username-completions (C-x ~)}} -\entry{complete-variable (M-$)}{146}{\code {complete-variable (M-$)}} -\entry{possible-variable-completions (C-x $)}{146}{\code {possible-variable-completions (C-x $)}} -\entry{complete-hostname (M-@)}{146}{\code {complete-hostname (M-@)}} -\entry{possible-hostname-completions (C-x @)}{146}{\code {possible-hostname-completions (C-x @)}} -\entry{complete-command (M-!)}{146}{\code {complete-command (M-!)}} -\entry{possible-command-completions (C-x !)}{146}{\code {possible-command-completions (C-x !)}} -\entry{dynamic-complete-history (M-TAB)}{146}{\code {dynamic-complete-history (M-\key {TAB})}} -\entry{dabbrev-expand ()}{146}{\code {dabbrev-expand ()}} -\entry{complete-into-braces (M-{\indexlbrace })}{146}{\code {complete-into-braces (M-{\tt \char 123})}} -\entry{start-kbd-macro (C-x ()}{147}{\code {start-kbd-macro (C-x ()}} -\entry{end-kbd-macro (C-x ))}{147}{\code {end-kbd-macro (C-x ))}} -\entry{call-last-kbd-macro (C-x e)}{147}{\code {call-last-kbd-macro (C-x e)}} -\entry{print-last-kbd-macro ()}{147}{\code {print-last-kbd-macro ()}} -\entry{re-read-init-file (C-x C-r)}{147}{\code {re-read-init-file (C-x C-r)}} -\entry{abort (C-g)}{147}{\code {abort (C-g)}} -\entry{do-lowercase-version (M-A, M-B, M-x, ...{})}{147}{\code {do-lowercase-version (M-A, M-B, M-\var {x}, \dots {})}} -\entry{prefix-meta (ESC)}{147}{\code {prefix-meta (\key {ESC})}} -\entry{undo (C-_ or C-x C-u)}{147}{\code {undo (C-_ or C-x C-u)}} -\entry{revert-line (M-r)}{147}{\code {revert-line (M-r)}} -\entry{tilde-expand (M-&)}{147}{\code {tilde-expand (M-&)}} -\entry{set-mark (C-@)}{147}{\code {set-mark (C-@)}} -\entry{exchange-point-and-mark (C-x C-x)}{147}{\code {exchange-point-and-mark (C-x C-x)}} -\entry{character-search (C-])}{147}{\code {character-search (C-])}} -\entry{character-search-backward (M-C-])}{148}{\code {character-search-backward (M-C-])}} -\entry{skip-csi-sequence ()}{148}{\code {skip-csi-sequence ()}} -\entry{insert-comment (M-#)}{148}{\code {insert-comment (M-#)}} -\entry{dump-functions ()}{148}{\code {dump-functions ()}} -\entry{dump-variables ()}{148}{\code {dump-variables ()}} -\entry{dump-macros ()}{148}{\code {dump-macros ()}} -\entry{spell-correct-word (C-x s)}{148}{\code {spell-correct-word (C-x s)}} -\entry{glob-complete-word (M-g)}{148}{\code {glob-complete-word (M-g)}} -\entry{glob-expand-word (C-x *)}{149}{\code {glob-expand-word (C-x *)}} -\entry{glob-list-expansions (C-x g)}{149}{\code {glob-list-expansions (C-x g)}} -\entry{display-shell-version (C-x C-v)}{149}{\code {display-shell-version (C-x C-v)}} -\entry{shell-expand-line (M-C-e)}{149}{\code {shell-expand-line (M-C-e)}} -\entry{history-expand-line (M-^)}{149}{\code {history-expand-line (M-^)}} -\entry{magic-space ()}{149}{\code {magic-space ()}} -\entry{alias-expand-line ()}{149}{\code {alias-expand-line ()}} -\entry{history-and-alias-expand-line ()}{149}{\code {history-and-alias-expand-line ()}} -\entry{insert-last-argument (M-. or M-_)}{149}{\code {insert-last-argument (M-. or M-_)}} -\entry{edit-and-execute-command (C-x C-e)}{149}{\code {edit-and-execute-command (C-x C-e)}} -\entry{execute-named-command (M-x)}{149}{\code {execute-named-command (M-x)}} +\entry{beginning-of-line (C-a)}{144}{\code {beginning-of-line (C-a)}} +\entry{end-of-line (C-e)}{144}{\code {end-of-line (C-e)}} +\entry{forward-char (C-f)}{144}{\code {forward-char (C-f)}} +\entry{backward-char (C-b)}{144}{\code {backward-char (C-b)}} +\entry{forward-word (M-f)}{144}{\code {forward-word (M-f)}} +\entry{backward-word (M-b)}{144}{\code {backward-word (M-b)}} +\entry{shell-forward-word (M-C-f)}{144}{\code {shell-forward-word (M-C-f)}} +\entry{shell-backward-word (M-C-b)}{144}{\code {shell-backward-word (M-C-b)}} +\entry{previous-screen-line ()}{144}{\code {previous-screen-line ()}} +\entry{next-screen-line ()}{145}{\code {next-screen-line ()}} +\entry{clear-display (M-C-l)}{145}{\code {clear-display (M-C-l)}} +\entry{clear-screen (C-l)}{145}{\code {clear-screen (C-l)}} +\entry{redraw-current-line ()}{145}{\code {redraw-current-line ()}} +\entry{accept-line (Newline or Return)}{145}{\code {accept-line (Newline or Return)}} +\entry{previous-history (C-p)}{145}{\code {previous-history (C-p)}} +\entry{next-history (C-n)}{145}{\code {next-history (C-n)}} +\entry{beginning-of-history (M-<)}{145}{\code {beginning-of-history (M-<)}} +\entry{end-of-history (M->)}{145}{\code {end-of-history (M->)}} +\entry{reverse-search-history (C-r)}{145}{\code {reverse-search-history (C-r)}} +\entry{forward-search-history (C-s)}{145}{\code {forward-search-history (C-s)}} +\entry{non-incremental-reverse-search-history (M-p)}{145}{\code {non-incremental-reverse-search-history (M-p)}} +\entry{non-incremental-forward-search-history (M-n)}{146}{\code {non-incremental-forward-search-history (M-n)}} +\entry{history-search-backward ()}{146}{\code {history-search-backward ()}} +\entry{history-search-forward ()}{146}{\code {history-search-forward ()}} +\entry{history-substring-search-backward ()}{146}{\code {history-substring-search-backward ()}} +\entry{history-substring-search-forward ()}{146}{\code {history-substring-search-forward ()}} +\entry{yank-nth-arg (M-C-y)}{146}{\code {yank-nth-arg (M-C-y)}} +\entry{yank-last-arg (M-. or M-_)}{146}{\code {yank-last-arg (M-. or M-_)}} +\entry{operate-and-get-next (C-o)}{147}{\code {operate-and-get-next (C-o)}} +\entry{fetch-history ()}{147}{\code {fetch-history ()}} +\entry{end-of-file (usually C-d)}{147}{\code {\i {end-of-file} (usually C-d)}} +\entry{delete-char (C-d)}{147}{\code {delete-char (C-d)}} +\entry{backward-delete-char (Rubout)}{147}{\code {backward-delete-char (Rubout)}} +\entry{forward-backward-delete-char ()}{147}{\code {forward-backward-delete-char ()}} +\entry{quoted-insert (C-q or C-v)}{147}{\code {quoted-insert (C-q or C-v)}} +\entry{self-insert (a, b, A, 1, !, ...{})}{147}{\code {self-insert (a, b, A, 1, !, \dots {})}} +\entry{bracketed-paste-begin ()}{147}{\code {bracketed-paste-begin ()}} +\entry{transpose-chars (C-t)}{147}{\code {transpose-chars (C-t)}} +\entry{transpose-words (M-t)}{148}{\code {transpose-words (M-t)}} +\entry{shell-transpose-words (M-C-t)}{148}{\code {shell-transpose-words (M-C-t)}} +\entry{upcase-word (M-u)}{148}{\code {upcase-word (M-u)}} +\entry{downcase-word (M-l)}{148}{\code {downcase-word (M-l)}} +\entry{capitalize-word (M-c)}{148}{\code {capitalize-word (M-c)}} +\entry{overwrite-mode ()}{148}{\code {overwrite-mode ()}} +\entry{kill-line (C-k)}{148}{\code {kill-line (C-k)}} +\entry{backward-kill-line (C-x Rubout)}{148}{\code {backward-kill-line (C-x Rubout)}} +\entry{unix-line-discard (C-u)}{148}{\code {unix-line-discard (C-u)}} +\entry{kill-whole-line ()}{149}{\code {kill-whole-line ()}} +\entry{kill-word (M-d)}{149}{\code {kill-word (M-d)}} +\entry{backward-kill-word (M-DEL)}{149}{\code {backward-kill-word (M-\key {DEL})}} +\entry{shell-kill-word (M-C-d)}{149}{\code {shell-kill-word (M-C-d)}} +\entry{shell-backward-kill-word ()}{149}{\code {shell-backward-kill-word ()}} +\entry{unix-word-rubout (C-w)}{149}{\code {unix-word-rubout (C-w)}} +\entry{unix-filename-rubout ()}{149}{\code {unix-filename-rubout ()}} +\entry{delete-horizontal-space ()}{149}{\code {delete-horizontal-space ()}} +\entry{kill-region ()}{149}{\code {kill-region ()}} +\entry{copy-region-as-kill ()}{149}{\code {copy-region-as-kill ()}} +\entry{copy-backward-word ()}{149}{\code {copy-backward-word ()}} +\entry{copy-forward-word ()}{149}{\code {copy-forward-word ()}} +\entry{yank (C-y)}{149}{\code {yank (C-y)}} +\entry{yank-pop (M-y)}{149}{\code {yank-pop (M-y)}} +\entry{digit-argument (M-0, M-1, ...{} M--)}{150}{\code {digit-argument (\kbd {M-0}, \kbd {M-1}, \dots {} \kbd {M--})}} +\entry{universal-argument ()}{150}{\code {universal-argument ()}} +\entry{complete (TAB)}{150}{\code {complete (\key {TAB})}} +\entry{possible-completions (M-?)}{150}{\code {possible-completions (M-?)}} +\entry{insert-completions (M-*)}{150}{\code {insert-completions (M-*)}} +\entry{menu-complete ()}{150}{\code {menu-complete ()}} +\entry{menu-complete-backward ()}{150}{\code {menu-complete-backward ()}} +\entry{delete-char-or-list ()}{151}{\code {delete-char-or-list ()}} +\entry{complete-filename (M-/)}{151}{\code {complete-filename (M-/)}} +\entry{possible-filename-completions (C-x /)}{151}{\code {possible-filename-completions (C-x /)}} +\entry{complete-username (M-~)}{151}{\code {complete-username (M-~)}} +\entry{possible-username-completions (C-x ~)}{151}{\code {possible-username-completions (C-x ~)}} +\entry{complete-variable (M-$)}{151}{\code {complete-variable (M-$)}} +\entry{possible-variable-completions (C-x $)}{151}{\code {possible-variable-completions (C-x $)}} +\entry{complete-hostname (M-@)}{151}{\code {complete-hostname (M-@)}} +\entry{possible-hostname-completions (C-x @)}{151}{\code {possible-hostname-completions (C-x @)}} +\entry{complete-command (M-!)}{151}{\code {complete-command (M-!)}} +\entry{possible-command-completions (C-x !)}{151}{\code {possible-command-completions (C-x !)}} +\entry{dynamic-complete-history (M-TAB)}{151}{\code {dynamic-complete-history (M-\key {TAB})}} +\entry{dabbrev-expand ()}{151}{\code {dabbrev-expand ()}} +\entry{complete-into-braces (M-{\indexlbrace })}{151}{\code {complete-into-braces (M-{\tt \char 123})}} +\entry{start-kbd-macro (C-x ()}{152}{\code {start-kbd-macro (C-x ()}} +\entry{end-kbd-macro (C-x ))}{152}{\code {end-kbd-macro (C-x ))}} +\entry{call-last-kbd-macro (C-x e)}{152}{\code {call-last-kbd-macro (C-x e)}} +\entry{print-last-kbd-macro ()}{152}{\code {print-last-kbd-macro ()}} +\entry{re-read-init-file (C-x C-r)}{152}{\code {re-read-init-file (C-x C-r)}} +\entry{abort (C-g)}{152}{\code {abort (C-g)}} +\entry{do-lowercase-version (M-A, M-B, M-x, ...{})}{152}{\code {do-lowercase-version (M-A, M-B, M-\var {x}, \dots {})}} +\entry{prefix-meta (ESC)}{152}{\code {prefix-meta (\key {ESC})}} +\entry{undo (C-_ or C-x C-u)}{152}{\code {undo (C-_ or C-x C-u)}} +\entry{revert-line (M-r)}{152}{\code {revert-line (M-r)}} +\entry{tilde-expand (M-&)}{152}{\code {tilde-expand (M-&)}} +\entry{set-mark (C-@)}{152}{\code {set-mark (C-@)}} +\entry{exchange-point-and-mark (C-x C-x)}{152}{\code {exchange-point-and-mark (C-x C-x)}} +\entry{character-search (C-])}{152}{\code {character-search (C-])}} +\entry{character-search-backward (M-C-])}{153}{\code {character-search-backward (M-C-])}} +\entry{skip-csi-sequence ()}{153}{\code {skip-csi-sequence ()}} +\entry{insert-comment (M-#)}{153}{\code {insert-comment (M-#)}} +\entry{dump-functions ()}{153}{\code {dump-functions ()}} +\entry{dump-variables ()}{153}{\code {dump-variables ()}} +\entry{dump-macros ()}{153}{\code {dump-macros ()}} +\entry{spell-correct-word (C-x s)}{153}{\code {spell-correct-word (C-x s)}} +\entry{glob-complete-word (M-g)}{153}{\code {glob-complete-word (M-g)}} +\entry{glob-expand-word (C-x *)}{154}{\code {glob-expand-word (C-x *)}} +\entry{glob-list-expansions (C-x g)}{154}{\code {glob-list-expansions (C-x g)}} +\entry{display-shell-version (C-x C-v)}{154}{\code {display-shell-version (C-x C-v)}} +\entry{shell-expand-line (M-C-e)}{154}{\code {shell-expand-line (M-C-e)}} +\entry{history-expand-line (M-^)}{154}{\code {history-expand-line (M-^)}} +\entry{magic-space ()}{154}{\code {magic-space ()}} +\entry{alias-expand-line ()}{154}{\code {alias-expand-line ()}} +\entry{history-and-alias-expand-line ()}{154}{\code {history-and-alias-expand-line ()}} +\entry{insert-last-argument (M-. or M-_)}{154}{\code {insert-last-argument (M-. or M-_)}} +\entry{edit-and-execute-command (C-x C-e)}{154}{\code {edit-and-execute-command (C-x C-e)}} +\entry{execute-named-command (M-x)}{154}{\code {execute-named-command (M-x)}} diff --git a/doc/bashref.fns b/doc/bashref.fns index d32b42a75..e31111f57 100644 --- a/doc/bashref.fns +++ b/doc/bashref.fns @@ -1,135 +1,135 @@ \initial {A} -\entry{\code {abort (C-g)}}{147} -\entry{\code {accept-line (Newline or Return)}}{140} -\entry{\code {alias-expand-line ()}}{149} +\entry{\code {abort (C-g)}}{152} +\entry{\code {accept-line (Newline or Return)}}{145} +\entry{\code {alias-expand-line ()}}{154} \initial {B} -\entry{\code {backward-char (C-b)}}{139} -\entry{\code {backward-delete-char (Rubout)}}{142} -\entry{\code {backward-kill-line (C-x Rubout)}}{143} -\entry{\code {backward-kill-word (M-\key {DEL})}}{144} -\entry{\code {backward-word (M-b)}}{139} -\entry{\code {beginning-of-history (M-<)}}{140} -\entry{\code {beginning-of-line (C-a)}}{139} -\entry{\code {bracketed-paste-begin ()}}{142} +\entry{\code {backward-char (C-b)}}{144} +\entry{\code {backward-delete-char (Rubout)}}{147} +\entry{\code {backward-kill-line (C-x Rubout)}}{148} +\entry{\code {backward-kill-word (M-\key {DEL})}}{149} +\entry{\code {backward-word (M-b)}}{144} +\entry{\code {beginning-of-history (M-<)}}{145} +\entry{\code {beginning-of-line (C-a)}}{144} +\entry{\code {bracketed-paste-begin ()}}{147} \initial {C} -\entry{\code {call-last-kbd-macro (C-x e)}}{147} -\entry{\code {capitalize-word (M-c)}}{143} -\entry{\code {character-search (C-])}}{147} -\entry{\code {character-search-backward (M-C-])}}{148} -\entry{\code {clear-display (M-C-l)}}{140} -\entry{\code {clear-screen (C-l)}}{140} -\entry{\code {complete (\key {TAB})}}{145} -\entry{\code {complete-command (M-!)}}{146} -\entry{\code {complete-filename (M-/)}}{146} -\entry{\code {complete-hostname (M-@)}}{146} -\entry{\code {complete-into-braces (M-{\tt \char 123})}}{146} -\entry{\code {complete-username (M-~)}}{146} -\entry{\code {complete-variable (M-$)}}{146} -\entry{\code {copy-backward-word ()}}{144} -\entry{\code {copy-forward-word ()}}{144} -\entry{\code {copy-region-as-kill ()}}{144} +\entry{\code {call-last-kbd-macro (C-x e)}}{152} +\entry{\code {capitalize-word (M-c)}}{148} +\entry{\code {character-search (C-])}}{152} +\entry{\code {character-search-backward (M-C-])}}{153} +\entry{\code {clear-display (M-C-l)}}{145} +\entry{\code {clear-screen (C-l)}}{145} +\entry{\code {complete (\key {TAB})}}{150} +\entry{\code {complete-command (M-!)}}{151} +\entry{\code {complete-filename (M-/)}}{151} +\entry{\code {complete-hostname (M-@)}}{151} +\entry{\code {complete-into-braces (M-{\tt \char 123})}}{151} +\entry{\code {complete-username (M-~)}}{151} +\entry{\code {complete-variable (M-$)}}{151} +\entry{\code {copy-backward-word ()}}{149} +\entry{\code {copy-forward-word ()}}{149} +\entry{\code {copy-region-as-kill ()}}{149} \initial {D} -\entry{\code {dabbrev-expand ()}}{146} -\entry{\code {delete-char (C-d)}}{142} -\entry{\code {delete-char-or-list ()}}{146} -\entry{\code {delete-horizontal-space ()}}{144} -\entry{\code {digit-argument (\kbd {M-0}, \kbd {M-1}, \dots {} \kbd {M--})}}{145} -\entry{\code {display-shell-version (C-x C-v)}}{149} -\entry{\code {do-lowercase-version (M-A, M-B, M-\var {x}, \dots {})}}{147} -\entry{\code {downcase-word (M-l)}}{143} -\entry{\code {dump-functions ()}}{148} -\entry{\code {dump-macros ()}}{148} -\entry{\code {dump-variables ()}}{148} -\entry{\code {dynamic-complete-history (M-\key {TAB})}}{146} +\entry{\code {dabbrev-expand ()}}{151} +\entry{\code {delete-char (C-d)}}{147} +\entry{\code {delete-char-or-list ()}}{151} +\entry{\code {delete-horizontal-space ()}}{149} +\entry{\code {digit-argument (\kbd {M-0}, \kbd {M-1}, \dots {} \kbd {M--})}}{150} +\entry{\code {display-shell-version (C-x C-v)}}{154} +\entry{\code {do-lowercase-version (M-A, M-B, M-\var {x}, \dots {})}}{152} +\entry{\code {downcase-word (M-l)}}{148} +\entry{\code {dump-functions ()}}{153} +\entry{\code {dump-macros ()}}{153} +\entry{\code {dump-variables ()}}{153} +\entry{\code {dynamic-complete-history (M-\key {TAB})}}{151} \initial {E} -\entry{\code {edit-and-execute-command (C-x C-e)}}{149} -\entry{\code {end-kbd-macro (C-x ))}}{147} -\entry{\code {\i {end-of-file} (usually C-d)}}{142} -\entry{\code {end-of-history (M->)}}{140} -\entry{\code {end-of-line (C-e)}}{139} -\entry{\code {exchange-point-and-mark (C-x C-x)}}{147} -\entry{\code {execute-named-command (M-x)}}{149} +\entry{\code {edit-and-execute-command (C-x C-e)}}{154} +\entry{\code {end-kbd-macro (C-x ))}}{152} +\entry{\code {\i {end-of-file} (usually C-d)}}{147} +\entry{\code {end-of-history (M->)}}{145} +\entry{\code {end-of-line (C-e)}}{144} +\entry{\code {exchange-point-and-mark (C-x C-x)}}{152} +\entry{\code {execute-named-command (M-x)}}{154} \initial {F} -\entry{\code {fetch-history ()}}{142} -\entry{\code {forward-backward-delete-char ()}}{142} -\entry{\code {forward-char (C-f)}}{139} -\entry{\code {forward-search-history (C-s)}}{140} -\entry{\code {forward-word (M-f)}}{139} +\entry{\code {fetch-history ()}}{147} +\entry{\code {forward-backward-delete-char ()}}{147} +\entry{\code {forward-char (C-f)}}{144} +\entry{\code {forward-search-history (C-s)}}{145} +\entry{\code {forward-word (M-f)}}{144} \initial {G} -\entry{\code {glob-complete-word (M-g)}}{148} -\entry{\code {glob-expand-word (C-x *)}}{149} -\entry{\code {glob-list-expansions (C-x g)}}{149} +\entry{\code {glob-complete-word (M-g)}}{153} +\entry{\code {glob-expand-word (C-x *)}}{154} +\entry{\code {glob-list-expansions (C-x g)}}{154} \initial {H} -\entry{\code {history-and-alias-expand-line ()}}{149} -\entry{\code {history-expand-line (M-^)}}{149} -\entry{\code {history-search-backward ()}}{141} -\entry{\code {history-search-forward ()}}{141} -\entry{\code {history-substring-search-backward ()}}{141} -\entry{\code {history-substring-search-forward ()}}{141} +\entry{\code {history-and-alias-expand-line ()}}{154} +\entry{\code {history-expand-line (M-^)}}{154} +\entry{\code {history-search-backward ()}}{146} +\entry{\code {history-search-forward ()}}{146} +\entry{\code {history-substring-search-backward ()}}{146} +\entry{\code {history-substring-search-forward ()}}{146} \initial {I} -\entry{\code {insert-comment (M-#)}}{148} -\entry{\code {insert-completions (M-*)}}{145} -\entry{\code {insert-last-argument (M-. or M-_)}}{149} +\entry{\code {insert-comment (M-#)}}{153} +\entry{\code {insert-completions (M-*)}}{150} +\entry{\code {insert-last-argument (M-. or M-_)}}{154} \initial {K} -\entry{\code {kill-line (C-k)}}{143} -\entry{\code {kill-region ()}}{144} -\entry{\code {kill-whole-line ()}}{144} -\entry{\code {kill-word (M-d)}}{144} +\entry{\code {kill-line (C-k)}}{148} +\entry{\code {kill-region ()}}{149} +\entry{\code {kill-whole-line ()}}{149} +\entry{\code {kill-word (M-d)}}{149} \initial {M} -\entry{\code {magic-space ()}}{149} -\entry{\code {menu-complete ()}}{145} -\entry{\code {menu-complete-backward ()}}{145} +\entry{\code {magic-space ()}}{154} +\entry{\code {menu-complete ()}}{150} +\entry{\code {menu-complete-backward ()}}{150} \initial {N} -\entry{\code {next-history (C-n)}}{140} -\entry{\code {next-screen-line ()}}{140} -\entry{\code {non-incremental-forward-search-history (M-n)}}{141} -\entry{\code {non-incremental-reverse-search-history (M-p)}}{140} +\entry{\code {next-history (C-n)}}{145} +\entry{\code {next-screen-line ()}}{145} +\entry{\code {non-incremental-forward-search-history (M-n)}}{146} +\entry{\code {non-incremental-reverse-search-history (M-p)}}{145} \initial {O} -\entry{\code {operate-and-get-next (C-o)}}{142} -\entry{\code {overwrite-mode ()}}{143} +\entry{\code {operate-and-get-next (C-o)}}{147} +\entry{\code {overwrite-mode ()}}{148} \initial {P} -\entry{\code {possible-command-completions (C-x !)}}{146} -\entry{\code {possible-completions (M-?)}}{145} -\entry{\code {possible-filename-completions (C-x /)}}{146} -\entry{\code {possible-hostname-completions (C-x @)}}{146} -\entry{\code {possible-username-completions (C-x ~)}}{146} -\entry{\code {possible-variable-completions (C-x $)}}{146} -\entry{\code {prefix-meta (\key {ESC})}}{147} -\entry{\code {previous-history (C-p)}}{140} -\entry{\code {previous-screen-line ()}}{139} -\entry{\code {print-last-kbd-macro ()}}{147} +\entry{\code {possible-command-completions (C-x !)}}{151} +\entry{\code {possible-completions (M-?)}}{150} +\entry{\code {possible-filename-completions (C-x /)}}{151} +\entry{\code {possible-hostname-completions (C-x @)}}{151} +\entry{\code {possible-username-completions (C-x ~)}}{151} +\entry{\code {possible-variable-completions (C-x $)}}{151} +\entry{\code {prefix-meta (\key {ESC})}}{152} +\entry{\code {previous-history (C-p)}}{145} +\entry{\code {previous-screen-line ()}}{144} +\entry{\code {print-last-kbd-macro ()}}{152} \initial {Q} -\entry{\code {quoted-insert (C-q or C-v)}}{142} +\entry{\code {quoted-insert (C-q or C-v)}}{147} \initial {R} -\entry{\code {re-read-init-file (C-x C-r)}}{147} -\entry{\code {redraw-current-line ()}}{140} -\entry{\code {reverse-search-history (C-r)}}{140} -\entry{\code {revert-line (M-r)}}{147} +\entry{\code {re-read-init-file (C-x C-r)}}{152} +\entry{\code {redraw-current-line ()}}{145} +\entry{\code {reverse-search-history (C-r)}}{145} +\entry{\code {revert-line (M-r)}}{152} \initial {S} -\entry{\code {self-insert (a, b, A, 1, !, \dots {})}}{142} -\entry{\code {set-mark (C-@)}}{147} -\entry{\code {shell-backward-kill-word ()}}{144} -\entry{\code {shell-backward-word (M-C-b)}}{139} -\entry{\code {shell-expand-line (M-C-e)}}{149} -\entry{\code {shell-forward-word (M-C-f)}}{139} -\entry{\code {shell-kill-word (M-C-d)}}{144} -\entry{\code {shell-transpose-words (M-C-t)}}{143} -\entry{\code {skip-csi-sequence ()}}{148} -\entry{\code {spell-correct-word (C-x s)}}{148} -\entry{\code {start-kbd-macro (C-x ()}}{147} +\entry{\code {self-insert (a, b, A, 1, !, \dots {})}}{147} +\entry{\code {set-mark (C-@)}}{152} +\entry{\code {shell-backward-kill-word ()}}{149} +\entry{\code {shell-backward-word (M-C-b)}}{144} +\entry{\code {shell-expand-line (M-C-e)}}{154} +\entry{\code {shell-forward-word (M-C-f)}}{144} +\entry{\code {shell-kill-word (M-C-d)}}{149} +\entry{\code {shell-transpose-words (M-C-t)}}{148} +\entry{\code {skip-csi-sequence ()}}{153} +\entry{\code {spell-correct-word (C-x s)}}{153} +\entry{\code {start-kbd-macro (C-x ()}}{152} \initial {T} -\entry{\code {tilde-expand (M-&)}}{147} -\entry{\code {transpose-chars (C-t)}}{142} -\entry{\code {transpose-words (M-t)}}{143} +\entry{\code {tilde-expand (M-&)}}{152} +\entry{\code {transpose-chars (C-t)}}{147} +\entry{\code {transpose-words (M-t)}}{148} \initial {U} -\entry{\code {undo (C-_ or C-x C-u)}}{147} -\entry{\code {universal-argument ()}}{145} -\entry{\code {unix-filename-rubout ()}}{144} -\entry{\code {unix-line-discard (C-u)}}{143} -\entry{\code {unix-word-rubout (C-w)}}{144} -\entry{\code {upcase-word (M-u)}}{143} +\entry{\code {undo (C-_ or C-x C-u)}}{152} +\entry{\code {universal-argument ()}}{150} +\entry{\code {unix-filename-rubout ()}}{149} +\entry{\code {unix-line-discard (C-u)}}{148} +\entry{\code {unix-word-rubout (C-w)}}{149} +\entry{\code {upcase-word (M-u)}}{148} \initial {Y} -\entry{\code {yank (C-y)}}{144} -\entry{\code {yank-last-arg (M-. or M-_)}}{141} -\entry{\code {yank-nth-arg (M-C-y)}}{141} -\entry{\code {yank-pop (M-y)}}{144} +\entry{\code {yank (C-y)}}{149} +\entry{\code {yank-last-arg (M-. or M-_)}}{146} +\entry{\code {yank-nth-arg (M-C-y)}}{146} +\entry{\code {yank-pop (M-y)}}{149} diff --git a/doc/bashref.info b/doc/bashref.info index 61c908d1e..2b0040a1d 100644 --- a/doc/bashref.info +++ b/doc/bashref.info @@ -2,12 +2,12 @@ This is bashref.info, produced by makeinfo version 7.1 from bashref.texi. This text is a brief description of the features that are present in the -Bash shell (version 5.3, 5 September 2024). +Bash shell (version 5.3, 29 September 2024). - This is Edition 5.3, last updated 5 September 2024, of ‘The GNU Bash + This is Edition 5.3, last updated 29 September 2024, of ‘The GNU Bash Reference Manual’, for ‘Bash’, Version 5.3. - Copyright © 1988-2023 Free Software Foundation, Inc. + Copyright © 1988-2024 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, @@ -27,10 +27,10 @@ Bash Features ************* This text is a brief description of the features that are present in the -Bash shell (version 5.3, 5 September 2024). The Bash home page is +Bash shell (version 5.3, 29 September 2024). The Bash home page is . - This is Edition 5.3, last updated 5 September 2024, of ‘The GNU Bash + This is Edition 5.3, last updated 29 September 2024, of ‘The GNU Bash Reference Manual’, for ‘Bash’, Version 5.3. Bash contains features that appear in other popular shells, and some @@ -100,7 +100,7 @@ use. version of ‘csh’, Bash is the default shell. Like other GNU software, Bash is quite portable. It currently runs on nearly every version of Unix and a few other operating systems − independently-supported ports -exist for MS-DOS, OS/2, and Windows platforms. +exist for Windows and other platforms.  File: bashref.info, Node: What is a shell?, Prev: What is Bash?, Up: Introduction @@ -123,7 +123,8 @@ automate their common tasks. Shells may be used interactively or non-interactively. In interactive mode, they accept input typed from the keyboard. When -executing non-interactively, shells execute commands read from a file. +executing non-interactively, shells execute commands read from a file or +a string. A shell allows execution of GNU commands, both synchronously and asynchronously. The shell waits for synchronous commands to complete @@ -358,13 +359,14 @@ as such, and to prevent parameter expansion. Each of the shell metacharacters (*note Definitions::) has special meaning to the shell and must be quoted if it is to represent itself. -When the command history expansion facilities are being used (*note + + When the command history expansion facilities are being used (*note History Interaction::), the “history expansion” character, usually ‘!’, must be quoted to prevent history expansion. *Note Bash History Facilities::, for more details concerning history expansion. - There are three quoting mechanisms: the “escape character”, single -quotes, and double quotes. + There are four quoting mechanisms: the “escape character”, single +quotes, double quotes, and dollar-single quotes.  File: bashref.info, Node: Escape Character, Next: Single Quotes, Up: Quoting @@ -373,10 +375,11 @@ File: bashref.info, Node: Escape Character, Next: Single Quotes, Up: Quoting ........................ A non-quoted backslash ‘\’ is the Bash escape character. It preserves -the literal value of the next character that follows, with the exception -of ‘newline’. If a ‘\newline’ pair appears, and the backslash itself is -not quoted, the ‘\newline’ is treated as a line continuation (that is, -it is removed from the input stream and effectively ignored). +the literal value of the next character that follows, removing any +special meaning it has, with the exception of ‘newline’. If a +‘\newline’ pair appears, and the backslash itself is not quoted, the +‘\newline’ is treated as a line continuation (that is, it is removed +from the input stream and effectively ignored).  File: bashref.info, Node: Single Quotes, Next: Double Quotes, Prev: Escape Character, Up: Quoting @@ -404,11 +407,12 @@ characters ‘$’ and ‘`’ retain their special meaning within double quotes only when followed by one of the following characters: ‘$’, ‘`’, ‘"’, ‘\’, or ‘newline’. Within double quotes, backslashes that are followed by one of these characters are removed. Backslashes preceding -characters without a special meaning are left unmodified. A double -quote may be quoted within double quotes by preceding it with a -backslash. If enabled, history expansion will be performed unless an -‘!’ appearing in double quotes is escaped using a backslash. The -backslash preceding the ‘!’ is not removed. +characters without a special meaning are left unmodified. + + A double quote may be quoted within double quotes by preceding it +with a backslash. If enabled, history expansion will be performed +unless an ‘!’ appearing in double quotes is escaped using a backslash. +The backslash preceding the ‘!’ is not removed. The special parameters ‘*’ and ‘@’ have special meaning when in double quotes (*note Shell Parameter Expansion::). @@ -486,7 +490,8 @@ translation, using the ‘LC_MESSAGES’, ‘TEXTDOMAINDIR’, and ‘TEXTDOMAIN shell variables, as explained below. See the gettext documentation for additional details not covered here. If the current locale is ‘C’ or ‘POSIX’, if there are no translations available, or if the string is not -translated, the dollar sign is ignored. Since this is a form of double +translated, the dollar sign is ignored, and the string is treated as +double-quoted as described above. Since this is a form of double quoting, the string remains double-quoted by default, whether or not it is translated and replaced. If the ‘noexpand_translation’ option is enabled using the ‘shopt’ builtin (*note The Shopt Builtin::), @@ -591,12 +596,14 @@ File: bashref.info, Node: Comments, Prev: Quoting, Up: Shell Syntax In a non-interactive shell, or an interactive shell in which the ‘interactive_comments’ option to the ‘shopt’ builtin is enabled (*note -The Shopt Builtin::), a word beginning with ‘#’ causes that word and all -remaining characters on that line to be ignored. An interactive shell -without the ‘interactive_comments’ option enabled does not allow -comments. The ‘interactive_comments’ option is on by default in -interactive shells. *Note Interactive Shells::, for a description of -what makes a shell interactive. +The Shopt Builtin::), a word beginning with ‘#’ introduces a comment. A +word begins at the beginning of a line, after unquoted whitespace, or +after an operator. The comment causes that word and all remaining +characters on that line to be ignored. An interactive shell without the +‘interactive_comments’ option enabled does not allow comments. The +‘interactive_comments’ option is enabled by default in interactive +shells. *Note Interactive Shells::, for a description of what makes a +shell interactive.  File: bashref.info, Node: Shell Commands, Next: Shell Functions, Prev: Shell Syntax, Up: Basic Shell Features @@ -650,9 +657,9 @@ File: bashref.info, Node: Simple Commands, Next: Pipelines, Prev: Reserved Wo 3.2.2 Simple Commands --------------------- -A simple command is the kind of command encountered most often. It's -just a sequence of words separated by ‘blank’s, terminated by one of the -shell's control operators (*note Definitions::). The first word +A simple command is the kind of command that's executed most often. +It's just a sequence of words separated by ‘blank’s, terminated by one +of the shell's control operators (*note Definitions::). The first word generally specifies a command to be executed, with the rest of the words being that command's arguments. @@ -677,11 +684,12 @@ the input of the next command. That is, each command reads the previous command's output. This connection is performed before any redirections specified by COMMAND1. - If ‘|&’ is used, COMMAND1's standard error, in addition to its -standard output, is connected to COMMAND2's standard input through the -pipe; it is shorthand for ‘2>&1 |’. This implicit redirection of the -standard error to the standard output is performed after any -redirections specified by COMMAND1. + If ‘|&’ is the pipeline operator, COMMAND1's standard error, in +addition to its standard output, is connected to COMMAND2's standard +input through the pipe; it is shorthand for ‘2>&1 |’. This implicit +redirection of the standard error to the standard output is performed +after any redirections specified by COMMAND1, consistent with that +shorthand. The reserved word ‘time’ causes timing statistics to be printed for the pipeline once it finishes. The statistics currently consist of @@ -689,7 +697,7 @@ elapsed (wall-clock) time and user and system time consumed by the command's execution. The ‘-p’ option changes the output format to that specified by POSIX. When the shell is in POSIX mode (*note Bash POSIX Mode::), it does not recognize ‘time’ as a reserved word if the next -token begins with a ‘-’. The ‘TIMEFORMAT’ variable may be set to a +token begins with a ‘-’. The value of the ‘TIMEFORMAT’ variable is a format string that specifies how the timing information should be displayed. *Note Bash Variables::, for a description of the available formats. The use of ‘time’ as a reserved word permits the timing of @@ -701,15 +709,15 @@ be followed by a newline. In this case, the shell displays the total user and system time consumed by the shell and its children. The ‘TIMEFORMAT’ variable specifies the format of the time information. - If the pipeline is not executed asynchronously (*note Lists::), the + If a pipeline is not executed asynchronously (*note Lists::), the shell waits for all commands in the pipeline to complete. Each command in a multi-command pipeline, where pipes are created, is executed in its own “subshell”, which is a separate process (*note Command Execution Environment::). If the ‘lastpipe’ option is enabled -using the ‘shopt’ builtin (*note The Shopt Builtin::), the last element -of a pipeline may be run by the shell process when job control is not -active. +using the ‘shopt’ builtin (*note The Shopt Builtin::), and job control +is not active, the last element of a pipeline may be run by the shell +process. The exit status of a pipeline is the exit status of the last command in the pipeline, unless the ‘pipefail’ option is enabled (*note The Set @@ -717,8 +725,10 @@ Builtin::). If ‘pipefail’ is enabled, the pipeline's return status is the value of the last (rightmost) command to exit with a non-zero status, or zero if all commands exit successfully. If the reserved word ‘!’ precedes the pipeline, the exit status is the logical negation of -the exit status as described above. The shell waits for all commands in -the pipeline to terminate before returning a value. +the exit status as described above. If a pipeline is not executed +asynchronously (*note Lists::), the shell waits for all commands in the +pipeline to terminate before returning a value. The return status of an +asynchronous pipeline is 0.  File: bashref.info, Node: Lists, Next: Compound Commands, Prev: Pipelines, Up: Shell Commands @@ -830,9 +840,9 @@ syntax, it may be replaced with one or more newlines. for NAME [ [in [WORDS ...] ] ; ] do COMMANDS; done - Expand WORDS (*note Shell Expansions::), and execute COMMANDS once - for each member in the resultant list, with NAME bound to the - current member. If ‘in WORDS’ is not present, the ‘for’ command + Expand WORDS (*note Shell Expansions::), and then execute COMMANDS + once for each word in the resultant list, with NAME bound to the + current word. If ‘in WORDS’ is not present, the ‘for’ command executes the COMMANDS once for each positional parameter that is set, as if ‘in "$@"’ had been specified (*note Special Parameters::). @@ -845,18 +855,17 @@ syntax, it may be replaced with one or more newlines. for (( EXPR1 ; EXPR2 ; EXPR3 )) ; do COMMANDS ; done - First, the arithmetic expression EXPR1 is evaluated according to - the rules described below (*note Shell Arithmetic::). The - arithmetic expression EXPR2 is then evaluated repeatedly until it - evaluates to zero. Each time EXPR2 evaluates to a non-zero value, - COMMANDS are executed and the arithmetic expression EXPR3 is - evaluated. If any expression is omitted, it behaves as if it - evaluates to 1. The return value is the exit status of the last - command in COMMANDS that is executed, or false if any of the - expressions is invalid. + First, evaluate the arithmetic expression EXPR1 according to the + rules described below (*note Shell Arithmetic::). Then, repeatedly + evaluate the arithmetic expression EXPR2 until it evaluates to + zero. Each time EXPR2 evaluates to a non-zero value, execute + COMMANDS and evaluate the arithmetic expression EXPR3. If any + expression is omitted, it behaves as if it evaluates to 1. The + return value is the exit status of the last command in COMMANDS + that is executed, or non-zero if any of the expressions is invalid. - The ‘break’ and ‘continue’ builtins (*note Bourne Shell Builtins::) -may be used to control loop execution. + Use the ‘break’ and ‘continue’ builtins (*note Bourne Shell +Builtins::) to control loop execution.  File: bashref.info, Node: Conditional Constructs, Next: Command Grouping, Prev: Looping Constructs, Up: Compound Commands @@ -893,14 +902,15 @@ File: bashref.info, Node: Conditional Constructs, Next: Command Grouping, Pre esac ‘case’ will selectively execute the COMMAND-LIST corresponding to - the first PATTERN that matches WORD. The match is performed - according to the rules described below in *note Pattern Matching::. - If the ‘nocasematch’ shell option (see the description of ‘shopt’ - in *note The Shopt Builtin::) is enabled, the match is performed - without regard to the case of alphabetic characters. The ‘|’ is - used to separate multiple patterns, and the ‘)’ operator terminates - a pattern list. A list of patterns and an associated command-list - is known as a CLAUSE. + the first PATTERN that matches WORD, proceeding from the first + pattern to the last. The match is performed according to the rules + described below in *note Pattern Matching::. If the ‘nocasematch’ + shell option (see the description of ‘shopt’ in *note The Shopt + Builtin::) is enabled, the match is performed without regard to the + case of alphabetic characters. The ‘|’ is used to separate + multiple patterns in a pattern list, and the ‘)’ operator + terminates the pattern list. A pattern list and an associated + COMMAND-LIST is known as a CLAUSE. Each clause must be terminated with ‘;;’, ‘;&’, or ‘;;&’. The WORD undergoes tilde expansion, parameter expansion, command @@ -929,16 +939,16 @@ File: bashref.info, Node: Conditional Constructs, Next: Command Grouping, Pre esac echo " legs." - If the ‘;;’ operator is used, no subsequent matches are attempted - after the first pattern match. Using ‘;&’ in place of ‘;;’ causes + If the ‘;;’ operator is used, the ‘case’ command completes after + the first pattern match. Using ‘;&’ in place of ‘;;’ causes execution to continue with the COMMAND-LIST associated with the next clause, if any. Using ‘;;&’ in place of ‘;;’ causes the shell to test the patterns in the next clause, if any, and execute any - associated COMMAND-LIST on a successful match, continuing the case + associated COMMAND-LIST if the match succeeds, continuing the case statement execution as if the pattern list had not matched. - The return status is zero if no PATTERN is matched. Otherwise, the - return status is the exit status of the COMMAND-LIST executed. + The return status is zero if no PATTERN matches. Otherwise, the + return status is the exit status of the last COMMAND-LIST executed. ‘select’ @@ -947,15 +957,15 @@ File: bashref.info, Node: Conditional Constructs, Next: Command Grouping, Pre select NAME [in WORDS ...]; do COMMANDS; done - The list of words following ‘in’ is expanded, generating a list of - items, and the set of expanded words is printed on the standard - error output stream, each preceded by a number. If the ‘in WORDS’ - is omitted, the positional parameters are printed, as if ‘in "$@"’ - had been specified. ‘select’ then displays the ‘PS3’ prompt and - reads a line from the standard input. If the line consists of a - number corresponding to one of the displayed words, then the value - of NAME is set to that word. If the line is empty, the words and - prompt are displayed again. If ‘EOF’ is read, the ‘select’ command + First, expand the list of words following ‘in’, generating a list + of items, and print the set of expanded words on the standard error + stream, each preceded by a number. If the ‘in WORDS’ is omitted, + print the positional parameters, as if ‘in "$@"’ had been + specified. ‘select’ then displays the ‘PS3’ prompt and reads a + line from the standard input. If the line consists of a number + corresponding to one of the displayed words, then ‘select’ sets the + value of NAME to that word. If the line is empty, ‘select’ + displays the words and prompt again. If ‘EOF’ is read, ‘select’ completes and returns 1. Any other value read causes NAME to be set to null. The line read is saved in the variable ‘REPLY’. @@ -979,21 +989,21 @@ File: bashref.info, Node: Conditional Constructs, Next: Command Grouping, Pre described below (*note Shell Arithmetic::). The EXPRESSION undergoes the same expansions as if it were within double quotes, but double quote characters in EXPRESSION are not treated specially - are removed. If the value of the expression is non-zero, the + and are removed. If the value of the expression is non-zero, the return status is 0; otherwise the return status is 1. ‘[[...]]’ [[ EXPRESSION ]] - Return a status of 0 or 1 depending on the evaluation of the - conditional expression EXPRESSION. Expressions are composed of the - primaries described below in *note Bash Conditional Expressions::. - The words between the ‘[[’ and ‘]]’ do not undergo word splitting - and filename expansion. The shell performs tilde expansion, - parameter and variable expansion, arithmetic expansion, command - substitution, process substitution, and quote removal on those - words. Conditional operators such as ‘-f’ must be unquoted to be - recognized as primaries. + Evaluate the conditional expression EXPRESSION and return a status + of zero (true) or non-zero (false). Expressions are composed of + the primaries described below in *note Bash Conditional + Expressions::. The words between the ‘[[’ and ‘]]’ do not undergo + word splitting and filename expansion. The shell performs tilde + expansion, parameter and variable expansion, arithmetic expansion, + command substitution, process substitution, and quote removal on + those words. Conditional operators such as ‘-f’ must be unquoted + to be recognized as primaries. When used with ‘[[’, the ‘<’ and ‘>’ operators sort lexicographically using the current locale. @@ -1189,8 +1199,8 @@ list may be redirected to a single stream. { LIST; } Placing a list of commands between curly braces causes the list to - be executed in the current shell context. No subshell is created. - The semicolon (or newline) following LIST is required. + be executed in the current shell environment. No subshell is + created. The semicolon (or newline) following LIST is required. In addition to the creation of a subshell, there is a subtle difference between these two constructs due to historical reasons. The @@ -1226,7 +1236,7 @@ the default name is ‘COPROC’. coproc NAME { COMMAND; } -This form is recommended because simple commands result in the coprocess +This form is preferred because simple commands result in the coprocess always being named ‘COPROC’, and it is simpler to use and more complete than the other compound commands. @@ -1258,7 +1268,7 @@ subshells. The process ID of the shell spawned to execute the coprocess is available as the value of the variable ‘NAME_PID’. The ‘wait’ builtin -command may be used to wait for the coprocess to terminate. +may be used to wait for the coprocess to terminate. Since the coprocess is created as an asynchronous command, the ‘coproc’ command always returns success. The return status of a @@ -1294,10 +1304,10 @@ File: bashref.info, Node: Shell Functions, Next: Shell Parameters, Prev: Shel Shell functions are a way to group commands for later execution using a single name for the group. They are executed just like a "regular" -command. 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. Shell functions are executed in the current shell context; no -new process is created to interpret them. +simple command. When the name of a shell function is used as a simple +command name, the shell executes the list of commands associated with +that function name. Shell functions are executed in the current shell +context; there is no new process created to interpret them. Functions are declared using this syntax: FNAME () COMPOUND-COMMAND [ REDIRECTIONS ] @@ -1312,15 +1322,15 @@ the parentheses are optional. The “body” of the function is the compound command COMPOUND-COMMAND (*note Compound Commands::). That command is usually a LIST enclosed between { and }, but may be any compound command listed above. If the ‘function’ reserved word is used, -but the parentheses are not supplied, the braces are recommended. -COMPOUND-COMMAND is executed whenever FNAME is specified as the name of -a simple command. When the shell is in POSIX mode (*note Bash POSIX -Mode::), FNAME must be a valid shell name and may not be the same as one -of the special builtins (*note Special Builtins::). In default mode, a -function name can be any unquoted shell word that does not contain ‘$’. -Any redirections (*note Redirections::) associated with the shell -function are performed when the function is executed. A function -definition may be deleted using the ‘-f’ option to the ‘unset’ builtin +but the parentheses are not supplied, the braces are recommended. When +the shell is in POSIX mode (*note Bash POSIX Mode::), FNAME must be a +valid shell name and may not be the same as one of the special builtins +(*note Special Builtins::). When not in POSIX mode, a function name can +be any unquoted shell word that does not contain ‘$’. + + Any redirections (*note Redirections::) associated with the shell +function are performed when the function is executed. Function +definitions are deleted using the ‘-f’ option to the ‘unset’ builtin (*note Bourne Shell Builtins::). The exit status of a function definition is zero unless a syntax @@ -1332,17 +1342,22 @@ last command executed in the body. braces that surround the body of the function must be separated from the body by ‘blank’s or newlines. This is because the braces are reserved words and are only recognized as such when they are separated from the -command list by whitespace or another shell metacharacter. Also, when -using the braces, the LIST must be terminated by a semicolon, a ‘&’, or -a newline. +command list by whitespace or another shell metacharacter. When using +the braces, the LIST must be terminated by a semicolon, a ‘&’, or a +newline. + + COMPOUND-COMMAND is executed whenever FNAME is specified as the name +of a simple command. Functions are executed in the context of the +calling shell; there is no new process created to interpret 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 (*note Positional Parameters::). The special parameter ‘#’ that expands to the number of -positional parameters is updated to reflect the change. Special -parameter ‘0’ is unchanged. The first element of the ‘FUNCNAME’ -variable is set to the name of the function while the function is -executing. +positional parameters is updated to reflect the new set of positional +parameters. Special parameter ‘0’ is unchanged. The first element of +the ‘FUNCNAME’ variable is set to the name of the function while the +function is executing. All other aspects of the shell execution environment are identical between a function and its caller with these exceptions: the ‘DEBUG’ and @@ -1363,28 +1378,29 @@ function completes and execution resumes with the next command after the function call. Any command associated with the ‘RETURN’ trap is executed before execution resumes. When a function completes, the values of the positional parameters and the special parameter ‘#’ are -restored to the values they had prior to the function's execution. If a -numeric argument is given to ‘return’, that is the function's return +restored to the values they had prior to the function's execution. If +‘return’ is supplied a numeric argument, that is the function's return status; otherwise the function's return status is the exit status of the last command executed before the ‘return’. - Variables local to the function may be declared with the ‘local’ -builtin (“local variables”). Ordinarily, variables and their values are -shared between a function and its caller. These variables are visible -only to the function and the commands it invokes. This is particularly + Variables local to the function are declared with the ‘local’ builtin +(“local variables”). Ordinarily, variables and their values are shared +between a function and its caller. These variables are visible only to +the function and the commands it invokes. This is particularly important when a shell function calls other functions. In the following description, the “current scope” is a currently- executing function. Previous scopes consist of that function's caller and so on, back to the "global" scope, where the shell is not executing -any shell function. Consequently, a local variable at the current local -scope is a variable declared using the ‘local’ or ‘declare’ builtins in -the function that is currently executing. +any shell function. A local variable at the current local scope is a +variable declared using the ‘local’ or ‘declare’ builtins in the +function that is currently executing. Local variables "shadow" variables with the same name declared at previous 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. +hides variables with the same name declared at previous scopes, +including global variables: references and assignments refer to the +local variable, leaving the variables at previous scopes unmodified. When the function returns, the global variable is once again visible. The shell uses “dynamic scoping” to control a variable's visibility @@ -1429,20 +1445,22 @@ 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 -‘localvar_unset’shell option changes this behavior). +‘localvar_unset’ shell option changes this behavior). - Function names and definitions may be listed with the ‘-f’ option to -the ‘declare’ (‘typeset’) builtin command (*note Bash Builtins::). The -‘-F’ option to ‘declare’ or ‘typeset’ will list the function names only -(and optionally the source file and line number, if the ‘extdebug’ shell + The ‘-f’ option to the ‘declare’ (‘typeset’) builtin command (*note +Bash Builtins::) will list function names and definitions. The ‘-F’ +option to ‘declare’ or ‘typeset’ will list the function names only (and +optionally the source file and line number, if the ‘extdebug’ shell option is enabled). Functions may be exported so that child shell processes (those created when executing a separate shell invocation) automatically have them defined with the ‘-f’ option to the ‘export’ -builtin (*note Bourne Shell Builtins::). +builtin (*note Bourne Shell Builtins::). The ‘-f’ option to the ‘unset’ +builtin (*note Bourne Shell Builtins::) will delete a function +definition. Functions may be recursive. The ‘FUNCNEST’ variable may be used to limit the depth of the function call stack and restrict the number of -function invocations. By default, no limit is placed on the number of +function invocations. By default, Bash places no limit on the number of recursive calls.  @@ -1461,7 +1479,8 @@ number, or one of the special characters listed below. A “variable” is a parameter denoted by a ‘name’. A variable has a ‘value’ and zero or more ‘attributes’. Attributes are assigned using the ‘declare’ builtin command (see the description of the ‘declare’ builtin in *note Bash -Builtins::). +Builtins::). The ‘export’ and ‘readonly’ builtins assign specific +attributes. A parameter is set if it has been assigned a value. The null string is a valid value. Once a variable is set, it may be unset only by using @@ -1481,15 +1500,18 @@ statements may also appear as arguments to the ‘alias’, ‘declare’, (“declaration” commands). When in POSIX mode (*note Bash POSIX Mode::), these builtins may appear in a command after one or more instances of the ‘command’ builtin and retain these assignment statement properties. +For example, + command export var=value In the context where an assignment statement is assigning a value to -a shell variable or array index (*note Arrays::), the ‘+=’ operator can -be used to append to or add to the variable's previous value. This -includes arguments to builtin commands such as ‘declare’ that accept -assignment statements (declaration commands). When ‘+=’ is applied to a -variable for which the ‘integer’ attribute has been set, VALUE is -evaluated as an arithmetic expression and added to the variable's -current value, which is also evaluated. When ‘+=’ is applied to an +a shell variable or array index (*note Arrays::), the ‘+=’ operator will +append to or add to the variable's previous value. This includes +arguments to declaration commands such as ‘declare’ that accept +assignment statements. When ‘+=’ is applied to a variable for which the +‘integer’ attribute has been set, the variable's current value and VALUE +are each evaluated as arithmetic expressions, and the sum of the results +is assigned as the variable's value. The current value is usually an +integer constant, but may be an expression. When ‘+=’ is applied to an array variable using compound assignment (*note Arrays::), the variable's value is not unset (as it is when using ‘=’), and new values are appended to the array beginning at one greater than the array's @@ -1509,11 +1531,11 @@ shell functions to refer to a variable whose name is passed as an argument to the function. For instance, if a variable name is passed to a shell function as its first argument, running declare -n ref=$1 -inside the function creates a nameref variable ‘ref’ whose value is the -variable name passed as the first argument. References and assignments -to ‘ref’, and changes to its attributes, are treated as references, -assignments, and attribute modifications to the variable whose name was -passed as ‘$1’. +inside the function creates a local nameref variable ‘ref’ whose value +is the variable name passed as the first argument. References and +assignments to ‘ref’, and changes to its attributes, are treated as +references, assignments, and attribute modifications to the variable +whose name was passed as ‘$1’. If the control variable in a ‘for’ loop has the nameref attribute, the list of words can be a list of shell variables, and a name reference @@ -1542,7 +1564,9 @@ Shell Builtin Commands::). The positional parameters are temporarily replaced when a shell function is executed (*note Shell Functions::). When a positional parameter consisting of more than a single digit is -expanded, it must be enclosed in braces. +expanded, it must be enclosed in braces. Without braces, a digit +following ‘$’ can only refer to one of the first nine positional +parameters ($1\-$9) or the special parameter $0 (see below).  File: bashref.info, Node: Special Parameters, Prev: Positional Parameters, Up: Shell Parameters @@ -1551,37 +1575,39 @@ File: bashref.info, Node: Special Parameters, Prev: Positional Parameters, Up ------------------------ The shell treats several parameters specially. These parameters may -only be referenced; assignment to them is not allowed. +only be referenced; assignment to them is not allowed. Special +parameters are denoted by one of the following characters. ‘*’ ($*) Expands to the positional parameters, starting from one. When the expansion is not within double quotes, each positional - parameter expands to a separate word. In contexts where these + parameter expands to a separate word. In contexts where word expansions are performed, those words are subject to further word splitting and filename expansion. When the expansion occurs within double quotes, it expands to a single word with the value of each - parameter separated by the first character of the ‘IFS’ special - variable. That is, ‘"$*"’ is equivalent to ‘"$1C$2C..."’, where C - is the first character of the value of the ‘IFS’ variable. If - ‘IFS’ is unset, the parameters are separated by spaces. If ‘IFS’ - is null, the parameters are joined without intervening separators. + parameter separated by the first character of the ‘IFS’ variable. + That is, ‘"$*"’ is equivalent to ‘"$1C$2C..."’, where C is the + first character of the value of the ‘IFS’ variable. If ‘IFS’ is + unset, the parameters are separated by spaces. If ‘IFS’ is null, + the parameters are joined without intervening separators. ‘@’ ($@) Expands to the positional parameters, starting from one. In contexts where word splitting is performed, this expands each positional parameter to a separate word; if not within double quotes, these words are subject to word splitting. In contexts - where word splitting is not performed, this expands to a single - word with each positional parameter separated by a space. When the - expansion occurs within double quotes, and word splitting is - performed, each parameter expands to a separate word. That is, - ‘"$@"’ is equivalent to ‘"$1" "$2" ...’. If the double-quoted - expansion occurs within a word, the expansion of the first - parameter is joined with the beginning part of the original word, - and the expansion of the last parameter is joined with the last - part of the original word. When there are no positional - parameters, ‘"$@"’ and ‘$@’ expand to nothing (i.e., they are - removed). + where word splitting is not performed, such as the value portion of + an assignment statement, this expands to a single word with each + positional parameter separated by a space. When the expansion + occurs within double quotes, and word splitting is performed, each + parameter expands to a separate word. That is, ‘"$@"’ is + equivalent to ‘"$1" "$2" ...’. If the double-quoted expansion + occurs within a word, the expansion of the first parameter is + joined with the expansion of the beginning part of the original + word, and the expansion of the last parameter is joined with the + expansion of the last part of the original word. When there are no + positional parameters, ‘"$@"’ and ‘$@’ expand to nothing (i.e., + they are removed). ‘#’ ($#) Expands to the number of positional parameters in decimal. @@ -1673,15 +1699,15 @@ File: bashref.info, Node: Brace Expansion, Next: Tilde Expansion, Up: Shell E 3.5.1 Brace Expansion --------------------- -Brace expansion is a mechanism by which arbitrary strings may be -generated. This mechanism is similar to “filename expansion” (*note -Filename Expansion::), but the filenames generated need not exist. -Patterns to be brace expanded take the form of an optional PREAMBLE, -followed by either a series of comma-separated strings or a sequence -expression between a pair of braces, followed by an optional POSTSCRIPT. -The preamble is prefixed to each string contained within the braces, and -the postscript is then appended to each resulting string, expanding left -to right. +Brace expansion is a mechanism to generate arbitrary strings sharing a +common prefix and suffix, either of which can be empty. This mechanism +is similar to “filename expansion” (*note Filename Expansion::), but the +filenames generated need not exist. Patterns to be brace expanded are +formed from an optional PREAMBLE, followed by either a series of +comma-separated strings or a sequence expression between a pair of +braces, followed by an optional POSTSCRIPT. The preamble is prefixed to +each string contained within the braces, and the postscript is then +appended to each resulting string, expanding left to right. Brace expansions may be nested. The results of each expanded string are not sorted; left to right order is preserved. For example, @@ -1732,14 +1758,14 @@ is no unquoted slash) are considered a “tilde-prefix”. If none of the characters in the tilde-prefix are quoted, the characters in the tilde-prefix following the tilde are treated as a possible “login name”. If this login name is the null string, the tilde is replaced with the -value of the ‘HOME’ shell variable. If ‘HOME’ is unset, the home -directory of the user executing the shell is substituted instead. +value of the ‘HOME’ shell variable. If ‘HOME’ is unset, the tilde +expands to the home directory of the user executing the shell instead. Otherwise, the tilde-prefix is replaced with the home directory associated with the specified login name. If the tilde-prefix is ‘~+’, the value of the shell variable ‘PWD’ -replaces the tilde-prefix. If the tilde-prefix is ‘~-’, the value of -the shell variable ‘OLDPWD’, if it is set, is substituted. +replaces the tilde-prefix. If the tilde-prefix is ‘~-’, the shell +substitutes the value of the shell variable ‘OLDPWD’, if it is set. If the characters following the tilde in the tilde-prefix consist of a number N, optionally prefixed by a ‘+’ or a ‘-’, the tilde-prefix is @@ -1749,24 +1775,28 @@ following tilde in the tilde-prefix as an argument (*note The Directory Stack::). If the tilde-prefix, sans the tilde, consists of a number without a leading ‘+’ or ‘-’, ‘+’ is assumed. - If the login name is invalid, or the tilde expansion fails, the word -is left unchanged. + The results of tilde expansion are treated as if they were quoted, so +the replacement is not subject to word splitting and filename expansion. + + If the login name is invalid, or the tilde expansion fails, the +tilde-prefix is left unchanged. - Each variable assignment is checked for unquoted tilde-prefixes -immediately following a ‘:’ or the first ‘=’. In these cases, tilde -expansion is also performed. Consequently, one may use filenames with + Bash checks each variable assignment for unquoted tilde-prefixes +immediately following a ‘:’ or the first ‘=’, and performs tilde +expansion in these cases. Consequently, one may use filenames with tildes in assignments to ‘PATH’, ‘MAILPATH’, and ‘CDPATH’, and the shell assigns the expanded value. The following table shows how Bash treats unquoted tilde-prefixes: ‘~’ - The value of ‘$HOME’ + The value of ‘$HOME’. ‘~/foo’ ‘$HOME/foo’ ‘~fred/foo’ - The subdirectory ‘foo’ of the home directory of the user ‘fred’ + The directory or file ‘foo’ in the home directory of the user + ‘fred’. ‘~+/foo’ ‘$PWD/foo’ @@ -1775,13 +1805,13 @@ assigns the expanded value. ‘${OLDPWD-'~-'}/foo’ ‘~N’ - The string that would be displayed by ‘dirs +N’ + The string that would be displayed by ‘dirs +N’. ‘~+N’ - The string that would be displayed by ‘dirs +N’ + The string that would be displayed by ‘dirs +N’. ‘~-N’ - The string that would be displayed by ‘dirs -N’ + The string that would be displayed by ‘dirs -N’. Bash also performs tilde expansion on words satisfying the conditions of variable assignments (*note Shell Parameters::) when they appear as @@ -1798,32 +1828,36 @@ The ‘$’ character introduces parameter expansion, command substitution, or arithmetic expansion. The parameter name or symbol to be expanded may be enclosed in braces, which are optional but serve to protect the variable to be expanded from characters immediately following it which -could be interpreted as part of the name. +could be interpreted as part of the name. For example, if the first +positional parameter has the value ‘a’, then ‘${11}’ expands to the +value of the eleventh positional parameter, while ‘$11’ expands to ‘a1’. When braces are used, the matching ending brace is the first ‘}’ not escaped by a backslash or within a quoted string, and not within an embedded arithmetic expansion, command substitution, or parameter expansion. - The basic form of parameter expansion is ${PARAMETER}. The value of -PARAMETER is substituted. The PARAMETER is a shell parameter as -described above (*note Shell Parameters::) or an array reference (*note -Arrays::). The braces are required when PARAMETER is a positional -parameter with more than one digit, or when PARAMETER is followed by a -character that is not to be interpreted as part of its name. + The basic form of parameter expansion is ${PARAMETER}, which +substitutes the value of PARAMETER. The PARAMETER is a shell parameter +as described above (*note Shell Parameters::) or an array reference +(*note Arrays::). The braces are required when PARAMETER is a +positional parameter with more than one digit, or when PARAMETER is +followed by a character that is not to be interpreted as part of its +name. If the first character of PARAMETER is an exclamation point (!), and PARAMETER is not a nameref, it introduces a level of indirection. Bash uses the value formed by expanding the rest of PARAMETER as the new -PARAMETER; this is then expanded and that value is used in the rest of -the expansion, rather than the expansion of the original PARAMETER. -This is known as ‘indirect expansion’. The value is subject to tilde -expansion, parameter expansion, command substitution, and arithmetic -expansion. If PARAMETER is a nameref, this expands to the name of the -variable referenced by PARAMETER instead of performing the complete -indirect expansion. The exceptions to this are the expansions of -${!PREFIX*} and ${!NAME[@]} described below. The exclamation point must -immediately follow the left brace in order to introduce indirection. +PARAMETER; this new parameter is then expanded and that value is used in +the rest of the expansion, rather than the expansion of the original +PARAMETER. This is known as ‘indirect expansion’. The value is subject +to tilde expansion, parameter expansion, command substitution, and +arithmetic expansion. If PARAMETER is a nameref, this expands to the +name of the variable referenced by PARAMETER instead of performing the +complete indirect expansion, for compatibility. The exceptions to this +are the expansions of ${!PREFIX*} and ${!NAME[@]} described below. The +exclamation point must immediately follow the left brace in order to +introduce indirection. In each of the cases below, WORD is subject to tilde expansion, parameter expansion, command substitution, and arithmetic expansion. @@ -1848,15 +1882,21 @@ omitted, the operator tests only for existence. $ echo ${v-unset} unset $ v= + $ echo ${v-unset} + $ echo ${v:-unset-or-null} unset-or-null ‘${PARAMETER:=WORD}’ If PARAMETER is unset or null, the expansion of WORD is assigned to - PARAMETER. The value of PARAMETER is then substituted. Positional - parameters and special parameters may not be assigned to in this - way. + PARAMETER, and the result of the expansion is the final value of + PARAMETER. Positional parameters and special parameters may not be + assigned in this way. + $ unset var + $ : ${var=DEFAULT} + $ echo $var + DEFAULT $ var= $ : ${var:=DEFAULT} $ echo $var @@ -1865,8 +1905,10 @@ omitted, the operator tests only for existence. ‘${PARAMETER:?WORD}’ If PARAMETER is null or unset, the expansion of WORD (or a message to that effect if WORD is not present) is written to the standard - error and the shell, if it is not interactive, exits. Otherwise, - the value of PARAMETER is substituted. + error and the shell, if it is not interactive, exits with a + non-zero status. An interactive shell does not exit, but does not + execute the command associated with the expansion. Otherwise, the + value of PARAMETER is substituted. $ var= $ : ${var:?var is unset or null} @@ -1874,11 +1916,16 @@ omitted, the operator tests only for existence. ‘${PARAMETER:+WORD}’ If PARAMETER is null or unset, nothing is substituted, otherwise - the expansion of WORD is substituted. + the expansion of WORD is substituted. The value of PARAMETER is + not used. $ var=123 $ echo ${var:+var is set and not null} var is set and not null + $ var= + $ echo ${var:+var is set and not null} + + $ ‘${PARAMETER:OFFSET}’ ‘${PARAMETER:OFFSET:LENGTH}’ @@ -1897,9 +1944,10 @@ omitted, the operator tests only for existence. If LENGTH evaluates to a number less than zero, it is interpreted as an offset in characters from the end of the value of PARAMETER rather than a number of characters, and the expansion is the - characters between OFFSET and that result. Note that a negative - offset must be separated from the colon by at least one space to - avoid being confused with the ‘:-’ expansion. + characters between OFFSET and that result. + + Note that a negative offset must be separated from the colon by at + least one space to avoid being confused with the ‘:-’ expansion. Here are some examples illustrating substring expansion on parameters and subscripted arrays: @@ -2032,55 +2080,57 @@ omitted, the operator tests only for existence. appears within double quotes, each key expands to a separate word. ‘${#PARAMETER}’ - The length in characters of the expanded value of PARAMETER is - substituted. If PARAMETER is ‘*’ or ‘@’, the value substituted is - the number of positional parameters. If PARAMETER is an array name - subscripted by ‘*’ or ‘@’, the value substituted is the number of - elements in the array. If PARAMETER is an indexed array name - subscripted by a negative number, that number is interpreted as - relative to one greater than the maximum index of PARAMETER, so - negative indices count back from the end of the array, and an index - of -1 references the last element. + Substitutes the length in characters of the value of PARAMETER. If + PARAMETER is ‘*’ or ‘@’, the value substituted is the number of + positional parameters. If PARAMETER is an array name subscripted + by ‘*’ or ‘@’, the value substituted is the number of elements in + the array. If PARAMETER is an indexed array name subscripted by a + negative number, that number is interpreted as relative to one + greater than the maximum index of PARAMETER, so negative indices + count back from the end of the array, and an index of -1 references + the last element. ‘${PARAMETER#WORD}’ ‘${PARAMETER##WORD}’ - The WORD is expanded to produce a pattern and matched according to - the rules described below (*note Pattern Matching::). If the - pattern matches the beginning of the expanded value of PARAMETER, - then the result of the expansion is the expanded value of PARAMETER - with the shortest matching pattern (the ‘#’ case) or the longest - matching pattern (the ‘##’ case) deleted. If PARAMETER is ‘@’ or - ‘*’, the pattern removal operation is applied to each positional - parameter in turn, and the expansion is the resultant list. If - PARAMETER is an array variable subscripted with ‘@’ or ‘*’, the - pattern removal operation is applied to each member of the array in - turn, and the expansion is the resultant list. + The WORD is expanded to produce a pattern and matched against the + expanded value of PARAMETER according to the rules described below + (*note Pattern Matching::). If the pattern matches the beginning + of the expanded value of PARAMETER, then the result of the + expansion is the expanded value of PARAMETER with the shortest + matching pattern (the ‘#’ case) or the longest matching pattern + (the ‘##’ case) deleted. If PARAMETER is ‘@’ or ‘*’, the pattern + removal operation is applied to each positional parameter in turn, + and the expansion is the resultant list. If PARAMETER is an array + variable subscripted with ‘@’ or ‘*’, the pattern removal operation + is applied to each member of the array in turn, and the expansion + is the resultant list. ‘${PARAMETER%WORD}’ ‘${PARAMETER%%WORD}’ - The WORD is expanded to produce a pattern and matched according to - the rules described below (*note Pattern Matching::). If the - pattern matches a trailing portion of the expanded value of - PARAMETER, then the result of the expansion is the value of - PARAMETER with the shortest matching pattern (the ‘%’ case) or the - longest matching pattern (the ‘%%’ case) deleted. If PARAMETER is - ‘@’ or ‘*’, the pattern removal operation is applied to each - positional parameter in turn, and the expansion is the resultant - list. If PARAMETER is an array variable subscripted with ‘@’ or - ‘*’, the pattern removal operation is applied to each member of the - array in turn, and the expansion is the resultant list. + The WORD is expanded to produce a pattern and matched against the + expanded value of PARAMETER according to the rules described below + (*note Pattern Matching::). If the pattern matches a trailing + portion of the expanded value of PARAMETER, then the result of the + expansion is the value of PARAMETER with the shortest matching + pattern (the ‘%’ case) or the longest matching pattern (the ‘%%’ + case) deleted. If PARAMETER is ‘@’ or ‘*’, the pattern removal + operation is applied to each positional parameter in turn, and the + expansion is the resultant list. If PARAMETER is an array variable + subscripted with ‘@’ or ‘*’, the pattern removal operation is + applied to each member of the array in turn, and the expansion is + the resultant list. ‘${PARAMETER/PATTERN/STRING}’ ‘${PARAMETER//PATTERN/STRING}’ ‘${PARAMETER/#PATTERN/STRING}’ ‘${PARAMETER/%PATTERN/STRING}’ The PATTERN is expanded to produce a pattern just as in filename - expansion. PARAMETER is expanded and the longest match of PATTERN - against its value is replaced with STRING. STRING undergoes tilde - expansion, parameter and variable expansion, arithmetic expansion, - command and process substitution, and quote removal. The match is - performed according to the rules described below (*note Pattern - Matching::). + expansion and matched against the expanded value of PARAMETER + according to the rules described below (*note Pattern Matching::). + The longest match of PATTERN in the expanded value is replaced with + STRING. STRING undergoes tilde expansion, parameter and variable + expansion, arithmetic expansion, command and process substitution, + and quote removal. In the first form above, only the first match is replaced. If there are two slashes separating PARAMETER and PATTERN (the second @@ -2088,15 +2138,15 @@ omitted, the operator tests only for existence. PATTERN is preceded by ‘#’ (the third form above), it must match at the beginning of the expanded value of PARAMETER. If PATTERN is preceded by ‘%’ (the fourth form above), it must match at the end - of the expanded value of PARAMETER. If the expansion of STRING is - null, matches of PATTERN are deleted. If STRING is null, matches - of PATTERN are deleted and the ‘/’ following PATTERN may be - omitted. + of the expanded value of PARAMETER. + + If the expansion of STRING is null, matches of PATTERN are deleted + and the ‘/’ following PATTERN may be omitted. - If the ‘patsub_replacement’ shell option is enabled using ‘shopt’, - any unquoted instances of ‘&’ in STRING are replaced with the - matching portion of PATTERN. This is intended to duplicate a - common ‘sed’ idiom. + If the ‘patsub_replacement’ shell option is enabled using ‘shopt’ + (*note The Shopt Builtin::), any unquoted instances of ‘&’ in + STRING are replaced with the matching portion of PATTERN. This is + intended to duplicate a common ‘sed’ idiom. Quoting any part of STRING inhibits replacement in the expansion of the quoted portion, including replacement strings stored in shell @@ -2151,12 +2201,13 @@ omitted, the operator tests only for existence. If the ‘nocasematch’ shell option (see the description of ‘shopt’ in *note The Shopt Builtin::) is enabled, the match is performed - without regard to the case of alphabetic characters. If PARAMETER - is ‘@’ or ‘*’, the substitution operation is applied to each - positional parameter in turn, and the expansion is the resultant - list. If PARAMETER is an array variable subscripted with ‘@’ or - ‘*’, the substitution operation is applied to each member of the - array in turn, and the expansion is the resultant list. + without regard to the case of alphabetic characters. + + If PARAMETER is ‘@’ or ‘*’, the substitution operation is applied + to each positional parameter in turn, and the expansion is the + resultant list. If PARAMETER is an array variable subscripted with + ‘@’ or ‘*’, the substitution operation is applied to each member of + the array in turn, and the expansion is the resultant list. ‘${PARAMETER^PATTERN}’ ‘${PARAMETER^^PATTERN}’ @@ -2322,9 +2373,8 @@ File: bashref.info, Node: Arithmetic Expansion, Next: Process Substitution, P 3.5.5 Arithmetic Expansion -------------------------- -Arithmetic expansion allows the evaluation of an arithmetic expression -and the substitution of the result. The format for arithmetic expansion -is: +Arithmetic expansion evalutes an arithmetic expression and substitutes +the result. The format for arithmetic expansion is: $(( EXPRESSION )) @@ -2337,8 +2387,9 @@ evaluated. Arithmetic expansions may be nested. The evaluation is performed according to the rules listed below (*note Shell Arithmetic::). If the expression is invalid, Bash prints a -message indicating failure to the standard error and no substitution -occurs. +message indicating failure to the standard error, does not perform the +substitution, and does not execute the command associated with the +expansion.  File: bashref.info, Node: Process Substitution, Next: Word Splitting, Prev: Arithmetic Expansion, Up: Shell Expansions @@ -2353,14 +2404,16 @@ or >(LIST) The process LIST is run asynchronously, and its input or output appears as a filename. This filename is passed as an argument to the current -command as the result of the expansion. If the ‘>(LIST)’ form is used, -writing to the file will provide input for LIST. If the ‘<(LIST)’ form -is used, the file passed as an argument should be read to obtain the -output of LIST. Note that no space may appear between the ‘<’ or ‘>’ -and the left parenthesis, otherwise the construct would be interpreted -as a redirection. Process substitution is supported on systems that -support named pipes (FIFOs) or the ‘/dev/fd’ method of naming open -files. +command as the result of the expansion. + + If the ‘>(LIST)’ form is used, writing to the file will provide input +for LIST. If the ‘<(LIST)’ form is used, reading the file will obtain +the output of LIST. Note that no space may appear between the ‘<’ or +‘>’ and the left parenthesis, otherwise the construct would be +interpreted as a redirection. + + Process substitution is supported on systems that support named pipes +(FIFOs) or the ‘/dev/fd’ method of naming open files. When available, process substitution is performed simultaneously with parameter and variable expansion, command substitution, and arithmetic @@ -2383,14 +2436,14 @@ field terminators. If ‘IFS’ is unset, or its value is exactly ‘’, the default, then sequences of ‘space’, ‘tab’, and ‘newline’ at the beginning and end of the results of the previous expansions are ignored, -and any sequence of ‘IFS’ characters not at the beginning or end serves -to delimit words. If ‘IFS’ has a value other than the default, then -sequences of the whitespace characters ‘space’, ‘tab’, and ‘newline’ are -ignored at the beginning and end of the word, as long as the whitespace -character is in the value of ‘IFS’ (an ‘IFS’ whitespace character). Any -character in ‘IFS’ that is not ‘IFS’ whitespace, along with any adjacent -‘IFS’ whitespace characters, delimits a field. A sequence of ‘IFS’ -whitespace characters is also treated as a delimiter. +and any sequence of ‘IFS’ characters not at the beginning or end +delimits words. If ‘IFS’ has a value other than the default, then +sequences of the whitespace characters ‘space’, ‘tab’, and ‘newline’ +present the value of ‘IFS’ (an ‘IFS’ whitespace character) are ignored +at the beginning and end of the word. Any character in ‘IFS’ that is +not ‘IFS’ whitespace, along with any adjacent ‘IFS’ whitespace +characters, delimits a field. A sequence of ‘IFS’ whitespace characters +is also treated as a delimiter. If the value of ‘IFS’ is null, no word splitting occurs. If ‘IFS’ is unset, word splitting behaves as if it contained the default value @@ -2420,15 +2473,17 @@ File: bashref.info, Node: Filename Expansion, Next: Quote Removal, Prev: Word After word splitting, unless the ‘-f’ option has been set (*note The Set Builtin::), Bash scans each word for the characters ‘*’, ‘?’, and ‘[’. If one of these characters appears, and is not quoted, then the word is -regarded as a PATTERN, and replaced with an alphabetically sorted list -of filenames matching the pattern (*note Pattern Matching::). If no -matching filenames are found, and the shell option ‘nullglob’ is -disabled, the word is left unchanged. If the ‘nullglob’ option is set, -and no matches are found, the word is removed. If the ‘failglob’ shell -option is set, and no matches are found, an error message is printed and -the command is not executed. If the shell option ‘nocaseglob’ is -enabled, the match is performed without regard to the case of alphabetic -characters. +regarded as a PATTERN, and replaced with a sorted list of filenames +matching the pattern (*note Pattern Matching::), subject to the value of +the ‘GLOBSORT’ shell variable (*note Bash Variables::). + + If no matching filenames are found, and the shell option ‘nullglob’ +is disabled, the word is left unchanged. If the ‘nullglob’ option is +set, and no matches are found, the word is removed. If the ‘failglob’ +shell option is set, and no matches are found, Bash prints an error +message and does not execute the command. If the shell option +‘nocaseglob’ is enabled, the match is performed without regard to the +case of alphabetic characters. When a pattern is used for filename expansion, the character ‘.’ at the start of a filename or immediately following a slash must be matched @@ -2459,11 +2514,12 @@ non-null value has the effect of enabling the ‘dotglob’ shell option, so all other filenames beginning with a ‘.’ will match. To get the old behavior of ignoring filenames beginning with a ‘.’, make ‘.*’ one of the patterns in ‘GLOBIGNORE’. The ‘dotglob’ option is disabled when -‘GLOBIGNORE’ is unset. +‘GLOBIGNORE’ is unset. The ‘GLOBIGNORE’ pattern matching honors the +setting of the ‘extglob’ shell option. After the pattern is expanded and matched against filenames, the -value of the ‘GLOBSORT’ variable controls how the results are sorted, as -described below (*note Bash Variables::). +value of the ‘GLOBSORT’ shell variable controls how the results are +sorted, as described below (*note Bash Variables::).  File: bashref.info, Node: Pattern Matching, Up: Filename Expansion @@ -2491,12 +2547,13 @@ characters must be quoted if they are to be matched literally. Matches any one of the enclosed characters. A pair of characters separated by a hyphen denotes a RANGE EXPRESSION; any character that falls between those two characters, inclusive, using the - current locale's collating sequence and character set, is matched. - If the first character following the ‘[’ is a ‘!’ or a ‘^’ then any - character not enclosed is matched. A ‘−’ may be matched by - including it as the first or last character in the set. A ‘]’ may - be matched by including it as the first character in the set. The - sorting order of characters in range expressions, and the + current locale's collating sequence and character set, matches. If + the first character following the ‘[’ is a ‘!’ or a ‘^’ then any + character not within the range matches. To match a ‘−’, include it + as the first or last character in the set. To match a ‘]’, include + it as the first character in the set. + + The sorting order of characters in range expressions, and the characters included in the range, are determined by the current locale and the values of the ‘LC_COLLATE’ and ‘LC_ALL’ shell variables, if set. @@ -2562,7 +2619,9 @@ filenames includes all files beginning with ‘.’, but the filenames ‘.’ 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. +If the ‘globskipdots’ shell option is enabled, the filenames ‘.’ and +‘..’ never appear in the set. As above, ‘.’ only has a special meaning +when matching filenames. Complicated extended pattern matching against long strings is slow, especially when the patterns contain alternations and the strings @@ -2590,21 +2649,22 @@ Before a command is executed, its input and output may be “redirected” using a special notation interpreted by the shell. “Redirection” 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 -operators may precede or appear anywhere within a simple command or may -follow a command. Redirections are processed in the order they appear, -from left to right. +writes to. When used with the ‘exec’ builtin, redirections modify file +handles in the current shell execution environment. The following +redirection operators may precede or appear anywhere within a simple +command or may follow a command. Redirections are processed in the +order they appear, from left to right. Each redirection that may be preceded by a file descriptor number may instead be preceded by a word of the form {VARNAME}. In this case, for each redirection operator except >&- and <&-, the shell will allocate a -file descriptor greater than 10 and assign it to {VARNAME}. If >&- or -<&- is preceded by {VARNAME}, the value of VARNAME defines the file +file descriptor greater than 10 and assign it to {VARNAME}. If +{VARNAME} precedes >&- or <&-, the value of VARNAME defines the file descriptor to close. If {VARNAME} is supplied, the redirection persists -beyond the scope of the command, allowing the shell programmer to manage -the file descriptor's lifetime manually. The ‘varredir_close’ shell -option manages this behavior (*note The Shopt Builtin::). +beyond the scope of the command, which allows the shell programmer to +manage the file descriptor's lifetime manually without using the ‘exec’ +builtin. The ‘varredir_close’ shell option manages this behavior (*note +The Shopt Builtin::). In the following descriptions, if the file descriptor number is omitted, and the first character of the redirection operator is ‘<’, the @@ -2612,14 +2672,13 @@ redirection refers to the standard input (file descriptor 0). If the first character of the redirection operator is ‘>’, the redirection refers to the standard output (file descriptor 1). - The word following the redirection operator in the following + The \fIword\fP following the redirection operator in the following descriptions, unless otherwise noted, is subjected to brace expansion, -tilde expansion, parameter expansion, command substitution, arithmetic -expansion, quote removal, filename expansion, and word splitting. If it -expands to more than one word, Bash reports an error. +tilde expansion, parameter and variable expansion, command substitution, +arithmetic expansion, quote removal, filename expansion, and word +splitting. If it expands to more than one word, Bash reports an error. - Note that the order of redirections is significant. For example, the -command + The order of redirections is significant. For example, the command ls > DIRLIST 2>&1 directs both standard output (file descriptor 1) and standard error (file descriptor 2) to the file DIRLIST, while the command @@ -2635,7 +2694,7 @@ use them; otherwise it will emulate them internally with the behavior described below. ‘/dev/fd/FD’ - If FD is a valid integer, file descriptor FD is duplicated. + If FD is a valid integer, duplicate file descriptor FD. ‘/dev/stdin’ File descriptor 0 is duplicated. @@ -2665,9 +2724,9 @@ internally. 3.6.1 Redirecting Input ----------------------- -Redirection of input causes the file whose name results from the -expansion of WORD to be opened for reading on file descriptor ‘n’, or -the standard input (file descriptor 0) if ‘n’ is not specified. +Redirecting input opens the file whose name results from the expansion +of WORD for reading on file descriptor ‘n’, or the standard input (file +descriptor 0) if ‘n’ is not specified. The general format for redirecting input is: [N][|]WORD @@ -2688,16 +2746,16 @@ size. ‘set’ builtin has been enabled, the redirection will fail if the file whose name results from the expansion of WORD exists and is a regular file. If the redirection operator is ‘>|’, or the redirection operator -is ‘>’ and the ‘noclobber’ option is not enabled, the redirection is -attempted even if the file named by WORD exists. +is ‘>’ and the ‘noclobber’ option is not enabled, Bash attemps the +redirection even if the file named by WORD exists. 3.6.3 Appending Redirected Output --------------------------------- -Redirection of output in this fashion causes the file whose name results -from the expansion of WORD to be opened for appending on file descriptor -N, or the standard output (file descriptor 1) if N is not specified. If -the file does not exist it is created. +Redirecting output in this fashion opens the file whose name results +from the expansion of WORD for appending on file descriptor N, or the +standard output (file descriptor 1) if N is not specified. If the file +does not exist it is created. The general format for appending output is: [N]>>WORD @@ -2705,9 +2763,9 @@ the file does not exist it is created. 3.6.4 Redirecting Standard Output and Standard Error ---------------------------------------------------- -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 WORD. +This construct redirects both the standard output (file descriptor 1) +and the standard error output (file descriptor 2) to the file whose name +is the expansion of WORD. There are two formats for redirecting standard output and standard error: @@ -2724,9 +2782,9 @@ Descriptors below) for compatibility reasons. 3.6.5 Appending Standard Output and Standard Error -------------------------------------------------- -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 WORD. +This construct appends both the standard output (file descriptor 1) and +the standard error output (file descriptor 2) to the file whose name is +the expansion of WORD. The format for appending standard output and standard error is: &>>WORD @@ -2739,8 +2797,8 @@ This is semantically equivalent to This type of redirection instructs the shell to read input from the current source until it reads a line containing only DELIMITER (with no -trailing blanks). All of the lines read up to that point are then used -as the standard input (or file descriptor N if N is specified) for a +trailing blanks). All of the lines read up to that point then become +the standard input (or file descriptor N if N is specified) for a command. The format of here-documents is: @@ -2748,21 +2806,29 @@ command. HERE-DOCUMENT DELIMITER - No parameter and variable expansion, command substitution, arithmetic -expansion, or filename expansion is performed on WORD. + The shell does not perform parameter and variable expansion, command +substitution, arithmetic expansion, or filename expansion on WORD. If any part of WORD is quoted, the DELIMITER is the result of quote removal on WORD, and the lines in the here-document are not expanded. -If WORD is unquoted, DELIMITER is WORD itself, all lines of the +If WORD is unquoted, DELIMITER is WORD itself, and the here-document +text is treated similarly to a double-quoted string: all lines of the here-document are subjected to parameter expansion, command substitution, and arithmetic expansion, the character sequence -‘\newline’ is ignored, and ‘\’ must be used to quote the characters ‘\’, -‘$’, and ‘`’. +‘\newline’ is treated literally, and ‘\’ must be used to quote the +characters ‘\’, ‘$’, and ‘`’; however, double quote characters have no +special meaning. + + If the redirection operator is ‘<<-’, the shell strips leading tab +characters are stripped from input lines and the line containing +DELIMITER. This allows here-documents within shell scripts to be +indented in a natural fashion. - If the redirection operator is ‘<<-’, then all leading tab characters -are stripped from input lines and the line containing DELIMITER. This -allows here-documents within shell scripts to be indented in a natural -fashion. + If the delimiter is not quoted, the ‘\’ sequence is treated +as a line continuation: the two lines are joined and the +backslash-newline is removed. This happens while reading the +here-document, before the check for the ending delimiter, so joined +lines can form the end delimiter. 3.6.7 Here Strings ------------------ @@ -2782,21 +2848,21 @@ standard input (or file descriptor N if N is specified). The redirection operator [N]<&WORD is used to duplicate input file descriptors. If WORD expands to one or -more digits, the file descriptor denoted by N is made to be a copy of -that file descriptor. If the digits in WORD do not specify a file -descriptor open for input, a redirection error occurs. If WORD -evaluates to ‘-’, file descriptor N is closed. If N is not specified, -the standard input (file descriptor 0) is used. +more digits, file descriptor N is made to be a copy of that file +descriptor. It is a redirection error if the digits in WORD do not +specify a file descriptor open for input. If WORD evaluates to ‘-’, +file descriptor N is closed. If N is not specified, this uses the +standard input (file descriptor 0). The operator [N]>&WORD is used similarly to duplicate output file descriptors. If N is not -specified, the standard output (file descriptor 1) is used. If the -digits in WORD do not specify a file descriptor open for output, a -redirection error occurs. If WORD evaluates to ‘-’, file descriptor N -is closed. As a special case, if N is omitted, and WORD does not expand -to one or more digits or ‘-’, the standard output and standard error are -redirected as described previously. +specified, this uses the standard output (file descriptor 1). It is a +redirection error if the digits in WORD do not specify a file descriptor +open for output. If WORD evaluates to ‘-’, file descriptor N is closed. +As a special case, if N is omitted, and WORD does not expand to one or +more digits or ‘-’, this redirects the standard output and standard +error as described previously. 3.6.9 Moving File Descriptors ----------------------------- @@ -2817,9 +2883,9 @@ output (file descriptor 1) if N is not specified. The redirection operator [N]<>WORD -causes the file whose name is the expansion of WORD to be opened for -both reading and writing on file descriptor N, or on file descriptor 0 -if N is not specified. If the file does not exist, it is created. +opens the file whose name is the expansion of WORD for both reading and +writing on file descriptor N, or on file descriptor 0 if N is not +specified. If the file does not exist, it is created.  File: bashref.info, Node: Executing Commands, Next: Shell Scripts, Prev: Redirections, Up: Basic Shell Features @@ -2847,7 +2913,7 @@ File: bashref.info, Node: Simple Command Expansion, Next: Command Search and E 3.7.1 Simple Command Expansion ------------------------------ -When a simple command is executed, the shell performs the following +When the shell executes a simple command, it performs the following expansions, assignments, and redirections, from left to right, in the following order. @@ -2884,8 +2950,8 @@ command to exit with a non-zero status. as described below. Otherwise, the command exits. If one of the expansions 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. +If there were no command substitutions, the command exits with a zero +status.  File: bashref.info, Node: Command Search and Execution, Next: Command Execution Environment, Prev: Simple Command Expansion, Up: Executing Commands @@ -2910,8 +2976,8 @@ following actions. containing an executable file by that name. Bash uses a hash table to remember the full pathnames of executable files to avoid multiple ‘PATH’ searches (see the description of ‘hash’ in *note - Bourne Shell Builtins::). A full search of the directories in - ‘$PATH’ is performed only if the command is not found in the hash + Bourne Shell Builtins::). Bash performs a full search of the + directories in ‘$PATH’ 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 ‘command_not_found_handle’. If that function exists, it is invoked in a separate execution environment @@ -2928,8 +2994,8 @@ following actions. 5. 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 - “shell script” and the shell executes it as described in *note - Shell Scripts::. + “shell script”, a file containing shell commands, and the shell + executes it as described in *note Shell Scripts::. 6. If the command was not begun asynchronously, the shell waits for the command to complete and collects its exit status. @@ -2998,9 +3064,11 @@ shell's execution environment. asynchronous commands are invoked in a subshell environment that is a duplicate of the shell environment, except that traps caught by the shell are reset to the values that the shell inherited from its parent -at invocation. Builtin commands that are invoked as part of a pipeline -are also executed in a subshell environment. Changes made to the -subshell environment cannot affect the shell's execution environment. +at invocation. Builtin commands that are invoked as part of a pipeline, +except possibly in the last element depending on the value of the +‘lastpipe’ shell option (*note The Shopt Builtin::), are also executed +in a subshell environment. Changes made to the subshell environment +cannot affect the shell's execution environment. When the shell is in POSIX mode, subshells spawned to execute command substitutions inherit the value of the ‘-e’ option from the parent @@ -3027,20 +3095,23 @@ When a program is invoked it is given an array of strings called the Bash provides several ways to manipulate the environment. On invocation, the shell scans its own environment and creates a parameter for each name found, automatically marking it for ‘export’ to child -processes. Executed commands inherit the environment. The ‘export’ and -‘declare -x’ commands allow parameters and functions to be added to and -deleted from the environment. If the value of a parameter in the -environment is modified, the new value becomes part of the environment, -replacing the old. The environment inherited by any executed command -consists of the shell's initial environment, whose values may be -modified in the shell, less any pairs removed by the ‘unset’ and ‘export --n’ commands, plus any additions via the ‘export’ and ‘declare -x’ -commands. - - The environment for any simple command or function may be augmented -temporarily by prefixing it with parameter assignments, as described in -*note Shell Parameters::. These assignment statements affect only the -environment seen by that command. +processes. Executed commands inherit the environment. The ‘export’, +‘declare -x’, and ‘unset’ commands modify the environment by adding and +deleting parameters and functions. If the value of a parameter in the +environment is modified, the new value automatically becomes part of the +environment, replacing the old. The environment inherited by any +executed command consists of the shell's initial environment, whose +values may be modified in the shell, less any pairs removed by the +‘unset’ and ‘export -n’ commands, plus any additions via the ‘export’ +and ‘declare -x’ commands. + + If any parameter assignment statements, as described in *note Shell +Parameters::, appear before a simple command, the variable assignments +are part of that command's environment for as long as it executes. +These assignment statements affect only the environment seen by that +command. If these assignments precede a call to a shell function, the +variables are local to the function and exported to that function's +children. If the ‘-k’ option is set (*note The Set Builtin::), then all parameter assignments are placed in the environment for a command, not @@ -3064,11 +3135,14 @@ 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. A non-zero exit status indicates failure. This -seemingly counter-intuitive scheme is used so there is one well-defined -way to indicate success and a variety of ways to indicate various -failure modes. When a command terminates on a fatal signal whose number -is N, Bash uses the value 128+N as the exit status. +status has succeeded. So while an exit status of zero indicates +success, a non-zero exit status indicates failure. This seemingly +counter-intuitive scheme is used so there is one well-defined way to +indicate success and a variety of ways to indicate various failure +modes. + + When a command terminates on a fatal signal whose number is N, Bash +uses the value 128+N as the exit status. If a command is not found, the child process created to execute it returns a status of 127. If a command is found but is not executable, @@ -3090,6 +3164,11 @@ arguments. The exit status of the last command is available in the special parameter $? (*note Special Parameters::). + Bash itself returns the exit status of the last command executed, +unless a syntax error occurs, in which case it exits with a non-zero +value. See also the ‘exit’ builtin command (*note Bourne Shell +Builtins::. +  File: bashref.info, Node: Signals, Prev: Exit Status, Up: Executing Commands @@ -3098,37 +3177,42 @@ File: bashref.info, Node: Signals, Prev: Exit Status, Up: Executing Commands When Bash is interactive, in the absence of any traps, it ignores ‘SIGTERM’ (so that ‘kill 0’ does not kill an interactive shell), and -‘SIGINT’ is caught and handled (so that the ‘wait’ builtin is +catches and handles ‘SIGINT’ (so that the ‘wait’ builtin is interruptible). When Bash receives a ‘SIGINT’, it breaks out of any executing loops. In all cases, Bash ignores ‘SIGQUIT’. If job control is in effect (*note Job Control::), Bash ignores ‘SIGTTIN’, ‘SIGTTOU’, and ‘SIGTSTP’. - Non-builtin commands started by Bash have signal handlers set to the -values inherited by the shell from its parent. When job control is not -in effect, asynchronous commands ignore ‘SIGINT’ and ‘SIGQUIT’ in -addition to these inherited handlers. Commands run as a result of -command substitution ignore the keyboard-generated job control signals -‘SIGTTIN’, ‘SIGTTOU’, and ‘SIGTSTP’. + The ‘trap’ builtin modifies the shell's signal handling, as described +below (*note Bourne Shell Builtins::. + + Non-builtin commands Bash executes have signal handlers set to the +values inherited by the shell from its parent, unless ‘trap’ sets them +to be ignored, in which case the child process will ignore them as well. +When job control is not in effect, asynchronous commands ignore ‘SIGINT’ +and ‘SIGQUIT’ in addition to these inherited handlers. Commands run as +a result of command substitution ignore the keyboard-generated job +control signals ‘SIGTTIN’, ‘SIGTTOU’, and ‘SIGTSTP’. The shell exits by default upon receipt of a ‘SIGHUP’. Before exiting, an interactive shell resends the ‘SIGHUP’ to all jobs, running -or stopped. Stopped jobs are sent ‘SIGCONT’ to ensure that they receive -the ‘SIGHUP’. To prevent the shell from sending the ‘SIGHUP’ signal to -a particular job, it should be removed from the jobs table with the -‘disown’ builtin (*note Job Control Builtins::) or marked to not receive -‘SIGHUP’ using ‘disown -h’. - - If the ‘huponexit’ shell option has been set with ‘shopt’ (*note The +or stopped. The shell sends ‘SIGCONT’ to stopped jobs to ensure that +they receive the ‘SIGHUP’ (*Note Job Control::, for more information +about running and stopped jobs). To prevent the shell from sending the +‘SIGHUP’ signal to a particular job, remove it from the jobs table with +the ‘disown’ builtin (*note Job Control Builtins::) or mark it not to +receive ‘SIGHUP’ using ‘disown -h’. + + If the ‘huponexit’ shell option has been set using ‘shopt’ (*note The Shopt Builtin::), Bash sends a ‘SIGHUP’ to all jobs when an interactive login shell exits. If Bash 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 -command completes. When Bash is waiting for an asynchronous command via -the ‘wait’ builtin, the reception of a signal for which a trap has been -set will cause the ‘wait’ builtin to return immediately with an exit -status greater than 128, immediately after which the trap is executed. +command completes. If Bash is waiting for an asynchronous command via +the ‘wait’ builtin, and it receives a signal for which a trap has been +set, the ‘wait’ builtin will return immediately with an exit status +greater than 128, immediately after which the shell executes the trap. When job control is not enabled, and Bash is waiting for a foreground command to complete, the shell receives keyboard-generated signals such @@ -3167,9 +3251,13 @@ A shell script is a text file containing shell commands. When such a file is used as the first non-option argument when invoking Bash, and neither the ‘-c’ nor ‘-s’ option is supplied (*note Invoking Bash::), Bash reads and executes commands from the file, then exits. This mode -of operation creates a non-interactive shell. The shell first searches -for the file in the current directory, and looks in the directories in -‘$PATH’ if not found there. +of operation creates a non-interactive shell. If the filename does not +contain any slashes, the shell first searches for the file in the +current directory, and looks in the directories in ‘$PATH’ if not found +there. + + Bash tries to determine whether the file is a text file or a binary, +and will not execute files it determines to be binaries. When Bash runs a shell script, it sets the special parameter ‘0’ to the name of the file, rather than the name of the shell, and the @@ -3191,13 +3279,13 @@ invoked to interpret the script, with the exception that the locations of commands remembered by the parent (see the description of ‘hash’ in *note Bourne Shell Builtins::) are retained by the child. - Most versions of Unix make this a part of the operating system's -command execution mechanism. If the first line of a script begins with -the two characters ‘#!’, the remainder of the line specifies an -interpreter for the program and, depending on the operating system, one -or more optional arguments for that interpreter. Thus, you can specify -Bash, ‘awk’, Perl, or some other interpreter and write the rest of the -script file in that language. + The GNU operating system, and most versions of Unix, make this a part +of the operating system's command execution mechanism. If the first +line of a script begins with the two characters ‘#!’, the remainder of +the line specifies an interpreter for the program and, depending on the +operating system, one or more optional arguments for that interpreter. +Thus, you can specify Bash, ‘awk’, Perl, or some other interpreter and +write the rest of the script file in that language. The arguments to the interpreter consist of one or more optional arguments following the interpreter name on the first line of the script @@ -3282,44 +3370,52 @@ standard. ‘. (a period)’ . [-p PATH] FILENAME [ARGUMENTS] - Read and execute commands from the FILENAME argument in the current - shell context. If FILENAME does not contain a slash, ‘.’ searches - for it. If ‘-p’ is supplied, ‘.’ treats PATH as a colon-separated - list of directories in which to find FILENAME; otherwise, ‘.’ uses - the directories in ‘PATH’ to find FILENAME. FILENAME does not need - to be executable. When Bash is not in POSIX mode, it searches the + The ‘.’ command reads and execute commands from the FILENAME + argument in the current shell context. + + If FILENAME does not contain a slash, ‘.’ searches for it. If ‘-p’ + is supplied, ‘.’ treats PATH as a colon-separated list of + directories in which to find FILENAME; otherwise, ‘.’ uses the + directories in ‘PATH’ to find FILENAME. FILENAME does not need to + be executable. When Bash is not in POSIX mode, it searches the current directory if FILENAME is not found in ‘$PATH’, but does not search the current directory if ‘-p’ is supplied. If the - ‘sourcepath’ option (*note The Shopt Builtin::) is turned off ‘.’ - does not search ‘PATH’. If any ARGUMENTS are supplied, they become - the positional parameters when FILENAME is executed. Otherwise the - positional parameters are unchanged. If the ‘-T’ option is - enabled, ‘.’ inherits any trap on ‘DEBUG’; if it is not, any - ‘DEBUG’ trap string is saved and restored around the call to ‘.’, - and ‘.’ unsets the ‘DEBUG’ trap while it executes. If ‘-T’ is not - set, and the sourced file changes the ‘DEBUG’ trap, the new value - is retained when ‘.’ completes. The return status is the exit - status of the last command executed, or zero if no commands are - executed. If FILENAME is not found, or cannot be read, the return - status is non-zero. This builtin is equivalent to ‘source’. + ‘sourcepath’ option (*note The Shopt Builtin::) is turned off, ‘.’ + does not search ‘PATH’. + + If any ARGUMENTS are supplied, they become the positional + parameters when FILENAME is executed. Otherwise the positional + parameters are unchanged. + + If the ‘-T’ option is enabled, ‘.’ inherits any trap on ‘DEBUG’; if + it is not, any ‘DEBUG’ trap string is saved and restored around the + call to ‘.’, and ‘.’ unsets the ‘DEBUG’ trap while it executes. If + ‘-T’ is not set, and the sourced file changes the ‘DEBUG’ trap, the + new value persists after ‘.’ completes. The return status is the + exit status of the last command executed from FILENAME, or zero if + no commands are executed. If FILENAME is not found, or cannot be + read, the return status is non-zero. This builtin is equivalent to + ‘source’. ‘break’ break [N] Exit from a ‘for’, ‘while’, ‘until’, or ‘select’ loop. If N is - supplied, the Nth enclosing loop is exited. N must be greater than - or equal to 1. The return status is zero unless N is not greater - than or equal to 1. + supplied, ‘break’ exits the Nth enclosing loop. N must be greater + than or equal to 1. The return status is zero unless N is not + greater than or equal to 1. ‘cd’ cd [-L|[-P [-e]]] [-@] [DIRECTORY] Change the current working directory to DIRECTORY. If DIRECTORY is - not supplied, the value of the ‘HOME’ shell variable is used. If - the shell variable ‘CDPATH’ exists, ‘cd’ uses it as a search path: - ‘cd’ searches each directory name in ‘CDPATH’ for DIRECTORY, with - alternative directory names in ‘CDPATH’ separated by a colon (‘:’). - If DIRECTORY begins with a slash, ‘CDPATH’ is not used. + not supplied, the value of the ‘HOME’ shell variable is used as + DIRECTORY. If the shell variable ‘CDPATH’ exists, ‘cd’ uses it as + a search path: ‘cd’ searches each directory name in ‘CDPATH’ for + DIRECTORY, with alternative directory names in ‘CDPATH’ separated + by a colon (‘:’). A null directory name in ‘CDPATH’ means the same + thing as the current directory. If DIRECTORY begins with a slash, + ‘CDPATH’ is not used. The ‘-P’ option means to not follow symbolic links: symbolic links are resolved while ‘cd’ is traversing DIRECTORY and before @@ -3335,17 +3431,17 @@ standard. If the ‘-e’ option is supplied with ‘-P’ and the current working directory cannot be successfully determined after a successful - directory change, ‘cd’ will return an unsuccessful status. + directory change, ‘cd’ will return a non-zero status. On systems that support it, the ‘-@’ option presents the extended attributes associated with a file as a directory. - If DIRECTORY is ‘-’, it is converted to ‘$OLDPWD’ before the - directory change is attempted. + If DIRECTORY is ‘-’, it is converted to ‘$OLDPWD’ before attempting + the directory change. - If a non-empty directory name from ‘CDPATH’ is used, or if ‘-’ is - the first argument, and the directory change is successful, the - absolute pathname of the new working directory is written to the + If ‘cd’ uses a non-empty directory name from ‘CDPATH’, or if ‘-’ is + the first argument, and the directory change is successful, ‘cd’ + writes the absolute pathname of the new working directory to the standard output. If the directory change is successful, ‘cd’ sets the value of the @@ -3359,37 +3455,41 @@ standard. ‘continue’ continue [N] - Resume the next iteration of an enclosing ‘for’, ‘while’, ‘until’, - or ‘select’ loop. If N is supplied, the execution of the Nth - enclosing loop is resumed. N must be greater than or equal to 1. - The return status is zero unless N is not greater than or equal to - 1. + ‘continue’ resumes the next iteration of an enclosing ‘for’, + ‘while’, ‘until’, or ‘select’ loop. If N is supplied, Bash resumes + the execution of the Nth enclosing loop. N must be greater than or + equal to 1. The return status is zero unless N is not greater than + or equal to 1. ‘eval’ eval [ARGUMENTS] - The arguments are concatenated together into a single command, - which is then read and executed, and its exit status returned as - the exit status of ‘eval’. If there are no arguments or only empty - arguments, the return status is zero. + The ARGUMENTS are concatenated together into a single command, + separated by spaces. Bash then reads and executes this command and + returns its exit status as the exit status of ‘eval’. If there are + no arguments or only empty arguments, the return status is zero. ‘exec’ exec [-cl] [-a NAME] [COMMAND [ARGUMENTS]] If COMMAND is supplied, it replaces the shell without creating a - new process. If the ‘-l’ option is supplied, the shell places a - dash at the beginning of the zeroth argument passed to COMMAND. - This is what the ‘login’ program does. The ‘-c’ option causes - COMMAND to be executed with an empty environment. If ‘-a’ is - supplied, the shell passes NAME as the zeroth argument to COMMAND. + new process. COMMAND cannot be a shell builtin or function. The + ARGUMENTS become the arguments to COMMAND If the ‘-l’ option is + supplied, the shell places a dash at the beginning of the zeroth + argument passed to COMMAND. This is what the ‘login’ program does. + The ‘-c’ option causes COMMAND to be executed with an empty + environment. If ‘-a’ is supplied, the shell passes NAME as the + zeroth argument to COMMAND. + If COMMAND cannot be executed for some reason, a non-interactive shell exits, unless the ‘execfail’ 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 ‘exec’ fails. If no COMMAND is specified, - redirections may be used to affect the current shell environment. - If there are no redirection errors, the return status is zero; - otherwise the return status is non-zero. + that case, it returns a non-zero status. An interactive shell + returns a non-zero status if the file cannot be executed. A + subshell exits unconditionally if ‘exec’ fails. + + If COMMAND is not specified, redirections may be used to affect the + current shell environment. If there are no redirection errors, the + return status is zero; otherwise the return status is non-zero. ‘exit’ exit [N] @@ -3401,14 +3501,20 @@ standard. ‘export’ export [-fn] [-p] [NAME[=VALUE]] - Mark each NAME to be passed to child processes in the environment. - If the ‘-f’ option is supplied, the NAMEs refer to shell functions; - otherwise the names refer to shell variables. The ‘-n’ option - means to no longer mark each NAME for export. If no NAMEs are - supplied, or if the ‘-p’ option is given, a list of names of all - exported variables is displayed. The ‘-p’ option displays output - in a form that may be reused as input. If a variable name is - followed by =VALUE, the value of the variable is set to VALUE. + Mark each NAME to be passed to subsequently executed commands in + the environment. If the ‘-f’ option is supplied, the NAMEs refer + to shell functions; otherwise the names refer to shell variables. + + The ‘-n’ option means to unexport each name: no longer mark it for + export. If no NAMEs are supplied, or if the ‘-p’ option is given, + ‘export’ displays a list of names of all exported variables on the + standard output. The ‘-p’ option displays output in a form that + may be reused as input. + + ‘export’ allows the value of a variable to be set at the same time + it is exported or unexported by following the variable name with + =VALUE. This sets the value of the variable is to VALUE while + modifying the export attribute. The return status is zero unless an invalid option is supplied, one of the names is not a valid shell variable name, or ‘-f’ is @@ -3417,40 +3523,43 @@ standard. ‘false’ false - Does nothing, returns a non-zero status. + Does nothing; returns a non-zero status. ‘getopts’ getopts OPTSTRING NAME [ARG ...] - ‘getopts’ is used by shell scripts to parse positional parameters. - OPTSTRING contains the option characters to be recognized; if a - character is followed by a colon, the option is expected to have an - argument, which should be separated from it by whitespace. The - colon (‘:’) and question mark (‘?’) may not be used as option - characters. Each time it is invoked, ‘getopts’ places the next - option in the shell variable NAME, initializing NAME if it does not - exist, and the index of the next argument to be processed into the - variable ‘OPTIND’. ‘OPTIND’ is initialized to 1 each time the - shell or a shell script is invoked. When an option requires an - argument, ‘getopts’ places that argument into the variable - ‘OPTARG’. The shell does not reset ‘OPTIND’ automatically; it must - be manually reset between multiple calls to ‘getopts’ within the - same shell invocation if a new set of parameters is to be used. - - When the end of options is encountered, ‘getopts’ exits with a - return value greater than zero. ‘OPTIND’ is set to the index of - the first non-option argument, and NAME is set to ‘?’. + ‘getopts’ is used by shell scripts or functions to parse positional + parameters and obtain options and their arguments. OPTSTRING + contains the option characters to be recognized; if a character is + followed by a colon, the option is expected to have an argument, + which should be separated from it by whitespace. The colon (‘:’) + and question mark (‘?’) may not be used as option characters. + + Each time it is invoked, ‘getopts’ places the next option in the + shell variable NAME, initializing NAME if it does not exist, and + the index of the next argument to be processed into the variable + ‘OPTIND’. ‘OPTIND’ is initialized to 1 each time the shell or a + shell script is invoked. When an option requires an argument, + ‘getopts’ places that argument into the variable ‘OPTARG’. + + The shell does not reset ‘OPTIND’ automatically; it must be + manually reset between multiple calls to ‘getopts’ within the same + shell invocation to use a new set of parameters. + + When it reaches the end of options, ‘getopts’ exits with a return + value greater than zero. ‘OPTIND’ is set to the index of the first + non-option argument, and NAME is set to ‘?’. ‘getopts’ normally parses the positional parameters, but if more arguments are supplied as ARG values, ‘getopts’ parses those instead. ‘getopts’ can report errors in two ways. If the first character of - OPTSTRING is a colon, SILENT error reporting is used. In normal - operation, diagnostic messages are printed when invalid options or - missing option arguments are encountered. If the variable ‘OPTERR’ - is set to 0, no error messages will be displayed, even if the first - character of ‘optstring’ is not a colon. + OPTSTRING is a colon, ‘getopts’ uses SILENT error reporting. In + normal operation, ‘getopts’ prints diagnostic messages when it + encounters invalid options or missing option arguments. If the + variable ‘OPTERR’ is set to 0, no error messages will be displayed, + even if the first character of ‘optstring’ is not a colon. If ‘getopts’ detects an invalid option, it places ‘?’ into NAME and, if not silent, prints an error message and unsets ‘OPTARG’. @@ -3463,6 +3572,10 @@ standard. it sets the value of NAME to a colon (‘:’), and sets ‘OPTARG’ to the option character found. + ‘getopts’ returns true if an option, specified or unspecified, is + found. It returns false when it encounters the end of options or + if an error occurs. + ‘hash’ hash [-r] [-p FILENAME] [-dt] [NAME] @@ -3470,70 +3583,89 @@ standard. commands specified as NAME arguments, so they need not be searched for on subsequent invocations. The commands are found by searching through the directories listed in ‘$PATH’. Any - previously-remembered filename is discarded. The ‘-p’ option - inhibits the path search, and FILENAME is used as the location of - NAME. The ‘-r’ option causes the shell to forget all remembered + previously-remembered filename associated with NAME is discarded. + The ‘-p’ option inhibits the path search, and ‘hash’ uses FILENAME + as the location of NAME. + + The ‘-r’ option causes the shell to forget all remembered locations. Assigning to the ‘PATH’ variable also clears all hashed filenames. The ‘-d’ option causes the shell to forget the - remembered location of each NAME. If the ‘-t’ option is supplied, - the full pathname to which each NAME corresponds is printed. If - multiple NAME arguments are supplied with ‘-t’, the NAME is printed - before the hashed full pathname. The ‘-l’ option causes output to - be displayed in a format that may be reused as input. If no - arguments are given, or if only ‘-l’ is supplied, information about - remembered commands is printed. The ‘-t’, ‘-d’, and ‘-p’ options - (the options that act on the NAME arguments) are mutually - exclusive. Only one will be active. If more than one is supplied, - ‘-t’ has higher priority than ‘-p’, and both are higher priority - than ‘-d’. The return status is zero unless a NAME is not found or - an invalid option is supplied. + remembered location of each NAME. + + If the ‘-t’ option is supplied, ‘hash’ prints the full pathname + corresponding to each NAME. If multiple NAME arguments are + supplied with ‘-t’, ‘hash’ prints each NAME before the + corresponding hashed full path. The ‘-l’ option displays output in + a format that may be reused as input. + + If no arguments are given, or if only ‘-l’ is supplied, ‘hash’ + prints information about remembered commands. The ‘-t’, ‘-d’, and + ‘-p’ options (the options that act on the NAME arguments) are + mutually exclusive. Only one will be active. If more than one is + supplied, ‘-t’ has higher priority than ‘-p’, and both have higher + priority than ‘-d’. + + The return status is zero unless a NAME is not found or an invalid + option is supplied. ‘pwd’ pwd [-LP] Print the absolute pathname of the current working directory. If - the ‘-P’ option is supplied, the pathname printed will not contain - symbolic links. If the ‘-L’ option is supplied, the pathname - printed may contain symbolic links. The return status is zero - unless an error is encountered while determining the name of the - current directory or an invalid option is supplied. + the ‘-P’ option is supplied, or the ‘-o physical’ option to the + ‘set’ builtin (*note The Set Builtin::) is enabled, the pathname + printed will not contain symbolic links. If the ‘-L’ option is + supplied, the pathname printed may contain symbolic links. The + return status is zero unless an error is encountered while + determining the name of the current directory or an invalid option + is supplied. ‘readonly’ readonly [-aAf] [-p] [NAME[=VALUE]] ... Mark each NAME as readonly. The values of these names may not be - changed by subsequent assignment. If the ‘-f’ option is supplied, - each NAME refers to a shell function. The ‘-a’ option means each - NAME refers to an indexed array variable; the ‘-A’ option means - each NAME refers to an associative array variable. If both options - are supplied, ‘-A’ takes precedence. If no NAME arguments are - given, or if the ‘-p’ 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 ‘-p’ option - causes output to be displayed in a format that may be reused as - input. If a variable name is followed by =VALUE, the value of the - variable is set to VALUE. The return status is zero unless an - invalid option is supplied, one of the NAME arguments is not a - valid shell variable or function name, or the ‘-f’ option is - supplied with a name that is not a shell function. + changed by subsequent assignment or unset. If the ‘-f’ option is + supplied, each NAME refers to a shell function. The ‘-a’ option + means each NAME refers to an indexed array variable; the ‘-A’ + option means each NAME refers to an associative array variable. If + both options are supplied, ‘-A’ takes precedence. If no NAME + arguments are supplied, or if the ‘-p’ option is supplied, print a + list of all readonly names. The other options may be used to + restrict the output to a subset of the set of readonly names. The + ‘-p’ option displays output in a format that may be reused as + input. + + ‘readonly’ allows the value of a variable to be set at the same + time the readonly attribute is changed by following the variable + name with =VALUE. This sets the value of the variable is to VALUE + while modifying the readonly attribute. + + The return status is zero unless an invalid option is supplied, one + of the NAME arguments is not a valid shell variable or function + name, or the ‘-f’ option is supplied with a name that is not a + shell function. ‘return’ return [N] - Cause a shell function to stop executing and return the value N to - its caller. If N is not supplied, the return value is the exit - status of the last command executed in the function. If ‘return’ - is executed by a trap handler, the last command used to determine - the status is the last command executed before the trap handler. - If ‘return’ is executed during a ‘DEBUG’ trap, the last command - used to determine the status is the last command executed by the - trap handler before ‘return’ was invoked. ‘return’ may also be - used to terminate execution of a script being executed with the ‘.’ - (‘source’) builtin, returning either N or the exit status of the - last command executed within the script as the exit status of the - script. If N is supplied, the return value is its least - significant 8 bits. Any command associated with the ‘RETURN’ trap - is executed before execution resumes after the function or script. + Stop executing a shell function or sourced file and return the + value N to its caller. If N is not supplied, the return value is + the exit status of the last command executed. If ‘return’ is + executed by a trap handler, the last command used to determine the + status is the last command executed before the trap handler. If + ‘return’ is executed during a ‘DEBUG’ trap, the last command used + to determine the status is the last command executed by the trap + handler before ‘return’ was invoked. + + When ‘return’ is used to terminate execution of a script being + executed with the ‘.’ (‘source’) builtin, it returns either N or + the exit status of the last command executed within the script as + the exit status of the script. If N is supplied, the return value + is its least significant 8 bits. + + Any command associated with the ‘RETURN’ trap is executed before + execution resumes after the function or script. + The return status is non-zero if ‘return’ is supplied a non-numeric argument or is used outside a function and not during the execution of a script by ‘.’ or ‘source’. @@ -3541,12 +3673,12 @@ standard. ‘shift’ shift [N] - Shift the positional parameters to the left by N. The positional + Shift the positional parameters to the left by N: the positional parameters from N+1 ... ‘$#’ are renamed to ‘$1’ ... ‘$#’-N. Parameters represented by the numbers ‘$#’ down to ‘$#’-N+1 are unset. N must be a non-negative number less than or equal to ‘$#’. - If N is zero or greater than ‘$#’, the positional parameters are - not changed. If N is not supplied, it is assumed to be 1. The + If N is not supplied, it is assumed to be 1. If N is zero or + greater than ‘$#’, the positional parameters are not changed. The return status is zero unless N is greater than ‘$#’ or less than zero, non-zero otherwise. @@ -3559,22 +3691,20 @@ standard. argument. Expressions are composed of the primaries described below in *note Bash Conditional Expressions::. ‘test’ does not accept any options, nor does it accept and ignore an argument of - ‘--’ as signifying the end of options. - - When the ‘[’ form is used, the last argument to the command must be - a ‘]’. + ‘--’ as signifying the end of options. When using the ‘[’ form, + the last argument to the command must be a ‘]’. Expressions may be combined using the following operators, listed in decreasing order of precedence. The evaluation depends on the - number of arguments; see below. Operator precedence is used when - there are five or more arguments. + number of arguments; see below. ‘test’ uses operator precedence + when there are five or more arguments. ‘! EXPR’ True if EXPR is false. ‘( EXPR )’ - Returns the value of EXPR. This may be used to override the - normal precedence of operators. + Returns the value of EXPR. This may be used to override + normal operator precedence. ‘EXPR1 -a EXPR2’ True if both EXPR1 and EXPR2 are true. @@ -3663,15 +3793,17 @@ standard. trap [-Plp] [ACTION] [SIGSPEC ...] The ACTION is a command that is read and executed when the shell - receives signal SIGSPEC. If ACTION is absent (and there is a - single SIGSPEC) or equal to ‘-’, each specified signal's - disposition is reset to the value it had when the shell was - started. If ACTION is the null string, then the signal specified - by each SIGSPEC is ignored by the shell and commands it invokes. + receives any of the signals SIGSPEC. If ACTION is absent (and + there is a single SIGSPEC) or equal to ‘-’, each specified + SIGSPEC'ss disposition is reset to the value it had when the shell + was started. If ACTION is the null string, then the signal + specified by each SIGSPEC is ignored by the shell and commands it + invokes. If no arguments are supplied, ‘trap’ prints the actions associated with each trapped signal as a set of ‘trap’ commands that can be reused as shell input to restore the current signal dispositions. + If ACTION is not present and ‘-p’ has been supplied, ‘trap’ displays the trap commands associated with each SIGSPEC, or, if no SIGSPECs are supplied, for all trapped signals, as a set of ‘trap’ @@ -3679,26 +3811,27 @@ standard. signal dispositions. The ‘-P’ option behaves similarly, but displays only the actions associated with each SIGSPEC argument. ‘-P’ requires at least one SIGSPEC argument. The ‘-P’ or ‘-p’ - options to ‘trap’ may be used in a subshell environment (e.g., - command substitution) and, as long as they are used before ‘trap’ - is used to change a signal's handling, will display the state of - its parent's traps. + options may be used in a subshell environment (e.g., command + substitution) and, as long as they are used before ‘trap’ is used + to change a signal's handling, will display the state of its + parent's traps. - The ‘-l’ option causes ‘trap’ to print a list of signal names and - their corresponding numbers. Each SIGSPEC is either a signal name - or a signal number. Signal names are case insensitive and the - ‘SIG’ prefix is optional. + The ‘-l’ option prints a list of signal names and their + corresponding numbers. Each SIGSPEC is either a signal name or a + signal number. Signal names are case insensitive and the ‘SIG’ + prefix is optional. If ‘-l’ is supplied with no SIGSPEC arguments, + it prints a list of valid signal names. If a SIGSPEC is ‘0’ or ‘EXIT’, ACTION is executed when the shell exits. If a SIGSPEC is ‘DEBUG’, ACTION is executed before every simple command, ‘for’ command, ‘case’ command, ‘select’ command, (( arithmetic command, [[ conditional command, arithmetic ‘for’ command, and before the first command executes in a shell function. - Refer to the description of the ‘extdebug’ option to the ‘shopt’ - builtin (*note The Shopt Builtin::) for details of its effect on - the ‘DEBUG’ trap. If a SIGSPEC is ‘RETURN’, ACTION is executed - each time a shell function or a script executed with the ‘.’ or - ‘source’ builtins finishes executing. + Refer to the description of the ‘extdebug’ shell option (*note The + Shopt Builtin::) for details of its effect on the ‘DEBUG’ trap. If + a SIGSPEC is ‘RETURN’, ACTION is executed each time a shell + function or a script executed with the ‘.’ or ‘source’ builtins + finishes executing. If a SIGSPEC is ‘ERR’, ACTION is executed whenever a pipeline (which may consist of a single simple command), a list, or a @@ -3708,18 +3841,19 @@ standard. ‘until’ or ‘while’ keyword, part of the test following the ‘if’ or ‘elif’ reserved words, part of a command executed in a ‘&&’ or ‘||’ list except the command following the final ‘&&’ or ‘||’, any - command in a pipeline but the last, or if the command's return - status is being inverted using ‘!’. These are the same conditions - obeyed by the ‘errexit’ (‘-e’) option. + command in a pipeline but the last, (subject to the state of the + ‘pipefail’ shell option), or if the command's return status is + being inverted using ‘!’. These are the same conditions obeyed by + the ‘errexit’ (‘-e’) option. - Signals ignored upon entry to a non-interactive 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. + When the shell is not interactive, signals ignored upon entry to a + non-interactive 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 is zero unless a SIGSPEC does not specify a valid - signal. + signal; non-zero otherwise. ‘true’ true @@ -3732,13 +3866,13 @@ standard. Set the shell process's file creation mask to MODE. If MODE begins with a digit, it is interpreted as an octal number; if not, it is interpreted as a symbolic mode mask similar to that accepted by the - ‘chmod’ command. If MODE is omitted, the current value of the mask - is printed. If the ‘-S’ option is supplied without a MODE - argument, the mask is printed in a symbolic format. If the ‘-p’ - option is supplied, and MODE is omitted, the output is in a form - that may be reused as input. The return status is zero if the mode - is successfully changed or if no MODE argument is supplied, and - non-zero otherwise. + ‘chmod’ command. If MODE is omitted, ‘umask’ prints the current + value of the mask. If the ‘-S’ option is supplied without a MODE + argument, ‘umask’ prints the mask in a symbolic format; the default + output is an octal number. If the ‘-p’ option is supplied, and + MODE is omitted, the output is in a form that may be reused as + input. The return status is zero if the mode is successfully + changed or if no MODE argument is supplied, and non-zero otherwise. Note that when the mode is interpreted as an octal number, each number of the umask is subtracted from ‘7’. Thus, a umask of ‘022’ @@ -3756,11 +3890,13 @@ standard. references. ‘-n’ has no effect if the ‘-f’ option is supplied. If no options are supplied, each NAME refers to a variable; if there is no variable by that name, a function with that name, if any, is - unset. Readonly variables and functions may not be unset. Some - shell variables lose their special behavior if they are unset; such - behavior is noted in the description of the individual variables. - The return status is zero unless a NAME is readonly or may not be - unset. + unset. Readonly variables and functions may not be unset. When + variables or functions are removed, they are also removed from the + environment passed to subsequent commands. Some shell variables + may not be unset. Some shell variables lose their special behavior + if they are unset; such behavior is noted in the description of the + individual variables. The return status is zero unless a NAME is + readonly or may not be unset.  File: bashref.info, Node: Bash Builtins, Next: Modifying Shell Behavior, Prev: Bourne Shell Builtins, Up: Shell Builtin Commands @@ -3777,10 +3913,13 @@ standard. Without arguments or with the ‘-p’ option, ‘alias’ prints the list of aliases on the standard output in a form that allows them to be - reused as input. If arguments are supplied, an alias is defined - for each NAME whose VALUE is given. If no VALUE is given, the name - and value of the alias is printed. Aliases are described in *note - Aliases::. + reused as input. If arguments are supplied, define an alias for + each NAME whose VALUE is given. If no VALUE is given, print the + name and value of the alias NAME. A trailing space in VALUE causes + the next word to be checked for alias substitution when the alias + is expanded during command parsing. ‘alias’ returns true unless a + NAME is given (without a corresponding =VALUE) for which no alias + has been defined. Aliases are described in *note Aliases::. ‘bind’ bind [-m KEYMAP] [-lsvSVX] @@ -3794,10 +3933,16 @@ standard. Display current Readline (*note Command Line Editing::) key and function bindings, bind a key sequence to a Readline function or - macro, or set a Readline variable. Each non-option argument is a - command as it would appear in a Readline initialization file (*note - Readline Init File::), but each binding or command must be passed - as a separate argument; e.g., ‘"\C-x\C-r":re-read-init-file’. + macro or to a shell command, or set a Readline variable. Each + non-option argument is a key binding or command as it would appear + in a Readline initialization file (*note Readline Init File::), but + each binding or command must be passed as a separate argument; + e.g., ‘"\C-x\C-r":re-read-init-file’. + + In the following descriptions, options that display output in a + form available to be re-read format their output as commands that + would appear in a Readline initialization file or that would be + supplied as individual arguments to a ‘bind’ command. Options, if supplied, have the following meanings: @@ -3824,14 +3969,6 @@ standard. arguments remain after option processing, ‘bind’ treats them as readline command names and restricts output to those names. - ‘-v’ - Display Readline variable names and values in such a way that - they can be used as an argument to a subsequent ‘bind’ command - or in a Readline initialization file. - - ‘-V’ - List current Readline variable names and values. - ‘-s’ Display Readline key sequences bound to macros and the strings they output in such a way that they can be used as an argument @@ -3842,14 +3979,22 @@ standard. Display Readline key sequences bound to macros and the strings they output. + ‘-v’ + Display Readline variable names and values in such a way that + they can be used as an argument to a subsequent ‘bind’ command + or in a Readline initialization file. + + ‘-V’ + List current Readline variable names and values. + ‘-f FILENAME’ Read key bindings from FILENAME. ‘-q FUNCTION’ - Query about which keys invoke the named FUNCTION. + Display key sequences that invoke the named Readline FUNCTION. ‘-u FUNCTION’ - Unbind all keys bound to the named FUNCTION. + Unbind all key sequences bound to the named Readline FUNCTION. ‘-r KEYSEQ’ Remove any current binding for KEYSEQ. @@ -3864,8 +4009,8 @@ standard. separator is a colon, any enclosing double quotes are optional, and Readline does not expand the command string before saving it. Since the entire key binding expression - must be a single argument, it should be enclosed in quotes. - When SHELL-COMMAND is executed, the shell sets the + must be a single argument, it should be enclosed in single + quotes. When SHELL-COMMAND is executed, the shell sets thex ‘READLINE_LINE’ variable to the contents of the Readline line buffer and the ‘READLINE_POINT’ and ‘READLINE_MARK’ variables to the current location of the insertion point and the saved @@ -3888,11 +4033,11 @@ standard. ‘builtin’ builtin [SHELL-BUILTIN [ARGS]] - Run a shell builtin, passing it ARGS, and return its exit status. - This is useful when defining a shell function with the same name as - a shell builtin, retaining the functionality of the builtin within - the function. The return status is non-zero if SHELL-BUILTIN is - not a shell builtin command. + Execute the specified shell builtin SHELL-BUILTIN, passing it ARGS, + and return its exit status. This is useful when defining a shell + function with the same name as a shell builtin, retaining the + functionality of the builtin within the function. The return + status is non-zero if SHELL-BUILTIN is not a shell builtin command. ‘caller’ caller [EXPR] @@ -3914,28 +4059,28 @@ standard. ‘command’ command [-pVv] COMMAND [ARGUMENTS ...] - Runs COMMAND with ARGUMENTS ignoring any shell function named - COMMAND. Only shell builtin commands or commands found by - searching the ‘PATH’ are executed. If there is a shell function - named ‘ls’, running ‘command ls’ within the function will execute - the external command ‘ls’ instead of calling the function - recursively. The ‘-p’ option means to use a default value for - ‘PATH’ that is guaranteed to find all of the standard utilities. - The return status in this case is 127 if COMMAND cannot be found or - an error occurred, and the exit status of COMMAND otherwise. - - If either the ‘-V’ or ‘-v’ option is supplied, a description of - COMMAND is printed. The ‘-v’ option causes a single word - indicating the command or file name used to invoke COMMAND to be - displayed; the ‘-V’ option produces a more verbose description. In - this case, the return status is zero if COMMAND is found, and - non-zero if not. + The ‘command’ builtin runs COMMAND with ARGUMENTS ignoring any + shell function named COMMAND. Only shell builtin commands or + commands found by searching the ‘PATH’ are executed. If there is a + shell function named ‘ls’, running ‘command ls’ within the function + will execute the external command ‘ls’ instead of calling the + function recursively. The ‘-p’ option means to use a default value + for ‘PATH’ that is guaranteed to find all of the standard + utilities. The return status in this case is 127 if COMMAND cannot + be found or an error occurred, and the exit status of COMMAND + otherwise. + + If either the ‘-V’ or ‘-v’ option is supplied, ‘command’ prints a + description of COMMAND. The ‘-v’ option displays a single word + indicating the command or file name used to invoke COMMAND; the + ‘-V’ option produces a more verbose description. In this case, the + return status is zero if COMMAND is found, and non-zero if not. ‘declare’ declare [-aAfFgiIlnrtux] [-p] [NAME[=VALUE] ...] Declare variables and give them attributes. If no NAMEs are given, - then display the values of variables instead. + then display the values of variables or shell functions instead. The ‘-p’ option will display the attributes and values of each NAME. When ‘-p’ is used with NAME arguments, additional options, @@ -3945,8 +4090,8 @@ standard. display the attributes and values of all variables having the attributes specified by the additional options. If no other options are supplied with ‘-p’, ‘declare’ will display the - attributes and values of all shell variables. The ‘-f’ option will - restrict the display to shell functions. + attributes and values of all shell variables. The ‘-f’ option + restricts the display to shell functions. The ‘-F’ option inhibits the display of function definitions; only the function name and attributes are printed. If the ‘extdebug’ @@ -3956,7 +4101,8 @@ standard. The ‘-g’ option forces variables to be created or modified at the global scope, even when ‘declare’ is executed in a shell function. - It is ignored in all other cases. + It is ignored in when ‘declare’ is not executed in a shell + function. The ‘-I’ option causes local variables to inherit the attributes (except the ‘nameref’ attribute) and value of any existing variable @@ -3973,7 +4119,7 @@ standard. Each NAME is an associative array variable (*note Arrays::). ‘-f’ - Use function names only. + Each NAME refers to a shell function. ‘-i’ The variable is to be treated as an integer; arithmetic @@ -4012,13 +4158,14 @@ standard. Mark each NAME for export to subsequent commands via the environment. - Using ‘+’ instead of ‘-’ turns off the attribute instead, with the - exceptions that ‘+a’ and ‘+A’ may not be used to destroy array - variables and ‘+r’ will not remove the readonly attribute. When - used in a function, ‘declare’ makes each NAME local, as with the - ‘local’ command, unless the ‘-g’ option is used. If a variable - name is followed by =VALUE, the value of the variable is set to - VALUE. + Using ‘+’ instead of ‘-’ turns off the specified attribute instead, + with the exceptions that ‘+a’ and ‘+A’ may not be used to destroy + array variables and ‘+r’ will not remove the readonly attribute. + + When used in a function, ‘declare’ makes each NAME local, as with + the ‘local’ command, unless the ‘-g’ option is supplied. If a + variable name is followed by =VALUE, the value of the variable is + set to VALUE. When using ‘-a’ or ‘-A’ and the compound assignment syntax to create array variables, additional attributes do not take effect @@ -4039,14 +4186,15 @@ standard. Output the ARGs, separated by spaces, terminated with a newline. The return status is 0 unless a write error occurs. If ‘-n’ is - specified, the trailing newline is suppressed. If the ‘-e’ option - is given, interpretation of the following backslash-escaped - characters is enabled. The ‘-E’ option disables the interpretation - of these escape characters, even on systems where they are - interpreted by default. The ‘xpg_echo’ shell option may be used to - dynamically determine whether or not ‘echo’ interprets any options - and expands these escape characters by default. ‘echo’ does not - interpret ‘--’ to mean the end of options. + specified, the trailing newline is not printed. + + If the ‘-e’ option is given, ‘echo’ interprets the following + backslash-escaped characters. The ‘-E’ option disables + interpretation of these escape characters, even on systems where + they are interpreted by default. The ‘xpg_echo’ shell option + determines whether or not ‘echo’ interprets any options and expands + these escape characters. ‘echo’ does not interpret ‘--’ to mean + the end of options. ‘echo’ interprets the following escape sequences: ‘\a’ @@ -4083,36 +4231,38 @@ standard. the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value HHHHHHHH (one to eight hex digits) + ‘echo’ writes any unrecognized backslash-escaped characters + unchanged. + ‘enable’ enable [-a] [-dnps] [-f FILENAME] [NAME ...] 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 ‘-n’ - is used, the NAMEs become disabled. Otherwise NAMEs are enabled. - For example, to use the ‘test’ binary found via ‘$PATH’ instead of - the shell builtin version, type ‘enable -n test’. - - If the ‘-p’ option is supplied, or no NAME arguments appear, a list - of shell builtins is printed. With no other arguments, the list - consists of all enabled shell builtins. The ‘-a’ option means to - list each builtin with an indication of whether or not it is - enabled. + allows an executable file 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 files. + + If ‘-n’ is supplied, the NAMEs are disabled. Otherwise NAMEs are + enabled. For example, to use the ‘test’ binary found using ‘$PATH’ + instead of the shell builtin version, type ‘enable -n test’. + + If the ‘-p’ option is supplied, or no NAME arguments are supplied, + print a list of shell builtins. With no other arguments, the list + consists of all enabled shell builtins. The ‘-n’ option means to + print only disabled builtins. The ‘-a’ option means to list each + builtin with an indication of whether or not it is enabled. The + ‘-s’ option means to restrict ‘enable’ to the POSIX special + builtins. The ‘-f’ option means to load the new builtin command NAME from shared object FILENAME, on systems that support dynamic loading. - Bash will use the value of the ‘BASH_LOADABLES_PATH’ variable as a - colon-separated list of directories in which to search for - FILENAME, if FILENAME does not contain a slash. The default is - system-dependent, and may include "." to force a search of the - current directory. The ‘-d’ option will delete a builtin loaded - with ‘-f’. - - If there are no options, a list of the shell builtins is displayed. - The ‘-s’ option restricts ‘enable’ to the POSIX special builtins. - If ‘-s’ is used with ‘-f’, the new builtin becomes a special - builtin (*note Special Builtins::). + If FILENAME does not contain a slash. Bash will use the value of + the ‘BASH_LOADABLES_PATH’ variable as a colon-separated list of + directories in which to search for FILENAME. The default for + ‘BASH_LOADABLES_PATH’ is system-dependent, and may include "." to + force a search of the current directory. The ‘-d’ option will + delete a builtin loaded with ‘-f’. If ‘-s’ is used with ‘-f’, the + new builtin becomes a special builtin (*note Special Builtins::). If no options are supplied and a NAME is not a shell builtin, ‘enable’ will attempt to load NAME from a shared object named NAME, @@ -4126,7 +4276,8 @@ standard. Display helpful information about builtin commands. If PATTERN is specified, ‘help’ gives detailed help on all commands matching - PATTERN, otherwise a list of the builtins is printed. + PATTERN, otherwise it displays a list of all builtins and shell + compound commands. Options, if supplied, have the following meanings: @@ -4144,25 +4295,34 @@ standard. let EXPRESSION [EXPRESSION ...] The ‘let’ builtin allows arithmetic to be performed on shell - variables. Each EXPRESSION is evaluated according to the rules - given below in *note Shell Arithmetic::. If the last EXPRESSION - evaluates to 0, ‘let’ returns 1; otherwise 0 is returned. + variables. Each EXPRESSION is evaluated as an arithmetic + expression according to the rules given below in *note Shell + Arithmetic::. If the last EXPRESSION evaluates to 0, ‘let’ returns + 1; otherwise ‘let’ returns 0. ‘local’ local [OPTION] NAME[=VALUE] ... - For each argument, a local variable named NAME is created, and - assigned VALUE. The OPTION can be any of the options accepted by + For each argument, create a local variable named NAME, and assign + it VALUE. The OPTION can be any of the options accepted by ‘declare’. ‘local’ can only be used within a function; it makes the variable NAME have a visible scope restricted to that function - and its children. If NAME is ‘-’, the set of shell options is made - local to the function in which ‘local’ is invoked: shell options - changed using the ‘set’ builtin inside the function after the call - to ‘local’ are restored to their original values when the function - returns. The restore is effected as if a series of ‘set’ commands + and its children. It is an error to use ‘local’ when not within a + function. + + If NAME is ‘-’, it makes the set of shell options local to the + function in which ‘local’ is invoked: any shell options changed + using the ‘set’ builtin inside the function after the call to + ‘local’ are restored to their original values when the function + returns. The restore is performed as if a series of ‘set’ commands were executed to restore the values that were in place before the - function. The return status is zero unless ‘local’ is used outside - a function, an invalid NAME is supplied, or NAME is a readonly + function. + + With no operands, ‘local’ writes a list of local variables to the + standard output. + + The return status is zero unless ‘local’ is used outside a + function, an invalid NAME is supplied, or NAME is a readonly variable. ‘logout’ @@ -4174,18 +4334,17 @@ standard. mapfile [-d DELIM] [-n COUNT] [-O ORIGIN] [-s COUNT] [-t] [-u FD] [-C CALLBACK] [-c QUANTUM] [ARRAY] - Read lines from the standard input into the indexed array variable - ARRAY, or from file descriptor FD if the ‘-u’ option is supplied. + Read lines from the standard input, or from file descriptor FD if + the ‘-u’ option is supplied, into the indexed array variable ARRAY. The variable ‘MAPFILE’ is the default ARRAY. Options, if supplied, have the following meanings: ‘-d’ - The first character of DELIM is used to terminate each input - line, rather than newline. If DELIM is the empty string, - ‘mapfile’ will terminate a line when it reads a NUL character. + Use the first character of DELIM to terminate each input line, + rather than newline. If DELIM is the empty string, ‘mapfile’ + will terminate a line when it reads a NUL character. ‘-n’ - Copy at most COUNT lines. If COUNT is 0, all lines are - copied. + Copy at most COUNT lines. If COUNT is 0, copy all lines. ‘-O’ Begin assigning to ARRAY at index ORIGIN. The default index is 0. @@ -4212,17 +4371,16 @@ standard. If not supplied with an explicit origin, ‘mapfile’ will clear ARRAY before assigning to it. - ‘mapfile’ returns successfully unless an invalid option or option - argument is supplied, ARRAY is invalid or unassignable, or ARRAY is - not an indexed array. + ‘mapfile’ returns zero unless an invalid option or option argument + is supplied, ARRAY is invalid or unassignable, or if ARRAY is not + an indexed array. ‘printf’ printf [-v VAR] FORMAT [ARGUMENTS] Write the formatted ARGUMENTS to the standard output under the - control of the FORMAT. The ‘-v’ option causes the output to be - assigned to the variable VAR rather than being printed to the - standard output. + control of the FORMAT. The ‘-v’ option assigns the output to the + variable VAR rather than printing it to the standard output. The FORMAT is a character string which contains three types of objects: plain characters, which are simply copied to standard @@ -4253,11 +4411,12 @@ standard. Causes ‘printf’ to output the date-time string resulting from using DATEFMT as a format string for ‘strftime’(3). The corresponding ARGUMENT 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 argument is specified, - conversion behaves as if -1 had been given. This is an - exception to the usual ‘printf’ behavior. + of seconds since the epoch. This format specifier recognizes + Two special argument values: -1 represents the current time, + and -2 represents the time the shell was invoked. If no + argument is specified, conversion behaves as if -1 had been + supplied. This is an exception to the usual ‘printf’ + behavior. The %b, %q, and %T format specifiers all use the field width and precision arguments from the format specification and write that @@ -4290,19 +4449,19 @@ standard. read [-Eers] [-a ANAME] [-d DELIM] [-i TEXT] [-n NCHARS] [-N NCHARS] [-p PROMPT] [-t TIMEOUT] [-u FD] [NAME ...] - One line is read from the standard input, or from the file - descriptor FD supplied as an argument to the ‘-u’ option, split - into words as described above in *note Word Splitting::, and the - first word is assigned to the first NAME, the second word to the - second NAME, and so on. If there are more words than names, the - remaining words and their intervening delimiters are assigned to - the last NAME. If there are fewer words read from the input stream - than names, the remaining names are assigned empty values. The - characters in the value of the ‘IFS’ variable are used to split the - line into words using the same rules the shell uses for expansion - (described above in *note Word Splitting::). The backslash - character ‘\’ may be used to remove any special meaning for the - next character read and for line continuation. + Read one line from the standard input, or from the file descriptor + FD supplied as an argument to the ‘-u’ option, split it into words + as described above in *note Word Splitting::, and assign the first + word to the first NAME, the second word to the second NAME, and so + on. If there are more words than names, the remaining words and + their intervening delimiters are assigned to the last NAME. If + there are fewer words read from the input stream than names, the + remaining names are assigned empty values. The characters in the + value of the ‘IFS’ variable are used to split the line into words + using the same rules the shell uses for expansion (described above + in *note Word Splitting::). The backslash character ‘\’ removes + any special meaning for the next character read and is used for + line continuation. Options, if supplied, have the following meanings: @@ -4313,45 +4472,48 @@ standard. ignored. ‘-d DELIM’ - The first character of DELIM is used to terminate the input - line, rather than newline. If DELIM is the empty string, - ‘read’ will terminate a line when it reads a NUL character. + The first character of DELIM terminates the input line, rather + than newline. If DELIM is the empty string, ‘read’ will + terminate a line when it reads a NUL character. ‘-e’ - Readline (*note Command Line Editing::) is used to obtain the - line. Readline uses the current (or default, if line editing - was not previously active) editing settings, but uses - Readline's default filename completion. + If the standard input is coming from a terminal, ‘read’ uses + Readline (*note Command Line Editing::) to obtain the line. + Readline uses the current (or default, if line editing was not + previously active) editing settings, but uses Readline's + default filename completion. ‘-E’ - Readline (*note Command Line Editing::) is used to obtain the - line. Readline uses the current (or default, if line editing - was not previously active) editing settings, but uses Bash's - default completion, including programmable completion. + If the standard input is coming from a terminal, ‘read’ uses + Readline (*note Command Line Editing::) to obtain the line. + Readline uses the current (or default, if line editing was not + previously active) editing settings, but uses Bash's default + completion, including programmable completion. ‘-i TEXT’ - If Readline is being used to read the line, TEXT is placed + If Readline is being used to read the line, ‘read’ places TEXT into the editing buffer before editing begins. ‘-n NCHARS’ ‘read’ returns after reading NCHARS characters rather than - waiting for a complete line of input, but honors a delimiter - if fewer than NCHARS characters are read before the delimiter. + waiting for a complete line of input, unless it encounters EOF + or ‘read’ times out, but honors a delimiter if it reads fewer + than NCHARS characters before the delimiter. ‘-N NCHARS’ ‘read’ returns after reading exactly NCHARS characters rather - than waiting for a complete line of input, unless EOF is - encountered or ‘read’ times out. Delimiter characters - encountered in the input are not treated specially and do not - cause ‘read’ to return until NCHARS characters are read. The - result is not split on the characters in ‘IFS’; the intent is - that the variable is assigned exactly the characters read - (with the exception of backslash; see the ‘-r’ option below). + than waiting for a complete line of input, unless it + encounters EOF or ‘read’ times out. Delimiter characters in + the input are not treated specially and do not cause ‘read’ to + return until it has read NCHARS characters. The result is not + split on the characters in ‘IFS’; the intent is that the + variable is assigned exactly the characters read (with the + exception of backslash; see the ‘-r’ option below). ‘-p PROMPT’ Display PROMPT, without a trailing newline, before attempting - to read any input. The prompt is displayed only if input is - coming from a terminal. + to read any input, but only if input is coming from a + terminal. ‘-r’ If this option is given, backslash does not act as an escape @@ -4364,33 +4526,35 @@ standard. are not echoed. ‘-t TIMEOUT’ - Cause ‘read’ to time out and return failure if a complete line - of input (or a specified number of characters) is not read - within TIMEOUT seconds. TIMEOUT may be a decimal number with - a fractional portion following the decimal point. This option - is only effective if ‘read’ is reading input from a terminal, - pipe, or other special file; it has no effect when reading - from regular files. If ‘read’ times out, ‘read’ saves any - partial input read into the specified variable NAME. If - TIMEOUT is 0, ‘read’ returns 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. + Cause ‘read’ to time out and return failure if it does not + read a complete line of input (or a specified number of + characters) within TIMEOUT seconds. TIMEOUT may be a decimal + number with a fractional portion following the decimal point. + This option is only effective if ‘read’ is reading input from + a terminal, pipe, or other special file; it has no effect when + reading from regular files. If ‘read’ times out, it saves any + partial input read into the specified variable NAME, and + returns a status greater than 128. If TIMEOUT is 0, ‘read’ + returns immediately, without trying to read any data. In this + case, the exit status is 0 if input is available on the + specified file descriptor, or the read will return EOF, + non-zero otherwise. ‘-u FD’ - Read input from file descriptor FD. + Read input from file descriptor FD instead of the standard + input. Other than the case where DELIM is the empty string, ‘read’ ignores any NUL characters in the input. - If no NAMEs are supplied, the line read, without the ending - delimiter but otherwise unmodified, is assigned to the variable - ‘REPLY’. The exit status is zero, unless end-of-file is - encountered, ‘read’ times out (in which case the status is greater - than 128), a variable assignment error (such as assigning to a - readonly variable) occurs, or an invalid file descriptor is - supplied as the argument to ‘-u’. + If no NAMEs are supplied, ‘read’ assigns the line read, without the + ending delimiter but otherwise unmodified, to the variable ‘REPLY’. + + The exit status is zero, unless end-of-file is encountered, ‘read’ + times out (in which case the status is greater than 128), a + variable assignment error (such as assigning to a readonly + variable) occurs, or an invalid file descriptor is supplied as the + argument to ‘-u’. ‘readarray’ readarray [-d DELIM] [-n COUNT] [-O ORIGIN] [-s COUNT] @@ -4409,19 +4573,18 @@ standard. ‘type’ type [-afptP] [NAME ...] - For each NAME, indicate how it would be interpreted if used as a - command name. + Indicate how each NAME would be interpreted if used as a command + name. If the ‘-t’ option is used, ‘type’ prints a single word which is one of ‘alias’, ‘keyword’, ‘function’, ‘builtin’, or ‘file’, if NAME is an alias, shell reserved word, shell function, shell - builtin, or executable disk file, respectively. If the NAME is not - found, then nothing is printed, and ‘type’ returns a failure - status. + builtin, or executable file, respectively. If the NAME is not + found, ‘type’ prints nothing and returns a failure status. If the ‘-p’ option is used, ‘type’ either returns the name of the - executable file that would be found by searching ‘$PATH’, or - nothing if ‘-t’ would not return ‘file’. + executable file that would be found by searching ‘$PATH’ for + ‘name’, or nothing if ‘-t’ would not return ‘file’. The ‘-P’ option forces a path search for each NAME, even if ‘-t’ would not return ‘file’. @@ -4454,9 +4617,9 @@ standard. ulimit [-HS] -a ulimit [-HS] [-bcdefiklmnpqrstuvxPRT] [LIMIT] - ‘ulimit’ provides control over the resources available to processes - started by the shell, on systems that allow such control. If an - option is given, it is interpreted as follows: + ‘ulimit’ provides control over the resources available to the shell + and to processes it starts, on systems that allow such control. If + an option is given, it is interpreted as follows: ‘-S’ Change and report the soft limit associated with a resource. @@ -4465,7 +4628,7 @@ standard. Change and report the hard limit associated with a resource. ‘-a’ - All current limits are reported; no limits are set. + Report all current limits; no limits are set. ‘-b’ The maximum socket buffer size. @@ -4535,23 +4698,25 @@ standard. ‘-T’ The maximum number of threads. - If LIMIT is given, and the ‘-a’ option is not used, LIMIT is the + If LIMIT is supplied, and the ‘-a’ option is not used, LIMIT is the new value of the specified resource. The special LIMIT values ‘hard’, ‘soft’, and ‘unlimited’ stand for the current hard limit, the current soft limit, and no limit, respectively. 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. Otherwise, the - current value of the soft limit for the specified resource is - printed, unless the ‘-H’ option is supplied. When more than one - resource is specified, the limit name and unit, if appropriate, are - printed before the value. When setting new limits, if neither ‘-H’ - nor ‘-S’ is supplied, both the hard and soft limits are set. If no - option is given, then ‘-f’ is assumed. Values are in 1024-byte - increments, except for ‘-t’, which is in seconds; ‘-R’, which is in - microseconds; ‘-p’, which is in units of 512-byte blocks; ‘-P’, - ‘-T’, ‘-b’, ‘-k’, ‘-n’ and ‘-u’, which are unscaled values; and, - when in POSIX Mode (*note Bash POSIX Mode::), ‘-c’ and ‘-f’, which - are in 512-byte increments. + may be increased up to the value of the hard limit. Otherwise, + ‘ulimit’ prints the current value of the soft limit for the + specified resource, unless the ‘-H’ option is supplied. When more + than one resource is specified, the limit name and unit, if + appropriate, are printed before the value. When setting new + limits, if neither ‘-H’ nor ‘-S’ is supplied, ‘ulimit’ sets both + the hard and soft limits. If no option is supplied, then ‘-f’ is + assumed. + + Values are in 1024-byte increments, except for ‘-t’, which is in + seconds; ‘-R’, which is in microseconds; ‘-p’, which is in units of + 512-byte blocks; ‘-P’, ‘-T’, ‘-b’, ‘-k’, ‘-n’ and ‘-u’, which are + unscaled values; and, when in POSIX Mode (*note Bash POSIX Mode::), + ‘-c’ and ‘-f’, which are in 512-byte increments. The return status is zero unless an invalid option or argument is supplied, or an error occurs while setting a new limit. @@ -4560,7 +4725,9 @@ standard. unalias [-a] [NAME ... ] Remove each NAME from the list of aliases. If ‘-a’ is supplied, - all aliases are removed. Aliases are described in *note Aliases::. + remove all aliases. The return value is true unless a supplied + NAME is not a defined alias. Aliases are described in *note + Aliases::.  File: bashref.info, Node: Modifying Shell Behavior, Next: Special Builtins, Prev: Bash Builtins, Up: Shell Builtin Commands @@ -4597,7 +4764,10 @@ parameters, or to display the names and values of shell variables. variables cannot be reset. In POSIX mode, only shell variables are listed. - When options are supplied, they set or unset shell attributes. + When options are supplied, they set or unset shell attributes. Any + arguments remaining after option processing replace the positional + parameters. + Options, if specified, have the following meanings: ‘-a’ @@ -4608,7 +4778,8 @@ parameters, or to display the names and values of shell variables. ‘-b’ Cause the status of terminated background jobs to be reported immediately, rather than before printing the next primary - prompt. + prompt or, under some circumstances, when a foreground command + exits. This is effective only when job control is enabled. ‘-e’ Exit immediately if a pipeline (*note Pipelines::), which may @@ -4795,7 +4966,7 @@ parameters, or to display the names and values of shell variables. ‘-x’ Print a trace of simple commands, ‘for’ commands, ‘case’ commands, ‘select’ commands, and arithmetic ‘for’ commands and - their arguments or associated word lists to standard error + their arguments or associated word lists to the standard error after they are expanded and before they are executed. The shell prints the expanded value of the ‘PS4’ variable before the command and its expanded arguments. @@ -4806,7 +4977,9 @@ parameters, or to display the names and values of shell variables. ‘-C’ Prevent output redirection using ‘>’, ‘>&’, and ‘<>’ from - overwriting existing files. + overwriting existing files. Using the redirection operator + ‘>|’ instead of ‘>’ will override this and force the creation + of an output file. ‘-E’ If set, any trap on ‘ERR’ is inherited by shell functions, @@ -4820,11 +4993,11 @@ parameters, or to display the names and values of shell variables. shells. ‘-P’ - If set, do not resolve symbolic links when performing commands - such as ‘cd’ which change the current directory. The physical - directory is used instead. By default, Bash follows the - logical chain of directories when performing commands which - change the current directory. + If set, Bash does not resolve symbolic links when executing + commands such as ‘cd’ which change the current directory. It + uses the physical directory structure instead. By default, + Bash follows the logical chain of directories when performing + commands which change the current directory. For example, if ‘/usr/sys’ is a symbolic link to ‘/usr/local/sys’ then: @@ -4840,22 +5013,21 @@ parameters, or to display the names and values of shell variables. /usr/local ‘-T’ - If set, any trap on ‘DEBUG’ and ‘RETURN’ are inherited by + If set, any traps on ‘DEBUG’ and ‘RETURN’ are inherited by shell functions, command substitutions, and commands executed in a subshell environment. The ‘DEBUG’ and ‘RETURN’ traps are normally not inherited in such cases. ‘--’ - If no arguments follow this option, then the positional - parameters are unset. Otherwise, the positional parameters - are set to the ARGUMENTS, even if some of them begin with a - ‘-’. + If no arguments follow this option, unset the positional + parameters. Otherwise, the positional parameters are set to + the ARGUMENTS, even if some of them begin with a ‘-’. ‘-’ - Signal the end of options, cause all remaining ARGUMENTS to be - assigned to the positional parameters. The ‘-x’ and ‘-v’ - options are turned off. If there are no arguments, the - positional parameters remain unchanged. + Signal the end of options, and assign all remaining ARGUMENTS + to the positional parameters. The ‘-x’ and ‘-v’ options are + turned off. If there are no arguments, the positional + parameters remain unchanged. Using ‘+’ rather than ‘-’ causes these options to be turned off. The options can also be used upon invocation of the shell. The @@ -4874,7 +5046,7 @@ File: bashref.info, Node: The Shopt Builtin, Prev: The Set Builtin, Up: Modif 4.3.2 The Shopt Builtin ----------------------- -This builtin allows you to change additional shell optional behavior. +This builtin allows you to change additional optional shell behavior. ‘shopt’ shopt [-pqsu] [-o] [OPTNAME ...] @@ -4883,11 +5055,11 @@ This builtin allows you to change additional shell optional behavior. The settings can be either those listed below, or, if the ‘-o’ option is used, those available with the ‘-o’ option to the ‘set’ builtin command (*note The Set Builtin::). With no options, or - with the ‘-p’ option, a list of all settable options is displayed, - with an indication of whether or not each is set; if OPTNAMEs are + with the ‘-p’ option, display a list of all settable options, with + an indication of whether or not each is set; if any OPTNAMEs are supplied, the output is restricted to those options. The ‘-p’ - option causes output to be displayed in a form that may be reused - as input. Other options have the following meanings: + option displays output in a form that may be reused as input. + Other options have the following meanings: ‘-s’ Enable (set) each OPTNAME. @@ -4898,8 +5070,8 @@ This builtin allows you to change additional shell optional behavior. ‘-q’ Suppresses normal output; the return status indicates whether the OPTNAME is set or unset. If multiple OPTNAME arguments - are given with ‘-q’, the return status is zero if all OPTNAMEs - are enabled; non-zero otherwise. + are supplied with ‘-q’, the return status is zero if all + OPTNAMEs are enabled; non-zero otherwise. ‘-o’ Restricts the values of OPTNAME to be those defined for the @@ -4943,25 +5115,24 @@ This builtin allows you to change additional shell optional behavior. whose value is the directory to change to. ‘cdspell’ - If set, minor errors in the spelling of a directory component - in a ‘cd’ command will be corrected. The errors checked for - are transposed characters, a missing character, and a - character too many. If a correction is found, the corrected - path is printed, and the command proceeds. This option is + If set, the ‘cd’ command attempts to correct minor errors in + the spelling of a directory component. Minor errors include + transposed characters, a missing character, and one extra + character. If ‘cd’ corrects the directory name, it prints the + corrected filename, and the command proceeds. This option is only used by interactive shells. ‘checkhash’ If this is set, Bash checks that a command found in the hash table exists before trying to execute it. If a hashed command - no longer exists, a normal path search is performed. + no longer exists, Bash performs a normal path search. ‘checkjobs’ If set, Bash lists the status of any stopped and running 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 (*note Job - Control::). The shell always postpones exiting if any jobs - are stopped. + Bash defers the exit until a second exit is attempted without + an intervening command (*note Job Control::). The shell + always postpones exiting if any jobs are stopped. ‘checkwinsize’ If set, Bash checks the window size after each external @@ -5013,15 +5184,14 @@ This builtin allows you to change additional shell optional behavior. supplied does not exist. ‘dotglob’ - If set, Bash includes filenames beginning with a '.' in the + If set, Bash includes filenames beginning with a ‘.’ in the results of filename expansion. The filenames ‘.’ and ‘..’ must always be matched explicitly, even if ‘dotglob’ is set. ‘execfail’ If this is set, a non-interactive shell will not exit if it cannot execute the file specified as an argument to the ‘exec’ - builtin command. An interactive shell does not exit if ‘exec’ - fails. + builtin. An interactive shell does not exit if ‘exec’ fails. ‘expand_aliases’ If set, aliases are expanded as described below under Aliases, @@ -5060,8 +5230,8 @@ This builtin allows you to change additional shell optional behavior. inherit the ‘ERR’ trap. ‘extglob’ - If set, the extended pattern matching features described above - (*note Pattern Matching::) are enabled. + If set, enable the extended pattern matching features + described above (*note Pattern Matching::). ‘extquote’ If set, ‘$'STRING'’ and ‘$"STRING"’ quoting is performed @@ -5083,10 +5253,10 @@ This builtin allows you to change additional shell optional behavior. If set, range expressions used in pattern matching bracket expressions (*note Pattern Matching::) behave as if in the traditional C locale when performing comparisons. That is, - the current locale's collating sequence is not taken into - account, so ‘b’ will not collate between ‘A’ and ‘B’, and - upper-case and lower-case ASCII characters will collate - together. + pattern matching does not take the current locale's collating + sequence into account, so ‘b’ will not collate between ‘A’ and + ‘B’, and upper-case and lower-case ASCII characters will + collate together. ‘globskipdots’ If set, filename expansion will never match the filenames ‘.’ @@ -5109,7 +5279,7 @@ This builtin allows you to change additional shell optional behavior. than overwriting the file. ‘histreedit’ - If set, and Readline is being used, a user is given the + If set, and Readline is being used, the user is given the opportunity to re-edit a failed history substitution. ‘histverify’ @@ -5135,9 +5305,10 @@ This builtin allows you to change additional shell optional behavior. enabled. ‘interactive_comments’ - Allow a word beginning with ‘#’ to cause that word and all - remaining characters on that line to be ignored in an - interactive shell. This option is enabled by default. + In an interactive shell, a word beginning with ‘#’ causes that + word and all remaining characters on that line to be ignored, + as in a non-interactive shell. This option is enabled by + default. ‘lastpipe’ If set, and job control is not active, the shell runs the last @@ -5168,13 +5339,13 @@ This builtin allows you to change additional shell optional behavior. ‘mailwarn’ If set, and a file that Bash is checking for mail has been - accessed since the last time it was checked, the message ‘"The - mail in MAILFILE has been read"’ is displayed. + accessed since the last time it was checked, Bash displays the + message ‘"The mail in MAILFILE has been read"’. ‘no_empty_cmd_completion’ - If set, and Readline is being used, Bash will not attempt to - search the ‘PATH’ for possible completions when completion is - attempted on an empty line. + If set, and Readline is being used, Bash does not search the + ‘PATH’ for possible completions when completion is attempted + on an empty line. ‘nocaseglob’ If set, Bash matches filenames in a case-insensitive fashion @@ -5205,9 +5376,9 @@ This builtin allows you to change additional shell optional behavior. Expansion::). This option is enabled by default. ‘progcomp’ - If set, the programmable completion facilities (*note - Programmable Completion::) are enabled. This option is - enabled by default. + If set, enable the programmable completion facilities (*note + Programmable Completion::). This option is enabled by + default. ‘progcomp_alias’ If set, and programmable completion is enabled, Bash treats a @@ -5315,10 +5486,12 @@ In some cases, Bash assigns a default value to the variable. ‘IFS’ A list of characters that separate fields; used when the shell - splits words as part of expansion. + splits words as part of expansion and by the ‘read’ builtin to + split lines into words. *Note Word Splitting::, for a description + of word splitting. ‘MAIL’ - If this parameter is set to a filename or directory name and the + If the value is set to a filename or directory name and the ‘MAILPATH’ variable is not set, Bash informs the user of the arrival of mail in the specified file or Maildir-format directory. @@ -5334,7 +5507,7 @@ In some cases, Bash assigns a default value to the variable. builtin. ‘OPTIND’ - The index of the last option argument processed by the ‘getopts’ + The index of the next argument to be processed by the ‘getopts’ builtin. ‘PATH’ @@ -5342,6 +5515,9 @@ In some cases, Bash assigns a default value to the variable. commands. A zero-length (null) directory name in the value of ‘PATH’ indicates the current directory. A null directory name may appear as two adjacent colons, or as an initial or trailing colon. + The default path is system-dependent, and is set by the + administrator who installs ‘bash’. A common value is + "/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin". ‘PS1’ The primary prompt string. The default value is ‘\s-\v\$ ’. *Note @@ -5366,13 +5542,14 @@ variables for controlling the job control facilities (*note Job Control Variables::). ‘_’ - ($_, an underscore.) At shell startup, set to the pathname used to - invoke the shell or shell script being executed as passed in the - environment or argument list. Subsequently, expands to the last + ($_, an underscore.) This has a number of meanings depending on + context. At shell startup, $_ set to the pathname used to invoke + the shell or shell script being executed as passed in the + environment or argument list. Subsequently, it expands to the last argument to the previous simple command executed in the foreground, - after expansion. Also set to the full pathname used to invoke each - command executed and placed in the environment exported to that - command. When checking mail, this parameter holds the name of the + after expansion. It is also set to the full pathname used to + invoke each command executed and placed in the environment exported + to that command. When checking mail, $_ expands to the name of the mail file. ‘BASH’ @@ -5383,9 +5560,9 @@ Variables::). list is a valid argument for the ‘-s’ option to the ‘shopt’ builtin command (*note The Shopt Builtin::). The options appearing in ‘BASHOPTS’ are those reported as ‘on’ by ‘shopt’. If this variable - is in the environment when Bash starts up, each shell option in the - list will be enabled before reading any startup files. This - variable is readonly. + is in the environment when Bash starts up, the shell enables each + option in the list before reading any startup files. This variable + is readonly. ‘BASHPID’ Expands to the process ID of the current Bash process. This @@ -5412,7 +5589,7 @@ Variables::). onto ‘BASH_ARGC’. The shell sets ‘BASH_ARGC’ only when in extended debugging mode (see *note The Shopt Builtin:: for a description of the ‘extdebug’ option to the ‘shopt’ builtin). Setting ‘extdebug’ - after the shell has started to execute a script, or referencing + after the shell has started to execute a subroutine, or referencing this variable when ‘extdebug’ is not set, may result in inconsistent values. Assignments to ‘BASH_ARGC’ have no effect, and it may not be unset. @@ -5422,37 +5599,37 @@ Variables::). Bash execution call stack. The final parameter of the last subroutine call is at the top of the stack; the first parameter of the initial call is at the bottom. When a subroutine is executed, - the parameters supplied are pushed onto ‘BASH_ARGV’. The shell - sets ‘BASH_ARGV’ only when in extended debugging mode (see *note - The Shopt Builtin:: for a description of the ‘extdebug’ option to - the ‘shopt’ builtin). Setting ‘extdebug’ after the shell has - started to execute a script, or referencing this variable when + the shell pushes the supplied parameters onto ‘BASH_ARGV’. The + shell sets ‘BASH_ARGV’ only when in extended debugging mode (see + *note The Shopt Builtin:: for a description of the ‘extdebug’ + option to the ‘shopt’ builtin). Setting ‘extdebug’ after the shell + has started to execute a script, or referencing this variable when ‘extdebug’ is not set, may result in inconsistent values. Assignments to ‘BASH_ARGV’ have no effect, and it may not be unset. ‘BASH_ARGV0’ When referenced, this variable expands to the name of the shell or shell script (identical to ‘$0’; *Note Special Parameters::, for - the description of special parameter 0). Assignment to - ‘BASH_ARGV0’ causes the value assigned to also be assigned to ‘$0’. - If ‘BASH_ARGV0’ is unset, it loses its special properties, even if - it is subsequently reset. + the description of special parameter 0). Assigning a value to + ‘BASH_ARGV0’ assigns the same value to ‘$0’. If ‘BASH_ARGV0’ is + unset, it loses its special properties, even if it is subsequently + reset. ‘BASH_CMDS’ An associative array variable whose members correspond to the internal hash table of commands as maintained by the ‘hash’ builtin - (*note Bourne Shell Builtins::). Elements added to this array - appear in the hash table; however, unsetting array elements - currently does not cause command names to be removed from the hash + (*note Bourne Shell Builtins::). Adding elements to this array + makes them appear in the hash table; however, unsetting array + elements currently does not remove command names from the hash table. If ‘BASH_CMDS’ is unset, it loses its special properties, even if it is subsequently reset. ‘BASH_COMMAND’ - The command currently being executed or about to be executed, - unless the shell is executing a command as the result of a trap, in - which case it is the command executing at the time of the trap. If - ‘BASH_COMMAND’ is unset, it loses its special properties, even if - it is subsequently reset. + Expands to the command currently being executed or about to be + executed, unless the shell is executing a command as the result of + a trap, in which case it is the command executing at the time of + the trap. If ‘BASH_COMMAND’ is unset, it loses its special + properties, even if it is subsequently reset. ‘BASH_COMPAT’ The value is used to set the shell's compatibility level. *Note @@ -5473,8 +5650,8 @@ Variables::). ‘BASH_ENV’ If this variable is set when Bash is invoked to execute a shell script, its value is expanded and used as the name of a startup - file to read before executing the script. *Note Bash Startup - Files::. + file to read before executing the script. Bash does not use ‘PATH’ + to search for the resultant filename. *Note Bash Startup Files::. ‘BASH_EXECUTION_STRING’ The command argument to the ‘-c’ invocation option. @@ -5490,8 +5667,8 @@ Variables::). unset. ‘BASH_LOADABLES_PATH’ - A colon-separated list of directories in which the shell looks for - dynamically loadable builtins specified by the ‘enable’ command. + A colon-separated list of directories in which the ‘enable’ command + looks for dynamically loadable builtins. ‘BASH_MONOSECONDS’ Each time this variable is referenced, it expands to the value @@ -5552,7 +5729,8 @@ Variables::). The value of ‘MACHTYPE’. ‘BASH_VERSION’ - The version number of the current instance of Bash. + Expands to a string describing the version of this instance of Bash + (e.g., 5.2.37(3)-release). ‘BASH_XTRACEFD’ If set to an integer corresponding to a valid file descriptor, Bash @@ -5584,6 +5762,12 @@ Variables::). functions invoked by the programmable completion facilities (*note Programmable Completion::). +‘COMP_KEY’ + The key (or final key of a key sequence) used to invoke the current + completion function. This variable is available only in shell + functions and external commands invoked by the programmable + completion facilities (*note Programmable Completion::). + ‘COMP_LINE’ The current command line. This variable is available only in shell functions and external commands invoked by the programmable @@ -5598,8 +5782,8 @@ Variables::). completion facilities (*note Programmable Completion::). ‘COMP_TYPE’ - Set to an integer value corresponding to the type of completion - attempted that caused a completion function to be called: , + Set to an integer value corresponding to the type of attempted + completion that caused a completion function to be called: , for normal completion, ‘?’, for listing completions after successive tabs, ‘!’, for listing alternatives on partial word completion, ‘@’, to list completions if the word is not unmodified, @@ -5607,10 +5791,6 @@ Variables::). shell functions and external commands invoked by the programmable completion facilities (*note Programmable Completion::). -‘COMP_KEY’ - The key (or final key of a key sequence) used to invoke the current - completion function. - ‘COMP_WORDBREAKS’ The set of characters that the Readline library treats as word separators when performing word completion. If ‘COMP_WORDBREAKS’ @@ -5646,8 +5826,8 @@ Variables::). ‘EMACS’ If Bash finds this variable in the environment when the shell - starts with value ‘t’, it assumes that the shell is running in an - Emacs shell buffer and disables line editing. + starts, and its value is ‘t’, Bash assumes that the shell is + running in an Emacs shell buffer and disables line editing. ‘ENV’ Expanded and executed similarly to ‘BASH_ENV’ (*note Bash Startup @@ -5675,20 +5855,18 @@ Variables::). ‘EXECIGNORE’ A colon-separated list of shell patterns (*note Pattern Matching::) - defining the list of filenames to be ignored by command search - using ‘PATH’. Files whose full pathnames match one of these - patterns are not considered executable files for the purposes of - completion and command execution via ‘PATH’ lookup. This does not - affect the behavior of the ‘[’, ‘test’, and ‘[[’ commands. Full - pathnames in the command hash table are not subject to - ‘EXECIGNORE’. Use this variable to ignore shared library files - that have the executable bit set, but are not executable files. - The pattern matching honors the setting of the ‘extglob’ shell - option. + defining the set of filenames to be ignored by command search using + ‘PATH’. Files whose full pathnames match one of these patterns are + not considered executable files for the purposes of completion and + command execution via ‘PATH’ lookup. This does not affect the + behavior of the ‘[’, ‘test’, and ‘[[’ commands. Full pathnames in + the command hash table are not subject to ‘EXECIGNORE’. Use this + variable to ignore shared library files that have the executable + bit set, but are not executable files. The pattern matching honors + the setting of the ‘extglob’ shell option. ‘FCEDIT’ - The editor used as a default by the ‘-e’ option to the ‘fc’ builtin - command. + The editor used as a default by the ‘fc’ builtin command. ‘FIGNORE’ A colon-separated list of suffixes to ignore when performing @@ -5714,9 +5892,9 @@ Variables::). information. ‘FUNCNEST’ - If set to a numeric value greater than 0, defines a maximum - function nesting level. Function invocations that exceed this - nesting level will cause the current command to abort. + A numeric value greater than 0 defines a maximum function nesting + level. Function invocations that exceed this nesting level will + cause the current command to abort. ‘GLOBIGNORE’ A colon-separated list of patterns defining the set of file names @@ -5726,7 +5904,7 @@ Variables::). matching honors the setting of the ‘extglob’ shell option. ‘GLOBSORT’ - Control how the results of filename expansion are sorted. The + Controls how the results of filename expansion are sorted. The value of this variable specifies the sort criteria and sort order for the results of filename expansion. If this variable is unset or set to the null string, filename expansion uses the historical @@ -5792,7 +5970,7 @@ Variables::). on the history list. If the list of values includes ‘ignorespace’, lines which begin with a space character are not saved in the history list. A value of ‘ignoredups’ causes lines which match the - previous history entry to not be saved. A value of ‘ignoreboth’ is + previous history entry not to be saved. A value of ‘ignoreboth’ is shorthand for ‘ignorespace’ and ‘ignoredups’. A value of ‘erasedups’ causes all previous lines matching the current line to be removed from the history list before that line is saved. Any @@ -5801,23 +5979,26 @@ Variables::). parser are saved on the history list, subject to the value of ‘HISTIGNORE’. The second and subsequent lines of a multi-line compound command are not tested, and are added to the history - regardless of the value of ‘HISTCONTROL’. + regardless of the value of ‘HISTCONTROL’ if the first line of the + command was saved. If the first line was not saved, the second and + subsequent lines of the command are not saved, either. ‘HISTFILE’ The name of the file to which the command history is saved. Bash assigns a default value of ‘~/.bash_history’. If ‘HISTFILE’ is - unset or null, the command history is not saved when a shell exits. + unset or null, the shell does not save the command history when it + exits. ‘HISTFILESIZE’ The maximum number of lines contained in the history file. When this variable is assigned a value, the history file is truncated, if necessary, to contain no more than that number of lines by removing the oldest entries. The history file is also truncated to - this size after writing it when a shell exits. If the value is 0, - the history file is truncated to zero size. Non-numeric values and - numeric values less than zero inhibit truncation. The shell sets - the default value to the value of ‘HISTSIZE’ after reading any - startup files. + this size after writing it when a shell exits or by the ‘history’ + builtin. If the value is 0, the history file is truncated to zero + size. Non-numeric values and numeric values less than zero inhibit + truncation. The shell sets the default value to the value of + ‘HISTSIZE’ after reading any startup files. ‘HISTIGNORE’ A colon-separated list of patterns used to decide which command @@ -5832,12 +6013,14 @@ Variables::). backslash; the backslash is removed before attempting a match. The second and subsequent lines of a multi-line compound command are not tested, and are added to the history regardless of the value of - ‘HISTIGNORE’. The pattern matching honors the setting of the + ‘HISTIGNORE’, if the first line was saved. If the first line was + not saved, the second and subsequent lines of the command are not + saved, either. The pattern matching honors the setting of the ‘extglob’ shell option. - ‘HISTIGNORE’ subsumes the function of ‘HISTCONTROL’. A pattern of - ‘&’ is identical to ‘ignoredups’, and a pattern of ‘[ ]*’ is - identical to ‘ignorespace’. Combining these two patterns, + ‘HISTIGNORE’ subsumes some of the function of ‘HISTCONTROL’. A + pattern of ‘&’ is identical to ‘ignoredups’, and a pattern of ‘[ + ]*’ is identical to ‘ignorespace’. Combining these two patterns, separating them with a colon, provides the functionality of ‘ignoreboth’. @@ -5852,10 +6035,10 @@ Variables::). If this variable is set and not null, its value is used as a format string for ‘strftime’(3) to print the time stamp associated with each history entry displayed by the ‘history’ builtin. If this - variable is set, time stamps are written to the history file so - they may be preserved across shell sessions. This uses the history - comment character to distinguish timestamps from other history - lines. + variable is set, the shell writes time stamps to the history file + so they may be preserved across shell sessions. This uses the + history comment character to distinguish timestamps from other + history lines. ‘HOSTFILE’ Contains the name of a file in the same format as ‘/etc/hosts’ that @@ -5876,13 +6059,12 @@ Variables::). ‘IGNOREEOF’ Controls the action of the shell on receipt of an ‘EOF’ character - as the sole input. If set, the value denotes the number of - consecutive ‘EOF’ characters that can be read as the first - character on an input line before the shell will exit. If the - variable exists but does not have a numeric value, or has no value, - then the default is 10. If the variable does not exist, then ‘EOF’ - signifies the end of input to the shell. This is only in effect - for interactive shells. + as the sole input. If set, the value is the number of consecutive + ‘EOF’ characters that can be read as the first character on an + input line before Bash exits. If the variable is set but does not + have a numeric value, or the value is null, then the default is 10. + If the variable is unset, then ‘EOF’ signifies the end of input to + the shell. This is only in effect for interactive shells. ‘INPUTRC’ The name of the Readline initialization file, overriding the @@ -5928,8 +6110,10 @@ Variables::). ‘LINENO’ The line number in the script or shell function currently - executing. If ‘LINENO’ is unset, it loses its special properties, - even if it is subsequently reset. + executing. Line numbers start with 1. When not in a script or + function, the value is not guaranteed to be meaningful. If + ‘LINENO’ is unset, it loses its special properties, even if it is + subsequently reset. ‘LINES’ Used by the ‘select’ command to determine the column length for @@ -5958,7 +6142,8 @@ Variables::). ‘OPTERR’ If set to the value 1, Bash displays error messages generated by - the ‘getopts’ builtin command. + the ‘getopts’ builtin command. ‘OPTERR’ is initialized to 1 each + time the shell is invoked. ‘OSTYPE’ A string describing the operating system Bash is running on. @@ -6019,8 +6204,10 @@ Variables::). ‘RANDOM’ Each time this parameter is referenced, it expands to a random integer between 0 and 32767. Assigning a value to this variable - seeds the random number generator. If ‘RANDOM’ is unset, it loses - its special properties, even if it is subsequently reset. + initializes (seeds) the random number generator. Seeding the + random number generator with the same constant value will produce + the same sequence of values. If ‘RANDOM’ is unset, it loses its + special properties, even if it is subsequently reset. ‘READLINE_ARGUMENT’ Any numeric argument given to a Readline command that was defined @@ -6041,7 +6228,8 @@ Variables::). for use with ‘bind -x’ (*note Bash Builtins::). ‘REPLY’ - The default variable for the ‘read’ builtin. + The default variable for the ‘read’ builtin; set to the line read + when ‘read’ is not supplied a variable name argument. ‘SECONDS’ This variable expands to the number of seconds since the shell was @@ -6063,9 +6251,9 @@ Variables::). list is a valid argument for the ‘-o’ option to the ‘set’ builtin command (*note The Set Builtin::). The options appearing in ‘SHELLOPTS’ are those reported as ‘on’ by ‘set -o’. If this - variable is in the environment when Bash starts up, each shell - option in the list will be enabled before reading any startup - files. This variable is readonly. + variable is in the environment when Bash starts up, the shell + enables each option in the list before reading any startup files. + This variable is readonly. ‘SHLVL’ Incremented by one each time a new instance of Bash is started. @@ -6106,9 +6294,10 @@ Variables::). The optional P is a digit specifying the precision, the number of fractional digits after a decimal point. A value of 0 causes no - decimal point or fraction to be output. At most six places after - the decimal point may be specified; values of P greater than 6 are - changed to 6. If P is not specified, the value 3 is used. + decimal point or fraction to be output. ‘time’ will print at most + six digits after the decimal point; values of P greater than 6 are + changed to 6. If P is not specified, ‘time’ prints three digits + after the decimal point. The optional ‘l’ specifies a longer format, including minutes, of the form MMmSS.FFs. The value of P determines whether or not the @@ -6120,11 +6309,11 @@ Variables::). A trailing newline is added when the format string is displayed. ‘TMOUT’ - If set to a value greater than zero, ‘TMOUT’ is treated as the - default timeout for the ‘read’ builtin (*note Bash Builtins::). - The ‘select’ command (*note Conditional Constructs::) terminates if - input does not arrive after ‘TMOUT’ seconds when input is coming - from a terminal. + If set to a value greater than zero, the ‘read’ builtin uses the + value as its default timeout (*note Bash Builtins::). The ‘select’ + command (*note Conditional Constructs::) terminates if input does + not arrive after ‘TMOUT’ seconds when input is coming from a + terminal. In an interactive shell, the value is interpreted as the number of seconds to wait for a line of input after issuing the primary @@ -6192,8 +6381,8 @@ single-character options to be recognized. builtin). ‘--dump-po-strings’ - A list of all double-quoted strings preceded by ‘$’ is printed on - the standard output in the GNU ‘gettext’ PO (portable object) file + Print a list of all double-quoted strings preceded by ‘$’ on the + standard output in the GNU ‘gettext’ PO (portable object) file format. Equivalent to ‘-D’ except for the output format. ‘--dump-strings’ @@ -6260,23 +6449,23 @@ invocation which are not available with the ‘set’ builtin. Make this shell act as if it had been directly invoked by login. When the shell is interactive, this is equivalent to starting a login shell with ‘exec -l bash’. When the shell is not - interactive, the login shell startup files will be executed. ‘exec - bash -l’ or ‘exec bash --login’ will replace the current shell with - a Bash login shell. *Note Bash Startup Files::, for a description - of the special behavior of a login shell. + interactive, it will read and execute the login shell startup + files. ‘exec bash -l’ or ‘exec bash --login’ will replace the + current shell with a Bash login shell. *Note Bash Startup Files::, + for a description of the special behavior of a login shell. ‘-r’ Make the shell a restricted shell (*note The Restricted Shell::). ‘-s’ If this option is present, or if no arguments remain after option - processing, then commands are read from the standard input. This + processing, then Bash reads commands from the standard input. This option allows the positional parameters to be set when invoking an interactive shell or when reading input through a pipe. ‘-D’ - A list of all double-quoted strings preceded by ‘$’ is printed on - the standard output. These are the strings that are subject to + Print a list of all double-quoted strings preceded by ‘$’ on the + standard output. These are the strings that are subject to language translation when the current locale is not ‘C’ or ‘POSIX’ (*note Locale Translation::). This implies the ‘-n’ option; no commands will be executed. @@ -6285,8 +6474,8 @@ invocation which are not available with the ‘set’ builtin. SHOPT_OPTION is one of the shell options accepted by the ‘shopt’ builtin (*note The Shopt Builtin::). If SHOPT_OPTION is present, ‘-O’ sets the value of that option; ‘+O’ unsets it. If - SHOPT_OPTION is not supplied, the names and values of the shell - options accepted by ‘shopt’ are printed on the standard output. If + SHOPT_OPTION is not supplied, Bash prints the names and values of + the shell options accepted by ‘shopt’ on the standard output. If the invocation option is ‘+O’, the output is displayed in a format that may be reused as input. @@ -6304,9 +6493,9 @@ or one invoked with the ‘--login’ option. An _interactive_ shell is one started without non-option arguments, unless ‘-s’ is specified, without specifying the ‘-c’ option, and whose -input and output are both connected to terminals (as determined by -‘isatty(3)’), or one started with the ‘-i’ option. *Note Interactive -Shells::, for more information. +input and output (using the standard error) are both connected to +terminals (as determined by ‘isatty(3)’), or one started with the ‘-i’ +option. *Note Interactive Shells::, for more information. If arguments remain after option processing, and neither the ‘-c’ nor the ‘-s’ option has been supplied, the first argument is assumed to be @@ -6349,10 +6538,10 @@ commands from the file ‘~/.bash_logout’, if it exists. Invoked as an interactive non-login shell ......................................... -When an interactive shell that is not a login shell is started, Bash +When Bash runs as an interactive shell that is not a login shell, it reads and executes commands from ‘~/.bashrc’, if that file exists. This may be inhibited by using the ‘--norc’ option. The ‘--rcfile FILE’ -option will cause Bash to use FILE instead of ‘~/.bashrc’. +option causes Bash to use FILE instead of ‘~/.bashrc’. So, typically, your ‘~/.bash_profile’ contains the line if [ -f ~/.bashrc ]; then . ~/.bashrc; fi @@ -6367,7 +6556,7 @@ expands its value if it appears there, and uses the expanded value as the name of a file to read and execute. Bash behaves as if the following command were executed: if [ -n "$BASH_ENV" ]; then . "$BASH_ENV"; fi -but the value of the ‘PATH’ variable is not used to search for the +but does not the value of the ‘PATH’ variable to search for the filename. As noted above, if a non-interactive shell is invoked with the @@ -6384,14 +6573,16 @@ conforming to the POSIX standard as well. When invoked as an interactive login shell, or as a non-interactive shell with the ‘--login’ option, it first attempts to read and execute commands from ‘/etc/profile’ and ‘~/.profile’, in that order. The -‘--noprofile’ option may be used to inhibit this behavior. When invoked -as an interactive shell with the name ‘sh’, Bash looks for the variable -‘ENV’, expands its value if it is defined, and uses the expanded value -as the name of a file to read and execute. Since a shell invoked as -‘sh’ does not attempt to read and execute commands from any other -startup files, the ‘--rcfile’ option has no effect. A non-interactive -shell invoked with the name ‘sh’ does not attempt to read any other -startup files. +‘--noprofile’ option may be used to inhibit this behavior. + + When invoked as an interactive shell with the name ‘sh’, Bash looks +for the variable ‘ENV’, expands its value if it is defined, and uses the +expanded value as the name of a file to read and execute. Since a shell +invoked as ‘sh’ does not attempt to read and execute commands from any +other startup files, the ‘--rcfile’ option has no effect. + + A non-interactive shell invoked with the name ‘sh’ does not attempt +to read any other startup files. When invoked as ‘sh’, Bash enters POSIX mode after the startup files are read. @@ -6401,8 +6592,8 @@ Invoked in POSIX mode When Bash is started in POSIX mode, as with the ‘--posix’ command line option, it follows the POSIX standard for startup files. In this mode, -interactive shells expand the ‘ENV’ variable and commands are read and -executed from the file whose name is the expanded value. No other +interactive shells expand the ‘ENV’ variable and read and execute +commands from the file whose name is the expanded value. No other startup files are read. Invoked by remote shell daemon @@ -6410,14 +6601,14 @@ Invoked by remote shell daemon Bash attempts to determine when it is being run with its standard input connected to a network connection, as when executed by the historical -remote shell daemon, usually ‘rshd’, or the secure shell daemon ‘sshd’. -If Bash determines it is being run non-interactively in this fashion, it -reads and executes commands from ‘~/.bashrc’, if that file exists and is -readable. It will not do this if invoked as ‘sh’. The ‘--norc’ option -may be used to inhibit this behavior, and the ‘--rcfile’ option will -make Bash use a different file instead of ‘~/.bashrc’, but neither -‘rshd’ nor ‘sshd’ generally invoke the shell with those options or allow -them to be specified. +and rarely-seen remote shell daemon, usually ‘rshd’, or the secure shell +daemon ‘sshd’. If Bash determines it is being run non-interactively in +this fashion, it reads and executes commands from ‘~/.bashrc’, if that +file exists and is readable. It will not do this if invoked as ‘sh’. +The ‘--norc’ option may be used to inhibit this behavior, and the +‘--rcfile’ option will make Bash use a different file instead of +‘~/.bashrc’, but neither ‘rshd’ nor ‘sshd’ generally invoke the shell +with those options or allow them to be specified. Invoked with unequal effective and real UID/GIDs ................................................ @@ -6458,7 +6649,7 @@ and error output are both connected to terminals (as determined by terminal. The ‘-s’ invocation option may be used to set the positional -parameters when an interactive shell is started. +parameters when an interactive shell starts.  File: bashref.info, Node: Is this Shell Interactive?, Next: Interactive Shell Behavior, Prev: What is an Interactive Shell?, Up: Interactive Shells @@ -6493,35 +6684,35 @@ File: bashref.info, Node: Interactive Shell Behavior, Prev: Is this Shell Inte When the shell is running interactively, it changes its behavior in several ways. - 1. Startup files are read and executed as described in *note Bash + 1. Bash reads and executes startup files as described in *note Bash Startup Files::. 2. Job Control (*note Job Control::) is enabled by default. When job control is in effect, Bash ignores the keyboard-generated job control signals ‘SIGTTIN’, ‘SIGTTOU’, and ‘SIGTSTP’. - 3. Bash expands and displays ‘PS1’ before reading the first line of a + 3. Bash executes the values of the set elements of the + ‘PROMPT_COMMAND’ array variable as commands before printing the + primary prompt, ‘$PS1’ (*note Bash Variables::). + + 4. Bash expands and displays ‘PS1’ before reading the first line of a command, and expands and displays ‘PS2’ before reading the second and subsequent lines of a multi-line command. Bash expands and displays ‘PS0’ after it reads a command but before executing it. See *note Controlling the Prompt::, for a complete list of prompt string escape sequences. - 4. Bash executes the values of the set elements of the - ‘PROMPT_COMMAND’ array variable as commands before printing the - primary prompt, ‘$PS1’ (*note Bash Variables::). - - 5. Readline (*note Command Line Editing::) is used to read commands + 5. Bash uses Readline (*note Command Line Editing::) to read commands from the user's terminal. 6. Bash inspects the value of the ‘ignoreeof’ option to ‘set -o’ instead of exiting immediately when it receives an ‘EOF’ on its standard input when reading a command (*note The Set Builtin::). - 7. Command history (*note Bash History Facilities::) and history - expansion (*note History Interaction::) are enabled by default. - Bash will save the command history to the file named by ‘$HISTFILE’ - when a shell with history enabled exits. + 7. Bash enables Command history (*note Bash History Facilities::) and + history expansion (*note History Interaction::) by default. When a + shell with history enabled exits, Bash saves the command history to + the file named by ‘$HISTFILE’. 8. Alias expansion (*note Aliases::) is performed by default. @@ -6534,16 +6725,16 @@ several ways. 11. An interactive login shell sends a ‘SIGHUP’ to all jobs on exit if the ‘huponexit’ shell option has been enabled (*note Signals::). - 12. The ‘-n’ invocation option is ignored, and ‘set -n’ has no effect - (*note The Set Builtin::). + 12. The ‘-n’ option has no effect, whether at invocation or when using + ‘set -n’ (*note The Set Builtin::). 13. Bash will check for mail periodically, depending on the values of the ‘MAIL’, ‘MAILPATH’, and ‘MAILCHECK’ shell variables (*note Bash Variables::). - 14. Expansion errors due to references to unbound shell variables - after ‘set -u’ has been enabled will not cause the shell to exit - (*note The Set Builtin::). + 14. The shell will not exit on expansion errors due to references to + unbound shell variables after ‘set -u’ has been enabled (*note The + Set Builtin::). 15. The shell will not exit on expansion errors caused by VAR being unset or null in ‘${VAR:?WORD}’ expansions (*note Shell Parameter @@ -6582,10 +6773,12 @@ Bourne Shell Builtins::). The ‘test’ and ‘[’ commands determine their behavior based on the number of arguments; see the descriptions of those commands for any other command-specific actions. - Expressions may be unary or binary, and are formed from the following -primaries. Unary expressions are often used to examine the status of a -file. There are string operators and numeric comparison operators as -well. Bash handles several filenames specially when they are used in + Expressions may be unary or binary, and are formed from the primaries +listed below. Unary expressions are often used to examine the status of +a file or shell variable. Binary operators are used for string, +numeric, and file attribute comparisons. + + Bash handles several filenames specially when they are used in expressions. If the operating system on which Bash is running provides these special files, Bash will use them; otherwise it will emulate them internally with this behavior: If the FILE argument to one of the @@ -6656,7 +6849,8 @@ link itself. True if FILE exists and is a symbolic link. ‘-N FILE’ - True if FILE exists and has been modified since it was last read. + True if FILE exists and has been modified since it was last + accessed. ‘-O FILE’ True if FILE exists and is owned by the effective user id. @@ -6730,15 +6924,16 @@ File: bashref.info, Node: Shell Arithmetic, Next: Aliases, Prev: Bash Conditi ==================== The shell allows arithmetic expressions to be evaluated, as one of the -shell expansions or by using the ‘((’ compound command, the ‘let’ -builtin, or the ‘-i’ option to the ‘declare’ builtin. +shell expansions or by using the ‘((’ compound command, the ‘let’ and +‘declare’ builtins, the arithmetic ‘for’ command, the ‘[[’ conditional +command, or the ‘-i’ option to the ‘declare’ builtin. - 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 following list of operators is grouped into -levels of equal-precedence operators. The levels are listed in order of -decreasing precedence. + Evaluation is done in the largest fixed-width integers available, +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 following list of +operators is grouped into levels of equal-precedence operators. The +levels are listed in order of decreasing precedence. ‘ID++ ID--’ variable post-increment and post-decrement @@ -6797,13 +6992,17 @@ decreasing precedence. Shell variables are allowed as operands; parameter expansion is performed 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 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 ‘integer’ attribute using ‘declare -i’ is assigned a value. A -null value evaluates to 0. A shell variable need not have its ‘integer’ -attribute turned on to be used in an expression. +parameter expansion syntax. This means you can use .Q x , where \fIx\fP +is a shell variable name, in an arithmetic expression, and the shell +will evaluate its value as an expression and use the result. A shell +variable that is null or unset evaluates to 0 when referenced by name in +an expression. + + The value of a variable is evaluated as an arithmetic expression when +it is referenced, or when a variable which has been given the ‘integer’ +attribute using ‘declare -i’ is assigned a value. A null value +evaluates to 0. A shell variable need not have its ‘integer’ 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 @@ -6817,7 +7016,7 @@ represented by the lowercase letters, the uppercase letters, ‘@’, and uppercase letters may be used interchangeably to represent numbers between 10 and 35. - Operators are evaluated in order of precedence. Sub-expressions in + Operators are evaluated in precedence order. Sub-expressions in parentheses are evaluated first and may override the precedence rules above. @@ -6848,8 +7047,8 @@ expanded a second time. This means that one may alias ‘ls’ to ‘"ls -F"’, for instance, and Bash does not try to recursively expand the replacement text. - If the last character of the alias value is a ‘blank’, then the next -command word following the alias is also checked for alias expansion. + If the last character of the alias value is a ‘blank’, then the shell +checks the next command word following the alias for alias expansion. Aliases are created and listed with the ‘alias’ command, and removed with the ‘unalias’ command. @@ -6868,14 +7067,15 @@ 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 after -that function is executed. To be safe, always put alias definitions on -a separate line, and do not use ‘alias’ in compound commands. +effect until the shell reads the next line of input. 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 +after that function is executed. To be safe, always put alias +definitions on a separate line, and do not use ‘alias’ in compound +commands. For almost every purpose, shell functions are preferred over aliases. @@ -6899,7 +7099,8 @@ to using the syntax NAME[SUBSCRIPT]=VALUE The SUBSCRIPT is treated as an arithmetic expression that must evaluate -to a number. To explicitly declare an array, use +to a number greater than or equal to zero. To explicitly declare an +array, use declare -a NAME The syntax declare -a NAME[SUBSCRIPT] @@ -6912,19 +7113,21 @@ Associative arrays are created using and ‘readonly’ builtins. Each attribute applies to all members of an array. - Arrays are assigned to using compound assignments of the form + Arrays are assigned using compound assignments of the form NAME=(VALUE1 VALUE2 ... ) where each VALUE may be of the form ‘[SUBSCRIPT]=’STRING. Indexed array -assignments do not require anything but STRING. When assigning to -indexed arrays, if the optional subscript is supplied, that index is -assigned to; otherwise the index of the element assigned is the last -index assigned to by the statement plus one. Indexing starts at zero. +assignments do not require anything but STRING. Each VALUE in the list undergoes the shell expansions described above (*note Shell Expansions::), but VALUEs that are valid variable assignments including the brackets and subscript do not undergo brace expansion and word splitting, as with individual variable assignments. + When assigning to indexed arrays, if the optional subscript is +supplied, that index is assigned to; otherwise the index of the element +assigned is the last index assigned to by the statement plus one. +Indexing starts at zero. + When assigning to an associative array, the words in a compound assignment may be either assignment statements, for which the subscript is required, or a list of words that is interpreted as a sequence of @@ -6948,8 +7151,8 @@ end of the array, and an index of -1 references the last element. using the compound assignment syntax; see *note Shell Parameters:: above. - Any element of an array may be referenced using ‘${NAME[SUBSCRIPT]}’. -The braces are required to avoid conflicts with the shell's filename + An array element is referenced using ‘${NAME[SUBSCRIPT]}’. The +braces are required to avoid conflicts with the shell's filename expansion operators. If the SUBSCRIPT is ‘@’ or ‘*’, the word expands to all members of the array NAME, unless otherwise noted in the description of a builtin or word expansion. These subscripts differ @@ -6959,16 +7162,20 @@ each array member separated by the first character of the ‘IFS’ variable, and ‘${NAME[@]}’ expands each element of NAME to a separate word. When there are no array members, ‘${NAME[@]}’ expands to nothing. If the double-quoted expansion occurs within a word, the expansion of -the first parameter is joined with the beginning part of the original -word, and the expansion of the last parameter is joined with the last -part of the original word. This is analogous to the expansion of the -special parameters ‘@’ and ‘*’. ‘${#NAME[SUBSCRIPT]}’ expands to the -length of ‘${NAME[SUBSCRIPT]}’. If SUBSCRIPT is ‘@’ or ‘*’, the -expansion is the number of elements in the array. If the SUBSCRIPT used -to reference an element of an indexed array evaluates to a number less -than zero, it is interpreted as relative to one greater than the maximum -index of the array, so negative indices count back from the end of the -array, and an index of -1 refers to the last element. +the first parameter is joined with the beginning part of the expansion +of the original word, and the expansion of the last parameter is joined +with the last part of the expansion of the original word. This is +analogous to the expansion of the special parameters ‘@’ and ‘*’. + + ‘${#NAME[SUBSCRIPT]}’ expands to the length of ‘${NAME[SUBSCRIPT]}’. +If SUBSCRIPT is ‘@’ or ‘*’, the expansion is the number of elements in +the array. + + If the SUBSCRIPT used to reference an element of an indexed array +evaluates to a number less than zero, it is interpreted as relative to +one greater than the maximum index of the array, so negative indices +count back from the end of the array, and an index of -1 refers to the +last element. Referencing an array variable without a subscript is equivalent to referencing with a subscript of 0. Any reference to a variable using a @@ -6984,21 +7191,21 @@ to the expansion of the special parameters ‘@’ and ‘*’ within double quotes. The ‘unset’ builtin is used to destroy arrays. ‘unset -NAME[SUBSCRIPT]’ destroys the array element at index SUBSCRIPT. -Negative subscripts to indexed arrays are interpreted as described -above. Unsetting the last element of an array variable does not unset -the variable. ‘unset NAME’, where NAME is an array, removes the entire +NAME[SUBSCRIPT]’ unsets the array element at index SUBSCRIPT. Negative +subscripts to indexed arrays are interpreted as described above. +Unsetting the last element of an array variable does not unset the +variable. ‘unset NAME’, where NAME is an array, removes the entire array. ‘unset NAME[SUBSCRIPT]’ behaves differently depending on the -array type when given a subscript of ‘*’ or ‘@’. When NAME is an -associative array, it removes the element with key ‘*’ or ‘@’. If NAME -is an indexed array, ‘unset’ removes all of the elements, but does not -remove the array itself. +array type when SUBSCRIPT is ‘*’ or ‘@’. When NAME is an associative +array, it removes the element with key ‘*’ or ‘@’. If NAME is an +indexed array, ‘unset’ removes all of the elements, but does not remove +the array itself. When using a variable name with a subscript as an argument to a command, such as with ‘unset’, without using the word expansion syntax -described above, the argument is subject to the shell's filename -expansion. If filename expansion is not desired, the argument should be -quoted. +described above (e.g., unset a[4]), the argument is subject to the +shell's filename expansion. Quote the argument if pathname expansion is +not desired (e.g., unset 'a[4]'). The ‘declare’, ‘local’, and ‘readonly’ builtins each accept a ‘-a’ option to specify an indexed array and a ‘-A’ option to specify an @@ -7007,7 +7214,9 @@ The ‘read’ builtin accepts a ‘-a’ option to assign a list of words read from the standard input to an array, and can read values from the standard input into individual array elements. The ‘set’ and ‘declare’ builtins display array values in a way that allows them to be reused as -input. +input. Other builtins accept array name arguments as well (e.g., +‘mapfile’); see the descriptions of individual builtins for details. +The shell provides a number of builtin array variables.  File: bashref.info, Node: The Directory Stack, Next: Controlling the Prompt, Prev: Arrays, Up: Bash Features @@ -7039,10 +7248,12 @@ File: bashref.info, Node: Directory Stack Builtins, Up: The Directory Stack ‘dirs’ dirs [-clpv] [+N | -N] - Display the list of currently remembered directories. Directories - are added to the list with the ‘pushd’ command; the ‘popd’ command - removes directories from the list. The current directory is always - the first directory in the stack. + Without options, display the list of currently remembered + directories. Directories are added to the list with the ‘pushd’ + command; the ‘popd’ command removes directories from the list. The + current directory is always the first directory in the stack. + + Options, if supplied, have the following meanings: ‘-c’ Clears the directory stack by deleting all of the elements. @@ -7067,7 +7278,7 @@ File: bashref.info, Node: Directory Stack Builtins, Up: The Directory Stack ‘popd’ popd [-n] [+N | -N] - Removes elements from the directory stack. The elements are + Remove elements from the directory stack. The elements are numbered from 0 starting at the first directory listed by ‘dirs’; that is, ‘popd’ is equivalent to ‘popd +0’. @@ -7077,14 +7288,13 @@ File: bashref.info, Node: Directory Stack Builtins, Up: The Directory Stack Arguments, if supplied, have the following meanings: ‘-n’ - Suppresses the normal change of directory when removing - directories from the stack, so that only the stack is - manipulated. + Suppress the normal change of directory when removing + directories from the stack, only manipulate the stack. ‘+N’ - Removes the Nth directory (counting from the left of the list + Remove the Nth directory (counting from the left of the list printed by ‘dirs’), starting with zero, from the stack. ‘-N’ - Removes the Nth directory (counting from the right of the list + Remove the Nth directory (counting from the right of the list printed by ‘dirs’), starting with zero, from the stack. If the top element of the directory stack is modified, and the ‘-n’ @@ -7093,8 +7303,8 @@ File: bashref.info, Node: Directory Stack Builtins, Up: The Directory Stack returns a non-zero value. Otherwise, ‘popd’ returns an unsuccessful status if an invalid - option is encountered, the directory stack is empty, or a - non-existent directory stack entry is specified. + option is specified, the directory stack is empty, or N specifies a + non-existent directory stack entry. If the ‘popd’ command is successful, Bash runs ‘dirs’ to show the final contents of the directory stack, and the return status is 0. @@ -7102,7 +7312,7 @@ File: bashref.info, Node: Directory Stack Builtins, Up: The Directory Stack ‘pushd’ pushd [-n] [+N | -N | DIR] - Adds a directory to the top of the directory stack, or rotates the + Add a directory to the top of the directory stack, or rotate the stack, making the new top of the stack the current working directory. With no arguments, ‘pushd’ exchanges the top two elements of the directory stack. @@ -7110,29 +7320,28 @@ File: bashref.info, Node: Directory Stack Builtins, Up: The Directory Stack Arguments, if supplied, have the following meanings: ‘-n’ - Suppresses the normal change of directory when rotating or - adding directories to the stack, so that only the stack is - manipulated. + Suppress the normal change of directory when rotating or + adding directories to the stack, only manipulate the stack. ‘+N’ - Brings the Nth directory (counting from the left of the list - printed by ‘dirs’, starting with zero) to the top of the list - by rotating the stack. + Rotate the stack so that the Nth directory (counting from the + left of the list printed by ‘dirs’, starting with zero) is at + the top. ‘-N’ - Brings the Nth directory (counting from the right of the list - printed by ‘dirs’, starting with zero) to the top of the list - by rotating the stack. + Rotate the stack so that the Nth directory (counting from the + right of the list printed by ‘dirs’, starting with zero) is at + the top. ‘DIR’ - Makes DIR be the top of the stack. + Make DIR be the top of the stack. After the stack has been modified, if the ‘-n’ option was not supplied, ‘pushd’ uses the ‘cd’ builtin to change to the directory at the top of the stack. If the ‘cd’ fails, ‘pushd’ returns a non-zero value. - Otherwise, if no arguments are supplied, ‘pushd’ returns 0 unless - the directory stack is empty. When rotating the directory stack, - ‘pushd’ returns 0 unless the directory stack is empty or a - non-existent directory stack element is specified. + Otherwise, if no arguments are supplied, ‘pushd’ returns zero + unless the directory stack is empty. When rotating the directory + stack, ‘pushd’ returns zero unless the directory stack is empty or + N specifies a non-existent directory stack element. If the ‘pushd’ command is successful, Bash runs ‘dirs’ to show the final contents of the directory stack. @@ -7143,13 +7352,8 @@ File: bashref.info, Node: Controlling the Prompt, Next: The Restricted Shell, 6.9 Controlling the Prompt ========================== -Bash examines the value of the array variable ‘PROMPT_COMMAND’ just -before printing each primary prompt. If any elements in -‘PROMPT_COMMAND’ are set and non-null, Bash executes each value, in -numeric order, just as if it had been typed on the command line. - - In addition, the following table describes the special characters -which can appear in the prompt variables ‘PS0’, ‘PS1’, ‘PS2’, and ‘PS4’: +In addition, the following table describes the special characters which +can appear in the prompt variables ‘PS0’, ‘PS1’, ‘PS2’, and ‘PS4’: ‘\a’ A bell character. @@ -7162,19 +7366,19 @@ which can appear in the prompt variables ‘PS0’, ‘PS1’, ‘PS2’, and ‘\e’ An escape character. ‘\h’ - The hostname, up to the first '.'. + The hostname, up to the first ‘.’. ‘\H’ The hostname. ‘\j’ The number of jobs currently managed by the shell. ‘\l’ - The basename of the shell's terminal device name. + The basename of the shell's terminal device name (e.g., "ttys0"). ‘\n’ A newline. ‘\r’ A carriage return. ‘\s’ - The name of the shell, the basename of ‘$0’ (the portion following + The name of the shell: the basename of ‘$0’ (the portion following the final slash). ‘\t’ The time, in 24-hour HH:MM:SS format. @@ -7187,9 +7391,9 @@ which can appear in the prompt variables ‘PS0’, ‘PS1’, ‘PS2’, and ‘\u’ The username of the current user. ‘\v’ - The version of Bash (e.g., 2.00) + The Bash version (e.g., 2.00). ‘\V’ - The release of Bash, version + patchlevel (e.g., 2.00.0) + The Bash release, version + patchlevel (e.g., 2.00.0). ‘\w’ The value of the ‘PWD’ shell variable (‘$PWD’), with ‘$HOME’ abbreviated with a tilde (uses the ‘$PROMPT_DIRTRIM’ variable). @@ -7231,7 +7435,7 @@ File: bashref.info, Node: The Restricted Shell, Next: Bash POSIX Mode, Prev: ========================= If Bash is started with the name ‘rbash’, or the ‘--restricted’ or ‘-r’ -option is supplied at invocation, the shell becomes restricted. A +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. A restricted shell behaves identically to ‘bash’ with the exception that the following are disallowed or not performed: @@ -7242,6 +7446,8 @@ with the exception that the following are disallowed or not performed: • Specifying command names containing slashes. • Specifying a filename containing a slash as an argument to the ‘.’ builtin command. + • Using the ‘-p’ option to the ‘.’ builtin command to specify a + search path. • Specifying a filename containing a slash as an argument to the ‘history’ builtin command. • Specifying a filename containing a slash as an argument to the ‘-p’ @@ -7677,9 +7883,10 @@ 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 -particular version (e.g., setting ‘compat32’ 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). +particular version (e.g., setting ‘compat32’ means that quoting the +right hand side 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, ‘compat32’, it may affect the behavior of other compatibility levels up to and including the current compatibility @@ -7698,13 +7905,14 @@ assigned to this variable (a decimal version number like 4.2, or an integer corresponding to the ‘compat’NN option, like 42) determines the compatibility level. - Starting with bash-4.4, Bash has begun deprecating older -compatibility levels. Eventually, the options will be removed in favor -of ‘BASH_COMPAT’. + Starting with bash-4.4, Bash began deprecating older compatibility +levels. Eventually, the options will be removed in favor of +‘BASH_COMPAT’. - Bash-5.0 was the final version for which there will be an individual -shopt option for the previous version. Users should control the -compatibility level with ‘BASH_COMPAT’. + Bash-5.0 was the final version for which there was an individual +shopt option for the previous version. ‘BASH_COMPAT’ is the only +mechanism to control the compatibility level in versions newer than +bash-5.0. The following table describes the behavior changes controlled by each compatibility level setting. The ‘compat’NN tag is used as shorthand @@ -7715,59 +7923,59 @@ and later versions, the ‘BASH_COMPAT’ variable is preferred, and it is required for bash-5.1 and later versions. ‘compat31’ - • quoting the rhs of the ‘[[’ command's regexp matching operator + • Quoting the rhs of the ‘[[’ command's regexp matching operator (=~) has no special effect ‘compat40’ - • the ‘<’ and ‘>’ operators to the ‘[[’ command do not consider + • The ‘<’ and ‘>’ operators to the ‘[[’ command do not consider the current locale when comparing strings; they use ASCII ordering. Bash versions prior to bash-4.1 use ASCII collation and strcmp(3); bash-4.1 and later use the current locale's collation sequence and strcoll(3). ‘compat41’ - • in posix mode, ‘time’ may be followed by options and still be + • In posix mode, ‘time’ may be followed by options and still be recognized as a reserved word (this is POSIX interpretation - 267) - • in posix mode, the parser requires that an even number of + 267). + • In posix mode, the parser requires that an even number of single quotes occur in the WORD 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) + (this is POSIX interpretation 221). ‘compat42’ - • the replacement string in double-quoted pattern substitution + • The replacement string in double-quoted pattern substitution does not undergo quote removal, as it does in versions after - bash-4.2 - • in posix mode, single quotes are considered special when + bash-4.2. + • In posix mode, single quotes are considered special when expanding the WORD 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 interpretation 221); in later versions, single quotes are not special within - double-quoted word expansions + double-quoted word expansions. ‘compat43’ - • word expansion errors are considered non-fatal errors that + • 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) - • when executing a shell function, the loop state + shell to exit). + • When executing a shell function, the loop state (while/until/etc.) is not reset, so ‘break’ or ‘continue’ in that function will break or continue loops in the calling context. Bash-4.4 and later reset the loop state to prevent - this + this. ‘compat44’ - • the shell sets up the values used by ‘BASH_ARGV’ and + • The shell sets up the values used by ‘BASH_ARGV’ and ‘BASH_ARGC’ so they can expand to the shell's positional - parameters even if extended debugging mode is not enabled - • a subshell inherits loops from its parent context, so ‘break’ + parameters even if extended debugging mode is not enabled. + • A subshell inherits loops from its parent context, so ‘break’ or ‘continue’ will cause the subshell to exit. Bash-5.0 and - later reset the loop state to prevent the exit - • variable assignments preceding builtins like ‘export’ and + later reset the loop state to prevent the exit. + • Variable assignments preceding builtins like ‘export’ and ‘readonly’ that set attributes continue to affect variables with the same name in the calling environment even if the - shell is not in posix mode + shell is not in posix mode. ‘compat50 (set using BASH_COMPAT)’ • Bash-5.1 changed the way ‘$RANDOM’ is generated to introduce @@ -7775,7 +7983,7 @@ required for bash-5.1 and later versions. set to 50 or lower, it reverts to the method from bash-5.0 and previous versions, so seeding the random number generator by assigning a value to ‘RANDOM’ will produce the same sequence - as in bash-5.0 + as in bash-5.0. • If the command hash table is empty, Bash versions prior to bash-5.1 printed an informational message to that effect, even when producing output that can be reused as input. Bash-5.1 @@ -7785,21 +7993,21 @@ required for bash-5.1 and later versions. • The ‘unset’ builtin will unset the array ‘a’ given an argument like ‘a[@]’. Bash-5.2 will unset an element with key ‘@’ (associative arrays) or remove all the elements without - unsetting the array (indexed arrays) - • arithmetic commands ( ((...)) ) and the expressions in an - arithmetic for statement can be expanded more than once - • expressions used as arguments to arithmetic operators in the - ‘[[’ conditional command can be expanded more than once - • the expressions in substring parameter brace expansion can be - expanded more than once - • the expressions in the $(( ... )) word expansion can be - expanded more than once - • arithmetic expressions used as indexed array subscripts can be - expanded more than once + unsetting the array (indexed arrays). + • Arithmetic commands ( ((...)) ) and the expressions in an + arithmetic for statement can be expanded more than once. + • Expressions used as arguments to arithmetic operators in the + ‘[[’ conditional command can be expanded more than once. + • The expressions in substring parameter brace expansion can be + expanded more than once. + • The expressions in the $(( ... )) word expansion can be + expanded more than once. + • Arithmetic expressions used as indexed array subscripts can be + expanded more than once. • ‘test -v’, when given an argument of ‘A[@]’, where A is an existing associative array, will return true if the array has any set elements. Bash-5.2 will look for and report on a key - named ‘@’ + named ‘@’. • the ${PARAMETER[:]=VALUE} word expansion will return VALUE, before any variable-specific transformations have been performed (e.g., converting to lowercase). Bash-5.2 will @@ -7957,7 +8165,7 @@ File: bashref.info, Node: Job Control Builtins, Next: Job Control Variables, fg [JOBSPEC] Resume the job JOBSPEC in the foreground and make it the current - job. If JOBSPEC is not supplied, the current job is used. The + job. If JOBSPEC is not supplied, resume the current job. The return status is that of the command placed into the foreground, or non-zero if run when job control is disabled or, when run with job control enabled, JOBSPEC does not specify a valid job or JOBSPEC @@ -7986,8 +8194,9 @@ File: bashref.info, Node: Job Control Builtins, Next: Job Control Variables, ‘-s’ Display only stopped jobs. - If JOBSPEC is given, output is restricted to information about that - job. If JOBSPEC is not supplied, the status of all jobs is listed. + If JOBSPEC is supplied, ‘jobs’ restricts output to information + about that job. If JOBSPEC is not supplied, ‘jobs’ lists the + status of all jobs. If the ‘-x’ option is supplied, ‘jobs’ replaces any JOBSPEC found in COMMAND or ARGUMENTS with the corresponding process group ID, @@ -8002,23 +8211,26 @@ File: bashref.info, Node: Job Control Builtins, Next: Job Control Variables, by job specification JOBSPEC or process ID PID. SIGSPEC is either a case-insensitive signal name such as ‘SIGINT’ (with or without the ‘SIG’ prefix) or a signal number; SIGNUM is a signal number. - If SIGSPEC and SIGNUM are not present, ‘SIGTERM’ is used. The ‘-l’ - option lists the signal names. If any arguments are supplied when - ‘-l’ is given, the names of the signals corresponding to the - arguments are listed, and the return status is zero. EXIT_STATUS - is a number specifying a signal number or the exit status of a - process terminated by a signal. The ‘-L’ option is equivalent to - ‘-l’. The return status is zero if at least one signal was - successfully sent, or non-zero if an error occurs or an invalid - option is encountered. + If SIGSPEC and SIGNUM are not present, ‘kill’ sends ‘SIGTERM’. + + The ‘-l’ option lists the signal names. If any arguments are + supplied when ‘-l’ is supplied, the names of the signals + corresponding to the arguments are listed, and the return status is + zero. EXIT_STATUS is a number specifying a signal number or the + exit status of a process terminated by a signal. The ‘-L’ option + is equivalent to ‘-l’. + + The return status is zero if at least one signal was successfully + sent, or non-zero if an error occurs or an invalid option is + encountered. ‘wait’ wait [-fn] [-p VARNAME] [ID ...] Wait until the child process specified by each ID exits and return the exit status of the last ID. Each ID may be a PID or job - specification JOBSPEC; if a job spec is given, ‘wait’ waits for all - processes in the job. + specification JOBSPEC; if a job spec is supplied, ‘wait’ waits for + all processes in the job. If no options or IDs are supplied, ‘wait’ waits for all running background jobs and the last-executed process substitution, if its @@ -8032,9 +8244,9 @@ File: bashref.info, Node: Job Control Builtins, Next: Job Control Variables, If the ‘-p’ option is supplied, the process or job identifier of the job for which the exit status is returned is assigned to the - variable VARNAME named by the option argument. The variable will - be unset initially, before any assignment. This is useful only - when the ‘-n’ option is supplied. + variable VARNAME named by the option argument. The variable, which + cannot be readonly, will be unset initially, before any assignment. + This is useful only when the ‘-n’ option is supplied. Supplying the ‘-f’ option, when job control is enabled, forces ‘wait’ to wait for each ID to terminate before returning its @@ -8047,26 +8259,30 @@ File: bashref.info, Node: Job Control Builtins, Next: Job Control Variables, Otherwise, the return status is the exit status of the last ID. ‘disown’ - disown [-ar] [-h] [JOBSPEC ... | PID ... ] + disown [-ar] [-h] [ID ...] + + Without options, remove each ID from the table of active jobs. + Each ID may be a PID or job specification JOBSPEC; if ID is a PID, + ‘disown’ uses the job containing PID. If the ‘-h’ option is + supplied, the job is not removed from the table, but is marked so + that ‘SIGHUP’ is not sent to the job if the shell receives a + ‘SIGHUP’. If ID is not present, and neither the ‘-a’ nor the ‘-r’ + option is supplied, ‘disown’ removes the current job. + + If no ID is supplied, the ‘-a’ option means to remove or mark all + jobs; the ‘-r’ option without an ID argument restricts operation to + running jobs. - Without options, remove each JOBSPEC from the table of active jobs. - If the ‘-h’ option is given, the job is not removed from the table, - but is marked so that ‘SIGHUP’ is not sent to the job if the shell - receives a ‘SIGHUP’. If JOBSPEC is not present, and neither the - ‘-a’ nor the ‘-r’ option is supplied, the current job is used. If - no JOBSPEC is supplied, the ‘-a’ option means to remove or mark all - jobs; the ‘-r’ option without a JOBSPEC argument restricts - operation to running jobs. + The return value is 0 unless an ID does not specify a valid job. ‘suspend’ suspend [-f] Suspend the execution of this shell until it receives a ‘SIGCONT’ signal. A login shell, or a shell without job control enabled, - cannot be suspended; the ‘-f’ 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 ‘-f’ is not - supplied. + cannot be suspended; the ‘-f’ option will 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 ‘-f’ is not supplied. When job control is not active, the ‘kill’ and ‘wait’ builtins do not accept JOBSPEC arguments. They must be supplied process IDs. @@ -8079,20 +8295,19 @@ File: bashref.info, Node: Job Control Variables, Prev: Job Control Builtins, ‘auto_resume’ This variable controls how the shell interacts with the user and - job control. If this variable exists then single word simple + job control. If this variable exists then single-word simple commands without redirections are treated as candidates for resumption of an existing job. There is no ambiguity allowed; if there is more than one job beginning with the string typed, then - the most recently accessed job will be selected. The name of a - stopped job, in this context, is the command line used to start it. - If this variable is set to the value ‘exact’, the string supplied - must match the name of a stopped job exactly; if set to - ‘substring’, the string supplied needs to match a substring of the - name of a stopped job. The ‘substring’ value provides - functionality analogous to the ‘%?’ job ID (*note Job Control - Basics::). If set to any other value, the supplied string must be - a prefix of a stopped job's name; this provides functionality - analogous to the ‘%’ job ID. + the most recently accessed job is selected. The name of a stopped + job, in this context, is the command line used to start it. If + this variable is set to the value ‘exact’, the string supplied must + match the name of a stopped job exactly; if set to ‘substring’, the + string supplied needs to match a substring of the name of a stopped + job. The ‘substring’ value provides functionality analogous to the + ‘%?’ job ID (*note Job Control Basics::). If set to any other + value, the supplied string must be a prefix of a stopped job's + name; this provides functionality analogous to the ‘%’ job ID.  File: bashref.info, Node: Command Line Editing, Next: Using History Interactively, Prev: Job Control, Up: Top @@ -8753,6 +8968,9 @@ Variable Settings display a screenful of possible completions at a time. This variable is ‘on’ by default. + ‘prefer-visible-bell’ + See ‘bell-style’. + ‘print-completions-horizontally’ If set to ‘on’, Readline will display completions with matches sorted horizontally in alphabetical order, rather than down @@ -9839,10 +10057,10 @@ File: bashref.info, Node: Programmable Completion, Next: Programmable Completi 8.6 Programmable Completion =========================== -When word completion is attempted for an argument to a command for which -a completion specification (a COMPSPEC) has been defined using the -‘complete’ builtin (*note Programmable Completion Builtins::), the -programmable completion facilities are invoked. +When the user attempts word completion for an argument to a command for +which a completion specification (a COMPSPEC) has been defined using the +‘complete’ builtin (*note Programmable Completion Builtins::), +\fBreadline\fP invokes the programmable completion facilities. First, the command name is identified. If a compspec has been defined for that command, the compspec is used to generate the list of @@ -9850,13 +10068,13 @@ possible completions for the word. If the command word is the empty string (completion attempted at the beginning of an empty line), any compspec defined with the ‘-E’ option to ‘complete’ is used. 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 ‘-D’ option to ‘complete’ is used as the default. If -there is no default compspec, Bash 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 +searched for first. If no compspec is found for the full pathname, +completion attempts 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 ‘-D’ option to ‘complete’ is used as the +default. If there is no default compspec, Bash 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 Bash completion @@ -9908,7 +10126,8 @@ generate the matches. It must put the possible completions in the Next, any command specified with the ‘-C’ option is invoked in an environment 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. +used to escape a newline, if necessary. These are added to the set of +possible completions. After all of the possible completions are generated, any filter specified with the ‘-X’ option is applied to the list. The filter is a @@ -9924,8 +10143,7 @@ characters. Finally, any prefix and suffix specified with the ‘-P’ and ‘-S’ 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. +is returned to Readline as the list of possible completions. If the previously-applied actions do not generate any matches, and the ‘-o dirnames’ option was supplied to ‘complete’ when the compspec @@ -9937,13 +10155,13 @@ 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 -default Bash completions are not attempted, and the Readline default of -filename completion is disabled. If the ‘-o bashdefault’ option was -supplied to ‘complete’ when the compspec was defined, the default Bash -completions are attempted if the compspec generates no matches. If the -‘-o default’ option was supplied to ‘complete’ when the compspec was -defined, Readline's default completion will be performed if the compspec -(and, if attempted, the default Bash completions) generate no matches. +default Bash completions and the Readline default of filename completion +are disabled. If the ‘-o bashdefault’ option was supplied to ‘complete’ +when the compspec was defined, if the compspec generates no matches, the +default Bash completions are attempted. If the ‘-o default’ option was +supplied to ‘complete’ when the compspec was defined, Readline's default +completion will be performed if the compspec (and, if attempted, the +default Bash completions) generate no matches. When a compspec indicates that directory name completion is desired, the programmable completion functions force Readline to append a slash @@ -10003,7 +10221,8 @@ happening. The matches will be generated in the same way as if the programmable completion code had generated them directly from a completion specification with the same flags. If WORD is - specified, only those completions matching WORD will be displayed. + specified, only those completions matching WORD will be displayed + or stored. The return value is true unless an invalid option is supplied, or no matches were generated. @@ -10086,8 +10305,8 @@ happening. ‘plusdirs’ After any matches defined by the compspec are generated, - directory name completion is attempted and any matches - are added to the results of the other actions. + attempt directory name completion and add any matches to + the results of the other actions. ‘-A ACTION’ The ACTION may be one of the following to generate a list of @@ -10185,26 +10404,30 @@ happening. command whose arguments are being completed, $2 is the word being completed, and $3 is the word preceding the word being completed, as described above (*note Programmable - Completion::). When it finishes, the possible completions are - retrieved from the value of the ‘COMPREPLY’ array variable. + Completion::). When ‘function’ finishes, the possible + completions are retrieved from the value of the ‘COMPREPLY’ + array variable. ‘-G GLOBPAT’ - The filename expansion pattern GLOBPAT is expanded to generate - the possible completions. + Expand the filename expansion pattern GLOBPAT to generate the + possible completions. ‘-P PREFIX’ - PREFIX is added at the beginning of each possible completion - after all other options have been applied. + Add PREFIX to the beginning of each possible completion after + all other options have been applied. ‘-S SUFFIX’ - SUFFIX is appended to each possible completion after all other + Append SUFFIX to each possible completion after all other options have been applied. ‘-W WORDLIST’ The WORDLIST is split using the characters in the ‘IFS’ - special variable as delimiters, and each resultant word is - expanded. The possible completions are the members of the - resultant list which match the word being completed. + special variable as delimiters, and each resulting word is + expanded. Shell quoting is honored within WORDLIST in order + to provide a mechanism for the words to contain shell + metacharacters or characters in the value of ‘IFS’. The + possible completions are the members of the resultant list + which match the word being completed. ‘-X FILTERPAT’ FILTERPAT is a pattern as used for filename expansion. It is @@ -10391,17 +10614,29 @@ shell stores each command in the history list prior to parameter and variable expansion but after history expansion is performed, subject to the values of the shell variables ‘HISTIGNORE’ and ‘HISTCONTROL’. - When the shell starts up, the history is initialized from the file -named by the ‘HISTFILE’ variable (default ‘~/.bash_history’). The file -named by the value of ‘HISTFILE’ is truncated, if necessary, to contain -no more than the number of lines specified by the value of the -‘HISTFILESIZE’ variable. When a shell with history enabled exits, the -last ‘$HISTSIZE’ lines are copied from the history list to the file -named by ‘$HISTFILE’. If the ‘histappend’ shell option is set (*note -Bash Builtins::), the lines are appended to the history file, otherwise -the history file is overwritten. If ‘HISTFILE’ is unset or null, or if -the history file is unwritable, the history is not saved. After saving -the history, the history file is truncated to contain no more than + When the shell starts up, Bash initializes the history list by +reading history entries from the file named by the ‘HISTFILE’ variable +(default ‘~/.bash_history’). This is referred to as the “history file”. +That file is truncated, if necessary, to contain no more than the number +of history entries specified by the value of the ‘HISTFILESIZE’ +variable. If ‘HISTFILESIZE’ 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 followed immediately by a digit are interpreted as +timestamps for the following history entry. These timestamps are +optionally displayed depending on the value of the ‘HISTTIMEFORMAT’ +variable (*note Bash Variables::). When present, history timestamps +delimit history entries, making multi-line entries possible. + + When a shell with history enabled exits, Bash copies the last +‘$HISTSIZE’ entries from the history list to the file named by +‘$HISTFILE’. If the ‘histappend’ shell option is set (*note Bash +Builtins::), Bash appends the entries to the history file, otherwise the +history file is overwritten. If ‘HISTFILE’ is unset or null, or if the +history file is unwritable, the history is not saved. After saving the +history, Bash truncates the history file to contain no more than ‘$HISTFILESIZE’ lines. If ‘HISTFILESIZE’ is unset, or set to null, a non-numeric value, or a numeric value less than zero, the history file is not truncated. @@ -10410,24 +10645,25 @@ is not truncated. with each history entry is written to the history 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. +digit are interpreted as timestamps for the following history entry. As +above, when using ‘HISTTIMEFORMAT’, the timestamps delimit multi-line +history entries. - The ‘fc’ builtin command may be used to list or edit and re-execute a -portion of the history list. The ‘history’ builtin may be used to -display or modify the history list and manipulate the history file. -When using command-line editing, search commands are available in each -editing mode that provide access to the history list (*note Commands For -History::). + The ‘fc’ builtin command will list or edit and re-execute a portion +of the history list. The ‘history’ builtin can display or modify the +history list and manipulate the history file. When using command-line +editing, search commands are available in each editing mode that provide +access to the history list (*note Commands For History::). The shell allows control over which commands are saved on the history -list. The ‘HISTCONTROL’ and ‘HISTIGNORE’ variables are used to cause -the shell to save only a subset of the commands entered. The ‘cmdhist’ -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 ‘lithist’ shell -option causes the shell to save the command with embedded newlines -instead of semicolons. The ‘shopt’ builtin is used to set these -options. *Note The Shopt Builtin::, for a description of ‘shopt’. +list. The ‘HISTCONTROL’ and ‘HISTIGNORE’ variables are used to save +only a subset of the commands entered. The ‘cmdhist’ 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 ‘lithist’ shell option modifies +‘cmdhist’ by saving the command with embedded newlines instead of +semicolons. The ‘shopt’ builtin is used to set these options. *Note +The Shopt Builtin::, for a description of ‘shopt’.  File: bashref.info, Node: Bash History Builtins, Next: History Interaction, Prev: Bash History Facilities, Up: Using History Interactively @@ -10455,25 +10691,38 @@ history file. If LAST is not specified, it is set to FIRST. If FIRST is not specified, it is set to the previous command for editing and −16 - for listing. If the ‘-l’ flag is given, the commands are listed on - standard output. The ‘-n’ flag suppresses the command numbers when - listing. The ‘-r’ flag reverses the order of the listing. - Otherwise, the editor given by ENAME is invoked on a file - containing those commands. If ENAME is not given, the value of the - following variable expansion is used: ‘${FCEDIT:-${EDITOR:-vi}}’. - This says to use the value of the ‘FCEDIT’ variable if set, or the - value of the ‘EDITOR’ variable if that is set, or ‘vi’ if neither - is set. When editing is complete, the edited commands are echoed - and executed. - - In the second form, COMMAND is re-executed after each instance of - PAT in the selected command is replaced by REP. COMMAND is + for listing. + + If the ‘-l’ flag is supplied, the commands are listed on standard + output. The ‘-n’ flag suppresses the command numbers when listing. + The ‘-r’ flag reverses the order of the listing. + + Otherwise, ‘fc’ invokes the editor named by ENAME on a file + containing those commands. If ENAME is not supplied, ‘fc’ uses the + value of the following variable expansion: + ‘${FCEDIT:-${EDITOR:-vi}}’. This says to use the value of the + ‘FCEDIT’ variable if set, or the value of the ‘EDITOR’ variable if + that is set, or ‘vi’ if neither is set. When editing is complete, + ‘fc’ reads the file of edited commands and echoes and executes + them. + + In the second form, ‘fc’ re-executes COMMAND after replacing each + instance of PAT in the selected command with REP. COMMAND is interpreted the same as FIRST above. A useful alias to use with the ‘fc’ command is ‘r='fc -s'’, so that typing ‘r cc’ runs the last command beginning with ‘cc’ and typing ‘r’ re-executes the last command (*note Aliases::). + If the first form is used, the return value is zero unless an + invalid option is encountered or FIRST or LAST specify history + lines out of range. When editing and re-executing a file of + commands, the return value is the value of the last command + executed or failure if an error occurs with the temporary file. If + the second form is used, the return status is that of the + re-executed command, unless COMMAND does not specify a valid + history entry, in which case ‘fc’ returns a non-zero status. + ‘history’ history [N] history -c @@ -10482,19 +10731,20 @@ history file. history [-anrw] [FILENAME] history -ps ARG - With no options, display the history list with line numbers. Lines + With no options, display the history list with numbers. Entries prefixed with a ‘*’ have been modified. An argument of N lists - only the last N lines. If the shell variable ‘HISTTIMEFORMAT’ is + only the last N entries. If the shell variable ‘HISTTIMEFORMAT’ is set and not null, it is used as a format string for ‘strftime’(3) to display the time stamp associated with each displayed history - entry. No intervening blank is printed between the formatted time - stamp and the history line. + entry. If ‘history’ uses ‘HISTTIMEFORMAT’, it does not print an + intervening space between the formatted time stamp and the history + entry. Options, if supplied, have the following meanings: ‘-c’ Clear the history list. This may be combined with the other - options to replace the history list completely. + options to replace the history list. ‘-d OFFSET’ Delete the history entry at position OFFSET. If OFFSET is @@ -10511,7 +10761,7 @@ history file. and END are interpreted as described above. ‘-a’ - Append the new history lines to the history file. These are + Append the "new" history lines to the history file. These are history lines entered since the beginning of the current Bash session, but not already appended to the history file. @@ -10526,7 +10776,8 @@ history file. list. ‘-w’ - Write out the current history list to the history file. + Write the current history list to the history file, + overwriting it. ‘-p’ Perform history substitution on the ARGs and display the @@ -10534,13 +10785,21 @@ history file. the history list. ‘-s’ - The ARGs are added to the end of the history list as a single - entry. - - If a FILENAME argument is supplied when any of the ‘-w’, ‘-r’, - ‘-a’, or ‘-n’ options is used, Bash uses FILENAME as the history - file. If not, then the value of the ‘HISTFILE’ variable is used. - If ‘HISTFILE’ is unset or null, these options have no effect. + Add the ARGs to the end of the history list as a single entry. + The last command in the history list is removed before adding + the ARGs. + + If a FILENAME argument is supplied with any of the ‘-w’, ‘-r’, + ‘-a’, or ‘-n’ options, Bash uses FILENAME as the history file. If + not, it uses the value of the ‘HISTFILE’ variable. If ‘HISTFILE’ + is unset or null, these options have no effect. + + If the ‘HISTTIMEFORMAT’ variable is set, ‘history’ writes the time + stamp information associated with each history entry to the history + 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 @@ -10553,9 +10812,15 @@ File: bashref.info, Node: History Interaction, Prev: Bash History Builtins, U 9.3 History Expansion ===================== -The History library provides a history expansion feature that is similar -to the history expansion provided by ‘csh’. This section describes the -syntax used to manipulate the history information. +The shell provides a history expansion feature that is similar to the +history expansion provided by ‘csh’ (also referred to as history +substitution where appropriate). This section describes the syntax used +to manipulate the history information. + + History expansion is enabled by default for interactive shells, and +can be disabled using the ‘+H’ option to the ‘set’ builtin command +(*note The Set Builtin::). Non-interactive shells do not perform +history expansion by default, but it can be enabled with ‘set -H’. History expansions introduce words from the history list into the input stream, making it easy to repeat commands, insert the arguments to @@ -10568,17 +10833,17 @@ line individually. Bash attempts to inform the history expansion functions about quoting still in effect from previous lines. History expansion takes place in two parts. The first is to -determine which line from the history list should be used during -substitution. The second is to select portions of that line for -inclusion into the current one. - - The line selected from the history is called the “event”, and the -portions of that line that are acted upon are called “words”. The line -is broken into words in the same fashion that Bash does, so that several -words surrounded by quotes are considered one word. The “event -designator” selects the event, the optional “word designator” selects -words from the event, and various optional “modifiers” are available to -manipulate the selected words. +determine which entry from the history list should be used during +substitution. The second is to select portions of that entry to include +into the current one. + + The entry selected from the history is called the “event”, and the +portions of that entry that are acted upon are called “words”. The +history entry is broken into words in the same fashion that Bash does, +so that several words surrounded by quotes are considered one word. The +“event designator” selects the event, the optional “word designator” +selects words from the event, and various optional “modifiers” are +available to manipulate the selected words. History expansions are introduced by the appearance of the history expansion character, which is ‘!’ by default. History expansions may @@ -10597,26 +10862,32 @@ history expansion character, but the history expansion 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 +following the history expansion character, even if it is unquoted: +space, tab, newline, carriage return, ‘=’, and the other shell +metacharacters. + There is a special abbreviation for substitution, active when the QUICK SUBSTITUTION character (default ‘^’) is the first character on the -line. It selects the previous history list entry, using an event -designator equivalent to ‘!!’, and substitutes one string for another in -that line. It is described below (*note Event Designators::). This is -the only history expansion that does not begin with the history -expansion character. +line. It selects the previous history entry, using an event designator +equivalent to ‘!!’, and substitutes one string for another in that +entry. It is described below (*note Event Designators::). This is the +only history expansion that does not begin with the history expansion +character. Several shell options settable with the ‘shopt’ builtin (*note The -Shopt Builtin::) may be used to tailor the behavior of history -expansion. If the ‘histverify’ shell option is enabled, and Readline is -being used, history substitutions are not immediately passed to the -shell parser. Instead, the expanded line is reloaded into the Readline -editing buffer for further modification. If Readline is being used, and -the ‘histreedit’ shell option is enabled, a failed history expansion -will be reloaded into the Readline editing buffer for correction. The -‘-p’ option to the ‘history’ builtin command may be used to see what a -history expansion will do before using it. The ‘-s’ option to the -‘history’ builtin may be used to add commands to the end of the history -list without actually executing them, so that they are available for +Shopt Builtin::) will modify history expansion behavior If the +‘histverify’ shell option is enabled, and Readline is being used, +history substitutions are not immediately passed to the shell parser. +Instead, the expanded line is reloaded into the Readline editing buffer +for further modification. If Readline is being used, and the +‘histreedit’ shell option is enabled, a failed history expansion is +reloaded into the Readline editing buffer for correction. + + The ‘-p’ option to the ‘history’ builtin command shows what a history +expansion will do before using it. The ‘-s’ option to the ‘history’ +builtin may be used to add commands to the end of the history list +without actually executing them, so that they are available for subsequent recall. This is most useful in conjunction with Readline. The shell allows control of the various characters used by the @@ -10636,12 +10907,12 @@ File: bashref.info, Node: Event Designators, Next: Word Designators, Up: Hist 9.3.1 Event Designators ----------------------- -An event designator is a reference to a command line entry in the -history list. Unless the reference is absolute, events are relative to -the current position in the history list. The event designator consists -of the portion of the word beginning with the history expansion -character, and ending with the word designator if one is present, or the -end of the word. +An event designator is a reference to an entry in the history list. +Unless the reference is absolute, events are relative to the current +position in the history list. The event designator consists of the +portion of the word beginning with the history expansion character, and +ending with the word designator if one is present, or the end of the +word. ‘!’ Start a history substitution, except when followed by a space, tab, @@ -10649,10 +10920,10 @@ end of the word. defined above (*note Definitions::). ‘!N’ - Refer to command line N. + Refer to history list entry N. ‘!-N’ - Refer to the command N lines back. + Refer to the history entry N entries back. ‘!!’ Refer to the previous command. This is a synonym for ‘!-1’. @@ -10665,8 +10936,8 @@ end of the word. Refer to the most recent command preceding the current position in the history list containing STRING. The trailing ‘?’ may be omitted if the STRING is followed immediately by a newline. If - STRING is missing, the string from the most recent search is used; - it is an error if there is no previous search string. + STRING is missing, this uses the string from the most recent + search; it is an error if there is no previous search string. ‘^STRING1^STRING2^’ Quick Substitution. Repeat the last command, replacing STRING1 @@ -10713,10 +10984,11 @@ spaces. The Nth word. ‘^’ - The first argument; that is, word 1. + The first argument: word 1. ‘$’ - The last argument. + The last argument. This is usually the last argument, but will + expand to the zeroth word if there is only one word in the line. ‘%’ The first word matched by the most recent ‘?STRING?’ search, if the @@ -10731,17 +11003,17 @@ spaces. ‘*’ All of the words, except the ‘0’th. This is a synonym for ‘1-$’. It is not an error to use ‘*’ if there is just one word in the - event; the empty string is returned in that case. + event; it expands to the empty string in this case. ‘X*’ - Abbreviates ‘X-$’ + Abbreviates ‘X-$’. ‘X-’ Abbreviates ‘X-$’ like ‘X*’, but omits the last word. If ‘x’ is missing, it defaults to 0. If a word designator is supplied without an event specification, the -previous command is used as the event. +previous command is used as the event, equivalent to ‘!!’.  File: bashref.info, Node: Modifiers, Prev: Word Designators, Up: History Interaction @@ -10775,18 +11047,18 @@ or edit, the word or words selected from the history event. ‘x’ Quote the substituted words as with ‘q’, but break into words at spaces, tabs, and newlines. The ‘q’ and ‘x’ modifiers are mutually - exclusive; the last one supplied is used. + exclusive; expansion uses the last one supplied. ‘s/OLD/NEW/’ Substitute NEW for the first occurrence of OLD in the event line. Any character may be used as the delimiter in place of ‘/’. The delimiter may be quoted in OLD and NEW with a single backslash. If - ‘&’ appears in NEW, it is replaced by OLD. A single backslash will - quote the ‘&’. If OLD is null, it is set to the last OLD - substituted, or, if no previous history substitutions took place, - the last STRING in a !?STRING‘[?]’ search. If NEW is null, each - matching OLD is deleted. The final delimiter is optional if it is - the last character on the input line. + ‘&’ appears in NEW, it is replaced with OLD. A single backslash + will quote the ‘&’ in OLD and NEW. If OLD is null, it is set to + the last OLD substituted, or, if no previous history substitutions + took place, the last STRING in a !?STRING‘[?]’ search. If NEW is + null, each matching OLD is deleted. The final delimiter is + optional if it is the last character on the input line. ‘&’ Repeat the previous substitution. @@ -10810,7 +11082,7 @@ This chapter provides basic instructions for installing Bash on the various supported platforms. The distribution supports the GNU operating systems, nearly every version of Unix, and several non-Unix systems such as BeOS and Interix. Other independent ports exist for -MS-DOS, OS/2, and Windows platforms. +Windows platforms. * Menu: @@ -10857,8 +11129,8 @@ These are installation instructions for Bash. files, some supplemental documentation, a number of example loadable builtin commands, and a set of header files for developing loadable builtins. You may need additional privileges to install - ‘bash’ to your desired destination, so ‘sudo make install’ might be - required. More information about controlling the locations where + ‘bash’ to your desired destination, which may require ‘sudo make + install’. More information about controlling the locations where ‘bash’ and other files are installed is below (*note Installation Names::). @@ -11084,7 +11356,7 @@ File: bashref.info, Node: Optional Features, Prev: Operation Controls, Up: In The Bash ‘configure’ has a number of ‘--enable-FEATURE’ options, where FEATURE indicates an optional part of Bash. There are also several ‘--with-PACKAGE’ options, where PACKAGE is something like ‘bash-malloc’ -or ‘purify’. To turn off the default use of a package, use +or ‘afs’. To turn off the default use of a package, use ‘--without-PACKAGE’. To configure Bash without a feature that is enabled by default, use ‘--disable-FEATURE’. @@ -11096,18 +11368,18 @@ the Bash ‘configure’ recognizes. ‘--with-bash-malloc’ Use the Bash version of ‘malloc’ in the directory ‘lib/malloc’. - This is not the same ‘malloc’ that appears in GNU libc, but an - older version originally derived from the 4.2 BSD ‘malloc’. This - ‘malloc’ is very fast, but wastes some space on each allocation. - This option is enabled by default. The ‘NOTES’ file contains a - list of systems for which this should be turned off, and - ‘configure’ disables this option automatically for a number of - systems. + This is not the same ‘malloc’ that appears in GNU libc, but a + custom version originally derived from the 4.2 BSD ‘malloc’. This + ‘malloc’ is very fast, but wastes some space on each allocation, + though it uses several techniques to minimize the waste. This + option is enabled by default. The ‘NOTES’ file contains a list of + systems for which this should be turned off, and ‘configure’ + disables this option automatically for a number of systems. ‘--with-curses’ - Use the curses library instead of the termcap library. This should - be supplied if your system has an inadequate or incomplete termcap - database. + Use the curses library instead of the termcap library. ‘configure’ + usually chooses this automatically, since most systems include the + termcap functions in the curses library. ‘--with-gnu-malloc’ A synonym for ‘--with-bash-malloc’. @@ -11124,7 +11396,9 @@ the Bash ‘configure’ recognizes. set to any other value, ‘configure’ treats it as a directory pathname and looks for the installed version of Readline in subdirectories of that directory (include files in PREFIX/‘include’ - and the library in PREFIX/‘lib’). + and the library in PREFIX/‘lib’). The Bash default is to link with + a static library built in the ‘lib/readline’ subdirectory of the + build directory. ‘--with-libintl-prefix[=PREFIX]’ Define this to make Bash link with a locally-installed version of @@ -11132,10 +11406,11 @@ the Bash ‘configure’ recognizes. ‘--with-libiconv-prefix[=PREFIX]’ Define this to make Bash look for libiconv in PREFIX instead of the - standard system locations. There is no version included with Bash. + standard system locations. The Bash distribution does not include + this library. ‘--enable-minimal-config’ - This produces a shell with minimal features, close to the + This produces a shell with minimal features, closer to the historical Bourne shell. There are several ‘--enable-’ options that alter how Bash is @@ -11192,6 +11467,12 @@ does not provide the necessary support. Include support for ‘csh’-like history substitution (*note History Interaction::). +‘--enable-bash-source-fullpath-default’ + Set the default value of the ‘bash_source_fullpath’ shell option + described above under *note The Shopt Builtin:: to be enabled. + This controls how filenames are assigned to the ‘BASH_SOURCE’ array + variable. + ‘--enable-brace-expansion’ Include ‘csh’-like brace expansion ( ‘b{a,b}c’ ↦ ‘bac bbc’ ). See *note Brace Expansion::, for a complete description. @@ -11208,8 +11489,9 @@ does not provide the necessary support. ‘--enable-command-timing’ Include support for recognizing ‘time’ as a reserved word and for displaying timing statistics for the pipeline following ‘time’ - (*note Pipelines::). This allows pipelines as well as shell - builtins and functions to be timed. + (*note Pipelines::). This allows timing pipelines, shell compound + commands, shell builtins, and shell functions, which an external + command cannot do easily. ‘--enable-cond-command’ Include support for the ‘[[’ conditional command. (*note @@ -11312,13 +11594,13 @@ does not provide the necessary support. version of the Readline library (*note Command Line Editing::). ‘--enable-restricted’ - Include support for a “restricted shell”. If this is enabled, - Bash, when called as ‘rbash’, enters a restricted mode. See *note - The Restricted Shell::, for a description of restricted mode. + Include support for a “restricted shell”. If this is enabled, Bash + enters a restricted mode when called as ‘rbash’. See *note The + Restricted Shell::, for a description of restricted mode. ‘--enable-select’ - Include the ‘select’ compound command, which allows the generation - of simple menus (*note Conditional Constructs::). + Include the ‘select’ compound command, which allows generation of + simple menus (*note Conditional Constructs::). ‘--enable-single-help-strings’ Store the text displayed by the ‘help’ builtin as a single string @@ -11358,8 +11640,8 @@ Appendix A Reporting Bugs Please report all bugs you find in Bash. But first, you should make sure that it really is a bug, and that it appears in the latest version -of Bash. The latest version of Bash is always available for FTP from - and from +of Bash. The latest released version of Bash is always available for +FTP from and from . Once you have determined that a bug actually exists, use the @@ -12299,100 +12581,100 @@ D.1 Index of Shell Builtin Commands * .: Bourne Shell Builtins. (line 17) * [: Bourne Shell Builtins. - (line 289) + (line 333) * alias: Bash Builtins. (line 11) * bg: Job Control Builtins. (line 7) -* bind: Bash Builtins. (line 21) +* bind: Bash Builtins. (line 24) * break: Bourne Shell Builtins. - (line 41) -* builtin: Bash Builtins. (line 124) -* caller: Bash Builtins. (line 133) + (line 47) +* builtin: Bash Builtins. (line 133) +* caller: Bash Builtins. (line 142) * cd: Bourne Shell Builtins. - (line 49) -* command: Bash Builtins. (line 150) + (line 55) +* command: Bash Builtins. (line 159) * compgen: Programmable Completion Builtins. (line 12) * complete: Programmable Completion Builtins. - (line 36) + (line 37) * compopt: Programmable Completion Builtins. - (line 248) + (line 253) * continue: Bourne Shell Builtins. - (line 94) -* declare: Bash Builtins. (line 170) + (line 102) +* declare: Bash Builtins. (line 179) * dirs: Directory Stack Builtins. (line 7) * disown: Job Control Builtins. - (line 110) -* echo: Bash Builtins. (line 273) -* enable: Bash Builtins. (line 322) + (line 114) +* echo: Bash Builtins. (line 284) +* enable: Bash Builtins. (line 337) * eval: Bourne Shell Builtins. - (line 103) -* exec: Bourne Shell Builtins. (line 111) +* exec: Bourne Shell Builtins. + (line 119) * exit: Bourne Shell Builtins. - (line 129) + (line 141) * export: Bourne Shell Builtins. - (line 136) + (line 148) * false: Bourne Shell Builtins. - (line 152) + (line 170) * fc: Bash History Builtins. (line 10) * fg: Job Control Builtins. (line 17) * getopts: Bourne Shell Builtins. - (line 157) + (line 175) * hash: Bourne Shell Builtins. - (line 201) -* help: Bash Builtins. (line 360) + (line 226) +* help: Bash Builtins. (line 374) * history: Bash History Builtins. - (line 46) + (line 59) * jobs: Job Control Builtins. (line 27) * kill: Job Control Builtins. - (line 58) -* let: Bash Builtins. (line 379) -* local: Bash Builtins. (line 387) -* logout: Bash Builtins. (line 404) -* mapfile: Bash Builtins. (line 409) + (line 59) +* let: Bash Builtins. (line 394) +* local: Bash Builtins. (line 403) +* logout: Bash Builtins. (line 428) +* mapfile: Bash Builtins. (line 433) * popd: Directory Stack Builtins. - (line 35) -* printf: Bash Builtins. (line 455) + (line 37) +* printf: Bash Builtins. (line 478) * pushd: Directory Stack Builtins. - (line 69) + (line 70) * pwd: Bourne Shell Builtins. - (line 226) -* read: Bash Builtins. (line 525) -* readarray: Bash Builtins. (line 631) + (line 258) +* read: Bash Builtins. (line 548) +* readarray: Bash Builtins. (line 659) * readonly: Bourne Shell Builtins. - (line 236) + (line 270) * return: Bourne Shell Builtins. - (line 255) + (line 295) * set: The Set Builtin. (line 11) * shift: Bourne Shell Builtins. - (line 276) + (line 320) * shopt: The Shopt Builtin. (line 9) -* source: Bash Builtins. (line 640) +* source: Bash Builtins. (line 668) * suspend: Job Control Builtins. - (line 122) + (line 131) * test: Bourne Shell Builtins. - (line 289) + (line 333) * times: Bourne Shell Builtins. - (line 391) + (line 433) * trap: Bourne Shell Builtins. - (line 397) + (line 439) * true: Bourne Shell Builtins. - (line 459) -* type: Bash Builtins. (line 645) -* typeset: Bash Builtins. (line 683) -* ulimit: Bash Builtins. (line 689) + (line 505) +* type: Bash Builtins. (line 673) +* typeset: Bash Builtins. (line 710) +* ulimit: Bash Builtins. (line 716) * umask: Bourne Shell Builtins. - (line 464) -* unalias: Bash Builtins. (line 795) + (line 510) +* unalias: Bash Builtins. (line 824) * unset: Bourne Shell Builtins. - (line 482) + (line 528) * wait: Job Control Builtins. - (line 76) + (line 80)  File: bashref.info, Node: Reserved Word Index, Next: Variable Index, Prev: Builtin Index, Up: Indexes @@ -12405,9 +12687,9 @@ D.2 Index of Shell Reserved Words * !: Pipelines. (line 9) * [[: Conditional Constructs. - (line 125) + (line 126) * ]]: Conditional Constructs. - (line 125) + (line 126) * {: Command Grouping. (line 21) * }: Command Grouping. (line 21) * case: Conditional Constructs. @@ -12429,7 +12711,7 @@ D.2 Index of Shell Reserved Words * in: Conditional Constructs. (line 28) * select: Conditional Constructs. - (line 83) + (line 84) * then: Conditional Constructs. (line 7) * time: Pipelines. (line 9) @@ -12446,51 +12728,51 @@ D.3 Parameter and Variable Index * Menu: * _: Bash Variables. (line 13) -* -: Special Parameters. (line 46) -* !: Special Parameters. (line 55) -* ?: Special Parameters. (line 42) -* @: Special Parameters. (line 22) -* *: Special Parameters. (line 9) -* #: Special Parameters. (line 39) -* $: Special Parameters. (line 51) +* -: Special Parameters. (line 48) +* !: Special Parameters. (line 57) +* ?: Special Parameters. (line 44) +* @: Special Parameters. (line 23) +* *: Special Parameters. (line 10) +* #: Special Parameters. (line 41) +* $: Special Parameters. (line 53) * $_: Bash Variables. (line 14) -* $-: Special Parameters. (line 47) -* $!: Special Parameters. (line 56) -* $?: Special Parameters. (line 43) -* $@: Special Parameters. (line 23) -* $*: Special Parameters. (line 10) -* $#: Special Parameters. (line 40) -* $$: Special Parameters. (line 52) -* $0: Special Parameters. (line 61) -* 0: Special Parameters. (line 60) +* $-: Special Parameters. (line 49) +* $!: Special Parameters. (line 58) +* $?: Special Parameters. (line 45) +* $@: Special Parameters. (line 24) +* $*: Special Parameters. (line 11) +* $#: Special Parameters. (line 42) +* $$: Special Parameters. (line 54) +* $0: Special Parameters. (line 63) +* 0: Special Parameters. (line 62) * active-region-end-color: Readline Init File Syntax. (line 51) * active-region-start-color: Readline Init File Syntax. (line 38) * auto_resume: Job Control Variables. (line 6) -* BASH: Bash Variables. (line 23) -* BASH_ALIASES: Bash Variables. (line 42) -* BASH_ARGC: Bash Variables. (line 51) -* BASH_ARGV: Bash Variables. (line 65) -* BASH_ARGV0: Bash Variables. (line 78) -* BASH_CMDS: Bash Variables. (line 86) -* BASH_COMMAND: Bash Variables. (line 95) -* BASH_COMPAT: Bash Variables. (line 102) -* BASH_ENV: Bash Variables. (line 118) -* BASH_EXECUTION_STRING: Bash Variables. (line 124) -* BASH_LINENO: Bash Variables. (line 127) -* BASH_LOADABLES_PATH: Bash Variables. (line 137) -* BASH_MONOSECONDS: Bash Variables. (line 141) -* BASH_REMATCH: Bash Variables. (line 148) -* BASH_SOURCE: Bash Variables. (line 156) -* BASH_SUBSHELL: Bash Variables. (line 164) -* BASH_TRAPSIG: Bash Variables. (line 170) -* BASH_VERSINFO: Bash Variables. (line 176) -* BASH_VERSION: Bash Variables. (line 199) -* BASH_XTRACEFD: Bash Variables. (line 202) -* BASHOPTS: Bash Variables. (line 26) -* BASHPID: Bash Variables. (line 35) +* BASH: Bash Variables. (line 24) +* BASH_ALIASES: Bash Variables. (line 43) +* BASH_ARGC: Bash Variables. (line 52) +* BASH_ARGV: Bash Variables. (line 66) +* BASH_ARGV0: Bash Variables. (line 79) +* BASH_CMDS: Bash Variables. (line 87) +* BASH_COMMAND: Bash Variables. (line 96) +* BASH_COMPAT: Bash Variables. (line 103) +* BASH_ENV: Bash Variables. (line 119) +* BASH_EXECUTION_STRING: Bash Variables. (line 125) +* BASH_LINENO: Bash Variables. (line 128) +* BASH_LOADABLES_PATH: Bash Variables. (line 138) +* BASH_MONOSECONDS: Bash Variables. (line 142) +* BASH_REMATCH: Bash Variables. (line 149) +* BASH_SOURCE: Bash Variables. (line 157) +* BASH_SUBSHELL: Bash Variables. (line 165) +* BASH_TRAPSIG: Bash Variables. (line 171) +* BASH_VERSINFO: Bash Variables. (line 177) +* BASH_VERSION: Bash Variables. (line 200) +* BASH_XTRACEFD: Bash Variables. (line 204) +* BASHOPTS: Bash Variables. (line 27) +* BASHPID: Bash Variables. (line 36) * bell-style: Readline Init File Syntax. (line 64) * bind-tty-special-chars: Readline Init File Syntax. @@ -12499,21 +12781,21 @@ D.3 Parameter and Variable Index (line 79) * CDPATH: Bourne Shell Variables. (line 9) -* CHILD_MAX: Bash Variables. (line 213) +* CHILD_MAX: Bash Variables. (line 215) * colored-completion-prefix: Readline Init File Syntax. (line 84) * colored-stats: Readline Init File Syntax. (line 94) -* COLUMNS: Bash Variables. (line 220) +* COLUMNS: Bash Variables. (line 222) * comment-begin: Readline Init File Syntax. (line 100) -* COMP_CWORD: Bash Variables. (line 226) -* COMP_KEY: Bash Variables. (line 255) -* COMP_LINE: Bash Variables. (line 232) -* COMP_POINT: Bash Variables. (line 237) -* COMP_TYPE: Bash Variables. (line 245) -* COMP_WORDBREAKS: Bash Variables. (line 259) -* COMP_WORDS: Bash Variables. (line 265) +* COMP_CWORD: Bash Variables. (line 228) +* COMP_KEY: Bash Variables. (line 234) +* COMP_LINE: Bash Variables. (line 240) +* COMP_POINT: Bash Variables. (line 245) +* COMP_TYPE: Bash Variables. (line 253) +* COMP_WORDBREAKS: Bash Variables. (line 263) +* COMP_WORDS: Bash Variables. (line 269) * completion-display-width: Readline Init File Syntax. (line 105) * completion-ignore-case: Readline Init File Syntax. @@ -12524,18 +12806,18 @@ D.3 Parameter and Variable Index (line 123) * completion-query-items: Readline Init File Syntax. (line 130) -* COMPREPLY: Bash Variables. (line 272) +* COMPREPLY: Bash Variables. (line 276) * convert-meta: Readline Init File Syntax. (line 141) -* COPROC: Bash Variables. (line 278) -* DIRSTACK: Bash Variables. (line 282) +* COPROC: Bash Variables. (line 282) +* DIRSTACK: Bash Variables. (line 286) * disable-completion: Readline Init File Syntax. (line 153) * echo-control-characters: Readline Init File Syntax. (line 158) * editing-mode: Readline Init File Syntax. (line 163) -* EMACS: Bash Variables. (line 292) +* EMACS: Bash Variables. (line 296) * emacs-mode-string: Readline Init File Syntax. (line 169) * enable-active-region: Readline Init File Syntax. @@ -12544,72 +12826,72 @@ D.3 Parameter and Variable Index (line 192) * enable-keypad: Readline Init File Syntax. (line 201) -* ENV: Bash Variables. (line 297) -* EPOCHREALTIME: Bash Variables. (line 302) -* EPOCHSECONDS: Bash Variables. (line 310) -* EUID: Bash Variables. (line 317) -* EXECIGNORE: Bash Variables. (line 321) +* ENV: Bash Variables. (line 301) +* EPOCHREALTIME: Bash Variables. (line 306) +* EPOCHSECONDS: Bash Variables. (line 314) +* EUID: Bash Variables. (line 321) +* EXECIGNORE: Bash Variables. (line 325) * expand-tilde: Readline Init File Syntax. (line 216) -* FCEDIT: Bash Variables. (line 334) -* FIGNORE: Bash Variables. (line 338) +* FCEDIT: Bash Variables. (line 337) +* FIGNORE: Bash Variables. (line 340) * force-meta-prefix: Readline Init File Syntax. (line 220) -* FUNCNAME: Bash Variables. (line 344) -* FUNCNEST: Bash Variables. (line 361) -* GLOBIGNORE: Bash Variables. (line 366) -* GLOBSORT: Bash Variables. (line 373) -* GROUPS: Bash Variables. (line 408) -* histchars: Bash Variables. (line 414) -* HISTCMD: Bash Variables. (line 429) -* HISTCONTROL: Bash Variables. (line 435) -* HISTFILE: Bash Variables. (line 451) -* HISTFILESIZE: Bash Variables. (line 456) -* HISTIGNORE: Bash Variables. (line 467) +* FUNCNAME: Bash Variables. (line 346) +* FUNCNEST: Bash Variables. (line 363) +* GLOBIGNORE: Bash Variables. (line 368) +* GLOBSORT: Bash Variables. (line 375) +* GROUPS: Bash Variables. (line 410) +* histchars: Bash Variables. (line 416) +* HISTCMD: Bash Variables. (line 431) +* HISTCONTROL: Bash Variables. (line 437) +* HISTFILE: Bash Variables. (line 455) +* HISTFILESIZE: Bash Variables. (line 461) +* HISTIGNORE: Bash Variables. (line 472) * history-preserve-point: Readline Init File Syntax. (line 233) * history-size: Readline Init File Syntax. (line 239) -* HISTSIZE: Bash Variables. (line 489) -* HISTTIMEFORMAT: Bash Variables. (line 496) +* HISTSIZE: Bash Variables. (line 496) +* HISTTIMEFORMAT: Bash Variables. (line 503) * HOME: Bourne Shell Variables. (line 13) * horizontal-scroll-mode: Readline Init File Syntax. (line 248) -* HOSTFILE: Bash Variables. (line 505) -* HOSTNAME: Bash Variables. (line 516) -* HOSTTYPE: Bash Variables. (line 519) +* HOSTFILE: Bash Variables. (line 512) +* HOSTNAME: Bash Variables. (line 523) +* HOSTTYPE: Bash Variables. (line 526) * IFS: Bourne Shell Variables. (line 18) -* IGNOREEOF: Bash Variables. (line 522) +* IGNOREEOF: Bash Variables. (line 529) * input-meta: Readline Init File Syntax. (line 257) -* INPUTRC: Bash Variables. (line 532) -* INSIDE_EMACS: Bash Variables. (line 536) +* INPUTRC: Bash Variables. (line 538) +* INSIDE_EMACS: Bash Variables. (line 542) * isearch-terminators: Readline Init File Syntax. (line 268) * keymap: Readline Init File Syntax. (line 275) * LANG: Creating Internationalized Scripts. (line 51) -* LANG <1>: Bash Variables. (line 542) -* LC_ALL: Bash Variables. (line 546) -* LC_COLLATE: Bash Variables. (line 550) -* LC_CTYPE: Bash Variables. (line 557) +* LANG <1>: Bash Variables. (line 548) +* LC_ALL: Bash Variables. (line 552) +* LC_COLLATE: Bash Variables. (line 556) +* LC_CTYPE: Bash Variables. (line 563) * LC_MESSAGES: Creating Internationalized Scripts. (line 51) -* LC_MESSAGES <1>: Bash Variables. (line 562) -* LC_NUMERIC: Bash Variables. (line 566) -* LC_TIME: Bash Variables. (line 570) -* LINENO: Bash Variables. (line 574) -* LINES: Bash Variables. (line 579) -* MACHTYPE: Bash Variables. (line 585) +* LC_MESSAGES <1>: Bash Variables. (line 568) +* LC_NUMERIC: Bash Variables. (line 572) +* LC_TIME: Bash Variables. (line 576) +* LINENO: Bash Variables. (line 580) +* LINES: Bash Variables. (line 587) +* MACHTYPE: Bash Variables. (line 593) * MAIL: Bourne Shell Variables. - (line 22) -* MAILCHECK: Bash Variables. (line 589) + (line 24) +* MAILCHECK: Bash Variables. (line 597) * MAILPATH: Bourne Shell Variables. - (line 27) -* MAPFILE: Bash Variables. (line 597) + (line 29) +* MAPFILE: Bash Variables. (line 605) * mark-modified-lines: Readline Init File Syntax. (line 305) * mark-symlinked-directories: Readline Init File Syntax. @@ -12620,69 +12902,69 @@ D.3 Parameter and Variable Index (line 322) * meta-flag: Readline Init File Syntax. (line 257) -* OLDPWD: Bash Variables. (line 601) +* OLDPWD: Bash Variables. (line 609) * OPTARG: Bourne Shell Variables. - (line 34) -* OPTERR: Bash Variables. (line 604) + (line 36) +* OPTERR: Bash Variables. (line 612) * OPTIND: Bourne Shell Variables. - (line 38) -* OSTYPE: Bash Variables. (line 608) + (line 40) +* OSTYPE: Bash Variables. (line 617) * output-meta: Readline Init File Syntax. (line 327) * page-completions: Readline Init File Syntax. (line 336) * PATH: Bourne Shell Variables. - (line 42) -* PIPESTATUS: Bash Variables. (line 611) -* POSIXLY_CORRECT: Bash Variables. (line 617) -* PPID: Bash Variables. (line 627) -* PROMPT_COMMAND: Bash Variables. (line 631) -* PROMPT_DIRTRIM: Bash Variables. (line 637) -* PS0: Bash Variables. (line 643) + (line 44) +* PIPESTATUS: Bash Variables. (line 620) +* POSIXLY_CORRECT: Bash Variables. (line 626) +* PPID: Bash Variables. (line 636) +* PROMPT_COMMAND: Bash Variables. (line 640) +* PROMPT_DIRTRIM: Bash Variables. (line 646) +* PS0: Bash Variables. (line 652) * PS1: Bourne Shell Variables. - (line 48) -* PS2: Bourne Shell Variables. (line 53) -* PS3: Bash Variables. (line 648) -* PS4: Bash Variables. (line 653) -* PWD: Bash Variables. (line 661) -* RANDOM: Bash Variables. (line 664) -* READLINE_ARGUMENT: Bash Variables. (line 670) -* READLINE_LINE: Bash Variables. (line 674) -* READLINE_MARK: Bash Variables. (line 678) -* READLINE_POINT: Bash Variables. (line 684) -* REPLY: Bash Variables. (line 688) +* PS2: Bourne Shell Variables. + (line 58) +* PS3: Bash Variables. (line 657) +* PS4: Bash Variables. (line 662) +* PWD: Bash Variables. (line 670) +* RANDOM: Bash Variables. (line 673) +* READLINE_ARGUMENT: Bash Variables. (line 681) +* READLINE_LINE: Bash Variables. (line 685) +* READLINE_MARK: Bash Variables. (line 689) +* READLINE_POINT: Bash Variables. (line 695) +* REPLY: Bash Variables. (line 699) * revert-all-at-newline: Readline Init File Syntax. - (line 346) + (line 349) * search-ignore-case: Readline Init File Syntax. - (line 353) -* SECONDS: Bash Variables. (line 691) -* SHELL: Bash Variables. (line 701) -* SHELLOPTS: Bash Variables. (line 706) -* SHLVL: Bash Variables. (line 715) + (line 356) +* SECONDS: Bash Variables. (line 703) +* SHELL: Bash Variables. (line 713) +* SHELLOPTS: Bash Variables. (line 718) +* SHLVL: Bash Variables. (line 727) * show-all-if-ambiguous: Readline Init File Syntax. - (line 358) + (line 361) * show-all-if-unmodified: Readline Init File Syntax. - (line 364) + (line 367) * show-mode-in-prompt: Readline Init File Syntax. - (line 373) + (line 376) * skip-completed-text: Readline Init File Syntax. - (line 379) -* SRANDOM: Bash Variables. (line 720) + (line 382) +* SRANDOM: Bash Variables. (line 732) * TEXTDOMAIN: Creating Internationalized Scripts. (line 51) * TEXTDOMAINDIR: Creating Internationalized Scripts. (line 51) -* TIMEFORMAT: Bash Variables. (line 729) -* TMOUT: Bash Variables. (line 767) -* TMPDIR: Bash Variables. (line 779) -* UID: Bash Variables. (line 783) +* TIMEFORMAT: Bash Variables. (line 741) +* TMOUT: Bash Variables. (line 780) +* TMPDIR: Bash Variables. (line 792) +* UID: Bash Variables. (line 796) * vi-cmd-mode-string: Readline Init File Syntax. - (line 392) + (line 395) * vi-ins-mode-string: Readline Init File Syntax. - (line 403) + (line 406) * visible-stats: Readline Init File Syntax. - (line 414) + (line 417)  File: bashref.info, Node: Function Index, Next: Concept Index, Prev: Variable Index, Up: Indexes @@ -12904,14 +13186,14 @@ D.5 Concept Index * arithmetic evaluation: Shell Arithmetic. (line 6) * arithmetic expansion: Arithmetic Expansion. (line 6) -* arithmetic operators: Shell Arithmetic. (line 17) +* arithmetic operators: Shell Arithmetic. (line 18) * arithmetic, shell: Shell Arithmetic. (line 6) * arrays: Arrays. (line 6) * background: Job Control Basics. (line 6) * Bash configuration: Basic Installation. (line 6) * Bash installation: Basic Installation. (line 6) -* binary arithmetic operators: Shell Arithmetic. (line 17) -* bitwise arithmetic operators: Shell Arithmetic. (line 17) +* binary arithmetic operators: Shell Arithmetic. (line 18) +* bitwise arithmetic operators: Shell Arithmetic. (line 18) * Bourne shell: Basic Shell Features. (line 6) * brace expansion: Brace Expansion. (line 6) @@ -12945,11 +13227,12 @@ D.5 Concept Index (line 6) * completion builtins: Programmable Completion Builtins. (line 6) -* conditional arithmetic operator: Shell Arithmetic. (line 17) +* conditional arithmetic operator: Shell Arithmetic. (line 18) * configuration: Basic Installation. (line 6) * control operator: Definitions. (line 21) * coprocess: Coprocesses. (line 6) * directory stack: The Directory Stack. (line 6) +* dollar-single quote quoting: ANSI-C Quoting. (line 6) * editing command lines: Readline Bare Essentials. (line 6) * environment: Environment. (line 6) @@ -13033,7 +13316,7 @@ D.5 Concept Index * quoting: Quoting. (line 6) * quoting, ANSI: ANSI-C Quoting. (line 6) * Readline, how to use: Job Control Variables. - (line 23) + (line 22) * redirection: Redirections. (line 6) * reserved word: Definitions. (line 70) * reserved words: Reserved Words. (line 6) @@ -13056,7 +13339,7 @@ D.5 Concept Index * tilde expansion: Tilde Expansion. (line 6) * token: Definitions. (line 86) * translation, native languages: Locale Translation. (line 6) -* unary arithmetic operators: Shell Arithmetic. (line 17) +* unary arithmetic operators: Shell Arithmetic. (line 18) * variable, shell: Shell Parameters. (line 6) * variables, readline: Readline Init File Syntax. (line 37) @@ -13068,138 +13351,138 @@ D.5 Concept Index  Tag Table: -Node: Top904 -Node: Introduction2848 -Node: What is Bash?3064 -Node: What is a shell?4208 -Node: Definitions6790 -Node: Basic Shell Features9969 -Node: Shell Syntax11192 -Node: Shell Operation12222 -Node: Quoting13523 -Node: Escape Character14839 -Node: Single Quotes15340 -Node: Double Quotes15692 -Node: ANSI-C Quoting17038 -Node: Locale Translation18426 -Node: Creating Internationalized Scripts19773 -Node: Comments23974 -Node: Shell Commands24612 -Node: Reserved Words25554 -Node: Simple Commands26422 -Node: Pipelines27084 -Node: Lists30150 -Node: Compound Commands32025 -Node: Looping Constructs33037 -Node: Conditional Constructs35584 -Node: Command Grouping50448 -Node: Coprocesses51938 -Node: GNU Parallel54637 -Node: Shell Functions55558 -Node: Shell Parameters63667 -Node: Positional Parameters68203 -Node: Special Parameters69141 -Node: Shell Expansions72454 -Node: Brace Expansion74646 -Node: Tilde Expansion77312 -Node: Shell Parameter Expansion80081 -Node: Command Substitution99191 -Node: Arithmetic Expansion102727 -Node: Process Substitution103695 -Node: Word Splitting104835 -Node: Filename Expansion106979 -Node: Pattern Matching110078 -Node: Quote Removal115314 -Node: Redirections115621 -Node: Executing Commands125433 -Node: Simple Command Expansion126103 -Node: Command Search and Execution128217 -Node: Command Execution Environment130628 -Node: Environment133940 -Node: Exit Status135647 -Node: Signals137435 -Node: Shell Scripts141052 -Node: Shell Builtin Commands144147 -Node: Bourne Shell Builtins146261 -Node: Bash Builtins171034 -Node: Modifying Shell Behavior206136 -Node: The Set Builtin206481 -Node: The Shopt Builtin218067 -Node: Special Builtins235122 -Node: Shell Variables236114 -Node: Bourne Shell Variables236551 -Node: Bash Variables238747 -Node: Bash Features275945 -Node: Invoking Bash276962 -Node: Bash Startup Files283364 -Node: Interactive Shells288670 -Node: What is an Interactive Shell?289081 -Node: Is this Shell Interactive?289750 -Node: Interactive Shell Behavior290577 -Node: Bash Conditional Expressions294334 -Node: Shell Arithmetic299511 -Node: Aliases302596 -Node: Arrays305554 -Node: The Directory Stack312356 -Node: Directory Stack Builtins313156 -Node: Controlling the Prompt317608 -Node: The Restricted Shell320749 -Node: Bash POSIX Mode323539 -Node: Shell Compatibility Mode341801 -Node: Job Control350755 -Node: Job Control Basics351215 -Node: Job Control Builtins356526 -Node: Job Control Variables362473 -Node: Command Line Editing363653 -Node: Introduction and Notation365360 -Node: Readline Interaction367458 -Node: Readline Bare Essentials368649 -Node: Readline Movement Commands370470 -Node: Readline Killing Commands371470 -Node: Readline Arguments373451 -Node: Searching374511 -Node: Readline Init File376743 -Node: Readline Init File Syntax378028 -Node: Conditional Init Constructs404571 -Node: Sample Init File408939 -Node: Bindable Readline Commands412063 -Node: Commands For Moving413291 -Node: Commands For History415521 -Node: Commands For Text420729 -Node: Commands For Killing424866 -Node: Numeric Arguments427670 -Node: Commands For Completion428825 -Node: Keyboard Macros433144 -Node: Miscellaneous Commands433848 -Node: Readline vi Mode440505 -Node: Programmable Completion441460 -Node: Programmable Completion Builtins449420 -Node: A Programmable Completion Example460989 -Node: Using History Interactively466337 -Node: Bash History Facilities467021 -Node: Bash History Builtins470136 -Node: History Interaction475382 -Node: Event Designators479710 -Node: Word Designators481296 -Node: Modifiers483451 -Node: Installing Bash485363 -Node: Basic Installation486500 -Node: Compilers and Options490382 -Node: Compiling For Multiple Architectures491135 -Node: Installation Names492887 -Node: Specifying the System Type495124 -Node: Sharing Defaults495873 -Node: Operation Controls496590 -Node: Optional Features497612 -Node: Reporting Bugs509417 -Node: Major Differences From The Bourne Shell510769 -Node: GNU Free Documentation License530507 -Node: Indexes555687 -Node: Builtin Index556141 -Node: Reserved Word Index563242 -Node: Variable Index565690 -Node: Function Index582965 -Node: Concept Index596824 +Node: Top906 +Node: Introduction2852 +Node: What is Bash?3068 +Node: What is a shell?4204 +Node: Definitions6798 +Node: Basic Shell Features9977 +Node: Shell Syntax11200 +Node: Shell Operation12230 +Node: Quoting13531 +Node: Escape Character14872 +Node: Single Quotes15410 +Node: Double Quotes15762 +Node: ANSI-C Quoting17110 +Node: Locale Translation18498 +Node: Creating Internationalized Scripts19908 +Node: Comments24109 +Node: Shell Commands24879 +Node: Reserved Words25821 +Node: Simple Commands26689 +Node: Pipelines27354 +Node: Lists30584 +Node: Compound Commands32459 +Node: Looping Constructs33471 +Node: Conditional Constructs35993 +Node: Command Grouping50928 +Node: Coprocesses52423 +Node: GNU Parallel55112 +Node: Shell Functions56033 +Node: Shell Parameters64513 +Node: Positional Parameters69254 +Node: Special Parameters70347 +Node: Shell Expansions73811 +Node: Brace Expansion76003 +Node: Tilde Expansion78721 +Node: Shell Parameter Expansion81666 +Node: Command Substitution101441 +Node: Arithmetic Expansion104977 +Node: Process Substitution105993 +Node: Word Splitting107112 +Node: Filename Expansion109212 +Node: Pattern Matching112483 +Node: Quote Removal117814 +Node: Redirections118121 +Node: Executing Commands128339 +Node: Simple Command Expansion129009 +Node: Command Search and Execution131120 +Node: Command Execution Environment133567 +Node: Environment137003 +Node: Exit Status138909 +Node: Signals140970 +Node: Shell Scripts144871 +Node: Shell Builtin Commands148172 +Node: Bourne Shell Builtins150286 +Node: Bash Builtins176588 +Node: Modifying Shell Behavior213033 +Node: The Set Builtin213378 +Node: The Shopt Builtin225317 +Node: Special Builtins242366 +Node: Shell Variables243358 +Node: Bourne Shell Variables243795 +Node: Bash Variables246306 +Node: Bash Features284566 +Node: Invoking Bash285583 +Node: Bash Startup Files292012 +Node: Interactive Shells297328 +Node: What is an Interactive Shell?297739 +Node: Is this Shell Interactive?298404 +Node: Interactive Shell Behavior299231 +Node: Bash Conditional Expressions302995 +Node: Shell Arithmetic308215 +Node: Aliases311557 +Node: Arrays314522 +Node: The Directory Stack321588 +Node: Directory Stack Builtins322388 +Node: Controlling the Prompt326836 +Node: The Restricted Shell329723 +Node: Bash POSIX Mode332608 +Node: Shell Compatibility Mode350870 +Node: Job Control359884 +Node: Job Control Basics360344 +Node: Job Control Builtins365655 +Node: Job Control Variables371826 +Node: Command Line Editing372997 +Node: Introduction and Notation374704 +Node: Readline Interaction376802 +Node: Readline Bare Essentials377993 +Node: Readline Movement Commands379814 +Node: Readline Killing Commands380814 +Node: Readline Arguments382795 +Node: Searching383855 +Node: Readline Init File386087 +Node: Readline Init File Syntax387372 +Node: Conditional Init Constructs413979 +Node: Sample Init File418347 +Node: Bindable Readline Commands421471 +Node: Commands For Moving422699 +Node: Commands For History424929 +Node: Commands For Text430137 +Node: Commands For Killing434274 +Node: Numeric Arguments437078 +Node: Commands For Completion438233 +Node: Keyboard Macros442552 +Node: Miscellaneous Commands443256 +Node: Readline vi Mode449913 +Node: Programmable Completion450868 +Node: Programmable Completion Builtins458862 +Node: A Programmable Completion Example470633 +Node: Using History Interactively475981 +Node: Bash History Facilities476665 +Node: Bash History Builtins480454 +Node: History Interaction486836 +Node: Event Designators491690 +Node: Word Designators493279 +Node: Modifiers495567 +Node: Installing Bash497503 +Node: Basic Installation498622 +Node: Compilers and Options502501 +Node: Compiling For Multiple Architectures503254 +Node: Installation Names505006 +Node: Specifying the System Type507243 +Node: Sharing Defaults507992 +Node: Operation Controls508709 +Node: Optional Features509731 +Node: Reporting Bugs522114 +Node: Major Differences From The Bourne Shell523475 +Node: GNU Free Documentation License543213 +Node: Indexes568393 +Node: Builtin Index568847 +Node: Reserved Word Index575948 +Node: Variable Index578396 +Node: Function Index595671 +Node: Concept Index609530  End Tag Table diff --git a/doc/bashref.log b/doc/bashref.log index 700ffa7be..8af76dd53 100644 --- a/doc/bashref.log +++ b/doc/bashref.log @@ -1,12 +1,12 @@ -This is pdfTeX, Version 3.141592653-2.6-1.40.26 (TeX Live 2024/MacPorts 2024.70613_0) (preloaded format=pdfetex 2024.4.9) 16 AUG 2024 17:10 +This is pdfTeX, Version 3.141592653-2.6-1.40.26 (TeX Live 2024/MacPorts 2024.70613_0) (preloaded format=pdfetex 2024.4.9) 7 OCT 2024 17:23 entering extended mode restricted \write18 enabled. file:line:error style messages enabled. %&-line parsing enabled. -**\input /usr/local/src/bash/bash-20240812/doc/bashref.texi \input /usr/local/s -rc/bash/bash-20240812/doc/bashref.texi -(/usr/local/src/bash/bash-20240812/doc/bashref.texi -(/usr/local/src/bash/bash-20240812/doc/texinfo.tex +**\input /usr/local/src/bash/bash-20240927/doc/bashref.texi \input /usr/local/s +rc/bash/bash-20240927/doc/bashref.texi +(/usr/local/src/bash/bash-20240927/doc/bashref.texi +(/usr/local/src/bash/bash-20240927/doc/texinfo.tex Loading texinfo [version 2015-11-22.14]: \outerhsize=\dimen16 \outervsize=\dimen17 @@ -162,15 +162,15 @@ This is `epsf.tex' v2.7.4 <14 February 2011> texinfo.tex: doing @include of version.texi -(/usr/local/src/bash/bash-20240812/doc/version.texi) [1{/opt/local/var/db/texmf +(/usr/local/src/bash/bash-20240927/doc/version.texi) [1{/opt/local/var/db/texmf /fonts/map/pdftex/updmap/pdftex.map}] [2] -(/usr/local/build/bash/bash-20240812/doc/bashref.toc [-1] [-2] [-3]) [-4] -(/usr/local/build/bash/bash-20240812/doc/bashref.toc) -(/usr/local/build/bash/bash-20240812/doc/bashref.toc) Chapter 1 +(/usr/local/build/bash/bash-20240927/doc/bashref.toc [-1] [-2] [-3]) [-4] +(/usr/local/build/bash/bash-20240927/doc/bashref.toc) +(/usr/local/build/bash/bash-20240927/doc/bashref.toc) Chapter 1 \openout0 = `bashref.toc'. -(/usr/local/build/bash/bash-20240812/doc/bashref.aux) +(/usr/local/build/bash/bash-20240927/doc/bashref.aux) \openout1 = `bashref.aux'. Chapter 2 [1] [2] @@ -183,7 +183,7 @@ texinfo.tex: doing @include of version.texi \openout3 = `bashref.vr'. [8] -Overfull \hbox (3.12749pt too wide) in paragraph at lines 723--724 +Overfull \hbox (3.12749pt too wide) in paragraph at lines 736--737 @texttt coproc[]| @hbox(9.34993+3.85005)x43.36464 @@ -195,7 +195,7 @@ Overfull \hbox (3.12749pt too wide) in paragraph at lines 723--724 .etc. -Overfull \hbox (3.12749pt too wide) in paragraph at lines 724--724 +Overfull \hbox (3.12749pt too wide) in paragraph at lines 737--737 @texttt select[]| @hbox(9.34993+3.85005)x43.36464 @@ -207,7 +207,7 @@ Overfull \hbox (3.12749pt too wide) in paragraph at lines 724--724 .etc. -Overfull \hbox (5.95723pt too wide) in paragraph at lines 724--725 +Overfull \hbox (5.95723pt too wide) in paragraph at lines 737--738 @texttt function[]| @hbox(9.34993+3.85005)x52.03227 @@ -218,20 +218,21 @@ Overfull \hbox (5.95723pt too wide) in paragraph at lines 724--725 .@texttt c .etc. +[9] @rwindfile=@write4 \openout4 = `bashref.rw'. -[9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19{/opt/local/share/texmf-tex -live/fonts/enc/dvips/cm-super/cm-super-t1.enc}] [20] [21] [22] [23] [24] + [10] [11] [12] [13] [14] [15] [16] [17] [18] [19{/opt/local/share/texmf-texliv +e/fonts/enc/dvips/cm-super/cm-super-t1.enc}] [20] [21] [22] [23] [24] [25] [26] [27] [28] [29] [30] [31] [32] [33] [34] [35] [36] [37] [38] [39] -[40] [41] [42] [43] [44] [45] [46] [47] Chapter 4 [48] +[40] [41] [42] [43] [44] [45] [46] [47] [48] Chapter 4 [49] @btindfile=@write5 \openout5 = `bashref.bt'. - [49] [50] [51] [52] + [50] [51] [52] [53] [54] [55] [56] [57] [58] [59] [60] [61] [62] [63] [64] [65] [66] [67] -[68] -Overfull \hbox (38.26585pt too wide) in paragraph at lines 5447--5447 +[68] [69] [70] +Overfull \hbox (38.26585pt too wide) in paragraph at lines 5703--5703 []@texttt set [-abefhkmnptuvxBCEHPT] [-o @textttsl option-name@texttt ] [--] [ -] [@textttsl ar-gu-ment []@texttt ][] @@ -244,7 +245,7 @@ Overfull \hbox (38.26585pt too wide) in paragraph at lines 5447--5447 .etc. -Overfull \hbox (38.26585pt too wide) in paragraph at lines 5448--5448 +Overfull \hbox (38.26585pt too wide) in paragraph at lines 5704--5704 []@texttt set [+abefhkmnptuvxBCEHPT] [+o @textttsl option-name@texttt ] [--] [ -] [@textttsl ar-gu-ment []@texttt ][] @@ -256,17 +257,17 @@ Overfull \hbox (38.26585pt too wide) in paragraph at lines 5448--5448 .@texttt t .etc. -[69] [70] [71] [72] [73] [74] [75] [76] [77] [78] [79] Chapter 5 [80] [81] -[82] [83] [84] [85] [86] [87] [88] [89] [90] [91] [92] Chapter 6 [93] [94] -[95] [96] [97] [98] [99] [100] [101] [102] [103] [104] [105] [106] [107] -[108] [109] [110] [111] [112] [113] [114] [115] [116] Chapter 7 [117] [118] -[119] [120] +[71] [72] [73] [74] [75] [76] [77] [78] [79] [80] [81] [82] Chapter 5 [83] +[84] [85] [86] [87] [88] [89] [90] [91] [92] [93] [94] [95] [96] Chapter 6 +[97] [98] [99] [100] [101] [102] [103] [104] [105] [106] [107] [108] [109] +[110] [111] [112] [113] [114] [115] [116] [117] [118] [119] [120] [121] +Chapter 7 [122] [123] [124] [125] texinfo.tex: doing @include of rluser.texi - (/usr/local/src/bash/bash-20240812/lib/readline/doc/rluser.texi -Chapter 8 [121] [122] [123] [124] [125] [126] [127] [128] [129] [130] [131] -[132] -Underfull \hbox (badness 7540) in paragraph at lines 882--888 + +(/usr/local/src/bash/bash-20240927/lib/readline/doc/rluser.texi Chapter 8 +[126] [127] [128] [129] [130] [131] [132] [133] [134] [135] [136] [137] +Underfull \hbox (badness 7540) in paragraph at lines 919--925 []@textrm In the ex-am-ple above, @textttsl C-u[] @textrm is bound to the func -tion @@ -279,7 +280,7 @@ Underfull \hbox (badness 7540) in paragraph at lines 882--888 .etc. -Underfull \hbox (badness 10000) in paragraph at lines 882--888 +Underfull \hbox (badness 10000) in paragraph at lines 919--925 @texttt universal-argument[]@textrm , @textttsl M-DEL[] @textrm is bound to th e func-tion @@ -291,8 +292,8 @@ e func-tion .@texttt v .etc. -[133] [134] [135] [136] -Overfull \hbox (26.43913pt too wide) in paragraph at lines 1116--1116 +[138] [139] [140] [141] +Overfull \hbox (26.43913pt too wide) in paragraph at lines 1155--1155 []@texttt Meta-Control-h: backward-kill-word Text after the function name is i gnored[] @@ -304,19 +305,19 @@ gnored[] .@texttt t .etc. -[137] [138] +[142] [143] @fnindfile=@write6 \openout6 = `bashref.fn'. - [139] [140] [141] [142] [143] [144] [145] [146] [147] [148] -[149] [150] [151] [152] [153] [154] [155] [156] [157]) + [144] [145] [146] [147] [148] [149] [150] [151] [152] [153] +[154] [155] [156] [157] [158] [159] [160] [161] [162]) texinfo.tex: doing @include of hsuser.texi -(/usr/local/src/bash/bash-20240812/lib/readline/doc/hsuser.texi Chapter 9 -[158] [159] [160] [161] [162] [163]) Chapter 10 [164] [165] [166] [167] -[168] -Underfull \hbox (badness 10000) in paragraph at lines 9853--9862 +(/usr/local/src/bash/bash-20240927/lib/readline/doc/hsuser.texi Chapter 9 +[163] [164] [165] [166] [167] [168] [169]) Chapter 10 [170] [171] [172] +[173] [174] +Underfull \hbox (badness 10000) in paragraph at lines 10261--10270 []@textrm All of the fol-low-ing op-tions ex-cept for `@texttt alt-array-implem entation[]@textrm '[], @@ -329,7 +330,7 @@ entation[]@textrm '[], .etc. -Underfull \hbox (badness 10000) in paragraph at lines 9853--9862 +Underfull \hbox (badness 10000) in paragraph at lines 10261--10270 @textrm `@texttt disabled-builtins[]@textrm '[], `@texttt direxpand-default[]@t extrm '[], `@texttt strict-posix-default[]@textrm '[], and @@ -341,17 +342,17 @@ extrm '[], `@texttt strict-posix-default[]@textrm '[], and .@texttt a .etc. -[169] [170] [171] [172] Appendix A [173] Appendix B [174] [175] [176] [177] -[178] [179] Appendix C [180] +[175] [176] [177] [178] Appendix A [179] Appendix B [180] [181] [182] [183] +[184] [185] Appendix C [186] texinfo.tex: doing @include of fdl.texi - (/usr/local/src/bash/bash-20240812/doc/fdl.texi -[181] [182] [183] [184] [185] [186] [187]) Appendix D [188] [189] [190] -[191] [192] [193] [194] [195] [196] [197] ) + (/usr/local/src/bash/bash-20240927/doc/fdl.texi +[187] [188] [189] [190] [191] [192] [193]) Appendix D [194] [195] [196] +[197] [198] [199] [200] [201] [202] [203] ) Here is how much of TeX's memory you used: - 4105 strings out of 495840 - 47629 string characters out of 6171739 - 143211 words of memory out of 5000000 + 4111 strings out of 495840 + 47647 string characters out of 6171739 + 143369 words of memory out of 5000000 5048 multiletter control sequences out of 15000+600000 34315 words of font info for 116 fonts, out of 8000000 for 9000 701 hyphenation exceptions out of 8191 @@ -372,10 +373,10 @@ texmf-texlive/fonts/type1/public/amsfonts/cm/cmtt12.pfb> -Output written on bashref.pdf (203 pages, 821096 bytes). +Output written on bashref.pdf (209 pages, 838618 bytes). PDF statistics: - 2835 PDF objects out of 2984 (max. 8388607) - 2585 compressed objects within 26 object streams - 331 named destinations out of 1000 (max. 500000) + 2885 PDF objects out of 2984 (max. 8388607) + 2628 compressed objects within 27 object streams + 337 named destinations out of 1000 (max. 500000) 1157 words of extra memory for PDF output out of 10000 (max. 10000000) diff --git a/doc/bashref.pdf b/doc/bashref.pdf index 9f9acd1e639b3be0df79c2480eeb7ebf80cdabee..0b0691919945cee211ab238316d7590fedf12d51 100644 GIT binary patch delta 617247 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