From b91488b51cae38a7e07b7567b6ac42ea19d02740 Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Fri, 16 Jun 2023 12:49:11 -0400 Subject: [PATCH] new readline application variable rl_full_quoting_desired; new programmable completion option "fullquote"; TIMEFORMAT now accepts precisions up to six digits --- CWRU/CWRU.chlog | 63 + builtins/complete.def | 1 + configure | 24 +- configure.ac | 6 +- doc/bash.0 | 1788 +++++++-------- doc/bash.1 | 16 +- doc/bash.html | 21 +- doc/bash.info | 251 ++- doc/bash.pdf | Bin 406759 -> 406809 bytes doc/bash.ps | 4000 +++++++++++++++++---------------- doc/bashref.aux | 50 +- doc/bashref.bt | 4 +- doc/bashref.bts | 4 +- doc/bashref.cp | 22 +- doc/bashref.cps | 22 +- doc/bashref.html | 24 +- doc/bashref.info | 251 ++- doc/bashref.log | 89 +- doc/bashref.pdf | Bin 807513 -> 808042 bytes doc/bashref.texi | 7 +- doc/bashref.toc | 52 +- doc/builtins.0 | 1724 +++++++------- doc/builtins.pdf | Bin 0 -> 148753 bytes doc/builtins.ps | 2296 +++++++++---------- doc/version.texi | 8 +- execute_cmd.c | 63 +- externs.h | 4 +- lib/readline/complete.c | 26 +- lib/readline/doc/rltech.texi | 10 + lib/readline/doc/rluser.texi | 4 + lib/readline/doc/version.texi | 6 +- lib/readline/readline.h | 6 + lib/sh/clock.c | 7 +- lib/sh/timeval.c | 32 +- patchlevel.h | 2 +- pcomplete.c | 3 + pcomplete.h | 3 +- tests/history.right | 4 +- tests/new-exp.right | 2 +- 39 files changed, 5541 insertions(+), 5354 deletions(-) create mode 100644 doc/builtins.pdf diff --git a/CWRU/CWRU.chlog b/CWRU/CWRU.chlog index f822f4f8..b9af6fd4 100644 --- a/CWRU/CWRU.chlog +++ b/CWRU/CWRU.chlog @@ -6614,3 +6614,66 @@ builtins/shopt.def doc/bash.1,doc/bashref.texi - array_expand_once: document new shopt option + + 6/15 + ---- +lib/readline/complete.c + - rl_full_quoting_desired: new application-settable variable, if set + to non-zero by an application completion function, all completions + will be quoted as if they were filenames, subject to the value of + rl_filename_quote_characters. Initialized to 0 and reset to 0 + by set_completion_defaults. + From a contribution by Grisha Levit + - QUOTING_DESIRED: new macro to check whether we should quote completions + +lib/readline/readline.h + - rl_full_quoting_desired: extern declaration + +lib/readline/doc/rltech.texi + - rl_full_quoting_desired: document + +configure.ac + - bumped version to 5.3-devel + +pcomplete.h + - COPT_FULLQUOTE: new compspec option, for rl_full_quoting_desired + +pcomplete.c + - pcomp_set_readline_variables: set rl_full_quoting_desired according + to COPT_FULLQUOTE + +builtins/complete.def + - fullquote: add new complete/compopt option value + +doc/bash.1,lib/readline/doc/rluser.texi + - fullquote: document new complete/compopt option + +lib/sh/timeval.c + - timeval_to_secs: sfp argument is now a long *; there is a new + maxval argument (always 10^6 for now) that determines how to + round; returns tv_usec in *sfp if maxval == 10^6; otherwise + return value is basically tv_usec/maxval with rounding + - print_timeval: change argument type in call to timeval_to_secs + +lib/sh/clock.c + - clock_t_to_secs: sfp argument is now a long * + - print_clock_t: change argument type in call to clock_t_to_secs + +externs.h + - timeval_to_seconds, clock_t_to_seconds: change prototypes + +execute_cmd.c + - mkfmt,print_formatted_time: fractional seconds arguments are now + longs + - mkfmt: accept precisions up to 6; since sec_fraction is in usecs, + perform any necessary rounding for precisions < 6 + - print_formatted_time: allow precision specifiers up to 6; default + is still 3 + - time_command: fractional seconds variables are now long; add new + argument to timeval_to_secs (always 1000000) + - time_command: if we call clock_t_to_secs, multiply the return + fractional seconds value by 1000 to convert it from msec to usec + +doc/bash.1,doc/bashref.texi + - TIMEFORMAT: document that the max precision is now 6 + From https://savannah.gnu.org/support/?110343 diff --git a/builtins/complete.def b/builtins/complete.def index e9704ede..890cf20d 100644 --- a/builtins/complete.def +++ b/builtins/complete.def @@ -145,6 +145,7 @@ static const struct _compopt { { "default", COPT_DEFAULT }, { "dirnames", COPT_DIRNAMES }, { "filenames",COPT_FILENAMES}, + { "fullquote",COPT_FULLQUOTE}, { "noquote", COPT_NOQUOTE }, { "nosort", COPT_NOSORT }, { "nospace", COPT_NOSPACE }, diff --git a/configure b/configure index b6d9aad2..de3b7478 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #! /bin/sh -# From configure.ac for Bash 5.2, version 5.052. +# From configure.ac for Bash 5.2, version 5.053. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.71 for bash 5.2-maint. +# Generated by GNU Autoconf 2.71 for bash 5.3-devel. # # Report bugs to . # @@ -612,8 +612,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='bash' PACKAGE_TARNAME='bash' -PACKAGE_VERSION='5.2-maint' -PACKAGE_STRING='bash 5.2-maint' +PACKAGE_VERSION='5.3-devel' +PACKAGE_STRING='bash 5.3-devel' PACKAGE_BUGREPORT='bug-bash@gnu.org' PACKAGE_URL='' @@ -1467,7 +1467,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures bash 5.2-maint to adapt to many kinds of systems. +\`configure' configures bash 5.3-devel to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1533,7 +1533,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of bash 5.2-maint:";; + short | recursive ) echo "Configuration of bash 5.3-devel:";; esac cat <<\_ACEOF @@ -1740,7 +1740,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -bash configure 5.2-maint +bash configure 5.3-devel generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. @@ -2397,7 +2397,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by bash $as_me 5.2-maint, which was +It was created by bash $as_me 5.3-devel, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw @@ -3175,8 +3175,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_headers="$ac_config_headers config.h" -BASHVERS=5.2 -RELSTATUS=maint +BASHVERS=5.3 +RELSTATUS=devel case "$RELSTATUS" in alp*|bet*|dev*|rc*|releng*|maint*) DEBUG='-DDEBUG' MALLOC_DEBUG='-DMALLOC_DEBUG' ;; @@ -22407,7 +22407,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by bash $as_me 5.2-maint, which was +This file was extended by bash $as_me 5.3-devel, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -22475,7 +22475,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -bash config.status 5.2-maint +bash config.status 5.3-devel configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 43237394..173e5233 100644 --- a/configure.ac +++ b/configure.ac @@ -21,10 +21,10 @@ dnl Process this file with autoconf to produce a configure script. # You should have received a copy of the GNU General Public License # along with this program. If not, see . -AC_REVISION([for Bash 5.2, version 5.052])dnl +AC_REVISION([for Bash 5.2, version 5.053])dnl -define(bashvers, 5.2) -define(relstatus, maint) +define(bashvers, 5.3) +define(relstatus, devel) AC_INIT([bash], bashvers-relstatus, [bug-bash@gnu.org]) diff --git a/doc/bash.0 b/doc/bash.0 index 48f78a48..ff2ea326 100644 --- a/doc/bash.0 +++ b/doc/bash.0 @@ -285,8 +285,8 @@ SSHHEELLLL GGRRAAMMMMAARR 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 may be used to - specify the format of the time information. + 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-- @@ -1412,9 +1412,9 @@ PPAARRAAMMEETTEERRSS 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 three places + no decimal point or fraction to be output. At most six places after the decimal point may be specified; values of _p greater - than 3 are changed to 3. If _p is not specified, the value 3 is + than 6 are changed to 6. If _p is not specified, the value 3 is used. The optional ll specifies a longer format, including minutes, of @@ -4777,6 +4777,7 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS arguments to the --GG, --WW, and --XX options (and, if necessary, the --PP and --SS options) should be quoted to protect them from expan- sion before the ccoommpplleettee builtin is invoked. + --oo _c_o_m_p_-_o_p_t_i_o_n The _c_o_m_p_-_o_p_t_i_o_n controls several aspects of the comp- spec's behavior beyond the simple generation of comple- @@ -4796,27 +4797,30 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS names, quoting special characters, or suppress- ing trailing spaces). Intended to be used with shell functions. - nnooqquuoottee Tell readline not to quote the completed words - if they are filenames (quoting filenames is the + ffuullllqquuoottee + Tell readline to quote all the completed words + even if they are not filenames. + nnooqquuoottee Tell readline not to quote the completed words + if they are filenames (quoting filenames is the default). - nnoossoorrtt Tell readline not to sort the list of possible + nnoossoorrtt Tell readline not to sort the list of possible completions alphabetically. - nnoossppaaccee Tell readline not to append a space (the de- - fault) to words completed at the end of the + nnoossppaaccee Tell readline not to append a space (the de- + fault) to words completed at the end of the line. pplluussddiirrss - After any matches defined by the compspec are + After any matches defined by the compspec are generated, directory name completion is at- tempted and any matches are added to the results of the other actions. --AA _a_c_t_i_o_n - The _a_c_t_i_o_n may be one of the following to generate a + The _a_c_t_i_o_n may be one of the following to generate a list of possible completions: aalliiaass Alias names. May also be specified as --aa. aarrrraayyvvaarr Array variable names. bbiinnddiinngg RReeaaddlliinnee key binding names. - bbuuiillttiinn Names of shell builtin commands. May also be + bbuuiillttiinn Names of shell builtin commands. May also be specified as --bb. ccoommmmaanndd Command names. May also be specified as --cc. ddiirreeccttoorryy @@ -4824,7 +4828,7 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS ddiissaabblleedd Names of disabled shell builtins. eennaabblleedd Names of enabled shell builtins. - eexxppoorrtt Names of exported shell variables. May also be + eexxppoorrtt Names of exported shell variables. May also be specified as --ee. ffiillee File names. May also be specified as --ff. ffuunnccttiioonn @@ -4833,17 +4837,17 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS hheellppttooppiicc Help topics as accepted by the hheellpp builtin. hhoossttnnaammee - Hostnames, as taken from the file specified by + Hostnames, as taken from the file specified by the HHOOSSTTFFIILLEE shell variable. - jjoobb Job names, if job control is active. May also + jjoobb Job names, if job control is active. May also be specified as --jj. - kkeeyywwoorrdd Shell reserved words. May also be specified as + kkeeyywwoorrdd Shell reserved words. May also be specified as --kk. rruunnnniinngg Names of running jobs, if job control is active. sseerrvviiccee Service names. May also be specified as --ss. - sseettoopptt Valid arguments for the --oo option to the sseett + sseettoopptt Valid arguments for the --oo option to the sseett builtin. - sshhoopptt Shell option names as accepted by the sshhoopptt + sshhoopptt Shell option names as accepted by the sshhoopptt builtin. ssiiggnnaall Signal names. ssttooppppeedd Names of stopped jobs, if job control is active. @@ -4852,198 +4856,198 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS Names of all shell variables. May also be spec- ified as --vv. --CC _c_o_m_m_a_n_d - _c_o_m_m_a_n_d is executed in a subshell environment, and its - output is used as the possible completions. Arguments + _c_o_m_m_a_n_d is executed in a subshell environment, and its + output is used as the possible completions. Arguments are passed as with the --FF option. --FF _f_u_n_c_t_i_o_n - The shell function _f_u_n_c_t_i_o_n is executed in the current - shell environment. When the function is executed, the + The shell function _f_u_n_c_t_i_o_n is executed in the current + shell environment. When the function is executed, the first argument ($$11) is the name of the command whose ar- 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 + 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. --GG _g_l_o_b_p_a_t - The pathname expansion pattern _g_l_o_b_p_a_t is expanded to + The pathname expansion pattern _g_l_o_b_p_a_t is expanded to generate 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- + _p_r_e_f_i_x is added at the beginning of each possible com- pletion 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 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 - is expanded. Shell quoting is honored within _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 + 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. - The possible completions are the members of the resul- + shell metacharacters or characters in the value of IIFFSS. + The possible completions are the members of the resul- tant list which match the word being completed. --XX _f_i_l_t_e_r_p_a_t - _f_i_l_t_e_r_p_a_t is a pattern as used for pathname expansion. + _f_i_l_t_e_r_p_a_t is a pattern as used for pathname expansion. It is applied to the list of possible completions gener- - ated by the preceding options and arguments, and each - completion matching _f_i_l_t_e_r_p_a_t is removed from the list. - A leading !! in _f_i_l_t_e_r_p_a_t negates the pattern; in this + ated by the preceding options and arguments, and each + completion matching _f_i_l_t_e_r_p_a_t is removed from the list. + A leading !! in _f_i_l_t_e_r_p_a_t negates the pattern; in this case, any completion not matching _f_i_l_t_e_r_p_a_t is removed. - The return value is true unless an invalid option is supplied, + The return value is true unless an invalid option is supplied, an option other than --pp, --rr, --DD, --EE, or --II is supplied without a - _n_a_m_e argument, an attempt is made to remove a completion speci- + _n_a_m_e argument, an attempt is made to remove a completion speci- fication for a _n_a_m_e for which no specification exists, or an er- ror occurs adding a completion specification. 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_- + 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 - 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, completion attempted on a command for which no completion + 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 + 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, completion attempted on a command for which no completion has previously been defined. The --EE option indicates that other - supplied options should apply to ``empty'' command completion; - that is, completion attempted on a blank line. The --II option + supplied options should apply to ``empty'' command completion; + that is, completion attempted on a blank line. The --II option indicates that other supplied options should apply to completion - on the initial non-assignment word on the line, or after a com- - mand delimiter such as ;; or ||, which is usually command name + on the initial non-assignment word on the line, or after a com- + mand delimiter such as ;; or ||, which is usually command name completion. - The return value is true unless an invalid option is supplied, + The return value is true unless an invalid option is supplied, an attempt is made to modify the options for a _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 last enclosing loop (the ``top-level'' loop) - is resumed. The return value is 0 unless _n is not greater than + 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 last enclosing loop (the ``top-level'' loop) + is resumed. 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 + 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 + 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 at- - tributes and values of all shell variables. The --ff option will + options are supplied with --pp, ddeeccllaarree will display the at- + tributes and values of all shell variables. The --ff option will restrict the display to shell functions. The --FF option inhibits - the display of function definitions; only the function name and + the display of function definitions; only the function name and attributes are printed. If the 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 + 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 + 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 + at a surrounding scope. If there is no existing variable, the local variable is initially unset. The following options can be - used to restrict output to variables with the specified attri- + used to restrict output to variables with the specified attri- bute or to give variables attributes: - --aa Each _n_a_m_e is an indexed array variable (see AArrrraayyss + --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. --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- + --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 + 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 + 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 + 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. 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 + 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- + --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- + 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- + 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. 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 + 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 expands these es- - cape characters by default. eecchhoo does not interpret ---- to mean - the end of options. eecchhoo interprets the following escape se- + 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 expands these es- + cape characters by default. eecchhoo does not interpret ---- to mean + the end of options. eecchhoo interprets the following escape se- quences: \\aa alert (bell) \\bb backspace @@ -5056,202 +5060,202 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS \\tt horizontal tab \\vv vertical tab \\\\ backslash - \\00_n_n_n the eight-bit character whose value is the octal value + \\00_n_n_n the eight-bit character whose value is the octal value _n_n_n (zero 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) 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 + 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 + 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. Bash 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 is system-dependent. The --dd option will - delete a builtin previously loaded with --ff. If no _n_a_m_e argu- - ments are given, or if the --pp option is supplied, a list of - shell builtins is printed. With no other option arguments, the + _n_a_m_e. The default is system-dependent. The --dd option will + delete a builtin previously loaded with --ff. If no _n_a_m_e argu- + ments 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 re- - stricted to the POSIX _s_p_e_c_i_a_l builtins. If no options are sup- - plied 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 + printed includes all builtins, with an indication of whether or + not each is enabled. If --ss is supplied, the output is re- + stricted to the POSIX _s_p_e_c_i_a_l builtins. If no options are sup- + plied 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 + 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. 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 + 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 + _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 + 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. eexxiitt [_n] - Cause the shell to exit with a status of _n. If _n is omitted, + 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. eexxppoorrtt [--ffnn] [_n_a_m_e[=_w_o_r_d]] ... 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 + 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- + 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. 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 ``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 + 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 ``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- + 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 + 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 + 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 + 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. 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. + 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 + 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 + ify 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- + 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 + 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 + 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 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, _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- played, even if the first character of _o_p_t_s_t_r_i_n_g is not a colon. If an invalid option is seen, ggeettooppttss places ? into _n_a_m_e and, if - not silent, prints an error message and unsets OOPPTTAARRGG. If - ggeettooppttss is silent, the option character found is placed in OOPP-- + not silent, prints an error message and unsets OOPPTTAARRGG. If + ggeettooppttss is silent, the option character found is placed in OOPP-- TTAARRGG and no diagnostic message is printed. - If a required argument is not found, and ggeettooppttss is not silent, - a question mark (??) is placed in _n_a_m_e, OOPPTTAARRGG is unset, and a - diagnostic message is printed. If ggeettooppttss is silent, then a - colon (::) is placed in _n_a_m_e and OOPPTTAARRGG is set to the option + If a required argument is not found, and ggeettooppttss is not silent, + a question mark (??) is placed in _n_a_m_e, OOPPTTAARRGG is unset, and a + diagnostic message is printed. If ggeettooppttss is silent, then a + colon (::) is placed in _n_a_m_e and OOPPTTAARRGG is set 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- + is determined by searching the directories in $$PPAATTHH and remem- bered. Any previously-remembered pathname is discarded. If the --pp option is supplied, no path search is performed, and _f_i_l_e_n_a_m_e - is used as the full filename of the command. The --rr option + is used as the full filename of the command. The --rr option causes the shell to forget all remembered locations. The --dd op- - tion 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 + tion 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 for- - mat that may be reused as input. If no arguments are given, or + mat that may be reused as input. If no arguments are given, or if only --ll is supplied, information about remembered commands is - printed. The return status is true unless a _n_a_m_e is not found + printed. The return status is true unless a _n_a_m_e is not found or an invalid 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 + 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. --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 @@ -5269,54 +5273,54 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS 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-- - 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. Options, if supplied, have the + _n lists only the last _n lines. 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. Options, if supplied, have the following meanings: --cc Clear the history list by deleting all the entries. --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 + --rr Read the contents of the history file and append them to the current 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 + --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 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 + --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 + 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- + 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. jjoobbss [--llnnpprrss] [ _j_o_b_s_p_e_c ... ] @@ -5324,15 +5328,15 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS 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 + 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 the --xx option is supplied, jjoobbss replaces any _j_o_b_s_p_e_c found in @@ -5341,263 +5345,263 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS 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 - 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 + Send the signal named 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 + --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. lleett _a_r_g [_a_r_g ...] Each _a_r_g is an arithmetic expression to be evaluated (see AARRIITTHH-- - MMEETTIICC EEVVAALLUUAATTIIOONN above). If the last _a_r_g evaluates to 0, lleett + MMEETTIICC EEVVAALLUUAATTIIOONN above). If the last _a_r_g evaluates to 0, lleett returns 1; 0 is returned otherwise. 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 + 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 - 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 + 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 + 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, + 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. - 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 + 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 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 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 + --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 + --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 + --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 + 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. 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 + 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 + --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 - example: ``popd +0'' removes the first directory, ``popd + ++_n Removes 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 - shown by ddiirrss, starting with zero. For example: ``popd - -0'' removes the last directory, ``popd -1'' the next to + shown by ddiirrss, starting with zero. For example: ``popd + -0'' removes the last directory, ``popd -1'' the next to last. - If the top element of the directory stack is modified, and the - _-_n option was not supplied, ppooppdd uses the ccdd builtin to change + If the top element of the directory stack is modified, and the + _-_n option was not supplied, ppooppdd uses the ccdd builtin to change 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- + 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. - 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, bash 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 + 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. - 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 - output, character escape sequences, which are converted and - copied to the standard output, and format specifications, each - of which causes printing of the next successive _a_r_g_u_m_e_n_t. In + 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 + output, character escape sequences, which are converted and + copied to the standard output, and format specifications, each + of which causes printing of the next successive _a_r_g_u_m_e_n_t. In addition to the standard _p_r_i_n_t_f(3) format characters ccssnnddiioouuxxXXee-- EEffFFggGGaaAA, pprriinnttff interprets the following additional format spec- ifiers: %%bb causes pprriinnttff to expand backslash escape sequences in the corresponding _a_r_g_u_m_e_n_t in the same way as eecchhoo --ee. - %%qq causes pprriinnttff to output the corresponding _a_r_g_u_m_e_n_t in a - format that can be reused as shell input. %%qq and %%QQ use - the $$'''' quoting style if any characters in the argument - string require it, and backslash quoting otherwise. If - the format string uses the _p_r_i_n_t_f alternate form, these + %%qq causes pprriinnttff to output the corresponding _a_r_g_u_m_e_n_t in a + format that can be reused as shell input. %%qq and %%QQ use + the $$'''' quoting style if any characters in the argument + string require it, and backslash quoting otherwise. If + the format string uses the _p_r_i_n_t_f alternate form, these two formats quote the argument string using single quotes. - %%QQ like %%qq, but applies any supplied precision to the _a_r_g_u_- + %%QQ like %%qq, but applies any supplied precision to the _a_r_g_u_- _m_e_n_t before quoting it. %%((_d_a_t_e_f_m_t))TT - 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). + 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- + 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- + given. This is an exception to the usual pprriinnttff behav- ior. The %b, %q, and %T format specifiers all use the field width and precision arguments from the format specification and write that - many bytes from (or use that wide a field for) the expanded ar- - gument, which usually contains more characters than the origi- + many bytes from (or use that wide a field for) the expanded ar- + gument, which usually contains more characters than the origi- nal. The %n format specifier accepts a corresponding argument that is treated as a shell variable name. - The %s and %c format specifiers accept an l (long) modifier, + The %s and %c format specifiers accept an l (long) modifier, which forces them to convert the argument string to a wide-char- acter string and apply any supplied field width and precision in terms of characters, not bytes. - Arguments to non-string format specifiers are treated as C con- + Arguments to non-string format specifiers are treated as C con- stants, except that a leading plus or minus sign is allowed, and - if the leading character is a single or double quote, the value + if the leading character is a single or double quote, the value is the ASCII value of the following character. - The _f_o_r_m_a_t is reused as necessary to consume all of the _a_r_g_u_- + The _f_o_r_m_a_t is reused as necessary to consume all of the _a_r_g_u_- _m_e_n_t_s. If the _f_o_r_m_a_t requires more _a_r_g_u_m_e_n_t_s than are supplied, - the extra format specifications behave as if a zero value or - null string, as appropriate, had been supplied. The return - value is zero on success, non-zero if an invalid option is sup- + the extra format specifications behave as if a zero value or + null string, as appropriate, had been supplied. The return + value is zero on success, non-zero if an invalid option is sup- plied or a write or assignment error occurs. 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 + 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 following meanings: - --nn Suppresses the normal change of directory when rotating - or adding directories to the stack, so that only the + --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 + ++_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. - --_n Rotates the stack so that the _nth directory (counting - from the right of the list shown by ddiirrss, starting with + --_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 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 + 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 + 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. - If the ppuusshhdd command is successful, bash runs ddiirrss to show the + If the ppuusshhdd command is successful, bash 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 [--eerrss] [--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- + 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 + 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 - 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 + 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, + acter read and 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- + 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 + 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. --ee If the standard input is coming from a terminal, rreeaaddlliinnee - (see RREEAADDLLIINNEE above) is used to obtain the line. Read- - line uses the current (or default, if line editing was - not previously active) editing settings, but uses read- + (see RREEAADDLLIINNEE above) is used to obtain the line. Read- + line uses the current (or default, if line editing was + not previously active) editing settings, but uses read- line's default filename completion. --ii _t_e_x_t - If rreeaaddlliinnee is being used to read the line, _t_e_x_t is + If rreeaaddlliinnee is being used to read the line, _t_e_x_t is placed 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 + 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 + iter if fewer than _n_c_h_a_r_s characters are read 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 + 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). --pp _p_r_o_m_p_t @@ -5605,133 +5609,133 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS line, before attempting to read any input. The prompt is displayed 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. + 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 + 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. - 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- + 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. 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- + 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 + _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 + 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. 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-- + 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 + 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 + 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. 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 ...] - Without options, display the name and value of each shell vari- - able in a format that can be reused as input for setting or re- + Without options, display the name and value of each shell vari- + able in a format that can be reused as input for setting or re- setting the currently-set variables. Read-only variables cannot - be reset. In _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- + --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. - --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 + --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. - The shell does not exit if the command that fails is - part of the command list immediately following a wwhhiillee - or uunnttiill keyword, part of the test following the iiff or - eelliiff reserved words, part of any command executed in a - &&&& or |||| list except the command following the final &&&& + The shell does not exit if the command that fails is + part of the command list immediately following a wwhhiillee + or uunnttiill keyword, part of the test following the iiff or + eelliiff reserved words, part of any 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 with !!. If a - compound command other than a subshell returns a non- - zero status because a command failed while --ee was being - ignored, the shell does not exit. A trap on EERRRR, if - set, is executed before the shell exits. This option + command's return value is being inverted with !!. If a + compound command other than a subshell returns a non- + zero status because a command failed while --ee was being + ignored, the shell does not exit. A trap on EERRRR, if + set, is executed before the shell exits. This option applies to the shell environment and each subshell envi- - ronment separately (see CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENNTT + ronment separately (see CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENNTT above), and may cause subshells to exit before executing all the commands in the subshell. - If a compound command or shell function executes in a - context where --ee is being ignored, none of the commands - executed within the compound command or function body - will be affected by the --ee setting, even if --ee is set - and a command returns a failure status. If a compound - command or shell function sets --ee while executing in a - context where --ee is ignored, that setting will not have - any effect until the compound command or the command + If a compound command or shell function executes in a + context where --ee is being ignored, none of the commands + executed within the compound command or function body + will be affected by the --ee setting, even if --ee is set + and a command returns a failure status. If a compound + command or shell function sets --ee while executing in a + context where --ee is ignored, that setting will not have + any effect until the compound command or the command containing the function call completes. --ff Disable pathname expansion. - --hh Remember the location of commands as they are looked up + --hh Remember the location of commands as they are looked up for execution. This is enabled by default. - --kk All arguments in the form of assignment statements are - placed in the environment for a command, not just those + --kk All arguments in the form of assignment statements are + placed in the environment for a command, not just those that precede the command name. - --mm Monitor mode. Job control is enabled. This option is - on by default for interactive shells on systems that - support it (see JJOOBB CCOONNTTRROOLL above). All processes run + --mm Monitor mode. Job control is enabled. This option is + on by default for interactive shells on systems that + support it (see JJOOBB CCOONNTTRROOLL above). All processes run in a separate process group. When a background job com- pletes, the shell prints a line containing its exit sta- tus. --nn Read commands but do not execute them. This may be used - to check a shell script for syntax errors. This is ig- + to check a shell script for syntax errors. This is ig- nored by interactive shells. --oo _o_p_t_i_o_n_-_n_a_m_e The _o_p_t_i_o_n_-_n_a_m_e can be one of the following: @@ -5739,10 +5743,10 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS Same as --aa. bbrraacceeeexxppaanndd Same as --BB. - eemmaaccss Use an emacs-style command line editing inter- + eemmaaccss Use an emacs-style command line editing inter- face. This is enabled by default when the shell is interactive, unless the shell is started with - the ----nnooeeddiittiinngg option. This also affects the + the ----nnooeeddiittiinngg option. This also affects the editing interface used for rreeaadd --ee. eerrrreexxiitt Same as --ee. eerrrrttrraaccee @@ -5756,8 +5760,8 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS HHIISSTTOORRYY. This option is on by default in inter- active shells. iiggnnoorreeeeooff - The effect is as if the shell command ``IG- - NOREEOF=10'' had been executed (see SShheellll VVaarrii-- + The effect is as if the shell command ``IG- + NOREEOF=10'' had been executed (see SShheellll VVaarrii-- aabblleess above). kkeeyywwoorrdd Same as --kk. mmoonniittoorr Same as --mm. @@ -5772,178 +5776,178 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS pphhyyssiiccaall Same as --PP. ppiippeeffaaiill - If set, the return value of a pipeline is the - value of the last (rightmost) command to exit - with a non-zero status, or zero if all commands - in the pipeline exit successfully. This option + If set, the return value of a pipeline is the + value of the last (rightmost) command to exit + with a non-zero status, or zero if all commands + in the pipeline exit successfully. This option is disabled by default. - ppoossiixx Change the behavior of bbaasshh where the default - operation differs from the POSIX standard to - match the standard (_p_o_s_i_x _m_o_d_e). See SSEEEE AALLSSOO + ppoossiixx Change the behavior of bbaasshh where the default + operation differs from the POSIX standard to + match the standard (_p_o_s_i_x _m_o_d_e). See SSEEEE AALLSSOO below for a reference to a document that details how posix mode affects bash's behavior. pprriivviilleeggeedd Same as --pp. vveerrbboossee Same as --vv. - vvii Use a vi-style command line editing interface. + vvii Use a vi-style command line editing interface. This also affects the editing interface used for rreeaadd --ee. xxttrraaccee Same as --xx. If --oo is supplied with no _o_p_t_i_o_n_-_n_a_m_e, the values of the - current options are printed. If ++oo is supplied with no - _o_p_t_i_o_n_-_n_a_m_e, a series of sseett commands to recreate the - current option settings is displayed on the standard + current options are printed. If ++oo is supplied with no + _o_p_t_i_o_n_-_n_a_m_e, a series of sseett commands to recreate the + current option settings is displayed 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- + --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 + 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 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 + 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 + --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 + --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 >>. --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- + command substitutions, and commands executed in a sub- + shell environment. The EERRRR trap is normally not inher- ited in such cases. --HH Enable !! style history substitution. This option is on by default when the shell is interactive. - --PP If set, the shell does not resolve symbolic links when - executing commands such as ccdd that change the current + --PP If set, the shell does not resolve symbolic links when + executing commands such as ccdd that change the current working directory. It uses the physical directory structure instead. By default, bbaasshh follows the logical - chain of directories when performing commands which + chain of directories when performing commands which change the current directory. - --TT If set, any traps on DDEEBBUUGG and RREETTUURRNN are inherited by + --TT If set, any traps on DDEEBBUUGG and RREETTUURRNN are inherited by shell functions, command substitutions, and commands ex- - ecuted in a subshell environment. The DDEEBBUUGG and RREETTUURRNN + 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 + ---- 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 + 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 + -- 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. - The options are off by default unless otherwise noted. Using + - rather than - causes these options to be turned off. The op- + The options are off by default unless otherwise noted. Using + + rather than - causes these options to be turned off. The op- tions can also be specified as arguments to an invocation of the - shell. The current set of options may be found in $$--. The re- - turn status is always true unless an invalid option is encoun- + shell. The current set of options may be found in $$--. The re- + turn status is always true 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 + 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 param- - eters are not changed. The return status is greater than zero + eters 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 + 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- + 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: --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- + 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. - --oo Restricts the values of _o_p_t_n_a_m_e to be those defined for + --oo Restricts the values of _o_p_t_n_a_m_e to be those defined for the --oo option to the sseett builtin. - If either --ss or --uu is used with no _o_p_t_n_a_m_e arguments, sshhoopptt - shows only those options which are set or unset, respectively. - Unless otherwise noted, the sshhoopptt options are disabled (unset) + If either --ss or --uu is used with no _o_p_t_n_a_m_e arguments, sshhoopptt + shows only those options which are set or unset, respectively. + Unless otherwise noted, the sshhoopptt options are disabled (unset) by default. - The return status when listing options is zero if all _o_p_t_n_a_m_e_s - are enabled, non-zero otherwise. When setting or unsetting op- - tions, the return status is zero unless an _o_p_t_n_a_m_e is not a + The return status when listing options is zero if all _o_p_t_n_a_m_e_s + are enabled, non-zero otherwise. When setting or unsetting op- + tions, the return status is zero unless an _o_p_t_n_a_m_e is not a valid shell option. The list of sshhoopptt options is: aarrrraayy__eexxppaanndd__oonnccee - If set, the shell suppresses multiple evaluation of as- + If set, the shell suppresses multiple evaluation of as- sociative and indexed array subscripts during arithmetic expression evaluation, while executing builtins that can - perform variable assignments, and while executing + perform variable assignments, and while executing builtins that perform array dereferencing. aassssoocc__eexxppaanndd__oonnccee Deprecated; a synonym for aarrrraayy__eexxppaanndd__oonnccee. - aauuttooccdd If set, a command name that is the name of a directory - is executed as if it were the argument to the ccdd com- + aauuttooccdd If set, a command name that is the name of a directory + is executed as if it were the argument to the ccdd com- mand. This option is only used by interactive shells. ccddaabbllee__vvaarrss - If set, an argument to the ccdd builtin command that is - not a directory is assumed to be the name of a variable + 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 + 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 + 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. 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- + ble exists before trying to execute it. If a hashed + command no longer exists, a normal path search is per- formed. cchheecckkjjoobbss If set, bbaasshh lists the status of any stopped and running - jobs before exiting an interactive shell. If any jobs + jobs before exiting an interactive shell. If any jobs are running, this causes the exit to be deferred until a - second exit is attempted without an intervening command + second exit is attempted without an intervening command (see JJOOBB CCOONNTTRROOLL above). The shell always postpones ex- iting 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 + 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. - 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 - enabled by default, but only has an effect if command + 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 + enabled by default, but only has an effect if command history is enabled, as described above under HHIISSTTOORRYY. ccoommppaatt3311 ccoommppaatt3322 @@ -5953,122 +5957,122 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS ccoommppaatt4433 ccoommppaatt4444 ccoommppaatt5500 - These control aspects of the shell's compatibility mode + These control aspects of the shell's compatibility mode (see SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE below). ccoommpplleettee__ffuullllqquuoottee - If set, bbaasshh quotes all shell metacharacters in file- - names and directory names when performing completion. + If set, bbaasshh quotes all shell metacharacters in file- + names and directory names when performing completion. If not set, bbaasshh removes metacharacters such as the dol- - lar sign from the set of characters that will be quoted - in completed filenames when these metacharacters appear - in shell variable references in words to be completed. - This means that dollar signs in variable names that ex- - pand to directories will not be quoted; however, any - dollar signs appearing in filenames will not be quoted, - either. This is active only when bash is using back- - slashes to quote completed filenames. This variable is - set by default, which is the default bash behavior in + lar sign from the set of characters that will be quoted + in completed filenames when these metacharacters appear + in shell variable references in words to be completed. + This means that dollar signs in variable names that ex- + pand to directories will not be quoted; however, any + dollar signs appearing in filenames will not be quoted, + either. This is active only when bash is using back- + slashes to quote completed filenames. This variable is + set by default, which is the default bash behavior in versions through 4.2. ddiirreexxppaanndd - If set, bbaasshh replaces directory names with the results - of word expansion when performing filename completion. - This changes the contents of the readline editing buf- - fer. If not set, bbaasshh attempts to preserve what the + If set, bbaasshh replaces directory names with the results + of word expansion when performing filename completion. + This changes the contents of the readline editing buf- + fer. If not set, bbaasshh attempts to preserve what the user typed. ddiirrssppeellll - If set, bbaasshh attempts spelling correction on directory - names during word completion if the directory name ini- + If set, bbaasshh attempts spelling correction on directory + names during word completion if the directory name ini- tially supplied does not exist. - ddoottgglloobb If set, bbaasshh includes filenames beginning with a `.' in - the results of pathname expansion. The filenames ````..'''' - and ````....'''' must always be matched explicitly, even if + ddoottgglloobb If set, bbaasshh includes filenames beginning with a `.' in + the results of pathname expansion. The filenames ````..'''' + and ````....'''' must always be matched explicitly, even if ddoottgglloobb is set. 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 + not execute the file specified as an argument to the + eexxeecc builtin command. An interactive shell does not exit if eexxeecc fails. eexxppaanndd__aalliiaasseess - If set, aliases are expanded as described above under + If set, aliases are expanded as described above under AALLIIAASSEESS. This option is enabled by default for interac- tive shells. eexxttddeebbuugg - 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 ----ddeebbuuggggeerr option. If set af- - ter invocation, behavior intended for use by debuggers + starts, identical to the ----ddeebbuuggggeerr option. If set af- + ter invocation, behavior intended for use by debuggers is enabled: 11.. The --FF option to the ddeeccllaarree builtin displays the source file name and line number corresponding to each function name supplied as an argument. - 22.. If the command run by the DDEEBBUUGG trap returns a - non-zero value, the next command is skipped and + 22.. If the command run by the DDEEBBUUGG trap returns a + non-zero value, the next command is skipped and not executed. - 33.. If the command run by the DDEEBBUUGG trap returns a - value of 2, and the shell is executing in a sub- - routine (a shell function or a shell script exe- - cuted by the .. or ssoouurrccee builtins), the shell + 33.. If the command run by the DDEEBBUUGG trap returns a + value of 2, and the shell is executing in a sub- + routine (a shell function or a shell script exe- + cuted by the .. or ssoouurrccee builtins), the shell simulates a call to rreettuurrnn. - 44.. BBAASSHH__AARRGGCC and BBAASSHH__AARRGGVV are updated as described + 44.. BBAASSHH__AARRGGCC and BBAASSHH__AARRGGVV are updated as described in their descriptions above). - 55.. Function tracing is enabled: command substitu- + 55.. Function tracing is enabled: command substitu- tion, shell functions, and subshells invoked with (( _c_o_m_m_a_n_d )) inherit the DDEEBBUUGG and RREETTUURRNN traps. - 66.. Error tracing is enabled: command substitution, - shell functions, and subshells invoked with (( + 66.. Error tracing is enabled: command substitution, + 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. 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 + 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. gglloobbsskkiippddoottss - If set, pathname expansion will never match the file- + 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 @@ -6076,25 +6080,25 @@ 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 + If set, and rreeaaddlliinnee is being used, a user is given the opportunity to re-edit a failed history substitution. 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 + perform hostname completion when a word containing a @@ + is being completed (see CCoommpplleettiinngg under RREEAADDLLIINNEE above). This is enabled by default. hhuuppoonneexxiitt @@ -6102,23 +6106,23 @@ SSHHEELLLL 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 above). This op- + and all remaining characters on that line to be ignored + in an interactive shell (see CCOOMMMMEENNTTSS above). This op- tion 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. @@ -6129,54 +6133,54 @@ 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- - cal to the behavior of unsetting local variables at the + 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. llooggiinn__sshheellll - The shell sets this option if it is started as a login - shell (see IINNVVOOCCAATTIIOONN above). The value may not be + The shell sets this option if it is started as a login + shell (see IINNVVOOCCAATTIIOONN above). The value may not be changed. mmaaiillwwaarrnn - If set, and a file that bbaasshh is checking for mail has - been accessed since the last time it was checked, the - message ``The mail in _m_a_i_l_f_i_l_e has been read'' is dis- + If set, and a file that bbaasshh is checking for mail has + been accessed since the last time it was checked, the + message ``The mail in _m_a_i_l_f_i_l_e has been read'' is dis- played. nnoo__eemmppttyy__ccmmdd__ccoommpplleettiioonn - If set, and rreeaaddlliinnee is being used, bbaasshh will not at- - tempt to search the PPAATTHH for possible completions when + 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. 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 - If set, bbaasshh allows patterns which match no files (see - PPaatthhnnaammee EExxppaannssiioonn above) to expand to a null string, + If set, bbaasshh allows patterns which match no files (see + PPaatthhnnaammee EExxppaannssiioonn above) to expand to a null string, rather than 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 + string of pattern substitution to the text matched by + the pattern, as described under PPaarraammeetteerr EExxppaannssiioonn above. This option is enabled by default. pprrooggccoommpp @@ -6185,69 +6189,69 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS 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- + 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- 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 + find the directory containing the file supplied as an argument. This option is enabled by default. vvaarrrreeddiirr__cclloossee - If set, the shell automatically closes file descriptors + If set, the shell automatically closes file descriptors assigned using the _{_v_a_r_n_a_m_e_} redirection syntax (see RREE-- - DDIIRREECCTTIIOONN above) instead of leaving them open when the + DDIIRREECCTTIIOONN above) instead of leaving them open when the command completes. xxppgg__eecchhoo - If set, the eecchhoo builtin expands backslash-escape se- + If set, the eecchhoo builtin expands backslash-escape se- quences by default. 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 + 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. 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 op- - erand 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 + erand 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- + 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. !! _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 + Returns the value of _e_x_p_r. This may be used to override the normal precedence of operators. _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. @@ -6264,159 +6268,159 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS null. 2 arguments If the first argument is !!, the expression is true if and - only if the second argument is null. If the first argu- - ment is one of the unary conditional operators listed - above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the expression is + only if the second argument is null. If the first argu- + ment is one of the unary conditional operators listed + above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the expression is true if the unary test is true. If the first argument is not a valid unary conditional operator, the expression is false. 3 arguments The following conditions are applied in the order listed. - If the second argument is one of the binary conditional + If the second argument is one of the binary conditional operators listed above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the result of the expression is the result of the binary test - using the first and third arguments as operands. The --aa - and --oo operators are considered binary operators when - there are three arguments. If the first argument is !!, - the value is the negation of the two-argument test using + using the first and third arguments as operands. The --aa + and --oo operators are considered binary operators when + there are three arguments. If the first argument is !!, + the value is the negation of the two-argument test using the second and third arguments. If the first argument is exactly (( and the third argument is exactly )), the result - is the one-argument test of the second argument. Other- + is the one-argument test of the second argument. Other- wise, the expression is false. 4 arguments The following conditions are applied in the order listed. If the first argument is !!, 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- + 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 precedence using the rules listed above. 5 or more arguments - The expression is parsed and evaluated according to + The expression is parsed and evaluated according to precedence using the rules listed above. - When used with tteesstt or [[, the << and >> operators sort lexico- + When used with tteesstt or [[, the << and >> operators sort lexico- graphically using ASCII ordering. - ttiimmeess Print the accumulated user and system times for the shell and + 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 ...] 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- + 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- + 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- + 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 + 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 + 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, + _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- + 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 + 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 + 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 + 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. 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 + 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 + 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 return _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- + 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- + 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 + _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. 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. + Provides control over the resources available to the shell and + to processes started by it, 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- + 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 + 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- + 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 --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) @@ -6425,134 +6429,134 @@ 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 + 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. 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 + 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, + was successfully changed or if no _m_o_d_e argument was supplied, and false 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 + 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. uunnsseett [-ffvv] [-nn] [_n_a_m_e ...] - For each _n_a_m_e, remove the corresponding variable or function. + 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, + 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 + 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. wwaaiitt [--ffnn] [--pp _v_a_r_n_a_m_e] [_i_d _._._.] Wait for each specified child process and return its termination - status. Each _i_d may be a process ID or a job specification; if - a job spec is given, all processes in that job's pipeline are - waited for. If _i_d is not given, wwaaiitt waits for all running - background jobs and the last-executed process substitution, if + status. Each _i_d may be a process ID or a job specification; if + a job spec is given, all processes in that job's pipeline are + waited for. If _i_d is not given, wwaaiitt waits for all running + background jobs and the last-executed process substitution, if its process id is the same as $$!!, and the return status is zero. - If the --nn option is supplied, wwaaiitt waits for a single job from + If the --nn option is supplied, wwaaiitt waits for a single job from the list of _i_ds or, if no _i_ds are supplied, any job, to complete - and returns its exit status. If none of the supplied arguments + and returns its exit status. If none of the supplied arguments is a child of the shell, or if no arguments are supplied and the - shell has no unwaited-for children, the exit status is 127. If - the --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. Supplying the --ff option, - when job control is enabled, forces wwaaiitt to wait for _i_d to ter- + shell has no unwaited-for children, the exit status is 127. 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. Supplying the --ff option, + when job control is enabled, forces wwaaiitt to wait for _i_d to ter- minate before returning its status, instead of returning when it - changes status. If _i_d specifies a non-existent process or job, - the return status is 127. If wwaaiitt is interrupted by a signal, - the return status will be greater than 128, as described under - SSIIGGNNAALLSS above. Otherwise, the return status is the exit status + changes status. If _i_d specifies a non-existent process or job, + the return status is 127. If wwaaiitt is interrupted by a signal, + the return status will be greater than 128, as described under + SSIIGGNNAALLSS above. Otherwise, the return status is the exit status of the last process or job waited for. SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE - Bash-4.0 introduced the concept of a _s_h_e_l_l _c_o_m_p_a_t_i_b_i_l_i_t_y _l_e_v_e_l, speci- - fied as a set of options to the shopt builtin ( ccoommppaatt3311, ccoommppaatt3322, - ccoommppaatt4400, ccoommppaatt4411, and so on). There is only one current compatibil- - ity level -- each option is mutually exclusive. The compatibility - level is intended to allow users to select behavior from previous ver- - sions that is incompatible with newer versions while they migrate - scripts to use current features and behavior. It's intended to be a + Bash-4.0 introduced the concept of a _s_h_e_l_l _c_o_m_p_a_t_i_b_i_l_i_t_y _l_e_v_e_l, speci- + fied as a set of options to the shopt builtin ( ccoommppaatt3311, ccoommppaatt3322, + ccoommppaatt4400, ccoommppaatt4411, and so on). There is only one current compatibil- + ity level -- each option is mutually exclusive. The compatibility + level is intended to allow users to select behavior from previous ver- + sions that is incompatible with newer versions while they migrate + scripts to use current features and behavior. It's intended to be a temporary solution. - This section does not mention behavior that is standard for a particu- - lar version (e.g., setting ccoommppaatt3322 means that quoting the rhs of the - regexp matching operator quotes special regexp characters in the word, + This section does not mention behavior that is standard for a particu- + lar version (e.g., setting 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 + 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, Bash has begun deprecating older compatibility - levels. Eventually, the options will be removed in favor of BBAASSHH__CCOOMM-- + Starting with bash-4.4, Bash has begun deprecating older compatibility + levels. Eventually, the options will be removed in favor of BBAASSHH__CCOOMM-- PPAATT. - Bash-5.0 is the final version for which there will be an individual - shopt option for the previous version. Users should use BBAASSHH__CCOOMMPPAATT on + Bash-5.0 is the final version for which there will be an individual + shopt option for the previous version. Users should use BBAASSHH__CCOOMMPPAATT on bash-5.0 and later versions. - The following table describes the behavior changes controlled by each + The following table describes the behavior changes controlled by each compatibility level setting. The ccoommppaatt_N_N tag is used as shorthand for setting the compatibility level to _N_N using one of the following mecha- - nisms. For versions prior to bash-5.0, the compatibility level may be - set using the corresponding ccoommppaatt_N_N shopt option. For bash-4.3 and - later versions, the BBAASSHH__CCOOMMPPAATT variable is preferred, and it is re- + nisms. For versions prior to bash-5.0, the compatibility level may be + set using the corresponding ccoommppaatt_N_N shopt option. For bash-4.3 and + later versions, the BBAASSHH__CCOOMMPPAATT variable is preferred, and it is re- quired for bash-5.1 and later versions. ccoommppaatt3311 @@ -6560,114 +6564,114 @@ SSHHEELLLL CCOOMMPPAATTIIBBIILLIITTYY MMOODDEE ator (=~) has no special effect ccoommppaatt3322 - +o interrupting a command list such as "a ; b ; c" causes - the execution of the next command in the list (in - bash-4.0 and later versions, the shell acts as if it re- - ceived the interrupt, so interrupting one command in a + +o interrupting a command list such as "a ; b ; c" causes + the execution of the next command in the list (in + bash-4.0 and later versions, the shell acts as if it re- + ceived the interrupt, so interrupting one command in a list aborts the execution of the entire list) 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. Bash 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 + 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 - 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 + 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) ccoommppaatt4422 +o the replacement string in double-quoted pattern substitu- - tion does not undergo quote removal, as it does in ver- + tion does not undergo quote removal, as it does in ver- sions after bash-4.2 - +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 + +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 ccoommppaatt4433 - +o the shell does not print a warning message if an attempt - is made to use a quoted compound assignment as an argu- - ment to declare (e.g., declare -a foo='(1 2)'). Later + +o the shell does not print a warning message if an attempt + is made to use a quoted compound assignment as an argu- + ment to declare (e.g., declare -a foo='(1 2)'). Later versions warn that this usage is deprecated - +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 + +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 + +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- + context. Bash-4.4 and later reset the loop state to pre- 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 + +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 - bbrreeaakk or ccoonnttiinnuuee will cause the subshell to exit. - Bash-5.0 and later reset the loop state to prevent the + +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 ccoommppaatt5500 - +o Bash-5.1 changed the way $$RRAANNDDOOMM is generated to intro- + +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 - from bash-5.0 and previous versions, so seeding the ran- - dom number generator by assigning a value to RRAANNDDOOMM will + level is set to 50 or lower, it reverts to the method + from bash-5.0 and previous versions, so seeding the ran- + dom number generator by assigning a value to RRAANNDDOOMM will 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- + +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- tion is supplied. ccoommppaatt5511 - +o The uunnsseett builtin treats attempts to unset array sub- - scripts @@ and ** differently depending on whether the ar- - ray is indexed or associative, and differently than in + +o The uunnsseett builtin treats attempts to unset array sub- + scripts @@ and ** differently depending on whether the ar- + ray is indexed or associative, and differently than in previous versions. 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 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 disallowed or not performed: +o changing directories with ccdd - +o setting or unsetting the values of SSHHEELLLL, PPAATTHH, HHIISSTTFFIILLEE, EENNVV, + +o setting or unsetting the values of SSHHEELLLL, PPAATTHH, HHIISSTTFFIILLEE, EENNVV, or BBAASSHH__EENNVV +o specifying command names containing // - +o specifying a filename containing a // as an argument to the .. + +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 + +o specifying a filename containing a slash as an argument to the hhiissttoorryy builtin command - +o specifying a filename containing a slash as an argument to the + +o specifying a filename containing a slash as an argument to the --pp option to the hhaasshh builtin command - +o importing function definitions from the shell environment at + +o importing function definitions from the shell environment at startup - +o parsing the value of SSHHEELLLLOOPPTTSS from the shell environment at + +o parsing the value of SSHHEELLLLOOPPTTSS from the shell environment at startup +o redirecting output using the >, >|, <>, >&, &>, and >> redirect- @@ -6676,28 +6680,28 @@ RREESSTTRRIICCTTEEDD SSHHEELLLL +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 + +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 + +o using the eennaabbllee builtin command to enable disabled shell builtins +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. When a command that is found to be a shell script is executed (see CCOOMM-- - MMAANNDD EEXXEECCUUTTIIOONN above), rrbbaasshh turns off any restrictions in the shell + MMAANNDD EEXXEECCUUTTIIOONN above), rrbbaasshh turns off any restrictions in the shell spawned to execute the script. SSEEEE AALLSSOO _B_a_s_h _R_e_f_e_r_e_n_c_e _M_a_n_u_a_l, Brian Fox and Chet Ramey _T_h_e _G_n_u _R_e_a_d_l_i_n_e _L_i_b_r_a_r_y, Brian Fox and Chet Ramey _T_h_e _G_n_u _H_i_s_t_o_r_y _L_i_b_r_a_r_y, Brian Fox and Chet Ramey - _P_o_r_t_a_b_l_e _O_p_e_r_a_t_i_n_g _S_y_s_t_e_m _I_n_t_e_r_f_a_c_e _(_P_O_S_I_X_) _P_a_r_t _2_: _S_h_e_l_l _a_n_d _U_t_i_l_i_- + _P_o_r_t_a_b_l_e _O_p_e_r_a_t_i_n_g _S_y_s_t_e_m _I_n_t_e_r_f_a_c_e _(_P_O_S_I_X_) _P_a_r_t _2_: _S_h_e_l_l _a_n_d _U_t_i_l_i_- _t_i_e_s, IEEE -- http://pubs.opengroup.org/onlinepubs/9699919799/ http://tiswww.case.edu/~chet/bash/POSIX -- a description of posix mode @@ -6715,10 +6719,10 @@ FFIILLEESS _~_/_._b_a_s_h_r_c The individual per-interactive-shell startup file _~_/_._b_a_s_h___l_o_g_o_u_t - The individual login shell cleanup file, executed when a login + The individual login shell cleanup file, executed when a login shell exits _~_/_._b_a_s_h___h_i_s_t_o_r_y - The default value of HHIISSTTFFIILLEE, the file in which bash saves the + The default value of HHIISSTTFFIILLEE, the file in which bash saves the command history _~_/_._i_n_p_u_t_r_c Individual _r_e_a_d_l_i_n_e initialization file @@ -6732,15 +6736,15 @@ AAUUTTHHOORRSS BBUUGG RREEPPOORRTTSS If you find a bug in bbaasshh,, you should report it. But first, you should - make sure that it really is a bug, and that it appears in the latest - version of bbaasshh. The latest version is always available from + make sure that it really is a bug, and that it appears in the latest + version of bbaasshh. The latest version is always available from _f_t_p_:_/_/_f_t_p_._g_n_u_._o_r_g_/_p_u_b_/_g_n_u_/_b_a_s_h_/ and _h_t_t_p_:_/_/_g_i_t_._s_a_v_a_n_- _n_a_h_._g_n_u_._o_r_g_/_c_g_i_t_/_b_a_s_h_._g_i_t_/_s_n_a_p_s_h_o_t_/_b_a_s_h_-_m_a_s_t_e_r_._t_a_r_._g_z. - Once you have determined that a bug actually exists, use the _b_a_s_h_b_u_g - command to submit a bug report. If you have a fix, you are encouraged - to mail that as well! Suggestions and `philosophical' bug reports may - be mailed to _b_u_g_-_b_a_s_h_@_g_n_u_._o_r_g or posted to the Usenet newsgroup + Once you have determined that a bug actually exists, use the _b_a_s_h_b_u_g + command to submit a bug report. If you have a fix, you are encouraged + to mail that as well! Suggestions and `philosophical' bug reports may + be mailed to _b_u_g_-_b_a_s_h_@_g_n_u_._o_r_g or posted to the Usenet newsgroup ggnnuu..bbaasshh..bbuugg. ALL bug reports should include: @@ -6751,7 +6755,7 @@ BBUUGG RREEPPOORRTTSS A description of the bug behaviour A short script or `recipe' which exercises the bug - _b_a_s_h_b_u_g inserts the first three items automatically into the template + _b_a_s_h_b_u_g inserts the first three items automatically into the template it provides for filing a bug report. Comments and bug reports concerning this manual page should be directed @@ -6768,10 +6772,10 @@ BBUUGGSS Shell builtin commands and functions are not stoppable/restartable. Compound commands and command sequences of the form `a ; b ; c' are not - handled gracefully when process suspension is attempted. When a - process is stopped, the shell immediately executes the next command in - the sequence. It suffices to place the sequence of commands between - parentheses to force it into a subshell, which may be stopped as a + handled gracefully when process suspension is attempted. When a + process is stopped, the shell immediately executes the next command in + the sequence. It suffices to place the sequence of commands between + parentheses to force it into a subshell, which may be stopped as a unit. Array variables may not (yet) be exported. @@ -6780,4 +6784,4 @@ BBUUGGSS -GNU Bash 5.2 2023 June 13 BASH(1) +GNU Bash 5.3 2023 June 15 BASH(1) diff --git a/doc/bash.1 b/doc/bash.1 index 98c8c048..a6c13320 100644 --- a/doc/bash.1 +++ b/doc/bash.1 @@ -5,12 +5,12 @@ .\" Case Western Reserve University .\" chet.ramey@case.edu .\" -.\" Last Change: Tue Jun 13 10:33:46 EDT 2023 +.\" Last Change: Thu Jun 15 18:11:33 EDT 2023 .\" .\" bash_builtins, strip all but Built-Ins section .if \n(zZ=1 .ig zZ .if \n(zY=1 .ig zY -.TH BASH 1 "2023 June 13" "GNU Bash 5.2" +.TH BASH 1 "2023 June 15" "GNU Bash 5.3" .\" .\" There's some problem with having a `@' .\" in a tagged paragraph with the BSD man macros. @@ -588,8 +588,7 @@ total user and system time consumed by the shell and its children. The .SM .B TIMEFORMAT -variable may be used to specify the format of -the time information. +variable specifies the format of the time information. .PP Each command in a multi-command pipeline, where pipes are created, @@ -2658,8 +2657,8 @@ 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 three places after the decimal point may be specified; -values of \fIp\fP greater than 3 are changed to 3. +At most six places after the decimal point may be specified; +values of \fIp\fP greater than 6 are changed to 6. If \fIp\fP is not specified, the value 3 is used. .IP The optional \fBl\fP specifies a longer format, including @@ -8219,6 +8218,7 @@ The arguments to the \fB\-G\fP, \fB\-W\fP, and \fB\-X\fP options should be quoted to protect them from expansion before the .B complete builtin is invoked. +.sp 1 .RS .PD 0 .TP 8 @@ -8245,6 +8245,10 @@ filename\-specific processing (like adding a slash to directory names, quoting special characters, or suppressing trailing spaces). Intended to be used with shell functions. .TP 8 +.B fullquote +Tell readline to quote all the completed words even if they are not +filenames. +.TP 8 .B noquote Tell readline not to quote the completed words if they are filenames (quoting filenames is the default). diff --git a/doc/bash.html b/doc/bash.html index 261e6689..7e6d9c93 100644 --- a/doc/bash.html +++ b/doc/bash.html @@ -3,7 +3,7 @@ -
BASH(1)2023 June 13BASH(1) +BASH(1)2023 June 15BASH(1)

Index @@ -785,8 +785,7 @@ The TIMEFORMAT -variable may be used to specify the format of -the time information. +variable specifies the format of the time information.

Each command in a multi-command pipeline, @@ -3360,8 +3359,8 @@ 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 three places after the decimal point may be specified; -values of p greater than 3 are changed to 3. +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.

The optional l specifies a longer format, including @@ -10387,6 +10386,7 @@ should be quoted to protect them from expansion before the complete builtin is invoked. +

@@ -10417,6 +10417,11 @@ Tell readline that the compspec generates filenames, so it can perform any filename-specific processing (like adding a slash to directory names, quoting special characters, or suppressing trailing spaces). Intended to be used with shell functions. +
fullquote + +
+Tell readline to quote all the completed words even if they are not +filenames.
noquote
@@ -15004,7 +15009,7 @@ There may be only one active coprocess at a time.
-
GNU Bash 5.22023 June 13BASH(1) +GNU Bash 5.32023 June 15BASH(1)

@@ -15110,7 +15115,7 @@ There may be only one active coprocess at a time.
BUGS

-This document was created by man2html from /usr/local/src/bash/bash-20230612/doc/bash.1.
-Time: 13 June 2023 10:42:12 EDT +This document was created by man2html from /usr/local/src/bash/bash-20230614/doc/bash.1.
+Time: 15 June 2023 18:17:34 EDT diff --git a/doc/bash.info b/doc/bash.info index 2deb4f10..6d3e58da 100644 --- a/doc/bash.info +++ b/doc/bash.info @@ -1,10 +1,10 @@ This is bash.info, produced by makeinfo version 6.8 from bashref.texi. This text is a brief description of the features that are present in the -Bash shell (version 5.2, 13 June 2023). +Bash shell (version 5.3, 15 June 2023). - This is Edition 5.2, last updated 13 June 2023, of 'The GNU Bash -Reference Manual', for 'Bash', Version 5.2. + This is Edition 5.3, last updated 15 June 2023, of 'The GNU Bash +Reference Manual', for 'Bash', Version 5.3. Copyright (C) 1988-2023 Free Software Foundation, Inc. @@ -26,11 +26,11 @@ Bash Features ************* This text is a brief description of the features that are present in the -Bash shell (version 5.2, 13 June 2023). The Bash home page is +Bash shell (version 5.3, 15 June 2023). The Bash home page is . - This is Edition 5.2, last updated 13 June 2023, of 'The GNU Bash -Reference Manual', for 'Bash', Version 5.2. + This is Edition 5.3, last updated 15 June 2023, of 'The GNU Bash +Reference Manual', for 'Bash', Version 5.3. Bash contains features that appear in other popular shells, and some features that only appear in Bash. Some of the shells that Bash has @@ -698,8 +698,7 @@ command cannot time these easily. When the shell is in POSIX mode (*note Bash POSIX Mode::), 'time' 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' variable may be used to specify the format of the time -information. +'TIMEFORMAT' variable specifies the format of the time information. If the pipeline is not executed asynchronously (*note Lists::), the shell waits for all commands in the pipeline to complete. @@ -5991,9 +5990,9 @@ 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 three places after - the decimal point may be specified; values of P greater than 3 are - changed to 3. If P is not specified, the value 3 is used. + 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. The optional 'l' specifies a longer format, including minutes, of the form MMmSS.FFs. The value of P determines whether or not the @@ -9841,6 +9840,10 @@ happening. is intended to be used with shell functions specified with '-F'. + 'fullquote' + Tell Readline to quote all the completed words even if + they are not filenames. + 'noquote' Tell Readline not to quote the completed words if they are filenames (quoting filenames is the default). @@ -12023,7 +12026,7 @@ D.1 Index of Shell Builtin Commands * complete: Programmable Completion Builtins. (line 36) * compopt: Programmable Completion Builtins. - (line 244) + (line 248) * continue: Bourne Shell Builtins. (line 90) * declare: Bash Builtins. (line 154) @@ -12790,118 +12793,118 @@ Node: Shell Commands23880 Node: Reserved Words24815 Node: Simple Commands25568 Node: Pipelines26219 -Node: Lists29215 -Node: Compound Commands31007 -Node: Looping Constructs32016 -Node: Conditional Constructs34508 -Node: Command Grouping48993 -Node: Coprocesses50468 -Node: GNU Parallel53128 -Node: Shell Functions54042 -Node: Shell Parameters61924 -Node: Positional Parameters66309 -Node: Special Parameters67208 -Node: Shell Expansions70419 -Node: Brace Expansion72543 -Node: Tilde Expansion75274 -Node: Shell Parameter Expansion77892 -Node: Command Substitution96291 -Node: Arithmetic Expansion99752 -Node: Process Substitution100717 -Node: Word Splitting101834 -Node: Filename Expansion103879 -Node: Pattern Matching106809 -Node: Quote Removal111808 -Node: Redirections112100 -Node: Executing Commands121790 -Node: Simple Command Expansion122457 -Node: Command Search and Execution124564 -Node: Command Execution Environment126948 -Node: Environment129980 -Node: Exit Status131640 -Node: Signals133421 -Node: Shell Scripts136867 -Node: Shell Builtin Commands139891 -Node: Bourne Shell Builtins141926 -Node: Bash Builtins164257 -Node: Modifying Shell Behavior196253 -Node: The Set Builtin196595 -Node: The Shopt Builtin207190 -Node: Special Builtins223194 -Node: Shell Variables224170 -Node: Bourne Shell Variables224604 -Node: Bash Variables226705 -Node: Bash Features260767 -Node: Invoking Bash261777 -Node: Bash Startup Files267787 -Node: Interactive Shells272915 -Node: What is an Interactive Shell?273323 -Node: Is this Shell Interactive?273969 -Node: Interactive Shell Behavior274781 -Node: Bash Conditional Expressions278407 -Node: Shell Arithmetic283046 -Node: Aliases286004 -Node: Arrays288895 -Node: The Directory Stack295455 -Node: Directory Stack Builtins296236 -Node: Controlling the Prompt300493 -Node: The Restricted Shell303455 -Node: Bash POSIX Mode306062 -Node: Shell Compatibility Mode321852 -Node: Job Control330093 -Node: Job Control Basics330550 -Node: Job Control Builtins335549 -Node: Job Control Variables341341 -Node: Command Line Editing342494 -Node: Introduction and Notation344162 -Node: Readline Interaction345782 -Node: Readline Bare Essentials346970 -Node: Readline Movement Commands348756 -Node: Readline Killing Commands349713 -Node: Readline Arguments351631 -Node: Searching352672 -Node: Readline Init File354855 -Node: Readline Init File Syntax356113 -Node: Conditional Init Constructs379901 -Node: Sample Init File384094 -Node: Bindable Readline Commands387215 -Node: Commands For Moving388416 -Node: Commands For History390464 -Node: Commands For Text395455 -Node: Commands For Killing399101 -Node: Numeric Arguments402131 -Node: Commands For Completion403267 -Node: Keyboard Macros407455 -Node: Miscellaneous Commands408140 -Node: Readline vi Mode414175 -Node: Programmable Completion415079 -Node: Programmable Completion Builtins422856 -Node: A Programmable Completion Example433841 -Node: Using History Interactively439086 -Node: Bash History Facilities439767 -Node: Bash History Builtins442769 -Node: History Interaction447790 -Node: Event Designators451407 -Node: Word Designators452758 -Node: Modifiers454515 -Node: Installing Bash456320 -Node: Basic Installation457454 -Node: Compilers and Options461173 -Node: Compiling For Multiple Architectures461911 -Node: Installation Names463600 -Node: Specifying the System Type465706 -Node: Sharing Defaults466420 -Node: Operation Controls467090 -Node: Optional Features468045 -Node: Reporting Bugs479261 -Node: Major Differences From The Bourne Shell480592 -Node: GNU Free Documentation License497438 -Node: Indexes522612 -Node: Builtin Index523063 -Node: Reserved Word Index530161 -Node: Variable Index532606 -Node: Function Index549591 -Node: Concept Index563372 +Node: Lists29202 +Node: Compound Commands30994 +Node: Looping Constructs32003 +Node: Conditional Constructs34495 +Node: Command Grouping48980 +Node: Coprocesses50455 +Node: GNU Parallel53115 +Node: Shell Functions54029 +Node: Shell Parameters61911 +Node: Positional Parameters66296 +Node: Special Parameters67195 +Node: Shell Expansions70406 +Node: Brace Expansion72530 +Node: Tilde Expansion75261 +Node: Shell Parameter Expansion77879 +Node: Command Substitution96278 +Node: Arithmetic Expansion99739 +Node: Process Substitution100704 +Node: Word Splitting101821 +Node: Filename Expansion103866 +Node: Pattern Matching106796 +Node: Quote Removal111795 +Node: Redirections112087 +Node: Executing Commands121777 +Node: Simple Command Expansion122444 +Node: Command Search and Execution124551 +Node: Command Execution Environment126935 +Node: Environment129967 +Node: Exit Status131627 +Node: Signals133408 +Node: Shell Scripts136854 +Node: Shell Builtin Commands139878 +Node: Bourne Shell Builtins141913 +Node: Bash Builtins164244 +Node: Modifying Shell Behavior196240 +Node: The Set Builtin196582 +Node: The Shopt Builtin207177 +Node: Special Builtins223181 +Node: Shell Variables224157 +Node: Bourne Shell Variables224591 +Node: Bash Variables226692 +Node: Bash Features260752 +Node: Invoking Bash261762 +Node: Bash Startup Files267772 +Node: Interactive Shells272900 +Node: What is an Interactive Shell?273308 +Node: Is this Shell Interactive?273954 +Node: Interactive Shell Behavior274766 +Node: Bash Conditional Expressions278392 +Node: Shell Arithmetic283031 +Node: Aliases285989 +Node: Arrays288880 +Node: The Directory Stack295440 +Node: Directory Stack Builtins296221 +Node: Controlling the Prompt300478 +Node: The Restricted Shell303440 +Node: Bash POSIX Mode306047 +Node: Shell Compatibility Mode321837 +Node: Job Control330078 +Node: Job Control Basics330535 +Node: Job Control Builtins335534 +Node: Job Control Variables341326 +Node: Command Line Editing342479 +Node: Introduction and Notation344147 +Node: Readline Interaction345767 +Node: Readline Bare Essentials346955 +Node: Readline Movement Commands348741 +Node: Readline Killing Commands349698 +Node: Readline Arguments351616 +Node: Searching352657 +Node: Readline Init File354840 +Node: Readline Init File Syntax356098 +Node: Conditional Init Constructs379886 +Node: Sample Init File384079 +Node: Bindable Readline Commands387200 +Node: Commands For Moving388401 +Node: Commands For History390449 +Node: Commands For Text395440 +Node: Commands For Killing399086 +Node: Numeric Arguments402116 +Node: Commands For Completion403252 +Node: Keyboard Macros407440 +Node: Miscellaneous Commands408125 +Node: Readline vi Mode414160 +Node: Programmable Completion415064 +Node: Programmable Completion Builtins422841 +Node: A Programmable Completion Example433958 +Node: Using History Interactively439203 +Node: Bash History Facilities439884 +Node: Bash History Builtins442886 +Node: History Interaction447907 +Node: Event Designators451524 +Node: Word Designators452875 +Node: Modifiers454632 +Node: Installing Bash456437 +Node: Basic Installation457571 +Node: Compilers and Options461290 +Node: Compiling For Multiple Architectures462028 +Node: Installation Names463717 +Node: Specifying the System Type465823 +Node: Sharing Defaults466537 +Node: Operation Controls467207 +Node: Optional Features468162 +Node: Reporting Bugs479378 +Node: Major Differences From The Bourne Shell480709 +Node: GNU Free Documentation License497555 +Node: Indexes522729 +Node: Builtin Index523180 +Node: Reserved Word Index530278 +Node: Variable Index532723 +Node: Function Index549708 +Node: Concept Index563489  End Tag Table diff --git a/doc/bash.pdf b/doc/bash.pdf index 274dde4aeab1e58ac3e21c789a8fe7f7753f5ab8..90214e430639c4a8b4c4835580f524faa21abcc4 100644 GIT binary patch delta 140347 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