From 10db65655112ef7f01b2a60db8eb92dc9704d6fa Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Tue, 4 Feb 2020 10:14:42 -0500 Subject: [PATCH] commit bash-20200131 snapshot --- CWRU/CWRU.chlog | 27 + MANIFEST | 1 + bashline.c | 90 +- doc/bash.0 | 2856 ++++----- doc/bash.1 | 35 +- doc/bash.html | 40 +- doc/bash.info | 343 +- doc/bash.pdf | Bin 380943 -> 379635 bytes doc/bash.ps | 10274 +++++++++++++++---------------- doc/bashref.dvi | Bin 774868 -> 775620 bytes doc/bashref.html | 30 +- doc/bashref.info | 343 +- doc/bashref.log | 23 +- doc/bashref.pdf | Bin 759156 -> 759734 bytes doc/bashref.ps | 497 +- doc/bashref.texi | 18 +- doc/bashref.vr | 1 + doc/bashref.vrs | 1 + doc/builtins.0 | 1675 ++--- doc/builtins.ps | 3918 ++++++------ doc/rbash.ps | 2 +- doc/version.texi | 8 +- examples/loadables/Makefile.in | 6 +- examples/loadables/accept.c | 234 + lib/readline/histfile.c | 2 + trap.c | 1 + 26 files changed, 10401 insertions(+), 10024 deletions(-) create mode 100644 examples/loadables/accept.c diff --git a/CWRU/CWRU.chlog b/CWRU/CWRU.chlog index a841242df..75d0725f6 100644 --- a/CWRU/CWRU.chlog +++ b/CWRU/CWRU.chlog @@ -7234,3 +7234,30 @@ lib/readline/bind.c - rl_invoking_keyseqs_in_map: make sure to consistently output backslash as `\\' instead of producing `\C-\' Fixes from Koichi Murase + + 1/29 + ---- +bashline.c + - readline_get_char_offset: translate a readline buffer offset + (rl_point, rl_mark, rl_end) into a number of (possibly multibyte) + characters + - readline_set_char_offset: translate a number of (possibly multibyte) + characters into a buffer offset in rl_line_buffer. Uses a private + readline function to do it, which is bad + - bash_execute_unix_command: use readline_{get,set}_char_offset to + translate the rl_point to a character offset + - bash_execute_unix_command: bind READLINE_MARK variable, exposing + the value of rl_mark to `bind -x' functions + + 1/31 + ---- +examples/loadables/accept.c + - accept: new loadable builtin that will accept a TCP connection on a + specified port. Inspired by Stan Marsh + + 2/1 + --- +lib/readline/histfile.c + - history_do_write,history_truncate_file: translate the return value rv + to errno when histfile_restore returns -1 (e.g., if rename() fails). + Report and fix from A diff --git a/MANIFEST b/MANIFEST index edef9c812..988cf2243 100644 --- a/MANIFEST +++ b/MANIFEST @@ -710,6 +710,7 @@ examples/loadables/Makefile.in f examples/loadables/Makefile.inc.in f examples/loadables/necho.c f examples/loadables/hello.c f +examples/loadables/accept.c f examples/loadables/print.c f examples/loadables/realpath.c f examples/loadables/seq.c f diff --git a/bashline.c b/bashline.c index a80d765c1..4a42070d2 100644 --- a/bashline.c +++ b/bashline.c @@ -197,6 +197,8 @@ static void putx PARAMS((int)); #else static int putx PARAMS((int)); #endif +static int readline_get_char_offset PARAMS((int)); +static void readline_set_char_offset PARAMS((int, int *)); static Keymap get_cmd_xmap_from_edit_mode PARAMS((void)); static Keymap get_cmd_xmap_from_keymap PARAMS((Keymap)); @@ -4286,7 +4288,49 @@ putx(c) return x; #endif } - + +static int +readline_get_char_offset (ind) + int ind; +{ + int r, old_ch; + + r = ind; +#if defined (HANDLE_MULTIBYTE) + if (locale_mb_cur_max > 1) + { + old_ch = rl_line_buffer[ind]; + rl_line_buffer[ind] = '\0'; + r = MB_STRLEN (rl_line_buffer); + rl_line_buffer[ind] = old_ch; + } +#endif + return r; +} + +static void +readline_set_char_offset (ind, varp) + int ind; + int *varp; +{ + int i; + + i = ind; + +#if defined (HANDLE_MULTIBYTE) + if (i > 0 && locale_mb_cur_max > 1) + i = _rl_find_next_mbchar (rl_line_buffer, 0, i, 0); /* XXX */ +#endif + if (i != *varp) + { + if (i > rl_end) + i = rl_end; + else if (i < 0) + i = 0; + *varp = i; + } +} + int bash_execute_unix_command (count, key) int count; /* ignored */ @@ -4321,12 +4365,7 @@ bash_execute_unix_command (count, key) ce = rl_get_termcap ("ce"); if (ce) /* clear current line */ { -#if 0 - fprintf (rl_outstream, "\r"); - tputs (ce, 1, putx); -#else rl_clear_visible_line (); -#endif fflush (rl_outstream); } else @@ -4335,18 +4374,16 @@ bash_execute_unix_command (count, key) v = bind_variable ("READLINE_LINE", rl_line_buffer, 0); if (v) VSETATTR (v, att_exported); - i = rl_point; -#if defined (HANDLE_MULTIBYTE) - if (MB_CUR_MAX > 1) - { - old_ch = rl_line_buffer[rl_point]; - rl_line_buffer[rl_point] = '\0'; - i = MB_STRLEN (rl_line_buffer); - rl_line_buffer[rl_point] = old_ch; - } -#endif + + i = readline_get_char_offset (rl_point); value = inttostr (i, ibuf, sizeof (ibuf)); v = bind_int_variable ("READLINE_POINT", value, 0); + if (v) + VSETATTR (v, att_exported); + + i = readline_get_char_offset (rl_mark); + value = inttostr (i, ibuf, sizeof (ibuf)); + v = bind_int_variable ("READLINE_MARK", value, 0); if (v) VSETATTR (v, att_exported); array_needs_making = 1; @@ -4360,24 +4397,15 @@ bash_execute_unix_command (count, key) v = find_variable ("READLINE_POINT"); if (v && legal_number (value_cell (v), &mi)) - { - i = mi; -#if defined (HANDLE_MULTIBYTE) - if (i > 0 && MB_CUR_MAX > 1) - i = _rl_find_next_mbchar (rl_line_buffer, 0, i, 0); -#endif - if (i != rl_point) - { - rl_point = i; - if (rl_point > rl_end) - rl_point = rl_end; - else if (rl_point < 0) - rl_point = 0; - } - } + readline_set_char_offset (mi, &rl_point); + + v = find_variable ("READLINE_MARK"); + if (v && legal_number (value_cell (v), &mi)) + readline_set_char_offset (mi, &rl_mark); check_unbind_variable ("READLINE_LINE"); check_unbind_variable ("READLINE_POINT"); + check_unbind_variable ("READLINE_MARK"); array_needs_making = 1; /* and restore the readline buffer and display after command execution. */ diff --git a/doc/bash.0 b/doc/bash.0 index c5b9026a4..3385726f7 100644 --- a/doc/bash.0 +++ b/doc/bash.0 @@ -9,7 +9,7 @@ SSYYNNOOPPSSIISS bbaasshh [options] [command_string | file] CCOOPPYYRRIIGGHHTT - Bash is Copyright (C) 1989-2019 by the Free Software Foundation, Inc. + Bash is Copyright (C) 1989-2020 by the Free Software Foundation, Inc. DDEESSCCRRIIPPTTIIOONN BBaasshh is an sshh-compatible command language interpreter that executes @@ -1030,33 +1030,38 @@ PPAARRAAMMEETTEERRSS RREEAADDLLIINNEE__LLIINNEE The contents of the rreeaaddlliinnee line buffer, for use with "bind -x" (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). + RREEAADDLLIINNEE__MMAARRKK + The position of the mark (saved insertion point) in the rreeaaddlliinnee + line buffer, for use with "bind -x" (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS + below). The characters between the insertion point and the mark + are often called the _r_e_g_i_o_n. RREEAADDLLIINNEE__PPOOIINNTT The position of the insertion point in the rreeaaddlliinnee line buffer, for use with "bind -x" (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). - RREEPPLLYY Set to the line of input read by the rreeaadd builtin command when + RREEPPLLYY Set to the line of input read by the rreeaadd builtin command when no arguments are supplied. SSEECCOONNDDSS - Each time this parameter is referenced, the number of seconds - since shell invocation is returned. If a value is assigned to - SSEECCOONNDDSS, the value returned upon subsequent references is the - number of seconds since the assignment plus the value assigned. + Each time this parameter is referenced, the number of seconds + since shell invocation is returned. If a value is assigned to + SSEECCOONNDDSS, the value returned upon subsequent references is the + number of seconds since the assignment plus the value assigned. If SSEECCOONNDDSS is unset, it loses its special properties, even if it is subsequently reset. SSHHEELLLLOOPPTTSS - A colon-separated list of enabled shell options. Each word in - the list is a valid argument for the --oo option to the sseett + A colon-separated list of enabled shell options. Each word in + the list is a valid argument for the --oo option to the sseett builtin command (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). The options - appearing in SSHHEELLLLOOPPTTSS are those reported as _o_n by sseett --oo. If - this variable is in the environment when bbaasshh starts up, each - shell option in the list will be enabled before reading any + appearing in SSHHEELLLLOOPPTTSS are those reported as _o_n by sseett --oo. If + this variable is in the environment when bbaasshh starts up, each + shell option in the list will be enabled before reading any startup files. This variable is read-only. SSHHLLVVLL Incremented by one each time an instance of bbaasshh is started. SSRRAANNDDOOMM This variable expands to a 32-bit pseudo-random number each time - it is referenced. The random number generator is not linear on - systems that support /dev/urandom or _a_r_c_4_r_a_n_d_o_m, so each re- - turned number has no relationship to the numbers preceding it. - The random number generator cannot be seeded, so assignments to + it is referenced. The random number generator is not linear on + systems that support /dev/urandom or _a_r_c_4_r_a_n_d_o_m, so each re- + turned number has no relationship to the numbers preceding it. + The random number generator cannot be seeded, so assignments to this variable have no effect. If SSRRAANNDDOOMM is unset, it loses its special properties, even if it is subsequently reset. UUIIDD Expands to the user ID of the current user, initialized at shell @@ -1066,276 +1071,276 @@ PPAARRAAMMEETTEERRSS signs a default value to a variable; these cases are noted below. BBAASSHH__CCOOMMPPAATT - The value is used to set the shell's compatibility level. See - the description of the sshhoopptt builtin below under SSHHEELLLL BBUUIILLTTIINN - CCOOMMMMAANNDDSS for a description of the various compatibility levels - and their effects. The value may be a decimal number (e.g., - 4.2) or an integer (e.g., 42) corresponding to the desired com- - patibility level. If BBAASSHH__CCOOMMPPAATT is unset or set to the empty - string, the compatibility level is set to the default for the - current version. If BBAASSHH__CCOOMMPPAATT is set to a value that is not + The value is used to set the shell's compatibility level. See + the description of the sshhoopptt builtin below under SSHHEELLLL BBUUIILLTTIINN + CCOOMMMMAANNDDSS for a description of the various compatibility levels + and their effects. The value may be a decimal number (e.g., + 4.2) or an integer (e.g., 42) corresponding to the desired com- + patibility level. If BBAASSHH__CCOOMMPPAATT is unset or set to the empty + string, the compatibility level is set to the default for the + current version. If BBAASSHH__CCOOMMPPAATT is set to a value that is not one of the valid compatibility levels, the shell prints an error - message and sets the compatibility level to the default for the - current version. The valid compatibility levels correspond to - the compatibility options accepted by the sshhoopptt builtin de- - scribed below (for example, ccoommppaatt4422 means that 4.2 and 42 are + message and sets the compatibility level to the default for the + current version. The valid compatibility levels correspond to + the compatibility options accepted by the sshhoopptt builtin de- + scribed below (for example, ccoommppaatt4422 means that 4.2 and 42 are valid values). The current version is also a valid value. BBAASSHH__EENNVV - If this parameter is set when bbaasshh is executing a shell script, - its value is interpreted as a filename containing commands to + If this parameter is set when bbaasshh is executing a shell script, + its value is interpreted as a filename containing commands to initialize the shell, as in _~_/_._b_a_s_h_r_c. The value of BBAASSHH__EENNVV is - subjected to parameter expansion, command substitution, and - arithmetic expansion before being interpreted as a filename. + subjected to parameter expansion, command substitution, and + arithmetic expansion before being interpreted as a filename. PPAATTHH is not used to search for the resultant filename. BBAASSHH__XXTTRRAACCEEFFDD - If set to an integer corresponding to a valid file descriptor, - bbaasshh will write the trace output generated when _s_e_t _-_x is en- - abled to that file descriptor. The file descriptor is closed - when BBAASSHH__XXTTRRAACCEEFFDD is unset or assigned a new value. Unsetting - BBAASSHH__XXTTRRAACCEEFFDD or assigning it the empty string causes the trace - output to be sent to the standard error. Note that setting + If set to an integer corresponding to a valid file descriptor, + bbaasshh will write the trace output generated when _s_e_t _-_x is en- + abled to that file descriptor. The file descriptor is closed + when BBAASSHH__XXTTRRAACCEEFFDD is unset or assigned a new value. Unsetting + BBAASSHH__XXTTRRAACCEEFFDD or assigning it the empty string causes the trace + output to be sent to the standard error. Note that setting BBAASSHH__XXTTRRAACCEEFFDD to 2 (the standard error file descriptor) and then unsetting it will result in the standard error being closed. - CCDDPPAATTHH The search path for the ccdd command. This is a colon-separated + CCDDPPAATTHH The search path for the ccdd command. This is a colon-separated list of directories in which the shell looks for destination di- - rectories specified by the ccdd command. A sample value is + rectories specified by the ccdd command. A sample value is ".:~:/usr". CCHHIILLDD__MMAAXX - Set the number of exited child status values for the shell to - remember. Bash will not allow this value to be decreased below - a POSIX-mandated minimum, and there is a maximum value (cur- - rently 8192) that this may not exceed. The minimum value is + Set the number of exited child status values for the shell to + remember. Bash will not allow this value to be decreased below + a POSIX-mandated minimum, and there is a maximum value (cur- + rently 8192) that this may not exceed. The minimum value is system-dependent. CCOOLLUUMMNNSS - Used by the sseelleecctt compound command to determine the terminal - width when printing selection lists. Automatically set if the - cchheecckkwwiinnssiizzee option is enabled or in an interactive shell upon + Used by the sseelleecctt compound command to determine the terminal + width when printing selection lists. Automatically set if the + cchheecckkwwiinnssiizzee option is enabled or in an interactive shell upon receipt of a SSIIGGWWIINNCCHH. CCOOMMPPRREEPPLLYY An array variable from which bbaasshh reads the possible completions - generated by a shell function invoked by the programmable com- - pletion facility (see PPrrooggrraammmmaabbllee CCoommpplleettiioonn below). Each ar- + generated by a shell function invoked by the programmable com- + pletion facility (see PPrrooggrraammmmaabbllee CCoommpplleettiioonn below). Each ar- ray element contains one possible completion. - EEMMAACCSS If bbaasshh finds this variable in the environment when the shell - starts with value "t", it assumes that the shell is running in + EEMMAACCSS If bbaasshh finds this variable in the environment when the shell + starts with value "t", it assumes that the shell is running in an Emacs shell buffer and disables line editing. - EENNVV Similar to BBAASSHH__EENNVV; used when the shell is invoked in _p_o_s_i_x + EENNVV Similar to BBAASSHH__EENNVV; used when the shell is invoked in _p_o_s_i_x _m_o_d_e. EEXXEECCIIGGNNOORREE - A colon-separated list of shell patterns (see PPaatttteerrnn MMaattcchhiinngg) - defining the list of filenames to be ignored by command search - using PPAATTHH. Files whose full pathnames match one of these pat- - terns are not considered executable files for the purposes of + A colon-separated list of shell patterns (see PPaatttteerrnn MMaattcchhiinngg) + defining the list of filenames to be ignored by command search + using PPAATTHH. Files whose full pathnames match one of these pat- + terns are not considered executable files for the purposes of completion and command execution via PPAATTHH lookup. This does not affect the behavior of the [[, tteesstt, and [[[[ commands. Full path- - names in the command hash table are not subject to EEXXEECCIIGGNNOORREE. - Use this variable to ignore shared library files that have the - executable bit set, but are not executable files. The pattern + names in the command hash table are not subject to EEXXEECCIIGGNNOORREE. + Use this variable to ignore shared library files that have the + executable bit set, but are not executable files. The pattern matching honors the setting of the eexxttgglloobb shell option. FFCCEEDDIITT The default editor for the ffcc builtin command. FFIIGGNNOORREE - A colon-separated list of suffixes to ignore when performing + A colon-separated list of suffixes to ignore when performing filename completion (see RREEAADDLLIINNEE below). A filename whose suf- - fix matches one of the entries in FFIIGGNNOORREE is excluded from the + fix matches one of the entries in FFIIGGNNOORREE is excluded from the list of matched filenames. A sample value is ".o:~". FFUUNNCCNNEESSTT - If set to a numeric value greater than 0, defines a maximum - function nesting level. Function invocations that exceed this + If set to a numeric value greater than 0, defines a maximum + function nesting level. Function invocations that exceed this nesting level will cause the current command to abort. GGLLOOBBIIGGNNOORREE - A colon-separated list of patterns defining the set of file - names to be ignored by pathname expansion. If a file name - matched by a pathname expansion pattern also matches one of the + A colon-separated list of patterns defining the set of file + names to be ignored by pathname expansion. If a file name + matched by a pathname expansion pattern also matches one of the patterns in GGLLOOBBIIGGNNOORREE, it is removed from the list of matches. HHIISSTTCCOONNTTRROOLL - A colon-separated list of values controlling how commands are - saved on the history list. If the list of values includes _i_g_- - _n_o_r_e_s_p_a_c_e, lines which begin with a ssppaaccee character are not - saved in the history list. A value of _i_g_n_o_r_e_d_u_p_s causes lines + A colon-separated list of values controlling how commands are + saved on the history list. If the list of values includes _i_g_- + _n_o_r_e_s_p_a_c_e, lines which begin with a ssppaaccee character are not + saved in the history list. A value of _i_g_n_o_r_e_d_u_p_s causes lines matching the previous history entry to not be saved. A value of _i_g_n_o_r_e_b_o_t_h is shorthand for _i_g_n_o_r_e_s_p_a_c_e and _i_g_n_o_r_e_d_u_p_s. A value of _e_r_a_s_e_d_u_p_s causes all previous lines matching the current line - to be removed from the history list before that line is saved. - Any value not in the above list is ignored. If HHIISSTTCCOONNTTRROOLL is - unset, or does not include a valid value, all lines read by the + to be removed from the history list before that line is saved. + Any value not in the above list is ignored. If HHIISSTTCCOONNTTRROOLL is + unset, or does not include a valid value, all lines read by the shell parser are saved on the history list, subject to the value - of HHIISSTTIIGGNNOORREE. The second and subsequent lines of a multi-line - compound command are not tested, and are added to the history + of HHIISSTTIIGGNNOORREE. The second and subsequent lines of a multi-line + compound command are not tested, and are added to the history regardless of the value of HHIISSTTCCOONNTTRROOLL. HHIISSTTFFIILLEE The name of the file in which command history is saved (see HHIISS-- - TTOORRYY below). The default value is _~_/_._b_a_s_h___h_i_s_t_o_r_y. If unset, + TTOORRYY below). The default value is _~_/_._b_a_s_h___h_i_s_t_o_r_y. If unset, the command history is not saved when a shell exits. HHIISSTTFFIILLEESSIIZZEE The maximum number of lines contained in the history file. When - this variable is assigned a value, the history file is trun- - cated, if necessary, to contain no more than that number of - lines by removing the oldest entries. The history file is also - truncated to this size after writing it when a shell exits. If - the value is 0, the history file is truncated to zero size. - Non-numeric values and numeric values less than zero inhibit - truncation. The shell sets the default value to the value of + this variable is assigned a value, the history file is trun- + cated, if necessary, to contain no more than that number of + lines by removing the oldest entries. The history file is also + truncated to this size after writing it when a shell exits. If + the value is 0, the history file is truncated to zero size. + Non-numeric values and numeric values less than zero inhibit + truncation. The shell sets the default value to the value of HHIISSTTSSIIZZEE after reading any startup files. HHIISSTTIIGGNNOORREE - A colon-separated list of patterns used to decide which command - lines should be saved on the history list. Each pattern is an- - chored at the beginning of the line and must match the complete - line (no implicit `**' is appended). Each pattern is tested - against the line after the checks specified by HHIISSTTCCOONNTTRROOLL are + A colon-separated list of patterns used to decide which command + lines should be saved on the history list. Each pattern is an- + chored at the beginning of the line and must match the complete + line (no implicit `**' is appended). Each pattern is tested + against the line after the checks specified by HHIISSTTCCOONNTTRROOLL are applied. In addition to the normal shell pattern matching char- - acters, `&&' matches the previous history line. `&&' may be es- - caped using a backslash; the backslash is removed before at- - tempting a match. The second and subsequent lines of a multi- - line compound command are not tested, and are added to the his- - tory regardless of the value of HHIISSTTIIGGNNOORREE. The pattern match- + acters, `&&' matches the previous history line. `&&' may be es- + caped using a backslash; the backslash is removed before at- + tempting a match. The second and subsequent lines of a multi- + line compound command are not tested, and are added to the his- + tory regardless of the value of HHIISSTTIIGGNNOORREE. The pattern match- ing honors the setting of the eexxttgglloobb shell option. HHIISSTTSSIIZZEE - The number of commands to remember in the command history (see - HHIISSTTOORRYY below). If the value is 0, commands are not saved in + The number of commands to remember in the command history (see + HHIISSTTOORRYY below). If the value is 0, commands are not saved in the history list. Numeric values less than zero result in every - command being saved on the history list (there is no limit). - The shell sets the default value to 500 after reading any + command being saved on the history list (there is no limit). + The shell sets the default value to 500 after reading any startup files. HHIISSTTTTIIMMEEFFOORRMMAATT - If this variable is set and not null, its value is used as a + If this variable is set and not null, its value is used as a format string for _s_t_r_f_t_i_m_e(3) to print the time stamp associated - with each history entry displayed by the hhiissttoorryy builtin. If - this variable is set, time stamps are written to the history - file so they may be preserved across shell sessions. This uses - the history comment character to distinguish timestamps from + with each history entry displayed by the hhiissttoorryy builtin. If + this variable is set, time stamps are written to the history + file so they may be preserved across shell sessions. This uses + the history comment character to distinguish timestamps from other history lines. HHOOMMEE The home directory of the current user; the default argument for the ccdd builtin command. The value of this variable is also used when performing tilde expansion. HHOOSSTTFFIILLEE - Contains the name of a file in the same format as _/_e_t_c_/_h_o_s_t_s + Contains the name of a file in the same format as _/_e_t_c_/_h_o_s_t_s that should be read when the shell needs to complete a hostname. - The list of possible hostname completions may be changed while - the shell is running; the next time hostname completion is at- - tempted after the value is changed, bbaasshh adds the contents of - the new file to the existing list. If HHOOSSTTFFIILLEE is set, but has - no value, or does not name a readable file, bbaasshh attempts to - read _/_e_t_c_/_h_o_s_t_s to obtain the list of possible hostname comple- + The list of possible hostname completions may be changed while + the shell is running; the next time hostname completion is at- + tempted after the value is changed, bbaasshh adds the contents of + the new file to the existing list. If HHOOSSTTFFIILLEE is set, but has + no value, or does not name a readable file, bbaasshh attempts to + read _/_e_t_c_/_h_o_s_t_s to obtain the list of possible hostname comple- tions. When HHOOSSTTFFIILLEE is unset, the hostname list is cleared. IIFFSS The _I_n_t_e_r_n_a_l _F_i_e_l_d _S_e_p_a_r_a_t_o_r that is used for word splitting af- - ter expansion and to split lines into words with the rreeaadd + ter expansion and to split lines into words with the rreeaadd builtin command. The default value is ``''. IIGGNNOORREEEEOOFF Controls the action of an interactive shell on receipt of an EEOOFF character as the sole input. If set, the value is the number of - consecutive EEOOFF characters which must be typed as the first - characters on an input line before bbaasshh exits. If the variable - exists but does not have a numeric value, or has no value, the - default value is 10. If it does not exist, EEOOFF signifies the + consecutive EEOOFF characters which must be typed as the first + characters on an input line before bbaasshh exits. If the variable + exists but does not have a numeric value, or has no value, the + default value is 10. If it does not exist, EEOOFF signifies the end of input to the shell. IINNPPUUTTRRCC - The filename for the rreeaaddlliinnee startup file, overriding the de- + The filename for the rreeaaddlliinnee startup file, overriding the de- fault of _~_/_._i_n_p_u_t_r_c (see RREEAADDLLIINNEE below). IINNSSIIDDEE__EEMMAACCSS - If this variable appears in the environment when the shell - starts, bbaasshh assumes that it is running inside an Emacs shell - buffer and may disable line editing, depending on the value of + If this variable appears in the environment when the shell + starts, bbaasshh assumes that it is running inside an Emacs shell + buffer and may disable line editing, depending on the value of TTEERRMM. - LLAANNGG Used to determine the locale category for any category not + LLAANNGG Used to determine the locale category for any category not specifically selected with a variable starting with LLCC__. - LLCC__AALLLL This variable overrides the value of LLAANNGG and any other LLCC__ + LLCC__AALLLL This variable overrides the value of LLAANNGG and any other LLCC__ variable specifying a locale category. LLCC__CCOOLLLLAATTEE - This variable determines the collation order used when sorting - the results of pathname expansion, and determines the behavior - of range expressions, equivalence classes, and collating se- + This variable determines the collation order used when sorting + the results of pathname expansion, and determines the behavior + of range expressions, equivalence classes, and collating se- quences within pathname expansion and pattern matching. LLCC__CCTTYYPPEE - This variable determines the interpretation of characters and - the behavior of character classes within pathname expansion and + This variable determines the interpretation of characters and + the behavior of character classes within pathname expansion and pattern matching. LLCC__MMEESSSSAAGGEESS - This variable determines the locale used to translate double- + This variable determines the locale used to translate double- quoted strings preceded by a $$. LLCC__NNUUMMEERRIICC - This variable determines the locale category used for number + This variable determines the locale category used for number formatting. LLCC__TTIIMMEE - This variable determines the locale category used for data and + This variable determines the locale category used for data and time formatting. - LLIINNEESS Used by the sseelleecctt compound command to determine the column - length for printing selection lists. Automatically set if the - cchheecckkwwiinnssiizzee option is enabled or in an interactive shell upon + LLIINNEESS Used by the sseelleecctt compound command to determine the column + length for printing selection lists. Automatically set if the + cchheecckkwwiinnssiizzee option is enabled or in an interactive shell upon receipt of a SSIIGGWWIINNCCHH. - MMAAIILL If this parameter is set to a file or directory name and the - MMAAIILLPPAATTHH variable is not set, bbaasshh informs the user of the ar- + MMAAIILL If this parameter is set to a file or directory name and the + MMAAIILLPPAATTHH variable is not set, bbaasshh informs the user of the ar- rival of mail in the specified file or Maildir-format directory. MMAAIILLCCHHEECCKK - Specifies how often (in seconds) bbaasshh checks for mail. The de- - fault is 60 seconds. When it is time to check for mail, the - shell does so before displaying the primary prompt. If this - variable is unset, or set to a value that is not a number + Specifies how often (in seconds) bbaasshh checks for mail. The de- + fault is 60 seconds. When it is time to check for mail, the + shell does so before displaying the primary prompt. If this + variable is unset, or set to a value that is not a number greater than or equal to zero, the shell disables mail checking. MMAAIILLPPAATTHH A colon-separated list of filenames to be checked for mail. The message to be printed when mail arrives in a particular file may - be specified by separating the filename from the message with a - `?'. When used in the text of the message, $$__ expands to the + be specified by separating the filename from the message with a + `?'. When used in the text of the message, $$__ expands to the name of the current mailfile. Example: MMAAIILLPPAATTHH='/var/mail/bfox?"You have mail":~/shell-mail?"$_ has mail!"' - BBaasshh can be configured to supply a default value for this vari- - able (there is no value by default), but the location of the + BBaasshh can be configured to supply a default value for this vari- + able (there is no value by default), but the location of the user mail files that it uses is system dependent (e.g., /var/mail/$$UUSSEERR). OOPPTTEERRRR If set to the value 1, bbaasshh displays error messages generated by - the ggeettooppttss builtin command (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). - OOPPTTEERRRR is initialized to 1 each time the shell is invoked or a + the ggeettooppttss builtin command (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). + OOPPTTEERRRR is initialized to 1 each time the shell is invoked or a shell script is executed. - PPAATTHH The search path for commands. It is a colon-separated list of - directories in which the shell looks for commands (see CCOOMMMMAANNDD - EEXXEECCUUTTIIOONN below). A zero-length (null) directory name in the + PPAATTHH The search path for commands. It is a colon-separated list of + directories in which the shell looks for commands (see CCOOMMMMAANNDD + EEXXEECCUUTTIIOONN below). A zero-length (null) directory name in the value of PPAATTHH indicates the current directory. A null directory - name may appear as two adjacent colons, or as an initial or - trailing colon. The default path is system-dependent, and is + name may appear as two adjacent colons, or as an initial or + trailing colon. The default path is system-dependent, and is set by the administrator who installs bbaasshh. A common value is ``/usr/local/bin:/usr/lo- cal/sbin:/usr/bin:/usr/sbin:/bin:/sbin''. PPOOSSIIXXLLYY__CCOORRRREECCTT - If this variable is in the environment when bbaasshh starts, the - shell enters _p_o_s_i_x _m_o_d_e before reading the startup files, as if - the ----ppoossiixx invocation option had been supplied. If it is set - while the shell is running, bbaasshh enables _p_o_s_i_x _m_o_d_e, as if the - command _s_e_t _-_o _p_o_s_i_x had been executed. When the shell enters + If this variable is in the environment when bbaasshh starts, the + shell enters _p_o_s_i_x _m_o_d_e before reading the startup files, as if + the ----ppoossiixx invocation option had been supplied. If it is set + while the shell is running, bbaasshh enables _p_o_s_i_x _m_o_d_e, as if the + command _s_e_t _-_o _p_o_s_i_x had been executed. When the shell enters _p_o_s_i_x _m_o_d_e, it sets this variable if it was not already set. PPRROOMMPPTT__CCOOMMMMAANNDD If set, the value is executed as a command prior to issuing each primary prompt. PPRROOMMPPTT__DDIIRRTTRRIIMM - If set to a number greater than zero, the value is used as the + If set to a number greater than zero, the value is used as the number of trailing directory components to retain when expanding - the \\ww and \\WW prompt string escapes (see PPRROOMMPPTTIINNGG below). + the \\ww and \\WW prompt string escapes (see PPRROOMMPPTTIINNGG below). Characters removed are replaced with an ellipsis. - PPSS00 The value of this parameter is expanded (see PPRROOMMPPTTIINNGG below) - and displayed by interactive shells after reading a command and + PPSS00 The value of this parameter is expanded (see PPRROOMMPPTTIINNGG below) + and displayed by interactive shells after reading a command and before the command is executed. - PPSS11 The value of this parameter is expanded (see PPRROOMMPPTTIINNGG below) - and used as the primary prompt string. The default value is + PPSS11 The value of this parameter is expanded (see PPRROOMMPPTTIINNGG below) + and used as the primary prompt string. The default value is ``\\ss--\\vv\\$$ ''. - PPSS22 The value of this parameter is expanded as with PPSS11 and used as + PPSS22 The value of this parameter is expanded as with PPSS11 and used as the secondary prompt string. The default is ``>> ''. PPSS33 The value of this parameter is used as the prompt for the sseelleecctt command (see SSHHEELLLL GGRRAAMMMMAARR above). - PPSS44 The value of this parameter is expanded as with PPSS11 and the + PPSS44 The value of this parameter is expanded as with PPSS11 and the value is printed before each command bbaasshh displays during an ex- ecution trace. The first character of the expanded value of PPSS44 is replicated multiple times, as necessary, to indicate multiple levels of indirection. The default is ``++ ''. - SSHHEELLLL This variable expands to the full pathname to the shell. If it - is not set when the shell starts, bbaasshh assigns to it the full + SSHHEELLLL This variable expands to the full pathname to the shell. If it + is not set when the shell starts, bbaasshh assigns to it the full pathname of the current user's login shell. TTIIMMEEFFOORRMMAATT - The value of this parameter is used as a format string specify- - ing how the timing information for pipelines prefixed with the - ttiimmee reserved word should be displayed. The %% character intro- - duces an escape sequence that is expanded to a time value or - other information. The escape sequences and their meanings are + The value of this parameter is used as a format string specify- + ing how the timing information for pipelines prefixed with the + ttiimmee reserved word should be displayed. The %% character intro- + duces an escape sequence that is expanded to a time value or + other information. The escape sequences and their meanings are as follows; the braces denote optional portions. %%%% A literal %%. %%[[_p]][[ll]]RR The elapsed time in seconds. @@ -1343,77 +1348,77 @@ PPAARRAAMMEETTEERRSS %%[[_p]][[ll]]SS The number of CPU seconds spent in system mode. %%PP The CPU percentage, computed as (%U + %S) / %R. - The optional _p is a digit specifying the _p_r_e_c_i_s_i_o_n, the number + The optional _p is a digit specifying the _p_r_e_c_i_s_i_o_n, the number of fractional digits after a decimal point. A value of 0 causes no decimal point or fraction to be output. At most 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 + 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. - The optional ll specifies a longer format, including minutes, of - the form _M_Mm_S_S._F_Fs. The value of _p determines whether or not + The optional ll specifies a longer format, including minutes, of + the form _M_Mm_S_S._F_Fs. The value of _p determines whether or not the fraction is included. - If this variable is not set, bbaasshh acts as if it had the value - $$''\\nnrreeaall\\tt%%33llRR\\nnuusseerr\\tt%%33llUU\\nnssyyss\\tt%%33llSS''. If the value is null, + If this variable is not set, bbaasshh acts as if it had the value + $$''\\nnrreeaall\\tt%%33llRR\\nnuusseerr\\tt%%33llUU\\nnssyyss\\tt%%33llSS''. If the value is null, no timing information is displayed. A trailing newline is added when the format string is displayed. TTMMOOUUTT If set to a value greater than zero, TTMMOOUUTT is treated as the de- - fault timeout for the rreeaadd builtin. The sseelleecctt command termi- + fault timeout for the rreeaadd builtin. The sseelleecctt command termi- nates if input does not arrive after TTMMOOUUTT seconds when input is - coming from a terminal. In an interactive shell, the value is + coming from a terminal. In an interactive shell, the value is interpreted as the number of seconds to wait for a line of input after issuing the primary prompt. BBaasshh terminates after waiting - for that number of seconds if a complete line of input does not + for that number of seconds if a complete line of input does not arrive. - TTMMPPDDIIRR If set, bbaasshh uses its value as the name of a directory in which + TTMMPPDDIIRR If set, bbaasshh uses its value as the name of a directory in which bbaasshh creates temporary files for the shell's use. aauuttoo__rreessuummee This variable controls how the shell interacts with the user and - job control. If this variable is set, single word simple com- + job control. If this variable is set, single word simple com- mands without redirections are treated as candidates for resump- tion of an existing stopped job. There is no ambiguity allowed; - if there is more than one job beginning with the string typed, - the job most recently accessed is selected. The _n_a_m_e of a - stopped job, in this context, is the command line used to start - it. If set to the value _e_x_a_c_t, the string supplied must match - the name of a stopped job exactly; if set to _s_u_b_s_t_r_i_n_g, the - string supplied needs to match a substring of the name of a - stopped job. The _s_u_b_s_t_r_i_n_g value provides functionality analo- - gous to the %%?? job identifier (see JJOOBB CCOONNTTRROOLL below). If set - to any other value, the supplied string must be a prefix of a + if there is more than one job beginning with the string typed, + the job most recently accessed is selected. The _n_a_m_e of a + stopped job, in this context, is the command line used to start + it. If set to the value _e_x_a_c_t, the string supplied must match + the name of a stopped job exactly; if set to _s_u_b_s_t_r_i_n_g, the + string supplied needs to match a substring of the name of a + stopped job. The _s_u_b_s_t_r_i_n_g value provides functionality analo- + gous to the %%?? job identifier (see JJOOBB CCOONNTTRROOLL below). If set + to any other value, the supplied string must be a prefix of a stopped job's name; this provides functionality analogous to the %%_s_t_r_i_n_g job identifier. hhiissttcchhaarrss - The two or three characters which control history expansion and + The two or three characters which control history expansion and tokenization (see HHIISSTTOORRYY EEXXPPAANNSSIIOONN below). The first character - is the _h_i_s_t_o_r_y _e_x_p_a_n_s_i_o_n character, the character which signals - the start of a history expansion, normally `!!'. The second - character is the _q_u_i_c_k _s_u_b_s_t_i_t_u_t_i_o_n character, which is used as - shorthand for re-running the previous command entered, substi- - tuting one string for another in the command. The default is - `^^'. The optional third character is the character which indi- - cates that the remainder of the line is a comment when found as - the first character of a word, normally `##'. The history com- + is the _h_i_s_t_o_r_y _e_x_p_a_n_s_i_o_n character, the character which signals + the start of a history expansion, normally `!!'. The second + character is the _q_u_i_c_k _s_u_b_s_t_i_t_u_t_i_o_n character, which is used as + shorthand for re-running the previous command entered, substi- + tuting one string for another in the command. The default is + `^^'. The optional third character is the character which indi- + cates that the remainder of the line is a comment when found as + the first character of a word, normally `##'. The history com- ment character causes history substitution to be skipped for the - remaining words on the line. It does not necessarily cause the + remaining words on the line. It does not necessarily cause the shell parser to treat the rest of the line as a comment. AArrrraayyss - BBaasshh provides one-dimensional indexed and associative array variables. - Any variable may be used as an indexed array; the ddeeccllaarree builtin will - explicitly declare an array. There is no maximum limit on the size of - an array, nor any requirement that members be indexed or assigned con- - tiguously. Indexed arrays are referenced using integers (including + BBaasshh provides one-dimensional indexed and associative array variables. + Any variable may be used as an indexed array; the ddeeccllaarree builtin will + explicitly declare an array. There is no maximum limit on the size of + an array, nor any requirement that members be indexed or assigned con- + tiguously. Indexed arrays are referenced using integers (including arithmetic expressions) and are zero-based; associative arrays are ref- erenced using arbitrary strings. Unless otherwise noted, indexed array indices must be non-negative integers. - An indexed array is created automatically if any variable is assigned + An indexed array is created automatically if any variable is assigned to using the syntax _n_a_m_e[_s_u_b_s_c_r_i_p_t]=_v_a_l_u_e. The _s_u_b_s_c_r_i_p_t is treated as an arithmetic expression that must evaluate to a number. To explicitly - declare an indexed array, use ddeeccllaarree --aa _n_a_m_e (see SSHHEELLLL BBUUIILLTTIINN CCOOMM-- - MMAANNDDSS below). ddeeccllaarree --aa _n_a_m_e[[_s_u_b_s_c_r_i_p_t]] is also accepted; the _s_u_b_- + declare an indexed array, use ddeeccllaarree --aa _n_a_m_e (see SSHHEELLLL BBUUIILLTTIINN CCOOMM-- + MMAANNDDSS below). ddeeccllaarree --aa _n_a_m_e[[_s_u_b_s_c_r_i_p_t]] is also accepted; the _s_u_b_- _s_c_r_i_p_t is ignored. Associative arrays are created using ddeeccllaarree --AA _n_a_m_e. @@ -1421,141 +1426,141 @@ PPAARRAAMMEETTEERRSS Attributes may be specified for an array variable using the ddeeccllaarree and rreeaaddoonnllyy builtins. Each attribute applies to all members of an array. - Arrays are assigned to using compound assignments of the form - _n_a_m_e=((value_1 ... value_n)), where each _v_a_l_u_e is of the form [_s_u_b_- - _s_c_r_i_p_t]=_s_t_r_i_n_g. Indexed array assignments do not require anything but + Arrays are assigned to using compound assignments of the form + _n_a_m_e=((value_1 ... value_n)), where each _v_a_l_u_e is of the form [_s_u_b_- + _s_c_r_i_p_t]=_s_t_r_i_n_g. Indexed array assignments do not require anything but _s_t_r_i_n_g. When assigning to indexed arrays, if the optional brackets and - subscript are supplied, that index is assigned to; otherwise the index - of the element assigned is the last index assigned to by the statement + subscript are supplied, that index is assigned to; otherwise the index + of the element assigned is the last index assigned to by the statement plus one. Indexing starts at zero. When assigning to an associative array, the subscript is required. - This syntax is also accepted by the ddeeccllaarree builtin. Individual array - elements may be assigned to using the _n_a_m_e[_s_u_b_s_c_r_i_p_t]=_v_a_l_u_e syntax in- - troduced above. When assigning to an indexed array, if _n_a_m_e is sub- - scripted by a negative number, that number is interpreted as relative - to one greater than the maximum index of _n_a_m_e, so negative indices + This syntax is also accepted by the ddeeccllaarree builtin. Individual array + elements may be assigned to using the _n_a_m_e[_s_u_b_s_c_r_i_p_t]=_v_a_l_u_e syntax in- + troduced above. When assigning to an indexed array, if _n_a_m_e is sub- + scripted by a negative number, that number is interpreted as relative + to one greater than the maximum index of _n_a_m_e, so negative indices count back from the end of the array, and an index of -1 references the last element. - Any element of an array may be referenced using ${_n_a_m_e[_s_u_b_s_c_r_i_p_t]}. + Any element of an array may be referenced using ${_n_a_m_e[_s_u_b_s_c_r_i_p_t]}. The braces are required to avoid conflicts with pathname expansion. If - _s_u_b_s_c_r_i_p_t is @@ or **, the word expands to all members of _n_a_m_e. These - subscripts differ only when the word appears within double quotes. If + _s_u_b_s_c_r_i_p_t is @@ or **, the word expands to all members of _n_a_m_e. These + subscripts differ only when the word appears within double quotes. If the word is double-quoted, ${_n_a_m_e[*]} expands to a single word with the - value of each array member separated by the first character of the IIFFSS + value of each array member separated by the first character of the IIFFSS special variable, and ${_n_a_m_e[@]} expands each element of _n_a_m_e to a sep- - arate word. When there are no array members, ${_n_a_m_e[@]} expands to - nothing. If the double-quoted expansion occurs within a word, the ex- + arate word. When there are no array members, ${_n_a_m_e[@]} expands to + nothing. If the double-quoted expansion occurs within a word, the ex- pansion of the first parameter is joined with the beginning part of the - original word, and the expansion of the last parameter is joined with + original word, and the expansion of the last parameter is joined with the last part of the original word. This is analogous to the expansion - of the special parameters ** and @@ (see SSppeecciiaall PPaarraammeetteerrss above). - ${#_n_a_m_e[_s_u_b_s_c_r_i_p_t]} expands to the length of ${_n_a_m_e[_s_u_b_s_c_r_i_p_t]}. If + of the special parameters ** and @@ (see SSppeecciiaall PPaarraammeetteerrss above). + ${#_n_a_m_e[_s_u_b_s_c_r_i_p_t]} expands to the length of ${_n_a_m_e[_s_u_b_s_c_r_i_p_t]}. If _s_u_b_s_c_r_i_p_t is ** or @@, the expansion is the number of elements in the ar- ray. If the _s_u_b_s_c_r_i_p_t used to reference an element of an indexed array - evaluates to a number less than zero, it is interpreted as relative to - one greater than the maximum index of the array, so negative indices + evaluates to a number less than zero, it is interpreted as relative to + one greater than the maximum index of the array, so negative indices count back from the end of the array, and an index of -1 references the last element. Referencing an array variable without a subscript is equivalent to ref- - erencing the array with a subscript of 0. Any reference to a variable + erencing the array with a subscript of 0. Any reference to a variable using a valid subscript is legal, and bbaasshh will create an array if nec- essary. - An array variable is considered set if a subscript has been assigned a + An array variable is considered set if a subscript has been assigned a value. The null string is a valid value. - It is possible to obtain the keys (indices) of an array as well as the - values. ${!!_n_a_m_e[_@]} and ${!!_n_a_m_e[_*]} expand to the indices assigned in + It is possible to obtain the keys (indices) of an array as well as the + values. ${!!_n_a_m_e[_@]} and ${!!_n_a_m_e[_*]} expand to the indices assigned in array variable _n_a_m_e. The treatment when in double quotes is similar to the expansion of the special parameters _@ and _* within double quotes. The uunnsseett builtin is used to destroy arrays. uunnsseett _n_a_m_e[_s_u_b_s_c_r_i_p_t] de- stroys the array element at index _s_u_b_s_c_r_i_p_t, for both indexed and asso- - ciative arrays. Negative subscripts to indexed arrays are interpreted - as described above. Unsetting the last element of an array variable - does not unset the variable. uunnsseett _n_a_m_e, where _n_a_m_e is an array, or - uunnsseett _n_a_m_e[_s_u_b_s_c_r_i_p_t], where _s_u_b_s_c_r_i_p_t is ** or @@, removes the entire + ciative arrays. Negative subscripts to indexed arrays are interpreted + as described above. Unsetting the last element of an array variable + does not unset the variable. uunnsseett _n_a_m_e, where _n_a_m_e is an array, or + uunnsseett _n_a_m_e[_s_u_b_s_c_r_i_p_t], where _s_u_b_s_c_r_i_p_t is ** or @@, removes the entire array. - When using a variable name with a subscript as an argument to a com- - mand, such as with uunnsseett, without using the word expansion syntax de- + When using a variable name with a subscript as an argument to a com- + mand, such as with uunnsseett, without using the word expansion syntax de- scribed above, the argument is subject to pathname expansion. If path- name expansion is not desired, the argument should be quoted. - The ddeeccllaarree, llooccaall, and rreeaaddoonnllyy builtins each accept a --aa option to - specify an indexed array and a --AA option to specify an associative ar- - ray. If both options are supplied, --AA takes precedence. The rreeaadd - builtin accepts a --aa option to assign a list of words read from the + The ddeeccllaarree, llooccaall, and rreeaaddoonnllyy builtins each accept a --aa option to + specify an indexed array and a --AA option to specify an associative ar- + ray. If both options are supplied, --AA takes precedence. The rreeaadd + builtin accepts a --aa option to assign a list of words read from the standard input to an array. The sseett and ddeeccllaarree builtins display array values in a way that allows them to be reused as assignments. EEXXPPAANNSSIIOONN Expansion is performed on the command line after it has been split into - words. There are seven kinds of expansion performed: _b_r_a_c_e _e_x_p_a_n_s_i_o_n, - _t_i_l_d_e _e_x_p_a_n_s_i_o_n, _p_a_r_a_m_e_t_e_r _a_n_d _v_a_r_i_a_b_l_e _e_x_p_a_n_s_i_o_n, _c_o_m_m_a_n_d _s_u_b_s_t_i_t_u_- + words. There are seven kinds of expansion performed: _b_r_a_c_e _e_x_p_a_n_s_i_o_n, + _t_i_l_d_e _e_x_p_a_n_s_i_o_n, _p_a_r_a_m_e_t_e_r _a_n_d _v_a_r_i_a_b_l_e _e_x_p_a_n_s_i_o_n, _c_o_m_m_a_n_d _s_u_b_s_t_i_t_u_- _t_i_o_n, _a_r_i_t_h_m_e_t_i_c _e_x_p_a_n_s_i_o_n, _w_o_r_d _s_p_l_i_t_t_i_n_g, and _p_a_t_h_n_a_m_e _e_x_p_a_n_s_i_o_n. The order of expansions is: brace expansion; tilde expansion, parameter - and variable expansion, arithmetic expansion, and command substitution - (done in a left-to-right fashion); word splitting; and pathname expan- + and variable expansion, arithmetic expansion, and command substitution + (done in a left-to-right fashion); word splitting; and pathname expan- sion. On systems that can support it, there is an additional expansion avail- - able: _p_r_o_c_e_s_s _s_u_b_s_t_i_t_u_t_i_o_n. This is performed at the same time as - tilde, parameter, variable, and arithmetic expansion and command sub- + able: _p_r_o_c_e_s_s _s_u_b_s_t_i_t_u_t_i_o_n. This is performed at the same time as + tilde, parameter, variable, and arithmetic expansion and command sub- stitution. - After these expansions are performed, quote characters present in the - original word are removed unless they have been quoted themselves + After these expansions are performed, quote characters present in the + original word are removed unless they have been quoted themselves (_q_u_o_t_e _r_e_m_o_v_a_l). - Only brace expansion, word splitting, and pathname expansion can in- - crease the number of words of the expansion; other expansions expand a - single word to a single word. The only exceptions to this are the ex- + Only brace expansion, word splitting, and pathname expansion can in- + crease the number of words of the expansion; other expansions expand a + single word to a single word. The only exceptions to this are the ex- pansions of "$$@@" and "$${{_n_a_m_e[[@@]]}}", and, in most cases, $$** and $${{_n_a_m_e[[**]]}} as explained above (see PPAARRAAMMEETTEERRSS). BBrraaccee EExxppaannssiioonn _B_r_a_c_e _e_x_p_a_n_s_i_o_n is a mechanism by which arbitrary strings may be gener- - ated. This mechanism is similar to _p_a_t_h_n_a_m_e _e_x_p_a_n_s_i_o_n, but the file- + ated. This mechanism is similar to _p_a_t_h_n_a_m_e _e_x_p_a_n_s_i_o_n, but the file- names generated need not exist. Patterns to be brace expanded take the form of an optional _p_r_e_a_m_b_l_e, followed by either a series of comma-sep- - arated strings or a sequence expression between a pair of braces, fol- - lowed by an optional _p_o_s_t_s_c_r_i_p_t. The preamble is prefixed to each + arated strings or a sequence expression between a pair of braces, fol- + lowed by an optional _p_o_s_t_s_c_r_i_p_t. The preamble is prefixed to each string contained within the braces, and the postscript is then appended to each resulting string, expanding left to right. - Brace expansions may be nested. The results of each expanded string - are not sorted; left to right order is preserved. For example, + Brace expansions may be nested. The results of each expanded string + are not sorted; left to right order is preserved. For example, a{{d,c,b}}e expands into `ade ace abe'. - A sequence expression takes the form {{_x...._y[[...._i_n_c_r]]}}, where _x and _y are - either integers or single characters, and _i_n_c_r, an optional increment, - is an integer. When integers are supplied, the expression expands to - each number between _x and _y, inclusive. Supplied integers may be pre- - fixed with _0 to force each term to have the same width. When either _x - or _y begins with a zero, the shell attempts to force all generated - terms to contain the same number of digits, zero-padding where neces- - sary. When characters are supplied, the expression expands to each - character lexicographically between _x and _y, inclusive, using the de- + A sequence expression takes the form {{_x...._y[[...._i_n_c_r]]}}, where _x and _y are + either integers or single characters, and _i_n_c_r, an optional increment, + is an integer. When integers are supplied, the expression expands to + each number between _x and _y, inclusive. Supplied integers may be pre- + fixed with _0 to force each term to have the same width. When either _x + or _y begins with a zero, the shell attempts to force all generated + terms to contain the same number of digits, zero-padding where neces- + sary. When characters are supplied, the expression expands to each + character lexicographically between _x and _y, inclusive, using the de- fault C locale. Note that both _x and _y must be of the same type. When - the increment is supplied, it is used as the difference between each + the increment is supplied, it is used as the difference between each term. The default increment is 1 or -1 as appropriate. Brace expansion is performed before any other expansions, and any char- - acters special to other expansions are preserved in the result. It is - strictly textual. BBaasshh does not apply any syntactic interpretation to + acters special to other expansions are preserved in the result. It is + strictly textual. BBaasshh does not apply any syntactic interpretation to the context of the expansion or the text between the braces. - A correctly-formed brace expansion must contain unquoted opening and + A correctly-formed brace expansion must contain unquoted opening and closing braces, and at least one unquoted comma or a valid sequence ex- pression. Any incorrectly formed brace expansion is left unchanged. A - {{ or ,, may be quoted with a backslash to prevent its being considered - part of a brace expression. To avoid conflicts with parameter expan- + {{ or ,, may be quoted with a backslash to prevent its being considered + part of a brace expression. To avoid conflicts with parameter expan- sion, the string $${{ is not considered eligible for brace expansion, and inhibits brace expansion until the closing }}. @@ -1566,36 +1571,36 @@ EEXXPPAANNSSIIOONN or chown root /usr/{ucb/{ex,edit},lib/{ex?.?*,how_ex}} - Brace expansion introduces a slight incompatibility with historical - versions of sshh. sshh does not treat opening or closing braces specially - when they appear as part of a word, and preserves them in the output. - BBaasshh removes braces from words as a consequence of brace expansion. - For example, a word entered to sshh as _f_i_l_e_{_1_,_2_} appears identically in - the output. The same word is output as _f_i_l_e_1 _f_i_l_e_2 after expansion by - bbaasshh. If strict compatibility with sshh is desired, start bbaasshh with the + Brace expansion introduces a slight incompatibility with historical + versions of sshh. sshh does not treat opening or closing braces specially + when they appear as part of a word, and preserves them in the output. + BBaasshh removes braces from words as a consequence of brace expansion. + For example, a word entered to sshh as _f_i_l_e_{_1_,_2_} appears identically in + the output. The same word is output as _f_i_l_e_1 _f_i_l_e_2 after expansion by + bbaasshh. If strict compatibility with sshh is desired, start bbaasshh with the ++BB option or disable brace expansion with the ++BB option to the sseett com- mand (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). TTiillddee EExxppaannssiioonn - If a word begins with an unquoted tilde character (`~~'), all of the - characters preceding the first unquoted slash (or all characters, if - there is no unquoted slash) are considered a _t_i_l_d_e_-_p_r_e_f_i_x. If none of - the characters in the tilde-prefix are quoted, the characters in the - tilde-prefix following the tilde are treated as a possible _l_o_g_i_n _n_a_m_e. - If this login name is the null string, the tilde is replaced with the - value of the shell parameter HHOOMMEE. If HHOOMMEE is unset, the home direc- - tory of the user executing the shell is substituted instead. Other- - wise, the tilde-prefix is replaced with the home directory associated + If a word begins with an unquoted tilde character (`~~'), all of the + characters preceding the first unquoted slash (or all characters, if + there is no unquoted slash) are considered a _t_i_l_d_e_-_p_r_e_f_i_x. If none of + the characters in the tilde-prefix are quoted, the characters in the + tilde-prefix following the tilde are treated as a possible _l_o_g_i_n _n_a_m_e. + If this login name is the null string, the tilde is replaced with the + value of the shell parameter HHOOMMEE. If HHOOMMEE is unset, the home direc- + tory of the user executing the shell is substituted instead. Other- + wise, the tilde-prefix is replaced with the home directory associated with the specified login name. - If the tilde-prefix is a `~+', the value of the shell variable PPWWDD re- - places the tilde-prefix. If the tilde-prefix is a `~-', the value of - the shell variable OOLLDDPPWWDD, if it is set, is substituted. If the char- - acters following the tilde in the tilde-prefix consist of a number _N, - optionally prefixed by a `+' or a `-', the tilde-prefix is replaced + If the tilde-prefix is a `~+', the value of the shell variable PPWWDD re- + places the tilde-prefix. If the tilde-prefix is a `~-', the value of + the shell variable OOLLDDPPWWDD, if it is set, is substituted. If the char- + acters following the tilde in the tilde-prefix consist of a number _N, + optionally prefixed by a `+' or a `-', the tilde-prefix is replaced with the corresponding element from the directory stack, as it would be displayed by the ddiirrss builtin invoked with the tilde-prefix as an argu- - ment. If the characters following the tilde in the tilde-prefix con- + ment. If the characters following the tilde in the tilde-prefix con- sist of a number without a leading `+' or `-', `+' is assumed. If the login name is invalid, or the tilde expansion fails, the word is @@ -1604,139 +1609,139 @@ EEXXPPAANNSSIIOONN Each variable assignment is checked for unquoted tilde-prefixes immedi- ately following a :: or the first ==. In these cases, tilde expansion is also performed. Consequently, one may use filenames with tildes in as- - signments to PPAATTHH, MMAAIILLPPAATTHH, and CCDDPPAATTHH, and the shell assigns the ex- + signments to PPAATTHH, MMAAIILLPPAATTHH, and CCDDPPAATTHH, and the shell assigns the ex- panded value. - Bash also performs tilde expansion on words satisfying the conditions + Bash also performs tilde expansion on words satisfying the conditions of variable assignments (as described above under PPAARRAAMMEETTEERRSS) when they - appear as arguments to simple commands. Bash does not do this, except + appear as arguments to simple commands. Bash does not do this, except for the _d_e_c_l_a_r_a_t_i_o_n commands listed above, when in _p_o_s_i_x _m_o_d_e. PPaarraammeetteerr EExxppaannssiioonn The `$$' character introduces parameter expansion, command substitution, - or arithmetic expansion. The parameter name or symbol to be expanded - may be enclosed in braces, which are optional but serve to protect the - variable to be expanded from characters immediately following it which + or arithmetic expansion. The parameter name or symbol to be expanded + may be enclosed in braces, which are optional but serve to protect the + variable to be expanded from characters immediately following it which could be interpreted as part of the name. - When braces are used, the matching ending brace is the first `}}' not + When braces are used, the matching ending brace is the first `}}' not escaped by a backslash or within a quoted string, and not within an em- - bedded arithmetic expansion, command substitution, or parameter expan- + bedded arithmetic expansion, command substitution, or parameter expan- sion. ${_p_a_r_a_m_e_t_e_r} - The value of _p_a_r_a_m_e_t_e_r is substituted. The braces are required - when _p_a_r_a_m_e_t_e_r is a positional parameter with more than one + The value of _p_a_r_a_m_e_t_e_r is substituted. The braces are required + when _p_a_r_a_m_e_t_e_r is a positional parameter with more than one digit, or when _p_a_r_a_m_e_t_e_r is followed by a character which is not to be interpreted as part of its name. The _p_a_r_a_m_e_t_e_r is a shell - parameter as described above PPAARRAAMMEETTEERRSS) or an array reference + parameter as described above PPAARRAAMMEETTEERRSS) or an array reference (AArrrraayyss). - If the first character of _p_a_r_a_m_e_t_e_r is an exclamation point (!!), and + If the first character of _p_a_r_a_m_e_t_e_r is an exclamation point (!!), and _p_a_r_a_m_e_t_e_r is not a _n_a_m_e_r_e_f, it introduces a level of indirection. BBaasshh uses the value formed by expanding the rest of _p_a_r_a_m_e_t_e_r as the new _p_a_- - _r_a_m_e_t_e_r; this is then expanded and that value is used in the rest of - the expansion, rather than the expansion of the original _p_a_r_a_m_e_t_e_r. + _r_a_m_e_t_e_r; this is then expanded and that value is used in the rest of + the expansion, rather than the expansion of the original _p_a_r_a_m_e_t_e_r. This is known as _i_n_d_i_r_e_c_t _e_x_p_a_n_s_i_o_n. The value is subject to tilde ex- - pansion, parameter expansion, command substitution, and arithmetic ex- - pansion. If _p_a_r_a_m_e_t_e_r is a nameref, this expands to the name of the - parameter referenced by _p_a_r_a_m_e_t_e_r instead of performing the complete - indirect expansion. The exceptions to this are the expansions of - ${!!_p_r_e_f_i_x**} and ${!!_n_a_m_e[_@]} described below. The exclamation point - must immediately follow the left brace in order to introduce indirec- + pansion, parameter expansion, command substitution, and arithmetic ex- + pansion. If _p_a_r_a_m_e_t_e_r is a nameref, this expands to the name of the + parameter referenced by _p_a_r_a_m_e_t_e_r instead of performing the complete + indirect expansion. The exceptions to this are the expansions of + ${!!_p_r_e_f_i_x**} and ${!!_n_a_m_e[_@]} described below. The exclamation point + must immediately follow the left brace in order to introduce indirec- tion. In each of the cases below, _w_o_r_d is subject to tilde expansion, parame- ter expansion, command substitution, and arithmetic expansion. When not performing substring expansion, using the forms documented be- - low (e.g., ::--), bbaasshh tests for a parameter that is unset or null. - Omitting the colon results in a test only for a parameter that is un- + low (e.g., ::--), bbaasshh tests for a parameter that is unset or null. + Omitting the colon results in a test only for a parameter that is un- set. ${_p_a_r_a_m_e_t_e_r::--_w_o_r_d} - UUssee DDeeffaauulltt VVaalluueess. If _p_a_r_a_m_e_t_e_r is unset or null, the expan- - sion of _w_o_r_d is substituted. Otherwise, the value of _p_a_r_a_m_e_t_e_r + UUssee DDeeffaauulltt VVaalluueess. If _p_a_r_a_m_e_t_e_r is unset or null, the expan- + sion of _w_o_r_d is substituted. Otherwise, the value of _p_a_r_a_m_e_t_e_r is substituted. ${_p_a_r_a_m_e_t_e_r::==_w_o_r_d} - AAssssiiggnn DDeeffaauulltt VVaalluueess. If _p_a_r_a_m_e_t_e_r is unset or null, the ex- - pansion of _w_o_r_d is assigned to _p_a_r_a_m_e_t_e_r. The value of _p_a_r_a_m_e_- - _t_e_r is then substituted. Positional parameters and special pa- + AAssssiiggnn DDeeffaauulltt VVaalluueess. If _p_a_r_a_m_e_t_e_r is unset or null, the ex- + pansion of _w_o_r_d is assigned to _p_a_r_a_m_e_t_e_r. The value of _p_a_r_a_m_e_- + _t_e_r is then substituted. Positional parameters and special pa- rameters may not be assigned to in this way. ${_p_a_r_a_m_e_t_e_r::??_w_o_r_d} - DDiissppllaayy EErrrroorr iiff NNuullll oorr UUnnsseett. If _p_a_r_a_m_e_t_e_r is null or unset, - the expansion of _w_o_r_d (or a message to that effect if _w_o_r_d is - not present) is written to the standard error and the shell, if + DDiissppllaayy EErrrroorr iiff NNuullll oorr UUnnsseett. If _p_a_r_a_m_e_t_e_r is null or unset, + the expansion of _w_o_r_d (or a message to that effect if _w_o_r_d is + not present) is written to the standard error and the shell, if it is not interactive, exits. Otherwise, the value of _p_a_r_a_m_e_t_e_r is substituted. ${_p_a_r_a_m_e_t_e_r::++_w_o_r_d} - UUssee AAlltteerrnnaattee VVaalluuee. If _p_a_r_a_m_e_t_e_r is null or unset, nothing is + UUssee AAlltteerrnnaattee VVaalluuee. If _p_a_r_a_m_e_t_e_r is null or unset, nothing is substituted, otherwise the expansion of _w_o_r_d is substituted. ${_p_a_r_a_m_e_t_e_r::_o_f_f_s_e_t} ${_p_a_r_a_m_e_t_e_r::_o_f_f_s_e_t::_l_e_n_g_t_h} - SSuubbssttrriinngg EExxppaannssiioonn. Expands to up to _l_e_n_g_t_h characters of the - value of _p_a_r_a_m_e_t_e_r starting at the character specified by _o_f_f_- + SSuubbssttrriinngg EExxppaannssiioonn. Expands to up to _l_e_n_g_t_h characters of the + value of _p_a_r_a_m_e_t_e_r starting at the character specified by _o_f_f_- _s_e_t. If _p_a_r_a_m_e_t_e_r is @@, an indexed array subscripted by @@ or **, - or an associative array name, the results differ as described - below. If _l_e_n_g_t_h is omitted, expands to the substring of the + or an associative array name, the results differ as described + below. If _l_e_n_g_t_h is omitted, expands to the substring of the value of _p_a_r_a_m_e_t_e_r starting at the character specified by _o_f_f_s_e_t - and extending to the end of the value. _l_e_n_g_t_h and _o_f_f_s_e_t are + and extending to the end of the value. _l_e_n_g_t_h and _o_f_f_s_e_t are arithmetic expressions (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN below). - If _o_f_f_s_e_t evaluates to a number less than zero, the value is + If _o_f_f_s_e_t evaluates to a number less than zero, the value is used as an offset in characters from the end of the value of _p_a_- - _r_a_m_e_t_e_r. If _l_e_n_g_t_h evaluates to a number less than zero, it is + _r_a_m_e_t_e_r. If _l_e_n_g_t_h evaluates to a number less than zero, it is interpreted as an offset in characters from the end of the value - of _p_a_r_a_m_e_t_e_r rather than a number of characters, and the expan- - sion is the characters between _o_f_f_s_e_t and that result. Note - that a negative offset must be separated from the colon by at + of _p_a_r_a_m_e_t_e_r rather than a number of characters, and the expan- + sion is the characters between _o_f_f_s_e_t and that result. Note + that a negative offset must be separated from the colon by at least one space to avoid being confused with the ::-- expansion. - If _p_a_r_a_m_e_t_e_r is @@, the result is _l_e_n_g_t_h positional parameters + If _p_a_r_a_m_e_t_e_r is @@, the result is _l_e_n_g_t_h positional parameters beginning at _o_f_f_s_e_t. A negative _o_f_f_s_e_t is taken relative to one - greater than the greatest positional parameter, so an offset of - -1 evaluates to the last positional parameter. It is an expan- + greater than the greatest positional parameter, so an offset of + -1 evaluates to the last positional parameter. It is an expan- sion error if _l_e_n_g_t_h evaluates to a number less than zero. If _p_a_r_a_m_e_t_e_r is an indexed array name subscripted by @ or *, the - result is the _l_e_n_g_t_h members of the array beginning with ${_p_a_- - _r_a_m_e_t_e_r[_o_f_f_s_e_t]}. A negative _o_f_f_s_e_t is taken relative to one + result is the _l_e_n_g_t_h members of the array beginning with ${_p_a_- + _r_a_m_e_t_e_r[_o_f_f_s_e_t]}. A negative _o_f_f_s_e_t is taken relative to one greater than the maximum index of the specified array. It is an expansion error if _l_e_n_g_t_h evaluates to a number less than zero. Substring expansion applied to an associative array produces un- defined results. - Substring indexing is zero-based unless the positional parame- - ters are used, in which case the indexing starts at 1 by de- - fault. If _o_f_f_s_e_t is 0, and the positional parameters are used, + Substring indexing is zero-based unless the positional parame- + ters are used, in which case the indexing starts at 1 by de- + fault. If _o_f_f_s_e_t is 0, and the positional parameters are used, $$00 is prefixed to the list. ${!!_p_r_e_f_i_x**} ${!!_p_r_e_f_i_x@@} - NNaammeess mmaattcchhiinngg pprreeffiixx. Expands to the names of variables whose + NNaammeess mmaattcchhiinngg pprreeffiixx. Expands to the names of variables whose names begin with _p_r_e_f_i_x, separated by the first character of the - IIFFSS special variable. When _@ is used and the expansion appears - within double quotes, each variable name expands to a separate + IIFFSS special variable. When _@ is used and the expansion appears + within double quotes, each variable name expands to a separate word. ${!!_n_a_m_e[_@]} ${!!_n_a_m_e[_*]} - LLiisstt ooff aarrrraayy kkeeyyss. If _n_a_m_e is an array variable, expands to - the list of array indices (keys) assigned in _n_a_m_e. If _n_a_m_e is - not an array, expands to 0 if _n_a_m_e is set and null otherwise. - When _@ is used and the expansion appears within double quotes, + LLiisstt ooff aarrrraayy kkeeyyss. If _n_a_m_e is an array variable, expands to + the list of array indices (keys) assigned in _n_a_m_e. If _n_a_m_e is + not an array, expands to 0 if _n_a_m_e is set and null otherwise. + When _@ is used and the expansion appears within double quotes, each key expands to a separate word. ${##_p_a_r_a_m_e_t_e_r} - PPaarraammeetteerr lleennggtthh. The length in characters of the value of _p_a_- - _r_a_m_e_t_e_r is substituted. If _p_a_r_a_m_e_t_e_r is ** or @@, the value sub- - stituted is the number of positional parameters. If _p_a_r_a_m_e_t_e_r + PPaarraammeetteerr lleennggtthh. The length in characters of the value of _p_a_- + _r_a_m_e_t_e_r is substituted. If _p_a_r_a_m_e_t_e_r is ** or @@, the value sub- + stituted is the number of positional parameters. If _p_a_r_a_m_e_t_e_r is an array name subscripted by ** or @@, the value substituted is the number of elements in the array. If _p_a_r_a_m_e_t_e_r is an indexed - array name subscripted by a negative number, that number is in- - terpreted as relative to one greater than the maximum index of - _p_a_r_a_m_e_t_e_r, so negative indices count back from the end of the + array name subscripted by a negative number, that number is in- + terpreted as relative to one greater than the maximum index of + _p_a_r_a_m_e_t_e_r, so negative indices count back from the end of the array, and an index of -1 references the last element. ${_p_a_r_a_m_e_t_e_r##_w_o_r_d} @@ -1744,15 +1749,15 @@ EEXXPPAANNSSIIOONN RReemmoovvee mmaattcchhiinngg pprreeffiixx ppaatttteerrnn. The _w_o_r_d is expanded to produce a pattern just as in pathname expansion, and matched against the expanded value of _p_a_r_a_m_e_t_e_r using the rules described under PPaatt-- - tteerrnn MMaattcchhiinngg below. If the pattern matches the beginning of - the value of _p_a_r_a_m_e_t_e_r, then the result of the expansion is the - expanded value of _p_a_r_a_m_e_t_e_r with the shortest matching pattern - (the ``##'' case) or the longest matching pattern (the ``####'' - case) deleted. If _p_a_r_a_m_e_t_e_r is @@ or **, the pattern removal op- + tteerrnn MMaattcchhiinngg below. If the pattern matches the beginning of + the value of _p_a_r_a_m_e_t_e_r, then the result of the expansion is the + expanded value of _p_a_r_a_m_e_t_e_r with the shortest matching pattern + (the ``##'' case) or the longest matching pattern (the ``####'' + case) deleted. If _p_a_r_a_m_e_t_e_r is @@ or **, the pattern removal op- eration is applied to each positional parameter in turn, and the expansion is the resultant list. If _p_a_r_a_m_e_t_e_r is an array vari- - able subscripted with @@ or **, the pattern removal operation is - applied to each member of the array in turn, and the expansion + able subscripted with @@ or **, the pattern removal operation is + applied to each member of the array in turn, and the expansion is the resultant list. ${_p_a_r_a_m_e_t_e_r%%_w_o_r_d} @@ -1760,87 +1765,87 @@ EEXXPPAANNSSIIOONN RReemmoovvee mmaattcchhiinngg ssuuffffiixx ppaatttteerrnn. The _w_o_r_d is expanded to produce a pattern just as in pathname expansion, and matched against the expanded value of _p_a_r_a_m_e_t_e_r using the rules described under PPaatt-- - tteerrnn MMaattcchhiinngg below. If the pattern matches a trailing portion - of the expanded value of _p_a_r_a_m_e_t_e_r, then the result of the ex- - pansion is the expanded value of _p_a_r_a_m_e_t_e_r with the shortest - matching pattern (the ``%%'' case) or the longest matching pat- - tern (the ``%%%%'' case) deleted. If _p_a_r_a_m_e_t_e_r is @@ or **, the - pattern removal operation is applied to each positional parame- + tteerrnn MMaattcchhiinngg below. If the pattern matches a trailing portion + of the expanded value of _p_a_r_a_m_e_t_e_r, then the result of the ex- + pansion is the expanded value of _p_a_r_a_m_e_t_e_r with the shortest + matching pattern (the ``%%'' case) or the longest matching pat- + tern (the ``%%%%'' case) deleted. If _p_a_r_a_m_e_t_e_r is @@ or **, the + pattern removal operation is applied to each positional parame- ter in turn, and the expansion is the resultant list. If _p_a_r_a_m_- - _e_t_e_r is an array variable subscripted with @@ or **, the pattern - removal operation is applied to each member of the array in + _e_t_e_r is an array variable subscripted with @@ or **, the pattern + removal operation is applied to each member of the array in turn, and the expansion is the resultant list. ${_p_a_r_a_m_e_t_e_r//_p_a_t_t_e_r_n//_s_t_r_i_n_g} PPaatttteerrnn ssuubbssttiittuuttiioonn. The _p_a_t_t_e_r_n is expanded to produce a pat- - tern just as in pathname expansion, _P_a_r_a_m_e_t_e_r is expanded and - the longest match of _p_a_t_t_e_r_n against its value is replaced with - _s_t_r_i_n_g. The match is performed using the rules described under - PPaatttteerrnn MMaattcchhiinngg below. If _p_a_t_t_e_r_n begins with //, all matches - of _p_a_t_t_e_r_n are replaced with _s_t_r_i_n_g. Normally only the first - match is replaced. If _p_a_t_t_e_r_n begins with ##, it must match at - the beginning of the expanded value of _p_a_r_a_m_e_t_e_r. If _p_a_t_t_e_r_n + tern just as in pathname expansion, _P_a_r_a_m_e_t_e_r is expanded and + the longest match of _p_a_t_t_e_r_n against its value is replaced with + _s_t_r_i_n_g. The match is performed using the rules described under + PPaatttteerrnn MMaattcchhiinngg below. If _p_a_t_t_e_r_n begins with //, all matches + of _p_a_t_t_e_r_n are replaced with _s_t_r_i_n_g. Normally only the first + match is replaced. If _p_a_t_t_e_r_n begins with ##, it must match at + the beginning of the expanded value of _p_a_r_a_m_e_t_e_r. If _p_a_t_t_e_r_n begins with %%, it must match at the end of the expanded value of - _p_a_r_a_m_e_t_e_r. If _s_t_r_i_n_g is null, matches of _p_a_t_t_e_r_n are deleted - and the // following _p_a_t_t_e_r_n may be omitted. If the nnooccaasseemmaattcchh - shell option is enabled, the match is performed without regard - to the case of alphabetic characters. If _p_a_r_a_m_e_t_e_r is @@ or **, + _p_a_r_a_m_e_t_e_r. If _s_t_r_i_n_g is null, matches of _p_a_t_t_e_r_n are deleted + and the // following _p_a_t_t_e_r_n may be omitted. If the nnooccaasseemmaattcchh + shell option is enabled, the match is performed without regard + to the case of alphabetic characters. If _p_a_r_a_m_e_t_e_r is @@ or **, the substitution operation is applied to each positional parame- ter in turn, and the expansion is the resultant list. If _p_a_r_a_m_- _e_t_e_r is an array variable subscripted with @@ or **, the substitu- - tion operation is applied to each member of the array in turn, + tion operation is applied to each member of the array in turn, and the expansion is the resultant list. ${_p_a_r_a_m_e_t_e_r^^_p_a_t_t_e_r_n} ${_p_a_r_a_m_e_t_e_r^^^^_p_a_t_t_e_r_n} ${_p_a_r_a_m_e_t_e_r,,_p_a_t_t_e_r_n} ${_p_a_r_a_m_e_t_e_r,,,,_p_a_t_t_e_r_n} - CCaassee mmooddiiffiiccaattiioonn. This expansion modifies the case of alpha- - betic characters in _p_a_r_a_m_e_t_e_r. The _p_a_t_t_e_r_n is expanded to pro- + CCaassee mmooddiiffiiccaattiioonn. This expansion modifies the case of alpha- + betic characters in _p_a_r_a_m_e_t_e_r. The _p_a_t_t_e_r_n is expanded to pro- duce a pattern just as in pathname expansion. Each character in - the expanded value of _p_a_r_a_m_e_t_e_r is tested against _p_a_t_t_e_r_n, and, - if it matches the pattern, its case is converted. The pattern - should not attempt to match more than one character. The ^^ op- + the expanded value of _p_a_r_a_m_e_t_e_r is tested against _p_a_t_t_e_r_n, and, + if it matches the pattern, its case is converted. The pattern + should not attempt to match more than one character. The ^^ op- erator converts lowercase letters matching _p_a_t_t_e_r_n to uppercase; the ,, operator converts matching uppercase letters to lowercase. - The ^^^^ and ,,,, expansions convert each matched character in the - expanded value; the ^^ and ,, expansions match and convert only - the first character in the expanded value. If _p_a_t_t_e_r_n is omit- - ted, it is treated like a ??, which matches every character. If - _p_a_r_a_m_e_t_e_r is @@ or **, the case modification operation is applied - to each positional parameter in turn, and the expansion is the - resultant list. If _p_a_r_a_m_e_t_e_r is an array variable subscripted - with @@ or **, the case modification operation is applied to each - member of the array in turn, and the expansion is the resultant + The ^^^^ and ,,,, expansions convert each matched character in the + expanded value; the ^^ and ,, expansions match and convert only + the first character in the expanded value. If _p_a_t_t_e_r_n is omit- + ted, it is treated like a ??, which matches every character. If + _p_a_r_a_m_e_t_e_r is @@ or **, the case modification operation is applied + to each positional parameter in turn, and the expansion is the + resultant list. If _p_a_r_a_m_e_t_e_r is an array variable subscripted + with @@ or **, the case modification operation is applied to each + member of the array in turn, and the expansion is the resultant list. ${_p_a_r_a_m_e_t_e_r@@_o_p_e_r_a_t_o_r} PPaarraammeetteerr ttrraannssffoorrmmaattiioonn. The expansion is either a transforma- - tion of the value of _p_a_r_a_m_e_t_e_r or information about _p_a_r_a_m_e_t_e_r - itself, depending on the value of _o_p_e_r_a_t_o_r. Each _o_p_e_r_a_t_o_r is a + tion of the value of _p_a_r_a_m_e_t_e_r or information about _p_a_r_a_m_e_t_e_r + itself, depending on the value of _o_p_e_r_a_t_o_r. Each _o_p_e_r_a_t_o_r is a single letter: - QQ The expansion is a string that is the value of _p_a_r_a_m_e_t_e_r + QQ The expansion is a string that is the value of _p_a_r_a_m_e_t_e_r quoted in a format that can be reused as input. - EE The expansion is a string that is the value of _p_a_r_a_m_e_t_e_r - with backslash escape sequences expanded as with the + EE The expansion is a string that is the value of _p_a_r_a_m_e_t_e_r + with backslash escape sequences expanded as with the $$''......'' quoting mechanism. PP The expansion is a string that is the result of expanding the value of _p_a_r_a_m_e_t_e_r as if it were a prompt string (see PPRROOMMPPTTIINNGG below). - AA The expansion is a string in the form of an assignment - statement or ddeeccllaarree command that, if evaluated, will + AA The expansion is a string in the form of an assignment + statement or ddeeccllaarree command that, if evaluated, will recreate _p_a_r_a_m_e_t_e_r with its attributes and value. - aa The expansion is a string consisting of flag values rep- + aa The expansion is a string consisting of flag values rep- resenting _p_a_r_a_m_e_t_e_r's attributes. - If _p_a_r_a_m_e_t_e_r is @@ or **, the operation is applied to each posi- - tional parameter in turn, and the expansion is the resultant - list. If _p_a_r_a_m_e_t_e_r is an array variable subscripted with @@ or + If _p_a_r_a_m_e_t_e_r is @@ or **, the operation is applied to each posi- + tional parameter in turn, and the expansion is the resultant + list. If _p_a_r_a_m_e_t_e_r is an array variable subscripted with @@ or **, the operation is applied to each member of the array in turn, and the expansion is the resultant list. - The result of the expansion is subject to word splitting and + The result of the expansion is subject to word splitting and pathname expansion as described below. CCoommmmaanndd SSuubbssttiittuuttiioonn @@ -1854,120 +1859,120 @@ EEXXPPAANNSSIIOONN BBaasshh performs the expansion by executing _c_o_m_m_a_n_d in a subshell environ- ment and replacing the command substitution with the standard output of the command, with any trailing newlines deleted. Embedded newlines are - not deleted, but they may be removed during word splitting. The com- - mand substitution $$((ccaatt _f_i_l_e)) can be replaced by the equivalent but + not deleted, but they may be removed during word splitting. The com- + mand substitution $$((ccaatt _f_i_l_e)) can be replaced by the equivalent but faster $$((<< _f_i_l_e)). - When the old-style backquote form of substitution is used, backslash - retains its literal meaning except when followed by $$, ``, or \\. The + When the old-style backquote form of substitution is used, backslash + retains its literal meaning except when followed by $$, ``, or \\. The first backquote not preceded by a backslash terminates the command sub- - stitution. When using the $(_c_o_m_m_a_n_d) form, all characters between the + stitution. When using the $(_c_o_m_m_a_n_d) form, all characters between the parentheses make up the command; none are treated specially. Command substitutions may be nested. To nest when using the backquoted form, escape the inner backquotes with backslashes. - If the substitution appears within double quotes, word splitting and + If the substitution appears within double quotes, word splitting and pathname expansion are not performed on the results. AArriitthhmmeettiicc EExxppaannssiioonn - Arithmetic expansion allows the evaluation of an arithmetic expression - and the substitution of the result. The format for arithmetic expan- + Arithmetic expansion allows the evaluation of an arithmetic expression + and the substitution of the result. The format for arithmetic expan- sion is: $$((((_e_x_p_r_e_s_s_i_o_n)))) - The _e_x_p_r_e_s_s_i_o_n is treated as if it were within double quotes, but a - double quote inside the parentheses is not treated specially. All to- - kens in the expression undergo parameter and variable expansion, com- - mand substitution, and quote removal. The result is treated as the - arithmetic expression to be evaluated. Arithmetic expansions may be + The _e_x_p_r_e_s_s_i_o_n is treated as if it were within double quotes, but a + double quote inside the parentheses is not treated specially. All to- + kens in the expression undergo parameter and variable expansion, com- + mand substitution, and quote removal. The result is treated as the + arithmetic expression to be evaluated. Arithmetic expansions may be nested. - The evaluation is performed according to the rules listed below under + The evaluation is performed according to the rules listed below under AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN. If _e_x_p_r_e_s_s_i_o_n is invalid, bbaasshh prints a message indicating failure and no substitution occurs. PPrroocceessss SSuubbssttiittuuttiioonn - _P_r_o_c_e_s_s _s_u_b_s_t_i_t_u_t_i_o_n allows a process's input or output to be referred - to using a filename. It takes the form of <<((_l_i_s_t)) or >>((_l_i_s_t)). The - process _l_i_s_t is run asynchronously, and its input or output appears as + _P_r_o_c_e_s_s _s_u_b_s_t_i_t_u_t_i_o_n allows a process's input or output to be referred + to using a filename. It takes the form of <<((_l_i_s_t)) or >>((_l_i_s_t)). The + process _l_i_s_t is run asynchronously, and its input or output appears as a filename. This filename is passed as an argument to the current com- - mand as the result of the expansion. If the >>((_l_i_s_t)) form is used, - writing to the file will provide input for _l_i_s_t. If the <<((_l_i_s_t)) form - is used, the file passed as an argument should be read to obtain the + mand as the result of the expansion. If the >>((_l_i_s_t)) form is used, + writing to the file will provide input for _l_i_s_t. If the <<((_l_i_s_t)) form + is used, the file passed as an argument should be read to obtain the output of _l_i_s_t. Process substitution is supported on systems that sup- port named pipes (_F_I_F_O_s) or the //ddeevv//ffdd method of naming open files. - When available, process substitution is performed simultaneously with - parameter and variable expansion, command substitution, and arithmetic + When available, process substitution is performed simultaneously with + parameter and variable expansion, command substitution, and arithmetic expansion. WWoorrdd SSpplliittttiinngg - The shell scans the results of parameter expansion, command substitu- - tion, and arithmetic expansion that did not occur within double quotes + The shell scans the results of parameter expansion, command substitu- + tion, and arithmetic expansion that did not occur within double quotes for _w_o_r_d _s_p_l_i_t_t_i_n_g. - The shell treats each character of IIFFSS as a delimiter, and splits the - results of the other expansions into words using these characters as - field terminators. If IIFFSS is unset, or its value is exactly - <><><>, the default, then sequences of <>, <>, - and <> at the beginning and end of the results of the previous - expansions are ignored, and any sequence of IIFFSS characters not at the - beginning or end serves to delimit words. If IIFFSS has a value other - than the default, then sequences of the whitespace characters ssppaaccee, - ttaabb, and nneewwlliinnee are ignored at the beginning and end of the word, as - long as the whitespace character is in the value of IIFFSS (an IIFFSS white- - space character). Any character in IIFFSS that is not IIFFSS whitespace, + The shell treats each character of IIFFSS as a delimiter, and splits the + results of the other expansions into words using these characters as + field terminators. If IIFFSS is unset, or its value is exactly + <><><>, the default, then sequences of <>, <>, + and <> at the beginning and end of the results of the previous + expansions are ignored, and any sequence of IIFFSS characters not at the + beginning or end serves to delimit words. If IIFFSS has a value other + than the default, then sequences of the whitespace characters ssppaaccee, + ttaabb, and nneewwlliinnee are ignored at the beginning and end of the word, as + long as the whitespace character is in the value of IIFFSS (an IIFFSS white- + space character). Any character in IIFFSS that is not IIFFSS whitespace, along with any adjacent IIFFSS whitespace characters, delimits a field. A - sequence of IIFFSS whitespace characters is also treated as a delimiter. + sequence of IIFFSS whitespace characters is also treated as a delimiter. If the value of IIFFSS is null, no word splitting occurs. - Explicit null arguments ("""" or '''') are retained and passed to commands + Explicit null arguments ("""" or '''') are retained and passed to commands as empty strings. Unquoted implicit null arguments, resulting from the expansion of parameters that have no values, are removed. If a parame- ter with no value is expanded within double quotes, a null argument re- sults and is retained and passed to a command as an empty string. When - a quoted null argument appears as part of a word whose expansion is + a quoted null argument appears as part of a word whose expansion is non-null, the null argument is removed. That is, the word -d'' becomes -d after word splitting and null argument removal. Note that if no expansion occurs, no splitting is performed. PPaatthhnnaammee EExxppaannssiioonn - After word splitting, unless the --ff option has been set, bbaasshh scans - each word for the characters **, ??, and [[. If one of these characters + After word splitting, unless the --ff option has been set, bbaasshh scans + each word for the characters **, ??, and [[. If one of these characters appears, and is not quoted, then the word is regarded as a _p_a_t_t_e_r_n, and - replaced with an alphabetically sorted list of filenames matching the - pattern (see PPaatttteerrnn MMaattcchhiinngg below). If no matching filenames are - found, and the shell option nnuullllgglloobb is not enabled, the word is left - unchanged. If the nnuullllgglloobb option is set, and no matches are found, - the word is removed. If the ffaaiillgglloobb shell option is set, and no - matches are found, an error message is printed and the command is not + replaced with an alphabetically sorted list of filenames matching the + pattern (see PPaatttteerrnn MMaattcchhiinngg below). If no matching filenames are + found, and the shell option nnuullllgglloobb is not enabled, the word is left + unchanged. If the nnuullllgglloobb option is set, and no matches are found, + the word is removed. If the ffaaiillgglloobb shell option is set, and no + matches are found, an error message is printed and the command is not executed. If the shell option nnooccaasseegglloobb is enabled, the match is per- - formed without regard to the case of alphabetic characters. When a - pattern is used for pathname expansion, the character ````..'''' at the - start of a name or immediately following a slash must be matched ex- - plicitly, unless the shell option ddoottgglloobb is set. The filenames ````..'''' - and ````....'''' must always be matched explicitly, even if ddoottgglloobb is set. - In other cases, the ````..'''' character is not treated specially. When + formed without regard to the case of alphabetic characters. When a + pattern is used for pathname expansion, the character ````..'''' at the + start of a name or immediately following a slash must be matched ex- + plicitly, unless the shell option ddoottgglloobb is set. The filenames ````..'''' + and ````....'''' must always be matched explicitly, even if ddoottgglloobb is set. + In other cases, the ````..'''' character is not treated specially. When matching a pathname, the slash character must always be matched explic- - itly by a slash in the pattern, but in other matching contexts it can + itly by a slash in the pattern, but in other matching contexts it can be matched by a special pattern character as described below under PPaatt-- - tteerrnn MMaattcchhiinngg. See the description of sshhoopptt below under SSHHEELLLL BBUUIILLTTIINN - CCOOMMMMAANNDDSS for a description of the nnooccaasseegglloobb, nnuullllgglloobb, ffaaiillgglloobb, and + tteerrnn MMaattcchhiinngg. See the description of sshhoopptt below under SSHHEELLLL BBUUIILLTTIINN + CCOOMMMMAANNDDSS for a description of the nnooccaasseegglloobb, nnuullllgglloobb, ffaaiillgglloobb, and ddoottgglloobb shell options. - The GGLLOOBBIIGGNNOORREE shell variable may be used to restrict the set of file - names matching a _p_a_t_t_e_r_n. If GGLLOOBBIIGGNNOORREE is set, each matching file - name that also matches one of the patterns in GGLLOOBBIIGGNNOORREE is removed - from the list of matches. If the nnooccaasseegglloobb option is set, the match- - ing against the patterns in GGLLOOBBIIGGNNOORREE is performed without regard to + The GGLLOOBBIIGGNNOORREE shell variable may be used to restrict the set of file + names matching a _p_a_t_t_e_r_n. If GGLLOOBBIIGGNNOORREE is set, each matching file + name that also matches one of the patterns in GGLLOOBBIIGGNNOORREE is removed + from the list of matches. If the nnooccaasseegglloobb option is set, the match- + ing against the patterns in GGLLOOBBIIGGNNOORREE is performed without regard to case. The filenames ````..'''' and ````....'''' are always ignored when GGLLOOBBIIGG-- - NNOORREE is set and not null. However, setting GGLLOOBBIIGGNNOORREE to a non-null + NNOORREE is set and not null. However, setting GGLLOOBBIIGGNNOORREE to a non-null value has the effect of enabling the ddoottgglloobb shell option, so all other - filenames beginning with a ````..'''' will match. To get the old behavior - of ignoring filenames beginning with a ````..'''', make ````..**'''' one of the + filenames beginning with a ````..'''' will match. To get the old behavior + of ignoring filenames beginning with a ````..'''', make ````..**'''' one of the patterns in GGLLOOBBIIGGNNOORREE. The ddoottgglloobb option is disabled when GGLLOOBBIIGGNNOORREE is unset. The pattern matching honors the setting of the eexxttgglloobb shell option. @@ -1975,57 +1980,57 @@ EEXXPPAANNSSIIOONN PPaatttteerrnn MMaattcchhiinngg Any character that appears in a pattern, other than the special pattern - characters described below, matches itself. The NUL character may not - occur in a pattern. A backslash escapes the following character; the - escaping backslash is discarded when matching. The special pattern + characters described below, matches itself. The NUL character may not + occur in a pattern. A backslash escapes the following character; the + escaping backslash is discarded when matching. The special pattern characters must be quoted if they are to be matched literally. The special pattern characters have the following meanings: - ** Matches any string, including the null string. When the - gglloobbssttaarr shell option is enabled, and ** is used in a - pathname expansion context, two adjacent **s used as a - single pattern will match all files and zero or more di- - rectories and subdirectories. If followed by a //, two - adjacent **s will match only directories and subdirecto- + ** Matches any string, including the null string. When the + gglloobbssttaarr shell option is enabled, and ** is used in a + pathname expansion context, two adjacent **s used as a + single pattern will match all files and zero or more di- + rectories and subdirectories. If followed by a //, two + adjacent **s will match only directories and subdirecto- ries. ?? Matches any single character. - [[......]] Matches any one of the enclosed characters. A pair of - characters separated by a hyphen denotes a _r_a_n_g_e _e_x_p_r_e_s_- - _s_i_o_n; any character that falls between those two charac- + [[......]] Matches any one of the enclosed characters. A pair of + characters separated by a hyphen denotes a _r_a_n_g_e _e_x_p_r_e_s_- + _s_i_o_n; any character that falls between those two charac- ters, inclusive, using the current locale's collating se- quence and character set, is matched. If the first char- - acter following the [[ is a !! or a ^^ then any character + acter following the [[ is a !! or a ^^ then any character not enclosed is matched. The sorting order of characters - in range expressions is determined by the current locale - and the values of the LLCC__CCOOLLLLAATTEE or LLCC__AALLLL shell vari- - ables, if set. To obtain the traditional interpretation + in range expressions is determined by the current locale + and the values of the LLCC__CCOOLLLLAATTEE or LLCC__AALLLL shell vari- + ables, if set. To obtain the traditional interpretation of range expressions, where [[aa--dd]] is equivalent to - [[aabbccdd]], set value of the LLCC__AALLLL shell variable to CC, or - enable the gglloobbaasscciiiirraannggeess shell option. A -- may be + [[aabbccdd]], set value of the LLCC__AALLLL shell variable to CC, or + enable the gglloobbaasscciiiirraannggeess shell option. A -- may be matched by including it as the first or last character in the set. A ]] may be matched by including it as the first character in the set. - Within [[ and ]], _c_h_a_r_a_c_t_e_r _c_l_a_s_s_e_s can be specified using + Within [[ and ]], _c_h_a_r_a_c_t_e_r _c_l_a_s_s_e_s can be specified using the syntax [[::_c_l_a_s_s::]], where _c_l_a_s_s is one of the following classes defined in the POSIX standard: - aallnnuumm aallpphhaa aasscciiii bbllaannkk ccnnttrrll ddiiggiitt ggrraapphh lloowweerr pprriinntt + aallnnuumm aallpphhaa aasscciiii bbllaannkk ccnnttrrll ddiiggiitt ggrraapphh lloowweerr pprriinntt ppuunncctt ssppaaccee uuppppeerr wwoorrdd xxddiiggiitt A character class matches any character belonging to that class. The wwoorrdd character class matches letters, digits, and the character _. Within [[ and ]], an _e_q_u_i_v_a_l_e_n_c_e _c_l_a_s_s can be specified us- - ing the syntax [[==_c==]], which matches all characters with - the same collation weight (as defined by the current lo- + ing the syntax [[==_c==]], which matches all characters with + the same collation weight (as defined by the current lo- cale) as the character _c. Within [[ and ]], the syntax [[.._s_y_m_b_o_l..]] matches the collat- ing symbol _s_y_m_b_o_l. If the eexxttgglloobb shell option is enabled using the sshhoopptt builtin, several - extended pattern matching operators are recognized. In the following + extended pattern matching operators are recognized. In the following description, a _p_a_t_t_e_r_n_-_l_i_s_t is a list of one or more patterns separated by a ||. Composite patterns may be formed using one or more of the fol- lowing sub-patterns: @@ -2043,68 +2048,68 @@ EEXXPPAANNSSIIOONN Complicated extended pattern matching against long strings is slow, es- pecially when the patterns contain alternations and the strings contain - multiple matches. Using separate matches against shorter strings, or + multiple matches. Using separate matches against shorter strings, or using arrays of strings instead of a single long string, may be faster. QQuuoottee RReemmoovvaall After the preceding expansions, all unquoted occurrences of the charac- - ters \\, '', and "" that did not result from one of the above expansions + ters \\, '', and "" that did not result from one of the above expansions are removed. RREEDDIIRREECCTTIIOONN - Before a command is executed, its input and output may be _r_e_d_i_r_e_c_t_e_d - using a special notation interpreted by the shell. Redirection allows - commands' file handles to be duplicated, opened, closed, made to refer + Before a command is executed, its input and output may be _r_e_d_i_r_e_c_t_e_d + using a special notation interpreted by the shell. Redirection allows + commands' file handles to be duplicated, opened, closed, made to refer to different files, and can change the files the command reads from and - writes to. Redirection may also be used to modify file handles in the - current shell execution environment. The following redirection opera- + writes to. Redirection may also be used to modify file handles in the + current shell execution environment. The following redirection opera- tors may precede or appear anywhere within a _s_i_m_p_l_e _c_o_m_m_a_n_d or may fol- - low a _c_o_m_m_a_n_d. Redirections are processed in the order they appear, + low a _c_o_m_m_a_n_d. Redirections are processed in the order they appear, from left to right. - Each redirection that may be preceded by a file descriptor number may + Each redirection that may be preceded by a file descriptor number may instead be preceded by a word of the form {_v_a_r_n_a_m_e}. In this case, for each redirection operator except >&- and <&-, the shell will allocate a - file descriptor greater than or equal to 10 and assign it to _v_a_r_n_a_m_e. - If >&- or <&- is preceded by {_v_a_r_n_a_m_e}, the value of _v_a_r_n_a_m_e defines - the file descriptor to close. If {_v_a_r_n_a_m_e} is supplied, the redirect- - ion persists beyond the scope of the command, allowing the shell pro- + file descriptor greater than or equal to 10 and assign it to _v_a_r_n_a_m_e. + If >&- or <&- is preceded by {_v_a_r_n_a_m_e}, the value of _v_a_r_n_a_m_e defines + the file descriptor to close. If {_v_a_r_n_a_m_e} is supplied, the redirect- + ion persists beyond the scope of the command, allowing the shell pro- grammer to manage the file descriptor himself. - In the following descriptions, if the file descriptor number is omit- - ted, and the first character of the redirection operator is <<, the re- - direction refers to the standard input (file descriptor 0). If the - first character of the redirection operator is >>, the redirection + In the following descriptions, if the file descriptor number is omit- + ted, and the first character of the redirection operator is <<, the re- + direction refers to the standard input (file descriptor 0). If the + first character of the redirection operator is >>, the redirection refers to the standard output (file descriptor 1). - The word following the redirection operator in the following descrip- - tions, unless otherwise noted, is subjected to brace expansion, tilde - expansion, parameter and variable expansion, command substitution, - arithmetic expansion, quote removal, pathname expansion, and word + The word following the redirection operator in the following descrip- + tions, unless otherwise noted, is subjected to brace expansion, tilde + expansion, parameter and variable expansion, command substitution, + arithmetic expansion, quote removal, pathname expansion, and word splitting. If it expands to more than one word, bbaasshh reports an error. - Note that the order of redirections is significant. For example, the + Note that the order of redirections is significant. For example, the command ls >> dirlist 2>>&&1 - directs both standard output and standard error to the file _d_i_r_l_i_s_t, + directs both standard output and standard error to the file _d_i_r_l_i_s_t, while the command ls 2>>&&1 >> dirlist - directs only the standard output to file _d_i_r_l_i_s_t, because the standard - error was duplicated from the standard output before the standard out- + directs only the standard output to file _d_i_r_l_i_s_t, because the standard + error was duplicated from the standard output before the standard out- put was redirected to _d_i_r_l_i_s_t. BBaasshh handles several filenames specially when they are used in redirec- tions, as described in the following table. If the operating system on which bbaasshh is running provides these special files, bash will use them; - otherwise it will emulate them internally with the behavior described + otherwise it will emulate them internally with the behavior described below. //ddeevv//ffdd//_f_d - If _f_d is a valid integer, file descriptor _f_d is dupli- + If _f_d is a valid integer, file descriptor _f_d is dupli- cated. //ddeevv//ssttddiinn File descriptor 0 is duplicated. @@ -2114,22 +2119,22 @@ RREEDDIIRREECCTTIIOONN File descriptor 2 is duplicated. //ddeevv//ttccpp//_h_o_s_t//_p_o_r_t If _h_o_s_t is a valid hostname or Internet address, and _p_o_r_t - is an integer port number or service name, bbaasshh attempts + is an integer port number or service name, bbaasshh attempts to open the corresponding TCP socket. //ddeevv//uuddpp//_h_o_s_t//_p_o_r_t If _h_o_s_t is a valid hostname or Internet address, and _p_o_r_t - is an integer port number or service name, bbaasshh attempts + is an integer port number or service name, bbaasshh attempts to open the corresponding UDP socket. A failure to open or create a file causes the redirection to fail. - Redirections using file descriptors greater than 9 should be used with - care, as they may conflict with file descriptors the shell uses inter- + Redirections using file descriptors greater than 9 should be used with + care, as they may conflict with file descriptors the shell uses inter- nally. RReeddiirreeccttiinngg IInnppuutt Redirection of input causes the file whose name results from the expan- - sion of _w_o_r_d to be opened for reading on file descriptor _n, or the + sion of _w_o_r_d to be opened for reading on file descriptor _n, or the standard input (file descriptor 0) if _n is not specified. The general format for redirecting input is: @@ -2137,27 +2142,27 @@ RREEDDIIRREECCTTIIOONN [_n]<<_w_o_r_d RReeddiirreeccttiinngg OOuuttppuutt - Redirection of output causes the file whose name results from the ex- - pansion of _w_o_r_d to be opened for writing on file descriptor _n, or the + Redirection of output causes the file whose name results from the ex- + pansion of _w_o_r_d to be opened for writing on file descriptor _n, or the standard output (file descriptor 1) if _n is not specified. If the file - does not exist it is created; if it does exist it is truncated to zero + does not exist it is created; if it does exist it is truncated to zero size. The general format for redirecting output is: [_n]>>_w_o_r_d - If the redirection operator is >>, and the nnoocclloobbbbeerr option to the sseett - builtin has been enabled, the redirection will fail if the file whose - name results from the expansion of _w_o_r_d exists and is a regular file. + If the redirection operator is >>, and the nnoocclloobbbbeerr option to the sseett + builtin has been enabled, the redirection will fail if the file whose + name results from the expansion of _w_o_r_d exists and is a regular file. If the redirection operator is >>||, or the redirection operator is >> and the nnoocclloobbbbeerr option to the sseett builtin command is not enabled, the re- direction is attempted even if the file named by _w_o_r_d exists. AAppppeennddiinngg RReeddiirreecctteedd OOuuttppuutt - Redirection of output in this fashion causes the file whose name re- + Redirection of output in this fashion causes the file whose name re- sults from the expansion of _w_o_r_d to be opened for appending on file de- - scriptor _n, or the standard output (file descriptor 1) if _n is not + scriptor _n, or the standard output (file descriptor 1) if _n is not specified. If the file does not exist it is created. The general format for appending output is: @@ -2165,11 +2170,11 @@ RREEDDIIRREECCTTIIOONN [_n]>>>>_w_o_r_d RReeddiirreeccttiinngg SSttaannddaarrdd OOuuttppuutt aanndd SSttaannddaarrdd EErrrroorr - This construct allows both the standard output (file descriptor 1) and - the standard error output (file descriptor 2) to be redirected to the + This construct allows both the standard output (file descriptor 1) and + the standard error output (file descriptor 2) to be redirected to the file whose name is the expansion of _w_o_r_d. - There are two formats for redirecting standard output and standard er- + There are two formats for redirecting standard output and standard er- ror: &&>>_w_o_r_d @@ -2181,13 +2186,13 @@ RREEDDIIRREECCTTIIOONN >>_w_o_r_d 2>>&&1 - When using the second form, _w_o_r_d may not expand to a number or --. If - it does, other redirection operators apply (see DDuupplliiccaattiinngg FFiillee DDee-- + When using the second form, _w_o_r_d may not expand to a number or --. If + it does, other redirection operators apply (see DDuupplliiccaattiinngg FFiillee DDee-- ssccrriippttoorrss below) for compatibility reasons. AAppppeennddiinngg SSttaannddaarrdd OOuuttppuutt aanndd SSttaannddaarrdd EErrrroorr - This construct allows both the standard output (file descriptor 1) and - the standard error output (file descriptor 2) to be appended to the + This construct allows both the standard output (file descriptor 1) and + the standard error output (file descriptor 2) to be appended to the file whose name is the expansion of _w_o_r_d. The format for appending standard output and standard error is: @@ -2201,10 +2206,10 @@ RREEDDIIRREECCTTIIOONN (see DDuupplliiccaattiinngg FFiillee DDeessccrriippttoorrss below). HHeerree DDooccuummeennttss - This type of redirection instructs the shell to read input from the + This type of redirection instructs the shell to read input from the current source until a line containing only _d_e_l_i_m_i_t_e_r (with no trailing - blanks) is seen. All of the lines read up to that point are then used - as the standard input (or file descriptor _n if _n is specified) for a + blanks) is seen. All of the lines read up to that point are then used + as the standard input (or file descriptor _n if _n is specified) for a command. The format of here-documents is: @@ -2213,18 +2218,18 @@ RREEDDIIRREECCTTIIOONN _h_e_r_e_-_d_o_c_u_m_e_n_t _d_e_l_i_m_i_t_e_r - No parameter and variable expansion, command substitution, arithmetic - expansion, or pathname expansion is performed on _w_o_r_d. If any part of - _w_o_r_d is quoted, the _d_e_l_i_m_i_t_e_r is the result of quote removal on _w_o_r_d, - and the lines in the here-document are not expanded. If _w_o_r_d is un- - quoted, all lines of the here-document are subjected to parameter ex- - pansion, command substitution, and arithmetic expansion, the character + No parameter and variable expansion, command substitution, arithmetic + expansion, or pathname expansion is performed on _w_o_r_d. If any part of + _w_o_r_d is quoted, the _d_e_l_i_m_i_t_e_r is the result of quote removal on _w_o_r_d, + and the lines in the here-document are not expanded. If _w_o_r_d is un- + quoted, all lines of the here-document are subjected to parameter ex- + pansion, command substitution, and arithmetic expansion, the character sequence \\<> is ignored, and \\ must be used to quote the charac- ters \\, $$, and ``. If the redirection operator is <<<<--, then all leading tab characters are - stripped from input lines and the line containing _d_e_l_i_m_i_t_e_r. This al- - lows here-documents within shell scripts to be indented in a natural + stripped from input lines and the line containing _d_e_l_i_m_i_t_e_r. This al- + lows here-documents within shell scripts to be indented in a natural fashion. HHeerree SSttrriinnggss @@ -2232,9 +2237,9 @@ RREEDDIIRREECCTTIIOONN [_n]<<<<<<_w_o_r_d - The _w_o_r_d undergoes tilde expansion, parameter and variable expansion, - command substitution, arithmetic expansion, and quote removal. Path- - name expansion and word splitting are not performed. The result is + The _w_o_r_d undergoes tilde expansion, parameter and variable expansion, + command substitution, arithmetic expansion, and quote removal. Path- + name expansion and word splitting are not performed. The result is supplied as a single string, with a newline appended, to the command on its standard input (or file descriptor _n if _n is specified). @@ -2244,8 +2249,8 @@ RREEDDIIRREECCTTIIOONN [_n]<<&&_w_o_r_d is used to duplicate input file descriptors. If _w_o_r_d expands to one or - more digits, the file descriptor denoted by _n is made to be a copy of - that file descriptor. If the digits in _w_o_r_d do not specify a file de- + more digits, the file descriptor denoted by _n is made to be a copy of + that file descriptor. If the digits in _w_o_r_d do not specify a file de- scriptor open for input, a redirection error occurs. If _w_o_r_d evaluates to --, file descriptor _n is closed. If _n is not specified, the standard input (file descriptor 0) is used. @@ -2254,12 +2259,12 @@ RREEDDIIRREECCTTIIOONN [_n]>>&&_w_o_r_d - is used similarly to duplicate output file descriptors. If _n is not - specified, the standard output (file descriptor 1) is used. If the - digits in _w_o_r_d do not specify a file descriptor open for output, a re- - direction error occurs. If _w_o_r_d evaluates to --, file descriptor _n is - closed. As a special case, if _n is omitted, and _w_o_r_d does not expand - to one or more digits or --, the standard output and standard error are + is used similarly to duplicate output file descriptors. If _n is not + specified, the standard output (file descriptor 1) is used. If the + digits in _w_o_r_d do not specify a file descriptor open for output, a re- + direction error occurs. If _w_o_r_d evaluates to --, file descriptor _n is + closed. As a special case, if _n is omitted, and _w_o_r_d does not expand + to one or more digits or --, the standard output and standard error are redirected as described previously. MMoovviinngg FFiillee DDeessccrriippttoorrss @@ -2267,7 +2272,7 @@ RREEDDIIRREECCTTIIOONN [_n]<<&&_d_i_g_i_t-- - moves the file descriptor _d_i_g_i_t to file descriptor _n, or the standard + moves the file descriptor _d_i_g_i_t to file descriptor _n, or the standard input (file descriptor 0) if _n is not specified. _d_i_g_i_t is closed after being duplicated to _n. @@ -2275,7 +2280,7 @@ RREEDDIIRREECCTTIIOONN [_n]>>&&_d_i_g_i_t-- - moves the file descriptor _d_i_g_i_t to file descriptor _n, or the standard + moves the file descriptor _d_i_g_i_t to file descriptor _n, or the standard output (file descriptor 1) if _n is not specified. OOppeenniinngg FFiillee DDeessccrriippttoorrss ffoorr RReeaaddiinngg aanndd WWrriittiinngg @@ -2283,144 +2288,144 @@ RREEDDIIRREECCTTIIOONN [_n]<<>>_w_o_r_d - causes the file whose name is the expansion of _w_o_r_d to be opened for - both reading and writing on file descriptor _n, or on file descriptor 0 + causes the file whose name is the expansion of _w_o_r_d to be opened for + both reading and writing on file descriptor _n, or on file descriptor 0 if _n is not specified. If the file does not exist, it is created. AALLIIAASSEESS - _A_l_i_a_s_e_s allow a string to be substituted for a word when it is used as - the first word of a simple command. The shell maintains a list of - aliases that may be set and unset with the aalliiaass and uunnaalliiaass builtin - commands (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). The first word of each - simple command, if unquoted, is checked to see if it has an alias. If - so, that word is replaced by the text of the alias. The characters //, - $$, ``, and == and any of the shell _m_e_t_a_c_h_a_r_a_c_t_e_r_s or quoting characters + _A_l_i_a_s_e_s allow a string to be substituted for a word when it is used as + the first word of a simple command. The shell maintains a list of + aliases that may be set and unset with the aalliiaass and uunnaalliiaass builtin + commands (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). The first word of each + simple command, if unquoted, is checked to see if it has an alias. If + so, that word is replaced by the text of the alias. The characters //, + $$, ``, and == and any of the shell _m_e_t_a_c_h_a_r_a_c_t_e_r_s or quoting characters listed above may not appear in an alias name. The replacement text may - contain any valid shell input, including shell metacharacters. The - first word of the replacement text is tested for aliases, but a word - that is identical to an alias being expanded is not expanded a second - time. This means that one may alias llss to llss --FF, for instance, and - bbaasshh does not try to recursively expand the replacement text. If the - last character of the alias value is a _b_l_a_n_k, then the next command + contain any valid shell input, including shell metacharacters. The + first word of the replacement text is tested for aliases, but a word + that is identical to an alias being expanded is not expanded a second + time. This means that one may alias llss to llss --FF, for instance, and + bbaasshh does not try to recursively expand the replacement text. If the + last character of the alias value is a _b_l_a_n_k, then the next command word following the alias is also checked for alias expansion. Aliases are created and listed with the aalliiaass command, and removed with the uunnaalliiaass command. - There is no mechanism for using arguments in the replacement text. If - arguments are needed, a shell function should be used (see FFUUNNCCTTIIOONNSS + There is no mechanism for using arguments in the replacement text. If + arguments are needed, a shell function should be used (see FFUUNNCCTTIIOONNSS below). - Aliases are not expanded when the shell is not interactive, unless the - eexxppaanndd__aalliiaasseess shell option is set using sshhoopptt (see the description of + Aliases are not expanded when the shell is not interactive, unless the + eexxppaanndd__aalliiaasseess shell option is set using sshhoopptt (see the description of sshhoopptt under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). - The rules concerning the definition and use of aliases are somewhat - confusing. BBaasshh always reads at least one complete line of input, and - all lines that make up a compound command, before executing any of the - commands on that line or the compound command. Aliases are expanded - when a command is read, not when it is executed. Therefore, an alias - definition appearing on the same line as another command does not take - effect until the next line of input is read. The commands following - the alias definition on that line are not affected by the new alias. - This behavior is also an issue when functions are executed. Aliases - are expanded when a function definition is read, not when the function - is executed, because a function definition is itself a command. As a - consequence, aliases defined in a function are not available until af- - ter that function is executed. To be safe, always put alias defini- + The rules concerning the definition and use of aliases are somewhat + confusing. BBaasshh always reads at least one complete line of input, and + all lines that make up a compound command, before executing any of the + commands on that line or the compound command. Aliases are expanded + when a command is read, not when it is executed. Therefore, an alias + definition appearing on the same line as another command does not take + effect until the next line of input is read. The commands following + the alias definition on that line are not affected by the new alias. + This behavior is also an issue when functions are executed. Aliases + are expanded when a function definition is read, not when the function + is executed, because a function definition is itself a command. As a + consequence, aliases defined in a function are not available until af- + ter that function is executed. To be safe, always put alias defini- tions on a separate line, and do not use aalliiaass in compound commands. For almost every purpose, aliases are superseded by shell functions. FFUUNNCCTTIIOONNSS - A shell function, defined as described above under SSHHEELLLL GGRRAAMMMMAARR, - stores a series of commands for later execution. When the name of a - shell function is used as a simple command name, the list of commands + A shell function, defined as described above under SSHHEELLLL GGRRAAMMMMAARR, + stores a series of commands for later execution. When the name of a + shell function is used as a simple command name, the list of commands associated with that function name is executed. Functions are executed - in the context of the current shell; no new process is created to in- - terpret them (contrast this with the execution of a shell script). - When a function is executed, the arguments to the function become the + in the context of the current shell; no new process is created to in- + terpret them (contrast this with the execution of a shell script). + When a function is executed, the arguments to the function become the positional parameters during its execution. The special parameter ## is - updated to reflect the change. Special parameter 00 is unchanged. The - first element of the FFUUNNCCNNAAMMEE variable is set to the name of the func- + updated to reflect the change. Special parameter 00 is unchanged. The + first element of the FFUUNNCCNNAAMMEE variable is set to the name of the func- tion while the function is executing. - All other aspects of the shell execution environment are identical be- - tween a function and its caller with these exceptions: the DDEEBBUUGG and - RREETTUURRNN traps (see the description of the ttrraapp builtin under SSHHEELLLL - BBUUIILLTTIINN CCOOMMMMAANNDDSS below) are not inherited unless the function has been - given the ttrraaccee attribute (see the description of the ddeeccllaarree builtin - below) or the --oo ffuunnccttrraaccee shell option has been enabled with the sseett - builtin (in which case all functions inherit the DDEEBBUUGG and RREETTUURRNN - traps), and the EERRRR trap is not inherited unless the --oo eerrrrttrraaccee shell + All other aspects of the shell execution environment are identical be- + tween a function and its caller with these exceptions: the DDEEBBUUGG and + RREETTUURRNN traps (see the description of the ttrraapp builtin under SSHHEELLLL + BBUUIILLTTIINN CCOOMMMMAANNDDSS below) are not inherited unless the function has been + given the ttrraaccee attribute (see the description of the ddeeccllaarree builtin + below) or the --oo ffuunnccttrraaccee shell option has been enabled with the sseett + builtin (in which case all functions inherit the DDEEBBUUGG and RREETTUURRNN + traps), and the EERRRR trap is not inherited unless the --oo eerrrrttrraaccee shell option has been enabled. - Variables local to the function may be declared with the llooccaall builtin + Variables local to the function may be declared with the llooccaall builtin command. Ordinarily, variables and their values are shared between the - function and its caller. If a variable is declared llooccaall, the vari- - able's visible scope is restricted to that function and its children + function and its caller. If a variable is declared llooccaall, the vari- + able's visible scope is restricted to that function and its children (including the functions it calls). Local variables "shadow" variables - with the same name declared at previous scopes. For instance, a local - variable declared in a function hides a global variable of the same - name: references and assignments refer to the local variable, leaving - the global variable unmodified. When the function returns, the global + with the same name declared at previous scopes. For instance, a local + variable declared in a function hides a global variable of the same + name: references and assignments refer to the local variable, leaving + the global variable unmodified. When the function returns, the global variable is once again visible. - The shell uses _d_y_n_a_m_i_c _s_c_o_p_i_n_g to control a variable's visibility - within functions. With dynamic scoping, visible variables and their - values are a result of the sequence of function calls that caused exe- - cution to reach the current function. The value of a variable that a - function sees depends on its value within its caller, if any, whether - that caller is the "global" scope or another shell function. This is - also the value that a local variable declaration "shadows", and the + The shell uses _d_y_n_a_m_i_c _s_c_o_p_i_n_g to control a variable's visibility + within functions. With dynamic scoping, visible variables and their + values are a result of the sequence of function calls that caused exe- + cution to reach the current function. The value of a variable that a + function sees depends on its value within its caller, if any, whether + that caller is the "global" scope or another shell function. This is + also the value that a local variable declaration "shadows", and the value that is restored when the function returns. - For example, if a variable _v_a_r is declared as local in function _f_u_n_c_1, - and _f_u_n_c_1 calls another function _f_u_n_c_2, references to _v_a_r made from + For example, if a variable _v_a_r is declared as local in function _f_u_n_c_1, + and _f_u_n_c_1 calls another function _f_u_n_c_2, references to _v_a_r made from within _f_u_n_c_2 will resolve to the local variable _v_a_r from _f_u_n_c_1, shadow- ing any global variable named _v_a_r. The uunnsseett builtin also acts using the same dynamic scope: if a variable is local to the current scope, uunnsseett will unset it; otherwise the unset - will refer to the variable found in any calling scope as described - above. If a variable at the current local scope is unset, it will re- - main so until it is reset in that scope or until the function returns. - Once the function returns, any instance of the variable at a previous + will refer to the variable found in any calling scope as described + above. If a variable at the current local scope is unset, it will re- + main so until it is reset in that scope or until the function returns. + Once the function returns, any instance of the variable at a previous scope will become visible. If the unset acts on a variable at a previ- - ous scope, any instance of a variable with that name that had been + ous scope, any instance of a variable with that name that had been shadowed will become visible. - The FFUUNNCCNNEESSTT variable, if set to a numeric value greater than 0, de- - fines a maximum function nesting level. Function invocations that ex- + The FFUUNNCCNNEESSTT variable, if set to a numeric value greater than 0, de- + fines a maximum function nesting level. Function invocations that ex- ceed the limit cause the entire command to abort. - If the builtin command rreettuurrnn is executed in a function, the function - completes and execution resumes with the next command after the func- + If the builtin command rreettuurrnn is executed in a function, the function + completes and execution resumes with the next command after the func- tion call. Any command associated with the RREETTUURRNN trap is executed be- - fore execution resumes. When a function completes, the values of the - positional parameters and the special parameter ## are restored to the + fore execution resumes. When a function completes, the values of the + positional parameters and the special parameter ## are restored to the values they had prior to the function's execution. - Function names and definitions may be listed with the --ff option to the + Function names and definitions may be listed with the --ff option to the ddeeccllaarree or ttyyppeesseett builtin commands. The --FF option to ddeeccllaarree or ttyyppee-- - sseett will list the function names only (and optionally the source file - and line number, if the eexxttddeebbuugg shell option is enabled). Functions - may be exported so that subshells automatically have them defined with - the --ff option to the eexxppoorrtt builtin. A function definition may be + sseett will list the function names only (and optionally the source file + and line number, if the eexxttddeebbuugg shell option is enabled). Functions + may be exported so that subshells automatically have them defined with + the --ff option to the eexxppoorrtt builtin. A function definition may be deleted using the --ff option to the uunnsseett builtin. Functions may be recursive. The FFUUNNCCNNEESSTT variable may be used to limit - the depth of the function call stack and restrict the number of func- + the depth of the function call stack and restrict the number of func- tion invocations. By default, no limit is imposed on the number of re- cursive calls. AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN - The shell allows arithmetic expressions to be evaluated, under certain - circumstances (see the lleett and ddeeccllaarree builtin commands, the (((( com- + The shell allows arithmetic expressions to be evaluated, under certain + circumstances (see the lleett and ddeeccllaarree builtin commands, the (((( com- pound command, and AArriitthhmmeettiicc EExxppaannssiioonn). Evaluation is done in fixed- - width integers with no check for overflow, though division by 0 is - trapped and flagged as an error. The operators and their precedence, - associativity, and values are the same as in the C language. The fol- + width integers with no check for overflow, though division by 0 is + trapped and flagged as an error. The operators and their precedence, + associativity, and values are the same as in the C language. The fol- lowing list of operators is grouped into levels of equal-precedence op- erators. The levels are listed in order of decreasing precedence. @@ -2449,55 +2454,55 @@ AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN _e_x_p_r_1 ,, _e_x_p_r_2 comma - Shell variables are allowed as operands; parameter expansion is per- + Shell variables are allowed as operands; parameter expansion is per- formed before the expression is evaluated. Within an expression, shell - variables may also be referenced by name without using the parameter - expansion syntax. A shell variable that is null or unset evaluates to + variables may also be referenced by name without using the parameter + expansion syntax. A shell variable that is null or unset evaluates to 0 when referenced by name without using the parameter expansion syntax. - The value of a variable is evaluated as an arithmetic expression when - it is referenced, or when a variable which has been given the _i_n_t_e_g_e_r + The value of a variable is evaluated as an arithmetic expression when + it is referenced, or when a variable which has been given the _i_n_t_e_g_e_r attribute using ddeeccllaarree --ii is assigned a value. A null value evaluates - to 0. A shell variable need not have its _i_n_t_e_g_e_r attribute turned on + to 0. A shell variable need not have its _i_n_t_e_g_e_r attribute turned on to be used in an expression. Integer constants follow the C language definition, without suffixes or character constants. Constants with a leading 0 are interpreted as oc- - tal numbers. A leading 0x or 0X denotes hexadecimal. Otherwise, num- - bers take the form [_b_a_s_e_#]n, where the optional _b_a_s_e is a decimal num- - ber between 2 and 64 representing the arithmetic base, and _n is a num- - ber in that base. If _b_a_s_e_# is omitted, then base 10 is used. When + tal numbers. A leading 0x or 0X denotes hexadecimal. Otherwise, num- + bers take the form [_b_a_s_e_#]n, where the optional _b_a_s_e is a decimal num- + ber between 2 and 64 representing the arithmetic base, and _n is a num- + ber in that base. If _b_a_s_e_# is omitted, then base 10 is used. When specifying _n, if a non-digit is required, the digits greater than 9 are - represented by the lowercase letters, the uppercase letters, @, and _, - in that order. If _b_a_s_e is less than or equal to 36, lowercase and up- - percase letters may be used interchangeably to represent numbers be- + represented by the lowercase letters, the uppercase letters, @, and _, + in that order. If _b_a_s_e is less than or equal to 36, lowercase and up- + percase letters may be used interchangeably to represent numbers be- tween 10 and 35. - Operators are evaluated in order of precedence. Sub-expressions in - parentheses are evaluated first and may override the precedence rules + Operators are evaluated in order of precedence. Sub-expressions in + parentheses are evaluated first and may override the precedence rules above. CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS - Conditional expressions are used by the [[[[ compound command and the - tteesstt and [[ builtin commands to test file attributes and perform string - and arithmetic comparisons. The tteesstt and [[ commands determine their - behavior based on the number of arguments; see the descriptions of + Conditional expressions are used by the [[[[ compound command and the + tteesstt and [[ builtin commands to test file attributes and perform string + and arithmetic comparisons. The tteesstt and [[ commands determine their + behavior based on the number of arguments; see the descriptions of those commands for any other command-specific actions. - Expressions are formed from the following unary or binary primaries. - BBaasshh handles several filenames specially when they are used in expres- + Expressions are formed from the following unary or binary primaries. + BBaasshh handles several filenames specially when they are used in expres- sions. If the operating system on which bbaasshh is running provides these - special files, bash will use them; otherwise it will emulate them in- - ternally with this behavior: If any _f_i_l_e argument to one of the pri- + special files, bash will use them; otherwise it will emulate them in- + ternally with this behavior: If any _f_i_l_e argument to one of the pri- maries is of the form _/_d_e_v_/_f_d_/_n, then file descriptor _n is checked. If - the _f_i_l_e argument to one of the primaries is one of _/_d_e_v_/_s_t_d_i_n, - _/_d_e_v_/_s_t_d_o_u_t, or _/_d_e_v_/_s_t_d_e_r_r, file descriptor 0, 1, or 2, respectively, + the _f_i_l_e argument to one of the primaries is one of _/_d_e_v_/_s_t_d_i_n, + _/_d_e_v_/_s_t_d_o_u_t, or _/_d_e_v_/_s_t_d_e_r_r, file descriptor 0, 1, or 2, respectively, is checked. Unless otherwise specified, primaries that operate on files follow sym- bolic links and operate on the target of the link, rather than the link itself. - When used with [[[[, the << and >> operators sort lexicographically using + When used with [[[[, the << and >> operators sort lexicographically using the current locale. The tteesstt command sorts using ASCII ordering. --aa _f_i_l_e @@ -2536,30 +2541,30 @@ CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS --LL _f_i_l_e True if _f_i_l_e exists and is a symbolic link. --NN _f_i_l_e - True if _f_i_l_e exists and has been modified since it was last + True if _f_i_l_e exists and has been modified since it was last read. --OO _f_i_l_e True if _f_i_l_e exists and is owned by the effective user id. --SS _f_i_l_e True if _f_i_l_e exists and is a socket. _f_i_l_e_1 --eeff _f_i_l_e_2 - True if _f_i_l_e_1 and _f_i_l_e_2 refer to the same device and inode num- + True if _f_i_l_e_1 and _f_i_l_e_2 refer to the same device and inode num- bers. _f_i_l_e_1 -nntt _f_i_l_e_2 - True if _f_i_l_e_1 is newer (according to modification date) than + True if _f_i_l_e_1 is newer (according to modification date) than _f_i_l_e_2, or if _f_i_l_e_1 exists and _f_i_l_e_2 does not. _f_i_l_e_1 -oott _f_i_l_e_2 - True if _f_i_l_e_1 is older than _f_i_l_e_2, or if _f_i_l_e_2 exists and _f_i_l_e_1 + True if _f_i_l_e_1 is older than _f_i_l_e_2, or if _f_i_l_e_2 exists and _f_i_l_e_1 does not. --oo _o_p_t_n_a_m_e - True if the shell option _o_p_t_n_a_m_e is enabled. See the list of - options under the description of the --oo option to the sseett + True if the shell option _o_p_t_n_a_m_e is enabled. See the list of + options under the description of the --oo option to the sseett builtin below. --vv _v_a_r_n_a_m_e - True if the shell variable _v_a_r_n_a_m_e is set (has been assigned a + True if the shell variable _v_a_r_n_a_m_e is set (has been assigned a value). --RR _v_a_r_n_a_m_e - True if the shell variable _v_a_r_n_a_m_e is set and is a name refer- + True if the shell variable _v_a_r_n_a_m_e is set and is a name refer- ence. --zz _s_t_r_i_n_g True if the length of _s_t_r_i_n_g is zero. @@ -2569,8 +2574,8 @@ CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS _s_t_r_i_n_g_1 ==== _s_t_r_i_n_g_2 _s_t_r_i_n_g_1 == _s_t_r_i_n_g_2 - True if the strings are equal. == should be used with the tteesstt - command for POSIX conformance. When used with the [[[[ command, + True if the strings are equal. == should be used with the tteesstt + command for POSIX conformance. When used with the [[[[ command, this performs pattern matching as described above (CCoommppoouunndd CCoomm-- mmaannddss). @@ -2584,110 +2589,110 @@ CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS True if _s_t_r_i_n_g_1 sorts after _s_t_r_i_n_g_2 lexicographically. _a_r_g_1 OOPP _a_r_g_2 - OOPP is one of --eeqq, --nnee, --lltt, --llee, --ggtt, or --ggee. These arithmetic - binary operators return true if _a_r_g_1 is equal to, not equal to, - less than, less than or equal to, greater than, or greater than - or equal to _a_r_g_2, respectively. _A_r_g_1 and _a_r_g_2 may be positive - or negative integers. When used with the [[[[ command, _A_r_g_1 and - _A_r_g_2 are evaluated as arithmetic expressions (see AARRIITTHHMMEETTIICC + OOPP is one of --eeqq, --nnee, --lltt, --llee, --ggtt, or --ggee. These arithmetic + binary operators return true if _a_r_g_1 is equal to, not equal to, + less than, less than or equal to, greater than, or greater than + or equal to _a_r_g_2, respectively. _A_r_g_1 and _a_r_g_2 may be positive + or negative integers. When used with the [[[[ command, _A_r_g_1 and + _A_r_g_2 are evaluated as arithmetic expressions (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN above). SSIIMMPPLLEE CCOOMMMMAANNDD EEXXPPAANNSSIIOONN When a simple command is executed, the shell performs the following ex- - pansions, assignments, and redirections, from left to right, in the + pansions, assignments, and redirections, from left to right, in the following order. - 1. The words that the parser has marked as variable assignments - (those preceding the command name) and redirections are saved + 1. The words that the parser has marked as variable assignments + (those preceding the command name) and redirections are saved for later processing. - 2. The words that are not variable assignments or redirections are - expanded. If any words remain after expansion, the first word - is taken to be the name of the command and the remaining words + 2. The words that are not variable assignments or redirections are + expanded. If any words remain after expansion, the first word + is taken to be the name of the command and the remaining words are the arguments. 3. Redirections are performed as described above under RREEDDIIRREECCTTIIOONN. 4. The text after the == in each variable assignment undergoes tilde expansion, parameter expansion, command substitution, arithmetic - expansion, and quote removal before being assigned to the vari- + expansion, and quote removal before being assigned to the vari- able. If no command name results, the variable assignments affect the current - shell environment. Otherwise, the variables are added to the environ- - ment of the executed command and do not affect the current shell envi- - ronment. If any of the assignments attempts to assign a value to a - readonly variable, an error occurs, and the command exits with a non- + shell environment. Otherwise, the variables are added to the environ- + ment of the executed command and do not affect the current shell envi- + ronment. If any of the assignments attempts to assign a value to a + readonly variable, an error occurs, and the command exits with a non- zero status. - If no command name results, redirections are performed, but do not af- - fect the current shell environment. A redirection error causes the + If no command name results, redirections are performed, but do not af- + fect the current shell environment. A redirection error causes the command to exit with a non-zero status. - If there is a command name left after expansion, execution proceeds as - described below. Otherwise, the command exits. If one of the expan- - sions contained a command substitution, the exit status of the command - is the exit status of the last command substitution performed. If + If there is a command name left after expansion, execution proceeds as + described below. Otherwise, the command exits. If one of the expan- + sions contained a command substitution, the exit status of the command + is the exit status of the last command substitution performed. If there were no command substitutions, the command exits with a status of zero. CCOOMMMMAANNDD EEXXEECCUUTTIIOONN - After a command has been split into words, if it results in a simple - command and an optional list of arguments, the following actions are + After a command has been split into words, if it results in a simple + command and an optional list of arguments, the following actions are taken. - If the command name contains no slashes, the shell attempts to locate - it. If there exists a shell function by that name, that function is - invoked as described above in FFUUNNCCTTIIOONNSS. If the name does not match a - function, the shell searches for it in the list of shell builtins. If + If the command name contains no slashes, the shell attempts to locate + it. If there exists a shell function by that name, that function is + invoked as described above in FFUUNNCCTTIIOONNSS. If the name does not match a + function, the shell searches for it in the list of shell builtins. If a match is found, that builtin is invoked. - If the name is neither a shell function nor a builtin, and contains no - slashes, bbaasshh searches each element of the PPAATTHH for a directory con- + If the name is neither a shell function nor a builtin, and contains no + slashes, bbaasshh searches each element of the PPAATTHH for a directory con- taining an executable file by that name. BBaasshh uses a hash table to re- - member the full pathnames of executable files (see hhaasshh under SSHHEELLLL - BBUUIILLTTIINN CCOOMMMMAANNDDSS below). A full search of the directories in PPAATTHH is - performed only if the command is not found in the hash table. If the + member the full pathnames of executable files (see hhaasshh under SSHHEELLLL + BBUUIILLTTIINN CCOOMMMMAANNDDSS below). A full search of the directories in PPAATTHH is + performed only if the command is not found in the hash table. If the search is unsuccessful, the shell searches for a defined shell function named ccoommmmaanndd__nnoott__ffoouunndd__hhaannddllee. If that function exists, it is invoked - in a separate execution environment with the original command and the - original command's arguments as its arguments, and the function's exit - status becomes the exit status of that subshell. If that function is + in a separate execution environment with the original command and the + original command's arguments as its arguments, and the function's exit + status becomes the exit status of that subshell. If that function is not defined, the shell prints an error message and returns an exit sta- tus of 127. - If the search is successful, or if the command name contains one or + If the search is successful, or if the command name contains one or more slashes, the shell executes the named program in a separate execu- tion environment. Argument 0 is set to the name given, and the remain- ing arguments to the command are set to the arguments given, if any. - If this execution fails because the file is not in executable format, - and the file is not a directory, it is assumed to be a _s_h_e_l_l _s_c_r_i_p_t, a - file containing shell commands. A subshell is spawned to execute it. - This subshell reinitializes itself, so that the effect is as if a new - shell had been invoked to handle the script, with the exception that - the locations of commands remembered by the parent (see hhaasshh below un- + If this execution fails because the file is not in executable format, + and the file is not a directory, it is assumed to be a _s_h_e_l_l _s_c_r_i_p_t, a + file containing shell commands. A subshell is spawned to execute it. + This subshell reinitializes itself, so that the effect is as if a new + shell had been invoked to handle the script, with the exception that + the locations of commands remembered by the parent (see hhaasshh below un- der SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS) are retained by the child. - If the program is a file beginning with ##!!, the remainder of the first - line specifies an interpreter for the program. The shell executes the + If the program is a file beginning with ##!!, the remainder of the first + line specifies an interpreter for the program. The shell executes the specified interpreter on operating systems that do not handle this exe- cutable format themselves. The arguments to the interpreter consist of - a single optional argument following the interpreter name on the first - line of the program, followed by the name of the program, followed by + a single optional argument following the interpreter name on the first + line of the program, followed by the name of the program, followed by the command arguments, if any. CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENNTT - The shell has an _e_x_e_c_u_t_i_o_n _e_n_v_i_r_o_n_m_e_n_t, which consists of the follow- + The shell has an _e_x_e_c_u_t_i_o_n _e_n_v_i_r_o_n_m_e_n_t, which consists of the follow- ing: - +o open files inherited by the shell at invocation, as modified by + +o open files inherited by the shell at invocation, as modified by redirections supplied to the eexxeecc builtin - +o the current working directory as set by ccdd, ppuusshhdd, or ppooppdd, or + +o the current working directory as set by ccdd, ppuusshhdd, or ppooppdd, or inherited by the shell at invocation - +o the file creation mode mask as set by uummaasskk or inherited from + +o the file creation mode mask as set by uummaasskk or inherited from the shell's parent +o current traps set by ttrraapp @@ -2695,252 +2700,252 @@ CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENN +o shell parameters that are set by variable assignment or with sseett or inherited from the shell's parent in the environment - +o shell functions defined during execution or inherited from the + +o shell functions defined during execution or inherited from the shell's parent in the environment - +o options enabled at invocation (either by default or with com- + +o options enabled at invocation (either by default or with com- mand-line arguments) or by sseett +o options enabled by sshhoopptt +o shell aliases defined with aalliiaass - +o various process IDs, including those of background jobs, the + +o various process IDs, including those of background jobs, the value of $$$$, and the value of PPPPIIDD - When a simple command other than a builtin or shell function is to be - executed, it is invoked in a separate execution environment that con- - sists of the following. Unless otherwise noted, the values are inher- + When a simple command other than a builtin or shell function is to be + executed, it is invoked in a separate execution environment that con- + sists of the following. Unless otherwise noted, the values are inher- ited from the shell. - +o the shell's open files, plus any modifications and additions + +o the shell's open files, plus any modifications and additions specified by redirections to the command +o the current working directory +o the file creation mode mask - +o shell variables and functions marked for export, along with + +o shell variables and functions marked for export, along with variables exported for the command, passed in the environment +o traps caught by the shell are reset to the values inherited from the shell's parent, and traps ignored by the shell are ignored - A command invoked in this separate environment cannot affect the + A command invoked in this separate environment cannot affect the shell's execution environment. - Command substitution, commands grouped with parentheses, and asynchro- + Command substitution, commands grouped with parentheses, and asynchro- nous commands are invoked in a subshell environment that is a duplicate of the shell environment, except that traps caught by the shell are re- - set to the values that the shell inherited from its parent at invoca- + set to the values that the shell inherited from its parent at invoca- tion. Builtin commands that are invoked as part of a pipeline are also executed in a subshell environment. Changes made to the subshell envi- ronment cannot affect the shell's execution environment. Subshells spawned to execute command substitutions inherit the value of - the --ee option from the parent shell. When not in _p_o_s_i_x _m_o_d_e, bbaasshh + the --ee option from the parent shell. When not in _p_o_s_i_x _m_o_d_e, bbaasshh clears the --ee option in such subshells. - If a command is followed by a && and job control is not active, the de- + If a command is followed by a && and job control is not active, the de- fault standard input for the command is the empty file _/_d_e_v_/_n_u_l_l. Oth- - erwise, the invoked command inherits the file descriptors of the call- + erwise, the invoked command inherits the file descriptors of the call- ing shell as modified by redirections. EENNVVIIRROONNMMEENNTT - When a program is invoked it is given an array of strings called the + When a program is invoked it is given an array of strings called the _e_n_v_i_r_o_n_m_e_n_t. This is a list of _n_a_m_e-_v_a_l_u_e pairs, of the form _n_a_m_e=_v_a_l_u_e. - The shell provides several ways to manipulate the environment. On in- - vocation, the shell scans its own environment and creates a parameter - for each name found, automatically marking it for _e_x_p_o_r_t to child pro- + The shell provides several ways to manipulate the environment. On in- + vocation, the shell scans its own environment and creates a parameter + for each name found, automatically marking it for _e_x_p_o_r_t to child pro- cesses. Executed commands inherit the environment. The eexxppoorrtt and ddee-- - ccllaarree --xx commands allow parameters and functions to be added to and + ccllaarree --xx commands allow parameters and functions to be added to and deleted from the environment. If the value of a parameter in the envi- ronment is modified, the new value becomes part of the environment, re- - placing the old. The environment inherited by any executed command - consists of the shell's initial environment, whose values may be modi- - fied in the shell, less any pairs removed by the uunnsseett command, plus + placing the old. The environment inherited by any executed command + consists of the shell's initial environment, whose values may be modi- + fied in the shell, less any pairs removed by the uunnsseett command, plus any additions via the eexxppoorrtt and ddeeccllaarree --xx commands. - The environment for any _s_i_m_p_l_e _c_o_m_m_a_n_d or function may be augmented - temporarily by prefixing it with parameter assignments, as described + The environment for any _s_i_m_p_l_e _c_o_m_m_a_n_d or function may be augmented + temporarily by prefixing it with parameter assignments, as described above in PPAARRAAMMEETTEERRSS. These assignment statements affect only the envi- ronment seen by that command. - If the --kk option is set (see the sseett builtin command below), then _a_l_l - parameter assignments are placed in the environment for a command, not + If the --kk option is set (see the sseett builtin command below), then _a_l_l + parameter assignments are placed in the environment for a command, not just those that precede the command name. - When bbaasshh invokes an external command, the variable __ is set to the + When bbaasshh invokes an external command, the variable __ is set to the full filename of the command and passed to that command in its environ- ment. EEXXIITT SSTTAATTUUSS - The exit status of an executed command is the value returned by the + The exit status of an executed command is the value returned by the _w_a_i_t_p_i_d system call or equivalent function. Exit statuses fall between - 0 and 255, though, as explained below, the shell may use values above + 0 and 255, though, as explained below, the shell may use values above 125 specially. Exit statuses from shell builtins and compound commands are also limited to this range. Under certain circumstances, the shell will use special values to indicate specific failure modes. For the shell's purposes, a command which exits with a zero exit status - has succeeded. An exit status of zero indicates success. A non-zero - exit status indicates failure. When a command terminates on a fatal + has succeeded. An exit status of zero indicates success. A non-zero + exit status indicates failure. When a command terminates on a fatal signal _N, bbaasshh uses the value of 128+_N as the exit status. - If a command is not found, the child process created to execute it re- - turns a status of 127. If a command is found but is not executable, + If a command is not found, the child process created to execute it re- + turns a status of 127. If a command is found but is not executable, the return status is 126. If a command fails because of an error during expansion or redirection, the exit status is greater than zero. - Shell builtin commands return a status of 0 (_t_r_u_e) if successful, and - non-zero (_f_a_l_s_e) if an error occurs while they execute. All builtins - return an exit status of 2 to indicate incorrect usage, generally in- + Shell builtin commands return a status of 0 (_t_r_u_e) if successful, and + non-zero (_f_a_l_s_e) if an error occurs while they execute. All builtins + return an exit status of 2 to indicate incorrect usage, generally in- valid options or missing arguments. - BBaasshh itself returns the exit status of the last command executed, un- - less a syntax error occurs, in which case it exits with a non-zero + BBaasshh itself returns the exit status of the last command executed, un- + less a syntax error occurs, in which case it exits with a non-zero value. See also the eexxiitt builtin command below. SSIIGGNNAALLSS - When bbaasshh is interactive, in the absence of any traps, it ignores + When bbaasshh is interactive, in the absence of any traps, it ignores SSIIGGTTEERRMM (so that kkiillll 00 does not kill an interactive shell), and SSIIGGIINNTT - is caught and handled (so that the wwaaiitt builtin is interruptible). In + is caught and handled (so that the wwaaiitt builtin is interruptible). In all cases, bbaasshh ignores SSIIGGQQUUIITT. If job control is in effect, bbaasshh ig- nores SSIIGGTTTTIINN, SSIIGGTTTTOOUU, and SSIIGGTTSSTTPP. Non-builtin commands run by bbaasshh have signal handlers set to the values inherited by the shell from its parent. When job control is not in ef- - fect, asynchronous commands ignore SSIIGGIINNTT and SSIIGGQQUUIITT in addition to - these inherited handlers. Commands run as a result of command substi- + fect, asynchronous commands ignore SSIIGGIINNTT and SSIIGGQQUUIITT in addition to + these inherited handlers. Commands run as a result of command substi- tution ignore the keyboard-generated job control signals SSIIGGTTTTIINN, SSIIGGTT-- TTOOUU, and SSIIGGTTSSTTPP. - The shell exits by default upon receipt of a SSIIGGHHUUPP. Before exiting, - an interactive shell resends the SSIIGGHHUUPP to all jobs, running or + The shell exits by default upon receipt of a SSIIGGHHUUPP. Before exiting, + an interactive shell resends the SSIIGGHHUUPP to all jobs, running or stopped. Stopped jobs are sent SSIIGGCCOONNTT to ensure that they receive the - SSIIGGHHUUPP. To prevent the shell from sending the signal to a particular - job, it should be removed from the jobs table with the ddiissoowwnn builtin - (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) or marked to not receive SSIIGGHHUUPP us- + SSIIGGHHUUPP. To prevent the shell from sending the signal to a particular + job, it should be removed from the jobs table with the ddiissoowwnn builtin + (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) or marked to not receive SSIIGGHHUUPP us- ing ddiissoowwnn --hh. - If the hhuuppoonneexxiitt shell option has been set with sshhoopptt, bbaasshh sends a + If the hhuuppoonneexxiitt shell option has been set with sshhoopptt, bbaasshh sends a SSIIGGHHUUPP to all jobs when an interactive login shell exits. - If bbaasshh is waiting for a command to complete and receives a signal for + If bbaasshh is waiting for a command to complete and receives a signal for which a trap has been set, the trap will not be executed until the com- - mand completes. When bbaasshh is waiting for an asynchronous command via - the wwaaiitt builtin, the reception of a signal for which a trap has been + mand completes. When bbaasshh is waiting for an asynchronous command via + the wwaaiitt builtin, the reception of a signal for which a trap has been set will cause the wwaaiitt builtin to return immediately with an exit sta- tus greater than 128, immediately after which the trap is executed. JJOOBB CCOONNTTRROOLL _J_o_b _c_o_n_t_r_o_l refers to the ability to selectively stop (_s_u_s_p_e_n_d) the ex- - ecution of processes and continue (_r_e_s_u_m_e) their execution at a later - point. A user typically employs this facility via an interactive in- - terface supplied jointly by the operating system kernel's terminal + ecution of processes and continue (_r_e_s_u_m_e) their execution at a later + point. A user typically employs this facility via an interactive in- + terface supplied jointly by the operating system kernel's terminal driver and bbaasshh. - The shell associates a _j_o_b with each pipeline. It keeps a table of - currently executing jobs, which may be listed with the jjoobbss command. - When bbaasshh starts a job asynchronously (in the _b_a_c_k_g_r_o_u_n_d), it prints a + The shell associates a _j_o_b with each pipeline. It keeps a table of + currently executing jobs, which may be listed with the jjoobbss command. + When bbaasshh starts a job asynchronously (in the _b_a_c_k_g_r_o_u_n_d), it prints a line that looks like: [1] 25647 indicating that this job is job number 1 and that the process ID of the last process in the pipeline associated with this job is 25647. All of - the processes in a single pipeline are members of the same job. BBaasshh + the processes in a single pipeline are members of the same job. BBaasshh uses the _j_o_b abstraction as the basis for job control. - To facilitate the implementation of the user interface to job control, + To facilitate the implementation of the user interface to job control, the operating system maintains the notion of a _c_u_r_r_e_n_t _t_e_r_m_i_n_a_l _p_r_o_c_e_s_s _g_r_o_u_p _I_D. Members of this process group (processes whose process group ID is equal to the current terminal process group ID) receive keyboard- - generated signals such as SSIIGGIINNTT. These processes are said to be in - the _f_o_r_e_g_r_o_u_n_d. _B_a_c_k_g_r_o_u_n_d processes are those whose process group ID + generated signals such as SSIIGGIINNTT. These processes are said to be in + the _f_o_r_e_g_r_o_u_n_d. _B_a_c_k_g_r_o_u_n_d processes are those whose process group ID differs from the terminal's; such processes are immune to keyboard-gen- erated signals. Only foreground processes are allowed to read from or, - if the user so specifies with stty tostop, write to the terminal. - Background processes which attempt to read from (write to when stty - tostop is in effect) the terminal are sent a SSIIGGTTTTIINN ((SSIIGGTTTTOOUU)) signal - by the kernel's terminal driver, which, unless caught, suspends the + if the user so specifies with stty tostop, write to the terminal. + Background processes which attempt to read from (write to when stty + tostop is in effect) the terminal are sent a SSIIGGTTTTIINN ((SSIIGGTTTTOOUU)) signal + by the kernel's terminal driver, which, unless caught, suspends the process. - If the operating system on which bbaasshh is running supports job control, + If the operating system on which bbaasshh is running supports job control, bbaasshh contains facilities to use it. Typing the _s_u_s_p_e_n_d character (typ- ically ^^ZZ, Control-Z) while a process is running causes that process to - be stopped and returns control to bbaasshh. Typing the _d_e_l_a_y_e_d _s_u_s_p_e_n_d - character (typically ^^YY, Control-Y) causes the process to be stopped + be stopped and returns control to bbaasshh. Typing the _d_e_l_a_y_e_d _s_u_s_p_e_n_d + character (typically ^^YY, Control-Y) causes the process to be stopped when it attempts to read input from the terminal, and control to be re- - turned to bbaasshh. The user may then manipulate the state of this job, - using the bbgg command to continue it in the background, the ffgg command + turned to bbaasshh. The user may then manipulate the state of this job, + using the bbgg command to continue it in the background, the ffgg command to continue it in the foreground, or the kkiillll command to kill it. A ^^ZZ takes effect immediately, and has the additional side effect of causing pending output and typeahead to be discarded. There are a number of ways to refer to a job in the shell. The charac- - ter %% introduces a job specification (_j_o_b_s_p_e_c). Job number _n may be + ter %% introduces a job specification (_j_o_b_s_p_e_c). Job number _n may be referred to as %%nn. A job may also be referred to using a prefix of the name used to start it, or using a substring that appears in its command - line. For example, %%ccee refers to a stopped ccee job. If a prefix - matches more than one job, bbaasshh reports an error. Using %%??ccee, on the - other hand, refers to any job containing the string ccee in its command - line. If the substring matches more than one job, bbaasshh reports an er- - ror. The symbols %%%% and %%++ refer to the shell's notion of the _c_u_r_r_e_n_t - _j_o_b, which is the last job stopped while it was in the foreground or - started in the background. The _p_r_e_v_i_o_u_s _j_o_b may be referenced using + line. For example, %%ccee refers to a stopped ccee job. If a prefix + matches more than one job, bbaasshh reports an error. Using %%??ccee, on the + other hand, refers to any job containing the string ccee in its command + line. If the substring matches more than one job, bbaasshh reports an er- + ror. The symbols %%%% and %%++ refer to the shell's notion of the _c_u_r_r_e_n_t + _j_o_b, which is the last job stopped while it was in the foreground or + started in the background. The _p_r_e_v_i_o_u_s _j_o_b may be referenced using %%--. If there is only a single job, %%++ and %%-- can both be used to refer - to that job. In output pertaining to jobs (e.g., the output of the + to that job. In output pertaining to jobs (e.g., the output of the jjoobbss command), the current job is always flagged with a ++, and the pre- - vious job with a --. A single % (with no accompanying job specifica- + vious job with a --. A single % (with no accompanying job specifica- tion) also refers to the current job. - Simply naming a job can be used to bring it into the foreground: %%11 is - a synonym for ````ffgg %%11'''', bringing job 1 from the background into the - foreground. Similarly, ````%%11 &&'''' resumes job 1 in the background, + Simply naming a job can be used to bring it into the foreground: %%11 is + a synonym for ````ffgg %%11'''', bringing job 1 from the background into the + foreground. Similarly, ````%%11 &&'''' resumes job 1 in the background, equivalent to ````bbgg %%11''''. - The shell learns immediately whenever a job changes state. Normally, + The shell learns immediately whenever a job changes state. Normally, bbaasshh waits until it is about to print a prompt before reporting changes - in a job's status so as to not interrupt any other output. If the --bb + in a job's status so as to not interrupt any other output. If the --bb option to the sseett builtin command is enabled, bbaasshh reports such changes - immediately. Any trap on SSIIGGCCHHLLDD is executed for each child that ex- + immediately. Any trap on SSIIGGCCHHLLDD is executed for each child that ex- its. - If an attempt to exit bbaasshh is made while jobs are stopped (or, if the - cchheecckkjjoobbss shell option has been enabled using the sshhoopptt builtin, run- + If an attempt to exit bbaasshh is made while jobs are stopped (or, if the + cchheecckkjjoobbss shell option has been enabled using the sshhoopptt builtin, run- ning), the shell prints a warning message, and, if the cchheecckkjjoobbss option - is enabled, lists the jobs and their statuses. The jjoobbss command may - then be used to inspect their status. If a second attempt to exit is - made without an intervening command, the shell does not print another + is enabled, lists the jobs and their statuses. The jjoobbss command may + then be used to inspect their status. If a second attempt to exit is + made without an intervening command, the shell does not print another warning, and any stopped jobs are terminated. - When the shell is waiting for a job or process using the wwaaiitt builtin, - and job control is enabled, wwaaiitt will return when the job changes - state. The --ff option causes wwaaiitt to wait until the job or process ter- + When the shell is waiting for a job or process using the wwaaiitt builtin, + and job control is enabled, wwaaiitt will return when the job changes + state. The --ff option causes wwaaiitt to wait until the job or process ter- minates before returning. PPRROOMMPPTTIINNGG When executing interactively, bbaasshh displays the primary prompt PPSS11 when - it is ready to read a command, and the secondary prompt PPSS22 when it - needs more input to complete a command. BBaasshh displays PPSS00 after it - reads a command but before executing it. BBaasshh displays PPSS44 as de- - scribed above before tracing each command when the --xx option is en- - abled. BBaasshh allows these prompt strings to be customized by inserting - a number of backslash-escaped special characters that are decoded as + it is ready to read a command, and the secondary prompt PPSS22 when it + needs more input to complete a command. BBaasshh displays PPSS00 after it + reads a command but before executing it. BBaasshh displays PPSS44 as de- + scribed above before tracing each command when the --xx option is en- + abled. BBaasshh allows these prompt strings to be customized by inserting + a number of backslash-escaped special characters that are decoded as follows: \\aa an ASCII bell character (07) - \\dd the date in "Weekday Month Date" format (e.g., "Tue May + \\dd the date in "Weekday Month Date" format (e.g., "Tue May 26") \\DD{{_f_o_r_m_a_t}} the _f_o_r_m_a_t is passed to _s_t_r_f_t_i_m_e(3) and the result is in- serted into the prompt string; an empty _f_o_r_m_a_t results in - a locale-specific time representation. The braces are + a locale-specific time representation. The braces are required \\ee an ASCII escape character (033) \\hh the hostname up to the first `.' @@ -2949,7 +2954,7 @@ PPRROOMMPPTTIINNGG \\ll the basename of the shell's terminal device name \\nn newline \\rr carriage return - \\ss the name of the shell, the basename of $$00 (the portion + \\ss the name of the shell, the basename of $$00 (the portion following the final slash) \\tt the current time in 24-hour HH:MM:SS format \\TT the current time in 12-hour HH:MM:SS format @@ -2958,8 +2963,8 @@ PPRROOMMPPTTIINNGG \\uu the username of the current user \\vv the version of bbaasshh (e.g., 2.00) \\VV the release of bbaasshh, version + patch level (e.g., 2.00.0) - \\ww the current working directory, with $$HHOOMMEE abbreviated - with a tilde (uses the value of the PPRROOMMPPTT__DDIIRRTTRRIIMM vari- + \\ww the current working directory, with $$HHOOMMEE abbreviated + with a tilde (uses the value of the PPRROOMMPPTT__DDIIRRTTRRIIMM vari- able) \\WW the basename of the current working directory, with $$HHOOMMEE abbreviated with a tilde @@ -2968,68 +2973,68 @@ PPRROOMMPPTTIINNGG \\$$ if the effective UID is 0, a ##, otherwise a $$ \\_n_n_n the character corresponding to the octal number _n_n_n \\\\ a backslash - \\[[ begin a sequence of non-printing characters, which could - be used to embed a terminal control sequence into the + \\[[ begin a sequence of non-printing characters, which could + be used to embed a terminal control sequence into the prompt \\]] end a sequence of non-printing characters - The command number and the history number are usually different: the - history number of a command is its position in the history list, which - may include commands restored from the history file (see HHIISSTTOORRYY be- - low), while the command number is the position in the sequence of com- - mands executed during the current shell session. After the string is - decoded, it is expanded via parameter expansion, command substitution, - arithmetic expansion, and quote removal, subject to the value of the + The command number and the history number are usually different: the + history number of a command is its position in the history list, which + may include commands restored from the history file (see HHIISSTTOORRYY be- + low), while the command number is the position in the sequence of com- + mands executed during the current shell session. After the string is + decoded, it is expanded via parameter expansion, command substitution, + arithmetic expansion, and quote removal, subject to the value of the pprroommppttvvaarrss shell option (see the description of the sshhoopptt command under - SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). This can have unwanted side effects if - escaped portions of the string appear within command substitution or + SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). This can have unwanted side effects if + escaped portions of the string appear within command substitution or contain characters special to word expansion. RREEAADDLLIINNEE - This is the library that handles reading input when using an interac- + This is the library that handles reading input when using an interac- tive shell, unless the ----nnooeeddiittiinngg option is given at shell invocation. Line editing is also used when using the --ee option to the rreeaadd builtin. By default, the line editing commands are similar to those of Emacs. A vi-style line editing interface is also available. Line editing can be - enabled at any time using the --oo eemmaaccss or --oo vvii options to the sseett - builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). To turn off line editing - after the shell is running, use the ++oo eemmaaccss or ++oo vvii options to the + enabled at any time using the --oo eemmaaccss or --oo vvii options to the sseett + builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). To turn off line editing + after the shell is running, use the ++oo eemmaaccss or ++oo vvii options to the sseett builtin. RReeaaddlliinnee NNoottaattiioonn In this section, the Emacs-style notation is used to denote keystrokes. - Control keys are denoted by C-_k_e_y, e.g., C-n means Control-N. Simi- - larly, _m_e_t_a keys are denoted by M-_k_e_y, so M-x means Meta-X. (On key- - boards without a _m_e_t_a key, M-_x means ESC _x, i.e., press the Escape key + Control keys are denoted by C-_k_e_y, e.g., C-n means Control-N. Simi- + larly, _m_e_t_a keys are denoted by M-_k_e_y, so M-x means Meta-X. (On key- + boards without a _m_e_t_a key, M-_x means ESC _x, i.e., press the Escape key then the _x key. This makes ESC the _m_e_t_a _p_r_e_f_i_x. The combination M-C-_x - means ESC-Control-_x, or press the Escape key then hold the Control key + means ESC-Control-_x, or press the Escape key then hold the Control key while pressing the _x key.) Readline commands may be given numeric _a_r_g_u_m_e_n_t_s, which normally act as - a repeat count. Sometimes, however, it is the sign of the argument - that is significant. Passing a negative argument to a command that - acts in the forward direction (e.g., kkiillll--lliinnee) causes that command to - act in a backward direction. Commands whose behavior with arguments + a repeat count. Sometimes, however, it is the sign of the argument + that is significant. Passing a negative argument to a command that + acts in the forward direction (e.g., kkiillll--lliinnee) causes that command to + act in a backward direction. Commands whose behavior with arguments deviates from this are noted below. - When a command is described as _k_i_l_l_i_n_g text, the text deleted is saved + When a command is described as _k_i_l_l_i_n_g text, the text deleted is saved for possible future retrieval (_y_a_n_k_i_n_g). The killed text is saved in a _k_i_l_l _r_i_n_g. Consecutive kills cause the text to be accumulated into one unit, which can be yanked all at once. Commands which do not kill text separate the chunks of text on the kill ring. RReeaaddlliinnee IInniittiiaalliizzaattiioonn - Readline is customized by putting commands in an initialization file - (the _i_n_p_u_t_r_c file). The name of this file is taken from the value of + Readline is customized by putting commands in an initialization file + (the _i_n_p_u_t_r_c file). The name of this file is taken from the value of the IINNPPUUTTRRCC variable. If that variable is unset, the default is _~_/_._i_n_- - _p_u_t_r_c. When a program which uses the readline library starts up, the - initialization file is read, and the key bindings and variables are - set. There are only a few basic constructs allowed in the readline - initialization file. Blank lines are ignored. Lines beginning with a - ## are comments. Lines beginning with a $$ indicate conditional con- + _p_u_t_r_c. When a program which uses the readline library starts up, the + initialization file is read, and the key bindings and variables are + set. There are only a few basic constructs allowed in the readline + initialization file. Blank lines are ignored. Lines beginning with a + ## are comments. Lines beginning with a $$ indicate conditional con- structs. Other lines denote key bindings and variable settings. - The default key-bindings may be changed with an _i_n_p_u_t_r_c file. Other + The default key-bindings may be changed with an _i_n_p_u_t_r_c file. Other programs that use this library may add their own commands and bindings. For example, placing @@ -3037,18 +3042,18 @@ RREEAADDLLIINNEE M-Control-u: universal-argument or C-Meta-u: universal-argument - into the _i_n_p_u_t_r_c would make M-C-u execute the readline command _u_n_i_v_e_r_- + into the _i_n_p_u_t_r_c would make M-C-u execute the readline command _u_n_i_v_e_r_- _s_a_l_-_a_r_g_u_m_e_n_t. - The following symbolic character names are recognized: _R_U_B_O_U_T, _D_E_L, + The following symbolic character names are recognized: _R_U_B_O_U_T, _D_E_L, _E_S_C, _L_F_D, _N_E_W_L_I_N_E, _R_E_T, _R_E_T_U_R_N, _S_P_C, _S_P_A_C_E, and _T_A_B. - In addition to command names, readline allows keys to be bound to a + In addition to command names, readline allows keys to be bound to a string that is inserted when the key is pressed (a _m_a_c_r_o). RReeaaddlliinnee KKeeyy BBiinnddiinnggss - The syntax for controlling key bindings in the _i_n_p_u_t_r_c file is simple. - All that is required is the name of the command or the text of a macro + The syntax for controlling key bindings in the _i_n_p_u_t_r_c file is simple. + All that is required is the name of the command or the text of a macro and a key sequence to which it should be bound. The name may be speci- fied in one of two ways: as a symbolic key name, possibly with _M_e_t_a_- or _C_o_n_t_r_o_l_- prefixes, or as a key sequence. @@ -3060,15 +3065,15 @@ RREEAADDLLIINNEE Meta-Rubout: backward-kill-word Control-o: "> output" - In the above example, _C_-_u is bound to the function uunniivveerrssaall--aarrgguummeenntt, - _M_-_D_E_L is bound to the function bbaacckkwwaarrdd--kkiillll--wwoorrdd, and _C_-_o is bound to - run the macro expressed on the right hand side (that is, to insert the + In the above example, _C_-_u is bound to the function uunniivveerrssaall--aarrgguummeenntt, + _M_-_D_E_L is bound to the function bbaacckkwwaarrdd--kkiillll--wwoorrdd, and _C_-_o is bound to + run the macro expressed on the right hand side (that is, to insert the text ``> output'' into the line). - In the second form, ""kkeeyysseeqq"":_f_u_n_c_t_i_o_n_-_n_a_m_e or _m_a_c_r_o, kkeeyysseeqq differs - from kkeeyynnaammee above in that strings denoting an entire key sequence may - be specified by placing the sequence within double quotes. Some GNU - Emacs style key escapes can be used, as in the following example, but + In the second form, ""kkeeyysseeqq"":_f_u_n_c_t_i_o_n_-_n_a_m_e or _m_a_c_r_o, kkeeyysseeqq differs + from kkeeyynnaammee above in that strings denoting an entire key sequence may + be specified by placing the sequence within double quotes. Some GNU + Emacs style key escapes can be used, as in the following example, but the symbolic character names are not recognized. "\C-u": universal-argument @@ -3076,7 +3081,7 @@ RREEAADDLLIINNEE "\e[11~": "Function Key 1" In this example, _C_-_u is again bound to the function uunniivveerrssaall--aarrgguummeenntt. - _C_-_x _C_-_r is bound to the function rree--rreeaadd--iinniitt--ffiillee, and _E_S_C _[ _1 _1 _~ is + _C_-_x _C_-_r is bound to the function rree--rreeaadd--iinniitt--ffiillee, and _E_S_C _[ _1 _1 _~ is bound to insert the text ``Function Key 1''. The full set of GNU Emacs style escape sequences is @@ -3087,7 +3092,7 @@ RREEAADDLLIINNEE \\"" literal " \\'' literal ' - In addition to the GNU Emacs style escape sequences, a second set of + In addition to the GNU Emacs style escape sequences, a second set of backslash escapes is available: \\aa alert (bell) \\bb backspace @@ -3097,20 +3102,20 @@ RREEAADDLLIINNEE \\rr carriage return \\tt horizontal tab \\vv vertical tab - \\_n_n_n the eight-bit character whose value is the octal value + \\_n_n_n the eight-bit character whose value is the octal value _n_n_n (one to three digits) - \\xx_H_H the eight-bit character whose value is the hexadecimal + \\xx_H_H the eight-bit character whose value is the hexadecimal value _H_H (one or two hex digits) When entering the text of a macro, single or double quotes must be used to indicate a macro definition. Unquoted text is assumed to be a func- - tion name. In the macro body, the backslash escapes described above - are expanded. Backslash will quote any other character in the macro + tion name. In the macro body, the backslash escapes described above + are expanded. Backslash will quote any other character in the macro text, including " and '. - BBaasshh allows the current readline key bindings to be displayed or modi- - fied with the bbiinndd builtin command. The editing mode may be switched - during interactive use by using the --oo option to the sseett builtin com- + BBaasshh allows the current readline key bindings to be displayed or modi- + fied with the bbiinndd builtin command. The editing mode may be switched + during interactive use by using the --oo option to the sseett builtin com- mand (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). RReeaaddlliinnee VVaarriiaabblleess @@ -3121,77 +3126,77 @@ RREEAADDLLIINNEE sseett _v_a_r_i_a_b_l_e_-_n_a_m_e _v_a_l_u_e or using the bbiinndd builtin command (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). - Except where noted, readline variables can take the values OOnn or OOffff - (without regard to case). Unrecognized variable names are ignored. - When a variable value is read, empty or null values, "on" (case-insen- + Except where noted, readline variables can take the values OOnn or OOffff + (without regard to case). Unrecognized variable names are ignored. + When a variable value is read, empty or null values, "on" (case-insen- sitive), and "1" are equivalent to OOnn. All other values are equivalent to OOffff. The variables and their default values are: bbeellll--ssttyyllee ((aauuddiibbllee)) - Controls what happens when readline wants to ring the terminal + Controls what happens when readline wants to ring the terminal bell. If set to nnoonnee, readline never rings the bell. If set to - vviissiibbllee, readline uses a visible bell if one is available. If + vviissiibbllee, readline uses a visible bell if one is available. If set to aauuddiibbllee, readline attempts to ring the terminal's bell. bbiinndd--ttttyy--ssppeecciiaall--cchhaarrss ((OOnn)) - If set to OOnn, readline attempts to bind the control characters + If set to OOnn, readline attempts to bind the control characters treated specially by the kernel's terminal driver to their read- line equivalents. bblliinnkk--mmaattcchhiinngg--ppaarreenn ((OOffff)) If set to OOnn, readline attempts to briefly move the cursor to an opening parenthesis when a closing parenthesis is inserted. ccoolloorreedd--ccoommpplleettiioonn--pprreeffiixx ((OOffff)) - If set to OOnn, when listing completions, readline displays the + If set to OOnn, when listing completions, readline displays the common prefix of the set of possible completions using a differ- - ent color. The color definitions are taken from the value of + ent color. The color definitions are taken from the value of the LLSS__CCOOLLOORRSS environment variable. ccoolloorreedd--ssttaattss ((OOffff)) - If set to OOnn, readline displays possible completions using dif- - ferent colors to indicate their file type. The color defini- - tions are taken from the value of the LLSS__CCOOLLOORRSS environment + If set to OOnn, readline displays possible completions using dif- + ferent colors to indicate their file type. The color defini- + tions are taken from the value of the LLSS__CCOOLLOORRSS environment variable. ccoommmmeenntt--bbeeggiinn ((````##'''')) - The string that is inserted when the readline iinnsseerrtt--ccoommmmeenntt + The string that is inserted when the readline iinnsseerrtt--ccoommmmeenntt command is executed. This command is bound to MM--## in emacs mode and to ## in vi command mode. ccoommpplleettiioonn--ddiissppllaayy--wwiiddtthh ((--11)) - The number of screen columns used to display possible matches - when performing completion. The value is ignored if it is less - than 0 or greater than the terminal screen width. A value of 0 - will cause matches to be displayed one per line. The default + The number of screen columns used to display possible matches + when performing completion. The value is ignored if it is less + than 0 or greater than the terminal screen width. A value of 0 + will cause matches to be displayed one per line. The default value is -1. ccoommpplleettiioonn--iiggnnoorree--ccaassee ((OOffff)) If set to OOnn, readline performs filename matching and completion in a case-insensitive fashion. ccoommpplleettiioonn--mmaapp--ccaassee ((OOffff)) - If set to OOnn, and ccoommpplleettiioonn--iiggnnoorree--ccaassee is enabled, readline - treats hyphens (_-) and underscores (__) as equivalent when per- + If set to OOnn, and ccoommpplleettiioonn--iiggnnoorree--ccaassee is enabled, readline + treats hyphens (_-) and underscores (__) as equivalent when per- forming case-insensitive filename matching and completion. ccoommpplleettiioonn--pprreeffiixx--ddiissppllaayy--lleennggtthh ((00)) - The length in characters of the common prefix of a list of pos- - sible completions that is displayed without modification. When - set to a value greater than zero, common prefixes longer than - this value are replaced with an ellipsis when displaying possi- + The length in characters of the common prefix of a list of pos- + sible completions that is displayed without modification. When + set to a value greater than zero, common prefixes longer than + this value are replaced with an ellipsis when displaying possi- ble completions. ccoommpplleettiioonn--qquueerryy--iitteemmss ((110000)) - This determines when the user is queried about viewing the num- - ber of possible completions generated by the ppoossssiibbllee--ccoommppllee-- - ttiioonnss command. It may be set to any integer value greater than - or equal to zero. If the number of possible completions is + This determines when the user is queried about viewing the num- + ber of possible completions generated by the ppoossssiibbllee--ccoommppllee-- + ttiioonnss command. It may be set to any integer value greater than + or equal to zero. If the number of possible completions is greater than or equal to the value of this variable, the user is - asked whether or not he wishes to view them; otherwise they are + asked whether or not he wishes to view them; otherwise they are simply listed on the terminal. ccoonnvveerrtt--mmeettaa ((OOnn)) - If set to OOnn, readline will convert characters with the eighth + If set to OOnn, readline will convert characters with the eighth bit set to an ASCII key sequence by stripping the eighth bit and - prefixing an escape character (in effect, using escape as the - _m_e_t_a _p_r_e_f_i_x). The default is _O_n, but readline will set it to + prefixing an escape character (in effect, using escape as the + _m_e_t_a _p_r_e_f_i_x). The default is _O_n, but readline will set it to _O_f_f if the locale contains eight-bit characters. ddiissaabbllee--ccoommpplleettiioonn ((OOffff)) If set to OOnn, readline will inhibit word completion. Completion - characters will be inserted into the line as if they had been + characters will be inserted into the line as if they had been mapped to sseellff--iinnsseerrtt. eecchhoo--ccoonnttrrooll--cchhaarraacctteerrss ((OOnn)) - When set to OOnn, on operating systems that indicate they support + When set to OOnn, on operating systems that indicate they support it, readline echoes a character corresponding to a signal gener- ated from the keyboard. eeddiittiinngg--mmooddee ((eemmaaccss)) @@ -3199,209 +3204,209 @@ RREEAADDLLIINNEE ilar to _E_m_a_c_s or _v_i. eeddiittiinngg--mmooddee can be set to either eemmaaccss or vvii. eemmaaccss--mmooddee--ssttrriinngg ((@@)) - If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t variable is enabled, this string is + If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t variable is enabled, this string is displayed immediately before the last line of the primary prompt when emacs editing mode is active. The value is expanded like a - key binding, so the standard set of meta- and control prefixes - and backslash escape sequences is available. Use the \1 and \2 - escapes to begin and end sequences of non-printing characters, - which can be used to embed a terminal control sequence into the + key binding, so the standard set of meta- and control prefixes + and backslash escape sequences is available. Use the \1 and \2 + escapes to begin and end sequences of non-printing characters, + which can be used to embed a terminal control sequence into the mode string. eennaabbllee--bbrraacckkeetteedd--ppaassttee ((OOffff)) - When set to OOnn, readline will configure the terminal in a way + When set to OOnn, readline will configure the terminal in a way that will enable it to insert each paste into the editing buffer as a single string of characters, instead of treating each char- - acter as if it had been read from the keyboard. This can pre- - vent pasted characters from being interpreted as editing com- + acter as if it had been read from the keyboard. This can pre- + vent pasted characters from being interpreted as editing com- mands. eennaabbllee--kkeeyyppaadd ((OOffff)) When set to OOnn, readline will try to enable the application key- pad when it is called. Some systems need this to enable the ar- row keys. eennaabbllee--mmeettaa--kkeeyy ((OOnn)) - When set to OOnn, readline will try to enable any meta modifier - key the terminal claims to support when it is called. On many + When set to OOnn, readline will try to enable any meta modifier + key the terminal claims to support when it is called. On many terminals, the meta key is used to send eight-bit characters. eexxppaanndd--ttiillddee ((OOffff)) - If set to OOnn, tilde expansion is performed when readline at- + If set to OOnn, tilde expansion is performed when readline at- tempts word completion. hhiissttoorryy--pprreesseerrvvee--ppooiinntt ((OOffff)) - If set to OOnn, the history code attempts to place point at the - same location on each history line retrieved with pprreevviioouuss--hhiiss-- + If set to OOnn, the history code attempts to place point at the + same location on each history line retrieved with pprreevviioouuss--hhiiss-- ttoorryy or nneexxtt--hhiissttoorryy. hhiissttoorryy--ssiizzee ((uunnsseett)) - Set the maximum number of history entries saved in the history - list. If set to zero, any existing history entries are deleted + Set the maximum number of history entries saved in the history + list. If set to zero, any existing history entries are deleted and no new entries are saved. If set to a value less than zero, - the number of history entries is not limited. By default, the - number of history entries is set to the value of the HHIISSTTSSIIZZEE - shell variable. If an attempt is made to set _h_i_s_t_o_r_y_-_s_i_z_e to a + the number of history entries is not limited. By default, the + number of history entries is set to the value of the HHIISSTTSSIIZZEE + shell variable. If an attempt is made to set _h_i_s_t_o_r_y_-_s_i_z_e to a non-numeric value, the maximum number of history entries will be set to 500. hhoorriizzoonnttaall--ssccrroollll--mmooddee ((OOffff)) - When set to OOnn, makes readline use a single line for display, + When set to OOnn, makes readline use a single line for display, scrolling the input horizontally on a single screen line when it - becomes longer than the screen width rather than wrapping to a - new line. This setting is automatically enabled for terminals + becomes longer than the screen width rather than wrapping to a + new line. This setting is automatically enabled for terminals of height 1. iinnppuutt--mmeettaa ((OOffff)) - If set to OOnn, readline will enable eight-bit input (that is, it + If set to OOnn, readline will enable eight-bit input (that is, it will not strip the eighth bit from the characters it reads), re- - gardless of what the terminal claims it can support. The name - mmeettaa--ffllaagg is a synonym for this variable. The default is _O_f_f, - but readline will set it to _O_n if the locale contains eight-bit + gardless of what the terminal claims it can support. The name + mmeettaa--ffllaagg is a synonym for this variable. The default is _O_f_f, + but readline will set it to _O_n if the locale contains eight-bit characters. iisseeaarrcchh--tteerrmmiinnaattoorrss ((````CC--[[CC--JJ'''')) - The string of characters that should terminate an incremental - search without subsequently executing the character as a com- - mand. If this variable has not been given a value, the charac- + The string of characters that should terminate an incremental + search without subsequently executing the character as a com- + mand. If this variable has not been given a value, the charac- ters _E_S_C and _C_-_J will terminate an incremental search. kkeeyymmaapp ((eemmaaccss)) - Set the current readline keymap. The set of valid keymap names - is _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_c_o_m_- - _m_a_n_d, and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d; _e_m_a_c_s is - equivalent to _e_m_a_c_s_-_s_t_a_n_d_a_r_d. The default value is _e_m_a_c_s; the + Set the current readline keymap. The set of valid keymap names + is _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_c_o_m_- + _m_a_n_d, and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d; _e_m_a_c_s is + equivalent to _e_m_a_c_s_-_s_t_a_n_d_a_r_d. The default value is _e_m_a_c_s; the value of eeddiittiinngg--mmooddee also affects the default keymap. kkeeyysseeqq--ttiimmeeoouutt ((550000)) - Specifies the duration _r_e_a_d_l_i_n_e will wait for a character when - reading an ambiguous key sequence (one that can form a complete + Specifies the duration _r_e_a_d_l_i_n_e will wait for a character when + reading an ambiguous key sequence (one that can form a complete key sequence using the input read so far, or can take additional - input to complete a longer key sequence). If no input is re- - ceived within the timeout, _r_e_a_d_l_i_n_e will use the shorter but - complete key sequence. The value is specified in milliseconds, - so a value of 1000 means that _r_e_a_d_l_i_n_e will wait one second for - additional input. If this variable is set to a value less than - or equal to zero, or to a non-numeric value, _r_e_a_d_l_i_n_e will wait - until another key is pressed to decide which key sequence to + input to complete a longer key sequence). If no input is re- + ceived within the timeout, _r_e_a_d_l_i_n_e will use the shorter but + complete key sequence. The value is specified in milliseconds, + so a value of 1000 means that _r_e_a_d_l_i_n_e will wait one second for + additional input. If this variable is set to a value less than + or equal to zero, or to a non-numeric value, _r_e_a_d_l_i_n_e will wait + until another key is pressed to decide which key sequence to complete. mmaarrkk--ddiirreeccttoorriieess ((OOnn)) If set to OOnn, completed directory names have a slash appended. mmaarrkk--mmooddiiffiieedd--lliinneess ((OOffff)) - If set to OOnn, history lines that have been modified are dis- + If set to OOnn, history lines that have been modified are dis- played with a preceding asterisk (**). mmaarrkk--ssyymmlliinnkkeedd--ddiirreeccttoorriieess ((OOffff)) If set to OOnn, completed names which are symbolic links to direc- - tories have a slash appended (subject to the value of mmaarrkk--ddii-- + tories have a slash appended (subject to the value of mmaarrkk--ddii-- rreeccttoorriieess). mmaattcchh--hhiiddddeenn--ffiilleess ((OOnn)) - This variable, when set to OOnn, causes readline to match files - whose names begin with a `.' (hidden files) when performing - filename completion. If set to OOffff, the leading `.' must be + This variable, when set to OOnn, causes readline to match files + whose names begin with a `.' (hidden files) when performing + filename completion. If set to OOffff, the leading `.' must be supplied by the user in the filename to be completed. mmeennuu--ccoommpplleettee--ddiissppllaayy--pprreeffiixx ((OOffff)) - If set to OOnn, menu completion displays the common prefix of the + If set to OOnn, menu completion displays the common prefix of the list of possible completions (which may be empty) before cycling through the list. oouuttppuutt--mmeettaa ((OOffff)) - If set to OOnn, readline will display characters with the eighth + If set to OOnn, readline will display characters with the eighth bit set directly rather than as a meta-prefixed escape sequence. The default is _O_f_f, but readline will set it to _O_n if the locale contains eight-bit characters. ppaaggee--ccoommpplleettiioonnss ((OOnn)) - If set to OOnn, readline uses an internal _m_o_r_e-like pager to dis- + If set to OOnn, readline uses an internal _m_o_r_e-like pager to dis- play a screenful of possible completions at a time. pprriinntt--ccoommpplleettiioonnss--hhoorriizzoonnttaallllyy ((OOffff)) - If set to OOnn, readline will display completions with matches - sorted horizontally in alphabetical order, rather than down the + If set to OOnn, readline will display completions with matches + sorted horizontally in alphabetical order, rather than down the screen. rreevveerrtt--aallll--aatt--nneewwlliinnee ((OOffff)) - If set to OOnn, readline will undo all changes to history lines + If set to OOnn, readline will undo all changes to history lines before returning when aacccceepptt--lliinnee is executed. By default, his- - tory lines may be modified and retain individual undo lists + tory lines may be modified and retain individual undo lists across calls to rreeaaddlliinnee. sshhooww--aallll--iiff--aammbbiigguuoouuss ((OOffff)) - This alters the default behavior of the completion functions. + This alters the default behavior of the completion functions. If set to OOnn, words which have more than one possible completion - cause the matches to be listed immediately instead of ringing + cause the matches to be listed immediately instead of ringing the bell. sshhooww--aallll--iiff--uunnmmooddiiffiieedd ((OOffff)) - This alters the default behavior of the completion functions in + This alters the default behavior of the completion functions in a fashion similar to sshhooww--aallll--iiff--aammbbiigguuoouuss. If set to OOnn, words - which have more than one possible completion without any possi- - ble partial completion (the possible completions don't share a - common prefix) cause the matches to be listed immediately in- + which have more than one possible completion without any possi- + ble partial completion (the possible completions don't share a + common prefix) cause the matches to be listed immediately in- stead of ringing the bell. sshhooww--mmooddee--iinn--pprroommpptt ((OOffff)) - If set to OOnn, add a string to the beginning of the prompt indi- - cating the editing mode: emacs, vi command, or vi insertion. + If set to OOnn, add a string to the beginning of the prompt indi- + cating the editing mode: emacs, vi command, or vi insertion. The mode strings are user-settable (e.g., _e_m_a_c_s_-_m_o_d_e_-_s_t_r_i_n_g). sskkiipp--ccoommpplleetteedd--tteexxtt ((OOffff)) - If set to OOnn, this alters the default completion behavior when - inserting a single match into the line. It's only active when - performing completion in the middle of a word. If enabled, - readline does not insert characters from the completion that - match characters after point in the word being completed, so + If set to OOnn, this alters the default completion behavior when + inserting a single match into the line. It's only active when + performing completion in the middle of a word. If enabled, + readline does not insert characters from the completion that + match characters after point in the word being completed, so portions of the word following the cursor are not duplicated. vvii--ccmmdd--mmooddee--ssttrriinngg ((((ccmmdd)))) - If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t variable is enabled, this string is + If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t variable is enabled, this string is displayed immediately before the last line of the primary prompt - when vi editing mode is active and in command mode. The value + when vi editing mode is active and in command mode. The value is expanded like a key binding, so the standard set of meta- and - control prefixes and backslash escape sequences is available. - Use the \1 and \2 escapes to begin and end sequences of non- - printing characters, which can be used to embed a terminal con- + control prefixes and backslash escape sequences is available. + Use the \1 and \2 escapes to begin and end sequences of non- + printing characters, which can be used to embed a terminal con- trol sequence into the mode string. vvii--iinnss--mmooddee--ssttrriinngg ((((iinnss)))) - If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t variable is enabled, this string is + If the _s_h_o_w_-_m_o_d_e_-_i_n_-_p_r_o_m_p_t variable is enabled, this string is displayed immediately before the last line of the primary prompt when vi editing mode is active and in insertion mode. The value is expanded like a key binding, so the standard set of meta- and - control prefixes and backslash escape sequences is available. - Use the \1 and \2 escapes to begin and end sequences of non- - printing characters, which can be used to embed a terminal con- + control prefixes and backslash escape sequences is available. + Use the \1 and \2 escapes to begin and end sequences of non- + printing characters, which can be used to embed a terminal con- trol sequence into the mode string. vviissiibbllee--ssttaattss ((OOffff)) - If set to OOnn, a character denoting a file's type as reported by - _s_t_a_t(2) is appended to the filename when listing possible com- + If set to OOnn, a character denoting a file's type as reported by + _s_t_a_t(2) is appended to the filename when listing possible com- pletions. RReeaaddlliinnee CCoonnddiittiioonnaall CCoonnssttrruuccttss - Readline implements a facility similar in spirit to the conditional - compilation features of the C preprocessor which allows key bindings - and variable settings to be performed as the result of tests. There + Readline implements a facility similar in spirit to the conditional + compilation features of the C preprocessor which allows key bindings + and variable settings to be performed as the result of tests. There are four parser directives used. - $$iiff The $$iiff construct allows bindings to be made based on the edit- - ing mode, the terminal being used, or the application using + $$iiff The $$iiff construct allows bindings to be made based on the edit- + ing mode, the terminal being used, or the application using readline. The text of the test, after any comparison operator, - extends to the end of the line; unless otherwise noted, no + extends to the end of the line; unless otherwise noted, no characters are required to isolate it. - mmooddee The mmooddee== form of the $$iiff directive is used to test - whether readline is in emacs or vi mode. This may be - used in conjunction with the sseett kkeeyymmaapp command, for in- - stance, to set bindings in the _e_m_a_c_s_-_s_t_a_n_d_a_r_d and - _e_m_a_c_s_-_c_t_l_x keymaps only if readline is starting out in + mmooddee The mmooddee== form of the $$iiff directive is used to test + whether readline is in emacs or vi mode. This may be + used in conjunction with the sseett kkeeyymmaapp command, for in- + stance, to set bindings in the _e_m_a_c_s_-_s_t_a_n_d_a_r_d and + _e_m_a_c_s_-_c_t_l_x keymaps only if readline is starting out in emacs mode. - tteerrmm The tteerrmm== form may be used to include terminal-specific + tteerrmm The tteerrmm== form may be used to include terminal-specific key bindings, perhaps to bind the key sequences output by the terminal's function keys. The word on the right side of the == is tested against both the full name of the ter- - minal and the portion of the terminal name before the - first --. This allows _s_u_n to match both _s_u_n and _s_u_n_-_c_m_d, + minal and the portion of the terminal name before the + first --. This allows _s_u_n to match both _s_u_n and _s_u_n_-_c_m_d, for instance. vveerrssiioonn - The vveerrssiioonn test may be used to perform comparisons - against specific readline versions. The vveerrssiioonn expands - to the current readline version. The set of comparison - operators includes ==, (and ====), !!==, <<==, >>==, <<, and >>. - The version number supplied on the right side of the op- - erator consists of a major version number, an optional + The vveerrssiioonn test may be used to perform comparisons + against specific readline versions. The vveerrssiioonn expands + to the current readline version. The set of comparison + operators includes ==, (and ====), !!==, <<==, >>==, <<, and >>. + The version number supplied on the right side of the op- + erator consists of a major version number, an optional decimal point, and an optional minor version (e.g., 77..11). - If the minor version is omitted, it is assumed to be 00. + If the minor version is omitted, it is assumed to be 00. The operator may be separated from the string vveerrssiioonn and from the version number argument by whitespace. aapppplliiccaattiioonn The aapppplliiccaattiioonn construct is used to include application- - specific settings. Each program using the readline li- - brary sets the _a_p_p_l_i_c_a_t_i_o_n _n_a_m_e, and an initialization + specific settings. Each program using the readline li- + brary sets the _a_p_p_l_i_c_a_t_i_o_n _n_a_m_e, and an initialization file can test for a particular value. This could be used - to bind key sequences to functions useful for a specific - program. For instance, the following command adds a key - sequence that quotes the current or previous word in + to bind key sequences to functions useful for a specific + program. For instance, the following command adds a key + sequence that quotes the current or previous word in bbaasshh: $$iiff Bash @@ -3411,12 +3416,12 @@ RREEAADDLLIINNEE _v_a_r_i_a_b_l_e The _v_a_r_i_a_b_l_e construct provides simple equality tests for - readline variables and values. The permitted comparison - operators are _=, _=_=, and _!_=. The variable name must be + readline variables and values. The permitted comparison + operators are _=, _=_=, and _!_=. The variable name must be separated from the comparison operator by whitespace; the - operator may be separated from the value on the right - hand side by whitespace. Both string and boolean vari- - ables may be tested. Boolean variables must be tested + operator may be separated from the value on the right + hand side by whitespace. Both string and boolean vari- + ables may be tested. Boolean variables must be tested against the values _o_n and _o_f_f. $$eennddiiff This command, as seen in the previous example, terminates an $$iiff @@ -3426,51 +3431,51 @@ RREEAADDLLIINNEE test fails. $$iinncclluuddee - This directive takes a single filename as an argument and reads - commands and bindings from that file. For example, the follow- + This directive takes a single filename as an argument and reads + commands and bindings from that file. For example, the follow- ing directive would read _/_e_t_c_/_i_n_p_u_t_r_c: $$iinncclluuddee _/_e_t_c_/_i_n_p_u_t_r_c SSeeaarrcchhiinngg - Readline provides commands for searching through the command history + Readline provides commands for searching through the command history (see HHIISSTTOORRYY below) for lines containing a specified string. There are two search modes: _i_n_c_r_e_m_e_n_t_a_l and _n_o_n_-_i_n_c_r_e_m_e_n_t_a_l. - Incremental searches begin before the user has finished typing the - search string. As each character of the search string is typed, read- + Incremental searches begin before the user has finished typing the + search string. As each character of the search string is typed, read- line displays the next entry from the history matching the string typed - so far. An incremental search requires only as many characters as - needed to find the desired history entry. The characters present in - the value of the iisseeaarrcchh--tteerrmmiinnaattoorrss variable are used to terminate an + so far. An incremental search requires only as many characters as + needed to find the desired history entry. The characters present in + the value of the iisseeaarrcchh--tteerrmmiinnaattoorrss variable are used to terminate an incremental search. If that variable has not been assigned a value the - Escape and Control-J characters will terminate an incremental search. - Control-G will abort an incremental search and restore the original - line. When the search is terminated, the history entry containing the + Escape and Control-J characters will terminate an incremental search. + Control-G will abort an incremental search and restore the original + line. When the search is terminated, the history entry containing the search string becomes the current line. - To find other matching entries in the history list, type Control-S or - Control-R as appropriate. This will search backward or forward in the - history for the next entry matching the search string typed so far. - Any other key sequence bound to a readline command will terminate the - search and execute that command. For instance, a _n_e_w_l_i_n_e will termi- + To find other matching entries in the history list, type Control-S or + Control-R as appropriate. This will search backward or forward in the + history for the next entry matching the search string typed so far. + Any other key sequence bound to a readline command will terminate the + search and execute that command. For instance, a _n_e_w_l_i_n_e will termi- nate the search and accept the line, thereby executing the command from the history list. Readline remembers the last incremental search string. If two Control- - Rs are typed without any intervening characters defining a new search + Rs are typed without any intervening characters defining a new search string, any remembered search string is used. - Non-incremental searches read the entire search string before starting - to search for matching history lines. The search string may be typed + Non-incremental searches read the entire search string before starting + to search for matching history lines. The search string may be typed by the user or be part of the contents of the current line. RReeaaddlliinnee CCoommmmaanndd NNaammeess - The following is a list of the names of the commands and the default + The following is a list of the names of the commands and the default key sequences to which they are bound. Command names without an accom- panying key sequence are unbound by default. In the following descrip- - tions, _p_o_i_n_t refers to the current cursor position, and _m_a_r_k refers to - a cursor position saved by the sseett--mmaarrkk command. The text between the + tions, _p_o_i_n_t refers to the current cursor position, and _m_a_r_k refers to + a cursor position saved by the sseett--mmaarrkk command. The text between the point and mark is referred to as the _r_e_g_i_o_n. CCoommmmaannddss ffoorr MMoovviinngg @@ -3486,29 +3491,29 @@ RREEAADDLLIINNEE Move forward to the end of the next word. Words are composed of alphanumeric characters (letters and digits). bbaacckkwwaarrdd--wwoorrdd ((MM--bb)) - Move back to the start of the current or previous word. Words + Move back to the start of the current or previous word. Words are composed of alphanumeric characters (letters and digits). sshheellll--ffoorrwwaarrdd--wwoorrdd - Move forward to the end of the next word. Words are delimited + Move forward to the end of the next word. Words are delimited by non-quoted shell metacharacters. sshheellll--bbaacckkwwaarrdd--wwoorrdd - Move back to the start of the current or previous word. Words + Move back to the start of the current or previous word. Words are delimited by non-quoted shell metacharacters. pprreevviioouuss--ssccrreeeenn--lliinnee - Attempt to move point to the same physical screen column on the - previous physical screen line. This will not have the desired - effect if the current Readline line does not take up more than - one physical line or if point is not greater than the length of + Attempt to move point to the same physical screen column on the + previous physical screen line. This will not have the desired + effect if the current Readline line does not take up more than + one physical line or if point is not greater than the length of the prompt plus the screen width. nneexxtt--ssccrreeeenn--lliinnee - Attempt to move point to the same physical screen column on the + Attempt to move point to the same physical screen column on the next physical screen line. This will not have the desired effect - if the current Readline line does not take up more than one - physical line or if the length of the current Readline line is + if the current Readline line does not take up more than one + physical line or if the length of the current Readline line is not greater than the length of the prompt plus the screen width. cclleeaarr--ssccrreeeenn ((CC--ll)) - Clear the screen leaving the current line at the top of the - screen. With an argument, refresh the current line without + Clear the screen leaving the current line at the top of the + screen. With an argument, refresh the current line without clearing the screen. rreeddrraaww--ccuurrrreenntt--lliinnee Refresh the current line. @@ -3516,70 +3521,70 @@ RREEAADDLLIINNEE CCoommmmaannddss ffoorr MMaanniippuullaattiinngg tthhee HHiissttoorryy aacccceepptt--lliinnee ((NNeewwlliinnee,, RReettuurrnn)) Accept the line regardless of where the cursor is. If this line - is non-empty, add it to the history list according to the state - of the HHIISSTTCCOONNTTRROOLL variable. If the line is a modified history + is non-empty, add it to the history list according to the state + of the HHIISSTTCCOONNTTRROOLL variable. If the line is a modified history line, then restore the history line to its original state. pprreevviioouuss--hhiissttoorryy ((CC--pp)) Fetch the previous command from the history list, moving back in the list. nneexxtt--hhiissttoorryy ((CC--nn)) - Fetch the next command from the history list, moving forward in + Fetch the next command from the history list, moving forward in the list. bbeeggiinnnniinngg--ooff--hhiissttoorryy ((MM--<<)) Move to the first line in the history. eenndd--ooff--hhiissttoorryy ((MM-->>)) - Move to the end of the input history, i.e., the line currently + Move to the end of the input history, i.e., the line currently being entered. rreevveerrssee--sseeaarrcchh--hhiissttoorryy ((CC--rr)) - Search backward starting at the current line and moving `up' - through the history as necessary. This is an incremental + Search backward starting at the current line and moving `up' + through the history as necessary. This is an incremental search. ffoorrwwaarrdd--sseeaarrcchh--hhiissttoorryy ((CC--ss)) - Search forward starting at the current line and moving `down' - through the history as necessary. This is an incremental + Search forward starting at the current line and moving `down' + through the history as necessary. This is an incremental search. nnoonn--iinnccrreemmeennttaall--rreevveerrssee--sseeaarrcchh--hhiissttoorryy ((MM--pp)) Search backward through the history starting at the current line - using a non-incremental search for a string supplied by the + using a non-incremental search for a string supplied by the user. nnoonn--iinnccrreemmeennttaall--ffoorrwwaarrdd--sseeaarrcchh--hhiissttoorryy ((MM--nn)) - Search forward through the history using a non-incremental + Search forward through the history using a non-incremental search for a string supplied by the user. hhiissttoorryy--sseeaarrcchh--ffoorrwwaarrdd - Search forward through the history for the string of characters - between the start of the current line and the point. This is a + Search forward through the history for the string of characters + between the start of the current line and the point. This is a non-incremental search. hhiissttoorryy--sseeaarrcchh--bbaacckkwwaarrdd Search backward through the history for the string of characters - between the start of the current line and the point. This is a + between the start of the current line and the point. This is a non-incremental search. hhiissttoorryy--ssuubbssttrriinngg--sseeaarrcchh--bbaacckkwwaarrdd Search backward through the history for the string of characters between the start of the current line and the current cursor po- - sition (the _p_o_i_n_t). The search string may match anywhere in a + sition (the _p_o_i_n_t). The search string may match anywhere in a history line. This is a non-incremental search. hhiissttoorryy--ssuubbssttrriinngg--sseeaarrcchh--ffoorrwwaarrdd - Search forward through the history for the string of characters + Search forward through the history for the string of characters between the start of the current line and the point. The search - string may match anywhere in a history line. This is a non-in- + string may match anywhere in a history line. This is a non-in- cremental search. yyaannkk--nntthh--aarrgg ((MM--CC--yy)) - Insert the first argument to the previous command (usually the + Insert the first argument to the previous command (usually the second word on the previous line) at point. With an argument _n, - insert the _nth word from the previous command (the words in the - previous command begin with word 0). A negative argument in- - serts the _nth word from the end of the previous command. Once - the argument _n is computed, the argument is extracted as if the + insert the _nth word from the previous command (the words in the + previous command begin with word 0). A negative argument in- + serts the _nth word from the end of the previous command. Once + the argument _n is computed, the argument is extracted as if the "!_n" history expansion had been specified. yyaannkk--llaasstt--aarrgg ((MM--..,, MM--__)) - Insert the last argument to the previous command (the last word + Insert the last argument to the previous command (the last word of the previous history entry). With a numeric argument, behave - exactly like yyaannkk--nntthh--aarrgg. Successive calls to yyaannkk--llaasstt--aarrgg - move back through the history list, inserting the last word (or - the word specified by the argument to the first call) of each + exactly like yyaannkk--nntthh--aarrgg. Successive calls to yyaannkk--llaasstt--aarrgg + move back through the history list, inserting the last word (or + the word specified by the argument to the first call) of each line in turn. Any numeric argument supplied to these successive - calls determines the direction to move through the history. A - negative argument switches the direction through the history + calls determines the direction to move through the history. A + negative argument switches the direction through the history (back or forward). The history expansion facilities are used to extract the last word, as if the "!$" history expansion had been specified. @@ -3588,80 +3593,80 @@ RREEAADDLLIINNEE tory expansion as well as all of the shell word expansions. See HHIISSTTOORRYY EEXXPPAANNSSIIOONN below for a description of history expansion. hhiissttoorryy--eexxppaanndd--lliinnee ((MM--^^)) - Perform history expansion on the current line. See HHIISSTTOORRYY EEXX-- + Perform history expansion on the current line. See HHIISSTTOORRYY EEXX-- PPAANNSSIIOONN below for a description of history expansion. mmaaggiicc--ssppaaccee - Perform history expansion on the current line and insert a + Perform history expansion on the current line and insert a space. See HHIISSTTOORRYY EEXXPPAANNSSIIOONN below for a description of history expansion. aalliiaass--eexxppaanndd--lliinnee - Perform alias expansion on the current line. See AALLIIAASSEESS above + Perform alias expansion on the current line. See AALLIIAASSEESS above for a description of alias expansion. hhiissttoorryy--aanndd--aalliiaass--eexxppaanndd--lliinnee Perform history and alias expansion on the current line. iinnsseerrtt--llaasstt--aarrgguummeenntt ((MM--..,, MM--__)) A synonym for yyaannkk--llaasstt--aarrgg. ooppeerraattee--aanndd--ggeett--nneexxtt ((CC--oo)) - Accept the current line for execution and fetch the next line - relative to the current line from the history for editing. A - numeric argument, if supplied, specifies the history entry to + Accept the current line for execution and fetch the next line + relative to the current line from the history for editing. A + numeric argument, if supplied, specifies the history entry to use instead of the current line. eeddiitt--aanndd--eexxeeccuuttee--ccoommmmaanndd ((CC--xx CC--ee)) - Invoke an editor on the current command line, and execute the + Invoke an editor on the current command line, and execute the result as shell commands. BBaasshh attempts to invoke $$VVIISSUUAALL, $$EEDD-- IITTOORR, and _e_m_a_c_s as the editor, in that order. CCoommmmaannddss ffoorr CChhaannggiinngg TTeexxtt _e_n_d_-_o_f_-_f_i_l_e ((uussuuaallllyy CC--dd)) - The character indicating end-of-file as set, for example, by - ``stty''. If this character is read when there are no charac- - ters on the line, and point is at the beginning of the line, + The character indicating end-of-file as set, for example, by + ``stty''. If this character is read when there are no charac- + ters on the line, and point is at the beginning of the line, Readline interprets it as the end of input and returns EEOOFF. ddeelleettee--cchhaarr ((CC--dd)) Delete the character at point. If this function is bound to the same character as the tty EEOOFF character, as CC--dd commonly is, see above for the effects. bbaacckkwwaarrdd--ddeelleettee--cchhaarr ((RRuubboouutt)) - Delete the character behind the cursor. When given a numeric + Delete the character behind the cursor. When given a numeric argument, save the deleted text on the kill ring. ffoorrwwaarrdd--bbaacckkwwaarrdd--ddeelleettee--cchhaarr - Delete the character under the cursor, unless the cursor is at + Delete the character under the cursor, unless the cursor is at the end of the line, in which case the character behind the cur- sor is deleted. qquuootteedd--iinnsseerrtt ((CC--qq,, CC--vv)) - Add the next character typed to the line verbatim. This is how + Add the next character typed to the line verbatim. This is how to insert characters like CC--qq, for example. ttaabb--iinnsseerrtt ((CC--vv TTAABB)) Insert a tab character. sseellff--iinnsseerrtt ((aa,, bb,, AA,, 11,, !!,, ......)) Insert the character typed. ttrraannssppoossee--cchhaarrss ((CC--tt)) - Drag the character before point forward over the character at - point, moving point forward as well. If point is at the end of - the line, then this transposes the two characters before point. + Drag the character before point forward over the character at + point, moving point forward as well. If point is at the end of + the line, then this transposes the two characters before point. Negative arguments have no effect. ttrraannssppoossee--wwoorrddss ((MM--tt)) - Drag the word before point past the word after point, moving - point over that word as well. If point is at the end of the + Drag the word before point past the word after point, moving + point over that word as well. If point is at the end of the line, this transposes the last two words on the line. uuppccaassee--wwoorrdd ((MM--uu)) - Uppercase the current (or following) word. With a negative ar- + Uppercase the current (or following) word. With a negative ar- gument, uppercase the previous word, but do not move point. ddoowwnnccaassee--wwoorrdd ((MM--ll)) - Lowercase the current (or following) word. With a negative ar- + Lowercase the current (or following) word. With a negative ar- gument, lowercase the previous word, but do not move point. ccaappiittaalliizzee--wwoorrdd ((MM--cc)) Capitalize the current (or following) word. With a negative ar- gument, capitalize the previous word, but do not move point. oovveerrwwrriittee--mmooddee - Toggle overwrite mode. With an explicit positive numeric argu- + Toggle overwrite mode. With an explicit positive numeric argu- ment, switches to overwrite mode. With an explicit non-positive numeric argument, switches to insert mode. This command affects - only eemmaaccss mode; vvii mode does overwrite differently. Each call + only eemmaaccss mode; vvii mode does overwrite differently. Each call to _r_e_a_d_l_i_n_e_(_) starts in insert mode. In overwrite mode, charac- - ters bound to sseellff--iinnsseerrtt replace the text at point rather than - pushing the text to the right. Characters bound to bbaacckk-- - wwaarrdd--ddeelleettee--cchhaarr replace the character before point with a + ters bound to sseellff--iinnsseerrtt replace the text at point rather than + pushing the text to the right. Characters bound to bbaacckk-- + wwaarrdd--ddeelleettee--cchhaarr replace the character before point with a space. By default, this command is unbound. KKiilllliinngg aanndd YYaannkkiinngg @@ -3670,31 +3675,31 @@ RREEAADDLLIINNEE bbaacckkwwaarrdd--kkiillll--lliinnee ((CC--xx RRuubboouutt)) Kill backward to the beginning of the line. uunniixx--lliinnee--ddiissccaarrdd ((CC--uu)) - Kill backward from point to the beginning of the line. The + Kill backward from point to the beginning of the line. The killed text is saved on the kill-ring. kkiillll--wwhhoollee--lliinnee - Kill all characters on the current line, no matter where point + Kill all characters on the current line, no matter where point is. kkiillll--wwoorrdd ((MM--dd)) - Kill from point to the end of the current word, or if between - words, to the end of the next word. Word boundaries are the + Kill from point to the end of the current word, or if between + words, to the end of the next word. Word boundaries are the same as those used by ffoorrwwaarrdd--wwoorrdd. bbaacckkwwaarrdd--kkiillll--wwoorrdd ((MM--RRuubboouutt)) - Kill the word behind point. Word boundaries are the same as + Kill the word behind point. Word boundaries are the same as those used by bbaacckkwwaarrdd--wwoorrdd. sshheellll--kkiillll--wwoorrdd - Kill from point to the end of the current word, or if between - words, to the end of the next word. Word boundaries are the + Kill from point to the end of the current word, or if between + words, to the end of the next word. Word boundaries are the same as those used by sshheellll--ffoorrwwaarrdd--wwoorrdd. sshheellll--bbaacckkwwaarrdd--kkiillll--wwoorrdd - Kill the word behind point. Word boundaries are the same as + Kill the word behind point. Word boundaries are the same as those used by sshheellll--bbaacckkwwaarrdd--wwoorrdd. uunniixx--wwoorrdd--rruubboouutt ((CC--ww)) - Kill the word behind point, using white space as a word bound- + Kill the word behind point, using white space as a word bound- ary. The killed text is saved on the kill-ring. uunniixx--ffiilleennaammee--rruubboouutt - Kill the word behind point, using white space and the slash - character as the word boundaries. The killed text is saved on + Kill the word behind point, using white space and the slash + character as the word boundaries. The killed text is saved on the kill-ring. ddeelleettee--hhoorriizzoonnttaall--ssppaaccee ((MM--\\)) Delete all spaces and tabs around point. @@ -3703,64 +3708,64 @@ RREEAADDLLIINNEE ccooppyy--rreeggiioonn--aass--kkiillll Copy the text in the region to the kill buffer. ccooppyy--bbaacckkwwaarrdd--wwoorrdd - Copy the word before point to the kill buffer. The word bound- + Copy the word before point to the kill buffer. The word bound- aries are the same as bbaacckkwwaarrdd--wwoorrdd. ccooppyy--ffoorrwwaarrdd--wwoorrdd - Copy the word following point to the kill buffer. The word + Copy the word following point to the kill buffer. The word boundaries are the same as ffoorrwwaarrdd--wwoorrdd. yyaannkk ((CC--yy)) Yank the top of the kill ring into the buffer at point. yyaannkk--ppoopp ((MM--yy)) - Rotate the kill ring, and yank the new top. Only works follow- + Rotate the kill ring, and yank the new top. Only works follow- ing yyaannkk or yyaannkk--ppoopp. NNuummeerriicc AArrgguummeennttss ddiiggiitt--aarrgguummeenntt ((MM--00,, MM--11,, ......,, MM----)) - Add this digit to the argument already accumulating, or start a + Add this digit to the argument already accumulating, or start a new argument. M-- starts a negative argument. uunniivveerrssaall--aarrgguummeenntt - This is another way to specify an argument. If this command is - followed by one or more digits, optionally with a leading minus - sign, those digits define the argument. If the command is fol- + This is another way to specify an argument. If this command is + followed by one or more digits, optionally with a leading minus + sign, those digits define the argument. If the command is fol- lowed by digits, executing uunniivveerrssaall--aarrgguummeenntt again ends the nu- meric argument, but is otherwise ignored. As a special case, if this command is immediately followed by a character that is nei- - ther a digit nor minus sign, the argument count for the next - command is multiplied by four. The argument count is initially - one, so executing this function the first time makes the argu- + ther a digit nor minus sign, the argument count for the next + command is multiplied by four. The argument count is initially + one, so executing this function the first time makes the argu- ment count four, a second time makes the argument count sixteen, and so on. CCoommpplleettiinngg ccoommpplleettee ((TTAABB)) - Attempt to perform completion on the text before point. BBaasshh + Attempt to perform completion on the text before point. BBaasshh attempts completion treating the text as a variable (if the text - begins with $$), username (if the text begins with ~~), hostname - (if the text begins with @@), or command (including aliases and + begins with $$), username (if the text begins with ~~), hostname + (if the text begins with @@), or command (including aliases and functions) in turn. If none of these produces a match, filename completion is attempted. ppoossssiibbllee--ccoommpplleettiioonnss ((MM--??)) List the possible completions of the text before point. iinnsseerrtt--ccoommpplleettiioonnss ((MM--**)) - Insert all completions of the text before point that would have + Insert all completions of the text before point that would have been generated by ppoossssiibbllee--ccoommpplleettiioonnss. mmeennuu--ccoommpplleettee - Similar to ccoommpplleettee, but replaces the word to be completed with - a single match from the list of possible completions. Repeated - execution of mmeennuu--ccoommpplleettee steps through the list of possible - completions, inserting each match in turn. At the end of the + Similar to ccoommpplleettee, but replaces the word to be completed with + a single match from the list of possible completions. Repeated + execution of mmeennuu--ccoommpplleettee steps through the list of possible + completions, inserting each match in turn. At the end of the list of completions, the bell is rung (subject to the setting of bbeellll--ssttyyllee) and the original text is restored. An argument of _n moves _n positions forward in the list of matches; a negative ar- gument may be used to move backward through the list. This com- mand is intended to be bound to TTAABB, but is unbound by default. mmeennuu--ccoommpplleettee--bbaacckkwwaarrdd - Identical to mmeennuu--ccoommpplleettee, but moves backward through the list - of possible completions, as if mmeennuu--ccoommpplleettee had been given a + Identical to mmeennuu--ccoommpplleettee, but moves backward through the list + of possible completions, as if mmeennuu--ccoommpplleettee had been given a negative argument. This command is unbound by default. ddeelleettee--cchhaarr--oorr--lliisstt - Deletes the character under the cursor if not at the beginning - or end of the line (like ddeelleettee--cchhaarr). If at the end of the + Deletes the character under the cursor if not at the beginning + or end of the line (like ddeelleettee--cchhaarr). If at the end of the line, behaves identically to ppoossssiibbllee--ccoommpplleettiioonnss. This command is unbound by default. ccoommpplleettee--ffiilleennaammee ((MM--//)) @@ -3769,67 +3774,67 @@ RREEAADDLLIINNEE List the possible completions of the text before point, treating it as a filename. ccoommpplleettee--uusseerrnnaammee ((MM--~~)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a username. ppoossssiibbllee--uusseerrnnaammee--ccoommpplleettiioonnss ((CC--xx ~~)) List the possible completions of the text before point, treating it as a username. ccoommpplleettee--vvaarriiaabbllee ((MM--$$)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a shell variable. ppoossssiibbllee--vvaarriiaabbllee--ccoommpplleettiioonnss ((CC--xx $$)) List the possible completions of the text before point, treating it as a shell variable. ccoommpplleettee--hhoossttnnaammee ((MM--@@)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a hostname. ppoossssiibbllee--hhoossttnnaammee--ccoommpplleettiioonnss ((CC--xx @@)) List the possible completions of the text before point, treating it as a hostname. ccoommpplleettee--ccoommmmaanndd ((MM--!!)) - Attempt completion on the text before point, treating it as a - command name. Command completion attempts to match the text - against aliases, reserved words, shell functions, shell + Attempt completion on the text before point, treating it as a + command name. Command completion attempts to match the text + against aliases, reserved words, shell functions, shell builtins, and finally executable filenames, in that order. ppoossssiibbllee--ccoommmmaanndd--ccoommpplleettiioonnss ((CC--xx !!)) List the possible completions of the text before point, treating it as a command name. ddyynnaammiicc--ccoommpplleettee--hhiissttoorryy ((MM--TTAABB)) - Attempt completion on the text before point, comparing the text - against lines from the history list for possible completion + Attempt completion on the text before point, comparing the text + against lines from the history list for possible completion matches. ddaabbbbrreevv--eexxppaanndd - Attempt menu completion on the text before point, comparing the + Attempt menu completion on the text before point, comparing the text against lines from the history list for possible completion matches. ccoommpplleettee--iinnttoo--bbrraacceess ((MM--{{)) Perform filename completion and insert the list of possible com- - pletions enclosed within braces so the list is available to the + pletions enclosed within braces so the list is available to the shell (see BBrraaccee EExxppaannssiioonn above). KKeeyybbooaarrdd MMaaccrrooss ssttaarrtt--kkbbdd--mmaaccrroo ((CC--xx (()) - Begin saving the characters typed into the current keyboard + Begin saving the characters typed into the current keyboard macro. eenndd--kkbbdd--mmaaccrroo ((CC--xx )))) Stop saving the characters typed into the current keyboard macro and store the definition. ccaallll--llaasstt--kkbbdd--mmaaccrroo ((CC--xx ee)) - Re-execute the last keyboard macro defined, by making the char- + Re-execute the last keyboard macro defined, by making the char- acters in the macro appear as if typed at the keyboard. pprriinntt--llaasstt--kkbbdd--mmaaccrroo (()) - Print the last keyboard macro defined in a format suitable for + Print the last keyboard macro defined in a format suitable for the _i_n_p_u_t_r_c file. MMiisscceellllaanneeoouuss rree--rreeaadd--iinniitt--ffiillee ((CC--xx CC--rr)) - Read in the contents of the _i_n_p_u_t_r_c file, and incorporate any + Read in the contents of the _i_n_p_u_t_r_c file, and incorporate any bindings or variable assignments found there. aabboorrtt ((CC--gg)) - Abort the current editing command and ring the terminal's bell + Abort the current editing command and ring the terminal's bell (subject to the setting of bbeellll--ssttyyllee). ddoo--lloowweerrccaassee--vveerrssiioonn ((MM--AA,, MM--BB,, MM--_x,, ......)) - If the metafied character _x is uppercase, run the command that + If the metafied character _x is uppercase, run the command that is bound to the corresponding metafied lowercase character. The behavior is undefined if _x is already lowercase. pprreeffiixx--mmeettaa ((EESSCC)) @@ -3837,199 +3842,199 @@ RREEAADDLLIINNEE uunnddoo ((CC--__,, CC--xx CC--uu)) Incremental undo, separately remembered for each line. rreevveerrtt--lliinnee ((MM--rr)) - Undo all changes made to this line. This is like executing the - uunnddoo command enough times to return the line to its initial + Undo all changes made to this line. This is like executing the + uunnddoo command enough times to return the line to its initial state. ttiillddee--eexxppaanndd ((MM--&&)) Perform tilde expansion on the current word. sseett--mmaarrkk ((CC--@@,, MM--<>)) - Set the mark to the point. If a numeric argument is supplied, + Set the mark to the point. If a numeric argument is supplied, the mark is set to that position. eexxcchhaannggee--ppooiinntt--aanndd--mmaarrkk ((CC--xx CC--xx)) - Swap the point with the mark. The current cursor position is - set to the saved position, and the old cursor position is saved + Swap the point with the mark. The current cursor position is + set to the saved position, and the old cursor position is saved as the mark. cchhaarraacctteerr--sseeaarrcchh ((CC--]])) A character is read and point is moved to the next occurrence of - that character. A negative count searches for previous occur- + that character. A negative count searches for previous occur- rences. cchhaarraacctteerr--sseeaarrcchh--bbaacckkwwaarrdd ((MM--CC--]])) - A character is read and point is moved to the previous occur- - rence of that character. A negative count searches for subse- + A character is read and point is moved to the previous occur- + rence of that character. A negative count searches for subse- quent occurrences. sskkiipp--ccssii--sseeqquueennccee - Read enough characters to consume a multi-key sequence such as - those defined for keys like Home and End. Such sequences begin + Read enough characters to consume a multi-key sequence such as + those defined for keys like Home and End. Such sequences begin with a Control Sequence Indicator (CSI), usually ESC-[. If this - sequence is bound to "\[", keys producing such sequences will - have no effect unless explicitly bound to a readline command, - instead of inserting stray characters into the editing buffer. + sequence is bound to "\[", keys producing such sequences will + have no effect unless explicitly bound to a readline command, + instead of inserting stray characters into the editing buffer. This is unbound by default, but usually bound to ESC-[. iinnsseerrtt--ccoommmmeenntt ((MM--##)) - Without a numeric argument, the value of the readline ccoomm-- - mmeenntt--bbeeggiinn variable is inserted at the beginning of the current + Without a numeric argument, the value of the readline ccoomm-- + mmeenntt--bbeeggiinn variable is inserted at the beginning of the current line. If a numeric argument is supplied, this command acts as a - toggle: if the characters at the beginning of the line do not - match the value of ccoommmmeenntt--bbeeggiinn, the value is inserted, other- + toggle: if the characters at the beginning of the line do not + match the value of ccoommmmeenntt--bbeeggiinn, the value is inserted, other- wise the characters in ccoommmmeenntt--bbeeggiinn are deleted from the begin- - ning of the line. In either case, the line is accepted as if a - newline had been typed. The default value of ccoommmmeenntt--bbeeggiinn - causes this command to make the current line a shell comment. - If a numeric argument causes the comment character to be re- + ning of the line. In either case, the line is accepted as if a + newline had been typed. The default value of ccoommmmeenntt--bbeeggiinn + causes this command to make the current line a shell comment. + If a numeric argument causes the comment character to be re- moved, the line will be executed by the shell. gglloobb--ccoommpplleettee--wwoorrdd ((MM--gg)) - The word before point is treated as a pattern for pathname ex- - pansion, with an asterisk implicitly appended. This pattern is - used to generate a list of matching filenames for possible com- + The word before point is treated as a pattern for pathname ex- + pansion, with an asterisk implicitly appended. This pattern is + used to generate a list of matching filenames for possible com- pletions. gglloobb--eexxppaanndd--wwoorrdd ((CC--xx **)) - The word before point is treated as a pattern for pathname ex- + The word before point is treated as a pattern for pathname ex- pansion, and the list of matching filenames is inserted, replac- ing the word. If a numeric argument is supplied, an asterisk is appended before pathname expansion. gglloobb--lliisstt--eexxppaannssiioonnss ((CC--xx gg)) - The list of expansions that would have been generated by - gglloobb--eexxppaanndd--wwoorrdd is displayed, and the line is redrawn. If a - numeric argument is supplied, an asterisk is appended before + The list of expansions that would have been generated by + gglloobb--eexxppaanndd--wwoorrdd is displayed, and the line is redrawn. If a + numeric argument is supplied, an asterisk is appended before pathname expansion. dduummpp--ffuunnccttiioonnss - Print all of the functions and their key bindings to the read- + Print all of the functions and their key bindings to the read- line output stream. If a numeric argument is supplied, the out- - put is formatted in such a way that it can be made part of an + put is formatted in such a way that it can be made part of an _i_n_p_u_t_r_c file. dduummpp--vvaarriiaabblleess Print all of the settable readline variables and their values to - the readline output stream. If a numeric argument is supplied, - the output is formatted in such a way that it can be made part + the readline output stream. If a numeric argument is supplied, + the output is formatted in such a way that it can be made part of an _i_n_p_u_t_r_c file. dduummpp--mmaaccrrooss - Print all of the readline key sequences bound to macros and the - strings they output. If a numeric argument is supplied, the + Print all of the readline key sequences bound to macros and the + strings they output. If a numeric argument is supplied, the output is formatted in such a way that it can be made part of an _i_n_p_u_t_r_c file. ddiissppllaayy--sshheellll--vveerrssiioonn ((CC--xx CC--vv)) Display version information about the current instance of bbaasshh. PPrrooggrraammmmaabbllee CCoommpplleettiioonn - When word completion is attempted for an argument to a command for - which a completion specification (a _c_o_m_p_s_p_e_c) has been defined using - the ccoommpplleettee builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the program- + When word completion is attempted for an argument to a command for + which a completion specification (a _c_o_m_p_s_p_e_c) has been defined using + the ccoommpplleettee builtin (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the program- mable completion facilities are invoked. - First, the command name is identified. If the command word is the - empty string (completion attempted at the beginning of an empty line), - any compspec defined with the --EE option to ccoommpplleettee is used. If a - compspec has been defined for that command, the compspec is used to + First, the command name is identified. If the command word is the + empty string (completion attempted at the beginning of an empty line), + any compspec defined with the --EE option to ccoommpplleettee is used. If a + compspec has been defined for that command, the compspec is used to generate the list of possible completions for the word. If the command - word is a full pathname, a compspec for the full pathname is searched - for first. If no compspec is found for the full pathname, an attempt - is made to find a compspec for the portion following the final slash. - If those searches do not result in a compspec, any compspec defined - with the --DD option to ccoommpplleettee is used as the default. If there is no - default compspec, bbaasshh attempts alias expansion on the command word as - a final resort, and attempts to find a compspec for the command word + word is a full pathname, a compspec for the full pathname is searched + for first. If no compspec is found for the full pathname, an attempt + is made to find a compspec for the portion following the final slash. + If those searches do not result in a compspec, any compspec defined + with the --DD option to ccoommpplleettee is used as the default. If there is no + default compspec, bbaasshh attempts alias expansion on the command word as + a final resort, and attempts to find a compspec for the command word from any successful expansion. - Once a compspec has been found, it is used to generate the list of - matching words. If a compspec is not found, the default bbaasshh comple- + Once a compspec has been found, it is used to generate the list of + matching words. If a compspec is not found, the default bbaasshh comple- tion as described above under CCoommpplleettiinngg is performed. - First, the actions specified by the compspec are used. Only matches - which are prefixed by the word being completed are returned. When the - --ff or --dd option is used for filename or directory name completion, the + First, the actions specified by the compspec are used. Only matches + which are prefixed by the word being completed are returned. When the + --ff or --dd option is used for filename or directory name completion, the shell variable FFIIGGNNOORREE is used to filter the matches. Any completions specified by a pathname expansion pattern to the --GG op- - tion are generated next. The words generated by the pattern need not - match the word being completed. The GGLLOOBBIIGGNNOORREE shell variable is not + tion are generated next. The words generated by the pattern need not + match the word being completed. The GGLLOOBBIIGGNNOORREE shell variable is not used to filter the matches, but the FFIIGGNNOORREE variable is used. - Next, the string specified as the argument to the --WW option is consid- - ered. The string is first split using the characters in the IIFFSS spe- - cial variable as delimiters. Shell quoting is honored. Each word is - then expanded using brace expansion, tilde expansion, parameter and - variable expansion, command substitution, and arithmetic expansion, as + Next, the string specified as the argument to the --WW option is consid- + ered. The string is first split using the characters in the IIFFSS spe- + cial variable as delimiters. Shell quoting is honored. Each word is + then expanded using brace expansion, tilde expansion, parameter and + variable expansion, command substitution, and arithmetic expansion, as described above under EEXXPPAANNSSIIOONN. The results are split using the rules described above under WWoorrdd SSpplliittttiinngg. The results of the expansion are prefix-matched against the word being completed, and the matching words become the possible completions. - After these matches have been generated, any shell function or command - specified with the --FF and --CC options is invoked. When the command or + After these matches have been generated, any shell function or command + specified with the --FF and --CC options is invoked. When the command or function is invoked, the CCOOMMPP__LLIINNEE, CCOOMMPP__PPOOIINNTT, CCOOMMPP__KKEEYY, and CCOOMMPP__TTYYPPEE variables are assigned values as described above under SShheellll VVaarriiaabblleess. - If a shell function is being invoked, the CCOOMMPP__WWOORRDDSS and CCOOMMPP__CCWWOORRDD - variables are also set. When the function or command is invoked, the - first argument ($$11) is the name of the command whose arguments are be- - ing completed, the second argument ($$22) is the word being completed, - and the third argument ($$33) is the word preceding the word being com- + If a shell function is being invoked, the CCOOMMPP__WWOORRDDSS and CCOOMMPP__CCWWOORRDD + variables are also set. When the function or command is invoked, the + first argument ($$11) is the name of the command whose arguments are be- + ing completed, the second argument ($$22) is the word being completed, + and the third argument ($$33) is the word preceding the word being com- pleted on the current command line. No filtering of the generated com- pletions against the word being completed is performed; the function or command has complete freedom in generating the matches. - Any function specified with --FF is invoked first. The function may use - any of the shell facilities, including the ccoommppggeenn builtin described - below, to generate the matches. It must put the possible completions + Any function specified with --FF is invoked first. The function may use + any of the shell facilities, including the ccoommppggeenn builtin described + below, to generate the matches. It must put the possible completions in the CCOOMMPPRREEPPLLYY array variable, one per array element. - Next, any command specified with the --CC option is invoked in an envi- - ronment equivalent to command substitution. It should print a list of - completions, one per line, to the standard output. Backslash may be + Next, any command specified with the --CC option is invoked in an envi- + ronment equivalent to command substitution. It should print a list of + completions, one per line, to the standard output. Backslash may be used to escape a newline, if necessary. - After all of the possible completions are generated, any filter speci- - fied with the --XX option is applied to the list. The filter is a pat- - tern as used for pathname expansion; a && in the pattern is replaced - with the text of the word being completed. A literal && may be escaped - with a backslash; the backslash is removed before attempting a match. - Any completion that matches the pattern will be removed from the list. + After all of the possible completions are generated, any filter speci- + fied with the --XX option is applied to the list. The filter is a pat- + tern as used for pathname expansion; a && in the pattern is replaced + with the text of the word being completed. A literal && may be escaped + with a backslash; the backslash is removed before attempting a match. + Any completion that matches the pattern will be removed from the list. A leading !! negates the pattern; in this case any completion not match- - ing the pattern will be removed. If the nnooccaasseemmaattcchh shell option is - enabled, the match is performed without regard to the case of alpha- + ing the pattern will be removed. If the nnooccaasseemmaattcchh shell option is + enabled, the match is performed without regard to the case of alpha- betic characters. Finally, any prefix and suffix specified with the --PP and --SS options are added to each member of the completion list, and the result is returned to the readline completion code as the list of possible completions. - If the previously-applied actions do not generate any matches, and the - --oo ddiirrnnaammeess option was supplied to ccoommpplleettee when the compspec was de- + If the previously-applied actions do not generate any matches, and the + --oo ddiirrnnaammeess option was supplied to ccoommpplleettee when the compspec was de- fined, directory name completion is attempted. - If the --oo pplluussddiirrss option was supplied to ccoommpplleettee when the compspec + If the --oo pplluussddiirrss option was supplied to ccoommpplleettee when the compspec was defined, directory name completion is attempted and any matches are added to the results of the other actions. - By default, if a compspec is found, whatever it generates is returned - to the completion code as the full set of possible completions. The + By default, if a compspec is found, whatever it generates is returned + to the completion code as the full set of possible completions. The default bbaasshh completions are not attempted, and the readline default of filename completion is disabled. If the --oo bbaasshhddeeffaauulltt option was sup- - plied to ccoommpplleettee when the compspec was defined, the bbaasshh default com- + plied to ccoommpplleettee when the compspec was defined, the bbaasshh default com- pletions are attempted if the compspec generates no matches. If the --oo - ddeeffaauulltt option was supplied to ccoommpplleettee when the compspec was defined, - readline's default completion will be performed if the compspec (and, + ddeeffaauulltt option was supplied to ccoommpplleettee when the compspec was defined, + readline's default completion will be performed if the compspec (and, if attempted, the default bbaasshh completions) generate no matches. - When a compspec indicates that directory name completion is desired, - the programmable completion functions force readline to append a slash - to completed names which are symbolic links to directories, subject to - the value of the mmaarrkk--ddiirreeccttoorriieess readline variable, regardless of the + When a compspec indicates that directory name completion is desired, + the programmable completion functions force readline to append a slash + to completed names which are symbolic links to directories, subject to + the value of the mmaarrkk--ddiirreeccttoorriieess readline variable, regardless of the setting of the mmaarrkk--ssyymmlliinnkkeedd--ddiirreeccttoorriieess readline variable. - There is some support for dynamically modifying completions. This is - most useful when used in combination with a default completion speci- - fied with ccoommpplleettee --DD. It's possible for shell functions executed as - completion handlers to indicate that completion should be retried by - returning an exit status of 124. If a shell function returns 124, and + There is some support for dynamically modifying completions. This is + most useful when used in combination with a default completion speci- + fied with ccoommpplleettee --DD. It's possible for shell functions executed as + completion handlers to indicate that completion should be retried by + returning an exit status of 124. If a shell function returns 124, and changes the compspec associated with the command on which completion is - being attempted (supplied as the first argument when the function is + being attempted (supplied as the first argument when the function is executed), programmable completion restarts from the beginning, with an - attempt to find a new compspec for that command. This allows a set of - completions to be built dynamically as completion is attempted, rather + attempt to find a new compspec for that command. This allows a set of + completions to be built dynamically as completion is attempted, rather than being loaded all at once. - For instance, assuming that there is a library of compspecs, each kept - in a file corresponding to the name of the command, the following de- + For instance, assuming that there is a library of compspecs, each kept + in a file corresponding to the name of the command, the following de- fault completion function would load completions dynamically: _completion_loader() @@ -4040,167 +4045,167 @@ RREEAADDLLIINNEE HHIISSTTOORRYY - When the --oo hhiissttoorryy option to the sseett builtin is enabled, the shell + When the --oo hhiissttoorryy option to the sseett builtin is enabled, the shell provides access to the _c_o_m_m_a_n_d _h_i_s_t_o_r_y, the list of commands previously - typed. The value of the HHIISSTTSSIIZZEE variable is used as the number of + typed. The value of the HHIISSTTSSIIZZEE variable is used as the number of commands to save in a history list. The text of the last HHIISSTTSSIIZZEE com- - mands (default 500) is saved. The shell stores each command in the - history list prior to parameter and variable expansion (see EEXXPPAANNSSIIOONN - above) but after history expansion is performed, subject to the values + mands (default 500) is saved. The shell stores each command in the + history list prior to parameter and variable expansion (see EEXXPPAANNSSIIOONN + above) but after history expansion is performed, subject to the values of the shell variables HHIISSTTIIGGNNOORREE and HHIISSTTCCOONNTTRROOLL. On startup, the history is initialized from the file named by the vari- - able HHIISSTTFFIILLEE (default _~_/_._b_a_s_h___h_i_s_t_o_r_y). The file named by the value - of HHIISSTTFFIILLEE is truncated, if necessary, to contain no more than the - number of lines specified by the value of HHIISSTTFFIILLEESSIIZZEE. If HHIISSTTFFIILLEE-- - SSIIZZEE is unset, or set to null, a non-numeric value, or a numeric value - less than zero, the history file is not truncated. When the history - file is read, lines beginning with the history comment character fol- + able HHIISSTTFFIILLEE (default _~_/_._b_a_s_h___h_i_s_t_o_r_y). The file named by the value + of HHIISSTTFFIILLEE is truncated, if necessary, to contain no more than the + number of lines specified by the value of HHIISSTTFFIILLEESSIIZZEE. If HHIISSTTFFIILLEE-- + SSIIZZEE is unset, or set to null, a non-numeric value, or a numeric value + less than zero, the history file is not truncated. When the history + file is read, lines beginning with the history comment character fol- lowed immediately by a digit are interpreted as timestamps for the fol- lowing history line. These timestamps are optionally displayed depend- - ing on the value of the HHIISSTTTTIIMMEEFFOORRMMAATT variable. When a shell with - history enabled exits, the last $$HHIISSTTSSIIZZEE lines are copied from the - history list to $$HHIISSTTFFIILLEE. If the hhiissttaappppeenndd shell option is enabled - (see the description of sshhoopptt under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the - lines are appended to the history file, otherwise the history file is - overwritten. If HHIISSTTFFIILLEE is unset, or if the history file is un- - writable, the history is not saved. If the HHIISSTTTTIIMMEEFFOORRMMAATT variable is - set, time stamps are written to the history file, marked with the his- + ing on the value of the HHIISSTTTTIIMMEEFFOORRMMAATT variable. When a shell with + history enabled exits, the last $$HHIISSTTSSIIZZEE lines are copied from the + history list to $$HHIISSTTFFIILLEE. If the hhiissttaappppeenndd shell option is enabled + (see the description of sshhoopptt under SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below), the + lines are appended to the history file, otherwise the history file is + overwritten. If HHIISSTTFFIILLEE is unset, or if the history file is un- + writable, the history is not saved. If the HHIISSTTTTIIMMEEFFOORRMMAATT variable is + set, time stamps are written to the history file, marked with the his- tory comment character, so they may be preserved across shell sessions. - This uses the history comment character to distinguish timestamps from - other history lines. After saving the history, the history file is - truncated to contain no more than HHIISSTTFFIILLEESSIIZZEE lines. If HHIISSTTFFIILLEESSIIZZEE - is unset, or set to null, a non-numeric value, or a numeric value less + This uses the history comment character to distinguish timestamps from + other history lines. After saving the history, the history file is + truncated to contain no more than HHIISSTTFFIILLEESSIIZZEE lines. If HHIISSTTFFIILLEESSIIZZEE + is unset, or set to null, a non-numeric value, or a numeric value less than zero, the history file is not truncated. - The builtin command ffcc (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) may be used + The builtin command ffcc (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) may be used to list or edit and re-execute a portion of the history list. The hhiiss-- - ttoorryy builtin may be used to display or modify the history list and ma- - nipulate the history file. When using command-line editing, search - commands are available in each editing mode that provide access to the + ttoorryy builtin may be used to display or modify the history list and ma- + nipulate the history file. When using command-line editing, search + commands are available in each editing mode that provide access to the history list. - The shell allows control over which commands are saved on the history + The shell allows control over which commands are saved on the history list. The HHIISSTTCCOONNTTRROOLL and HHIISSTTIIGGNNOORREE variables may be set to cause the shell to save only a subset of the commands entered. The ccmmddhhiisstt shell - option, if enabled, causes the shell to attempt to save each line of a - multi-line command in the same history entry, adding semicolons where - necessary to preserve syntactic correctness. The lliitthhiisstt shell option - causes the shell to save the command with embedded newlines instead of + option, if enabled, causes the shell to attempt to save each line of a + multi-line command in the same history entry, adding semicolons where + necessary to preserve syntactic correctness. The lliitthhiisstt shell option + causes the shell to save the command with embedded newlines instead of semicolons. See the description of the sshhoopptt builtin below under SSHHEELLLL - BBUUIILLTTIINN CCOOMMMMAANNDDSS for information on setting and unsetting shell op- + BBUUIILLTTIINN CCOOMMMMAANNDDSS for information on setting and unsetting shell op- tions. HHIISSTTOORRYY EEXXPPAANNSSIIOONN - The shell supports a history expansion feature that is similar to the - history expansion in ccsshh. This section describes what syntax features - are available. This feature is enabled by default for interactive + The shell supports a history expansion feature that is similar to the + history expansion in ccsshh. This section describes what syntax features + are available. This feature is enabled by default for interactive shells, and can be disabled using the ++HH option to the sseett builtin com- mand (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below). Non-interactive shells do not perform history expansion by default. History expansions introduce words from the history list into the input - stream, making it easy to repeat commands, insert the arguments to a + stream, making it easy to repeat commands, insert the arguments to a previous command into the current input line, or fix errors in previous commands quickly. - History expansion is performed immediately after a complete line is - read, before the shell breaks it into words, and is performed on each - line individually without taking quoting on previous lines into ac- - count. It takes place in two parts. The first is to determine which - line from the history list to use during substitution. The second is - to select portions of that line for inclusion into the current one. - The line selected from the history is the _e_v_e_n_t, and the portions of - that line that are acted upon are _w_o_r_d_s. Various _m_o_d_i_f_i_e_r_s are avail- - able to manipulate the selected words. The line is broken into words - in the same fashion as when reading input, so that several _m_e_t_a_c_h_a_r_a_c_- + History expansion is performed immediately after a complete line is + read, before the shell breaks it into words, and is performed on each + line individually without taking quoting on previous lines into ac- + count. It takes place in two parts. The first is to determine which + line from the history list to use during substitution. The second is + to select portions of that line for inclusion into the current one. + The line selected from the history is the _e_v_e_n_t, and the portions of + that line that are acted upon are _w_o_r_d_s. Various _m_o_d_i_f_i_e_r_s are avail- + able to manipulate the selected words. The line is broken into words + in the same fashion as when reading input, so that several _m_e_t_a_c_h_a_r_a_c_- _t_e_r-separated words surrounded by quotes are considered one word. His- - tory expansions are introduced by the appearance of the history expan- - sion character, which is !! by default. Only backslash (\\) and single - quotes can quote the history expansion character, but the history ex- - pansion character is also treated as quoted if it immediately precedes + tory expansions are introduced by the appearance of the history expan- + sion character, which is !! by default. Only backslash (\\) and single + quotes can quote the history expansion character, but the history ex- + pansion character is also treated as quoted if it immediately precedes the closing double quote in a double-quoted string. - Several characters inhibit history expansion if found immediately fol- - lowing the history expansion character, even if it is unquoted: space, - tab, newline, carriage return, and ==. If the eexxttgglloobb shell option is + Several characters inhibit history expansion if found immediately fol- + lowing the history expansion character, even if it is unquoted: space, + tab, newline, carriage return, and ==. If the eexxttgglloobb shell option is enabled, (( will also inhibit expansion. - Several shell options settable with the sshhoopptt builtin may be used to - tailor the behavior of history expansion. If the hhiissttvveerriiffyy shell op- - tion is enabled (see the description of the sshhoopptt builtin below), and - rreeaaddlliinnee is being used, history substitutions are not immediately - passed to the shell parser. Instead, the expanded line is reloaded + Several shell options settable with the sshhoopptt builtin may be used to + tailor the behavior of history expansion. If the hhiissttvveerriiffyy shell op- + tion is enabled (see the description of the sshhoopptt builtin below), and + rreeaaddlliinnee is being used, history substitutions are not immediately + passed to the shell parser. Instead, the expanded line is reloaded into the rreeaaddlliinnee editing buffer for further modification. If rreeaaddlliinnee - is being used, and the hhiissttrreeeeddiitt shell option is enabled, a failed - history substitution will be reloaded into the rreeaaddlliinnee editing buffer - for correction. The --pp option to the hhiissttoorryy builtin command may be - used to see what a history expansion will do before using it. The --ss + is being used, and the hhiissttrreeeeddiitt shell option is enabled, a failed + history substitution will be reloaded into the rreeaaddlliinnee editing buffer + for correction. The --pp option to the hhiissttoorryy builtin command may be + used to see what a history expansion will do before using it. The --ss option to the hhiissttoorryy builtin may be used to add commands to the end of - the history list without actually executing them, so that they are + the history list without actually executing them, so that they are available for subsequent recall. - The shell allows control of the various characters used by the history + The shell allows control of the various characters used by the history expansion mechanism (see the description of hhiissttcchhaarrss above under SShheellll - VVaarriiaabblleess). The shell uses the history comment character to mark his- + VVaarriiaabblleess). The shell uses the history comment character to mark his- tory timestamps when writing the history file. EEvveenntt DDeessiiggnnaattoorrss - An event designator is a reference to a command line entry in the his- - tory list. Unless the reference is absolute, events are relative to + An event designator is a reference to a command line entry in the his- + tory list. Unless the reference is absolute, events are relative to the current position in the history list. - !! Start a history substitution, except when followed by a bbllaannkk, - newline, carriage return, = or ( (when the eexxttgglloobb shell option + !! Start a history substitution, except when followed by a bbllaannkk, + newline, carriage return, = or ( (when the eexxttgglloobb shell option is enabled using the sshhoopptt builtin). !!_n Refer to command line _n. !!--_n Refer to the current command minus _n. !!!! Refer to the previous command. This is a synonym for `!-1'. !!_s_t_r_i_n_g - Refer to the most recent command preceding the current position + Refer to the most recent command preceding the current position in the history list starting with _s_t_r_i_n_g. !!??_s_t_r_i_n_g[[??]] - Refer to the most recent command preceding the current position - in the history list containing _s_t_r_i_n_g. The trailing ?? may be - omitted if _s_t_r_i_n_g is followed immediately by a newline. If - _s_t_r_i_n_g is missing, the string from the most recent search is + Refer to the most recent command preceding the current position + in the history list containing _s_t_r_i_n_g. The trailing ?? may be + omitted if _s_t_r_i_n_g is followed immediately by a newline. If + _s_t_r_i_n_g is missing, the string from the most recent search is used; it is an error if there is no previous search string. ^^_s_t_r_i_n_g_1^^_s_t_r_i_n_g_2^^ - Quick substitution. Repeat the previous command, replacing - _s_t_r_i_n_g_1 with _s_t_r_i_n_g_2. Equivalent to ``!!:s^_s_t_r_i_n_g_1^_s_t_r_i_n_g_2^'' + Quick substitution. Repeat the previous command, replacing + _s_t_r_i_n_g_1 with _s_t_r_i_n_g_2. Equivalent to ``!!:s^_s_t_r_i_n_g_1^_s_t_r_i_n_g_2^'' (see MMooddiiffiieerrss below). !!## The entire command line typed so far. WWoorrdd DDeessiiggnnaattoorrss - Word designators are used to select desired words from the event. A :: - separates the event specification from the word designator. It may be - omitted if the word designator begins with a ^^, $$, **, --, or %%. Words - are numbered from the beginning of the line, with the first word being - denoted by 0 (zero). Words are inserted into the current line sepa- + Word designators are used to select desired words from the event. A :: + separates the event specification from the word designator. It may be + omitted if the word designator begins with a ^^, $$, **, --, or %%. Words + are numbered from the beginning of the line, with the first word being + denoted by 0 (zero). Words are inserted into the current line sepa- rated by single spaces. 00 ((zzeerroo)) The zeroth word. For the shell, this is the command word. _n The _nth word. ^^ The first argument. That is, word 1. - $$ The last word. This is usually the last argument, but will ex- + $$ The last word. This is usually the last argument, but will ex- pand to the zeroth word if there is only one word in the line. - %% The first word matched by the most recent `?_s_t_r_i_n_g?' search, if - the search string begins with a character that is part of a + %% The first word matched by the most recent `?_s_t_r_i_n_g?' search, if + the search string begins with a character that is part of a word. _x--_y A range of words; `-_y' abbreviates `0-_y'. - ** All of the words but the zeroth. This is a synonym for `_1_-_$'. - It is not an error to use ** if there is just one word in the + ** All of the words but the zeroth. This is a synonym for `_1_-_$'. + It is not an error to use ** if there is just one word in the event; the empty string is returned in that case. xx** Abbreviates _x_-_$. xx-- Abbreviates _x_-_$ like xx**, but omits the last word. If xx is miss- ing, it defaults to 0. - If a word designator is supplied without an event specification, the + If a word designator is supplied without an event specification, the previous command is used as the event. MMooddiiffiieerrss - After the optional word designator, there may appear a sequence of one + After the optional word designator, there may appear a sequence of one or more of the following modifiers, each preceded by a `:'. These mod- ify, or edit, the word or words selected from the history event. @@ -4210,24 +4215,24 @@ HHIISSTTOORRYY EEXXPPAANNSSIIOONN ee Remove all but the trailing suffix. pp Print the new command but do not execute it. qq Quote the substituted words, escaping further substitutions. - xx Quote the substituted words as with qq, but break into words at - bbllaannkkss and newlines. The qq and xx modifiers are mutually exclu- + xx Quote the substituted words as with qq, but break into words at + bbllaannkkss and newlines. The qq and xx modifiers are mutually exclu- sive; the last one supplied is used. ss//_o_l_d//_n_e_w// - Substitute _n_e_w for the first occurrence of _o_l_d in the event + Substitute _n_e_w for the first occurrence of _o_l_d in the event line. Any character may be used as the delimiter in place of /. - The final delimiter is optional if it is the last character of + The final delimiter is optional if it is the last character of the event line. The delimiter may be quoted in _o_l_d and _n_e_w with a single backslash. If & appears in _n_e_w, it is replaced by _o_l_d. - A single backslash will quote the &. If _o_l_d is null, it is set - to the last _o_l_d substituted, or, if no previous history substi- - tutions took place, the last _s_t_r_i_n_g in a !!??_s_t_r_i_n_g[[??]] search. + A single backslash will quote the &. If _o_l_d is null, it is set + to the last _o_l_d substituted, or, if no previous history substi- + tutions took place, the last _s_t_r_i_n_g in a !!??_s_t_r_i_n_g[[??]] search. If _n_e_w is null, each matching _o_l_d is deleted. && Repeat the previous substitution. gg Cause changes to be applied over the entire event line. This is - used in conjunction with `::ss' (e.g., `::ggss//_o_l_d//_n_e_w//') or `::&&'. - If used with `::ss', any delimiter can be used in place of /, and - the final delimiter is optional if it is the last character of + used in conjunction with `::ss' (e.g., `::ggss//_o_l_d//_n_e_w//') or `::&&'. + If used with `::ss', any delimiter can be used in place of /, and + the final delimiter is optional if it is the last character of the event line. An aa may be used as a synonym for gg. GG Apply the following `ss' or `&&' modifier once to each word in the event line. @@ -4236,56 +4241,56 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS Unless otherwise noted, each builtin command documented in this section as accepting options preceded by -- accepts ---- to signify the end of the options. The ::, ttrruuee, ffaallssee, and tteesstt/[[ builtins do not accept options - and do not treat ---- specially. The eexxiitt, llooggoouutt, rreettuurrnn, bbrreeaakk, ccoonn-- - ttiinnuuee, lleett, and sshhiifftt builtins accept and process arguments beginning - with -- without requiring ----. Other builtins that accept arguments but - are not specified as accepting options interpret arguments beginning - with -- as invalid options and require ---- to prevent this interpreta- + and do not treat ---- specially. The eexxiitt, llooggoouutt, rreettuurrnn, bbrreeaakk, ccoonn-- + ttiinnuuee, lleett, and sshhiifftt builtins accept and process arguments beginning + with -- without requiring ----. Other builtins that accept arguments but + are not specified as accepting options interpret arguments beginning + with -- as invalid options and require ---- to prevent this interpreta- tion. :: [_a_r_g_u_m_e_n_t_s] - No effect; the command does nothing beyond expanding _a_r_g_u_m_e_n_t_s + No effect; the command does nothing beyond expanding _a_r_g_u_m_e_n_t_s and performing any specified redirections. The return status is zero. .. _f_i_l_e_n_a_m_e [_a_r_g_u_m_e_n_t_s] ssoouurrccee _f_i_l_e_n_a_m_e [_a_r_g_u_m_e_n_t_s] Read and execute commands from _f_i_l_e_n_a_m_e in the current shell en- - vironment and return the exit status of the last command exe- - cuted from _f_i_l_e_n_a_m_e. If _f_i_l_e_n_a_m_e does not contain a slash, - filenames in PPAATTHH are used to find the directory containing + vironment and return the exit status of the last command exe- + cuted from _f_i_l_e_n_a_m_e. If _f_i_l_e_n_a_m_e does not contain a slash, + filenames in PPAATTHH are used to find the directory containing _f_i_l_e_n_a_m_e. The file searched for in PPAATTHH need not be executable. - When bbaasshh is not in _p_o_s_i_x _m_o_d_e, the current directory is - searched if no file is found in PPAATTHH. If the ssoouurrcceeppaatthh option - to the sshhoopptt builtin command is turned off, the PPAATTHH is not - searched. If any _a_r_g_u_m_e_n_t_s are supplied, they become the posi- - tional parameters when _f_i_l_e_n_a_m_e is executed. Otherwise the po- + When bbaasshh is not in _p_o_s_i_x _m_o_d_e, the current directory is + searched if no file is found in PPAATTHH. If the ssoouurrcceeppaatthh option + to the sshhoopptt builtin command is turned off, the PPAATTHH is not + searched. If any _a_r_g_u_m_e_n_t_s are supplied, they become the posi- + tional parameters when _f_i_l_e_n_a_m_e is executed. Otherwise the po- sitional parameters are unchanged. If the --TT option is enabled, - ssoouurrccee inherits any trap on DDEEBBUUGG; if it is not, any DDEEBBUUGG trap - string is saved and restored around the call to ssoouurrccee, and - ssoouurrccee unsets the DDEEBBUUGG trap while it executes. If --TT is not - set, and the sourced file changes the DDEEBBUUGG trap, the new value - is retained when ssoouurrccee completes. The return status is the - status of the last command exited within the script (0 if no - commands are executed), and false if _f_i_l_e_n_a_m_e is not found or + ssoouurrccee inherits any trap on DDEEBBUUGG; if it is not, any DDEEBBUUGG trap + string is saved and restored around the call to ssoouurrccee, and + ssoouurrccee unsets the DDEEBBUUGG trap while it executes. If --TT is not + set, and the sourced file changes the DDEEBBUUGG trap, the new value + is retained when ssoouurrccee completes. The return status is the + status of the last command exited within the script (0 if no + commands are executed), and false if _f_i_l_e_n_a_m_e is not found or cannot be read. aalliiaass [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] AAlliiaass with no arguments or with the --pp option prints the list of - aliases in the form aalliiaass _n_a_m_e=_v_a_l_u_e on standard output. When - arguments are supplied, an alias is defined for each _n_a_m_e whose - _v_a_l_u_e is given. A trailing space in _v_a_l_u_e causes the next word + aliases in the form aalliiaass _n_a_m_e=_v_a_l_u_e on standard output. When + arguments are supplied, an alias is defined for each _n_a_m_e whose + _v_a_l_u_e is given. A trailing space in _v_a_l_u_e causes the next word to be checked for alias substitution when the alias is expanded. - For each _n_a_m_e in the argument list for which no _v_a_l_u_e is sup- - plied, the name and value of the alias is printed. AAlliiaass re- - turns true unless a _n_a_m_e is given for which no alias has been + For each _n_a_m_e in the argument list for which no _v_a_l_u_e is sup- + plied, the name and value of the alias is printed. AAlliiaass re- + turns true unless a _n_a_m_e is given for which no alias has been defined. bbgg [_j_o_b_s_p_e_c ...] - Resume each suspended job _j_o_b_s_p_e_c in the background, as if it + Resume each suspended job _j_o_b_s_p_e_c in the background, as if it had been started with &&. 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. bbgg _j_o_b_s_p_e_c returns 0 unless - run when job control is disabled or, when run with job control - enabled, any specified _j_o_b_s_p_e_c was not found or was started + notion of the _c_u_r_r_e_n_t _j_o_b is used. bbgg _j_o_b_s_p_e_c returns 0 unless + run when job control is disabled or, when run with job control + enabled, any specified _j_o_b_s_p_e_c was not found or was started without job control. bbiinndd [--mm _k_e_y_m_a_p] [--llppssvvPPSSVVXX] @@ -4294,29 +4299,29 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS bbiinndd [--mm _k_e_y_m_a_p] --xx _k_e_y_s_e_q:_s_h_e_l_l_-_c_o_m_m_a_n_d bbiinndd [--mm _k_e_y_m_a_p] _k_e_y_s_e_q:_f_u_n_c_t_i_o_n_-_n_a_m_e bbiinndd [--mm _k_e_y_m_a_p] _k_e_y_s_e_q:_r_e_a_d_l_i_n_e_-_c_o_m_m_a_n_d - Display current rreeaaddlliinnee key and function bindings, bind a key - sequence to a rreeaaddlliinnee function or macro, or set a rreeaaddlliinnee + Display current rreeaaddlliinnee key and function bindings, bind a key + sequence to a rreeaaddlliinnee function or macro, or set a rreeaaddlliinnee variable. Each non-option argument is a command as it would ap- - pear in _._i_n_p_u_t_r_c, but each binding or command must be passed as + pear in _._i_n_p_u_t_r_c, but each binding or command must be passed as a separate argument; e.g., '"\C-x\C-r": re-read-init-file'. Op- tions, if supplied, have the following meanings: --mm _k_e_y_m_a_p Use _k_e_y_m_a_p as the keymap to be affected by the subsequent bindings. Acceptable _k_e_y_m_a_p names are _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_- - _d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_m_o_v_e_, _v_i_-_c_o_m_m_a_n_d, - and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d (_v_i_-_m_o_v_e - is also a synonym); _e_m_a_c_s is equivalent to _e_m_a_c_s_-_s_t_a_n_- + _d_a_r_d_, _e_m_a_c_s_-_m_e_t_a_, _e_m_a_c_s_-_c_t_l_x_, _v_i_, _v_i_-_m_o_v_e_, _v_i_-_c_o_m_m_a_n_d, + and _v_i_-_i_n_s_e_r_t. _v_i is equivalent to _v_i_-_c_o_m_m_a_n_d (_v_i_-_m_o_v_e + is also a synonym); _e_m_a_c_s is equivalent to _e_m_a_c_s_-_s_t_a_n_- _d_a_r_d. --ll List the names of all rreeaaddlliinnee functions. - --pp Display rreeaaddlliinnee function names and bindings in such a + --pp Display rreeaaddlliinnee function names and bindings in such a way that they can be re-read. --PP List current rreeaaddlliinnee function names and bindings. - --ss Display rreeaaddlliinnee key sequences bound to macros and the - strings they output in such a way that they can be re- + --ss Display rreeaaddlliinnee key sequences bound to macros and the + strings they output in such a way that they can be re- read. - --SS Display rreeaaddlliinnee key sequences bound to macros and the + --SS Display rreeaaddlliinnee key sequences bound to macros and the strings they output. - --vv Display rreeaaddlliinnee variable names and values in such a way + --vv Display rreeaaddlliinnee variable names and values in such a way that they can be re-read. --VV List current rreeaaddlliinnee variable names and values. --ff _f_i_l_e_n_a_m_e @@ -4329,13 +4334,14 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS Remove any current binding for _k_e_y_s_e_q. --xx _k_e_y_s_e_q::_s_h_e_l_l_-_c_o_m_m_a_n_d Cause _s_h_e_l_l_-_c_o_m_m_a_n_d to be executed whenever _k_e_y_s_e_q is en- - tered. When _s_h_e_l_l_-_c_o_m_m_a_n_d is executed, the shell sets - the RREEAADDLLIINNEE__LLIINNEE variable to the contents of the rreeaadd-- - lliinnee line buffer and the RREEAADDLLIINNEE__PPOOIINNTT variable to the - current location of the insertion point. If the executed - command changes the value of RREEAADDLLIINNEE__LLIINNEE or RREEAADD-- - LLIINNEE__PPOOIINNTT, those new values will be reflected in the - editing state. + tered. When _s_h_e_l_l_-_c_o_m_m_a_n_d is executed, the shell sets + the RREEAADDLLIINNEE__LLIINNEE variable to the contents of the rreeaadd-- + lliinnee line buffer and the RREEAADDLLIINNEE__PPOOIINNTT and RREEAADDLLIINNEE__MMAARRKK + variables to the current location of the insertion point + and the saved insertion point (the mark), respectively. + If the executed command changes the value of any of RREEAADD-- + LLIINNEE__LLIINNEE, RREEAADDLLIINNEE__PPOOIINNTT, or RREEAADDLLIINNEE__MMAARRKK, those new + values will be reflected in the editing state. --XX List all key sequences bound to shell commands and the associated commands in a format that can be reused as in- put. @@ -6203,4 +6209,4 @@ BBUUGGSS -GNU Bash 5.0 2019 November 26 BASH(1) +GNU Bash 5.0 2020 January 29 BASH(1) diff --git a/doc/bash.1 b/doc/bash.1 index c5ae9cf6c..86e725d7d 100644 --- a/doc/bash.1 +++ b/doc/bash.1 @@ -5,12 +5,12 @@ .\" Case Western Reserve University .\" chet.ramey@case.edu .\" -.\" Last Change: Tue Nov 26 11:15:17 EST 2019 +.\" Last Change: Wed Jan 29 14:00:16 EST 2020 .\" .\" bash_builtins, strip all but Built-Ins section .if \n(zZ=1 .ig zZ .if \n(zY=1 .ig zY -.TH BASH 1 "2019 November 26" "GNU Bash 5.0" +.TH BASH 1 "2020 January 29" "GNU Bash 5.0" .\" .\" There's some problem with having a `@' .\" in a tagged paragraph with the BSD man macros. @@ -50,8 +50,8 @@ bash \- GNU Bourne-Again SHell [options] [command_string | file] .SH COPYRIGHT -.if n Bash is Copyright (C) 1989-2019 by the Free Software Foundation, Inc. -.if t Bash is Copyright \(co 1989-2019 by the Free Software Foundation, Inc. +.if n Bash is Copyright (C) 1989-2020 by the Free Software Foundation, Inc. +.if t Bash is Copyright \(co 1989-2020 by the Free Software Foundation, Inc. .SH DESCRIPTION .B Bash is an \fBsh\fR-compatible command language interpreter that @@ -1938,6 +1938,19 @@ line buffer, for use with .B "SHELL BUILTIN COMMANDS" below). .TP +.B READLINE_MARK +The position of the mark (saved insertion point) in the +.B readline +line buffer, for use with +.if t \f(CWbind -x\fP +.if n "bind -x" +(see +.SM +.B "SHELL BUILTIN COMMANDS" +below). +The characters between the insertion point and the mark are often +called the \fIregion\fP. +.TP .B READLINE_POINT The position of the insertion point in the .B readline @@ -7548,13 +7561,19 @@ When \fIshell\-command\fP is executed, the shell sets the variable to the contents of the \fBreadline\fP line buffer and the .SM .B READLINE_POINT -variable to the current location of the insertion point. -If the executed command changes the value of +and .SM -.B READLINE_LINE -or +.B READLINE_MARK +variables to the current location of the insertion point and the saved +insertion point (the mark), respectively. +If the executed command changes the value of any of +.SM +.BR READLINE_LINE , .SM .BR READLINE_POINT , +or +.SM +.BR READLINE_MARK , those new values will be reflected in the editing state. .TP .B \-X diff --git a/doc/bash.html b/doc/bash.html index b01e3d819..36cd81a41 100644 --- a/doc/bash.html +++ b/doc/bash.html @@ -3,7 +3,7 @@ -
BASH(1)2019 November 26BASH(1) +BASH(1)2020 January 29BASH(1)

Index @@ -54,7 +54,7 @@ bash - GNU Bourne-Again SHell

COPYRIGHT

-Bash is Copyright © 1989-2019 by the Free Software Foundation, Inc. +Bash is Copyright © 1989-2020 by the Free Software Foundation, Inc.  

DESCRIPTION

@@ -2472,6 +2472,22 @@ line buffer, for use with below). +
READLINE_MARK + +
+The position of the mark (saved insertion point) in the +readline + +line buffer, for use with +bind -x + +(see +SHELL BUILTIN COMMANDS + + +below). +The characters between the insertion point and the mark are often +called the region.
READLINE_POINT
@@ -9635,14 +9651,22 @@ variable to the contents of the readline line buffer and the READLINE_POINT -variable to the current location of the insertion point. -If the executed command changes the value of -READLINE_LINE +and +READLINE_MARK + + +variables to the current location of the insertion point and the saved +insertion point (the mark), respectively. +If the executed command changes the value of any of +READLINE_LINE, -or READLINE_POINT, + +or +READLINE_MARK, + those new values will be reflected in the editing state.
-X @@ -14044,7 +14068,7 @@ There may be only one active coprocess at a time.
-
GNU Bash 5.02019 November 26BASH(1) +GNU Bash 5.02020 January 29BASH(1)

@@ -14150,6 +14174,6 @@ There may be only one active coprocess at a time.
This document was created by man2html from bash.1.
-Time: 06 January 2020 08:53:48 EST +Time: 29 January 2020 14:04:26 EST diff --git a/doc/bash.info b/doc/bash.info index b3d416845..e0c9059fc 100644 --- a/doc/bash.info +++ b/doc/bash.info @@ -2,9 +2,9 @@ This is bash.info, produced by makeinfo version 6.7 from bashref.texi. This text is a brief description of the features that are present in the -Bash shell (version 5.0, 26 November 2019). +Bash shell (version 5.0, 29 January 2020). - This is Edition 5.0, last updated 26 November 2019, of 'The GNU Bash + This is Edition 5.0, last updated 29 January 2020, of 'The GNU Bash Reference Manual', for 'Bash', Version 5.0. Copyright (C) 1988-2018 Free Software Foundation, Inc. @@ -27,10 +27,10 @@ Bash Features ************* This text is a brief description of the features that are present in the -Bash shell (version 5.0, 26 November 2019). The Bash home page is +Bash shell (version 5.0, 29 January 2020). The Bash home page is . - This is Edition 5.0, last updated 26 November 2019, of 'The GNU Bash + This is Edition 5.0, last updated 29 January 2020, of 'The GNU Bash Reference Manual', for 'Bash', Version 5.0. Bash contains features that appear in other popular shells, and some @@ -3427,10 +3427,12 @@ standard. Cause SHELL-COMMAND to be executed whenever KEYSEQ is entered. When SHELL-COMMAND is executed, the shell sets the 'READLINE_LINE' variable to the contents of the Readline line - buffer and the 'READLINE_POINT' variable to the current - location of the insertion point. If the executed command - changes the value of 'READLINE_LINE' or 'READLINE_POINT', - those new values will be reflected in the editing state. + buffer and the 'READLINE_POINT' and 'READLINE_MARK' variables + to the current location of the insertion point and the saved + insertion point (the MARK), respectively. If the executed + command changes the value of any of 'READLINE_LINE', + 'READLINE_POINT', or 'READLINE_MARK', those new values will be + reflected in the editing state. '-X' List all key sequences bound to shell commands and the @@ -5448,6 +5450,12 @@ Variables::). The contents of the Readline line buffer, for use with 'bind -x' (*note Bash Builtins::). +'READLINE_MARK' + The position of the MARK (saved insertion point) in the Readline + line buffer, for use with 'bind -x' (*note Bash Builtins::). The + characters between the insertion point and the mark are often + called the REGION. + 'READLINE_POINT' The position of the insertion point in the Readline line buffer, for use with 'bind -x' (*note Bash Builtins::). @@ -11052,11 +11060,11 @@ D.1 Index of Shell Builtin Commands * bind: Bash Builtins. (line 21) * break: Bourne Shell Builtins. (line 36) -* builtin: Bash Builtins. (line 102) -* caller: Bash Builtins. (line 111) +* builtin: Bash Builtins. (line 104) +* caller: Bash Builtins. (line 113) * cd: Bourne Shell Builtins. (line 44) -* command: Bash Builtins. (line 128) +* command: Bash Builtins. (line 130) * compgen: Programmable Completion Builtins. (line 12) * complete: Programmable Completion Builtins. @@ -11065,13 +11073,13 @@ D.1 Index of Shell Builtin Commands (line 237) * continue: Bourne Shell Builtins. (line 85) -* declare: Bash Builtins. (line 148) +* declare: Bash Builtins. (line 150) * dirs: Directory Stack Builtins. (line 7) * disown: Job Control Builtins. (line 97) -* echo: Bash Builtins. (line 246) -* enable: Bash Builtins. (line 295) +* echo: Bash Builtins. (line 248) +* enable: Bash Builtins. (line 297) * eval: Bourne Shell Builtins. (line 94) * exec: Bourne Shell Builtins. @@ -11088,26 +11096,26 @@ D.1 Index of Shell Builtin Commands (line 143) * hash: Bourne Shell Builtins. (line 187) -* help: Bash Builtins. (line 324) +* help: Bash Builtins. (line 326) * history: Bash History Builtins. (line 40) * jobs: Job Control Builtins. (line 27) * kill: Job Control Builtins. (line 58) -* let: Bash Builtins. (line 343) -* local: Bash Builtins. (line 351) -* logout: Bash Builtins. (line 365) -* mapfile: Bash Builtins. (line 370) +* let: Bash Builtins. (line 345) +* local: Bash Builtins. (line 353) +* logout: Bash Builtins. (line 367) +* mapfile: Bash Builtins. (line 372) * popd: Directory Stack Builtins. (line 35) -* printf: Bash Builtins. (line 416) +* printf: Bash Builtins. (line 418) * pushd: Directory Stack Builtins. (line 53) * pwd: Bourne Shell Builtins. (line 207) -* read: Bash Builtins. (line 460) -* readarray: Bash Builtins. (line 554) +* read: Bash Builtins. (line 462) +* readarray: Bash Builtins. (line 556) * readonly: Bourne Shell Builtins. (line 217) * return: Bourne Shell Builtins. @@ -11116,7 +11124,7 @@ D.1 Index of Shell Builtin Commands * shift: Bourne Shell Builtins. (line 257) * shopt: The Shopt Builtin. (line 9) -* source: Bash Builtins. (line 563) +* source: Bash Builtins. (line 565) * suspend: Job Control Builtins. (line 109) * test: Bourne Shell Builtins. @@ -11125,12 +11133,12 @@ D.1 Index of Shell Builtin Commands (line 349) * trap: Bourne Shell Builtins. (line 355) -* type: Bash Builtins. (line 568) -* typeset: Bash Builtins. (line 600) -* ulimit: Bash Builtins. (line 606) +* type: Bash Builtins. (line 570) +* typeset: Bash Builtins. (line 602) +* ulimit: Bash Builtins. (line 608) * umask: Bourne Shell Builtins. (line 404) -* unalias: Bash Builtins. (line 705) +* unalias: Bash Builtins. (line 707) * unset: Bourne Shell Builtins. (line 422) * wait: Job Control Builtins. @@ -11376,14 +11384,15 @@ D.3 Parameter and Variable Index * PWD: Bash Variables. (line 598) * RANDOM: Bash Variables. (line 601) * READLINE_LINE: Bash Variables. (line 607) -* READLINE_POINT: Bash Variables. (line 611) -* REPLY: Bash Variables. (line 615) +* READLINE_MARK: Bash Variables. (line 611) +* READLINE_POINT: Bash Variables. (line 617) +* REPLY: Bash Variables. (line 621) * revert-all-at-newline: Readline Init File Syntax. (line 272) -* SECONDS: Bash Variables. (line 618) -* SHELL: Bash Variables. (line 625) -* SHELLOPTS: Bash Variables. (line 630) -* SHLVL: Bash Variables. (line 639) +* SECONDS: Bash Variables. (line 624) +* SHELL: Bash Variables. (line 631) +* SHELLOPTS: Bash Variables. (line 636) +* SHLVL: Bash Variables. (line 645) * show-all-if-ambiguous: Readline Init File Syntax. (line 278) * show-all-if-unmodified: Readline Init File Syntax. @@ -11392,13 +11401,13 @@ D.3 Parameter and Variable Index (line 293) * skip-completed-text: Readline Init File Syntax. (line 299) -* SRANDOM: Bash Variables. (line 644) +* SRANDOM: Bash Variables. (line 650) * TEXTDOMAIN: Locale Translation. (line 11) * TEXTDOMAINDIR: Locale Translation. (line 11) -* TIMEFORMAT: Bash Variables. (line 653) -* TMOUT: Bash Variables. (line 691) -* TMPDIR: Bash Variables. (line 703) -* UID: Bash Variables. (line 707) +* TIMEFORMAT: Bash Variables. (line 659) +* TMOUT: Bash Variables. (line 697) +* TMPDIR: Bash Variables. (line 709) +* UID: Bash Variables. (line 713) * vi-cmd-mode-string: Readline Init File Syntax. (line 312) * vi-ins-mode-string: Readline Init File Syntax. @@ -11769,135 +11778,135 @@ D.5 Concept Index  Tag Table: -Node: Top897 -Node: Introduction2817 -Node: What is Bash?3033 -Node: What is a shell?4147 -Node: Definitions6685 -Node: Basic Shell Features9636 -Node: Shell Syntax10855 -Node: Shell Operation11881 -Node: Quoting13174 -Node: Escape Character14474 -Node: Single Quotes14959 -Node: Double Quotes15307 -Node: ANSI-C Quoting16585 -Node: Locale Translation17844 -Node: Comments18740 -Node: Shell Commands19358 -Node: Simple Commands20230 -Node: Pipelines20861 -Node: Lists23793 -Node: Compound Commands25584 -Node: Looping Constructs26596 -Node: Conditional Constructs29091 -Node: Command Grouping40662 -Node: Coprocesses42141 -Node: GNU Parallel44044 -Node: Shell Functions48345 -Node: Shell Parameters55552 -Node: Positional Parameters59965 -Node: Special Parameters60865 -Node: Shell Expansions64089 -Node: Brace Expansion66212 -Node: Tilde Expansion68935 -Node: Shell Parameter Expansion71552 -Node: Command Substitution85985 -Node: Arithmetic Expansion87340 -Node: Process Substitution88272 -Node: Word Splitting89392 -Node: Filename Expansion91336 -Node: Pattern Matching93885 -Node: Quote Removal97871 -Node: Redirections98166 -Node: Executing Commands107724 -Node: Simple Command Expansion108394 -Node: Command Search and Execution110348 -Node: Command Execution Environment112724 -Node: Environment115708 -Node: Exit Status117367 -Node: Signals119037 -Node: Shell Scripts121004 -Node: Shell Builtin Commands124016 -Node: Bourne Shell Builtins126054 -Node: Bash Builtins146978 -Node: Modifying Shell Behavior175903 -Node: The Set Builtin176248 -Node: The Shopt Builtin186661 -Node: Special Builtins204331 -Node: Shell Variables205310 -Node: Bourne Shell Variables205747 -Node: Bash Variables207851 -Node: Bash Features239793 -Node: Invoking Bash240692 -Node: Bash Startup Files246705 -Node: Interactive Shells251808 -Node: What is an Interactive Shell?252218 -Node: Is this Shell Interactive?252867 -Node: Interactive Shell Behavior253682 -Node: Bash Conditional Expressions257169 -Node: Shell Arithmetic261746 -Node: Aliases264686 -Node: Arrays267306 -Node: The Directory Stack272671 -Node: Directory Stack Builtins273455 -Node: Controlling the Prompt276423 -Node: The Restricted Shell279344 -Node: Bash POSIX Mode281826 -Node: Job Control292713 -Node: Job Control Basics293173 -Node: Job Control Builtins298137 -Node: Job Control Variables303283 -Node: Command Line Editing304439 -Node: Introduction and Notation306110 -Node: Readline Interaction307733 -Node: Readline Bare Essentials308924 -Node: Readline Movement Commands310707 -Node: Readline Killing Commands311667 -Node: Readline Arguments313585 -Node: Searching314629 -Node: Readline Init File316815 -Node: Readline Init File Syntax318074 -Node: Conditional Init Constructs338604 -Node: Sample Init File342800 -Node: Bindable Readline Commands345917 -Node: Commands For Moving347121 -Node: Commands For History348980 -Node: Commands For Text353275 -Node: Commands For Killing356663 -Node: Numeric Arguments359478 -Node: Commands For Completion360617 -Node: Keyboard Macros364808 -Node: Miscellaneous Commands365495 -Node: Readline vi Mode371448 -Node: Programmable Completion372355 -Node: Programmable Completion Builtins380135 -Node: A Programmable Completion Example390830 -Node: Using History Interactively396077 -Node: Bash History Facilities396761 -Node: Bash History Builtins399766 -Node: History Interaction404298 -Node: Event Designators407918 -Node: Word Designators409272 -Node: Modifiers411032 -Node: Installing Bash412843 -Node: Basic Installation413980 -Node: Compilers and Options417238 -Node: Compiling For Multiple Architectures417979 -Node: Installation Names419672 -Node: Specifying the System Type420490 -Node: Sharing Defaults421206 -Node: Operation Controls421879 -Node: Optional Features422837 -Node: Reporting Bugs433355 -Node: Major Differences From The Bourne Shell434549 -Node: GNU Free Documentation License451401 -Node: Indexes476578 -Node: Builtin Index477032 -Node: Reserved Word Index483859 -Node: Variable Index486307 -Node: Function Index502131 -Node: Concept Index515570 +Node: Top895 +Node: Introduction2813 +Node: What is Bash?3029 +Node: What is a shell?4143 +Node: Definitions6681 +Node: Basic Shell Features9632 +Node: Shell Syntax10851 +Node: Shell Operation11877 +Node: Quoting13170 +Node: Escape Character14470 +Node: Single Quotes14955 +Node: Double Quotes15303 +Node: ANSI-C Quoting16581 +Node: Locale Translation17840 +Node: Comments18736 +Node: Shell Commands19354 +Node: Simple Commands20226 +Node: Pipelines20857 +Node: Lists23789 +Node: Compound Commands25580 +Node: Looping Constructs26592 +Node: Conditional Constructs29087 +Node: Command Grouping40658 +Node: Coprocesses42137 +Node: GNU Parallel44040 +Node: Shell Functions48341 +Node: Shell Parameters55548 +Node: Positional Parameters59961 +Node: Special Parameters60861 +Node: Shell Expansions64085 +Node: Brace Expansion66208 +Node: Tilde Expansion68931 +Node: Shell Parameter Expansion71548 +Node: Command Substitution85981 +Node: Arithmetic Expansion87336 +Node: Process Substitution88268 +Node: Word Splitting89388 +Node: Filename Expansion91332 +Node: Pattern Matching93881 +Node: Quote Removal97867 +Node: Redirections98162 +Node: Executing Commands107720 +Node: Simple Command Expansion108390 +Node: Command Search and Execution110344 +Node: Command Execution Environment112720 +Node: Environment115704 +Node: Exit Status117363 +Node: Signals119033 +Node: Shell Scripts121000 +Node: Shell Builtin Commands124012 +Node: Bourne Shell Builtins126050 +Node: Bash Builtins146974 +Node: Modifying Shell Behavior176020 +Node: The Set Builtin176365 +Node: The Shopt Builtin186778 +Node: Special Builtins204448 +Node: Shell Variables205427 +Node: Bourne Shell Variables205864 +Node: Bash Variables207968 +Node: Bash Features240159 +Node: Invoking Bash241058 +Node: Bash Startup Files247071 +Node: Interactive Shells252174 +Node: What is an Interactive Shell?252584 +Node: Is this Shell Interactive?253233 +Node: Interactive Shell Behavior254048 +Node: Bash Conditional Expressions257535 +Node: Shell Arithmetic262112 +Node: Aliases265052 +Node: Arrays267672 +Node: The Directory Stack273037 +Node: Directory Stack Builtins273821 +Node: Controlling the Prompt276789 +Node: The Restricted Shell279710 +Node: Bash POSIX Mode282192 +Node: Job Control293079 +Node: Job Control Basics293539 +Node: Job Control Builtins298503 +Node: Job Control Variables303649 +Node: Command Line Editing304805 +Node: Introduction and Notation306476 +Node: Readline Interaction308099 +Node: Readline Bare Essentials309290 +Node: Readline Movement Commands311073 +Node: Readline Killing Commands312033 +Node: Readline Arguments313951 +Node: Searching314995 +Node: Readline Init File317181 +Node: Readline Init File Syntax318440 +Node: Conditional Init Constructs338970 +Node: Sample Init File343166 +Node: Bindable Readline Commands346283 +Node: Commands For Moving347487 +Node: Commands For History349346 +Node: Commands For Text353641 +Node: Commands For Killing357029 +Node: Numeric Arguments359844 +Node: Commands For Completion360983 +Node: Keyboard Macros365174 +Node: Miscellaneous Commands365861 +Node: Readline vi Mode371814 +Node: Programmable Completion372721 +Node: Programmable Completion Builtins380501 +Node: A Programmable Completion Example391196 +Node: Using History Interactively396443 +Node: Bash History Facilities397127 +Node: Bash History Builtins400132 +Node: History Interaction404664 +Node: Event Designators408284 +Node: Word Designators409638 +Node: Modifiers411398 +Node: Installing Bash413209 +Node: Basic Installation414346 +Node: Compilers and Options417604 +Node: Compiling For Multiple Architectures418345 +Node: Installation Names420038 +Node: Specifying the System Type420856 +Node: Sharing Defaults421572 +Node: Operation Controls422245 +Node: Optional Features423203 +Node: Reporting Bugs433721 +Node: Major Differences From The Bourne Shell434915 +Node: GNU Free Documentation License451767 +Node: Indexes476944 +Node: Builtin Index477398 +Node: Reserved Word Index484225 +Node: Variable Index486673 +Node: Function Index502570 +Node: Concept Index516009  End Tag Table diff --git a/doc/bash.pdf b/doc/bash.pdf index b797c9d61610406d8f5726473af2a6977ab9295d..fedce5fdc324abaaf75da1ad92d94beaef7d07cc 100644 GIT binary patch delta 314720 zc-jCRK;plTpcnI%7m!MS+{O`o=U2>wAFweO#tiPs6GbsH9f?%LRVuEf$_4IXm$0zF z3KvmyrSb*(kv!}_rhBfyU@6H-s!}RjB?6e~?m2z>bPqoe&!xn}Kl1O@?&OCzG1;~! z9@(CJIHCL@k$Eq;Yn;63WQ zp`Rx3#$pZsh+PV=Je)W;Ki)d@c1B+0Ro-MJzE9J{WxjaR<1d}pyIoeTTk9Ueay3{hbi-6y zWkHyT1&kTz*ROwmbNS-O#ds%U#?pC)4i_ysulF-p%A;X_>O3~Z_P!(kB5;`LoO#S6 zcaNmI&&i*gJSR8xrh9;woveYM%%}*DQ}@+6Lz_>@Wwmm@8l&eIH|K9IUoS4NubvLm zvuT(DIL?4dgt=+#bCiJ#S!J!meAf%ZR7TWZD0Kscyg7t;54PWxIg!yOWmawbY@3s! z>hfma3n2Jg;|t9KtmM*kwitc?>kaA;+qU1;9A}$=&eenY1n+QGF7q2%C-i_R&}$ln+z@M z+kDfPWRquI-@w0>ZPM33rW{jz0Y);l+FxpuY}93ck=~}M#zw$XKhbFoK1&zOs%~o1 z{@gw<3M(^xnvjPrxpnL_Pry%|Mepq}(0G_+#scrC1*^&DzMB{aZfEux%mdGJqc|PF z{3wEH5Ty#iA&V7)5o*;sUz4sTcR3vMs;)M51CZ%RvD=sVF0VSCW2D}2+nx*Bq+gZ&v)t6SsFsH z*ta2W>8!E}eFBd@ZvkP-M{d}B;3qK6I^S@5>C5gYjW7sq7z|>3%~|B;DV78HCW0l- zAXqXiEpTa>&sX|jsH6{nb|Wxt;D)qFp7BVV5$@WOU-DsG?=df=JK+?Xbo z5uO{%cTQIW6QVFqG`BMR>H*UPPYM`fO|n);=;1yWff0e@@Ev+gqsV2k!pFy2vF6x+ z*Y`uh1n(4KN}FN#wF~uxyWzWWq!-NA>w;Gs`xIg~O%t{J(J~tYF&iIK+-2!#ns2#N zo4PFP8N=EZq|O5tUg*mR?F0J)(ez*mI`+~?q7#{a`tL3;)fqvkCUC*cr;VeHz)G{KYde8sjZ@W<(Ak)8GPdz3 zUjxAkOA}l?1?dph6hzy;ZaFu9WF^@Hz3))FweD;l2GosH<}B{jHym+13~&%&Mfk-q zFaw|?VF(9Z&l34xFi8db>!O2Hc?#57thnmtoC;k3FiYW(LO%peEqsUYfrAaYuN%2{Z7b5-in#CbrWXG6^oA&V0u zI}Xi%0kvk5Igz2XFGB4u2a?QNHA0B(rUcxN)i#YOra*v^r;8l&D+s=|r562R<8mb0 z6dDWp^v%W1;?3px;^H~E`SIfAORG7Agy80Pm_r3=M>_g;{-7!n}6jb;N8;88;x0Lwr52!;%YQ;|*$PihNnLmHv4F;KXL z=>NO>rtY`*&=~HE{bT?zr%)>gT=`sR2#USW>R7U#mBWD>O_;VcO4L-P!_oz@hlZ%X zgMR5lUt>=sL<)z`D#woX?$Iun3ADDlJ^XGA#{{iP2ipaIQiS7*1@F4*YK)D#?-V!^ zH}DcH;w=|pQpR```onb4^Myk8idBTUe13xfZ2P-kbKrRZh92~EO;)v~=z(=}v+A1$ zWm8$NvNFevsp`&h)n}l}v_?IjR8p#YDyMGjFoE_-V#PbUO&<^wgwa$QSE%1O(h?xbsf*B7P&M=FyKV4!Lu>hOw0p7Gp= zbBII5`EM^@&Qj=_Xo{NPO42k)kc1i4dw%`u)!Ef^Ym^dVPpwB5SkQ3N4<_rgf$A9w z%D@swE;rT*fU1d21^&_j1Opn1Lp|J8b;=4bRQy5XcDS~19RdF`U5d3N|2ShPlsu5z zWiJnZ7KlLt-!9OU!XfA`_4}iH$cKG}dx#tj^|b=jUM4O~itbo!7$idS_1FY1bO^c; zqH0ObNI+4DK?m1fCM115&1>p~aztLS~N!BpWtE!vY;iKzJXVN zj;KR!I*Wa5MCy~HnF%V=3+YW?SCl2IunVa+yGYZO3hpNG4I2``CM7SG9F4Zljr<5>P+BBqU zI8$$I@&SHM2d3IGO5qmJmVfA#`edPhoVQTZSbfX}xj_fzxx|ep(+-d{gK^m;L{xS7 z)0W*&5;u*%d;N@;8{)OArcl0ZRNRHp}@^ z5TQU+Xx;TV4%_eZtWo5nulkBg=o;onE=%b+JMVJH&;0nEfm&Sj7odgfZB_h#HdQ+! z7B5d0e^^2+*ZJLy;=m`MPQTp(YRB#Q=;k7p()g?adAh~HbR(}L?q&cxKAz@_V9o(H zr7cnwYo&(sQaxgON~+;@0=-vc zIixIx?d+)(b!lp8VmV*5wI_0$XD%k67I`2qO+p?Mc}uDC^w0o@X2*vHs5=HVVBPQb zhkbpJosQK*7@d7#vjomH{#PvVd@$~^C&Y@vPVbJ?Xx`fnOQ*bZdvW!Db~srZ4H*F~ zYR&Bv7bi=n>vG5vfZ9aVfiO2l?dwSi7#!)XgIB6p=Sa=l#@iWI0V3-5k}^FT{Q`Z)jjgNp<5X6DC#a7AA>YA(=Rh06Tj8r$pINPNS#h)!=p3sI7$BF88{$QGwz(h zkN8w6#L=3OZu}R-@K>kci`g8y?>Ke%FG~G{zvR|D5|;7>f=IQ^6b-*voctC3{2LW$ zM|WjzWOHM_**H`c%RpD$&G(qr& zM<-D^P9?V2n(U@(w6#UeP#$h($O*}jtUT-&7VQU#f$fu_o2H8y$=_^T`>93(?8aG@0;btRT%KZTduJ(rzgw%3-vPd zvdGKg*jw%|fBbJ=E|&koE?CESkZ_S>#d3rHWC6pH#|!`F`&*ygF1%M|UAD!J)-#a@ z5mzfix#-(wzc1=d=lxXFN43ZZ5HYMy)atVb4#&{b7w=i9MZSu|EJ#xCil=hbr%$`) zLshF)!@cnAibeAI^>4>YA0ElWadv7Cc__^3B4D}5e`Eb%SJu7PHlY9qjsuY=@hK7FEC^Gsz29$IuaNE-e+3E218qPpJY&O-Pt77qSdixaeJ^(k zRZJkfV!ep2lFO?=>_gdhO=hzEe-oZl zWZ`*WudKtUT_CZBVS3^MNGE*ohwA=Ia5u+RNtTa*H&G(bz<24U-3*4;54PC7Ib6wo zc}l=w5teSg^5yktRqfq9c^erwGGx5Dl=4o-!($$#*%x~FXZ)K5!Xj2T$s}pOovThG zRX9j7O+itV!VShr`p|UM$8!l9e;F(1it%iV`h)U`yK*Z<%?QY~AJRhQIu8|cL~}nm znsW*kaUNgdAQF+uOMsD99kv;OD~gpB8n~qL!A*6)h;-t*ho5@)ZL^mzy?cA}`WMQA z^`>YyM0BK~7(kBWVkV_>u4LX9{d%j6JG^u2Py9QN0-oyI`ci4$zS&IZe+IHpI*=5= znBE={@7+w%C87WrGBJsw^n7!D?Y;c*=IvzP6d5%d975uW0!n%d{*ng5AeH}k?>axX z?@{swKtNYzy)KCb72c*zZWoc(BLC5@Q{R zUHL{+Ug4T+-FF_j!Ph#qf2v)1U_kxOjRtaflgZ$HOy=fHI@==Ao1TKzWJb9Z-^%0E zFT1|2)_u7-OS=4}iTAq_WDyCjHE*3t8H^{$O!^A%uWy#`Uw^y2{?5Dk{`$usCvl31 zh$uR+1@qXdFuH8tr8x_*Fvmj=imqY9r1Vae*zr>`uqiMM!v^D zkZdXN_~5!-@`zlETkEf)91a^}6i3`{Qo+v`F=Xk&Oe97?K+~KI^}H|LW(TuHP(g&VjTo4PM`S zg`}H!IZHDGE(Fu`fBb_Cb#mf;0p?TOBh3O(rEU&wLlUA|yOi?Rwzil$0NfP0b8vw5 z!~vopO_IR~b#rP59wH452K>~`HejLIKufnR02d{=Wp_Lrc2&8#l#2hO?Ro`PBGUv) z^FFDDjIy0&H(|^iHBbsKx(>fnhQRJ}$GX^)R{$A7aZn)Ee*nZ9O3^T&E5=Uxb|er` zrZjpzbtO=ekg?}|DPe{K%@{Ls^+2dT&nIFwV-zcYQvp(9l;x3MyVY12q;X`uBUWjO z0z=*b02!O-KIDc4E~mj9hsZ5f;a`OlD^l_ptO)1k$^&skR}!dBOu` zojJ2c%8x`k*y$X#mW;YH?lVvos6*bnr?N@D$`V3?!MuQu*$v<}%xpW{0OBN*nvrU5 zlZ=r<&T>`N;A{8SWN9+yALZtDA#=eX#9Xto;WfC(j3r&gfag4MkRS<#Mgn;i70Y&CA!*XJL6|nB`U4)`e?3i%!&4q)Ll+4b18hA_=m|raWQv4apWiNS z7ndGY_o~Yd7l1QH4i6Qv%JQFax)kLq>eWFt)kOC=*JNnN<1F9+Y(v{$eRsnq8z6*) zv7Lw$mw7;ib4HLPX1A|CO*V_Eb3Mpf)$84HQ%*ZF9CX{%!;|ZzL1b=I%_$;|e>O9f z6BH3F%F1@OGlnaqrk9{QV|X)8<|)oe6x629&09OwQ=mUO#g$}NLu!zaOb$>e^W)l( zZj9f~=s|g8*DIbw39}4zaRS8nk(j4ykSzbQl9l#-v(rT|Xq-Bm*x!e?IBdzANdVCF zt-?E&FeJA@caJm8W(gD1hPKhzf0%_^vRi%}k)y;Ex+~4#K*-$jN=L~bOqhvOR$s%U zAmNI`(>QN58lk20*+^zu<6GTGS2j$*7M!t(f*~Rx(CXbHqRI}e1IVy0YU=*pY2L$A z=q5Aij=1ZTz(}Obo|#N|hJnRHf0tdSLlAk@^?-3m zdA3_W6nT<^o~u}qesj}n|8FbS^3>=j%7WN9@Y$I%2Q`hy;ETkS+g{>jr4pC!Y75k_ zaX4K4zIWslv8iyFX`NF8o6?SgPPnIOL+LFESb&^e;Ju{Imjo}j*<`mO)lvHC^`2Ja zh`uyqP64NiLX-^6f3H+iO{cv)2TM*(W%0!mYdkqOv8EPt9wyT*Pfo0}IG>ac2yctV zVBARH20C?}M% zRGk#8xZ9Pg8O&&OJQN;8il$WsJi~D(_X`qKm#16_4$i0D)P3Ujb&w{9}KOU5BtGh~bJ2?@I^ydY3CKEH=;s(PB6);ggBKBZ0_G@QI&4Y08F&4!7 zl`)jV;2Ae-fAqF1capC7pD8Z+Cj=IDO`T+=`$FFhU{X-|Jt&IQr7z;E9Whe=12R$Ip=zGE1l!Qh$ENlU;3O zlDU|?BJ@jRzK~(-!OnJL=}!_d5Lra(3vcImnhnsYJ?SG7VT#4mGxjjE$7RpkGY4(u zU+Ba$WOP5<;vo4^KL2b>e;krC{c#9YP1En5z;6;e`XxhxG9@e>RZ!GvNt_~rCnxwo z>{KE8eOH+a4^>0PIr0ofX5akz;V{Iksy%U z4wSzLM}}`OPo!j2lD6mgtmi%JcsatsBGSq0f7@edB240#fw1{L5TW8=$>%?8a$VLR zP=vtoGi4dg-jip(kfEt}I(SMR+IgBz*XK(YLBok?+#Wii(A|?N=Xod_{27QtXg`d+ z>=y}G0BUR>4sDTBR=0!L$9mE&x|B0_HQ5Tm?6|#v4!~l6Q2g366j~+(Io3x3;Ed~v zKDHvJq{?c5N(Sb473U5odG+RJk49o17{KC+#Viwk6h@)<1AV96K6#OlqQ~hlwT)=E z>*d8?@$WzBQOHl10UZJp3m`BcZ(?c+G%zqWlU^P|e_L&D8%L7v*w%llUAh5<6?_b{CL?#fThy@R$8_xjlROrXY9286$URzn*dZA+difx8&QavkOLLMy{4HvcylWZqLk@ zIVl7wf6|m(ZO@W#pD(Wd7iNKRT+&Rc5=LCD;2#C$FywHSy#3)_!rv{(%et-mYJ=ms zDyfiWB-4Yw>$cmfT@B=?s@aX}=*taZck*98FlyNlqI%!%mf39m%w+pGLDpQ_(X!@?**6nys>IF~X zhgq8Zw$mGH#({iTh%Bi#`oqc6HScI89%l6BtMKLp_*j7r$Kn`An#k<}$2o zm)3LEt7yVXe@lPoLZ%tb1#Fg!;NiB~)}*^775TKO$=H#;u2y=<+WL%ZZ*x}C)UKHP ze^z@pDJn|Xr2SyIA8Ts7#F=%INGZ>ma0gWl>!}-sq&Zj4(Kq$Fnl4<@yky*d{6ViQ zXm+&rbuv^7k%G&WOoj$Lz$jxyay#nXYhwk>#hoeF3AppN+iW`c8hlF>$)RcQ$kJer z9KiY3-N6{asYt)Z3#)I;E@8CU=7r=rf2TB}3C4czOZ=V}<{ek@Q3{R^i zH2&!`a@#ogP6H27>!!QePaNamKaSqUlCqrfJlZ_M1i+IigB3u5#|oo)o=;;X=hSWR z=O|1VO^e)}?$r;@(m6+D@T1J1VikFgN1p4O>IPug45aNw1pNvjIY2Zl*Kk(7e+~fv zDxy~7?1Do)@ehJd&6EGt$%m-42-K`G6Z4ipGaQ_O2qa|e6gEM&@Q z!8xA3$3EDf7qWDt`UVN5Bim-%e=POl!&vp>en)f!a%EWRLjz6+V62;A?D}R|Z2&c3 zJY%U!>V9atc7V_IGLx8>Ax`EF2WBmUC#ykwGDR9FJU2m>$PA|~H{DQg?vcrM-7qwO zk8^TZHvp4m*8(QC7__hx+{4eW-(LP5chat^eudvT)SC@mTx0-~j2Fq@e=xk@U@ge? z$x5!1($^fUpm~}d9qe_o0_w?AnwCPd5d1Y`B59l8ehH^mW^U8%2sv*#HWQ{3iWWX` zL0B0N0OgTQz)cDV>vB%g-C2yL@N*%Y_kg2vlVpcAZ2z3V8CDQc?L~8PVU<(qSdl|I zOx?OeSU0CCO}QK6=Ev#Df5F0cj@+CICESibf8IE2qYMf|d~|fX5zusw3Gh=tKo%Uw zdb=Bk$C6SeDR-EDkdM(^sm(=VcKmK&Cvz<#tmBf~zT4Vuh&Vk7j=je;DAJ1sFt_=5@&= z56FtCxnxo~JY~Y3Sv3M6R&|d9GxKA>XGRO<4mhD#G2*y%XLNMP5X))qzIF|#+;*@T z2q?(H;*@hTNKvyRC)?^CSjW?S)2^EvK*0#4L!2Jq8K|w)(--p6BC}G8ns81*`KdHe zNQ$WuHtb?PB6Dyje=kb@l`*eyqLVSNI4!x-F%N$&R6dRQ6pu#zj+ig3$@AD_5iQsu zlh8YrISK%VN8y}=tm z41!n)@1-h271RyP(T3lrfz>ovP$Xvj>y!^Wp?Yk7FJL{NqO2t`lYqSBzTP^a88Tmu z0hg7=+ErH@f2nAb#bdbwh+I1P`?z-ZDS}`=fVnK+8Wt!b_D=4*xb9@WP(c&5g;>LR zX$5CKoS#UQWe(ziMJ#G4w3KPGJf={fY8479%b{zlqoe}0D|rOqQkX)oBehn>0*=*v z8(?BTzO9!dC0f@@@U>Tp$-}Y%3am2oQD*0vGFJvle@}RqI8z?Lm>>CN5mt)F)ip$( zchFnZ8X@LZ_1X(+7U^q$kpInZvpG;X7XbtB)Ipv zHvkD`u)Q@1e3OHHGb3tYfF#PL>tb2iaiUuxpb9EItRCuCpaF)^Y}*1C^{K-Fj@Sag zZ}dVa$VAFhG)R|_jIenbl8CK605fjZsfTVdOKydRM@>TBH-c*z* ze@G~KrRhQfT}>BEx+7MaMo)yn3*BWaqd+>@-z$CTh=F3tkhr{C)c}btqVk|gPV20j z8Vmb=-m8JEgUK{hRAdG4lk@RsRsHAyF8pxCNa^Fu)oDrAGVjdm_vvg+MHCei# zMQGO2%SkO7`hW8dU4|d}jh#*vGV^^~4VMMz7>##JPbnteh@G%#)!~D<8jdj4e^^es zU0{03kH8*93r=0tBx0BsS}m zVL9*$@*E|Xy2+54dew2E9d&2`e?=&iR-N%M7ETk@QUbgCi<>Wr7QOgmvPIBvOLMGR ziipPzsxo8g>F(*I@d5d@D3yIPuiwFoH z>pK#m2XklcE;sixgr^0~00&=RG2_|5K~Dw0*06D#2Xnr0@St0|sM>{HtUA=5R)m{!`f6*ASIPB08*ySw=W<=W7H=ayQ$pt8*K=1XuR0Jet{*Di5 z!_E%kZXfI{bgpJo0|o%hyX3C#_Pcir(yTPK)W1UhbUl9n(FTz=9cTJ8$1oSEF3qiI z-pybFtlTfKH`0>ZrKVQ9F{8#9sWk@>?5w49kzXH#wh^XR` z3vfMq+@=E#$hh}bDEv-L``!0H+vOqA+ruscBR-E@4Oa*rQ1rPNB#= z8Qf1&S1<{4sR5O~{3p{_1X$EWFaX@xTn%$D6-19>M!z<9z;Sg50vo19LDMu9GQTv$e`KeM^x@dd^C&i5?76rj z)i`5e1=Y0l-JK6zbcpUWmX#@j?U`N360|_n{*OlDe}b@&0rV>f>~c4OrA#JY1HIm@JG)UZWHgTkuq)mz_XtipKh@-BQ?>7b zmTa1uSYg9Is_^CHg~qM|-GFxs)y*Ph#;J6!4SX@0D)VJ0at@RJ8xN06dRIEl%6=Ku z!jD)5>8Ea&x{tqHSJ=y_dsO-D(5&jd*7wd88NiL8e{}ZXMpq1K{>M0AEP1{eI`Y1? zZU>chX!ZBz{*zo$f9EuI?{&R`&$-w-8oaCrfmkM;F_f6=A9v{bC9AOddpBEfD zQ=D+fOsiuHyt0S$$qjvI#|$H)s%t?j;q}L6x2{?MOy4YHAL=`m7MwUNfxiaBUpJ-{ zfWVQVe}S5tcH3Rkwm7lYBUNiAHfdY33}2H?L;0p2;}x}xYNI9N!|ChWy63UFH>l9~4zTb1D|451)xpAT2z9C);|gylp2T8X`A&zKr|b(Gx4bxe>~}bJNJ! zx4-VY5i`P2@8EMROLen^=LNo}V{w0|>sJFMf3I8Z_f*asM4YFH0=)e+na7Pd^3mI1-AO}R@PVL#zh}Lk|*TJ6Y`8agWvEc{P!*)Ab~%U zk5BXgryyke&i#PhJJ?BO8*B9TDziG#$sZ3tK`Tni5 zR2;b&(i<~ZuWuk_^&hZoFqIcRYD#m*f5xj}mgzwPs@#{>n0^im)WV8!jZF<~vaY6? zHCI&da7CEgwIR7yQ41MDR>;u6Ww{kyP!54q+16DXJty*fEwN~jajvwTW_@VJI+hm3 zI-~cO-Cf)KQzrvsr+&duhA8N@Q*@N4R75w2*ag={p~K?fH61BkADd1vK9ezve`hko z#m&|7&}?@be~Srt80vZ1AWAHCT&mO619|!8`A+r+&iX)9C@= zW)2o=B~*C%EIiRzPzhk4wpNL}^w!RiUI6?;uW?xovowX*mtkqUY!L7~di590a~q^U ziPyBgQ!wM}Twj9uPOkBwe#*&Ff43bmTbX0{1j+Ru5h*Lm{PSQqdSxH9!H(c)cHxS* zTVk(lg~U*Apn#}1Frpr+CHX{dJ-tGva(rT1YQW?h(3kqfs707v(K^4d9I=PQw6Ra- z{*U}W8JlfQuCK{2znox!V$J}kz!6Dy59hZAbl*j@GyGo^uksEEhL@ZD>e-S(*}cV#mSP%EKu9pY;+0d%Z;_(wI06yPbh zwvo2;E4(xhQt`s2TZFz=ZYr}Z(XQOHY`molq*?OZwp&+CZ*D8B5Hgn}mAzf4=8gna zrUG&?Azta*{?P5m$!&@^e<@Or0NyNIQLS^P?vj@C_cqu{4uLm)A(jSx7@9ptvv zWXdJSNu~=me_dUu(3^Sudc|}z@b!KlTWMw&-8Qi0kt7LoQtjm%dY3;abrK(`b;Sw#MT`qftVx zmhfbbzg(@)^vj%Nf@E<_uC`~hub#^-sFQxWMWnR@7(cDpT`RZm`&&0as`4j?!@o#>}eZfLhrZ^kU6NlF$` zia%Y?t~Qc%a@cnbxtoia7KO-WWxbcAU6XSD?&^E6k_%&Io>I=4Fzfc!c2`TXf7A!W zo9h|6{mWkXcCF$k+ zy=;~$Ol>34hugMuF6iNbUD;Xt)f3i7&Cswg@&YGIOktp;vg3vcmk> zcEPKh(@3Ni9Uq_I&xtm@{Q!Us_AX)?$N8c2yq#f# z+?ow}0$^|C5|iMrDh*c1(5ggm+f~ic-FN{Z$ciJDB02CNToEmf06L<1%x(Uvm%!GI zJJ>?GCCVY=5{Gb_#@Z)C)iy|Fkf;cF%w)O794{4FMNmbA+694^e_6jgbmR7%#u>Ng zlB=o%U%;Y34m-K5e%IXK6X)AmFQr3Eq1=$Al*N{XUtfHC`TF9UtIJm}1HK1BEK(cu z8(Fuinx(+7g*gEpI8v6~znxQZxej0{a^wnr3YHN~v&ez}E7OQ8FAm?O)@SzO>oCEw=d<4KpOa}l@O^;5Q z9v*T`BMWC#FxiOb82*C~VwMe?uHD~m6zDJ+pMha$M!#vhe_?|VTpyN|Q~+UFniF3= z;pC$!Ex598g+NNo#F0#l!M|zYN+|@;rXq@%Y6-{a#tgB=vY&+2XAW(vU?7N+X>sx? zY?8g@8bpanUc>i1;xtQ-WG+LR<)5FqN}()(5Gd47k6&YD=S1dd)urT}Upv)mpwAM@ zSQdHu%=)4(fBV61cTV zA8xL|JN0CCI(H~U7d$mdn=7?aBs6iQrXK?Xs+J|Wjo8GY#)WtI zYzESmkIc{WOozb=Yv<3mv#z?`4BNIJpbxM#3^EAJlPK*P}EvYqLa0dB0pjDA)VCeo#9kdPyLqC<1g^FVIUg z2hT$S!s{|EHHTC9>t%PR_QoayFnq7~OQ}Un+pP|gAB=UK%pbxgz!x$*ND{e{y@zWR zV#9b`e`VYvihzAbWXTWy$#b`wW=O=#G!H;_hDlSmx7D(&Nn>|nI=54(SQeqTrMFEq zZgV~J=?2r!&%ClHV9&CvZje51S`7ee3J1rz_UKM(O4PhQF(s7PPNS-*^cxA-xSw-2 zE3wER|Eg`Gl+%35Z3tiwM^!V)AVrV1?Xp@$f0Itt+(J~K!31{UajNows%ZmwN?>Qn_vi ze?<|`ypf@&t($vAmx5s#u~4|$$S{d=prFFK@1Spi(qH7G_|SsJ5c3j>@~zZBH$}~K zU#b|wU#v)`8pg;>e59s`MH)7?V*U8)&E+q2zJLY;;>~COu$E~QVl{5UF#u0+nBkJV z?W+&a>aL{b>m0Y32pPx$s}r@{%Hbele>SW}wFUl2)5NlP3+6Q~*8gRD+f=`W-peA) z*vG+_3peU05lxos4Bj2rfs|ob4VZP1mimZAGsDm<5(7<`+_;7`Y2@=7odP(Eh4K zHdd_>Nm-)Z;W{W0(DN zJu9_SgTYjkfyOV!eobd^%nO`8T7c;$4#JtLaAr6daJ~OMbb>%;v;?qVY z7vQ0|IGW*;#Ev5;`OX8cBv{vq_^~8SVpj+Zz}9UICaR(&#Oz*kREa5we=#Yb8!YUx zu$|MndXEeY?W?jP#sK);plRJzk6-qtnrPDva5R?=t>H|-K^l+qEh=K$R@I*_IpgAL z>X>iXEa9pW1834rfZdt3I^)Uq1|zflo+JEwY{k0TI^%QuJ96=>Mp%;TF^FJ3%<`7OEl<-+vR zNk)BsVu?7Q3GUtGMrI+%<>jj&ypf1aF9Y0Eo1bV%y# z5$c!JCO~2~zpJ{o*~(_HGaNW%KF*njL-`TYEaTQl?0YaO2VJ47v06djA88H&I>s?E zB&RoG;HJ4#HGcz2OosaFJf2<`sK4{)eT6O!zaDth(LfvOUa_R6I;2vCS2yZq!`=RQGFS^ZO z$PPCOB7Rsw&&? z7j`D|eqYwM1%~`P_w*2p3!{g^@g5h@E=DIJodVyDv%TX+j#cQ1R_<}iAC39FFXAC; zPQ+JG>;rFzf);{%V{Crh9b>66-te4Z$Ji+xV{EpRi>QBx(b@AJ^n^WE>da=^xhF^s zw53S2hU^t_m%E)TJEa}M&Q~zz3eOQng{nHXRM5-~vRs)uF1OXPt@X{p3P^NYxzVj= zeW(rvRm#hOoe4L8DNo;|AG<;h*_Wkif;dfUQ9K&tu~P%IGl$l3LNy)ZLHm-91EEv$ zO{uni`e}ba;|YYZc*QhNT$6TFF6Ve5gPr@Yx7|EOIn2bYg?23H)}T*!t@W%jqkTA; z>WWmqE*yeN?ne%uK7uae}9A#eItb z0>3v^zd2Vu!f9N4-v=Irc3C(n3r)M(#i5tj?_rcyf((hh(S~_=q8G}r zkP6ChD0hOuQV)FSg(>c!KhDNM5i>a{kYcI>VHyq7`fn)F$%{jQ- zwkFWi@lh#bGdon%DiwKR*o^LvxU_yyB%o?Zk$Y@Oy)V6hBAl$ylI@s}rzp;WV@H&q z3aJIJni1A=JwTrK?XrT#TYV{pms5AuU@nccCIeSzlSA5zPXCy*=EV8&=t^U4%HB2q z0kted64ObeVo=M2xK6)9v7qoi@9=Iyrnlpqag$#@9tA()cr0?0f<85Wlpg!WW|0>< zM?ND8d6Zb~MdPuvJc!6R&HH~Nf}hAGpNdJ&)ySe2ducr9I+s#fAqgsyOZC4$b-A# zBo6LQemr6F$3XvUwF|yjo}9%|B7)@#BMbUvd3&NhW;(W3E8)m^c zmP8^c3yfH<@gI4_Fy!GR{P^W{$gUT`pX#>mt1XRZWfAd2jf~}>H{EVmwd)~xTeSx@ z$Zmi$j23G2iwl}%=-1zWV6oovS;~t@WWiaI$x&Em-yPa@U=~#4%?UXR&KQ>?&-F~) z96pZnT<@7hv42S9zE@_xm6~rlU6DswnlZh@W(c~r4!YZ5+|6ssz_AUx8TN;waQJRQyzWA;i#$Z(q^$=9E-3oz~3uBvYGmO)nF%jiO>LygKYTBSO zC;1(HK-)>l))|XLYNi|3&Ide7)6|@>9#(y`ADgZXc7N4Va8pY^CZdS)k{ionIiAbq zhI(K1)mX2C+rHaLtMoOFq%EX365Ko~yY<1Y>+7JEv+`6#Oyu?iJfkVE!iR0s*28H) zAF4fQOLGy$aan{9wVbh{dF0>HQhgLO?c)38pHI%r)Ox=Pp!;pL03Sf$zmmSIf}!3u zt8Ux1k;HNq6~TYQ>=K@ufN9KYfMju?oI=`3>1=bU_AzVdk*<;L)F6f>qg zI0Us09wu~9DJlxHRwuELwz_uTa&QXXOv9d`w2Wdi%NG5c-hfEfe2&N{h5N8eO8+d8O* zp}CXC86;3{7L3lx%ka=_M;Kvc=xE$jV^H17Wm(B_O713=kPC0?)hO{QjV8l}Bce0f zg-D{(#x{Qpr(Kik9Ttup+I!D4#*)_P>n>=!5z(=$usi&(zCDw3@jQ=;Vgl7GwWI2G ztounE5m#;Nu^ytunTX?XDdTNC^ldPV)p!_!W{@A$3(!N%(ky&zM)O;DYn*NoTEYlF z72lDff~1HN;#e6p`13zzsL!KhHX&>|%R-ZRKl^{DwVO}YS(IjF`5OJPBrc6B)7VDO z(7;Gfvmi?0#**_-1d)p&Y4tf5z^)^84-p@&w_* z@w=v##QM;T8_jho&Jc6WbzN_`4u7^(mqeTnEUDRWT(I0UGE3&j$E>ug=4#{>8SRI* zlk-C3Y+UbvF<-#{kAueo8)s&06?94 zdKbjVT^W(N#sud&0{VLjpiV*+VS2p%>yR7*wD22+1Z z8sI!C3|#BAp&FIZiVS+y$8+ux6+=)!Dnj4)JcCEjgTnKMBT7Y#VNe=^^_+fz@ z7soseJM8hMud5$UC#$OkVuXhQ#?yb!j~Zb`Z>XuwN=BVd$nY-zlZ>3pC`RG&x{R`@ z(D@Vc@L|&+QSPPY>!A@kY`fQ7K8de|Aa#-_p_V2&k2183;@jny^Y#WU&?Al<;5J2r7Rp7Bl|q zHv$H+Y7@Q}&r~V5s?=q;`^qCT<|WkaK_;fYuXQexUB7^e}m&-5TUMw%)1Q*}RWC)9wR;HeR z_01w9sHaJIex`tsWChqXb;f^(5H`?LOHt4zHk(ah3Bt>e>uicw^8PBkRHf0qEnTYZ z!IqR-x0ND%-1o{q#0+iMp8dVSs>B<&gw&6RM$KV-UzVPZc*XZ5p2lvL2{`J9!jd@DZ1CHcA^m^T11l@0c(&_J zBkQ+QCkb0(827op14q8jQjZ3%u3p$^Nv{4CB;fX%k@L-7zyE%^*)t?jpA87Es*UhL z`MYuo2vdOd7$R(6w=(d$)@djg#Sjzxr^GM;(H8ZXkp56@)od)zqb#x7+5qew86J)ofG$Mi+m6b17rCvGI7OH5>No8Ux5+O0t| zrmc3hfj|LK>I!RKDt>v~SFI#5vMSZT&^WhUza!HsJU%R-eoMhPDU1PD9UtntwHm`G z4!}RNeGnCl?o1N0HeVbOpcyox;d>ogNH)Bjnr52MKN~%G#@_tRc0H{x0W7EZJXBB0 z%Y?R|45RIG8jyb&f*h%PY1MmMuHB86v%(W94-viS(zG#{rmP=Yr~UE zy6jdAk)cpXrin5twLzYbJXB4OJD6b&8pf$ zIUEM5_`H8s%C^HVwdnyu3dnYSq1~^unKa$_>|iOm%vKYhfBvirNaI%y2a~6^|MQ#q z#~d!V>?Kq;#ycpn7x_}@uVL(cCEMI>Y{T1pLP838a%e#I1QMc4m4FIrcX}zjQ2H7K z(CUu&xZ3<2#hg$(PNtvK#osjh2v;|?6c3BP}W;_Se$y&z?NpYy0 z@oax9$VZJ-+di*mV1`2cQn6hiDrPYw)Bz`bFBX}3qD#d_g&KojSZd_Nt)C7{p2V-Y zfs4d~uA?h1iR_vDhM+YH^inKFSOv=f16GaOQ;@$2*Eq86t zSmh~HFWfT0oo~;?*%PA^+ndo5NQaR3N85k>rn-^o*EQ*66@`Sy3f-00MI?tZ%9t1M zTxba(CHuYYy2>(;in*Y<^=U>C!Vp}C&oUe`Zfb5bv~#&qw8x!$6<#m81<#T3%M=Im zVv191(m0~42PxK+QB8}{r7!O8?KG7hS+;})U7EUH_}D2j*GMFJT@k5hdBI#QtK)wR z^%u7%IB#WrO1DW*y0V4jEtA<@U)5Vq*0YIU5x7*6w@f_9!it5yKmLuT zApYtx!{|GgMke2rG-$>^-DiL!5|kan1s6uD;QDph`s?=}FaIJtA>reQ`Wb)hmC^=v zI#bYkTCv_8wpFjiI>~p}z9EY!oa#^YW_grx{Rm*5@*$nBLnof(ZeHw(=fr>2MkY>r z;=xJq^fihsA*r?^BFI&0(VLOmu-8x>D0gMLfM}ynRp#0)UTy$HaQV= zYV6WTo^w;v7{d4aeyDszWXSB@m5mYoP=&&uu4?IRfYpsdKPeV%pMkF|`r8Oeu+!iUPgYUw`wff{;UJEcFKFBP(K0>BQ zrEzUq%k(9;a~djX)$4EiU{_ZyK6TBr8)F+*q~^!EkETLYC1rw-l=kNKb9EbP99~u|O}9LY>4zy4l2;D4;>& z6k>3->H0|&*cARuxtCnNr&A06-;`ab@snF!cvMj3POJad?2dr8JxzMlH7!fq-6+!R zIn3jXd6LC7K5T#FHdI_{lX_nAtN_TC(g{`HBl_>HToQ%5+LyjJ<*iBDx(%MtdoOcr z|BJ=Z8&$ zqfy;3OkHfT=XqAv0i08Q$=!s^;;`P<^3j)iiE`wu)MI~ih3`v;y;7&u$13t8r#efJ z;1l6VV4);%DCK?Asy;P{yO7+Tfb-l{O}w%T<1m@K%j}TVn^tQO&D2M%Vj^3kLE(+; zQn(ug#E0CEfg6p;se52}Db@ol{-WR`HJxc0E%W0XXUzQ?dLo=}p2%_71VUUkWru@m z<}y%~<2Zkw+FJ=r=wv1R+^g5E_E=2SJT*3*nkUfPx=TOMq&p>3p@#RhDdfr{k2Ke+ zd;@O6*6(T23*OunIr^QTNeIsYbe5!0pqYCa@Dnjq9s^O9QDI^qC+qeXu+xB)rLO%n zqFGE{|9OD^^k!x#hNgENO0CYV<}aemt03EX!_9yHu{nlpoq7}U>ZF-)1o5+_p~G`` z2RU0>n6rlqMuf@sIg?y}$ay+bnwDU8T|cs~@h2dKj6%*8Av- zyQ@{2FcICY;msVM+-8c_XtY_D{^?_ZUg_x5(2M0 zU&Y`3r?&D*74NHR`khto) zf4Vtbzq|V~oRP^SB}HKdvIbcft_TOCQxdIUW?X$DC`Aw4$8W3t)E>I1f2yJ%uc?4x zG7^`&Qx!E^HOq|Ixk!k}KHhAZhh_^sdl+K|PW9#|ci!7PA&i=zKh<5dFJGd^Dmr!5 zChD80F^(lFW;su|dH2W4jZq{tFLL{!e{JhcrIveW+I_i;j%~HBHq~LRR*b_@2J6eM zv*P9m8PqpzmrTMe-AljuRU$mI9VkgSEXPfJ*9Hqs{X%tyLm2Drf@u`eK>U|63_>Si zn-uPK2+{VMq>w>fl`Q4YiV&FFui+EiLdKcTNtpS+{q4eHNs$nl(obJ5T?)hs1ZEZ- zhLbT;&7-ewyHB@+* zAdI^I7_81D$qWD{Bohh*9e_uh22j6`D(fK?-hT{oG8NV@KbAp6Nf6Q9sqCvID5YQ( z|2+GN6ufX~y0wLwCq+TCONCkFNhUv2N)7DjqVBZS^nlCwmvvnodaS>jYNc&qlqDJX z$}$YiF8Zq7*9Tp0Tg5aK$*{{%KZlWOz>Rft*wj6k0wuY+CNNW)vG@a2XJw$TC1y*G zs(-M}w`~)wIrVFfTa!ouFfbq7L%CP6rOCM5^002)-@DPnoFs|#@6?A;M&q_~yXAgl z#*iO8>&N@k7D5?j~by}NxkXEG#gkSLpGWEGIy)URk)cl~Hh zJjpzi+>Z9BK#X*2+BAo1OhyP21D@-{`_cTcxWW?sX*fs%=o4nP&NfmA$Tk3+YI764SE`|hp`+3nRQJ`s(|JfF zggmDfXgJlP<4)~Wj0gjaW4Rgz`IrGfv2p$l5>L4F#Qj&{hEw>%Bs?nuHh(XL z@?Tt)>!+yNReRi>YJ0(l%KZ8e;qJSMJfgZ-3xIRZmt!pwmeT<3EeLAPjSQVwf5smc zX!m`*KJ`G^m4$u1hjOtJ5=JH>exq<;T;Gc<;U1N36us3zg9~N{$9;oMiLC~1+$&kxrI;29)^SARF?E5Ef& z1?l>-KXquYDjzrrD0`2<_>tZZAL`z|ZHmpVgw0^%p_V<)X0YgDP^jB+DmqE@Mrka_ zKw)vo839F5SxL-N5o55RS&I~^=(SToHo-Hy`1@F6o~pW{&`39B!6cw!=Sq(%$uX4E z)2{Cj5XwVT?T`J7LWmn6MoHE&U4%q_%Akg)#D@6QSKphZ=0dMEPq>@tRnVLR z62zsA!<%pZY8_Y@|D}G=WUSN}1m1pnHxpzj0ZjQv2N~*5K`*s;W;b6Uh$|cdR)ZeW zwdF91IpZJ{>4lKnNVnCo!hh^uq7x__-CSl+KRGXgkQ8RZu_z?~xBTNYX@|M=Q`LVq z%EuDafF(vaz7F|o%e$8R2enzSOTy9mF97h+k-77KU@*W3%N;y;gG(qlhZUNwDRU0V zn!27c3dEZ+>j9lE&fpNR9!iSohIKqObzh$^V6J|toLuS1!2&a&kuGu+I4^oONLg$S z0SEl}lugA)czg=zlDJ8xxWqs<6qkPz2h^W2UuUajFxb-cjs5bV)unoO?5P*;LdezB zndCj=91w-98#4W|dMbyp0jsIQxF4(KY478%yr#fKiny!wKR`ijYsHK3lU$wMz&C}o zzU_w|Dv&#;;(~{88M*h6N?D@W3j@JaFdn8t=H+Y9=1};jdmWCf5^Ut8^b&tHt=$Qa z=llc`P%NiE4D3SZt+&*ExEWw9?)-g0v)x3X9k$m6?C+Fks>5otQP}gDO52dN2ijI}qiv^6Di9=|r~do;Hnd0wjhV;Ht2a`}%Mbc;yRL+|&M1(?p@?#V@iXbBLe38BPNPFLQ3+ z_Q5{lf)rw~k;7cWoj>k}hOHavk>Wz@M!2Y=tC)3F*u+si4O^w5%G01TMpMnN#w`ym zajnD8_B;rK%J0_t={9p4 z+kmu>ERWsP-EmjG7;2-7FXFREMc^x9w&V_5_H9*eqAd(F%*Fa}JoUH{0LlTAP4g~N zpR56mVZW$~W|Iwm*aA`?vAeHT4}gO$d0>`4K0p(`0<|QVs#xPR#&*?5mJr=2fuBwSEvj`D8HX8iX3` zwJ4IM2Y`}^2aHZ3-GtkV5x4K|VSm|XIF}k3v5TwQWvqbo$$St~DZ&K6EDwUOV6#xl zD!17u%ok;Su&aLo{*)5mPP1da{^n1(5X=m{@hn?`zmK~LJ7FrjMFyU=rQ($#kwWh) zEv;TqV(vjhtf2wVP4Xz zX*ov`WWt;kvjU7?J}9sXY}=c2b0&0R_zcg8KkU%#3^j%l*&5n{N|Z}Q)s15w+iQ~J z!D0?y|9gL2Y_i0QH^;-rs}Ld)oL`p;#ELkn`|( zCSx|DoyD)>v=ndYBFRcY-|Vq$#o2d)yXfX#7d2ARc2;xG+w5!?iw zIi!osr6Kmb+FExy_GJ&?3OE3a0mY4A0{Hh=Cw6;ur^l|Z`%|xnZ<}@1Y3_%4tsEG>qNbC_ULAiskOdc#gH(6LV}NVG0%q>p zjfyD~Y?~g=vo{-Gl@{_sNTHRB%+eOW>Hy!8d zfa@|!#Q=X=7agm1+q8RBmaw+w)I*w>_@(;ZKk991VdH(6CM>*0zOg5GXr#S4&M3YW z9Jz66c3rtUK9!HkmFp*n)f$@+s-c7jv^4$)>e|xVxorU3tjY=$^rS5;Ge{J1<(()+snG0PRT~?Dx|y5MF;@v;Mlh9ohvl1m?AFRyQ;a#DFU1 zA~+(GnV!0DT67HF{8yJ1Ft@57PI%Qxd9Bht9o&+je65C19#kdPY*ziU;s6ZDRqBY| z_uWieF$>R*Z^w64Ij|pJ*rmB{3e^qt_S)1m2_E+6M)8EdV_(*vRZQI^fGP?*1(Q10 zwE}-0H}#?Ti|j%uF@m^3dZfT0nGPVTaVJFmwAK(j4LWn;0Dw?P;%zgMz3jSXU8_S- zJ92agFsrwnQxg$)rw#;$gVxz-$RzV8-nZj$Ky|{(9v-d^12Q9?WWxO^{?z#}o#UUz z=c*f~pa%DU1&L+Whe{nNLg940C^XQ0@VS5I?&9f|TCZ;E-I(K)0af6_H%STTH$BwL zO%(7LRDPluPd8CwBn#dw}P7~@?*!0K^O+pg+&`8p2tYZi0UYhiuhuvJ@i1-@*7lSxO+efe%Q(0Fc~c!9P^o z)o#+c&jl045Gy7DZy#{*La z#j;E23Jl5&Fkw)cq@zhdqxJS$dP?~WY~0M?K2-mrkpFBv4kGuDz>pcfb;eSa3;$oD{%%RT;xID`I zuv*O}s1S);&>VDVo6fBma>HaDvQbtnE?E}&r8T?jEf7w;Oai3Bu7na(%pGSP1h{vF z9#JSb4X8DD;37*nc#g9q{AH*=|MmOmi?Vx)V9@IofLB(;G^J_uCI0q#`x4PY4a%MR zlsMe$yQ{y!pZ@^GAfm;WF~bBClU-v83NknfWo~3|VrmMP!RZ4NlY?U_e;Y>{M#C*(2E=aBvxwtt=f4+Hgdhs*N0^_)(sVoZ^aj}5^$ti~+yOZSY-`^$t-6{F5 zZtK2U;dovaR7f+D=|NAso13a#4CH0iZp|RS0l{H(YDOPj&@H3ClsTtqMrJb8KMk8| zvmHoxO*YG#tg2x{=4L%o+m*OpiNlo2t#n)al}aj#vQYMi`F2w;f6hqPlV9q-Bh58w zJD9LtG@GVt$)+CQce3fXHN_dee8ZVF;EbmQ%@vvPj23#X-LhHLc9gKAL<-9>ZdY41 z!)C_K5a$TN;CM{f5noSM(VsJCmqj<39?raNW&#M*Lba=|?#IP}zr}sEGrK(89c;YkTOjXcQ`rmHn^?GBeN>Qnt z(Ey%hsbR5MRvT?;q!Zj+>oCDICbE*MEVI*ns3K6v2oyj>UrmFg04J6FJ}^j{<%I(> zEImOZSRpMRe}E&SnL#&lCAl9^(+#Fzk$X7;_7{TKLkC#6ogqp_yPZjJH%q05Wqo^W z#~zIycl30YB4r@T5SS@tESD2tB2W;PF;XDZ8GAHRzzkEUVfIuHVwi`mE3@^v%cG4k zwb?XR+5VeR^V%m-jp=e-%|BK?kTo78nbQ5iMUPXWc2# zY|{UtccmAF5h5!~H^S%LwkEq%&dd=jgzD%ZS%FwB9>blBy<{zrtwOH81d+1tPa%F7 zPkGYK>tUz|>w13@?rrvDiff>J>CZUFxfC#6DRMK{WF`fRJA^>m!AW;I8Y?m^>($B! z(7LbZfAs?Fe|2|=v{FfP$NhF$Kv!8v1l!7WQrH`zk?muaVsYsFFW~AN>thv)a zgL88G6|81|?fL~J+6XXhnP+19IqpTDoa}K-n$v=3k8&H3%3V7%Tv~uVvmzqX+~(M2 z-?b*QLjD2+Zm+Zr&ybNC6AjLs%L*)6*Qn$Af19SQaEV>BSst*hWQua;cJsG!gmO+5 zlckH$G*|Y}?WXTmq+5d+-gLdT52O{P;fl;B9bC_LA?6_5OV018aRGpZiS4Cu86 ze{z8VFW;f$-27O_r70>1A08%T=q7o0u@&sS5wWO396$OA>}Lmu#GH+E?c zBXYw|fybznK^MMyGBQ<=O)sBM5HO;@_fttmi)d0u!=nilhh**x0k=JQ|MvP|cQ|v# zTo_#@i>5!7c~Z}@OqtS+EP?R-TJMb)f65eu77xZ`G>3H%6cBv^_uk(8My5rm2TJTRfBaP z!go<$pO(PoOvt3#t~S~XfXqE%pkNO?cXK^`{llA6VLnV=Ki$s&EVzUoI~B-Xe^!*g z8l5u*=Snjk*fKK=b+ZLofJeNl{V9PYC-5zEDt$se0$&hbyo_{YHO+{*7OQr^(A=z7 zo`=U%K|LSRfATIF>Y7wnW2Gmt9pKIN=@|XIJN=q;;In?$4D}glw770sV0%cUR;;2+ zKli4>@oXw`MvGA2?z-5}+#eJIe^eE=s#!RxH9i~4O3+3H%aeaDEt5`?;Yh^@y?}TG zu{u0jh2Y{7a$et8cSI+1j!TCcOe#}wRDA;!UlVQI384ZTgYfks@C11Te4Ay-%k{9q2JSzrr>wXXOL6dMTH>QZq{2|$I(S7 zg+MdjpCUjQC>6yR9LIyuNL?7M~z>6npApro)KQ$E)_ZqW1RJ#@Vyh0iq=6$mU zS>o#aNrKOzczjGJ!XNp}XJ&ZF+tURAm&4F}Xt7t;9doo`;Ay8Ve{1T!WbX}oB1{V< zV}ZzRI*Z)VwALFF#)I(pg6_CC1ou^0nmf%7Uilqn7pODUZ!^0Q#*lW(G8ibG)L1b9h^XBuYc$!IGQeG6n zT4}*Yt-3KqmRefKKpx4P=g-dHJb!v|{`%F}2vCknsqW)IMVVa;I1nwP*8y<`-0ADD z)aIA5`v7G?^pLax2dm~6lgTP0eWCD7K5TF5b~7OCd;w|c8%_%gM1>P~e<{o~6Y$V| zY_{#7q2?mSl;GGJfuhf5FJ4Hfcdf$(hzpZuZr4>i;2e~^#w?7-%dv0k6B1Xx1BSuS z4Yf^V2+B!h6i_B)kE#=WeP@GqCew`aOt>>c<(rwZ)a79;5;x6et50mw>eS#BU=Wp3 zy(yW=6;HMb3EEr8MD&)79!r2qo(*NKq9&%g}V}-q1?{SpLvr(Y#CRkVpuOc zN@na!maz#+C_F>ua?Avm&IVR;eL5AkSyipJwL9Y{11C726V6Vn9Ie-Ysr`k~Z)K>= z+Ulnt&Y$@}j5SdKWaU%Lu4 z$4wrgS7#3VP3xdOW$7)r3t*bGFb3j!!NYbQdI>VkqiYFkQw%3FI%635b%s9P3DB=s<2d#67=9%`{kWqQusQA;`2V@vGBw$sT;CX1aEr0=Z zH2A>v74k@&L#g0%pSM_Q<{A;kxS4h_;tb(iRGKICJpf+IVxLNP{qZnq8r?ym@|!pr zV9iwKyK*BJN3zB!AVZz(Pr=WV>;Ct}@gBM^MUSQlLiV2>osz%bk!L z?HO=ifK0HiDWxK36gg$Ne~40eSZ&ocJ_vSN$~DA zdhCHOA^^%?k;745f?S47`cRasjFmph4_;s5F8Cy*UFE6~f#GcY#LE=@bblze?G=El zpG!cC5}{+jlo1&bJ6!eE+~*TKjPz1&D7j)p9Qi|6Pm8WLSA=-8Pz40C2!Xy*`YSG$*wJ$-Nt>^YK33oGtw_kGTe~2L}rKGf^HZnL6RKvJ;)HR zYVLXV1?yQ|9NjwFY%a>lW3y^csA5~?o)>8@twMQMOxj_|foI!LNJkv=K#sFFEKXs& zXJS!fkiJX8sX|#4PRZM8-0)HT`R$LdbkMvVM-9|TBHTW>wmV2S ze>#s2%Wi$7H#}2NW<+`EPS_*`HL6i8=dt^ zf64=*e>{JoSp-VO5cU`6uL$Dk$*X4*9OWQvO8@ry;0@L#rUJ~yADXts z>m%L8nxf`vN()_(P67ZDGH584Uh=M|J1l zd;zr^8EU1T*5F)%23O2Jn==!9_v%OTO*JeD#KGx|gPJH4!2~1Uy?h6fTVvXGevHgdb|s1?DqYZ!Ws<_WrI zk;Rmg1rsz=7k+$a4#!cZ#0eU)*y{U#dg;FtW$uH!SKs0%Ae$S%$21DVCMGxC7oU`NdCl{8JQ4|-p>Fc$eBR-Jhd z-XPsxmQ}GOJ6Y7A4r$h;lx<&BH7Pd*I$X9LX1>h2 zDHVBQts-SnlLtBb$MUaJ>P zs-I3d)D@JCOVkhrCMS8vB<12q8o&8B*7itZ%8{k&CC+8w$cQx!Gm38Q&53Frq%X|S$Z zld30Gr;BipsRL1}`c7`w3Q%+;{(8e`6s!DRe)T^1X(Ma(V5zZ@Y`|Ad`$+{=XPtkI zELpn>E6QqH^_A>M(Mpqls#xxWPD&FL=c5deN7$&oynDNxfm`z&0{QxlItvh+$0{Na zzbN9yoqxX_;vi_4$GH{qw;yI{47rd6&tAO+cTdtF&MBmfk@6t7jWIuWsf|8RWfmOo zXY(_u2JA$473c`cRsr3~HI})TbD{ZN2R&;0 z$t9c?%mLpsckMTxKo6y91X%7w?*`GFrbDmMiA7BQoI!&$qhc`PDjN7{GsOZ9@kn#8 zXDv4p(gstf-?UO|fGM<-;HbLlcHK8;Lc#?diwLiRaS;`MLw;8KZH;Ao=$1ma|E69T zpFb4k&)v4@Hc&W|IA`GdEV0Vo-;Z7$Y*GQWp?)9S&#D>EA+vH3biHze)&!s~bka^; z3%<$?RT?}CXP_Ws!Cl>*cXWTEEi1=7!E-ge8)?rN=x1N+_g>-y9^2oW)`$0i@VKPK zz$?50{6V5eKF;9tJWBwSwg+kY3aO=T90?1a`k^z!XGL#&V+5}`C=J%l*5CvtyNiThK}W`er&8{FL`Qh}_qE18#vxOMA(MbpT10T%R<(cp10{EBdZEp;grY7l%T*{XW2$!oj&| zepGfssH?3UV&-5q&pr3^kHkBKicw3j-rc<1D;KRU`~I%R>t-sy|9OF=$T4t%?EY2{DOravI_KIA|6_JIM!3tkFrOTp=!hf?RX8 zVPXI(s}Q>ogi(Aw1f#z3D?)&Xl@1|*?(Yjc3BiCz8q%CEIMTd8KFxl2e!>WKjSa{( zEn|Rc=ds_8i`ajLcs{w4pxDr&_rE7&<}To0@PnvNJw zkCR}F;Q2sh0ViaQGu>)FuvOCw6I=vXTvh}t(Js48vFJ~uiNTGsfo0d4&R3WflhzAF zF?5iLvC$a2hkSY>yJjV=H?pw;F_7wEGMNvvbP8l9%}#$>eK@rGFdorIFSamTcvlN- z31-y+{9CacZmEo(B`3p+NzqZ>pH!+qvN5Stn2WELDiW!I0-OdHC&V+sRf9jM&IEE! zub8Gm=fL(^em>)2RuLeD;W@Wz z8X5wOTB3h}qIAn&jyiiQQFMo`{dAjBL$guE0{lm-XJy)6rdbiRuOZ(72t#gIkw(j= zcGOD~DV_w!F(7_(QfR>EBlg)a1F^`H{{?0QjibcH@yltbB4Fz5SG}qc3I;rM!WD#S zd}fOtGkI`EFYe$EXp!bV8hFI?jX3s7A)wx(5-5KokGu#ml?#5-sKz=>d^)Xk&@*6e z%;S12I=S6ppmmGH$O79^?PuC3!B5oNb+Cx(Ou1V-$ek81vUFR##|nTFbll5!-LyMU z^H6VP2js6lDcUHaJj~By8I)P(QL<1gp$V{3f7+fAHPqw-FRETXGHj8A;iRqxSJ)2h z=>~s1mbzJHqFOdeQ$xH@Xe$KT@u^FEF<4Q9&pDk8*sj#wp01nZT^_@P={5;pO+hcY z40u5GhRwyF#utG%XRd*a49eBM!?BS6whGszaEgQoRVSg-TPOXN5W+3Za}Cd6r%jR{ zyn1062K&LAXW!p0Z{JMzb}%Etoap+FS|xuWQO5o25y`pXU8*-PBFKEkBQFj=c@PkJ zVM*(fu1~?I3-xi_%lEAR@R_?b& zspnMXpMUAjh>^u5C3yjJBbZmTx@K{lV0PJ!()2p=xq}z8hUw&ogRD#BQPrB5weDOk z&sMSoez~cJzJzRHN_kT6^KOvS{0?c$7%w4sCr^Aw1+3b*%K_Nsb>0ppVrfHQwDxr1gio_HM)Sk@z-$ZEg|0UmIoFSs!h0y+8M z#>2#ond*D7Q~$(~fHycy7zvCfW($OVdRJH2N&w*R-oF0&?)C*-60x|SopG@mJ8^f; z-KIGdrrn%zeV&Y5uh!$xUQ;*tsYpypLDRTPrYxce_yFhQ^`Xnkb#rLR#)p4sw{Cdy zyzZg%d6zT%`wq|J@1{H}^fWx^Mx;kDU<#VpMO9`cZUhkyJ8!#B^>rP$_BkfGMM%bOqJ-+utG)UN?Dlg)t~0yHy| z>w!am-E!N=vA)++Ol@sdz!MRfKLCRZS4F$=$ttyL``Ah)Rdy~Q5|VI25nOI=Ynzk&;7f4y!g|{irtSFoZVmidLitW%>A=^ zWIx&{lwcWNuv%%*@ZE~sTNp2tdv44DQw(F7o(rgd(P!K>0c)Fmc&u-|q z!Ea?=YJ6a+d6gF>TdLANafDrEIuX36{o!`gE`L4r`*zL7{m^ai*=}f8?Hc}n zzWvG?w(d8ZW?*A?zhz%CT<%XF1^4zbRc>l0&-e7Dx1E>&JNJ%spX;0(&b<<}=k!gf zauwD54lMcHZ8mJx9LARIA6hTyzGt`a!O(2SO@j(Ft5rX&-Fi!@idwiSJoAF8+1%x2g6buesOr$Egy6=Tc~| zL_f?eCvp{B{Neql>wl6T>v|S~ii1PF-?Gbna43XGk*9w%dFFXpvqlf z8$oJW1LUaW-33PJQk1zNBTVAFGNntG?BmrhZ*Sgy{4@&^3HDXNz1h_)%)r1^tzB$> z&UVeP5Jk>KQD@C#yKe{QO~0Nlz|P)ZAg{E+03AT$zmkDI&6a^?-To^m+w8$!VAzp8 z;eL?SMc71HkK#+s=FpBgySC0!CRZXRf1Y1>1)m2qRp$RUwE$dy> z?Ale=KvF(5L$d;NjubZ%;tQ}PB%R@cVy7E1cy8NG?}XttA~d8>Q1|%|l>m20e-Z4k zZs!RE`tvG0@X3ku!7g6sCVmC-S$|sr3lK<74XIV)pDd42mrup3xhmz%^(Q2rx}GG46qAMXzLClVQG+_5f~k#m zUyugup&5_lSSkaxq6osnUXVc!zO7PQ_31r1cJQ%=I1HnsN*Er^g;=DMsy4#3K+86ew6#78jy zVYCJ0p*@0S0H<1e3D@mvgTPV2he~Fx6%S24lMeAJWZdl`vAKyRG87M+e|@)QE2{ob zQO9;JgMsx+A8co2h3r^+o(@$@I z{+a!-05_Sk64~Fce_qt!Nl~lp=K3A`@%=BqT)q3try!VJMaUAd(QWZ%k&{qWF~cz^ z01A;esRUQMl(p2A3PzL#f8kI_C&;d`g{pJMy1fnN+qT_CH#Y>+qJ$_ZTmf`4IGE1a z4F!RQ&&AP3+XE1fSRvhdu$&ZSeAc6Wx2Ep_JquolxL=X%_kO!-y)CSZpw!CfqUI?o zkJzZ|qkUZNlJ1wFIYDp5^U~;P$$o6UVwE{;(MtVx^A&;TZ1982e}c#CD;`;9_yg)A zuAdM0SEHPQ4B#lxnrVy`s`z${d5Hn-bVyel`yd_XwaK0_=4`&AWw@L~*c^J{fmj31 z;(PLpGi-=79JfeCGV z#r>S!Lj%!m)-7v+Q)Vwapv_$mT7)w1;tqJM&?=IlLbwhDf0N>A0j9Kt&nwpkh8maj zDKs8#N8q4`z5Nv4*gwEd-3niF%fy%P1xvqynm_iTXpv7W(Jg`rh>dY_*pwq|sNeJK zA+#$;$qZswrU=RW_MaaX6|{LANafYLPuK6?&1;r|^e;h(dC{6wD`;wKq7|6Rj6zjb zdC9AQ(}JFWf1b_;5L(m}I#?7dLbpF^+^Pz(*T-eI-M9CiUxsXl-D62_0DMz#g{>gM+bN-g@>o>gB6Od#&4Jo8+pru3h~XHh(70fP zus~$U?GU6nFTa_lRxB-(mbxZ(|2gXj?7sh!eaZ4XfB&+8rk%o>s~DNg!36a2z9`IF zYACH`V6RtEi?@D_sqLTv)0GI!>r@!2Tstam!{{F_ii%nWFV^mXet<;VZMyy5)q50n z*A9r`(Cku~1`l#QMnL&24SrgTuK%qds($R%vdM}b4_dLPpiQ8zx)2r-_4?; zhW^Gxf37@wcmM|W0{wQk_3acctUxA9nJba27`M}g3Vi7;d%B_0zW+t7D6l7u6@qIR zX-xX6l3sYFulkU3IvzyCF5m&HUuv~!xHvEcpGg&(5>Qx^guy>KyRxMLt1pc`z{Ii) z8oB2~g&r9e@n$pjtl90_X0W+q%_5-KtK?0Bf1&#Wy+-q+nfXfSnN$^;&P~_MDhsqZ z+9T-Y{AHBRsNYHX6=F~zjIXYh?Z56?N8~24Rhu|Fcy)pHW!De$_W?i4sQ`#2CK>Ti zYXTcZkRKwjn7s0aS|cl^B7_a)lxPCW2?LH8KM;kX_k>8Evsk;3cZ40@ouRRl2Tylx zf0%(sUE3H3p&sMQI#&UtqXP?wZp5tFsHw&@G9I3!p}_R3TaIuP6Gmhg1;? z{bbRl6IiSX1g5#eeyzs|63qtSYe+?Ce}+a!mFIY*MWVY~=Cmh4q0o<=bR>#aC61&S z<{m&4Hy%BY_sFr7b(ISxr@d69_Pe16)Y*6Kn7eWV7XBHV{L1cf^IxB{>n#nDdteuY zYzlbYo;^RbIEdILTP96I;I~+Su-imKOC6yD_b45S1SWx41Wm_73pDu2wm#@7e@}nF z(#EG>$O8e$KHhu zxap<%gRLB3PCM_LLeH3V`anVAz>ly3sD!^H`tIc6;Cqou$jnWCke@{j|ONGIxbtJ4O(L$8^6k3dj)dTb8AQFHQK(ze5 zkPjp<5HUN3ZdS-GPDarQd=emkrH^(ygHHz2+5{Hvv^t4TJU3+(>97l)KfYmP`lS|@ zkVMKT3uk@^q)q2y%Ezte`f*xL7+-OSsR`#4Zy7fN*WjPB9~EJXE$M>1x`*A3#zs@ zT4|yN39{=CXv3J4rv|*DD1mBw|6bw7Gp-2TXB`;A>9z(X2;FfqKv6|r$8K`!t-7dB zxN9x=K$>;UmgX8URU5X#t=)TV-I6nMH!(!3;7zd_+Jf3CKE=vmUx6R3j< zGsNda2Ax+b&Jyg1hGzG+@Wj|8huzu{%zd||in+H8<9=uxWE%jK+xYAssF->Qq=B;S zS?>6l3ZR1kS@Y689v-QHrt%kni}85(C7F~UDGO(U*&Uty0u_eJ9qWf*FSg*2m61}v zIO?Y9kZjtAuM;XPe{-Y5k(2AjGaFFQfK!2X5V2l&2=&m){d>AG0B;rMLG9Nw&HsN~ zW&oJilK|N@-7s3JXDLk&-Qs>a1;jo~2<_{ybW%RK!%yzi7m9oJQ30F1q>^o3L+_OT zBYkV4KA|&4=A^jLd~i9z*rkFNPZ*ILa-D`2PSpxjUArp9e=Ftl>T+J0AhXLj8b1yF z>D=35e;{Vi_paRu`#joRfz)M8X^Lid%2VZG#57H4p(g&yDXl-HG z=a~wpMCmIWdT3=~{ph^902#TeUkx+dt(+a&0- zZqTn1Vd%l61C?AnE{|s>XBdOTnN45}Npk{RqlzzYoFSkJhK^4QKVcj_1l7jp;pnbG zfw#Nefv)I4b?Jt7wcmVo=jnEZm7T7d`ZSP+Ll?x)S#2_Dt$uQau%>y>v`h^9Bw#rh zMMfnIe<^{dHt3@E&MTwq^n7RVc3uN<0MbfLDjtd_CnS3+K8j}iw!!jHA=f-gEu%69u(C)_87dJPP(8mo8&`-NGTo33$CQIs0#$;ZTl35q5NH9;3`LZMuAVXCFPB+2DqJE<>%tMnQ&qQ?Y5Z zj|d66{EI7YKMU{$5&Fac`x8-k(5=~WYw`ZSs)sr$UJw>SWcn63b5LGGES|f-59ne^iYQcG7g^ zo7LbvguFUV|IW0PUbD>8IItg1T5etCFI6rhYbwat==mo%F5v3KxL~_a6Ws_N zdEQYAfQRV;O^M)OVG)HmL2yhS1O5!ZaUv1F$=OeI_g8{uVbcFRb5CqgP;fss;a~eCTJJ%Z53TL_A z_9t3nS*y6PKM8uJMTTZNRHN6g44PQlPqnqEwTh=FIeU-v{J9%je>+{T@O(4u)XlqB z$Sp1X$z>Gei~v!$WcDun?7j9TI12)2+^V$;B?}EK+y}8h*WXRJ(fp>;ly34W5V^=* zWXbV9XlSTrMI`o3$JE|-lt9S?yroP`b8XMLCx@LLZmlWvsZ(QZlIiH^L!Sao1OaT) z-01Pc!rt{RO>%o=e|Dpj<9+UUo%zJiI?8Zu24aGj;mq6Zu_LlpKw}n%K<--JbjU7} z@y;vv^wTrzb$8z(X-RrV`)dfuwvGFiahkE=>@8sJ2awOxMZ9M-i5kk^D894I^v3$# z&_B{%SXTW&-?0*di5upBo=XsUg#BcsEW>@m9{kThGI#1}WlJQ@_vx;I_c{L1DGmsp z0y~`!rv82Av<-En&S*`w-(8*s_BgqZPlZo&{NWB;>LM?bj_I%O{?2}A#s>yCyjTh? zsydTga`rd;{oL@C$=ZgJ4!;|!alN-U7ykqQ{Xg#`ZV8ill^g;yF_V{-Q-1*l7{m{; zWXsOFWJ$5;Bvn!>g(a~|NFYD~q}JO<88YkdxePo^0YLVt1pU`!9bYWwO? zwM|h6`=Tp$<)Q5QU{~A+O?wEg%b@7{>b5C2!J!TAs>9a&VOKVXpg$Cc6922GE#gQq zl^Oe1`k2dvrz}a}_*{4g?`L-{x-x+E_H9>mRec|H<-RV~u=U-xY=R=_w`E-iH^*j; z?*>&Ll*UtBhbD(0B~xbqpUZ)NgvyouVSPNnl5fG!J`OqhHxVpLBViu<_NNzLudZIc zc@L68!n&&@+`!t1hb7ecZq%2jyxcEJ|^UVVSDjPs185UM2{UJ(LW5|g@@C;>H- z5wwnO>lb-&eBZMSpa?pFNdxy4t>y%v67`Mi=>lbm=ytYlXsXY0n3x2 zm>qvzoLWW@LId;};it!Zhm~i6+FxSocLda%uHAw4B{6`ABbHls#3d7LB7q)PD;L}( z3+~dJG)BvjTY$1Q?eV%Ubr#vx>~X=%+QbjX_E3TmWwGAQXA;GeCozj{LgU-Q=Lek+ z@~Xsl4rOqMFXS2| z%K@`>b)ZnevB5=$Z39j+9)e;PNo5Z#mG=s+m17K+`EO&p} z_vx6ig!+{GAm&_WXuDn?0sN!52R5?cFl}I*u!K86<=g;j6hqC8cZ(eAV-_wG>c0j4?ExfB(LqV|gm_@rHImh3*_mFQGvUlyDYMh+EWqna3@{%u%|=S&BKU#z1pX86hrG zGJhaGfD3I|Xz_M+Gm!z1`Cfs}0o!lm&WXo7HlS)Rbv+sBJxzoPw8VfSw0A5uQ{we| zlqPJklu;CdSz|xsAfQDQpS6E01&>(rBDXikx}Gy9c-K~_b&);VBak)_eD~4Stg=BG zHHNiaKci!kjAfqF!>`7c_-dO81A^aOZkG~BSwtedLZOe9h#Ca=gReWfIK&*)sPJ3I zGsQvIC*pcIEodO)&81F(T!4HT=q#Q}ZNI5#U_8lEE-g2oFV54-3%q}=WGvC3FN5ml zR1Vm(p!tZUlB&S!3(`KWQu1uRQkn`0C~zs5N@M-V2k6rjpcJWrPmO9F`V{MoNY$wW z(Qsen$tAk5Sk<}IR#YqI(OdHqa-SH8WD67mgRD&%LpjI zCwVd`;wJc6j198aDY}0wk$U@N6`xdEqm?+bl!Z(2hcp>lnmA1+%?qT-Y&`^>r(6N? zi=L^6%GblMbUlYC2L);51bDfoEizFnV z=WtylL5$*CbCo=N^vLZrJU)0Qi$@jnlZ&u{xk)Z^)7_hQ?y!@!oF9Kv`6Y!*+DqF_ zAmvFuSn0-e;213B8(bD=xi^SPt_LQh?tu7d>1)6CZPgI(!}AAQo!bsNaZELBsmK&$ zxU)1?14B`DpJ{ytMSW?Pa0X|YMsZy{WUGB*&N^z!a^Mq}K_VMukk$8zVwv<6!aQ;y z!b3W3+A+T@P2pC6igU&ddoL?xei} zvcXY)J157KZoQ{R0#@pfkJ~*>9RFL~g1RtcpkKk5;~obX&2U~Tgo1|51-U()(uV5- zSGzO~<;3&QEysV+XAFaZOMK6CW*BU`^wBW*64*gkE+L>4j)zHR@&LQqZdcFHszYDa zH#iwQu5ki9V>fUYSY+(^t(qusXx)`-5VbewP#&T5bkTZzE?UBl0jA=)YoSZ%gR5^W z?#O%;Jc8zl|1zAWH|{+cOZ4S>)&Oa}YPko*7uj8Gs~rE#LPqp9WvQ ze6jj*5u<;079xE4d@@AF`w^UrM4uY$j{+J?e8WXGI?pZHTvTZaH-srVO#er}?yCJk zPgEn+w!WtZNu$TxpaZI&GPO9^ENy_}i@N%S_=V~DS;k~y%fq0bcX=5lsk>4t`tA4- z0%t|;cihsn1SVL72^D9~2_Id>8wcvWsh??@=^uaM!31V==Zk29?s9z^Pqpjl-YNLC zCWje(^_P>w}5%|JKKa4xOJlyz72<)s&wn@S?4lg77U*T`Ao~Dye_mzInljnxf924!pj2K2md6){?)3;qx(zQwWm^%e?u2Q<2!$MM||{; z1vJM|q_~}6pTD?!Ll<^8ZEaYW%N*ha@WJuDdtFabB0WC} zpIG9glsxV)hj1va`?d!B`5TjYUoc^VDbN#Dn zt7S$i#}=r)o;hQ~=&}PEUa77BSfPOFtKA+-jny#|k4KPLf9@vap>DqE%PW&O0;}AO&OfSs2z=m{#gqm{KuFnDiIVT&5b; z9=XG*Q%ePyfBXd%AIvi4LV$Op+*ML&31VGI=_?vHEJ-2bUHKGnT>a2`Tdv<@itdW4 zHUn`#x7oJ!rauvW_$cWb(^t?(0I&vm$nN7fl6G*PL)a^R{4{A&bB5i<vLHG0PsN!+A3F8L63&1SgPlvqpzaf9ei+NBC*Vi~<`L)Q}lVPCO-Y zD1o2lt(UJ>uT6mkK|U_t#&vd;C+p$4MC9@{O3W0pt=nelr}M~{bT{2#q1)IBK#j7# z_5v_QS@;a|$lL&kgl+ ?%Nlu)^LP0&hbvu$j?lz((WCL{lL3eUg=){n(wLG9j}$ z9}tPXf5_Lv5yQHZX+{ifx0_n`TX=T9*@L2=OZVXXJcIM}be=KS{bf0jWacCH?D_NH zDb*XrgulT2>FPOghh#i+1hl$(0j=T>KRkKy&Ey&}lX!LJgd8@A`1WwV4?5h~h%IAa zzJbFTR4k^aFu@H9tKuczstvDMO!KoZ3sTZPf6+1rVtp-(*l;7GA%amMTks7KJP<_+ z#Ho9NKER_1P*)m~EDQ|XO*h_!r>+BOPFe@$CVAKQ({2+I%J*On48XZ*IzdBB4WiB6 zD|1bwA46s9o6?)Z04iyg^2}WWrKSiVkLb@p@Yc+T$$-ekmJm#ZJOlsx$(^knCOFC9 zeO3yw(@kzI3!^9t@_FV;kr!V<5LtK|ADj-nB zMt|F5^i(3;r;v_^@B1MnB8$aP%U)!3{Q)N&6JASsFusXj83&pX*}#Fg`w~B0Tck4l zf2+}}t8eBDl4l&HK5sr|r*sqir4lqte{w!VkiL29Q`yXI%<`Dd6**F>;RigMO5cA$ zSC;y3z_@w&2IuT}X+N8Q9vfWUn>PhVD2ZejkoicQTz*z=-)L{1ij8;^C(780`cz%Ot@$D!2sxtp*_e?!`~RQ#eWhG_Y9m zglBmO)h-IY$8Ws5`#|J`-^5A?&9YQsvZ*a&tgNK&Mu}=7$;=5fR!0OncZIKmnjj92+qlDa}hkf zoXq|XyTCdche<3mSTS3||A>&nlKYF`-8UZs`e8y|6jjmWYg|ud7P45cjMSoM^=6Y- z%a**(tDRot1Yi_aCwleK1MM;D%~;SdNy#)$)qkT^ZuX;UKM7~cjGN=bSPAg4AQi4+ zp;|-JP-JfJx-c6s{g8&TKlt|6NtA}1Ml{tA)K0K-vFJkb^46-PO-dtUQmGZE5 znWx=%FQ4PH-WzcoMrp)+E0!(URc+BdA!SF_bz8LXqb2ROSd{siY@2#pG+kM=Pe?H^ z34cvQ$c#n66rLf#SeY}{O;D8+#$_mFaBF^LNznB_+jjE9>|3n?gaC^p>$u&#Eq>k= zRk!{`ngWCjk62_HCo-gzOeuTJCO=-jdU^To>fO*VjG-Ht-GGKvYEN8NByZaqYylGc z>L>6cN~j6lkel@o6M28O2)T_yx8+UHG=KRg@^QkFFp5MRf%VCz*vyNj zC5yTNmA7@ZBwbCqRYA(CE1C*?vM$?>)VCyGmpS??Z^MG!+oyk+TJenJURT zSW+y>{1a}bwRiSQc$oIlsrI$eJ4|P=6QwqQg89y=D#Of%aH`KM*IikKW*E`Ji zrcfTPb_f)R1KYgGH${i20SQy&ixs)Wzu+@mY2s0tz|$xe2^z=da^9{6)_?DXpW2mH z_u`=#D(@T)&|^SuvFpmZg1}#|N!#U%pTfyBNn!v>8qAJ~Z;;LiOxoSNsbQb0ARmHu zRlruayK12}t{c)WnsTeva#ByNJZH#CAzD!^PWtUWUhp-5Tp$uJ}} zT2h3wwC7ZoYLjrP6n}(EL8&atfqddaMIFP8mWT6Cy~+X8ovTKE%)*FrrwxXtjx@l6 z_J|~D6pA=uUnq%*sWeQeaA8vc?%bm@Fmn}0g3(-E5j;$_DKinK!sB$wg?4jSRLGvo zVm@IJXu?>qySoFzBAa@t(x%XGu`G1DsN7LOF~$Q1#3{1W#(!S%(BZBWag_|gJV>cGc z9=G20T<+r_s2#=h3-peX*nvovni}910$S&q3ZE6wFJxWQ>Dp$*Y>YxB^jK=)=FFjK zf%&Rj_yobPDGhE50LcZqS`|*Fpybk%kE<|$60WH$wD_{etwQKC&Lr3GA0by3rTgTX z=8Jrwa=?U^=&~R{`K2Dw>oUrZPDKcV_I6<6{+bL8xh)$nPozG+v z3hrs0q-uu%TLh7dCVgLV59U4n8)*5yW4KpC1f2IN{_S36gp{${PbY#9f0%i z&n6at>?oE!P$YV`aTdcsbS2T51oQnK!9Zgw`(tArS0k#SCNm#A2BA{_?HGfY$iwC< z6-gg?Txeq7W0)b(LiK_x&&64UNJp}NC;0{T&64x@B?hiP!7ux?5~bXAw$kW{{6Y?s z2{arTKgcB!JECK1UByLuj7l_{0h&Tl<=Nes{TR(~?loga^XOc5;o4EB*o8u$86WiU zG3~jF@>86mt00y^2i6xs1}+D5lRU;W@!>>2L^9E1EMqzyg=p4b8jyNA_U1c(8suoK zvfZM7qFa!Mt(s(-{-^SqHyr}l?P$zUK7y<)m!NV9XiGG-`P>98E|0BUzlwC@ERs>L zp+>j3;_KE649=*-m!fdhCuMQ3d1M-=19heA>K$uDB%crG95jU%Tv&MjcqA;L)i=jr zwq3Suc~{|lMHR_dlQ65H!}hTRx1k4%lfSJTf20>9X2ylW>kQ4;t(yMit^3=!bHp|= zNeAvr^iBue7ryNEq9A8#6+SlQNpVqh#{Bq*S-5mZ{DRp|1`#=PX#~GBOsk@O__0{nH_*nGK?UC`Z zIri}USh(s31w40v-0R&BkOg#CHpKqd33AXpaVkI{LJcl@`(a6f;_d7VnVdT(HjYs| zaCBN6s~&PFWE|pH;^ed#UdrrCc3A8je-=ZLp2n^@wAWF}awjgNpiDXkWcQONfe6Wd zvuW|KIV_GPgz9;a^5*sH%j@SSQH6qL%ykboJo@;V7Z_e6d&HprqcaBFIrgTYP-p;M z?>ZB8!z}@6c|Z4htS{SD>!NMFB1ScO0}&&zI8V;lPi2p}gTbj{=25H}z*wu~fBHyM zKH@bQ>6(1|1hL?LRW4SLWRPQ;Av({TL)lm=f&U-V6_01ud`d{uPnUfKho|d6VIm9D zzJNb|4&=GV<2uW~)9 zmoW?Ob_mtB?HqSI$iw!?|15?le^BOMsg{*bhyvZ?-uze}=tCE|uBcUEebgQ}C^^p@ zuU=kXUB7v(bdl`vrBrgP*07gRYaHb0@xPj!;dRHNAfEvNuu+6n>RPHVO|WxT;Q&pw z3Q)Zx-W~kTn}hHyjGPs3fb~>r&shz3=pGUx{Y5lyg*a$hbb8h`6`T}|5p=Qdae+HZ`O zWm7D=x+#mcFQEF8Ze7Rv$f1lwRL8m3CZLQ zOZ1=w3zE;r`ph&@xo*c(6&^Bjy5CXQn(#P(#-M+4p6}jX9lgGsNaM2Evu{Sj%sn!V z&bWlyCsQ{TGWze`(PooxvLFJ_pp%iZ8h?1=^^V#Af${*E=@Su=GS*9|gU__Y3Kk&D zmbT2)VU1sAve^0JA%db3I>$6igVz5NA{~5jfww|+l&A_DT;j^p=AUU7`Xt65V@*fbA?QX6%%7prS$uo+H z0C1G|fKTm8xQbj^nvx~pL zfByyhCv^^GZe(+Ga%Ev{3T19&Z zUg_wnIik_k(XU6$K8(7*R@>RKH z*ag-xe?g?kQdn`mhJR?nV9C3q`1QAMWA=6tePc>f=NnwlvXpS)R#Lm@wAya-a@|DF z@^bGM1pzpN)zYn=JYvvj_~lOaJWvH)tcL& zDDmyZm+rn9iYp}%8Rza!7xC9`o}WHna7rju@yW9@yIFrZTrG6g*#mZWHw)L2@SYao ze_D8vwfR_@HCY@>oyO;QtJ~5J)X&n4q^TF@i{G3;EF)P)IZAZl-{9RF8f*y9I;(t9 zICF#zHAqRRH`!{f;oikQ-|J#%cf!-!rd{fj_iLYbiIn%o}OJj8fp+GXpeKhb)TW7f{$|f@1e|?z) zCPB2+-9_G;aKnsnxM0#fSnXQ~XXk|A)fqTccPB=;cAHxl%v%%_)`6r#i%vsuMz<&k zP9lgnT&UnAmUN~HyIsI`MO)+>4@p$U`DSmTqJa!x@2C}#JoPqyayes0h@(Vkb{Kje zU_%Y3GtGPXl)G&c?aRirkD{WDe>Q-TfMIPDH9NB^I_&3ZLZ}*t>#nYLrfv(%ih?BoXA_YxQNRFRDzBm;>+%5D&w~Q*)&!`_LkrXTu=`r;7aD#J*a>4Ap)2- z?X2@N!H9m4>;L=g)$1qEzkcBaR+v;*^Dz*g)WfY<=1mWJND^myldr21eBDa|H4Tet~Nim}QzaFClSNms4~X;IPu;WW3CqYZOz0 zP!j@y8Hfc?C+EZ4Xeqq`uf27-eILLC+*O9KiEr{jsIlI>)Tsbm9kOlH6jzAuZDm8; z>0_9S^9C-r*;F=0GOpuyf6Z6+W`|7b&pBr4gN=GI2?hZPD6FFs)b(EW;{*j$LIYY~ z*i5_4e+HX4qoLTH(aJquEqWUx7x356-90?`Gp+zmx})kIu>kQDWvY9yF?nMqatt!+ z+r_Nsa}7Bu{X?#Qr7DwKP(WMvBmFa%1WRf1{51G(DvWM`lAg z?^KB*>W`tpohspO>;+{&l3X>_9gV?k*z z;pvNKFMm4yPk^!)ul_kfGSSm4D7hTfJV6q$?s!z1*)$?Je?UbbgYS!8cN755CzZ0T zruBq`$7)cfSdpAWh|D0->)$6bLG?hX3>B&H)Zgk3NX)`jjv}sVsF13%&4KcE3SaG^ ziUxKMe>aco~rkfh_TT7=8;o~JWg633Q7!Mpj0 zpTHJbUog#)e-qrqRqe&b?qg{h5dU%IjDF#Fx5|Y?qqGmHo64iN+uu9vFV<9osI+^4 z;TcHpdbtoPC5*}VL)+6^jtq^35W^HvS66ku-CFrp)poZrjs!Ymf$H*Au_=&(14=c< zOda2PrW7obzH;UT+ zu!N||f0c*PHSmtkb#DO?S5OD>v0a`%d44u$7^o0w*Lyl2ABDZaXj7C1qF4d^r7ZPP zJS}i+cy{^T#V0nOvOsR<;`6?+Ly$@#m=P6R5EeeM3tZT6#)*(UgoC@e zM*iIWFydN!fPok}eAc6m3n2(<@Od4OM~beI-tj<3jt<5(U>yV)5R6+{r`yuI!WX~& zIe^XYt{0){q!$6enD)Rp>_sF*uq4Q5e_uocTdC~uf+#Ng$4)sT_!+VTK#M`EZ4P}d z9tJ$4fj2Rj@tsdisEh%PUgC@*f^|fg&*GGEXc5x~tQ0<4Ee|7PJ zhVr&G+a0#DZ3B3f+ccgJmN?~uWgG|fE`fV4O*bC+YVjr7R!-VIDHM8&diXdWlsmvi zd$fMs@qFJd@+wfkdHSxhN%r-J7Eb@Gjk?McGW3_L9v_i4hplOA^iiHicRXF4u-Bf3v{ z66&zLwj+XRDb?F;(jCh*U>);C=RamH4x;!29<^2sFm_yRdNCkaStdf&e*w21S+MXG zp07AiECAKAYNNdeIS#f|{V>nk)iSGUU3@fT7xo!9xQ#ZiV$ z8*Lbwc$e<=0HSH>L445jPf0+!HI`PB9uvTV49s&=EbF}f5Vf_*e_I@`K!Cz>?Dp$4 z%pZlLayDcevjY*^s&3qvb!TcEDj~wXbIu9zmxh2^hqg=KD;NGFi+B)dksDU_jY5TS z+)u$f)ml&k{xGLsM)5lb6|w<;$Ye5_pFlDwbyaXTkI#&&!!t+$99uDtGf4ZBYMep( zpQ9OMMl?Er+Zbn%f1R6Zps5KPHCp1^Mjoewl4liT09ptB1dknCXmWr8Gq z>2iXvHWP*=aBS&wnhhg#3wU;= z67&oX=D(AfRwh29fH3{Nak%Q5b++l?=j{n(VZnP2k@0Tge+Y{Z&zl_}5>mrzdUoD; zsJ|VckR*A^9~PhkiO;NAPC`y`={BOt|+>hwSy2>{!> z;wY7Vm;t!34*tm?rKCNIN$GO5ZH^an?4~8W;F%RCkzw3# zhudf8C`bQ-KmP@v3CK=mZe(+Ga%Ev{3T19&Z(?c+H!&bEAa7!73Nth{G?TEwOkcMA z045?9GXr3NM_JacwXtQ#qAQh>w^9%ZiAYF*20&ZNR{kLQ=bWA!0AA$vI+d!V{9uY0 z^h|f3?mpeak6susFQk9w|M~jl`*+g2Z%;z+{^a8cQx84!-+b*opOad`8h__!li6P( z1?!jyVv(g-F6Ys~ODw=#n>sgitTG#W`_43W8$Q!S$lw>8({!urJqM=Vpeh|~UFs+R7(c1hm z?`_V5P-ON54IQ)Htn$ZV;oUx3F$4R_G>|L_G0UM+Yh25BfRn((F@HcJjWi@~i^dqe zY{%e;5(kbozP&BHZ3{(7YP~4$9-WVrjaN;PFCIrmKJ{)VJoLAnvdj*&L;~e3vNqdx zx!6IlSzr$ABl>oX%j7TsHuYw4*t$@LiSQ}whCvpy-ny-~-nQLP;e4_1Z~(6<*0tG$ zspw=8LDHzfkOs7vPk%s04;mRri&_yxb|+^$>&!LqPcLQgX2$u>(Qe3{%1Llf6lD0? zx#x4aS}FTZ1&f2Mce2od?^iVGt?Cv4 zERmAM8h^t+C9#AD4izH(@W!vo2~UABCjC46QTSb{EUk_XLxriZ(sXc(j0Y_2eW1?U zZg1P-;}$kwJpx2Hd9YguAjZ6M<6pdebN=$(#o4O~goR7=KbxgCdM*>|aaNYx!zR@zE{4bvbY9saC@$-xYv9AyU`OomEq zY6*2D=O{YZyKahwf>4Z9(36bIov37?Vmh2Ok3D9qg zESWqRSsd1P8TJc-6$N3$hJiJ#LdwK4L)qdkPIq9AT9EcQIc`fZAQ1{?Q5;A7FpOh_ zojdyh7)wWif8|~y>}trwNTyPbG4oZR2IbCnN=JO8a6}p6TByQ7AJdo+Z9lf{0Ds)@ ziU@7{@MQ!u&;uCJq4@pfi#_xjW3y0qI2U8o70SAj2U0Ru&A|i8v9jnO99mcqg~BqM zo=pU1mlRU;-{sPnxaB;%Vx=%9o$m>9ZW3m zymncvRzxqGZo3I4(*)QMD9ba$jDLu@X0c;NrMC2xa}KMCKJ^k?t*h1JBr$zZuuD)! z75RtvSLatCvwH2>lf?iVK;*wTG9+ctY(cdM)Gu-QAd)tn>vQgOMHP~ZV&yq0t5m+* zR&Y@ba%wEPa%6jqQZ6I(d)BcJ#enV(Q0mXOB+Z-W+MK4vnhH*x1a1Co|NK0J{*w>^Zwy9D(Oh2M4q&V;Yh(3N+}X(Zk#t#q!eSXGi^iBx3^ z+~bo>$QgeIx?-Fba8=6R)?HVxr|a5iGvy)yIUCjr+f!LPeehL}Ss4aGe=N)UWr5~G zS&tEq=hA-wuQ5pd{vD58zK(+=wQ29WHSqDBA?mcz{6Nh6!E87m$a=!9!$ZwBC`tB| zFOBt?EfV#q(m3)T%9i?Z1c~=~Spduf`%H}qB3get=)H|M6|}J9jyD(@b@nA>BBvTD z+ADj7DNU&KWXB2-Mh(hmBOUm{(t4jBTL`XXIF5 zWQfTU&D^|3>TWk+zm$Q^(SXhBn7KG$=Q{YWb_yF#A)aswsASJaf1OhXyCC%rn0W0i zigwBRcJ8B!^yq!7c?dg}I z8#?8Bj9D=B1&mnfLi(p{(ovUiQOP3tn-4Yxa!IF(cKZ3P` z^>%zo;DQ6W+swW}?a_sVd|bU$lU`PLb+gVjmwRH|_T#&W2>mzj-(DYO^(=qjJl(%T zA^w)8$5{Ld1d0gleN%5Yiq3ytmhMXB|x zqDN-LB*)W7Fbkbm4iBpY%`_ty9xwzUE<-{r7k5>|Gd1f9<{k@k2Ld#8W9Gl;pq#Z|Uo zX#BY~_};_``JMIk=b(WiI+nCCcwpKTshgqyr)krT|MJcCOml-YVo%ON{If0EWh7rp z+K(QDyQ!z?^M{^UqN{!qqS$x#=eHNfG0M3v9|yNZ>)JIsEu#c)s}fq{sikGQ%5;w# zb*?oyG8JjGuqt2g(j|XTH|f&gZQd?-xGqQScei((yNt5qUNLCypPJIxTW)Z?elDY+ zKw_ysp6S9Yz*!wB33ahr6n7Iwt)diuzFl=xYTC!PE7sFRu_+LJRkuI+l985Vt$&C~ z4{Ku-e%+8<-4N?R9w6A2-L|7EWcXuVt`QVwF5VOyLS@yNf~tSQ7F)hjZLQjJ_B$Hh zXbc%FQ&bH|7X7e+riCO!O=0M_9`vD96Ak!(gCgCGraqy*_4^Y|J?QFmyi`Y1Ai~6+ zz`m90QP+%}@$QxWkX=?(oUAH2?bxM@Hc zL#k>{ZrnX?HmlNH=S@?lso*q83=O|}?>z_ly*LObQ}i4%^LfZa?mBmVsx#_dfWlOWF=0yZ_1KF>pc*>c<15q;NJ;4NU43F9ul7GzUy8#3j+j*Iqa@E))g1Eh$K7G2cehcD=1u^}x ze=i;`UVg}eyY?au?k;}2VEV(r{2t_FPl6xSMm6P{o@YfKabcc}^+P|@ z4-e&L*#>XR&CWdJ4d4ty{4>`B+ z(Ufue_)|E$SHZSX6P`qIoQd$Us&{RF@HAm@6f>EIb@OYrxeJz6qZVD=JO^bPw5ki{ z&p~&uCjXfIJUpG{ag4v}xrLd|3gqqj-AUBJ|AcA(DOuHKsh!4| z^wR|%jIxX|clwulA{h?PMY!tp$=W+E;T`u+;YAxYq2~y-UpmS#Ju4A}nESXVT%T)m z-qpce9cF$XluU>y%lS8EK68g1&HOhdoU!x|m+#xzFE>}G@(o_&g^v4w<*utA%C1_J z>-Dqd5u~6D+O8pz>F&!eSgLl>RCCqpnyt5>(2hQApW9A71gPDo`)YANN|K0?Tu+Vj zvc2CohVv*F1#?+w17*X?63eVv?mzyb2ASh|;Ua@~SU(m!vMCB?1}#$|vnXY~!zTDk zwbDFFVJvs+F2K3QjpxzhZg`6-+;FjT+sskv>4z0)-Mn5EfE^mWXQ$J{ExUy}* zAll3+lOhsgF9{(%`B1mr6#Wa~UO!LwGoNMnO8m9Vf1-?oAXatL8+q5%I~4J@+NyQ6 zp@3;*1`i0Q^$&0b&H->Zijdm6KUz^hXv+J{-&`Nkr?GL?`yO1scFnE5SL^kk=quD^ z2@gPC?)+-EJx*AEByxun{VbwXHUve$x$?}WUjkTXK6Bw?IfxGHqhsN2aRZPys$7!i zlhk7B&|eO!W&@-j(I|1RP!_v}EOfdgDZW>iWHQQK0RJyt0%Y~pegKEQe|wtlB(q}V zsstXo>OsLM#ARDH<%8-}V}i6&aB88JF9N{bG_SbG!!KKZEetg?Huxv-UTr%2IW)~3 zzCTyplTsU)O?^c0EX_=eMb04qT;4C+so^L4Q*U9C7z5kt&K9B3OcYwJnYy}

9lB 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

OdW_;xiEBlBHmCBfZ`||YF+4;MfmgCT! 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≺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 z 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�qgLTrd)MS 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%0DQlPGHa`MJ^j)dOxeMD)vBXY?o`>%tVa* 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 tA+s>jLddF7IF|*rl!W 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 zã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�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

Ps`oK~Tr`R4EO_x&1=LWilb$uI1X zKZ=(X|NThvP4U5v2MI$7ATnMafy*M6^75bCMG2~aA`uryrPSe;_TB}z=O?mSv$X`Q>GA4dq^}tFF_$D%J9=rZhZw7 z8_S_Y%Dhzb;Ui3F>BtY3OW^S{SjDYI8W-mGo3Apr2e1Gsjzm!ElTQLBpxlTUwX%4{ z8aZSp#HA#=ZzGp7j;6a?wkL8-y)Y_T4nLxZ%}`E2i`DyEpK?ecK@VI+uDWe@)qsau z=CRw??uzx|?Xz}b!|YfkqZfq48W1;xo(|fF=wH79xmG(aOZ=>#nU(M);yh^jb|dIR z3HbmVxMkSsNrWS%ymTZ?n)g7X;EO3LYnf|xMD*>n@xFYsl1AF=bjku2MHkf(2cikt zF?ezyn&BGe`4!BpP1v*MQ;RbQwj%YH&7J*2UxB2kOlVhohVcvc=pDGhLa;Gov)9S1 z4?C#kred@cR_q96TUK>?Rup5}WS3mSm#K)eWqf4s4*)r6-EPz>_r!+%(%}yRM2T8o zgF-?``tA2tM`Xpt+HER!oRN6y^d}`1wA?umAC19ulJ@cRe%&Q5LR zrsAv2!;zE1Qy_&=vZ>g-WokKgU0!q`!ef!6eFV~UB(eH%X!ak-WIdmvTwEUma}+6Z zBc}ryb1a!XD)gJ@kLto{yE=$j_Dsj}{j3he{u;fSUzZiWBFHzjp93!N z72vE-{Cc6aA_^yRa+`GG>^E;G(0`~a(sEU;e7#(PUpxe%!ZSleJ%eo;I@LGN-SAiw zv^wO{u-4#D1G#qiAvdl7y`Gcr+9R1aHj{78Zeq@kwMT1*G z;YOe9n}$z7Ft={U%ERsAhS6CuZVnIRx@2cpfJ~Ltxx&_P z$hnZf&4QTlvHQaYBZ;-GFDJhm9_EX9>BI3dfX^kv-n4ORwbQaR9%EV*1`?ko{%u+1 zt=U*awBOXgMmjLPAUr;=b-+@3L#z-vNMk}xC2U1=`SUUxlbTGs2Xc2j8($5ydFI~R z-sMx)3JevaQ~r<)a2*Ff%FBLqTV#AF1=!>*NU-8D?|od?hOBd-qz9ep<>`gs1#ozc z3G1@-6KU}_2f+u$h~Pu5U|Erx8D7b4}DAV;q*Nq;N{k2m2=ZXqGj!3J7Q!;zUha*h}&JUV+7K_Hb(YZ4Vnhg*et|eD+ ztct%D00KxXEa`q`oMNwof%Y6zD+Ar+I{@0NN~pg-&r8b@fexw_AEJ@=ZO3hBKY9a5 znA?L>yz1AU^pLn%s#Y#1C*jYbD!)t9-SYW@{@@Vn=Dx$qDKP!;aTEa0e~dl8&OB|Y zoL*9oE--L{wh6k%?Ig{Hn_pD}n#2OsOn;rz62+5nCyZzn9L!Es7+`Z3Vzb9?_wX7> z9(J=wS2OJxOfkcBbrE#oe+?0-MAWg)B{p(^r4|eO^6?-yqYF17Xz|$OAqYlG&$(BksaLy~dVo2qxzth&jJ4i4Y(QC;?pa;OqE| zU)Yc%IeNM|U-;i|#Aq!#f&bsouGcJD;4OTNq6Kr|s7-=i|vVBLUQN zHj%s7Z!Mx~zwgw9tk!%}_ouUnF{bcuC8AOLiVDi7fz(QA&9ptPimQKKsqyS2Rv7V1 zd*dHhE5M<1`~UQ+y4lzPz97sBL?20CC>eQ;?Wv1jv0DtI^xL=9rH=d)Y=SUL(sbBe zHprp*YcTf`a|qV)93+Odyy_J*M3ymq_Q3DaQch3Y;>lR_dIWS`*9*dkaskY(z#;vH zSLY|D6E9Rs87#?+�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 504 Q F0 1.174(option to the)3.674 F +(gument for the)-.18 F F1144 552 Q F0 1.174(option to the)3.674 F F1(set)3.674 E F0 -.2(bu)3.674 G 1.174(iltin command \(see).2 F F2 1.173 (SHELL B)3.673 F(UIL)-.09 E 1.173(TIN COMMANDS)-.828 F F0(belo)3.423 E -3.673(w\). The)-.25 F(options)3.673 E .019(appearing in)144 516 R F2 -(SHELLOPTS)2.519 E F0 .019(are those reported as)2.269 F/F5 10 -/Times-Italic@0 SF(on)2.749 E F0(by)2.759 E F1 .019(set \255o)2.519 F F0 -5.019(.I)C 2.519(ft)-5.019 G .019(his v)-2.519 F .02 -(ariable is in the en)-.25 F(vironment)-.4 E(when)144 528 Q F1(bash) -3.142 E F0 .642(starts up, each shell option in the list will be enable\ -d before reading an)3.142 F 3.141(ys)-.15 G .641(tartup \214les.)-3.141 -F(This v)144 540 Q(ariable is read-only)-.25 E(.)-.65 E F1(SHL)108 552 Q -(VL)-.92 E F0(Incremented by one each time an instance of)144 564 Q F1 -(bash)2.5 E F0(is started.)2.5 E F1(SRANDOM)108 576 Q F0 .76(This v)144 -588 R .76(ariable e)-.25 F .761(xpands to a 32-bit pseudo-random number\ - each time it is referenced. The random)-.15 F .565 -(number generator is not linear on systems that support)144 600 R F3 -(/dev/urandom)3.064 E F0(or)3.064 E F5(ar)3.064 E(c4r)-.37 E(andom)-.15 +3.673(w\). The)-.25 F(options)3.673 E .019(appearing in)144 564 R F2 +(SHELLOPTS)2.519 E F0 .019(are those reported as)2.269 F F4(on)2.749 E +F0(by)2.759 E F1 .019(set \255o)2.519 F F0 5.019(.I)C 2.519(ft)-5.019 G +.019(his v)-2.519 F .02(ariable is in the en)-.25 F(vironment)-.4 E +(when)144 576 Q F1(bash)3.142 E F0 .642(starts up, each shell option in\ + the list will be enabled before reading an)3.142 F 3.141(ys)-.15 G .641 +(tartup \214les.)-3.141 F(This v)144 588 Q(ariable is read-only)-.25 E +(.)-.65 E F1(SHL)108 600 Q(VL)-.92 E F0 +(Incremented by one each time an instance of)144 612 Q F1(bash)2.5 E F0 +(is started.)2.5 E F1(SRANDOM)108 624 Q F0 .76(This v)144 636 R .76 +(ariable e)-.25 F .761(xpands to a 32-bit pseudo-random number each tim\ +e it is referenced. The random)-.15 F .565 +(number generator is not linear on systems that support)144 648 R F3 +(/dev/urandom)3.064 E F0(or)3.064 E F4(ar)3.064 E(c4r)-.37 E(andom)-.15 E F0 3.064(,s)C 3.064(oe)-3.064 G(ach)-3.064 E .788 (returned number has no relationship to the numbers preceding it.)144 -612 R .788(The random number generator)5.788 F .088 -(cannot be seeded, so assignments to this v)144 624 R .087(ariable ha) +660 R .788(The random number generator)5.788 F .088 +(cannot be seeded, so assignments to this v)144 672 R .087(ariable ha) -.25 F .387 -.15(ve n)-.2 H 2.587(oe).15 G -.25(ff)-2.587 G 2.587 (ect. If).25 F F2(SRANDOM)2.587 E F0 .087(is unset, it loses its)2.337 F -(special properties, e)144 636 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(fi)-2.5 -G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.)-2.5 E F1(UID)108 648 Q -F0(Expands to the user ID of the current user)144 648 Q 2.5(,i)-.4 G +(special properties, e)144 684 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(fi)-2.5 +G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.)-2.5 E F1(UID)108 696 Q +F0(Expands to the user ID of the current user)144 696 Q 2.5(,i)-.4 G (nitialized at shell startup.)-2.5 E(This v)5 E(ariable is readonly)-.25 -E(.)-.65 E .993(The follo)108 664.8 R .993(wing v)-.25 F .994 +E(.)-.65 E .993(The follo)108 712.8 R .993(wing v)-.25 F .994 (ariables are used by the shell.)-.25 F .994(In some cases,)5.994 F F1 (bash)3.494 E F0 .994(assigns a def)3.494 F .994(ault v)-.1 F .994 -(alue to a v)-.25 F(ariable;)-.25 E(these cases are noted belo)108 676.8 -Q -.65(w.)-.25 G F1 -.3(BA)108 693.6 S(SH_COMP).3 E -.95(AT)-.74 G F0 -.225(The v)144 705.6 R .224(alue is used to set the shell')-.25 F 2.724 -(sc)-.55 G .224(ompatibility le)-2.724 F -.15(ve)-.25 G 2.724(l. See).15 -F .224(the description of the)2.724 F F1(shopt)2.724 E F0 -.2(bu)2.724 G -.224(iltin be-).2 F(lo)144 717.6 Q 3.022(wu)-.25 G(nder)-3.022 E F1 .522 -(SHELL B)3.022 F(UIL)-.1 E .522(TIN COMMANDS)-.92 F F0 .523 -(for a description of the v)3.022 F .523(arious compatibility le)-.25 F --.15(ve)-.25 G(ls).15 E 2.905(and their ef)144 729.6 R 5.405(fects. The) --.25 F -.25(va)5.405 G 2.904 -(lue may be a decimal number \(e.g., 4.2\) or an inte).25 F 2.904 -(ger \(e.g., 42\))-.15 F(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15 -(ve)-.15 G(mber 26).15 E(14)185.545 E 0 Cg EP +(alue to a v)-.25 F(ariable;)-.25 E(these cases are noted belo)108 724.8 +Q -.65(w.)-.25 G(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(14) +190.95 E 0 Cg EP %%Page: 15 15 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .283 -(corresponding to the desired compatibility le)144 84 R -.15(ve)-.25 G -2.783(l. If).15 F/F1 10/Times-Bold@0 SF -.3(BA)2.784 G(SH_COMP).3 E -.95 -(AT)-.74 G F0 .284(is unset or set to the empty)3.734 F .578 -(string, the compatibility le)144 96 R -.15(ve)-.25 G 3.078(li).15 G -3.078(ss)-3.078 G .578(et to the def)-3.078 F .578 -(ault for the current v)-.1 F 3.078(ersion. If)-.15 F F1 -.3(BA)3.078 G -(SH_COMP).3 E -.95(AT)-.74 G F0(is)4.028 E .248(set to a v)144 108 R -.248(alue that is not one of the v)-.25 F .248(alid compatibility le) --.25 F -.15(ve)-.25 G .249(ls, the shell prints an error message and).15 -F 1.12(sets the compatibility le)144 120 R -.15(ve)-.25 G 3.62(lt).15 G -3.619(ot)-3.62 G 1.119(he def)-3.619 F 1.119(ault for the current v)-.1 -F 3.619(ersion. The)-.15 F -.25(va)3.619 G 1.119(lid compatibility le) -.25 F -.15(ve)-.25 G(ls).15 E .575 -(correspond to the compatibility options accepted by the)144 132 R F1 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF -.3(BA)108 84 S(SH_COMP).3 E -.95(AT)-.74 G F0 .225(The v)144 96 R +.224(alue is used to set the shell')-.25 F 2.724(sc)-.55 G .224 +(ompatibility le)-2.724 F -.15(ve)-.25 G 2.724(l. See).15 F .224 +(the description of the)2.724 F F1(shopt)2.724 E F0 -.2(bu)2.724 G .224 +(iltin be-).2 F(lo)144 108 Q 3.022(wu)-.25 G(nder)-3.022 E F1 .522 +(SHELL B)3.022 F(UIL)-.1 E .522(TIN COMMANDS)-.92 F F0 .523 +(for a description of the v)3.022 F .523(arious compatibility le)-.25 F +-.15(ve)-.25 G(ls).15 E 1.183(and their ef)144 120 R 3.683(fects. The) +-.25 F -.25(va)3.683 G 1.182 +(lue may be a decimal number \(e.g., 4.2\) or an inte).25 F 1.182 +(ger \(e.g., 42\) corre-)-.15 F 1.75 +(sponding to the desired compatibility le)144 132 R -.15(ve)-.25 G 4.251 +(l. If).15 F F1 -.3(BA)4.251 G(SH_COMP).3 E -.95(AT)-.74 G F0 1.751 +(is unset or set to the empty)5.201 F .578(string, the compatibility le) +144 144 R -.15(ve)-.25 G 3.078(li).15 G 3.078(ss)-3.078 G .578 +(et to the def)-3.078 F .578(ault for the current v)-.1 F 3.078 +(ersion. If)-.15 F F1 -.3(BA)3.078 G(SH_COMP).3 E -.95(AT)-.74 G F0(is) +4.028 E .248(set to a v)144 156 R .248(alue that is not one of the v) +-.25 F .248(alid compatibility le)-.25 F -.15(ve)-.25 G .249 +(ls, the shell prints an error message and).15 F 1.12 +(sets the compatibility le)144 168 R -.15(ve)-.25 G 3.62(lt).15 G 3.619 +(ot)-3.62 G 1.119(he def)-3.619 F 1.119(ault for the current v)-.1 F +3.619(ersion. The)-.15 F -.25(va)3.619 G 1.119(lid compatibility le).25 +F -.15(ve)-.25 G(ls).15 E .575 +(correspond to the compatibility options accepted by the)144 180 R F1 (shopt)3.075 E F0 -.2(bu)3.076 G .576(iltin described belo).2 F 3.076 -(w\()-.25 G .576(for e)-3.076 F(xam-)-.15 E(ple,)144 144 Q F1(compat42) +(w\()-.25 G .576(for e)-3.076 F(xam-)-.15 E(ple,)144 192 Q F1(compat42) 2.5 E F0(means that 4.2 and 42 are v)2.5 E(alid v)-.25 E 2.5 (alues\). The)-.25 F(current v)2.5 E(ersion is also a v)-.15 E(alid v) --.25 E(alue.)-.25 E F1 -.3(BA)108 156 S(SH_ENV).3 E F0 .506 -(If this parameter is set when)144 168 R F1(bash)3.006 E F0 .506(is e) +-.25 E(alue.)-.25 E F1 -.3(BA)108 204 S(SH_ENV).3 E F0 .506 +(If this parameter is set when)144 216 R F1(bash)3.006 E F0 .506(is e) 3.006 F -.15(xe)-.15 G .505(cuting a shell script, its v).15 F .505 (alue is interpreted as a \214lename)-.25 F .39 -(containing commands to initialize the shell, as in)144 180 R/F2 10 +(containing commands to initialize the shell, as in)144 228 R/F2 10 /Times-Italic@0 SF(~/.bashr)2.39 E(c)-.37 E F0 5.39(.T).31 G .39(he v) -5.39 F .391(alue of)-.25 F/F3 9/Times-Bold@0 SF -.27(BA)2.891 G(SH_ENV) -.27 E F0 .391(is subjected)2.641 F .525(to parameter e)144 192 R .525 +.27 E F0 .391(is subjected)2.641 F .525(to parameter e)144 240 R .525 (xpansion, command substitution, and arithmetic e)-.15 F .525 -(xpansion before being interpreted)-.15 F(as a \214lename.)144 204 Q F3 +(xpansion before being interpreted)-.15 F(as a \214lename.)144 252 Q F3 -.666(PA)5 G(TH)-.189 E F0 (is not used to search for the resultant \214lename.)2.25 E F1 -.3(BA) -108 216 S(SH_XTRA).3 E(CEFD)-.55 E F0 .48(If set to an inte)144 228 R +108 264 S(SH_XTRA).3 E(CEFD)-.55 E F0 .48(If set to an inte)144 276 R .48(ger corresponding to a v)-.15 F .481(alid \214le descriptor)-.25 F (,)-.4 E F1(bash)2.981 E F0 .481(will write the trace output gener)2.981 -F(-)-.2 E 3.114(ated when)144 240 R/F4 10/Courier@0 SF 3.114(set -x) +F(-)-.2 E 3.114(ated when)144 288 R/F4 10/Courier@0 SF 3.114(set -x) 5.614 F F0 3.114(is enabled to that \214le descriptor)5.614 F 8.114(.T) -.55 G 3.114(he \214le descriptor is closed when)-8.114 F F3 -.27(BA)144 -252 S(SH_XTRA).27 E(CEFD)-.495 E F0 .138(is unset or assigned a ne)2.388 +300 S(SH_XTRA).27 E(CEFD)-.495 E F0 .138(is unset or assigned a ne)2.388 F 2.638(wv)-.25 G 2.638(alue. Unsetting)-2.888 F F3 -.27(BA)2.638 G (SH_XTRA).27 E(CEFD)-.495 E F0 .138(or assigning it)2.388 F 2.531(the e\ mpty string causes the trace output to be sent to the standard error)144 -264 R 7.53(.N)-.55 G 2.53(ote that setting)-7.53 F F3 -.27(BA)144 276 S +312 R 7.53(.N)-.55 G 2.53(ote that setting)-7.53 F F3 -.27(BA)144 324 S (SH_XTRA).27 E(CEFD)-.495 E F0 .74(to 2 \(the standard error \214le des\ criptor\) and then unsetting it will result in the)2.99 F -(standard error being closed.)144 288 Q F1(CDP)108 300 Q -.95(AT)-.74 G -(H).95 E F0 1.248(The search path for the)144 312 R F1(cd)3.748 E F0 +(standard error being closed.)144 336 Q F1(CDP)108 348 Q -.95(AT)-.74 G +(H).95 E F0 1.248(The search path for the)144 360 R F1(cd)3.748 E F0 3.748(command. This)3.748 F 1.247 (is a colon-separated list of directories in which the)3.748 F 3.795 -(shell looks for destination directories speci\214ed by the)144 324 R F1 +(shell looks for destination directories speci\214ed by the)144 372 R F1 (cd)6.295 E F0 6.296(command. A)6.296 F 3.796(sample v)6.296 F 3.796 -(alue is)-.25 F F4(".:~:/usr")144 336 Q F0(.)A F1(CHILD_MAX)108 348 Q F0 -.997(Set the number of e)144 360 R .997(xited child status v)-.15 F .997 +(alue is)-.25 F F4(".:~:/usr")144 384 Q F0(.)A F1(CHILD_MAX)108 396 Q F0 +.997(Set the number of e)144 408 R .997(xited child status v)-.15 F .997 (alues for the shell to remember)-.25 F 5.997(.B)-.55 G .997 -(ash will not allo)-5.997 F 3.497(wt)-.25 G(his)-3.497 E -.25(va)144 372 +(ash will not allo)-5.997 F 3.497(wt)-.25 G(his)-3.497 E -.25(va)144 420 S 1.077(lue to be decreased belo).25 F 3.577(waP)-.25 G 1.077 (OSIX-mandated minimum, and there is a maximum v)-3.577 F 1.078 -(alue \(cur)-.25 F(-)-.2 E(rently 8192\) that this may not e)144 384 Q +(alue \(cur)-.25 F(-)-.2 E(rently 8192\) that this may not e)144 432 Q 2.5(xceed. The)-.15 F(minimum v)2.5 E(alue is system-dependent.)-.25 E -F1(COLUMNS)108 396 Q F0 .829(Used by the)144 408 R F1(select)3.329 E F0 +F1(COLUMNS)108 444 Q F0 .829(Used by the)144 456 R F1(select)3.329 E F0 .828(compound command to determine the terminal width when printing sel\ -ection)3.329 F 3.466(lists. Automatically)144 420 R .966(set if the) +ection)3.329 F 3.466(lists. Automatically)144 468 R .966(set if the) 3.466 F F1(checkwinsize)3.466 E F0 .966 (option is enabled or in an interacti)3.466 F 1.266 -.15(ve s)-.25 H -.966(hell upon re-).15 F(ceipt of a)144 432 Q F3(SIGWINCH)2.5 E/F5 9 -/Times-Roman@0 SF(.)A F1(COMPREPL)108 444 Q(Y)-.92 E F0 .848(An array v) -144 456 R .848(ariable from which)-.25 F F1(bash)3.348 E F0 .848 +.966(hell upon re-).15 F(ceipt of a)144 480 Q F3(SIGWINCH)2.5 E/F5 9 +/Times-Roman@0 SF(.)A F1(COMPREPL)108 492 Q(Y)-.92 E F0 .848(An array v) +144 504 R .848(ariable from which)-.25 F F1(bash)3.348 E F0 .848 (reads the possible completions generated by a shell function)3.348 F -(in)144 468 Q -.2(vo)-.4 G -.1(ke).2 G 2.785(db).1 G 2.785(yt)-2.785 G +(in)144 516 Q -.2(vo)-.4 G -.1(ke).2 G 2.785(db).1 G 2.785(yt)-2.785 G .285(he programmable completion f)-2.785 F .285(acility \(see)-.1 F F1 (Pr)2.785 E .285(ogrammable Completion)-.18 F F0(belo)2.785 E 2.785 (w\). Each)-.25 F(array element contains one possible completion.)144 -480 Q F1(EMA)108 492 Q(CS)-.55 E F0(If)144 504 Q F1(bash)2.536 E F0 .036 +528 Q F1(EMA)108 540 Q(CS)-.55 E F0(If)144 552 Q F1(bash)2.536 E F0 .036 (\214nds this v)2.536 F .036(ariable in the en)-.25 F .036 (vironment when the shell starts with v)-.4 F(alue)-.25 E F4(t)2.535 E F0 2.535(,i)C 2.535(ta)-2.535 G .035(ssumes that the)-2.535 F -(shell is running in an Emacs shell b)144 516 Q(uf)-.2 E -(fer and disables line editing.)-.25 E F1(ENV)108 528 Q F0(Similar to) -144 528 Q F3 -.27(BA)2.5 G(SH_ENV).27 E F5(;)A F0 +(shell is running in an Emacs shell b)144 564 Q(uf)-.2 E +(fer and disables line editing.)-.25 E F1(ENV)108 576 Q F0(Similar to) +144 576 Q F3 -.27(BA)2.5 G(SH_ENV).27 E F5(;)A F0 (used when the shell is in)2.25 E -.2(vo)-.4 G -.1(ke).2 G 2.5(di).1 G -(n)-2.5 E F2(posix mode)2.5 E F0(.)A F1(EXECIGNORE)108 540 Q F0 2.716 -(Ac)144 552 S .216(olon-separated list of shell patterns \(see)-2.716 F +(n)-2.5 E F2(posix mode)2.5 E F0(.)A F1(EXECIGNORE)108 588 Q F0 2.716 +(Ac)144 600 S .216(olon-separated list of shell patterns \(see)-2.716 F F1 -.1(Pa)2.717 G(tter).1 E 2.717(nM)-.15 G(atching)-2.717 E F0 2.717 (\)d)C .217(e\214ning the list of \214lenames to be)-2.717 F .117 -(ignored by command search using)144 564 R F1 -.74(PA)2.617 G(TH)-.21 E +(ignored by command search using)144 612 R F1 -.74(PA)2.617 G(TH)-.21 E F0 5.117(.F)C .116 (iles whose full pathnames match one of these patterns)-5.117 F 1.432 -(are not considered e)144 576 R -.15(xe)-.15 G 1.432 +(are not considered e)144 624 R -.15(xe)-.15 G 1.432 (cutable \214les for the purposes of completion and command e).15 F -.15 -(xe)-.15 G 1.433(cution via).15 F F1 -.74(PA)144 588 S(TH)-.21 E F0 +(xe)-.15 G 1.433(cution via).15 F F1 -.74(PA)144 636 S(TH)-.21 E F0 2.909(lookup. This)2.909 F .408(does not af)2.908 F .408(fect the beha) -.25 F .408(vior of the)-.2 F F1([)2.908 E F0(,)A F1(test)2.908 E F0 2.908(,a)C(nd)-2.908 E F1([[)2.908 E F0 2.908(commands. Full)2.908 F (pathnames)2.908 E .364(in the command hash table are not subject to)144 -600 R F1(EXECIGNORE)2.864 E F0 5.364(.U)C .364(se this v)-5.364 F .364 -(ariable to ignore shared)-.25 F 1.37(library \214les that ha)144 612 R +648 R F1(EXECIGNORE)2.864 E F0 5.364(.U)C .364(se this v)-5.364 F .364 +(ariable to ignore shared)-.25 F 1.37(library \214les that ha)144 660 R 1.67 -.15(ve t)-.2 H 1.37(he e).15 F -.15(xe)-.15 G 1.37 (cutable bit set, b).15 F 1.37(ut are not e)-.2 F -.15(xe)-.15 G 1.37 (cutable \214les.).15 F 1.37(The pattern matching)6.37 F -(honors the setting of the)144 624 Q F1(extglob)2.5 E F0(shell option.) -2.5 E F1(FCEDIT)108 636 Q F0(The def)144 648 Q(ault editor for the)-.1 E -F1(fc)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 E F1(FIGNORE)108 660 Q F0 -2.598(Ac)144 672 S .098(olon-separated list of suf)-2.598 F<8c78>-.25 E -.098(es to ignore when performing \214lename completion \(see)-.15 F F3 -(READLINE)2.599 E F0(belo)144 684 Q 2.705(w\). A)-.25 F .205 -(\214lename whose suf)2.705 F .205(\214x matches one of the entries in) --.25 F F3(FIGNORE)2.705 E F0 .205(is e)2.455 F .204 -(xcluded from the list)-.15 F(of matched \214lenames.)144 696 Q 2.5(As)5 -G(ample v)-2.5 E(alue is)-.25 E F4(".o:~")2.5 E F0(.)A(GNU Bash 5.0)72 -768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(15)185.545 E 0 Cg -EP +(honors the setting of the)144 672 Q F1(extglob)2.5 E F0(shell option.) +2.5 E F1(FCEDIT)108 684 Q F0(The def)144 696 Q(ault editor for the)-.1 E +F1(fc)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 E(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(15)190.95 E 0 Cg EP %%Page: 16 16 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(FUNCNEST)108 84 Q F0 .23(If set to a numeric v)144 96 R .231 +SF(FIGNORE)108 84 Q F0 2.598(Ac)144 96 S .098 +(olon-separated list of suf)-2.598 F<8c78>-.25 E .098 +(es to ignore when performing \214lename completion \(see)-.15 F/F2 9 +/Times-Bold@0 SF(READLINE)2.599 E F0(belo)144 108 Q 2.705(w\). A)-.25 F +.205(\214lename whose suf)2.705 F .205 +(\214x matches one of the entries in)-.25 F F2(FIGNORE)2.705 E F0 .205 +(is e)2.455 F .204(xcluded from the list)-.15 F(of matched \214lenames.) +144 120 Q 2.5(As)5 G(ample v)-2.5 E(alue is)-.25 E/F3 10/Courier@0 SF +(".o:~")2.5 E F0(.)A F1(FUNCNEST)108 132 Q F0 .23(If set to a numeric v) +144 144 R .231 (alue greater than 0, de\214nes a maximum function nesting le)-.25 F -.15(ve)-.25 G 2.731(l. Function).15 F(in)2.731 E -.2(vo)-.4 G(-).2 E -(cations that e)144 108 Q(xceed this nesting le)-.15 E -.15(ve)-.25 G +(cations that e)144 156 Q(xceed this nesting le)-.15 E -.15(ve)-.25 G 2.5(lw).15 G(ill cause the current command to abort.)-2.5 E F1 -(GLOBIGNORE)108 120 Q F0 2.924(Ac)144 132 S .423(olon-separated list of\ +(GLOBIGNORE)108 168 Q F0 2.924(Ac)144 180 S .423(olon-separated list of\ patterns de\214ning the set of \214le names to be ignored by pathname \ -e)-2.924 F(xpan-)-.15 E 2.947(sion. If)144 144 R 2.947<618c>2.947 G .447 +e)-2.924 F(xpan-)-.15 E 2.947(sion. If)144 192 R 2.947<618c>2.947 G .447 (le name matched by a pathname e)-2.947 F .448 -(xpansion pattern also matches one of the patterns in)-.15 F/F2 9 -/Times-Bold@0 SF(GLOBIGNORE)144 156 Q/F3 9/Times-Roman@0 SF(,)A F0 -(it is remo)2.25 E -.15(ve)-.15 G 2.5(df).15 G(rom the list of matches.) --2.5 E F1(HISTCONTR)108 168 Q(OL)-.3 E F0 2.654(Ac)144 180 S .153 +(xpansion pattern also matches one of the patterns in)-.15 F F2 +(GLOBIGNORE)144 204 Q/F4 9/Times-Roman@0 SF(,)A F0(it is remo)2.25 E +-.15(ve)-.15 G 2.5(df).15 G(rom the list of matches.)-2.5 E F1 +(HISTCONTR)108 216 Q(OL)-.3 E F0 2.654(Ac)144 228 S .153 (olon-separated list of v)-2.654 F .153(alues controlling ho)-.25 F 2.653(wc)-.25 G .153(ommands are sa)-2.653 F -.15(ve)-.2 G 2.653(do).15 G 2.653(nt)-2.653 G .153(he history list.)-2.653 F .153(If the list) -5.153 F .49(of v)144 192 R .49(alues includes)-.25 F/F4 10 +5.153 F .49(of v)144 240 R .49(alues includes)-.25 F/F5 10 /Times-Italic@0 SF(ignor)3 E(espace)-.37 E F0 2.99(,l).18 G .49 (ines which be)-2.99 F .49(gin with a)-.15 F F1(space)2.99 E F0 .49 (character are not sa)2.99 F -.15(ve)-.2 G 2.99(di).15 G 2.99(nt)-2.99 G -.49(he his-)-2.99 F .558(tory list.)144 204 R 3.058(Av)5.558 G .558 -(alue of)-3.308 F F4(ignor)3.068 E(edups)-.37 E F0 .558 +.49(he his-)-2.99 F .558(tory list.)144 252 R 3.058(Av)5.558 G .558 +(alue of)-3.308 F F5(ignor)3.068 E(edups)-.37 E F0 .558 (causes lines matching the pre)3.328 F .557 (vious history entry to not be sa)-.25 F -.15(ve)-.2 G(d.).15 E 2.925 -(Av)144 216 S .425(alue of)-3.175 F F4(ignor)2.935 E(eboth)-.37 E F0 -.426(is shorthand for)3.205 F F4(ignor)2.926 E(espace)-.37 E F0(and) -2.926 E F4(ignor)2.926 E(edups)-.37 E F0 5.426(.A)C -.25(va)-2.5 G .426 -(lue of).25 F F4(er)3.116 E(asedups)-.15 E F0(causes)3.196 E .699 -(all pre)144 228 R .698 +(Av)144 264 S .425(alue of)-3.175 F F5(ignor)2.935 E(eboth)-.37 E F0 +.426(is shorthand for)3.205 F F5(ignor)2.926 E(espace)-.37 E F0(and) +2.926 E F5(ignor)2.926 E(edups)-.37 E F0 5.426(.A)C -.25(va)-2.5 G .426 +(lue of).25 F F5(er)3.116 E(asedups)-.15 E F0(causes)3.196 E .699 +(all pre)144 276 R .698 (vious lines matching the current line to be remo)-.25 F -.15(ve)-.15 G 3.198(df).15 G .698(rom the history list before that line is)-3.198 F -(sa)144 240 Q -.15(ve)-.2 G 2.763(d. An).15 F 2.763(yv)-.15 G .263 +(sa)144 288 Q -.15(ve)-.2 G 2.763(d. An).15 F 2.763(yv)-.15 G .263 (alue not in the abo)-3.013 F .563 -.15(ve l)-.15 H .263 (ist is ignored.).15 F(If)5.263 E F2(HISTCONTR)2.763 E(OL)-.27 E F0 .264 -(is unset, or does not include)2.513 F 2.942(av)144 252 S .442(alid v) +(is unset, or does not include)2.513 F 2.942(av)144 300 S .442(alid v) -3.192 F .442(alue, all lines read by the shell parser are sa)-.25 F -.15(ve)-.2 G 2.941(do).15 G 2.941(nt)-2.941 G .441 (he history list, subject to the v)-2.941 F .441(alue of)-.25 F F2 -(HISTIGNORE)144 264 Q F3(.)A F0 1.981(The second and subsequent lines o\ +(HISTIGNORE)144 312 Q F4(.)A F0 1.981(The second and subsequent lines o\ f a multi-line compound command are not)6.481 F -(tested, and are added to the history re)144 276 Q -.05(ga)-.15 G -(rdless of the v).05 E(alue of)-.25 E F2(HISTCONTR)2.5 E(OL)-.27 E F3(.) -A F1(HISTFILE)108 288 Q F0 .181 -(The name of the \214le in which command history is sa)144 300 R -.15 +(tested, and are added to the history re)144 324 Q -.05(ga)-.15 G +(rdless of the v).05 E(alue of)-.25 E F2(HISTCONTR)2.5 E(OL)-.27 E F4(.) +A F1(HISTFILE)108 336 Q F0 .181 +(The name of the \214le in which command history is sa)144 348 R -.15 (ve)-.2 G 2.681(d\().15 G(see)-2.681 E F2(HIST)2.681 E(OR)-.162 E(Y) -.315 E F0(belo)2.431 E 2.681(w\). The)-.25 F(def)2.681 E .181(ault v) --.1 F(alue)-.25 E(is)144 312 Q F4(~/.bash_history)2.5 E F0 5(.I)C 2.5 +-.1 F(alue)-.25 E(is)144 360 Q F5(~/.bash_history)2.5 E F0 5(.I)C 2.5 (fu)-5 G(nset, the command history is not sa)-2.5 E -.15(ve)-.2 G 2.5 -(dw).15 G(hen a shell e)-2.5 E(xits.)-.15 E F1(HISTFILESIZE)108 324 Q F0 +(dw).15 G(hen a shell e)-2.5 E(xits.)-.15 E F1(HISTFILESIZE)108 372 Q F0 1.622(The maximum number of lines contained in the history \214le.)144 -336 R 1.623(When this v)6.623 F 1.623(ariable is assigned a)-.25 F -.25 -(va)144 348 S .125(lue, the history \214le is truncated, if necessary) +384 R 1.623(When this v)6.623 F 1.623(ariable is assigned a)-.25 F -.25 +(va)144 396 S .125(lue, the history \214le is truncated, if necessary) .25 F 2.625(,t)-.65 G 2.624(oc)-2.625 G .124 -(ontain no more than that number of lines by re-)-2.624 F(mo)144 360 Q +(ontain no more than that number of lines by re-)-2.624 F(mo)144 408 Q .065(ving the oldest entries.)-.15 F .066(The history \214le is also tr\ uncated to this size after writing it when a shell)5.065 F -.15(ex)144 -372 S 2.928(its. If).15 F .428(the v)2.928 F .428 +420 S 2.928(its. If).15 F .428(the v)2.928 F .428 (alue is 0, the history \214le is truncated to zero size.)-.25 F .427 -(Non-numeric v)5.427 F .427(alues and numeric)-.25 F -.25(va)144 384 S +(Non-numeric v)5.427 F .427(alues and numeric)-.25 F -.25(va)144 432 S .152(lues less than zero inhibit truncation.).25 F .152 (The shell sets the def)5.152 F .152(ault v)-.1 F .152(alue to the v) -.25 F .152(alue of)-.25 F F1(HISTSIZE)2.652 E F0(after reading an)144 -396 Q 2.5(ys)-.15 G(tartup \214les.)-2.5 E F1(HISTIGNORE)108 408 Q F0 -2.658(Ac)144 420 S .158(olon-separated list of patterns used to decide \ +444 Q 2.5(ys)-.15 G(tartup \214les.)-2.5 E F1(HISTIGNORE)108 456 Q F0 +2.658(Ac)144 468 S .158(olon-separated list of patterns used to decide \ which command lines should be sa)-2.658 F -.15(ve)-.2 G 2.657(do).15 G -2.657(nt)-2.657 G .157(he his-)-2.657 F .707(tory list.)144 432 R .707 +2.657(nt)-2.657 G .157(he his-)-2.657 F .707(tory list.)144 480 R .707 (Each pattern is anchored at the be)5.707 F .708 (ginning of the line and must match the complete line)-.15 F .626 -(\(no implicit `)144 444 R F1(*)A F0 3.126('i)C 3.126(sa)-3.126 G 3.126 +(\(no implicit `)144 492 R F1(*)A F0 3.126('i)C 3.126(sa)-3.126 G 3.126 (ppended\). Each)-3.126 F .626(pattern is tested ag)3.126 F .625 (ainst the line after the checks speci\214ed by)-.05 F F2(HISTCONTR)144 -456 Q(OL)-.27 E F0 1.793(are applied.)4.043 F 1.793 +504 Q(OL)-.27 E F0 1.793(are applied.)4.043 F 1.793 (In addition to the normal shell pattern matching characters, `)6.793 F -F1(&)A F0(')A 1.44(matches the pre)144 468 R 1.44(vious history line.) +F1(&)A F0(')A 1.44(matches the pre)144 516 R 1.44(vious history line.) -.25 F(`)6.44 E F1(&)A F0 3.94('m)C 1.44 (ay be escaped using a backslash; the backslash is re-)-3.94 F(mo)144 -480 Q -.15(ve)-.15 G 3.95(db).15 G 1.45(efore attempting a match.)-3.95 +528 Q -.15(ve)-.15 G 3.95(db).15 G 1.45(efore attempting a match.)-3.95 F 1.45(The second and subsequent lines of a multi-line compound)6.45 F -1.269(command are not tested, and are added to the history re)144 492 R +1.269(command are not tested, and are added to the history re)144 540 R -.05(ga)-.15 G 1.269(rdless of the v).05 F 1.269(alue of)-.25 F F2 -(HISTIGNORE)3.769 E F3(.)A F0 -(The pattern matching honors the setting of the)144 504 Q F1(extglob)2.5 -E F0(shell option.)2.5 E F1(HISTSIZE)108 516 Q F0 1.387 -(The number of commands to remember in the command history \(see)144 528 +(HISTIGNORE)3.769 E F4(.)A F0 +(The pattern matching honors the setting of the)144 552 Q F1(extglob)2.5 +E F0(shell option.)2.5 E F1(HISTSIZE)108 564 Q F0 1.387 +(The number of commands to remember in the command history \(see)144 576 R F2(HIST)3.887 E(OR)-.162 E(Y)-.315 E F0(belo)3.637 E 3.887(w\). If) --.25 F(the)3.888 E -.25(va)144 540 S .413(lue is 0, commands are not sa) +-.25 F(the)3.888 E -.25(va)144 588 S .413(lue is 0, commands are not sa) .25 F -.15(ve)-.2 G 2.913(di).15 G 2.913(nt)-2.913 G .413 (he history list.)-2.913 F .413(Numeric v)5.413 F .412 (alues less than zero result in e)-.25 F(v-)-.25 E .343 -(ery command being sa)144 552 R -.15(ve)-.2 G 2.843(do).15 G 2.843(nt) +(ery command being sa)144 600 R -.15(ve)-.2 G 2.843(do).15 G 2.843(nt) -2.843 G .343(he history list \(there is no limit\).)-2.843 F .344 (The shell sets the def)5.343 F .344(ault v)-.1 F .344(alue to)-.25 F -(500 after reading an)144 564 Q 2.5(ys)-.15 G(tartup \214les.)-2.5 E F1 -(HISTTIMEFORMA)108 576 Q(T)-.95 E F0 .952(If this v)144 588 R .952 +(500 after reading an)144 612 Q 2.5(ys)-.15 G(tartup \214les.)-2.5 E F1 +(HISTTIMEFORMA)108 624 Q(T)-.95 E F0 .952(If this v)144 636 R .952 (ariable is set and not null, its v)-.25 F .951 -(alue is used as a format string for)-.25 F F4(strftime)3.451 E F0 .951 +(alue is used as a format string for)-.25 F F5(strftime)3.451 E F0 .951 (\(3\) to print the)B .672 -(time stamp associated with each history entry displayed by the)144 600 +(time stamp associated with each history entry displayed by the)144 648 R F1(history)3.173 E F0 -.2(bu)3.173 G 3.173(iltin. If).2 F .673(this v) 3.173 F .673(ariable is)-.25 F .144 -(set, time stamps are written to the history \214le so the)144 612 R +(set, time stamps are written to the history \214le so the)144 660 R 2.644(ym)-.15 G .144(ay be preserv)-2.644 F .144 (ed across shell sessions.)-.15 F(This)5.144 E(uses the history comment\ - character to distinguish timestamps from other history lines.)144 624 Q -F1(HOME)108 636 Q F0 1.27 -(The home directory of the current user; the def)144 648 R 1.27(ault ar) + character to distinguish timestamps from other history lines.)144 672 Q +F1(HOME)108 684 Q F0 1.27 +(The home directory of the current user; the def)144 696 R 1.27(ault ar) -.1 F 1.27(gument for the)-.18 F F1(cd)3.77 E F0 -.2(bu)3.77 G 1.27 -(iltin command.).2 F(The)6.27 E -.25(va)144 660 S(lue of this v).25 E -(ariable is also used when performing tilde e)-.25 E(xpansion.)-.15 E F1 -(HOSTFILE)108 672 Q F0 1.015 -(Contains the name of a \214le in the same format as)144 684 R F4 -(/etc/hosts)5.181 E F0 1.015(that should be read when the shell)5.181 F -.55(needs to complete a hostname.)144 696 R .551 -(The list of possible hostname completions may be changed while)5.551 F -1.059(the shell is running; the ne)144 708 R 1.059 -(xt time hostname completion is attempted after the v)-.15 F 1.058 -(alue is changed,)-.25 F F1(bash)144 720 Q F0 .138 -(adds the contents of the ne)2.638 F 2.638<778c>-.25 G .138(le to the e) --2.638 F .138(xisting list.)-.15 F(If)5.138 E F2(HOSTFILE)2.638 E F0 -.138(is set, b)2.388 F .139(ut has no v)-.2 F .139(alue, or)-.25 F -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(16)185.545 E 0 Cg EP +(iltin command.).2 F(The)6.27 E -.25(va)144 708 S(lue of this v).25 E +(ariable is also used when performing tilde e)-.25 E(xpansion.)-.15 E +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(16)190.95 E 0 Cg EP %%Page: 17 17 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .518 -(does not name a readable \214le,)144 84 R/F1 10/Times-Bold@0 SF(bash) -3.018 E F0 .518(attempts to read)3.018 F/F2 10/Times-Italic@0 SF -(/etc/hosts)4.683 E F0 .517(to obtain the list of possible host-)4.683 F -(name completions.)144 96 Q(When)5 E/F3 9/Times-Bold@0 SF(HOSTFILE)2.5 E -F0(is unset, the hostname list is cleared.)2.25 E F1(IFS)108 108 Q F0 -(The)144 108 Q F2 .555(Internal F)3.635 F .555(ield Separ)-.45 F(ator) --.15 E F0 .555(that is used for w)3.785 F .556(ord splitting after e)-.1 -F .556(xpansion and to split lines into)-.15 F -.1(wo)144 120 S -(rds with the).1 E F1 -.18(re)2.5 G(ad).18 E F0 -.2(bu)2.5 G -(iltin command.).2 E(The def)5 E(ault v)-.1 E(alue is `)-.25 E -(`')-.25 E('.)-.74 E F1(IGNOREEOF)108 132 Q -F0 .503(Controls the action of an interacti)144 144 R .803 -.15(ve s) --.25 H .503(hell on receipt of an).15 F F3(EOF)3.003 E F0 .503 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(HOSTFILE)108 84 Q F0 1.015 +(Contains the name of a \214le in the same format as)144 96 R/F2 10 +/Times-Italic@0 SF(/etc/hosts)5.181 E F0 1.015 +(that should be read when the shell)5.181 F .55 +(needs to complete a hostname.)144 108 R .551 +(The list of possible hostname completions may be changed while)5.551 F +1.059(the shell is running; the ne)144 120 R 1.059 +(xt time hostname completion is attempted after the v)-.15 F 1.058 +(alue is changed,)-.25 F F1(bash)144 132 Q F0 .138 +(adds the contents of the ne)2.638 F 2.638<778c>-.25 G .138(le to the e) +-2.638 F .138(xisting list.)-.15 F(If)5.138 E/F3 9/Times-Bold@0 SF +(HOSTFILE)2.638 E F0 .138(is set, b)2.388 F .139(ut has no v)-.2 F .139 +(alue, or)-.25 F .518(does not name a readable \214le,)144 144 R F1 +(bash)3.018 E F0 .518(attempts to read)3.018 F F2(/etc/hosts)4.683 E F0 +.517(to obtain the list of possible host-)4.683 F(name completions.)144 +156 Q(When)5 E F3(HOSTFILE)2.5 E F0 +(is unset, the hostname list is cleared.)2.25 E F1(IFS)108 168 Q F0(The) +144 168 Q F2 .555(Internal F)3.635 F .555(ield Separ)-.45 F(ator)-.15 E +F0 .555(that is used for w)3.785 F .556(ord splitting after e)-.1 F .556 +(xpansion and to split lines into)-.15 F -.1(wo)144 180 S(rds with the) +.1 E F1 -.18(re)2.5 G(ad).18 E F0 -.2(bu)2.5 G(iltin command.).2 E +(The def)5 E(ault v)-.1 E(alue is `)-.25 E(`')-.25 E('.)-.74 E F1(IGNOREEOF)108 192 Q F0 .503 +(Controls the action of an interacti)144 204 R .803 -.15(ve s)-.25 H +.503(hell on receipt of an).15 F F3(EOF)3.003 E F0 .503 (character as the sole input.)2.753 F .503(If set,)5.503 F .426(the v) -144 156 R .426(alue is the number of consecuti)-.25 F -.15(ve)-.25 G F3 +144 216 R .426(alue is the number of consecuti)-.25 F -.15(ve)-.25 G F3 (EOF)3.076 E F0 .426 (characters which must be typed as the \214rst characters)2.676 F .303 -(on an input line before)144 168 R F1(bash)2.802 E F0 -.15(ex)2.802 G +(on an input line before)144 228 R F1(bash)2.802 E F0 -.15(ex)2.802 G 2.802(its. If).15 F .302(the v)2.802 F .302(ariable e)-.25 F .302 (xists b)-.15 F .302(ut does not ha)-.2 F .602 -.15(ve a n)-.2 H .302 -(umeric v).15 F .302(alue, or has)-.25 F(no v)144 180 Q(alue, the def) +(umeric v).15 F .302(alue, or has)-.25 F(no v)144 240 Q(alue, the def) -.25 E(ault v)-.1 E(alue is 10.)-.25 E(If it does not e)5 E(xist,)-.15 E F3(EOF)2.5 E F0(signi\214es the end of input to the shell.)2.25 E F1 -(INPUTRC)108 192 Q F0 .26(The \214lename for the)144 204 R F1 -.18(re) +(INPUTRC)108 252 Q F0 .26(The \214lename for the)144 264 R F1 -.18(re) 2.76 G(adline).18 E F0 .26(startup \214le, o)2.76 F -.15(ve)-.15 G .26 (rriding the def).15 F .261(ault of)-.1 F F2(~/.inputr)4.427 E(c)-.37 E -F0(\(see)4.427 E F3(READLINE)2.761 E F0(be-)2.511 E(lo)144 216 Q(w\).) --.25 E F1(INSIDE_EMA)108 228 Q(CS)-.55 E F0 .034(If this v)144 240 R +F0(\(see)4.427 E F3(READLINE)2.761 E F0(be-)2.511 E(lo)144 276 Q(w\).) +-.25 E F1(INSIDE_EMA)108 288 Q(CS)-.55 E F0 .034(If this v)144 300 R .034(ariable appears in the en)-.25 F .034 (vironment when the shell starts,)-.4 F F1(bash)2.533 E F0 .033 -(assumes that it is running in-)2.533 F(side an Emacs shell b)144 252 Q +(assumes that it is running in-)2.533 F(side an Emacs shell b)144 312 Q (uf)-.2 E(fer and may disable line editing, depending on the v)-.25 E -(alue of)-.25 E F1(TERM)2.5 E F0(.)A F1(LANG)108 264 Q F0 1.239 -(Used to determine the locale cate)144 264 R 1.239(gory for an)-.15 F +(alue of)-.25 E F1(TERM)2.5 E F0(.)A F1(LANG)108 324 Q F0 1.239 +(Used to determine the locale cate)144 324 R 1.239(gory for an)-.15 F 3.739(yc)-.15 G(ate)-3.739 E 1.24 (gory not speci\214cally selected with a v)-.15 F(ariable)-.25 E -(starting with)144 276 Q F1(LC_)2.5 E F0(.)A F1(LC_ALL)108 288 Q F0 .974 -(This v)144 300 R .974(ariable o)-.25 F -.15(ve)-.15 G .974 +(starting with)144 336 Q F1(LC_)2.5 E F0(.)A F1(LC_ALL)108 348 Q F0 .974 +(This v)144 360 R .974(ariable o)-.25 F -.15(ve)-.15 G .974 (rrides the v).15 F .973(alue of)-.25 F F3(LANG)3.473 E F0 .973(and an) 3.223 F 3.473(yo)-.15 G(ther)-3.473 E F1(LC_)3.473 E F0 -.25(va)3.473 G -.973(riable specifying a locale cate-).25 F(gory)144 312 Q(.)-.65 E F1 -(LC_COLLA)108 324 Q(TE)-.95 E F0 .411(This v)144 336 R .412(ariable det\ +.973(riable specifying a locale cate-).25 F(gory)144 372 Q(.)-.65 E F1 +(LC_COLLA)108 384 Q(TE)-.95 E F0 .411(This v)144 396 R .412(ariable det\ ermines the collation order used when sorting the results of pathname e) --.25 F(xpansion,)-.15 E 1.465(and determines the beha)144 348 R 1.465 +-.25 F(xpansion,)-.15 E 1.465(and determines the beha)144 408 R 1.465 (vior of range e)-.2 F 1.464(xpressions, equi)-.15 F -.25(va)-.25 G 1.464(lence classes, and collating sequences).25 F(within pathname e)144 -360 Q(xpansion and pattern matching.)-.15 E F1(LC_CTYPE)108 372 Q F0 -1.935(This v)144 384 R 1.936 +420 Q(xpansion and pattern matching.)-.15 E F1(LC_CTYPE)108 432 Q F0 +1.935(This v)144 444 R 1.936 (ariable determines the interpretation of characters and the beha)-.25 F -1.936(vior of character classes)-.2 F(within pathname e)144 396 Q -(xpansion and pattern matching.)-.15 E F1(LC_MESSA)108 408 Q(GES)-.55 E -F0(This v)144 420 Q(ariable determines the locale used to translate dou\ +1.936(vior of character classes)-.2 F(within pathname e)144 456 Q +(xpansion and pattern matching.)-.15 E F1(LC_MESSA)108 468 Q(GES)-.55 E +F0(This v)144 480 Q(ariable determines the locale used to translate dou\ ble-quoted strings preceded by a)-.25 E F1($)2.5 E F0(.)A F1(LC_NUMERIC) -108 432 Q F0(This v)144 444 Q(ariable determines the locale cate)-.25 E -(gory used for number formatting.)-.15 E F1(LC_TIME)108 456 Q F0(This v) -144 468 Q(ariable determines the locale cate)-.25 E -(gory used for data and time formatting.)-.15 E F1(LINES)108 480 Q F0 -.055(Used by the)144 480 R F1(select)2.555 E F0 .054(compound command t\ +108 492 Q F0(This v)144 504 Q(ariable determines the locale cate)-.25 E +(gory used for number formatting.)-.15 E F1(LC_TIME)108 516 Q F0(This v) +144 528 Q(ariable determines the locale cate)-.25 E +(gory used for data and time formatting.)-.15 E F1(LINES)108 540 Q F0 +.055(Used by the)144 540 R F1(select)2.555 E F0 .054(compound command t\ o determine the column length for printing selection lists.)2.555 F .264 -(Automatically set if the)144 492 R F1(checkwinsize)2.764 E F0 .264 +(Automatically set if the)144 552 R F1(checkwinsize)2.764 E F0 .264 (option is enabled or in an interacti)2.764 F .565 -.15(ve s)-.25 H .265 -(hell upon receipt of a).15 F F3(SIGWINCH)144 504 Q/F4 9/Times-Roman@0 -SF(.)A F1(MAIL)108 516 Q F0 .422 -(If this parameter is set to a \214le or directory name and the)144 516 +(hell upon receipt of a).15 F F3(SIGWINCH)144 564 Q/F4 9/Times-Roman@0 +SF(.)A F1(MAIL)108 576 Q F0 .422 +(If this parameter is set to a \214le or directory name and the)144 576 R F3(MAILP)2.921 E -.855(AT)-.666 G(H).855 E F0 -.25(va)2.671 G .421 (riable is not set,).25 F F1(bash)2.921 E F0(in-)2.921 E -(forms the user of the arri)144 528 Q -.25(va)-.25 G 2.5(lo).25 G 2.5 +(forms the user of the arri)144 588 Q -.25(va)-.25 G 2.5(lo).25 G 2.5 (fm)-2.5 G(ail in the speci\214ed \214le or Maildir)-2.5 E -(-format directory)-.2 E(.)-.65 E F1(MAILCHECK)108 540 Q F0 .098 -(Speci\214es ho)144 552 R 2.598(wo)-.25 G .098(ften \(in seconds\)) +(-format directory)-.2 E(.)-.65 E F1(MAILCHECK)108 600 Q F0 .098 +(Speci\214es ho)144 612 R 2.598(wo)-.25 G .098(ften \(in seconds\)) -2.598 F F1(bash)2.598 E F0 .098(checks for mail.)2.598 F .098(The def) 5.098 F .098(ault is 60 seconds.)-.1 F .099(When it is time)5.099 F .224 (to check for mail, the shell does so before displaying the primary pro\ -mpt.)144 564 R .223(If this v)5.223 F .223(ariable is unset,)-.25 F -(or set to a v)144 576 Q(alue that is not a number greater than or equa\ -l to zero, the shell disables mail checking.)-.25 E F1(MAILP)108 588 Q --.95(AT)-.74 G(H).95 E F0 2.99(Ac)144 600 S .49 +mpt.)144 624 R .223(If this v)5.223 F .223(ariable is unset,)-.25 F +(or set to a v)144 636 Q(alue that is not a number greater than or equa\ +l to zero, the shell disables mail checking.)-.25 E F1(MAILP)108 648 Q +-.95(AT)-.74 G(H).95 E F0 2.99(Ac)144 660 S .49 (olon-separated list of \214lenames to be check)-2.99 F .49 (ed for mail.)-.1 F .49(The message to be printed when mail)5.49 F(arri) -144 612 Q -.15(ve)-.25 G 2.62(si).15 G 2.62(nap)-2.62 G .12(articular \ +144 672 Q -.15(ve)-.25 G 2.62(si).15 G 2.62(nap)-2.62 G .12(articular \ \214le may be speci\214ed by separating the \214lename from the message\ - with a `?'.)-2.62 F(When used in the te)144 624 Q(xt of the message,) + with a `?'.)-2.62 F(When used in the te)144 684 Q(xt of the message,) -.15 E F1($_)2.5 E F0 -.15(ex)2.5 G (pands to the name of the current mail\214le.).15 E(Example:)5 E F1 -(MAILP)144 636 Q -.95(AT)-.74 G(H).95 E F0(=\010/v)A(ar/mail/bfox?"Y) +(MAILP)144 696 Q -.95(AT)-.74 G(H).95 E F0(=\010/v)A(ar/mail/bfox?"Y) -.25 E(ou ha)-1.1 E .3 -.15(ve m)-.2 H -(ail":~/shell\255mail?"$_ has mail!"\010).15 E F1(Bash)144 648 Q F0 .015 +(ail":~/shell\255mail?"$_ has mail!"\010).15 E F1(Bash)144 708 Q F0 .015 (can be con\214gured to supply a def)2.515 F .015(ault v)-.1 F .015 (alue for this v)-.25 F .015(ariable \(there is no v)-.25 F .015 (alue by def)-.25 F .015(ault\), b)-.1 F(ut)-.2 E(the location of the u\ -ser mail \214les that it uses is system dependent \(e.g., /v)144 660 Q -(ar/mail/)-.25 E F1($USER)A F0(\).)A F1(OPTERR)108 672 Q F0 .39 -(If set to the v)144 684 R .39(alue 1,)-.25 F F1(bash)2.89 E F0 .389 -(displays error messages generated by the)2.889 F F1(getopts)2.889 E F0 --.2(bu)2.889 G .389(iltin command \(see).2 F F3 .359(SHELL B)144 696 R -(UIL)-.09 E .359(TIN COMMANDS)-.828 F F0(belo)2.609 E(w\).)-.25 E F3 -(OPTERR)5.359 E F0 .36(is initialized to 1 each time the shell is in) -2.609 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E(or a shell script is e)144 708 Q --.15(xe)-.15 G(cuted.).15 E(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15 -(ve)-.15 G(mber 26).15 E(17)185.545 E 0 Cg EP +ser mail \214les that it uses is system dependent \(e.g., /v)144 720 Q +(ar/mail/)-.25 E F1($USER)A F0(\).)A(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(17)190.95 E 0 Cg EP %%Page: 18 18 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF -.74(PA)108 84 S(TH)-.21 E F0 .588(The search path for commands.)144 -84 R .587 +SF(OPTERR)108 84 Q F0 .39(If set to the v)144 96 R .39(alue 1,)-.25 F F1 +(bash)2.89 E F0 .389(displays error messages generated by the)2.889 F F1 +(getopts)2.889 E F0 -.2(bu)2.889 G .389(iltin command \(see).2 F/F2 9 +/Times-Bold@0 SF .359(SHELL B)144 108 R(UIL)-.09 E .359(TIN COMMANDS) +-.828 F F0(belo)2.609 E(w\).)-.25 E F2(OPTERR)5.359 E F0 .36 +(is initialized to 1 each time the shell is in)2.609 F -.2(vo)-.4 G -.1 +(ke).2 G(d).1 E(or a shell script is e)144 120 Q -.15(xe)-.15 G(cuted.) +.15 E F1 -.74(PA)108 132 S(TH)-.21 E F0 .588 +(The search path for commands.)144 132 R .587 (It is a colon-separated list of directories in which the shell looks) -5.588 F .471(for commands \(see)144 96 R/F2 9/Times-Bold@0 SF .471 -(COMMAND EXECUTION)2.971 F F0(belo)2.722 E 2.972(w\). A)-.25 F .472 -(zero-length \(null\) directory name in the)2.972 F -.25(va)144 108 S +5.588 F .471(for commands \(see)144 144 R F2 .471(COMMAND EXECUTION) +2.971 F F0(belo)2.722 E 2.972(w\). A)-.25 F .472 +(zero-length \(null\) directory name in the)2.972 F -.25(va)144 156 S .536(lue of).25 F F2 -.666(PA)3.036 G(TH)-.189 E F0 .535 (indicates the current directory)2.786 F 5.535(.A)-.65 G .535 (null directory name may appear as tw)-2.5 F 3.035(oa)-.1 G(djacent) --3.035 E .867(colons, or as an initial or trailing colon.)144 120 R .868 +-3.035 E .867(colons, or as an initial or trailing colon.)144 168 R .868 (The def)5.868 F .868(ault path is system-dependent, and is set by the) --.1 F(administrator who installs)144 132 Q F1(bash)2.5 E F0 5(.A)C +-.1 F(administrator who installs)144 180 Q F1(bash)2.5 E F0 5(.A)C (common v)-2.5 E(alue is)-.25 E/F3 10/Courier@0 SF (/usr/local/bin:/usr/lo-)2.5 E(cal/sbin:/usr/bin:/usr/sbin:/bin:/sbin) -144 144 Q F0(.)A F1(POSIXL)108 156 Q(Y_CORRECT)-.92 E F0 .471(If this v) -144 168 R .471(ariable is in the en)-.25 F .471(vironment when)-.4 F F1 +144 192 Q F0(.)A F1(POSIXL)108 204 Q(Y_CORRECT)-.92 E F0 .471(If this v) +144 216 R .471(ariable is in the en)-.25 F .471(vironment when)-.4 F F1 (bash)2.971 E F0 .471(starts, the shell enters)2.971 F/F4 10 /Times-Italic@0 SF .472(posix mode)2.972 F F0 .472(before reading)2.972 -F .011(the startup \214les, as if the)144 180 R F1(\255\255posix)2.511 E +F .011(the startup \214les, as if the)144 228 R F1(\255\255posix)2.511 E F0(in)2.511 E -.2(vo)-.4 G .011(cation option had been supplied.).2 F -.011(If it is set while the shell is)5.011 F(running,)144 192 Q F1(bash) +.011(If it is set while the shell is)5.011 F(running,)144 240 Q F1(bash) 4.497 E F0(enables)4.497 E F4 1.997(posix mode)4.497 F F0 4.497(,a)C 4.497(si)-4.497 G 4.497(ft)-4.497 G 1.997(he command)-4.497 F F3 1.997 (set -o posix)4.497 F F0 1.998(had been e)4.497 F -.15(xe)-.15 G(cuted.) -.15 E(When the shell enters)144 204 Q F4(posix mode)2.5 E F0 2.5(,i)C +.15 E(When the shell enters)144 252 Q F4(posix mode)2.5 E F0 2.5(,i)C 2.5(ts)-2.5 G(ets this v)-2.5 E(ariable if it w)-.25 E -(as not already set.)-.1 E F1(PR)108 216 Q(OMPT_COMMAND)-.3 E F0 -(If set, the v)144 228 Q(alue is e)-.25 E -.15(xe)-.15 G +(as not already set.)-.1 E F1(PR)108 264 Q(OMPT_COMMAND)-.3 E F0 +(If set, the v)144 276 Q(alue is e)-.25 E -.15(xe)-.15 G (cuted as a command prior to issuing each primary prompt.).15 E F1(PR) -108 240 Q(OMPT_DIR)-.3 E(TRIM)-.4 E F0 .676 -(If set to a number greater than zero, the v)144 252 R .676 +108 288 Q(OMPT_DIR)-.3 E(TRIM)-.4 E F0 .676 +(If set to a number greater than zero, the v)144 300 R .676 (alue is used as the number of trailing directory compo-)-.25 F .923 -(nents to retain when e)144 264 R .923(xpanding the)-.15 F F1(\\w)3.423 +(nents to retain when e)144 312 R .923(xpanding the)-.15 F F1(\\w)3.423 E F0(and)3.423 E F1(\\W)3.423 E F0 .923(prompt string escapes \(see) 3.423 F F2(PR)3.423 E(OMPTING)-.27 E F0(belo)3.173 E(w\).)-.25 E -(Characters remo)144 276 Q -.15(ve)-.15 G 2.5(da).15 G -(re replaced with an ellipsis.)-2.5 E F1(PS0)108 288 Q F0 1.174(The v) -144 288 R 1.174(alue of this parameter is e)-.25 F 1.174(xpanded \(see) +(Characters remo)144 324 Q -.15(ve)-.15 G 2.5(da).15 G +(re replaced with an ellipsis.)-2.5 E F1(PS0)108 336 Q F0 1.174(The v) +144 336 R 1.174(alue of this parameter is e)-.25 F 1.174(xpanded \(see) -.15 F F2(PR)3.674 E(OMPTING)-.27 E F0(belo)3.424 E 1.174 (w\) and displayed by interacti)-.25 F -.15(ve)-.25 G -(shells after reading a command and before the command is e)144 300 Q --.15(xe)-.15 G(cuted.).15 E F1(PS1)108 312 Q F0 .064(The v)144 312 R +(shells after reading a command and before the command is e)144 348 Q +-.15(xe)-.15 G(cuted.).15 E F1(PS1)108 360 Q F0 .064(The v)144 360 R .065(alue of this parameter is e)-.25 F .065(xpanded \(see)-.15 F F2(PR) 2.565 E(OMPTING)-.27 E F0(belo)2.315 E .065 -(w\) and used as the primary prompt)-.25 F 2.5(string. The)144 324 R +(w\) and used as the primary prompt)-.25 F 2.5(string. The)144 372 R (def)2.5 E(ault v)-.1 E(alue is `)-.25 E(`)-.74 E F1(\\s\255\\v\\$)A F0 --.74('')2.5 G(.).74 E F1(PS2)108 336 Q F0 .118(The v)144 336 R .118 +-.74('')2.5 G(.).74 E F1(PS2)108 384 Q F0 .118(The v)144 384 R .118 (alue of this parameter is e)-.25 F .118(xpanded as with)-.15 F F2(PS1) 2.617 E F0 .117(and used as the secondary prompt string.)2.367 F(The) -5.117 E(def)144 348 Q(ault is `)-.1 E(`)-.74 E F1(>)A F0 -.74('')2.5 G -(.).74 E F1(PS3)108 360 Q F0 1.115(The v)144 360 R 1.115 +5.117 E(def)144 396 Q(ault is `)-.1 E(`)-.74 E F1(>)A F0 -.74('')2.5 G +(.).74 E F1(PS3)108 408 Q F0 1.115(The v)144 408 R 1.115 (alue of this parameter is used as the prompt for the)-.25 F F1(select) 3.615 E F0 1.116(command \(see)3.616 F F2 1.116(SHELL GRAM-)3.616 F(MAR) -144 372 Q F0(abo)2.25 E -.15(ve)-.15 G(\).).15 E F1(PS4)108 384 Q F0 -.101(The v)144 384 R .101(alue of this parameter is e)-.25 F .101 +144 420 Q F0(abo)2.25 E -.15(ve)-.15 G(\).).15 E F1(PS4)108 432 Q F0 +.101(The v)144 432 R .101(alue of this parameter is e)-.25 F .101 (xpanded as with)-.15 F F2(PS1)2.6 E F0 .1(and the v)2.35 F .1 -(alue is printed before each command)-.25 F F1(bash)144 396 Q F0 .334 +(alue is printed before each command)-.25 F F1(bash)144 444 Q F0 .334 (displays during an e)2.834 F -.15(xe)-.15 G .335(cution trace.).15 F .335(The \214rst character of the e)5.335 F .335(xpanded v)-.15 F .335 (alue of)-.25 F F2(PS4)2.835 E F0 .335(is repli-)2.585 F -(cated multiple times, as necessary)144 408 Q 2.5(,t)-.65 G 2.5(oi)-2.5 +(cated multiple times, as necessary)144 456 Q 2.5(,t)-.65 G 2.5(oi)-2.5 G(ndicate multiple le)-2.5 E -.15(ve)-.25 G(ls of indirection.).15 E (The def)5 E(ault is `)-.1 E(`)-.74 E F1(+)A F0 -.74('')2.5 G(.).74 E F1 -(SHELL)108 420 Q F0 .543(This v)144 432 R .543(ariable e)-.25 F .543 +(SHELL)108 468 Q F0 .543(This v)144 480 R .543(ariable e)-.25 F .543 (xpands to the full pathname to the shell.)-.15 F .542 (If it is not set when the shell starts,)5.543 F F1(bash)3.042 E F0 -(assigns to it the full pathname of the current user')144 444 Q 2.5(sl) --.55 G(ogin shell.)-2.5 E F1(TIMEFORMA)108 456 Q(T)-.95 E F0 .826(The v) -144 468 R .826 +(assigns to it the full pathname of the current user')144 492 Q 2.5(sl) +-.55 G(ogin shell.)-2.5 E F1(TIMEFORMA)108 504 Q(T)-.95 E F0 .826(The v) +144 516 R .826 (alue of this parameter is used as a format string specifying ho)-.25 F 3.327(wt)-.25 G .827(he timing information for)-3.327 F .649 -(pipelines pre\214x)144 480 R .649(ed with the)-.15 F F1(time)3.149 E F0 +(pipelines pre\214x)144 528 R .649(ed with the)-.15 F F1(time)3.149 E F0 (reserv)3.149 E .649(ed w)-.15 F .648(ord should be displayed.)-.1 F (The)5.648 E F1(%)3.148 E F0 .648(character introduces)3.148 F .711 -(an escape sequence that is e)144 492 R .711(xpanded to a time v)-.15 F +(an escape sequence that is e)144 540 R .711(xpanded to a time v)-.15 F .712(alue or other information.)-.25 F .712(The escape sequences)5.712 F -(and their meanings are as follo)144 504 Q -(ws; the braces denote optional portions.)-.25 E F1(%%)144 522 Q F0 2.5 -(Al)194 522 S(iteral)-2.5 E F1(%)2.5 E F0(.)A F1(%[)144 534 Q F4(p)A F1 -(][l]R)A F0(The elapsed time in seconds.)194 534 Q F1(%[)144 546 Q F4(p) -A F1(][l]U)A F0(The number of CPU seconds spent in user mode.)194 546 Q -F1(%[)144 558 Q F4(p)A F1(][l]S)A F0 -(The number of CPU seconds spent in system mode.)194 558 Q F1(%P)144 570 -Q F0(The CPU percentage, computed as \(%U + %S\) / %R.)194 570 Q .87 -(The optional)144 586.8 R F4(p)3.37 E F0 .87(is a digit specifying the) +(and their meanings are as follo)144 552 Q +(ws; the braces denote optional portions.)-.25 E F1(%%)144 570 Q F0 2.5 +(Al)194 570 S(iteral)-2.5 E F1(%)2.5 E F0(.)A F1(%[)144 582 Q F4(p)A F1 +(][l]R)A F0(The elapsed time in seconds.)194 582 Q F1(%[)144 594 Q F4(p) +A F1(][l]U)A F0(The number of CPU seconds spent in user mode.)194 594 Q +F1(%[)144 606 Q F4(p)A F1(][l]S)A F0 +(The number of CPU seconds spent in system mode.)194 606 Q F1(%P)144 618 +Q F0(The CPU percentage, computed as \(%U + %S\) / %R.)194 618 Q .87 +(The optional)144 634.8 R F4(p)3.37 E F0 .87(is a digit specifying the) 3.37 F F4(pr)3.37 E(ecision)-.37 E F0 3.37(,t)C .87 (he number of fractional digits after a decimal)-3.37 F 2.525(point. A) -144 598.8 R -.25(va)2.525 G .025 +144 646.8 R -.25(va)2.525 G .025 (lue of 0 causes no decimal point or fraction to be output.).25 F .026 (At most three places after the)5.025 F .538 -(decimal point may be speci\214ed; v)144 610.8 R .538(alues of)-.25 F F4 +(decimal point may be speci\214ed; v)144 658.8 R .538(alues of)-.25 F F4 (p)3.038 E F0 .537(greater than 3 are changed to 3.)3.037 F(If)5.537 E -F4(p)3.037 E F0 .537(is not speci\214ed,)3.037 F(the v)144 622.8 Q -(alue 3 is used.)-.25 E .667(The optional)144 639.6 R F1(l)3.167 E F0 +F4(p)3.037 E F0 .537(is not speci\214ed,)3.037 F(the v)144 670.8 Q +(alue 3 is used.)-.25 E .667(The optional)144 687.6 R F1(l)3.167 E F0 .668(speci\214es a longer format, including minutes, of the form)3.168 F F4(MM)3.168 E F0(m)A F4(SS)A F0(.)A F4(FF)A F0 3.168(s. The)B -.25(va) -3.168 G(lue).25 E(of)144 651.6 Q F4(p)2.5 E F0 +3.168 G(lue).25 E(of)144 699.6 Q F4(p)2.5 E F0 (determines whether or not the fraction is included.)2.5 E 13.365 -(If this v)144 668.4 R 13.365(ariable is not set,)-.25 F F1(bash)15.865 +(If this v)144 716.4 R 13.365(ariable is not set,)-.25 F F1(bash)15.865 E F0 13.364(acts as if it had the v)15.865 F(alue)-.25 E F1($\010\\nr) -144 680.4 Q(eal\\t%3lR\\nuser\\t%3lU\\nsys\\t%3lS\010)-.18 E F0 7.113 -(.I)C 4.613(ft)-7.113 G 2.113(he v)-4.613 F 2.113 -(alue is null, no timing information is dis-)-.25 F 2.5(played. A)144 -692.4 R(trailing ne)2.5 E -(wline is added when the format string is displayed.)-.25 E F1(TMOUT)108 -704.4 Q F0 .941(If set to a v)144 716.4 R .941(alue greater than zero,) --.25 F F2(TMOUT)3.441 E F0 .941(is treated as the def)3.191 F .941 -(ault timeout for the)-.1 F F1 -.18(re)3.441 G(ad).18 E F0 -.2(bu)3.441 -G(iltin.).2 E(The)144 728.4 Q F1(select)4.479 E F0 1.979 -(command terminates if input does not arri)4.479 F 2.279 -.15(ve a)-.25 -H(fter).15 E F2(TMOUT)4.479 E F0 1.98(seconds when input is)4.229 F -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(18)185.545 E 0 Cg EP +144 728.4 Q(eal\\t%3lR\\nuser\\t%3lU\\nsys\\t%3lS\010)-.18 E F0 9.292 +(.I)C 6.792(ft)-9.292 G 4.292(he v)-6.792 F 4.292 +(alue is null, no timing information is)-.25 F(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(18)190.95 E 0 Cg EP %%Page: 19 19 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .507 -(coming from a terminal.)144 84 R .507(In an interacti)5.507 F .807 -.15 -(ve s)-.25 H .507(hell, the v).15 F .507 -(alue is interpreted as the number of seconds)-.25 F .383(to w)144 96 R -.383(ait for a line of input after issuing the primary prompt.)-.1 F/F1 -10/Times-Bold@0 SF(Bash)5.384 E F0 .384(terminates after w)2.884 F .384 -(aiting for that)-.1 F -(number of seconds if a complete line of input does not arri)144 108 Q --.15(ve)-.25 G(.).15 E F1(TMPDIR)108 120 Q F0 .391(If set,)144 132 R F1 -(bash)2.891 E F0 .391(uses its v)2.891 F .391 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 2.5(displayed. A) +144 84 R(trailing ne)2.5 E +(wline is added when the format string is displayed.)-.25 E/F1 10 +/Times-Bold@0 SF(TMOUT)108 96 Q F0 .941(If set to a v)144 108 R .941 +(alue greater than zero,)-.25 F/F2 9/Times-Bold@0 SF(TMOUT)3.441 E F0 +.941(is treated as the def)3.191 F .941(ault timeout for the)-.1 F F1 +-.18(re)3.441 G(ad).18 E F0 -.2(bu)3.441 G(iltin.).2 E(The)144 120 Q F1 +(select)2.81 E F0 .31(command terminates if input does not arri)2.81 F +.611 -.15(ve a)-.25 H(fter).15 E F2(TMOUT)2.811 E F0 .311 +(seconds when input is com-)2.561 F .886(ing from a terminal.)144 132 R +.886(In an interacti)5.886 F 1.185 -.15(ve s)-.25 H .885(hell, the v).15 +F .885(alue is interpreted as the number of seconds to)-.25 F -.1(wa)144 +144 S 1.05(it for a line of input after issuing the primary prompt.).1 F +F1(Bash)6.05 E F0 1.05(terminates after w)3.55 F 1.05(aiting for that) +-.1 F(number of seconds if a complete line of input does not arri)144 +156 Q -.15(ve)-.25 G(.).15 E F1(TMPDIR)108 168 Q F0 .391(If set,)144 180 +R F1(bash)2.891 E F0 .391(uses its v)2.891 F .391 (alue as the name of a directory in which)-.25 F F1(bash)2.89 E F0 .39 -(creates temporary \214les for the)2.89 F(shell')144 144 Q 2.5(su)-.55 G -(se.)-2.5 E F1(auto_r)108 156 Q(esume)-.18 E F0 .53(This v)144 168 R .53 +(creates temporary \214les for the)2.89 F(shell')144 192 Q 2.5(su)-.55 G +(se.)-2.5 E F1(auto_r)108 204 Q(esume)-.18 E F0 .53(This v)144 216 R .53 (ariable controls ho)-.25 F 3.03(wt)-.25 G .531 (he shell interacts with the user and job control.)-3.03 F .531 -(If this v)5.531 F .531(ariable is set,)-.25 F .539(single w)144 180 R +(If this v)5.531 F .531(ariable is set,)-.25 F .539(single w)144 228 R .538(ord simple commands without redirections are treated as candidates\ - for resumption of an)-.1 F -.15(ex)144 192 S .366(isting stopped job) + for resumption of an)-.1 F -.15(ex)144 240 S .366(isting stopped job) .15 F 5.366(.T)-.4 G .366(here is no ambiguity allo)-5.366 F .366 (wed; if there is more than one job be)-.25 F .367(ginning with)-.15 F 1.125(the string typed, the job most recently accessed is selected.)144 -204 R(The)6.125 E/F2 10/Times-Italic@0 SF(name)3.985 E F0 1.124 -(of a stopped job, in this)3.805 F(conte)144 216 Q 1.132 +252 R(The)6.125 E/F3 10/Times-Italic@0 SF(name)3.985 E F0 1.124 +(of a stopped job, in this)3.805 F(conte)144 264 Q 1.132 (xt, is the command line used to start it.)-.15 F 1.133(If set to the v) -6.133 F(alue)-.25 E F2 -.2(ex)3.633 G(act).2 E F0 3.633(,t).68 G 1.133 +6.133 F(alue)-.25 E F3 -.2(ex)3.633 G(act).2 E F0 3.633(,t).68 G 1.133 (he string supplied must)-3.633 F .606 -(match the name of a stopped job e)144 228 R .606(xactly; if set to)-.15 -F F2(substring)3.445 E F0 3.105(,t).22 G .605 +(match the name of a stopped job e)144 276 R .606(xactly; if set to)-.15 +F F3(substring)3.445 E F0 3.105(,t).22 G .605 (he string supplied needs to match a)-3.105 F .884 -(substring of the name of a stopped job)144 240 R 5.884(.T)-.4 G(he) --5.884 E F2(substring)3.724 E F0 -.25(va)3.604 G .885(lue pro).25 F .885 -(vides functionality analogous to)-.15 F(the)144 252 Q F1(%?)3.334 E F0 -.834(job identi\214er \(see)5.834 F/F3 9/Times-Bold@0 SF .834(JOB CONTR) -3.334 F(OL)-.27 E F0(belo)3.084 E 3.334(w\). If)-.25 F .834(set to an) -3.334 F 3.334(yo)-.15 G .834(ther v)-3.334 F .833 -(alue, the supplied string)-.25 F .315 -(must be a pre\214x of a stopped job')144 264 R 2.816(sn)-.55 G .316 +(substring of the name of a stopped job)144 288 R 5.884(.T)-.4 G(he) +-5.884 E F3(substring)3.724 E F0 -.25(va)3.604 G .885(lue pro).25 F .885 +(vides functionality analogous to)-.15 F(the)144 300 Q F1(%?)3.334 E F0 +.834(job identi\214er \(see)5.834 F F2 .834(JOB CONTR)3.334 F(OL)-.27 E +F0(belo)3.084 E 3.334(w\). If)-.25 F .834(set to an)3.334 F 3.334(yo) +-.15 G .834(ther v)-3.334 F .833(alue, the supplied string)-.25 F .315 +(must be a pre\214x of a stopped job')144 312 R 2.816(sn)-.55 G .316 (ame; this pro)-2.816 F .316(vides functionality analogous to the)-.15 F -F1(%)2.816 E F2(string)A F0(job)2.816 E(identi\214er)144 276 Q(.)-.55 E -F1(histchars)108 288 Q F0 .546(The tw)144 300 R 3.046(oo)-.1 G 3.046(rt) +F1(%)2.816 E F3(string)A F0(job)2.816 E(identi\214er)144 324 Q(.)-.55 E +F1(histchars)108 336 Q F0 .546(The tw)144 348 R 3.046(oo)-.1 G 3.046(rt) -3.046 G .546(hree characters which control history e)-3.046 F .545 -(xpansion and tok)-.15 F .545(enization \(see)-.1 F F3(HIST)3.045 E(OR) --.162 E 2.795(YE)-.315 G(X-)-2.795 E -.666(PA)144 312 S(NSION).666 E F0 +(xpansion and tok)-.15 F .545(enization \(see)-.1 F F2(HIST)3.045 E(OR) +-.162 E 2.795(YE)-.315 G(X-)-2.795 E -.666(PA)144 360 S(NSION).666 E F0 (belo)2.987 E 3.237(w\). The)-.25 F .737(\214rst character is the)3.237 -F F2 .737(history e)3.237 F(xpansion)-.2 E F0(character)3.238 E 3.238 +F F3 .737(history e)3.237 F(xpansion)-.2 E F0(character)3.238 E 3.238 (,t)-.4 G .738(he character which sig-)-3.238 F .761 -(nals the start of a history e)144 324 R .761(xpansion, normally `)-.15 -F F1(!)A F0 3.261('. The)B .76(second character is the)3.261 F F2(quic) -3.26 E 3.26(ks)-.2 G(ubstitution)-3.26 E F0(character)144 336 Q 3.476 +(nals the start of a history e)144 372 R .761(xpansion, normally `)-.15 +F F1(!)A F0 3.261('. The)B .76(second character is the)3.261 F F3(quic) +3.26 E 3.26(ks)-.2 G(ubstitution)-3.26 E F0(character)144 384 Q 3.476 (,w)-.4 G .977(hich is used as shorthand for re-running the pre)-3.476 F .977(vious command entered, substituting)-.25 F .131 -(one string for another in the command.)144 348 R .131(The def)5.131 F +(one string for another in the command.)144 396 R .131(The def)5.131 F .131(ault is `)-.1 F F1(^)A F0 2.63('. The)B .13 (optional third character is the char)2.63 F(-)-.2 E .276(acter which i\ ndicates that the remainder of the line is a comment when found as the \ -\214rst character)144 360 R .46(of a w)144 372 R .46(ord, normally `)-.1 +\214rst character)144 408 R .46(of a w)144 420 R .46(ord, normally `)-.1 F F1(#)A F0 2.959('. The)B .459 (history comment character causes history substitution to be skipped) -2.959 F .466(for the remaining w)144 384 R .466(ords on the line.)-.1 F +2.959 F .466(for the remaining w)144 432 R .466(ords on the line.)-.1 F .467(It does not necessarily cause the shell parser to treat the rest) -5.467 F(of the line as a comment.)144 396 Q F1(Arrays)87 412.8 Q(Bash) -108 424.8 Q F0(pro)3.391 E .891(vides one-dimensional inde)-.15 F -.15 +5.467 F(of the line as a comment.)144 444 Q F1(Arrays)87 460.8 Q(Bash) +108 472.8 Q F0(pro)3.391 E .891(vides one-dimensional inde)-.15 F -.15 (xe)-.15 G 3.391(da).15 G .891(nd associati)-3.391 F 1.191 -.15(ve a) -.25 H .891(rray v).15 F 3.391(ariables. An)-.25 F 3.391(yv)-.15 G .89 -(ariable may be used as an)-3.641 F(inde)108 436.8 Q -.15(xe)-.15 G +(ariable may be used as an)-3.641 F(inde)108 484.8 Q -.15(xe)-.15 G 2.573(da).15 G .073(rray; the)-2.573 F F1(declar)2.573 E(e)-.18 E F0 -.2 (bu)2.573 G .073(iltin will e).2 F .073(xplicitly declare an array)-.15 F 5.073(.T)-.65 G .074(here is no maximum limit on the size of)-5.073 F -.329(an array)108 448.8 R 2.829(,n)-.65 G .329(or an)-2.829 F 2.829(yr) +.329(an array)108 496.8 R 2.829(,n)-.65 G .329(or an)-2.829 F 2.829(yr) -.15 G .329(equirement that members be inde)-2.829 F -.15(xe)-.15 G 2.829(do).15 G 2.829(ra)-2.829 G .328(ssigned contiguously)-2.829 F 5.328(.I)-.65 G(nde)-5.328 E -.15(xe)-.15 G 2.828(da).15 G .328 -(rrays are refer)-2.828 F(-)-.2 E 1.595(enced using inte)108 460.8 R +(rrays are refer)-2.828 F(-)-.2 E 1.595(enced using inte)108 508.8 R 1.595(gers \(including arithmetic e)-.15 F 1.595 (xpressions\) and are zero-based; associati)-.15 F 1.895 -.15(ve a)-.25 H 1.595(rrays are refer).15 F(-)-.2 E(enced using arbitrary strings.)108 -472.8 Q(Unless otherwise noted, inde)5 E -.15(xe)-.15 G 2.5(da).15 G +520.8 Q(Unless otherwise noted, inde)5 E -.15(xe)-.15 G 2.5(da).15 G (rray indices must be non-ne)-2.5 E -.05(ga)-.15 G(ti).05 E .3 -.15 -(ve i)-.25 H(nte).15 E(gers.)-.15 E 2.463(An inde)108 489.6 R -.15(xe) +(ve i)-.25 H(nte).15 E(gers.)-.15 E 2.463(An inde)108 537.6 R -.15(xe) -.15 G 4.963(da).15 G 2.463(rray is created automatically if an)-4.963 F 4.963(yv)-.15 G 2.462(ariable is assigned to using the syntax)-5.213 F -F2(name)4.962 E F0([)A F2(sub-)A(script)108 501.6 Q F0(]=)A F2(value)A -F0 5.506(.T)C(he)-5.506 E F2(subscript)3.346 E F0 .507 +F3(name)4.962 E F0([)A F3(sub-)A(script)108 549.6 Q F0(]=)A F3(value)A +F0 5.506(.T)C(he)-5.506 E F3(subscript)3.346 E F0 .507 (is treated as an arithmetic e)3.687 F .507(xpression that must e)-.15 F -.25(va)-.25 G .507(luate to a number).25 F 5.507(.T)-.55 G 3.007(oe) --6.307 G(x-)-3.157 E 1.193(plicitly declare an inde)108 513.6 R -.15(xe) +-6.307 G(x-)-3.157 E 1.193(plicitly declare an inde)108 561.6 R -.15(xe) -.15 G 3.693(da).15 G(rray)-3.693 E 3.693(,u)-.65 G(se)-3.693 E F1 -(declar)3.693 E 3.693<65ad>-.18 G(a)-3.693 E F2(name)3.693 E F0(\(see) -3.692 E F3 1.192(SHELL B)3.692 F(UIL)-.09 E 1.192(TIN COMMANDS)-.828 F -F0(belo)3.442 E(w\).)-.25 E F1(de-)6.192 E(clar)108 525.6 Q 2.5<65ad> --.18 G(a)-2.5 E F2(name)2.5 E F1([)A F2(subscript)A F1(])A F0 -(is also accepted; the)2.5 E F2(subscript)2.5 E F0(is ignored.)2.5 E -(Associati)108 542.4 Q .3 -.15(ve a)-.25 H(rrays are created using).15 E -F1(declar)2.5 E 2.5<65ad>-.18 G(A)-2.5 E F2(name)2.5 E F0(.)A(Attrib)108 -559.2 Q .94(utes may be speci\214ed for an array v)-.2 F .941 +(declar)3.693 E 3.693<65ad>-.18 G(a)-3.693 E F3(name)3.693 E F0(\(see) +3.692 E F2 1.192(SHELL B)3.692 F(UIL)-.09 E 1.192(TIN COMMANDS)-.828 F +F0(belo)3.442 E(w\).)-.25 E F1(de-)6.192 E(clar)108 573.6 Q 2.5<65ad> +-.18 G(a)-2.5 E F3(name)2.5 E F1([)A F3(subscript)A F1(])A F0 +(is also accepted; the)2.5 E F3(subscript)2.5 E F0(is ignored.)2.5 E +(Associati)108 590.4 Q .3 -.15(ve a)-.25 H(rrays are created using).15 E +F1(declar)2.5 E 2.5<65ad>-.18 G(A)-2.5 E F3(name)2.5 E F0(.)A(Attrib)108 +607.2 Q .94(utes may be speci\214ed for an array v)-.2 F .941 (ariable using the)-.25 F F1(declar)3.441 E(e)-.18 E F0(and)3.441 E F1 -.18(re)3.441 G(adonly).18 E F0 -.2(bu)3.441 G 3.441(iltins. Each).2 F -(attrib)3.441 E(ute)-.2 E(applies to all members of an array)108 571.2 Q +(attrib)3.441 E(ute)-.2 E(applies to all members of an array)108 619.2 Q (.)-.65 E 1.647 -(Arrays are assigned to using compound assignments of the form)108 588 R -F2(name)4.147 E F0(=)A F1(\()A F0 -.25(va)C(lue).25 E F2(1)A F0 1.647 -(... v)4.147 F(alue)-.25 E F2(n)A F1(\))A F0 4.147(,w)C 1.647(here each) --4.147 F F2(value)108 600 Q F0 1.833(is of the form [)4.332 F F2 -(subscript)A F0(]=)A F2(string)A F0 6.833(.I)C(nde)-6.833 E -.15(xe)-.15 +(Arrays are assigned to using compound assignments of the form)108 636 R +F3(name)4.147 E F0(=)A F1(\()A F0 -.25(va)C(lue).25 E F3(1)A F0 1.647 +(... v)4.147 F(alue)-.25 E F3(n)A F1(\))A F0 4.147(,w)C 1.647(here each) +-4.147 F F3(value)108 648 Q F0 1.833(is of the form [)4.332 F F3 +(subscript)A F0(]=)A F3(string)A F0 6.833(.I)C(nde)-6.833 E -.15(xe)-.15 G 4.333(da).15 G 1.833(rray assignments do not require an)-4.333 F 1.833 -(ything b)-.15 F(ut)-.2 E F2(string)4.333 E F0(.)A .164 -(When assigning to inde)108 612 R -.15(xe)-.15 G 2.663(da).15 G .163 +(ything b)-.15 F(ut)-.2 E F3(string)4.333 E F0(.)A .164 +(When assigning to inde)108 660 R -.15(xe)-.15 G 2.663(da).15 G .163 (rrays, if the optional brack)-2.663 F .163 (ets and subscript are supplied, that inde)-.1 F 2.663(xi)-.15 G 2.663 -(sa)-2.663 G(ssigned)-2.663 E .459(to; otherwise the inde)108 624 R +(sa)-2.663 G(ssigned)-2.663 E .459(to; otherwise the inde)108 672 R 2.959(xo)-.15 G 2.959(ft)-2.959 G .459 (he element assigned is the last inde)-2.959 F 2.96(xa)-.15 G .46 -(ssigned to by the statement plus one.)-2.96 F(In-)5.46 E(de)108 636 Q -(xing starts at zero.)-.15 E(When assigning to an associati)108 652.8 Q +(ssigned to by the statement plus one.)-2.96 F(In-)5.46 E(de)108 684 Q +(xing starts at zero.)-.15 E(When assigning to an associati)108 700.8 Q .3 -.15(ve a)-.25 H(rray).15 E 2.5(,t)-.65 G(he subscript is required.) --2.5 E .24(This syntax is also accepted by the)108 669.6 R F1(declar) +-2.5 E .24(This syntax is also accepted by the)108 717.6 R F1(declar) 2.74 E(e)-.18 E F0 -.2(bu)2.739 G 2.739(iltin. Indi).2 F .239 -(vidual array elements may be assigned to using the)-.25 F F2(name)108 -681.6 Q F0([)A F2(subscript)A F0(]=)A F2(value)A F0 1.917 -(syntax introduced abo)4.416 F -.15(ve)-.15 G 6.917(.W).15 G 1.917 -(hen assigning to an inde)-6.917 F -.15(xe)-.15 G 4.417(da).15 G(rray) --4.417 E 4.417(,i)-.65 G(f)-4.417 E F2(name)4.777 E F0 1.917(is sub-) -4.597 F .116(scripted by a ne)108 693.6 R -.05(ga)-.15 G(ti).05 E .416 --.15(ve n)-.25 H(umber).15 E 2.616(,t)-.4 G .115 -(hat number is interpreted as relati)-2.616 F .415 -.15(ve t)-.25 H -2.615(oo).15 G .115(ne greater than the maximum inde)-2.615 F(x)-.15 E -(of)108 705.6 Q F2(name)2.676 E F0 2.676(,s)C 2.676(on)-2.676 G -2.25 --.15(eg a)-2.676 H(ti).15 E .476 -.15(ve i)-.25 H .177 -(ndices count back from the end of the array).15 F 2.677(,a)-.65 G .177 -(nd an inde)-2.677 F 2.677(xo)-.15 G 2.677<66ad>-2.677 G 2.677(1r)-2.677 -G .177(eferences the last el-)-2.677 F(ement.)108 717.6 Q(GNU Bash 5.0) -72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(19)185.545 E 0 -Cg EP +(vidual array elements may be assigned to using the)-.25 F F3(name)108 +729.6 Q F0([)A F3(subscript)A F0(]=)A F3(value)A F0 3.72 +(syntax introduced abo)6.22 F -.15(ve)-.15 G 8.72(.W).15 G 3.72 +(hen assigning to an inde)-8.72 F -.15(xe)-.15 G 6.22(da).15 G(rray) +-6.22 E 6.22(,i)-.65 G(f)-6.22 E F3(name)6.58 E F0(is)6.4 E +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(19)190.95 E 0 Cg EP %%Page: 20 20 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(An)108 84 Q 3.576 -(ye)-.15 G 1.076(lement of an array may be referenced using ${)-3.576 F -/F1 10/Times-Italic@0 SF(name)A F0([)A F1(subscript)A F0 3.575(]}. The)B -1.075(braces are required to a)3.575 F -.2(vo)-.2 G(id).2 E 1.541 -(con\215icts with pathname e)108 96 R 4.041(xpansion. If)-.15 F F1 -(subscript)4.041 E F0(is)4.041 E/F2 10/Times-Bold@0 SF(@)4.041 E F0(or) -4.041 E F2(*)4.041 E F0 4.041(,t)C 1.541(he w)-4.041 F 1.541(ord e)-.1 F -1.541(xpands to all members of)-.15 F F1(name)4.042 E F0(.)A 1.057 -(These subscripts dif)108 108 R 1.057(fer only when the w)-.25 F 1.057 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .79 +(subscripted by a ne)108 84 R -.05(ga)-.15 G(ti).05 E 1.09 -.15(ve n) +-.25 H(umber).15 E 3.29(,t)-.4 G .79 +(hat number is interpreted as relati)-3.29 F 1.09 -.15(ve t)-.25 H 3.29 +(oo).15 G .79(ne greater than the maximum)-3.29 F(inde)108 96 Q 2.929 +(xo)-.15 G(f)-2.929 E/F1 10/Times-Italic@0 SF(name)2.929 E F0 2.929(,s)C +2.929(on)-2.929 G -2.25 -.15(eg a)-2.929 H(ti).15 E .729 -.15(ve i)-.25 +H .429(ndices count back from the end of the array).15 F 2.929(,a)-.65 G +.429(nd an inde)-2.929 F 2.929(xo)-.15 G 2.929<66ad>-2.929 G 2.929(1r) +-2.929 G .429(eferences the)-2.929 F(last element.)108 108 Q(An)108 +124.8 Q 3.576(ye)-.15 G 1.076 +(lement of an array may be referenced using ${)-3.576 F F1(name)A F0([)A +F1(subscript)A F0 3.575(]}. The)B 1.075(braces are required to a)3.575 F +-.2(vo)-.2 G(id).2 E 1.541(con\215icts with pathname e)108 136.8 R 4.041 +(xpansion. If)-.15 F F1(subscript)4.041 E F0(is)4.041 E/F2 10 +/Times-Bold@0 SF(@)4.041 E F0(or)4.041 E F2(*)4.041 E F0 4.041(,t)C +1.541(he w)-4.041 F 1.541(ord e)-.1 F 1.541(xpands to all members of) +-.15 F F1(name)4.042 E F0(.)A 1.057(These subscripts dif)108 148.8 R +1.057(fer only when the w)-.25 F 1.057 (ord appears within double quotes.)-.1 F 1.056(If the w)6.056 F 1.056 -(ord is double-quoted,)-.1 F(${)108 120 Q F1(name)A F0 .52([*]} e)B .52 -(xpands to a single w)-.15 F .52(ord with the v)-.1 F .521 +(ord is double-quoted,)-.1 F(${)108 160.8 Q F1(name)A F0 .52([*]} e)B +.52(xpands to a single w)-.15 F .52(ord with the v)-.1 F .521 (alue of each array member separated by the \214rst character)-.25 F -1.375(of the)108 132 R/F3 9/Times-Bold@0 SF(IFS)3.875 E F0 1.375 +1.375(of the)108 172.8 R/F3 9/Times-Bold@0 SF(IFS)3.875 E F0 1.375 (special v)3.625 F 1.375(ariable, and ${)-.25 F F1(name)A F0 1.375 ([@]} e)B 1.375(xpands each element of)-.15 F F1(name)3.875 E F0 1.374 (to a separate w)3.875 F 3.874(ord. When)-.1 F 2.027 -(there are no array members, ${)108 144 R F1(name)A F0 2.028([@]} e)B +(there are no array members, ${)108 184.8 R F1(name)A F0 2.028([@]} e)B 2.028(xpands to nothing.)-.15 F 2.028(If the double-quoted e)7.028 F -2.028(xpansion occurs)-.15 F .759(within a w)108 156 R .759(ord, the e) --.1 F .759(xpansion of the \214rst parameter is joined with the be)-.15 -F .759(ginning part of the original w)-.15 F(ord,)-.1 E .515(and the e) -108 168 R .516(xpansion of the last parameter is joined with the last p\ -art of the original w)-.15 F 3.016(ord. This)-.1 F .516(is analogous) -3.016 F .228(to the e)108 180 R .228(xpansion of the special parameters) --.15 F F2(*)2.728 E F0(and)2.728 E F2(@)2.728 E F0(\(see)2.728 E F2 .228 +2.028(xpansion occurs)-.15 F .759(within a w)108 196.8 R .759 +(ord, the e)-.1 F .759 +(xpansion of the \214rst parameter is joined with the be)-.15 F .759 +(ginning part of the original w)-.15 F(ord,)-.1 E .515(and the e)108 +208.8 R .516(xpansion of the last parameter is joined with the last par\ +t of the original w)-.15 F 3.016(ord. This)-.1 F .516(is analogous)3.016 +F .228(to the e)108 220.8 R .228(xpansion of the special parameters)-.15 +F F2(*)2.728 E F0(and)2.728 E F2(@)2.728 E F0(\(see)2.728 E F2 .228 (Special P)2.728 F(arameters)-.1 E F0(abo)2.727 E -.15(ve)-.15 G 2.727 -(\). ${#).15 F F1(name)A F0([)A F1(subscript)A F0(]})A -.15(ex)108 192 S -.886(pands to the length of ${).15 F F1(name)A F0([)A F1(subscript)A F0 -3.386(]}. If)B F1(subscript)3.386 E F0(is)3.386 E F2(*)3.386 E F0(or) +(\). ${#).15 F F1(name)A F0([)A F1(subscript)A F0(]})A -.15(ex)108 232.8 +S .886(pands to the length of ${).15 F F1(name)A F0([)A F1(subscript)A +F0 3.386(]}. If)B F1(subscript)3.386 E F0(is)3.386 E F2(*)3.386 E F0(or) 3.386 E F2(@)3.386 E F0 3.386(,t)C .886(he e)-3.386 F .886 -(xpansion is the number of ele-)-.15 F .295(ments in the array)108 204 R -5.295(.I)-.65 G 2.795(ft)-5.295 G(he)-2.795 E F1(subscript)3.135 E F0 +(xpansion is the number of ele-)-.15 F .295(ments in the array)108 244.8 +R 5.295(.I)-.65 G 2.795(ft)-5.295 G(he)-2.795 E F1(subscript)3.135 E F0 .295(used to reference an element of an inde)3.475 F -.15(xe)-.15 G 2.794(da).15 G .294(rray e)-2.794 F -.25(va)-.25 G .294 (luates to a number).25 F .628 -(less than zero, it is interpreted as relati)108 216 R .928 -.15(ve t) +(less than zero, it is interpreted as relati)108 256.8 R .928 -.15(ve t) -.25 H 3.128(oo).15 G .629(ne greater than the maximum inde)-3.128 F 3.129(xo)-.15 G 3.129(ft)-3.129 G .629(he array)-3.129 F 3.129(,s)-.65 G 3.129(on)-3.129 G -2.25 -.15(eg a)-3.129 H(ti).15 E -.15(ve)-.25 G -(indices count back from the end of the array)108 228 Q 2.5(,a)-.65 G +(indices count back from the end of the array)108 268.8 Q 2.5(,a)-.65 G (nd an inde)-2.5 E 2.5(xo)-.15 G 2.5<66ad>-2.5 G 2.5(1r)-2.5 G (eferences the last element.)-2.5 E .595(Referencing an array v)108 -244.8 R .595(ariable without a subscript is equi)-.25 F -.25(va)-.25 G +285.6 R .595(ariable without a subscript is equi)-.25 F -.25(va)-.25 G .595(lent to referencing the array with a subscript of).25 F 2.5(0. An) -108 256.8 R 2.5(yr)-.15 G(eference to a v)-2.5 E(ariable using a v)-.25 +108 297.6 R 2.5(yr)-.15 G(eference to a v)-2.5 E(ariable using a v)-.25 E(alid subscript is le)-.25 E -.05(ga)-.15 G(l, and).05 E F2(bash)2.5 E -F0(will create an array if necessary)2.5 E(.)-.65 E(An array v)108 273.6 +F0(will create an array if necessary)2.5 E(.)-.65 E(An array v)108 314.4 Q(ariable is considered set if a subscript has been assigned a v)-.25 E 2.5(alue. The)-.25 F(null string is a v)2.5 E(alid v)-.25 E(alue.)-.25 E -.417(It is possible to obtain the k)108 290.4 R -.15(ey)-.1 G 2.918(s\() +.417(It is possible to obtain the k)108 331.2 R -.15(ey)-.1 G 2.918(s\() .15 G .418(indices\) of an array as well as the v)-2.918 F 2.918 (alues. ${)-.25 F F2(!)A F1(name)A F0([)A F1(@)A F0 .418(]} and ${)B F2 -(!)A F1(name)A F0([)A F1(*)A F0(]})A -.15(ex)108 302.4 S .75 +(!)A F1(name)A F0([)A F1(*)A F0(]})A -.15(ex)108 343.2 S .75 (pand to the indices assigned in array v).15 F(ariable)-.25 E F1(name) 3.249 E F0 5.749(.T)C .749 (he treatment when in double quotes is similar to)-5.749 F(the e)108 -314.4 Q(xpansion of the special parameters)-.15 E F1(@)2.5 E F0(and)2.5 -E F1(*)2.5 E F0(within double quotes.)2.5 E(The)108 331.2 Q F2(unset) -2.766 E F0 -.2(bu)2.766 G .267(iltin is used to destro).2 F 2.767(ya)-.1 -G(rrays.)-2.767 E F2(unset)5.267 E F1(name)2.767 E F0([)A F1(subscript)A +355.2 Q(xpansion of the special parameters)-.15 E F1(@)2.5 E F0(and)2.5 +E F1(*)2.5 E F0(within double quotes.)2.5 E(The)108 372 Q F2(unset)2.766 +E F0 -.2(bu)2.766 G .267(iltin is used to destro).2 F 2.767(ya)-.1 G +(rrays.)-2.767 E F2(unset)5.267 E F1(name)2.767 E F0([)A F1(subscript)A F0 2.767(]d)C(estro)-2.767 E .267(ys the array element at inde)-.1 F(x) --.15 E F1(sub-)2.767 E(script)108 343.2 Q F0 2.858(,f)C .358 -(or both inde)-2.858 F -.15(xe)-.15 G 2.858(da).15 G .358(nd associati) --2.858 F .658 -.15(ve a)-.25 H 2.858(rrays. Ne).15 F -.05(ga)-.15 G(ti) -.05 E .658 -.15(ve s)-.25 H .358(ubscripts to inde).15 F -.15(xe)-.15 G -2.858(da).15 G .358(rrays are interpreted as de-)-2.858 F 1.204 -(scribed abo)108 355.2 R -.15(ve)-.15 G 6.204(.U).15 G 1.204 +-.15 E F1(sub-)2.767 E(script)108 384 Q F0 2.858(,f)C .358(or both inde) +-2.858 F -.15(xe)-.15 G 2.858(da).15 G .358(nd associati)-2.858 F .658 +-.15(ve a)-.25 H 2.858(rrays. Ne).15 F -.05(ga)-.15 G(ti).05 E .658 -.15 +(ve s)-.25 H .358(ubscripts to inde).15 F -.15(xe)-.15 G 2.858(da).15 G +.358(rrays are interpreted as de-)-2.858 F 1.204(scribed abo)108 396 R +-.15(ve)-.15 G 6.204(.U).15 G 1.204 (nsetting the last element of an array v)-6.204 F 1.205 (ariable does not unset the v)-.25 F(ariable.)-.25 E F2(unset)6.205 E F1 -(name)3.705 E F0(,)A(where)108 367.2 Q F1(name)2.5 E F0(is an array)2.5 -E 2.5(,o)-.65 G(r)-2.5 E F2(unset)2.5 E F1(name)2.5 E F0([)A F1 -(subscript)A F0(], where)A F1(subscript)2.5 E F0(is)2.5 E F2(*)2.5 E F0 -(or)2.5 E F2(@)2.5 E F0 2.5(,r)C(emo)-2.5 E -.15(ve)-.15 G 2.5(st).15 G -(he entire array)-2.5 E(.)-.65 E .029(When using a v)108 384 R .029 +(name)3.705 E F0(,)A(where)108 408 Q F1(name)2.5 E F0(is an array)2.5 E +2.5(,o)-.65 G(r)-2.5 E F2(unset)2.5 E F1(name)2.5 E F0([)A F1(subscript) +A F0(], where)A F1(subscript)2.5 E F0(is)2.5 E F2(*)2.5 E F0(or)2.5 E F2 +(@)2.5 E F0 2.5(,r)C(emo)-2.5 E -.15(ve)-.15 G 2.5(st).15 G +(he entire array)-2.5 E(.)-.65 E .029(When using a v)108 424.8 R .029 (ariable name with a subscript as an ar)-.25 F .028 (gument to a command, such as with)-.18 F F2(unset)2.528 E F0 2.528(,w)C -.028(ithout us-)-2.528 F .937(ing the w)108 396 R .937(ord e)-.1 F .937 -(xpansion syntax described abo)-.15 F -.15(ve)-.15 G 3.437(,t).15 G .937 -(he ar)-3.437 F .938(gument is subject to pathname e)-.18 F 3.438 -(xpansion. If)-.15 F(path-)3.438 E(name e)108 408 Q +.028(ithout us-)-2.528 F .937(ing the w)108 436.8 R .937(ord e)-.1 F +.937(xpansion syntax described abo)-.15 F -.15(ve)-.15 G 3.437(,t).15 G +.937(he ar)-3.437 F .938(gument is subject to pathname e)-.18 F 3.438 +(xpansion. If)-.15 F(path-)3.438 E(name e)108 448.8 Q (xpansion is not desired, the ar)-.15 E(gument should be quoted.)-.18 E -(The)108 424.8 Q F2(declar)2.684 E(e)-.18 E F0(,)A F2(local)2.684 E F0 +(The)108 465.6 Q F2(declar)2.684 E(e)-.18 E F0(,)A F2(local)2.684 E F0 2.684(,a)C(nd)-2.684 E F2 -.18(re)2.684 G(adonly).18 E F0 -.2(bu)2.684 G .184(iltins each accept a).2 F F22.684 E F0 .184 (option to specify an inde)2.684 F -.15(xe)-.15 G 2.683(da).15 G .183 (rray and a)-2.683 F F22.683 E F0(op-)2.683 E .041 -(tion to specify an associati)108 436.8 R .341 -.15(ve a)-.25 H(rray).15 +(tion to specify an associati)108 477.6 R .341 -.15(ve a)-.25 H(rray).15 E 5.041(.I)-.65 G 2.541(fb)-5.041 G .041(oth options are supplied,) -2.541 F F22.541 E F0(tak)2.541 E .041(es precedence.)-.1 F(The) 5.041 E F2 -.18(re)2.542 G(ad).18 E F0 -.2(bu)2.542 G .042(iltin ac-).2 -F .864(cepts a)108 448.8 R F23.364 E F0 .864 +F .864(cepts a)108 489.6 R F23.364 E F0 .864 (option to assign a list of w)3.364 F .864 (ords read from the standard input to an array)-.1 F 5.863(.T)-.65 G(he) -5.863 E F2(set)3.363 E F0(and)3.363 E F2(declar)3.363 E(e)-.18 E F0 -.2 -(bu)108 460.8 S(iltins display array v).2 E(alues in a w)-.25 E +(bu)108 501.6 S(iltins display array v).2 E(alues in a w)-.25 E (ay that allo)-.1 E(ws them to be reused as assignments.)-.25 E/F4 10.95 -/Times-Bold@0 SF(EXP)72 477.6 Q(ANSION)-.81 E F0 .76(Expansion is perfo\ -rmed on the command line after it has been split into w)108 489.6 R 3.26 +/Times-Bold@0 SF(EXP)72 518.4 Q(ANSION)-.81 E F0 .76(Expansion is perfo\ +rmed on the command line after it has been split into w)108 530.4 R 3.26 (ords. There)-.1 F .76(are se)3.26 F -.15(ve)-.25 G 3.26(nk).15 G .76 -(inds of)-3.26 F -.15(ex)108 501.6 S .201(pansion performed:).15 F F1 +(inds of)-3.26 F -.15(ex)108 542.4 S .201(pansion performed:).15 F F1 (br)2.971 E .201(ace e)-.15 F(xpansion)-.2 E F0(,).24 E F1 .201(tilde e) 2.831 F(xpansion)-.2 E F0(,).24 E F1(par)3.951 E .201 (ameter and variable e)-.15 F(xpansion)-.2 E F0(,).24 E F1 .2 -(command sub-)2.901 F(stitution)108 513.6 Q F0(,).24 E F1(arithmetic e) +(command sub-)2.901 F(stitution)108 554.4 Q F0(,).24 E F1(arithmetic e) 2.83 E(xpansion)-.2 E F0(,).24 E F1(wor)2.84 E 2.5(ds)-.37 G(plitting) -2.5 E F0 2.5(,a).22 G(nd)-2.5 E F1(pathname e)3.75 E(xpansion)-.2 E F0 -(.).24 E .418(The order of e)108 530.4 R .418(xpansions is: brace e)-.15 +(.).24 E .418(The order of e)108 571.2 R .418(xpansions is: brace e)-.15 F .418(xpansion; tilde e)-.15 F .419(xpansion, parameter and v)-.15 F -.419(ariable e)-.25 F .419(xpansion, arithmetic)-.15 F -.15(ex)108 542.4 +.419(ariable e)-.25 F .419(xpansion, arithmetic)-.15 F -.15(ex)108 583.2 S .196(pansion, and command substitution \(done in a left-to-right f).15 F .195(ashion\); w)-.1 F .195(ord splitting; and pathname e)-.1 F(xpan-) --.15 E(sion.)108 554.4 Q .257 -(On systems that can support it, there is an additional e)108 571.2 R -.257(xpansion a)-.15 F -.25(va)-.2 G(ilable:).25 E F1(pr)2.757 E .257 +-.15 E(sion.)108 595.2 Q .257 +(On systems that can support it, there is an additional e)108 612 R .257 +(xpansion a)-.15 F -.25(va)-.2 G(ilable:).25 E F1(pr)2.757 E .257 (ocess substitution)-.45 F F0 5.257(.T)C .257(his is per)-5.257 F(-)-.2 -E(formed at the same time as tilde, parameter)108 583.2 Q 2.5(,v)-.4 G +E(formed at the same time as tilde, parameter)108 624 Q 2.5(,v)-.4 G (ariable, and arithmetic e)-2.75 E(xpansion and command substitution.) --.15 E .003(After these e)108 600 R .003 +-.15 E .003(After these e)108 640.8 R .003 (xpansions are performed, quote characters present in the original w) -.15 F .002(ord are remo)-.1 F -.15(ve)-.15 G 2.502(du).15 G .002 -(nless the)-2.502 F(y)-.15 E(ha)108 612 Q .3 -.15(ve b)-.2 H +(nless the)-2.502 F(y)-.15 E(ha)108 652.8 Q .3 -.15(ve b)-.2 H (een quoted themselv).15 E(es \()-.15 E F1(quote r)A(emo)-.37 E(val)-.1 -E F0(\).)A .171(Only brace e)108 628.8 R .171(xpansion, w)-.15 F .171 +E F0(\).)A .171(Only brace e)108 669.6 R .171(xpansion, w)-.15 F .171 (ord splitting, and pathname e)-.1 F .171 (xpansion can increase the number of w)-.15 F .172(ords of the e)-.1 F -(x-)-.15 E .777(pansion; other e)108 640.8 R .776(xpansions e)-.15 F +(x-)-.15 E .777(pansion; other e)108 681.6 R .776(xpansions e)-.15 F .776(xpand a single w)-.15 F .776(ord to a single w)-.1 F 3.276 (ord. The)-.1 F .776(only e)3.276 F .776(xceptions to this are the e) --.15 F(x-)-.15 E .695(pansions of ")108 652.8 R F2($@)A F0 3.195("a)C +-.15 F(x-)-.15 E .695(pansions of ")108 693.6 R F2($@)A F0 3.195("a)C .695(nd ")-3.195 F F2(${)A F1(name)A F2([@]})A F0 .696 (", and, in most cases,)B F2($*)3.196 E F0(and)3.196 E F2(${)3.196 E F1 (name)A F2([*]})A F0 .696(as e)3.196 F .696(xplained abo)-.15 F .996 -.15(ve \()-.15 H(see).15 E F3 -.666(PA)3.196 G(-).666 E(RAMETERS)108 -664.8 Q/F5 9/Times-Roman@0 SF(\).)A F2(Brace Expansion)87 681.6 Q F1(Br) -108.58 693.6 Q .606(ace e)-.15 F(xpansion)-.2 E F0 .606 -(is a mechanism by which arbitrary strings may be generated.)3.346 F -.606(This mechanism is similar)5.606 F(to)108 705.6 Q F1 .415 -(pathname e)2.915 F(xpansion)-.2 E F0 2.915(,b)C .415 -(ut the \214lenames generated need not e)-3.115 F 2.915(xist. P)-.15 F -.415(atterns to be brace e)-.15 F .415(xpanded tak)-.15 F 2.915(et)-.1 G -(he)-2.915 E .074(form of an optional)108 717.6 R F1(pr)3.823 E(eamble) --.37 E F0 2.573(,f).18 G(ollo)-2.573 E .073 -(wed by either a series of comma-separated strings or a sequence e)-.25 -F(xpres-)-.15 E .489(sion between a pair of braces, follo)108 729.6 R -.489(wed by an optional)-.25 F F1(postscript)4.239 E F0 5.49(.T).68 G -.49(he preamble is pre\214x)-5.49 F .49(ed to each string)-.15 F -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(20)185.545 E 0 Cg EP +705.6 Q/F5 9/Times-Roman@0 SF(\).)A F0(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(20)190.95 E 0 Cg EP %%Page: 21 21 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .659(contained wi\ -thin the braces, and the postscript is then appended to each resulting \ -string, e)108 84 R .658(xpanding left to)-.15 F(right.)108 96 Q .718 -(Brace e)108 112.8 R .719(xpansions may be nested.)-.15 F .719 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(Brace Expansion)87 84 Q/F2 10/Times-Italic@0 SF(Br)108.58 96 Q .606 +(ace e)-.15 F(xpansion)-.2 E F0 .606 +(is a mechanism by which arbitrary strings may be generated.)3.346 F +.606(This mechanism is similar)5.606 F(to)108 108 Q F2 .415(pathname e) +2.915 F(xpansion)-.2 E F0 2.915(,b)C .415 +(ut the \214lenames generated need not e)-3.115 F 2.915(xist. P)-.15 F +.415(atterns to be brace e)-.15 F .415(xpanded tak)-.15 F 2.915(et)-.1 G +(he)-2.915 E .074(form of an optional)108 120 R F2(pr)3.823 E(eamble) +-.37 E F0 2.573(,f).18 G(ollo)-2.573 E .073 +(wed by either a series of comma-separated strings or a sequence e)-.25 +F(xpres-)-.15 E .489(sion between a pair of braces, follo)108 132 R .489 +(wed by an optional)-.25 F F2(postscript)4.239 E F0 5.49(.T).68 G .49 +(he preamble is pre\214x)-5.49 F .49(ed to each string)-.15 F .659(cont\ +ained within the braces, and the postscript is then appended to each re\ +sulting string, e)108 144 R .658(xpanding left to)-.15 F(right.)108 156 +Q .718(Brace e)108 172.8 R .719(xpansions may be nested.)-.15 F .719 (The results of each e)5.719 F .719 (xpanded string are not sorted; left to right order is)-.15 F(preserv) -108 124.8 Q 2.5(ed. F)-.15 F(or e)-.15 E(xample, a)-.15 E/F1 10 -/Times-Bold@0 SF({)A F0(d,c,b)A F1(})A F0 2.5(ee)C -(xpands into `ade ace abe'.)-2.65 E 3.243(As)108 141.6 S .743(equence e) --3.243 F .743(xpression tak)-.15 F .743(es the form)-.1 F F1({)3.243 E -/F2 10/Times-Italic@0 SF(x)A F1(..)A F2(y)A F1([..)A F2(incr)A F1(]})A -F0 3.243(,w)C(here)-3.243 E F2(x)3.243 E F0(and)3.242 E F2(y)3.242 E F0 -.742(are either inte)3.242 F .742(gers or single characters,)-.15 F(and) -108 153.6 Q F2(incr)3.031 E F0 3.031(,a)C 3.032(no)-3.031 G .532 -(ptional increment, is an inte)-3.032 F(ger)-.15 E 5.532(.W)-.55 G .532 -(hen inte)-5.532 F .532(gers are supplied, the e)-.15 F .532 +108 184.8 Q 2.5(ed. F)-.15 F(or e)-.15 E(xample, a)-.15 E F1({)A F0 +(d,c,b)A F1(})A F0 2.5(ee)C(xpands into `ade ace abe'.)-2.65 E 3.243(As) +108 201.6 S .743(equence e)-3.243 F .743(xpression tak)-.15 F .743 +(es the form)-.1 F F1({)3.243 E F2(x)A F1(..)A F2(y)A F1([..)A F2(incr)A +F1(]})A F0 3.243(,w)C(here)-3.243 E F2(x)3.243 E F0(and)3.242 E F2(y) +3.242 E F0 .742(are either inte)3.242 F .742(gers or single characters,) +-.15 F(and)108 213.6 Q F2(incr)3.031 E F0 3.031(,a)C 3.032(no)-3.031 G +.532(ptional increment, is an inte)-3.032 F(ger)-.15 E 5.532(.W)-.55 G +.532(hen inte)-5.532 F .532(gers are supplied, the e)-.15 F .532 (xpression e)-.15 F .532(xpands to each)-.15 F .078(number between)108 -165.6 R F2(x)2.578 E F0(and)2.578 E F2(y)2.578 E F0 2.578(,i)C(nclusi) +225.6 R F2(x)2.578 E F0(and)2.578 E F2(y)2.578 E F0 2.578(,i)C(nclusi) -2.578 E -.15(ve)-.25 G 5.078(.S).15 G .078(upplied inte)-5.078 F .077 (gers may be pre\214x)-.15 F .077(ed with)-.15 F F2(0)2.577 E F0 .077 (to force each term to ha)2.577 F .377 -.15(ve t)-.2 H(he).15 E .014 -(same width.)108 177.6 R .014(When either)5.014 F F2(x)2.514 E F0(or) +(same width.)108 237.6 R .014(When either)5.014 F F2(x)2.514 E F0(or) 2.514 E F2(y)2.514 E F0(be)2.514 E .015(gins with a zero, the shell att\ empts to force all generated terms to contain)-.15 F 1.143 -(the same number of digits, zero-padding where necessary)108 189.6 R +(the same number of digits, zero-padding where necessary)108 249.6 R 6.143(.W)-.65 G 1.143(hen characters are supplied, the e)-6.143 F -(xpression)-.15 E -.15(ex)108 201.6 S 1.064(pands to each character le) +(xpression)-.15 E -.15(ex)108 261.6 S 1.064(pands to each character le) .15 F 1.064(xicographically between)-.15 F F2(x)3.564 E F0(and)3.564 E F2(y)3.564 E F0 3.564(,i)C(nclusi)-3.564 E -.15(ve)-.25 G 3.564(,u).15 G 1.064(sing the def)-3.564 F 1.064(ault C locale.)-.1 F(Note)6.064 E .245 -(that both)108 213.6 R F2(x)2.745 E F0(and)2.745 E F2(y)2.745 E F0 .245 +(that both)108 273.6 R F2(x)2.745 E F0(and)2.745 E F2(y)2.745 E F0 .245 (must be of the same type.)2.745 F .244 (When the increment is supplied, it is used as the dif)5.245 F .244 -(ference be-)-.25 F(tween each term.)108 225.6 Q(The def)5 E +(ference be-)-.25 F(tween each term.)108 285.6 Q(The def)5 E (ault increment is 1 or \2551 as appropriate.)-.1 E .581(Brace e)108 -242.4 R .581(xpansion is performed before an)-.15 F 3.081(yo)-.15 G .581 +302.4 R .581(xpansion is performed before an)-.15 F 3.081(yo)-.15 G .581 (ther e)-3.081 F .581(xpansions, and an)-.15 F 3.082(yc)-.15 G .582 (haracters special to other e)-3.082 F(xpansions)-.15 E .016 -(are preserv)108 254.4 R .016(ed in the result.)-.15 F .016 +(are preserv)108 314.4 R .016(ed in the result.)-.15 F .016 (It is strictly te)5.016 F(xtual.)-.15 E F1(Bash)5.016 E F0 .015 (does not apply an)2.516 F 2.515(ys)-.15 G .015 -(yntactic interpretation to the con-)-2.515 F(te)108 266.4 Q +(yntactic interpretation to the con-)-2.515 F(te)108 326.4 Q (xt of the e)-.15 E(xpansion or the te)-.15 E(xt between the braces.) --.15 E 2.501(Ac)108 283.2 S .001(orrectly-formed brace e)-2.501 F .001(\ +-.15 E 2.501(Ac)108 343.2 S .001(orrectly-formed brace e)-2.501 F .001(\ xpansion must contain unquoted opening and closing braces, and at least\ - one un-)-.15 F .458(quoted comma or a v)108 295.2 R .458 + one un-)-.15 F .458(quoted comma or a v)108 355.2 R .458 (alid sequence e)-.25 F 2.958(xpression. An)-.15 F 2.958(yi)-.15 G .458 (ncorrectly formed brace e)-2.958 F .457(xpansion is left unchanged.) --.15 F(A)108 307.2 Q F1({)2.521 E F0(or)2.521 E F1(,)2.521 E F0 .021 +-.15 F(A)108 367.2 Q F1({)2.521 E F0(or)2.521 E F1(,)2.521 E F0 .021 (may be quoted with a backslash to pre)2.521 F -.15(ve)-.25 G .022 (nt its being considered part of a brace e).15 F 2.522(xpression. T)-.15 F 2.522(oa)-.8 G -.2(vo)-2.722 G(id).2 E .172 -(con\215icts with parameter e)108 319.2 R .172(xpansion, the string)-.15 +(con\215icts with parameter e)108 379.2 R .172(xpansion, the string)-.15 F F1(${)2.672 E F0 .172(is not considered eligible for brace e)2.672 F -.172(xpansion, and inhibits)-.15 F(brace e)108 331.2 Q +.172(xpansion, and inhibits)-.15 F(brace e)108 391.2 Q (xpansion until the closing)-.15 E F1(})2.5 E F0(.)A 1.476(This constru\ ct is typically used as shorthand when the common pre\214x of the strin\ -gs to be generated is)108 348 R(longer than in the abo)108 360 Q .3 -.15 -(ve ex)-.15 H(ample:).15 E(mkdir /usr/local/src/bash/{old,ne)144 376.8 Q --.65(w,)-.25 G(dist,b).65 E(ugs})-.2 E(or)108 388.8 Q(cho)144 400.8 Q +gs to be generated is)108 408 R(longer than in the abo)108 420 Q .3 -.15 +(ve ex)-.15 H(ample:).15 E(mkdir /usr/local/src/bash/{old,ne)144 436.8 Q +-.65(w,)-.25 G(dist,b).65 E(ugs})-.2 E(or)108 448.8 Q(cho)144 460.8 Q (wn root /usr/{ucb/{e)-.25 E(x,edit},lib/{e)-.15 E(x?.?*,ho)-.15 E(w_e) --.25 E(x}})-.15 E .618(Brace e)108 417.6 R .618 +-.25 E(x}})-.15 E .618(Brace e)108 477.6 R .618 (xpansion introduces a slight incompatibility with historical v)-.15 F .618(ersions of)-.15 F F1(sh)3.118 E F0(.)A F1(sh)5.618 E F0 .618 (does not treat open-)3.118 F .247 -(ing or closing braces specially when the)108 429.6 R 2.747(ya)-.15 G +(ing or closing braces specially when the)108 489.6 R 2.747(ya)-.15 G .247(ppear as part of a w)-2.747 F .248(ord, and preserv)-.1 F .248 -(es them in the output.)-.15 F F1(Bash)5.248 E F0(remo)108 441.6 Q -.15 +(es them in the output.)-.15 F F1(Bash)5.248 E F0(remo)108 501.6 Q -.15 (ve)-.15 G 3.53(sb).15 G 1.03(races from w)-3.53 F 1.03 (ords as a consequence of brace e)-.1 F 3.53(xpansion. F)-.15 F 1.03 (or e)-.15 F 1.03(xample, a w)-.15 F 1.03(ord entered to)-.1 F F1(sh) -3.53 E F0(as)3.53 E F2(\214le{1,2})108 453.6 Q F0 .514 +3.53 E F0(as)3.53 E F2(\214le{1,2})108 513.6 Q F0 .514 (appears identically in the output.)3.014 F .515(The same w)5.515 F .515 (ord is output as)-.1 F F2 .515(\214le1 \214le2)4.925 F F0 .515(after e) 3.035 F .515(xpansion by)-.15 F F1(bash)3.015 E F0(.)A .437 -(If strict compatibility with)108 465.6 R F1(sh)2.936 E F0 .436 +(If strict compatibility with)108 525.6 R F1(sh)2.936 E F0 .436 (is desired, start)2.936 F F1(bash)2.936 E F0 .436(with the)2.936 F F1 (+B)2.936 E F0 .436(option or disable brace e)2.936 F .436 -(xpansion with the)-.15 F F1(+B)108 477.6 Q F0(option to the)2.5 E F1 +(xpansion with the)-.15 F F1(+B)108 537.6 Q F0(option to the)2.5 E F1 (set)2.5 E F0(command \(see)2.5 E/F3 9/Times-Bold@0 SF(SHELL B)2.5 E (UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E F1 -.18(Ti) -87 494.4 S(lde Expansion).18 E F0 1.086(If a w)108 506.4 R 1.086(ord be) +87 554.4 S(lde Expansion).18 E F0 1.086(If a w)108 566.4 R 1.086(ord be) -.1 F 1.086(gins with an unquoted tilde character \(`)-.15 F F1(~)A F0 1.087('\), all of the characters preceding the \214rst unquoted)B .185(\ slash \(or all characters, if there is no unquoted slash\) are consider\ -ed a)108 518.4 R F2(tilde-pr)2.685 E(e\214x)-.37 E F0 5.185(.I)C 2.685 +ed a)108 578.4 R F2(tilde-pr)2.685 E(e\214x)-.37 E F0 5.185(.I)C 2.685 (fn)-5.185 G .185(one of the characters)-2.685 F .725(in the tilde-pre\ -\214x are quoted, the characters in the tilde-pre\214x follo)108 530.4 R -.726(wing the tilde are treated as a possible)-.25 F F2(lo)108 542.4 Q +\214x are quoted, the characters in the tilde-pre\214x follo)108 590.4 R +.726(wing the tilde are treated as a possible)-.25 F F2(lo)108 602.4 Q .523(gin name)-.1 F F0 5.523(.I)C 3.023(ft)-5.523 G .523 (his login name is the null string, the tilde is replaced with the v) --3.023 F .522(alue of the shell parameter)-.25 F F3(HOME)108 554.4 Q/F4 +-3.023 F .522(alue of the shell parameter)-.25 F F3(HOME)108 614.4 Q/F4 9/Times-Roman@0 SF(.)A F0(If)4.786 E F3(HOME)2.786 E F0 .287 (is unset, the home directory of the user e)2.536 F -.15(xe)-.15 G .287 (cuting the shell is substituted instead.).15 F(Other)5.287 E(-)-.2 E(w\ ise, the tilde-pre\214x is replaced with the home directory associated \ -with the speci\214ed login name.)108 566.4 Q .093 -(If the tilde-pre\214x is a `~+', the v)108 583.2 R .092 +with the speci\214ed login name.)108 626.4 Q .093 +(If the tilde-pre\214x is a `~+', the v)108 643.2 R .092 (alue of the shell v)-.25 F(ariable)-.25 E F3(PWD)2.592 E F0 .092 (replaces the tilde-pre\214x.)2.342 F .092(If the tilde-pre\214x is) -5.092 F 3.403(a`)108 595.2 S .903(~\255', the v)-3.403 F .903 +5.092 F 3.403(a`)108 655.2 S .903(~\255', the v)-3.403 F .903 (alue of the shell v)-.25 F(ariable)-.25 E F3(OLDPWD)3.404 E F4(,)A F0 .904(if it is set, is substituted.)3.154 F .904(If the characters follo) 5.904 F .904(wing the)-.25 F .88 -(tilde in the tilde-pre\214x consist of a number)108 607.2 R F2(N)3.38 E +(tilde in the tilde-pre\214x consist of a number)108 667.2 R F2(N)3.38 E F0 3.38(,o)C .88(ptionally pre\214x)-3.38 F .879 (ed by a `+' or a `\255', the tilde-pre\214x is re-)-.15 F .138(placed \ with the corresponding element from the directory stack, as it w)108 -619.2 R .138(ould be displayed by the)-.1 F F1(dirs)2.639 E F0 -.2(bu) -2.639 G(iltin).2 E(in)108 631.2 Q -.2(vo)-.4 G -.1(ke).2 G 2.839(dw).1 G +679.2 R .138(ould be displayed by the)-.1 F F1(dirs)2.639 E F0 -.2(bu) +2.639 G(iltin).2 E(in)108 691.2 Q -.2(vo)-.4 G -.1(ke).2 G 2.839(dw).1 G .338(ith the tilde-pre\214x as an ar)-2.839 F 2.838(gument. If)-.18 F .338(the characters follo)2.838 F .338 (wing the tilde in the tilde-pre\214x consist)-.25 F -(of a number without a leading `+' or `\255', `+' is assumed.)108 643.2 -Q(If the login name is in)108 660 Q -.25(va)-.4 G(lid, or the tilde e) -.25 E(xpansion f)-.15 E(ails, the w)-.1 E(ord is unchanged.)-.1 E .166 -(Each v)108 676.8 R .167(ariable assignment is check)-.25 F .167 -(ed for unquoted tilde-pre\214x)-.1 F .167(es immediately follo)-.15 F -.167(wing a)-.25 F F1(:)2.667 E F0 .167(or the \214rst)2.667 F F1(=) -2.667 E F0 5.167(.I)C(n)-5.167 E .468(these cases, tilde e)108 688.8 R -.468(xpansion is also performed.)-.15 F(Consequently)5.467 E 2.967(,o) --.65 G .467(ne may use \214lenames with tildes in assign-)-2.967 F -(ments to)108 700.8 Q F3 -.666(PA)2.5 G(TH)-.189 E F4(,)A F3(MAILP)2.25 -E -.855(AT)-.666 G(H).855 E F4(,)A F0(and)2.25 E F3(CDP)2.5 E -.855(AT) --.666 G(H).855 E F4(,)A F0(and the shell assigns the e)2.25 E(xpanded v) --.15 E(alue.)-.25 E .023(Bash also performs tilde e)108 717.6 R .023 -(xpansion on w)-.15 F .024(ords satisfying the conditions of v)-.1 F -.024(ariable assignments \(as described)-.25 F(abo)108 729.6 Q .77 -.15 -(ve u)-.15 H(nder).15 E F3 -.666(PA)2.97 G(RAMETERS).666 E F4(\))A F0 -.47(when the)2.72 F 2.969(ya)-.15 G .469(ppear as ar)-2.969 F .469 -(guments to simple commands.)-.18 F .469(Bash does not do this,)5.469 F -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(21)185.545 E 0 Cg EP +(of a number without a leading `+' or `\255', `+' is assumed.)108 703.2 +Q(If the login name is in)108 720 Q -.25(va)-.4 G(lid, or the tilde e) +.25 E(xpansion f)-.15 E(ails, the w)-.1 E(ord is unchanged.)-.1 E +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(21)190.95 E 0 Cg EP %%Page: 22 22 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.15(ex)108 84 S -(cept for the).15 E/F1 10/Times-Italic@0 SF(declar)2.5 E(ation)-.15 E F0 -(commands listed abo)2.5 E -.15(ve)-.15 G 2.5(,w).15 G(hen in)-2.5 E F1 -(posix mode)2.5 E F0(.)A/F2 10/Times-Bold@0 SF -.1(Pa)87 100.8 S -(rameter Expansion).1 E F0 .199(The `)108 112.8 R F2($)A F0 2.699('c)C +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .166(Each v)108 84 +R .167(ariable assignment is check)-.25 F .167 +(ed for unquoted tilde-pre\214x)-.1 F .167(es immediately follo)-.15 F +.167(wing a)-.25 F/F1 10/Times-Bold@0 SF(:)2.667 E F0 .167 +(or the \214rst)2.667 F F1(=)2.667 E F0 5.167(.I)C(n)-5.167 E .468 +(these cases, tilde e)108 96 R .468(xpansion is also performed.)-.15 F +(Consequently)5.467 E 2.967(,o)-.65 G .467 +(ne may use \214lenames with tildes in assign-)-2.967 F(ments to)108 108 +Q/F2 9/Times-Bold@0 SF -.666(PA)2.5 G(TH)-.189 E/F3 9/Times-Roman@0 SF +(,)A F2(MAILP)2.25 E -.855(AT)-.666 G(H).855 E F3(,)A F0(and)2.25 E F2 +(CDP)2.5 E -.855(AT)-.666 G(H).855 E F3(,)A F0 +(and the shell assigns the e)2.25 E(xpanded v)-.15 E(alue.)-.25 E .023 +(Bash also performs tilde e)108 124.8 R .023(xpansion on w)-.15 F .024 +(ords satisfying the conditions of v)-.1 F .024 +(ariable assignments \(as described)-.25 F(abo)108 136.8 Q .77 -.15 +(ve u)-.15 H(nder).15 E F2 -.666(PA)2.97 G(RAMETERS).666 E F3(\))A F0 +.47(when the)2.72 F 2.969(ya)-.15 G .469(ppear as ar)-2.969 F .469 +(guments to simple commands.)-.18 F .469(Bash does not do this,)5.469 F +-.15(ex)108 148.8 S(cept for the).15 E/F4 10/Times-Italic@0 SF(declar) +2.5 E(ation)-.15 E F0(commands listed abo)2.5 E -.15(ve)-.15 G 2.5(,w) +.15 G(hen in)-2.5 E F4(posix mode)2.5 E F0(.)A F1 -.1(Pa)87 165.6 S +(rameter Expansion).1 E F0 .199(The `)108 177.6 R F1($)A F0 2.699('c)C .199(haracter introduces parameter e)-2.699 F .199 (xpansion, command substitution, or arithmetic e)-.15 F 2.7 (xpansion. The)-.15 F(pa-)2.7 E .314(rameter name or symbol to be e)108 -124.8 R .314(xpanded may be enclosed in braces, which are optional b) +189.6 R .314(xpanded may be enclosed in braces, which are optional b) -.15 F .314(ut serv)-.2 F 2.813(et)-.15 G 2.813(op)-2.813 G(rotect) --2.813 E .414(the v)108 136.8 R .414(ariable to be e)-.25 F .414 +-2.813 E .414(the v)108 201.6 R .414(ariable to be e)-.25 F .414 (xpanded from characters immediately follo)-.15 F .415 (wing it which could be interpreted as part of)-.25 F(the name.)108 -148.8 Q 1.19 +213.6 Q 1.19 (When braces are used, the matching ending brace is the \214rst `)108 -165.6 R F2(})A F0 3.689('n)C 1.189 +230.4 R F1(})A F0 3.689('n)C 1.189 (ot escaped by a backslash or within a)-3.689 F .821 -(quoted string, and not within an embedded arithmetic e)108 177.6 R .822 +(quoted string, and not within an embedded arithmetic e)108 242.4 R .822 (xpansion, command substitution, or parameter e)-.15 F(x-)-.15 E -(pansion.)108 189.6 Q(${)108 206.4 Q F1(par)A(ameter)-.15 E F0(})A .106 -(The v)144 218.4 R .106(alue of)-.25 F F1(par)2.606 E(ameter)-.15 E F0 +(pansion.)108 254.4 Q(${)108 271.2 Q F4(par)A(ameter)-.15 E F0(})A .106 +(The v)144 283.2 R .106(alue of)-.25 F F4(par)2.606 E(ameter)-.15 E F0 .106(is substituted.)2.606 F .106(The braces are required when)5.106 F -F1(par)3.856 E(ameter)-.15 E F0 .106(is a positional pa-)3.336 F .11 -(rameter with more than one digit, or when)144 230.4 R F1(par)3.86 E +F4(par)3.856 E(ameter)-.15 E F0 .106(is a positional pa-)3.336 F .11 +(rameter with more than one digit, or when)144 295.2 R F4(par)3.86 E (ameter)-.15 E F0 .111(is follo)3.341 F .111 (wed by a character which is not to be)-.25 F .208 -(interpreted as part of its name.)144 242.4 R(The)5.208 E F1(par)2.708 E +(interpreted as part of its name.)144 307.2 R(The)5.208 E F4(par)2.708 E (ameter)-.15 E F0 .208(is a shell parameter as described abo)2.708 F --.15(ve)-.15 G F2 -.74(PA)2.858 G(RAME-).74 E(TERS)144 254.4 Q F0 2.5 -(\)o)C 2.5(ra)-2.5 G 2.5(na)-2.5 G(rray reference \()-2.5 E F2(Arrays)A -F0(\).)A .346(If the \214rst character of)108 271.2 R F1(par)2.846 E +-.15(ve)-.15 G F1 -.74(PA)2.858 G(RAME-).74 E(TERS)144 319.2 Q F0 2.5 +(\)o)C 2.5(ra)-2.5 G 2.5(na)-2.5 G(rray reference \()-2.5 E F1(Arrays)A +F0(\).)A .346(If the \214rst character of)108 336 R F4(par)2.846 E (ameter)-.15 E F0 .346(is an e)2.846 F .346(xclamation point \()-.15 F -F2(!)A F0 .346(\), and)B F1(par)2.846 E(ameter)-.15 E F0 .346(is not a) -2.846 F F1(namer)2.846 E(ef)-.37 E F0 2.847(,i)C 2.847(ti)-2.847 G -(ntroduces)-2.847 E 2.907(al)108 283.2 S -2.15 -.25(ev e)-2.907 H 2.907 -(lo).25 G 2.906(fi)-2.907 G(ndirection.)-2.906 E F2(Bash)5.406 E F0 .406 +F1(!)A F0 .346(\), and)B F4(par)2.846 E(ameter)-.15 E F0 .346(is not a) +2.846 F F4(namer)2.846 E(ef)-.37 E F0 2.847(,i)C 2.847(ti)-2.847 G +(ntroduces)-2.847 E 2.907(al)108 348 S -2.15 -.25(ev e)-2.907 H 2.907 +(lo).25 G 2.906(fi)-2.907 G(ndirection.)-2.906 E F1(Bash)5.406 E F0 .406 (uses the v)2.906 F .406(alue formed by e)-.25 F .406 -(xpanding the rest of)-.15 F F1(par)2.906 E(ameter)-.15 E F0 .406 -(as the ne)2.906 F(w)-.25 E F1(par)2.906 E(ame-)-.15 E(ter)108 295.2 Q -F0 2.578(;t)C .078(his is then e)-2.578 F .078(xpanded and that v)-.15 F +(xpanding the rest of)-.15 F F4(par)2.906 E(ameter)-.15 E F0 .406 +(as the ne)2.906 F(w)-.25 E F4(par)2.906 E(ame-)-.15 E(ter)108 360 Q F0 +2.578(;t)C .078(his is then e)-2.578 F .078(xpanded and that v)-.15 F .079(alue is used in the rest of the e)-.25 F .079 (xpansion, rather than the e)-.15 F .079(xpansion of the)-.15 F -(original)108 307.2 Q F1(par)2.543 E(ameter)-.15 E F0 5.043(.T)C .043 -(his is kno)-5.043 F .043(wn as)-.25 F F1(indir)2.543 E .043(ect e)-.37 +(original)108 372 Q F4(par)2.543 E(ameter)-.15 E F0 5.043(.T)C .043 +(his is kno)-5.043 F .043(wn as)-.25 F F4(indir)2.543 E .043(ect e)-.37 F(xpansion)-.2 E F0 5.043(.T)C .043(he v)-5.043 F .042 (alue is subject to tilde e)-.25 F .042(xpansion, parameter)-.15 F -.15 -(ex)108 319.2 S .248(pansion, command substitution, and arithmetic e).15 -F 2.748(xpansion. If)-.15 F F1(par)2.749 E(ameter)-.15 E F0 .249 +(ex)108 384 S .248(pansion, command substitution, and arithmetic e).15 F +2.748(xpansion. If)-.15 F F4(par)2.749 E(ameter)-.15 E F0 .249 (is a nameref, this e)2.749 F .249(xpands to the)-.15 F 1.51 -(name of the parameter referenced by)108 331.2 R F1(par)4.01 E(ameter) --.15 E F0 1.51(instead of performing the complete indirect e)4.01 F -(xpansion.)-.15 E .387(The e)108 343.2 R .387 -(xceptions to this are the e)-.15 F .387(xpansions of ${)-.15 F F2(!)A -F1(pr)A(e\214x)-.37 E F2(*)A F0 2.887(}a)C .387(nd ${)-2.887 F F2(!)A F1 -(name)A F0([)A F1(@)A F0 .387(]} described belo)B 4.188 -.65(w. T)-.25 H -.388(he e).65 F(xclama-)-.15 E(tion point must immediately follo)108 -355.2 Q 2.5(wt)-.25 G(he left brace in order to introduce indirection.) --2.5 E .334(In each of the cases belo)108 372 R -.65(w,)-.25 G F1(wor) -3.484 E(d)-.37 E F0 .334(is subject to tilde e)2.834 F .334 -(xpansion, parameter e)-.15 F .334(xpansion, command substitution,)-.15 -F(and arithmetic e)108 384 Q(xpansion.)-.15 E .066 -(When not performing substring e)108 400.8 R .067 -(xpansion, using the forms documented belo)-.15 F 2.567(w\()-.25 G -(e.g.,)-2.567 E F2(:-)2.567 E F0(\),)A F2(bash)2.567 E F0 .067 -(tests for a pa-)2.567 F(rameter that is unset or null.)108 412.8 Q(Omi\ +(name of the parameter referenced by)108 396 R F4(par)4.01 E(ameter)-.15 +E F0 1.51(instead of performing the complete indirect e)4.01 F +(xpansion.)-.15 E .387(The e)108 408 R .387(xceptions to this are the e) +-.15 F .387(xpansions of ${)-.15 F F1(!)A F4(pr)A(e\214x)-.37 E F1(*)A +F0 2.887(}a)C .387(nd ${)-2.887 F F1(!)A F4(name)A F0([)A F4(@)A F0 .387 +(]} described belo)B 4.188 -.65(w. T)-.25 H .388(he e).65 F(xclama-)-.15 +E(tion point must immediately follo)108 420 Q 2.5(wt)-.25 G +(he left brace in order to introduce indirection.)-2.5 E .334 +(In each of the cases belo)108 436.8 R -.65(w,)-.25 G F4(wor)3.484 E(d) +-.37 E F0 .334(is subject to tilde e)2.834 F .334(xpansion, parameter e) +-.15 F .334(xpansion, command substitution,)-.15 F(and arithmetic e)108 +448.8 Q(xpansion.)-.15 E .066(When not performing substring e)108 465.6 +R .067(xpansion, using the forms documented belo)-.15 F 2.567(w\()-.25 G +(e.g.,)-2.567 E F1(:-)2.567 E F0(\),)A F1(bash)2.567 E F0 .067 +(tests for a pa-)2.567 F(rameter that is unset or null.)108 477.6 Q(Omi\ tting the colon results in a test only for a parameter that is unset.)5 -E(${)108 429.6 Q F1(par)A(ameter)-.15 E F2<3aad>A F1(wor)A(d)-.37 E F0 -(})A F2 .723(Use Default V)144 441.6 R(alues)-.92 E F0 5.723(.I)C(f) --5.723 E F1(par)4.473 E(ameter)-.15 E F0 .723(is unset or null, the e) -3.953 F .722(xpansion of)-.15 F F1(wor)3.562 E(d)-.37 E F0 .722 -(is substituted.)3.992 F(Other)5.722 E(-)-.2 E(wise, the v)144 453.6 Q -(alue of)-.25 E F1(par)3.75 E(ameter)-.15 E F0(is substituted.)3.23 E -(${)108 465.6 Q F1(par)A(ameter)-.15 E F2(:=)A F1(wor)A(d)-.37 E F0(})A -F2 .811(Assign Default V)144 477.6 R(alues)-.92 E F0 5.812(.I)C(f)-5.812 -E F1(par)4.562 E(ameter)-.15 E F0 .812(is unset or null, the e)4.042 F -.812(xpansion of)-.15 F F1(wor)3.652 E(d)-.37 E F0 .812(is assigned to) -4.082 F F1(pa-)4.562 E -.15(ra)144 489.6 S(meter).15 E F0 5.742(.T).73 G -.742(he v)-5.742 F .742(alue of)-.25 F F1(par)4.492 E(ameter)-.15 E F0 +E(${)108 494.4 Q F4(par)A(ameter)-.15 E F1<3aad>A F4(wor)A(d)-.37 E F0 +(})A F1 .723(Use Default V)144 506.4 R(alues)-.92 E F0 5.723(.I)C(f) +-5.723 E F4(par)4.473 E(ameter)-.15 E F0 .723(is unset or null, the e) +3.953 F .722(xpansion of)-.15 F F4(wor)3.562 E(d)-.37 E F0 .722 +(is substituted.)3.992 F(Other)5.722 E(-)-.2 E(wise, the v)144 518.4 Q +(alue of)-.25 E F4(par)3.75 E(ameter)-.15 E F0(is substituted.)3.23 E +(${)108 530.4 Q F4(par)A(ameter)-.15 E F1(:=)A F4(wor)A(d)-.37 E F0(})A +F1 .811(Assign Default V)144 542.4 R(alues)-.92 E F0 5.812(.I)C(f)-5.812 +E F4(par)4.562 E(ameter)-.15 E F0 .812(is unset or null, the e)4.042 F +.812(xpansion of)-.15 F F4(wor)3.652 E(d)-.37 E F0 .812(is assigned to) +4.082 F F4(pa-)4.562 E -.15(ra)144 554.4 S(meter).15 E F0 5.742(.T).73 G +.742(he v)-5.742 F .742(alue of)-.25 F F4(par)4.492 E(ameter)-.15 E F0 .742(is then substituted.)3.972 F .741 (Positional parameters and special parame-)5.742 F -(ters may not be assigned to in this w)144 501.6 Q(ay)-.1 E(.)-.65 E(${) -108 513.6 Q F1(par)A(ameter)-.15 E F2(:?)A F1(wor)A(d)-.37 E F0(})A F2 -.535(Display Err)144 525.6 R .535(or if Null or Unset)-.18 F F0 5.535 -(.I)C(f)-5.535 E F1(par)4.285 E(ameter)-.15 E F0 .535 -(is null or unset, the e)3.765 F .535(xpansion of)-.15 F F1(wor)3.035 E -(d)-.37 E F0 .535(\(or a mes-)3.035 F .013(sage to that ef)144 537.6 R -.013(fect if)-.25 F F1(wor)2.853 E(d)-.37 E F0 .013(is not present\) is\ +(ters may not be assigned to in this w)144 566.4 Q(ay)-.1 E(.)-.65 E(${) +108 578.4 Q F4(par)A(ameter)-.15 E F1(:?)A F4(wor)A(d)-.37 E F0(})A F1 +.535(Display Err)144 590.4 R .535(or if Null or Unset)-.18 F F0 5.535 +(.I)C(f)-5.535 E F4(par)4.285 E(ameter)-.15 E F0 .535 +(is null or unset, the e)3.765 F .535(xpansion of)-.15 F F4(wor)3.035 E +(d)-.37 E F0 .535(\(or a mes-)3.035 F .013(sage to that ef)144 602.4 R +.013(fect if)-.25 F F4(wor)2.853 E(d)-.37 E F0 .013(is not present\) is\ written to the standard error and the shell, if it is not in-)3.283 F -(teracti)144 549.6 Q -.15(ve)-.25 G 2.5(,e).15 G 2.5(xits. Otherwise,) --2.65 F(the v)2.5 E(alue of)-.25 E F1(par)2.5 E(ameter)-.15 E F0 -(is substituted.)2.5 E(${)108 561.6 Q F1(par)A(ameter)-.15 E F2(:+)A F1 -(wor)A(d)-.37 E F0(})A F2 .745(Use Alter)144 573.6 R .745(nate V)-.15 F -(alue)-.92 E F0 5.745(.I)C(f)-5.745 E F1(par)4.495 E(ameter)-.15 E F0 +(teracti)144 614.4 Q -.15(ve)-.25 G 2.5(,e).15 G 2.5(xits. Otherwise,) +-2.65 F(the v)2.5 E(alue of)-.25 E F4(par)2.5 E(ameter)-.15 E F0 +(is substituted.)2.5 E(${)108 626.4 Q F4(par)A(ameter)-.15 E F1(:+)A F4 +(wor)A(d)-.37 E F0(})A F1 .745(Use Alter)144 638.4 R .745(nate V)-.15 F +(alue)-.92 E F0 5.745(.I)C(f)-5.745 E F4(par)4.495 E(ameter)-.15 E F0 .745(is null or unset, nothing is substituted, otherwise the e)3.975 F -(xpan-)-.15 E(sion of)144 585.6 Q F1(wor)2.84 E(d)-.37 E F0 -(is substituted.)3.27 E(${)108 597.6 Q F1(par)A(ameter)-.15 E F2(:)A F1 -(of)A(fset)-.18 E F0(})A(${)108 609.6 Q F1(par)A(ameter)-.15 E F2(:)A F1 -(of)A(fset)-.18 E F2(:)A F1(length)A F0(})A F2 .002(Substring Expansion) -144 621.6 R F0 5.002(.E)C .002(xpands to up to)-5.002 F F1(length)2.502 -E F0 .002(characters of the v)2.502 F .002(alue of)-.25 F F1(par)2.502 E +(xpan-)-.15 E(sion of)144 650.4 Q F4(wor)2.84 E(d)-.37 E F0 +(is substituted.)3.27 E(${)108 662.4 Q F4(par)A(ameter)-.15 E F1(:)A F4 +(of)A(fset)-.18 E F0(})A(${)108 674.4 Q F4(par)A(ameter)-.15 E F1(:)A F4 +(of)A(fset)-.18 E F1(:)A F4(length)A F0(})A F1 .002(Substring Expansion) +144 686.4 R F0 5.002(.E)C .002(xpands to up to)-5.002 F F4(length)2.502 +E F0 .002(characters of the v)2.502 F .002(alue of)-.25 F F4(par)2.502 E (ameter)-.15 E F0 .002(starting at the)2.502 F .235 -(character speci\214ed by)144 633.6 R F1(of)2.735 E(fset)-.18 E F0 5.235 -(.I)C(f)-5.235 E F1(par)2.735 E(ameter)-.15 E F0(is)2.735 E F2(@)2.735 E +(character speci\214ed by)144 698.4 R F4(of)2.735 E(fset)-.18 E F0 5.235 +(.I)C(f)-5.235 E F4(par)2.735 E(ameter)-.15 E F0(is)2.735 E F1(@)2.735 E F0 2.735(,a)C 2.735(ni)-2.735 G(nde)-2.735 E -.15(xe)-.15 G 2.735(da).15 -G .235(rray subscripted by)-2.735 F F2(@)2.735 E F0(or)2.735 E F2(*) +G .235(rray subscripted by)-2.735 F F1(@)2.735 E F0(or)2.735 E F1(*) 2.735 E F0 2.735(,o)C 2.735(ra)-2.735 G 2.735(na)-2.735 G(s-)-2.735 E -(sociati)144 645.6 Q 1.578 -.15(ve a)-.25 H 1.278 +(sociati)144 710.4 Q 1.578 -.15(ve a)-.25 H 1.278 (rray name, the results dif).15 F 1.277(fer as described belo)-.25 F -5.077 -.65(w. I)-.25 H(f).65 E F1(length)3.777 E F0 1.277(is omitted, e) -3.777 F 1.277(xpands to the)-.15 F .042(substring of the v)144 657.6 R -.042(alue of)-.25 F F1(par)2.542 E(ameter)-.15 E F0 .043 -(starting at the character speci\214ed by)2.542 F F1(of)2.543 E(fset) --.18 E F0 .043(and e)2.543 F .043(xtending to the)-.15 F .847 -(end of the v)144 669.6 R(alue.)-.25 E F1(length)5.846 E F0(and)3.346 E -F1(of)3.346 E(fset)-.18 E F0 .846(are arithmetic e)3.346 F .846 -(xpressions \(see)-.15 F/F3 9/Times-Bold@0 SF .846(ARITHMETIC EV)3.346 F -(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E F0(belo)144 681.6 Q(w\).)-.25 E -(If)144 705.6 Q F1(of)3.028 E(fset)-.18 E F0 -.25(eva)3.029 G .529 -(luates to a number less than zero, the v).25 F .529 -(alue is used as an of)-.25 F .529(fset in characters from the)-.25 F -.046(end of the v)144 717.6 R .046(alue of)-.25 F F1(par)2.546 E(ameter) --.15 E F0 5.046(.I)C(f)-5.046 E F1(length)2.546 E F0 -.25(eva)2.546 G -.046(luates to a number less than zero, it is interpreted as an).25 F -(of)144 729.6 Q .202(fset in characters from the end of the v)-.25 F -.202(alue of)-.25 F F1(par)2.702 E(ameter)-.15 E F0 .203 -(rather than a number of characters, and)2.702 F(GNU Bash 5.0)72 768 Q -(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(22)185.545 E 0 Cg EP +5.077 -.65(w. I)-.25 H(f).65 E F4(length)3.777 E F0 1.277(is omitted, e) +3.777 F 1.277(xpands to the)-.15 F .042(substring of the v)144 722.4 R +.042(alue of)-.25 F F4(par)2.542 E(ameter)-.15 E F0 .043 +(starting at the character speci\214ed by)2.542 F F4(of)2.543 E(fset) +-.18 E F0 .043(and e)2.543 F .043(xtending to the)-.15 F(GNU Bash 5.0)72 +768 Q(2020 January 29)141.79 E(22)190.95 E 0 Cg EP %%Page: 23 23 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .558(the e)144 84 -R .558(xpansion is the characters between)-.15 F/F1 10/Times-Italic@0 SF -(of)3.058 E(fset)-.18 E F0 .558(and that result.)3.058 F .557 -(Note that a ne)5.557 F -.05(ga)-.15 G(ti).05 E .857 -.15(ve o)-.25 H --.25(ff).15 G .557(set must be).25 F -(separated from the colon by at least one space to a)144 96 Q -.2(vo)-.2 -G(id being confused with the).2 E/F2 10/Times-Bold@0 SF(:-)2.5 E F0 -.15 -(ex)2.5 G(pansion.).15 E(If)144 120 Q F1(par)2.958 E(ameter)-.15 E F0 -(is)2.958 E F2(@)2.958 E F0 2.958(,t)C .458(he result is)-2.958 F F1 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .847(end of the v) +144 84 R(alue.)-.25 E/F1 10/Times-Italic@0 SF(length)5.846 E F0(and) +3.346 E F1(of)3.346 E(fset)-.18 E F0 .846(are arithmetic e)3.346 F .846 +(xpressions \(see)-.15 F/F2 9/Times-Bold@0 SF .846(ARITHMETIC EV)3.346 F +(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E F0(belo)144 96 Q(w\).)-.25 E +(If)144 120 Q F1(of)3.028 E(fset)-.18 E F0 -.25(eva)3.029 G .529 +(luates to a number less than zero, the v).25 F .529 +(alue is used as an of)-.25 F .529(fset in characters from the)-.25 F +.046(end of the v)144 132 R .046(alue of)-.25 F F1(par)2.546 E(ameter) +-.15 E F0 5.046(.I)C(f)-5.046 E F1(length)2.546 E F0 -.25(eva)2.546 G +.046(luates to a number less than zero, it is interpreted as an).25 F +(of)144 144 Q .202(fset in characters from the end of the v)-.25 F .202 +(alue of)-.25 F F1(par)2.702 E(ameter)-.15 E F0 .203 +(rather than a number of characters, and)2.702 F .558(the e)144 156 R +.558(xpansion is the characters between)-.15 F F1(of)3.058 E(fset)-.18 E +F0 .558(and that result.)3.058 F .557(Note that a ne)5.557 F -.05(ga) +-.15 G(ti).05 E .857 -.15(ve o)-.25 H -.25(ff).15 G .557(set must be).25 +F(separated from the colon by at least one space to a)144 168 Q -.2(vo) +-.2 G(id being confused with the).2 E/F3 10/Times-Bold@0 SF(:-)2.5 E F0 +-.15(ex)2.5 G(pansion.).15 E(If)144 192 Q F1(par)2.958 E(ameter)-.15 E +F0(is)2.958 E F3(@)2.958 E F0 2.958(,t)C .458(he result is)-2.958 F F1 (length)2.959 E F0 .459(positional parameters be)2.959 F .459 (ginning at)-.15 F F1(of)2.959 E(fset)-.18 E F0 5.459(.A)C(ne)-2.5 E -.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G F1(of)3.109 E(fset)-.18 E F0 .6 -(is tak)144 132 R .6(en relati)-.1 F .9 -.15(ve t)-.25 H 3.1(oo).15 G .6 +(is tak)144 204 R .6(en relati)-.1 F .9 -.15(ve t)-.25 H 3.1(oo).15 G .6 (ne greater than the greatest positional parameter)-3.1 F 3.1(,s)-.4 G 3.1(oa)-3.1 G 3.1(no)-3.1 G -.25(ff)-3.1 G .6(set of \2551 e).25 F -.25 -(va)-.25 G(luates).25 E .639(to the last positional parameter)144 144 R +(va)-.25 G(luates).25 E .639(to the last positional parameter)144 216 R 5.639(.I)-.55 G 3.139(ti)-5.639 G 3.139(sa)-3.139 G 3.139(ne)-3.139 G .639(xpansion error if)-3.289 F F1(length)3.14 E F0 -.25(eva)3.14 G .64 -(luates to a number less than).25 F(zero.)144 156 Q(If)144 180 Q F1(par) +(luates to a number less than).25 F(zero.)144 228 Q(If)144 252 Q F1(par) 3.014 E(ameter)-.15 E F0 .514(is an inde)3.014 F -.15(xe)-.15 G 3.014 (da).15 G .514(rray name subscripted by @ or *, the result is the)-3.014 F F1(length)3.014 E F0 .513(members of)3.013 F 1.081(the array be)144 -192 R 1.081(ginning with ${)-.15 F F1(par)A(ameter)-.15 E F0([)A F1(of)A +264 R 1.081(ginning with ${)-.15 F F1(par)A(ameter)-.15 E F0([)A F1(of)A (fset)-.18 E F0 3.581(]}. A)B(ne)3.581 E -.05(ga)-.15 G(ti).05 E -.15 (ve)-.25 G F1(of)3.732 E(fset)-.18 E F0 1.082(is tak)3.582 F 1.082 (en relati)-.1 F 1.382 -.15(ve t)-.25 H 3.582(oo).15 G 1.082(ne greater) --3.582 F 1.08(than the maximum inde)144 204 R 3.58(xo)-.15 G 3.58(ft) +-3.582 F 1.08(than the maximum inde)144 276 R 3.58(xo)-.15 G 3.58(ft) -3.58 G 1.08(he speci\214ed array)-3.58 F 6.079(.I)-.65 G 3.579(ti) -6.079 G 3.579(sa)-3.579 G 3.579(ne)-3.579 G 1.079(xpansion error if) -3.729 F F1(length)3.579 E F0 -.25(eva)3.579 G 1.079(luates to a).25 F -(number less than zero.)144 216 Q(Substring e)144 240 Q +(number less than zero.)144 288 Q(Substring e)144 312 Q (xpansion applied to an associati)-.15 E .3 -.15(ve a)-.25 H -(rray produces unde\214ned results.).15 E .82(Substring inde)144 264 R +(rray produces unde\214ned results.).15 E .82(Substring inde)144 336 R .821(xing is zero-based unless the positional parameters are used, in w\ -hich case the in-)-.15 F(de)144 276 Q .159(xing starts at 1 by def)-.15 +hich case the in-)-.15 F(de)144 348 Q .159(xing starts at 1 by def)-.15 F 2.659(ault. If)-.1 F F1(of)2.659 E(fset)-.18 E F0 .159 -(is 0, and the positional parameters are used,)2.659 F F2($0)2.659 E F0 -.159(is pre\214x)2.659 F .158(ed to)-.15 F(the list.)144 288 Q(${)108 -304.8 Q F2(!)A F1(pr)A(e\214x)-.37 E F2(*)A F0(})A(${)108 316.8 Q F2(!)A -F1(pr)A(e\214x)-.37 E F2(@)A F0(})A F2 .084(Names matching pr)144 328.8 +(is 0, and the positional parameters are used,)2.659 F F3($0)2.659 E F0 +.159(is pre\214x)2.659 F .158(ed to)-.15 F(the list.)144 360 Q(${)108 +376.8 Q F3(!)A F1(pr)A(e\214x)-.37 E F3(*)A F0(})A(${)108 388.8 Q F3(!)A +F1(pr)A(e\214x)-.37 E F3(@)A F0(})A F3 .084(Names matching pr)144 400.8 R(e\214x)-.18 E F0 5.084(.E)C .084(xpands to the names of v)-5.084 F .084(ariables whose names be)-.25 F .085(gin with)-.15 F F1(pr)2.585 E (e\214x)-.37 E F0 2.585(,s)C(epa-)-2.585 E .258 -(rated by the \214rst character of the)144 340.8 R/F3 9/Times-Bold@0 SF -(IFS)2.758 E F0 .257(special v)2.507 F 2.757(ariable. When)-.25 F F1(@) -2.757 E F0 .257(is used and the e)2.757 F .257(xpansion appears)-.15 F -(within double quotes, each v)144 352.8 Q(ariable name e)-.25 E -(xpands to a separate w)-.15 E(ord.)-.1 E(${)108 369.6 Q F2(!)A F1(name) -A F0([)A F1(@)A F0(]})A(${)108 381.6 Q F2(!)A F1(name)A F0([)A F1(*)A F0 -(]})A F2 1.136(List of array k)144 393.6 R(eys)-.1 E F0 6.136(.I)C(f) +(rated by the \214rst character of the)144 412.8 R F2(IFS)2.758 E F0 +.257(special v)2.507 F 2.757(ariable. When)-.25 F F1(@)2.757 E F0 .257 +(is used and the e)2.757 F .257(xpansion appears)-.15 F +(within double quotes, each v)144 424.8 Q(ariable name e)-.25 E +(xpands to a separate w)-.15 E(ord.)-.1 E(${)108 441.6 Q F3(!)A F1(name) +A F0([)A F1(@)A F0(]})A(${)108 453.6 Q F3(!)A F1(name)A F0([)A F1(*)A F0 +(]})A F3 1.136(List of array k)144 465.6 R(eys)-.1 E F0 6.136(.I)C(f) -6.136 E F1(name)3.636 E F0 1.136(is an array v)3.636 F 1.136 (ariable, e)-.25 F 1.136(xpands to the list of array indices \(k)-.15 F --.15(ey)-.1 G 1.137(s\) as-).15 F .397(signed in)144 405.6 R F1(name) +-.15(ey)-.1 G 1.137(s\) as-).15 F .397(signed in)144 477.6 R F1(name) 2.897 E F0 5.397(.I)C(f)-5.397 E F1(name)2.897 E F0 .397 (is not an array)2.897 F 2.897(,e)-.65 G .397(xpands to 0 if)-3.047 F F1 (name)2.897 E F0 .397(is set and null otherwise.)2.897 F(When)5.397 E F1 -(@)2.897 E F0(is used and the e)144 417.6 Q +(@)2.897 E F0(is used and the e)144 489.6 Q (xpansion appears within double quotes, each k)-.15 E .3 -.15(ey ex)-.1 -H(pands to a separate w).15 E(ord.)-.1 E(${)108 434.4 Q F2(#)A F1(par)A -(ameter)-.15 E F0(})A F2 -.1(Pa)144 446.4 S .47(rameter length).1 F F0 +H(pands to a separate w).15 E(ord.)-.1 E(${)108 506.4 Q F3(#)A F1(par)A +(ameter)-.15 E F0(})A F3 -.1(Pa)144 518.4 S .47(rameter length).1 F F0 5.47(.T)C .471(he length in characters of the v)-5.47 F .471(alue of) -.25 F F1(par)2.971 E(ameter)-.15 E F0 .471(is substituted.)2.971 F(If) -5.471 E F1(par)4.221 E(ame-)-.15 E(ter)144 458.4 Q F0(is)3.627 E F2(*) -2.897 E F0(or)2.897 E F2(@)2.897 E F0 2.897(,t)C .397(he v)-2.897 F .397 +5.471 E F1(par)4.221 E(ame-)-.15 E(ter)144 530.4 Q F0(is)3.627 E F3(*) +2.897 E F0(or)2.897 E F3(@)2.897 E F0 2.897(,t)C .397(he v)-2.897 F .397 (alue substituted is the number of positional parameters.)-.25 F(If) 5.396 E F1(par)4.146 E(ameter)-.15 E F0 .396(is an ar)3.626 F(-)-.2 E -.78(ray name subscripted by)144 470.4 R F2(*)3.28 E F0(or)3.28 E F2(@) +.78(ray name subscripted by)144 542.4 R F3(*)3.28 E F0(or)3.28 E F3(@) 3.28 E F0 3.28(,t)C .78(he v)-3.28 F .781 (alue substituted is the number of elements in the array)-.25 F 5.781 -(.I)-.65 G(f)-5.781 E F1(par)145.25 482.4 Q(ameter)-.15 E F0 .456 +(.I)-.65 G(f)-5.781 E F1(par)145.25 554.4 Q(ameter)-.15 E F0 .456 (is an inde)3.686 F -.15(xe)-.15 G 2.956(da).15 G .456 (rray name subscripted by a ne)-2.956 F -.05(ga)-.15 G(ti).05 E .756 -.15(ve n)-.25 H(umber).15 E 2.955(,t)-.4 G .455 -(hat number is interpreted)-2.955 F .972(as relati)144 494.4 R 1.272 +(hat number is interpreted)-2.955 F .972(as relati)144 566.4 R 1.272 -.15(ve t)-.25 H 3.472(oo).15 G .973(ne greater than the maximum inde) -3.472 F 3.473(xo)-.15 G(f)-3.473 E F1(par)3.473 E(ameter)-.15 E F0 3.473(,s)C 3.473(on)-3.473 G -2.25 -.15(eg a)-3.473 H(ti).15 E 1.273 -.15(ve i)-.25 H .973(ndices count back).15 F(from the end of the array) -144 506.4 Q 2.5(,a)-.65 G(nd an inde)-2.5 E 2.5(xo)-.15 G 2.5<66ad>-2.5 -G 2.5(1r)-2.5 G(eferences the last element.)-2.5 E(${)108 523.2 Q F1 -(par)A(ameter)-.15 E F2(#)A F1(wor)A(d)-.37 E F0(})A(${)108 535.2 Q F1 -(par)A(ameter)-.15 E F2(##)A F1(wor)A(d)-.37 E F0(})A F2(Remo)144 547.2 +144 578.4 Q 2.5(,a)-.65 G(nd an inde)-2.5 E 2.5(xo)-.15 G 2.5<66ad>-2.5 +G 2.5(1r)-2.5 G(eferences the last element.)-2.5 E(${)108 595.2 Q F1 +(par)A(ameter)-.15 E F3(#)A F1(wor)A(d)-.37 E F0(})A(${)108 607.2 Q F1 +(par)A(ameter)-.15 E F3(##)A F1(wor)A(d)-.37 E F0(})A F3(Remo)144 619.2 Q 1.396 -.1(ve m)-.1 H 1.196(atching pr).1 F 1.196(e\214x patter)-.18 F (n)-.15 E F0 6.196(.T)C(he)-6.196 E F1(wor)4.036 E(d)-.37 E F0 1.196 (is e)4.466 F 1.196(xpanded to produce a pattern just as in path-)-.15 F -.543(name e)144 559.2 R .544(xpansion, and matched ag)-.15 F .544 +.543(name e)144 631.2 R .544(xpansion, and matched ag)-.15 F .544 (ainst the e)-.05 F .544(xpanded v)-.15 F .544(alue of)-.25 F F1(par) 4.294 E(ameter)-.15 E F0 .544(using the rules described)3.774 F(under) -144 571.2 Q F2 -.1(Pa)3.133 G(tter).1 E 3.133(nM)-.15 G(atching)-3.133 E +144 643.2 Q F3 -.1(Pa)3.133 G(tter).1 E 3.133(nM)-.15 G(atching)-3.133 E F0(belo)3.132 E 4.432 -.65(w. I)-.25 H 3.132(ft).65 G .632 (he pattern matches the be)-3.132 F .632(ginning of the v)-.15 F .632 (alue of)-.25 F F1(par)4.382 E(ameter)-.15 E F0(,).73 E 1.151 -(then the result of the e)144 583.2 R 1.151(xpansion is the e)-.15 F +(then the result of the e)144 655.2 R 1.151(xpansion is the e)-.15 F 1.151(xpanded v)-.15 F 1.151(alue of)-.25 F F1(par)4.902 E(ameter)-.15 E F0 1.152(with the shortest matching)4.382 F .184(pattern \(the `)144 -595.2 R(`)-.74 E F2(#)A F0 1.664 -.74('' c)D .184 -(ase\) or the longest matching pattern \(the `).74 F(`)-.74 E F2(##)A F0 +667.2 R(`)-.74 E F3(#)A F0 1.664 -.74('' c)D .184 +(ase\) or the longest matching pattern \(the `).74 F(`)-.74 E F3(##)A F0 1.664 -.74('' c)D .184(ase\) deleted.).74 F(If)5.183 E F1(par)3.933 E -(ameter)-.15 E F0(is)3.413 E F2(@)2.683 E F0(or)144 607.2 Q F2(*)3.018 E +(ameter)-.15 E F0(is)3.413 E F3(@)2.683 E F0(or)144 679.2 Q F3(*)3.018 E F0 3.018(,t)C .518(he pattern remo)-3.018 F -.25(va)-.15 G 3.018(lo).25 G .518 (peration is applied to each positional parameter in turn, and the e) --3.018 F(xpan-)-.15 E .304(sion is the resultant list.)144 619.2 R(If) +-3.018 F(xpan-)-.15 E .304(sion is the resultant list.)144 691.2 R(If) 5.304 E F1(par)4.054 E(ameter)-.15 E F0 .303(is an array v)3.533 F .303 -(ariable subscripted with)-.25 F F2(@)2.803 E F0(or)2.803 E F2(*)2.803 E -F0 2.803(,t)C .303(he pattern re-)-2.803 F(mo)144 631.2 Q -.25(va)-.15 G +(ariable subscripted with)-.25 F F3(@)2.803 E F0(or)2.803 E F3(*)2.803 E +F0 2.803(,t)C .303(he pattern re-)-2.803 F(mo)144 703.2 Q -.25(va)-.15 G 2.987(lo).25 G .487 (peration is applied to each member of the array in turn, and the e) --2.987 F .487(xpansion is the resultant)-.15 F(list.)144 643.2 Q(${)108 -660 Q F1(par)A(ameter)-.15 E F2(%)A F1(wor)A(d)-.37 E F0(})A(${)108 672 -Q F1(par)A(ameter)-.15 E F2(%%)A F1(wor)A(d)-.37 E F0(})A F2(Remo)144 -684 Q .347 -.1(ve m)-.1 H .147(atching suf\214x patter).1 F(n)-.15 E F0 -5.147(.T)C(he)-5.147 E F1(wor)2.647 E(d)-.37 E F0 .147(is e)2.647 F .146 -(xpanded to produce a pattern just as in pathname)-.15 F -.15(ex)144 696 +-2.987 F .487(xpansion is the resultant)-.15 F(list.)144 715.2 Q +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(23)190.95 E 0 Cg EP +%%Page: 24 24 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(${)108 84 Q/F1 10 +/Times-Italic@0 SF(par)A(ameter)-.15 E/F2 10/Times-Bold@0 SF(%)A F1(wor) +A(d)-.37 E F0(})A(${)108 96 Q F1(par)A(ameter)-.15 E F2(%%)A F1(wor)A(d) +-.37 E F0(})A F2(Remo)144 108 Q .347 -.1(ve m)-.1 H .147 +(atching suf\214x patter).1 F(n)-.15 E F0 5.147(.T)C(he)-5.147 E F1(wor) +2.647 E(d)-.37 E F0 .147(is e)2.647 F .146 +(xpanded to produce a pattern just as in pathname)-.15 F -.15(ex)144 120 S .458(pansion, and matched ag).15 F .458(ainst the e)-.05 F .458 (xpanded v)-.15 F .458(alue of)-.25 F F1(par)4.209 E(ameter)-.15 E F0 -.459(using the rules described under)3.689 F F2 -.1(Pa)144 708 S(tter).1 +.459(using the rules described under)3.689 F F2 -.1(Pa)144 132 S(tter).1 E 3.314(nM)-.15 G(atching)-3.314 E F0(belo)3.314 E 4.614 -.65(w. I)-.25 H 3.314(ft).65 G .814(he pattern matches a trailing portion of the e) -3.314 F .814(xpanded v)-.15 F .814(alue of)-.25 F F1(pa-)4.564 E -.15 -(ra)144 720 S(meter).15 E F0 3.816(,t).73 G 1.316 +(ra)144 144 S(meter).15 E F0 3.816(,t).73 G 1.316 (hen the result of the e)-3.816 F 1.317(xpansion is the e)-.15 F 1.317 (xpanded v)-.15 F 1.317(alue of)-.25 F F1(par)5.067 E(ameter)-.15 E F0 -1.317(with the shortest)4.547 F(GNU Bash 5.0)72 768 Q(2019 No)136.385 E --.15(ve)-.15 G(mber 26).15 E(23)185.545 E 0 Cg EP -%%Page: 24 24 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.085 -(matching pattern \(the `)144 84 R(`)-.74 E/F1 10/Times-Bold@0 SF(%)A F0 -2.565 -.74('' c)D 1.084(ase\) or the longest matching pattern \(the `) -.74 F(`)-.74 E F1(%%)A F0 2.564 -.74('' c)D 1.084(ase\) deleted.).74 F -(If)6.084 E/F2 10/Times-Italic@0 SF(par)145.25 96 Q(ameter)-.15 E F0(is) -3.389 E F1(@)2.659 E F0(or)2.659 E F1(*)2.659 E F0 2.659(,t)C .159 -(he pattern remo)-2.659 F -.25(va)-.15 G 2.659(lo).25 G .16 -(peration is applied to each positional parameter in turn,)-2.659 F .51 -(and the e)144 108 R .51(xpansion is the resultant list.)-.15 F(If)5.51 -E F2(par)4.259 E(ameter)-.15 E F0 .509(is an array v)3.739 F .509 -(ariable subscripted with)-.25 F F1(@)3.009 E F0(or)3.009 E F1(*)3.009 E -F0(,)A .422(the pattern remo)144 120 R -.25(va)-.15 G 2.922(lo).25 G -.422(peration is applied to each member of the array in turn, and the e) --2.922 F .423(xpansion is)-.15 F(the resultant list.)144 132 Q(${)108 -148.8 Q F2(par)A(ameter)-.15 E F1(/)A F2(pattern)A F1(/)A F2(string)A F0 -(})A F1 -.1(Pa)144 160.8 S(tter).1 E 3.607(ns)-.15 G(ubstitution)-3.607 -E F0 6.107(.T)C(he)-6.107 E F2(pattern)3.607 E F0 1.107(is e)3.607 F +1.317(with the shortest)4.547 F 1.085(matching pattern \(the `)144 156 R +(`)-.74 E F2(%)A F0 2.565 -.74('' c)D 1.084 +(ase\) or the longest matching pattern \(the `).74 F(`)-.74 E F2(%%)A F0 +2.564 -.74('' c)D 1.084(ase\) deleted.).74 F(If)6.084 E F1(par)145.25 +168 Q(ameter)-.15 E F0(is)3.389 E F2(@)2.659 E F0(or)2.659 E F2(*)2.659 +E F0 2.659(,t)C .159(he pattern remo)-2.659 F -.25(va)-.15 G 2.659(lo) +.25 G .16(peration is applied to each positional parameter in turn,) +-2.659 F .51(and the e)144 180 R .51(xpansion is the resultant list.) +-.15 F(If)5.51 E F1(par)4.259 E(ameter)-.15 E F0 .509(is an array v) +3.739 F .509(ariable subscripted with)-.25 F F2(@)3.009 E F0(or)3.009 E +F2(*)3.009 E F0(,)A .422(the pattern remo)144 192 R -.25(va)-.15 G 2.922 +(lo).25 G .422 +(peration is applied to each member of the array in turn, and the e) +-2.922 F .423(xpansion is)-.15 F(the resultant list.)144 204 Q(${)108 +220.8 Q F1(par)A(ameter)-.15 E F2(/)A F1(pattern)A F2(/)A F1(string)A F0 +(})A F2 -.1(Pa)144 232.8 S(tter).1 E 3.607(ns)-.15 G(ubstitution)-3.607 +E F0 6.107(.T)C(he)-6.107 E F1(pattern)3.607 E F0 1.107(is e)3.607 F 1.106(xpanded to produce a pattern just as in pathname e)-.15 F(xpan-) --.15 E(sion,)144 172.8 Q F2 -.8(Pa)3.7 G -.15(ra).8 G(meter).15 E F0 1.2 -(is e)3.7 F 1.2(xpanded and the longest match of)-.15 F F2(pattern)3.7 E -F0(ag)3.7 E 1.2(ainst its v)-.05 F 1.2(alue is replaced with)-.25 F F2 -(string)144 184.8 Q F0 5.397(.T)C .397 -(he match is performed using the rules described under)-5.397 F F1 -.1 +-.15 E(sion,)144 244.8 Q F1 -.8(Pa)3.7 G -.15(ra).8 G(meter).15 E F0 1.2 +(is e)3.7 F 1.2(xpanded and the longest match of)-.15 F F1(pattern)3.7 E +F0(ag)3.7 E 1.2(ainst its v)-.05 F 1.2(alue is replaced with)-.25 F F1 +(string)144 256.8 Q F0 5.397(.T)C .397 +(he match is performed using the rules described under)-5.397 F F2 -.1 (Pa)2.896 G(tter).1 E 2.896(nM)-.15 G(atching)-2.896 E F0(belo)2.896 E -4.196 -.65(w. I)-.25 H(f).65 E F2(pat-)2.896 E(tern)144 196.8 Q F0(be) -2.569 E .069(gins with)-.15 F F1(/)2.569 E F0 2.569(,a)C .069 -(ll matches of)-2.569 F F2(pattern)2.569 E F0 .069(are replaced with) -2.569 F F2(string)2.57 E F0 5.07(.N)C .07 -(ormally only the \214rst match is)-5.07 F 2.58(replaced. If)144 208.8 R -F2(pattern)2.58 E F0(be)2.58 E .08(gins with)-.15 F F1(#)2.58 E F0 2.58 +4.196 -.65(w. I)-.25 H(f).65 E F1(pat-)2.896 E(tern)144 268.8 Q F0(be) +2.569 E .069(gins with)-.15 F F2(/)2.569 E F0 2.569(,a)C .069 +(ll matches of)-2.569 F F1(pattern)2.569 E F0 .069(are replaced with) +2.569 F F1(string)2.57 E F0 5.07(.N)C .07 +(ormally only the \214rst match is)-5.07 F 2.58(replaced. If)144 280.8 R +F1(pattern)2.58 E F0(be)2.58 E .08(gins with)-.15 F F2(#)2.58 E F0 2.58 (,i)C 2.58(tm)-2.58 G .079(ust match at the be)-2.58 F .079 -(ginning of the e)-.15 F .079(xpanded v)-.15 F .079(alue of)-.25 F F2 -(par)2.579 E(am-)-.15 E(eter)144 220.8 Q F0 5.761(.I)C(f)-5.761 E F2 -(pattern)3.261 E F0(be)3.261 E .761(gins with)-.15 F F1(%)3.261 E F0 +(ginning of the e)-.15 F .079(xpanded v)-.15 F .079(alue of)-.25 F F1 +(par)2.579 E(am-)-.15 E(eter)144 292.8 Q F0 5.761(.I)C(f)-5.761 E F1 +(pattern)3.261 E F0(be)3.261 E .761(gins with)-.15 F F2(%)3.261 E F0 3.261(,i)C 3.261(tm)-3.261 G .761(ust match at the end of the e)-3.261 F -.761(xpanded v)-.15 F .761(alue of)-.25 F F2(par)3.262 E(ameter)-.15 E -F0 5.762(.I)C(f)-5.762 E F2(string)144 232.8 Q F0 .958 -(is null, matches of)3.458 F F2(pattern)3.458 E F0 .958 -(are deleted and the)3.458 F F1(/)3.458 E F0(follo)3.458 E(wing)-.25 E -F2(pattern)3.457 E F0 .957(may be omitted.)3.457 F .957(If the)5.957 F -F1(nocasematch)144 244.8 Q F0 .492 +.761(xpanded v)-.15 F .761(alue of)-.25 F F1(par)3.262 E(ameter)-.15 E +F0 5.762(.I)C(f)-5.762 E F1(string)144 304.8 Q F0 .958 +(is null, matches of)3.458 F F1(pattern)3.458 E F0 .958 +(are deleted and the)3.458 F F2(/)3.458 E F0(follo)3.458 E(wing)-.25 E +F1(pattern)3.457 E F0 .957(may be omitted.)3.457 F .957(If the)5.957 F +F2(nocasematch)144 316.8 Q F0 .492 (shell option is enabled, the match is performed without re)2.992 F -.05 (ga)-.15 G .492(rd to the case of alpha-).05 F .884(betic characters.) -144 256.8 R(If)5.884 E F2(par)4.634 E(ameter)-.15 E F0(is)4.114 E F1(@) -3.384 E F0(or)3.383 E F1(*)3.383 E F0 3.383(,t)C .883 +144 328.8 R(If)5.884 E F1(par)4.634 E(ameter)-.15 E F0(is)4.114 E F2(@) +3.384 E F0(or)3.383 E F2(*)3.383 E F0 3.383(,t)C .883 (he substitution operation is applied to each positional)-3.383 F 1.002 -(parameter in turn, and the e)144 268.8 R 1.002 -(xpansion is the resultant list.)-.15 F(If)6.002 E F2(par)4.752 E +(parameter in turn, and the e)144 340.8 R 1.002 +(xpansion is the resultant list.)-.15 F(If)6.002 E F1(par)4.752 E (ameter)-.15 E F0 1.002(is an array v)4.232 F 1.002(ariable sub-)-.25 F -.159(scripted with)144 280.8 R F1(@)2.659 E F0(or)2.659 E F1(*)2.659 E +.159(scripted with)144 352.8 R F2(@)2.659 E F0(or)2.659 E F2(*)2.659 E F0 2.659(,t)C .159(he substitution operation is applied to each member \ -of the array in turn, and)-2.659 F(the e)144 292.8 Q -(xpansion is the resultant list.)-.15 E(${)108 309.6 Q F2(par)A(ameter) --.15 E F1(^)A F2(pattern)A F0(})A(${)108 321.6 Q F2(par)A(ameter)-.15 E -F1(^^)A F2(pattern)A F0(})A(${)108 333.6 Q F2(par)A(ameter)-.15 E F1(,)A -F2(pattern)A F0(})A(${)108 345.6 Q F2(par)A(ameter)-.15 E F1(,,)A F2 -(pattern)A F0(})A F1 .437(Case modi\214cation)144 357.6 R F0 5.437(.T)C +of the array in turn, and)-2.659 F(the e)144 364.8 Q +(xpansion is the resultant list.)-.15 E(${)108 381.6 Q F1(par)A(ameter) +-.15 E F2(^)A F1(pattern)A F0(})A(${)108 393.6 Q F1(par)A(ameter)-.15 E +F2(^^)A F1(pattern)A F0(})A(${)108 405.6 Q F1(par)A(ameter)-.15 E F2(,)A +F1(pattern)A F0(})A(${)108 417.6 Q F1(par)A(ameter)-.15 E F2(,,)A F1 +(pattern)A F0(})A F2 .437(Case modi\214cation)144 429.6 R F0 5.437(.T)C .437(his e)-5.437 F .438 -(xpansion modi\214es the case of alphabetic characters in)-.15 F F2(par) -2.938 E(ameter)-.15 E F0 5.438(.T)C(he)-5.438 E F2(pattern)144 369.6 Q +(xpansion modi\214es the case of alphabetic characters in)-.15 F F1(par) +2.938 E(ameter)-.15 E F0 5.438(.T)C(he)-5.438 E F1(pattern)144 441.6 Q F0 .374(is e)2.874 F .374 (xpanded to produce a pattern just as in pathname e)-.15 F 2.874 (xpansion. Each)-.15 F .373(character in the e)2.873 F(x-)-.15 E .513 -(panded v)144 381.6 R .513(alue of)-.25 F F2(par)3.013 E(ameter)-.15 E -F0 .513(is tested ag)3.013 F(ainst)-.05 E F2(pattern)3.013 E F0 3.013 +(panded v)144 453.6 R .513(alue of)-.25 F F1(par)3.013 E(ameter)-.15 E +F0 .513(is tested ag)3.013 F(ainst)-.05 E F1(pattern)3.013 E F0 3.013 (,a)C .514(nd, if it matches the pattern, its case is con-)-3.013 F -.15 -(ve)144 393.6 S 2.823(rted. The).15 F .323 +(ve)144 465.6 S 2.823(rted. The).15 F .323 (pattern should not attempt to match more than one character)2.823 F -5.322(.T)-.55 G(he)-5.322 E F1(^)2.822 E F0 .322(operator con)2.822 F --.15(ve)-.4 G(rts).15 E(lo)144 405.6 Q .18(wercase letters matching)-.25 -F F2(pattern)2.681 E F0 .181(to uppercase; the)2.681 F F1(,)2.681 E F0 +5.322(.T)-.55 G(he)-5.322 E F2(^)2.822 E F0 .322(operator con)2.822 F +-.15(ve)-.4 G(rts).15 E(lo)144 477.6 Q .18(wercase letters matching)-.25 +F F1(pattern)2.681 E F0 .181(to uppercase; the)2.681 F F2(,)2.681 E F0 .181(operator con)2.681 F -.15(ve)-.4 G .181 -(rts matching uppercase letters).15 F .085(to lo)144 417.6 R 2.585 -(wercase. The)-.25 F F1(^^)2.585 E F0(and)2.585 E F1(,,)2.585 E F0 -.15 +(rts matching uppercase letters).15 F .085(to lo)144 489.6 R 2.585 +(wercase. The)-.25 F F2(^^)2.585 E F0(and)2.585 E F2(,,)2.585 E F0 -.15 (ex)2.585 G .085(pansions con).15 F -.15(ve)-.4 G .085 (rt each matched character in the e).15 F .085(xpanded v)-.15 F .085 -(alue; the)-.25 F F1(^)2.585 E F0(and)144 429.6 Q F1(,)3.59 E F0 -.15 +(alue; the)-.25 F F2(^)2.585 E F0(and)144 501.6 Q F2(,)3.59 E F0 -.15 (ex)3.59 G 1.09(pansions match and con).15 F -.15(ve)-.4 G 1.091 (rt only the \214rst character in the e).15 F 1.091(xpanded v)-.15 F -3.591(alue. If)-.25 F F2(pattern)3.591 E F0(is)3.591 E 1.121 -(omitted, it is treated lik)144 441.6 R 3.621(ea)-.1 G F1(?)A F0 3.621 +3.591(alue. If)-.25 F F1(pattern)3.591 E F0(is)3.591 E 1.121 +(omitted, it is treated lik)144 513.6 R 3.621(ea)-.1 G F2(?)A F0 3.621 (,w)C 1.121(hich matches e)-3.621 F -.15(ve)-.25 G 1.121(ry character) -.15 F 6.12(.I)-.55 G(f)-6.12 E F2(par)4.87 E(ameter)-.15 E F0(is)4.35 E -F1(@)3.62 E F0(or)3.62 E F1(*)3.62 E F0 3.62(,t)C 1.12(he case)-3.62 F +.15 F 6.12(.I)-.55 G(f)-6.12 E F1(par)4.87 E(ameter)-.15 E F0(is)4.35 E +F2(@)3.62 E F0(or)3.62 E F2(*)3.62 E F0 3.62(,t)C 1.12(he case)-3.62 F .339(modi\214cation operation is applied to each positional parameter i\ -n turn, and the e)144 453.6 R .34(xpansion is the re-)-.15 F .25 -(sultant list.)144 465.6 R(If)5.25 E F2(par)4 E(ameter)-.15 E F0 .25 -(is an array v)3.48 F .249(ariable subscripted with)-.25 F F1(@)2.749 E -F0(or)2.749 E F1(*)2.749 E F0 2.749(,t)C .249 +n turn, and the e)144 525.6 R .34(xpansion is the re-)-.15 F .25 +(sultant list.)144 537.6 R(If)5.25 E F1(par)4 E(ameter)-.15 E F0 .25 +(is an array v)3.48 F .249(ariable subscripted with)-.25 F F2(@)2.749 E +F0(or)2.749 E F2(*)2.749 E F0 2.749(,t)C .249 (he case modi\214cation oper)-2.749 F(-)-.2 E (ation is applied to each member of the array in turn, and the e)144 -477.6 Q(xpansion is the resultant list.)-.15 E(${)108 494.4 Q F2(par)A -(ameter)-.15 E F1(@)A F2(oper)A(ator)-.15 E F0(})A F1 -.1(Pa)144 506.4 S +549.6 Q(xpansion is the resultant list.)-.15 E(${)108 566.4 Q F1(par)A +(ameter)-.15 E F2(@)A F1(oper)A(ator)-.15 E F0(})A F2 -.1(Pa)144 578.4 S .86(rameter transf).1 F(ormation)-.25 E F0 5.86(.T)C .86(he e)-5.86 F .86(xpansion is either a transformation of the v)-.15 F .86(alue of)-.25 -F F2(par)3.36 E(ameter)-.15 E F0 .154(or information about)144 518.4 R -F2(par)2.654 E(ameter)-.15 E F0 .153(itself, depending on the v)2.654 F -.153(alue of)-.25 F F2(oper)2.653 E(ator)-.15 E F0 5.153(.E)C(ach)-5.153 -E F2(oper)2.653 E(ator)-.15 E F0 .153(is a sin-)2.653 F(gle letter:)144 -530.4 Q F1(Q)144 554.4 Q F0 1.064(The e)180 554.4 R 1.064 -(xpansion is a string that is the v)-.15 F 1.065(alue of)-.25 F F2(par) +F F1(par)3.36 E(ameter)-.15 E F0 .154(or information about)144 590.4 R +F1(par)2.654 E(ameter)-.15 E F0 .153(itself, depending on the v)2.654 F +.153(alue of)-.25 F F1(oper)2.653 E(ator)-.15 E F0 5.153(.E)C(ach)-5.153 +E F1(oper)2.653 E(ator)-.15 E F0 .153(is a sin-)2.653 F(gle letter:)144 +602.4 Q F2(Q)144 626.4 Q F0 1.064(The e)180 626.4 R 1.064 +(xpansion is a string that is the v)-.15 F 1.065(alue of)-.25 F F1(par) 3.565 E(ameter)-.15 E F0 1.065(quoted in a format that can be)3.565 F -(reused as input.)180 566.4 Q F1(E)144 578.4 Q F0 .441(The e)180 578.4 R -.441(xpansion is a string that is the v)-.15 F .441(alue of)-.25 F F2 +(reused as input.)180 638.4 Q F2(E)144 650.4 Q F0 .441(The e)180 650.4 R +.441(xpansion is a string that is the v)-.15 F .441(alue of)-.25 F F1 (par)2.941 E(ameter)-.15 E F0 .44(with backslash escape sequences)2.94 F --.15(ex)180 590.4 S(panded as with the).15 E F1($'...)2.5 E(')-.55 E F0 -(quoting mechanism.)2.5 E F1(P)144 602.4 Q F0 1.072(The e)180 602.4 R +-.15(ex)180 662.4 S(panded as with the).15 E F2($'...)2.5 E(')-.55 E F0 +(quoting mechanism.)2.5 E F2(P)144 674.4 Q F0 1.072(The e)180 674.4 R 1.073(xpansion is a string that is the result of e)-.15 F 1.073 -(xpanding the v)-.15 F 1.073(alue of)-.25 F F2(par)3.573 E(ameter)-.15 E -F0 1.073(as if it)3.573 F(were a prompt string \(see)180 614.4 Q F1(PR) -2.5 E(OMPTING)-.3 E F0(belo)2.5 E(w\).)-.25 E F1(A)144 626.4 Q F0 1.138 -(The e)180 626.4 R 1.138 +(xpanding the v)-.15 F 1.073(alue of)-.25 F F1(par)3.573 E(ameter)-.15 E +F0 1.073(as if it)3.573 F(were a prompt string \(see)180 686.4 Q F2(PR) +2.5 E(OMPTING)-.3 E F0(belo)2.5 E(w\).)-.25 E F2(A)144 698.4 Q F0 1.138 +(The e)180 698.4 R 1.138 (xpansion is a string in the form of an assignment statement or)-.15 F -F1(declar)3.637 E(e)-.18 E F0(command)3.637 E(that, if e)180 638.4 Q --.25(va)-.25 G(luated, will recreate).25 E F2(par)2.5 E(ameter)-.15 E F0 -(with its attrib)2.5 E(utes and v)-.2 E(alue.)-.25 E F1(a)144 650.4 Q F0 -(The e)180 650.4 Q(xpansion is a string consisting of \215ag v)-.15 E -(alues representing)-.25 E F2(par)2.5 E(ameter)-.15 E F0 1.1 -.55('s a)D -(ttrib).55 E(utes.)-.2 E(If)144 667.2 Q F2(par)4.402 E(ameter)-.15 E F0 +F2(declar)3.637 E(e)-.18 E F0(command)3.637 E(that, if e)180 710.4 Q +-.25(va)-.25 G(luated, will recreate).25 E F1(par)2.5 E(ameter)-.15 E F0 +(with its attrib)2.5 E(utes and v)-.2 E(alue.)-.25 E(GNU Bash 5.0)72 768 +Q(2020 January 29)141.79 E(24)190.95 E 0 Cg EP +%%Page: 25 25 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(a)144 84 Q F0(The e)180 84 Q +(xpansion is a string consisting of \215ag v)-.15 E(alues representing) +-.25 E/F2 10/Times-Italic@0 SF(par)2.5 E(ameter)-.15 E F0 1.1 -.55('s a) +D(ttrib).55 E(utes.)-.2 E(If)144 100.8 Q F2(par)4.402 E(ameter)-.15 E F0 (is)3.882 E F1(@)3.152 E F0(or)3.152 E F1(*)3.153 E F0 3.153(,t)C .653(\ he operation is applied to each positional parameter in turn, and the e) --3.153 F(x-)-.15 E .403(pansion is the resultant list.)144 679.2 R(If) +-3.153 F(x-)-.15 E .403(pansion is the resultant list.)144 112.8 R(If) 5.403 E F2(par)4.153 E(ameter)-.15 E F0 .403(is an array v)3.633 F .403 (ariable subscripted with)-.25 F F1(@)2.903 E F0(or)2.903 E F1(*)2.903 E F0 2.903(,t)C .402(he opera-)-2.903 F (tion is applied to each member of the array in turn, and the e)144 -691.2 Q(xpansion is the resultant list.)-.15 E .708(The result of the e) -144 715.2 R .708(xpansion is subject to w)-.15 F .708 +124.8 Q(xpansion is the resultant list.)-.15 E .708(The result of the e) +144 148.8 R .708(xpansion is subject to w)-.15 F .708 (ord splitting and pathname e)-.1 F .708(xpansion as described be-)-.15 -F(lo)144 727.2 Q -.65(w.)-.25 G(GNU Bash 5.0)72 768 Q(2019 No)136.385 E --.15(ve)-.15 G(mber 26).15 E(24)185.545 E 0 Cg EP -%%Page: 25 25 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(Command Substitution)87 84 Q/F2 10/Times-Italic@0 SF 1.698 -(Command substitution)108 96 R F0(allo)4.198 E 1.697 +F(lo)144 160.8 Q -.65(w.)-.25 G F1(Command Substitution)87 177.6 Q F2 +1.698(Command substitution)108 189.6 R F0(allo)4.198 E 1.697 (ws the output of a command to replace the command name.)-.25 F 1.697 -(There are tw)6.697 F(o)-.1 E(forms:)108 108 Q F1($\()144 124.8 Q F2 -(command)A F1(\))1.666 E F0(or)108 136.8 Q F1<92>144 148.8 Q F2(command) -A F1<92>A(Bash)108 165.6 Q F0 .088(performs the e)2.588 F .088 +(There are tw)6.697 F(o)-.1 E(forms:)108 201.6 Q F1($\()144 218.4 Q F2 +(command)A F1(\))1.666 E F0(or)108 230.4 Q F1<92>144 242.4 Q F2(command) +A F1<92>A(Bash)108 259.2 Q F0 .088(performs the e)2.588 F .088 (xpansion by e)-.15 F -.15(xe)-.15 G(cuting).15 E F2(command)2.588 E F0 .089(in a subshell en)2.589 F .089(vironment and replacing the command) -.4 F .41(substitution with the standard output of the command, with an) -108 177.6 R 2.91(yt)-.15 G .41(railing ne)-2.91 F .41(wlines deleted.) +108 271.2 R 2.91(yt)-.15 G .41(railing ne)-2.91 F .41(wlines deleted.) -.25 F .41(Embedded ne)5.41 F(w-)-.25 E .191(lines are not deleted, b) -108 189.6 R .192(ut the)-.2 F 2.692(ym)-.15 G .192(ay be remo)-2.692 F +108 283.2 R .192(ut the)-.2 F 2.692(ym)-.15 G .192(ay be remo)-2.692 F -.15(ve)-.15 G 2.692(dd).15 G .192(uring w)-2.692 F .192(ord splitting.) -.1 F .192(The command substitution)5.192 F F1($\(cat)2.692 E F2(\214le) -2.692 E F1(\))A F0(can be replaced by the equi)108 201.6 Q -.25(va)-.25 +2.692 E F1(\))A F0(can be replaced by the equi)108 295.2 Q -.25(va)-.25 G(lent b).25 E(ut f)-.2 E(aster)-.1 E F1($\(<)2.5 E F2(\214le)2.5 E F1 (\))A F0(.)A 1.724(When the old-style backquote form of substitution is\ - used, backslash retains its literal meaning e)108 218.4 R(xcept)-.15 E -.314(when follo)108 230.4 R .314(wed by)-.25 F F1($)2.814 E F0(,)A F1 -<92>2.814 E F0 2.814(,o)C(r)-2.814 E F1(\\)2.814 E F0 5.314(.T)C .315(h\ -e \214rst backquote not preceded by a backslash terminates the command \ -sub-)-5.314 F 3.887(stitution. When)108 242.4 R 1.387(using the $\() -3.887 F F2(command).833 E F0 3.887(\)f)1.666 G 1.386 + used, backslash retains its literal meaning e)108 312 R(xcept)-.15 E +.314(when follo)108 324 R .314(wed by)-.25 F F1($)2.814 E F0(,)A F1<92> +2.814 E F0 2.814(,o)C(r)-2.814 E F1(\\)2.814 E F0 5.314(.T)C .315(he \ +\214rst backquote not preceded by a backslash terminates the command su\ +b-)-5.314 F 3.887(stitution. When)108 336 R 1.387(using the $\()3.887 F +F2(command).833 E F0 3.887(\)f)1.666 G 1.386 (orm, all characters between the parentheses mak)-3.887 F 3.886(eu)-.1 G 3.886(pt)-3.886 G 1.386(he com-)-3.886 F -(mand; none are treated specially)108 254.4 Q(.)-.65 E .894 -(Command substitutions may be nested.)108 271.2 R 2.494 -.8(To n)5.894 H +(mand; none are treated specially)108 348 Q(.)-.65 E .894 +(Command substitutions may be nested.)108 364.8 R 2.494 -.8(To n)5.894 H .894(est when using the backquoted form, escape the inner back-).8 F -(quotes with backslashes.)108 283.2 Q .422 -(If the substitution appears within double quotes, w)108 300 R .422 +(quotes with backslashes.)108 376.8 Q .422 +(If the substitution appears within double quotes, w)108 393.6 R .422 (ord splitting and pathname e)-.1 F .422(xpansion are not performed)-.15 -F(on the results.)108 312 Q F1(Arithmetic Expansion)87 328.8 Q F0 1.034 -(Arithmetic e)108 340.8 R 1.034(xpansion allo)-.15 F 1.034(ws the e)-.25 -F -.25(va)-.25 G 1.034(luation of an arithmetic e).25 F 1.035 -(xpression and the substitution of the result.)-.15 F -(The format for arithmetic e)108 352.8 Q(xpansion is:)-.15 E F1($\(\() -144 369.6 Q F2 -.2(ex)C(pr).2 E(ession)-.37 E F1(\)\))A F0(The)108 386.4 -Q F2 -.2(ex)2.666 G(pr).2 E(ession)-.37 E F0 .165 +F(on the results.)108 405.6 Q F1(Arithmetic Expansion)87 422.4 Q F0 +1.034(Arithmetic e)108 434.4 R 1.034(xpansion allo)-.15 F 1.034 +(ws the e)-.25 F -.25(va)-.25 G 1.034(luation of an arithmetic e).25 F +1.035(xpression and the substitution of the result.)-.15 F +(The format for arithmetic e)108 446.4 Q(xpansion is:)-.15 E F1($\(\() +144 463.2 Q F2 -.2(ex)C(pr).2 E(ession)-.37 E F1(\)\))A F0(The)108 480 Q +F2 -.2(ex)2.666 G(pr).2 E(ession)-.37 E F0 .165 (is treated as if it were within double quotes, b)2.906 F .165 (ut a double quote inside the parentheses is not)-.2 F .23 -(treated specially)108 398.4 R 5.23(.A)-.65 G .23(ll tok)-5.23 F .231 +(treated specially)108 492 R 5.23(.A)-.65 G .23(ll tok)-5.23 F .231 (ens in the e)-.1 F .231(xpression under)-.15 F .231(go parameter and v) -.18 F .231(ariable e)-.25 F .231(xpansion, command substi-)-.15 F .049 -(tution, and quote remo)108 410.4 R -.25(va)-.15 G 2.548(l. The).25 F -.048(result is treated as the arithmetic e)2.548 F .048 -(xpression to be e)-.15 F -.25(va)-.25 G 2.548(luated. Arithmetic).25 F --.15(ex)2.548 G(-).15 E(pansions may be nested.)108 422.4 Q 1.378(The e) -108 439.2 R -.25(va)-.25 G 1.378 -(luation is performed according to the rules listed belo).25 F 3.878(wu) --.25 G(nder)-3.878 E/F3 9/Times-Bold@0 SF 1.378(ARITHMETIC EV)3.878 F -(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E/F4 9/Times-Roman@0 SF(.)A F0 -(If)5.879 E F2 -.2(ex)108 451.2 S(pr).2 E(ession)-.37 E F0(is in)2.74 E --.25(va)-.4 G(lid,).25 E F1(bash)2.5 E F0(prints a message indicating f) -2.5 E(ailure and no substitution occurs.)-.1 E F1(Pr)87 468 Q -(ocess Substitution)-.18 E F2(Pr)108 480 Q .405(ocess substitution)-.45 -F F0(allo)2.905 E .405(ws a process')-.25 F 2.905(si)-.55 G .405 +(tution, and quote remo)108 504 R -.25(va)-.15 G 2.548(l. The).25 F .048 +(result is treated as the arithmetic e)2.548 F .048(xpression to be e) +-.15 F -.25(va)-.25 G 2.548(luated. Arithmetic).25 F -.15(ex)2.548 G(-) +.15 E(pansions may be nested.)108 516 Q 1.378(The e)108 532.8 R -.25(va) +-.25 G 1.378(luation is performed according to the rules listed belo).25 +F 3.878(wu)-.25 G(nder)-3.878 E/F3 9/Times-Bold@0 SF 1.378 +(ARITHMETIC EV)3.878 F(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E/F4 9 +/Times-Roman@0 SF(.)A F0(If)5.879 E F2 -.2(ex)108 544.8 S(pr).2 E +(ession)-.37 E F0(is in)2.74 E -.25(va)-.4 G(lid,).25 E F1(bash)2.5 E F0 +(prints a message indicating f)2.5 E(ailure and no substitution occurs.) +-.1 E F1(Pr)87 561.6 Q(ocess Substitution)-.18 E F2(Pr)108 573.6 Q .405 +(ocess substitution)-.45 F F0(allo)2.905 E .405(ws a process')-.25 F +2.905(si)-.55 G .405 (nput or output to be referred to using a \214lename.)-2.905 F .405 -(It tak)5.405 F .405(es the form)-.1 F(of)108 492 Q F1(<\()3.25 E F2 +(It tak)5.405 F .405(es the form)-.1 F(of)108 585.6 Q F1(<\()3.25 E F2 (list)A F1(\)).833 E F0(or)3.25 E F1(>\()3.25 E F2(list)A F1(\)).833 E F0 5.75(.T)C .751(he process)-5.75 F F2(list)3.251 E F0 .751 (is run asynchronously)3.251 F 3.251(,a)-.65 G .751 (nd its input or output appears as a \214lename.)-3.251 F .148 -(This \214lename is passed as an ar)108 504 R .148 +(This \214lename is passed as an ar)108 597.6 R .148 (gument to the current command as the result of the e)-.18 F 2.647 (xpansion. If)-.15 F(the)2.647 E F1(>\()2.647 E F2(list)A F1(\)).833 E -F0 .559(form is used, writing to the \214le will pro)108 516 R .559 +F0 .559(form is used, writing to the \214le will pro)108 609.6 R .559 (vide input for)-.15 F F2(list)3.059 E F0 5.559(.I)C 3.059(ft)-5.559 G (he)-3.059 E F1(<\()3.06 E F2(list)A F1(\)).833 E F0 .56 -(form is used, the \214le passed as an)3.06 F(ar)108 528 Q .309 +(form is used, the \214le passed as an)3.06 F(ar)108 621.6 Q .309 (gument should be read to obtain the output of)-.18 F F2(list)2.808 E F0 5.308(.P)C .308(rocess substitution is supported on systems that sup-) --5.308 F(port named pipes \()108 540 Q F2(FIFOs)A F0 2.5(\)o)C 2.5(rt) +-5.308 F(port named pipes \()108 633.6 Q F2(FIFOs)A F0 2.5(\)o)C 2.5(rt) -2.5 G(he)-2.5 E F1(/de)2.5 E(v/fd)-.15 E F0 -(method of naming open \214les.)2.5 E .896(When a)108 556.8 R -.25(va) +(method of naming open \214les.)2.5 E .896(When a)108 650.4 R -.25(va) -.2 G .896(ilable, process substitution is performed simultaneously wit\ h parameter and v).25 F .897(ariable e)-.25 F(xpansion,)-.15 E -(command substitution, and arithmetic e)108 568.8 Q(xpansion.)-.15 E F1 --.75(Wo)87 585.6 S(rd Splitting).75 E F0 1.143 -(The shell scans the results of parameter e)108 597.6 R 1.142 +(command substitution, and arithmetic e)108 662.4 Q(xpansion.)-.15 E F1 +-.75(Wo)87 679.2 S(rd Splitting).75 E F0 1.143 +(The shell scans the results of parameter e)108 691.2 R 1.142 (xpansion, command substitution, and arithmetic e)-.15 F 1.142 -(xpansion that)-.15 F(did not occur within double quotes for)108 609.6 Q +(xpansion that)-.15 F(did not occur within double quotes for)108 703.2 Q F2(wor)2.84 E 2.5(ds)-.37 G(plitting)-2.5 E F0(.).22 E .063 -(The shell treats each character of)108 626.4 R F3(IFS)2.563 E F0 .063 +(The shell treats each character of)108 720 R F3(IFS)2.563 E F0 .063 (as a delimiter)2.313 F 2.563(,a)-.4 G .063 (nd splits the results of the other e)-2.563 F .063(xpansions into w) --.15 F(ords)-.1 E .207(using these characters as \214eld terminators.) -108 638.4 R(If)5.207 E F3(IFS)2.707 E F0 .207(is unset, or its v)2.457 F -.207(alue is e)-.25 F(xactly)-.15 E F1()2.707 E F0 -(,)A .836(the def)108 650.4 R .836(ault, then sequences of)-.1 F F1 -()3.336 E F0(,)A F1()3.336 E F0 3.336(,a)C(nd)-3.336 E F1 -()3.336 E F0 .837(at the be)3.336 F .837 -(ginning and end of the results of)-.15 F .346(the pre)108 662.4 R .345 -(vious e)-.25 F .345(xpansions are ignored, and an)-.15 F 2.845(ys)-.15 -G .345(equence of)-2.845 F F3(IFS)2.845 E F0 .345 -(characters not at the be)2.595 F .345(ginning or end serv)-.15 F(es) --.15 E 1.236(to delimit w)108 674.4 R 3.736(ords. If)-.1 F F3(IFS)3.736 -E F0 1.236(has a v)3.486 F 1.236(alue other than the def)-.25 F 1.237 -(ault, then sequences of the whitespace characters)-.1 F F1(space)108 -686.4 Q F0(,)A F1(tab)2.507 E F0 2.507(,a)C(nd)-2.507 E F1(newline)2.507 -E F0 .007(are ignored at the be)2.507 F .006(ginning and end of the w) --.15 F .006(ord, as long as the whitespace charac-)-.1 F .92 -(ter is in the v)108 698.4 R .92(alue of)-.25 F F3(IFS)3.42 E F0(\(an) -3.17 E F3(IFS)3.42 E F0 .92(whitespace character\).)3.17 F(An)5.92 E -3.42(yc)-.15 G .92(haracter in)-3.42 F F3(IFS)3.42 E F0 .921 -(that is not)3.17 F F3(IFS)3.421 E F0(whitespace,)3.171 E .429 -(along with an)108 710.4 R 2.928(ya)-.15 G(djacent)-2.928 E F3(IFS)2.928 -E F0 .428(whitespace characters, delimits a \214eld.)2.678 F 2.928(As) -5.428 G .428(equence of)-2.928 F F3(IFS)2.928 E F0 .428 -(whitespace charac-)2.678 F(ters is also treated as a delimiter)108 -722.4 Q 5(.I)-.55 G 2.5(ft)-5 G(he v)-2.5 E(alue of)-.25 E F3(IFS)2.5 E -F0(is null, no w)2.25 E(ord splitting occurs.)-.1 E(GNU Bash 5.0)72 768 -Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(25)185.545 E 0 Cg EP +-.15 F(ords)-.1 E(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(25) +190.95 E 0 Cg EP %%Page: 26 26 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .782 -(Explicit null ar)108 84 R .782(guments \()-.18 F/F1 10/Times-Bold@0 SF -.833("").833 G F0(or)2.449 E F1 .833<0808>4.115 G F0 3.282(\)a)C .782 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .207 +(using these characters as \214eld terminators.)108 84 R(If)5.207 E/F1 9 +/Times-Bold@0 SF(IFS)2.707 E F0 .207(is unset, or its v)2.457 F .207 +(alue is e)-.25 F(xactly)-.15 E/F2 10/Times-Bold@0 SF +()2.707 E F0(,)A .836(the def)108 96 R .836 +(ault, then sequences of)-.1 F F2()3.336 E F0(,)A F2()3.336 +E F0 3.336(,a)C(nd)-3.336 E F2()3.336 E F0 .837(at the be)3.336 +F .837(ginning and end of the results of)-.15 F .346(the pre)108 108 R +.345(vious e)-.25 F .345(xpansions are ignored, and an)-.15 F 2.845(ys) +-.15 G .345(equence of)-2.845 F F1(IFS)2.845 E F0 .345 +(characters not at the be)2.595 F .345(ginning or end serv)-.15 F(es) +-.15 E 1.236(to delimit w)108 120 R 3.736(ords. If)-.1 F F1(IFS)3.736 E +F0 1.236(has a v)3.486 F 1.236(alue other than the def)-.25 F 1.237 +(ault, then sequences of the whitespace characters)-.1 F F2(space)108 +132 Q F0(,)A F2(tab)2.507 E F0 2.507(,a)C(nd)-2.507 E F2(newline)2.507 E +F0 .007(are ignored at the be)2.507 F .006(ginning and end of the w)-.15 +F .006(ord, as long as the whitespace charac-)-.1 F .92(ter is in the v) +108 144 R .92(alue of)-.25 F F1(IFS)3.42 E F0(\(an)3.17 E F1(IFS)3.42 E +F0 .92(whitespace character\).)3.17 F(An)5.92 E 3.42(yc)-.15 G .92 +(haracter in)-3.42 F F1(IFS)3.42 E F0 .921(that is not)3.17 F F1(IFS) +3.421 E F0(whitespace,)3.171 E .429(along with an)108 156 R 2.928(ya) +-.15 G(djacent)-2.928 E F1(IFS)2.928 E F0 .428 +(whitespace characters, delimits a \214eld.)2.678 F 2.928(As)5.428 G +.428(equence of)-2.928 F F1(IFS)2.928 E F0 .428(whitespace charac-)2.678 +F(ters is also treated as a delimiter)108 168 Q 5(.I)-.55 G 2.5(ft)-5 G +(he v)-2.5 E(alue of)-.25 E F1(IFS)2.5 E F0(is null, no w)2.25 E +(ord splitting occurs.)-.1 E .782(Explicit null ar)108 184.8 R .782 +(guments \()-.18 F F2 .833("").833 G F0(or)2.449 E F2 .833<0808>4.115 G +F0 3.282(\)a)C .782 (re retained and passed to commands as empty strings.)-3.282 F .783 -(Unquoted im-)5.783 F .179(plicit null ar)108 96 R .179 +(Unquoted im-)5.783 F .179(plicit null ar)108 196.8 R .179 (guments, resulting from the e)-.18 F .179 (xpansion of parameters that ha)-.15 F .479 -.15(ve n)-.2 H 2.679(ov).15 G .179(alues, are remo)-2.929 F -.15(ve)-.15 G 2.678(d. If).15 F 2.678 -(ap)2.678 G(a-)-2.678 E .318(rameter with no v)108 108 R .319(alue is e) --.25 F .319(xpanded within double quotes, a null ar)-.15 F .319 -(gument results and is retained and passed)-.18 F .001 -(to a command as an empty string.)108 120 R .001(When a quoted null ar) -5.001 F(gument appears as part of a w)-.18 E(ord whose e)-.1 E(xpansion) --.15 E .983(is non-null, the null ar)108 132 R .983(gument is remo)-.18 -F -.15(ve)-.15 G 3.483(d. That).15 F .983(is, the w)3.483 F(ord)-.1 E/F2 -10/Courier@0 SF -5.1673.483 F F0(becomes)3.484 E F2 -3.484 E F0 .984(after w)3.484 F .984(ord splitting and)-.1 F(null ar)108 -144 Q(gument remo)-.18 E -.25(va)-.15 G(l.).25 E(Note that if no e)108 -160.8 Q(xpansion occurs, no splitting is performed.)-.15 E F1 -.1(Pa)87 -177.6 S(thname Expansion).1 E F0 .371(After w)108 189.6 R .371 -(ord splitting, unless the)-.1 F F12.871 E F0 .371 -(option has been set,)2.871 F F1(bash)2.871 E F0 .37(scans each w)2.87 F -.37(ord for the characters)-.1 F F1(*)2.87 E F0(,)A F1(?)2.87 E F0 2.87 -(,a)C(nd)-2.87 E F1([)2.87 E F0(.)A .633 +(ap)2.678 G(a-)-2.678 E .318(rameter with no v)108 208.8 R .319 +(alue is e)-.25 F .319(xpanded within double quotes, a null ar)-.15 F +.319(gument results and is retained and passed)-.18 F .001 +(to a command as an empty string.)108 220.8 R .001 +(When a quoted null ar)5.001 F(gument appears as part of a w)-.18 E +(ord whose e)-.1 E(xpansion)-.15 E .983(is non-null, the null ar)108 +232.8 R .983(gument is remo)-.18 F -.15(ve)-.15 G 3.483(d. That).15 F +.983(is, the w)3.483 F(ord)-.1 E/F3 10/Courier@0 SF -5.167 +3.483 F F0(becomes)3.484 E F33.484 E F0 .984(after w)3.484 F .984 +(ord splitting and)-.1 F(null ar)108 244.8 Q(gument remo)-.18 E -.25(va) +-.15 G(l.).25 E(Note that if no e)108 261.6 Q +(xpansion occurs, no splitting is performed.)-.15 E F2 -.1(Pa)87 278.4 S +(thname Expansion).1 E F0 .371(After w)108 290.4 R .371 +(ord splitting, unless the)-.1 F F22.871 E F0 .371 +(option has been set,)2.871 F F2(bash)2.871 E F0 .37(scans each w)2.87 F +.37(ord for the characters)-.1 F F2(*)2.87 E F0(,)A F2(?)2.87 E F0 2.87 +(,a)C(nd)-2.87 E F2([)2.87 E F0(.)A .633 (If one of these characters appears, and is not quoted, then the w)108 -201.6 R .634(ord is re)-.1 F -.05(ga)-.15 G .634(rded as a).05 F/F3 10 +302.4 R .634(ord is re)-.1 F -.05(ga)-.15 G .634(rded as a).05 F/F4 10 /Times-Italic@0 SF(pattern)4.384 E F0 3.134(,a).24 G .634(nd replaced) -3.134 F 1.34(with an alphabetically sorted list of \214lenames matchin\ -g the pattern \(see)108 213.6 R/F4 9/Times-Bold@0 SF -.09(Pa)3.84 G -(tter).09 E 3.59(nM)-.135 G(atching)-3.59 E F0(belo)3.589 E 3.839 -(w\). If)-.25 F(no)3.839 E .534 -(matching \214lenames are found, and the shell option)108 225.6 R F1 +g the pattern \(see)108 314.4 R F1 -.09(Pa)3.84 G(tter).09 E 3.59(nM) +-.135 G(atching)-3.59 E F0(belo)3.589 E 3.839(w\). If)-.25 F(no)3.839 E +.534(matching \214lenames are found, and the shell option)108 326.4 R F2 (nullglob)3.034 E F0 .534(is not enabled, the w)3.034 F .534 -(ord is left unchanged.)-.1 F(If)5.535 E(the)108 237.6 Q F1(nullglob) +(ord is left unchanged.)-.1 F(If)5.535 E(the)108 338.4 Q F2(nullglob) 3.285 E F0 .785(option is set, and no matches are found, the w)3.285 F -.785(ord is remo)-.1 F -.15(ve)-.15 G 3.285(d. If).15 F(the)3.284 E F1 +.785(ord is remo)-.1 F -.15(ve)-.15 G 3.285(d. If).15 F(the)3.284 E F2 (failglob)3.284 E F0 .784(shell option is)3.284 F .754(set, and no matc\ hes are found, an error message is printed and the command is not e)108 -249.6 R -.15(xe)-.15 G 3.255(cuted. If).15 F .755(the shell)3.255 F -(option)108 261.6 Q F1(nocaseglob)3.264 E F0 .763 +350.4 R -.15(xe)-.15 G 3.255(cuted. If).15 F .755(the shell)3.255 F +(option)108 362.4 Q F2(nocaseglob)3.264 E F0 .763 (is enabled, the match is performed without re)3.264 F -.05(ga)-.15 G .763(rd to the case of alphabetic characters.).05 F .039 -(When a pattern is used for pathname e)108 273.6 R .039 -(xpansion, the character)-.15 F F1 -.63(``)2.539 G -.55(.').63 G(')-.08 +(When a pattern is used for pathname e)108 374.4 R .039 +(xpansion, the character)-.15 F F2 -.63(``)2.539 G -.55(.').63 G(')-.08 E F0 .039(at the start of a name or immediately fol-)5.039 F(lo)108 -285.6 Q .81(wing a slash must be matched e)-.25 F(xplicitly)-.15 E 3.31 -(,u)-.65 G .81(nless the shell option)-3.31 F F1(dotglob)3.31 E F0 .81 -(is set.)3.31 F .81(The \214lenames)5.81 F F1 -.63(``)3.31 G -.55(.').63 -G(')-.08 E F0(and)5.81 E F1 -.63(``)108 297.6 S(..).63 E -.63('')-.55 G +386.4 Q .81(wing a slash must be matched e)-.25 F(xplicitly)-.15 E 3.31 +(,u)-.65 G .81(nless the shell option)-3.31 F F2(dotglob)3.31 E F0 .81 +(is set.)3.31 F .81(The \214lenames)5.81 F F2 -.63(``)3.31 G -.55(.').63 +G(')-.08 E F0(and)5.81 E F2 -.63(``)108 398.4 S(..).63 E -.63('')-.55 G F0 1.181(must al)6.811 F -.1(wa)-.1 G 1.181(ys be matched e).1 F (xplicitly)-.15 E 3.681(,e)-.65 G -.15(ve)-3.931 G 3.682(ni).15 G(f) --3.682 E F1(dotglob)3.682 E F0 1.182(is set.)3.682 F 1.182 -(In other cases, the)6.182 F F1 -.63(``)3.682 G -.55(.').63 G(')-.08 E -F0 1.182(character is not)6.182 F .614(treated specially)108 309.6 R +-3.682 E F2(dotglob)3.682 E F0 1.182(is set.)3.682 F 1.182 +(In other cases, the)6.182 F F2 -.63(``)3.682 G -.55(.').63 G(')-.08 E +F0 1.182(character is not)6.182 F .614(treated specially)108 410.4 R 5.614(.W)-.65 G .613 (hen matching a pathname, the slash character must al)-5.614 F -.1(wa) -.1 G .613(ys be matched e).1 F .613(xplicitly by a)-.15 F .654 -(slash in the pattern, b)108 321.6 R .655(ut in other matching conte)-.2 +(slash in the pattern, b)108 422.4 R .655(ut in other matching conte)-.2 F .655(xts it can be matched by a special pattern character as de-)-.15 -F .72(scribed belo)108 333.6 R 3.22(wu)-.25 G(nder)-3.22 E F4 -.09(Pa) +F .72(scribed belo)108 434.4 R 3.22(wu)-.25 G(nder)-3.22 E F1 -.09(Pa) 3.22 G(tter).09 E 2.97(nM)-.135 G(atching)-2.97 E/F5 9/Times-Roman@0 SF -(.)A F0 .719(See the description of)5.219 F F1(shopt)3.219 E F0(belo) -3.219 E 3.219(wu)-.25 G(nder)-3.219 E F4 .719(SHELL B)3.219 F(UIL)-.09 E -.719(TIN COM-)-.828 F(MANDS)108 345.6 Q F0(for a description of the)2.25 -E F1(nocaseglob)2.5 E F0(,)A F1(nullglob)2.5 E F0(,)A F1(failglob)2.5 E -F0 2.5(,a)C(nd)-2.5 E F1(dotglob)2.5 E F0(shell options.)2.5 E(The)108 -362.4 Q F4(GLOBIGNORE)2.561 E F0 .061(shell v)2.311 F .061 +(.)A F0 .719(See the description of)5.219 F F2(shopt)3.219 E F0(belo) +3.219 E 3.219(wu)-.25 G(nder)-3.219 E F1 .719(SHELL B)3.219 F(UIL)-.09 E +.719(TIN COM-)-.828 F(MANDS)108 446.4 Q F0(for a description of the)2.25 +E F2(nocaseglob)2.5 E F0(,)A F2(nullglob)2.5 E F0(,)A F2(failglob)2.5 E +F0 2.5(,a)C(nd)-2.5 E F2(dotglob)2.5 E F0(shell options.)2.5 E(The)108 +463.2 Q F1(GLOBIGNORE)2.561 E F0 .061(shell v)2.311 F .061 (ariable may be used to restrict the set of \214le names matching a)-.25 -F F3(pattern)3.812 E F0 5.062(.I).24 G(f)-5.062 E F4(GLO-)2.562 E -(BIGNORE)108 374.4 Q F0 1.096(is set, each matching \214le name that al\ -so matches one of the patterns in)3.347 F F4(GLOBIGNORE)3.596 E F0 1.096 -(is re-)3.346 F(mo)108 386.4 Q -.15(ve)-.15 G 2.85(df).15 G .351 -(rom the list of matches.)-2.85 F .351(If the)5.351 F F1(nocaseglob) +F F4(pattern)3.812 E F0 5.062(.I).24 G(f)-5.062 E F1(GLO-)2.562 E +(BIGNORE)108 475.2 Q F0 1.096(is set, each matching \214le name that al\ +so matches one of the patterns in)3.347 F F1(GLOBIGNORE)3.596 E F0 1.096 +(is re-)3.346 F(mo)108 487.2 Q -.15(ve)-.15 G 2.85(df).15 G .351 +(rom the list of matches.)-2.85 F .351(If the)5.351 F F2(nocaseglob) 2.851 E F0 .351(option is set, the matching ag)2.851 F .351 -(ainst the patterns in)-.05 F F4(GLO-)2.851 E(BIGNORE)108 398.4 Q F0 +(ainst the patterns in)-.05 F F1(GLO-)2.851 E(BIGNORE)108 499.2 Q F0 1.481(is performed without re)3.731 F -.05(ga)-.15 G 1.48(rd to case.) -.05 F 1.48(The \214lenames)6.48 F F1 -.63(``)3.98 G -.55(.').63 G(')-.08 -E F0(and)6.48 E F1 -.63(``)3.98 G(..).63 E -.63('')-.55 G F0 1.48 -(are al)7.11 F -.1(wa)-.1 G 1.48(ys ignored when).1 F F4(GLOBIGNORE)108 -410.4 Q F0 .827(is set and not null.)3.077 F(Ho)5.827 E(we)-.25 E -.15 -(ve)-.25 G 1.627 -.4(r, s).15 H(etting).4 E F4(GLOBIGNORE)3.327 E F0 +.05 F 1.48(The \214lenames)6.48 F F2 -.63(``)3.98 G -.55(.').63 G(')-.08 +E F0(and)6.48 E F2 -.63(``)3.98 G(..).63 E -.63('')-.55 G F0 1.48 +(are al)7.11 F -.1(wa)-.1 G 1.48(ys ignored when).1 F F1(GLOBIGNORE)108 +511.2 Q F0 .827(is set and not null.)3.077 F(Ho)5.827 E(we)-.25 E -.15 +(ve)-.25 G 1.627 -.4(r, s).15 H(etting).4 E F1(GLOBIGNORE)3.327 E F0 .827(to a non-null v)3.077 F .827(alue has the ef)-.25 F .827(fect of) --.25 F .683(enabling the)108 422.4 R F1(dotglob)3.183 E F0 .682 +-.25 F .683(enabling the)108 523.2 R F2(dotglob)3.183 E F0 .682 (shell option, so all other \214lenames be)3.183 F .682(ginning with a) --.15 F F1 -.63(``)3.182 G -.55(.').63 G(')-.08 E F0 .682(will match.) -5.682 F 2.282 -.8(To g)5.682 H .682(et the old).8 F(beha)108 434.4 Q +-.15 F F2 -.63(``)3.182 G -.55(.').63 G(')-.08 E F0 .682(will match.) +5.682 F 2.282 -.8(To g)5.682 H .682(et the old).8 F(beha)108 535.2 Q 1.184(vior of ignoring \214lenames be)-.2 F 1.184(ginning with a)-.15 F -F1 -.63(``)3.684 G -.55(.').63 G(')-.08 E F0 3.684(,m)C(ak)-3.684 E(e) --.1 E F1 -.63(``)3.684 G(.*').63 E(')-.63 E F0 1.185 -(one of the patterns in)6.185 F F4(GLOBIGNORE)3.685 E F5(.)A F0(The)108 -446.4 Q F1(dotglob)3.132 E F0 .632(option is disabled when)3.132 F F4 +F2 -.63(``)3.684 G -.55(.').63 G(')-.08 E F0 3.684(,m)C(ak)-3.684 E(e) +-.1 E F2 -.63(``)3.684 G(.*').63 E(')-.63 E F0 1.185 +(one of the patterns in)6.185 F F1(GLOBIGNORE)3.685 E F5(.)A F0(The)108 +547.2 Q F2(dotglob)3.132 E F0 .632(option is disabled when)3.132 F F1 (GLOBIGNORE)3.132 E F0 .632(is unset.)2.882 F .631 -(The pattern matching honors the setting of)5.632 F(the)108 458.4 Q F1 -(extglob)2.5 E F0(shell option.)2.5 E F1 -.1(Pa)108 475.2 S(tter).1 E -2.5(nM)-.15 G(atching)-2.5 E F0(An)108 492 Q 3.138(yc)-.15 G .638(harac\ -ter that appears in a pattern, other than the special pattern character\ -s described belo)-3.138 F 1.938 -.65(w, m)-.25 H(atches).65 E 2.722 -(itself. The)108 504 R .221(NUL character may not occur in a pattern.) +(The pattern matching honors the setting of)5.632 F(the)108 559.2 Q F2 +(extglob)2.5 E F0(shell option.)2.5 E F2 -.1(Pa)108 576 S(tter).1 E 2.5 +(nM)-.15 G(atching)-2.5 E F0(An)108 592.8 Q 3.138(yc)-.15 G .638(haract\ +er that appears in a pattern, other than the special pattern characters\ + described belo)-3.138 F 1.938 -.65(w, m)-.25 H(atches).65 E 2.722 +(itself. The)108 604.8 R .221(NUL character may not occur in a pattern.) 2.722 F 2.721(Ab)5.221 G .221(ackslash escapes the follo)-2.721 F .221 (wing character; the es-)-.25 F .418 -(caping backslash is discarded when matching.)108 516 R .418 +(caping backslash is discarded when matching.)108 616.8 R .418 (The special pattern characters must be quoted if the)5.418 F 2.919(ya) --.15 G .419(re to)-2.919 F(be matched literally)108 528 Q(.)-.65 E -(The special pattern characters ha)108 544.8 Q .3 -.15(ve t)-.2 H -(he follo).15 E(wing meanings:)-.25 E F1(*)144 561.6 Q F0 .377 -(Matches an)180 561.6 R 2.877(ys)-.15 G .376 -(tring, including the null string.)-2.877 F .376(When the)5.376 F F1 -(globstar)2.876 E F0 .376(shell option is enabled,)2.876 F(and)180 573.6 -Q F1(*)3.275 E F0 .775(is used in a pathname e)3.275 F .775 +-.15 G .419(re to)-2.919 F(be matched literally)108 628.8 Q(.)-.65 E +(The special pattern characters ha)108 645.6 Q .3 -.15(ve t)-.2 H +(he follo).15 E(wing meanings:)-.25 E F2(*)144 662.4 Q F0 .377 +(Matches an)180 662.4 R 2.877(ys)-.15 G .376 +(tring, including the null string.)-2.877 F .376(When the)5.376 F F2 +(globstar)2.876 E F0 .376(shell option is enabled,)2.876 F(and)180 674.4 +Q F2(*)3.275 E F0 .775(is used in a pathname e)3.275 F .775 (xpansion conte)-.15 F .775(xt, tw)-.15 F 3.275(oa)-.1 G(djacent)-3.275 -E F1(*)3.275 E F0 3.275(su)C .775(sed as a single pattern)-3.275 F 1.058 +E F2(*)3.275 E F0 3.275(su)C .775(sed as a single pattern)-3.275 F 1.058 (will match all \214les and zero or more directories and subdirectories\ -.)180 585.6 R 1.058(If follo)6.058 F 1.058(wed by a)-.25 F F1(/)3.558 E -F0(,)A(tw)180 597.6 Q 2.5(oa)-.1 G(djacent)-2.5 E F1(*)2.5 E F0 2.5(sw)C -(ill match only directories and subdirectories.)-2.5 E F1(?)144 609.6 Q -F0(Matches an)180 609.6 Q 2.5(ys)-.15 G(ingle character)-2.5 E(.)-.55 E -F1([...])144 621.6 Q F0 .578(Matches an)180 621.6 R 3.078(yo)-.15 G .578 +.)180 686.4 R 1.058(If follo)6.058 F 1.058(wed by a)-.25 F F2(/)3.558 E +F0(,)A(tw)180 698.4 Q 2.5(oa)-.1 G(djacent)-2.5 E F2(*)2.5 E F0 2.5(sw)C +(ill match only directories and subdirectories.)-2.5 E F2(?)144 710.4 Q +F0(Matches an)180 710.4 Q 2.5(ys)-.15 G(ingle character)-2.5 E(.)-.55 E +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(26)190.95 E 0 Cg EP +%%Page: 27 27 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF([...])144 84 Q F0 .578(Matches an)180 84 R 3.078(yo)-.15 G .578 (ne of the enclosed characters.)-3.078 F 3.079(Ap)5.579 G .579 (air of characters separated by a h)-3.079 F(yphen)-.05 E .685 -(denotes a)180 633.6 R F3 -.15(ra)3.185 G(ng).15 E 3.184(ee)-.1 G(xpr) --3.384 E(ession)-.37 E F0 3.184(;a)C .984 -.15(ny c)-3.184 H .684 -(haracter that f).15 F .684(alls between those tw)-.1 F 3.184(oc)-.1 G -.684(haracters, inclu-)-3.184 F(si)180 645.6 Q -.15(ve)-.25 G 3.712(,u) -.15 G 1.212(sing the current locale')-3.712 F 3.712(sc)-.55 G 1.212 -(ollating sequence and character set, is matched.)-3.712 F 1.213(If the) -6.213 F 1.124(\214rst character follo)180 657.6 R 1.124(wing the)-.25 F -F1([)3.624 E F0 1.124(is a)3.624 F F1(!)3.624 E F0 1.124(or a)6.124 F F1 -(^)3.623 E F0 1.123(then an)3.623 F 3.623(yc)-.15 G 1.123 +(denotes a)180 96 R/F2 10/Times-Italic@0 SF -.15(ra)3.185 G(ng).15 E +3.184(ee)-.1 G(xpr)-3.384 E(ession)-.37 E F0 3.184(;a)C .984 -.15(ny c) +-3.184 H .684(haracter that f).15 F .684(alls between those tw)-.1 F +3.184(oc)-.1 G .684(haracters, inclu-)-3.184 F(si)180 108 Q -.15(ve)-.25 +G 3.712(,u).15 G 1.212(sing the current locale')-3.712 F 3.712(sc)-.55 G +1.212(ollating sequence and character set, is matched.)-3.712 F 1.213 +(If the)6.213 F 1.124(\214rst character follo)180 120 R 1.124(wing the) +-.25 F F1([)3.624 E F0 1.124(is a)3.624 F F1(!)3.624 E F0 1.124(or a) +6.124 F F1(^)3.623 E F0 1.123(then an)3.623 F 3.623(yc)-.15 G 1.123 (haracter not enclosed is matched.)-3.623 F .894 -(The sorting order of characters in range e)180 669.6 R .895 +(The sorting order of characters in range e)180 132 R .895 (xpressions is determined by the current locale)-.15 F .376(and the v) -180 681.6 R .376(alues of the)-.25 F F4(LC_COLLA)2.875 E(TE)-.855 E F0 -(or)2.625 E F4(LC_ALL)2.875 E F0 .375(shell v)2.625 F .375 +180 144 R .376(alues of the)-.25 F/F3 9/Times-Bold@0 SF(LC_COLLA)2.875 E +(TE)-.855 E F0(or)2.625 E F3(LC_ALL)2.875 E F0 .375(shell v)2.625 F .375 (ariables, if set.)-.25 F 1.975 -.8(To o)5.375 H .375(btain the tra-).8 -F .067(ditional interpretation of range e)180 693.6 R .067 +F .067(ditional interpretation of range e)180 156 R .067 (xpressions, where)-.15 F F1([a\255d])2.567 E F0 .068(is equi)2.568 F -.25(va)-.25 G .068(lent to).25 F F1([abcd])2.568 E F0 2.568(,s)C .068 -(et v)-2.568 F(alue)-.25 E .157(of the)180 705.6 R F1(LC_ALL)2.657 E F0 +(et v)-2.568 F(alue)-.25 E .157(of the)180 168 R F1(LC_ALL)2.657 E F0 .157(shell v)2.657 F .157(ariable to)-.25 F F1(C)2.657 E F0 2.657(,o)C 2.657(re)-2.657 G .157(nable the)-2.657 F F1(globasciiranges)2.657 E F0 .156(shell option.)2.656 F(A)5.156 E F12.656 E F0(may)2.656 E .193(\ be matched by including it as the \214rst or last character in the set.) -180 717.6 R(A)5.193 E F1(])2.693 E F0 .194(may be matched by)2.693 F -(including it as the \214rst character in the set.)180 729.6 Q -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(26)185.545 E 0 Cg EP -%%Page: 27 27 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.4(Wi)180 84 S -(thin).4 E/F1 10/Times-Bold@0 SF([)3.071 E F0(and)3.071 E F1(])3.071 E -F0(,)A/F2 10/Times-Italic@0 SF -.15(ch)3.071 G(ar).15 E .571 -(acter classes)-.15 F F0 .571(can be speci\214ed using the syntax)3.071 -F F1([:)3.07 E F2(class)A F1(:])A F0 3.07(,w)C(here)-3.07 E F2(class) -3.07 E F0(is one of the follo)180 96 Q -(wing classes de\214ned in the POSIX standard:)-.25 E F1 5.889 -(alnum alpha ascii blank cntrl digit graph lo)180 108 R 5.889 -(wer print punct space up-)-.1 F 5(per w)180 120 R 5(ord xdigit)-.1 F F0 -4.29(Ac)180 132 S 1.789(haracter class matches an)-4.29 F 4.289(yc)-.15 +180 180 R(A)5.193 E F1(])2.693 E F0 .194(may be matched by)2.693 F +(including it as the \214rst character in the set.)180 192 Q -.4(Wi)180 +210 S(thin).4 E F1([)3.071 E F0(and)3.071 E F1(])3.071 E F0(,)A F2 -.15 +(ch)3.071 G(ar).15 E .571(acter classes)-.15 F F0 .571 +(can be speci\214ed using the syntax)3.071 F F1([:)3.07 E F2(class)A F1 +(:])A F0 3.07(,w)C(here)-3.07 E F2(class)3.07 E F0(is one of the follo) +180 222 Q(wing classes de\214ned in the POSIX standard:)-.25 E F1 5.889 +(alnum alpha ascii blank cntrl digit graph lo)180 234 R 5.889 +(wer print punct space up-)-.1 F 5(per w)180 246 R 5(ord xdigit)-.1 F F0 +4.29(Ac)180 258 S 1.789(haracter class matches an)-4.29 F 4.289(yc)-.15 G 1.789(haracter belonging to that class.)-4.289 F(The)6.789 E F1 -.1 (wo)4.289 G(rd).1 E F0(character)4.289 E -(class matches letters, digits, and the character _.)180 144 Q -.4(Wi) -180 162 S(thin).4 E F1([)4.536 E F0(and)4.536 E F1(])4.536 E F0 4.536 +(class matches letters, digits, and the character _.)180 270 Q -.4(Wi) +180 288 S(thin).4 E F1([)4.536 E F0(and)4.536 E F1(])4.536 E F0 4.536 (,a)C(n)-4.536 E F2 2.036(equivalence class)4.536 F F0 2.037 (can be speci\214ed using the syntax)4.536 F F1([=)4.537 E F2(c)A F1(=]) A F0 4.537(,w)C(hich)-4.537 E .125(matches all characters with the same\ - collation weight \(as de\214ned by the current locale\) as)180 174 R -(the character)180 186 Q F2(c)2.5 E F0(.)A -.4(Wi)180 204 S(thin).4 E F1 + collation weight \(as de\214ned by the current locale\) as)180 300 R +(the character)180 312 Q F2(c)2.5 E F0(.)A -.4(Wi)180 330 S(thin).4 E F1 ([)2.5 E F0(and)2.5 E F1(])2.5 E F0 2.5(,t)C(he syntax)-2.5 E F1([.)2.5 E F2(symbol)A F1(.])A F0(matches the collating symbol)2.5 E F2(symbol) -2.5 E F0(.)A .704(If the)108 220.8 R F1(extglob)3.204 E F0 .705 +2.5 E F0(.)A .704(If the)108 346.8 R F1(extglob)3.204 E F0 .705 (shell option is enabled using the)3.204 F F1(shopt)3.205 E F0 -.2(bu) 3.205 G .705(iltin, se).2 F -.15(ve)-.25 G .705(ral e).15 F .705 (xtended pattern matching operators)-.15 F .256(are recognized.)108 -232.8 R .256(In the follo)5.256 F .256(wing description, a)-.25 F F2 +358.8 R .256(In the follo)5.256 F .256(wing description, a)-.25 F F2 (pattern-list)2.755 E F0 .255 (is a list of one or more patterns separated by a)2.755 F F1(|)2.755 E F0(.)A(Composite patterns may be formed using one or more of the follo) -108 244.8 Q(wing sub-patterns:)-.25 E F1(?\()144 268.8 Q F2 +108 370.8 Q(wing sub-patterns:)-.25 E F1(?\()144 394.8 Q F2 (pattern-list).833 E F1(\)).833 E F0 -(Matches zero or one occurrence of the gi)180 280.8 Q -.15(ve)-.25 G 2.5 -(np).15 G(atterns)-2.5 E F1(*\()144 292.8 Q F2(pattern-list).833 E F1 -(\)).833 E F0(Matches zero or more occurrences of the gi)180 304.8 Q --.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(+\()144 316.8 Q F2 +(Matches zero or one occurrence of the gi)180 406.8 Q -.15(ve)-.25 G 2.5 +(np).15 G(atterns)-2.5 E F1(*\()144 418.8 Q F2(pattern-list).833 E F1 +(\)).833 E F0(Matches zero or more occurrences of the gi)180 430.8 Q +-.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(+\()144 442.8 Q F2 (pattern-list).833 E F1(\)).833 E F0 -(Matches one or more occurrences of the gi)180 328.8 Q -.15(ve)-.25 G -2.5(np).15 G(atterns)-2.5 E F1(@\()144 340.8 Q F2(pattern-list).833 E F1 -(\)).833 E F0(Matches one of the gi)180 352.8 Q -.15(ve)-.25 G 2.5(np) -.15 G(atterns)-2.5 E F1(!\()144 364.8 Q F2(pattern-list).833 E F1(\)) -.833 E F0(Matches an)180 376.8 Q(ything e)-.15 E(xcept one of the gi) +(Matches one or more occurrences of the gi)180 454.8 Q -.15(ve)-.25 G +2.5(np).15 G(atterns)-2.5 E F1(@\()144 466.8 Q F2(pattern-list).833 E F1 +(\)).833 E F0(Matches one of the gi)180 478.8 Q -.15(ve)-.25 G 2.5(np) +.15 G(atterns)-2.5 E F1(!\()144 490.8 Q F2(pattern-list).833 E F1(\)) +.833 E F0(Matches an)180 502.8 Q(ything e)-.15 E(xcept one of the gi) -.15 E -.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E .968(Complicated e)108 -393.6 R .968(xtended pattern matching ag)-.15 F .968 +519.6 R .968(xtended pattern matching ag)-.15 F .968 (ainst long strings is slo)-.05 F 2.269 -.65(w, e)-.25 H .969 (specially when the patterns contain).65 F .091 -(alternations and the strings contain multiple matches.)108 405.6 R .091 +(alternations and the strings contain multiple matches.)108 531.6 R .091 (Using separate matches ag)5.091 F .09(ainst shorter strings, or us-) -.05 F(ing arrays of strings instead of a single long string, may be f) -108 417.6 Q(aster)-.1 E(.)-.55 E F1(Quote Remo)87 434.4 Q -.1(va)-.1 G -(l).1 E F0 1.112(After the preceding e)108 446.4 R 1.112 +108 543.6 Q(aster)-.1 E(.)-.55 E F1(Quote Remo)87 560.4 Q -.1(va)-.1 G +(l).1 E F0 1.112(After the preceding e)108 572.4 R 1.112 (xpansions, all unquoted occurrences of the characters)-.15 F F1(\\) 3.613 E F0(,)A F1<08>3.613 E F0 3.613(,a)C(nd)-3.613 E F1(")4.446 E F0 -1.113(that did not result)4.446 F(from one of the abo)108 458.4 Q .3 --.15(ve ex)-.15 H(pansions are remo).15 E -.15(ve)-.15 G(d.).15 E/F3 -10.95/Times-Bold@0 SF(REDIRECTION)72 475.2 Q F0 .545 -(Before a command is e)108 487.2 R -.15(xe)-.15 G .545 +1.113(that did not result)4.446 F(from one of the abo)108 584.4 Q .3 +-.15(ve ex)-.15 H(pansions are remo).15 E -.15(ve)-.15 G(d.).15 E/F4 +10.95/Times-Bold@0 SF(REDIRECTION)72 601.2 Q F0 .545 +(Before a command is e)108 613.2 R -.15(xe)-.15 G .545 (cuted, its input and output may be).15 F F2 -.37(re)3.045 G(dir).37 E (ected)-.37 E F0 .545(using a special notation interpreted)3.815 F .405 -(by the shell.)108 499.2 R .405(Redirection allo)5.405 F .405(ws comman\ +(by the shell.)108 625.2 R .405(Redirection allo)5.405 F .405(ws comman\ ds' \214le handles to be duplicated, opened, closed, made to refer to) --.25 F(dif)108 511.2 Q 1.02(ferent \214les, and can change the \214les \ +-.25 F(dif)108 637.2 Q 1.02(ferent \214les, and can change the \214les \ the command reads from and writes to.)-.25 F 1.019 (Redirection may also be)6.019 F .215 -(used to modify \214le handles in the current shell e)108 523.2 R -.15 +(used to modify \214le handles in the current shell e)108 649.2 R -.15 (xe)-.15 G .215(cution en).15 F 2.715(vironment. The)-.4 F(follo)2.715 E .215(wing redirection operators)-.25 F .862(may precede or appear an)108 -535.2 R .862(ywhere within a)-.15 F F2 .862(simple command)3.702 F F0 +661.2 R .862(ywhere within a)-.15 F F2 .862(simple command)3.702 F F0 .862(or may follo)4.132 F 3.362(wa)-.25 G F2(command).2 E F0 5.862(.R) -.77 G .862(edirections are)-5.862 F(processed in the order the)108 547.2 +.77 G .862(edirections are)-5.862 F(processed in the order the)108 673.2 Q 2.5(ya)-.15 G(ppear)-2.5 E 2.5(,f)-.4 G(rom left to right.)-2.5 E .771 (Each redirection that may be preceded by a \214le descriptor number ma\ -y instead be preceded by a w)108 564 R .772(ord of)-.1 F .293 -(the form {)108 576 R F2(varname)A F0 2.793(}. In)B .293 +y instead be preceded by a w)108 690 R .772(ord of)-.1 F .293 +(the form {)108 702 R F2(varname)A F0 2.793(}. In)B .293 (this case, for each redirection operator e)2.793 F .293 -(xcept >&- and <&-, the shell will allocate)-.15 F 3.179<618c>108 588 S +(xcept >&- and <&-, the shell will allocate)-.15 F 3.179<618c>108 714 S .679(le descriptor greater than or equal to 10 and assign it to)-3.179 F F2(varname)3.179 E F0 5.679(.I)C 3.179(f>)-5.679 G .679 -(&- or <&- is preceded by {)-3.179 F F2(var)A(-)-.2 E(name)108 600 Q F0 +(&- or <&- is preceded by {)-3.179 F F2(var)A(-)-.2 E(name)108 726 Q F0 .6(}, the v)B .6(alue of)-.25 F F2(varname)3.1 E F0 .599 (de\214nes the \214le descriptor to close.)3.1 F .599(If {)5.599 F F2 (varname)A F0 3.099(}i)C 3.099(ss)-3.099 G .599 -(upplied, the redirection)-3.099 F 1.238(persists be)108 612 R 1.238 -(yond the scope of the command, allo)-.15 F 1.238 +(upplied, the redirection)-3.099 F(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(27)190.95 E 0 Cg EP +%%Page: 28 28 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.238(persists be) +108 84 R 1.238(yond the scope of the command, allo)-.15 F 1.238 (wing the shell programmer to manage the \214le descriptor)-.25 F -(himself.)108 624 Q .284(In the follo)108 640.8 R .283(wing description\ -s, if the \214le descriptor number is omitted, and the \214rst characte\ -r of the redirect-)-.25 F .512(ion operator is)108 652.8 R F1(<)3.012 E -F0 3.012(,t)C .512 +(himself.)108 96 Q .284(In the follo)108 112.8 R .283(wing descriptions\ +, if the \214le descriptor number is omitted, and the \214rst character\ + of the redirect-)-.25 F .512(ion operator is)108 124.8 R/F1 10 +/Times-Bold@0 SF(<)3.012 E F0 3.012(,t)C .512 (he redirection refers to the standard input \(\214le descriptor 0\).) -3.012 F .512(If the \214rst character of the)5.512 F -(redirection operator is)108 664.8 Q F1(>)2.5 E F0 2.5(,t)C +(redirection operator is)108 136.8 Q F1(>)2.5 E F0 2.5(,t)C (he redirection refers to the standard output \(\214le descriptor 1\).) --2.5 E .825(The w)108 681.6 R .825(ord follo)-.1 F .824 +-2.5 E .825(The w)108 153.6 R .825(ord follo)-.1 F .824 (wing the redirection operator in the follo)-.25 F .824 (wing descriptions, unless otherwise noted, is sub-)-.25 F .462 -(jected to brace e)108 693.6 R .462(xpansion, tilde e)-.15 F .463 +(jected to brace e)108 165.6 R .462(xpansion, tilde e)-.15 F .463 (xpansion, parameter and v)-.15 F .463(ariable e)-.25 F .463 -(xpansion, command substitution, arith-)-.15 F .867(metic e)108 705.6 R +(xpansion, command substitution, arith-)-.15 F .867(metic e)108 177.6 R .867(xpansion, quote remo)-.15 F -.25(va)-.15 G .867(l, pathname e).25 F .867(xpansion, and w)-.15 F .867(ord splitting.)-.1 F .867(If it e)5.867 -F .866(xpands to more than one)-.15 F -.1(wo)108 717.6 S(rd,).1 E F1 -(bash)2.5 E F0(reports an error)2.5 E(.)-.55 E(GNU Bash 5.0)72 768 Q -(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(27)185.545 E 0 Cg EP -%%Page: 28 28 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -(Note that the order of redirections is signi\214cant.)108 84 Q -.15(Fo) -5 G 2.5(re).15 G(xample, the command)-2.65 E(ls)144 100.8 Q/F1 10 -/Times-Bold@0 SF(>)2.5 E F0(dirlist 2)2.5 E F1(>&)A F0(1)A -(directs both standard output and standard error to the \214le)108 117.6 -Q/F2 10/Times-Italic@0 SF(dirlist)2.85 E F0 2.5(,w).68 G -(hile the command)-2.5 E(ls 2)144 134.4 Q F1(>&)A F0(1)A F1(>)2.5 E F0 -(dirlist)2.5 E .505(directs only the standard output to \214le)108 151.2 +F .866(xpands to more than one)-.15 F -.1(wo)108 189.6 S(rd,).1 E F1 +(bash)2.5 E F0(reports an error)2.5 E(.)-.55 E +(Note that the order of redirections is signi\214cant.)108 206.4 Q -.15 +(Fo)5 G 2.5(re).15 G(xample, the command)-2.65 E(ls)144 223.2 Q F1(>)2.5 +E F0(dirlist 2)2.5 E F1(>&)A F0(1)A +(directs both standard output and standard error to the \214le)108 240 Q +/F2 10/Times-Italic@0 SF(dirlist)2.85 E F0 2.5(,w).68 G +(hile the command)-2.5 E(ls 2)144 256.8 Q F1(>&)A F0(1)A F1(>)2.5 E F0 +(dirlist)2.5 E .505(directs only the standard output to \214le)108 273.6 R F2(dirlist)3.355 E F0 3.005(,b).68 G .505(ecause the standard error w) -3.005 F .505(as duplicated from the standard)-.1 F -(output before the standard output w)108 163.2 Q(as redirected to)-.1 E -F2(dirlist)2.85 E F0(.).68 E F1(Bash)108 180 Q F0 .599(handles se)3.099 -F -.15(ve)-.25 G .599(ral \214lenames specially when the).15 F 3.099(ya) --.15 G .598(re used in redirections, as described in the follo)-3.099 F -(wing)-.25 E 3.477(table. If)108 192 R .977 +(output before the standard output w)108 285.6 Q(as redirected to)-.1 E +F2(dirlist)2.85 E F0(.).68 E F1(Bash)108 302.4 Q F0 .599(handles se) +3.099 F -.15(ve)-.25 G .599(ral \214lenames specially when the).15 F +3.099(ya)-.15 G .598(re used in redirections, as described in the follo) +-3.099 F(wing)-.25 E 3.477(table. If)108 314.4 R .977 (the operating system on which)3.477 F F1(bash)3.478 E F0 .978 (is running pro)3.478 F .978 (vides these special \214les, bash will use them;)-.15 F -(otherwise it will emulate them internally with the beha)108 204 Q -(vior described belo)-.2 E -.65(w.)-.25 G F1(/de)144 220.8 Q(v/fd/)-.15 -E F2(fd)A F0(If)180 232.8 Q F2(fd)2.5 E F0(is a v)2.5 E(alid inte)-.25 E +(otherwise it will emulate them internally with the beha)108 326.4 Q +(vior described belo)-.2 E -.65(w.)-.25 G F1(/de)144 343.2 Q(v/fd/)-.15 +E F2(fd)A F0(If)180 355.2 Q F2(fd)2.5 E F0(is a v)2.5 E(alid inte)-.25 E (ger)-.15 E 2.5<2c8c>-.4 G(le descriptor)-2.5 E F2(fd)2.5 E F0 -(is duplicated.)2.5 E F1(/de)144 244.8 Q(v/stdin)-.15 E F0 -(File descriptor 0 is duplicated.)180 256.8 Q F1(/de)144 268.8 Q -(v/stdout)-.15 E F0(File descriptor 1 is duplicated.)180 280.8 Q F1(/de) -144 292.8 Q(v/stderr)-.15 E F0(File descriptor 2 is duplicated.)180 -304.8 Q F1(/de)144 316.8 Q(v/tcp/)-.15 E F2(host)A F1(/)A F2(port)A F0 -(If)180 328.8 Q F2(host)2.997 E F0 .497(is a v)2.997 F .497 +(is duplicated.)2.5 E F1(/de)144 367.2 Q(v/stdin)-.15 E F0 +(File descriptor 0 is duplicated.)180 379.2 Q F1(/de)144 391.2 Q +(v/stdout)-.15 E F0(File descriptor 1 is duplicated.)180 403.2 Q F1(/de) +144 415.2 Q(v/stderr)-.15 E F0(File descriptor 2 is duplicated.)180 +427.2 Q F1(/de)144 439.2 Q(v/tcp/)-.15 E F2(host)A F1(/)A F2(port)A F0 +(If)180 451.2 Q F2(host)2.997 E F0 .497(is a v)2.997 F .497 (alid hostname or Internet address, and)-.25 F F2(port)2.996 E F0 .496 (is an inte)2.996 F .496(ger port number or ser)-.15 F(-)-.2 E -(vice name,)180 340.8 Q F1(bash)2.5 E F0 +(vice name,)180 463.2 Q F1(bash)2.5 E F0 (attempts to open the corresponding TCP sock)2.5 E(et.)-.1 E F1(/de)144 -352.8 Q(v/udp/)-.15 E F2(host)A F1(/)A F2(port)A F0(If)180 364.8 Q F2 +475.2 Q(v/udp/)-.15 E F2(host)A F1(/)A F2(port)A F0(If)180 487.2 Q F2 (host)2.996 E F0 .496(is a v)2.996 F .496 (alid hostname or Internet address, and)-.25 F F2(port)2.997 E F0 .497 (is an inte)2.997 F .497(ger port number or ser)-.15 F(-)-.2 E -(vice name,)180 376.8 Q F1(bash)2.5 E F0 +(vice name,)180 499.2 Q F1(bash)2.5 E F0 (attempts to open the corresponding UDP sock)2.5 E(et.)-.1 E 2.5(Af)108 -393.6 S(ailure to open or create a \214le causes the redirection to f) --2.6 E(ail.)-.1 E .046(Redirections using \214le descriptors greater th\ -an 9 should be used with care, as the)108 410.4 R 2.545(ym)-.15 G .045 +516 S(ailure to open or create a \214le causes the redirection to f)-2.6 +E(ail.)-.1 E .046(Redirections using \214le descriptors greater than 9 \ +should be used with care, as the)108 532.8 R 2.545(ym)-.15 G .045 (ay con\215ict with \214le de-)-2.545 F -(scriptors the shell uses internally)108 422.4 Q(.)-.65 E F1(Redir)87 -439.2 Q(ecting Input)-.18 E F0 .391 +(scriptors the shell uses internally)108 544.8 Q(.)-.65 E F1(Redir)87 +561.6 Q(ecting Input)-.18 E F0 .391 (Redirection of input causes the \214le whose name results from the e) -108 451.2 R .391(xpansion of)-.15 F F2(wor)3.231 E(d)-.37 E F0 .391 -(to be opened for read-)3.661 F(ing on \214le descriptor)108 463.2 Q F2 +108 573.6 R .391(xpansion of)-.15 F F2(wor)3.231 E(d)-.37 E F0 .391 +(to be opened for read-)3.661 F(ing on \214le descriptor)108 585.6 Q F2 (n)2.86 E F0 2.5(,o).24 G 2.5(rt)-2.5 G (he standard input \(\214le descriptor 0\) if)-2.5 E F2(n)2.86 E F0 (is not speci\214ed.)2.74 E -(The general format for redirecting input is:)108 480 Q([)144 496.8 Q F2 -(n)A F0(])A F1(<)A F2(wor)A(d)-.37 E F1(Redir)87 513.6 Q(ecting Output) +(The general format for redirecting input is:)108 602.4 Q([)144 619.2 Q +F2(n)A F0(])A F1(<)A F2(wor)A(d)-.37 E F1(Redir)87 636 Q(ecting Output) -.18 E F0 .175 (Redirection of output causes the \214le whose name results from the e) -108 525.6 R .174(xpansion of)-.15 F F2(wor)3.014 E(d)-.37 E F0 .174 -(to be opened for writ-)3.444 F .083(ing on \214le descriptor)108 537.6 -R F2(n)2.943 E F0 2.583(,o).24 G 2.583(rt)-2.583 G .083 +108 648 R .174(xpansion of)-.15 F F2(wor)3.014 E(d)-.37 E F0 .174 +(to be opened for writ-)3.444 F .083(ing on \214le descriptor)108 660 R +F2(n)2.943 E F0 2.583(,o).24 G 2.583(rt)-2.583 G .083 (he standard output \(\214le descriptor 1\) if)-2.583 F F2(n)2.943 E F0 .083(is not speci\214ed.)2.823 F .084(If the \214le does not e)5.083 F -(x-)-.15 E(ist it is created; if it does e)108 549.6 Q +(x-)-.15 E(ist it is created; if it does e)108 672 Q (xist it is truncated to zero size.)-.15 E -(The general format for redirecting output is:)108 566.4 Q([)144 583.2 Q +(The general format for redirecting output is:)108 688.8 Q([)144 705.6 Q F2(n)A F0(])A F1(>)A F2(wor)A(d)-.37 E F0 .155 -(If the redirection operator is)108 600 R F1(>)2.655 E F0 2.655(,a)C +(If the redirection operator is)108 722.4 R F1(>)2.655 E F0 2.655(,a)C .155(nd the)-2.655 F F1(noclob)2.655 E(ber)-.1 E F0 .154(option to the) 2.654 F F1(set)2.654 E F0 -.2(bu)2.654 G .154 -(iltin has been enabled, the redirection).2 F .657(will f)108 612 R .657 -(ail if the \214le whose name results from the e)-.1 F .658(xpansion of) --.15 F F2(wor)3.158 E(d)-.37 E F0 -.15(ex)3.158 G .658(ists and is a re) -.15 F .658(gular \214le.)-.15 F .658(If the redi-)5.658 F .409 -(rection operator is)108 624 R F1(>|)2.909 E F0 2.909(,o)C 2.909(rt) --2.909 G .409(he redirection operator is)-2.909 F F1(>)2.909 E F0 .409 -(and the)2.909 F F1(noclob)2.909 E(ber)-.1 E F0 .409(option to the)2.909 -F F1(set)2.909 E F0 -.2(bu)2.908 G .408(iltin command).2 F -(is not enabled, the redirection is attempted e)108 636 Q -.15(ve)-.25 G -2.5(ni).15 G 2.5(ft)-2.5 G(he \214le named by)-2.5 E F2(wor)2.5 E(d)-.37 -E F0 -.15(ex)2.5 G(ists.).15 E F1 -.25(Ap)87 652.8 S(pending Redir).25 E -(ected Output)-.18 E F0 .641(Redirection of output in this f)108 664.8 R -.642(ashion causes the \214le whose name results from the e)-.1 F .642 -(xpansion of)-.15 F F2(wor)3.482 E(d)-.37 E F0 .642(to be)3.912 F .455 -(opened for appending on \214le descriptor)108 676.8 R F2(n)3.315 E F0 -2.955(,o).24 G 2.955(rt)-2.955 G .455 -(he standard output \(\214le descriptor 1\) if)-2.955 F F2(n)3.314 E F0 -.454(is not speci\214ed.)3.194 F(If)5.454 E(the \214le does not e)108 -688.8 Q(xist it is created.)-.15 E -(The general format for appending output is:)108 705.6 Q([)144 722.4 Q -F2(n)A F0(])A F1(>>)A F2(wor)A(d)-.37 E F0(GNU Bash 5.0)72 768 Q -(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(28)185.545 E 0 Cg EP +(iltin has been enabled, the redirection).2 F(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(28)190.95 E 0 Cg EP %%Page: 29 29 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(Redir)87 84 Q(ecting Standard Output and Standard Err)-.18 E(or)-.18 -E F0 .248(This construct allo)108 96 R .249(ws both the standard output\ - \(\214le descriptor 1\) and the standard error output \(\214le descrip\ --)-.25 F(tor 2\) to be redirected to the \214le whose name is the e)108 -108 Q(xpansion of)-.15 E/F2 10/Times-Italic@0 SF(wor)2.84 E(d)-.37 E F0 -(.).77 E(There are tw)108 124.8 Q 2.5(of)-.1 G -(ormats for redirecting standard output and standard error:)-2.5 E F1 -(&>)144 141.6 Q F2(wor)A(d)-.37 E F0(and)108 153.6 Q F1(>&)144 165.6 Q -F2(wor)A(d)-.37 E F0(Of the tw)108 182.4 Q 2.5(of)-.1 G +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .657(will f)108 84 +R .657(ail if the \214le whose name results from the e)-.1 F .658 +(xpansion of)-.15 F/F1 10/Times-Italic@0 SF(wor)3.158 E(d)-.37 E F0 -.15 +(ex)3.158 G .658(ists and is a re).15 F .658(gular \214le.)-.15 F .658 +(If the redi-)5.658 F .409(rection operator is)108 96 R/F2 10 +/Times-Bold@0 SF(>|)2.909 E F0 2.909(,o)C 2.909(rt)-2.909 G .409 +(he redirection operator is)-2.909 F F2(>)2.909 E F0 .409(and the)2.909 +F F2(noclob)2.909 E(ber)-.1 E F0 .409(option to the)2.909 F F2(set)2.909 +E F0 -.2(bu)2.908 G .408(iltin command).2 F +(is not enabled, the redirection is attempted e)108 108 Q -.15(ve)-.25 G +2.5(ni).15 G 2.5(ft)-2.5 G(he \214le named by)-2.5 E F1(wor)2.5 E(d)-.37 +E F0 -.15(ex)2.5 G(ists.).15 E F2 -.25(Ap)87 124.8 S(pending Redir).25 E +(ected Output)-.18 E F0 .641(Redirection of output in this f)108 136.8 R +.642(ashion causes the \214le whose name results from the e)-.1 F .642 +(xpansion of)-.15 F F1(wor)3.482 E(d)-.37 E F0 .642(to be)3.912 F .455 +(opened for appending on \214le descriptor)108 148.8 R F1(n)3.315 E F0 +2.955(,o).24 G 2.955(rt)-2.955 G .455 +(he standard output \(\214le descriptor 1\) if)-2.955 F F1(n)3.314 E F0 +.454(is not speci\214ed.)3.194 F(If)5.454 E(the \214le does not e)108 +160.8 Q(xist it is created.)-.15 E +(The general format for appending output is:)108 177.6 Q([)144 194.4 Q +F1(n)A F0(])A F2(>>)A F1(wor)A(d)-.37 E F2(Redir)87 211.2 Q +(ecting Standard Output and Standard Err)-.18 E(or)-.18 E F0 .248 +(This construct allo)108 223.2 R .249(ws both the standard output \(\ +\214le descriptor 1\) and the standard error output \(\214le descrip-) +-.25 F(tor 2\) to be redirected to the \214le whose name is the e)108 +235.2 Q(xpansion of)-.15 E F1(wor)2.84 E(d)-.37 E F0(.).77 E +(There are tw)108 252 Q 2.5(of)-.1 G +(ormats for redirecting standard output and standard error:)-2.5 E F2 +(&>)144 268.8 Q F1(wor)A(d)-.37 E F0(and)108 280.8 Q F2(>&)144 292.8 Q +F1(wor)A(d)-.37 E F0(Of the tw)108 309.6 Q 2.5(of)-.1 G (orms, the \214rst is preferred.)-2.5 E(This is semantically equi)5 E --.25(va)-.25 G(lent to).25 E F1(>)144 199.2 Q F2(wor)A(d)-.37 E F0(2)2.5 -E F1(>&)A F0(1)A .115(When using the second form,)108 216 R F2(wor)2.614 -E(d)-.37 E F0 .114(may not e)2.614 F .114(xpand to a number or)-.15 F F1 -2.614 E F0 5.114(.I)C 2.614(fi)-5.114 G 2.614(td)-2.614 G .114 -(oes, other redirection operators)-2.614 F(apply \(see)108 228 Q F1 -(Duplicating File Descriptors)2.5 E F0(belo)2.5 E -(w\) for compatibility reasons.)-.25 E F1 -.25(Ap)87 244.8 S +-.25(va)-.25 G(lent to).25 E F2(>)144 326.4 Q F1(wor)A(d)-.37 E F0(2)2.5 +E F2(>&)A F0(1)A .115(When using the second form,)108 343.2 R F1(wor) +2.614 E(d)-.37 E F0 .114(may not e)2.614 F .114(xpand to a number or) +-.15 F F22.614 E F0 5.114(.I)C 2.614(fi)-5.114 G 2.614(td)-2.614 G +.114(oes, other redirection operators)-2.614 F(apply \(see)108 355.2 Q +F2(Duplicating File Descriptors)2.5 E F0(belo)2.5 E +(w\) for compatibility reasons.)-.25 E F2 -.25(Ap)87 372 S (pending Standard Output and Standard Err).25 E(or)-.18 E F0 .248 -(This construct allo)108 256.8 R .249(ws both the standard output \(\ -\214le descriptor 1\) and the standard error output \(\214le descrip-) --.25 F(tor 2\) to be appended to the \214le whose name is the e)108 -268.8 Q(xpansion of)-.15 E F2(wor)2.84 E(d)-.37 E F0(.).77 E +(This construct allo)108 384 R .249(ws both the standard output \(\214l\ +e descriptor 1\) and the standard error output \(\214le descrip-)-.25 F +(tor 2\) to be appended to the \214le whose name is the e)108 396 Q +(xpansion of)-.15 E F1(wor)2.84 E(d)-.37 E F0(.).77 E (The format for appending standard output and standard error is:)108 -285.6 Q F1(&>>)144 302.4 Q F2(wor)A(d)-.37 E F0 -(This is semantically equi)108 319.2 Q -.25(va)-.25 G(lent to).25 E F1 -(>>)144 336 Q F2(wor)A(d)-.37 E F0(2)2.5 E F1(>&)A F0(1)A(\(see)108 -352.8 Q F1(Duplicating File Descriptors)2.5 E F0(belo)2.5 E(w\).)-.25 E -F1(Her)87 369.6 Q 2.5(eD)-.18 G(ocuments)-2.5 E F0 .33(This type of red\ -irection instructs the shell to read input from the current source unti\ -l a line containing only)108 381.6 R F2(delimiter)108.35 393.6 Q F0 .614 +412.8 Q F2(&>>)144 429.6 Q F1(wor)A(d)-.37 E F0 +(This is semantically equi)108 446.4 Q -.25(va)-.25 G(lent to).25 E F2 +(>>)144 463.2 Q F1(wor)A(d)-.37 E F0(2)2.5 E F2(>&)A F0(1)A(\(see)108 +480 Q F2(Duplicating File Descriptors)2.5 E F0(belo)2.5 E(w\).)-.25 E F2 +(Her)87 496.8 Q 2.5(eD)-.18 G(ocuments)-2.5 E F0 .33(This type of redir\ +ection instructs the shell to read input from the current source until \ +a line containing only)108 508.8 R F1(delimiter)108.35 520.8 Q F0 .614 (\(with no trailing blanks\) is seen.)3.844 F .615 (All of the lines read up to that point are then used as the stan-)5.615 -F(dard input \(or \214le descriptor)108 405.6 Q F2(n)2.5 E F0(if)2.5 E -F2(n)2.5 E F0(is speci\214ed\) for a command.)2.5 E -(The format of here-documents is:)108 422.4 Q([)144 439.2 Q F2(n)A F0(]) -A F1(<<)A F0([)A F1A F0(])A F2(wor)A(d)-.37 E(her)164 451.2 Q -(e-document)-.37 E(delimiter)144 463.2 Q F0 .302(No parameter and v)108 -480 R .302(ariable e)-.25 F .302 +F(dard input \(or \214le descriptor)108 532.8 Q F1(n)2.5 E F0(if)2.5 E +F1(n)2.5 E F0(is speci\214ed\) for a command.)2.5 E +(The format of here-documents is:)108 549.6 Q([)144 566.4 Q F1(n)A F0(]) +A F2(<<)A F0([)A F2A F0(])A F1(wor)A(d)-.37 E(her)164 578.4 Q +(e-document)-.37 E(delimiter)144 590.4 Q F0 .302(No parameter and v)108 +607.2 R .302(ariable e)-.25 F .302 (xpansion, command substitution, arithmetic e)-.15 F .301 (xpansion, or pathname e)-.15 F(xpansion)-.15 E .381(is performed on)108 -492 R F2(wor)3.221 E(d)-.37 E F0 5.381(.I).77 G 2.881(fa)-5.381 G .681 --.15(ny p)-2.881 H .381(art of).15 F F2(wor)3.221 E(d)-.37 E F0 .381 -(is quoted, the)3.651 F F2(delimiter)3.231 E F0 .381 +619.2 R F1(wor)3.221 E(d)-.37 E F0 5.381(.I).77 G 2.881(fa)-5.381 G .681 +-.15(ny p)-2.881 H .381(art of).15 F F1(wor)3.221 E(d)-.37 E F0 .381 +(is quoted, the)3.651 F F1(delimiter)3.231 E F0 .381 (is the result of quote remo)3.611 F -.25(va)-.15 G 2.881(lo).25 G(n) --2.881 E F2(wor)3.221 E(d)-.37 E F0(,).77 E .774 -(and the lines in the here-document are not e)108 504 R 3.274 -(xpanded. If)-.15 F F2(wor)3.273 E(d)-.37 E F0 .773 +-2.881 E F1(wor)3.221 E(d)-.37 E F0(,).77 E .774 +(and the lines in the here-document are not e)108 631.2 R 3.274 +(xpanded. If)-.15 F F1(wor)3.273 E(d)-.37 E F0 .773 (is unquoted, all lines of the here-document)3.273 F 1.194 -(are subjected to parameter e)108 516 R 1.194 +(are subjected to parameter e)108 643.2 R 1.194 (xpansion, command substitution, and arithmetic e)-.15 F 1.195 -(xpansion, the character se-)-.15 F(quence)108 528 Q F1(\\)2.5 -E F0(is ignored, and)2.5 E F1(\\)2.5 E F0 -(must be used to quote the characters)2.5 E F1(\\)2.5 E F0(,)A F1($)2.5 -E F0 2.5(,a)C(nd)-2.5 E F1<92>2.5 E F0(.)A .602 -(If the redirection operator is)108 544.8 R F1(<<\255)3.101 E F0 3.101 -(,t)C .601(hen all leading tab characters are stripped from input lines\ - and the line)-3.101 F(containing)108 556.8 Q F2(delimiter)2.85 E F0 5 -(.T).73 G(his allo)-5 E +(xpansion, the character se-)-.15 F(quence)108 655.2 Q F2(\\) +2.5 E F0(is ignored, and)2.5 E F2(\\)2.5 E F0 +(must be used to quote the characters)2.5 E F2(\\)2.5 E F0(,)A F2($)2.5 +E F0 2.5(,a)C(nd)-2.5 E F2<92>2.5 E F0(.)A .602 +(If the redirection operator is)108 672 R F2(<<\255)3.101 E F0 3.101(,t) +C .601(hen all leading tab characters are stripped from input lines and\ + the line)-3.101 F(containing)108 684 Q F1(delimiter)2.85 E F0 5(.T).73 +G(his allo)-5 E (ws here-documents within shell scripts to be indented in a natural f) --.25 E(ashion.)-.1 E F1(Her)87 573.6 Q 2.5(eS)-.18 G(trings)-2.5 E F0 -2.5(Av)108 585.6 S(ariant of here documents, the format is:)-2.75 E([) -144 602.4 Q F2(n)A F0(])A F1(<<<)A F2(wor)A(d)-.37 E F0(The)108 619.2 Q -F2(wor)3.291 E(d)-.37 E F0(under)3.291 E .792(goes tilde e)-.18 F .792 -(xpansion, parameter and v)-.15 F .792(ariable e)-.25 F .792 -(xpansion, command substitution, arithmetic)-.15 F -.15(ex)108 631.2 S -1.188(pansion, and quote remo).15 F -.25(va)-.15 G 3.687(l. P).25 F -1.187(athname e)-.15 F 1.187(xpansion and w)-.15 F 1.187 -(ord splitting are not performed.)-.1 F 1.187(The result is)6.187 F .374 -(supplied as a single string, with a ne)108 643.2 R .375(wline appended\ -, to the command on its standard input \(or \214le descrip-)-.25 F(tor) -108 655.2 Q F2(n)2.5 E F0(if)2.5 E F2(n)2.5 E F0(is speci\214ed\).)2.5 E -F1(Duplicating File Descriptors)87 672 Q F0(The redirection operator)108 -684 Q([)144 700.8 Q F2(n)A F0(])A F1(<&)A F2(wor)A(d)-.37 E F0 .127 -(is used to duplicate input \214le descriptors.)108 717.6 R(If)5.127 E -F2(wor)2.967 E(d)-.37 E F0 -.15(ex)3.397 G .126 -(pands to one or more digits, the \214le descriptor denoted).15 F(by)108 -729.6 Q F2(n)3.317 E F0 .457(is made to be a cop)3.197 F 2.957(yo)-.1 G -2.957(ft)-2.957 G .457(hat \214le descriptor)-2.957 F 5.457(.I)-.55 G -2.957(ft)-5.457 G .457(he digits in)-2.957 F F2(wor)3.298 E(d)-.37 E F0 -.458(do not specify a \214le descriptor open)3.728 F(GNU Bash 5.0)72 768 -Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(29)185.545 E 0 Cg EP +-.25 E(ashion.)-.1 E F2(Her)87 700.8 Q 2.5(eS)-.18 G(trings)-2.5 E F0 +2.5(Av)108 712.8 S(ariant of here documents, the format is:)-2.75 E([) +144 729.6 Q F1(n)A F0(])A F2(<<<)A F1(wor)A(d)-.37 E F0(GNU Bash 5.0)72 +768 Q(2020 January 29)141.79 E(29)190.95 E 0 Cg EP %%Page: 30 30 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .15 -(for input, a redirection error occurs.)108 84 R(If)5.15 E/F1 10 -/Times-Italic@0 SF(wor)2.99 E(d)-.37 E F0 -.25(eva)3.42 G .15(luates to) -.25 F/F2 10/Times-Bold@0 SF2.65 E F0 2.649<2c8c>C .149 -(le descriptor)-2.649 F F1(n)3.009 E F0 .149(is closed.)2.889 F(If)5.149 -E F1(n)3.009 E F0 .149(is not speci\214ed,)2.889 F -(the standard input \(\214le descriptor 0\) is used.)108 96 Q -(The operator)108 112.8 Q([)144 129.6 Q F1(n)A F0(])A F2(>&)A F1(wor)A -(d)-.37 E F0 .443 -(is used similarly to duplicate output \214le descriptors.)108 146.4 R +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(The)108 84 Q/F1 10 +/Times-Italic@0 SF(wor)3.291 E(d)-.37 E F0(under)3.291 E .792 +(goes tilde e)-.18 F .792(xpansion, parameter and v)-.15 F .792 +(ariable e)-.25 F .792(xpansion, command substitution, arithmetic)-.15 F +-.15(ex)108 96 S 1.188(pansion, and quote remo).15 F -.25(va)-.15 G +3.687(l. P).25 F 1.187(athname e)-.15 F 1.187(xpansion and w)-.15 F +1.187(ord splitting are not performed.)-.1 F 1.187(The result is)6.187 F +.374(supplied as a single string, with a ne)108 108 R .375(wline append\ +ed, to the command on its standard input \(or \214le descrip-)-.25 F +(tor)108 120 Q F1(n)2.5 E F0(if)2.5 E F1(n)2.5 E F0(is speci\214ed\).) +2.5 E/F2 10/Times-Bold@0 SF(Duplicating File Descriptors)87 136.8 Q F0 +(The redirection operator)108 148.8 Q([)144 165.6 Q F1(n)A F0(])A F2(<&) +A F1(wor)A(d)-.37 E F0 .127 +(is used to duplicate input \214le descriptors.)108 182.4 R(If)5.127 E +F1(wor)2.967 E(d)-.37 E F0 -.15(ex)3.397 G .126 +(pands to one or more digits, the \214le descriptor denoted).15 F(by)108 +194.4 Q F1(n)3.317 E F0 .457(is made to be a cop)3.197 F 2.957(yo)-.1 G +2.957(ft)-2.957 G .457(hat \214le descriptor)-2.957 F 5.457(.I)-.55 G +2.957(ft)-5.457 G .457(he digits in)-2.957 F F1(wor)3.298 E(d)-.37 E F0 +.458(do not specify a \214le descriptor open)3.728 F .15 +(for input, a redirection error occurs.)108 206.4 R(If)5.15 E F1(wor) +2.99 E(d)-.37 E F0 -.25(eva)3.42 G .15(luates to).25 F F22.65 E F0 +2.649<2c8c>C .149(le descriptor)-2.649 F F1(n)3.009 E F0 .149 +(is closed.)2.889 F(If)5.149 E F1(n)3.009 E F0 .149(is not speci\214ed,) +2.889 F(the standard input \(\214le descriptor 0\) is used.)108 218.4 Q +(The operator)108 235.2 Q([)144 252 Q F1(n)A F0(])A F2(>&)A F1(wor)A(d) +-.37 E F0 .443 +(is used similarly to duplicate output \214le descriptors.)108 268.8 R (If)5.443 E F1(n)3.304 E F0 .444 (is not speci\214ed, the standard output \(\214le descrip-)3.184 F .566 -(tor 1\) is used.)108 158.4 R .566(If the digits in)5.566 F F1(wor)3.406 +(tor 1\) is used.)108 280.8 R .566(If the digits in)5.566 F F1(wor)3.406 E(d)-.37 E F0 .566(do not specify a \214le descriptor open for output, \ -a redirection error oc-)3.836 F 3.203(curs. If)108 170.4 R F1(wor)3.543 +a redirection error oc-)3.836 F 3.203(curs. If)108 292.8 R F1(wor)3.543 E(d)-.37 E F0 -.25(eva)3.973 G .703(luates to).25 F F23.203 E F0 3.203<2c8c>C .703(le descriptor)-3.203 F F1(n)3.563 E F0 .703 (is closed.)3.443 F .703(As a special case, if)5.703 F F1(n)3.204 E F0 .704(is omitted, and)3.204 F F1(wor)3.204 E(d)-.37 E F0(does)3.204 E -.966(not e)108 182.4 R .966(xpand to one or more digits or)-.15 F F2 +.966(not e)108 304.8 R .966(xpand to one or more digits or)-.15 F F2 3.466 E F0 3.466(,t)C .965 (he standard output and standard error are redirected as described) --3.466 F(pre)108 194.4 Q(viously)-.25 E(.)-.65 E F2(Mo)87 211.2 Q -(ving File Descriptors)-.1 E F0(The redirection operator)108 223.2 Q([) -144 240 Q F1(n)A F0(])A F2(<&)A F1(digit)A F2A F0(mo)108 256.8 Q +-3.466 F(pre)108 316.8 Q(viously)-.25 E(.)-.65 E F2(Mo)87 333.6 Q +(ving File Descriptors)-.1 E F0(The redirection operator)108 345.6 Q([) +144 362.4 Q F1(n)A F0(])A F2(<&)A F1(digit)A F2A F0(mo)108 379.2 Q -.15(ve)-.15 G 3.017(st).15 G .517(he \214le descriptor)-3.017 F F1 (digit)3.017 E F0 .517(to \214le descriptor)3.017 F F1(n)3.377 E F0 3.017(,o).24 G 3.017(rt)-3.017 G .518 (he standard input \(\214le descriptor 0\) if)-3.017 F F1(n)3.018 E F0 -.518(is not speci-)3.018 F(\214ed.)108 268.8 Q F1(digit)5 E F0 +.518(is not speci-)3.018 F(\214ed.)108 391.2 Q F1(digit)5 E F0 (is closed after being duplicated to)2.5 E F1(n)2.5 E F0(.)A(Similarly) -108 285.6 Q 2.5(,t)-.65 G(he redirection operator)-2.5 E([)144 302.4 Q -F1(n)A F0(])A F2(>&)A F1(digit)A F2A F0(mo)108 319.2 Q -.15(ve)-.15 -G 2.768(st).15 G .268(he \214le descriptor)-2.768 F F1(digit)2.768 E F0 +108 408 Q 2.5(,t)-.65 G(he redirection operator)-2.5 E([)144 424.8 Q F1 +(n)A F0(])A F2(>&)A F1(digit)A F2A F0(mo)108 441.6 Q -.15(ve)-.15 G +2.768(st).15 G .268(he \214le descriptor)-2.768 F F1(digit)2.768 E F0 .268(to \214le descriptor)2.768 F F1(n)3.128 E F0 2.768(,o).24 G 2.768 (rt)-2.768 G .267(he standard output \(\214le descriptor 1\) if)-2.768 F -F1(n)2.767 E F0 .267(is not speci-)2.767 F(\214ed.)108 331.2 Q F2 -(Opening File Descriptors f)87 348 Q(or Reading and Writing)-.25 E F0 -(The redirection operator)108 360 Q([)144 376.8 Q F1(n)A F0(])A F2(<>)A -F1(wor)A(d)-.37 E F0 .518(causes the \214le whose name is the e)108 -393.6 R .518(xpansion of)-.15 F F1(wor)3.358 E(d)-.37 E F0 .518 +F1(n)2.767 E F0 .267(is not speci-)2.767 F(\214ed.)108 453.6 Q F2 +(Opening File Descriptors f)87 470.4 Q(or Reading and Writing)-.25 E F0 +(The redirection operator)108 482.4 Q([)144 499.2 Q F1(n)A F0(])A F2(<>) +A F1(wor)A(d)-.37 E F0 .518(causes the \214le whose name is the e)108 +516 R .518(xpansion of)-.15 F F1(wor)3.358 E(d)-.37 E F0 .518 (to be opened for both reading and writing on \214le de-)3.788 F -(scriptor)108 405.6 Q F1(n)2.86 E F0 2.5(,o).24 G 2.5(ro)-2.5 G 2.5 -<6e8c>-2.5 G(le descriptor 0 if)-2.5 E F1(n)2.86 E F0 -(is not speci\214ed.)2.74 E(If the \214le does not e)5 E -(xist, it is created.)-.15 E/F3 10.95/Times-Bold@0 SF(ALIASES)72 422.4 Q -F1(Aliases)108 434.4 Q F0(allo)3.174 E 3.174(was)-.25 G .674 -(tring to be substituted for a w)-3.174 F .674 +(scriptor)108 528 Q F1(n)2.86 E F0 2.5(,o).24 G 2.5(ro)-2.5 G 2.5<6e8c> +-2.5 G(le descriptor 0 if)-2.5 E F1(n)2.86 E F0(is not speci\214ed.)2.74 +E(If the \214le does not e)5 E(xist, it is created.)-.15 E/F3 10.95 +/Times-Bold@0 SF(ALIASES)72 544.8 Q F1(Aliases)108 556.8 Q F0(allo)3.174 +E 3.174(was)-.25 G .674(tring to be substituted for a w)-3.174 F .674 (ord when it is used as the \214rst w)-.1 F .673 (ord of a simple command.)-.1 F .394(The shell maintains a list of alia\ -ses that may be set and unset with the)108 446.4 R F2(alias)2.894 E F0 +ses that may be set and unset with the)108 568.8 R F2(alias)2.894 E F0 (and)2.894 E F2(unalias)2.894 E F0 -.2(bu)2.894 G .394(iltin commands).2 -F(\(see)108 458.4 Q/F4 9/Times-Bold@0 SF 1.98(SHELL B)4.48 F(UIL)-.09 E +F(\(see)108 580.8 Q/F4 9/Times-Bold@0 SF 1.98(SHELL B)4.48 F(UIL)-.09 E 1.98(TIN COMMANDS)-.828 F F0(belo)4.23 E 4.48(w\). The)-.25 F 1.98 (\214rst w)4.48 F 1.979(ord of each simple command, if unquoted, is)-.1 -F(check)108 470.4 Q .472(ed to see if it has an alias.)-.1 F .472 +F(check)108 592.8 Q .472(ed to see if it has an alias.)-.1 F .472 (If so, that w)5.472 F .473(ord is replaced by the te)-.1 F .473 (xt of the alias.)-.15 F .473(The characters)5.473 F F2(/)2.973 E F0(,)A -F2($)2.973 E F0(,)A F2<92>2.973 E F0(,)A(and)108 482.4 Q F2(=)3.612 E F0 +F2($)2.973 E F0(,)A F2<92>2.973 E F0(,)A(and)108 604.8 Q F2(=)3.612 E F0 1.112(and an)3.612 F 3.612(yo)-.15 G 3.612(ft)-3.612 G 1.112(he shell) -3.612 F F1(metac)3.612 E(har)-.15 E(acter)-.15 E(s)-.1 E F0 1.112 (or quoting characters listed abo)3.612 F 1.411 -.15(ve m)-.15 H 1.111 -(ay not appear in an alias).15 F 3.619(name. The)108 494.4 R 1.119 +(ay not appear in an alias).15 F 3.619(name. The)108 616.8 R 1.119 (replacement te)3.619 F 1.119(xt may contain an)-.15 F 3.619(yv)-.15 G 1.119(alid shell input, including shell metacharacters.)-3.869 F 1.12 -(The \214rst)6.12 F -.1(wo)108 506.4 S .514(rd of the replacement te).1 +(The \214rst)6.12 F -.1(wo)108 628.8 S .514(rd of the replacement te).1 F .514(xt is tested for aliases, b)-.15 F .514(ut a w)-.2 F .513 (ord that is identical to an alias being e)-.1 F .513(xpanded is)-.15 F -.295(not e)108 518.4 R .295(xpanded a second time.)-.15 F .296 +.295(not e)108 640.8 R .295(xpanded a second time.)-.15 F .296 (This means that one may alias)5.295 F F2(ls)2.796 E F0(to)2.796 E F2 .296(ls \255F)2.796 F F0 2.796(,f)C .296(or instance, and)-2.796 F F2 -(bash)2.796 E F0 .296(does not try)2.796 F .529(to recursi)108 530.4 R +(bash)2.796 E F0 .296(does not try)2.796 F .529(to recursi)108 652.8 R -.15(ve)-.25 G .529(ly e).15 F .529(xpand the replacement te)-.15 F 3.029(xt. If)-.15 F .528(the last character of the alias v)3.029 F .528 (alue is a)-.25 F F1(blank)3.298 E F0 3.028(,t).67 G .528(hen the ne) --3.028 F(xt)-.15 E(command w)108 542.4 Q(ord follo)-.1 E +-3.028 F(xt)-.15 E(command w)108 664.8 Q(ord follo)-.1 E (wing the alias is also check)-.25 E(ed for alias e)-.1 E(xpansion.)-.15 -E(Aliases are created and listed with the)108 559.2 Q F2(alias)2.5 E F0 +E(Aliases are created and listed with the)108 681.6 Q F2(alias)2.5 E F0 (command, and remo)2.5 E -.15(ve)-.15 G 2.5(dw).15 G(ith the)-2.5 E F2 (unalias)2.5 E F0(command.)2.5 E .284 -(There is no mechanism for using ar)108 576 R .284 +(There is no mechanism for using ar)108 698.4 R .284 (guments in the replacement te)-.18 F 2.784(xt. If)-.15 F(ar)2.784 E .284(guments are needed, a shell func-)-.18 F(tion should be used \(see) -108 588 Q F4(FUNCTIONS)2.5 E F0(belo)2.25 E(w\).)-.25 E .283 -(Aliases are not e)108 604.8 R .283 -(xpanded when the shell is not interacti)-.15 F -.15(ve)-.25 G 2.782(,u) -.15 G .282(nless the)-2.782 F F2(expand_aliases)2.782 E F0 .282 -(shell option is set us-)2.782 F(ing)108 616.8 Q F2(shopt)2.5 E F0 -(\(see the description of)2.5 E F2(shopt)2.5 E F0(under)2.5 E F4 -(SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 -E .435 +108 710.4 Q F4(FUNCTIONS)2.5 E F0(belo)2.25 E(w\).)-.25 E 1.22 +(Aliases are not e)108 727.2 R 1.22 +(xpanded when the shell is not interacti)-.15 F -.15(ve)-.25 G 3.72(,u) +.15 G 1.22(nless the)-3.72 F F2(expand_aliases)3.72 E F0 1.22 +(shell option is set)3.72 F(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 +E(30)190.95 E 0 Cg EP +%%Page: 31 31 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(using)108 84 Q/F1 +10/Times-Bold@0 SF(shopt)2.5 E F0(\(see the description of)2.5 E F1 +(shopt)2.5 E F0(under)2.5 E/F2 9/Times-Bold@0 SF(SHELL B)2.5 E(UIL)-.09 +E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E .435 (The rules concerning the de\214nition and use of aliases are some)108 -633.6 R .436(what confusing.)-.25 F F2(Bash)5.436 E F0(al)2.936 E -.1 +100.8 R .436(what confusing.)-.25 F F1(Bash)5.436 E F0(al)2.936 E -.1 (wa)-.1 G .436(ys reads at least).1 F .67 -(one complete line of input, and all lines that mak)108 645.6 R 3.17(eu) +(one complete line of input, and all lines that mak)108 112.8 R 3.17(eu) -.1 G 3.17(pac)-3.17 G .67(ompound command, before e)-3.17 F -.15(xe) -.15 G .67(cuting an).15 F 3.17(yo)-.15 G 3.17(ft)-3.17 G(he)-3.17 E -1.058(commands on that line or the compound command.)108 657.6 R 1.059 +1.058(commands on that line or the compound command.)108 124.8 R 1.059 (Aliases are e)6.059 F 1.059(xpanded when a command is read, not)-.15 F -.075(when it is e)108 669.6 R -.15(xe)-.15 G 2.575(cuted. Therefore,).15 +.075(when it is e)108 136.8 R -.15(xe)-.15 G 2.575(cuted. Therefore,).15 F .075(an alias de\214nition appearing on the same line as another comm\ -and does not)2.575 F(tak)108 681.6 Q 2.837(ee)-.1 G -.25(ff)-2.837 G +and does not)2.575 F(tak)108 148.8 Q 2.837(ee)-.1 G -.25(ff)-2.837 G .337(ect until the ne).25 F .337(xt line of input is read.)-.15 F .337 (The commands follo)5.337 F .338 (wing the alias de\214nition on that line are)-.25 F .552(not af)108 -693.6 R .551(fected by the ne)-.25 F 3.051(wa)-.25 G 3.051(lias. This) +160.8 R .551(fected by the ne)-.25 F 3.051(wa)-.25 G 3.051(lias. This) -3.051 F(beha)3.051 E .551(vior is also an issue when functions are e) -.2 F -.15(xe)-.15 G 3.051(cuted. Aliases).15 F .551(are e)3.051 F(x-) -.15 E .425(panded when a function de\214nition is read, not when the f\ -unction is e)108 705.6 R -.15(xe)-.15 G .426 +unction is e)108 172.8 R -.15(xe)-.15 G .426 (cuted, because a function de\214nition).15 F .404(is itself a command.) -108 717.6 R .403 +108 184.8 R .403 (As a consequence, aliases de\214ned in a function are not a)5.404 F --.25(va)-.2 G .403(ilable until after that func-).25 F 2.12(tion is e) -108 729.6 R -.15(xe)-.15 G 4.62(cuted. T).15 F 4.62(ob)-.8 G 4.62(es) --4.62 G 2.12(afe, al)-4.62 F -.1(wa)-.1 G 2.121 -(ys put alias de\214nitions on a separate line, and do not use).1 F F2 -(alias)4.621 E F0(in)4.621 E(GNU Bash 5.0)72 768 Q(2019 No)136.385 E --.15(ve)-.15 G(mber 26).15 E(30)185.545 E 0 Cg EP -%%Page: 31 31 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -(compound commands.)108 84 Q -.15(Fo)108 100.8 S 2.5(ra).15 G(lmost e) --2.5 E -.15(ve)-.25 G -(ry purpose, aliases are superseded by shell functions.).15 E/F1 10.95 -/Times-Bold@0 SF(FUNCTIONS)72 117.6 Q F0 3.468(As)108 129.6 S .968 +-.25(va)-.2 G .403(ilable until after that func-).25 F .862(tion is e) +108 196.8 R -.15(xe)-.15 G 3.362(cuted. T).15 F 3.362(ob)-.8 G 3.362(es) +-3.362 G .862(afe, al)-3.362 F -.1(wa)-.1 G .862 +(ys put alias de\214nitions on a separate line, and do not use).1 F F1 +(alias)3.362 E F0 .862(in com-)3.362 F(pound commands.)108 208.8 Q -.15 +(Fo)108 225.6 S 2.5(ra).15 G(lmost e)-2.5 E -.15(ve)-.25 G +(ry purpose, aliases are superseded by shell functions.).15 E/F3 10.95 +/Times-Bold@0 SF(FUNCTIONS)72 242.4 Q F0 3.468(As)108 254.4 S .968 (hell function, de\214ned as described abo)-3.468 F 1.267 -.15(ve u)-.15 -H(nder).15 E/F2 9/Times-Bold@0 SF .967(SHELL GRAMMAR)3.467 F/F3 9 -/Times-Roman@0 SF(,)A F0 .967(stores a series of commands for)3.217 F -1.001(later e)108 141.6 R -.15(xe)-.15 G 3.501(cution. When).15 F 1.002 -(the name of a shell function is used as a simple command name, the lis\ -t of com-)3.501 F .316(mands associated with that function name is e)108 -153.6 R -.15(xe)-.15 G 2.816(cuted. Functions).15 F .316(are e)2.816 F --.15(xe)-.15 G .315(cuted in the conte).15 F .315(xt of the current)-.15 -F .035(shell; no ne)108 165.6 R 2.535(wp)-.25 G .036 +H(nder).15 E F2 .967(SHELL GRAMMAR)3.467 F/F4 9/Times-Roman@0 SF(,)A F0 +.967(stores a series of commands for)3.217 F 1.001(later e)108 266.4 R +-.15(xe)-.15 G 3.501(cution. When).15 F 1.002(the name of a shell funct\ +ion is used as a simple command name, the list of com-)3.501 F .316 +(mands associated with that function name is e)108 278.4 R -.15(xe)-.15 +G 2.816(cuted. Functions).15 F .316(are e)2.816 F -.15(xe)-.15 G .315 +(cuted in the conte).15 F .315(xt of the current)-.15 F .035 +(shell; no ne)108 290.4 R 2.535(wp)-.25 G .036 (rocess is created to interpret them \(contrast this with the e)-2.535 F -.15(xe)-.15 G .036(cution of a shell script\).).15 F .036(When a)5.036 -F .64(function is e)108 177.6 R -.15(xe)-.15 G .64(cuted, the ar).15 F +F .64(function is e)108 302.4 R -.15(xe)-.15 G .64(cuted, the ar).15 F .639 (guments to the function become the positional parameters during its e) --.18 F -.15(xe)-.15 G(cution.).15 E .532(The special parameter)108 189.6 -R/F4 10/Times-Bold@0 SF(#)3.032 E F0 .532 -(is updated to re\215ect the change.)3.032 F .532(Special parameter) -5.532 F F4(0)3.033 E F0 .533(is unchanged.)3.033 F .533 -(The \214rst ele-)5.533 F(ment of the)108 201.6 Q F2(FUNCN)2.5 E(AME) --.18 E F0 -.25(va)2.25 G +-.18 F -.15(xe)-.15 G(cution.).15 E .532(The special parameter)108 314.4 +R F1(#)3.032 E F0 .532(is updated to re\215ect the change.)3.032 F .532 +(Special parameter)5.532 F F1(0)3.033 E F0 .533(is unchanged.)3.033 F +.533(The \214rst ele-)5.533 F(ment of the)108 326.4 Q F2(FUNCN)2.5 E +(AME)-.18 E F0 -.25(va)2.25 G (riable is set to the name of the function while the function is e).25 E -.15(xe)-.15 G(cuting.).15 E 1.25(All other aspects of the shell e)108 -218.4 R -.15(xe)-.15 G 1.25(cution en).15 F 1.25 +343.2 R -.15(xe)-.15 G 1.25(cution en).15 F 1.25 (vironment are identical between a function and its caller with)-.4 F -1.214(these e)108 230.4 R 1.214(xceptions: the)-.15 F F2(DEB)3.714 E(UG) --.09 E F0(and)3.464 E F4(RETURN)3.715 E F0 1.215 -(traps \(see the description of the)3.715 F F4(trap)3.715 E F0 -.2(bu) -3.715 G 1.215(iltin under).2 F F2(SHELL)3.715 E -.09(BU)108 242.4 S(IL) +1.214(these e)108 355.2 R 1.214(xceptions: the)-.15 F F2(DEB)3.714 E(UG) +-.09 E F0(and)3.464 E F1(RETURN)3.715 E F0 1.215 +(traps \(see the description of the)3.715 F F1(trap)3.715 E F0 -.2(bu) +3.715 G 1.215(iltin under).2 F F2(SHELL)3.715 E -.09(BU)108 367.2 S(IL) .09 E .479(TIN COMMANDS)-.828 F F0(belo)2.729 E .479 (w\) are not inherited unless the function has been gi)-.25 F -.15(ve) --.25 G 2.978(nt).15 G(he)-2.978 E F4(trace)2.978 E F0(attrib)2.978 E -.478(ute \(see)-.2 F .42(the description of the)108 254.4 R F2(declar) +-.25 G 2.978(nt).15 G(he)-2.978 E F1(trace)2.978 E F0(attrib)2.978 E +.478(ute \(see)-.2 F .42(the description of the)108 379.2 R F2(declar) 2.92 E(e)-.162 E F0 -.2(bu)2.67 G .42(iltin belo).2 F .42(w\) or the) --.25 F F4 .42(\255o functrace)2.92 F F0 .42 -(shell option has been enabled with the)2.92 F F4(set)2.921 E F0 -.2(bu) -108 266.4 S .072(iltin \(in which case all functions inherit the).2 F F4 -(DEB)2.572 E(UG)-.1 E F0(and)2.572 E F4(RETURN)2.572 E F0 .072 +-.25 F F1 .42(\255o functrace)2.92 F F0 .42 +(shell option has been enabled with the)2.92 F F1(set)2.921 E F0 -.2(bu) +108 391.2 S .072(iltin \(in which case all functions inherit the).2 F F1 +(DEB)2.572 E(UG)-.1 E F0(and)2.572 E F1(RETURN)2.572 E F0 .072 (traps\), and the)2.572 F F2(ERR)2.571 E F0 .071(trap is not inher)2.321 -F(-)-.2 E(ited unless the)108 278.4 Q F4(\255o errtrace)2.5 E F0 -(shell option has been enabled.)2.5 E -1.11(Va)108 295.2 S .655 -(riables local to the function may be declared with the)1.11 F F4(local) +F(-)-.2 E(ited unless the)108 403.2 Q F1(\255o errtrace)2.5 E F0 +(shell option has been enabled.)2.5 E -1.11(Va)108 420 S .655 +(riables local to the function may be declared with the)1.11 F F1(local) 3.155 E F0 -.2(bu)3.156 G .656(iltin command.).2 F(Ordinarily)5.656 E -3.156(,v)-.65 G .656(ariables and)-3.406 F .051(their v)108 307.2 R .051 +3.156(,v)-.65 G .656(ariables and)-3.406 F .051(their v)108 432 R .051 (alues are shared between the function and its caller)-.25 F 5.051(.I) --.55 G 2.55(fav)-5.051 G .05(ariable is declared)-2.8 F F4(local)2.55 E +-.55 G 2.55(fav)-5.051 G .05(ariable is declared)-2.8 F F1(local)2.55 E F0 2.55(,t)C .05(he v)-2.55 F(ariable')-.25 E 2.55(sv)-.55 G(isi-)-2.55 E 1.186(ble scope is restricted to that function and its children \(inc\ -luding the functions it calls\).)108 319.2 R 1.186(Local v)6.186 F -(ariables)-.25 E("shado)108 331.2 Q .155(w" v)-.25 F .155 +luding the functions it calls\).)108 444 R 1.186(Local v)6.186 F +(ariables)-.25 E("shado)108 456 Q .155(w" v)-.25 F .155 (ariables with the same name declared at pre)-.25 F .155(vious scopes.) -.25 F -.15(Fo)5.155 G 2.654(ri).15 G .154(nstance, a local v)-2.654 F -.154(ariable declared)-.25 F .669(in a function hides a global v)108 -343.2 R .67(ariable of the same name: references and assignments refer \ -to the local v)-.25 F(ari-)-.25 E .688(able, lea)108 355.2 R .688 +.154(ariable declared)-.25 F .669(in a function hides a global v)108 468 +R .67(ariable of the same name: references and assignments refer to the\ + local v)-.25 F(ari-)-.25 E .688(able, lea)108 480 R .688 (ving the global v)-.2 F .688(ariable unmodi\214ed.)-.25 F .688 (When the function returns, the global v)5.688 F .688 -(ariable is once ag)-.25 F(ain)-.05 E(visible.)108 367.2 Q .726 -(The shell uses)108 384 R/F5 10/Times-Italic@0 SF .726(dynamic scoping) -3.226 F F0 .726(to control a v)3.226 F(ariable')-.25 E 3.227(sv)-.55 G -.727(isibility within functions.)-3.227 F -.4(Wi)5.727 G .727 -(th dynamic scoping,).4 F .008(visible v)108 396 R .008 +(ariable is once ag)-.25 F(ain)-.05 E(visible.)108 492 Q .726 +(The shell uses)108 508.8 R/F5 10/Times-Italic@0 SF .726 +(dynamic scoping)3.226 F F0 .726(to control a v)3.226 F(ariable')-.25 E +3.227(sv)-.55 G .727(isibility within functions.)-3.227 F -.4(Wi)5.727 G +.727(th dynamic scoping,).4 F .008(visible v)108 520.8 R .008 (ariables and their v)-.25 F .007 (alues are a result of the sequence of function calls that caused e)-.25 F -.15(xe)-.15 G .007(cution to reach).15 F .813(the current function.) -108 408 R .813(The v)5.813 F .813(alue of a v)-.25 F .813 +108 532.8 R .813(The v)5.813 F .813(alue of a v)-.25 F .813 (ariable that a function sees depends on its v)-.25 F .814 -(alue within its caller)-.25 F 3.314(,i)-.4 G(f)-3.314 E(an)108 420 Q +(alue within its caller)-.25 F 3.314(,i)-.4 G(f)-3.314 E(an)108 544.8 Q 2.117 -.65(y, w)-.15 H .817 (hether that caller is the "global" scope or another shell function.).65 F .816(This is also the v)5.816 F .816(alue that a local)-.25 F -.25(va) -108 432 S(riable declaration "shado).25 E(ws", and the v)-.25 E +108 556.8 S(riable declaration "shado).25 E(ws", and the v)-.25 E (alue that is restored when the function returns.)-.25 E -.15(Fo)108 -448.8 S 2.723(re).15 G .223(xample, if a v)-2.873 F(ariable)-.25 E F5 +573.6 S 2.723(re).15 G .223(xample, if a v)-2.873 F(ariable)-.25 E F5 (var)2.723 E F0 .223(is declared as local in function)2.723 F F5(func1) 2.723 E F0 2.724(,a)C(nd)-2.724 E F5(func1)2.724 E F0 .224 (calls another function)2.724 F F5(func2)2.724 E F0(,)A .464 -(references to)108 460.8 R F5(var)2.964 E F0 .464(made from within)2.964 +(references to)108 585.6 R F5(var)2.964 E F0 .464(made from within)2.964 F F5(func2)2.964 E F0 .464(will resolv)2.964 F 2.964(et)-.15 G 2.963(ot) -2.964 G .463(he local v)-2.963 F(ariable)-.25 E F5(var)2.963 E F0(from) 2.963 E F5(func1)2.963 E F0 2.963(,s)C(hado)-2.963 E .463(wing an)-.25 F -(y)-.15 E(global v)108 472.8 Q(ariable named)-.25 E F5(var)2.5 E F0(.)A -(The)108 489.6 Q F4(unset)2.982 E F0 -.2(bu)2.982 G .482 +(y)-.15 E(global v)108 597.6 Q(ariable named)-.25 E F5(var)2.5 E F0(.)A +(The)108 614.4 Q F1(unset)2.982 E F0 -.2(bu)2.982 G .482 (iltin also acts using the same dynamic scope: if a v).2 F .483 -(ariable is local to the current scope,)-.25 F F4(unset)2.983 E F0 .19 -(will unset it; otherwise the unset will refer to the v)108 501.6 R .19 +(ariable is local to the current scope,)-.25 F F1(unset)2.983 E F0 .19 +(will unset it; otherwise the unset will refer to the v)108 626.4 R .19 (ariable found in an)-.25 F 2.69(yc)-.15 G .19 (alling scope as described abo)-2.69 F -.15(ve)-.15 G 5.19(.I).15 G(f) --5.19 E 2.72(av)108 513.6 S .221(ariable at the current local scope is \ +-5.19 E 2.72(av)108 638.4 S .221(ariable at the current local scope is \ unset, it will remain so until it is reset in that scope or until the f\ -unc-)-2.97 F .014(tion returns.)108 525.6 R .014 +unc-)-2.97 F .014(tion returns.)108 650.4 R .014 (Once the function returns, an)5.014 F 2.514(yi)-.15 G .014 (nstance of the v)-2.514 F .013(ariable at a pre)-.25 F .013 (vious scope will become visible.)-.25 F .566(If the unset acts on a v) -108 537.6 R .566(ariable at a pre)-.25 F .566(vious scope, an)-.25 F +108 662.4 R .566(ariable at a pre)-.25 F .566(vious scope, an)-.25 F 3.066(yi)-.15 G .566(nstance of a v)-3.066 F .567 -(ariable with that name that had been)-.25 F(shado)108 549.6 Q -(wed will become visible.)-.25 E(The)108 566.4 Q F4(FUNCNEST)3.529 E F0 +(ariable with that name that had been)-.25 F(shado)108 674.4 Q +(wed will become visible.)-.25 E(The)108 691.2 Q F1(FUNCNEST)3.529 E F0 -.25(va)3.529 G 1.028(riable, if set to a numeric v).25 F 1.028 (alue greater than 0, de\214nes a maximum function nesting)-.25 F(le)108 -578.4 Q -.15(ve)-.25 G 2.5(l. Function).15 F(in)2.5 E -.2(vo)-.4 G +703.2 Q -.15(ve)-.25 G 2.5(l. Function).15 F(in)2.5 E -.2(vo)-.4 G (cations that e).2 E(xceed the limit cause the entire command to abort.) --.15 E .043(If the b)108 595.2 R .043(uiltin command)-.2 F F4 -.18(re) +-.15 E .043(If the b)108 720 R .043(uiltin command)-.2 F F1 -.18(re) 2.543 G(tur).18 E(n)-.15 E F0 .043(is e)2.543 F -.15(xe)-.15 G .043 (cuted in a function, the function completes and e).15 F -.15(xe)-.15 G -.044(cution resumes with).15 F 1.012(the ne)108 607.2 R 1.012 -(xt command after the function call.)-.15 F(An)6.011 E 3.511(yc)-.15 G -1.011(ommand associated with the)-3.511 F F4(RETURN)3.511 E F0 1.011 -(trap is e)3.511 F -.15(xe)-.15 G(cuted).15 E .213(before e)108 619.2 R --.15(xe)-.15 G .213(cution resumes.).15 F .213 +.044(cution resumes with).15 F(GNU Bash 5.0)72 768 Q(2020 January 29) +141.79 E(31)190.95 E 0 Cg EP +%%Page: 32 32 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.012(the ne)108 +84 R 1.012(xt command after the function call.)-.15 F(An)6.011 E 3.511 +(yc)-.15 G 1.011(ommand associated with the)-3.511 F/F1 10/Times-Bold@0 +SF(RETURN)3.511 E F0 1.011(trap is e)3.511 F -.15(xe)-.15 G(cuted).15 E +.213(before e)108 96 R -.15(xe)-.15 G .213(cution resumes.).15 F .213 (When a function completes, the v)5.213 F .214 (alues of the positional parameters and the spe-)-.25 F(cial parameter) -108 631.2 Q F4(#)2.5 E F0(are restored to the v)2.5 E(alues the)-.25 E -2.5(yh)-.15 G(ad prior to the function')-2.5 E 2.5(se)-.55 G -.15(xe) --2.65 G(cution.).15 E 1.359 -(Function names and de\214nitions may be listed with the)108 648 R F4 -3.858 E F0 1.358(option to the)3.858 F F4(declar)3.858 E(e)-.18 E -F0(or)3.858 E F4(typeset)3.858 E F0 -.2(bu)3.858 G 1.358(iltin com-).2 F -3.39(mands. The)108 660 R F43.39 E F0 .89(option to)3.39 F F4 -(declar)3.39 E(e)-.18 E F0(or)3.39 E F4(typeset)3.39 E F0 .89 +108 108 Q F1(#)2.5 E F0(are restored to the v)2.5 E(alues the)-.25 E 2.5 +(yh)-.15 G(ad prior to the function')-2.5 E 2.5(se)-.55 G -.15(xe)-2.65 +G(cution.).15 E 1.359 +(Function names and de\214nitions may be listed with the)108 124.8 R F1 +3.858 E F0 1.358(option to the)3.858 F F1(declar)3.858 E(e)-.18 E +F0(or)3.858 E F1(typeset)3.858 E F0 -.2(bu)3.858 G 1.358(iltin com-).2 F +3.39(mands. The)108 136.8 R F13.39 E F0 .89(option to)3.39 F F1 +(declar)3.39 E(e)-.18 E F0(or)3.39 E F1(typeset)3.39 E F0 .89 (will list the function names only \(and optionally the source)3.39 F -.327(\214le and line number)108 672 R 2.827(,i)-.4 G 2.827(ft)-2.827 G -(he)-2.827 E F4(extdeb)2.827 E(ug)-.2 E F0 .326 +.327(\214le and line number)108 148.8 R 2.827(,i)-.4 G 2.827(ft)-2.827 G +(he)-2.827 E F1(extdeb)2.827 E(ug)-.2 E F0 .326 (shell option is enabled\).)2.827 F .326(Functions may be e)5.326 F .326 -(xported so that subshells)-.15 F 1.297(automatically ha)108 684 R 1.597 --.15(ve t)-.2 H 1.297(hem de\214ned with the).15 F F43.797 E F0 -1.297(option to the)3.797 F F4(export)3.798 E F0 -.2(bu)3.798 G 3.798 +(xported so that subshells)-.15 F 1.297(automatically ha)108 160.8 R +1.597 -.15(ve t)-.2 H 1.297(hem de\214ned with the).15 F F13.797 E +F0 1.297(option to the)3.797 F F1(export)3.798 E F0 -.2(bu)3.798 G 3.798 (iltin. A).2 F 1.298(function de\214nition may be)3.798 F -(deleted using the)108 696 Q F42.5 E F0(option to the)2.5 E F4 +(deleted using the)108 172.8 Q F12.5 E F0(option to the)2.5 E F1 (unset)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .372(Functions may be recursi) -108 712.8 R -.15(ve)-.25 G 5.371(.T).15 G(he)-5.371 E F4(FUNCNEST)2.871 +108 189.6 R -.15(ve)-.25 G 5.371(.T).15 G(he)-5.371 E F1(FUNCNEST)2.871 E F0 -.25(va)2.871 G .371 -(riable may be used to limit the depth of the function call).25 F 1.141 -(stack and restrict the number of function in)108 724.8 R -.2(vo)-.4 G -3.641(cations. By).2 F(def)3.641 E 1.141 -(ault, no limit is imposed on the number of)-.1 F(GNU Bash 5.0)72 768 Q -(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(31)185.545 E 0 Cg EP -%%Page: 32 32 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(recursi)108 84 Q -.3 -.15(ve c)-.25 H(alls.).15 E/F1 10.95/Times-Bold@0 SF(ARITHMETIC EV) -72 100.8 Q(ALU)-1.478 E -1.04(AT)-.657 G(ION)1.04 E F0 1.089 -(The shell allo)108 112.8 R 1.089(ws arithmetic e)-.25 F 1.089 +(riable may be used to limit the depth of the function call).25 F .322 +(stack and restrict the number of function in)108 201.6 R -.2(vo)-.4 G +2.822(cations. By).2 F(def)2.822 E .322 +(ault, no limit is imposed on the number of re-)-.1 F(cursi)108 213.6 Q +.3 -.15(ve c)-.25 H(alls.).15 E/F2 10.95/Times-Bold@0 SF(ARITHMETIC EV) +72 230.4 Q(ALU)-1.478 E -1.04(AT)-.657 G(ION)1.04 E F0 1.089 +(The shell allo)108 242.4 R 1.089(ws arithmetic e)-.25 F 1.089 (xpressions to be e)-.15 F -.25(va)-.25 G 1.089 -(luated, under certain circumstances \(see the).25 F/F2 10/Times-Bold@0 -SF(let)3.588 E F0(and)3.588 E F2(de-)3.588 E(clar)108 124.8 Q(e)-.18 E -F0 -.2(bu)3.452 G .952(iltin commands, the).2 F F2(\(\()3.452 E F0 .952 -(compound command, and)3.452 F F2 .952(Arithmetic Expansion)3.452 F F0 -3.453(\). Ev)B .953(aluation is done in)-.25 F<8c78>108 136.8 Q 1.058 +(luated, under certain circumstances \(see the).25 F F1(let)3.588 E F0 +(and)3.588 E F1(de-)3.588 E(clar)108 254.4 Q(e)-.18 E F0 -.2(bu)3.452 G +.952(iltin commands, the).2 F F1(\(\()3.452 E F0 .952 +(compound command, and)3.452 F F1 .952(Arithmetic Expansion)3.452 F F0 +3.453(\). Ev)B .953(aluation is done in)-.25 F<8c78>108 266.4 Q 1.058 (ed-width inte)-.15 F 1.057(gers with no check for o)-.15 F -.15(ve)-.15 G(r\215o).15 E 2.357 -.65(w, t)-.25 H 1.057(hough di).65 F 1.057 (vision by 0 is trapped and \215agged as an error)-.25 F(.)-.55 E .828 -(The operators and their precedence, associati)108 148.8 R(vity)-.25 E +(The operators and their precedence, associati)108 278.4 R(vity)-.25 E 3.329(,a)-.65 G .829(nd v)-3.329 F .829 (alues are the same as in the C language.)-.25 F .829(The fol-)5.829 F -(lo)108 160.8 Q .44(wing list of operators is grouped into le)-.25 F +(lo)108 290.4 Q .44(wing list of operators is grouped into le)-.25 F -.15(ve)-.25 G .439(ls of equal-precedence operators.).15 F .439(The le) 5.439 F -.15(ve)-.25 G .439(ls are listed in order).15 F -(of decreasing precedence.)108 172.8 Q/F3 10/Times-Italic@0 SF(id)108 -189.6 Q F2(++)A F3(id)2.5 E F2A F0 -.25(va)144 201.6 S -(riable post-increment and post-decrement).25 E F2 2.5108 213.6 S -F0(unary minus and plus)144 213.6 Q F2(++)108 225.6 Q F3(id)A F2 -2.5 E F3(id)A F0 -.25(va)144 237.6 S -(riable pre-increment and pre-decrement).25 E F2 2.5(!~)108 249.6 S F0 -(logical and bitwise ne)144 249.6 Q -.05(ga)-.15 G(tion).05 E F2(**)108 -261.6 Q F0 -.15(ex)144 261.6 S(ponentiation).15 E F2 2.5(*/%)108 273.6 S -F0(multiplication, di)144 273.6 Q(vision, remainder)-.25 E F2 2.5<2bad> -108 285.6 S F0(addition, subtraction)144 285.6 Q F2(<< >>)108 297.6 Q F0 -(left and right bitwise shifts)144 297.6 Q F2(<= >= < >)108 309.6 Q F0 -(comparison)144 321.6 Q F2(== !=)108 333.6 Q F0(equality and inequality) -144 333.6 Q F2(&)108 345.6 Q F0(bitwise AND)144 345.6 Q F2(^)108 357.6 Q -F0(bitwise e)144 357.6 Q(xclusi)-.15 E .3 -.15(ve O)-.25 H(R).15 E F2(|) -108 369.6 Q F0(bitwise OR)144 369.6 Q F2(&&)108 381.6 Q F0(logical AND) -144 381.6 Q F2(||)108 393.6 Q F0(logical OR)144 393.6 Q F3 -.2(ex)108 -405.6 S(pr).2 E F2(?)A F3 -.2(ex)C(pr).2 E F2(:)A F3 -.2(ex)C(pr).2 E F0 -(conditional operator)144 417.6 Q F2 2.5(=*)108 429.6 S 2.5(=/)-2.5 G +(of decreasing precedence.)108 302.4 Q/F3 10/Times-Italic@0 SF(id)108 +319.2 Q F1(++)A F3(id)2.5 E F1A F0 -.25(va)144 331.2 S +(riable post-increment and post-decrement).25 E F1 2.5108 343.2 S +F0(unary minus and plus)144 343.2 Q F1(++)108 355.2 Q F3(id)A F1 +2.5 E F3(id)A F0 -.25(va)144 367.2 S +(riable pre-increment and pre-decrement).25 E F1 2.5(!~)108 379.2 S F0 +(logical and bitwise ne)144 379.2 Q -.05(ga)-.15 G(tion).05 E F1(**)108 +391.2 Q F0 -.15(ex)144 391.2 S(ponentiation).15 E F1 2.5(*/%)108 403.2 S +F0(multiplication, di)144 403.2 Q(vision, remainder)-.25 E F1 2.5<2bad> +108 415.2 S F0(addition, subtraction)144 415.2 Q F1(<< >>)108 427.2 Q F0 +(left and right bitwise shifts)144 427.2 Q F1(<= >= < >)108 439.2 Q F0 +(comparison)144 451.2 Q F1(== !=)108 463.2 Q F0(equality and inequality) +144 463.2 Q F1(&)108 475.2 Q F0(bitwise AND)144 475.2 Q F1(^)108 487.2 Q +F0(bitwise e)144 487.2 Q(xclusi)-.15 E .3 -.15(ve O)-.25 H(R).15 E F1(|) +108 499.2 Q F0(bitwise OR)144 499.2 Q F1(&&)108 511.2 Q F0(logical AND) +144 511.2 Q F1(||)108 523.2 Q F0(logical OR)144 523.2 Q F3 -.2(ex)108 +535.2 S(pr).2 E F1(?)A F3 -.2(ex)C(pr).2 E F1(:)A F3 -.2(ex)C(pr).2 E F0 +(conditional operator)144 547.2 Q F1 2.5(=*)108 559.2 S 2.5(=/)-2.5 G 2.5(=%)-2.5 G 2.5(=+)-2.5 G 2.5<3dad>-2.5 G 2.5(=<)-2.5 G -(<= >>= &= ^= |=)-2.5 E F0(assignment)144 441.6 Q F3 -.2(ex)108 453.6 S -(pr1).2 E F2(,)2.5 E F3 -.2(ex)2.5 G(pr2).2 E F0(comma)144 465.6 Q .68 -(Shell v)108 482.4 R .68(ariables are allo)-.25 F .68 +(<= >>= &= ^= |=)-2.5 E F0(assignment)144 571.2 Q F3 -.2(ex)108 583.2 S +(pr1).2 E F1(,)2.5 E F3 -.2(ex)2.5 G(pr2).2 E F0(comma)144 595.2 Q .68 +(Shell v)108 612 R .68(ariables are allo)-.25 F .68 (wed as operands; parameter e)-.25 F .68 (xpansion is performed before the e)-.15 F .68(xpression is e)-.15 F --.25(va)-.25 G(lu-).25 E 3.508(ated. W)108 494.4 R 1.008(ithin an e)-.4 -F 1.008(xpression, shell v)-.15 F 1.007 +-.25(va)-.25 G(lu-).25 E 3.508(ated. W)108 624 R 1.008(ithin an e)-.4 F +1.008(xpression, shell v)-.15 F 1.007 (ariables may also be referenced by name without using the parameter) --.25 F -.15(ex)108 506.4 S .165(pansion syntax.).15 F 2.665(As)5.165 G +-.25 F -.15(ex)108 636 S .165(pansion syntax.).15 F 2.665(As)5.165 G .165(hell v)-2.665 F .165(ariable that is null or unset e)-.25 F -.25 (va)-.25 G .165(luates to 0 when referenced by name without us-).25 F -.421(ing the parameter e)108 518.4 R .421(xpansion syntax.)-.15 F .421 +.421(ing the parameter e)108 648 R .421(xpansion syntax.)-.15 F .421 (The v)5.421 F .421(alue of a v)-.25 F .421(ariable is e)-.25 F -.25(va) -.25 G .42(luated as an arithmetic e).25 F .42(xpression when)-.15 F -.153(it is referenced, or when a v)108 530.4 R .154 +.153(it is referenced, or when a v)108 660 R .154 (ariable which has been gi)-.25 F -.15(ve)-.25 G 2.654(nt).15 G(he) -2.654 E F3(inte)2.654 E -.1(ge)-.4 G(r).1 E F0(attrib)2.654 E .154 -(ute using)-.2 F F2(declar)2.654 E 2.654<65ad>-.18 G(i)-2.654 E F0 .154 -(is assigned a)2.654 F -.25(va)108 542.4 S 2.857(lue. A).25 F .357 -(null v)2.857 F .357(alue e)-.25 F -.25(va)-.25 G .357(luates to 0.).25 -F 2.857(As)5.357 G .357(hell v)-2.857 F .357(ariable need not ha)-.25 F -.657 -.15(ve i)-.2 H(ts).15 E F3(inte)2.857 E -.1(ge)-.4 G(r).1 E F0 -(attrib)2.857 E .357(ute turned on to be used)-.2 F(in an e)108 554.4 Q -(xpression.)-.15 E(Inte)108 571.2 Q .517(ger constants follo)-.15 F +(ute using)-.2 F F1(declar)2.654 E 2.654<65ad>-.18 G(i)-2.654 E F0 .154 +(is assigned a)2.654 F -.25(va)108 672 S 2.857(lue. A).25 F .357(null v) +2.857 F .357(alue e)-.25 F -.25(va)-.25 G .357(luates to 0.).25 F 2.857 +(As)5.357 G .357(hell v)-2.857 F .357(ariable need not ha)-.25 F .657 +-.15(ve i)-.2 H(ts).15 E F3(inte)2.857 E -.1(ge)-.4 G(r).1 E F0(attrib) +2.857 E .357(ute turned on to be used)-.2 F(in an e)108 684 Q +(xpression.)-.15 E(Inte)108 700.8 Q .517(ger constants follo)-.15 F 3.017(wt)-.25 G .518(he C language de\214nition, without suf)-3.017 F <8c78>-.25 E .518(es or character constants.)-.15 F .518(Constants with) -5.518 F 3.283(al)108 583.2 S .783 +5.518 F 3.283(al)108 712.8 S .783 (eading 0 are interpreted as octal numbers.)-3.283 F 3.282(Al)5.783 G .782(eading 0x or 0X denotes he)-3.282 F 3.282(xadecimal. Otherwise,) --.15 F(num-)3.282 E .815(bers tak)108 595.2 R 3.315(et)-.1 G .815 +-.15 F(num-)3.282 E .815(bers tak)108 724.8 R 3.315(et)-.1 G .815 (he form [)-3.315 F F3(base#)A F0 .815(]n, where the optional)B F3(base) 3.315 E F0 .816(is a decimal number between 2 and 64 representing)3.315 -F .35(the arithmetic base, and)108 607.2 R F3(n)2.85 E F0 .35 -(is a number in that base.)2.85 F(If)5.35 E F3(base#)2.849 E F0 .349 +F(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(32)190.95 E 0 Cg EP +%%Page: 33 33 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .35 +(the arithmetic base, and)108 84 R/F1 10/Times-Italic@0 SF(n)2.85 E F0 +.35(is a number in that base.)2.85 F(If)5.35 E F1(base#)2.849 E F0 .349 (is omitted, then base 10 is used.)2.849 F .349(When speci-)5.349 F -(fying)108 619.2 Q F3(n)2.974 E F0 2.974(,i)C 2.974(fan)-2.974 G .474(o\ -n-digit is required, the digits greater than 9 are represented by the l\ -o)-2.974 F .475(wercase letters, the up-)-.25 F .518 -(percase letters, @, and _, in that order)108 631.2 R 5.518(.I)-.55 G(f) --5.518 E F3(base)3.018 E F0 .518(is less than or equal to 36, lo)3.018 F +(fying)108 96 Q F1(n)2.974 E F0 2.974(,i)C 2.974(fan)-2.974 G .474(on-d\ +igit is required, the digits greater than 9 are represented by the lo) +-2.974 F .475(wercase letters, the up-)-.25 F .518 +(percase letters, @, and _, in that order)108 108 R 5.518(.I)-.55 G(f) +-5.518 E F1(base)3.018 E F0 .518(is less than or equal to 36, lo)3.018 F .518(wercase and uppercase letters)-.25 F (may be used interchangeably to represent numbers between 10 and 35.)108 -643.2 Q .234(Operators are e)108 660 R -.25(va)-.25 G .234 +120 Q .234(Operators are e)108 136.8 R -.25(va)-.25 G .234 (luated in order of precedence.).25 F(Sub-e)5.234 E .234 (xpressions in parentheses are e)-.15 F -.25(va)-.25 G .235 -(luated \214rst and may).25 F -.15(ove)108 672 S -(rride the precedence rules abo).15 E -.15(ve)-.15 G(.).15 E F1 -(CONDITION)72 688.8 Q(AL EXPRESSIONS)-.219 E F0 .256(Conditional e)108 -700.8 R .256(xpressions are used by the)-.15 F F2([[)2.755 E F0 .255 -(compound command and the)2.755 F F2(test)2.755 E F0(and)2.755 E F2([) -2.755 E F0 -.2(bu)2.755 G .255(iltin commands to test).2 F .133 -(\214le attrib)108 712.8 R .133 +(luated \214rst and may).25 F -.15(ove)108 148.8 S +(rride the precedence rules abo).15 E -.15(ve)-.15 G(.).15 E/F2 10.95 +/Times-Bold@0 SF(CONDITION)72 165.6 Q(AL EXPRESSIONS)-.219 E F0 .256 +(Conditional e)108 177.6 R .256(xpressions are used by the)-.15 F/F3 10 +/Times-Bold@0 SF([[)2.755 E F0 .255(compound command and the)2.755 F F3 +(test)2.755 E F0(and)2.755 E F3([)2.755 E F0 -.2(bu)2.755 G .255 +(iltin commands to test).2 F .133(\214le attrib)108 189.6 R .133 (utes and perform string and arithmetic comparisons.)-.2 F(The)5.133 E -F2(test)2.633 E F0(and)2.633 E F2([)2.634 E F0 .134 -(commands determine their be-)2.634 F(ha)108 724.8 Q .198 +F3(test)2.633 E F0(and)2.633 E F3([)2.634 E F0 .134 +(commands determine their be-)2.634 F(ha)108 201.6 Q .198 (vior based on the number of ar)-.2 F .197 (guments; see the descriptions of those commands for an)-.18 F 2.697(yo) --.15 G .197(ther command-)-2.697 F(GNU Bash 5.0)72 768 Q(2019 No)136.385 -E -.15(ve)-.15 G(mber 26).15 E(32)185.545 E 0 Cg EP -%%Page: 33 33 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -(speci\214c actions.)108 84 Q .234 -(Expressions are formed from the follo)108 100.8 R .234 -(wing unary or binary primaries.)-.25 F/F1 10/Times-Bold@0 SF(Bash)5.234 -E F0 .235(handles se)2.735 F -.15(ve)-.25 G .235(ral \214lenames spe-) -.15 F .425(cially when the)108 112.8 R 2.925(ya)-.15 G .425 -(re used in e)-2.925 F 2.925(xpressions. If)-.15 F .425 -(the operating system on which)2.925 F F1(bash)2.924 E F0 .424 -(is running pro)2.924 F .424(vides these)-.15 F .344(special \214les, b\ -ash will use them; otherwise it will emulate them internally with this \ -beha)108 124.8 R .345(vior: If an)-.2 F(y)-.15 E/F2 10/Times-Italic@0 SF -(\214le)2.845 E F0(ar)2.845 E(-)-.2 E .806 -(gument to one of the primaries is of the form)108 136.8 R F2(/de)3.306 -E(v/fd/n)-.15 E F0 3.305(,t)C .805(hen \214le descriptor)-3.305 F F2(n) -3.305 E F0 .805(is check)3.305 F 3.305(ed. If)-.1 F(the)3.305 E F2 +-.15 G .197(ther command-)-2.697 F(speci\214c actions.)108 213.6 Q .234 +(Expressions are formed from the follo)108 230.4 R .234 +(wing unary or binary primaries.)-.25 F F3(Bash)5.234 E F0 .235 +(handles se)2.735 F -.15(ve)-.25 G .235(ral \214lenames spe-).15 F .425 +(cially when the)108 242.4 R 2.925(ya)-.15 G .425(re used in e)-2.925 F +2.925(xpressions. If)-.15 F .425(the operating system on which)2.925 F +F3(bash)2.924 E F0 .424(is running pro)2.924 F .424(vides these)-.15 F +.344(special \214les, bash will use them; otherwise it will emulate the\ +m internally with this beha)108 254.4 R .345(vior: If an)-.2 F(y)-.15 E +F1(\214le)2.845 E F0(ar)2.845 E(-)-.2 E .806 +(gument to one of the primaries is of the form)108 266.4 R F1(/de)3.306 +E(v/fd/n)-.15 E F0 3.305(,t)C .805(hen \214le descriptor)-3.305 F F1(n) +3.305 E F0 .805(is check)3.305 F 3.305(ed. If)-.1 F(the)3.305 E F1 (\214le)3.305 E F0(ar)3.305 E(gu-)-.18 E .029 -(ment to one of the primaries is one of)108 148.8 R F2(/de)2.529 E -(v/stdin)-.15 E F0(,)A F2(/de)2.529 E(v/stdout)-.15 E F0 2.53(,o)C(r) --2.53 E F2(/de)2.53 E(v/stderr)-.15 E F0 2.53<2c8c>C .03 -(le descriptor 0, 1, or 2, respec-)-2.53 F(ti)108 160.8 Q -.15(ve)-.25 G +(ment to one of the primaries is one of)108 278.4 R F1(/de)2.529 E +(v/stdin)-.15 E F0(,)A F1(/de)2.529 E(v/stdout)-.15 E F0 2.53(,o)C(r) +-2.53 E F1(/de)2.53 E(v/stderr)-.15 E F0 2.53<2c8c>C .03 +(le descriptor 0, 1, or 2, respec-)-2.53 F(ti)108 290.4 Q -.15(ve)-.25 G (ly).15 E 2.5(,i)-.65 G 2.5(sc)-2.5 G(heck)-2.5 E(ed.)-.1 E .722 (Unless otherwise speci\214ed, primaries that operate on \214les follo) -108 177.6 R 3.221(ws)-.25 G .721(ymbolic links and operate on the tar) --3.221 F(get)-.18 E(of the link, rather than the link itself.)108 189.6 -Q 1.095(When used with)108 207.6 R F1([[)3.595 E F0 3.595(,t)C(he)-3.595 -E F1(<)3.595 E F0(and)3.595 E F1(>)3.595 E F0 1.095(operators sort le) +108 307.2 R 3.221(ws)-.25 G .721(ymbolic links and operate on the tar) +-3.221 F(get)-.18 E(of the link, rather than the link itself.)108 319.2 +Q 1.095(When used with)108 337.2 R F3([[)3.595 E F0 3.595(,t)C(he)-3.595 +E F3(<)3.595 E F0(and)3.595 E F3(>)3.595 E F0 1.095(operators sort le) 3.595 F 1.095(xicographically using the current locale.)-.15 F(The)6.096 -E F1(test)3.596 E F0(com-)3.596 E(mand sorts using ASCII ordering.)108 -219.6 Q F1108 243.6 Q F2(\214le)2.5 E F0 -.35(Tr)144 243.6 S -(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G(ists.).15 E F1108 -255.6 Q F2(\214le)2.5 E F0 -.35(Tr)144 255.6 S(ue if).35 E F2(\214le)2.5 -E F0 -.15(ex)2.5 G(ists and is a block special \214le.).15 E F1108 -267.6 Q F2(\214le)2.5 E F0 -.35(Tr)144 267.6 S(ue if).35 E F2(\214le)2.5 -E F0 -.15(ex)2.5 G(ists and is a character special \214le.).15 E F1 -108 279.6 Q F2(\214le)2.5 E F0 -.35(Tr)144 279.6 S(ue if).35 E F2 -(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is a directory).15 E(.)-.65 E F1 -108 291.6 Q F2(\214le)2.5 E F0 -.35(Tr)144 291.6 S(ue if).35 E F2 -(\214le)2.5 E F0 -.15(ex)2.5 G(ists.).15 E F1108 303.6 Q F2 -(\214le)2.5 E F0 -.35(Tr)144 303.6 S(ue if).35 E F2(\214le)2.5 E F0 -.15 -(ex)2.5 G(ists and is a re).15 E(gular \214le.)-.15 E F1108 315.6 -Q F2(\214le)2.5 E F0 -.35(Tr)144 315.6 S(ue if).35 E F2(\214le)2.5 E F0 --.15(ex)2.5 G(ists and is set-group-id.).15 E F1108 327.6 Q F2 -(\214le)2.5 E F0 -.35(Tr)144 327.6 S(ue if).35 E F2(\214le)2.5 E F0 -.15 -(ex)2.5 G(ists and is a symbolic link.).15 E F1108 339.6 Q F2 -(\214le)2.5 E F0 -.35(Tr)144 339.6 S(ue if).35 E F2(\214le)2.5 E F0 -.15 +E F3(test)3.596 E F0(com-)3.596 E(mand sorts using ASCII ordering.)108 +349.2 Q F3108 373.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 373.2 S +(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G(ists.).15 E F3108 +385.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 385.2 S(ue if).35 E F1(\214le)2.5 +E F0 -.15(ex)2.5 G(ists and is a block special \214le.).15 E F3108 +397.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 397.2 S(ue if).35 E F1(\214le)2.5 +E F0 -.15(ex)2.5 G(ists and is a character special \214le.).15 E F3 +108 409.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 409.2 S(ue if).35 E F1 +(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is a directory).15 E(.)-.65 E F3 +108 421.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 421.2 S(ue if).35 E F1 +(\214le)2.5 E F0 -.15(ex)2.5 G(ists.).15 E F3108 433.2 Q F1 +(\214le)2.5 E F0 -.35(Tr)144 433.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists and is a re).15 E(gular \214le.)-.15 E F3108 445.2 +Q F1(\214le)2.5 E F0 -.35(Tr)144 445.2 S(ue if).35 E F1(\214le)2.5 E F0 +-.15(ex)2.5 G(ists and is set-group-id.).15 E F3108 457.2 Q F1 +(\214le)2.5 E F0 -.35(Tr)144 457.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists and is a symbolic link.).15 E F3108 469.2 Q F1 +(\214le)2.5 E F0 -.35(Tr)144 469.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15 (ex)2.5 G(ists and its `).15 E(`stick)-.74 E(y')-.15 E 2.5('b)-.74 G -(it is set.)-2.5 E F1108 351.6 Q F2(\214le)2.5 E F0 -.35(Tr)144 -351.6 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and is a named pipe \(FIFO\).).15 E F1108 363.6 Q F2(\214le) -2.5 E F0 -.35(Tr)144 363.6 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 -G(ists and is readable.).15 E F1108 375.6 Q F2(\214le)2.5 E F0 --.35(Tr)144 375.6 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and has a size greater than zero.).15 E F1108 387.6 Q F2(fd) -2.5 E F0 -.35(Tr)144 387.6 S(ue if \214le descriptor).35 E F2(fd)4.47 E -F0(is open and refers to a terminal.)3.27 E F1108 399.6 Q F2 -(\214le)2.5 E F0 -.35(Tr)144 399.6 S(ue if).35 E F2(\214le)2.5 E F0 -.15 -(ex)2.5 G(ists and its set-user).15 E(-id bit is set.)-.2 E F1108 -411.6 Q F2(\214le)2.5 E F0 -.35(Tr)144 411.6 S(ue if).35 E F2(\214le)2.5 -E F0 -.15(ex)2.5 G(ists and is writable.).15 E F1108 423.6 Q F2 -(\214le)2.5 E F0 -.35(Tr)144 423.6 S(ue if).35 E F2(\214le)2.5 E F0 -.15 -(ex)2.5 G(ists and is e).15 E -.15(xe)-.15 G(cutable.).15 E F1108 -435.6 Q F2(\214le)2.5 E F0 -.35(Tr)144 435.6 S(ue if).35 E F2(\214le)2.5 +(it is set.)-2.5 E F3108 481.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 +481.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G +(ists and is a named pipe \(FIFO\).).15 E F3108 493.2 Q F1(\214le) +2.5 E F0 -.35(Tr)144 493.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 +G(ists and is readable.).15 E F3108 505.2 Q F1(\214le)2.5 E F0 +-.35(Tr)144 505.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G +(ists and has a size greater than zero.).15 E F3108 517.2 Q F1(fd) +2.5 E F0 -.35(Tr)144 517.2 S(ue if \214le descriptor).35 E F1(fd)4.47 E +F0(is open and refers to a terminal.)3.27 E F3108 529.2 Q F1 +(\214le)2.5 E F0 -.35(Tr)144 529.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists and its set-user).15 E(-id bit is set.)-.2 E F3108 +541.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 541.2 S(ue if).35 E F1(\214le)2.5 +E F0 -.15(ex)2.5 G(ists and is writable.).15 E F3108 553.2 Q F1 +(\214le)2.5 E F0 -.35(Tr)144 553.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists and is e).15 E -.15(xe)-.15 G(cutable.).15 E F3108 +565.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 565.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is o).15 E(wned by the ef)-.25 E(fecti)-.25 -E .3 -.15(ve g)-.25 H(roup id.).15 E F1108 447.6 Q F2(\214le)2.5 E -F0 -.35(Tr)144 447.6 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and is a symbolic link.).15 E F1108 459.6 Q F2(\214le)2.5 E -F0 -.35(Tr)144 459.6 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and has been modi\214ed since it w).15 E(as last read.)-.1 E F1 -108 471.6 Q F2(\214le)2.5 E F0 -.35(Tr)144 471.6 S(ue if).35 E F2 +E .3 -.15(ve g)-.25 H(roup id.).15 E F3108 577.2 Q F1(\214le)2.5 E +F0 -.35(Tr)144 577.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G +(ists and is a symbolic link.).15 E F3108 589.2 Q F1(\214le)2.5 E +F0 -.35(Tr)144 589.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G +(ists and has been modi\214ed since it w).15 E(as last read.)-.1 E F3 +108 601.2 Q F1(\214le)2.5 E F0 -.35(Tr)144 601.2 S(ue if).35 E F1 (\214le)2.5 E F0 -.15(ex)2.5 G(ists and is o).15 E(wned by the ef)-.25 E -(fecti)-.25 E .3 -.15(ve u)-.25 H(ser id.).15 E F1108 483.6 Q F2 -(\214le)2.5 E F0 -.35(Tr)144 483.6 S(ue if).35 E F2(\214le)2.5 E F0 -.15 -(ex)2.5 G(ists and is a sock).15 E(et.)-.1 E F2(\214le1)108 495.6 Q F1 -(\255ef)2.5 E F2(\214le2)2.5 E F0 -.35(Tr)144 507.6 S(ue if).35 E F2 -(\214le1)2.5 E F0(and)2.5 E F2(\214le2)2.5 E F0(refer to the same de)2.5 -E(vice and inode numbers.)-.25 E F2(\214le1)108 519.6 Q F02.5 E F1 -(nt)A F2(\214le2)2.5 E F0 -.35(Tr)144 531.6 S(ue if).35 E F2(\214le1)2.5 -E F0(is ne)2.5 E(wer \(according to modi\214cation date\) than)-.25 E F2 -(\214le2)2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G(f)-2.5 E F2(\214le1)2.5 E F0 --.15(ex)2.5 G(ists and).15 E F2(\214le2)2.5 E F0(does not.)2.5 E F2 -(\214le1)108 543.6 Q F02.5 E F1(ot)A F2(\214le2)2.5 E F0 -.35(Tr)144 -555.6 S(ue if).35 E F2(\214le1)2.5 E F0(is older than)2.5 E F2(\214le2) -2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G(f)-2.5 E F2(\214le2)2.5 E F0 -.15(ex)2.5 -G(ists and).15 E F2(\214le1)2.5 E F0(does not.)2.5 E F1108 567.6 Q -F2(optname)2.5 E F0 -.35(Tr)144 579.6 S .263(ue if the shell option).35 -F F2(optname)2.992 E F0 .262(is enabled.)2.942 F .262 -(See the list of options under the description of the)5.262 F F1 -2.762 E F0(option to the)144 591.6 Q F1(set)2.5 E F0 -.2(bu)2.5 G -(iltin belo).2 E -.65(w.)-.25 G F1108 603.6 Q F2(varname)2.5 E F0 --.35(Tr)144 615.6 S(ue if the shell v).35 E(ariable)-.25 E F2(varname) -2.79 E F0(is set \(has been assigned a v)2.68 E(alue\).)-.25 E F1 -108 627.6 Q F2(varname)2.5 E F0 -.35(Tr)144 639.6 S(ue if the shell v) -.35 E(ariable)-.25 E F2(varname)2.79 E F0 -(is set and is a name reference.)2.68 E F1108 651.6 Q F2(string) -2.5 E F0 -.35(Tr)144 663.6 S(ue if the length of).35 E F2(string)2.5 E -F0(is zero.)2.5 E F2(string)108 675.6 Q F1108 687.6 Q F2(string) -2.5 E F0 -.35(Tr)144 699.6 S(ue if the length of).35 E F2(string)2.84 E -F0(is non-zero.)2.72 E(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve) --.15 G(mber 26).15 E(33)185.545 E 0 Cg EP +(fecti)-.25 E .3 -.15(ve u)-.25 H(ser id.).15 E F3108 613.2 Q F1 +(\214le)2.5 E F0 -.35(Tr)144 613.2 S(ue if).35 E F1(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists and is a sock).15 E(et.)-.1 E F1(\214le1)108 625.2 Q F3 +(\255ef)2.5 E F1(\214le2)2.5 E F0 -.35(Tr)144 637.2 S(ue if).35 E F1 +(\214le1)2.5 E F0(and)2.5 E F1(\214le2)2.5 E F0(refer to the same de)2.5 +E(vice and inode numbers.)-.25 E F1(\214le1)108 649.2 Q F02.5 E F3 +(nt)A F1(\214le2)2.5 E F0 -.35(Tr)144 661.2 S(ue if).35 E F1(\214le1)2.5 +E F0(is ne)2.5 E(wer \(according to modi\214cation date\) than)-.25 E F1 +(\214le2)2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G(f)-2.5 E F1(\214le1)2.5 E F0 +-.15(ex)2.5 G(ists and).15 E F1(\214le2)2.5 E F0(does not.)2.5 E F1 +(\214le1)108 673.2 Q F02.5 E F3(ot)A F1(\214le2)2.5 E F0 -.35(Tr)144 +685.2 S(ue if).35 E F1(\214le1)2.5 E F0(is older than)2.5 E F1(\214le2) +2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G(f)-2.5 E F1(\214le2)2.5 E F0 -.15(ex)2.5 +G(ists and).15 E F1(\214le1)2.5 E F0(does not.)2.5 E F3108 697.2 Q +F1(optname)2.5 E F0 -.35(Tr)144 709.2 S .263(ue if the shell option).35 +F F1(optname)2.992 E F0 .262(is enabled.)2.942 F .262 +(See the list of options under the description of the)5.262 F F3 +2.762 E F0(option to the)144 721.2 Q F3(set)2.5 E F0 -.2(bu)2.5 G +(iltin belo).2 E -.65(w.)-.25 G(GNU Bash 5.0)72 768 Q(2020 January 29) +141.79 E(33)190.95 E 0 Cg EP %%Page: 34 34 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10 -/Times-Italic@0 SF(string1)108 84 Q/F2 10/Times-Bold@0 SF(==)2.5 E F1 -(string2)2.5 E(string1)108 96 Q F2(=)2.5 E F1(string2)2.5 E F0 -.35(Tr) -144 108 S .861(ue if the strings are equal.).35 F F2(=)5.861 E F0 .861 -(should be used with the)3.361 F F2(test)3.361 E F0 .862 -(command for POSIX conformance.)3.362 F .447(When used with the)144 120 -R F2([[)2.946 E F0 .446 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF108 84 Q/F2 10/Times-Italic@0 SF(varname)2.5 E F0 -.35(Tr)144 96 +S(ue if the shell v).35 E(ariable)-.25 E F2(varname)2.79 E F0 +(is set \(has been assigned a v)2.68 E(alue\).)-.25 E F1108 108 Q +F2(varname)2.5 E F0 -.35(Tr)144 120 S(ue if the shell v).35 E(ariable) +-.25 E F2(varname)2.79 E F0(is set and is a name reference.)2.68 E F1 +108 132 Q F2(string)2.5 E F0 -.35(Tr)144 144 S +(ue if the length of).35 E F2(string)2.5 E F0(is zero.)2.5 E F2(string) +108 156 Q F1108 168 Q F2(string)2.5 E F0 -.35(Tr)144 180 S +(ue if the length of).35 E F2(string)2.84 E F0(is non-zero.)2.72 E F2 +(string1)108 196.8 Q F1(==)2.5 E F2(string2)2.5 E(string1)108 208.8 Q F1 +(=)2.5 E F2(string2)2.5 E F0 -.35(Tr)144 220.8 S .861 +(ue if the strings are equal.).35 F F1(=)5.861 E F0 .861 +(should be used with the)3.361 F F1(test)3.361 E F0 .862 +(command for POSIX conformance.)3.362 F .447(When used with the)144 +232.8 R F1([[)2.946 E F0 .446 (command, this performs pattern matching as described abo)2.946 F .746 --.15(ve \()-.15 H F2(Compound).15 E(Commands)144 132 Q F0(\).)A F1 -(string1)108 148.8 Q F2(!=)2.5 E F1(string2)2.5 E F0 -.35(Tr)144 160.8 S -(ue if the strings are not equal.).35 E F1(string1)108 177.6 Q F2(<)2.5 -E F1(string2)2.5 E F0 -.35(Tr)144 189.6 S(ue if).35 E F1(string1)2.5 E -F0(sorts before)2.5 E F1(string2)2.5 E F0(le)2.5 E(xicographically)-.15 -E(.)-.65 E F1(string1)108 206.4 Q F2(>)2.5 E F1(string2)2.5 E F0 -.35 -(Tr)144 218.4 S(ue if).35 E F1(string1)2.5 E F0(sorts after)2.5 E F1 -(string2)2.5 E F0(le)2.5 E(xicographically)-.15 E(.)-.65 E F1(ar)108.33 -235.2 Q(g1)-.37 E F2(OP)2.5 E F1(ar)2.5 E(g2)-.37 E/F3 9/Times-Bold@0 SF -(OP)144 247.2 Q F0 .385(is one of)2.634 F F2(\255eq)2.885 E F0(,)A F2 -(\255ne)2.885 E F0(,)A F2(\255lt)2.885 E F0(,)A F2(\255le)2.885 E F0(,)A -F2(\255gt)2.885 E F0 2.885(,o)C(r)-2.885 E F2(\255ge)2.885 E F0 5.385 -(.T)C .385(hese arithmetic binary operators return true if)-5.385 F F1 +-.15(ve \()-.15 H F1(Compound).15 E(Commands)144 244.8 Q F0(\).)A F2 +(string1)108 261.6 Q F1(!=)2.5 E F2(string2)2.5 E F0 -.35(Tr)144 273.6 S +(ue if the strings are not equal.).35 E F2(string1)108 290.4 Q F1(<)2.5 +E F2(string2)2.5 E F0 -.35(Tr)144 302.4 S(ue if).35 E F2(string1)2.5 E +F0(sorts before)2.5 E F2(string2)2.5 E F0(le)2.5 E(xicographically)-.15 +E(.)-.65 E F2(string1)108 319.2 Q F1(>)2.5 E F2(string2)2.5 E F0 -.35 +(Tr)144 331.2 S(ue if).35 E F2(string1)2.5 E F0(sorts after)2.5 E F2 +(string2)2.5 E F0(le)2.5 E(xicographically)-.15 E(.)-.65 E F2(ar)108.33 +348 Q(g1)-.37 E F1(OP)2.5 E F2(ar)2.5 E(g2)-.37 E/F3 9/Times-Bold@0 SF +(OP)144 360 Q F0 .385(is one of)2.634 F F1(\255eq)2.885 E F0(,)A F1 +(\255ne)2.885 E F0(,)A F1(\255lt)2.885 E F0(,)A F1(\255le)2.885 E F0(,)A +F1(\255gt)2.885 E F0 2.885(,o)C(r)-2.885 E F1(\255ge)2.885 E F0 5.385 +(.T)C .385(hese arithmetic binary operators return true if)-5.385 F F2 (ar)2.885 E(g1)-.37 E F0 .845(is equal to, not equal to, less than, les\ -s than or equal to, greater than, or greater than or equal to)144 259.2 -R F1(ar)144 271.2 Q(g2)-.37 E F0 3.589(,r)C(especti)-3.589 E -.15(ve) --.25 G(ly).15 E(.)-.65 E F1(Ar)7.099 E(g1)-.37 E F0(and)3.589 E F1(ar) -3.919 E(g2)-.37 E F0 1.089(may be positi)3.609 F 1.389 -.15(ve o)-.25 H -3.589(rn).15 G -2.25 -.15(eg a)-3.589 H(ti).15 E 1.389 -.15(ve i)-.25 H -(nte).15 E 3.59(gers. When)-.15 F 1.09(used with the)3.59 F F2([[)3.59 E -F0(command,)144 283.2 Q F1(Ar)4.22 E(g1)-.37 E F0(and)3.21 E F1(Ar)4.22 -E(g2)-.37 E F0 .71(are e)3.23 F -.25(va)-.25 G .71 +s than or equal to, greater than, or greater than or equal to)144 372 R +F2(ar)144 384 Q(g2)-.37 E F0 3.589(,r)C(especti)-3.589 E -.15(ve)-.25 G +(ly).15 E(.)-.65 E F2(Ar)7.099 E(g1)-.37 E F0(and)3.589 E F2(ar)3.919 E +(g2)-.37 E F0 1.089(may be positi)3.609 F 1.389 -.15(ve o)-.25 H 3.589 +(rn).15 G -2.25 -.15(eg a)-3.589 H(ti).15 E 1.389 -.15(ve i)-.25 H(nte) +.15 E 3.59(gers. When)-.15 F 1.09(used with the)3.59 F F1([[)3.59 E F0 +(command,)144 396 Q F2(Ar)4.22 E(g1)-.37 E F0(and)3.21 E F2(Ar)4.22 E +(g2)-.37 E F0 .71(are e)3.23 F -.25(va)-.25 G .71 (luated as arithmetic e).25 F 3.209(xpressions \(see)-.15 F F3 .709 -(ARITHMETIC EV)3.209 F(ALU)-1.215 E(A-)-.54 E(TION)144 295.2 Q F0(abo) -2.25 E -.15(ve)-.15 G(\).).15 E/F4 10.95/Times-Bold@0 SF -(SIMPLE COMMAND EXP)72 312 Q(ANSION)-.81 E F0 .613 -(When a simple command is e)108 324 R -.15(xe)-.15 G .614 -(cuted, the shell performs the follo).15 F .614(wing e)-.25 F .614 -(xpansions, assignments, and redi-)-.15 F -(rections, from left to right, in the follo)108 336 Q(wing order)-.25 E -(.)-.55 E(1.)108 352.8 Q 1.849(The w)144 352.8 R 1.849 +(ARITHMETIC EV)3.209 F(ALU)-1.215 E(A-)-.54 E(TION)144 408 Q F0(abo)2.25 +E -.15(ve)-.15 G(\).).15 E/F4 10.95/Times-Bold@0 SF(SIMPLE COMMAND EXP) +72 424.8 Q(ANSION)-.81 E F0 .613(When a simple command is e)108 436.8 R +-.15(xe)-.15 G .614(cuted, the shell performs the follo).15 F .614 +(wing e)-.25 F .614(xpansions, assignments, and redi-)-.15 F +(rections, from left to right, in the follo)108 448.8 Q(wing order)-.25 +E(.)-.55 E(1.)108 465.6 Q 1.849(The w)144 465.6 R 1.849 (ords that the parser has mark)-.1 F 1.848(ed as v)-.1 F 1.848 (ariable assignments \(those preceding the command)-.25 F -(name\) and redirections are sa)144 364.8 Q -.15(ve)-.2 G 2.5(df).15 G -(or later processing.)-2.5 E(2.)108 381.6 Q .179(The w)144 381.6 R .179 +(name\) and redirections are sa)144 477.6 Q -.15(ve)-.2 G 2.5(df).15 G +(or later processing.)-2.5 E(2.)108 494.4 Q .179(The w)144 494.4 R .179 (ords that are not v)-.1 F .179 (ariable assignments or redirections are e)-.25 F 2.68(xpanded. If)-.15 F(an)2.68 E 2.68(yw)-.15 G .18(ords remain af-)-2.78 F .347(ter e)144 -393.6 R .347(xpansion, the \214rst w)-.15 F .347(ord is tak)-.1 F .347 +506.4 R .347(xpansion, the \214rst w)-.15 F .347(ord is tak)-.1 F .347 (en to be the name of the command and the remaining w)-.1 F .346 -(ords are)-.1 F(the ar)144 405.6 Q(guments.)-.18 E(3.)108 422.4 Q -(Redirections are performed as described abo)144 422.4 Q .3 -.15(ve u) +(ords are)-.1 F(the ar)144 518.4 Q(guments.)-.18 E(3.)108 535.2 Q +(Redirections are performed as described abo)144 535.2 Q .3 -.15(ve u) -.15 H(nder).15 E F3(REDIRECTION)2.5 E/F5 9/Times-Roman@0 SF(.)A F0(4.) -108 439.2 Q .716(The te)144 439.2 R .717(xt after the)-.15 F F2(=)3.217 -E F0 .717(in each v)3.217 F .717(ariable assignment under)-.25 F .717 +108 552 Q .716(The te)144 552 R .717(xt after the)-.15 F F1(=)3.217 E F0 +.717(in each v)3.217 F .717(ariable assignment under)-.25 F .717 (goes tilde e)-.18 F .717(xpansion, parameter e)-.15 F(xpansion,)-.15 E -.34(command substitution, arithmetic e)144 451.2 R .339 +.34(command substitution, arithmetic e)144 564 R .339 (xpansion, and quote remo)-.15 F -.25(va)-.15 G 2.839(lb).25 G .339 -(efore being assigned to the v)-2.839 F(ari-)-.25 E(able.)144 463.2 Q -.332(If no command name results, the v)108 480 R .332 +(efore being assigned to the v)-2.839 F(ari-)-.25 E(able.)144 576 Q .332 +(If no command name results, the v)108 592.8 R .332 (ariable assignments af)-.25 F .332(fect the current shell en)-.25 F -2.833(vironment. Otherwise,)-.4 F(the)2.833 E -.25(va)108 492 S .757 +2.833(vironment. Otherwise,)-.4 F(the)2.833 E -.25(va)108 604.8 S .757 (riables are added to the en).25 F .757(vironment of the e)-.4 F -.15 (xe)-.15 G .757(cuted command and do not af).15 F .757 -(fect the current shell en)-.25 F(vi-)-.4 E 3.176(ronment. If)108 504 R -(an)3.176 E 3.176(yo)-.15 G 3.176(ft)-3.176 G .677 +(fect the current shell en)-.25 F(vi-)-.4 E 3.176(ronment. If)108 616.8 +R(an)3.176 E 3.176(yo)-.15 G 3.176(ft)-3.176 G .677 (he assignments attempts to assign a v)-3.176 F .677 (alue to a readonly v)-.25 F .677(ariable, an error occurs, and)-.25 F -(the command e)108 516 Q(xits with a non-zero status.)-.15 E .15 -(If no command name results, redirections are performed, b)108 532.8 R +(the command e)108 628.8 Q(xits with a non-zero status.)-.15 E .15 +(If no command name results, redirections are performed, b)108 645.6 R .149(ut do not af)-.2 F .149(fect the current shell en)-.25 F 2.649 -(vironment. A)-.4 F(redirection error causes the command to e)108 544.8 +(vironment. A)-.4 F(redirection error causes the command to e)108 657.6 Q(xit with a non-zero status.)-.15 E 1.064 -(If there is a command name left after e)108 561.6 R 1.064(xpansion, e) +(If there is a command name left after e)108 674.4 R 1.064(xpansion, e) -.15 F -.15(xe)-.15 G 1.064(cution proceeds as described belo).15 F 4.864 -.65(w. O)-.25 H 1.064(therwise, the).65 F .069(command e)108 -573.6 R 2.569(xits. If)-.15 F .069(one of the e)2.569 F .069 +686.4 R 2.569(xits. If)-.15 F .069(one of the e)2.569 F .069 (xpansions contained a command substitution, the e)-.15 F .068 -(xit status of the command)-.15 F .466(is the e)108 585.6 R .466 +(xit status of the command)-.15 F .466(is the e)108 698.4 R .466 (xit status of the last command substitution performed.)-.15 F .467 -(If there were no command substitutions, the)5.466 F(command e)108 597.6 -Q(xits with a status of zero.)-.15 E F4(COMMAND EXECUTION)72 614.4 Q F0 -.547(After a command has been split into w)108 626.4 R .546 -(ords, if it results in a simple command and an optional list of ar)-.1 -F(gu-)-.18 E(ments, the follo)108 638.4 Q(wing actions are tak)-.25 E -(en.)-.1 E .379(If the command name contains no slashes, the shell atte\ -mpts to locate it.)108 655.2 R .379(If there e)5.379 F .379 -(xists a shell function by)-.15 F .246(that name, that function is in) -108 667.2 R -.2(vo)-.4 G -.1(ke).2 G 2.746(da).1 G 2.746(sd)-2.746 G -.246(escribed abo)-2.746 F .546 -.15(ve i)-.15 H(n).15 E F3(FUNCTIONS) -2.746 E F5(.)A F0 .246(If the name does not match a func-)4.746 F -(tion, the shell searches for it in the list of shell b)108 679.2 Q 2.5 -(uiltins. If)-.2 F 2.5(am)2.5 G(atch is found, that b)-2.5 E -(uiltin is in)-.2 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E .309 -(If the name is neither a shell function nor a b)108 696 R .31 -(uiltin, and contains no slashes,)-.2 F F2(bash)2.81 E F0 .31 -(searches each element of)2.81 F(the)108 708 Q F3 -.666(PA)3.163 G(TH) --.189 E F0 .662(for a directory containing an e)2.913 F -.15(xe)-.15 G -.662(cutable \214le by that name.).15 F F2(Bash)5.662 E F0 .662 -(uses a hash table to remember)3.162 F 1.914(the full pathnames of e)108 -720 R -.15(xe)-.15 G 1.915(cutable \214les \(see).15 F F2(hash)4.415 E -F0(under)4.415 E F3 1.915(SHELL B)4.415 F(UIL)-.09 E 1.915(TIN COMMANDS) --.828 F F0(belo)4.165 E 4.415(w\). A)-.25 F(full)4.415 E(GNU Bash 5.0)72 -768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(34)185.545 E 0 Cg -EP +(If there were no command substitutions, the)5.466 F(command e)108 710.4 +Q(xits with a status of zero.)-.15 E(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(34)190.95 E 0 Cg EP %%Page: 35 35 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .72 -(search of the directories in)108 84 R/F1 9/Times-Bold@0 SF -.666(PA) -3.22 G(TH)-.189 E F0 .719 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10.95 +/Times-Bold@0 SF(COMMAND EXECUTION)72 84 Q F0 .547 +(After a command has been split into w)108 96 R .546 +(ords, if it results in a simple command and an optional list of ar)-.1 +F(gu-)-.18 E(ments, the follo)108 108 Q(wing actions are tak)-.25 E(en.) +-.1 E .379(If the command name contains no slashes, the shell attempts \ +to locate it.)108 124.8 R .379(If there e)5.379 F .379 +(xists a shell function by)-.15 F .246(that name, that function is in) +108 136.8 R -.2(vo)-.4 G -.1(ke).2 G 2.746(da).1 G 2.746(sd)-2.746 G +.246(escribed abo)-2.746 F .546 -.15(ve i)-.15 H(n).15 E/F2 9 +/Times-Bold@0 SF(FUNCTIONS)2.746 E/F3 9/Times-Roman@0 SF(.)A F0 .246 +(If the name does not match a func-)4.746 F +(tion, the shell searches for it in the list of shell b)108 148.8 Q 2.5 +(uiltins. If)-.2 F 2.5(am)2.5 G(atch is found, that b)-2.5 E +(uiltin is in)-.2 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E .309 +(If the name is neither a shell function nor a b)108 165.6 R .31 +(uiltin, and contains no slashes,)-.2 F/F4 10/Times-Bold@0 SF(bash)2.81 +E F0 .31(searches each element of)2.81 F(the)108 177.6 Q F2 -.666(PA) +3.163 G(TH)-.189 E F0 .662(for a directory containing an e)2.913 F -.15 +(xe)-.15 G .662(cutable \214le by that name.).15 F F4(Bash)5.662 E F0 +.662(uses a hash table to remember)3.162 F 1.914 +(the full pathnames of e)108 189.6 R -.15(xe)-.15 G 1.915 +(cutable \214les \(see).15 F F4(hash)4.415 E F0(under)4.415 E F2 1.915 +(SHELL B)4.415 F(UIL)-.09 E 1.915(TIN COMMANDS)-.828 F F0(belo)4.165 E +4.415(w\). A)-.25 F(full)4.415 E .72(search of the directories in)108 +201.6 R F2 -.666(PA)3.22 G(TH)-.189 E F0 .719 (is performed only if the command is not found in the hash table.)2.97 F .719(If the)5.719 F .956(search is unsuccessful, the shell searches for\ - a de\214ned shell function named)108 96 R/F2 10/Times-Bold@0 SF -(command_not_f)3.456 E(ound_han-)-.25 E(dle)108 108 Q F0 6.006(.I)C -3.506(ft)-6.006 G 1.006(hat function e)-3.506 F 1.006(xists, it is in) --.15 F -.2(vo)-.4 G -.1(ke).2 G 3.506(di).1 G 3.506(nas)-3.506 G 1.005 -(eparate e)-3.506 F -.15(xe)-.15 G 1.005(cution en).15 F 1.005 + a de\214ned shell function named)108 213.6 R F4(command_not_f)3.456 E +(ound_han-)-.25 E(dle)108 225.6 Q F0 6.006(.I)C 3.506(ft)-6.006 G 1.006 +(hat function e)-3.506 F 1.006(xists, it is in)-.15 F -.2(vo)-.4 G -.1 +(ke).2 G 3.506(di).1 G 3.506(nas)-3.506 G 1.005(eparate e)-3.506 F -.15 +(xe)-.15 G 1.005(cution en).15 F 1.005 (vironment with the original command)-.4 F .255 -(and the original command')108 120 R 2.755(sa)-.55 G -.18(rg)-2.755 G +(and the original command')108 237.6 R 2.755(sa)-.55 G -.18(rg)-2.755 G .255(uments as its ar).18 F .256(guments, and the function')-.18 F 2.756 (se)-.55 G .256(xit status becomes the e)-2.906 F .256(xit sta-)-.15 F -.263(tus of that subshell.)108 132 R .263(If that function is not de\ +.263(tus of that subshell.)108 249.6 R .263(If that function is not de\ \214ned, the shell prints an error message and returns an e)5.263 F .263 -(xit sta-)-.15 F(tus of 127.)108 144 Q 1.089(If the search is successfu\ -l, or if the command name contains one or more slashes, the shell e)108 -160.8 R -.15(xe)-.15 G 1.09(cutes the).15 F .198 -(named program in a separate e)108 172.8 R -.15(xe)-.15 G .198 +(xit sta-)-.15 F(tus of 127.)108 261.6 Q 1.089(If the search is success\ +ful, or if the command name contains one or more slashes, the shell e) +108 278.4 R -.15(xe)-.15 G 1.09(cutes the).15 F .198 +(named program in a separate e)108 290.4 R -.15(xe)-.15 G .198 (cution en).15 F 2.698(vironment. Ar)-.4 F .198 (gument 0 is set to the name gi)-.18 F -.15(ve)-.25 G .197 -(n, and the remain-).15 F(ing ar)108 184.8 Q +(n, and the remain-).15 F(ing ar)108 302.4 Q (guments to the command are set to the ar)-.18 E(guments gi)-.18 E -.15 -(ve)-.25 G(n, if an).15 E -.65(y.)-.15 G 1.048(If this e)108 201.6 R +(ve)-.25 G(n, if an).15 E -.65(y.)-.15 G 1.048(If this e)108 319.2 R -.15(xe)-.15 G 1.048(cution f).15 F 1.048 (ails because the \214le is not in e)-.1 F -.15(xe)-.15 G 1.049 (cutable format, and the \214le is not a directory).15 F 3.549(,i)-.65 G 3.549(ti)-3.549 G 3.549(sa)-3.549 G(s-)-3.549 E .043(sumed to be a)108 -213.6 R/F3 10/Times-Italic@0 SF .043(shell script)2.543 F F0 2.543 +331.2 R/F5 10/Times-Italic@0 SF .043(shell script)2.543 F F0 2.543 (,a\214)C .043(le containing shell commands.)-2.543 F 2.543(As)5.043 G .042(ubshell is spa)-2.543 F .042(wned to e)-.15 F -.15(xe)-.15 G .042 (cute it.).15 F .042(This sub-)5.042 F .274 -(shell reinitializes itself, so that the ef)108 225.6 R .274 +(shell reinitializes itself, so that the ef)108 343.2 R .274 (fect is as if a ne)-.25 F 2.774(ws)-.25 G .274(hell had been in)-2.774 F -.2(vo)-.4 G -.1(ke).2 G 2.775(dt).1 G 2.775(oh)-2.775 G .275 -(andle the script, with the)-2.775 F -.15(ex)108 237.6 S 2.358 +(andle the script, with the)-2.775 F -.15(ex)108 355.2 S 2.358 (ception that the locations of commands remembered by the parent \(see) -.15 F F2(hash)4.857 E F0(belo)4.857 E 4.857(wu)-.25 G(nder)-4.857 E F1 -(SHELL)4.857 E -.09(BU)108 249.6 S(IL).09 E(TIN COMMANDS)-.828 E/F4 9 -/Times-Roman@0 SF(\))A F0(are retained by the child.)2.25 E .347 -(If the program is a \214le be)108 266.4 R .347(ginning with)-.15 F F2 -(#!)2.847 E F0 2.847(,t)C .348(he remainder of the \214rst line speci\ -\214es an interpreter for the pro-)-2.847 F 3.178(gram. The)108 278.4 R -.678(shell e)3.178 F -.15(xe)-.15 G .678(cutes the speci\214ed interpre\ -ter on operating systems that do not handle this e).15 F -.15(xe)-.15 G -(cutable).15 E .206(format themselv)108 290.4 R 2.706(es. The)-.15 F(ar) -2.706 E .206(guments to the interpreter consist of a single optional ar) --.18 F .206(gument follo)-.18 F .206(wing the in-)-.25 F .268 -(terpreter name on the \214rst line of the program, follo)108 302.4 R -.267(wed by the name of the program, follo)-.25 F .267(wed by the com-) --.25 F(mand ar)108 314.4 Q(guments, if an)-.18 E -.65(y.)-.15 G/F5 10.95 -/Times-Bold@0 SF(COMMAND EXECUTION ENVIR)72 331.2 Q(ONMENT)-.329 E F0 -(The shell has an)108 343.2 Q F3 -.2(ex)2.5 G(ecution en).2 E(vir)-.4 E -(onment)-.45 E F0 2.5(,w)C(hich consists of the follo)-2.5 E(wing:)-.25 -E<83>108 360 Q 1.405(open \214les inherited by the shell at in)144 360 R --.2(vo)-.4 G 1.406 -(cation, as modi\214ed by redirections supplied to the).2 F F2(exec) -3.906 E F0 -.2(bu)144 372 S(iltin).2 E<83>108 388.8 Q(the current w)144 -388.8 Q(orking directory as set by)-.1 E F2(cd)2.5 E F0(,)A F2(pushd)2.5 -E F0 2.5(,o)C(r)-2.5 E F2(popd)2.5 E F0 2.5(,o)C 2.5(ri)-2.5 G -(nherited by the shell at in)-2.5 E -.2(vo)-.4 G(cation).2 E<83>108 -405.6 Q(the \214le creation mode mask as set by)144 405.6 Q F2(umask)2.5 -E F0(or inherited from the shell')2.5 E 2.5(sp)-.55 G(arent)-2.5 E<83> -108 422.4 Q(current traps set by)144 422.4 Q F2(trap)2.5 E F0<83>108 -439.2 Q .257(shell parameters that are set by v)144 439.2 R .256 -(ariable assignment or with)-.25 F F2(set)2.756 E F0 .256 +.15 F F4(hash)4.857 E F0(belo)4.857 E 4.857(wu)-.25 G(nder)-4.857 E F2 +(SHELL)4.857 E -.09(BU)108 367.2 S(IL).09 E(TIN COMMANDS)-.828 E F3(\))A +F0(are retained by the child.)2.25 E .347(If the program is a \214le be) +108 384 R .347(ginning with)-.15 F F4(#!)2.847 E F0 2.847(,t)C .348(he \ +remainder of the \214rst line speci\214es an interpreter for the pro-) +-2.847 F 3.178(gram. The)108 396 R .678(shell e)3.178 F -.15(xe)-.15 G +.678(cutes the speci\214ed interpreter on operating systems that do not\ + handle this e).15 F -.15(xe)-.15 G(cutable).15 E .206(format themselv) +108 408 R 2.706(es. The)-.15 F(ar)2.706 E .206 +(guments to the interpreter consist of a single optional ar)-.18 F .206 +(gument follo)-.18 F .206(wing the in-)-.25 F .268 +(terpreter name on the \214rst line of the program, follo)108 420 R .267 +(wed by the name of the program, follo)-.25 F .267(wed by the com-)-.25 +F(mand ar)108 432 Q(guments, if an)-.18 E -.65(y.)-.15 G F1 +(COMMAND EXECUTION ENVIR)72 448.8 Q(ONMENT)-.329 E F0(The shell has an) +108 460.8 Q F5 -.2(ex)2.5 G(ecution en).2 E(vir)-.4 E(onment)-.45 E F0 +2.5(,w)C(hich consists of the follo)-2.5 E(wing:)-.25 E<83>108 477.6 Q +1.405(open \214les inherited by the shell at in)144 477.6 R -.2(vo)-.4 G +1.406(cation, as modi\214ed by redirections supplied to the).2 F F4 +(exec)3.906 E F0 -.2(bu)144 489.6 S(iltin).2 E<83>108 506.4 Q +(the current w)144 506.4 Q(orking directory as set by)-.1 E F4(cd)2.5 E +F0(,)A F4(pushd)2.5 E F0 2.5(,o)C(r)-2.5 E F4(popd)2.5 E F0 2.5(,o)C 2.5 +(ri)-2.5 G(nherited by the shell at in)-2.5 E -.2(vo)-.4 G(cation).2 E +<83>108 523.2 Q(the \214le creation mode mask as set by)144 523.2 Q F4 +(umask)2.5 E F0(or inherited from the shell')2.5 E 2.5(sp)-.55 G(arent) +-2.5 E<83>108 540 Q(current traps set by)144 540 Q F4(trap)2.5 E F0<83> +108 556.8 Q .257(shell parameters that are set by v)144 556.8 R .256 +(ariable assignment or with)-.25 F F4(set)2.756 E F0 .256 (or inherited from the shell')2.756 F 2.756(sp)-.55 G(arent)-2.756 E -(in the en)144 451.2 Q(vironment)-.4 E<83>108 468 Q -(shell functions de\214ned during e)144 468 Q -.15(xe)-.15 G +(in the en)144 568.8 Q(vironment)-.4 E<83>108 585.6 Q +(shell functions de\214ned during e)144 585.6 Q -.15(xe)-.15 G (cution or inherited from the shell').15 E 2.5(sp)-.55 G -(arent in the en)-2.5 E(vironment)-.4 E<83>108 484.8 Q -(options enabled at in)144 484.8 Q -.2(vo)-.4 G(cation \(either by def) -.2 E(ault or with command-line ar)-.1 E(guments\) or by)-.18 E F2(set) -2.5 E F0<83>108 501.6 Q(options enabled by)144 501.6 Q F2(shopt)2.5 E F0 -<83>108 518.4 Q(shell aliases de\214ned with)144 518.4 Q F2(alias)2.5 E -F0<83>108 535.2 Q -.25(va)144 535.2 S +(arent in the en)-2.5 E(vironment)-.4 E<83>108 602.4 Q +(options enabled at in)144 602.4 Q -.2(vo)-.4 G(cation \(either by def) +.2 E(ault or with command-line ar)-.1 E(guments\) or by)-.18 E F4(set) +2.5 E F0<83>108 619.2 Q(options enabled by)144 619.2 Q F4(shopt)2.5 E F0 +<83>108 636 Q(shell aliases de\214ned with)144 636 Q F4(alias)2.5 E F0 +<83>108 652.8 Q -.25(va)144 652.8 S (rious process IDs, including those of background jobs, the v).25 E -(alue of)-.25 E F2($$)2.5 E F0 2.5(,a)C(nd the v)-2.5 E(alue of)-.25 E -F1(PPID)2.5 E F0 .426(When a simple command other than a b)108 552 R +(alue of)-.25 E F4($$)2.5 E F0 2.5(,a)C(nd the v)-2.5 E(alue of)-.25 E +F2(PPID)2.5 E F0 .426(When a simple command other than a b)108 669.6 R .427(uiltin or shell function is to be e)-.2 F -.15(xe)-.15 G .427 (cuted, it is in).15 F -.2(vo)-.4 G -.1(ke).2 G 2.927(di).1 G 2.927(nas) --2.927 G(eparate)-2.927 E -.15(exe)108 564 S .134(cution en).15 F .134 +-2.927 G(eparate)-2.927 E -.15(exe)108 681.6 S .134(cution en).15 F .134 (vironment that consists of the follo)-.4 F 2.634(wing. Unless)-.25 F .133(otherwise noted, the v)2.634 F .133(alues are inherited from)-.25 F -(the shell.)108 576 Q<83>108 592.8 Q 1.055(the shell')144 592.8 R 3.555 -(so)-.55 G 1.055(pen \214les, plus an)-3.555 F 3.556(ym)-.15 G 1.056 +(the shell.)108 693.6 Q<83>108 710.4 Q 1.055(the shell')144 710.4 R +3.555(so)-.55 G 1.055(pen \214les, plus an)-3.555 F 3.556(ym)-.15 G +1.056 (odi\214cations and additions speci\214ed by redirections to the com-) --3.556 F(mand)144 604.8 Q<83>108 621.6 Q(the current w)144 621.6 Q -(orking directory)-.1 E<83>108 638.4 Q(the \214le creation mode mask)144 -638.4 Q<83>108 655.2 Q .857(shell v)144 655.2 R .857 -(ariables and functions mark)-.25 F .857(ed for e)-.1 F .857 -(xport, along with v)-.15 F .857(ariables e)-.25 F .857 -(xported for the command,)-.15 F(passed in the en)144 667.2 Q(vironment) --.4 E<83>108 684 Q .306(traps caught by the shell are reset to the v)144 -684 R .307(alues inherited from the shell')-.25 F 2.807(sp)-.55 G .307 -(arent, and traps ignored)-2.807 F(by the shell are ignored)144 696 Q -2.5(Ac)108 712.8 S(ommand in)-2.5 E -.2(vo)-.4 G -.1(ke).2 G 2.5(di).1 G -2.5(nt)-2.5 G(his separate en)-2.5 E(vironment cannot af)-.4 E -(fect the shell')-.25 E 2.5(se)-.55 G -.15(xe)-2.65 G(cution en).15 E -(vironment.)-.4 E .577(Command substitution, commands grouped with pare\ -ntheses, and asynchronous commands are in)108 729.6 R -.2(vo)-.4 G -.1 -(ke).2 G 3.077(di).1 G(n)-3.077 E(GNU Bash 5.0)72 768 Q(2019 No)136.385 -E -.15(ve)-.15 G(mber 26).15 E(35)185.545 E 0 Cg EP +-3.556 F(mand)144 722.4 Q(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E +(35)190.95 E 0 Cg EP %%Page: 36 36 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 2.744(as)108 84 S -.244(ubshell en)-2.744 F .244 -(vironment that is a duplicate of the shell en)-.4 F .245(vironment, e) --.4 F .245(xcept that traps caught by the shell are)-.15 F .359 -(reset to the v)108 96 R .358 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E<83>108 84 Q +(the current w)144 84 Q(orking directory)-.1 E<83>108 100.8 Q +(the \214le creation mode mask)144 100.8 Q<83>108 117.6 Q .857(shell v) +144 117.6 R .857(ariables and functions mark)-.25 F .857(ed for e)-.1 F +.857(xport, along with v)-.15 F .857(ariables e)-.25 F .857 +(xported for the command,)-.15 F(passed in the en)144 129.6 Q(vironment) +-.4 E<83>108 146.4 Q .306(traps caught by the shell are reset to the v) +144 146.4 R .307(alues inherited from the shell')-.25 F 2.807(sp)-.55 G +.307(arent, and traps ignored)-2.807 F(by the shell are ignored)144 +158.4 Q 2.5(Ac)108 175.2 S(ommand in)-2.5 E -.2(vo)-.4 G -.1(ke).2 G 2.5 +(di).1 G 2.5(nt)-2.5 G(his separate en)-2.5 E(vironment cannot af)-.4 E +(fect the shell')-.25 E 2.5(se)-.55 G -.15(xe)-2.65 G(cution en).15 E +(vironment.)-.4 E .577(Command substitution, commands grouped with pare\ +ntheses, and asynchronous commands are in)108 192 R -.2(vo)-.4 G -.1(ke) +.2 G 3.077(di).1 G(n)-3.077 E 2.744(as)108 204 S .244(ubshell en)-2.744 +F .244(vironment that is a duplicate of the shell en)-.4 F .245 +(vironment, e)-.4 F .245(xcept that traps caught by the shell are)-.15 F +.359(reset to the v)108 216 R .358 (alues that the shell inherited from its parent at in)-.25 F -.2(vo)-.4 G 2.858(cation. Builtin).2 F .358(commands that are in)2.858 F -.2(vo) --.4 G -.1(ke).2 G(d).1 E .856(as part of a pipeline are also e)108 108 R +-.4 G -.1(ke).2 G(d).1 E .856(as part of a pipeline are also e)108 228 R -.15(xe)-.15 G .856(cuted in a subshell en).15 F 3.357 (vironment. Changes)-.4 F .857(made to the subshell en)3.357 F(viron-) --.4 E(ment cannot af)108 120 Q(fect the shell')-.25 E 2.5(se)-.55 G -.15 +-.4 E(ment cannot af)108 240 Q(fect the shell')-.25 E 2.5(se)-.55 G -.15 (xe)-2.65 G(cution en).15 E(vironment.)-.4 E 1.377(Subshells spa)108 -136.8 R 1.377(wned to e)-.15 F -.15(xe)-.15 G 1.377 +256.8 R 1.377(wned to e)-.15 F -.15(xe)-.15 G 1.377 (cute command substitutions inherit the v).15 F 1.377(alue of the)-.25 F /F1 10/Times-Bold@0 SF3.876 E F0 1.376(option from the parent) -3.876 F 2.5(shell. When)108 148.8 R(not in)2.5 E/F2 10/Times-Italic@0 SF +3.876 F 2.5(shell. When)108 268.8 R(not in)2.5 E/F2 10/Times-Italic@0 SF (posix mode)2.5 E F0(,)A F1(bash)2.5 E F0(clears the)2.5 E F12.5 E -F0(option in such subshells.)2.5 E .404(If a command is follo)108 165.6 +F0(option in such subshells.)2.5 E .404(If a command is follo)108 285.6 R .404(wed by a)-.25 F F1(&)2.904 E F0 .405(and job control is not acti) 2.904 F -.15(ve)-.25 G 2.905(,t).15 G .405(he def)-2.905 F .405 (ault standard input for the command)-.1 F .198(is the empty \214le)108 -177.6 R F2(/de)2.698 E(v/null)-.15 E F0 5.198(.O)C .198 +297.6 R F2(/de)2.698 E(v/null)-.15 E F0 5.198(.O)C .198 (therwise, the in)-5.198 F -.2(vo)-.4 G -.1(ke).2 G 2.698(dc).1 G .197 (ommand inherits the \214le descriptors of the calling shell)-2.698 F -(as modi\214ed by redirections.)108 189.6 Q/F3 10.95/Times-Bold@0 SF -(ENVIR)72 206.4 Q(ONMENT)-.329 E F0 2.343(When a program is in)108 218.4 +(as modi\214ed by redirections.)108 309.6 Q/F3 10.95/Times-Bold@0 SF +(ENVIR)72 326.4 Q(ONMENT)-.329 E F0 2.343(When a program is in)108 338.4 R -.2(vo)-.4 G -.1(ke).2 G 4.843(di).1 G 4.843(ti)-4.843 G 4.843(sg) -4.843 G -2.15 -.25(iv e)-4.843 H 4.843(na).25 G 4.843(na)-4.843 G 2.343 (rray of strings called the)-4.843 F F2(en)5.033 E(vir)-.4 E(onment)-.45 -E F0 7.343(.T).68 G 2.344(his is a list of)-7.343 F F2(name)108 230.4 Q +E F0 7.343(.T).68 G 2.344(his is a list of)-7.343 F F2(name)108 350.4 Q F0A F2(value)A F0(pairs, of the form)2.5 E F2(name)2.86 E F0(=)A F2 -(value)A F0(.).18 E .439(The shell pro)108 247.2 R .438(vides se)-.15 F +(value)A F0(.).18 E .439(The shell pro)108 367.2 R .438(vides se)-.15 F -.15(ve)-.25 G .438(ral w).15 F .438(ays to manipulate the en)-.1 F 2.938(vironment. On)-.4 F(in)2.938 E -.2(vo)-.4 G .438 (cation, the shell scans its o).2 F .438(wn en-)-.25 F .709(vironment a\ nd creates a parameter for each name found, automatically marking it fo\ -r)108 259.2 R F2 -.2(ex)3.209 G(port).2 E F0 .709(to child pro-)3.889 F -2.704(cesses. Ex)108 271.2 R .203(ecuted commands inherit the en)-.15 F +r)108 379.2 R F2 -.2(ex)3.209 G(port).2 E F0 .709(to child pro-)3.889 F +2.704(cesses. Ex)108 391.2 R .203(ecuted commands inherit the en)-.15 F 2.703(vironment. The)-.4 F F1(export)2.703 E F0(and)2.703 E F1(declar) 2.703 E 2.703<65ad>-.18 G(x)-2.703 E F0 .203(commands allo)2.703 F 2.703 (wp)-.25 G(aram-)-2.703 E .332 -(eters and functions to be added to and deleted from the en)108 283.2 R +(eters and functions to be added to and deleted from the en)108 403.2 R 2.832(vironment. If)-.4 F .332(the v)2.832 F .332 (alue of a parameter in the en-)-.25 F .132 -(vironment is modi\214ed, the ne)108 295.2 R 2.632(wv)-.25 G .131 +(vironment is modi\214ed, the ne)108 415.2 R 2.632(wv)-.25 G .131 (alue becomes part of the en)-2.882 F .131 (vironment, replacing the old.)-.4 F .131(The en)5.131 F(vironment)-.4 E -.32(inherited by an)108 307.2 R 2.82(ye)-.15 G -.15(xe)-2.97 G .321 +.32(inherited by an)108 427.2 R 2.82(ye)-.15 G -.15(xe)-2.97 G .321 (cuted command consists of the shell').15 F 2.821(si)-.55 G .321 (nitial en)-2.821 F .321(vironment, whose v)-.4 F .321 -(alues may be modi-)-.25 F .534(\214ed in the shell, less an)108 319.2 R +(alues may be modi-)-.25 F .534(\214ed in the shell, less an)108 439.2 R 3.034(yp)-.15 G .534(airs remo)-3.034 F -.15(ve)-.15 G 3.034(db).15 G 3.034(yt)-3.034 G(he)-3.034 E F1(unset)3.034 E F0 .534(command, plus an) 3.034 F 3.033(ya)-.15 G .533(dditions via the)-3.033 F F1(export)3.033 E -F0(and)3.033 E F1(de-)3.033 E(clar)108 331.2 Q 2.5<65ad>-.18 G(x)-2.5 E -F0(commands.)2.5 E .562(The en)108 348 R .562(vironment for an)-.4 F(y) +F0(and)3.033 E F1(de-)3.033 E(clar)108 451.2 Q 2.5<65ad>-.18 G(x)-2.5 E +F0(commands.)2.5 E .562(The en)108 468 R .562(vironment for an)-.4 F(y) -.15 E F2 .562(simple command)3.402 F F0 .563 (or function may be augmented temporarily by pre\214xing it with)3.833 F -.203(parameter assignments, as described abo)108 360 R .502 -.15(ve i) +.203(parameter assignments, as described abo)108 480 R .502 -.15(ve i) -.15 H(n).15 E/F4 9/Times-Bold@0 SF -.666(PA)2.702 G(RAMETERS).666 E/F5 9/Times-Roman@0 SF(.)A F0 .202(These assignment statements af)4.702 F -.202(fect only the)-.25 F(en)108 372 Q(vironment seen by that command.) --.4 E .81(If the)108 388.8 R F13.31 E F0 .81 +.202(fect only the)-.25 F(en)108 492 Q(vironment seen by that command.) +-.4 E .81(If the)108 508.8 R F13.31 E F0 .81 (option is set \(see the)3.31 F F1(set)3.31 E F0 -.2(bu)3.31 G .81 (iltin command belo).2 F .81(w\), then)-.25 F F2(all)3.64 E F0 .81 -(parameter assignments are placed in)3.82 F(the en)108 400.8 Q +(parameter assignments are placed in)3.82 F(the en)108 520.8 Q (vironment for a command, not just those that precede the command name.) --.4 E(When)108 417.6 Q F1(bash)3.586 E F0(in)3.586 E -.2(vo)-.4 G -.1 +-.4 E(When)108 537.6 Q F1(bash)3.586 E F0(in)3.586 E -.2(vo)-.4 G -.1 (ke).2 G 3.586(sa).1 G 3.586(ne)-3.586 G 1.086(xternal command, the v) -3.736 F(ariable)-.25 E F1(_)3.586 E F0 1.085 (is set to the full \214lename of the command and)3.586 F -(passed to that command in its en)108 429.6 Q(vironment.)-.4 E F3 -(EXIT ST)72 446.4 Q -1.04(AT)-.986 G(US)1.04 E F0 .15(The e)108 458.4 R +(passed to that command in its en)108 549.6 Q(vironment.)-.4 E F3 +(EXIT ST)72 566.4 Q -1.04(AT)-.986 G(US)1.04 E F0 .15(The e)108 578.4 R .15(xit status of an e)-.15 F -.15(xe)-.15 G .15(cuted command is the v) .15 F .151(alue returned by the)-.25 F F2(waitpid)2.651 E F0 .151 (system call or equi)2.651 F -.25(va)-.25 G .151(lent func-).25 F 2.848 -(tion. Exit)108 470.4 R .348(statuses f)2.848 F .347 +(tion. Exit)108 590.4 R .348(statuses f)2.848 F .347 (all between 0 and 255, though, as e)-.1 F .347(xplained belo)-.15 F 1.647 -.65(w, t)-.25 H .347(he shell may use v).65 F .347(alues abo)-.25 -F .647 -.15(ve 1)-.15 H(25).15 E(specially)108 482.4 Q 5.506(.E)-.65 G +F .647 -.15(ve 1)-.15 H(25).15 E(specially)108 602.4 Q 5.506(.E)-.65 G .506(xit statuses from shell b)-5.506 F .507 (uiltins and compound commands are also limited to this range.)-.2 F (Under)5.507 E(certain circumstances, the shell will use special v)108 -494.4 Q(alues to indicate speci\214c f)-.25 E(ailure modes.)-.1 E -.15 -(Fo)108 511.2 S 3.373(rt).15 G .873(he shell')-3.373 F 3.373(sp)-.55 G +614.4 Q(alues to indicate speci\214c f)-.25 E(ailure modes.)-.1 E -.15 +(Fo)108 631.2 S 3.373(rt).15 G .873(he shell')-3.373 F 3.373(sp)-.55 G .873(urposes, a command which e)-3.373 F .873(xits with a zero e)-.15 F .873(xit status has succeeded.)-.15 F .872(An e)5.872 F .872 -(xit status of)-.15 F .048(zero indicates success.)108 523.2 R 2.548(An) +(xit status of)-.15 F .048(zero indicates success.)108 643.2 R 2.548(An) 5.048 G .049(on-zero e)-2.548 F .049(xit status indicates f)-.15 F 2.549 (ailure. When)-.1 F 2.549(ac)2.549 G .049(ommand terminates on a f) --2.549 F .049(atal sig-)-.1 F(nal)108 535.2 Q F2(N)2.5 E F0(,)A F1(bash) +-2.549 F .049(atal sig-)-.1 F(nal)108 655.2 Q F2(N)2.5 E F0(,)A F1(bash) 2.5 E F0(uses the v)2.5 E(alue of 128+)-.25 E F2(N)A F0(as the e)2.5 E (xit status.)-.15 E .405 -(If a command is not found, the child process created to e)108 552 R +(If a command is not found, the child process created to e)108 672 R -.15(xe)-.15 G .404(cute it returns a status of 127.).15 F .404 -(If a command is)5.404 F(found b)108 564 Q(ut is not e)-.2 E -.15(xe) --.15 G(cutable, the return status is 126.).15 E(If a command f)108 580.8 +(If a command is)5.404 F(found b)108 684 Q(ut is not e)-.2 E -.15(xe) +-.15 G(cutable, the return status is 126.).15 E(If a command f)108 700.8 Q(ails because of an error during e)-.1 E (xpansion or redirection, the e)-.15 E(xit status is greater than zero.) --.15 E .08(Shell b)108 597.6 R .08 +-.15 E .08(Shell b)108 717.6 R .08 (uiltin commands return a status of 0 \()-.2 F F2(true)A F0 2.581(\)i)C 2.581(fs)-2.581 G .081(uccessful, and non-zero \()-2.581 F F2(false)A F0 2.581(\)i)C 2.581(fa)-2.581 G 2.581(ne)-2.581 G .081(rror occurs while) --2.581 F(the)108 609.6 Q 2.968(ye)-.15 G -.15(xe)-3.118 G 2.968 +-2.581 F(the)108 729.6 Q 2.968(ye)-.15 G -.15(xe)-3.118 G 2.968 (cute. All).15 F -.2(bu)2.968 G .468(iltins return an e).2 F .468 (xit status of 2 to indicate incorrect usage, generally in)-.15 F -.25 -(va)-.4 G .467(lid options or).25 F(missing ar)108 621.6 Q(guments.)-.18 -E F1(Bash)108 638.4 Q F0 .201(itself returns the e)2.701 F .202 -(xit status of the last command e)-.15 F -.15(xe)-.15 G .202 -(cuted, unless a syntax error occurs, in which case).15 F(it e)108 650.4 -Q(xits with a non-zero v)-.15 E 2.5(alue. See)-.25 F(also the)2.5 E F1 -(exit)2.5 E F0 -.2(bu)2.5 G(iltin command belo).2 E -.65(w.)-.25 G F3 -(SIGN)72 667.2 Q(ALS)-.219 E F0(When)108 679.2 Q F1(bash)2.503 E F0 .002 -(is interacti)2.502 F -.15(ve)-.25 G 2.502(,i).15 G 2.502(nt)-2.502 G -.002(he absence of an)-2.502 F 2.502(yt)-.15 G .002(raps, it ignores) --2.502 F F4(SIGTERM)2.502 E F0 .002(\(so that)2.252 F F1 .002(kill 0) -2.502 F F0 .002(does not kill an in-)2.502 F(teracti)108 691.2 Q 1.215 --.15(ve s)-.25 H .915(hell\), and).15 F F4(SIGINT)3.415 E F0 .915 -(is caught and handled \(so that the)3.165 F F1(wait)3.415 E F0 -.2(bu) -3.416 G .916(iltin is interruptible\).).2 F .916(In all cases,)5.916 F -F1(bash)108 703.2 Q F0(ignores)2.5 E F4(SIGQ)2.5 E(UIT)-.09 E F5(.)A F0 -(If job control is in ef)4.5 E(fect,)-.25 E F1(bash)2.5 E F0(ignores)2.5 -E F4(SIGTTIN)2.5 E F5(,)A F4(SIGTT)2.25 E(OU)-.162 E F5(,)A F0(and)2.25 -E F4(SIGTSTP)2.5 E F5(.)A F0(Non-b)108 720 Q 1.065 -(uiltin commands run by)-.2 F F1(bash)3.565 E F0(ha)3.565 E 1.365 -.15 -(ve s)-.2 H 1.065(ignal handlers set to the v).15 F 1.064 -(alues inherited by the shell from its)-.25 F(GNU Bash 5.0)72 768 Q -(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(36)185.545 E 0 Cg EP +(va)-.4 G .467(lid options or).25 F(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(36)190.95 E 0 Cg EP %%Page: 37 37 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 3.247 -(parent. When)108 84 R .747(job control is not in ef)3.247 F .747 -(fect, asynchronous commands ignore)-.25 F/F1 9/Times-Bold@0 SF(SIGINT) -3.248 E F0(and)2.998 E F1(SIGQ)3.248 E(UIT)-.09 E F0 .748(in addi-)2.998 -F .653(tion to these inherited handlers.)108 96 R .653 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(missing ar)108 84 +Q(guments.)-.18 E/F1 10/Times-Bold@0 SF(Bash)108 100.8 Q F0 .201 +(itself returns the e)2.701 F .202(xit status of the last command e)-.15 +F -.15(xe)-.15 G .202 +(cuted, unless a syntax error occurs, in which case).15 F(it e)108 112.8 +Q(xits with a non-zero v)-.15 E 2.5(alue. See)-.25 F(also the)2.5 E F1 +(exit)2.5 E F0 -.2(bu)2.5 G(iltin command belo).2 E -.65(w.)-.25 G/F2 +10.95/Times-Bold@0 SF(SIGN)72 129.6 Q(ALS)-.219 E F0(When)108 141.6 Q F1 +(bash)2.503 E F0 .002(is interacti)2.502 F -.15(ve)-.25 G 2.502(,i).15 G +2.502(nt)-2.502 G .002(he absence of an)-2.502 F 2.502(yt)-.15 G .002 +(raps, it ignores)-2.502 F/F3 9/Times-Bold@0 SF(SIGTERM)2.502 E F0 .002 +(\(so that)2.252 F F1 .002(kill 0)2.502 F F0 .002(does not kill an in-) +2.502 F(teracti)108 153.6 Q 1.215 -.15(ve s)-.25 H .915(hell\), and).15 +F F3(SIGINT)3.415 E F0 .915(is caught and handled \(so that the)3.165 F +F1(wait)3.415 E F0 -.2(bu)3.416 G .916(iltin is interruptible\).).2 F +.916(In all cases,)5.916 F F1(bash)108 165.6 Q F0(ignores)2.5 E F3(SIGQ) +2.5 E(UIT)-.09 E/F4 9/Times-Roman@0 SF(.)A F0(If job control is in ef) +4.5 E(fect,)-.25 E F1(bash)2.5 E F0(ignores)2.5 E F3(SIGTTIN)2.5 E F4(,) +A F3(SIGTT)2.25 E(OU)-.162 E F4(,)A F0(and)2.25 E F3(SIGTSTP)2.5 E F4(.) +A F0(Non-b)108 182.4 Q 1.065(uiltin commands run by)-.2 F F1(bash)3.565 +E F0(ha)3.565 E 1.365 -.15(ve s)-.2 H 1.065(ignal handlers set to the v) +.15 F 1.064(alues inherited by the shell from its)-.25 F 3.247 +(parent. When)108 194.4 R .747(job control is not in ef)3.247 F .747 +(fect, asynchronous commands ignore)-.25 F F3(SIGINT)3.248 E F0(and) +2.998 E F3(SIGQ)3.248 E(UIT)-.09 E F0 .748(in addi-)2.998 F .653 +(tion to these inherited handlers.)108 206.4 R .653 (Commands run as a result of command substitution ignore the k)5.653 F --.15(ey)-.1 G(board-).15 E(generated job control signals)108 108 Q F1 -(SIGTTIN)2.5 E/F2 9/Times-Roman@0 SF(,)A F1(SIGTT)2.25 E(OU)-.162 E F2 -(,)A F0(and)2.25 E F1(SIGTSTP)2.5 E F2(.)A F0 2.045(The shell e)108 -124.8 R 2.045(xits by def)-.15 F 2.045(ault upon receipt of a)-.1 F F1 -(SIGHUP)4.545 E F2(.)A F0 2.045(Before e)6.545 F 2.045 -(xiting, an interacti)-.15 F 2.346 -.15(ve s)-.25 H 2.046 -(hell resends the).15 F F1(SIGHUP)108 136.8 Q F0 1.005 -(to all jobs, running or stopped.)3.255 F 1.004(Stopped jobs are sent) -6.005 F F1(SIGCONT)3.504 E F0 1.004(to ensure that the)3.254 F 3.504(yr) --.15 G(ecei)-3.504 E 1.304 -.15(ve t)-.25 H(he).15 E F1(SIGHUP)108 148.8 -Q F2(.)A F0 2.529 -.8(To p)5.429 H(re).8 E -.15(ve)-.25 G .93(nt the sh\ -ell from sending the signal to a particular job, it should be remo).15 F --.15(ve)-.15 G 3.43(df).15 G .93(rom the)-3.43 F 1.357 -(jobs table with the)108 160.8 R/F3 10/Times-Bold@0 SF(diso)3.857 E(wn) --.1 E F0 -.2(bu)3.857 G 1.357(iltin \(see).2 F F1 1.356(SHELL B)3.856 F -(UIL)-.09 E 1.356(TIN COMMANDS)-.828 F F0(belo)3.606 E 1.356 -(w\) or mark)-.25 F 1.356(ed to not recei)-.1 F -.15(ve)-.25 G F1 -(SIGHUP)108 172.8 Q F0(using)2.25 E F3(diso)2.5 E(wn \255h)-.1 E F0(.)A -.166(If the)108 189.6 R F3(huponexit)2.666 E F0 .166 -(shell option has been set with)2.666 F F3(shopt)2.666 E F0(,)A F3(bash) -2.666 E F0 .166(sends a)2.666 F F1(SIGHUP)2.666 E F0 .166 +-.15(ey)-.1 G(board-).15 E(generated job control signals)108 218.4 Q F3 +(SIGTTIN)2.5 E F4(,)A F3(SIGTT)2.25 E(OU)-.162 E F4(,)A F0(and)2.25 E F3 +(SIGTSTP)2.5 E F4(.)A F0 2.045(The shell e)108 235.2 R 2.045 +(xits by def)-.15 F 2.045(ault upon receipt of a)-.1 F F3(SIGHUP)4.545 E +F4(.)A F0 2.045(Before e)6.545 F 2.045(xiting, an interacti)-.15 F 2.346 +-.15(ve s)-.25 H 2.046(hell resends the).15 F F3(SIGHUP)108 247.2 Q F0 +1.005(to all jobs, running or stopped.)3.255 F 1.004 +(Stopped jobs are sent)6.005 F F3(SIGCONT)3.504 E F0 1.004 +(to ensure that the)3.254 F 3.504(yr)-.15 G(ecei)-3.504 E 1.304 -.15 +(ve t)-.25 H(he).15 E F3(SIGHUP)108 259.2 Q F4(.)A F0 2.529 -.8(To p) +5.429 H(re).8 E -.15(ve)-.25 G .93(nt the shell from sending the signal\ + to a particular job, it should be remo).15 F -.15(ve)-.15 G 3.43(df).15 +G .93(rom the)-3.43 F 1.357(jobs table with the)108 271.2 R F1(diso) +3.857 E(wn)-.1 E F0 -.2(bu)3.857 G 1.357(iltin \(see).2 F F3 1.356 +(SHELL B)3.856 F(UIL)-.09 E 1.356(TIN COMMANDS)-.828 F F0(belo)3.606 E +1.356(w\) or mark)-.25 F 1.356(ed to not recei)-.1 F -.15(ve)-.25 G F3 +(SIGHUP)108 283.2 Q F0(using)2.25 E F1(diso)2.5 E(wn \255h)-.1 E F0(.)A +.166(If the)108 300 R F1(huponexit)2.666 E F0 .166 +(shell option has been set with)2.666 F F1(shopt)2.666 E F0(,)A F1(bash) +2.666 E F0 .166(sends a)2.666 F F3(SIGHUP)2.666 E F0 .166 (to all jobs when an interacti)2.416 F -.15(ve)-.25 G(login shell e)108 -201.6 Q(xits.)-.15 E(If)108 218.4 Q F3(bash)3.047 E F0 .547(is w)3.047 F +312 Q(xits.)-.15 E(If)108 328.8 Q F1(bash)3.047 E F0 .547(is w)3.047 F .546(aiting for a command to complete and recei)-.1 F -.15(ve)-.25 G 3.046(sas).15 G .546(ignal for which a trap has been set, the trap) --3.046 F .662(will not be e)108 230.4 R -.15(xe)-.15 G .662 -(cuted until the command completes.).15 F(When)5.663 E F3(bash)3.163 E +-3.046 F .662(will not be e)108 340.8 R -.15(xe)-.15 G .662 +(cuted until the command completes.).15 F(When)5.663 E F1(bash)3.163 E F0 .663(is w)3.163 F .663(aiting for an asynchronous command)-.1 F .327 -(via the)108 242.4 R F3(wait)2.827 E F0 -.2(bu)2.827 G .327(iltin, the \ +(via the)108 352.8 R F1(wait)2.827 E F0 -.2(bu)2.827 G .327(iltin, the \ reception of a signal for which a trap has been set will cause the).2 F -F3(wait)2.826 E F0 -.2(bu)2.826 G .326(iltin to re-).2 F -(turn immediately with an e)108 254.4 Q +F1(wait)2.826 E F0 -.2(bu)2.826 G .326(iltin to re-).2 F +(turn immediately with an e)108 364.8 Q (xit status greater than 128, immediately after which the trap is e)-.15 -E -.15(xe)-.15 G(cuted.).15 E/F4 10.95/Times-Bold@0 SF(JOB CONTR)72 -271.2 Q(OL)-.329 E/F5 10/Times-Italic@0 SF -.25(Jo)108 283.2 S 3.368(bc) -.25 G(ontr)-3.368 E(ol)-.45 E F0 .868(refers to the ability to selecti) -3.878 F -.15(ve)-.25 G .868(ly stop \().15 F F5(suspend)A F0 3.368(\)t)C -.868(he e)-3.368 F -.15(xe)-.15 G .868 -(cution of processes and continue \().15 F F5 -.37(re)C(-).37 E(sume)108 -295.2 Q F0 2.665(\)t)C .165(heir e)-2.665 F -.15(xe)-.15 G .165 -(cution at a later point.).15 F 2.665(Au)5.165 G .165 +E -.15(xe)-.15 G(cuted.).15 E F2(JOB CONTR)72 381.6 Q(OL)-.329 E/F5 10 +/Times-Italic@0 SF -.25(Jo)108 393.6 S 3.368(bc).25 G(ontr)-3.368 E(ol) +-.45 E F0 .868(refers to the ability to selecti)3.878 F -.15(ve)-.25 G +.868(ly stop \().15 F F5(suspend)A F0 3.368(\)t)C .868(he e)-3.368 F +-.15(xe)-.15 G .868(cution of processes and continue \().15 F F5 -.37 +(re)C(-).37 E(sume)108 405.6 Q F0 2.665(\)t)C .165(heir e)-2.665 F -.15 +(xe)-.15 G .165(cution at a later point.).15 F 2.665(Au)5.165 G .165 (ser typically emplo)-2.665 F .165(ys this f)-.1 F .164 (acility via an interacti)-.1 F .464 -.15(ve i)-.25 H(nterf).15 E .164 -(ace sup-)-.1 F(plied jointly by the operating system k)108 307.2 Q +(ace sup-)-.1 F(plied jointly by the operating system k)108 417.6 Q (ernel')-.1 E 2.5(st)-.55 G(erminal dri)-2.5 E -.15(ve)-.25 G 2.5(ra).15 -G(nd)-2.5 E F3(bash)2.5 E F0(.)A .784(The shell associates a)108 324 R +G(nd)-2.5 E F1(bash)2.5 E F0(.)A .784(The shell associates a)108 434.4 R F5(job)5.024 E F0 .784(with each pipeline.)3.514 F .784(It k)5.784 F .785(eeps a table of currently e)-.1 F -.15(xe)-.15 G .785 -(cuting jobs, which may be).15 F .325(listed with the)108 336 R F3(jobs) -2.825 E F0 2.825(command. When)2.825 F F3(bash)2.825 E F0 .325 +(cuting jobs, which may be).15 F .325(listed with the)108 446.4 R F1 +(jobs)2.825 E F0 2.825(command. When)2.825 F F1(bash)2.825 E F0 .325 (starts a job asynchronously \(in the)2.825 F F5(bac)3.094 E(kgr)-.2 E -(ound)-.45 E F0 .324(\), it prints a line).77 F(that looks lik)108 348 Q -(e:)-.1 E([1] 25647)144 364.8 Q .241(indicating that this job is job nu\ -mber 1 and that the process ID of the last process in the pipeline asso\ -ciated)108 381.6 R .733(with this job is 25647.)108 393.6 R .732 +(ound)-.45 E F0 .324(\), it prints a line).77 F(that looks lik)108 458.4 +Q(e:)-.1 E([1] 25647)144 475.2 Q .241(indicating that this job is job n\ +umber 1 and that the process ID of the last process in the pipeline ass\ +ociated)108 492 R .733(with this job is 25647.)108 504 R .732 (All of the processes in a single pipeline are members of the same job) -5.733 F(.)-.4 E F3(Bash)5.732 E F0(uses)3.232 E(the)108 405.6 Q F5(job) +5.733 F(.)-.4 E F1(Bash)5.732 E F0(uses)3.232 E(the)108 516 Q F5(job) 4.24 E F0(abstraction as the basis for job control.)2.73 E 1.981 -.8 -(To f)108 422.4 T .382(acilitate the implementation of the user interf) +(To f)108 532.8 T .382(acilitate the implementation of the user interf) .7 F .382(ace to job control, the operating system maintains the no-)-.1 -F 1.538(tion of a)108 434.4 R F5(curr)4.038 E 1.538(ent terminal pr)-.37 +F 1.538(tion of a)108 544.8 R F5(curr)4.038 E 1.538(ent terminal pr)-.37 F 1.537(ocess gr)-.45 F 1.537(oup ID)-.45 F F0 6.537(.M)C 1.537 (embers of this process group \(processes whose process)-6.537 F .023 (group ID is equal to the current terminal process group ID\) recei)108 -446.4 R .323 -.15(ve k)-.25 H -.15(ey).05 G .023 -(board-generated signals such as).15 F F1(SIG-)2.523 E(INT)108 458.4 Q -F2(.)A F0 1.215(These processes are said to be in the)5.716 F F5(for) +556.8 R .323 -.15(ve k)-.25 H -.15(ey).05 G .023 +(board-generated signals such as).15 F F3(SIG-)2.523 E(INT)108 568.8 Q +F4(.)A F0 1.215(These processes are said to be in the)5.716 F F5(for) 5.685 E -.4(eg)-.37 G -.45(ro).4 G(und).45 E F0(.).77 E F5(Bac)6.795 E (kgr)-.2 E(ound)-.45 E F0 1.215(processes are those whose process)4.485 -F .145(group ID dif)108 470.4 R .145(fers from the terminal')-.25 F .146 +F .145(group ID dif)108 580.8 R .145(fers from the terminal')-.25 F .146 (s; such processes are immune to k)-.55 F -.15(ey)-.1 G .146 (board-generated signals.).15 F .146(Only fore-)5.146 F .16 -(ground processes are allo)108 482.4 R .16(wed to read from or)-.25 F +(ground processes are allo)108 592.8 R .16(wed to read from or)-.25 F 2.66(,i)-.4 G 2.66(ft)-2.66 G .16(he user so speci\214es with)-2.66 F/F6 10/Courier@0 SF .16(stty tostop)2.66 F F0 2.66(,w)C .16(rite to the ter) --2.66 F(-)-.2 E 3.051(minal. Background)108 494.4 R .551 +-2.66 F(-)-.2 E 3.051(minal. Background)108 604.8 R .551 (processes which attempt to read from \(write to when)3.051 F F6 .551 (stty tostop)3.051 F F0 .552(is in ef)3.052 F .552(fect\) the)-.25 F -.718(terminal are sent a)108 506.4 R F1 .718(SIGTTIN \(SIGTT)3.218 F +.718(terminal are sent a)108 616.8 R F3 .718(SIGTTIN \(SIGTT)3.218 F (OU\))-.162 E F0 .718(signal by the k)2.968 F(ernel')-.1 E 3.217(st)-.55 G .717(erminal dri)-3.217 F -.15(ve)-.25 G 1.517 -.4(r, w).15 H .717 -(hich, unless caught, sus-).4 F(pends the process.)108 518.4 Q 1.087 -(If the operating system on which)108 535.2 R F3(bash)3.587 E F0 1.088 -(is running supports job control,)3.588 F F3(bash)3.588 E F0 1.088 -(contains f)3.588 F 1.088(acilities to use it.)-.1 F -.8(Ty)108 547.2 S +(hich, unless caught, sus-).4 F(pends the process.)108 628.8 Q 1.087 +(If the operating system on which)108 645.6 R F1(bash)3.587 E F0 1.088 +(is running supports job control,)3.588 F F1(bash)3.588 E F0 1.088 +(contains f)3.588 F 1.088(acilities to use it.)-.1 F -.8(Ty)108 657.6 S .302(ping the).8 F F5(suspend)3.142 E F0 .302(character \(typically) -3.572 F F3(^Z)2.801 E F0 2.801(,C)C .301 +3.572 F F1(^Z)2.801 E F0 2.801(,C)C .301 (ontrol-Z\) while a process is running causes that process to be)-2.801 -F 2.142(stopped and returns control to)108 559.2 R F3(bash)4.642 E F0 +F 2.142(stopped and returns control to)108 669.6 R F1(bash)4.642 E F0 7.142(.T)C 2.142(yping the)-7.942 F F5 2.142(delayed suspend)4.992 F F0 -2.143(character \(typically)5.413 F F3(^Y)4.643 E F0 4.643(,C)C +2.143(character \(typically)5.413 F F1(^Y)4.643 E F0 4.643(,C)C (ontrol-Y\))-4.643 E .021(causes the process to be stopped when it atte\ mpts to read input from the terminal, and control to be returned)108 -571.2 R(to)108 583.2 Q F3(bash)3.392 E F0 5.892(.T)C .892 +681.6 R(to)108 693.6 Q F1(bash)3.392 E F0 5.892(.T)C .892 (he user may then manipulate the state of this job, using the)-5.892 F -F3(bg)3.392 E F0 .892(command to continue it in the)3.392 F .17 -(background, the)108 595.2 R F3(fg)2.67 E F0 .17 -(command to continue it in the fore)2.67 F .17(ground, or the)-.15 F F3 -(kill)2.67 E F0 .17(command to kill it.)2.67 F(A)5.17 E F3(^Z)2.67 E F0 -(tak)2.67 E .17(es ef-)-.1 F 1.418(fect immediately)108 607.2 R 3.918 +F1(bg)3.392 E F0 .892(command to continue it in the)3.392 F .17 +(background, the)108 705.6 R F1(fg)2.67 E F0 .17 +(command to continue it in the fore)2.67 F .17(ground, or the)-.15 F F1 +(kill)2.67 E F0 .17(command to kill it.)2.67 F(A)5.17 E F1(^Z)2.67 E F0 +(tak)2.67 E .17(es ef-)-.1 F 1.418(fect immediately)108 717.6 R 3.918 (,a)-.65 G 1.418(nd has the additional side ef)-3.918 F 1.418 (fect of causing pending output and typeahead to be dis-)-.25 F(carded.) -108 619.2 Q .777(There are a number of w)108 636 R .777 -(ays to refer to a job in the shell.)-.1 F .777(The character)5.777 F F3 -(%)3.277 E F0 .777(introduces a job speci\214cation)3.277 F(\()108 648 Q -F5(jobspec)A F0 3.457(\). Job)B(number)3.457 E F5(n)3.817 E F0 .957 -(may be referred to as)3.697 F F3(%n)3.457 E F0 5.957(.A)C .957 +108 729.6 Q(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(37)190.95 E 0 +Cg EP +%%Page: 38 38 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .777 +(There are a number of w)108 84 R .777 +(ays to refer to a job in the shell.)-.1 F .777(The character)5.777 F/F1 +10/Times-Bold@0 SF(%)3.277 E F0 .777(introduces a job speci\214cation) +3.277 F(\()108 96 Q/F2 10/Times-Italic@0 SF(jobspec)A F0 3.457(\). Job)B +(number)3.457 E F2(n)3.817 E F0 .957(may be referred to as)3.697 F F1 +(%n)3.457 E F0 5.957(.A)C .957 (job may also be referred to using a pre\214x of the)-2.5 F .59(name us\ ed to start it, or using a substring that appears in its command line.) -108 660 R -.15(Fo)5.59 G 3.09(re).15 G(xample,)-3.24 E F3(%ce)3.09 E F0 -.59(refers to a)3.09 F(stopped)108 672 Q F3(ce)3.463 E F0(job)3.463 E +108 108 R -.15(Fo)5.59 G 3.09(re).15 G(xample,)-3.24 E F1(%ce)3.09 E F0 +.59(refers to a)3.09 F(stopped)108 120 Q F1(ce)3.463 E F0(job)3.463 E 5.963(.I)-.4 G 3.463(fap)-5.963 G .963 -(re\214x matches more than one job,)-3.463 F F3(bash)3.463 E F0 .963 -(reports an error)3.463 F 5.963(.U)-.55 G(sing)-5.963 E F3(%?ce)3.463 E +(re\214x matches more than one job,)-3.463 F F1(bash)3.463 E F0 .963 +(reports an error)3.463 F 5.963(.U)-.55 G(sing)-5.963 E F1(%?ce)3.463 E F0 3.464(,o)C 3.464(nt)-3.464 G .964(he other)-3.464 F .087 -(hand, refers to an)108 684 R 2.587(yj)-.15 G .087 -(ob containing the string)-2.587 F F3(ce)2.587 E F0 .087 +(hand, refers to an)108 132 R 2.587(yj)-.15 G .087 +(ob containing the string)-2.587 F F1(ce)2.587 E F0 .087 (in its command line.)2.587 F .087 -(If the substring matches more than one)5.087 F(job,)108 696 Q F3(bash) +(If the substring matches more than one)5.087 F(job,)108 144 Q F1(bash) 2.508 E F0 .008(reports an error)2.508 F 5.008(.T)-.55 G .008 -(he symbols)-5.008 F F3(%%)2.508 E F0(and)2.508 E F3(%+)2.508 E F0 .008 +(he symbols)-5.008 F F1(%%)2.508 E F0(and)2.508 E F1(%+)2.508 E F0 .008 (refer to the shell')2.508 F 2.508(sn)-.55 G .008(otion of the)-2.508 F -F5(curr)2.708 E .008(ent job)-.37 F F0 2.508(,w).23 G .008(hich is) --2.508 F .495(the last job stopped while it w)108 708 R .495 +F2(curr)2.708 E .008(ent job)-.37 F F0 2.508(,w).23 G .008(hich is) +-2.508 F .495(the last job stopped while it w)108 156 R .495 (as in the fore)-.1 F .495(ground or started in the background.)-.15 F -(The)5.494 E F5(pr)4.244 E -.15(ev)-.37 G .494(ious job).15 F F0 .494 -(may be)3.224 F .787(referenced using)108 720 R F3<25ad>3.287 E F0 5.787 -(.I)C 3.287(ft)-5.787 G .787(here is only a single job,)-3.287 F F3(%+) -3.287 E F0(and)3.287 E F3<25ad>3.287 E F0 .788 +(The)5.494 E F2(pr)4.244 E -.15(ev)-.37 G .494(ious job).15 F F0 .494 +(may be)3.224 F .787(referenced using)108 168 R F1<25ad>3.287 E F0 5.787 +(.I)C 3.287(ft)-5.787 G .787(here is only a single job,)-3.287 F F1(%+) +3.287 E F0(and)3.287 E F1<25ad>3.287 E F0 .788 (can both be used to refer to that job)3.287 F 5.788(.I)-.4 G(n)-5.788 E -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(37)185.545 E 0 Cg EP -%%Page: 38 38 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .257 -(output pertaining to jobs \(e.g., the output of the)108 84 R/F1 10 -/Times-Bold@0 SF(jobs)2.756 E F0 .256(command\), the current job is al) -2.756 F -.1(wa)-.1 G .256(ys \215agged with a).1 F F1(+)2.756 E F0(,)A -.41(and the pre)108 96 R .41(vious job with a)-.25 F F12.91 E F0 -5.41(.A)C .411(single % \(with no accompan)-2.5 F .411 +.257(output pertaining to jobs \(e.g., the output of the)108 180 R F1 +(jobs)2.756 E F0 .256(command\), the current job is al)2.756 F -.1(wa) +-.1 G .256(ys \215agged with a).1 F F1(+)2.756 E F0(,)A .41(and the pre) +108 192 R .41(vious job with a)-.25 F F12.91 E F0 5.41(.A)C .411 +(single % \(with no accompan)-2.5 F .411 (ying job speci\214cation\) also refers to the cur)-.15 F(-)-.2 E -(rent job)108 108 Q(.)-.4 E .444 -(Simply naming a job can be used to bring it into the fore)108 124.8 R +(rent job)108 204 Q(.)-.4 E .444 +(Simply naming a job can be used to bring it into the fore)108 220.8 R (ground:)-.15 E F1(%1)2.943 E F0 .443(is a synon)2.943 F .443(ym for) -.15 F F1 -.63(``)2.943 G .443(fg %1').63 F(')-.63 E F0 2.943(,b)C (ringing)-2.943 E 1.472(job 1 from the background into the fore)108 -136.8 R 3.972(ground. Similarly)-.15 F(,)-.65 E F1 -.63(``)3.973 G 1.473 +232.8 R 3.972(ground. Similarly)-.15 F(,)-.65 E F1 -.63(``)3.973 G 1.473 (%1 &').63 F(')-.63 E F0 1.473(resumes job 1 in the background,)3.973 F -(equi)108 148.8 Q -.25(va)-.25 G(lent to).25 E F1 -.63(``)2.5 G(bg %1') -.63 E(')-.63 E F0(.)A .131(The shell learns immediately whene)108 165.6 +(equi)108 244.8 Q -.25(va)-.25 G(lent to).25 E F1 -.63(``)2.5 G(bg %1') +.63 E(')-.63 E F0(.)A .131(The shell learns immediately whene)108 261.6 R -.15(ve)-.25 G 2.631(raj).15 G .131(ob changes state.)-2.631 F (Normally)5.131 E(,)-.65 E F1(bash)2.631 E F0 -.1(wa)2.63 G .13 (its until it is about to print a).1 F .157 -(prompt before reporting changes in a job')108 177.6 R 2.657(ss)-.55 G +(prompt before reporting changes in a job')108 273.6 R 2.657(ss)-.55 G .157(tatus so as to not interrupt an)-2.657 F 2.658(yo)-.15 G .158 (ther output.)-2.658 F .158(If the)5.158 F F12.658 E F0 .158 -(option to)2.658 F(the)108 189.6 Q F1(set)2.648 E F0 -.2(bu)2.648 G .148 +(option to)2.658 F(the)108 285.6 Q F1(set)2.648 E F0 -.2(bu)2.648 G .148 (iltin command is enabled,).2 F F1(bash)2.648 E F0 .148 (reports such changes immediately)2.648 F 5.147(.A)-.65 G .447 -.15 -(ny t)-5.147 H .147(rap on).15 F/F2 9/Times-Bold@0 SF(SIGCHLD)2.647 E F0 +(ny t)-5.147 H .147(rap on).15 F/F3 9/Times-Bold@0 SF(SIGCHLD)2.647 E F0 .147(is e)2.397 F -.15(xe)-.15 G(-).15 E(cuted for each child that e)108 -201.6 Q(xits.)-.15 E .032(If an attempt to e)108 218.4 R(xit)-.15 E F1 +297.6 Q(xits.)-.15 E .032(If an attempt to e)108 314.4 R(xit)-.15 E F1 (bash)2.532 E F0 .032(is made while jobs are stopped \(or)2.532 F 2.533 (,i)-.4 G 2.533(ft)-2.533 G(he)-2.533 E F1(checkjobs)2.533 E F0 .033 -(shell option has been enabled)2.533 F 1.003(using the)108 230.4 R F1 +(shell option has been enabled)2.533 F 1.003(using the)108 326.4 R F1 (shopt)3.503 E F0 -.2(bu)3.503 G 1.003 (iltin, running\), the shell prints a w).2 F 1.002 (arning message, and, if the)-.1 F F1(checkjobs)3.502 E F0 1.002 (option is en-)3.502 F .955(abled, lists the jobs and their statuses.) -108 242.4 R(The)5.955 E F1(jobs)3.455 E F0 .955 +108 338.4 R(The)5.955 E F1(jobs)3.455 E F0 .955 (command may then be used to inspect their status.)3.455 F .956(If a) -5.956 F .604(second attempt to e)108 254.4 R .604 +5.956 F .604(second attempt to e)108 350.4 R .604 (xit is made without an interv)-.15 F .604 (ening command, the shell does not print another w)-.15 F(arning,)-.1 E -(and an)108 266.4 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E -.644(When the shell is w)108 283.2 R .644 +(and an)108 362.4 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E +.644(When the shell is w)108 379.2 R .644 (aiting for a job or process using the)-.1 F F1(wait)3.145 E F0 -.2(bu) 3.145 G .645(iltin, and job control is enabled,).2 F F1(wait)3.145 E F0 -(will)3.145 E .282(return when the job changes state. The)108 295.2 R F1 +(will)3.145 E .282(return when the job changes state. The)108 391.2 R F1 2.782 E F0 .282(option causes)2.782 F F1(wait)2.782 E F0 .282 (to w)2.782 F .282(ait until the job or process terminates be-)-.1 F -(fore returning.)108 307.2 Q/F3 10.95/Times-Bold@0 SF(PR)72 324 Q -(OMPTING)-.329 E F0 .644(When e)108 336 R -.15(xe)-.15 G .644 +(fore returning.)108 403.2 Q/F4 10.95/Times-Bold@0 SF(PR)72 420 Q +(OMPTING)-.329 E F0 .644(When e)108 432 R -.15(xe)-.15 G .644 (cuting interacti).15 F -.15(ve)-.25 G(ly).15 E(,)-.65 E F1(bash)3.144 E -F0 .645(displays the primary prompt)3.145 F F2(PS1)3.145 E F0 .645 +F0 .645(displays the primary prompt)3.145 F F3(PS1)3.145 E F0 .645 (when it is ready to read a command,)2.895 F .428 -(and the secondary prompt)108 348 R F2(PS2)2.928 E F0 .427 +(and the secondary prompt)108 444 R F3(PS2)2.928 E F0 .427 (when it needs more input to complete a command.)2.678 F F1(Bash)5.427 E -F0(displays)2.927 E F2(PS0)2.927 E F0(after)2.677 E .037 -(it reads a command b)108 360 R .037(ut before e)-.2 F -.15(xe)-.15 G -.037(cuting it.).15 F F1(Bash)5.037 E F0(displays)2.537 E F2(PS4)2.538 E +F0(displays)2.927 E F3(PS0)2.927 E F0(after)2.677 E .037 +(it reads a command b)108 456 R .037(ut before e)-.2 F -.15(xe)-.15 G +.037(cuting it.).15 F F1(Bash)5.037 E F0(displays)2.537 E F3(PS4)2.538 E F0 .038(as described abo)2.288 F .338 -.15(ve b)-.15 H .038 -(efore tracing each com-).15 F 1.122(mand when the)108 372 R F1 +(efore tracing each com-).15 F 1.122(mand when the)108 468 R F1 3.622 E F0 1.122(option is enabled.)3.622 F F1(Bash)6.122 E F0(allo) 3.622 E 1.122(ws these prompt strings to be customized by inserting a) -.25 F(number of backslash-escaped special characters that are decoded \ -as follo)108 384 Q(ws:)-.25 E F1(\\a)144 396 Q F0 -(an ASCII bell character \(07\))180 396 Q F1(\\d)144 408 Q F0 -(the date in "W)180 408 Q(eekday Month Date" format \(e.g., "T)-.8 E -(ue May 26"\))-.45 E F1(\\D{)144 420 Q/F4 10/Times-Italic@0 SF(format)A -F1(})A F0(the)180 432 Q F4(format)3.926 E F0 1.426(is passed to)3.926 F -F4(strftime)3.926 E F0 1.427 -(\(3\) and the result is inserted into the prompt string; an)B(empty)180 -444 Q F4(format)2.5 E F0 +as follo)108 480 Q(ws:)-.25 E F1(\\a)144 492 Q F0 +(an ASCII bell character \(07\))180 492 Q F1(\\d)144 504 Q F0 +(the date in "W)180 504 Q(eekday Month Date" format \(e.g., "T)-.8 E +(ue May 26"\))-.45 E F1(\\D{)144 516 Q F2(format)A F1(})A F0(the)180 528 +Q F2(format)3.926 E F0 1.426(is passed to)3.926 F F2(strftime)3.926 E F0 +1.427(\(3\) and the result is inserted into the prompt string; an)B +(empty)180 540 Q F2(format)2.5 E F0 (results in a locale-speci\214c time representation.)2.5 E -(The braces are required)5 E F1(\\e)144 456 Q F0 -(an ASCII escape character \(033\))180 456 Q F1(\\h)144 468 Q F0 -(the hostname up to the \214rst `.)180 468 Q(')-.7 E F1(\\H)144 480 Q F0 -(the hostname)180 480 Q F1(\\j)144 492 Q F0 -(the number of jobs currently managed by the shell)180 492 Q F1(\\l)144 -504 Q F0(the basename of the shell')180 504 Q 2.5(st)-.55 G(erminal de) --2.5 E(vice name)-.25 E F1(\\n)144 516 Q F0(ne)180 516 Q(wline)-.25 E F1 -(\\r)144 528 Q F0(carriage return)180 528 Q F1(\\s)144 540 Q F0 -(the name of the shell, the basename of)180 540 Q F1($0)2.5 E F0 +(The braces are required)5 E F1(\\e)144 552 Q F0 +(an ASCII escape character \(033\))180 552 Q F1(\\h)144 564 Q F0 +(the hostname up to the \214rst `.)180 564 Q(')-.7 E F1(\\H)144 576 Q F0 +(the hostname)180 576 Q F1(\\j)144 588 Q F0 +(the number of jobs currently managed by the shell)180 588 Q F1(\\l)144 +600 Q F0(the basename of the shell')180 600 Q 2.5(st)-.55 G(erminal de) +-2.5 E(vice name)-.25 E F1(\\n)144 612 Q F0(ne)180 612 Q(wline)-.25 E F1 +(\\r)144 624 Q F0(carriage return)180 624 Q F1(\\s)144 636 Q F0 +(the name of the shell, the basename of)180 636 Q F1($0)2.5 E F0 (\(the portion follo)2.5 E(wing the \214nal slash\))-.25 E F1(\\t)144 -552 Q F0(the current time in 24-hour HH:MM:SS format)180 552 Q F1(\\T) -144 564 Q F0(the current time in 12-hour HH:MM:SS format)180 564 Q F1 -(\\@)144 576 Q F0(the current time in 12-hour am/pm format)180 576 Q F1 -(\\A)144 588 Q F0(the current time in 24-hour HH:MM format)180 588 Q F1 -(\\u)144 600 Q F0(the username of the current user)180 600 Q F1(\\v)144 -612 Q F0(the v)180 612 Q(ersion of)-.15 E F1(bash)2.5 E F0 -(\(e.g., 2.00\))2.5 E F1(\\V)144 624 Q F0(the release of)180 624 Q F1 -(bash)2.5 E F0 2.5(,v)C(ersion + patch le)-2.65 E -.15(ve)-.25 G 2.5 -(l\().15 G(e.g., 2.00.0\))-2.5 E F1(\\w)144 636 Q F0 .116(the current w) -180 636 R .116(orking directory)-.1 F 2.616(,w)-.65 G(ith)-2.616 E F2 -($HOME)2.616 E F0(abbre)2.366 E .115(viated with a tilde \(uses the v) --.25 F .115(alue of the)-.25 F F2(PR)180 648 Q(OMPT_DIR)-.27 E(TRIM)-.36 -E F0 -.25(va)2.25 G(riable\)).25 E F1(\\W)144 660 Q F0 -(the basename of the current w)180 660 Q(orking directory)-.1 E 2.5(,w) --.65 G(ith)-2.5 E F2($HOME)2.5 E F0(abbre)2.25 E(viated with a tilde) --.25 E F1(\\!)144 672 Q F0(the history number of this command)180 672 Q -F1(\\#)144 684 Q F0(the command number of this command)180 684 Q F1(\\$) -144 696 Q F0(if the ef)180 696 Q(fecti)-.25 E .3 -.15(ve U)-.25 H -(ID is 0, a).15 E F1(#)2.5 E F0 2.5(,o)C(therwise a)-2.5 E F1($)2.5 E -(\\)144 708 Q F4(nnn)A F0 -(the character corresponding to the octal number)180 708 Q F4(nnn)2.5 E -F0(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(38)185.545 E 0 Cg EP +648 Q F0(the current time in 24-hour HH:MM:SS format)180 648 Q F1(\\T) +144 660 Q F0(the current time in 12-hour HH:MM:SS format)180 660 Q F1 +(\\@)144 672 Q F0(the current time in 12-hour am/pm format)180 672 Q F1 +(\\A)144 684 Q F0(the current time in 24-hour HH:MM format)180 684 Q F1 +(\\u)144 696 Q F0(the username of the current user)180 696 Q F1(\\v)144 +708 Q F0(the v)180 708 Q(ersion of)-.15 E F1(bash)2.5 E F0 +(\(e.g., 2.00\))2.5 E(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(38) +190.95 E 0 Cg EP %%Page: 39 39 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(\\\\)144 84 Q F0 2.5(ab)180 84 S(ackslash)-2.5 E F1(\\[)144 96 Q F0 -(be)180 96 Q 1.257(gin a sequence of non-printing characters, which cou\ -ld be used to embed a terminal)-.15 F(control sequence into the prompt) -180 108 Q F1(\\])144 120 Q F0(end a sequence of non-printing characters) -180 120 Q .12(The command number and the history number are usually dif) -108 136.8 R .119(ferent: the history number of a command is its)-.25 F -.547(position in the history list, which may include commands restored \ -from the history \214le \(see)108 148.8 R/F2 9/Times-Bold@0 SF(HIST) -3.047 E(OR)-.162 E(Y)-.315 E F0(be-)2.797 E(lo)108 160.8 Q .354(w\), wh\ -ile the command number is the position in the sequence of commands e) --.25 F -.15(xe)-.15 G .354(cuted during the current).15 F .822 -(shell session.)108 172.8 R .822(After the string is decoded, it is e) -5.822 F .822(xpanded via parameter e)-.15 F .823 -(xpansion, command substitution,)-.15 F .683(arithmetic e)108 184.8 R -.683(xpansion, and quote remo)-.15 F -.25(va)-.15 G .683 -(l, subject to the v).25 F .682(alue of the)-.25 F F1(pr)3.182 E(omptv) --.18 E(ars)-.1 E F0 .682(shell option \(see the de-)3.182 F 1.197 -(scription of the)108 196.8 R F1(shopt)3.697 E F0 1.197(command under) -3.697 F F2 1.197(SHELL B)3.697 F(UIL)-.09 E 1.197(TIN COMMANDS)-.828 F -F0(belo)3.448 E 3.698(w\). This)-.25 F 1.198(can ha)3.698 F 1.498 -.15 -(ve u)-.2 H(nw).15 E(anted)-.1 E .322(side ef)108 208.8 R .322(fects if\ - escaped portions of the string appear within command substitution or c\ -ontain characters spe-)-.25 F(cial to w)108 220.8 Q(ord e)-.1 E -(xpansion.)-.15 E/F3 10.95/Times-Bold@0 SF(READLINE)72 237.6 Q F0 .15 +SF(\\V)144 84 Q F0(the release of)180 84 Q F1(bash)2.5 E F0 2.5(,v)C +(ersion + patch le)-2.65 E -.15(ve)-.25 G 2.5(l\().15 G(e.g., 2.00.0\)) +-2.5 E F1(\\w)144 96 Q F0 .116(the current w)180 96 R .116 +(orking directory)-.1 F 2.616(,w)-.65 G(ith)-2.616 E/F2 9/Times-Bold@0 +SF($HOME)2.616 E F0(abbre)2.366 E .115(viated with a tilde \(uses the v) +-.25 F .115(alue of the)-.25 F F2(PR)180 108 Q(OMPT_DIR)-.27 E(TRIM)-.36 +E F0 -.25(va)2.25 G(riable\)).25 E F1(\\W)144 120 Q F0 +(the basename of the current w)180 120 Q(orking directory)-.1 E 2.5(,w) +-.65 G(ith)-2.5 E F2($HOME)2.5 E F0(abbre)2.25 E(viated with a tilde) +-.25 E F1(\\!)144 132 Q F0(the history number of this command)180 132 Q +F1(\\#)144 144 Q F0(the command number of this command)180 144 Q F1(\\$) +144 156 Q F0(if the ef)180 156 Q(fecti)-.25 E .3 -.15(ve U)-.25 H +(ID is 0, a).15 E F1(#)2.5 E F0 2.5(,o)C(therwise a)-2.5 E F1($)2.5 E +(\\)144 168 Q/F3 10/Times-Italic@0 SF(nnn)A F0 +(the character corresponding to the octal number)180 168 Q F3(nnn)2.5 E +F1(\\\\)144 180 Q F0 2.5(ab)180 180 S(ackslash)-2.5 E F1(\\[)144 192 Q +F0(be)180 192 Q 1.257(gin a sequence of non-printing characters, which \ +could be used to embed a terminal)-.15 F +(control sequence into the prompt)180 204 Q F1(\\])144 216 Q F0 +(end a sequence of non-printing characters)180 216 Q .12 +(The command number and the history number are usually dif)108 232.8 R +.119(ferent: the history number of a command is its)-.25 F .547(positio\ +n in the history list, which may include commands restored from the his\ +tory \214le \(see)108 244.8 R F2(HIST)3.047 E(OR)-.162 E(Y)-.315 E F0 +(be-)2.797 E(lo)108 256.8 Q .354(w\), while the command number is the p\ +osition in the sequence of commands e)-.25 F -.15(xe)-.15 G .354 +(cuted during the current).15 F .822(shell session.)108 268.8 R .822 +(After the string is decoded, it is e)5.822 F .822 +(xpanded via parameter e)-.15 F .823(xpansion, command substitution,) +-.15 F .683(arithmetic e)108 280.8 R .683(xpansion, and quote remo)-.15 +F -.25(va)-.15 G .683(l, subject to the v).25 F .682(alue of the)-.25 F +F1(pr)3.182 E(omptv)-.18 E(ars)-.1 E F0 .682(shell option \(see the de-) +3.182 F 1.197(scription of the)108 292.8 R F1(shopt)3.697 E F0 1.197 +(command under)3.697 F F2 1.197(SHELL B)3.697 F(UIL)-.09 E 1.197 +(TIN COMMANDS)-.828 F F0(belo)3.448 E 3.698(w\). This)-.25 F 1.198 +(can ha)3.698 F 1.498 -.15(ve u)-.2 H(nw).15 E(anted)-.1 E .322(side ef) +108 304.8 R .322(fects if escaped portions of the string appear within \ +command substitution or contain characters spe-)-.25 F(cial to w)108 +316.8 Q(ord e)-.1 E(xpansion.)-.15 E/F4 10.95/Times-Bold@0 SF(READLINE) +72 333.6 Q F0 .15 (This is the library that handles reading input when using an interacti) -108 249.6 R .451 -.15(ve s)-.25 H .151(hell, unless the).15 F F1 -(\255\255noediting)2.651 E F0(option)2.651 E .385(is gi)108 261.6 R -.15 +108 345.6 R .451 -.15(ve s)-.25 H .151(hell, unless the).15 F F1 +(\255\255noediting)2.651 E F0(option)2.651 E .385(is gi)108 357.6 R -.15 (ve)-.25 G 2.885(na).15 G 2.885(ts)-2.885 G .385(hell in)-2.885 F -.2 (vo)-.4 G 2.885(cation. Line).2 F .385 (editing is also used when using the)2.885 F F12.884 E F0 .384 (option to the)2.884 F F1 -.18(re)2.884 G(ad).18 E F0 -.2(bu)2.884 G -2.884(iltin. By).2 F(de-)2.884 E -.1(fa)108 273.6 S 1.406 +2.884(iltin. By).2 F(de-)2.884 E -.1(fa)108 369.6 S 1.406 (ult, the line editing commands are similar to those of Emacs.).1 F 3.907(Av)6.407 G 1.407(i-style line editing interf)-3.907 F 1.407 -(ace is also)-.1 F -.2(av)108 285.6 S 3.35(ailable. Line)-.05 F .85 +(ace is also)-.1 F -.2(av)108 381.6 S 3.35(ailable. Line)-.05 F .85 (editing can be enabled at an)3.35 F 3.35(yt)-.15 G .85(ime using the) -3.35 F F1 .85(\255o emacs)3.35 F F0(or)3.35 E F1 .85(\255o vi)3.35 F F0 .85(options to the)3.35 F F1(set)3.35 E F0 -.2(bu)3.35 G(iltin).2 E -(\(see)108 297.6 Q F2 .762(SHELL B)3.262 F(UIL)-.09 E .762(TIN COMMANDS) +(\(see)108 393.6 Q F2 .762(SHELL B)3.262 F(UIL)-.09 E .762(TIN COMMANDS) -.828 F F0(belo)3.012 E 3.262(w\). T)-.25 F 3.263(ot)-.8 G .763(urn of) -3.263 F 3.263(fl)-.25 G .763 (ine editing after the shell is running, use the)-3.263 F F1(+o)3.263 E -(emacs)108 309.6 Q F0(or)2.5 E F1(+o vi)2.5 E F0(options to the)2.5 E F1 -(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(Readline Notation)87 326.4 Q +(emacs)108 405.6 Q F0(or)2.5 E F1(+o vi)2.5 E F0(options to the)2.5 E F1 +(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(Readline Notation)87 422.4 Q F0 .463(In this section, the Emacs-style notation is used to denote k) -108 338.4 R -.15(ey)-.1 G(strok).15 E 2.963(es. Control)-.1 F -.1(ke) -2.963 G .463(ys are denoted by C\255)-.05 F/F4 10/Times-Italic@0 SF -.1 -(ke)C(y)-.2 E F0(,)A 1.152(e.g., C\255n means Control\255N.)108 350.4 R -(Similarly)6.152 E(,)-.65 E F4(meta)4.032 E F0 -.1(ke)3.913 G 1.153 -(ys are denoted by M\255)-.05 F F4 -.1(ke)C(y)-.2 E F0 3.653(,s)C 3.653 -(oM)-3.653 G 1.153(\255x means Meta\255X.)-3.653 F(\(On)6.153 E -.1(ke) -108 362.4 S .831(yboards without a)-.05 F F4(meta)3.711 E F0 -.1(ke) -3.591 G 2.131 -.65(y, M)-.05 H.65 E F4(x)A F0 .831(means ESC)3.331 F -F4(x)3.331 E F0 3.331(,i)C .83(.e., press the Escape k)-3.331 F 1.13 --.15(ey t)-.1 H .83(hen the).15 F F4(x)4.1 E F0 -.1(ke)3.86 G 4.63 -.65 -(y. T)-.05 H .83(his mak).65 F(es)-.1 E .599(ESC the)108 374.4 R F4 .599 -(meta pr)3.099 F(e\214x)-.37 E F0 5.599(.T)C .599 -(he combination M\255C\255)-5.599 F F4(x)A F0 .599 -(means ESC\255Control\255)3.099 F F4(x)A F0 3.099(,o)C 3.099(rp)-3.099 G -.6(ress the Escape k)-3.099 F .9 -.15(ey t)-.1 H .6(hen hold).15 F -(the Control k)108 386.4 Q .3 -.15(ey w)-.1 H(hile pressing the).15 E F4 -(x)3.27 E F0 -.1(ke)3.03 G -.65(y.)-.05 G(\)).65 E .596 -(Readline commands may be gi)108 403.2 R -.15(ve)-.25 G 3.096(nn).15 G -(umeric)-3.096 E F4(ar)3.426 E(guments)-.37 E F0 3.096(,w).27 G .596 -(hich normally act as a repeat count.)-3.096 F(Sometimes,)5.595 E(ho)108 -415.2 Q(we)-.25 E -.15(ve)-.25 G 1.418 -.4(r, i).15 H 3.118(ti).4 G -3.119(st)-3.118 G .619(he sign of the ar)-3.119 F .619 +108 434.4 R -.15(ey)-.1 G(strok).15 E 2.963(es. Control)-.1 F -.1(ke) +2.963 G .463(ys are denoted by C\255)-.05 F F3 -.1(ke)C(y)-.2 E F0(,)A +1.152(e.g., C\255n means Control\255N.)108 446.4 R(Similarly)6.152 E(,) +-.65 E F3(meta)4.032 E F0 -.1(ke)3.913 G 1.153(ys are denoted by M\255) +-.05 F F3 -.1(ke)C(y)-.2 E F0 3.653(,s)C 3.653(oM)-3.653 G 1.153 +(\255x means Meta\255X.)-3.653 F(\(On)6.153 E -.1(ke)108 458.4 S .831 +(yboards without a)-.05 F F3(meta)3.711 E F0 -.1(ke)3.591 G 2.131 -.65 +(y, M)-.05 H.65 E F3(x)A F0 .831(means ESC)3.331 F F3(x)3.331 E F0 +3.331(,i)C .83(.e., press the Escape k)-3.331 F 1.13 -.15(ey t)-.1 H .83 +(hen the).15 F F3(x)4.1 E F0 -.1(ke)3.86 G 4.63 -.65(y. T)-.05 H .83 +(his mak).65 F(es)-.1 E .599(ESC the)108 470.4 R F3 .599(meta pr)3.099 F +(e\214x)-.37 E F0 5.599(.T)C .599(he combination M\255C\255)-5.599 F F3 +(x)A F0 .599(means ESC\255Control\255)3.099 F F3(x)A F0 3.099(,o)C 3.099 +(rp)-3.099 G .6(ress the Escape k)-3.099 F .9 -.15(ey t)-.1 H .6 +(hen hold).15 F(the Control k)108 482.4 Q .3 -.15(ey w)-.1 H +(hile pressing the).15 E F3(x)3.27 E F0 -.1(ke)3.03 G -.65(y.)-.05 G(\)) +.65 E .596(Readline commands may be gi)108 499.2 R -.15(ve)-.25 G 3.096 +(nn).15 G(umeric)-3.096 E F3(ar)3.426 E(guments)-.37 E F0 3.096(,w).27 G +.596(hich normally act as a repeat count.)-3.096 F(Sometimes,)5.595 E +(ho)108 511.2 Q(we)-.25 E -.15(ve)-.25 G 1.418 -.4(r, i).15 H 3.118(ti) +.4 G 3.119(st)-3.118 G .619(he sign of the ar)-3.119 F .619 (gument that is signi\214cant.)-.18 F -.15(Pa)5.619 G .619(ssing a ne) .15 F -.05(ga)-.15 G(ti).05 E .919 -.15(ve a)-.25 H -.18(rg).15 G .619 -(ument to a command that).18 F 1.019(acts in the forw)108 427.2 R 1.018 +(ument to a command that).18 F 1.019(acts in the forw)108 523.2 R 1.018 (ard direction \(e.g.,)-.1 F F1(kill\255line)3.518 E F0 3.518(\)c)C 1.018(auses that command to act in a backw)-3.518 F 1.018 -(ard direction.)-.1 F(Com-)6.018 E(mands whose beha)108 439.2 Q +(ard direction.)-.1 F(Com-)6.018 E(mands whose beha)108 535.2 Q (vior with ar)-.2 E(guments de)-.18 E(viates from this are noted belo) --.25 E -.65(w.)-.25 G .811(When a command is described as)108 456 R F4 +-.25 E -.65(w.)-.25 G .811(When a command is described as)108 552 R F3 (killing)3.311 E F0(te)3.311 E .811(xt, the te)-.15 F .811 (xt deleted is sa)-.15 F -.15(ve)-.2 G 3.311(df).15 G .812 -(or possible future retrie)-3.311 F -.25(va)-.25 G 3.312(l\().25 G F4 -(yank-)-3.312 E(ing)108 468 Q F0 2.529(\). The)B .029(killed te)2.529 F -.029(xt is sa)-.15 F -.15(ve)-.2 G 2.529(di).15 G 2.529(na)-2.529 G F4 +(or possible future retrie)-3.311 F -.25(va)-.25 G 3.312(l\().25 G F3 +(yank-)-3.312 E(ing)108 564 Q F0 2.529(\). The)B .029(killed te)2.529 F +.029(xt is sa)-.15 F -.15(ve)-.2 G 2.529(di).15 G 2.529(na)-2.529 G F3 .029(kill ring)B F0 5.029(.C)C(onsecuti)-5.029 E .329 -.15(ve k)-.25 H .029(ills cause the te).15 F .029(xt to be accumulated into one unit,) --.15 F .567(which can be yank)108 480 R .567(ed all at once.)-.1 F .567 +-.15 F .567(which can be yank)108 576 R .567(ed all at once.)-.1 F .567 (Commands which do not kill te)5.567 F .567 (xt separate the chunks of te)-.15 F .567(xt on the kill)-.15 F(ring.) -108 492 Q F1(Readline Initialization)87 508.8 Q F0 .091(Readline is cus\ -tomized by putting commands in an initialization \214le \(the)108 520.8 -R F4(inputr)2.591 E(c)-.37 E F0 2.591(\214le\). The)2.591 F .091 -(name of this \214le)2.591 F .222(is tak)108 532.8 R .222(en from the v) +108 588 Q F1(Readline Initialization)87 604.8 Q F0 .091(Readline is cus\ +tomized by putting commands in an initialization \214le \(the)108 616.8 +R F3(inputr)2.591 E(c)-.37 E F0 2.591(\214le\). The)2.591 F .091 +(name of this \214le)2.591 F .222(is tak)108 628.8 R .222(en from the v) -.1 F .222(alue of the)-.25 F F2(INPUTRC)2.722 E F0 -.25(va)2.472 G 2.722(riable. If).25 F .222(that v)2.722 F .223 -(ariable is unset, the def)-.25 F .223(ault is)-.1 F F4(~/.inputr)2.223 +(ariable is unset, the def)-.25 F .223(ault is)-.1 F F3(~/.inputr)2.223 E(c)-.37 E F0 5.223(.W).31 G .223(hen a)-5.223 F 1.034(program which us\ es the readline library starts up, the initialization \214le is read, a\ -nd the k)108 544.8 R 1.334 -.15(ey b)-.1 H 1.034(indings and).15 F -.25 -(va)108 556.8 S 1.149(riables are set.).25 F 1.149(There are only a fe) +nd the k)108 640.8 R 1.334 -.15(ey b)-.1 H 1.034(indings and).15 F -.25 +(va)108 652.8 S 1.149(riables are set.).25 F 1.149(There are only a fe) 6.149 F 3.649(wb)-.25 G 1.149(asic constructs allo)-3.649 F 1.15 (wed in the readline initialization \214le.)-.25 F(Blank)6.15 E .737 -(lines are ignored.)108 568.8 R .737(Lines be)5.737 F .737 +(lines are ignored.)108 664.8 R .737(Lines be)5.737 F .737 (ginning with a)-.15 F F1(#)3.237 E F0 .737(are comments.)3.237 F .737 (Lines be)5.737 F .737(ginning with a)-.15 F F1($)3.237 E F0 .736 -(indicate conditional)3.236 F 2.5(constructs. Other)108 580.8 R +(indicate conditional)3.236 F 2.5(constructs. Other)108 676.8 R (lines denote k)2.5 E .3 -.15(ey b)-.1 H(indings and v).15 E -(ariable settings.)-.25 E .986(The def)108 597.6 R .986(ault k)-.1 F --.15(ey)-.1 G .987(-bindings may be changed with an).15 F F4(inputr) +(ariable settings.)-.25 E .986(The def)108 693.6 R .986(ault k)-.1 F +-.15(ey)-.1 G .987(-bindings may be changed with an).15 F F3(inputr) 3.497 E(c)-.37 E F0 3.487(\214le. Other)3.797 F .987 -(programs that use this library may)3.487 F(add their o)108 609.6 Q -(wn commands and bindings.)-.25 E -.15(Fo)108 626.4 S 2.5(re).15 G -(xample, placing)-2.65 E(M\255Control\255u: uni)144 643.2 Q -.15(ve)-.25 -G(rsal\255ar).15 E(gument)-.18 E(or)108 655.2 Q(C\255Meta\255u: uni)144 -667.2 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(into the)108 679.2 -Q F4(inputr)2.51 E(c)-.37 E F0 -.1(wo)2.81 G(uld mak).1 E 2.5(eM)-.1 G -(\255C\255u e)-2.5 E -.15(xe)-.15 G(cute the readline command).15 E F4 -(univer)2.58 E(sal\255ar)-.1 E(gument)-.37 E F0(.).68 E 1.011(The follo) -108 696 R 1.011(wing symbolic character names are recognized:)-.25 F F4 --.4(RU)3.511 G(BOUT).4 E F0(,)1.27 E F4(DEL)4.091 E F0(,).53 E F4(ESC) -4.021 E F0(,).72 E F4(LFD)4.091 E F0(,).28 E F4(NEWLINE)4.21 E F0(,).73 -E F4(RET)4.14 E F0(,)1.27 E F4(RETURN)108.63 708 Q F0(,)1.1 E F4(SPC) -2.83 E F0(,).72 E F4(SP)2.83 E -.3(AC)-.9 G(E).3 E F0 2.5(,a).73 G(nd) --2.5 E F4 -.5(TA)2.5 G(B).5 E F0(.).27 E .209 -(In addition to command names, readline allo)108 724.8 R .209(ws k)-.25 -F -.15(ey)-.1 G 2.709(st).15 G 2.709(ob)-2.709 G 2.709(eb)-2.709 G .209 -(ound to a string that is inserted when the k)-2.709 F .509 -.15(ey i) --.1 H(s).15 E(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G -(mber 26).15 E(39)185.545 E 0 Cg EP +(programs that use this library may)3.487 F(add their o)108 705.6 Q +(wn commands and bindings.)-.25 E -.15(Fo)108 722.4 S 2.5(re).15 G +(xample, placing)-2.65 E(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E +(39)190.95 E 0 Cg EP %%Page: 40 40 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(pressed \(a)108 84 -Q/F1 10/Times-Italic@0 SF(macr)2.5 E(o)-.45 E F0(\).)A/F2 10 -/Times-Bold@0 SF(Readline K)87 100.8 Q(ey Bindings)-.25 E F0 .366 -(The syntax for controlling k)108 112.8 R .666 -.15(ey b)-.1 H .366 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E +(M\255Control\255u: uni)144 84 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument) +-.18 E(or)108 96 Q(C\255Meta\255u: uni)144 108 Q -.15(ve)-.25 G +(rsal\255ar).15 E(gument)-.18 E(into the)108 120 Q/F1 10/Times-Italic@0 +SF(inputr)2.51 E(c)-.37 E F0 -.1(wo)2.81 G(uld mak).1 E 2.5(eM)-.1 G +(\255C\255u e)-2.5 E -.15(xe)-.15 G(cute the readline command).15 E F1 +(univer)2.58 E(sal\255ar)-.1 E(gument)-.37 E F0(.).68 E 1.011(The follo) +108 136.8 R 1.011(wing symbolic character names are recognized:)-.25 F +F1 -.4(RU)3.511 G(BOUT).4 E F0(,)1.27 E F1(DEL)4.091 E F0(,).53 E F1 +(ESC)4.021 E F0(,).72 E F1(LFD)4.091 E F0(,).28 E F1(NEWLINE)4.21 E F0 +(,).73 E F1(RET)4.14 E F0(,)1.27 E F1(RETURN)108.63 148.8 Q F0(,)1.1 E +F1(SPC)2.83 E F0(,).72 E F1(SP)2.83 E -.3(AC)-.9 G(E).3 E F0 2.5(,a).73 +G(nd)-2.5 E F1 -.5(TA)2.5 G(B).5 E F0(.).27 E .209 +(In addition to command names, readline allo)108 165.6 R .209(ws k)-.25 +F -.15(ey)-.1 G 2.709(st).15 G 2.709(ob)-2.709 G 2.709(eb)-2.709 G .209 +(ound to a string that is inserted when the k)-2.709 F .509 -.15(ey i) +-.1 H(s).15 E(pressed \(a)108 177.6 Q F1(macr)2.5 E(o)-.45 E F0(\).)A/F2 +10/Times-Bold@0 SF(Readline K)87 194.4 Q(ey Bindings)-.25 E F0 .366 +(The syntax for controlling k)108 206.4 R .666 -.15(ey b)-.1 H .366 (indings in the).15 F F1(inputr)2.876 E(c)-.37 E F0 .366 (\214le is simple.)3.176 F .366(All that is required is the name of the) -5.366 F .263(command or the te)108 124.8 R .264(xt of a macro and a k) +5.366 F .263(command or the te)108 218.4 R .264(xt of a macro and a k) -.15 F .564 -.15(ey s)-.1 H .264(equence to which it should be bound.) .15 F .264(The name may be speci-)5.264 F .139(\214ed in one of tw)108 -136.8 R 2.638(ow)-.1 G .138(ays: as a symbolic k)-2.738 F .438 -.15 +230.4 R 2.638(ow)-.1 G .138(ays: as a symbolic k)-2.738 F .438 -.15 (ey n)-.1 H .138(ame, possibly with).15 F F1(Meta\255)2.638 E F0(or) 2.638 E F1(Contr)2.638 E(ol\255)-.45 E F0(pre\214x)2.638 E .138 -(es, or as a k)-.15 F .438 -.15(ey s)-.1 H(e-).15 E(quence.)108 148.8 Q -.16(When using the form)108 165.6 R F2 -.1(ke)2.66 G(yname).1 E F0(:)A +(es, or as a k)-.15 F .438 -.15(ey s)-.1 H(e-).15 E(quence.)108 242.4 Q +.16(When using the form)108 259.2 R F2 -.1(ke)2.66 G(yname).1 E F0(:)A F1(function\255name).833 E F0(or)2.66 E F1(macr)2.66 E(o)-.45 E F0(,)A F1 -.1(ke)2.66 G(yname)-.2 E F0 .161(is the name of a k)2.84 F .461 -.15 -(ey s)-.1 H .161(pelled out in Eng-).15 F 2.5(lish. F)108 177.6 R(or e) --.15 E(xample:)-.15 E(Control-u: uni)144 201.6 Q -.15(ve)-.25 G -(rsal\255ar).15 E(gument)-.18 E(Meta-Rubout: backw)144 213.6 Q -(ard-kill-w)-.1 E(ord)-.1 E(Control-o: "> output")144 225.6 Q .699 -(In the abo)108 242.4 R .998 -.15(ve ex)-.15 H(ample,).15 E F1(C\255u) +(ey s)-.1 H .161(pelled out in Eng-).15 F 2.5(lish. F)108 271.2 R(or e) +-.15 E(xample:)-.15 E(Control-u: uni)144 295.2 Q -.15(ve)-.25 G +(rsal\255ar).15 E(gument)-.18 E(Meta-Rubout: backw)144 307.2 Q +(ard-kill-w)-.1 E(ord)-.1 E(Control-o: "> output")144 319.2 Q .699 +(In the abo)108 336 R .998 -.15(ve ex)-.15 H(ample,).15 E F1(C\255u) 3.038 E F0 .698(is bound to the function)3.448 F F2(uni)3.198 E -.1(ve) -.1 G(rsal\255ar).1 E(gument)-.1 E F0(,)A F1(M\255DEL)3.878 E F0 .698 -(is bound to the func-)3.728 F(tion)108 254.4 Q F2 -(backward\255kill\255w)2.758 E(ord)-.1 E F0 2.758(,a)C(nd)-2.758 E F1 -(C\255o)2.598 E F0 .258(is bound to run the macro e)2.938 F .259 +(is bound to the func-)3.728 F(tion)108 348 Q F2(backward\255kill\255w) +2.758 E(ord)-.1 E F0 2.758(,a)C(nd)-2.758 E F1(C\255o)2.598 E F0 .258 +(is bound to run the macro e)2.938 F .259 (xpressed on the right hand side \(that is, to)-.15 F(insert the te)108 -266.4 Q(xt)-.15 E/F3 10/Courier@0 SF 6(>o)2.5 G(utput)-6 E F0 -(into the line\).)2.5 E .056(In the second form,)108 283.2 R F2("k)2.556 +360 Q(xt)-.15 E/F3 10/Courier@0 SF 6(>o)2.5 G(utput)-6 E F0 +(into the line\).)2.5 E .056(In the second form,)108 376.8 R F2("k)2.556 E(eyseq")-.1 E F0(:)A F1(function\255name).833 E F0(or)2.556 E F1(macr) 2.556 E(o)-.45 E F0(,)A F2 -.1(ke)2.556 G(yseq).1 E F0(dif)2.555 E .055 (fers from)-.25 F F2 -.1(ke)2.555 G(yname).1 E F0(abo)2.555 E .355 -.15 (ve i)-.15 H 2.555(nt).15 G .055(hat strings)-2.555 F 1.284 -(denoting an entire k)108 295.2 R 1.584 -.15(ey s)-.1 H 1.284(equence m\ +(denoting an entire k)108 388.8 R 1.584 -.15(ey s)-.1 H 1.284(equence m\ ay be speci\214ed by placing the sequence within double quotes.).15 F -(Some)6.284 E .386(GNU Emacs style k)108 307.2 R .686 -.15(ey e)-.1 H +(Some)6.284 E .386(GNU Emacs style k)108 400.8 R .686 -.15(ey e)-.1 H .385(scapes can be used, as in the follo).15 F .385(wing e)-.25 F .385 (xample, b)-.15 F .385(ut the symbolic character names)-.2 F -(are not recognized.)108 319.2 Q("\\C\255u": uni)144 343.2 Q -.15(ve) +(are not recognized.)108 412.8 Q("\\C\255u": uni)144 436.8 Q -.15(ve) -.25 G(rsal\255ar).15 E(gument)-.18 E -("\\C\255x\\C\255r": re\255read\255init\255\214le)144 355.2 Q -("\\e[11~": "Function K)144 367.2 Q .3 -.15(ey 1)-.25 H(").15 E .314 -(In this e)108 384 R(xample,)-.15 E F1(C\255u)2.654 E F0 .314(is ag) +("\\C\255x\\C\255r": re\255read\255init\255\214le)144 448.8 Q +("\\e[11~": "Function K)144 460.8 Q .3 -.15(ey 1)-.25 H(").15 E .314 +(In this e)108 477.6 R(xample,)-.15 E F1(C\255u)2.654 E F0 .314(is ag) 3.064 F .315(ain bound to the function)-.05 F F2(uni)2.815 E -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 E F0(.)A F1 .315(C\255x C\255r)5.155 F F0 -.315(is bound to the func-)3.545 F(tion)108 396 Q F2 -.18(re)2.5 G -.18 E(ead\255init\255\214le)-.18 E F0 2.5(,a)C(nd)-2.5 E F1(ESC [ 1 1 ~) -3.01 E F0(is bound to insert the te)3.94 E(xt)-.15 E F3(Function Key 1) -2.5 E F0(.)A(The full set of GNU Emacs style escape sequences is)108 -412.8 Q F2<5c43ad>144 424.8 Q F0(control pre\214x)180 424.8 Q F2<5c4dad> -144 436.8 Q F0(meta pre\214x)180 436.8 Q F2(\\e)144 448.8 Q F0 -(an escape character)180 448.8 Q F2(\\\\)144 460.8 Q F0(backslash)180 -460.8 Q F2(\\")144 472.8 Q F0(literal ")180 472.8 Q F2<5c08>144 484.8 Q -F0(literal \010)180 484.8 Q(In addition to the GNU Emacs style escape s\ -equences, a second set of backslash escapes is a)108 501.6 Q -.25(va)-.2 -G(ilable:).25 E F2(\\a)144 513.6 Q F0(alert \(bell\))180 513.6 Q F2(\\b) -144 525.6 Q F0(backspace)180 525.6 Q F2(\\d)144 537.6 Q F0(delete)180 -537.6 Q F2(\\f)144 549.6 Q F0(form feed)180 549.6 Q F2(\\n)144 561.6 Q -F0(ne)180 561.6 Q(wline)-.25 E F2(\\r)144 573.6 Q F0(carriage return)180 -573.6 Q F2(\\t)144 585.6 Q F0(horizontal tab)180 585.6 Q F2(\\v)144 -597.6 Q F0 -.15(ve)180 597.6 S(rtical tab).15 E F2(\\)144 609.6 Q F1 -(nnn)A F0(the eight-bit character whose v)180 609.6 Q +.315(is bound to the func-)3.545 F(tion)108 489.6 Q F2 -.18(re)2.5 G +.18 E(ead\255init\255\214le)-.18 E F0 2.5(,a)C(nd)-2.5 E F1 +(ESC [ 1 1 ~)3.01 E F0(is bound to insert the te)3.94 E(xt)-.15 E F3 +(Function Key 1)2.5 E F0(.)A +(The full set of GNU Emacs style escape sequences is)108 506.4 Q F2 +<5c43ad>144 518.4 Q F0(control pre\214x)180 518.4 Q F2<5c4dad>144 530.4 +Q F0(meta pre\214x)180 530.4 Q F2(\\e)144 542.4 Q F0 +(an escape character)180 542.4 Q F2(\\\\)144 554.4 Q F0(backslash)180 +554.4 Q F2(\\")144 566.4 Q F0(literal ")180 566.4 Q F2<5c08>144 578.4 Q +F0(literal \010)180 578.4 Q(In addition to the GNU Emacs style escape s\ +equences, a second set of backslash escapes is a)108 595.2 Q -.25(va)-.2 +G(ilable:).25 E F2(\\a)144 607.2 Q F0(alert \(bell\))180 607.2 Q F2(\\b) +144 619.2 Q F0(backspace)180 619.2 Q F2(\\d)144 631.2 Q F0(delete)180 +631.2 Q F2(\\f)144 643.2 Q F0(form feed)180 643.2 Q F2(\\n)144 655.2 Q +F0(ne)180 655.2 Q(wline)-.25 E F2(\\r)144 667.2 Q F0(carriage return)180 +667.2 Q F2(\\t)144 679.2 Q F0(horizontal tab)180 679.2 Q F2(\\v)144 +691.2 Q F0 -.15(ve)180 691.2 S(rtical tab).15 E F2(\\)144 703.2 Q F1 +(nnn)A F0(the eight-bit character whose v)180 703.2 Q (alue is the octal v)-.25 E(alue)-.25 E F1(nnn)2.5 E F0 -(\(one to three digits\))2.5 E F2(\\x)144 621.6 Q F1(HH)A F0 -(the eight-bit character whose v)180 621.6 Q(alue is the he)-.25 E +(\(one to three digits\))2.5 E F2(\\x)144 715.2 Q F1(HH)A F0 +(the eight-bit character whose v)180 715.2 Q(alue is the he)-.25 E (xadecimal v)-.15 E(alue)-.25 E F1(HH)2.5 E F0(\(one or tw)2.5 E 2.5(oh) --.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E 1.142(When entering the te)108 -638.4 R 1.141(xt of a macro, single or double quotes must be used to in\ -dicate a macro de\214nition.)-.15 F .089(Unquoted te)108 650.4 R .089 -(xt is assumed to be a function name.)-.15 F .09(In the macro body)5.089 -F 2.59(,t)-.65 G .09(he backslash escapes described abo)-2.59 F -.15(ve) --.15 G(are e)108 662.4 Q 2.5(xpanded. Backslash)-.15 F(will quote an)2.5 -E 2.5(yo)-.15 G(ther character in the macro te)-2.5 E -(xt, including " and \010.)-.15 E F2(Bash)108 679.2 Q F0(allo)2.93 E .43 -(ws the current readline k)-.25 F .73 -.15(ey b)-.1 H .429 -(indings to be displayed or modi\214ed with the).15 F F2(bind)2.929 E F0 --.2(bu)2.929 G .429(iltin command.).2 F .045 -(The editing mode may be switched during interacti)108 691.2 R .345 -.15 -(ve u)-.25 H .046(se by using the).15 F F22.546 E F0 .046 -(option to the)2.546 F F2(set)2.546 E F0 -.2(bu)2.546 G .046 -(iltin command).2 F(\(see)108 703.2 Q/F4 9/Times-Bold@0 SF(SHELL B)2.5 E -(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(40)185.545 E 0 Cg EP +-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(40)190.95 E 0 Cg EP %%Page: 41 41 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(Readline V)87 84 Q(ariables)-.92 E F0 .044(Readline has v)108 96 R -.043(ariables that can be used to further customize its beha)-.25 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.142 +(When entering the te)108 84 R 1.141(xt of a macro, single or double qu\ +otes must be used to indicate a macro de\214nition.)-.15 F .089 +(Unquoted te)108 96 R .089(xt is assumed to be a function name.)-.15 F +.09(In the macro body)5.089 F 2.59(,t)-.65 G .09 +(he backslash escapes described abo)-2.59 F -.15(ve)-.15 G(are e)108 108 +Q 2.5(xpanded. Backslash)-.15 F(will quote an)2.5 E 2.5(yo)-.15 G +(ther character in the macro te)-2.5 E(xt, including " and \010.)-.15 E +/F1 10/Times-Bold@0 SF(Bash)108 124.8 Q F0(allo)2.93 E .43 +(ws the current readline k)-.25 F .73 -.15(ey b)-.1 H .429 +(indings to be displayed or modi\214ed with the).15 F F1(bind)2.929 E F0 +-.2(bu)2.929 G .429(iltin command.).2 F .045 +(The editing mode may be switched during interacti)108 136.8 R .345 -.15 +(ve u)-.25 H .046(se by using the).15 F F12.546 E F0 .046 +(option to the)2.546 F F1(set)2.546 E F0 -.2(bu)2.546 G .046 +(iltin command).2 F(\(see)108 148.8 Q/F2 9/Times-Bold@0 SF(SHELL B)2.5 E +(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E F1 +(Readline V)87 165.6 Q(ariables)-.92 E F0 .044(Readline has v)108 177.6 +R .043(ariables that can be used to further customize its beha)-.25 F (vior)-.2 E 5.043(.A)-.55 G -.25(va)-2.5 G .043 -(riable may be set in the).25 F/F2 10/Times-Italic@0 SF(inpu-)2.553 E -(tr)108 108 Q(c)-.37 E F0(\214le with a statement of the form)2.81 E F1 -(set)144 124.8 Q F2(variable\255name value)2.5 E F0(or using the)108 -136.8 Q F1(bind)2.5 E F0 -.2(bu)2.5 G(iltin command \(see).2 E/F3 9 -/Times-Bold@0 SF(SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo) -2.25 E(w\).)-.25 E .79(Except where noted, readline v)108 153.6 R .79 -(ariables can tak)-.25 F 3.29(et)-.1 G .79(he v)-3.29 F(alues)-.25 E F1 -(On)3.29 E F0(or)3.29 E F1(Off)3.29 E F0 .79(\(without re)3.29 F -.05 -(ga)-.15 G .79(rd to case\).).05 F(Unrecog-)5.79 E .449(nized v)108 -165.6 R .448(ariable names are ignored.)-.25 F .448(When a v)5.448 F -.448(ariable v)-.25 F .448(alue is read, empty or null v)-.25 F .448 -(alues, "on" \(case-insensi-)-.25 F(ti)108 177.6 Q -.15(ve)-.25 G .467 +(riable may be set in the).25 F/F3 10/Times-Italic@0 SF(inpu-)2.553 E +(tr)108 189.6 Q(c)-.37 E F0(\214le with a statement of the form)2.81 E +F1(set)144 206.4 Q F3(variable\255name value)2.5 E F0(or using the)108 +218.4 Q F1(bind)2.5 E F0 -.2(bu)2.5 G(iltin command \(see).2 E F2 +(SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 +E .79(Except where noted, readline v)108 235.2 R .79(ariables can tak) +-.25 F 3.29(et)-.1 G .79(he v)-3.29 F(alues)-.25 E F1(On)3.29 E F0(or) +3.29 E F1(Off)3.29 E F0 .79(\(without re)3.29 F -.05(ga)-.15 G .79 +(rd to case\).).05 F(Unrecog-)5.79 E .449(nized v)108 247.2 R .448 +(ariable names are ignored.)-.25 F .448(When a v)5.448 F .448(ariable v) +-.25 F .448(alue is read, empty or null v)-.25 F .448 +(alues, "on" \(case-insensi-)-.25 F(ti)108 259.2 Q -.15(ve)-.25 G .467 (\), and "1" are equi).15 F -.25(va)-.25 G .468(lent to).25 F F1(On) 2.968 E F0 5.468(.A)C .468(ll other v)-5.468 F .468(alues are equi)-.25 F -.25(va)-.25 G .468(lent to).25 F F1(Off)2.968 E F0 5.468(.T)C .468 (he v)-5.468 F .468(ariables and their def)-.25 F(ault)-.1 E -.25(va)108 -189.6 S(lues are:).25 E F1(bell\255style \(audible\))108 206.4 Q F0 .011 -(Controls what happens when readline w)144 218.4 R .011 +271.2 S(lues are:).25 E F1(bell\255style \(audible\))108 288 Q F0 .011 +(Controls what happens when readline w)144 300 R .011 (ants to ring the terminal bell.)-.1 F .01(If set to)5.01 F F1(none)2.51 E F0 2.51(,r)C .01(eadline ne)-2.51 F -.15(ve)-.25 G(r).15 E .94 -(rings the bell.)144 230.4 R .94(If set to)5.94 F F1(visible)3.44 E F0 +(rings the bell.)144 312 R .94(If set to)5.94 F F1(visible)3.44 E F0 3.44(,r)C .94(eadline uses a visible bell if one is a)-3.44 F -.25(va) -.2 G 3.44(ilable. If).25 F .94(set to)3.44 F F1(audible)3.44 E F0(,)A -(readline attempts to ring the terminal')144 242.4 Q 2.5(sb)-.55 G(ell.) --2.5 E F1(bind\255tty\255special\255chars \(On\))108 254.4 Q F0 .056 -(If set to)144 266.4 R F1(On)2.556 E F0 2.556(,r)C .056(eadline attempt\ -s to bind the control characters treated specially by the k)-2.556 F -(ernel')-.1 E 2.555(st)-.55 G(ermi-)-2.555 E(nal dri)144 278.4 Q -.15 -(ve)-.25 G 2.5(rt).15 G 2.5(ot)-2.5 G(heir readline equi)-2.5 E -.25(va) --.25 G(lents.).25 E F1(blink\255matching\255par)108 290.4 Q(en \(Off\)) --.18 E F0 .21(If set to)144 302.4 R F1(On)2.71 E F0 2.71(,r)C .21 +(readline attempts to ring the terminal')144 324 Q 2.5(sb)-.55 G(ell.) +-2.5 E F1(bind\255tty\255special\255chars \(On\))108 336 Q F0 .056 +(If set to)144 348 R F1(On)2.556 E F0 2.556(,r)C .056(eadline attempts \ +to bind the control characters treated specially by the k)-2.556 F +(ernel')-.1 E 2.555(st)-.55 G(ermi-)-2.555 E(nal dri)144 360 Q -.15(ve) +-.25 G 2.5(rt).15 G 2.5(ot)-2.5 G(heir readline equi)-2.5 E -.25(va)-.25 +G(lents.).25 E F1(blink\255matching\255par)108 372 Q(en \(Off\))-.18 E +F0 .21(If set to)144 384 R F1(On)2.71 E F0 2.71(,r)C .21 (eadline attempts to brie\215y mo)-2.71 F .51 -.15(ve t)-.15 H .21 (he cursor to an opening parenthesis when a closing).15 F -(parenthesis is inserted.)144 314.4 Q F1(color)108 326.4 Q +(parenthesis is inserted.)144 396 Q F1(color)108 408 Q (ed\255completion\255pr)-.18 E(e\214x \(Off\))-.18 E F0 .515(If set to) -144 338.4 R F1(On)3.015 E F0 3.015(,w)C .515(hen listing completions, r\ -eadline displays the common pre\214x of the set of possible)-3.015 F -2.935(completions using a dif)144 350.4 R 2.935(ferent color)-.25 F -7.936(.T)-.55 G 2.936(he color de\214nitions are tak)-7.936 F 2.936 -(en from the v)-.1 F 2.936(alue of the)-.25 F F1(LS_COLORS)144 362.4 Q -F0(en)2.5 E(vironment v)-.4 E(ariable.)-.25 E F1(color)108 374.4 Q -(ed\255stats \(Off\))-.18 E F0 1.58(If set to)144 386.4 R F1(On)4.08 E -F0 4.08(,r)C 1.579(eadline displays possible completions using dif)-4.08 -F 1.579(ferent colors to indicate their \214le)-.25 F 2.5(type. The)144 -398.4 R(color de\214nitions are tak)2.5 E(en from the v)-.1 E -(alue of the)-.25 E F1(LS_COLORS)2.5 E F0(en)2.5 E(vironment v)-.4 E -(ariable.)-.25 E F1(comment\255begin \(`)108 410.4 Q(`#')-.63 E('\))-.63 -E F0 .884(The string that is inserted when the readline)144 422.4 R F1 +144 420 R F1(On)3.015 E F0 3.015(,w)C .515(hen listing completions, rea\ +dline displays the common pre\214x of the set of possible)-3.015 F 2.935 +(completions using a dif)144 432 R 2.935(ferent color)-.25 F 7.936(.T) +-.55 G 2.936(he color de\214nitions are tak)-7.936 F 2.936 +(en from the v)-.1 F 2.936(alue of the)-.25 F F1(LS_COLORS)144 444 Q F0 +(en)2.5 E(vironment v)-.4 E(ariable.)-.25 E F1(color)108 456 Q +(ed\255stats \(Off\))-.18 E F0 1.58(If set to)144 468 R F1(On)4.08 E F0 +4.08(,r)C 1.579(eadline displays possible completions using dif)-4.08 F +1.579(ferent colors to indicate their \214le)-.25 F 2.5(type. The)144 +480 R(color de\214nitions are tak)2.5 E(en from the v)-.1 E(alue of the) +-.25 E F1(LS_COLORS)2.5 E F0(en)2.5 E(vironment v)-.4 E(ariable.)-.25 E +F1(comment\255begin \(`)108 492 Q(`#')-.63 E('\))-.63 E F0 .884 +(The string that is inserted when the readline)144 504 R F1 (insert\255comment)3.385 E F0 .885(command is e)3.385 F -.15(xe)-.15 G -3.385(cuted. This).15 F(com-)3.385 E(mand is bound to)144 434.4 Q F1 +3.385(cuted. This).15 F(com-)3.385 E(mand is bound to)144 516 Q F1 (M\255#)2.5 E F0(in emacs mode and to)2.5 E F1(#)2.5 E F0 (in vi command mode.)2.5 E F1(completion\255display\255width \(\2551\)) -108 446.4 Q F0 1.453(The number of screen columns used to display possi\ -ble matches when performing completion.)144 458.4 R .193(The v)144 470.4 -R .193(alue is ignored if it is less than 0 or greater than the termina\ -l screen width.)-.25 F 2.694(Av)5.194 G .194(alue of 0 will)-2.944 F -(cause matches to be displayed one per line.)144 482.4 Q(The def)5 E -(ault v)-.1 E(alue is \2551.)-.25 E F1(completion\255ignor)108 494.4 Q -(e\255case \(Off\))-.18 E F0(If set to)144 506.4 Q F1(On)2.5 E F0 2.5 -(,r)C(eadline performs \214lename matching and completion in a case\255\ -insensiti)-2.5 E .3 -.15(ve f)-.25 H(ashion.).05 E F1 -(completion\255map\255case \(Off\))108 518.4 Q F0 .094(If set to)144 -530.4 R F1(On)2.593 E F0 2.593(,a)C(nd)-2.593 E F1(completion\255ignor) -2.593 E(e\255case)-.18 E F0 .093(is enabled, readline treats h)2.593 F -.093(yphens \()-.05 F F2A F0 2.593(\)a)C .093(nd underscores)-2.593 -F(\()144 542.4 Q F2(_)A F0 2.5(\)a)C 2.5(se)-2.5 G(qui)-2.5 E -.25(va) --.25 G(lent when performing case\255insensiti).25 E .3 -.15(ve \214)-.25 -H(lename matching and completion.).15 E F1(completion\255pr)108 554.4 Q +108 528 Q F0 1.453(The number of screen columns used to display possibl\ +e matches when performing completion.)144 540 R .193(The v)144 552 R +.193(alue is ignored if it is less than 0 or greater than the terminal \ +screen width.)-.25 F 2.694(Av)5.194 G .194(alue of 0 will)-2.944 F +(cause matches to be displayed one per line.)144 564 Q(The def)5 E +(ault v)-.1 E(alue is \2551.)-.25 E F1(completion\255ignor)108 576 Q +(e\255case \(Off\))-.18 E F0(If set to)144 588 Q F1(On)2.5 E F0 2.5(,r)C +(eadline performs \214lename matching and completion in a case\255insen\ +siti)-2.5 E .3 -.15(ve f)-.25 H(ashion.).05 E F1 +(completion\255map\255case \(Off\))108 600 Q F0 .094(If set to)144 612 R +F1(On)2.593 E F0 2.593(,a)C(nd)-2.593 E F1(completion\255ignor)2.593 E +(e\255case)-.18 E F0 .093(is enabled, readline treats h)2.593 F .093 +(yphens \()-.05 F F3A F0 2.593(\)a)C .093(nd underscores)-2.593 F +(\()144 624 Q F3(_)A F0 2.5(\)a)C 2.5(se)-2.5 G(qui)-2.5 E -.25(va)-.25 +G(lent when performing case\255insensiti).25 E .3 -.15(ve \214)-.25 H +(lename matching and completion.).15 E F1(completion\255pr)108 636 Q (e\214x\255display\255length \(0\))-.18 E F0 .829(The length in charact\ ers of the common pre\214x of a list of possible completions that is di\ -splayed)144 566.4 R 1.275(without modi\214cation.)144 578.4 R 1.275 +splayed)144 648 R 1.275(without modi\214cation.)144 660 R 1.275 (When set to a v)6.275 F 1.274(alue greater than zero, common pre\214x) --.25 F 1.274(es longer than this)-.15 F -.25(va)144 590.4 S(lue are rep\ -laced with an ellipsis when displaying possible completions.).25 E F1 -(completion\255query\255items \(100\))108 602.4 Q F0 .529 -(This determines when the user is queried about vie)144 614.4 R .53 +-.25 F 1.274(es longer than this)-.15 F -.25(va)144 672 S(lue are repla\ +ced with an ellipsis when displaying possible completions.).25 E F1 +(completion\255query\255items \(100\))108 684 Q F0 .529 +(This determines when the user is queried about vie)144 696 R .53 (wing the number of possible completions gen-)-.25 F .561(erated by the) -144 626.4 R F1(possible\255completions)3.061 E F0 3.061(command. It) -3.061 F .561(may be set to an)3.061 F 3.06(yi)-.15 G(nte)-3.06 E .56 -(ger v)-.15 F .56(alue greater than or)-.25 F .782(equal to zero.)144 -638.4 R .783(If the number of possible completions is greater than or e\ -qual to the v)5.782 F .783(alue of this)-.25 F -.25(va)144 650.4 S .237 -(riable, the user is ask).25 F .237(ed whether or not he wishes to vie) --.1 F 2.737(wt)-.25 G .237(hem; otherwise the)-2.737 F 2.737(ya)-.15 G -.237(re simply listed)-2.737 F(on the terminal.)144 662.4 Q F1(con)108 -674.4 Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .612(If set to)144 686.4 -R F1(On)3.112 E F0 3.112(,r)C .613(eadline will con)-3.112 F -.15(ve)-.4 -G .613(rt characters with the eighth bit set to an ASCII k).15 F .913 --.15(ey s)-.1 H .613(equence by).15 F .541 -(stripping the eighth bit and pre\214xing an escape character \(in ef) -144 698.4 R .541(fect, using escape as the)-.25 F F2 .541(meta pr)3.041 -F(e-)-.37 E<8c78>144 710.4 Q F0 2.5(\). The)B(def)2.5 E(ault is)-.1 E F2 -(On)2.5 E F0 2.5(,b)C(ut readline will set it to)-2.7 E F2(Of)2.5 E(f) --.18 E F0(if the locale contains eight-bit characters.)2.5 E -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(41)185.545 E 0 Cg EP +144 708 R F1(possible\255completions)3.061 E F0 3.061(command. It)3.061 +F .561(may be set to an)3.061 F 3.06(yi)-.15 G(nte)-3.06 E .56(ger v) +-.15 F .56(alue greater than or)-.25 F .782(equal to zero.)144 720 R +.783(If the number of possible completions is greater than or equal to \ +the v)5.782 F .783(alue of this)-.25 F(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(41)190.95 E 0 Cg EP %%Page: 42 42 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(disable\255completion \(Off\))108 84 Q F0 .038(If set to)144 96 R F1 -(On)2.538 E F0 2.538(,r)C .038(eadline will inhibit w)-2.538 F .038 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.25(va)144 84 S +.237(riable, the user is ask).25 F .237 +(ed whether or not he wishes to vie)-.1 F 2.737(wt)-.25 G .237 +(hem; otherwise the)-2.737 F 2.737(ya)-.15 G .237(re simply listed) +-2.737 F(on the terminal.)144 96 Q/F1 10/Times-Bold@0 SF(con)108 108 Q +-.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .612(If set to)144 120 R F1(On) +3.112 E F0 3.112(,r)C .613(eadline will con)-3.112 F -.15(ve)-.4 G .613 +(rt characters with the eighth bit set to an ASCII k).15 F .913 -.15 +(ey s)-.1 H .613(equence by).15 F .541 +(stripping the eighth bit and pre\214xing an escape character \(in ef) +144 132 R .541(fect, using escape as the)-.25 F/F2 10/Times-Italic@0 SF +.541(meta pr)3.041 F(e-)-.37 E<8c78>144 144 Q F0 2.5(\). The)B(def)2.5 E +(ault is)-.1 E F2(On)2.5 E F0 2.5(,b)C(ut readline will set it to)-2.7 E +F2(Of)2.5 E(f)-.18 E F0(if the locale contains eight-bit characters.)2.5 +E F1(disable\255completion \(Off\))108 156 Q F0 .038(If set to)144 168 R +F1(On)2.538 E F0 2.538(,r)C .038(eadline will inhibit w)-2.538 F .038 (ord completion.)-.1 F .038 (Completion characters will be inserted into the)5.038 F(line as if the) -144 108 Q 2.5(yh)-.15 G(ad been mapped to)-2.5 E F1(self-insert)2.5 E F0 -(.)A F1(echo\255contr)108 120 Q(ol\255characters \(On\))-.18 E F0 1.211 -(When set to)144 132 R F1(On)3.711 E F0 3.711(,o)C 3.711(no)-3.711 G +144 180 Q 2.5(yh)-.15 G(ad been mapped to)-2.5 E F1(self-insert)2.5 E F0 +(.)A F1(echo\255contr)108 192 Q(ol\255characters \(On\))-.18 E F0 1.211 +(When set to)144 204 R F1(On)3.711 E F0 3.711(,o)C 3.711(no)-3.711 G 1.211(perating systems that indicate the)-3.711 F 3.711(ys)-.15 G 1.21 (upport it, readline echoes a character)-3.711 F -(corresponding to a signal generated from the k)144 144 Q -.15(ey)-.1 G -(board.).15 E F1(editing\255mode \(emacs\))108 156 Q F0 .141 -(Controls whether readline be)144 168 R .141(gins with a set of k)-.15 F -.441 -.15(ey b)-.1 H .141(indings similar to).15 F/F2 10/Times-Italic@0 -SF(Emacs)2.642 E F0(or)2.642 E F2(vi)2.642 E F0(.)A F1(editing\255mode) -5.142 E F0(can be set to either)144 180 Q F1(emacs)2.5 E F0(or)2.5 E F1 -(vi)2.5 E F0(.)A F1(emacs\255mode\255string \(@\))108 192 Q F0 .518 -(If the)144 204 R F2(show\255mode\255in\255pr)3.018 E(ompt)-.45 E F0 --.25(va)3.018 G .517 -(riable is enabled, this string is displayed immediately before the).25 -F .622(last line of the primary prompt when emacs editing mode is acti) -144 216 R -.15(ve)-.25 G 5.622(.T).15 G .622(he v)-5.622 F .622 -(alue is e)-.25 F .622(xpanded lik)-.15 F 3.122(ea)-.1 G -.1(ke)144 228 -S 3.34(yb)-.05 G .839 -(inding, so the standard set of meta- and control pre\214x)-3.34 F .839 -(es and backslash escape sequences is)-.15 F -.2(av)144 240 S 2.798 +(corresponding to a signal generated from the k)144 216 Q -.15(ey)-.1 G +(board.).15 E F1(editing\255mode \(emacs\))108 228 Q F0 .141 +(Controls whether readline be)144 240 R .141(gins with a set of k)-.15 F +.441 -.15(ey b)-.1 H .141(indings similar to).15 F F2(Emacs)2.642 E F0 +(or)2.642 E F2(vi)2.642 E F0(.)A F1(editing\255mode)5.142 E F0 +(can be set to either)144 252 Q F1(emacs)2.5 E F0(or)2.5 E F1(vi)2.5 E +F0(.)A F1(emacs\255mode\255string \(@\))108 264 Q F0 .518(If the)144 276 +R F2(show\255mode\255in\255pr)3.018 E(ompt)-.45 E F0 -.25(va)3.018 G +.517(riable is enabled, this string is displayed immediately before the) +.25 F .622 +(last line of the primary prompt when emacs editing mode is acti)144 288 +R -.15(ve)-.25 G 5.622(.T).15 G .622(he v)-5.622 F .622(alue is e)-.25 F +.622(xpanded lik)-.15 F 3.122(ea)-.1 G -.1(ke)144 300 S 3.34(yb)-.05 G +.839(inding, so the standard set of meta- and control pre\214x)-3.34 F +.839(es and backslash escape sequences is)-.15 F -.2(av)144 312 S 2.798 (ailable. Use)-.05 F .298(the \\1 and \\2 escapes to be)2.798 F .298 (gin and end sequences of non-printing characters, which)-.15 F (can be used to embed a terminal control sequence into the mode string.) -144 252 Q F1(enable\255brack)108 264 Q(eted\255paste \(Off\))-.1 E F0 -1.222(When set to)144 276 R F1(On)3.721 E F0 3.721(,r)C 1.221 +144 324 Q F1(enable\255brack)108 336 Q(eted\255paste \(Off\))-.1 E F0 +1.222(When set to)144 348 R F1(On)3.721 E F0 3.721(,r)C 1.221 (eadline will con\214gure the terminal in a w)-3.721 F 1.221 (ay that will enable it to insert each)-.1 F .353 -(paste into the editing b)144 288 R(uf)-.2 E .353(fer as a single strin\ +(paste into the editing b)144 360 R(uf)-.2 E .353(fer as a single strin\ g of characters, instead of treating each character as if)-.25 F .544 -(it had been read from the k)144 300 R -.15(ey)-.1 G 3.043(board. This) +(it had been read from the k)144 372 R -.15(ey)-.1 G 3.043(board. This) .15 F .543(can pre)3.043 F -.15(ve)-.25 G .543 (nt pasted characters from being interpreted as).15 F(editing commands.) -144 312 Q F1(enable\255k)108 324 Q(eypad \(Off\))-.1 E F0 .892 -(When set to)144 336 R F1(On)3.393 E F0 3.393(,r)C .893 +144 384 Q F1(enable\255k)108 396 Q(eypad \(Off\))-.1 E F0 .892 +(When set to)144 408 R F1(On)3.393 E F0 3.393(,r)C .893 (eadline will try to enable the application k)-3.393 F -.15(ey)-.1 G .893(pad when it is called.).15 F .893(Some sys-)5.893 F -(tems need this to enable the arro)144 348 Q 2.5(wk)-.25 G -.15(ey)-2.6 -G(s.).15 E F1(enable\255meta\255k)108 360 Q(ey \(On\))-.1 E F0 .64 -(When set to)144 372 R F1(On)3.14 E F0 3.14(,r)C .64 +(tems need this to enable the arro)144 420 Q 2.5(wk)-.25 G -.15(ey)-2.6 +G(s.).15 E F1(enable\255meta\255k)108 432 Q(ey \(On\))-.1 E F0 .64 +(When set to)144 444 R F1(On)3.14 E F0 3.14(,r)C .64 (eadline will try to enable an)-3.14 F 3.14(ym)-.15 G .64 (eta modi\214er k)-3.14 F .94 -.15(ey t)-.1 H .64 -(he terminal claims to support).15 F(when it is called.)144 384 Q +(he terminal claims to support).15 F(when it is called.)144 456 Q (On man)5 E 2.5(yt)-.15 G(erminals, the meta k)-2.5 E .3 -.15(ey i)-.1 H 2.5(su).15 G(sed to send eight-bit characters.)-2.5 E F1 -(expand\255tilde \(Off\))108 396 Q F0(If set to)144 408 Q F1(On)2.5 E F0 +(expand\255tilde \(Off\))108 468 Q F0(If set to)144 480 Q F1(On)2.5 E F0 2.5(,t)C(ilde e)-2.5 E(xpansion is performed when readline attempts w) --.15 E(ord completion.)-.1 E F1(history\255pr)108 420 Q(eser)-.18 E -.1 -(ve)-.1 G(\255point \(Off\)).1 E F0 .552(If set to)144 432 R F1(On)3.052 +-.15 E(ord completion.)-.1 E F1(history\255pr)108 492 Q(eser)-.18 E -.1 +(ve)-.1 G(\255point \(Off\)).1 E F0 .552(If set to)144 504 R F1(On)3.052 E F0 3.052(,t)C .552(he history code attempts to place point at the sam\ -e location on each history line re-)-3.052 F(trie)144 444 Q -.15(ve)-.25 +e location on each history line re-)-3.052 F(trie)144 516 Q -.15(ve)-.25 G 2.5(dw).15 G(ith)-2.5 E F1(pr)2.5 E -.15(ev)-.18 G(ious-history).15 E F0(or)2.5 E F1(next-history)2.5 E F0(.)A F1(history\255size \(unset\)) -108 456 Q F0 .949(Set the maximum number of history entries sa)144 468 R +108 528 Q F0 .949(Set the maximum number of history entries sa)144 540 R -.15(ve)-.2 G 3.448(di).15 G 3.448(nt)-3.448 G .948(he history list.) -3.448 F .948(If set to zero, an)5.948 F 3.448(ye)-.15 G(xisting)-3.598 -E .482(history entries are deleted and no ne)144 480 R 2.982(we)-.25 G +E .482(history entries are deleted and no ne)144 552 R 2.982(we)-.25 G .483(ntries are sa)-2.982 F -.15(ve)-.2 G 2.983(d. If).15 F .483 (set to a v)2.983 F .483(alue less than zero, the num-)-.25 F .278 -(ber of history entries is not limited.)144 492 R .277(By def)5.278 F +(ber of history entries is not limited.)144 564 R .277(By def)5.278 F .277(ault, the number of history entries is set to the v)-.1 F .277 -(alue of)-.25 F(the)144 504 Q F1(HISTSIZE)3.41 E F0 .91(shell v)3.41 F +(alue of)-.25 F(the)144 576 Q F1(HISTSIZE)3.41 E F0 .91(shell v)3.41 F 3.41(ariable. If)-.25 F .911(an attempt is made to set)3.41 F F2 (history\255size)3.411 E F0 .911(to a non-numeric v)3.411 F(alue,)-.25 E -(the maximum number of history entries will be set to 500.)144 516 Q F1 -(horizontal\255scr)108 528 Q(oll\255mode \(Off\))-.18 E F0 .449 -(When set to)144 540 R F1(On)2.949 E F0 2.949(,m)C(ak)-2.949 E .448 +(the maximum number of history entries will be set to 500.)144 588 Q F1 +(horizontal\255scr)108 600 Q(oll\255mode \(Off\))-.18 E F0 .449 +(When set to)144 612 R F1(On)2.949 E F0 2.949(,m)C(ak)-2.949 E .448 (es readline use a single line for display)-.1 F 2.948(,s)-.65 G .448 (crolling the input horizontally on a)-2.948 F 1.194(single screen line\ when it becomes longer than the screen width rather than wrapping to a\ - ne)144 552 R(w)-.25 E 2.5(line. This)144 564 R + ne)144 624 R(w)-.25 E 2.5(line. This)144 636 R (setting is automatically enabled for terminals of height 1.)2.5 E F1 -(input\255meta \(Off\))108 576 Q F0 1.062(If set to)144 588 R F1(On) +(input\255meta \(Off\))108 648 Q F0 1.062(If set to)144 660 R F1(On) 3.562 E F0 3.562(,r)C 1.061(eadline will enable eight-bit input \(that \ is, it will not strip the eighth bit from the)-3.562 F .335 -(characters it reads\), re)144 600 R -.05(ga)-.15 G .335 +(characters it reads\), re)144 672 R -.05(ga)-.15 G .335 (rdless of what the terminal claims it can support.).05 F .336(The name) -5.336 F F1(meta\255\215ag)2.836 E F0(is)2.836 E 2.865(as)144 612 S(ynon) +5.336 F F1(meta\255\215ag)2.836 E F0(is)2.836 E 2.865(as)144 684 S(ynon) -2.865 E .365(ym for this v)-.15 F 2.864(ariable. The)-.25 F(def)2.864 E .364(ault is)-.1 F F2(Of)2.864 E(f)-.18 E F0 2.864(,b)C .364 (ut readline will set it to)-3.064 F F2(On)2.864 E F0 .364 -(if the locale contains)2.864 F(eight-bit characters.)144 624 Q F1 -(isear)108 636 Q(ch\255terminators \(`)-.18 E(`C\255[C\255J')-.63 E('\)) --.63 E F0 .439(The string of characters that should terminate an increm\ -ental search without subsequently e)144 648 R -.15(xe)-.15 G(cut-).15 E -.935(ing the character as a command.)144 660 R .935(If this v)5.935 F -.935(ariable has not been gi)-.25 F -.15(ve)-.25 G 3.434(nav).15 G .934 -(alue, the characters)-3.684 F F2(ESC)3.434 E F0(and)144 672 Q F2 -(C\255J)2.5 E F0(will terminate an incremental search.)2.5 E F1 -.1(ke) -108 684 S(ymap \(emacs\)).1 E F0 2.02(Set the current readline k)144 696 -R -.15(ey)-.1 G 4.521(map. The).15 F 2.021(set of v)4.521 F 2.021 -(alid k)-.25 F -.15(ey)-.1 G 2.021(map names is).15 F F2 2.021 -(emacs, emacs\255standar)4.521 F(d,)-.37 E .042 -(emacs\255meta, emacs\255ctlx, vi, vi\255command)144 708 R F0 2.542(,a)C -(nd)-2.542 E F2(vi\255insert)2.832 E F0(.).68 E F2(vi)5.042 E F0 .042 -(is equi)2.542 F -.25(va)-.25 G .042(lent to).25 F F2(vi\255command) -2.541 E F0(;)A F2(emacs)2.541 E F0 1.529(is equi)144 720 R -.25(va)-.25 -G 1.529(lent to).25 F F2(emacs\255standar)4.029 E(d)-.37 E F0 6.529(.T)C -1.529(he def)-6.529 F 1.529(ault v)-.1 F 1.529(alue is)-.25 F F2(emacs) -4.219 E F0 4.029(;t).27 G 1.529(he v)-4.029 F 1.53(alue of)-.25 F F1 -(editing\255mode)4.03 E F0(also)4.03 E(GNU Bash 5.0)72 768 Q(2019 No) -136.385 E -.15(ve)-.15 G(mber 26).15 E(42)185.545 E 0 Cg EP +(if the locale contains)2.864 F(eight-bit characters.)144 696 Q +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(42)190.95 E 0 Cg EP %%Page: 43 43 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(af)144 84 Q -(fects the def)-.25 E(ault k)-.1 E -.15(ey)-.1 G(map.).15 E/F1 10 -/Times-Bold@0 SF -.1(ke)108 96 S(yseq\255timeout \(500\)).1 E F0 .368 -(Speci\214es the duration)144 108 R/F2 10/Times-Italic@0 SF -.37(re) -2.867 G(adline).37 E F0 .367(will w)2.867 F .367 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(isear)108 84 Q(ch\255terminators \(`)-.18 E(`C\255[C\255J')-.63 E +('\))-.63 E F0 .439(The string of characters that should terminate an i\ +ncremental search without subsequently e)144 96 R -.15(xe)-.15 G(cut-) +.15 E .935(ing the character as a command.)144 108 R .935(If this v) +5.935 F .935(ariable has not been gi)-.25 F -.15(ve)-.25 G 3.434(nav).15 +G .934(alue, the characters)-3.684 F/F2 10/Times-Italic@0 SF(ESC)3.434 E +F0(and)144 120 Q F2(C\255J)2.5 E F0 +(will terminate an incremental search.)2.5 E F1 -.1(ke)108 132 S +(ymap \(emacs\)).1 E F0 2.02(Set the current readline k)144 144 R -.15 +(ey)-.1 G 4.521(map. The).15 F 2.021(set of v)4.521 F 2.021(alid k)-.25 +F -.15(ey)-.1 G 2.021(map names is).15 F F2 2.021 +(emacs, emacs\255standar)4.521 F(d,)-.37 E .042 +(emacs\255meta, emacs\255ctlx, vi, vi\255command)144 156 R F0 2.542(,a)C +(nd)-2.542 E F2(vi\255insert)2.832 E F0(.).68 E F2(vi)5.042 E F0 .042 +(is equi)2.542 F -.25(va)-.25 G .042(lent to).25 F F2(vi\255command) +2.541 E F0(;)A F2(emacs)2.541 E F0 .448(is equi)144 168 R -.25(va)-.25 G +.448(lent to).25 F F2(emacs\255standar)2.948 E(d)-.37 E F0 5.448(.T)C +.448(he def)-5.448 F .448(ault v)-.1 F .449(alue is)-.25 F F2(emacs) +3.139 E F0 2.949(;t).27 G .449(he v)-2.949 F .449(alue of)-.25 F F1 +(editing\255mode)2.949 E F0 .449(also af-)2.949 F(fects the def)144 180 +Q(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1 -.1(ke)108 192 S +(yseq\255timeout \(500\)).1 E F0 .368(Speci\214es the duration)144 204 R +F2 -.37(re)2.867 G(adline).37 E F0 .367(will w)2.867 F .367 (ait for a character when reading an ambiguous k)-.1 F .667 -.15(ey s) --.1 H(equence).15 E .524(\(one that can form a complete k)144 120 R .824 +-.1 H(equence).15 E .524(\(one that can form a complete k)144 216 R .824 -.15(ey s)-.1 H .524(equence using the input read so f).15 F(ar)-.1 E 3.025(,o)-.4 G 3.025(rc)-3.025 G .525(an tak)-3.025 F 3.025(ea)-.1 G -.525(dditional in-)-3.025 F .807(put to complete a longer k)144 132 R +.525(dditional in-)-3.025 F .807(put to complete a longer k)144 228 R 1.106 -.15(ey s)-.1 H 3.306(equence\). If).15 F .806(no input is recei) 3.306 F -.15(ve)-.25 G 3.306(dw).15 G .806(ithin the timeout,)-3.306 F F2 -.37(re)3.306 G(adline).37 E F0(will)3.306 E .906(use the shorter b) -144 144 R .907(ut complete k)-.2 F 1.207 -.15(ey s)-.1 H 3.407 +144 240 R .907(ut complete k)-.2 F 1.207 -.15(ey s)-.1 H 3.407 (equence. The).15 F -.25(va)3.407 G .907 (lue is speci\214ed in milliseconds, so a v).25 F .907(alue of)-.25 F -.05(1000 means that)144 156 R F2 -.37(re)2.55 G(adline).37 E F0 .05 +.05(1000 means that)144 252 R F2 -.37(re)2.55 G(adline).37 E F0 .05 (will w)2.55 F .05(ait one second for additional input.)-.1 F .05 (If this v)5.05 F .05(ariable is set to a v)-.25 F(alue)-.25 E .051 -(less than or equal to zero, or to a non-numeric v)144 168 R(alue,)-.25 +(less than or equal to zero, or to a non-numeric v)144 264 R(alue,)-.25 E F2 -.37(re)2.551 G(adline).37 E F0 .051(will w)2.551 F .051 (ait until another k)-.1 F .352 -.15(ey i)-.1 H 2.552(sp).15 G(ressed) --2.552 E(to decide which k)144 180 Q .3 -.15(ey s)-.1 H -(equence to complete.).15 E F1(mark\255dir)108 192 Q(ectories \(On\)) --.18 E F0(If set to)144 204 Q F1(On)2.5 E F0 2.5(,c)C +-2.552 E(to decide which k)144 276 Q .3 -.15(ey s)-.1 H +(equence to complete.).15 E F1(mark\255dir)108 288 Q(ectories \(On\)) +-.18 E F0(If set to)144 300 Q F1(On)2.5 E F0 2.5(,c)C (ompleted directory names ha)-2.5 E .3 -.15(ve a s)-.2 H(lash appended.) -.15 E F1(mark\255modi\214ed\255lines \(Off\))108 216 Q F0(If set to)144 -228 Q F1(On)2.5 E F0 2.5(,h)C(istory lines that ha)-2.5 E .3 -.15(ve b) +.15 E F1(mark\255modi\214ed\255lines \(Off\))108 312 Q F0(If set to)144 +324 Q F1(On)2.5 E F0 2.5(,h)C(istory lines that ha)-2.5 E .3 -.15(ve b) -.2 H(een modi\214ed are displayed with a preceding asterisk \().15 E F1 -(*)A F0(\).)A F1(mark\255symlink)108 240 Q(ed\255dir)-.1 E -(ectories \(Off\))-.18 E F0 .175(If set to)144 252 R F1(On)2.675 E F0 +(*)A F0(\).)A F1(mark\255symlink)108 336 Q(ed\255dir)-.1 E +(ectories \(Off\))-.18 E F0 .175(If set to)144 348 R F1(On)2.675 E F0 2.675(,c)C .175 (ompleted names which are symbolic links to directories ha)-2.675 F .475 --.15(ve a s)-.2 H .175(lash appended \(sub-).15 F(ject to the v)144 264 +-.15(ve a s)-.2 H .175(lash appended \(sub-).15 F(ject to the v)144 360 Q(alue of)-.25 E F1(mark\255dir)2.5 E(ectories)-.18 E F0(\).)A F1 -(match\255hidden\255\214les \(On\))108 276 Q F0 .192(This v)144 288 R +(match\255hidden\255\214les \(On\))108 372 Q F0 .192(This v)144 384 R .192(ariable, when set to)-.25 F F1(On)2.692 E F0 2.692(,c)C .192 (auses readline to match \214les whose names be)-2.692 F .193 (gin with a `.)-.15 F 2.693('\()-.7 G(hidden)-2.693 E .457 -(\214les\) when performing \214lename completion.)144 300 R .456 +(\214les\) when performing \214lename completion.)144 396 R .456 (If set to)5.456 F F1(Off)2.956 E F0 2.956(,t)C .456(he leading `.) -2.956 F 2.956('m)-.7 G .456(ust be supplied by the)-2.956 F -(user in the \214lename to be completed.)144 312 Q F1 -(menu\255complete\255display\255pr)108 324 Q(e\214x \(Off\))-.18 E F0 -1.585(If set to)144 336 R F1(On)4.085 E F0 4.085(,m)C 1.585(enu complet\ +(user in the \214lename to be completed.)144 408 Q F1 +(menu\255complete\255display\255pr)108 420 Q(e\214x \(Off\))-.18 E F0 +1.585(If set to)144 432 R F1(On)4.085 E F0 4.085(,m)C 1.585(enu complet\ ion displays the common pre\214x of the list of possible completions) --4.085 F(\(which may be empty\) before c)144 348 Q -(ycling through the list.)-.15 E F1(output\255meta \(Off\))108 360 Q F0 -.507(If set to)144 372 R F1(On)3.007 E F0 3.007(,r)C .507(eadline will \ +-4.085 F(\(which may be empty\) before c)144 444 Q +(ycling through the list.)-.15 E F1(output\255meta \(Off\))108 456 Q F0 +.507(If set to)144 468 R F1(On)3.007 E F0 3.007(,r)C .507(eadline will \ display characters with the eighth bit set directly rather than as a me\ -ta-)-3.007 F(pre\214x)144 384 Q .884(ed escape sequence.)-.15 F .884 +ta-)-3.007 F(pre\214x)144 480 Q .884(ed escape sequence.)-.15 F .884 (The def)5.884 F .884(ault is)-.1 F F2(Of)3.384 E(f)-.18 E F0 3.384(,b)C .884(ut readline will set it to)-3.584 F F2(On)3.384 E F0 .885 -(if the locale contains)3.384 F(eight-bit characters.)144 396 Q F1 -(page\255completions \(On\))108 408 Q F0 .809(If set to)144 420 R F1(On) +(if the locale contains)3.384 F(eight-bit characters.)144 492 Q F1 +(page\255completions \(On\))108 504 Q F0 .809(If set to)144 516 R F1(On) 3.308 E F0 3.308(,r)C .808(eadline uses an internal)-3.308 F F2(mor) 3.308 E(e)-.37 E F0(-lik)A 3.308(ep)-.1 G .808 (ager to display a screenful of possible comple-)-3.308 F -(tions at a time.)144 432 Q F1 -(print\255completions\255horizontally \(Off\))108 444 Q F0 .227 -(If set to)144 456 R F1(On)2.727 E F0 2.727(,r)C .227(eadline will disp\ +(tions at a time.)144 528 Q F1 +(print\255completions\255horizontally \(Off\))108 540 Q F0 .227 +(If set to)144 552 R F1(On)2.727 E F0 2.727(,r)C .227(eadline will disp\ lay completions with matches sorted horizontally in alphabetical or) --2.727 F(-)-.2 E(der)144 468 Q 2.5(,r)-.4 G(ather than do)-2.5 E -(wn the screen.)-.25 E F1 -2.29 -.18(re v)108 480 T -(ert\255all\255at\255newline \(Off\)).08 E F0 .699(If set to)144 492 R +-2.727 F(-)-.2 E(der)144 564 Q 2.5(,r)-.4 G(ather than do)-2.5 E +(wn the screen.)-.25 E F1 -2.29 -.18(re v)108 576 T +(ert\255all\255at\255newline \(Off\)).08 E F0 .699(If set to)144 588 R F1(On)3.199 E F0 3.199(,r)C .699 (eadline will undo all changes to history lines before returning when) --3.199 F F1(accept\255line)3.198 E F0(is)3.198 E -.15(exe)144 504 S +-3.199 F F1(accept\255line)3.198 E F0(is)3.198 E -.15(exe)144 600 S 2.686(cuted. By).15 F(def)2.686 E .186 (ault, history lines may be modi\214ed and retain indi)-.1 F .186 -(vidual undo lists across calls to)-.25 F F1 -.18(re)144 516 S(adline) -.18 E F0(.)A F1(sho)108 528 Q(w\255all\255if\255ambiguous \(Off\))-.1 E -F0 .304(This alters the def)144 540 R .304(ault beha)-.1 F .304 +(vidual undo lists across calls to)-.25 F F1 -.18(re)144 612 S(adline) +.18 E F0(.)A F1(sho)108 624 Q(w\255all\255if\255ambiguous \(Off\))-.1 E +F0 .304(This alters the def)144 636 R .304(ault beha)-.1 F .304 (vior of the completion functions.)-.2 F .304(If set to)5.304 F F1(On) 2.804 E F0 2.803(,w)C .303(ords which ha)-2.903 F .603 -.15(ve m)-.2 H (ore).15 E 1.264(than one possible completion cause the matches to be l\ -isted immediately instead of ringing the)144 552 R(bell.)144 564 Q F1 -(sho)108 576 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.346 -(This alters the def)144 588 R 5.346(ault beha)-.1 F 5.345 +isted immediately instead of ringing the)144 648 R(bell.)144 660 Q F1 +(sho)108 672 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.346 +(This alters the def)144 684 R 5.346(ault beha)-.1 F 5.345 (vior of the completion functions in a f)-.2 F 5.345(ashion similar to) --.1 F F1(sho)144 600 Q(w\255all\255if\255ambiguous)-.1 E F0 6.69(.I)C +-.1 F F1(sho)144 696 Q(w\255all\255if\255ambiguous)-.1 E F0 6.69(.I)C 4.19(fs)-6.69 G 1.691(et to)-4.19 F F1(On)4.191 E F0 4.191(,w)C 1.691 (ords which ha)-4.291 F 1.991 -.15(ve m)-.2 H 1.691 -(ore than one possible completion).15 F 1.04(without an)144 612 R 3.54 +(ore than one possible completion).15 F 1.04(without an)144 708 R 3.54 (yp)-.15 G 1.039 (ossible partial completion \(the possible completions don')-3.54 F 3.539(ts)-.18 G 1.039(hare a common pre\214x\))-3.539 F(cause the match\ -es to be listed immediately instead of ringing the bell.)144 624 Q F1 -(sho)108 636 Q(w\255mode\255in\255pr)-.1 E(ompt \(Off\))-.18 E F0 1.021 -(If set to)144 648 R F1(On)3.521 E F0 3.521(,a)C 1.022 +es to be listed immediately instead of ringing the bell.)144 720 Q +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(43)190.95 E 0 Cg EP +%%Page: 44 44 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(sho)108 84 Q(w\255mode\255in\255pr)-.1 E(ompt \(Off\))-.18 E F0 1.021 +(If set to)144 96 R F1(On)3.521 E F0 3.521(,a)C 1.022 (dd a string to the be)-3.521 F 1.022 (ginning of the prompt indicating the editing mode: emacs, vi)-.15 F -(command, or vi insertion.)144 660 Q(The mode strings are user)5 E -(-settable \(e.g.,)-.2 E F2(emacs\255mode\255string)2.5 E F0(\).)A F1 -(skip\255completed\255text \(Off\))108 672 Q F0 .095(If set to)144 684 R +(command, or vi insertion.)144 108 Q(The mode strings are user)5 E +(-settable \(e.g.,)-.2 E/F2 10/Times-Italic@0 SF +(emacs\255mode\255string)2.5 E F0(\).)A F1 +(skip\255completed\255text \(Off\))108 120 Q F0 .095(If set to)144 132 R F1(On)2.595 E F0 2.595(,t)C .095(his alters the def)-2.595 F .095 (ault completion beha)-.1 F .094 -(vior when inserting a single match into the line.)-.2 F(It')144 696 Q +(vior when inserting a single match into the line.)-.2 F(It')144 144 Q 2.545(so)-.55 G .045(nly acti)-2.545 F .345 -.15(ve w)-.25 H .046 (hen performing completion in the middle of a w).15 F 2.546(ord. If)-.1 F .046(enabled, readline does not)2.546 F 1.394(insert characters from \ -the completion that match characters after point in the w)144 708 R -1.394(ord being com-)-.1 F(pleted, so portions of the w)144 720 Q -(ord follo)-.1 E(wing the cursor are not duplicated.)-.25 E -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(43)185.545 E 0 Cg EP -%%Page: 44 44 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(vi\255cmd\255mode\255string \(\(cmd\)\))108 84 Q F0 .517(If the)144 -96 R/F2 10/Times-Italic@0 SF(show\255mode\255in\255pr)3.017 E(ompt)-.45 -E F0 -.25(va)3.017 G .518 -(riable is enabled, this string is displayed immediately before the).25 -F .475(last line of the primary prompt when vi editing mode is acti)144 -108 R .775 -.15(ve a)-.25 H .475(nd in command mode.).15 F .475(The v) -5.475 F(alue)-.25 E .33(is e)144 120 R .33(xpanded lik)-.15 F 2.83(eak) --.1 G .63 -.15(ey b)-2.93 H .33 +the completion that match characters after point in the w)144 156 R +1.394(ord being com-)-.1 F(pleted, so portions of the w)144 168 Q +(ord follo)-.1 E(wing the cursor are not duplicated.)-.25 E F1 +(vi\255cmd\255mode\255string \(\(cmd\)\))108 180 Q F0 .517(If the)144 +192 R F2(show\255mode\255in\255pr)3.017 E(ompt)-.45 E F0 -.25(va)3.017 G +.518(riable is enabled, this string is displayed immediately before the) +.25 F .475(last line of the primary prompt when vi editing mode is acti) +144 204 R .775 -.15(ve a)-.25 H .475(nd in command mode.).15 F .475 +(The v)5.475 F(alue)-.25 E .33(is e)144 216 R .33(xpanded lik)-.15 F +2.83(eak)-.1 G .63 -.15(ey b)-2.93 H .33 (inding, so the standard set of meta- and control pre\214x).15 F .33 -(es and backslash es-)-.15 F .245(cape sequences is a)144 132 R -.25(va) +(es and backslash es-)-.15 F .245(cape sequences is a)144 228 R -.25(va) -.2 G 2.745(ilable. Use).25 F .244(the \\1 and \\2 escapes to be)2.745 F .244(gin and end sequences of non-printing)-.15 F(characters, which can\ be used to embed a terminal control sequence into the mode string.)144 -144 Q F1(vi\255ins\255mode\255string \(\(ins\)\))108 156 Q F0 .517 -(If the)144 168 R F2(show\255mode\255in\255pr)3.017 E(ompt)-.45 E F0 +240 Q F1(vi\255ins\255mode\255string \(\(ins\)\))108 252 Q F0 .517 +(If the)144 264 R F2(show\255mode\255in\255pr)3.017 E(ompt)-.45 E F0 -.25(va)3.017 G .518 (riable is enabled, this string is displayed immediately before the).25 F .186(last line of the primary prompt when vi editing mode is acti)144 -180 R .486 -.15(ve a)-.25 H .186(nd in insertion mode.).15 F .186(The v) -5.186 F .186(alue is)-.25 F -.15(ex)144 192 S .923(panded lik).15 F +276 R .486 -.15(ve a)-.25 H .186(nd in insertion mode.).15 F .186(The v) +5.186 F .186(alue is)-.25 F -.15(ex)144 288 S .923(panded lik).15 F 3.423(eak)-.1 G 1.223 -.15(ey b)-3.523 H .924 (inding, so the standard set of meta- and control pre\214x).15 F .924 -(es and backslash es-)-.15 F .245(cape sequences is a)144 204 R -.25(va) +(es and backslash es-)-.15 F .245(cape sequences is a)144 300 R -.25(va) -.2 G 2.745(ilable. Use).25 F .244(the \\1 and \\2 escapes to be)2.745 F .244(gin and end sequences of non-printing)-.15 F(characters, which can\ be used to embed a terminal control sequence into the mode string.)144 -216 Q F1(visible\255stats \(Off\))108 228 Q F0 .846(If set to)144 240 R +312 Q F1(visible\255stats \(Off\))108 324 Q F0 .846(If set to)144 336 R F1(On)3.346 E F0 3.346(,ac)C .846(haracter denoting a \214le')-3.346 F 3.346(st)-.55 G .846(ype as reported by)-3.346 F F2(stat)3.346 E F0 .846 (\(2\) is appended to the \214lename)B -(when listing possible completions.)144 252 Q F1 -(Readline Conditional Constructs)87 268.8 Q F0 .05 -(Readline implements a f)108 280.8 R .05(acility similar in spirit to t\ +(when listing possible completions.)144 348 Q F1 +(Readline Conditional Constructs)87 364.8 Q F0 .05 +(Readline implements a f)108 376.8 R .05(acility similar in spirit to t\ he conditional compilation features of the C preprocessor)-.1 F .096 -(which allo)108 292.8 R .096(ws k)-.25 F .396 -.15(ey b)-.1 H .096 +(which allo)108 388.8 R .096(ws k)-.25 F .396 -.15(ey b)-.1 H .096 (indings and v).15 F .096 (ariable settings to be performed as the result of tests.)-.25 F .097 -(There are four parser)5.096 F(directi)108 304.8 Q -.15(ve)-.25 G 2.5 -(su).15 G(sed.)-2.5 E F1($if)108 321.6 Q F0(The)144 321.6 Q F1($if)2.963 +(There are four parser)5.096 F(directi)108 400.8 Q -.15(ve)-.25 G 2.5 +(su).15 G(sed.)-2.5 E F1($if)108 417.6 Q F0(The)144 417.6 Q F1($if)2.963 E F0 .463(construct allo)2.963 F .462(ws bindings to be made based on t\ he editing mode, the terminal being used,)-.25 F -(or the application using readline.)144 333.6 Q(The te)5 E +(or the application using readline.)144 429.6 Q(The te)5 E (xt of the test, after an)-.15 E 2.5(yc)-.15 G(omparison operator)-2.5 E -(,)-.4 E -.15(ex)146.5 345.6 S(tends to the end of the line; unless oth\ +(,)-.4 E -.15(ex)146.5 441.6 S(tends to the end of the line; unless oth\ erwise noted, no characters are required to isolate it.).15 E F1(mode) -144 362.4 Q F0(The)180 362.4 Q F1(mode=)3.711 E F0 1.211(form of the) +144 458.4 Q F0(The)180 458.4 Q F1(mode=)3.711 E F0 1.211(form of the) 3.711 F F1($if)3.711 E F0(directi)3.711 E 1.511 -.15(ve i)-.25 H 3.711 (su).15 G 1.211(sed to test whether readline is in emacs or vi)-3.711 F -3.065(mode. This)180 374.4 R .565(may be used in conjunction with the) +3.065(mode. This)180 470.4 R .565(may be used in conjunction with the) 3.065 F F1 .565(set k)3.065 F(eymap)-.1 E F0 .565 -(command, for instance, to)3.065 F .735(set bindings in the)180 386.4 R +(command, for instance, to)3.065 F .735(set bindings in the)180 482.4 R F2(emacs\255standar)3.235 E(d)-.37 E F0(and)3.235 E F2(emacs\255ctlx) 3.235 E F0 -.1(ke)3.235 G .735(ymaps only if readline is starting)-.05 F -(out in emacs mode.)180 398.4 Q F1(term)144 415.2 Q F0(The)180 415.2 Q +(out in emacs mode.)180 494.4 Q F1(term)144 511.2 Q F0(The)180 511.2 Q F1(term=)3.197 E F0 .696 (form may be used to include terminal-speci\214c k)3.197 F .996 -.15 -(ey b)-.1 H .696(indings, perhaps to bind).15 F .654(the k)180 427.2 R +(ey b)-.1 H .696(indings, perhaps to bind).15 F .654(the k)180 523.2 R .954 -.15(ey s)-.1 H .654(equences output by the terminal').15 F 3.154 (sf)-.55 G .654(unction k)-3.154 F -.15(ey)-.1 G 3.154(s. The).15 F -.1 -(wo)3.154 G .654(rd on the right side of).1 F(the)180 439.2 Q F1(=)3.232 +(wo)3.154 G .654(rd on the right side of).1 F(the)180 535.2 Q F1(=)3.232 E F0 .732(is tested ag)3.232 F .732(ainst both the full name of the ter\ minal and the portion of the terminal)-.05 F(name before the \214rst)180 -451.2 Q F12.5 E F0 5(.T)C(his allo)-5 E(ws)-.25 E F2(sun)2.84 E F0 +547.2 Q F12.5 E F0 5(.T)C(his allo)-5 E(ws)-.25 E F2(sun)2.84 E F0 (to match both)2.74 E F2(sun)2.84 E F0(and)2.74 E F2(sun\255cmd)2.84 E -F0 2.5(,f).77 G(or instance.)-2.5 E F1 -.1(ve)144 468 S(rsion).1 E F0 -(The)180 480 Q F1 -.1(ve)3.108 G(rsion).1 E F0 .608 +F0 2.5(,f).77 G(or instance.)-2.5 E F1 -.1(ve)144 564 S(rsion).1 E F0 +(The)180 576 Q F1 -.1(ve)3.108 G(rsion).1 E F0 .608 (test may be used to perform comparisons ag)3.108 F .609 -(ainst speci\214c readline v)-.05 F(ersions.)-.15 E(The)180 492 Q F1 -.1 +(ainst speci\214c readline v)-.05 F(ersions.)-.15 E(The)180 588 Q F1 -.1 (ve)2.772 G(rsion).1 E F0 -.15(ex)2.772 G .272 (pands to the current readline v).15 F 2.771(ersion. The)-.15 F .271 -(set of comparison operators in-)2.771 F(cludes)180 504 Q F1(=)3.063 E +(set of comparison operators in-)2.771 F(cludes)180 600 Q F1(=)3.063 E F0 3.063(,\()C(and)-3.063 E F1(==)3.063 E F0(\),)A F1(!=)3.063 E F0(,)A F1(<=)3.063 E F0(,)A F1(>=)3.063 E F0(,)A F1(<)3.063 E F0 3.063(,a)C(nd) -3.063 E F1(>)3.064 E F0 5.564(.T)C .564(he v)-5.564 F .564 (ersion number supplied on the right side)-.15 F .318 -(of the operator consists of a major v)180 516 R .318(ersion number)-.15 +(of the operator consists of a major v)180 612 R .318(ersion number)-.15 F 2.818(,a)-.4 G 2.818(no)-2.818 G .318 -(ptional decimal point, and an op-)-2.818 F .1(tional minor v)180 528 R +(ptional decimal point, and an op-)-2.818 F .1(tional minor v)180 624 R .1(ersion \(e.g.,)-.15 F F1(7.1)2.6 E F0 .1(\). If the minor v)B .101 (ersion is omitted, it is assumed to be)-.15 F F1(0)2.601 E F0 5.101(.T) -C(he)-5.101 E .06(operator may be separated from the string)180 540 R F1 +C(he)-5.101 E .06(operator may be separated from the string)180 636 R F1 -.1(ve)2.56 G(rsion).1 E F0 .06(and from the v)2.56 F .06 -(ersion number ar)-.15 F(gument)-.18 E(by whitespace.)180 552 Q F1 -(application)144 568.8 Q F0(The)180 580.8 Q F1(application)3.003 E F0 +(ersion number ar)-.15 F(gument)-.18 E(by whitespace.)180 648 Q F1 +(application)144 664.8 Q F0(The)180 676.8 Q F1(application)3.003 E F0 .503(construct is used to include application-speci\214c settings.)3.003 F .503(Each program)5.503 F .114(using the readline library sets the)180 -592.8 R F2 .114(application name)2.614 F F0 2.614(,a)C .114 +688.8 R F2 .114(application name)2.614 F F0 2.614(,a)C .114 (nd an initialization \214le can test for a)-2.614 F .5(particular v)180 -604.8 R 3(alue. This)-.25 F .501(could be used to bind k)3 F .801 -.15 +700.8 R 3(alue. This)-.25 F .501(could be used to bind k)3 F .801 -.15 (ey s)-.1 H .501(equences to functions useful for a spe-).15 F .397 -(ci\214c program.)180 616.8 R -.15(Fo)5.397 G 2.896(ri).15 G .396 +(ci\214c program.)180 712.8 R -.15(Fo)5.397 G 2.896(ri).15 G .396 (nstance, the follo)-2.896 F .396(wing command adds a k)-.25 F .696 -.15 -(ey s)-.1 H .396(equence that quotes the).15 F(current or pre)180 628.8 -Q(vious w)-.25 E(ord in)-.1 E F1(bash)2.5 E F0(:)A F1($if)180 652.8 Q F0 -(Bash)2.5 E 2.5(#Q)180 664.8 S(uote the current or pre)-2.5 E(vious w) --.25 E(ord)-.1 E("\\C\255xq": "\\eb\\"\\ef\\"")180 676.8 Q F1($endif)180 -688.8 Q F2(variable)144 705.6 Q F0(The)180 717.6 Q F2(variable)3.776 E -F0 1.276(construct pro)3.776 F 1.276 -(vides simple equality tests for readline v)-.15 F 1.277(ariables and v) --.25 F(alues.)-.25 E 1.901(The permitted comparison operators are)180 -729.6 R F2(=)4.401 E F0(,)A F2(==)4.401 E F0 4.401(,a)C(nd)-4.401 E F2 -(!=)4.401 E F0 6.901(.T)C 1.901(he v)-6.901 F 1.9(ariable name must be) --.25 F(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26) -.15 E(44)185.545 E 0 Cg EP +(ey s)-.1 H .396(equence that quotes the).15 F(current or pre)180 724.8 +Q(vious w)-.25 E(ord in)-.1 E F1(bash)2.5 E F0(:)A(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(44)190.95 E 0 Cg EP %%Page: 45 45 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.448(separated f\ -rom the comparison operator by whitespace; the operator may be separate\ -d)180 84 R .833(from the v)180 96 R .833 -(alue on the right hand side by whitespace.)-.25 F .833 -(Both string and boolean v)5.833 F(ariables)-.25 E -(may be tested. Boolean v)180 108 Q(ariables must be tested ag)-.25 E -(ainst the v)-.05 E(alues)-.25 E/F1 10/Times-Italic@0 SF(on)2.5 E F0 -(and)2.5 E F1(of)2.5 E(f)-.18 E F0(.)A/F2 10/Times-Bold@0 SF($endif)108 -124.8 Q F0(This command, as seen in the pre)144 124.8 Q(vious e)-.25 E -(xample, terminates an)-.15 E F2($if)2.5 E F0(command.)2.5 E F2($else) -108 141.6 Q F0(Commands in this branch of the)144 141.6 Q F2($if)2.5 E -F0(directi)2.5 E .3 -.15(ve a)-.25 H(re e).15 E -.15(xe)-.15 G -(cuted if the test f).15 E(ails.)-.1 E F2($include)108 158.4 Q F0 .356 -(This directi)144 170.4 R .656 -.15(ve t)-.25 H(ak).15 E .356 -(es a single \214lename as an ar)-.1 F .357 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF($if)180 84 Q F0(Bash)2.5 E 2.5(#Q)180 96 S(uote the current or pre) +-2.5 E(vious w)-.25 E(ord)-.1 E("\\C\255xq": "\\eb\\"\\ef\\"")180 108 Q +F1($endif)180 120 Q/F2 10/Times-Italic@0 SF(variable)144 136.8 Q F0(The) +180 148.8 Q F2(variable)3.776 E F0 1.276(construct pro)3.776 F 1.276 +(vides simple equality tests for readline v)-.15 F 1.277(ariables and v) +-.25 F(alues.)-.25 E .08(The permitted comparison operators are)180 +160.8 R F2(=)2.579 E F0(,)A F2(==)2.579 E F0 2.579(,a)C(nd)-2.579 E F2 +(!=)2.579 E F0 5.079(.T)C .079(he v)-5.079 F .079 +(ariable name must be sepa-)-.25 F .98(rated from the comparison operat\ +or by whitespace; the operator may be separated from)180 172.8 R .13 +(the v)180 184.8 R .13(alue on the right hand side by whitespace.)-.25 F +.129(Both string and boolean v)5.129 F .129(ariables may be)-.25 F +(tested. Boolean v)180 196.8 Q(ariables must be tested ag)-.25 E +(ainst the v)-.05 E(alues)-.25 E F2(on)2.5 E F0(and)2.5 E F2(of)2.5 E(f) +-.18 E F0(.)A F1($endif)108 213.6 Q F0(This command, as seen in the pre) +144 213.6 Q(vious e)-.25 E(xample, terminates an)-.15 E F1($if)2.5 E F0 +(command.)2.5 E F1($else)108 230.4 Q F0(Commands in this branch of the) +144 230.4 Q F1($if)2.5 E F0(directi)2.5 E .3 -.15(ve a)-.25 H(re e).15 E +-.15(xe)-.15 G(cuted if the test f).15 E(ails.)-.1 E F1($include)108 +247.2 Q F0 .356(This directi)144 259.2 R .656 -.15(ve t)-.25 H(ak).15 E +.356(es a single \214lename as an ar)-.1 F .357 (gument and reads commands and bindings from that)-.18 F 2.5(\214le. F) -144 182.4 R(or e)-.15 E(xample, the follo)-.15 E(wing directi)-.25 E .3 --.15(ve w)-.25 H(ould read).05 E F1(/etc/inputr)2.5 E(c)-.37 E F0(:)A F2 -($include)144 206.4 Q F1(/etc/inputr)5.833 E(c)-.37 E F2(Sear)87 223.2 Q -(ching)-.18 E F0 .835(Readline pro)108 235.2 R .835 +144 271.2 R(or e)-.15 E(xample, the follo)-.15 E(wing directi)-.25 E .3 +-.15(ve w)-.25 H(ould read).05 E F2(/etc/inputr)2.5 E(c)-.37 E F0(:)A F1 +($include)144 295.2 Q F2(/etc/inputr)5.833 E(c)-.37 E F1(Sear)87 312 Q +(ching)-.18 E F0 .835(Readline pro)108 324 R .835 (vides commands for searching through the command history \(see)-.15 F /F3 9/Times-Bold@0 SF(HIST)3.334 E(OR)-.162 E(Y)-.315 E F0(belo)3.084 E -.834(w\) for lines)-.25 F(containing a speci\214ed string.)108 247.2 Q -(There are tw)5 E 2.5(os)-.1 G(earch modes:)-2.5 E F1(incr)2.51 E -(emental)-.37 E F0(and)3.01 E F1(non-incr)2.86 E(emental)-.37 E F0(.).51 -E .697(Incremental searches be)108 264 R .697 +.834(w\) for lines)-.25 F(containing a speci\214ed string.)108 336 Q +(There are tw)5 E 2.5(os)-.1 G(earch modes:)-2.5 E F2(incr)2.51 E +(emental)-.37 E F0(and)3.01 E F2(non-incr)2.86 E(emental)-.37 E F0(.).51 +E .697(Incremental searches be)108 352.8 R .697 (gin before the user has \214nished typing the search string.)-.15 F .698(As each character of the)5.698 F .113 -(search string is typed, readline displays the ne)108 276 R .112 +(search string is typed, readline displays the ne)108 364.8 R .112 (xt entry from the history matching the string typed so f)-.15 F(ar)-.1 E 5.112(.A)-.55 G(n)-5.112 E .542 -(incremental search requires only as man)108 288 R 3.042(yc)-.15 G .542 -(haracters as needed to \214nd the desired history entry)-3.042 F 5.542 -(.T)-.65 G .542(he char)-5.542 F(-)-.2 E .224(acters present in the v) -108 300 R .224(alue of the)-.25 F F2(isear)2.724 E(ch-terminators)-.18 E -F0 -.25(va)2.724 G .224 +(incremental search requires only as man)108 376.8 R 3.042(yc)-.15 G +.542(haracters as needed to \214nd the desired history entry)-3.042 F +5.542(.T)-.65 G .542(he char)-5.542 F(-)-.2 E .224 +(acters present in the v)108 388.8 R .224(alue of the)-.25 F F1(isear) +2.724 E(ch-terminators)-.18 E F0 -.25(va)2.724 G .224 (riable are used to terminate an incremental search.).25 F .66 -(If that v)108 312 R .66(ariable has not been assigned a v)-.25 F .66 +(If that v)108 400.8 R .66(ariable has not been assigned a v)-.25 F .66 (alue the Escape and Control-J characters will terminate an incre-)-.25 -F .097(mental search.)108 324 R .096(Control-G will abort an incrementa\ -l search and restore the original line.)5.097 F .096(When the search is) -5.096 F(terminated, the history entry containing the search string beco\ -mes the current line.)108 336 Q 2.938 -.8(To \214)108 352.8 T 1.339(nd \ -other matching entries in the history list, type Control-S or Control-R\ - as appropriate.).8 F 1.339(This will)6.339 F .675(search backw)108 -364.8 R .675(ard or forw)-.1 F .675(ard in the history for the ne)-.1 F -.674(xt entry matching the search string typed so f)-.15 F(ar)-.1 E -5.674(.A)-.55 G -.15(ny)-5.674 G .174(other k)108 376.8 R .474 -.15 -(ey s)-.1 H .174 +F .097(mental search.)108 412.8 R .096(Control-G will abort an incremen\ +tal search and restore the original line.)5.097 F .096 +(When the search is)5.096 F(terminated, the history entry containing th\ +e search string becomes the current line.)108 424.8 Q 2.938 -.8(To \214) +108 441.6 T 1.339(nd other matching entries in the history list, type C\ +ontrol-S or Control-R as appropriate.).8 F 1.339(This will)6.339 F .675 +(search backw)108 453.6 R .675(ard or forw)-.1 F .675 +(ard in the history for the ne)-.1 F .674 +(xt entry matching the search string typed so f)-.15 F(ar)-.1 E 5.674 +(.A)-.55 G -.15(ny)-5.674 G .174(other k)108 465.6 R .474 -.15(ey s)-.1 +H .174 (equence bound to a readline command will terminate the search and e).15 F -.15(xe)-.15 G .175(cute that command.).15 F -.15(Fo)5.175 G(r).15 E -.541(instance, a)108 388.8 R F1(ne)3.041 E(wline)-.15 E F0 .541 +.541(instance, a)108 477.6 R F2(ne)3.041 E(wline)-.15 E F0 .541 (will terminate the search and accept the line, thereby e)3.041 F -.15 -(xe)-.15 G .54(cuting the command from the).15 F(history list.)108 400.8 -Q .653(Readline remembers the last incremental search string.)108 417.6 +(xe)-.15 G .54(cuting the command from the).15 F(history list.)108 489.6 +Q .653(Readline remembers the last incremental search string.)108 506.4 R .653(If tw)5.653 F 3.153(oC)-.1 G .653(ontrol-Rs are typed without an) -3.153 F 3.153(yi)-.15 G(nterv)-3.153 E(en-)-.15 E -(ing characters de\214ning a ne)108 429.6 Q 2.5(ws)-.25 G +(ing characters de\214ning a ne)108 518.4 Q 2.5(ws)-.25 G (earch string, an)-2.5 E 2.5(yr)-.15 G(emembered search string is used.) -2.5 E .567(Non-incremental searches read the entire search string befo\ -re starting to search for matching history lines.)108 446.4 R(The searc\ +re starting to search for matching history lines.)108 535.2 R(The searc\ h string may be typed by the user or be part of the contents of the cur\ -rent line.)108 458.4 Q F2(Readline Command Names)87 475.2 Q F0 1.391 -(The follo)108 487.2 R 1.391 +rent line.)108 547.2 Q F1(Readline Command Names)87 564 Q F0 1.391 +(The follo)108 576 R 1.391 (wing is a list of the names of the commands and the def)-.25 F 1.391 (ault k)-.1 F 1.691 -.15(ey s)-.1 H 1.391(equences to which the).15 F -3.892(ya)-.15 G(re)-3.892 E 2.622(bound. Command)108 499.2 R .122 +3.892(ya)-.15 G(re)-3.892 E 2.622(bound. Command)108 588 R .122 (names without an accompan)2.622 F .122(ying k)-.15 F .421 -.15(ey s)-.1 H .121(equence are unbound by def).15 F 2.621(ault. In)-.1 F .121 -(the follo)2.621 F(wing)-.25 E(descriptions,)108 511.2 Q F1(point)3.41 E -F0 .91(refers to the current cursor position, and)3.41 F F1(mark)3.411 E +(the follo)2.621 F(wing)-.25 E(descriptions,)108 600 Q F2(point)3.41 E +F0 .91(refers to the current cursor position, and)3.41 F F2(mark)3.411 E F0 .911(refers to a cursor position sa)3.411 F -.15(ve)-.2 G 3.411(db) -.15 G 3.411(yt)-3.411 G(he)-3.411 E F2(set\255mark)108 523.2 Q F0 2.5 +.15 G 3.411(yt)-3.411 G(he)-3.411 E F1(set\255mark)108 612 Q F0 2.5 (command. The)2.5 F(te)2.5 E -(xt between the point and mark is referred to as the)-.15 E F1 -.37(re) -2.5 G(gion)-.03 E F0(.)A F2(Commands f)87 540 Q(or Mo)-.25 E(ving)-.1 E -(beginning\255of\255line \(C\255a\))108 552 Q F0(Mo)144 564 Q .3 -.15 -(ve t)-.15 H 2.5(ot).15 G(he start of the current line.)-2.5 E F2 -(end\255of\255line \(C\255e\))108 576 Q F0(Mo)144 588 Q .3 -.15(ve t) --.15 H 2.5(ot).15 G(he end of the line.)-2.5 E F2 -.25(fo)108 600 S -(rward\255char \(C\255f\)).25 E F0(Mo)144 612 Q .3 -.15(ve f)-.15 H(orw) -.15 E(ard a character)-.1 E(.)-.55 E F2(backward\255char \(C\255b\))108 -624 Q F0(Mo)144 636 Q .3 -.15(ve b)-.15 H(ack a character).15 E(.)-.55 E -F2 -.25(fo)108 648 S(rward\255w).25 E(ord \(M\255f\))-.1 E F0(Mo)144 660 -Q .823 -.15(ve f)-.15 H(orw).15 E .523(ard to the end of the ne)-.1 F -.523(xt w)-.15 F 3.023(ord. W)-.1 F .522 -(ords are composed of alphanumeric characters \(let-)-.8 F -(ters and digits\).)144 672 Q F2(backward\255w)108 684 Q(ord \(M\255b\)) --.1 E F0(Mo)144 696 Q 1.71 -.15(ve b)-.15 H 1.41 -(ack to the start of the current or pre).15 F 1.41(vious w)-.25 F 3.91 -(ord. W)-.1 F 1.41(ords are composed of alphanumeric)-.8 F -(characters \(letters and digits\).)144 708 Q(GNU Bash 5.0)72 768 Q -(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(45)185.545 E 0 Cg EP +(xt between the point and mark is referred to as the)-.15 E F2 -.37(re) +2.5 G(gion)-.03 E F0(.)A F1(Commands f)87 628.8 Q(or Mo)-.25 E(ving)-.1 +E(beginning\255of\255line \(C\255a\))108 640.8 Q F0(Mo)144 652.8 Q .3 +-.15(ve t)-.15 H 2.5(ot).15 G(he start of the current line.)-2.5 E F1 +(end\255of\255line \(C\255e\))108 664.8 Q F0(Mo)144 676.8 Q .3 -.15 +(ve t)-.15 H 2.5(ot).15 G(he end of the line.)-2.5 E F1 -.25(fo)108 +688.8 S(rward\255char \(C\255f\)).25 E F0(Mo)144 700.8 Q .3 -.15(ve f) +-.15 H(orw).15 E(ard a character)-.1 E(.)-.55 E(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(45)190.95 E 0 Cg EP %%Page: 46 46 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(shell\255f)108 84 Q(orward\255w)-.25 E(ord)-.1 E F0(Mo)144 96 Q .784 --.15(ve f)-.15 H(orw).15 E .484(ard to the end of the ne)-.1 F .484 -(xt w)-.15 F 2.984(ord. W)-.1 F .484 -(ords are delimited by non-quoted shell metacharac-)-.8 F(ters.)144 108 -Q F1(shell\255backward\255w)108 120 Q(ord)-.1 E F0(Mo)144 132 Q .908 --.15(ve b)-.15 H .609(ack to the start of the current or pre).15 F .609 -(vious w)-.25 F 3.109(ord. W)-.1 F .609 -(ords are delimited by non-quoted shell)-.8 F(metacharacters.)144 144 Q -F1(pr)108 156 Q -.15(ev)-.18 G(ious\255scr).15 E(een\255line)-.18 E F0 -.891(Attempt to mo)144 168 R 1.191 -.15(ve p)-.15 H .891 +SF(backward\255char \(C\255b\))108 84 Q F0(Mo)144 96 Q .3 -.15(ve b)-.15 +H(ack a character).15 E(.)-.55 E F1 -.25(fo)108 108 S(rward\255w).25 E +(ord \(M\255f\))-.1 E F0(Mo)144 120 Q .823 -.15(ve f)-.15 H(orw).15 E +.523(ard to the end of the ne)-.1 F .523(xt w)-.15 F 3.023(ord. W)-.1 F +.522(ords are composed of alphanumeric characters \(let-)-.8 F +(ters and digits\).)144 132 Q F1(backward\255w)108 144 Q(ord \(M\255b\)) +-.1 E F0(Mo)144 156 Q 1.71 -.15(ve b)-.15 H 1.41 +(ack to the start of the current or pre).15 F 1.41(vious w)-.25 F 3.91 +(ord. W)-.1 F 1.41(ords are composed of alphanumeric)-.8 F +(characters \(letters and digits\).)144 168 Q F1(shell\255f)108 180 Q +(orward\255w)-.25 E(ord)-.1 E F0(Mo)144 192 Q .784 -.15(ve f)-.15 H(orw) +.15 E .484(ard to the end of the ne)-.1 F .484(xt w)-.15 F 2.984(ord. W) +-.1 F .484(ords are delimited by non-quoted shell metacharac-)-.8 F +(ters.)144 204 Q F1(shell\255backward\255w)108 216 Q(ord)-.1 E F0(Mo)144 +228 Q .908 -.15(ve b)-.15 H .609(ack to the start of the current or pre) +.15 F .609(vious w)-.25 F 3.109(ord. W)-.1 F .609 +(ords are delimited by non-quoted shell)-.8 F(metacharacters.)144 240 Q +F1(pr)108 252 Q -.15(ev)-.18 G(ious\255scr).15 E(een\255line)-.18 E F0 +.891(Attempt to mo)144 264 R 1.191 -.15(ve p)-.15 H .891 (oint to the same ph).15 F .891(ysical screen column on the pre)-.05 F .89(vious ph)-.25 F .89(ysical screen line.)-.05 F .87(This will not ha) -144 180 R 1.17 -.15(ve t)-.2 H .87(he desired ef).15 F .87 +144 276 R 1.17 -.15(ve t)-.2 H .87(he desired ef).15 F .87 (fect if the current Readline line does not tak)-.25 F 3.37(eu)-.1 G -3.37(pm)-3.37 G .87(ore than one)-3.37 F(ph)144 192 Q(ysical line or if\ +3.37(pm)-3.37 G .87(ore than one)-3.37 F(ph)144 288 Q(ysical line or if\ point is not greater than the length of the prompt plus the screen wid\ -th.)-.05 E F1(next\255scr)108 204 Q(een\255line)-.18 E F0 .638 -(Attempt to mo)144 216 R .938 -.15(ve p)-.15 H .638(oint to the same ph) +th.)-.05 E F1(next\255scr)108 300 Q(een\255line)-.18 E F0 .638 +(Attempt to mo)144 312 R .938 -.15(ve p)-.15 H .638(oint to the same ph) .15 F .637(ysical screen column on the ne)-.05 F .637(xt ph)-.15 F .637 -(ysical screen line. This)-.05 F .008(will not ha)144 228 R .309 -.15 +(ysical screen line. This)-.05 F .008(will not ha)144 324 R .309 -.15 (ve t)-.2 H .009(he desired ef).15 F .009 (fect if the current Readline line does not tak)-.25 F 2.509(eu)-.1 G 2.509(pm)-2.509 G .009(ore than one ph)-2.509 F(ysical)-.05 E .772(line\ or if the length of the current Readline line is not greater than the \ -length of the prompt plus)144 240 R(the screen width.)144 252 Q F1 -(clear\255scr)108 264 Q(een \(C\255l\))-.18 E F0 .993 -(Clear the screen lea)144 276 R .993 +length of the prompt plus)144 336 R(the screen width.)144 348 Q F1 +(clear\255scr)108 360 Q(een \(C\255l\))-.18 E F0 .993 +(Clear the screen lea)144 372 R .993 (ving the current line at the top of the screen.)-.2 F -.4(Wi)5.993 G .993(th an ar).4 F .993(gument, refresh the)-.18 F -(current line without clearing the screen.)144 288 Q F1 -.18(re)108 300 +(current line without clearing the screen.)144 384 Q F1 -.18(re)108 396 S(draw\255curr).18 E(ent\255line)-.18 E F0(Refresh the current line.)144 -312 Q F1(Commands f)87 328.8 Q(or Manipulating the History)-.25 E -(accept\255line \(Newline, Retur)108 340.8 Q(n\))-.15 E F0 .159 -(Accept the line re)144 352.8 R -.05(ga)-.15 G .159 +408 Q F1(Commands f)87 424.8 Q(or Manipulating the History)-.25 E +(accept\255line \(Newline, Retur)108 436.8 Q(n\))-.15 E F0 .159 +(Accept the line re)144 448.8 R -.05(ga)-.15 G .159 (rdless of where the cursor is.).05 F .158(If this line is non-empty) 5.158 F 2.658(,a)-.65 G .158(dd it to the history list)-2.658 F .699 -(according to the state of the)144 364.8 R/F2 9/Times-Bold@0 SF +(according to the state of the)144 460.8 R/F2 9/Times-Bold@0 SF (HISTCONTR)3.199 E(OL)-.27 E F0 -.25(va)2.949 G 3.199(riable. If).25 F .699(the line is a modi\214ed history line, then)3.199 F -(restore the history line to its original state.)144 376.8 Q F1(pr)108 -388.8 Q -.15(ev)-.18 G(ious\255history \(C\255p\)).15 E F0 -(Fetch the pre)144 400.8 Q(vious command from the history list, mo)-.25 -E(ving back in the list.)-.15 E F1(next\255history \(C\255n\))108 412.8 -Q F0(Fetch the ne)144 424.8 Q(xt command from the history list, mo)-.15 +(restore the history line to its original state.)144 472.8 Q F1(pr)108 +484.8 Q -.15(ev)-.18 G(ious\255history \(C\255p\)).15 E F0 +(Fetch the pre)144 496.8 Q(vious command from the history list, mo)-.25 +E(ving back in the list.)-.15 E F1(next\255history \(C\255n\))108 508.8 +Q F0(Fetch the ne)144 520.8 Q(xt command from the history list, mo)-.15 E(ving forw)-.15 E(ard in the list.)-.1 E F1 -(beginning\255of\255history \(M\255<\))108 436.8 Q F0(Mo)144 448.8 Q .3 +(beginning\255of\255history \(M\255<\))108 532.8 Q F0(Mo)144 544.8 Q .3 -.15(ve t)-.15 H 2.5(ot).15 G(he \214rst line in the history)-2.5 E(.) --.65 E F1(end\255of\255history \(M\255>\))108 460.8 Q F0(Mo)144 472.8 Q +-.65 E F1(end\255of\255history \(M\255>\))108 556.8 Q F0(Mo)144 568.8 Q .3 -.15(ve t)-.15 H 2.5(ot).15 G(he end of the input history)-2.5 E 2.5 (,i)-.65 G(.e., the line currently being entered.)-2.5 E F1 -2.29 -.18 -(re v)108 484.8 T(erse\255sear).08 E(ch\255history \(C\255r\))-.18 E F0 -1.471(Search backw)144 496.8 R 1.471 +(re v)108 580.8 T(erse\255sear).08 E(ch\255history \(C\255r\))-.18 E F0 +1.471(Search backw)144 592.8 R 1.471 (ard starting at the current line and mo)-.1 F 1.47 (ving `up' through the history as necessary)-.15 F(.)-.65 E -(This is an incremental search.)144 508.8 Q F1 -.25(fo)108 520.8 S +(This is an incremental search.)144 604.8 Q F1 -.25(fo)108 616.8 S (rward\255sear).25 E(ch\255history \(C\255s\))-.18 E F0 1.131 -(Search forw)144 532.8 R 1.131(ard starting at the current line and mo) +(Search forw)144 628.8 R 1.131(ard starting at the current line and mo) -.1 F 1.132(ving `do)-.15 F 1.132(wn' through the history as necessary) --.25 F(.)-.65 E(This is an incremental search.)144 544.8 Q F1 -(non\255incr)108 556.8 Q(emental\255r)-.18 E -2.3 -.15(ev e)-.18 H +-.25 F(.)-.65 E(This is an incremental search.)144 640.8 Q F1 +(non\255incr)108 652.8 Q(emental\255r)-.18 E -2.3 -.15(ev e)-.18 H (rse\255sear).15 E(ch\255history \(M\255p\))-.18 E F0 .165(Search backw) -144 568.8 R .164(ard through the history starting at the current line u\ -sing a non-incremental search for)-.1 F 2.5(as)144 580.8 S -(tring supplied by the user)-2.5 E(.)-.55 E F1(non\255incr)108 592.8 Q +144 664.8 R .164(ard through the history starting at the current line u\ +sing a non-incremental search for)-.1 F 2.5(as)144 676.8 S +(tring supplied by the user)-2.5 E(.)-.55 E F1(non\255incr)108 688.8 Q (emental\255f)-.18 E(orward\255sear)-.25 E(ch\255history \(M\255n\))-.18 -E F0 1.353(Search forw)144 604.8 R 1.354(ard through the history using \ +E F0 1.353(Search forw)144 700.8 R 1.354(ard through the history using \ a non-incremental search for a string supplied by the)-.1 F(user)144 -616.8 Q(.)-.55 E F1(history\255sear)108 628.8 Q(ch\255f)-.18 E(orward) --.25 E F0 .249(Search forw)144 640.8 R .249(ard through the history for\ - the string of characters between the start of the current line)-.1 F -(and the point.)144 652.8 Q(This is a non-incremental search.)5 E F1 -(history\255sear)108 664.8 Q(ch\255backward)-.18 E F0 .95(Search backw) -144 676.8 R .951(ard through the history for the string of characters b\ -etween the start of the current)-.1 F(line and the point.)144 688.8 Q -(This is a non-incremental search.)5 E F1(history\255substring\255sear) -108 700.8 Q(ch\255backward)-.18 E F0 .951(Search backw)144 712.8 R .951 -(ard through the history for the string of characters between the start\ - of the current)-.1 F .007(line and the current cursor position \(the) -144 724.8 R/F3 10/Times-Italic@0 SF(point)2.507 E F0 2.507(\). The)B -.007(search string may match an)2.507 F .007(ywhere in a history)-.15 F -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(46)185.545 E 0 Cg EP +712.8 Q(.)-.55 E(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(46) +190.95 E 0 Cg EP %%Page: 47 47 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 2.5(line. This)144 -84 R(is a non-incremental search.)2.5 E/F1 10/Times-Bold@0 SF -(history\255substring\255sear)108 96 Q(ch\255f)-.18 E(orward)-.25 E F0 -.249(Search forw)144 108 R .249(ard through the history for the string \ +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(history\255sear)108 84 Q(ch\255f)-.18 E(orward)-.25 E F0 .249 +(Search forw)144 96 R .249(ard through the history for the string of ch\ +aracters between the start of the current line)-.1 F(and the point.)144 +108 Q(This is a non-incremental search.)5 E F1(history\255sear)108 120 Q +(ch\255backward)-.18 E F0 .95(Search backw)144 132 R .951(ard through t\ +he history for the string of characters between the start of the curren\ +t)-.1 F(line and the point.)144 144 Q(This is a non-incremental search.) +5 E F1(history\255substring\255sear)108 156 Q(ch\255backward)-.18 E F0 +.951(Search backw)144 168 R .951(ard through the history for the string\ + of characters between the start of the current)-.1 F .007 +(line and the current cursor position \(the)144 180 R/F2 10 +/Times-Italic@0 SF(point)2.507 E F0 2.507(\). The)B .007 +(search string may match an)2.507 F .007(ywhere in a history)-.15 F 2.5 +(line. This)144 192 R(is a non-incremental search.)2.5 E F1 +(history\255substring\255sear)108 204 Q(ch\255f)-.18 E(orward)-.25 E F0 +.249(Search forw)144 216 R .249(ard through the history for the string \ of characters between the start of the current line)-.1 F .318 -(and the point.)144 120 R .319(The search string may match an)5.318 F +(and the point.)144 228 R .319(The search string may match an)5.318 F .319(ywhere in a history line.)-.15 F .319(This is a non-incremental) -5.319 F(search.)144 132 Q F1(yank\255nth\255ar)108 144 Q 2.5(g\()-.1 G -<4dad43ad7929>-2.5 E F0 .622(Insert the \214rst ar)144 156 R .622 +5.319 F(search.)144 240 Q F1(yank\255nth\255ar)108 252 Q 2.5(g\()-.1 G +<4dad43ad7929>-2.5 E F0 .622(Insert the \214rst ar)144 264 R .622 (gument to the pre)-.18 F .622(vious command \(usually the second w)-.25 F .622(ord on the pre)-.1 F .622(vious line\))-.25 F .772(at point.)144 -168 R -.4(Wi)5.773 G .773(th an ar).4 F(gument)-.18 E/F2 10 -/Times-Italic@0 SF(n)3.633 E F0 3.273(,i).24 G .773(nsert the)-3.273 F -F2(n)3.273 E F0 .773(th w)B .773(ord from the pre)-.1 F .773 -(vious command \(the w)-.25 F .773(ords in the)-.1 F(pre)144 180 Q .292 -(vious command be)-.25 F .292(gin with w)-.15 F .291(ord 0\).)-.1 F -2.791(An)5.291 G -2.25 -.15(eg a)-2.791 H(ti).15 E .591 -.15(ve a)-.25 H --.18(rg).15 G .291(ument inserts the).18 F F2(n)2.791 E F0 .291(th w)B -.291(ord from the end of)-.1 F .281(the pre)144 192 R .281 -(vious command.)-.25 F .281(Once the ar)5.281 F(gument)-.18 E F2(n)2.781 -E F0 .281(is computed, the ar)2.781 F .281(gument is e)-.18 F .282 -(xtracted as if the "!)-.15 F F2(n)A F0(")A(history e)144 204 Q -(xpansion had been speci\214ed.)-.15 E F1(yank\255last\255ar)108 216 Q +276 R -.4(Wi)5.773 G .773(th an ar).4 F(gument)-.18 E F2(n)3.633 E F0 +3.273(,i).24 G .773(nsert the)-3.273 F F2(n)3.273 E F0 .773(th w)B .773 +(ord from the pre)-.1 F .773(vious command \(the w)-.25 F .773 +(ords in the)-.1 F(pre)144 288 Q .292(vious command be)-.25 F .292 +(gin with w)-.15 F .291(ord 0\).)-.1 F 2.791(An)5.291 G -2.25 -.15(eg a) +-2.791 H(ti).15 E .591 -.15(ve a)-.25 H -.18(rg).15 G .291 +(ument inserts the).18 F F2(n)2.791 E F0 .291(th w)B .291 +(ord from the end of)-.1 F .281(the pre)144 300 R .281(vious command.) +-.25 F .281(Once the ar)5.281 F(gument)-.18 E F2(n)2.781 E F0 .281 +(is computed, the ar)2.781 F .281(gument is e)-.18 F .282 +(xtracted as if the "!)-.15 F F2(n)A F0(")A(history e)144 312 Q +(xpansion had been speci\214ed.)-.15 E F1(yank\255last\255ar)108 324 Q 2.5(g\()-.1 G -1.667(M\255. ,)-2.5 F -1.667(M\255_ \))2.5 F F0 1.308 -(Insert the last ar)144 228 R 1.308(gument to the pre)-.18 F 1.307 +(Insert the last ar)144 336 R 1.308(gument to the pre)-.18 F 1.307 (vious command \(the last w)-.25 F 1.307(ord of the pre)-.1 F 1.307 -(vious history entry\).)-.25 F -.4(Wi)144 240 S .203(th a numeric ar).4 +(vious history entry\).)-.25 F -.4(Wi)144 348 S .203(th a numeric ar).4 F .203(gument, beha)-.18 F .504 -.15(ve ex)-.2 H .204(actly lik).15 F(e) -.1 E F1(yank\255nth\255ar)2.704 E(g)-.1 E F0 5.204(.S)C(uccessi)-5.204 E .504 -.15(ve c)-.25 H .204(alls to).15 F F1(yank\255last\255ar)2.704 E -(g)-.1 E F0(mo)144 252 Q .807 -.15(ve b)-.15 H .507 +(g)-.1 E F0(mo)144 360 Q .807 -.15(ve b)-.15 H .507 (ack through the history list, inserting the last w).15 F .507 (ord \(or the w)-.1 F .507(ord speci\214ed by the ar)-.1 F(gument)-.18 E -.416(to the \214rst call\) of each line in turn.)144 264 R(An)5.416 E +.416(to the \214rst call\) of each line in turn.)144 372 R(An)5.416 E 2.916(yn)-.15 G .416(umeric ar)-2.916 F .416 (gument supplied to these successi)-.18 F .716 -.15(ve c)-.25 H .416 -(alls de-).15 F 1.218(termines the direction to mo)144 276 R 1.518 -.15 +(alls de-).15 F 1.218(termines the direction to mo)144 384 R 1.518 -.15 (ve t)-.15 H 1.218(hrough the history).15 F 6.218(.A)-.65 G(ne)-2.5 E -.05(ga)-.15 G(ti).05 E 1.517 -.15(ve a)-.25 H -.18(rg).15 G 1.217 (ument switches the direction).18 F .494 -(through the history \(back or forw)144 288 R 2.994(ard\). The)-.1 F +(through the history \(back or forw)144 396 R 2.994(ard\). The)-.1 F .494(history e)2.994 F .494(xpansion f)-.15 F .494 (acilities are used to e)-.1 F .494(xtract the last)-.15 F -.1(wo)144 -300 S(rd, as if the "!$" history e).1 E(xpansion had been speci\214ed.) --.15 E F1(shell\255expand\255line \(M\255C\255e\))108 312 Q F0 .623 -(Expand the line as the shell does.)144 324 R .622 +408 S(rd, as if the "!$" history e).1 E(xpansion had been speci\214ed.) +-.15 E F1(shell\255expand\255line \(M\255C\255e\))108 420 Q F0 .623 +(Expand the line as the shell does.)144 432 R .622 (This performs alias and history e)5.622 F .622 -(xpansion as well as all of the)-.15 F(shell w)144 336 Q(ord e)-.1 E 2.5 +(xpansion as well as all of the)-.15 F(shell w)144 444 Q(ord e)-.1 E 2.5 (xpansions. See)-.15 F/F3 9/Times-Bold@0 SF(HIST)2.5 E(OR)-.162 E 2.25 (YE)-.315 G(XP)-2.25 E(ANSION)-.666 E F0(belo)2.25 E 2.5(wf)-.25 G (or a description of history e)-2.5 E(xpansion.)-.15 E F1 -(history\255expand\255line \(M\255^\))108 348 Q F0 .938 -(Perform history e)144 360 R .939(xpansion on the current line.)-.15 F +(history\255expand\255line \(M\255^\))108 456 Q F0 .938 +(Perform history e)144 468 R .939(xpansion on the current line.)-.15 F (See)5.939 E F3(HIST)3.439 E(OR)-.162 E 3.189(YE)-.315 G(XP)-3.189 E (ANSION)-.666 E F0(belo)3.189 E 3.439(wf)-.25 G .939(or a descrip-) --3.439 F(tion of history e)144 372 Q(xpansion.)-.15 E F1(magic\255space) -108 384 Q F0 .438(Perform history e)144 396 R .438 +-3.439 F(tion of history e)144 480 Q(xpansion.)-.15 E F1(magic\255space) +108 492 Q F0 .438(Perform history e)144 504 R .438 (xpansion on the current line and insert a space.)-.15 F(See)5.437 E F3 (HIST)2.937 E(OR)-.162 E 2.687(YE)-.315 G(XP)-2.687 E(ANSION)-.666 E F0 -(be-)2.687 E(lo)144 408 Q 2.5(wf)-.25 G(or a description of history e) --2.5 E(xpansion.)-.15 E F1(alias\255expand\255line)108 420 Q F0 .394 -(Perform alias e)144 432 R .394(xpansion on the current line.)-.15 F +(be-)2.687 E(lo)144 516 Q 2.5(wf)-.25 G(or a description of history e) +-2.5 E(xpansion.)-.15 E F1(alias\255expand\255line)108 528 Q F0 .394 +(Perform alias e)144 540 R .394(xpansion on the current line.)-.15 F (See)5.395 E F3(ALIASES)2.895 E F0(abo)2.645 E .695 -.15(ve f)-.15 H -.395(or a description of alias e).15 F(xpan-)-.15 E(sion.)144 444 Q F1 -(history\255and\255alias\255expand\255line)108 456 Q F0 -(Perform history and alias e)144 468 Q(xpansion on the current line.) --.15 E F1(insert\255last\255ar)108 480 Q(gument \(M\255.)-.1 E 2.5(,M) -.833 G -1.667(\255_ \))-2.5 F F0 2.5(As)144 492 S(ynon)-2.5 E(ym for) +.395(or a description of alias e).15 F(xpan-)-.15 E(sion.)144 552 Q F1 +(history\255and\255alias\255expand\255line)108 564 Q F0 +(Perform history and alias e)144 576 Q(xpansion on the current line.) +-.15 E F1(insert\255last\255ar)108 588 Q(gument \(M\255.)-.1 E 2.5(,M) +.833 G -1.667(\255_ \))-2.5 F F0 2.5(As)144 600 S(ynon)-2.5 E(ym for) -.15 E F1(yank\255last\255ar)2.5 E(g)-.1 E F0(.)A F1 -(operate\255and\255get\255next \(C\255o\))108 504 Q F0 .948 -(Accept the current line for e)144 516 R -.15(xe)-.15 G .948 +(operate\255and\255get\255next \(C\255o\))108 612 Q F0 .948 +(Accept the current line for e)144 624 R -.15(xe)-.15 G .948 (cution and fetch the ne).15 F .948(xt line relati)-.15 F 1.247 -.15 (ve t)-.25 H 3.447(ot).15 G .947(he current line from the)-3.447 F .729 -(history for editing.)144 528 R 3.229(An)5.729 G .729(umeric ar)-3.229 F +(history for editing.)144 636 R 3.229(An)5.729 G .729(umeric ar)-3.229 F .729 (gument, if supplied, speci\214es the history entry to use instead of) --.18 F(the current line.)144 540 Q F1 -(edit\255and\255execute\255command \(C\255x C\255e\))108 552 Q F0(In)144 -564 Q -.2(vo)-.4 G .347 -.1(ke a).2 H 2.647(ne).1 G .146 +-.18 F(the current line.)144 648 Q F1 +(edit\255and\255execute\255command \(C\255x C\255e\))108 660 Q F0(In)144 +672 Q -.2(vo)-.4 G .347 -.1(ke a).2 H 2.647(ne).1 G .146 (ditor on the current command line, and e)-2.647 F -.15(xe)-.15 G .146 (cute the result as shell commands.).15 F F1(Bash)5.146 E F0(at-)2.646 E -(tempts to in)144 576 Q -.2(vo)-.4 G -.1(ke).2 G F3($VISU)2.6 E(AL)-.54 +(tempts to in)144 684 Q -.2(vo)-.4 G -.1(ke).2 G F3($VISU)2.6 E(AL)-.54 E/F4 9/Times-Roman@0 SF(,)A F3($EDIT)2.25 E(OR)-.162 E F4(,)A F0(and) 2.25 E F2(emacs)2.5 E F0(as the editor)2.5 E 2.5(,i)-.4 G 2.5(nt)-2.5 G -(hat order)-2.5 E(.)-.55 E F1(Commands f)87 592.8 Q(or Changing T)-.25 E -(ext)-.92 E F2(end\255of\255\214le)108 604.8 Q F1(\(usually C\255d\))2.5 -E F0 .798(The character indicating end-of-\214le as set, for e)144 616.8 -R .799(xample, by)-.15 F/F5 10/Courier@0 SF(stty)3.299 E F0 5.799(.I)C -3.299(ft)-5.799 G .799(his character is read when)-3.299 F .592 -(there are no characters on the line, and point is at the be)144 628.8 R -.592(ginning of the line, Readline interprets it)-.15 F -(as the end of input and returns)144 640.8 Q F3(EOF)2.5 E F4(.)A F1 -(delete\255char \(C\255d\))108 652.8 Q F0 .441 -(Delete the character at point.)144 664.8 R .442 -(If this function is bound to the same character as the tty)5.441 F F1 -(EOF)2.942 E F0(char)2.942 E(-)-.2 E(acter)144 676.8 Q 2.5(,a)-.4 G(s) --2.5 E F1(C\255d)2.5 E F0(commonly is, see abo)2.5 E .3 -.15(ve f)-.15 H -(or the ef).15 E(fects.)-.25 E F1(backward\255delete\255char \(Rubout\)) -108 688.8 Q F0 .553(Delete the character behind the cursor)144 700.8 R -5.553(.W)-.55 G .553(hen gi)-5.553 F -.15(ve)-.25 G 3.053(nan).15 G .553 -(umeric ar)-3.053 F .552(gument, sa)-.18 F .852 -.15(ve t)-.2 H .552 -(he deleted te).15 F .552(xt on)-.15 F(the kill ring.)144 712.8 Q -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(47)185.545 E 0 Cg EP +(hat order)-2.5 E(.)-.55 E F1(Commands f)87 700.8 Q(or Changing T)-.25 E +(ext)-.92 E F0(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(47)190.95 +E 0 Cg EP %%Page: 48 48 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF -.25(fo)108 84 S(rward\255backward\255delete\255char).25 E F0 .473 -(Delete the character under the cursor)144 96 R 2.973(,u)-.4 G .474 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10 +/Times-Italic@0 SF(end\255of\255\214le)108 84 Q/F2 10/Times-Bold@0 SF +(\(usually C\255d\))2.5 E F0 .798 +(The character indicating end-of-\214le as set, for e)144 96 R .799 +(xample, by)-.15 F/F3 10/Courier@0 SF(stty)3.299 E F0 5.799(.I)C 3.299 +(ft)-5.799 G .799(his character is read when)-3.299 F .592 +(there are no characters on the line, and point is at the be)144 108 R +.592(ginning of the line, Readline interprets it)-.15 F +(as the end of input and returns)144 120 Q/F4 9/Times-Bold@0 SF(EOF)2.5 +E/F5 9/Times-Roman@0 SF(.)A F2(delete\255char \(C\255d\))108 132 Q F0 +.441(Delete the character at point.)144 144 R .442 +(If this function is bound to the same character as the tty)5.441 F F2 +(EOF)2.942 E F0(char)2.942 E(-)-.2 E(acter)144 156 Q 2.5(,a)-.4 G(s)-2.5 +E F2(C\255d)2.5 E F0(commonly is, see abo)2.5 E .3 -.15(ve f)-.15 H +(or the ef).15 E(fects.)-.25 E F2(backward\255delete\255char \(Rubout\)) +108 168 Q F0 .553(Delete the character behind the cursor)144 180 R 5.553 +(.W)-.55 G .553(hen gi)-5.553 F -.15(ve)-.25 G 3.053(nan).15 G .553 +(umeric ar)-3.053 F .552(gument, sa)-.18 F .852 -.15(ve t)-.2 H .552 +(he deleted te).15 F .552(xt on)-.15 F(the kill ring.)144 192 Q F2 -.25 +(fo)108 204 S(rward\255backward\255delete\255char).25 E F0 .473 +(Delete the character under the cursor)144 216 R 2.973(,u)-.4 G .474 (nless the cursor is at the end of the line, in which case the)-2.973 F -(character behind the cursor is deleted.)144 108 Q F1 -(quoted\255insert \(C\255q, C\255v\))108 120 Q F0 .779(Add the ne)144 -132 R .779(xt character typed to the line v)-.15 F 3.279(erbatim. This) +(character behind the cursor is deleted.)144 228 Q F2 +(quoted\255insert \(C\255q, C\255v\))108 240 Q F0 .779(Add the ne)144 +252 R .779(xt character typed to the line v)-.15 F 3.279(erbatim. This) -.15 F .779(is ho)3.279 F 3.279(wt)-.25 G 3.279(oi)-3.279 G .779 -(nsert characters lik)-3.279 F(e)-.1 E F1(C\255q)3.278 E F0 3.278(,f)C -(or)-3.278 E -.15(ex)144 144 S(ample.).15 E F1(tab\255insert \(C\255v T) -108 156 Q(AB\))-.9 E F0(Insert a tab character)144 168 Q(.)-.55 E F1 -(self\255insert \(a, b, A, 1, !, ...\))108 180 Q F0 -(Insert the character typed.)144 192 Q F1(transpose\255chars \(C\255t\)) -108 204 Q F0 .321(Drag the character before point forw)144 216 R .321 +(nsert characters lik)-3.279 F(e)-.1 E F2(C\255q)3.278 E F0 3.278(,f)C +(or)-3.278 E -.15(ex)144 264 S(ample.).15 E F2(tab\255insert \(C\255v T) +108 276 Q(AB\))-.9 E F0(Insert a tab character)144 288 Q(.)-.55 E F2 +(self\255insert \(a, b, A, 1, !, ...\))108 300 Q F0 +(Insert the character typed.)144 312 Q F2(transpose\255chars \(C\255t\)) +108 324 Q F0 .321(Drag the character before point forw)144 336 R .321 (ard o)-.1 F -.15(ve)-.15 G 2.821(rt).15 G .321 (he character at point, mo)-2.821 F .322(ving point forw)-.15 F .322 (ard as well.)-.1 F .372 -(If point is at the end of the line, then this transposes the tw)144 228 +(If point is at the end of the line, then this transposes the tw)144 348 R 2.872(oc)-.1 G .372(haracters before point.)-2.872 F(Ne)5.372 E -.05 (ga)-.15 G(ti).05 E .672 -.15(ve a)-.25 H -.2(r-).15 G(guments ha)144 -240 Q .3 -.15(ve n)-.2 H 2.5(oe).15 G -.25(ff)-2.5 G(ect.).25 E F1 -(transpose\255w)108 252 Q(ords \(M\255t\))-.1 E F0 .023(Drag the w)144 -264 R .023(ord before point past the w)-.1 F .023(ord after point, mo) +360 Q .3 -.15(ve n)-.2 H 2.5(oe).15 G -.25(ff)-2.5 G(ect.).25 E F2 +(transpose\255w)108 372 Q(ords \(M\255t\))-.1 E F0 .023(Drag the w)144 +384 R .023(ord before point past the w)-.1 F .023(ord after point, mo) -.1 F .023(ving point o)-.15 F -.15(ve)-.15 G 2.524(rt).15 G .024(hat w) -2.524 F .024(ord as well.)-.1 F .024(If point)5.024 F -(is at the end of the line, this transposes the last tw)144 276 Q 2.5 -(ow)-.1 G(ords on the line.)-2.6 E F1(upcase\255w)108 288 Q -(ord \(M\255u\))-.1 E F0 1.699(Uppercase the current \(or follo)144 300 +(is at the end of the line, this transposes the last tw)144 396 Q 2.5 +(ow)-.1 G(ords on the line.)-2.6 E F2(upcase\255w)108 408 Q +(ord \(M\255u\))-.1 E F0 1.699(Uppercase the current \(or follo)144 420 R 1.698(wing\) w)-.25 F 4.198(ord. W)-.1 F 1.698(ith a ne)-.4 F -.05(ga) -.15 G(ti).05 E 1.998 -.15(ve a)-.25 H -.18(rg).15 G 1.698 -(ument, uppercase the pre).18 F(vious)-.25 E -.1(wo)144 312 S(rd, b).1 E -(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1(do)108 324 Q -(wncase\255w)-.1 E(ord \(M\255l\))-.1 E F0(Lo)144 336 Q 1.647 +(ument, uppercase the pre).18 F(vious)-.25 E -.1(wo)144 432 S(rd, b).1 E +(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F2(do)108 444 Q +(wncase\255w)-.1 E(ord \(M\255l\))-.1 E F0(Lo)144 456 Q 1.647 (wercase the current \(or follo)-.25 F 1.647(wing\) w)-.25 F 4.147 (ord. W)-.1 F 1.648(ith a ne)-.4 F -.05(ga)-.15 G(ti).05 E 1.948 -.15 (ve a)-.25 H -.18(rg).15 G 1.648(ument, lo).18 F 1.648(wercase the pre) --.25 F(vious)-.25 E -.1(wo)144 348 S(rd, b).1 E(ut do not mo)-.2 E .3 --.15(ve p)-.15 H(oint.).15 E F1(capitalize\255w)108 360 Q -(ord \(M\255c\))-.1 E F0 1.975(Capitalize the current \(or follo)144 372 +-.25 F(vious)-.25 E -.1(wo)144 468 S(rd, b).1 E(ut do not mo)-.2 E .3 +-.15(ve p)-.15 H(oint.).15 E F2(capitalize\255w)108 480 Q +(ord \(M\255c\))-.1 E F0 1.975(Capitalize the current \(or follo)144 492 R 1.974(wing\) w)-.25 F 4.474(ord. W)-.1 F 1.974(ith a ne)-.4 F -.05(ga) -.15 G(ti).05 E 2.274 -.15(ve a)-.25 H -.18(rg).15 G 1.974 -(ument, capitalize the pre).18 F(vious)-.25 E -.1(wo)144 384 S(rd, b).1 -E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1 -.1(ove)108 396 -S(rwrite\255mode).1 E F0 -.8(To)144 408 S .437(ggle o).8 F -.15(ve)-.15 +(ument, capitalize the pre).18 F(vious)-.25 E -.1(wo)144 504 S(rd, b).1 +E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F2 -.1(ove)108 516 +S(rwrite\255mode).1 E F0 -.8(To)144 528 S .437(ggle o).8 F -.15(ve)-.15 G .437(rwrite mode.).15 F -.4(Wi)5.437 G .437(th an e).4 F .437 (xplicit positi)-.15 F .738 -.15(ve n)-.25 H .438(umeric ar).15 F .438 (gument, switches to o)-.18 F -.15(ve)-.15 G .438(rwrite mode.).15 F -.4 -(Wi)144 420 S .781(th an e).4 F .781(xplicit non-positi)-.15 F 1.081 +(Wi)144 540 S .781(th an e).4 F .781(xplicit non-positi)-.15 F 1.081 -.15(ve n)-.25 H .781(umeric ar).15 F .781 (gument, switches to insert mode.)-.18 F .78(This command af)5.781 F -(fects)-.25 E(only)144 432 Q F1(emacs)4.394 E F0(mode;)4.394 E F1(vi) +(fects)-.25 E(only)144 552 Q F2(emacs)4.394 E F0(mode;)4.394 E F2(vi) 4.394 E F0 1.894(mode does o)4.394 F -.15(ve)-.15 G 1.894(rwrite dif).15 -F(ferently)-.25 E 6.894(.E)-.65 G 1.894(ach call to)-6.894 F/F2 10 -/Times-Italic@0 SF -.37(re)4.395 G(adline\(\)).37 E F0 1.895 -(starts in insert)4.395 F 3.969(mode. In)144 444 R -.15(ove)3.969 G -1.469(rwrite mode, characters bound to).15 F F1(self\255insert)3.969 E -F0 1.468(replace the te)3.969 F 1.468(xt at point rather than)-.15 F -.957(pushing the te)144 456 R .957(xt to the right.)-.15 F .958 -(Characters bound to)5.957 F F1(backward\255delete\255char)3.458 E F0 -.958(replace the character)3.458 F(before point with a space.)144 468 Q -(By def)5 E(ault, this command is unbound.)-.1 E F1(Killing and Y)87 -484.8 Q(anking)-.85 E(kill\255line \(C\255k\))108 496.8 Q F0 -(Kill the te)144 508.8 Q(xt from point to the end of the line.)-.15 E F1 -(backward\255kill\255line \(C\255x Rubout\))108 520.8 Q F0(Kill backw) -144 532.8 Q(ard to the be)-.1 E(ginning of the line.)-.15 E F1 -(unix\255line\255discard \(C\255u\))108 544.8 Q F0(Kill backw)144 556.8 +F(ferently)-.25 E 6.894(.E)-.65 G 1.894(ach call to)-6.894 F F1 -.37(re) +4.395 G(adline\(\)).37 E F0 1.895(starts in insert)4.395 F 3.969 +(mode. In)144 564 R -.15(ove)3.969 G 1.469 +(rwrite mode, characters bound to).15 F F2(self\255insert)3.969 E F0 +1.468(replace the te)3.969 F 1.468(xt at point rather than)-.15 F .957 +(pushing the te)144 576 R .957(xt to the right.)-.15 F .958 +(Characters bound to)5.957 F F2(backward\255delete\255char)3.458 E F0 +.958(replace the character)3.458 F(before point with a space.)144 588 Q +(By def)5 E(ault, this command is unbound.)-.1 E F2(Killing and Y)87 +604.8 Q(anking)-.85 E(kill\255line \(C\255k\))108 616.8 Q F0 +(Kill the te)144 628.8 Q(xt from point to the end of the line.)-.15 E F2 +(backward\255kill\255line \(C\255x Rubout\))108 640.8 Q F0(Kill backw) +144 652.8 Q(ard to the be)-.1 E(ginning of the line.)-.15 E F2 +(unix\255line\255discard \(C\255u\))108 664.8 Q F0(Kill backw)144 676.8 Q(ard from point to the be)-.1 E(ginning of the line.)-.15 E (The killed te)5 E(xt is sa)-.15 E -.15(ve)-.2 G 2.5(do).15 G 2.5(nt) --2.5 G(he kill-ring.)-2.5 E F1(kill\255whole\255line)108 568.8 Q F0 +-2.5 G(he kill-ring.)-2.5 E F2(kill\255whole\255line)108 688.8 Q F0 (Kill all characters on the current line, no matter where point is.)144 -580.8 Q F1(kill\255w)108 592.8 Q(ord \(M\255d\))-.1 E F0 .729 -(Kill from point to the end of the current w)144 604.8 R .728 -(ord, or if between w)-.1 F .728(ords, to the end of the ne)-.1 F .728 -(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 616.8 S -(rd boundaries are the same as those used by).8 E F1 -.25(fo)2.5 G -(rward\255w).25 E(ord)-.1 E F0(.)A F1(backward\255kill\255w)108 628.8 Q -(ord \(M\255Rubout\))-.1 E F0(Kill the w)144 640.8 Q(ord behind point.) --.1 E -.8(Wo)5 G(rd boundaries are the same as those used by).8 E F1 -(backward\255w)2.5 E(ord)-.1 E F0(.)A F1(shell\255kill\255w)108 652.8 Q -(ord)-.1 E F0 .728(Kill from point to the end of the current w)144 664.8 -R .729(ord, or if between w)-.1 F .729(ords, to the end of the ne)-.1 F -.729(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 676.8 S -(rd boundaries are the same as those used by).8 E F1(shell\255f)2.5 E -(orward\255w)-.25 E(ord)-.1 E F0(.)A F1(shell\255backward\255kill\255w) -108 688.8 Q(ord)-.1 E F0 3.025(Kill the w)144 700.8 R 3.025 -(ord behind point.)-.1 F -.8(Wo)8.025 G 3.025 -(rd boundaries are the same as those used by).8 F F1(shell\255back-) -5.525 E(ward\255w)144 712.8 Q(ord)-.1 E F0(.)A(GNU Bash 5.0)72 768 Q -(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(48)185.545 E 0 Cg EP +700.8 Q(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(48)190.95 E 0 Cg +EP %%Page: 49 49 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(unix\255w)108 84 Q(ord\255rubout \(C\255w\))-.1 E F0 .364(Kill the w) -144 96 R .364(ord behind point, using white space as a w)-.1 F .365 -(ord boundary)-.1 F 5.365(.T)-.65 G .365(he killed te)-5.365 F .365 -(xt is sa)-.15 F -.15(ve)-.2 G 2.865(do).15 G 2.865(nt)-2.865 G(he) --2.865 E(kill-ring.)144 108 Q F1(unix\255\214lename\255rubout)108 120 Q -F0 .167(Kill the w)144 132 R .166 +SF(kill\255w)108 84 Q(ord \(M\255d\))-.1 E F0 .729 +(Kill from point to the end of the current w)144 96 R .728 +(ord, or if between w)-.1 F .728(ords, to the end of the ne)-.1 F .728 +(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 108 S +(rd boundaries are the same as those used by).8 E F1 -.25(fo)2.5 G +(rward\255w).25 E(ord)-.1 E F0(.)A F1(backward\255kill\255w)108 120 Q +(ord \(M\255Rubout\))-.1 E F0(Kill the w)144 132 Q(ord behind point.)-.1 +E -.8(Wo)5 G(rd boundaries are the same as those used by).8 E F1 +(backward\255w)2.5 E(ord)-.1 E F0(.)A F1(shell\255kill\255w)108 144 Q +(ord)-.1 E F0 .728(Kill from point to the end of the current w)144 156 R +.729(ord, or if between w)-.1 F .729(ords, to the end of the ne)-.1 F +.729(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 168 S +(rd boundaries are the same as those used by).8 E F1(shell\255f)2.5 E +(orward\255w)-.25 E(ord)-.1 E F0(.)A F1(shell\255backward\255kill\255w) +108 180 Q(ord)-.1 E F0 3.025(Kill the w)144 192 R 3.025 +(ord behind point.)-.1 F -.8(Wo)8.025 G 3.025 +(rd boundaries are the same as those used by).8 F F1(shell\255back-) +5.525 E(ward\255w)144 204 Q(ord)-.1 E F0(.)A F1(unix\255w)108 216 Q +(ord\255rubout \(C\255w\))-.1 E F0 .364(Kill the w)144 228 R .364 +(ord behind point, using white space as a w)-.1 F .365(ord boundary)-.1 +F 5.365(.T)-.65 G .365(he killed te)-5.365 F .365(xt is sa)-.15 F -.15 +(ve)-.2 G 2.865(do).15 G 2.865(nt)-2.865 G(he)-2.865 E(kill-ring.)144 +240 Q F1(unix\255\214lename\255rubout)108 252 Q F0 .167(Kill the w)144 +264 R .166 (ord behind point, using white space and the slash character as the w) --.1 F .166(ord boundaries.)-.1 F(The)5.166 E(killed te)144 144 Q +-.1 F .166(ord boundaries.)-.1 F(The)5.166 E(killed te)144 276 Q (xt is sa)-.15 E -.15(ve)-.2 G 2.5(do).15 G 2.5(nt)-2.5 G(he kill-ring.) --2.5 E F1(delete\255horizontal\255space \(M\255\\\))108 156 Q F0 -(Delete all spaces and tabs around point.)144 168 Q F1(kill\255r)108 180 -Q(egion)-.18 E F0(Kill the te)144 192 Q(xt in the current re)-.15 E -(gion.)-.15 E F1(copy\255r)108 204 Q(egion\255as\255kill)-.18 E F0(Cop) -144 216 Q 2.5(yt)-.1 G(he te)-2.5 E(xt in the re)-.15 E +-2.5 E F1(delete\255horizontal\255space \(M\255\\\))108 288 Q F0 +(Delete all spaces and tabs around point.)144 300 Q F1(kill\255r)108 312 +Q(egion)-.18 E F0(Kill the te)144 324 Q(xt in the current re)-.15 E +(gion.)-.15 E F1(copy\255r)108 336 Q(egion\255as\255kill)-.18 E F0(Cop) +144 348 Q 2.5(yt)-.1 G(he te)-2.5 E(xt in the re)-.15 E (gion to the kill b)-.15 E(uf)-.2 E(fer)-.25 E(.)-.55 E F1 -(copy\255backward\255w)108 228 Q(ord)-.1 E F0(Cop)144 240 Q 4.8(yt)-.1 G +(copy\255backward\255w)108 360 Q(ord)-.1 E F0(Cop)144 372 Q 4.8(yt)-.1 G 2.3(he w)-4.8 F 2.3(ord before point to the kill b)-.1 F(uf)-.2 E(fer) -.25 E 7.301(.T)-.55 G 2.301(he w)-7.301 F 2.301 -(ord boundaries are the same as)-.1 F F1(back-)4.801 E(ward\255w)144 252 -Q(ord)-.1 E F0(.)A F1(copy\255f)108 264 Q(orward\255w)-.25 E(ord)-.1 E -F0(Cop)144 276 Q 4.508(yt)-.1 G 2.008(he w)-4.508 F 2.008(ord follo)-.1 +(ord boundaries are the same as)-.1 F F1(back-)4.801 E(ward\255w)144 384 +Q(ord)-.1 E F0(.)A F1(copy\255f)108 396 Q(orward\255w)-.25 E(ord)-.1 E +F0(Cop)144 408 Q 4.508(yt)-.1 G 2.008(he w)-4.508 F 2.008(ord follo)-.1 F 2.008(wing point to the kill b)-.25 F(uf)-.2 E(fer)-.25 E 7.007(.T) -.55 G 2.007(he w)-7.007 F 2.007(ord boundaries are the same as)-.1 F F1 --.25(fo)4.507 G -.37(r-).25 G(ward\255w)144 288 Q(ord)-.1 E F0(.)A F1 -(yank \(C\255y\))108 300 Q F0 -1(Ya)144 312 S +-.25(fo)4.507 G -.37(r-).25 G(ward\255w)144 420 Q(ord)-.1 E F0(.)A F1 +(yank \(C\255y\))108 432 Q F0 -1(Ya)144 444 S (nk the top of the kill ring into the b)1 E(uf)-.2 E(fer at point.)-.25 -E F1(yank\255pop \(M\255y\))108 324 Q F0 -(Rotate the kill ring, and yank the ne)144 336 Q 2.5(wt)-.25 G 2.5 +E F1(yank\255pop \(M\255y\))108 456 Q F0 +(Rotate the kill ring, and yank the ne)144 468 Q 2.5(wt)-.25 G 2.5 (op. Only)-2.5 F -.1(wo)2.5 G(rks follo).1 E(wing)-.25 E F1(yank)2.5 E -F0(or)2.5 E F1(yank\255pop)2.5 E F0(.)A F1(Numeric Ar)87 352.8 Q -(guments)-.1 E(digit\255ar)108 364.8 Q +F0(or)2.5 E F1(yank\255pop)2.5 E F0(.)A F1(Numeric Ar)87 484.8 Q +(guments)-.1 E(digit\255ar)108 496.8 Q (gument \(M\2550, M\2551, ..., M\255\255\))-.1 E F0 .367 -(Add this digit to the ar)144 376.8 R .367 +(Add this digit to the ar)144 508.8 R .367 (gument already accumulating, or start a ne)-.18 F 2.867(wa)-.25 G -.18 (rg)-2.867 G 2.867(ument. M\255\255).18 F .367(starts a ne)2.867 F -.05 -(ga)-.15 G(-).05 E(ti)144 388.8 Q .3 -.15(ve a)-.25 H -.18(rg).15 G -(ument.).18 E F1(uni)108 400.8 Q -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 -E F0 .779(This is another w)144 412.8 R .779(ay to specify an ar)-.1 F +(ga)-.15 G(-).05 E(ti)144 520.8 Q .3 -.15(ve a)-.25 H -.18(rg).15 G +(ument.).18 E F1(uni)108 532.8 Q -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 +E F0 .779(This is another w)144 544.8 R .779(ay to specify an ar)-.1 F 3.279(gument. If)-.18 F .779(this command is follo)3.279 F .778 (wed by one or more digits,)-.25 F 1.376 (optionally with a leading minus sign, those digits de\214ne the ar)144 -424.8 R 3.876(gument. If)-.18 F 1.376(the command is fol-)3.876 F(lo)144 -436.8 Q 1.17(wed by digits, e)-.25 F -.15(xe)-.15 G(cuting).15 E F1(uni) +556.8 R 3.876(gument. If)-.18 F 1.376(the command is fol-)3.876 F(lo)144 +568.8 Q 1.17(wed by digits, e)-.25 F -.15(xe)-.15 G(cuting).15 E F1(uni) 3.67 E -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 E F0(ag)3.67 E 1.17 (ain ends the numeric ar)-.05 F 1.17(gument, b)-.18 F 1.17(ut is other) --.2 F(-)-.2 E .898(wise ignored.)144 448.8 R .898 +-.2 F(-)-.2 E .898(wise ignored.)144 580.8 R .898 (As a special case, if this command is immediately follo)5.898 F .898 (wed by a character that is)-.25 F 1.23 -(neither a digit nor minus sign, the ar)144 460.8 R 1.23 +(neither a digit nor minus sign, the ar)144 592.8 R 1.23 (gument count for the ne)-.18 F 1.23(xt command is multiplied by four) --.15 F(.)-.55 E .822(The ar)144 472.8 R .822 +-.15 F(.)-.55 E .822(The ar)144 604.8 R .822 (gument count is initially one, so e)-.18 F -.15(xe)-.15 G .823 (cuting this function the \214rst time mak).15 F .823(es the ar)-.1 F -(gument)-.18 E(count four)144 484.8 Q 2.5(,as)-.4 G(econd time mak)-2.5 +(gument)-.18 E(count four)144 616.8 Q 2.5(,as)-.4 G(econd time mak)-2.5 E(es the ar)-.1 E(gument count sixteen, and so on.)-.18 E F1(Completing) -87 501.6 Q(complete \(T)108 513.6 Q(AB\))-.9 E F0 1.137 -(Attempt to perform completion on the te)144 525.6 R 1.137 +87 633.6 Q(complete \(T)108 645.6 Q(AB\))-.9 E F0 1.137 +(Attempt to perform completion on the te)144 657.6 R 1.137 (xt before point.)-.15 F F1(Bash)6.137 E F0 1.137 -(attempts completion treating the)3.637 F(te)144 537.6 Q .532(xt as a v) +(attempts completion treating the)3.637 F(te)144 669.6 Q .532(xt as a v) -.15 F .532(ariable \(if the te)-.25 F .532(xt be)-.15 F .533(gins with) -.15 F F1($)3.033 E F0 .533(\), username \(if the te)B .533(xt be)-.15 F .533(gins with)-.15 F F1(~)3.033 E F0 .533(\), hostname \(if the)B(te) -144 549.6 Q .702(xt be)-.15 F .702(gins with)-.15 F F1(@)3.202 E F0 .701 +144 681.6 Q .702(xt be)-.15 F .702(gins with)-.15 F F1(@)3.202 E F0 .701 (\), or command \(including aliases and functions\) in turn.)B .701 (If none of these pro-)5.701 F -(duces a match, \214lename completion is attempted.)144 561.6 Q F1 -(possible\255completions \(M\255?\))108 573.6 Q F0 -(List the possible completions of the te)144 585.6 Q(xt before point.) --.15 E F1(insert\255completions \(M\255*\))108 597.6 Q F0 .783 -(Insert all completions of the te)144 609.6 R .783 -(xt before point that w)-.15 F .783(ould ha)-.1 F 1.083 -.15(ve b)-.2 H -.783(een generated by).15 F F1(possible\255com-)3.283 E(pletions)144 -621.6 Q F0(.)A F1(menu\255complete)108 633.6 Q F0 .929(Similar to)144 -645.6 R F1(complete)3.429 E F0 3.429(,b)C .929(ut replaces the w)-3.629 -F .929(ord to be completed with a single match from the list of)-.1 F -1.193(possible completions.)144 657.6 R 1.193(Repeated e)6.193 F -.15 -(xe)-.15 G 1.193(cution of).15 F F1(menu\255complete)3.694 E F0 1.194 -(steps through the list of possible)3.694 F .829 -(completions, inserting each match in turn.)144 669.6 R .828 -(At the end of the list of completions, the bell is rung)5.828 F .727 -(\(subject to the setting of)144 681.6 R F1(bell\255style)3.227 E F0 -3.227(\)a)C .727(nd the original te)-3.227 F .727(xt is restored.)-.15 F -.727(An ar)5.727 F .727(gument of)-.18 F/F2 10/Times-Italic@0 SF(n)3.227 -E F0(mo)3.227 E -.15(ve)-.15 G(s).15 E F2(n)3.228 E F0 1.73 -(positions forw)144 693.6 R 1.73(ard in the list of matches; a ne)-.1 F --.05(ga)-.15 G(ti).05 E 2.03 -.15(ve a)-.25 H -.18(rg).15 G 1.73 -(ument may be used to mo).18 F 2.03 -.15(ve b)-.15 H(ackw).15 E(ard)-.1 -E(through the list.)144 705.6 Q(This command is intended to be bound to) -5 E F1 -.9(TA)2.5 G(B).9 E F0 2.5(,b)C(ut is unbound by def)-2.7 E -(ault.)-.1 E(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G -(mber 26).15 E(49)185.545 E 0 Cg EP +(duces a match, \214lename completion is attempted.)144 693.6 Q F1 +(possible\255completions \(M\255?\))108 705.6 Q F0 +(List the possible completions of the te)144 717.6 Q(xt before point.) +-.15 E(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(49)190.95 E 0 Cg +EP %%Page: 50 50 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(menu\255complete\255backward)108 84 Q F0 .82(Identical to)144 96 R F1 -(menu\255complete)3.32 E F0 3.32(,b)C .82(ut mo)-3.52 F -.15(ve)-.15 G -3.32(sb).15 G(ackw)-3.32 E .82 +SF(insert\255completions \(M\255*\))108 84 Q F0 .783 +(Insert all completions of the te)144 96 R .783(xt before point that w) +-.15 F .783(ould ha)-.1 F 1.083 -.15(ve b)-.2 H .783(een generated by) +.15 F F1(possible\255com-)3.283 E(pletions)144 108 Q F0(.)A F1 +(menu\255complete)108 120 Q F0 .929(Similar to)144 132 R F1(complete) +3.429 E F0 3.429(,b)C .929(ut replaces the w)-3.629 F .929 +(ord to be completed with a single match from the list of)-.1 F 1.193 +(possible completions.)144 144 R 1.193(Repeated e)6.193 F -.15(xe)-.15 G +1.193(cution of).15 F F1(menu\255complete)3.694 E F0 1.194 +(steps through the list of possible)3.694 F .829 +(completions, inserting each match in turn.)144 156 R .828 +(At the end of the list of completions, the bell is rung)5.828 F .727 +(\(subject to the setting of)144 168 R F1(bell\255style)3.227 E F0 3.227 +(\)a)C .727(nd the original te)-3.227 F .727(xt is restored.)-.15 F .727 +(An ar)5.727 F .727(gument of)-.18 F/F2 10/Times-Italic@0 SF(n)3.227 E +F0(mo)3.227 E -.15(ve)-.15 G(s).15 E F2(n)3.228 E F0 1.73 +(positions forw)144 180 R 1.73(ard in the list of matches; a ne)-.1 F +-.05(ga)-.15 G(ti).05 E 2.03 -.15(ve a)-.25 H -.18(rg).15 G 1.73 +(ument may be used to mo).18 F 2.03 -.15(ve b)-.15 H(ackw).15 E(ard)-.1 +E(through the list.)144 192 Q(This command is intended to be bound to)5 +E F1 -.9(TA)2.5 G(B).9 E F0 2.5(,b)C(ut is unbound by def)-2.7 E(ault.) +-.1 E F1(menu\255complete\255backward)108 204 Q F0 .82(Identical to)144 +216 R F1(menu\255complete)3.32 E F0 3.32(,b)C .82(ut mo)-3.52 F -.15(ve) +-.15 G 3.32(sb).15 G(ackw)-3.32 E .82 (ard through the list of possible completions, as if)-.1 F F1 -(menu\255complete)144 108 Q F0(had been gi)2.5 E -.15(ve)-.25 G 2.5(nan) +(menu\255complete)144 228 Q F0(had been gi)2.5 E -.15(ve)-.25 G 2.5(nan) .15 G -2.25 -.15(eg a)-2.5 H(ti).15 E .3 -.15(ve a)-.25 H -.18(rg).15 G 2.5(ument. This).18 F(command is unbound by def)2.5 E(ault.)-.1 E F1 -(delete\255char\255or\255list)108 120 Q F0 .234 -(Deletes the character under the cursor if not at the be)144 132 R .234 +(delete\255char\255or\255list)108 240 Q F0 .234 +(Deletes the character under the cursor if not at the be)144 252 R .234 (ginning or end of the line \(lik)-.15 F(e)-.1 E F1(delete\255char)2.734 -E F0(\).)A .425(If at the end of the line, beha)144 144 R -.15(ve)-.2 G +E F0(\).)A .425(If at the end of the line, beha)144 264 R -.15(ve)-.2 G 2.925(si).15 G .425(dentically to)-2.925 F F1(possible\255completions) 2.925 E F0 5.425(.T)C .425(his command is unbound)-5.425 F(by def)144 -156 Q(ault.)-.1 E F1(complete\255\214lename \(M\255/\))108 168 Q F0 -(Attempt \214lename completion on the te)144 180 Q(xt before point.)-.15 -E F1(possible\255\214lename\255completions \(C\255x /\))108 192 Q F0 -(List the possible completions of the te)144 204 Q +276 Q(ault.)-.1 E F1(complete\255\214lename \(M\255/\))108 288 Q F0 +(Attempt \214lename completion on the te)144 300 Q(xt before point.)-.15 +E F1(possible\255\214lename\255completions \(C\255x /\))108 312 Q F0 +(List the possible completions of the te)144 324 Q (xt before point, treating it as a \214lename.)-.15 E F1 -(complete\255user)108 216 Q(name \(M\255~\))-.15 E F0 -(Attempt completion on the te)144 228 Q +(complete\255user)108 336 Q(name \(M\255~\))-.15 E F0 +(Attempt completion on the te)144 348 Q (xt before point, treating it as a username.)-.15 E F1(possible\255user) -108 240 Q(name\255completions \(C\255x ~\))-.15 E F0 -(List the possible completions of the te)144 252 Q +108 360 Q(name\255completions \(C\255x ~\))-.15 E F0 +(List the possible completions of the te)144 372 Q (xt before point, treating it as a username.)-.15 E F1(complete\255v)108 -264 Q(ariable \(M\255$\))-.1 E F0(Attempt completion on the te)144 276 Q +384 Q(ariable \(M\255$\))-.1 E F0(Attempt completion on the te)144 396 Q (xt before point, treating it as a shell v)-.15 E(ariable.)-.25 E F1 -(possible\255v)108 288 Q(ariable\255completions \(C\255x $\))-.1 E F0 -(List the possible completions of the te)144 300 Q +(possible\255v)108 408 Q(ariable\255completions \(C\255x $\))-.1 E F0 +(List the possible completions of the te)144 420 Q (xt before point, treating it as a shell v)-.15 E(ariable.)-.25 E F1 -(complete\255hostname \(M\255@\))108 312 Q F0 -(Attempt completion on the te)144 324 Q +(complete\255hostname \(M\255@\))108 432 Q F0 +(Attempt completion on the te)144 444 Q (xt before point, treating it as a hostname.)-.15 E F1 -(possible\255hostname\255completions \(C\255x @\))108 336 Q F0 -(List the possible completions of the te)144 348 Q +(possible\255hostname\255completions \(C\255x @\))108 456 Q F0 +(List the possible completions of the te)144 468 Q (xt before point, treating it as a hostname.)-.15 E F1 -(complete\255command \(M\255!\))108 360 Q F0 .581 -(Attempt completion on the te)144 372 R .581 +(complete\255command \(M\255!\))108 480 Q F0 .581 +(Attempt completion on the te)144 492 R .581 (xt before point, treating it as a command name.)-.15 F .58 -(Command comple-)5.58 F .715(tion attempts to match the te)144 384 R +(Command comple-)5.58 F .715(tion attempts to match the te)144 504 R .715(xt ag)-.15 F .715(ainst aliases, reserv)-.05 F .715(ed w)-.15 F .715(ords, shell functions, shell b)-.1 F .715(uiltins, and)-.2 F -(\214nally e)144 396 Q -.15(xe)-.15 G +(\214nally e)144 516 Q -.15(xe)-.15 G (cutable \214lenames, in that order).15 E(.)-.55 E F1 -(possible\255command\255completions \(C\255x !\))108 408 Q F0 -(List the possible completions of the te)144 420 Q +(possible\255command\255completions \(C\255x !\))108 528 Q F0 +(List the possible completions of the te)144 540 Q (xt before point, treating it as a command name.)-.15 E F1 -(dynamic\255complete\255history \(M\255T)108 432 Q(AB\))-.9 E F0 .425 -(Attempt completion on the te)144 444 R .425 +(dynamic\255complete\255history \(M\255T)108 552 Q(AB\))-.9 E F0 .425 +(Attempt completion on the te)144 564 R .425 (xt before point, comparing the te)-.15 F .425(xt ag)-.15 F .424 (ainst lines from the history list)-.05 F -(for possible completion matches.)144 456 Q F1(dab)108 468 Q(br)-.1 E +(for possible completion matches.)144 576 Q F1(dab)108 588 Q(br)-.1 E -.15(ev)-.18 G(\255expand).15 E F0 .61 -(Attempt menu completion on the te)144 480 R .611 +(Attempt menu completion on the te)144 600 R .611 (xt before point, comparing the te)-.15 F .611(xt ag)-.15 F .611 (ainst lines from the his-)-.05 F -(tory list for possible completion matches.)144 492 Q F1 -(complete\255into\255braces \(M\255{\))108 504 Q F0 .4(Perform \214lena\ +(tory list for possible completion matches.)144 612 Q F1 +(complete\255into\255braces \(M\255{\))108 624 Q F0 .4(Perform \214lena\ me completion and insert the list of possible completions enclosed with\ -in braces so)144 516 R(the list is a)144 528 Q -.25(va)-.2 G +in braces so)144 636 R(the list is a)144 648 Q -.25(va)-.2 G (ilable to the shell \(see).25 E F1(Brace Expansion)2.5 E F0(abo)2.5 E --.15(ve)-.15 G(\).).15 E F1 -.25(Ke)87 544.8 S(yboard Macr).25 E(os)-.18 -E(start\255kbd\255macr)108 556.8 Q 2.5(o\()-.18 G(C\255x \()-2.5 E(\)) -.833 E F0(Be)144 568.8 Q(gin sa)-.15 E +-.15(ve)-.15 G(\).).15 E F1 -.25(Ke)87 664.8 S(yboard Macr).25 E(os)-.18 +E(start\255kbd\255macr)108 676.8 Q 2.5(o\()-.18 G(C\255x \()-2.5 E(\)) +.833 E F0(Be)144 688.8 Q(gin sa)-.15 E (ving the characters typed into the current k)-.2 E -.15(ey)-.1 G -(board macro.).15 E F1(end\255kbd\255macr)108 580.8 Q 2.5(o\()-.18 G -(C\255x \))-2.5 E(\)).833 E F0(Stop sa)144 592.8 Q +(board macro.).15 E F1(end\255kbd\255macr)108 700.8 Q 2.5(o\()-.18 G +(C\255x \))-2.5 E(\)).833 E F0(Stop sa)144 712.8 Q (ving the characters typed into the current k)-.2 E -.15(ey)-.1 G -(board macro and store the de\214nition.).15 E F1 -(call\255last\255kbd\255macr)108 604.8 Q 2.5(o\()-.18 G(C\255x e\))-2.5 -E F0(Re-e)144 616.8 Q -.15(xe)-.15 G .999(cute the last k).15 F -.15(ey) --.1 G .999(board macro de\214ned, by making the characters in the macro\ - appear as if).15 F(typed at the k)144 628.8 Q -.15(ey)-.1 G(board.).15 -E F1(print\255last\255kbd\255macr)108 640.8 Q 2.5(o\()-.18 G(\))-2.5 E -F0(Print the last k)144 652.8 Q -.15(ey)-.1 G -(board macro de\214ned in a format suitable for the).15 E/F2 10 -/Times-Italic@0 SF(inputr)2.5 E(c)-.37 E F0(\214le.)2.5 E F1 -(Miscellaneous)87 669.6 Q -.18(re)108 681.6 S.18 E -(ead\255init\255\214le \(C\255x C\255r\))-.18 E F0 1.777 -(Read in the contents of the)144 693.6 R F2(inputr)4.277 E(c)-.37 E F0 -1.776(\214le, and incorporate an)4.276 F 4.276(yb)-.15 G 1.776 -(indings or v)-4.276 F 1.776(ariable assignments)-.25 F(found there.)144 -705.6 Q(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26) -.15 E(50)185.545 E 0 Cg EP +(board macro and store the de\214nition.).15 E(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(50)190.95 E 0 Cg EP %%Page: 51 51 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(abort \(C\255g\))108 84 Q F0 3.248 -(Abort the current editing command and ring the terminal')144 96 R 5.749 -(sb)-.55 G 3.249(ell \(subject to the setting of)-5.749 F F1 -(bell\255style)144 108 Q F0(\).)A F1(do\255lo)108 120 Q(wer)-.1 E -(case\255v)-.18 E(ersion \(M\255A, M\255B, M\255)-.1 E/F2 10 -/Times-Italic@0 SF(x)A F1 2.5(,.)C(..\))-2.5 E F0 1.739 -(If the meta\214ed character)144 132 R F2(x)4.239 E F0 1.739 +SF(call\255last\255kbd\255macr)108 84 Q 2.5(o\()-.18 G(C\255x e\))-2.5 E +F0(Re-e)144 96 Q -.15(xe)-.15 G .999(cute the last k).15 F -.15(ey)-.1 G +.999(board macro de\214ned, by making the characters in the macro appea\ +r as if).15 F(typed at the k)144 108 Q -.15(ey)-.1 G(board.).15 E F1 +(print\255last\255kbd\255macr)108 120 Q 2.5(o\()-.18 G(\))-2.5 E F0 +(Print the last k)144 132 Q -.15(ey)-.1 G +(board macro de\214ned in a format suitable for the).15 E/F2 10 +/Times-Italic@0 SF(inputr)2.5 E(c)-.37 E F0(\214le.)2.5 E F1 +(Miscellaneous)87 148.8 Q -.18(re)108 160.8 S.18 E +(ead\255init\255\214le \(C\255x C\255r\))-.18 E F0 1.777 +(Read in the contents of the)144 172.8 R F2(inputr)4.277 E(c)-.37 E F0 +1.776(\214le, and incorporate an)4.276 F 4.276(yb)-.15 G 1.776 +(indings or v)-4.276 F 1.776(ariable assignments)-.25 F(found there.)144 +184.8 Q F1(abort \(C\255g\))108 196.8 Q F0 3.248 +(Abort the current editing command and ring the terminal')144 208.8 R +5.749(sb)-.55 G 3.249(ell \(subject to the setting of)-5.749 F F1 +(bell\255style)144 220.8 Q F0(\).)A F1(do\255lo)108 232.8 Q(wer)-.1 E +(case\255v)-.18 E(ersion \(M\255A, M\255B, M\255)-.1 E F2(x)A F1 2.5(,.) +C(..\))-2.5 E F0 1.739(If the meta\214ed character)144 244.8 R F2(x) +4.239 E F0 1.739 (is uppercase, run the command that is bound to the corresponding)4.239 -F(meta\214ed lo)144 144 Q(wercase character)-.25 E 5(.T)-.55 G(he beha) --5 E(vior is unde\214ned if)-.2 E F2(x)2.5 E F0(is already lo)2.5 E -(wercase.)-.25 E F1(pr)108 156 Q(e\214x\255meta \(ESC\))-.18 E F0 -(Metafy the ne)144 168 Q(xt character typed.)-.15 E/F3 9/Times-Bold@0 SF -(ESC)5 E F1(f)2.25 E F0(is equi)2.5 E -.25(va)-.25 G(lent to).25 E F1 -(Meta\255f)2.5 E F0(.)A F1(undo \(C\255_, C\255x C\255u\))108 180 Q F0 -(Incremental undo, separately remembered for each line.)144 192 Q F1 --2.29 -.18(re v)108 204 T(ert\255line \(M\255r\)).08 E F0 .23 -(Undo all changes made to this line.)144 216 R .231(This is lik)5.23 F +F(meta\214ed lo)144 256.8 Q(wercase character)-.25 E 5(.T)-.55 G +(he beha)-5 E(vior is unde\214ned if)-.2 E F2(x)2.5 E F0(is already lo) +2.5 E(wercase.)-.25 E F1(pr)108 268.8 Q(e\214x\255meta \(ESC\))-.18 E F0 +(Metafy the ne)144 280.8 Q(xt character typed.)-.15 E/F3 9/Times-Bold@0 +SF(ESC)5 E F1(f)2.25 E F0(is equi)2.5 E -.25(va)-.25 G(lent to).25 E F1 +(Meta\255f)2.5 E F0(.)A F1(undo \(C\255_, C\255x C\255u\))108 292.8 Q F0 +(Incremental undo, separately remembered for each line.)144 304.8 Q F1 +-2.29 -.18(re v)108 316.8 T(ert\255line \(M\255r\)).08 E F0 .23 +(Undo all changes made to this line.)144 328.8 R .231(This is lik)5.23 F 2.731(ee)-.1 G -.15(xe)-2.881 G .231(cuting the).15 F F1(undo)2.731 E F0 .231(command enough times to re-)2.731 F -(turn the line to its initial state.)144 228 Q F1 -(tilde\255expand \(M\255&\))108 240 Q F0(Perform tilde e)144 252 Q +(turn the line to its initial state.)144 340.8 Q F1 +(tilde\255expand \(M\255&\))108 352.8 Q F0(Perform tilde e)144 364.8 Q (xpansion on the current w)-.15 E(ord.)-.1 E F1 -(set\255mark \(C\255@, M\255\))108 264 Q F0 -(Set the mark to the point.)144 276 Q(If a numeric ar)5 E +(set\255mark \(C\255@, M\255\))108 376.8 Q F0 +(Set the mark to the point.)144 388.8 Q(If a numeric ar)5 E (gument is supplied, the mark is set to that position.)-.18 E F1 -(exchange\255point\255and\255mark \(C\255x C\255x\))108 288 Q F0(Sw)144 -300 Q .283(ap the point with the mark.)-.1 F .283 +(exchange\255point\255and\255mark \(C\255x C\255x\))108 400.8 Q F0(Sw) +144 412.8 Q .283(ap the point with the mark.)-.1 F .283 (The current cursor position is set to the sa)5.283 F -.15(ve)-.2 G 2.782(dp).15 G .282(osition, and the old)-2.782 F(cursor position is sa) -144 312 Q -.15(ve)-.2 G 2.5(da).15 G 2.5(st)-2.5 G(he mark.)-2.5 E F1 -(character\255sear)108 324 Q(ch \(C\255]\))-.18 E F0 3.035(Ac)144 336 S -.535(haracter is read and point is mo)-3.035 F -.15(ve)-.15 G 3.035(dt) -.15 G 3.035(ot)-3.035 G .535(he ne)-3.035 F .535 +144 424.8 Q -.15(ve)-.2 G 2.5(da).15 G 2.5(st)-2.5 G(he mark.)-2.5 E F1 +(character\255sear)108 436.8 Q(ch \(C\255]\))-.18 E F0 3.035(Ac)144 +448.8 S .535(haracter is read and point is mo)-3.035 F -.15(ve)-.15 G +3.035(dt).15 G 3.035(ot)-3.035 G .535(he ne)-3.035 F .535 (xt occurrence of that character)-.15 F 5.536(.A)-.55 G(ne)-2.5 E -.05 (ga)-.15 G(ti).05 E .836 -.15(ve c)-.25 H(ount).15 E(searches for pre) -144 348 Q(vious occurrences.)-.25 E F1(character\255sear)108 360 Q -(ch\255backward \(M\255C\255]\))-.18 E F0 3.544(Ac)144 372 S 1.044 +144 460.8 Q(vious occurrences.)-.25 E F1(character\255sear)108 472.8 Q +(ch\255backward \(M\255C\255]\))-.18 E F0 3.544(Ac)144 484.8 S 1.044 (haracter is read and point is mo)-3.544 F -.15(ve)-.15 G 3.544(dt).15 G 3.544(ot)-3.544 G 1.044(he pre)-3.544 F 1.044 (vious occurrence of that character)-.25 F 6.043(.A)-.55 G(ne)-2.5 E -.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G -(count searches for subsequent occurrences.)144 384 Q F1 -(skip\255csi\255sequence)108 396 Q F0 1.826 -(Read enough characters to consume a multi-k)144 408 R 2.126 -.15(ey s) --.1 H 1.827(equence such as those de\214ned for k).15 F -.15(ey)-.1 G -4.327(sl).15 G(ik)-4.327 E(e)-.1 E .791(Home and End.)144 420 R .791 -(Such sequences be)5.791 F .791 +(count searches for subsequent occurrences.)144 496.8 Q F1 +(skip\255csi\255sequence)108 508.8 Q F0 1.826 +(Read enough characters to consume a multi-k)144 520.8 R 2.126 -.15 +(ey s)-.1 H 1.827(equence such as those de\214ned for k).15 F -.15(ey) +-.1 G 4.327(sl).15 G(ik)-4.327 E(e)-.1 E .791(Home and End.)144 532.8 R +.791(Such sequences be)5.791 F .791 (gin with a Control Sequence Indicator \(CSI\), usually ESC\255[.)-.15 F -.331(If this sequence is bound to "\\[", k)144 432 R -.15(ey)-.1 G 2.831 -(sp).15 G .331(roducing such sequences will ha)-2.831 F .632 -.15(ve n) --.2 H 2.832(oe).15 G -.25(ff)-2.832 G .332(ect unless e).25 F(xplic-) --.15 E .026(itly bound to a readline command, instead of inserting stra\ -y characters into the editing b)144 444 R(uf)-.2 E(fer)-.25 E 5.026(.T) --.55 G(his)-5.026 E(is unbound by def)144 456 Q(ault, b)-.1 E +.331(If this sequence is bound to "\\[", k)144 544.8 R -.15(ey)-.1 G +2.831(sp).15 G .331(roducing such sequences will ha)-2.831 F .632 -.15 +(ve n)-.2 H 2.832(oe).15 G -.25(ff)-2.832 G .332(ect unless e).25 F +(xplic-)-.15 E .026(itly bound to a readline command, instead of insert\ +ing stray characters into the editing b)144 556.8 R(uf)-.2 E(fer)-.25 E +5.026(.T)-.55 G(his)-5.026 E(is unbound by def)144 568.8 Q(ault, b)-.1 E (ut usually bound to ESC\255[.)-.2 E F1(insert\255comment \(M\255#\))108 -468 Q F0 -.4(Wi)144 480 S .48(thout a numeric ar).4 F .48(gument, the v) --.18 F .481(alue of the readline)-.25 F F1(comment\255begin)2.981 E F0 --.25(va)2.981 G .481(riable is inserted at the).25 F(be)144 492 Q .245 +580.8 Q F0 -.4(Wi)144 592.8 S .48(thout a numeric ar).4 F .48 +(gument, the v)-.18 F .481(alue of the readline)-.25 F F1 +(comment\255begin)2.981 E F0 -.25(va)2.981 G .481 +(riable is inserted at the).25 F(be)144 604.8 Q .245 (ginning of the current line.)-.15 F .245(If a numeric ar)5.245 F .244 (gument is supplied, this command acts as a toggle: if)-.18 F .321 -(the characters at the be)144 504 R .321 +(the characters at the be)144 616.8 R .321 (ginning of the line do not match the v)-.15 F .321(alue of)-.25 F F1 (comment\255begin)2.821 E F0 2.822(,t)C .322(he v)-2.822 F .322(alue is) --.25 F .832(inserted, otherwise the characters in)144 516 R F1 +-.25 F .832(inserted, otherwise the characters in)144 628.8 R F1 (comment\255begin)3.332 E F0 .831(are deleted from the be)3.332 F .831 (ginning of the line.)-.15 F 1.468 -(In either case, the line is accepted as if a ne)144 528 R 1.468 +(In either case, the line is accepted as if a ne)144 640.8 R 1.468 (wline had been typed.)-.25 F 1.469(The def)6.469 F 1.469(ault v)-.1 F -1.469(alue of)-.25 F F1(com-)3.969 E(ment\255begin)144 540 Q F0 .84 +1.469(alue of)-.25 F F1(com-)3.969 E(ment\255begin)144 652.8 Q F0 .84 (causes this command to mak)3.34 F 3.339(et)-.1 G .839 (he current line a shell comment.)-3.339 F .839(If a numeric ar)5.839 F -(gu-)-.18 E(ment causes the comment character to be remo)144 552 Q -.15 -(ve)-.15 G(d, the line will be e).15 E -.15(xe)-.15 G -(cuted by the shell.).15 E F1(glob\255complete\255w)108 564 Q -(ord \(M\255g\))-.1 E F0 .791(The w)144 576 R .791 +(gu-)-.18 E(ment causes the comment character to be remo)144 664.8 Q +-.15(ve)-.15 G(d, the line will be e).15 E -.15(xe)-.15 G +(cuted by the shell.).15 E F1(glob\255complete\255w)108 676.8 Q +(ord \(M\255g\))-.1 E F0 .791(The w)144 688.8 R .791 (ord before point is treated as a pattern for pathname e)-.1 F .792 -(xpansion, with an asterisk implicitly)-.15 F 2.5(appended. This)144 588 -R(pattern is used to generate a list of matching \214lenames for possib\ -le completions.)2.5 E F1(glob\255expand\255w)108 600 Q(ord \(C\255x *\)) --.1 E F0 .176(The w)144 612 R .176 -(ord before point is treated as a pattern for pathname e)-.1 F .176 -(xpansion, and the list of matching \214le-)-.15 F .516 -(names is inserted, replacing the w)144 624 R 3.016(ord. If)-.1 F 3.016 -(an)3.016 G .516(umeric ar)-3.016 F .516 -(gument is supplied, an asterisk is appended)-.18 F(before pathname e) -144 636 Q(xpansion.)-.15 E F1(glob\255list\255expansions \(C\255x g\)) -108 648 Q F0 .923(The list of e)144 660 R .923(xpansions that w)-.15 F -.923(ould ha)-.1 F 1.223 -.15(ve b)-.2 H .923(een generated by).15 F F1 -(glob\255expand\255w)3.423 E(ord)-.1 E F0 .923(is displayed, and)3.423 F -.872(the line is redra)144 672 R 3.372(wn. If)-.15 F 3.372(an)3.372 G -.872(umeric ar)-3.372 F .872 -(gument is supplied, an asterisk is appended before pathname)-.18 F -.15 -(ex)144 684 S(pansion.).15 E F1(dump\255functions)108 696 Q F0 .627 -(Print all of the functions and their k)144 708 R .927 -.15(ey b)-.1 H -.626(indings to the readline output stream.).15 F .626(If a numeric ar) -5.626 F(gu-)-.18 E -(ment is supplied, the output is formatted in such a w)144 720 Q -(ay that it can be made part of an)-.1 E F2(inputr)2.5 E(c)-.37 E F0 -(\214le.)2.5 E(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G -(mber 26).15 E(51)185.545 E 0 Cg EP +(xpansion, with an asterisk implicitly)-.15 F 2.5(appended. This)144 +700.8 R(pattern is used to generate a list of matching \214lenames for \ +possible completions.)2.5 E(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 +E(51)190.95 E 0 Cg EP %%Page: 52 52 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(dump\255v)108 84 Q(ariables)-.1 E F0 .762 -(Print all of the settable readline v)144 96 R .762 +SF(glob\255expand\255w)108 84 Q(ord \(C\255x *\))-.1 E F0 .176(The w)144 +96 R .176(ord before point is treated as a pattern for pathname e)-.1 F +.176(xpansion, and the list of matching \214le-)-.15 F .516 +(names is inserted, replacing the w)144 108 R 3.016(ord. If)-.1 F 3.016 +(an)3.016 G .516(umeric ar)-3.016 F .516 +(gument is supplied, an asterisk is appended)-.18 F(before pathname e) +144 120 Q(xpansion.)-.15 E F1(glob\255list\255expansions \(C\255x g\)) +108 132 Q F0 .923(The list of e)144 144 R .923(xpansions that w)-.15 F +.923(ould ha)-.1 F 1.223 -.15(ve b)-.2 H .923(een generated by).15 F F1 +(glob\255expand\255w)3.423 E(ord)-.1 E F0 .923(is displayed, and)3.423 F +.872(the line is redra)144 156 R 3.372(wn. If)-.15 F 3.372(an)3.372 G +.872(umeric ar)-3.372 F .872 +(gument is supplied, an asterisk is appended before pathname)-.18 F -.15 +(ex)144 168 S(pansion.).15 E F1(dump\255functions)108 180 Q F0 .627 +(Print all of the functions and their k)144 192 R .927 -.15(ey b)-.1 H +.626(indings to the readline output stream.).15 F .626(If a numeric ar) +5.626 F(gu-)-.18 E +(ment is supplied, the output is formatted in such a w)144 204 Q +(ay that it can be made part of an)-.1 E/F2 10/Times-Italic@0 SF(inputr) +2.5 E(c)-.37 E F0(\214le.)2.5 E F1(dump\255v)108 216 Q(ariables)-.1 E F0 +.762(Print all of the settable readline v)144 228 R .762 (ariables and their v)-.25 F .763(alues to the readline output stream.) --.25 F .763(If a nu-)5.763 F .109(meric ar)144 108 R .109 +-.25 F .763(If a nu-)5.763 F .109(meric ar)144 240 R .109 (gument is supplied, the output is formatted in such a w)-.18 F .108 -(ay that it can be made part of an)-.1 F/F2 10/Times-Italic@0 SF(in-) -2.608 E(putr)144 120 Q(c)-.37 E F0(\214le.)2.5 E F1(dump\255macr)108 132 -Q(os)-.18 E F0 .592(Print all of the readline k)144 144 R .892 -.15 -(ey s)-.1 H .592(equences bound to macros and the strings the).15 F -3.093(yo)-.15 G 3.093(utput. If)-3.093 F 3.093(an)3.093 G(umeric)-3.093 -E(ar)144 156 Q .528 -(gument is supplied, the output is formatted in such a w)-.18 F .528 +(ay that it can be made part of an)-.1 F F2(in-)2.608 E(putr)144 252 Q +(c)-.37 E F0(\214le.)2.5 E F1(dump\255macr)108 264 Q(os)-.18 E F0 .592 +(Print all of the readline k)144 276 R .892 -.15(ey s)-.1 H .592 +(equences bound to macros and the strings the).15 F 3.093(yo)-.15 G +3.093(utput. If)-3.093 F 3.093(an)3.093 G(umeric)-3.093 E(ar)144 288 Q +.528(gument is supplied, the output is formatted in such a w)-.18 F .528 (ay that it can be made part of an)-.1 F F2(inputr)3.027 E(c)-.37 E F0 -(\214le.)144 168 Q F1(display\255shell\255v)108 180 Q -(ersion \(C\255x C\255v\))-.1 E F0(Display v)144 192 Q +(\214le.)144 300 Q F1(display\255shell\255v)108 312 Q +(ersion \(C\255x C\255v\))-.1 E F0(Display v)144 324 Q (ersion information about the current instance of)-.15 E F1(bash)2.5 E -F0(.)A F1(Pr)87 208.8 Q(ogrammable Completion)-.18 E F0 .146(When w)108 -220.8 R .147(ord completion is attempted for an ar)-.1 F .147 +F0(.)A F1(Pr)87 340.8 Q(ogrammable Completion)-.18 E F0 .146(When w)108 +352.8 R .147(ord completion is attempted for an ar)-.1 F .147 (gument to a command for which a completion speci\214cation \(a)-.18 F -F2(compspec)108 232.8 Q F0 3.829(\)h)C 1.329 +F2(compspec)108 364.8 Q F0 3.829(\)h)C 1.329 (as been de\214ned using the)-3.829 F F1(complete)3.829 E F0 -.2(bu) 3.829 G 1.329(iltin \(see).2 F/F3 9/Times-Bold@0 SF 1.329(SHELL B)3.829 F(UIL)-.09 E 1.329(TIN COMMANDS)-.828 F F0(belo)3.579 E 1.328(w\), the) --.25 F(programmable completion f)108 244.8 Q(acilities are in)-.1 E -.2 +-.25 F(programmable completion f)108 376.8 Q(acilities are in)-.1 E -.2 (vo)-.4 G -.1(ke).2 G(d.).1 E .497 -(First, the command name is identi\214ed.)108 261.6 R .497 +(First, the command name is identi\214ed.)108 393.6 R .497 (If the command w)5.497 F .498 (ord is the empty string \(completion attempted at)-.1 F .234(the be)108 -273.6 R .233(ginning of an empty line\), an)-.15 F 2.733(yc)-.15 G .233 +405.6 R .233(ginning of an empty line\), an)-.15 F 2.733(yc)-.15 G .233 (ompspec de\214ned with the)-2.733 F F12.733 E F0 .233(option to) 2.733 F F1(complete)2.733 E F0 .233(is used.)2.733 F .233(If a comp-) 5.233 F .481(spec has been de\214ned for that command, the compspec is \ -used to generate the list of possible completions)108 285.6 R .823 -(for the w)108 297.6 R 3.323(ord. If)-.1 F .823(the command w)3.323 F +used to generate the list of possible completions)108 417.6 R .823 +(for the w)108 429.6 R 3.323(ord. If)-.1 F .823(the command w)3.323 F .822(ord is a full pathname, a compspec for the full pathname is search\ -ed for)-.1 F 2.866(\214rst. If)108 309.6 R .367(no compspec is found fo\ +ed for)-.1 F 2.866(\214rst. If)108 441.6 R .367(no compspec is found fo\ r the full pathname, an attempt is made to \214nd a compspec for the po\ -rtion)2.866 F(follo)108 321.6 Q .299(wing the \214nal slash.)-.25 F .298 +rtion)2.866 F(follo)108 453.6 Q .299(wing the \214nal slash.)-.25 F .298 (If those searches do not result in a compspec, an)5.299 F 2.798(yc)-.15 G .298(ompspec de\214ned with the)-2.798 F F12.798 E F0 .056 -(option to)108 333.6 R F1(complete)2.556 E F0 .056(is used as the def) +(option to)108 465.6 R F1(complete)2.556 E F0 .056(is used as the def) 2.556 F 2.556(ault. If)-.1 F .056(there is no def)2.556 F .056 (ault compspec,)-.1 F F1(bash)2.556 E F0 .056(attempts alias e)2.556 F -.057(xpansion on)-.15 F .333(the command w)108 345.6 R .332(ord as a \ +.057(xpansion on)-.15 F .333(the command w)108 477.6 R .332(ord as a \ \214nal resort, and attempts to \214nd a compspec for the command w)-.1 F .332(ord from an)-.1 F 2.832(ys)-.15 G(uc-)-2.832 E(cessful e)108 -357.6 Q(xpansion.)-.15 E .817(Once a compspec has been found, it is use\ -d to generate the list of matching w)108 374.4 R 3.317(ords. If)-.1 F -3.317(ac)3.317 G .817(ompspec is not)-3.317 F(found, the def)108 386.4 Q +489.6 Q(xpansion.)-.15 E .817(Once a compspec has been found, it is use\ +d to generate the list of matching w)108 506.4 R 3.317(ords. If)-.1 F +3.317(ac)3.317 G .817(ompspec is not)-3.317 F(found, the def)108 518.4 Q (ault)-.1 E F1(bash)2.5 E F0(completion as described abo)2.5 E .3 -.15 (ve u)-.15 H(nder).15 E F1(Completing)2.5 E F0(is performed.)2.5 E .464 -(First, the actions speci\214ed by the compspec are used.)108 403.2 R +(First, the actions speci\214ed by the compspec are used.)108 535.2 R .463(Only matches which are pre\214x)5.464 F .463(ed by the w)-.15 F -.463(ord being)-.1 F .595(completed are returned.)108 415.2 R .595 +.463(ord being)-.1 F .595(completed are returned.)108 547.2 R .595 (When the)5.595 F F13.095 E F0(or)3.095 E F13.095 E F0 .596 (option is used for \214lename or directory name completion, the)3.095 F -(shell v)108 427.2 Q(ariable)-.25 E F3(FIGNORE)2.5 E F0 -(is used to \214lter the matches.)2.25 E(An)108 444 Q 4.084(yc)-.15 G +(shell v)108 559.2 Q(ariable)-.25 E F3(FIGNORE)2.5 E F0 +(is used to \214lter the matches.)2.25 E(An)108 576 Q 4.084(yc)-.15 G 1.584(ompletions speci\214ed by a pathname e)-4.084 F 1.584 (xpansion pattern to the)-.15 F F14.084 E F0 1.584 -(option are generated ne)4.084 F 4.084(xt. The)-.15 F -.1(wo)108 456 S +(option are generated ne)4.084 F 4.084(xt. The)-.15 F -.1(wo)108 588 S .554(rds generated by the pattern need not match the w).1 F .555 (ord being completed.)-.1 F(The)5.555 E F3(GLOBIGNORE)3.055 E F0 .555 (shell v)2.805 F(ari-)-.25 E -(able is not used to \214lter the matches, b)108 468 Q(ut the)-.2 E F3 -(FIGNORE)2.5 E F0 -.25(va)2.25 G(riable is used.).25 E(Ne)108 484.8 Q +(able is not used to \214lter the matches, b)108 600 Q(ut the)-.2 E F3 +(FIGNORE)2.5 E F0 -.25(va)2.25 G(riable is used.).25 E(Ne)108 616.8 Q .321(xt, the string speci\214ed as the ar)-.15 F .321(gument to the)-.18 F F12.821 E F0 .32(option is considered.)2.821 F .32 (The string is \214rst split using the)5.32 F .412(characters in the)108 -496.8 R F3(IFS)2.912 E F0 .412(special v)2.662 F .412 +628.8 R F3(IFS)2.912 E F0 .412(special v)2.662 F .412 (ariable as delimiters.)-.25 F .412(Shell quoting is honored.)5.412 F .413(Each w)5.412 F .413(ord is then e)-.1 F(xpanded)-.15 E .092 -(using brace e)108 508.8 R .092(xpansion, tilde e)-.15 F .092 +(using brace e)108 640.8 R .092(xpansion, tilde e)-.15 F .092 (xpansion, parameter and v)-.15 F .092(ariable e)-.25 F .091 (xpansion, command substitution, and arith-)-.15 F 1.396(metic e)108 -520.8 R 1.396(xpansion, as described abo)-.15 F 1.696 -.15(ve u)-.15 H +652.8 R 1.396(xpansion, as described abo)-.15 F 1.696 -.15(ve u)-.15 H (nder).15 E F3(EXP)3.896 E(ANSION)-.666 E/F4 9/Times-Roman@0 SF(.)A F0 1.396(The results are split using the rules described)5.896 F(abo)108 -532.8 Q .51 -.15(ve u)-.15 H(nder).15 E F1 -.75(Wo)2.71 G .21 +664.8 Q .51 -.15(ve u)-.15 H(nder).15 E F1 -.75(Wo)2.71 G .21 (rd Splitting).75 F F0 5.21(.T)C .209(he results of the e)-5.21 F .209 (xpansion are pre\214x-matched ag)-.15 F .209(ainst the w)-.05 F .209 -(ord being com-)-.1 F(pleted, and the matching w)108 544.8 Q +(ord being com-)-.1 F(pleted, and the matching w)108 676.8 Q (ords become the possible completions.)-.1 E .233 -(After these matches ha)108 561.6 R .533 -.15(ve b)-.2 H .233 +(After these matches ha)108 693.6 R .533 -.15(ve b)-.2 H .233 (een generated, an).15 F 2.733(ys)-.15 G .234 (hell function or command speci\214ed with the)-2.733 F F12.734 E F0(and)2.734 E F12.734 E F0(op-)2.734 E 4.209(tions is in)108 -573.6 R -.2(vo)-.4 G -.1(ke).2 G 6.709(d. When).1 F 4.208 +705.6 R -.2(vo)-.4 G -.1(ke).2 G 6.709(d. When).1 F 4.208 (the command or function is in)6.709 F -.2(vo)-.4 G -.1(ke).2 G 4.208 (d, the).1 F F3(COMP_LINE)6.708 E F4(,)A F3(COMP_POINT)6.458 E F4(,)A F3 -(COMP_KEY)108 585.6 Q F4(,)A F0(and)2.407 E F3(COMP_TYPE)2.657 E F0 -.25 +(COMP_KEY)108 717.6 Q F4(,)A F0(and)2.407 E F3(COMP_TYPE)2.657 E F0 -.25 (va)2.407 G .157(riables are assigned v).25 F .157 (alues as described abo)-.25 F .457 -.15(ve u)-.15 H(nder).15 E F1 .158 (Shell V)2.658 F(ariables)-.92 E F0 5.158(.I)C(f)-5.158 E 3.486(as)108 -597.6 S .986(hell function is being in)-3.486 F -.2(vo)-.4 G -.1(ke).2 G +729.6 S .986(hell function is being in)-3.486 F -.2(vo)-.4 G -.1(ke).2 G .986(d, the).1 F F3(COMP_W)3.486 E(ORDS)-.09 E F0(and)3.236 E F3 (COMP_CW)3.486 E(ORD)-.09 E F0 -.25(va)3.236 G .986 -(riables are also set.).25 F(When)5.985 E .346 -(the function or command is in)108 609.6 R -.2(vo)-.4 G -.1(ke).2 G .346 -(d, the \214rst ar).1 F .346(gument \()-.18 F F1($1)A F0 2.847(\)i)C -2.847(st)-2.847 G .347(he name of the command whose ar)-2.847 F(guments) --.18 E .264(are being completed, the second ar)108 621.6 R .264 -(gument \()-.18 F F1($2)A F0 2.764(\)i)C 2.764(st)-2.764 G .264(he w) --2.764 F .263(ord being completed, and the third ar)-.1 F .263 -(gument \()-.18 F F1($3)A F0 2.763(\)i)C(s)-2.763 E .628(the w)108 633.6 -R .628(ord preceding the w)-.1 F .629 -(ord being completed on the current command line.)-.1 F .629 -(No \214ltering of the generated)5.629 F .715(completions ag)108 645.6 R -.715(ainst the w)-.05 F .714(ord being completed is performed; the func\ -tion or command has complete free-)-.1 F(dom in generating the matches.) -108 657.6 Q(An)108 674.4 Q 2.937(yf)-.15 G .437 -(unction speci\214ed with)-2.937 F F12.937 E F0 .437(is in)2.937 F --.2(vo)-.4 G -.1(ke).2 G 2.937<648c>.1 G 2.937(rst. The)-2.937 F .437 -(function may use an)2.937 F 2.937(yo)-.15 G 2.937(ft)-2.937 G .437 -(he shell f)-2.937 F .438(acilities, including)-.1 F(the)108 686.4 Q F1 -(compgen)2.957 E F0 -.2(bu)2.957 G .457(iltin described belo).2 F 1.756 --.65(w, t)-.25 H 2.956(og).65 G .456(enerate the matches.)-2.956 F .456 -(It must put the possible completions in the)5.456 F F3(COMPREPL)108 -698.4 Q(Y)-.828 E F0(array v)2.25 E(ariable, one per array element.)-.25 -E(Ne)108 715.2 Q .08(xt, an)-.15 F 2.58(yc)-.15 G .08 -(ommand speci\214ed with the)-2.58 F F12.58 E F0 .081 -(option is in)2.581 F -.2(vo)-.4 G -.1(ke).2 G 2.581(di).1 G 2.581(na) --2.581 G 2.581(ne)-2.581 G -.4(nv)-2.581 G .081(ironment equi).4 F -.25 -(va)-.25 G .081(lent to command sub-).25 F 2.859(stitution. It)108 727.2 -R .359(should print a list of completions, one per line, to the standar\ -d output.)2.859 F .358(Backslash may be used)5.359 F(GNU Bash 5.0)72 768 -Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(52)185.545 E 0 Cg EP +(riables are also set.).25 F(When)5.985 E(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(52)190.95 E 0 Cg EP %%Page: 53 53 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(to escape a ne)108 -84 Q(wline, if necessary)-.25 E(.)-.65 E .376 -(After all of the possible completions are generated, an)108 100.8 R -2.877<798c>-.15 G .377(lter speci\214ed with the)-2.877 F/F1 10 -/Times-Bold@0 SF2.877 E F0 .377(option is applied to the)2.877 F -3.182(list. The)108 112.8 R .682 -(\214lter is a pattern as used for pathname e)3.182 F .681(xpansion; a) --.15 F F1(&)3.181 E F0 .681(in the pattern is replaced with the te)3.181 -F .681(xt of)-.15 F .522(the w)108 124.8 R .522(ord being completed.)-.1 -F 3.022(Al)5.522 G(iteral)-3.022 E F1(&)3.022 E F0 .523 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .346 +(the function or command is in)108 84 R -.2(vo)-.4 G -.1(ke).2 G .346 +(d, the \214rst ar).1 F .346(gument \()-.18 F/F1 10/Times-Bold@0 SF($1)A +F0 2.847(\)i)C 2.847(st)-2.847 G .347(he name of the command whose ar) +-2.847 F(guments)-.18 E .264(are being completed, the second ar)108 96 R +.264(gument \()-.18 F F1($2)A F0 2.764(\)i)C 2.764(st)-2.764 G .264 +(he w)-2.764 F .263(ord being completed, and the third ar)-.1 F .263 +(gument \()-.18 F F1($3)A F0 2.763(\)i)C(s)-2.763 E .628(the w)108 108 R +.628(ord preceding the w)-.1 F .629 +(ord being completed on the current command line.)-.1 F .629 +(No \214ltering of the generated)5.629 F .715(completions ag)108 120 R +.715(ainst the w)-.05 F .714(ord being completed is performed; the func\ +tion or command has complete free-)-.1 F(dom in generating the matches.) +108 132 Q(An)108 148.8 Q 2.937(yf)-.15 G .437(unction speci\214ed with) +-2.937 F F12.937 E F0 .437(is in)2.937 F -.2(vo)-.4 G -.1(ke).2 G +2.937<648c>.1 G 2.937(rst. The)-2.937 F .437(function may use an)2.937 F +2.937(yo)-.15 G 2.937(ft)-2.937 G .437(he shell f)-2.937 F .438 +(acilities, including)-.1 F(the)108 160.8 Q F1(compgen)2.957 E F0 -.2 +(bu)2.957 G .457(iltin described belo).2 F 1.756 -.65(w, t)-.25 H 2.956 +(og).65 G .456(enerate the matches.)-2.956 F .456 +(It must put the possible completions in the)5.456 F/F2 9/Times-Bold@0 +SF(COMPREPL)108 172.8 Q(Y)-.828 E F0(array v)2.25 E +(ariable, one per array element.)-.25 E(Ne)108 189.6 Q .08(xt, an)-.15 F +2.58(yc)-.15 G .08(ommand speci\214ed with the)-2.58 F F12.58 E F0 +.081(option is in)2.581 F -.2(vo)-.4 G -.1(ke).2 G 2.581(di).1 G 2.581 +(na)-2.581 G 2.581(ne)-2.581 G -.4(nv)-2.581 G .081(ironment equi).4 F +-.25(va)-.25 G .081(lent to command sub-).25 F 2.859(stitution. It)108 +201.6 R .359(should print a list of completions, one per line, to the s\ +tandard output.)2.859 F .358(Backslash may be used)5.359 F +(to escape a ne)108 213.6 Q(wline, if necessary)-.25 E(.)-.65 E .376 +(After all of the possible completions are generated, an)108 230.4 R +2.877<798c>-.15 G .377(lter speci\214ed with the)-2.877 F F12.877 +E F0 .377(option is applied to the)2.877 F 3.182(list. The)108 242.4 R +.682(\214lter is a pattern as used for pathname e)3.182 F .681 +(xpansion; a)-.15 F F1(&)3.181 E F0 .681 +(in the pattern is replaced with the te)3.181 F .681(xt of)-.15 F .522 +(the w)108 254.4 R .522(ord being completed.)-.1 F 3.022(Al)5.522 G +(iteral)-3.022 E F1(&)3.022 E F0 .523 (may be escaped with a backslash; the backslash is remo)3.022 F -.15(ve) --.15 G 3.023(db).15 G(efore)-3.023 E .85(attempting a match.)108 136.8 R +-.15 G 3.023(db).15 G(efore)-3.023 E .85(attempting a match.)108 266.4 R (An)5.85 E 3.35(yc)-.15 G .849 (ompletion that matches the pattern will be remo)-3.35 F -.15(ve)-.15 G 3.349(df).15 G .849(rom the list.)-3.349 F 3.349(Al)5.849 G(eading) --3.349 E F1(!)3.349 E F0(ne)108 148.8 Q -.05(ga)-.15 G .764 +-3.349 E F1(!)3.349 E F0(ne)108 278.4 Q -.05(ga)-.15 G .764 (tes the pattern; in this case an).05 F 3.264(yc)-.15 G .764 (ompletion not matching the pattern will be remo)-3.264 F -.15(ve)-.15 G -3.264(d. If).15 F(the)3.265 E F1(nocase-)3.265 E(match)108 160.8 Q F0 +3.264(d. If).15 F(the)3.265 E F1(nocase-)3.265 E(match)108 290.4 Q F0 (shell option is enabled, the match is performed without re)2.5 E -.05 (ga)-.15 G(rd to the case of alphabetic characters.).05 E(Finally)108 -177.6 Q 3.087(,a)-.65 G .887 -.15(ny p)-3.087 H .587(re\214x and suf).15 +307.2 Q 3.087(,a)-.65 G .887 -.15(ny p)-3.087 H .587(re\214x and suf).15 F .587(\214x speci\214ed with the)-.25 F F13.087 E F0(and)3.087 E F13.087 E F0 .587(options are added to each member of the com-) 3.087 F(pletion list, and the result is returned to the readline comple\ -tion code as the list of possible completions.)108 189.6 Q .246 -(If the pre)108 206.4 R .247(viously-applied actions do not generate an) +tion code as the list of possible completions.)108 319.2 Q .246 +(If the pre)108 336 R .247(viously-applied actions do not generate an) -.25 F 2.747(ym)-.15 G .247(atches, and the)-2.747 F F1 .247(\255o dir) 2.747 F(names)-.15 E F0 .247(option w)2.747 F .247(as supplied to)-.1 F -F1(complete)108 218.4 Q F0(when the compspec w)2.5 E +F1(complete)108 348 Q F0(when the compspec w)2.5 E (as de\214ned, directory name completion is attempted.)-.1 E .462 -(If the)108 235.2 R F1 .462(\255o plusdirs)2.962 F F0 .462(option w) +(If the)108 364.8 R F1 .462(\255o plusdirs)2.962 F F0 .462(option w) 2.962 F .462(as supplied to)-.1 F F1(complete)2.962 E F0 .462 (when the compspec w)2.962 F .462(as de\214ned, directory name com-)-.1 -F(pletion is attempted and an)108 247.2 Q 2.5(ym)-.15 G +F(pletion is attempted and an)108 376.8 Q 2.5(ym)-.15 G (atches are added to the results of the other actions.)-2.5 E .559 -(By def)108 264 R .559(ault, if a compspec is found, whate)-.1 F -.15 +(By def)108 393.6 R .559(ault, if a compspec is found, whate)-.1 F -.15 (ve)-.25 G 3.059(ri).15 G 3.059(tg)-3.059 G .56 (enerates is returned to the completion code as the full set)-3.059 F -.632(of possible completions.)108 276 R .632(The def)5.632 F(ault)-.1 E -F1(bash)3.132 E F0 .631 +.632(of possible completions.)108 405.6 R .632(The def)5.632 F(ault)-.1 +E F1(bash)3.132 E F0 .631 (completions are not attempted, and the readline def)3.131 F .631 -(ault of \214le-)-.1 F .558(name completion is disabled.)108 288 R .558 -(If the)5.558 F F1 .559(\255o bashdefault)3.059 F F0 .559(option w)3.059 -F .559(as supplied to)-.1 F F1(complete)3.059 E F0 .559 -(when the compspec)3.059 F -.1(wa)108 300 S 3.172(sd).1 G .672 +(ault of \214le-)-.1 F .558(name completion is disabled.)108 417.6 R +.558(If the)5.558 F F1 .559(\255o bashdefault)3.059 F F0 .559(option w) +3.059 F .559(as supplied to)-.1 F F1(complete)3.059 E F0 .559 +(when the compspec)3.059 F -.1(wa)108 429.6 S 3.172(sd).1 G .672 (e\214ned, the)-3.172 F F1(bash)3.172 E F0(def)3.172 E .671 (ault completions are attempted if the compspec generates no matches.) --.1 F .671(If the)5.671 F F13.171 E(default)108 312 Q F0 1.207 +-.1 F .671(If the)5.671 F F13.171 E(default)108 441.6 Q F0 1.207 (option w)3.706 F 1.207(as supplied to)-.1 F F1(complete)3.707 E F0 1.207(when the compspec w)3.707 F 1.207(as de\214ned, readline')-.1 F 3.707(sd)-.55 G(ef)-3.707 E 1.207(ault completion)-.1 F -(will be performed if the compspec \(and, if attempted, the def)108 324 -Q(ault)-.1 E F1(bash)2.5 E F0(completions\) generate no matches.)2.5 E -.245(When a compspec indicates that directory name completion is desire\ -d, the programmable completion func-)108 340.8 R .632(tions force readl\ -ine to append a slash to completed names which are symbolic links to di\ -rectories, subject)108 352.8 R 2.762(to the v)108 364.8 R 2.762 +(will be performed if the compspec \(and, if attempted, the def)108 +453.6 Q(ault)-.1 E F1(bash)2.5 E F0(completions\) generate no matches.) +2.5 E .245(When a compspec indicates that directory name completion is \ +desired, the programmable completion func-)108 470.4 R .632(tions force\ + readline to append a slash to completed names which are symbolic links\ + to directories, subject)108 482.4 R 2.762(to the v)108 494.4 R 2.762 (alue of the)-.25 F F1(mark\255dir)5.262 E(ectories)-.18 E F0 2.761 (readline v)5.262 F 2.761(ariable, re)-.25 F -.05(ga)-.15 G 2.761 -(rdless of the setting of the).05 F F1(mark-sym-)5.261 E(link)108 376.8 +(rdless of the setting of the).05 F F1(mark-sym-)5.261 E(link)108 506.4 Q(ed\255dir)-.1 E(ectories)-.18 E F0(readline v)2.5 E(ariable.)-.25 E .19(There is some support for dynamically modifying completions.)108 -393.6 R .191(This is most useful when used in combina-)5.191 F 1.172 -(tion with a def)108 405.6 R 1.172(ault completion speci\214ed with)-.1 +523.2 R .191(This is most useful when used in combina-)5.191 F 1.172 +(tion with a def)108 535.2 R 1.172(ault completion speci\214ed with)-.1 F F1 1.172(complete \255D)3.672 F F0 6.172(.I)C(t')-6.172 E 3.672(sp) -.55 G 1.172(ossible for shell functions e)-3.672 F -.15(xe)-.15 G 1.172 (cuted as).15 F .93(completion handlers to indicate that completion sho\ -uld be retried by returning an e)108 417.6 R .93(xit status of 124.)-.15 +uld be retried by returning an e)108 547.2 R .93(xit status of 124.)-.15 F .93(If a)5.93 F .1(shell function returns 124, and changes the compsp\ -ec associated with the command on which completion is)108 429.6 R .665 -(being attempted \(supplied as the \214rst ar)108 441.6 R .666 +ec associated with the command on which completion is)108 559.2 R .665 +(being attempted \(supplied as the \214rst ar)108 571.2 R .666 (gument when the function is e)-.18 F -.15(xe)-.15 G .666 (cuted\), programmable completion).15 F .084(restarts from the be)108 -453.6 R .084(ginning, with an attempt to \214nd a ne)-.15 F 2.584(wc) +583.2 R .084(ginning, with an attempt to \214nd a ne)-.15 F 2.584(wc) -.25 G .084(ompspec for that command.)-2.584 F .083(This allo)5.083 F -.083(ws a set of)-.25 F(completions to be b)108 465.6 Q(uilt dynamicall\ +.083(ws a set of)-.25 F(completions to be b)108 595.2 Q(uilt dynamicall\ y as completion is attempted, rather than being loaded all at once.)-.2 -E -.15(Fo)108 482.4 S 2.636(ri).15 G .137 +E -.15(Fo)108 612 S 2.636(ri).15 G .137 (nstance, assuming that there is a library of compspecs, each k)-2.636 F .137(ept in a \214le corresponding to the name of)-.1 F -(the command, the follo)108 494.4 Q(wing def)-.25 E +(the command, the follo)108 624 Q(wing def)-.25 E (ault completion function w)-.1 E(ould load completions dynamically:)-.1 -E/F2 10/Courier@0 SF(_completion_loader\(\))108 511.2 Q({)108 523.2 Q 6 -(.")144 535.2 S +E/F3 10/Courier@0 SF(_completion_loader\(\))108 640.8 Q({)108 652.8 Q 6 +(.")144 664.8 S (/etc/bash_completion.d/$1.sh" >/dev/null 2>&1 && return 124)-6 E(})108 -547.2 Q(complete -D -F _completion_loader -o bashdefault -o default)108 -559.2 Q/F3 10.95/Times-Bold@0 SF(HIST)72 588 Q(OR)-.197 E(Y)-.383 E F0 -.372(When the)108 600 R F1 .372(\255o history)2.872 F F0 .372 -(option to the)2.872 F F1(set)2.872 E F0 -.2(bu)2.872 G .372 -(iltin is enabled, the shell pro).2 F .371(vides access to the)-.15 F/F4 +676.8 Q(complete -D -F _completion_loader -o bashdefault -o default)108 +688.8 Q F0(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(53)190.95 E 0 +Cg EP +%%Page: 54 54 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10.95 +/Times-Bold@0 SF(HIST)72 84 Q(OR)-.197 E(Y)-.383 E F0 .372(When the)108 +96 R/F2 10/Times-Bold@0 SF .372(\255o history)2.872 F F0 .372 +(option to the)2.872 F F2(set)2.872 E F0 -.2(bu)2.872 G .372 +(iltin is enabled, the shell pro).2 F .371(vides access to the)-.15 F/F3 10/Times-Italic@0 SF .371(command history)2.871 F F0(,)A .304 -(the list of commands pre)108 612 R .304(viously typed.)-.25 F .304 -(The v)5.304 F .304(alue of the)-.25 F/F5 9/Times-Bold@0 SF(HISTSIZE) +(the list of commands pre)108 108 R .304(viously typed.)-.25 F .304 +(The v)5.304 F .304(alue of the)-.25 F/F4 9/Times-Bold@0 SF(HISTSIZE) 2.804 E F0 -.25(va)2.554 G .305(riable is used as the number of com-).25 -F .43(mands to sa)108 624 R .73 -.15(ve i)-.2 H 2.93(nah).15 G .43 -(istory list.)-2.93 F .43(The te)5.43 F .429(xt of the last)-.15 F F5 +F .43(mands to sa)108 120 R .73 -.15(ve i)-.2 H 2.93(nah).15 G .43 +(istory list.)-2.93 F .43(The te)5.43 F .429(xt of the last)-.15 F F4 (HISTSIZE)2.929 E F0 .429(commands \(def)2.679 F .429(ault 500\) is sa) -.1 F -.15(ve)-.2 G 2.929(d. The).15 F(shell)2.929 E .287 (stores each command in the history list prior to parameter and v)108 -636 R .287(ariable e)-.25 F .287(xpansion \(see)-.15 F F5(EXP)2.787 E -(ANSION)-.666 E F0(abo)2.537 E -.15(ve)-.15 G(\)).15 E -.2(bu)108 648 S +132 R .287(ariable e)-.25 F .287(xpansion \(see)-.15 F F4(EXP)2.787 E +(ANSION)-.666 E F0(abo)2.537 E -.15(ve)-.15 G(\)).15 E -.2(bu)108 144 S 4.066(ta).2 G 1.565(fter history e)-4.066 F 1.565 (xpansion is performed, subject to the v)-.15 F 1.565 -(alues of the shell v)-.25 F(ariables)-.25 E F5(HISTIGNORE)4.065 E F0 -(and)3.815 E F5(HISTCONTR)108 660 Q(OL)-.27 E/F6 9/Times-Roman@0 SF(.)A +(alues of the shell v)-.25 F(ariables)-.25 E F4(HISTIGNORE)4.065 E F0 +(and)3.815 E F4(HISTCONTR)108 156 Q(OL)-.27 E/F5 9/Times-Roman@0 SF(.)A F0 .082 (On startup, the history is initialized from the \214le named by the v) -108 676.8 R(ariable)-.25 E F5(HISTFILE)2.583 E F0(\(def)2.333 E(ault)-.1 -E F4(~/.bash_history)2.583 E F0(\).)A .315(The \214le named by the v)108 -688.8 R .315(alue of)-.25 F F5(HISTFILE)2.815 E F0 .315 +108 172.8 R(ariable)-.25 E F4(HISTFILE)2.583 E F0(\(def)2.333 E(ault)-.1 +E F3(~/.bash_history)2.583 E F0(\).)A .315(The \214le named by the v)108 +184.8 R .315(alue of)-.25 F F4(HISTFILE)2.815 E F0 .315 (is truncated, if necessary)2.565 F 2.815(,t)-.65 G 2.815(oc)-2.815 G .315(ontain no more than the number of)-2.815 F .658 -(lines speci\214ed by the v)108 700.8 R .658(alue of)-.25 F F5 -(HISTFILESIZE)3.158 E F6(.)A F0(If)5.158 E F1(HISTFILESIZE)3.158 E F0 -.659(is unset, or set to null, a non-numeric)3.158 F -.25(va)108 712.8 S +(lines speci\214ed by the v)108 196.8 R .658(alue of)-.25 F F4 +(HISTFILESIZE)3.158 E F5(.)A F0(If)5.158 E F2(HISTFILESIZE)3.158 E F0 +.659(is unset, or set to null, a non-numeric)3.158 F -.25(va)108 208.8 S .142(lue, or a numeric v).25 F .142 (alue less than zero, the history \214le is not truncated.)-.25 F .142 -(When the history \214le is read, lines)5.142 F(be)108 724.8 Q 3.544 -(ginning with the history comment character follo)-.15 F 3.544 -(wed immediately by a digit are interpreted as)-.25 F(GNU Bash 5.0)72 -768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(53)185.545 E 0 Cg -EP -%%Page: 54 54 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.479 -(timestamps for the follo)108 84 R 1.479(wing history line.)-.25 F 1.478 -(These timestamps are optionally displayed depending on the)6.479 F -.25 -(va)108 96 S 1.138(lue of the).25 F/F1 9/Times-Bold@0 SF(HISTTIMEFORMA) -3.638 E(T)-.855 E F0 -.25(va)3.388 G 3.638(riable. When).25 F 3.638(as) -3.638 G 1.138(hell with history enabled e)-3.638 F 1.139(xits, the last) --.15 F F1($HISTSIZE)3.639 E F0 .506 -(lines are copied from the history list to)108 108 R F1($HISTFILE)3.005 -E/F2 9/Times-Roman@0 SF(.)A F0 .505(If the)5.005 F/F3 10/Times-Bold@0 SF -(histappend)3.005 E F0 .505(shell option is enabled \(see the de-)3.005 -F .599(scription of)108 120 R F3(shopt)3.099 E F0(under)3.099 E F1 .6 -(SHELL B)3.099 F(UIL)-.09 E .6(TIN COMMANDS)-.828 F F0(belo)2.85 E .6 -(w\), the lines are appended to the history \214le,)-.25 F .683 -(otherwise the history \214le is o)108 132 R -.15(ve)-.15 G 3.183 -(rwritten. If).15 F F1(HISTFILE)3.183 E F0 .682 -(is unset, or if the history \214le is unwritable, the his-)2.933 F -1.284(tory is not sa)108 144 R -.15(ve)-.2 G 3.784(d. If).15 F(the)3.784 -E F1(HISTTIMEFORMA)3.784 E(T)-.855 E F0 -.25(va)3.534 G 1.285 -(riable is set, time stamps are written to the history \214le,).25 F -(mark)108 156 Q .51(ed with the history comment character)-.1 F 3.01(,s) --.4 G 3.009(ot)-3.01 G(he)-3.009 E 3.009(ym)-.15 G .509(ay be preserv) --3.009 F .509(ed across shell sessions.)-.15 F .509(This uses the)5.509 -F .384(history comment character to distinguish timestamps from other h\ -istory lines.)108 168 R .385(After sa)5.384 F .385(ving the history)-.2 -F 2.885(,t)-.65 G(he)-2.885 E .381 -(history \214le is truncated to contain no more than)108 180 R F1 -(HISTFILESIZE)2.88 E F0 2.88(lines. If)2.63 F F1(HISTFILESIZE)2.88 E F0 -.38(is unset, or set to)2.63 F(null, a non-numeric v)108 192 Q +(When the history \214le is read, lines)5.142 F(be)108 220.8 Q 1.604 +(ginning with the history comment character follo)-.15 F 1.604 +(wed immediately by a digit are interpreted as time-)-.25 F .151 +(stamps for the follo)108 232.8 R .151(wing history line.)-.25 F .151 +(These timestamps are optionally displayed depending on the v)5.151 F +.15(alue of)-.25 F(the)108 244.8 Q F4(HISTTIMEFORMA)3.558 E(T)-.855 E F0 +-.25(va)3.309 G 3.559(riable. When).25 F 3.559(as)3.559 G 1.059 +(hell with history enabled e)-3.559 F 1.059(xits, the last)-.15 F F4 +($HISTSIZE)3.559 E F0 1.059(lines are)3.309 F .159 +(copied from the history list to)108 256.8 R F4($HISTFILE)2.659 E F5(.)A +F0 .159(If the)4.659 F F2(histappend)2.658 E F0 .158 +(shell option is enabled \(see the description of)2.658 F F2(shopt)108 +268.8 Q F0(under)2.581 E F4 .081(SHELL B)2.581 F(UIL)-.09 E .081 +(TIN COMMANDS)-.828 F F0(belo)2.332 E .082 +(w\), the lines are appended to the history \214le, otherwise the)-.25 F +.197(history \214le is o)108 280.8 R -.15(ve)-.15 G 2.697(rwritten. If) +.15 F F4(HISTFILE)2.697 E F0 .196(is unset, or if the history \214le is\ + unwritable, the history is not sa)2.447 F -.15(ve)-.2 G(d.).15 E .583 +(If the)108 292.8 R F4(HISTTIMEFORMA)3.083 E(T)-.855 E F0 -.25(va)2.834 +G .584 +(riable is set, time stamps are written to the history \214le, mark).25 +F .584(ed with the his-)-.1 F 1.148(tory comment character)108 304.8 R +3.648(,s)-.4 G 3.648(ot)-3.648 G(he)-3.648 E 3.648(ym)-.15 G 1.147 +(ay be preserv)-3.648 F 1.147(ed across shell sessions.)-.15 F 1.147 +(This uses the history comment)6.147 F 1.376 +(character to distinguish timestamps from other history lines.)108 316.8 +R 1.377(After sa)6.377 F 1.377(ving the history)-.2 F 3.877(,t)-.65 G +1.377(he history \214le is)-3.877 F .757 +(truncated to contain no more than)108 328.8 R F4(HISTFILESIZE)3.257 E +F0 3.257(lines. If)3.007 F F4(HISTFILESIZE)3.257 E F0 .757 +(is unset, or set to null, a non-)3.007 F(numeric v)108 340.8 Q (alue, or a numeric v)-.25 E (alue less than zero, the history \214le is not truncated.)-.25 E .298 -(The b)108 208.8 R .298(uiltin command)-.2 F F3(fc)2.798 E F0(\(see) -2.798 E F1 .298(SHELL B)2.798 F(UIL)-.09 E .298(TIN COMMANDS)-.828 F F0 +(The b)108 357.6 R .298(uiltin command)-.2 F F2(fc)2.798 E F0(\(see) +2.798 E F4 .298(SHELL B)2.798 F(UIL)-.09 E .298(TIN COMMANDS)-.828 F F0 (belo)2.549 E .299(w\) may be used to list or edit and re-e)-.25 F -.15 -(xe)-.15 G(-).15 E .472(cute a portion of the history list.)108 220.8 R -(The)5.472 E F3(history)2.972 E F0 -.2(bu)2.972 G .471 +(xe)-.15 G(-).15 E .472(cute a portion of the history list.)108 369.6 R +(The)5.472 E F2(history)2.972 E F0 -.2(bu)2.972 G .471 (iltin may be used to display or modify the history list and).2 F .001 -(manipulate the history \214le.)108 232.8 R .001 +(manipulate the history \214le.)108 381.6 R .001 (When using command-line editing, search commands are a)5.001 F -.25(va) --.2 G .002(ilable in each edit-).25 F(ing mode that pro)108 244.8 Q -(vide access to the history list.)-.15 E 1.486(The shell allo)108 261.6 +-.2 G .002(ilable in each edit-).25 F(ing mode that pro)108 393.6 Q +(vide access to the history list.)-.15 E 1.486(The shell allo)108 410.4 R 1.486(ws control o)-.25 F -.15(ve)-.15 G 3.986(rw).15 G 1.486 (hich commands are sa)-3.986 F -.15(ve)-.2 G 3.986(do).15 G 3.986(nt) --3.986 G 1.486(he history list.)-3.986 F(The)6.485 E F1(HISTCONTR)3.985 -E(OL)-.27 E F0(and)3.735 E F1(HISTIGNORE)108 273.6 Q F0 -.25(va)2.707 G +-3.986 G 1.486(he history list.)-3.986 F(The)6.485 E F4(HISTCONTR)3.985 +E(OL)-.27 E F0(and)3.735 E F4(HISTIGNORE)108 422.4 Q F0 -.25(va)2.707 G .457(riables may be set to cause the shell to sa).25 F .758 -.15(ve o) --.2 H .458(nly a subset of the commands entered.).15 F(The)5.458 E F3 -(cmdhist)108 285.6 Q F0 .75 +-.2 H .458(nly a subset of the commands entered.).15 F(The)5.458 E F2 +(cmdhist)108 434.4 Q F0 .75 (shell option, if enabled, causes the shell to attempt to sa)3.25 F 1.05 -.15(ve e)-.2 H .75(ach line of a multi-line command in).15 F 1.077 -(the same history entry)108 297.6 R 3.577(,a)-.65 G 1.077 +(the same history entry)108 446.4 R 3.577(,a)-.65 G 1.077 (dding semicolons where necessary to preserv)-3.577 F 3.577(es)-.15 G -1.077(yntactic correctness.)-3.577 F(The)6.077 E F3(lithist)3.577 E F0 -.374(shell option causes the shell to sa)108 309.6 R .674 -.15(ve t)-.2 +1.077(yntactic correctness.)-3.577 F(The)6.077 E F2(lithist)3.577 E F0 +.374(shell option causes the shell to sa)108 458.4 R .674 -.15(ve t)-.2 H .374(he command with embedded ne).15 F .373 (wlines instead of semicolons.)-.25 F .373(See the)5.373 F .318 -(description of the)108 321.6 R F3(shopt)2.818 E F0 -.2(bu)2.818 G .318 -(iltin belo).2 F 2.818(wu)-.25 G(nder)-2.818 E F1 .318(SHELL B)2.818 F +(description of the)108 470.4 R F2(shopt)2.818 E F0 -.2(bu)2.818 G .318 +(iltin belo).2 F 2.818(wu)-.25 G(nder)-2.818 E F4 .318(SHELL B)2.818 F (UIL)-.09 E .318(TIN COMMANDS)-.828 F F0 .319 (for information on setting and)2.568 F(unsetting shell options.)108 -333.6 Q/F4 10.95/Times-Bold@0 SF(HIST)72 350.4 Q(OR)-.197 E 2.738(YE) --.383 G(XP)-2.738 E(ANSION)-.81 E F0 .611 -(The shell supports a history e)108 362.4 R .611 +482.4 Q F1(HIST)72 499.2 Q(OR)-.197 E 2.738(YE)-.383 G(XP)-2.738 E +(ANSION)-.81 E F0 .611(The shell supports a history e)108 511.2 R .611 (xpansion feature that is similar to the history e)-.15 F .61 -(xpansion in)-.15 F F3(csh)3.11 E F0 5.61(.T)C .61(his section)-5.61 F -.87(describes what syntax features are a)108 374.4 R -.25(va)-.2 G 3.371 +(xpansion in)-.15 F F2(csh)3.11 E F0 5.61(.T)C .61(his section)-5.61 F +.87(describes what syntax features are a)108 523.2 R -.25(va)-.2 G 3.371 (ilable. This).25 F .871(feature is enabled by def)3.371 F .871 (ault for interacti)-.1 F 1.171 -.15(ve s)-.25 H .871(hells, and).15 F -.95(can be disabled using the)108 386.4 R F3(+H)3.449 E F0 .949 -(option to the)3.449 F F3(set)3.449 E F0 -.2(bu)3.449 G .949 -(iltin command \(see).2 F F1 .949(SHELL B)3.449 F(UIL)-.09 E .949 -(TIN COMMANDS)-.828 F F0(be-)3.199 E(lo)108 398.4 Q 2.5 +.95(can be disabled using the)108 535.2 R F2(+H)3.449 E F0 .949 +(option to the)3.449 F F2(set)3.449 E F0 -.2(bu)3.449 G .949 +(iltin command \(see).2 F F4 .949(SHELL B)3.449 F(UIL)-.09 E .949 +(TIN COMMANDS)-.828 F F0(be-)3.199 E(lo)108 547.2 Q 2.5 (w\). Non-interacti)-.25 F .3 -.15(ve s)-.25 H (hells do not perform history e).15 E(xpansion by def)-.15 E(ault.)-.1 E -1.305(History e)108 415.2 R 1.305(xpansions introduce w)-.15 F 1.306(or\ -ds from the history list into the input stream, making it easy to repea\ -t)-.1 F .21(commands, insert the ar)108 427.2 R .21(guments to a pre) --.18 F .209 -(vious command into the current input line, or \214x errors in pre)-.25 -F(vious)-.25 E(commands quickly)108 439.2 Q(.)-.65 E 1.163(History e)108 -456 R 1.163(xpansion is performed immediately after a complete line is \ -read, before the shell breaks it into)-.15 F -.1(wo)108 468 S .252 -(rds, and is performed on each line indi).1 F .251 +1.305(History e)108 564 R 1.305(xpansions introduce w)-.15 F 1.306(ords\ + from the history list into the input stream, making it easy to repeat) +-.1 F .21(commands, insert the ar)108 576 R .21(guments to a pre)-.18 F +.209(vious command into the current input line, or \214x errors in pre) +-.25 F(vious)-.25 E(commands quickly)108 588 Q(.)-.65 E 1.163(History e) +108 604.8 R 1.163(xpansion is performed immediately after a complete li\ +ne is read, before the shell breaks it into)-.15 F -.1(wo)108 616.8 S +.252(rds, and is performed on each line indi).1 F .251 (vidually without taking quoting on pre)-.25 F .251 -(vious lines into account.)-.25 F(It)5.251 E(tak)108 480 Q .145 +(vious lines into account.)-.25 F(It)5.251 E(tak)108 628.8 Q .145 (es place in tw)-.1 F 2.645(op)-.1 G 2.646(arts. The)-2.645 F .146(\214\ rst is to determine which line from the history list to use during subs\ titution.)2.646 F .766(The second is to select portions of that line fo\ -r inclusion into the current one.)108 492 R .766 -(The line selected from the)5.766 F .253(history is the)108 504 R/F5 10 -/Times-Italic@0 SF -.15(ev)2.753 G(ent).15 E F0 2.753(,a)C .253 -(nd the portions of that line that are acted upon are)-2.753 F F5(wor) -2.753 E(ds)-.37 E F0 5.253(.V)C(arious)-6.363 E F5(modi\214er)2.754 E(s) +r inclusion into the current one.)108 640.8 R .766 +(The line selected from the)5.766 F .253(history is the)108 652.8 R F3 +-.15(ev)2.753 G(ent).15 E F0 2.753(,a)C .253 +(nd the portions of that line that are acted upon are)-2.753 F F3(wor) +2.753 E(ds)-.37 E F0 5.253(.V)C(arious)-6.363 E F3(modi\214er)2.754 E(s) -.1 E F0 .254(are a)2.754 F -.25(va)-.2 G(il-).25 E .539 -(able to manipulate the selected w)108 516 R 3.039(ords. The)-.1 F .538 -(line is brok)3.038 F .538(en into w)-.1 F .538(ords in the same f)-.1 F -.538(ashion as when reading)-.1 F .572(input, so that se)108 528 R -.15 -(ve)-.25 G(ral).15 E F5(metac)3.072 E(har)-.15 E(acter)-.15 E F0 .572 -(-separated w)B .572(ords surrounded by quotes are considered one w)-.1 -F 3.073(ord. His-)-.1 F .356(tory e)108 540 R .355 +(able to manipulate the selected w)108 664.8 R 3.039(ords. The)-.1 F +.538(line is brok)3.038 F .538(en into w)-.1 F .538(ords in the same f) +-.1 F .538(ashion as when reading)-.1 F .572(input, so that se)108 676.8 +R -.15(ve)-.25 G(ral).15 E F3(metac)3.072 E(har)-.15 E(acter)-.15 E F0 +.572(-separated w)B .572(ords surrounded by quotes are considered one w) +-.1 F 3.073(ord. His-)-.1 F .356(tory e)108 688.8 R .355 (xpansions are introduced by the appearance of the history e)-.15 F .355 -(xpansion character)-.15 F 2.855(,w)-.4 G .355(hich is)-2.855 F F3(!) -3.688 E F0 .355(by def)3.688 F(ault.)-.1 E .79(Only backslash \()108 552 -R F3(\\).833 E F0 3.29(\)a).833 G .79 +(xpansion character)-.15 F 2.855(,w)-.4 G .355(hich is)-2.855 F F2(!) +3.688 E F0 .355(by def)3.688 F(ault.)-.1 E .79(Only backslash \()108 +700.8 R F2(\\).833 E F0 3.29(\)a).833 G .79 (nd single quotes can quote the history e)-3.29 F .79 (xpansion character)-.15 F 3.291(,b)-.4 G .791(ut the history e)-3.491 F (xpansion)-.15 E .789(character is also treated as quoted if it immedia\ -tely precedes the closing double quote in a double-quoted)108 564 R -(string.)108 576 Q(Se)108 592.8 Q -.15(ve)-.25 G .03 -(ral characters inhibit history e).15 F .03 +tely precedes the closing double quote in a double-quoted)108 712.8 R +(string.)108 724.8 Q(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(54) +190.95 E 0 Cg EP +%%Page: 55 55 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(Se)108 84 Q -.15 +(ve)-.25 G .03(ral characters inhibit history e).15 F .03 (xpansion if found immediately follo)-.15 F .03(wing the history e)-.25 -F .03(xpansion character)-.15 F(,)-.4 E -2.15 -.25(ev e)108 604.8 T -3.163(ni).25 G 3.163(fi)-3.163 G 3.162(ti)-3.163 G 3.162(su)-3.162 G -.662(nquoted: space, tab, ne)-3.162 F .662(wline, carriage return, and) --.25 F F3(=)3.162 E F0 5.662(.I)C 3.162(ft)-5.662 G(he)-3.162 E F3 -(extglob)3.162 E F0 .662(shell option is enabled,)3.162 F F3(\()3.162 E -F0(will also inhibit e)108 616.8 Q(xpansion.)-.15 E(Se)108 633.6 Q -.15 -(ve)-.25 G .109(ral shell options settable with the).15 F F3(shopt)2.609 -E F0 -.2(bu)2.609 G .11(iltin may be used to tailor the beha).2 F .11 -(vior of history e)-.2 F(xpansion.)-.15 E .232(If the)108 645.6 R F3 -(histv)2.732 E(erify)-.1 E F0 .231 -(shell option is enabled \(see the description of the)2.731 F F3(shopt) -2.731 E F0 -.2(bu)2.731 G .231(iltin belo).2 F .231(w\), and)-.25 F F3 --.18(re)2.731 G(adline).18 E F0 .231(is be-)2.731 F .449(ing used, hist\ -ory substitutions are not immediately passed to the shell parser)108 -657.6 R 5.449(.I)-.55 G .449(nstead, the e)-5.449 F .449 -(xpanded line is)-.15 F 2.228(reloaded into the)108 669.6 R F3 -.18(re) +F .03(xpansion character)-.15 F(,)-.4 E -2.15 -.25(ev e)108 96 T 3.163 +(ni).25 G 3.163(fi)-3.163 G 3.162(ti)-3.163 G 3.162(su)-3.162 G .662 +(nquoted: space, tab, ne)-3.162 F .662(wline, carriage return, and)-.25 +F/F1 10/Times-Bold@0 SF(=)3.162 E F0 5.662(.I)C 3.162(ft)-5.662 G(he) +-3.162 E F1(extglob)3.162 E F0 .662(shell option is enabled,)3.162 F F1 +(\()3.162 E F0(will also inhibit e)108 108 Q(xpansion.)-.15 E(Se)108 +124.8 Q -.15(ve)-.25 G .109(ral shell options settable with the).15 F F1 +(shopt)2.609 E F0 -.2(bu)2.609 G .11 +(iltin may be used to tailor the beha).2 F .11(vior of history e)-.2 F +(xpansion.)-.15 E .232(If the)108 136.8 R F1(histv)2.732 E(erify)-.1 E +F0 .231(shell option is enabled \(see the description of the)2.731 F F1 +(shopt)2.731 E F0 -.2(bu)2.731 G .231(iltin belo).2 F .231(w\), and)-.25 +F F1 -.18(re)2.731 G(adline).18 E F0 .231(is be-)2.731 F .449(ing used,\ + history substitutions are not immediately passed to the shell parser) +108 148.8 R 5.449(.I)-.55 G .449(nstead, the e)-5.449 F .449 +(xpanded line is)-.15 F 2.228(reloaded into the)108 160.8 R F1 -.18(re) 4.728 G(adline).18 E F0 2.228(editing b)4.728 F(uf)-.2 E 2.228 -(fer for further modi\214cation.)-.25 F(If)7.228 E F3 -.18(re)4.728 G -(adline).18 E F0 2.228(is being used, and the)4.728 F F3(histr)108 681.6 +(fer for further modi\214cation.)-.25 F(If)7.228 E F1 -.18(re)4.728 G +(adline).18 E F0 2.228(is being used, and the)4.728 F F1(histr)108 172.8 Q(eedit)-.18 E F0 1.202(shell option is enabled, a f)3.702 F 1.202 -(ailed history substitution will be reloaded into the)-.1 F F3 -.18(re) -3.702 G(adline).18 E F0(editing)3.702 E -.2(bu)108 693.6 S -.25(ff).2 G -.304(er for correction.).25 F(The)5.304 E F32.804 E F0 .304 -(option to the)2.804 F F3(history)2.804 E F0 -.2(bu)2.804 G .303 +(ailed history substitution will be reloaded into the)-.1 F F1 -.18(re) +3.702 G(adline).18 E F0(editing)3.702 E -.2(bu)108 184.8 S -.25(ff).2 G +.304(er for correction.).25 F(The)5.304 E F12.804 E F0 .304 +(option to the)2.804 F F1(history)2.804 E F0 -.2(bu)2.804 G .303 (iltin command may be used to see what a history e).2 F(x-)-.15 E .52 -(pansion will do before using it.)108 705.6 R(The)5.52 E F33.02 E -F0 .52(option to the)3.02 F F3(history)3.02 E F0 -.2(bu)3.02 G .52 +(pansion will do before using it.)108 196.8 R(The)5.52 E F13.02 E +F0 .52(option to the)3.02 F F1(history)3.02 E F0 -.2(bu)3.02 G .52 (iltin may be used to add commands to the).2 F -(end of the history list without actually e)108 717.6 Q -.15(xe)-.15 G +(end of the history list without actually e)108 208.8 Q -.15(xe)-.15 G (cuting them, so that the).15 E 2.5(ya)-.15 G(re a)-2.5 E -.25(va)-.2 G -(ilable for subsequent recall.).25 E(GNU Bash 5.0)72 768 Q(2019 No) -136.385 E -.15(ve)-.15 G(mber 26).15 E(54)185.545 E 0 Cg EP -%%Page: 55 55 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.109 -(The shell allo)108 84 R 1.108(ws control of the v)-.25 F 1.108 +(ilable for subsequent recall.).25 E 1.109(The shell allo)108 225.6 R +1.108(ws control of the v)-.25 F 1.108 (arious characters used by the history e)-.25 F 1.108 -(xpansion mechanism \(see the de-)-.15 F .162(scription of)108 96 R/F1 -10/Times-Bold@0 SF(histchars)2.662 E F0(abo)2.662 E .462 -.15(ve u)-.15 -H(nder).15 E F1 .163(Shell V)2.662 F(ariables)-.92 E F0 2.663(\). The)B -.163(shell uses the history comment character to mark)2.663 F -(history timestamps when writing the history \214le.)108 108 Q F1(Ev)87 -124.8 Q(ent Designators)-.1 E F0 .205(An e)108 136.8 R -.15(ve)-.25 G +(xpansion mechanism \(see the de-)-.15 F .162(scription of)108 237.6 R +F1(histchars)2.662 E F0(abo)2.662 E .462 -.15(ve u)-.15 H(nder).15 E F1 +.163(Shell V)2.662 F(ariables)-.92 E F0 2.663(\). The)B .163 +(shell uses the history comment character to mark)2.663 F +(history timestamps when writing the history \214le.)108 249.6 Q F1(Ev) +87 266.4 Q(ent Designators)-.1 E F0 .205(An e)108 278.4 R -.15(ve)-.25 G .204(nt designator is a reference to a command line entry in the histor\ y list.).15 F .204(Unless the reference is abso-)5.204 F(lute, e)108 -148.8 Q -.15(ve)-.25 G(nts are relati).15 E .3 -.15(ve t)-.25 H 2.5(ot) -.15 G(he current position in the history list.)-2.5 E F1(!)108 165.6 Q -F0 1.607(Start a history substitution, e)144 165.6 R 1.607 +290.4 Q -.15(ve)-.25 G(nts are relati).15 E .3 -.15(ve t)-.25 H 2.5(ot) +.15 G(he current position in the history list.)-2.5 E F1(!)108 307.2 Q +F0 1.607(Start a history substitution, e)144 307.2 R 1.607 (xcept when follo)-.15 F 1.607(wed by a)-.25 F F1(blank)4.107 E F0 4.107 (,n)C -.25(ew)-4.107 G 1.608(line, carriage return, = or \().25 F -(\(when the)144 177.6 Q F1(extglob)2.5 E F0 +(\(when the)144 319.2 Q F1(extglob)2.5 E F0 (shell option is enabled using the)2.5 E F1(shopt)2.5 E F0 -.2(bu)2.5 G -(iltin\).).2 E F1(!)108 189.6 Q/F2 10/Times-Italic@0 SF(n)A F0 -(Refer to command line)144 189.6 Q F2(n)2.86 E F0(.).24 E F1<21ad>108 -201.6 Q F2(n)A F0(Refer to the current command minus)144 201.6 Q F2(n) -2.86 E F0(.).24 E F1(!!)108 213.6 Q F0(Refer to the pre)144 213.6 Q +(iltin\).).2 E F1(!)108 331.2 Q/F2 10/Times-Italic@0 SF(n)A F0 +(Refer to command line)144 331.2 Q F2(n)2.86 E F0(.).24 E F1<21ad>108 +343.2 Q F2(n)A F0(Refer to the current command minus)144 343.2 Q F2(n) +2.86 E F0(.).24 E F1(!!)108 355.2 Q F0(Refer to the pre)144 355.2 Q (vious command.)-.25 E(This is a synon)5 E(ym for `!\2551'.)-.15 E F1(!) -108 225.6 Q F2(string)A F0 .865(Refer to the most recent command preced\ -ing the current position in the history list starting with)144 225.6 R -F2(string)144.34 237.6 Q F0(.).22 E F1(!?)108 249.6 Q F2(string)A F1 +108 367.2 Q F2(string)A F0 .865(Refer to the most recent command preced\ +ing the current position in the history list starting with)144 367.2 R +F2(string)144.34 379.2 Q F0(.).22 E F1(!?)108 391.2 Q F2(string)A F1 ([?])A F0 1.503(Refer to the most recent command preceding the current \ -position in the history list containing)144 261.6 R F2(string)144.34 -273.6 Q F0 5.497(.T).22 G .497(he trailing)-5.497 F F1(?)2.997 E F0 .497 +position in the history list containing)144 403.2 R F2(string)144.34 +415.2 Q F0 5.497(.T).22 G .497(he trailing)-5.497 F F1(?)2.997 E F0 .497 (may be omitted if)2.997 F F2(string)3.337 E F0 .496(is follo)3.216 F .496(wed immediately by a ne)-.25 F 2.996(wline. If)-.25 F F2(string) 2.996 E F0(is)2.996 E .39(missing, the string from the most recent sear\ -ch is used; it is an error if there is no pre)144 285.6 R .391 -(vious search)-.25 F(string.)144 297.6 Q/F3 12/Times-Bold@0 SF(^)108 -314.6 Q F2(string1)-5 I F3(^)5 I F2(string2)-5 I F3(^)5 I F0 .753 -(Quick substitution.)144 321.6 R .753(Repeat the pre)5.753 F .753 +ch is used; it is an error if there is no pre)144 427.2 R .391 +(vious search)-.25 F(string.)144 439.2 Q/F3 12/Times-Bold@0 SF(^)108 +456.2 Q F2(string1)-5 I F3(^)5 I F2(string2)-5 I F3(^)5 I F0 .753 +(Quick substitution.)144 463.2 R .753(Repeat the pre)5.753 F .753 (vious command, replacing)-.25 F F2(string1)3.593 E F0(with)3.253 E F2 (string2)3.592 E F0 5.752(.E).02 G(qui)-5.752 E -.25(va)-.25 G .752 -(lent to).25 F -.74(``)144 333.6 S(!!:s).74 E/F4 12/Times-Roman@0 SF(^)5 +(lent to).25 F -.74(``)144 475.2 S(!!:s).74 E/F4 12/Times-Roman@0 SF(^)5 I F2(string1)-5 I F4(^)5 I F2(string2)-5 I F4(^)5 I F0 1.48 -.74('' \() -5 L(see).74 E F1(Modi\214ers)2.5 E F0(belo)2.5 E(w\).)-.25 E F1(!#)108 -345.6 Q F0(The entire command line typed so f)144 345.6 Q(ar)-.1 E(.) --.55 E F1 -.75(Wo)87 362.4 S(rd Designators).75 E F0 -.8(Wo)108 374.4 S +487.2 Q F0(The entire command line typed so f)144 487.2 Q(ar)-.1 E(.) +-.55 E F1 -.75(Wo)87 504 S(rd Designators).75 E F0 -.8(Wo)108 516 S 1.313(rd designators are used to select desired w).8 F 1.314 (ords from the e)-.1 F -.15(ve)-.25 G 3.814(nt. A).15 F F1(:)3.814 E F0 1.314(separates the e)3.814 F -.15(ve)-.25 G 1.314(nt speci\214cation) -.15 F .53(from the w)108 386.4 R .529(ord designator)-.1 F 5.529(.I)-.55 -G 3.029(tm)-5.529 G .529(ay be omitted if the w)-3.029 F .529 +.15 F .53(from the w)108 528 R .529(ord designator)-.1 F 5.529(.I)-.55 G +3.029(tm)-5.529 G .529(ay be omitted if the w)-3.029 F .529 (ord designator be)-.1 F .529(gins with a)-.15 F F1(^)3.029 E F0(,)A F1 ($)3.029 E F0(,)A F1(*)3.029 E F0(,)A F13.029 E F0 3.029(,o)C(r) -3.029 E F1(%)3.029 E F0 5.529(.W)C(ords)-6.329 E .515 -(are numbered from the be)108 398.4 R .516 +(are numbered from the be)108 540 R .516 (ginning of the line, with the \214rst w)-.15 F .516 (ord being denoted by 0 \(zero\).)-.1 F -.8(Wo)5.516 G .516(rds are in-) -.8 F(serted into the current line separated by single spaces.)108 410.4 -Q F1 2.5(0\()108 427.2 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 439.2 -Q 2.5(ord. F)-.1 F(or the shell, this is the command w)-.15 E(ord.)-.1 E -F2(n)108.36 451.2 Q F0(The)144 451.2 Q F2(n)2.5 E F0(th w)A(ord.)-.1 E -F1(^)108 463.2 Q F0(The \214rst ar)144 463.2 Q 2.5(gument. That)-.18 F -(is, w)2.5 E(ord 1.)-.1 E F1($)108 475.2 Q F0 .064(The last w)144 475.2 +.8 F(serted into the current line separated by single spaces.)108 552 Q +F1 2.5(0\()108 568.8 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 580.8 Q +2.5(ord. F)-.1 F(or the shell, this is the command w)-.15 E(ord.)-.1 E +F2(n)108.36 592.8 Q F0(The)144 592.8 Q F2(n)2.5 E F0(th w)A(ord.)-.1 E +F1(^)108 604.8 Q F0(The \214rst ar)144 604.8 Q 2.5(gument. That)-.18 F +(is, w)2.5 E(ord 1.)-.1 E F1($)108 616.8 Q F0 .064(The last w)144 616.8 R 2.564(ord. This)-.1 F .064(is usually the last ar)2.564 F .064 (gument, b)-.18 F .064(ut will e)-.2 F .064(xpand to the zeroth w)-.15 F -.063(ord if there is only)-.1 F(one w)144 487.2 Q(ord in the line.)-.1 E -F1(%)108 499.2 Q F0 1.419(The \214rst w)144 499.2 R 1.419 +.063(ord if there is only)-.1 F(one w)144 628.8 Q(ord in the line.)-.1 E +F1(%)108 640.8 Q F0 1.419(The \214rst w)144 640.8 R 1.419 (ord matched by the most recent `?)-.1 F F2(string)A F0 1.42 (?' search, if the search string be)B 1.42(gins with a)-.15 F -(character that is part of a w)144 511.2 Q(ord.)-.1 E F2(x)108.77 523.2 -Q F1A F2(y)A F0 2.5(Ar)144 523.2 S(ange of w)-2.5 E(ords; `\255)-.1 +(character that is part of a w)144 652.8 Q(ord.)-.1 E F2(x)108.77 664.8 +Q F1A F2(y)A F0 2.5(Ar)144 664.8 S(ange of w)-2.5 E(ords; `\255)-.1 E F2(y)A F0 2.5('a)C(bbre)-2.5 E(viates `0\255)-.25 E F2(y)A F0('.)A F1 -(*)108 535.2 Q F0 .316(All of the w)144 535.2 R .316(ords b)-.1 F .316 +(*)108 676.8 Q F0 .316(All of the w)144 676.8 R .316(ords b)-.1 F .316 (ut the zeroth.)-.2 F .315(This is a synon)5.315 F .315(ym for `)-.15 F F2(1\255$)A F0 2.815('. It)B .315(is not an error to use)2.815 F F1(*) -2.815 E F0 .315(if there is)2.815 F(just one w)144 547.2 Q(ord in the e) +2.815 E F0 .315(if there is)2.815 F(just one w)144 688.8 Q(ord in the e) -.1 E -.15(ve)-.25 G(nt; the empty string is returned in that case.).15 -E F1(x*)108 559.2 Q F0(Abbre)144 559.2 Q(viates)-.25 E F2(x\255$)2.5 E -F0(.)A F1<78ad>108 571.2 Q F0(Abbre)144 571.2 Q(viates)-.25 E F2(x\255$) +E F1(x*)108 700.8 Q F0(Abbre)144 700.8 Q(viates)-.25 E F2(x\255$)2.5 E +F0(.)A F1<78ad>108 712.8 Q F0(Abbre)144 712.8 Q(viates)-.25 E F2(x\255$) 2.5 E F0(lik)2.5 E(e)-.1 E F1(x*)2.5 E F0 2.5(,b)C(ut omits the last w) -2.7 E 2.5(ord. If)-.1 F F1(x)2.5 E F0(is missing, it def)2.5 E -(aults to 0.)-.1 E(If a w)108 588 Q +(aults to 0.)-.1 E(If a w)108 729.6 Q (ord designator is supplied without an e)-.1 E -.15(ve)-.25 G (nt speci\214cation, the pre).15 E(vious command is used as the e)-.25 E --.15(ve)-.25 G(nt.).15 E F1(Modi\214ers)87 604.8 Q F0 .183 -(After the optional w)108 616.8 R .183(ord designator)-.1 F 2.683(,t)-.4 -G .184(here may appear a sequence of one or more of the follo)-2.683 F -.184(wing modi\214ers,)-.25 F(each preceded by a `:'.)108 628.8 Q +-.15(ve)-.25 G(nt.).15 E(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E +(55)190.95 E 0 Cg EP +%%Page: 56 56 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(Modi\214ers)87 84 Q F0 .183(After the optional w)108 96 R .183 +(ord designator)-.1 F 2.683(,t)-.4 G .184 +(here may appear a sequence of one or more of the follo)-2.683 F .184 +(wing modi\214ers,)-.25 F(each preceded by a `:'.)108 108 Q (These modify)5 E 2.5(,o)-.65 G 2.5(re)-2.5 G(dit, the w)-2.5 E (ord or w)-.1 E(ords selected from the history e)-.1 E -.15(ve)-.25 G -(nt.).15 E F1(h)108 645.6 Q F0(Remo)144 645.6 Q .3 -.15(ve a t)-.15 H +(nt.).15 E F1(h)108 124.8 Q F0(Remo)144 124.8 Q .3 -.15(ve a t)-.15 H (railing \214lename component, lea).15 E(ving only the head.)-.2 E F1(t) -108 657.6 Q F0(Remo)144 657.6 Q .3 -.15(ve a)-.15 H +108 136.8 Q F0(Remo)144 136.8 Q .3 -.15(ve a)-.15 H (ll leading \214lename components, lea).15 E(ving the tail.)-.2 E F1(r) -108 669.6 Q F0(Remo)144 669.6 Q .3 -.15(ve a t)-.15 H(railing suf).15 E -(\214x of the form)-.25 E F2(.xxx)2.5 E F0 2.5(,l)C(ea)-2.5 E -(ving the basename.)-.2 E F1(e)108 681.6 Q F0(Remo)144 681.6 Q .3 -.15 -(ve a)-.15 H(ll b).15 E(ut the trailing suf)-.2 E(\214x.)-.25 E F1(p)108 -693.6 Q F0(Print the ne)144 693.6 Q 2.5(wc)-.25 G(ommand b)-2.5 E -(ut do not e)-.2 E -.15(xe)-.15 G(cute it.).15 E F1(q)108 705.6 Q F0 -(Quote the substituted w)144 705.6 Q -(ords, escaping further substitutions.)-.1 E F1(x)108 717.6 Q F0 .386 -(Quote the substituted w)144 717.6 R .386(ords as with)-.1 F F1(q)2.886 +108 148.8 Q F0(Remo)144 148.8 Q .3 -.15(ve a t)-.15 H(railing suf).15 E +(\214x of the form)-.25 E/F2 10/Times-Italic@0 SF(.xxx)2.5 E F0 2.5(,l)C +(ea)-2.5 E(ving the basename.)-.2 E F1(e)108 160.8 Q F0(Remo)144 160.8 Q +.3 -.15(ve a)-.15 H(ll b).15 E(ut the trailing suf)-.2 E(\214x.)-.25 E +F1(p)108 172.8 Q F0(Print the ne)144 172.8 Q 2.5(wc)-.25 G(ommand b)-2.5 +E(ut do not e)-.2 E -.15(xe)-.15 G(cute it.).15 E F1(q)108 184.8 Q F0 +(Quote the substituted w)144 184.8 Q +(ords, escaping further substitutions.)-.1 E F1(x)108 196.8 Q F0 .386 +(Quote the substituted w)144 196.8 R .386(ords as with)-.1 F F1(q)2.886 E F0 2.886(,b)C .386(ut break into w)-3.086 F .385(ords at)-.1 F F1 (blanks)2.885 E F0 .385(and ne)2.885 F 2.885(wlines. The)-.25 F F1(q) 2.885 E F0(and)2.885 E F1(x)2.885 E F0(modi\214ers are mutually e)144 -729.6 Q(xclusi)-.15 E -.15(ve)-.25 G 2.5(;t).15 G -(he last one supplied is used.)-2.5 E(GNU Bash 5.0)72 768 Q(2019 No) -136.385 E -.15(ve)-.15 G(mber 26).15 E(55)185.545 E 0 Cg EP -%%Page: 56 56 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(s/)108 84 Q/F2 10/Times-Italic@0 SF(old)A F1(/)A F2(ne)A(w)-.15 E F1 -(/)A F0(Substitute)144 96 Q F2(ne)3.328 E(w)-.15 E F0 .469 -(for the \214rst occurrence of)3.278 F F2(old)3.199 E F0 .469(in the e) -3.739 F -.15(ve)-.25 G .469(nt line.).15 F(An)5.469 E 2.969(yc)-.15 G -.469(haracter may be used as the)-2.969 F .954(delimiter in place of /.) -144 108 R .953 +208.8 Q(xclusi)-.15 E -.15(ve)-.25 G 2.5(;t).15 G +(he last one supplied is used.)-2.5 E F1(s/)108 220.8 Q F2(old)A F1(/)A +F2(ne)A(w)-.15 E F1(/)A F0(Substitute)144 232.8 Q F2(ne)3.328 E(w)-.15 E +F0 .469(for the \214rst occurrence of)3.278 F F2(old)3.199 E F0 .469 +(in the e)3.739 F -.15(ve)-.25 G .469(nt line.).15 F(An)5.469 E 2.969 +(yc)-.15 G .469(haracter may be used as the)-2.969 F .954 +(delimiter in place of /.)144 244.8 R .953 (The \214nal delimiter is optional if it is the last character of the e) 5.953 F -.15(ve)-.25 G .953(nt line.).15 F .131 -(The delimiter may be quoted in)144 120 R F2(old)2.861 E F0(and)3.401 E -F2(ne)2.991 E(w)-.15 E F0 .131(with a single backslash.)2.941 F .131 +(The delimiter may be quoted in)144 256.8 R F2(old)2.861 E F0(and)3.401 +E F2(ne)2.991 E(w)-.15 E F0 .131(with a single backslash.)2.941 F .131 (If & appears in)5.131 F F2(ne)2.991 E(w)-.15 E F0 2.631(,i).31 G 2.631 -(ti)-2.631 G 2.631(sr)-2.631 G(e-)-2.631 E .62(placed by)144 132 R F2 +(ti)-2.631 G 2.631(sr)-2.631 G(e-)-2.631 E .62(placed by)144 268.8 R F2 (old)3.349 E F0 5.619(.A).77 G .619(single backslash will quote the &.) -2.5 F(If)5.619 E F2(old)3.349 E F0 .619(is null, it is set to the last) -3.889 F F2(old)3.349 E F0(substi-)3.889 E .486(tuted, or)144 144 R 2.986 -(,i)-.4 G 2.986(fn)-2.986 G 2.986(op)-2.986 G(re)-2.986 E .486 +3.889 F F2(old)3.349 E F0(substi-)3.889 E .486(tuted, or)144 280.8 R +2.986(,i)-.4 G 2.986(fn)-2.986 G 2.986(op)-2.986 G(re)-2.986 E .486 (vious history substitutions took place, the last)-.25 F F2(string)3.326 E F0 .487(in a)3.206 F F1(!?)2.987 E F2(string)A F1([?])A F0 2.987 -(search. If)5.487 F F2(ne)144.36 156 Q(w)-.15 E F0 +(search. If)5.487 F F2(ne)144.36 292.8 Q(w)-.15 E F0 (is null, each matching)2.81 E F2(old)2.73 E F0(is deleted.)3.27 E F1(&) -108 168 Q F0(Repeat the pre)144 168 Q(vious substitution.)-.25 E F1(g) -108 180 Q F0 .398(Cause changes to be applied o)144 180 R -.15(ve)-.15 G -2.898(rt).15 G .398(he entire e)-2.898 F -.15(ve)-.25 G .398(nt line.) -.15 F .397(This is used in conjunction with `)5.398 F F1(:s)A F0 2.897 -('\()C(e.g.,)-2.897 E(`)144 192 Q F1(:gs/)A F2(old)A F1(/)A F2(ne)A(w) --.15 E F1(/)A F0 .35('\) or `)B F1(:&)A F0 2.85('. If)B .35(used with `) -2.85 F F1(:s)A F0 .35(', an)B 2.85(yd)-.15 G .351 +108 304.8 Q F0(Repeat the pre)144 304.8 Q(vious substitution.)-.25 E F1 +(g)108 316.8 Q F0 .398(Cause changes to be applied o)144 316.8 R -.15 +(ve)-.15 G 2.898(rt).15 G .398(he entire e)-2.898 F -.15(ve)-.25 G .398 +(nt line.).15 F .397(This is used in conjunction with `)5.398 F F1(:s)A +F0 2.897('\()C(e.g.,)-2.897 E(`)144 328.8 Q F1(:gs/)A F2(old)A F1(/)A F2 +(ne)A(w)-.15 E F1(/)A F0 .35('\) or `)B F1(:&)A F0 2.85('. If)B .35 +(used with `)2.85 F F1(:s)A F0 .35(', an)B 2.85(yd)-.15 G .351 (elimiter can be used in place of /, and the \214nal de-)-2.85 F -(limiter is optional if it is the last character of the e)144 204 Q -.15 -(ve)-.25 G(nt line.).15 E(An)5 E F1(a)2.5 E F0(may be used as a synon) -2.5 E(ym for)-.15 E F1(g)2.5 E F0(.)A F1(G)108 216 Q F0(Apply the follo) -144 216 Q(wing `)-.25 E F1(s)A F0 2.5('o)C 2.5(r`)-2.5 G F1(&)-2.5 E F0 -2.5('m)C(odi\214er once to each w)-2.5 E(ord in the e)-.1 E -.15(ve)-.25 -G(nt line.).15 E/F3 10.95/Times-Bold@0 SF(SHELL B)72 232.8 Q(UIL)-.11 E -(TIN COMMANDS)-1.007 E F0 .063(Unless otherwise noted, each b)108 244.8 -R .062(uiltin command documented in this section as accepting options p\ -receded by)-.2 F F1108 256.8 Q F0(accepts)3.077 E F13.077 E F0 -.577(to signify the end of the options.)3.077 F(The)5.577 E F1(:)3.077 E -F0(,)A F1(true)3.077 E F0(,)A F1(false)3.077 E F0 3.077(,a)C(nd)-3.077 E +(limiter is optional if it is the last character of the e)144 340.8 Q +-.15(ve)-.25 G(nt line.).15 E(An)5 E F1(a)2.5 E F0 +(may be used as a synon)2.5 E(ym for)-.15 E F1(g)2.5 E F0(.)A F1(G)108 +352.8 Q F0(Apply the follo)144 352.8 Q(wing `)-.25 E F1(s)A F0 2.5('o)C +2.5(r`)-2.5 G F1(&)-2.5 E F0 2.5('m)C(odi\214er once to each w)-2.5 E +(ord in the e)-.1 E -.15(ve)-.25 G(nt line.).15 E/F3 10.95/Times-Bold@0 +SF(SHELL B)72 369.6 Q(UIL)-.11 E(TIN COMMANDS)-1.007 E F0 .063 +(Unless otherwise noted, each b)108 381.6 R .062(uiltin command documen\ +ted in this section as accepting options preceded by)-.2 F F1108 +393.6 Q F0(accepts)3.077 E F13.077 E F0 .577 +(to signify the end of the options.)3.077 F(The)5.577 E F1(:)3.077 E F0 +(,)A F1(true)3.077 E F0(,)A F1(false)3.077 E F0 3.077(,a)C(nd)-3.077 E F1(test)3.077 E F0(/)A F1([)A F0 -.2(bu)3.077 G .577 -(iltins do not accept options).2 F .462(and do not treat)108 268.8 R F1 +(iltins do not accept options).2 F .462(and do not treat)108 405.6 R F1 2.961 E F0(specially)2.961 E 5.461(.T)-.65 G(he)-5.461 E F1(exit) 2.961 E F0(,)A F1(logout)2.961 E F0(,)A F1 -.18(re)2.961 G(tur).18 E(n) -.15 E F0(,)A F1(br)2.961 E(eak)-.18 E F0(,)A F1(continue)2.961 E F0(,)A F1(let)2.961 E F0 2.961(,a)C(nd)-2.961 E F1(shift)2.961 E F0 -.2(bu) -2.961 G .461(iltins accept and).2 F .26(process ar)108 280.8 R .26 +2.961 G .461(iltins accept and).2 F .26(process ar)108 417.6 R .26 (guments be)-.18 F .26(ginning with)-.15 F F12.76 E F0 .261 (without requiring)2.76 F F12.761 E F0 5.261(.O)C .261(ther b) -5.261 F .261(uiltins that accept ar)-.2 F .261(guments b)-.18 F .261 (ut are not)-.2 F 1.154(speci\214ed as accepting options interpret ar) -108 292.8 R 1.154(guments be)-.18 F 1.154(ginning with)-.15 F F1 +108 429.6 R 1.154(guments be)-.18 F 1.154(ginning with)-.15 F F1 3.654 E F0 1.154(as in)3.654 F -.25(va)-.4 G 1.154 (lid options and require).25 F F13.654 E F0(to)3.654 E(pre)108 -304.8 Q -.15(ve)-.25 G(nt this interpretation.).15 E F1(:)108 322.8 Q F0 -([)2.5 E F2(ar)A(guments)-.37 E F0(])A .451(No ef)144 334.8 R .451 +441.6 Q -.15(ve)-.25 G(nt this interpretation.).15 E F1(:)108 459.6 Q F0 +([)2.5 E F2(ar)A(guments)-.37 E F0(])A .451(No ef)144 471.6 R .451 (fect; the command does nothing be)-.25 F .452(yond e)-.15 F(xpanding) -.15 E F2(ar)3.282 E(guments)-.37 E F0 .452(and performing an)3.222 F -2.952(ys)-.15 G(peci\214ed)-2.952 E 2.5(redirections. The)144 346.8 R -(return status is zero.)2.5 E F1(.)110.5 363.6 Q F2(\214lename)6.666 E -F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A F1(sour)108 375.6 Q(ce)-.18 E +2.952(ys)-.15 G(peci\214ed)-2.952 E 2.5(redirections. The)144 483.6 R +(return status is zero.)2.5 E F1(.)110.5 500.4 Q F2(\214lename)6.666 E +F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A F1(sour)108 512.4 Q(ce)-.18 E F2(\214lename)2.5 E F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A 1.02 -(Read and e)144 387.6 R -.15(xe)-.15 G 1.02(cute commands from).15 F F2 +(Read and e)144 524.4 R -.15(xe)-.15 G 1.02(cute commands from).15 F F2 (\214lename)5.43 E F0 1.02(in the current shell en)3.7 F 1.02 (vironment and return the e)-.4 F(xit)-.15 E 1.33 -(status of the last command e)144 399.6 R -.15(xe)-.15 G 1.331 +(status of the last command e)144 536.4 R -.15(xe)-.15 G 1.331 (cuted from).15 F F2(\214lename)5.741 E F0 6.331(.I).18 G(f)-6.331 E F2 (\214lename)5.741 E F0 1.331(does not contain a slash, \214le-)4.011 F -.489(names in)144 411.6 R/F4 9/Times-Bold@0 SF -.666(PA)2.989 G(TH)-.189 +.489(names in)144 548.4 R/F4 9/Times-Bold@0 SF -.666(PA)2.989 G(TH)-.189 E F0 .489(are used to \214nd the directory containing)2.739 F F2 (\214lename)4.899 E F0 5.488(.T).18 G .488(he \214le searched for in) --5.488 F F4 -.666(PA)2.988 G(TH)-.189 E F0 .832(need not be e)144 423.6 +-5.488 F F4 -.666(PA)2.988 G(TH)-.189 E F0 .832(need not be e)144 560.4 R -.15(xe)-.15 G 3.332(cutable. When).15 F F1(bash)3.332 E F0 .832 (is not in)3.332 F F2 .832(posix mode)3.332 F F0 3.332(,t)C .833 (he current directory is searched if no)-3.332 F .982 -(\214le is found in)144 435.6 R F4 -.666(PA)3.481 G(TH)-.189 E/F5 9 +(\214le is found in)144 572.4 R F4 -.666(PA)3.481 G(TH)-.189 E/F5 9 /Times-Roman@0 SF(.)A F0 .981(If the)5.481 F F1(sour)3.481 E(cepath)-.18 E F0 .981(option to the)3.481 F F1(shopt)3.481 E F0 -.2(bu)3.481 G .981 (iltin command is turned of).2 F .981(f, the)-.25 F F4 -.666(PA)144 -447.6 S(TH)-.189 E F0 .112(is not searched.)2.362 F .112(If an)5.112 F +584.4 S(TH)-.189 E F0 .112(is not searched.)2.362 F .112(If an)5.112 F (y)-.15 E F2(ar)2.612 E(guments)-.37 E F0 .112(are supplied, the)2.612 F 2.612(yb)-.15 G .112(ecome the positional parameters when)-2.612 F F2 -(\214lename)144 459.6 Q F0 .485(is e)2.985 F -.15(xe)-.15 G 2.985 +(\214lename)144 596.4 Q F0 .485(is e)2.985 F -.15(xe)-.15 G 2.985 (cuted. Otherwise).15 F .485(the positional parameters are unchanged.) 2.985 F .485(If the)5.485 F F12.985 E F0 .485(option is en-)2.985 -F(abled,)144 471.6 Q F1(sour)3.324 E(ce)-.18 E F0 .824(inherits an)3.324 +F(abled,)144 608.4 Q F1(sour)3.324 E(ce)-.18 E F0 .824(inherits an)3.324 F 3.324(yt)-.15 G .824(rap on)-3.324 F F1(DEB)3.324 E(UG)-.1 E F0 3.324 (;i)C 3.324(fi)-3.324 G 3.324(ti)-3.324 G 3.324(sn)-3.324 G .825(ot, an) -3.324 F(y)-.15 E F1(DEB)3.325 E(UG)-.1 E F0 .825(trap string is sa) 3.325 F -.15(ve)-.2 G 3.325(da).15 G .825(nd re-)-3.325 F .817 -(stored around the call to)144 483.6 R F1(sour)3.317 E(ce)-.18 E F0 +(stored around the call to)144 620.4 R F1(sour)3.317 E(ce)-.18 E F0 3.317(,a)C(nd)-3.317 E F1(sour)3.317 E(ce)-.18 E F0 .817(unsets the) 3.317 F F1(DEB)3.317 E(UG)-.1 E F0 .817(trap while it e)3.317 F -.15(xe) -.15 G 3.317(cutes. If).15 F F13.317 E F0(is)3.317 E 1.435 -(not set, and the sourced \214le changes the)144 495.6 R F1(DEB)3.935 E +(not set, and the sourced \214le changes the)144 632.4 R F1(DEB)3.935 E (UG)-.1 E F0 1.435(trap, the ne)3.935 F 3.935(wv)-.25 G 1.435 (alue is retained when)-4.185 F F1(sour)3.935 E(ce)-.18 E F0 3.763 -(completes. The)144 507.6 R 1.262 +(completes. The)144 644.4 R 1.262 (return status is the status of the last command e)3.763 F 1.262 -(xited within the script \(0 if no)-.15 F(commands are e)144 519.6 Q +(xited within the script \(0 if no)-.15 F(commands are e)144 656.4 Q -.15(xe)-.15 G(cuted\), and f).15 E(alse if)-.1 E F2(\214lename)4.41 E -F0(is not found or cannot be read.)2.68 E F1(alias)108 536.4 Q F0([)2.5 +F0(is not found or cannot be read.)2.68 E F1(alias)108 673.2 Q F0([)2.5 E F1A F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C -(..])-2.5 E F1(Alias)144 548.4 Q F0 2.724(with no ar)5.224 F 2.724 +(..])-2.5 E F1(Alias)144 685.2 Q F0 2.724(with no ar)5.224 F 2.724 (guments or with the)-.18 F F15.224 E F0 2.724 (option prints the list of aliases in the form)5.224 F F1(alias)5.225 E -F2(name)144 560.4 Q F0(=)A F2(value)A F0 .58(on standard output.)3.08 F +F2(name)144 697.2 Q F0(=)A F2(value)A F0 .58(on standard output.)3.08 F .58(When ar)5.58 F .58 (guments are supplied, an alias is de\214ned for each)-.18 F F2(name) -3.08 E F0(whose)144 572.4 Q F2(value)2.508 E F0 .009(is gi)2.508 F -.15 +3.08 E F0(whose)144 709.2 Q F2(value)2.508 E F0 .009(is gi)2.508 F -.15 (ve)-.25 G 2.509(n. A).15 F .009(trailing space in)2.509 F F2(value) 2.509 E F0 .009(causes the ne)2.509 F .009(xt w)-.15 F .009 -(ord to be check)-.1 F .009(ed for alias substi-)-.1 F .579 -(tution when the alias is e)144 584.4 R 3.079(xpanded. F)-.15 F .579 -(or each)-.15 F F2(name)3.079 E F0 .579(in the ar)3.079 F .579 -(gument list for which no)-.18 F F2(value)3.079 E F0 .578(is sup-)3.078 -F 1.313(plied, the name and v)144 596.4 R 1.314 -(alue of the alias is printed.)-.25 F F1(Alias)6.314 E F0 1.314 -(returns true unless a)3.814 F F2(name)3.814 E F0 1.314(is gi)3.814 F --.15(ve)-.25 G 3.814(nf).15 G(or)-3.814 E -(which no alias has been de\214ned.)144 608.4 Q F1(bg)108 625.2 Q F0([) -2.5 E F2(jobspec)A F0(...])2.5 E .745(Resume each suspended job)144 -637.2 R F2(jobspec)3.245 E F0 .745 +(ord to be check)-.1 F .009(ed for alias substi-)-.1 F 1.773 +(tution when the alias is e)144 721.2 R 4.273(xpanded. F)-.15 F 1.773 +(or each)-.15 F F2(name)4.273 E F0 1.773(in the ar)4.273 F 1.773 +(gument list for which no)-.18 F F2(value)4.273 E F0(is)4.272 E +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(56)190.95 E 0 Cg EP +%%Page: 57 57 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .542 +(supplied, the name and v)144 84 R .542(alue of the alias is printed.) +-.25 F/F1 10/Times-Bold@0 SF(Alias)5.542 E F0 .542 +(returns true unless a)3.042 F/F2 10/Times-Italic@0 SF(name)3.043 E F0 +.543(is gi)3.043 F -.15(ve)-.25 G 3.043(nf).15 G(or)-3.043 E +(which no alias has been de\214ned.)144 96 Q F1(bg)108 112.8 Q F0([)2.5 +E F2(jobspec)A F0(...])2.5 E .745(Resume each suspended job)144 124.8 R +F2(jobspec)3.245 E F0 .745 (in the background, as if it had been started with)3.245 F F1(&)3.244 E -F0 5.744(.I)C(f)-5.744 E F2(job-)4.984 E(spec)144 649.2 Q F0 .671 +F0 5.744(.I)C(f)-5.744 E F2(job-)4.984 E(spec)144 136.8 Q F0 .671 (is not present, the shell')3.481 F 3.171(sn)-.55 G .672(otion of the) -3.171 F F2(curr)3.172 E .672(ent job)-.37 F F0 .672(is used.)3.172 F F1 (bg)5.672 E F2(jobspec)4.912 E F0 .672(returns 0 unless run)3.482 F .419 -(when job control is disabled or)144 661.2 R 2.919(,w)-.4 G .419 +(when job control is disabled or)144 148.8 R 2.919(,w)-.4 G .419 (hen run with job control enabled, an)-2.919 F 2.918(ys)-.15 G (peci\214ed)-2.918 E F2(jobspec)2.918 E F0 -.1(wa)2.918 G 2.918(sn).1 G -(ot)-2.918 E(found or w)144 673.2 Q(as started without job control.)-.1 -E F1(bind)108 690 Q F0([)2.5 E F1A F2 -.1(ke)2.5 G(ymap)-.2 E F0 -2.5(][)C F1(\255lpsvPSVX)-2.5 E F0(])A F1(bind)108 702 Q F0([)2.5 E F1 +(ot)-2.918 E(found or w)144 160.8 Q(as started without job control.)-.1 +E F1(bind)108 177.6 Q F0([)2.5 E F1A F2 -.1(ke)2.5 G(ymap)-.2 E F0 +2.5(][)C F1(\255lpsvPSVX)-2.5 E F0(])A F1(bind)108 189.6 Q F0([)2.5 E F1 A F2 -.1(ke)2.5 G(ymap)-.2 E F0 2.5(][)C F1-2.5 E F2 (function)2.5 E F0 2.5(][)C F1-2.5 E F2(function)2.5 E F0 2.5(][)C -F1-2.5 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(])A(GNU Bash 5.0)72 768 Q -(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(56)185.545 E 0 Cg EP -%%Page: 57 57 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(bind)108 84 Q F0([)2.5 E F1A/F2 10/Times-Italic@0 SF -.1(ke)2.5 -G(ymap)-.2 E F0(])A F12.5 E F2(\214lename)2.5 E F1(bind)108 96 Q -F0([)2.5 E F1A F2 -.1(ke)2.5 G(ymap)-.2 E F0(])A F12.5 E F2 --.1(ke)2.5 G(yseq)-.2 E F0(:)A F2(shell\255command)A F1(bind)108 108 Q -F0([)2.5 E F1A F2 -.1(ke)2.5 G(ymap)-.2 E F0(])A F2 -.1(ke)2.5 G -(yseq)-.2 E F0(:)A F2(function\255name)A F1(bind)108 120 Q F0([)2.5 E F1 -A F2 -.1(ke)2.5 G(ymap)-.2 E F0(])A F2 -.1(ke)2.5 G(yseq)-.2 E F0 -(:)A F2 -.37(re)C(adline\255command).37 E F0 .238(Display current)144 -132 R F1 -.18(re)2.738 G(adline).18 E F0 -.1(ke)2.738 G 2.738(ya)-.05 G -.239(nd function bindings, bind a k)-2.738 F .539 -.15(ey s)-.1 H .239 +F1-2.5 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(])A F1(bind)108 201.6 Q F0 +([)2.5 E F1A F2 -.1(ke)2.5 G(ymap)-.2 E F0(])A F12.5 E F2 +(\214lename)2.5 E F1(bind)108 213.6 Q F0([)2.5 E F1A F2 -.1(ke)2.5 +G(ymap)-.2 E F0(])A F12.5 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F2 +(shell\255command)A F1(bind)108 225.6 Q F0([)2.5 E F1A F2 -.1(ke) +2.5 G(ymap)-.2 E F0(])A F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F2 +(function\255name)A F1(bind)108 237.6 Q F0([)2.5 E F1A F2 -.1(ke) +2.5 G(ymap)-.2 E F0(])A F2 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F2 -.37(re)C +(adline\255command).37 E F0 .238(Display current)144 249.6 R F1 -.18(re) +2.738 G(adline).18 E F0 -.1(ke)2.738 G 2.738(ya)-.05 G .239 +(nd function bindings, bind a k)-2.738 F .539 -.15(ey s)-.1 H .239 (equence to a).15 F F1 -.18(re)2.739 G(adline).18 E F0 .239(function or) -2.739 F .476(macro, or set a)144 144 R F1 -.18(re)2.976 G(adline).18 E +2.739 F .476(macro, or set a)144 261.6 R F1 -.18(re)2.976 G(adline).18 E F0 -.25(va)2.976 G 2.976(riable. Each).25 F .476(non-option ar)2.976 F .475(gument is a command as it w)-.18 F .475(ould appear in)-.1 F F2 -(.inputr)144.23 156 Q(c)-.37 E F0 2.967(,b).31 G .467 +(.inputr)144.23 273.6 Q(c)-.37 E F0 2.967(,b).31 G .467 (ut each binding or command must be passed as a separate ar)-3.167 F .468(gument; e.g., '"\\C\255x\\C\255r":)-.18 F 2.5 -(re\255read\255init\255\214le'. Options,)144 168 R(if supplied, ha)2.5 E -.3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 180 -Q F2 -.1(ke)2.5 G(ymap)-.2 E F0(Use)180 192 Q F2 -.1(ke)5.159 G(ymap)-.2 -E F0 2.659(as the k)5.349 F -.15(ey)-.1 G 2.658(map to be af).15 F 2.658 -(fected by the subsequent bindings.)-.25 F(Acceptable)7.658 E F2 -.1(ke) -180 204 S(ymap)-.2 E F0 3.192(names are)5.882 F F2 3.192 +(re\255read\255init\255\214le'. Options,)144 285.6 R(if supplied, ha)2.5 +E .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 +297.6 Q F2 -.1(ke)2.5 G(ymap)-.2 E F0(Use)180 309.6 Q F2 -.1(ke)5.159 G +(ymap)-.2 E F0 2.659(as the k)5.349 F -.15(ey)-.1 G 2.658(map to be af) +.15 F 2.658(fected by the subsequent bindings.)-.25 F(Acceptable)7.658 E +F2 -.1(ke)180 321.6 S(ymap)-.2 E F0 3.192(names are)5.882 F F2 3.192 (emacs, emacs\255standar)5.692 F 3.193 (d, emacs\255meta, emacs\255ctlx, vi, vi\255mo)-.37 F(ve)-.1 E(,)-.1 E -(vi\255command)180 216 Q F0 4.09(,a)C(nd)-4.09 E F2(vi\255insert)4.38 E -F0(.).68 E F2(vi)6.589 E F0 1.589(is equi)4.089 F -.25(va)-.25 G 1.589 +(vi\255command)180 333.6 Q F0 4.09(,a)C(nd)-4.09 E F2(vi\255insert)4.38 +E F0(.).68 E F2(vi)6.589 E F0 1.589(is equi)4.089 F -.25(va)-.25 G 1.589 (lent to).25 F F2(vi\255command)4.089 E F0(\()4.089 E F2(vi\255mo)A(ve) --.1 E F0 1.589(is also a syn-)4.089 F(on)180 228 Q(ym\);)-.15 E F2 +-.1 E F0 1.589(is also a syn-)4.089 F(on)180 345.6 Q(ym\);)-.15 E F2 (emacs)2.5 E F0(is equi)2.5 E -.25(va)-.25 G(lent to).25 E F2 -(emacs\255standar)2.5 E(d)-.37 E F0(.)A F1144 240 Q F0 -(List the names of all)180 240 Q F1 -.18(re)2.5 G(adline).18 E F0 -(functions.)2.5 E F1144 252 Q F0(Display)180 252 Q F1 -.18(re)2.5 -G(adline).18 E F0(function names and bindings in such a w)2.5 E -(ay that the)-.1 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1144 264 Q -F0(List current)180 264 Q F1 -.18(re)2.5 G(adline).18 E F0 -(function names and bindings.)2.5 E F1144 276 Q F0(Display)180 276 -Q F1 -.18(re)3.655 G(adline).18 E F0 -.1(ke)3.655 G 3.655(ys)-.05 G -1.155(equences bound to macros and the strings the)-3.655 F 3.655(yo) --.15 G 1.155(utput in such a)-3.655 F -.1(wa)180 288 S 2.5(yt).1 G -(hat the)-2.5 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1144 300 Q F0 -(Display)180 300 Q F1 -.18(re)2.5 G(adline).18 E F0 -.1(ke)2.5 G 2.5(ys) --.05 G(equences bound to macros and the strings the)-2.5 E 2.5(yo)-.15 G -(utput.)-2.5 E F1144 312 Q F0(Display)180 312 Q F1 -.18(re)2.5 G -(adline).18 E F0 -.25(va)2.5 G(riable names and v).25 E +(emacs\255standar)2.5 E(d)-.37 E F0(.)A F1144 357.6 Q F0 +(List the names of all)180 357.6 Q F1 -.18(re)2.5 G(adline).18 E F0 +(functions.)2.5 E F1144 369.6 Q F0(Display)180 369.6 Q F1 -.18(re) +2.5 G(adline).18 E F0(function names and bindings in such a w)2.5 E +(ay that the)-.1 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1144 381.6 +Q F0(List current)180 381.6 Q F1 -.18(re)2.5 G(adline).18 E F0 +(function names and bindings.)2.5 E F1144 393.6 Q F0(Display)180 +393.6 Q F1 -.18(re)3.655 G(adline).18 E F0 -.1(ke)3.655 G 3.655(ys)-.05 +G 1.155(equences bound to macros and the strings the)-3.655 F 3.655(yo) +-.15 G 1.155(utput in such a)-3.655 F -.1(wa)180 405.6 S 2.5(yt).1 G +(hat the)-2.5 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1144 417.6 Q +F0(Display)180 417.6 Q F1 -.18(re)2.5 G(adline).18 E F0 -.1(ke)2.5 G 2.5 +(ys)-.05 G(equences bound to macros and the strings the)-2.5 E 2.5(yo) +-.15 G(utput.)-2.5 E F1144 429.6 Q F0(Display)180 429.6 Q F1 -.18 +(re)2.5 G(adline).18 E F0 -.25(va)2.5 G(riable names and v).25 E (alues in such a w)-.25 E(ay that the)-.1 E 2.5(yc)-.15 G -(an be re-read.)-2.5 E F1144 324 Q F0(List current)180 324 Q F1 --.18(re)2.5 G(adline).18 E F0 -.25(va)2.5 G(riable names and v).25 E -(alues.)-.25 E F1144 336 Q F2(\214lename)2.5 E F0(Read k)180 348 Q -.3 -.15(ey b)-.1 H(indings from).15 E F2(\214lename)2.5 E F0(.)A F1 -144 360 Q F2(function)2.5 E F0(Query about which k)180 372 Q -.15 -(ey)-.1 G 2.5(si).15 G -1.9 -.4(nv o)-2.5 H .2 -.1(ke t).4 H(he named).1 -E F2(function)2.5 E F0(.)A F1144 384 Q F2(function)2.5 E F0 -(Unbind all k)180 396 Q -.15(ey)-.1 G 2.5(sb).15 G(ound to the named) --2.5 E F2(function)2.5 E F0(.)A F1144 408 Q F2 -.1(ke)2.5 G(yseq) --.2 E F0(Remo)180 420 Q .3 -.15(ve a)-.15 H .3 -.15(ny c).15 H -(urrent binding for).15 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(.)A F1144 -432 Q F2 -.1(ke)2.5 G(yseq)-.2 E F1(:)A F2(shell\255command)A F0(Cause) -180 444 Q F2(shell\255command)4.325 E F0 1.825(to be e)4.325 F -.15(xe) --.15 G 1.825(cuted whene).15 F -.15(ve)-.25 G(r).15 E F2 -.1(ke)4.325 G -(yseq)-.2 E F0 1.825(is entered.)4.325 F(When)6.825 E F2(shell\255com-) -4.325 E(mand)180 456 Q F0 1.764(is e)4.264 F -.15(xe)-.15 G 1.765 -(cuted, the shell sets the).15 F/F3 9/Times-Bold@0 SF(READLINE_LINE) -4.265 E F0 -.25(va)4.015 G 1.765(riable to the contents of the).25 F F1 --.18(re)180 468 S(adline).18 E F0 .202(line b)2.702 F(uf)-.2 E .202 -(fer and the)-.25 F F3(READLINE_POINT)2.702 E F0 -.25(va)2.452 G .202 -(riable to the current location of the in-).25 F 2.718(sertion point.) -180 480 R 2.718(If the e)7.718 F -.15(xe)-.15 G 2.718 -(cuted command changes the v).15 F 2.719(alue of)-.25 F F3 -(READLINE_LINE)5.219 E F0(or)4.969 E F3(READLINE_POINT)180 492 Q/F4 9 -/Times-Roman@0 SF(,)A F0(those ne)2.25 E 2.5(wv)-.25 G -(alues will be re\215ected in the editing state.)-2.75 E F1144 504 -Q F0 .83(List all k)180 504 R 1.13 -.15(ey s)-.1 H .829 +(an be re-read.)-2.5 E F1144 441.6 Q F0(List current)180 441.6 Q +F1 -.18(re)2.5 G(adline).18 E F0 -.25(va)2.5 G(riable names and v).25 E +(alues.)-.25 E F1144 453.6 Q F2(\214lename)2.5 E F0(Read k)180 +465.6 Q .3 -.15(ey b)-.1 H(indings from).15 E F2(\214lename)2.5 E F0(.)A +F1144 477.6 Q F2(function)2.5 E F0(Query about which k)180 489.6 Q +-.15(ey)-.1 G 2.5(si).15 G -1.9 -.4(nv o)-2.5 H .2 -.1(ke t).4 H +(he named).1 E F2(function)2.5 E F0(.)A F1144 501.6 Q F2(function) +2.5 E F0(Unbind all k)180 513.6 Q -.15(ey)-.1 G 2.5(sb).15 G +(ound to the named)-2.5 E F2(function)2.5 E F0(.)A F1144 525.6 Q +F2 -.1(ke)2.5 G(yseq)-.2 E F0(Remo)180 537.6 Q .3 -.15(ve a)-.15 H .3 +-.15(ny c).15 H(urrent binding for).15 E F2 -.1(ke)2.5 G(yseq)-.2 E F0 +(.)A F1144 549.6 Q F2 -.1(ke)2.5 G(yseq)-.2 E F1(:)A F2 +(shell\255command)A F0(Cause)180 561.6 Q F2(shell\255command)4.325 E F0 +1.825(to be e)4.325 F -.15(xe)-.15 G 1.825(cuted whene).15 F -.15(ve) +-.25 G(r).15 E F2 -.1(ke)4.325 G(yseq)-.2 E F0 1.825(is entered.)4.325 F +(When)6.825 E F2(shell\255com-)4.325 E(mand)180 573.6 Q F0 1.764(is e) +4.264 F -.15(xe)-.15 G 1.765(cuted, the shell sets the).15 F/F3 9 +/Times-Bold@0 SF(READLINE_LINE)4.265 E F0 -.25(va)4.015 G 1.765 +(riable to the contents of the).25 F F1 -.18(re)180 585.6 S(adline).18 E +F0 .375(line b)2.875 F(uf)-.2 E .375(fer and the)-.25 F F3 +(READLINE_POINT)2.875 E F0(and)2.625 E F3(READLINE_MARK)2.875 E F0 -.25 +(va)2.625 G .375(riables to the).25 F 1.185 +(current location of the insertion point and the sa)180 597.6 R -.15(ve) +-.2 G 3.686(di).15 G 1.186(nsertion point \(the mark\), respec-)-3.686 F +(ti)180 609.6 Q -.15(ve)-.25 G(ly).15 E 5.702(.I)-.65 G 3.202(ft)-5.702 +G .702(he e)-3.202 F -.15(xe)-.15 G .702(cuted command changes the v).15 +F .701(alue of an)-.25 F 3.201(yo)-.15 G(f)-3.201 E F3(READLINE_LINE) +3.201 E/F4 9/Times-Roman@0 SF(,)A F3(READ-)2.951 E(LINE_POINT)180 621.6 +Q F4(,)A F0(or)3.58 E F3(READLINE_MARK)3.83 E F4(,)A F0 1.33(those ne) +3.58 F 3.83(wv)-.25 G 1.331(alues will be re\215ected in the editing) +-4.08 F(state.)180 633.6 Q F1144 645.6 Q F0 .83(List all k)180 +645.6 R 1.13 -.15(ey s)-.1 H .829 (equences bound to shell commands and the associated commands in a for) -.15 F(-)-.2 E(mat that can be reused as input.)180 516 Q(The return v) -144 532.8 Q(alue is 0 unless an unrecognized option is gi)-.25 E -.15 +.15 F(-)-.2 E(mat that can be reused as input.)180 657.6 Q(The return v) +144 674.4 Q(alue is 0 unless an unrecognized option is gi)-.25 E -.15 (ve)-.25 G 2.5(no).15 G 2.5(ra)-2.5 G 2.5(ne)-2.5 G(rror occurred.)-2.5 -E F1(br)108 549.6 Q(eak)-.18 E F0([)2.5 E F2(n)A F0(])A .054 -(Exit from within a)144 561.6 R F1 -.25(fo)2.554 G(r).25 E F0(,)A F1 +E F1(br)108 691.2 Q(eak)-.18 E F0([)2.5 E F2(n)A F0(])A .054 +(Exit from within a)144 703.2 R F1 -.25(fo)2.554 G(r).25 E F0(,)A F1 (while)2.554 E F0(,)A F1(until)2.555 E F0 2.555(,o)C(r)-2.555 E F1 (select)2.555 E F0 2.555(loop. If)2.555 F F2(n)2.555 E F0 .055 (is speci\214ed, break)2.555 F F2(n)2.555 E F0(le)2.555 E -.15(ve)-.25 G (ls.).15 E F2(n)5.415 E F0 .055(must be)2.795 F/F5 10/Symbol SF2.555 -E F0(1.)2.555 E(If)144 573.6 Q F2(n)3.075 E F0 .215(is greater than the\ +E F0(1.)2.555 E(If)144 715.2 Q F2(n)3.075 E F0 .215(is greater than the\ number of enclosing loops, all enclosing loops are e)2.955 F 2.714 (xited. The)-.15 F .214(return v)2.714 F(alue)-.25 E(is 0 unless)144 -585.6 Q F2(n)2.5 E F0(is not greater than or equal to 1.)2.5 E F1 -.2 -(bu)108 602.4 S(iltin).2 E F2(shell\255b)2.5 E(uiltin)-.2 E F0([)2.5 E -F2(ar)A(guments)-.37 E F0(])A(Ex)144 614.4 Q .77 +727.2 Q F2(n)2.5 E F0(is not greater than or equal to 1.)2.5 E +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(57)190.95 E 0 Cg EP +%%Page: 58 58 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF -.2(bu)108 84 S(iltin).2 E/F2 10/Times-Italic@0 SF(shell\255b)2.5 E +(uiltin)-.2 E F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A(Ex)144 96 Q .77 (ecute the speci\214ed shell b)-.15 F .77(uiltin, passing it)-.2 F F2 (ar)3.601 E(guments)-.37 E F0 3.271(,a).27 G .771(nd return its e)-3.271 F .771(xit status.)-.15 F .771(This is useful)5.771 F .616 -(when de\214ning a function whose name is the same as a shell b)144 -626.4 R .615(uiltin, retaining the functionality of)-.2 F .57(the b)144 -638.4 R .57(uiltin within the function.)-.2 F(The)5.57 E F1(cd)3.07 E F0 --.2(bu)3.07 G .57(iltin is commonly rede\214ned this w).2 F(ay)-.1 E -5.57(.T)-.65 G .57(he return status)-5.57 F(is f)144 650.4 Q(alse if)-.1 -E F2(shell\255b)2.84 E(uiltin)-.2 E F0(is not a shell b)2.74 E -(uiltin command.)-.2 E F1(caller)108 667.2 Q F0([)2.5 E F2 -.2(ex)C(pr) -.2 E F0(])A .254(Returns the conte)144 679.2 R .254(xt of an)-.15 F +(when de\214ning a function whose name is the same as a shell b)144 108 +R .615(uiltin, retaining the functionality of)-.2 F .57(the b)144 120 R +.57(uiltin within the function.)-.2 F(The)5.57 E F1(cd)3.07 E F0 -.2(bu) +3.07 G .57(iltin is commonly rede\214ned this w).2 F(ay)-.1 E 5.57(.T) +-.65 G .57(he return status)-5.57 F(is f)144 132 Q(alse if)-.1 E F2 +(shell\255b)2.84 E(uiltin)-.2 E F0(is not a shell b)2.74 E +(uiltin command.)-.2 E F1(caller)108 148.8 Q F0([)2.5 E F2 -.2(ex)C(pr) +.2 E F0(])A .254(Returns the conte)144 160.8 R .254(xt of an)-.15 F 2.754(ya)-.15 G(cti)-2.754 E .554 -.15(ve s)-.25 H .254 (ubroutine call \(a shell function or a script e).15 F -.15(xe)-.15 G -.254(cuted with the).15 F F1(.)2.753 E F0(or)2.753 E F1(sour)144 691.2 Q +.254(cuted with the).15 F F1(.)2.753 E F0(or)2.753 E F1(sour)144 172.8 Q (ce)-.18 E F0 -.2(bu)2.824 G 2.824(iltins\). W).2 F(ithout)-.4 E F2 -.2 (ex)2.824 G(pr).2 E F0(,)A F1(caller)2.824 E F0 .324 (displays the line number and source \214lename of the current)2.824 F -.254(subroutine call.)144 703.2 R .254(If a non-ne)5.254 F -.05(ga)-.15 +.254(subroutine call.)144 184.8 R .254(If a non-ne)5.254 F -.05(ga)-.15 G(ti).05 E .554 -.15(ve i)-.25 H(nte).15 E .253(ger is supplied as)-.15 F F2 -.2(ex)2.753 G(pr).2 E F0(,)A F1(caller)2.753 E F0 .253 (displays the line number)2.753 F 2.753(,s)-.4 G(ub-)-2.753 E 1.327(rou\ tine name, and source \214le corresponding to that position in the curr\ -ent e)144 715.2 R -.15(xe)-.15 G 1.328(cution call stack.).15 F .001 -(This e)144 727.2 R .001(xtra information may be used, for e)-.15 F .001 +ent e)144 196.8 R -.15(xe)-.15 G 1.328(cution call stack.).15 F .001 +(This e)144 208.8 R .001(xtra information may be used, for e)-.15 F .001 (xample, to print a stack trace.)-.15 F(The current frame is frame)5 E -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(57)185.545 E 0 Cg EP -%%Page: 58 58 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 3.019(0. The)144 -84 R .519(return v)3.019 F .519(alue is 0 unless the shell is not e)-.25 -F -.15(xe)-.15 G .52(cuting a subroutine call or).15 F/F1 10 -/Times-Italic@0 SF -.2(ex)3.02 G(pr).2 E F0 .52(does not corre-)3.02 F -(spond to a v)144 96 Q(alid position in the call stack.)-.25 E/F2 10 -/Times-Bold@0 SF(cd)108 112.8 Q F0([)2.5 E F2A F0(|[)A F2A -F0([)2.5 E F2A F0(]] [\255@]] [)A F1(dir)A F0(])A .322 -(Change the current directory to)144 124.8 R F1(dir)2.822 E F0 5.322(.i) -C(f)-5.322 E F1(dir)2.822 E F0 .321(is not supplied, the v)2.822 F .321 -(alue of the)-.25 F/F3 9/Times-Bold@0 SF(HOME)2.821 E F0 .321(shell v) -2.571 F .321(ariable is)-.25 F 1.035(the def)144 136.8 R 3.535(ault. An) --.1 F 3.535(ya)-.15 G 1.035(dditional ar)-3.535 F 1.035(guments follo) --.18 F(wing)-.25 E F1(dir)3.535 E F0 1.035(are ignored.)3.535 F 1.036 -(The v)6.035 F(ariable)-.25 E F3(CDP)3.536 E -.855(AT)-.666 G(H).855 E -F0(de\214nes)3.286 E .827(the search path for the directory containing) -144 148.8 R F1(dir)3.676 E F0 3.326(:e).73 G .826(ach directory name in) --3.326 F F3(CDP)3.326 E -.855(AT)-.666 G(H).855 E F0 .826 -(is searched for)3.076 F F1(dir)144 160.8 Q F0 5.664(.A)C(lternati) --5.664 E .964 -.15(ve d)-.25 H .665(irectory names in).15 F F3(CDP)3.165 -E -.855(AT)-.666 G(H).855 E F0 .665(are separated by a colon \(:\).) -2.915 F 3.165(An)5.665 G .665(ull directory name)-3.165 F(in)144 172.8 Q -F3(CDP)3.102 E -.855(AT)-.666 G(H).855 E F0 .602 -(is the same as the current directory)2.852 F 3.102(,i)-.65 G .602 -(.e., `)-3.102 F(`)-.74 E F2(.)A F0 -.74('')C 5.602(.I).74 G(f)-5.602 E -F1(dir)3.451 E F0(be)3.831 E .601(gins with a slash \(/\), then)-.15 F -F3(CD-)3.101 E -.666(PA)144 184.8 S(TH)-.189 E F0 1.003(is not used.) -3.253 F(The)6.003 E F23.503 E F0 1.003(option causes)3.503 F F2 -(cd)3.503 E F0 1.003(to use the ph)3.503 F 1.003 -(ysical directory structure by resolving)-.05 F .123 -(symbolic links while tra)144 196.8 R -.15(ve)-.2 G(rsing).15 E F1(dir) -2.623 E F0 .123(and before processing instances of)2.623 F F1(..)2.623 E -F0(in)2.623 E F1(dir)2.623 E F0 .123(\(see also the)2.623 F F2 -2.623 E F0(op-)2.622 E .429(tion to the)144 208.8 R F2(set)2.929 E F0 --.2(bu)2.929 G .429(iltin command\); the).2 F F22.929 E F0 .43 +3.019(0. The)144 220.8 R .519(return v)3.019 F .519 +(alue is 0 unless the shell is not e)-.25 F -.15(xe)-.15 G .52 +(cuting a subroutine call or).15 F F2 -.2(ex)3.02 G(pr).2 E F0 .52 +(does not corre-)3.02 F(spond to a v)144 232.8 Q +(alid position in the call stack.)-.25 E F1(cd)108 249.6 Q F0([)2.5 E F1 +A F0(|[)A F1A F0([)2.5 E F1A F0(]] [\255@]] [)A F2 +(dir)A F0(])A .322(Change the current directory to)144 261.6 R F2(dir) +2.822 E F0 5.322(.i)C(f)-5.322 E F2(dir)2.822 E F0 .321 +(is not supplied, the v)2.822 F .321(alue of the)-.25 F/F3 9 +/Times-Bold@0 SF(HOME)2.821 E F0 .321(shell v)2.571 F .321(ariable is) +-.25 F 1.035(the def)144 273.6 R 3.535(ault. An)-.1 F 3.535(ya)-.15 G +1.035(dditional ar)-3.535 F 1.035(guments follo)-.18 F(wing)-.25 E F2 +(dir)3.535 E F0 1.035(are ignored.)3.535 F 1.036(The v)6.035 F(ariable) +-.25 E F3(CDP)3.536 E -.855(AT)-.666 G(H).855 E F0(de\214nes)3.286 E +.827(the search path for the directory containing)144 285.6 R F2(dir) +3.676 E F0 3.326(:e).73 G .826(ach directory name in)-3.326 F F3(CDP) +3.326 E -.855(AT)-.666 G(H).855 E F0 .826(is searched for)3.076 F F2 +(dir)144 297.6 Q F0 5.664(.A)C(lternati)-5.664 E .964 -.15(ve d)-.25 H +.665(irectory names in).15 F F3(CDP)3.165 E -.855(AT)-.666 G(H).855 E F0 +.665(are separated by a colon \(:\).)2.915 F 3.165(An)5.665 G .665 +(ull directory name)-3.165 F(in)144 309.6 Q F3(CDP)3.102 E -.855(AT) +-.666 G(H).855 E F0 .602(is the same as the current directory)2.852 F +3.102(,i)-.65 G .602(.e., `)-3.102 F(`)-.74 E F1(.)A F0 -.74('')C 5.602 +(.I).74 G(f)-5.602 E F2(dir)3.451 E F0(be)3.831 E .601 +(gins with a slash \(/\), then)-.15 F F3(CD-)3.101 E -.666(PA)144 321.6 +S(TH)-.189 E F0 1.003(is not used.)3.253 F(The)6.003 E F13.503 E +F0 1.003(option causes)3.503 F F1(cd)3.503 E F0 1.003(to use the ph) +3.503 F 1.003(ysical directory structure by resolving)-.05 F .123 +(symbolic links while tra)144 333.6 R -.15(ve)-.2 G(rsing).15 E F2(dir) +2.623 E F0 .123(and before processing instances of)2.623 F F2(..)2.623 E +F0(in)2.623 E F2(dir)2.623 E F0 .123(\(see also the)2.623 F F1 +2.623 E F0(op-)2.622 E .429(tion to the)144 345.6 R F1(set)2.929 E F0 +-.2(bu)2.929 G .429(iltin command\); the).2 F F12.929 E F0 .43 (option forces symbolic links to be follo)2.929 F .43(wed by resolving) --.25 F .473(the link after processing instances of)144 220.8 R F1(..) -2.973 E F0(in)2.973 E F1(dir)2.973 E F0 5.473(.I)C(f)-5.473 E F1(..) -2.973 E F0 .473(appears in)2.973 F F1(dir)2.972 E F0 2.972(,i)C 2.972 +-.25 F .473(the link after processing instances of)144 357.6 R F2(..) +2.973 E F0(in)2.973 E F2(dir)2.973 E F0 5.473(.I)C(f)-5.473 E F2(..) +2.973 E F0 .473(appears in)2.973 F F2(dir)2.972 E F0 2.972(,i)C 2.972 (ti)-2.972 G 2.972(sp)-2.972 G .472(rocessed by remo)-2.972 F .472 -(ving the)-.15 F .948(immediately pre)144 232.8 R .948 -(vious pathname component from)-.25 F F1(dir)3.448 E F0 3.448(,b)C .948 -(ack to a slash or the be)-3.448 F .948(ginning of)-.15 F F1(dir)3.448 E -F0 5.948(.I)C(f)-5.948 E(the)144 244.8 Q F22.868 E F0 .368 -(option is supplied with)2.868 F F22.868 E F0 2.868(,a)C .368 +(ving the)-.15 F .948(immediately pre)144 369.6 R .948 +(vious pathname component from)-.25 F F2(dir)3.448 E F0 3.448(,b)C .948 +(ack to a slash or the be)-3.448 F .948(ginning of)-.15 F F2(dir)3.448 E +F0 5.948(.I)C(f)-5.948 E(the)144 381.6 Q F12.868 E F0 .368 +(option is supplied with)2.868 F F12.868 E F0 2.868(,a)C .368 (nd the current w)-2.868 F .368 (orking directory cannot be successfully deter)-.1 F(-)-.2 E .612 -(mined after a successful directory change,)144 256.8 R F2(cd)3.112 E F0 +(mined after a successful directory change,)144 393.6 R F1(cd)3.112 E F0 .612(will return an unsuccessful status.)3.112 F .613(On systems that) -5.612 F .354(support it, the)144 268.8 R F22.854 E F0 .354 +5.612 F .354(support it, the)144 405.6 R F12.854 E F0 .354 (option presents the e)2.854 F .354(xtended attrib)-.15 F .354 (utes associated with a \214le as a directory)-.2 F 5.353(.A)-.65 G(n) --5.353 E(ar)144 280.8 Q .072(gument of)-.18 F F22.572 E F0 .072 +-5.353 E(ar)144 417.6 Q .072(gument of)-.18 F F12.572 E F0 .072 (is con)2.572 F -.15(ve)-.4 G .072(rted to).15 F F3($OLDPWD)2.572 E F0 .072(before the directory change is attempted.)2.322 F .072 -(If a non-empty)5.072 F .055(directory name from)144 292.8 R F3(CDP) -2.555 E -.855(AT)-.666 G(H).855 E F0 .055(is used, or if)2.305 F F2 +(If a non-empty)5.072 F .055(directory name from)144 429.6 R F3(CDP) +2.555 E -.855(AT)-.666 G(H).855 E F0 .055(is used, or if)2.305 F F1 2.555 E F0 .055(is the \214rst ar)2.555 F .054 (gument, and the directory change is suc-)-.18 F .168 -(cessful, the absolute pathname of the ne)144 304.8 R 2.668(ww)-.25 G +(cessful, the absolute pathname of the ne)144 441.6 R 2.668(ww)-.25 G .168(orking directory is written to the standard output.)-2.768 F(The) -5.168 E(return v)144 316.8 Q(alue is true if the directory w)-.25 E -(as successfully changed; f)-.1 E(alse otherwise.)-.1 E F2(command)108 -333.6 Q F0([)2.5 E F2(\255pVv)A F0(])A F1(command)2.5 E F0([)2.5 E F1 -(ar)A(g)-.37 E F0(...])2.5 E(Run)144 345.6 Q F1(command)2.765 E F0(with) -3.335 E F1(ar)2.895 E(gs)-.37 E F0 .065 +5.168 E(return v)144 453.6 Q(alue is true if the directory w)-.25 E +(as successfully changed; f)-.1 E(alse otherwise.)-.1 E F1(command)108 +470.4 Q F0([)2.5 E F1(\255pVv)A F0(])A F2(command)2.5 E F0([)2.5 E F2 +(ar)A(g)-.37 E F0(...])2.5 E(Run)144 482.4 Q F2(command)2.765 E F0(with) +3.335 E F2(ar)2.895 E(gs)-.37 E F0 .065 (suppressing the normal shell function lookup.)2.835 F .064(Only b)5.064 -F .064(uiltin commands or)-.2 F .501(commands found in the)144 357.6 R +F .064(uiltin commands or)-.2 F .501(commands found in the)144 494.4 R F3 -.666(PA)3.001 G(TH)-.189 E F0 .502(are e)2.751 F -.15(xe)-.15 G -3.002(cuted. If).15 F(the)3.002 E F23.002 E F0 .502(option is gi) -3.002 F -.15(ve)-.25 G .502(n, the search for).15 F F1(command)3.202 E -F0(is)3.772 E .4(performed using a def)144 369.6 R .4(ault v)-.1 F .4 +3.002(cuted. If).15 F(the)3.002 E F13.002 E F0 .502(option is gi) +3.002 F -.15(ve)-.25 G .502(n, the search for).15 F F2(command)3.202 E +F0(is)3.772 E .4(performed using a def)144 506.4 R .4(ault v)-.1 F .4 (alue for)-.25 F F3 -.666(PA)2.9 G(TH)-.189 E F0 .399 (that is guaranteed to \214nd all of the standard utilities.)2.649 F(If) -5.399 E .174(either the)144 381.6 R F22.674 E F0(or)2.674 E F2 -2.674 E F0 .175(option is supplied, a description of)2.674 F F1 -(command)2.875 E F0 .175(is printed.)3.445 F(The)5.175 E F22.675 E -F0 .175(option causes)2.675 F 3.318(as)144 393.6 S .818(ingle w)-3.318 F +5.399 E .174(either the)144 518.4 R F12.674 E F0(or)2.674 E F1 +2.674 E F0 .175(option is supplied, a description of)2.674 F F2 +(command)2.875 E F0 .175(is printed.)3.445 F(The)5.175 E F12.675 E +F0 .175(option causes)2.675 F 3.318(as)144 530.4 S .818(ingle w)-3.318 F .817(ord indicating the command or \214lename used to in)-.1 F -.2(vo) --.4 G -.1(ke).2 G F1(command)3.617 E F0 .817(to be displayed; the)4.087 -F F2144 405.6 Q F0 .249(option produces a more v)2.749 F .249 -(erbose description.)-.15 F .249(If the)5.249 F F22.749 E F0(or) -2.749 E F22.75 E F0 .25(option is supplied, the e)2.75 F .25 -(xit status)-.15 F 1.005(is 0 if)144 417.6 R F1(command)3.705 E F0 -.1 +-.4 G -.1(ke).2 G F2(command)3.617 E F0 .817(to be displayed; the)4.087 +F F1144 542.4 Q F0 .249(option produces a more v)2.749 F .249 +(erbose description.)-.15 F .249(If the)5.249 F F12.749 E F0(or) +2.749 E F12.75 E F0 .25(option is supplied, the e)2.75 F .25 +(xit status)-.15 F 1.005(is 0 if)144 554.4 R F2(command)3.705 E F0 -.1 (wa)4.275 G 3.505(sf).1 G 1.005(ound, and 1 if not.)-3.505 F 1.004 -(If neither option is supplied and an error occurred or)6.005 F F1 -(command)144.2 429.6 Q F0 1.598(cannot be found, the e)4.868 F 1.599 +(If neither option is supplied and an error occurred or)6.005 F F2 +(command)144.2 566.4 Q F0 1.598(cannot be found, the e)4.868 F 1.599 (xit status is 127.)-.15 F 1.599(Otherwise, the e)6.599 F 1.599 -(xit status of the)-.15 F F2(command)4.099 E F0 -.2(bu)144 441.6 S -(iltin is the e).2 E(xit status of)-.15 E F1(command)2.7 E F0(.).77 E F2 -(compgen)108 458.4 Q F0([)2.5 E F1(option)A F0 2.5(][)C F1(wor)-2.5 E(d) --.37 E F0(])A .013(Generate possible completion matches for)144 470.4 R -F1(wor)2.513 E(d)-.37 E F0 .013(according to the)2.513 F F1(option)2.513 +(xit status of the)-.15 F F1(command)4.099 E F0 -.2(bu)144 578.4 S +(iltin is the e).2 E(xit status of)-.15 E F2(command)2.7 E F0(.).77 E F1 +(compgen)108 595.2 Q F0([)2.5 E F2(option)A F0 2.5(][)C F2(wor)-2.5 E(d) +-.37 E F0(])A .013(Generate possible completion matches for)144 607.2 R +F2(wor)2.513 E(d)-.37 E F0 .013(according to the)2.513 F F2(option)2.513 E F0 .013(s, which may be an)B 2.512(yo)-.15 G(ption)-2.512 E .981 -(accepted by the)144 482.4 R F2(complete)3.481 E F0 -.2(bu)3.481 G .981 -(iltin with the e).2 F .981(xception of)-.15 F F23.481 E F0(and) -3.481 E F23.481 E F0 3.481(,a)C .982(nd write the matches to the) --3.481 F .131(standard output.)144 494.4 R .131(When using the)5.131 F -F22.631 E F0(or)2.631 E F22.631 E F0 .131(options, the v) +(accepted by the)144 619.2 R F1(complete)3.481 E F0 -.2(bu)3.481 G .981 +(iltin with the e).2 F .981(xception of)-.15 F F13.481 E F0(and) +3.481 E F13.481 E F0 3.481(,a)C .982(nd write the matches to the) +-3.481 F .131(standard output.)144 631.2 R .131(When using the)5.131 F +F12.631 E F0(or)2.631 E F12.631 E F0 .131(options, the v) 2.631 F .13(arious shell v)-.25 F .13(ariables set by the program-)-.25 -F(mable completion f)144 506.4 Q(acilities, while a)-.1 E -.25(va)-.2 G +F(mable completion f)144 643.2 Q(acilities, while a)-.1 E -.25(va)-.2 G (ilable, will not ha).25 E .3 -.15(ve u)-.2 H(seful v).15 E(alues.)-.25 -E .352(The matches will be generated in the same w)144 530.4 R .352 +E .352(The matches will be generated in the same w)144 667.2 R .352 (ay as if the programmable completion code had gen-)-.1 F .02(erated th\ em directly from a completion speci\214cation with the same \215ags.)144 -542.4 R(If)5.02 E F1(wor)2.52 E(d)-.37 E F0 .02(is speci\214ed, only) -2.52 F(those completions matching)144 554.4 Q F1(wor)2.5 E(d)-.37 E F0 -(will be displayed.)2.5 E(The return v)144 578.4 Q +679.2 R(If)5.02 E F2(wor)2.52 E(d)-.37 E F0 .02(is speci\214ed, only) +2.52 F(those completions matching)144 691.2 Q F2(wor)2.5 E(d)-.37 E F0 +(will be displayed.)2.5 E(The return v)144 715.2 Q (alue is true unless an in)-.25 E -.25(va)-.4 G -(lid option is supplied, or no matches were generated.).25 E F2 -(complete)108 595.2 Q F0([)2.5 E F2(\255abcdefgjksuv)A F0 2.5(][)C F2 --2.5 E F1(comp-option)2.5 E F0 2.5(][)C F2(\255DEI)-2.5 E F0 2.5 -(][)C F2-2.5 E F1(action)2.5 E F0 2.5(][)C F2-2.5 E F1 -(globpat)2.5 E F0 2.5(][)C F2-2.5 E F1(wor)2.5 E(dlist)-.37 E F0 -(])A([)144 607.2 Q F2A F1(function)2.5 E F0 2.5(][)C F2-2.5 -E F1(command)2.5 E F0 2.5(][)C F2-2.5 E F1(\214lterpat)2.5 E F0 -2.5(][)C F2-2.5 E F1(pr)2.5 E(e\214x)-.37 E F0 2.5(][)C F2 --2.5 E F1(suf)2.5 E<8c78>-.18 E F0(])A F1(name)2.5 E F0([)2.5 E F1 -(name ...)A F0(])A F2(complete \255pr)108 619.2 Q F0([)2.5 E F2(\255DEI) -A F0 2.5(][)C F1(name)-2.5 E F0(...])2.5 E .633(Specify ho)144 631.2 R -3.133(wa)-.25 G -.18(rg)-3.133 G .633(uments to each).18 F F1(name)3.133 -E F0 .633(should be completed.)3.133 F .634(If the)5.634 F F23.134 -E F0 .634(option is supplied, or if no)3.134 F .14 -(options are supplied, e)144 643.2 R .139 +(lid option is supplied, or no matches were generated.).25 E +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(58)190.95 E 0 Cg EP +%%Page: 59 59 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(complete)108 84 Q F0([)2.5 E F1(\255abcdefgjksuv)A F0 2.5(][)C F1 +-2.5 E/F2 10/Times-Italic@0 SF(comp-option)2.5 E F0 2.5(][)C F1 +(\255DEI)-2.5 E F0 2.5(][)C F1-2.5 E F2(action)2.5 E F0 2.5(][)C +F1-2.5 E F2(globpat)2.5 E F0 2.5(][)C F1-2.5 E F2(wor)2.5 E +(dlist)-.37 E F0(])A([)144 96 Q F1A F2(function)2.5 E F0 2.5(][)C +F1-2.5 E F2(command)2.5 E F0 2.5(][)C F1-2.5 E F2 +(\214lterpat)2.5 E F0 2.5(][)C F1-2.5 E F2(pr)2.5 E(e\214x)-.37 E +F0 2.5(][)C F1-2.5 E F2(suf)2.5 E<8c78>-.18 E F0(])A F2(name)2.5 E +F0([)2.5 E F2(name ...)A F0(])A F1(complete \255pr)108 108 Q F0([)2.5 E +F1(\255DEI)A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E .633(Specify ho) +144 120 R 3.133(wa)-.25 G -.18(rg)-3.133 G .633(uments to each).18 F F2 +(name)3.133 E F0 .633(should be completed.)3.133 F .634(If the)5.634 F +F13.134 E F0 .634(option is supplied, or if no)3.134 F .14 +(options are supplied, e)144 132 R .139 (xisting completion speci\214cations are printed in a w)-.15 F .139 (ay that allo)-.1 F .139(ws them to be)-.25 F .31(reused as input.)144 -655.2 R(The)5.31 E F22.81 E F0 .31(option remo)2.81 F -.15(ve)-.15 -G 2.81(sac).15 G .31(ompletion speci\214cation for each)-2.81 F F1(name) -2.81 E F0 2.81(,o)C 1.11 -.4(r, i)-2.81 H 2.81(fn).4 G(o)-2.81 E F1 +144 R(The)5.31 E F12.81 E F0 .31(option remo)2.81 F -.15(ve)-.15 G +2.81(sac).15 G .31(ompletion speci\214cation for each)-2.81 F F2(name) +2.81 E F0 2.81(,o)C 1.11 -.4(r, i)-2.81 H 2.81(fn).4 G(o)-2.81 E F2 (name)2.81 E F0(s)A 1.208 -(are supplied, all completion speci\214cations.)144 667.2 R(The)6.208 E -F23.708 E F0 1.207(option indicates that other supplied options) -3.707 F .5(and actions should apply to the `)144 679.2 R(`def)-.74 E +(are supplied, all completion speci\214cations.)144 156 R(The)6.208 E F1 +3.708 E F0 1.207(option indicates that other supplied options) +3.707 F .5(and actions should apply to the `)144 168 R(`def)-.74 E (ault')-.1 E 3('c)-.74 G .5 (ommand completion; that is, completion attempted on)-3 F 3.455(ac)144 -691.2 S .955(ommand for which no completion has pre)-3.455 F .955 -(viously been de\214ned.)-.25 F(The)5.955 E F23.455 E F0 .955 +180 S .955(ommand for which no completion has pre)-3.455 F .955 +(viously been de\214ned.)-.25 F(The)5.955 E F13.455 E F0 .955 (option indicates that)3.455 F .876 -(other supplied options and actions should apply to `)144 703.2 R -(`empty')-.74 E 3.376('c)-.74 G .876(ommand completion; that is, com-) --3.376 F .448(pletion attempted on a blank line.)144 715.2 R(The)5.447 E -F22.947 E F0 .447 -(option indicates that other supplied options and actions)2.947 F 1.149 -(should apply to completion on the initial non-assignment w)144 727.2 R -1.15(ord on the line, or after a command)-.1 F(GNU Bash 5.0)72 768 Q -(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(58)185.545 E 0 Cg EP -%%Page: 59 59 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .431 -(delimiter such as)144 84 R/F1 10/Times-Bold@0 SF(;)2.931 E F0(or)2.931 -E F1(|)2.931 E F0 2.931(,w)C .431 -(hich is usually command name completion.)-2.931 F .43 -(If multiple options are sup-)5.43 F .707(plied, the)144 96 R F1 +(other supplied options and actions should apply to `)144 192 R(`empty') +-.74 E 3.376('c)-.74 G .876(ommand completion; that is, com-)-3.376 F +.448(pletion attempted on a blank line.)144 204 R(The)5.447 E F1 +2.947 E F0 .447 +(option indicates that other supplied options and actions)2.947 F .123 +(should apply to completion on the initial non-assignment w)144 216 R +.123(ord on the line, or after a command de-)-.1 F 1.021 +(limiter such as)144 228 R F1(;)3.521 E F0(or)3.521 E F1(|)3.521 E F0 +3.521(,w)C 1.021(hich is usually command name completion.)-3.521 F 1.02 +(If multiple options are sup-)6.02 F .707(plied, the)144 240 R F1 3.207 E F0 .707(option tak)3.207 F .707(es precedence o)-.1 F -.15(ve) -.15 G(r).15 E F13.208 E F0 3.208(,a)C .708(nd both tak)-3.208 F 3.208(ep)-.1 G .708(recedence o)-3.208 F -.15(ve)-.15 G(r).15 E F1 3.208 E F0 5.708(.I)C 3.208(fa)-5.708 G 1.008 -.15(ny o)-3.208 H(f).15 E -F13.208 E F0(,)A F1144 108 Q F0 2.604(,o)C(r)-2.604 E F1 +F13.208 E F0(,)A F1144 252 Q F0 2.604(,o)C(r)-2.604 E F1 2.604 E F0 .103(are supplied, an)2.603 F 2.603(yo)-.15 G(ther) --2.603 E/F2 10/Times-Italic@0 SF(name)2.603 E F0(ar)2.603 E .103 +-2.603 E F2(name)2.603 E F0(ar)2.603 E .103 (guments are ignored; these completions only apply to the)-.18 F -(case speci\214ed by the option.)144 120 Q .152 +(case speci\214ed by the option.)144 264 Q .152 (The process of applying these completion speci\214cations when w)144 -144 R .153(ord completion is attempted is de-)-.1 F(scribed abo)144 156 +288 R .153(ord completion is attempted is de-)-.1 F(scribed abo)144 300 Q .3 -.15(ve u)-.15 H(nder).15 E F1(Pr)2.5 E(ogrammable Completion)-.18 -E F0(.)A .556(Other options, if speci\214ed, ha)144 180 R .856 -.15 +E F0(.)A .556(Other options, if speci\214ed, ha)144 324 R .856 -.15 (ve t)-.2 H .555(he follo).15 F .555(wing meanings.)-.25 F .555(The ar) 5.555 F .555(guments to the)-.18 F F13.055 E F0(,)A F13.055 E F0 3.055(,a)C(nd)-3.055 E F13.055 E F0 .722 -(options \(and, if necessary)144 192 R 3.222(,t)-.65 G(he)-3.222 E F1 +(options \(and, if necessary)144 336 R 3.222(,t)-.65 G(he)-3.222 E F1 3.222 E F0(and)3.222 E F13.222 E F0 .723 (options\) should be quoted to protect them from e)3.222 F(xpan-)-.15 E -(sion before the)144 204 Q F1(complete)2.5 E F0 -.2(bu)2.5 G -(iltin is in).2 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E F1144 216 Q F2 -(comp-option)2.5 E F0(The)184 228 Q F2(comp-option)2.791 E F0 .291 +(sion before the)144 348 Q F1(complete)2.5 E F0 -.2(bu)2.5 G +(iltin is in).2 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E F1144 360 Q F2 +(comp-option)2.5 E F0(The)184 372 Q F2(comp-option)2.791 E F0 .291 (controls se)2.791 F -.15(ve)-.25 G .291(ral aspects of the compspec') .15 F 2.791(sb)-.55 G(eha)-2.791 E .291(vior be)-.2 F .291 -(yond the simple)-.15 F(generation of completions.)184 240 Q F2 -(comp-option)5 E F0(may be one of:)2.5 E F1(bashdefault)184 252 Q F0 -.281(Perform the rest of the def)224 264 R(ault)-.1 E F1(bash)2.781 E F0 -.281(completions if the compspec generates no)2.781 F(matches.)224 276 Q -F1(default)184 288 Q F0 2.876(Use readline')224 288 R 5.376(sd)-.55 G +(yond the simple)-.15 F(generation of completions.)184 384 Q F2 +(comp-option)5 E F0(may be one of:)2.5 E F1(bashdefault)184 396 Q F0 +.281(Perform the rest of the def)224 408 R(ault)-.1 E F1(bash)2.781 E F0 +.281(completions if the compspec generates no)2.781 F(matches.)224 420 Q +F1(default)184 432 Q F0 2.876(Use readline')224 432 R 5.376(sd)-.55 G (ef)-5.376 E 2.875 (ault \214lename completion if the compspec generates no)-.1 F(matches.) -224 300 Q F1(dir)184 312 Q(names)-.15 E F0(Perform directory name compl\ -etion if the compspec generates no matches.)224 324 Q F1(\214lenames)184 -336 Q F0 -.7(Te)224 348 S .137(ll readline that the compspec generates \ +224 444 Q F1(dir)184 456 Q(names)-.15 E F0(Perform directory name compl\ +etion if the compspec generates no matches.)224 468 Q F1(\214lenames)184 +480 Q F0 -.7(Te)224 492 S .137(ll readline that the compspec generates \ \214lenames, so it can perform an).7 F 2.637<798c>-.15 G(le-)-2.637 E -.134(name\255speci\214c processing \(lik)224 360 R 2.634(ea)-.1 G .134 +.134(name\255speci\214c processing \(lik)224 504 R 2.634(ea)-.1 G .134 (dding a slash to directory names, quoting spe-)-2.634 F .45 -(cial characters, or suppressing trailing spaces\).)224 372 R .45 -(Intended to be used with shell)5.45 F(functions.)224 384 Q F1(noquote) -184 396 Q F0 -.7(Te)224 396 S .814 +(cial characters, or suppressing trailing spaces\).)224 516 R .45 +(Intended to be used with shell)5.45 F(functions.)224 528 Q F1(noquote) +184 540 Q F0 -.7(Te)224 540 S .814 (ll readline not to quote the completed w).7 F .814(ords if the)-.1 F 3.314(ya)-.15 G .814(re \214lenames \(quoting)-3.314 F -(\214lenames is the def)224 408 Q(ault\).)-.1 E F1(nosort)184 420 Q F0 --.7(Te)224 420 S(ll readline not to sort the list of possible completio\ -ns alphabetically).7 E(.)-.65 E F1(nospace)184 432 Q F0 -.7(Te)224 432 S +(\214lenames is the def)224 552 Q(ault\).)-.1 E F1(nosort)184 564 Q F0 +-.7(Te)224 564 S(ll readline not to sort the list of possible completio\ +ns alphabetically).7 E(.)-.65 E F1(nospace)184 576 Q F0 -.7(Te)224 576 S .22(ll readline not to append a space \(the def).7 F .22(ault\) to w)-.1 -F .22(ords completed at the end)-.1 F(of the line.)224 444 Q F1 -(plusdirs)184 456 Q F0 1.985(After an)224 456 R 4.485(ym)-.15 G 1.985 +F .22(ords completed at the end)-.1 F(of the line.)224 588 Q F1 +(plusdirs)184 600 Q F0 1.985(After an)224 600 R 4.485(ym)-.15 G 1.985 (atches de\214ned by the compspec are generated, directory name)-4.485 F -.583(completion is attempted and an)224 468 R 3.084(ym)-.15 G .584 -(atches are added to the results of the other)-3.084 F(actions.)224 480 -Q F1144 492 Q F2(action)2.5 E F0(The)184 504 Q F2(action)2.5 E F0 +.583(completion is attempted and an)224 612 R 3.084(ym)-.15 G .584 +(atches are added to the results of the other)-3.084 F(actions.)224 624 +Q F1144 636 Q F2(action)2.5 E F0(The)184 648 Q F2(action)2.5 E F0 (may be one of the follo)2.5 E (wing to generate a list of possible completions:)-.25 E F1(alias)184 -516 Q F0(Alias names.)224 516 Q(May also be speci\214ed as)5 E F1 -2.5 E F0(.)A F1(arrayv)184 528 Q(ar)-.1 E F0(Array v)224 540 Q -(ariable names.)-.25 E F1(binding)184 552 Q(Readline)224 552 Q F0 -.1 -(ke)2.5 G 2.5(yb)-.05 G(inding names.)-2.5 E F1 -.2(bu)184 564 S(iltin) -.2 E F0(Names of shell b)224 564 Q(uiltin commands.)-.2 E -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(command)184 576 -Q F0(Command names.)224 588 Q(May also be speci\214ed as)5 E F12.5 -E F0(.)A F1(dir)184 600 Q(ectory)-.18 E F0(Directory names.)224 612 Q -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(disabled)184 624 -Q F0(Names of disabled shell b)224 636 Q(uiltins.)-.2 E F1(enabled)184 -648 Q F0(Names of enabled shell b)224 648 Q(uiltins.)-.2 E F1(export)184 -660 Q F0(Names of e)224 660 Q(xported shell v)-.15 E 2.5(ariables. May) --.25 F(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1(\214le)184 -672 Q F0(File names.)224 672 Q(May also be speci\214ed as)5 E F1 -2.5 E F0(.)A F1(function)184 684 Q F0(Names of shell functions.)224 696 -Q F1(gr)184 708 Q(oup)-.18 E F0(Group names.)224 708 Q -(May also be speci\214ed as)5 E F12.5 E F0(.)A(GNU Bash 5.0)72 768 -Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(59)185.545 E 0 Cg EP +660 Q F0(Alias names.)224 660 Q(May also be speci\214ed as)5 E F1 +2.5 E F0(.)A F1(arrayv)184 672 Q(ar)-.1 E F0(Array v)224 684 Q +(ariable names.)-.25 E F1(binding)184 696 Q(Readline)224 696 Q F0 -.1 +(ke)2.5 G 2.5(yb)-.05 G(inding names.)-2.5 E F1 -.2(bu)184 708 S(iltin) +.2 E F0(Names of shell b)224 708 Q(uiltin commands.)-.2 E +(May also be speci\214ed as)5 E F12.5 E F0(.)A(GNU Bash 5.0)72 768 +Q(2020 January 29)141.79 E(59)190.95 E 0 Cg EP %%Page: 60 60 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(helptopic)184 84 Q F0(Help topics as accepted by the)224 96 Q F1 -(help)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(hostname)184 108 Q F0 -(Hostnames, as tak)224 120 Q(en from the \214le speci\214ed by the)-.1 E -/F2 9/Times-Bold@0 SF(HOSTFILE)2.5 E F0(shell v)2.25 E(ariable.)-.25 E -F1(job)184 132 Q F0(Job names, if job control is acti)224 132 Q -.15(ve) --.25 G 5(.M).15 G(ay also be speci\214ed as)-5 E F12.5 E F0(.)A F1 --.1(ke)184 144 S(yw).1 E(ord)-.1 E F0(Shell reserv)224 156 Q(ed w)-.15 E -2.5(ords. May)-.1 F(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1 -(running)184 168 Q F0(Names of running jobs, if job control is acti)224 -168 Q -.15(ve)-.25 G(.).15 E F1(ser)184 180 Q(vice)-.1 E F0 -(Service names.)224 180 Q(May also be speci\214ed as)5 E F12.5 E -F0(.)A F1(setopt)184 192 Q F0 -1.11(Va)224 192 S(lid ar)1.11 E -(guments for the)-.18 E F12.5 E F0(option to the)2.5 E F1(set)2.5 -E F0 -.2(bu)2.5 G(iltin.).2 E F1(shopt)184 204 Q F0 -(Shell option names as accepted by the)224 204 Q F1(shopt)2.5 E F0 -.2 -(bu)2.5 G(iltin.).2 E F1(signal)184 216 Q F0(Signal names.)224 216 Q F1 -(stopped)184 228 Q F0(Names of stopped jobs, if job control is acti)224 -228 Q -.15(ve)-.25 G(.).15 E F1(user)184 240 Q F0(User names.)224 240 Q -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1 -.1(va)184 252 S -(riable).1 E F0(Names of all shell v)224 252 Q 2.5(ariables. May)-.25 F -(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1144 264 Q/F3 -10/Times-Italic@0 SF(command)2.5 E(command)184 276 Q F0 1.056(is e)3.556 +SF(command)184 84 Q F0(Command names.)224 96 Q +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(dir)184 108 Q +(ectory)-.18 E F0(Directory names.)224 120 Q(May also be speci\214ed as) +5 E F12.5 E F0(.)A F1(disabled)184 132 Q F0 +(Names of disabled shell b)224 144 Q(uiltins.)-.2 E F1(enabled)184 156 Q +F0(Names of enabled shell b)224 156 Q(uiltins.)-.2 E F1(export)184 168 Q +F0(Names of e)224 168 Q(xported shell v)-.15 E 2.5(ariables. May)-.25 F +(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1(\214le)184 180 Q +F0(File names.)224 180 Q(May also be speci\214ed as)5 E F12.5 E F0 +(.)A F1(function)184 192 Q F0(Names of shell functions.)224 204 Q F1(gr) +184 216 Q(oup)-.18 E F0(Group names.)224 216 Q +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(helptopic)184 +228 Q F0(Help topics as accepted by the)224 240 Q F1(help)2.5 E F0 -.2 +(bu)2.5 G(iltin.).2 E F1(hostname)184 252 Q F0(Hostnames, as tak)224 264 +Q(en from the \214le speci\214ed by the)-.1 E/F2 9/Times-Bold@0 SF +(HOSTFILE)2.5 E F0(shell v)2.25 E(ariable.)-.25 E F1(job)184 276 Q F0 +(Job names, if job control is acti)224 276 Q -.15(ve)-.25 G 5(.M).15 G +(ay also be speci\214ed as)-5 E F12.5 E F0(.)A F1 -.1(ke)184 288 S +(yw).1 E(ord)-.1 E F0(Shell reserv)224 300 Q(ed w)-.15 E 2.5(ords. May) +-.1 F(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1(running)184 +312 Q F0(Names of running jobs, if job control is acti)224 312 Q -.15 +(ve)-.25 G(.).15 E F1(ser)184 324 Q(vice)-.1 E F0(Service names.)224 324 +Q(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(setopt)184 336 +Q F0 -1.11(Va)224 336 S(lid ar)1.11 E(guments for the)-.18 E F12.5 +E F0(option to the)2.5 E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1 +(shopt)184 348 Q F0(Shell option names as accepted by the)224 348 Q F1 +(shopt)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(signal)184 360 Q F0 +(Signal names.)224 360 Q F1(stopped)184 372 Q F0 +(Names of stopped jobs, if job control is acti)224 372 Q -.15(ve)-.25 G +(.).15 E F1(user)184 384 Q F0(User names.)224 384 Q +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1 -.1(va)184 396 S +(riable).1 E F0(Names of all shell v)224 396 Q 2.5(ariables. May)-.25 F +(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1144 408 Q/F3 +10/Times-Italic@0 SF(command)2.5 E(command)184 420 Q F0 1.056(is e)3.556 F -.15(xe)-.15 G 1.056(cuted in a subshell en).15 F 1.056 (vironment, and its output is used as the possible)-.4 F(completions.) -184 288 Q F1144 300 Q F3(function)2.5 E F0 .113 -(The shell function)184 312 R F3(function)2.614 E F0 .114(is e)2.614 F +184 432 Q F1144 444 Q F3(function)2.5 E F0 .113 +(The shell function)184 456 R F3(function)2.614 E F0 .114(is e)2.614 F -.15(xe)-.15 G .114(cuted in the current shell en).15 F 2.614 -(vironment. When)-.4 F .114(the func-)2.614 F .817(tion is e)184 324 R +(vironment. When)-.4 F .114(the func-)2.614 F .817(tion is e)184 468 R -.15(xe)-.15 G .817(cuted, the \214rst ar).15 F .817(gument \()-.18 F F1 ($1)A F0 3.316(\)i)C 3.316(st)-3.316 G .816 (he name of the command whose ar)-3.316 F(guments)-.18 E 1.407 -(are being completed, the second ar)184 336 R 1.407(gument \()-.18 F F1 +(are being completed, the second ar)184 480 R 1.407(gument \()-.18 F F1 ($2)A F0 3.907(\)i)C 3.907(st)-3.907 G 1.407(he w)-3.907 F 1.407 -(ord being completed, and the)-.1 F .104(third ar)184 348 R .104 +(ord being completed, and the)-.1 F .104(third ar)184 492 R .104 (gument \()-.18 F F1($3)A F0 2.604(\)i)C 2.604(st)-2.604 G .104(he w) -2.604 F .104(ord preceding the w)-.1 F .103 -(ord being completed on the current com-)-.1 F .101(mand line.)184 360 R +(ord being completed on the current com-)-.1 F .101(mand line.)184 504 R .101(When it \214nishes, the possible completions are retrie)5.101 F -.15(ve)-.25 G 2.602(df).15 G .102(rom the v)-2.602 F .102(alue of the) --.25 F F2(COMPREPL)184 372 Q(Y)-.828 E F0(array v)2.25 E(ariable.)-.25 E -F1144 384 Q F3(globpat)2.5 E F0 1.008(The pathname e)184 396 R +-.25 F F2(COMPREPL)184 516 Q(Y)-.828 E F0(array v)2.25 E(ariable.)-.25 E +F1144 528 Q F3(globpat)2.5 E F0 1.008(The pathname e)184 540 R 1.008(xpansion pattern)-.15 F F3(globpat)3.507 E F0 1.007(is e)3.507 F -1.007(xpanded to generate the possible comple-)-.15 F(tions.)184 408 Q -F1144 420 Q F3(pr)2.5 E(e\214x)-.37 E(pr)184 432 Q(e\214x)-.37 E +1.007(xpanded to generate the possible comple-)-.15 F(tions.)184 552 Q +F1144 564 Q F3(pr)2.5 E(e\214x)-.37 E(pr)184 576 Q(e\214x)-.37 E F0 .534(is added at the be)3.034 F .534 (ginning of each possible completion after all other options ha)-.15 F --.15(ve)-.2 G(been applied.)184 444 Q F1144 456 Q F3(suf)2.5 E -<8c78>-.18 E(suf)184 456 Q<8c78>-.18 E F0 +-.15(ve)-.2 G(been applied.)184 588 Q F1144 600 Q F3(suf)2.5 E +<8c78>-.18 E(suf)184 600 Q<8c78>-.18 E F0 (is appended to each possible completion after all other options ha)2.5 -E .3 -.15(ve b)-.2 H(een applied.).15 E F1144 468 Q F3(wor)2.5 E -(dlist)-.37 E F0(The)184 480 Q F3(wor)3.64 E(dlist)-.37 E F0 1.14 +E .3 -.15(ve b)-.2 H(een applied.).15 E F1144 612 Q F3(wor)2.5 E +(dlist)-.37 E F0(The)184 624 Q F3(wor)3.64 E(dlist)-.37 E F0 1.14 (is split using the characters in the)3.64 F F2(IFS)3.64 E F0 1.139 (special v)3.39 F 1.139(ariable as delimiters, and)-.25 F .98 -(each resultant w)184 492 R .98(ord is e)-.1 F 3.481(xpanded. Shell)-.15 +(each resultant w)184 636 R .98(ord is e)-.1 F 3.481(xpanded. Shell)-.15 F .981(quoting is honored within)3.481 F F3(wor)3.481 E(dlist)-.37 E F0 -3.481(,i)C 3.481(no)-3.481 G .981(rder to)-3.481 F(pro)184 504 Q .766 +3.481(,i)C 3.481(no)-3.481 G .981(rder to)-3.481 F(pro)184 648 Q .766 (vide a mechanism for the w)-.15 F .765 (ords to contain shell metacharacters or characters in the)-.1 F -.25 -(va)184 516 S 1.964(lue of).25 F F2(IFS)4.464 E/F4 9/Times-Roman@0 SF(.) +(va)184 660 S 1.964(lue of).25 F F2(IFS)4.464 E/F4 9/Times-Roman@0 SF(.) A F0 1.964 (The possible completions are the members of the resultant list which) -6.464 F(match the w)184 528 Q(ord being completed.)-.1 E F1144 540 -Q F3(\214lterpat)2.5 E(\214lterpat)184 552 Q F0 .456 +6.464 F(match the w)184 672 Q(ord being completed.)-.1 E F1144 684 +Q F3(\214lterpat)2.5 E(\214lterpat)184 696 Q F0 .456 (is a pattern as used for pathname e)2.956 F 2.956(xpansion. It)-.15 F .455(is applied to the list of possible)2.956 F 1.596 -(completions generated by the preceding options and ar)184 564 R 1.596 -(guments, and each completion)-.18 F(matching)184 576 Q F3(\214lterpat) +(completions generated by the preceding options and ar)184 708 R 1.596 +(guments, and each completion)-.18 F(matching)184 720 Q F3(\214lterpat) 3.205 E F0 .705(is remo)3.205 F -.15(ve)-.15 G 3.205(df).15 G .704 (rom the list.)-3.205 F 3.204(Al)5.704 G(eading)-3.204 E F1(!)3.204 E F0 (in)3.204 E F3(\214lterpat)3.204 E F0(ne)3.204 E -.05(ga)-.15 G .704 -(tes the pattern;).05 F(in this case, an)184 588 Q 2.5(yc)-.15 G -(ompletion not matching)-2.5 E F3(\214lterpat)2.5 E F0(is remo)2.5 E --.15(ve)-.15 G(d.).15 E .466(The return v)144 604.8 R .466 -(alue is true unless an in)-.25 F -.25(va)-.4 G .466 -(lid option is supplied, an option other than).25 F F12.967 E F0 -(or)2.967 E F12.967 E F0 .467(is sup-)2.967 F 1.362 -(plied without a)144 616.8 R F3(name)3.862 E F0(ar)3.862 E 1.361 -(gument, an attempt is made to remo)-.18 F 1.661 -.15(ve a c)-.15 H -1.361(ompletion speci\214cation for a).15 F F3(name)144 628.8 Q F0 -(for which no speci\214cation e)2.5 E +(tes the pattern;).05 F(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E +(60)190.95 E 0 Cg EP +%%Page: 61 61 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(in this case, an) +184 84 Q 2.5(yc)-.15 G(ompletion not matching)-2.5 E/F1 10 +/Times-Italic@0 SF(\214lterpat)2.5 E F0(is remo)2.5 E -.15(ve)-.15 G(d.) +.15 E .466(The return v)144 100.8 R .466(alue is true unless an in)-.25 +F -.25(va)-.4 G .466(lid option is supplied, an option other than).25 F +/F2 10/Times-Bold@0 SF2.967 E F0(or)2.967 E F22.967 E F0 +.467(is sup-)2.967 F 1.362(plied without a)144 112.8 R F1(name)3.862 E +F0(ar)3.862 E 1.361(gument, an attempt is made to remo)-.18 F 1.661 -.15 +(ve a c)-.15 H 1.361(ompletion speci\214cation for a).15 F F1(name)144 +124.8 Q F0(for which no speci\214cation e)2.5 E (xists, or an error occurs adding a completion speci\214cation.)-.15 E -F1(compopt)108 645.6 Q F0([)2.5 E F1A F3(option)2.5 E F0 2.5(][)C -F1(\255DEI)-2.5 E F0 2.5(][)C F1(+o)-2.5 E F3(option)2.5 E F0 2.5(][)C -F3(name)-2.5 E F0(])A .447(Modify completion options for each)144 657.6 -R F3(name)2.947 E F0 .447(according to the)2.947 F F3(option)2.947 E F0 +F2(compopt)108 141.6 Q F0([)2.5 E F2A F1(option)2.5 E F0 2.5(][)C +F2(\255DEI)-2.5 E F0 2.5(][)C F2(+o)-2.5 E F1(option)2.5 E F0 2.5(][)C +F1(name)-2.5 E F0(])A .447(Modify completion options for each)144 153.6 +R F1(name)2.947 E F0 .447(according to the)2.947 F F1(option)2.947 E F0 .447(s, or for the currently-e)B -.15(xe)-.15 G(cuting).15 E .726 -(completion if no)144 669.6 R F3(name)3.226 E F0 3.226(sa)C .726 -(re supplied.)-3.226 F .725(If no)5.725 F F3(option)3.225 E F0 3.225(sa) +(completion if no)144 165.6 R F1(name)3.226 E F0 3.226(sa)C .726 +(re supplied.)-3.226 F .725(If no)5.725 F F1(option)3.225 E F0 3.225(sa) C .725(re gi)-3.225 F -.15(ve)-.25 G .725 -(n, display the completion options for).15 F(each)144 681.6 Q F3(name) +(n, display the completion options for).15 F(each)144 177.6 Q F1(name) 3.223 E F0 .723(or the current completion.)3.223 F .724(The possible v) -5.724 F .724(alues of)-.25 F F3(option)3.224 E F0 .724(are those v)3.224 -F .724(alid for the)-.25 F F1(com-)3.224 E(plete)144 693.6 Q F0 -.2(bu) +5.724 F .724(alues of)-.25 F F1(option)3.224 E F0 .724(are those v)3.224 +F .724(alid for the)-.25 F F2(com-)3.224 E(plete)144 189.6 Q F0 -.2(bu) 2.678 G .178(iltin described abo).2 F -.15(ve)-.15 G 5.178(.T).15 G(he) --5.178 E F12.678 E F0 .178 +-5.178 E F22.678 E F0 .178 (option indicates that other supplied options should apply to)2.678 F -1.227(the `)144 705.6 R(`def)-.74 E(ault')-.1 E 3.727('c)-.74 G 1.228(o\ +1.227(the `)144 201.6 R(`def)-.74 E(ault')-.1 E 3.727('c)-.74 G 1.228(o\ mmand completion; that is, completion attempted on a command for which \ -no)-3.727 F 2.039(completion has pre)144 717.6 R 2.039 -(viously been de\214ned.)-.25 F(The)7.038 E F14.538 E F0 2.038 +no)-3.727 F 2.039(completion has pre)144 213.6 R 2.039 +(viously been de\214ned.)-.25 F(The)7.038 E F24.538 E F0 2.038 (option indicates that other supplied options)4.538 F 1.538 -(should apply to `)144 729.6 R(`empty')-.74 E 4.038('c)-.74 G 1.539 +(should apply to `)144 225.6 R(`empty')-.74 E 4.038('c)-.74 G 1.539 (ommand completion; that is, completion attempted on a blank line.) --4.038 F(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26) -.15 E(60)185.545 E 0 Cg EP -%%Page: 61 61 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(The)144 84 Q/F1 10 -/Times-Bold@0 SF3.02 E F0 .52(option indicates that other supplie\ -d options should apply to completion on the initial non-)3.02 F .867 -(assignment w)144 96 R .868 -(ord on the line, or after a command delimiter such as)-.1 F F1(;)3.368 -E F0(or)3.368 E F1(|)3.368 E F0 3.368(,w)C .868(hich is usually com-) --3.368 F(mand name completion.)144 108 Q .432(The return v)144 132 R +-4.038 F(The)144 237.6 Q F23.02 E F0 .52(option indicates that ot\ +her supplied options should apply to completion on the initial non-)3.02 +F .867(assignment w)144 249.6 R .868 +(ord on the line, or after a command delimiter such as)-.1 F F2(;)3.368 +E F0(or)3.368 E F2(|)3.368 E F0 3.368(,w)C .868(hich is usually com-) +-3.368 F(mand name completion.)144 261.6 Q .432(The return v)144 285.6 R .431(alue is true unless an in)-.25 F -.25(va)-.4 G .431 (lid option is supplied, an attempt is made to modify the op-).25 F -(tions for a)144 144 Q/F2 10/Times-Italic@0 SF(name)2.5 E F0 +(tions for a)144 297.6 Q F1(name)2.5 E F0 (for which no completion speci\214cation e)2.5 E -(xists, or an output error occurs.)-.15 E F1(continue)108 160.8 Q F0([) -2.5 E F2(n)A F0(])A .85(Resume the ne)144 172.8 R .85 -(xt iteration of the enclosing)-.15 F F1 -.25(fo)3.35 G(r).25 E F0(,)A -F1(while)3.351 E F0(,)A F1(until)3.351 E F0 3.351(,o)C(r)-3.351 E F1 -(select)3.351 E F0 3.351(loop. If)3.351 F F2(n)3.711 E F0 .851 -(is speci\214ed, re-)3.591 F .204(sume at the)144 184.8 R F2(n)2.704 E -F0 .204(th enclosing loop.)B F2(n)5.564 E F0 .204(must be)2.944 F/F3 10 -/Symbol SF2.704 E F0 2.703(1. If)2.704 F F2(n)3.063 E F0 .203 +(xists, or an output error occurs.)-.15 E F2(continue)108 314.4 Q F0([) +2.5 E F1(n)A F0(])A .85(Resume the ne)144 326.4 R .85 +(xt iteration of the enclosing)-.15 F F2 -.25(fo)3.35 G(r).25 E F0(,)A +F2(while)3.351 E F0(,)A F2(until)3.351 E F0 3.351(,o)C(r)-3.351 E F2 +(select)3.351 E F0 3.351(loop. If)3.351 F F1(n)3.711 E F0 .851 +(is speci\214ed, re-)3.591 F .204(sume at the)144 338.4 R F1(n)2.704 E +F0 .204(th enclosing loop.)B F1(n)5.564 E F0 .204(must be)2.944 F/F3 10 +/Symbol SF2.704 E F0 2.703(1. If)2.704 F F1(n)3.063 E F0 .203 (is greater than the number of enclosing loops,)2.943 F 1.183 -(the last enclosing loop \(the `)144 196.8 R(`top-le)-.74 E -.15(ve)-.25 +(the last enclosing loop \(the `)144 350.4 R(`top-le)-.74 E -.15(ve)-.25 G(l').15 E 3.683('l)-.74 G 1.183(oop\) is resumed.)-3.683 F 1.184 -(The return v)6.184 F 1.184(alue is 0 unless)-.25 F F2(n)3.684 E F0 -1.184(is not)3.684 F(greater than or equal to 1.)144 208.8 Q F1(declar) -108 225.6 Q(e)-.18 E F0([)2.5 E F1(\255aAfFgilnrtux)A F0 2.5(][)C F1 --2.5 E F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C -(..])-2.5 E F1(typeset)108 237.6 Q F0([)2.5 E F1(\255aAfFgilnrtux)A F0 -2.5(][)C F1-2.5 E F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 -2.5(].)C(..])-2.5 E 1.265(Declare v)144 249.6 R 1.265 +(The return v)6.184 F 1.184(alue is 0 unless)-.25 F F1(n)3.684 E F0 +1.184(is not)3.684 F(greater than or equal to 1.)144 362.4 Q F2(declar) +108 379.2 Q(e)-.18 E F0([)2.5 E F2(\255aAfFgilnrtux)A F0 2.5(][)C F2 +-2.5 E F0 2.5(][)C F1(name)-2.5 E F0([=)A F1(value)A F0 2.5(].)C +(..])-2.5 E F2(typeset)108 391.2 Q F0([)2.5 E F2(\255aAfFgilnrtux)A F0 +2.5(][)C F2-2.5 E F0 2.5(][)C F1(name)-2.5 E F0([=)A F1(value)A F0 +2.5(].)C(..])-2.5 E 1.265(Declare v)144 403.2 R 1.265 (ariables and/or gi)-.25 F 1.565 -.15(ve t)-.25 H 1.265(hem attrib).15 F -3.765(utes. If)-.2 F(no)3.765 E F2(name)3.765 E F0 3.765(sa)C 1.265 +3.765(utes. If)-.2 F(no)3.765 E F1(name)3.765 E F0 3.765(sa)C 1.265 (re gi)-3.765 F -.15(ve)-.25 G 3.764(nt).15 G 1.264(hen display the v) --3.764 F 1.264(alues of)-.25 F -.25(va)144 261.6 S 3.46(riables. The).25 -F F13.46 E F0 .96(option will display the attrib)3.46 F .96 -(utes and v)-.2 F .96(alues of each)-.25 F F2(name)3.82 E F0 5.96(.W).18 -G(hen)-5.96 E F13.46 E F0 .96(is used)3.46 F(with)144 273.6 Q F2 +-3.764 F 1.264(alues of)-.25 F -.25(va)144 415.2 S 3.46(riables. The).25 +F F23.46 E F0 .96(option will display the attrib)3.46 F .96 +(utes and v)-.2 F .96(alues of each)-.25 F F1(name)3.82 E F0 5.96(.W).18 +G(hen)-5.96 E F23.46 E F0 .96(is used)3.46 F(with)144 427.2 Q F1 (name)2.775 E F0(ar)2.775 E .275 -(guments, additional options, other than)-.18 F F12.775 E F0(and) -2.775 E F12.775 E F0 2.775(,a)C .274(re ignored.)-2.775 F(When) -5.274 E F12.774 E F0 .274(is supplied)2.774 F(without)144 285.6 Q -F2(name)3.789 E F0(ar)3.789 E 1.289(guments, it will display the attrib) +(guments, additional options, other than)-.18 F F22.775 E F0(and) +2.775 E F22.775 E F0 2.775(,a)C .274(re ignored.)-2.775 F(When) +5.274 E F22.774 E F0 .274(is supplied)2.774 F(without)144 439.2 Q +F1(name)3.789 E F0(ar)3.789 E 1.289(guments, it will display the attrib) -.18 F 1.289(utes and v)-.2 F 1.29(alues of all v)-.25 F 1.29 -(ariables ha)-.25 F 1.29(ving the at-)-.2 F(trib)144 297.6 Q .38 +(ariables ha)-.25 F 1.29(ving the at-)-.2 F(trib)144 451.2 Q .38 (utes speci\214ed by the additional options.)-.2 F .38 -(If no other options are supplied with)5.38 F F12.88 E F0(,)A F1 +(If no other options are supplied with)5.38 F F22.88 E F0(,)A F2 (declar)2.88 E(e)-.18 E F0(will)2.88 E 1.106(display the attrib)144 -309.6 R 1.106(utes and v)-.2 F 1.106(alues of all shell v)-.25 F 3.606 -(ariables. The)-.25 F F13.606 E F0 1.107 +463.2 R 1.106(utes and v)-.2 F 1.106(alues of all shell v)-.25 F 3.606 +(ariables. The)-.25 F F23.606 E F0 1.107 (option will restrict the display to)3.606 F .3(shell functions.)144 -321.6 R(The)5.3 E F12.8 E F0 .299(option inhibits the display of \ +475.2 R(The)5.3 E F22.8 E F0 .299(option inhibits the display of \ function de\214nitions; only the function name)2.8 F 1.54(and attrib)144 -333.6 R 1.54(utes are printed.)-.2 F 1.54(If the)6.54 F F1(extdeb)4.04 E -(ug)-.2 E F0 1.54(shell option is enabled using)4.04 F F1(shopt)4.04 E +487.2 R 1.54(utes are printed.)-.2 F 1.54(If the)6.54 F F2(extdeb)4.04 E +(ug)-.2 E F0 1.54(shell option is enabled using)4.04 F F2(shopt)4.04 E F0 4.04(,t)C 1.54(he source \214le)-4.04 F .648 -(name and line number where each)144 345.6 R F2(name)3.148 E F0 .648 -(is de\214ned are displayed as well.)3.148 F(The)5.648 E F13.148 E -F0 .648(option implies)3.148 F F1144 357.6 Q F0 5.836(.T)C(he) --5.836 E F13.336 E F0 .836(option forces v)3.336 F .837 +(name and line number where each)144 499.2 R F1(name)3.148 E F0 .648 +(is de\214ned are displayed as well.)3.148 F(The)5.648 E F23.148 E +F0 .648(option implies)3.148 F F2144 511.2 Q F0 5.836(.T)C(he) +-5.836 E F23.336 E F0 .836(option forces v)3.336 F .837 (ariables to be created or modi\214ed at the global scope, e)-.25 F -.15 -(ve)-.25 G 3.337(nw).15 G(hen)-3.337 E F1(de-)3.337 E(clar)144 369.6 Q +(ve)-.25 G 3.337(nw).15 G(hen)-3.337 E F2(de-)3.337 E(clar)144 523.2 Q (e)-.18 E F0 .223(is e)2.723 F -.15(xe)-.15 G .223 (cuted in a shell function.).15 F .223 (It is ignored in all other cases.)5.223 F .222(The follo)5.223 F .222 -(wing options can be)-.25 F(used to restrict output to v)144 381.6 Q +(wing options can be)-.25 F(used to restrict output to v)144 535.2 Q (ariables with the speci\214ed attrib)-.25 E(ute or to gi)-.2 E .3 -.15 -(ve v)-.25 H(ariables attrib)-.1 E(utes:)-.2 E F1144 393.6 Q F0 -(Each)180 393.6 Q F2(name)2.5 E F0(is an inde)2.5 E -.15(xe)-.15 G 2.5 -(da).15 G(rray v)-2.5 E(ariable \(see)-.25 E F1(Arrays)2.5 E F0(abo)2.5 -E -.15(ve)-.15 G(\).).15 E F1144 405.6 Q F0(Each)180 405.6 Q F2 +(ve v)-.25 H(ariables attrib)-.1 E(utes:)-.2 E F2144 547.2 Q F0 +(Each)180 547.2 Q F1(name)2.5 E F0(is an inde)2.5 E -.15(xe)-.15 G 2.5 +(da).15 G(rray v)-2.5 E(ariable \(see)-.25 E F2(Arrays)2.5 E F0(abo)2.5 +E -.15(ve)-.15 G(\).).15 E F2144 559.2 Q F0(Each)180 559.2 Q F1 (name)2.5 E F0(is an associati)2.5 E .3 -.15(ve a)-.25 H(rray v).15 E -(ariable \(see)-.25 E F1(Arrays)2.5 E F0(abo)2.5 E -.15(ve)-.15 G(\).) -.15 E F1144 417.6 Q F0(Use function names only)180 417.6 Q(.)-.65 -E F1144 429.6 Q F0 .557(The v)180 429.6 R .558 +(ariable \(see)-.25 E F2(Arrays)2.5 E F0(abo)2.5 E -.15(ve)-.15 G(\).) +.15 E F2144 571.2 Q F0(Use function names only)180 571.2 Q(.)-.65 +E F2144 583.2 Q F0 .557(The v)180 583.2 R .558 (ariable is treated as an inte)-.25 F .558(ger; arithmetic e)-.15 F -.25 (va)-.25 G .558(luation \(see).25 F/F4 9/Times-Bold@0 SF .558 -(ARITHMETIC EV)3.058 F(ALU)-1.215 E(A-)-.54 E(TION)180 441.6 Q F0(abo) +(ARITHMETIC EV)3.058 F(ALU)-1.215 E(A-)-.54 E(TION)180 595.2 Q F0(abo) 2.25 E -.15(ve)-.15 G 2.5(\)i).15 G 2.5(sp)-2.5 G(erformed when the v) --2.5 E(ariable is assigned a v)-.25 E(alue.)-.25 E F1144 453.6 Q -F0 .91(When the v)180 453.6 R .909(ariable is assigned a v)-.25 F .909 +-2.5 E(ariable is assigned a v)-.25 E(alue.)-.25 E F2144 607.2 Q +F0 .91(When the v)180 607.2 R .909(ariable is assigned a v)-.25 F .909 (alue, all upper)-.25 F .909(-case characters are con)-.2 F -.15(ve)-.4 -G .909(rted to lo).15 F(wer)-.25 E(-)-.2 E 2.5(case. The)180 465.6 R -(upper)2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1144 477.6 -Q F0(Gi)180 477.6 Q 1.619 -.15(ve e)-.25 H(ach).15 E F2(name)3.819 E F0 -(the)3.819 E F2(namer)3.819 E(ef)-.37 E F0(attrib)3.819 E 1.319 +G .909(rted to lo).15 F(wer)-.25 E(-)-.2 E 2.5(case. The)180 619.2 R +(upper)2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E F2144 631.2 +Q F0(Gi)180 631.2 Q 1.619 -.15(ve e)-.25 H(ach).15 E F1(name)3.819 E F0 +(the)3.819 E F1(namer)3.819 E(ef)-.37 E F0(attrib)3.819 E 1.319 (ute, making it a name reference to another v)-.2 F(ariable.)-.25 E .478 -(That other v)180 489.6 R .478(ariable is de\214ned by the v)-.25 F .478 -(alue of)-.25 F F2(name)2.978 E F0 5.478(.A)C .478 -(ll references, assignments, and at-)-5.478 F(trib)180 501.6 Q .781 -(ute modi\214cations to)-.2 F F2(name)3.281 E F0 3.281(,e)C .782 -(xcept those using or changing the)-3.431 F F13.282 E F0(attrib) -3.282 E .782(ute itself, are)-.2 F .809(performed on the v)180 513.6 R -.809(ariable referenced by)-.25 F F2(name)3.308 E F0 1.908 -.55('s v)D +(That other v)180 643.2 R .478(ariable is de\214ned by the v)-.25 F .478 +(alue of)-.25 F F1(name)2.978 E F0 5.478(.A)C .478 +(ll references, assignments, and at-)-5.478 F(trib)180 655.2 Q .781 +(ute modi\214cations to)-.2 F F1(name)3.281 E F0 3.281(,e)C .782 +(xcept those using or changing the)-3.431 F F23.282 E F0(attrib) +3.282 E .782(ute itself, are)-.2 F .809(performed on the v)180 667.2 R +.809(ariable referenced by)-.25 F F1(name)3.308 E F0 1.908 -.55('s v)D 3.308(alue. The).3 F .808(nameref attrib)3.308 F .808(ute cannot be)-.2 -F(applied to array v)180 525.6 Q(ariables.)-.25 E F1144 537.6 Q F0 -(Mak)180 537.6 Q(e)-.1 E F2(name)3.654 E F0 3.654(sr)C(eadonly)-3.654 E +F(applied to array v)180 679.2 Q(ariables.)-.25 E F2144 691.2 Q F0 +(Mak)180 691.2 Q(e)-.1 E F1(name)3.654 E F0 3.654(sr)C(eadonly)-3.654 E 6.154(.T)-.65 G 1.154(hese names cannot then be assigned v)-6.154 F 1.155(alues by subsequent as-)-.25 F(signment statements or unset.)180 -549.6 Q F1144 561.6 Q F0(Gi)180 561.6 Q .73 -.15(ve e)-.25 H(ach) -.15 E F2(name)2.93 E F0(the)2.929 E F2(tr)2.929 E(ace)-.15 E F0(attrib) -2.929 E 2.929(ute. T)-.2 F .429(raced functions inherit the)-.35 F F1 -(DEB)2.929 E(UG)-.1 E F0(and)2.929 E F1(RETURN)2.929 E F0 -(traps from the calling shell.)180 573.6 Q(The trace attrib)5 E -(ute has no special meaning for v)-.2 E(ariables.)-.25 E F1144 -585.6 Q F0 .909(When the v)180 585.6 R .909(ariable is assigned a v)-.25 -F .909(alue, all lo)-.25 F(wer)-.25 E .909(-case characters are con)-.2 -F -.15(ve)-.4 G .91(rted to upper).15 F(-)-.2 E 2.5(case. The)180 597.6 -R(lo)2.5 E(wer)-.25 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1 -144 609.6 Q F0(Mark)180 609.6 Q F2(name)2.5 E F0 2.5(sf)C(or e)-2.5 E +703.2 Q F2144 715.2 Q F0(Gi)180 715.2 Q .73 -.15(ve e)-.25 H(ach) +.15 E F1(name)2.93 E F0(the)2.929 E F1(tr)2.929 E(ace)-.15 E F0(attrib) +2.929 E 2.929(ute. T)-.2 F .429(raced functions inherit the)-.35 F F2 +(DEB)2.929 E(UG)-.1 E F0(and)2.929 E F2(RETURN)2.929 E F0 +(traps from the calling shell.)180 727.2 Q(The trace attrib)5 E +(ute has no special meaning for v)-.2 E(ariables.)-.25 E(GNU Bash 5.0)72 +768 Q(2020 January 29)141.79 E(61)190.95 E 0 Cg EP +%%Page: 62 62 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF144 84 Q F0 .909(When the v)180 84 R .909 +(ariable is assigned a v)-.25 F .909(alue, all lo)-.25 F(wer)-.25 E .909 +(-case characters are con)-.2 F -.15(ve)-.4 G .91(rted to upper).15 F(-) +-.2 E 2.5(case. The)180 96 R(lo)2.5 E(wer)-.25 E(-case attrib)-.2 E +(ute is disabled.)-.2 E F1144 108 Q F0(Mark)180 108 Q/F2 10 +/Times-Italic@0 SF(name)2.5 E F0 2.5(sf)C(or e)-2.5 E (xport to subsequent commands via the en)-.15 E(vironment.)-.4 E .144 -(Using `+' instead of `\255' turns of)144 626.4 R 2.643(ft)-.25 G .143 +(Using `+' instead of `\255' turns of)144 124.8 R 2.643(ft)-.25 G .143 (he attrib)-2.643 F .143(ute instead, with the e)-.2 F .143 (xceptions that)-.15 F F1(+a)2.643 E F0(and)2.643 E F1(+A)2.643 E F0 -.143(may not)2.643 F .578(be used to destro)144 638.4 R 3.079(ya)-.1 G +.143(may not)2.643 F .578(be used to destro)144 136.8 R 3.079(ya)-.1 G .579(rray v)-3.079 F .579(ariables and)-.25 F F1(+r)3.079 E F0 .579 (will not remo)3.079 F .879 -.15(ve t)-.15 H .579(he readonly attrib).15 -F 3.079(ute. When)-.2 F .579(used in a)3.079 F(function,)144 650.4 Q F1 +F 3.079(ute. When)-.2 F .579(used in a)3.079 F(function,)144 148.8 Q F1 (declar)3.544 E(e)-.18 E F0(and)3.544 E F1(typeset)3.544 E F0(mak)3.544 E 3.544(ee)-.1 G(ach)-3.544 E F2(name)3.543 E F0 1.043 (local, as with the)3.543 F F1(local)3.543 E F0 1.043 (command, unless the)3.543 F F13.543 E F0 1.205 -(option is supplied.)144 662.4 R 1.205(If a v)6.205 F 1.205 +(option is supplied.)144 160.8 R 1.205(If a v)6.205 F 1.205 (ariable name is follo)-.25 F 1.205(wed by =)-.25 F F2(value)A F0 3.705 (,t)C 1.205(he v)-3.705 F 1.205(alue of the v)-.25 F 1.205 -(ariable is set to)-.25 F F2(value)144 674.4 Q F0 5.218(.W)C .218 +(ariable is set to)-.25 F F2(value)144 172.8 Q F0 5.218(.W)C .218 (hen using)-5.218 F F12.718 E F0(or)2.718 E F12.718 E F0 .217(and the compound assignment syntax to create array v)2.717 F .217 -(ariables, addi-)-.25 F .882(tional attrib)144 686.4 R .882 +(ariables, addi-)-.25 F .882(tional attrib)144 184.8 R .882 (utes do not tak)-.2 F 3.382(ee)-.1 G -.25(ff)-3.382 G .882 (ect until subsequent assignments.).25 F .882(The return v)5.882 F .882 -(alue is 0 unless an)-.25 F(in)144 698.4 Q -.25(va)-.4 G .366(lid optio\ +(alue is 0 unless an)-.25 F(in)144 196.8 Q -.25(va)-.4 G .366(lid optio\ n is encountered, an attempt is made to de\214ne a function using).25 F -/F5 10/Courier@0 SF .365(\255f foo=bar)2.865 F F0 2.865(,a)C 2.865(na) --2.865 G(t-)-2.865 E .548(tempt is made to assign a v)144 710.4 R .548 +/F3 10/Courier@0 SF .365(\255f foo=bar)2.865 F F0 2.865(,a)C 2.865(na) +-2.865 G(t-)-2.865 E .548(tempt is made to assign a v)144 208.8 R .548 (alue to a readonly v)-.25 F .549 (ariable, an attempt is made to assign a v)-.25 F .549(alue to an)-.25 F -1.749(array v)144 722.4 R 1.749 +1.749(array v)144 220.8 R 1.749 (ariable without using the compound assignment syntax \(see)-.25 F F1 (Arrays)4.248 E F0(abo)4.248 E -.15(ve)-.15 G 1.748(\), one of the).15 F -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(61)185.545 E 0 Cg EP -%%Page: 62 62 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10 -/Times-Italic@0 SF(names)144 84 Q F0 .359(is not a v)2.858 F .359 -(alid shell v)-.25 F .359(ariable name, an attempt is made to turn of) --.25 F 2.859(fr)-.25 G .359(eadonly status for a read-)-2.859 F 1.213 -(only v)144 96 R 1.213(ariable, an attempt is made to turn of)-.25 F -3.713(fa)-.25 G 1.213(rray status for an array v)-3.713 F 1.212 -(ariable, or an attempt is)-.25 F(made to display a non-e)144 108 Q -(xistent function with)-.15 E/F2 10/Times-Bold@0 SF2.5 E F0(.)A F2 -(dirs [\255clpv] [+)108 124.8 Q F1(n)A F2 2.5(][)C-2.5 E F1(n)A F2 -(])A F0 -.4(Wi)144 136.8 S .328 +F2(names)144 232.8 Q F0 .359(is not a v)2.858 F .359(alid shell v)-.25 F +.359(ariable name, an attempt is made to turn of)-.25 F 2.859(fr)-.25 G +.359(eadonly status for a read-)-2.859 F 1.213(only v)144 244.8 R 1.213 +(ariable, an attempt is made to turn of)-.25 F 3.713(fa)-.25 G 1.213 +(rray status for an array v)-3.713 F 1.212(ariable, or an attempt is) +-.25 F(made to display a non-e)144 256.8 Q(xistent function with)-.15 E +F12.5 E F0(.)A F1(dirs [\255clpv] [+)108 273.6 Q F2(n)A F1 2.5(][) +C-2.5 E F2(n)A F1(])A F0 -.4(Wi)144 285.6 S .328 (thout options, displays the list of currently remembered directories.) .4 F .329(The def)5.329 F .329(ault display is on a)-.1 F 1.238 -(single line with directory names separated by spaces.)144 148.8 R 1.238 -(Directories are added to the list with the)6.238 F F2(pushd)144 160.8 Q -F0 .927(command; the)3.427 F F2(popd)3.428 E F0 .928(command remo)3.428 +(single line with directory names separated by spaces.)144 297.6 R 1.238 +(Directories are added to the list with the)6.238 F F1(pushd)144 309.6 Q +F0 .927(command; the)3.427 F F1(popd)3.428 E F0 .928(command remo)3.428 F -.15(ve)-.15 G 3.428(se).15 G .928(ntries from the list.)-3.428 F .928 -(The current directory is al-)5.928 F -.1(wa)144 172.8 S -(ys the \214rst directory in the stack.).1 E F2144 184.8 Q F0 -(Clears the directory stack by deleting all of the entries.)180 184.8 Q -F2144 196.8 Q F0 .882 -(Produces a listing using full pathnames; the def)180 196.8 R .881 +(The current directory is al-)5.928 F -.1(wa)144 321.6 S +(ys the \214rst directory in the stack.).1 E F1144 333.6 Q F0 +(Clears the directory stack by deleting all of the entries.)180 333.6 Q +F1144 345.6 Q F0 .882 +(Produces a listing using full pathnames; the def)180 345.6 R .881 (ault listing format uses a tilde to denote)-.1 F(the home directory)180 -208.8 Q(.)-.65 E F2144 220.8 Q F0 -(Print the directory stack with one entry per line.)180 220.8 Q F2 -144 232.8 Q F0 .272(Print the directory stack with one entry per line, \ -pre\214xing each entry with its inde)180 232.8 R 2.773(xi)-.15 G 2.773 -(nt)-2.773 G(he)-2.773 E(stack.)180 244.8 Q F2(+)144 256.8 Q F1(n)A F0 -1.565(Displays the)180 256.8 R F1(n)4.065 E F0 1.565 -(th entry counting from the left of the list sho)B 1.564(wn by)-.25 F F2 +357.6 Q(.)-.65 E F1144 369.6 Q F0 +(Print the directory stack with one entry per line.)180 369.6 Q F1 +144 381.6 Q F0 .272(Print the directory stack with one entry per line, \ +pre\214xing each entry with its inde)180 381.6 R 2.773(xi)-.15 G 2.773 +(nt)-2.773 G(he)-2.773 E(stack.)180 393.6 Q F1(+)144 405.6 Q F2(n)A F0 +1.565(Displays the)180 405.6 R F2(n)4.065 E F0 1.565 +(th entry counting from the left of the list sho)B 1.564(wn by)-.25 F F1 (dirs)4.064 E F0 1.564(when in)4.064 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E -(without options, starting with zero.)180 268.8 Q F2144 280.8 Q F1 -(n)A F0 1.194(Displays the)180 280.8 R F1(n)3.694 E F0 1.194 +(without options, starting with zero.)180 417.6 Q F1144 429.6 Q F2 +(n)A F0 1.194(Displays the)180 429.6 R F2(n)3.694 E F0 1.194 (th entry counting from the right of the list sho)B 1.194(wn by)-.25 F -F2(dirs)3.694 E F0 1.194(when in)3.694 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E -(without options, starting with zero.)180 292.8 Q .258(The return v)144 -309.6 R .258(alue is 0 unless an in)-.25 F -.25(va)-.4 G .258 -(lid option is supplied or).25 F F1(n)2.758 E F0(inde)2.758 E -.15(xe) +F1(dirs)3.694 E F0 1.194(when in)3.694 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E +(without options, starting with zero.)180 441.6 Q .258(The return v)144 +458.4 R .258(alue is 0 unless an in)-.25 F -.25(va)-.4 G .258 +(lid option is supplied or).25 F F2(n)2.758 E F0(inde)2.758 E -.15(xe) -.15 G 2.758(sb).15 G -.15(ey)-2.758 G .258(ond the end of the direc-) -.15 F(tory stack.)144 321.6 Q F2(diso)108 338.4 Q(wn)-.1 E F0([)2.5 E F2 -(\255ar)A F0 2.5(][)C F2-2.5 E F0 2.5(][)C F1(jobspec)-2.5 E F0 -(... |)2.5 E F1(pid)2.5 E F0(... ])2.5 E -.4(Wi)144 350.4 S .121 -(thout options, remo).4 F .422 -.15(ve e)-.15 H(ach).15 E F1(jobspec) +.15 F(tory stack.)144 470.4 Q F1(diso)108 487.2 Q(wn)-.1 E F0([)2.5 E F1 +(\255ar)A F0 2.5(][)C F1-2.5 E F0 2.5(][)C F2(jobspec)-2.5 E F0 +(... |)2.5 E F2(pid)2.5 E F0(... ])2.5 E -.4(Wi)144 499.2 S .121 +(thout options, remo).4 F .422 -.15(ve e)-.15 H(ach).15 E F2(jobspec) 4.362 E F0 .122(from the table of acti)2.932 F .422 -.15(ve j)-.25 H -2.622(obs. If).15 F F1(jobspec)4.362 E F0 .122(is not present, and)2.932 -F .096(neither the)144 362.4 R F22.596 E F0 .096(nor the)2.596 F -F22.596 E F0 .096(option is supplied, the)2.596 F F1(curr)2.596 E -.096(ent job)-.37 F F0 .096(is used.)2.596 F .096(If the)5.096 F F2 +2.622(obs. If).15 F F2(jobspec)4.362 E F0 .122(is not present, and)2.932 +F .096(neither the)144 511.2 R F12.596 E F0 .096(nor the)2.596 F +F12.596 E F0 .096(option is supplied, the)2.596 F F2(curr)2.596 E +.096(ent job)-.37 F F0 .096(is used.)2.596 F .096(If the)5.096 F F1 2.596 E F0 .096(option is gi)2.596 F -.15(ve)-.25 G .096(n, each) -.15 F F1(jobspec)145.74 374.4 Q F0 .585(is not remo)3.395 F -.15(ve)-.15 +.15 F F2(jobspec)145.74 523.2 Q F0 .585(is not remo)3.395 F -.15(ve)-.15 G 3.085(df).15 G .585(rom the table, b)-3.085 F .585(ut is mark)-.2 F -.585(ed so that)-.1 F/F3 9/Times-Bold@0 SF(SIGHUP)3.085 E F0 .586 -(is not sent to the job if the)2.835 F .962(shell recei)144 386.4 R -.15 -(ve)-.25 G 3.462(sa).15 G F3(SIGHUP)A/F4 9/Times-Roman@0 SF(.)A F0 .962 -(If no)5.462 F F1(jobspec)5.202 E F0 .962(is supplied, the)3.772 F F2 +.585(ed so that)-.1 F/F4 9/Times-Bold@0 SF(SIGHUP)3.085 E F0 .586 +(is not sent to the job if the)2.835 F .962(shell recei)144 535.2 R -.15 +(ve)-.25 G 3.462(sa).15 G F4(SIGHUP)A/F5 9/Times-Roman@0 SF(.)A F0 .962 +(If no)5.462 F F2(jobspec)5.202 E F0 .962(is supplied, the)3.772 F F1 3.462 E F0 .962(option means to remo)3.462 F 1.262 -.15(ve o)-.15 -H 3.462(rm).15 G .962(ark all)-3.462 F 1.358(jobs; the)144 398.4 R F2 -3.858 E F0 1.358(option without a)3.858 F F1(jobspec)5.598 E F0 +H 3.462(rm).15 G .962(ark all)-3.462 F 1.358(jobs; the)144 547.2 R F1 +3.858 E F0 1.358(option without a)3.858 F F2(jobspec)5.598 E F0 (ar)4.169 E 1.359(gument restricts operation to running jobs.)-.18 F -1.359(The return)6.359 F -.25(va)144 410.4 S(lue is 0 unless a).25 E F1 +1.359(The return)6.359 F -.25(va)144 559.2 S(lue is 0 unless a).25 E F2 (jobspec)4.24 E F0(does not specify a v)2.81 E(alid job)-.25 E(.)-.4 E -F2(echo)108 427.2 Q F0([)2.5 E F2(\255neE)A F0 2.5(][)C F1(ar)-2.5 E(g) --.37 E F0(...])2.5 E .425(Output the)144 439.2 R F1(ar)2.925 E(g)-.37 E -F0 .424(s, separated by spaces, follo)B .424(wed by a ne)-.25 F 2.924 +F1(echo)108 576 Q F0([)2.5 E F1(\255neE)A F0 2.5(][)C F2(ar)-2.5 E(g) +-.37 E F0(...])2.5 E .425(Output the)144 588 R F2(ar)2.925 E(g)-.37 E F0 +.424(s, separated by spaces, follo)B .424(wed by a ne)-.25 F 2.924 (wline. The)-.25 F .424(return status is 0 unless a write)2.924 F .307 -(error occurs.)144 451.2 R(If)5.307 E F22.807 E F0 .307 +(error occurs.)144 600 R(If)5.307 E F12.807 E F0 .307 (is speci\214ed, the trailing ne)2.807 F .308(wline is suppressed.)-.25 -F .308(If the)5.308 F F22.808 E F0 .308(option is gi)2.808 F -.15 +F .308(If the)5.308 F F12.808 E F0 .308(option is gi)2.808 F -.15 (ve)-.25 G .308(n, inter).15 F(-)-.2 E .198(pretation of the follo)144 -463.2 R .198(wing backslash-escaped characters is enabled.)-.25 F(The) -5.198 E F22.698 E F0 .197(option disables the in-)2.697 F .067 -(terpretation of these escape characters, e)144 475.2 R -.15(ve)-.25 G +612 R .198(wing backslash-escaped characters is enabled.)-.25 F(The) +5.198 E F12.698 E F0 .197(option disables the in-)2.697 F .067 +(terpretation of these escape characters, e)144 624 R -.15(ve)-.25 G 2.567(no).15 G 2.567(ns)-2.567 G .067(ystems where the)-2.567 F 2.567 -(ya)-.15 G .067(re interpreted by def)-2.567 F 2.568(ault. The)-.1 F F2 -(xpg_echo)144 487.2 Q F0 .602 +(ya)-.15 G .067(re interpreted by def)-2.567 F 2.568(ault. The)-.1 F F1 +(xpg_echo)144 636 Q F0 .602 (shell option may be used to dynamically determine whether or not)3.102 -F F2(echo)3.101 E F0 -.15(ex)3.101 G .601(pands these).15 F .658 -(escape characters by def)144 499.2 R(ault.)-.1 E F2(echo)5.658 E F0 -.659(does not interpret)3.159 F F23.159 E F0 .659 -(to mean the end of options.)3.159 F F2(echo)5.659 E F0(inter)3.159 E(-) --.2 E(prets the follo)144 511.2 Q(wing escape sequences:)-.25 E F2(\\a) -144 523.2 Q F0(alert \(bell\))180 523.2 Q F2(\\b)144 535.2 Q F0 -(backspace)180 535.2 Q F2(\\c)144 547.2 Q F0(suppress further output)180 -547.2 Q F2(\\e)144 559.2 Q(\\E)144 571.2 Q F0(an escape character)180 -571.2 Q F2(\\f)144 583.2 Q F0(form feed)180 583.2 Q F2(\\n)144 595.2 Q -F0(ne)180 595.2 Q 2.5(wl)-.25 G(ine)-2.5 E F2(\\r)144 607.2 Q F0 -(carriage return)180 607.2 Q F2(\\t)144 619.2 Q F0(horizontal tab)180 -619.2 Q F2(\\v)144 631.2 Q F0 -.15(ve)180 631.2 S(rtical tab).15 E F2 -(\\\\)144 643.2 Q F0(backslash)180 643.2 Q F2(\\0)144 655.2 Q F1(nnn)A -F0(the eight-bit character whose v)180 655.2 Q(alue is the octal v)-.25 -E(alue)-.25 E F1(nnn)2.5 E F0(\(zero to three octal digits\))2.5 E F2 -(\\x)144 667.2 Q F1(HH)A F0(the eight-bit character whose v)180 667.2 Q -(alue is the he)-.25 E(xadecimal v)-.15 E(alue)-.25 E F1(HH)2.5 E F0 -(\(one or tw)2.5 E 2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E F2 -(\\u)144 679.2 Q F1(HHHH)A F0 1.507 -(the Unicode \(ISO/IEC 10646\) character whose v)180 691.2 R 1.506 -(alue is the he)-.25 F 1.506(xadecimal v)-.15 F(alue)-.25 E F1(HHHH) -4.006 E F0(\(one to four he)180 703.2 Q 2.5(xd)-.15 G(igits\))-2.5 E -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(62)185.545 E 0 Cg EP +F F1(echo)3.101 E F0 -.15(ex)3.101 G .601(pands these).15 F .658 +(escape characters by def)144 648 R(ault.)-.1 E F1(echo)5.658 E F0 .659 +(does not interpret)3.159 F F13.159 E F0 .659 +(to mean the end of options.)3.159 F F1(echo)5.659 E F0(inter)3.159 E(-) +-.2 E(prets the follo)144 660 Q(wing escape sequences:)-.25 E F1(\\a)144 +672 Q F0(alert \(bell\))180 672 Q F1(\\b)144 684 Q F0(backspace)180 684 +Q F1(\\c)144 696 Q F0(suppress further output)180 696 Q F1(\\e)144 708 Q +F0(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(62)190.95 E 0 Cg EP %%Page: 63 63 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(\\U)144 84 Q/F2 10/Times-Italic@0 SF(HHHHHHHH)A F0 .547 -(the Unicode \(ISO/IEC 10646\) character whose v)180 96 R .547 +SF(\\E)144 84 Q F0(an escape character)180 84 Q F1(\\f)144 96 Q F0 +(form feed)180 96 Q F1(\\n)144 108 Q F0(ne)180 108 Q 2.5(wl)-.25 G(ine) +-2.5 E F1(\\r)144 120 Q F0(carriage return)180 120 Q F1(\\t)144 132 Q F0 +(horizontal tab)180 132 Q F1(\\v)144 144 Q F0 -.15(ve)180 144 S +(rtical tab).15 E F1(\\\\)144 156 Q F0(backslash)180 156 Q F1(\\0)144 +168 Q/F2 10/Times-Italic@0 SF(nnn)A F0(the eight-bit character whose v) +180 168 Q(alue is the octal v)-.25 E(alue)-.25 E F2(nnn)2.5 E F0 +(\(zero to three octal digits\))2.5 E F1(\\x)144 180 Q F2(HH)A F0 +(the eight-bit character whose v)180 180 Q(alue is the he)-.25 E +(xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0(\(one or tw)2.5 E 2.5(oh) +-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E F1(\\u)144 192 Q F2(HHHH)A F0 +1.507(the Unicode \(ISO/IEC 10646\) character whose v)180 204 R 1.506 +(alue is the he)-.25 F 1.506(xadecimal v)-.15 F(alue)-.25 E F2(HHHH) +4.006 E F0(\(one to four he)180 216 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 +(\\U)144 228 Q F2(HHHHHHHH)A F0 .547 +(the Unicode \(ISO/IEC 10646\) character whose v)180 240 R .547 (alue is the he)-.25 F .548(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-) -3.048 E(HHH)180 108 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G(igits\)) --2.5 E F1(enable)108 124.8 Q F0([)2.5 E F1A F0 2.5(][)C F1 +3.048 E(HHH)180 252 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G(igits\)) +-2.5 E F1(enable)108 268.8 Q F0([)2.5 E F1A F0 2.5(][)C F1 (\255dnps)-2.5 E F0 2.5(][)C F1-2.5 E F2(\214lename)2.5 E F0 2.5 -(][)C F2(name)-2.5 E F0(...])2.5 E .278(Enable and disable b)144 136.8 R +(][)C F2(name)-2.5 E F0(...])2.5 E .278(Enable and disable b)144 280.8 R .278(uiltin shell commands.)-.2 F .278(Disabling a b)5.278 F .278 (uiltin allo)-.2 F .278(ws a disk command which has)-.25 F .833 -(the same name as a shell b)144 148.8 R .834(uiltin to be e)-.2 F -.15 +(the same name as a shell b)144 292.8 R .834(uiltin to be e)-.2 F -.15 (xe)-.15 G .834(cuted without specifying a full pathname, e).15 F -.15 (ve)-.25 G 3.334(nt).15 G(hough)-3.334 E .99 -(the shell normally searches for b)144 160.8 R .989 +(the shell normally searches for b)144 304.8 R .989 (uiltins before disk commands.)-.2 F(If)5.989 E F13.489 E F0 .989 (is used, each)3.489 F F2(name)3.489 E F0 .989(is dis-)3.489 F .648 -(abled; otherwise,)144 172.8 R F2(names)3.148 E F0 .648(are enabled.) +(abled; otherwise,)144 316.8 R F2(names)3.148 E F0 .648(are enabled.) 3.148 F -.15(Fo)5.648 G 3.148(re).15 G .648(xample, to use the)-3.298 F F1(test)3.148 E F0 .648(binary found via the)3.148 F/F3 9/Times-Bold@0 SF -.666(PA)3.148 G(TH)-.189 E F0(in-)2.899 E .539(stead of the shell b) -144 184.8 R .538(uiltin v)-.2 F .538(ersion, run)-.15 F/F4 10/Courier@0 +144 328.8 R .538(uiltin v)-.2 F .538(ersion, run)-.15 F/F4 10/Courier@0 SF .538(enable -n test)3.038 F F0 5.538(.T)C(he)-5.538 E F13.038 E -F0 .538(option means to load the ne)3.038 F(w)-.25 E -.2(bu)144 196.8 S +F0 .538(option means to load the ne)3.038 F(w)-.25 E -.2(bu)144 340.8 S 1.365(iltin command).2 F F2(name)4.225 E F0 1.365(from shared object) 4.045 F F2(\214lename)5.775 E F0 3.865(,o).18 G 3.865(ns)-3.865 G 1.365 -(ystems that support dynamic loading.)-3.865 F(The)144 208.8 Q F1 +(ystems that support dynamic loading.)-3.865 F(The)144 352.8 Q F1 2.867 E F0 .367(option will delete a b)2.867 F .367(uiltin pre)-.2 F .367(viously loaded with)-.25 F F12.866 E F0 5.366(.I)C 2.866(fn) -5.366 G(o)-2.866 E F2(name)2.866 E F0(ar)2.866 E .366(guments are gi) --.18 F -.15(ve)-.25 G .366(n, or).15 F .398(if the)144 220.8 R F1 +-.18 F -.15(ve)-.25 G .366(n, or).15 F .398(if the)144 364.8 R F1 2.898 E F0 .399(option is supplied, a list of shell b)2.899 F .399 (uiltins is printed.)-.2 F -.4(Wi)5.399 G .399(th no other option ar).4 F .399(guments, the)-.18 F .099(list consists of all enabled shell b)144 -232.8 R 2.598(uiltins. If)-.2 F F12.598 E F0 .098 +376.8 R 2.598(uiltins. If)-.2 F F12.598 E F0 .098 (is supplied, only disabled b)2.598 F .098(uiltins are printed.)-.2 F (If)5.098 E F12.598 E F0 .905 -(is supplied, the list printed includes all b)144 244.8 R .905 +(is supplied, the list printed includes all b)144 388.8 R .905 (uiltins, with an indication of whether or not each is en-)-.2 F 2.873 -(abled. If)144 256.8 R F12.873 E F0 .372 +(abled. If)144 400.8 R F12.873 E F0 .372 (is supplied, the output is restricted to the POSIX)2.873 F F2(special) 2.872 E F0 -.2(bu)2.872 G 2.872(iltins. The).2 F .372(return v)2.872 F -.372(alue is)-.25 F 2.5(0u)144 268.8 S(nless a)-2.5 E F2(name)2.86 E F0 +.372(alue is)-.25 F 2.5(0u)144 412.8 S(nless a)-2.5 E F2(name)2.86 E F0 (is not a shell b)2.68 E(uiltin or there is an error loading a ne)-.2 E 2.5(wb)-.25 G(uiltin from a shared object.)-2.7 E F1 -2.3 -.15(ev a)108 -285.6 T(l).15 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(The)144 297.6 +429.6 T(l).15 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(The)144 441.6 Q F2(ar)3.17 E(g)-.37 E F0 3.17(sa)C .671 (re read and concatenated together into a single command.)-3.17 F .671 -(This command is then read)5.671 F .479(and e)144 309.6 R -.15(xe)-.15 G +(This command is then read)5.671 F .479(and e)144 453.6 R -.15(xe)-.15 G .479(cuted by the shell, and its e).15 F .479 (xit status is returned as the v)-.15 F .478(alue of)-.25 F F1 -2.3 -.15 (ev a)2.978 H(l).15 E F0 5.478(.I)C 2.978(ft)-5.478 G .478(here are no) --2.978 F F2(ar)3.308 E(gs)-.37 E F0(,).27 E(or only null ar)144 321.6 Q +-2.978 F F2(ar)3.308 E(gs)-.37 E F0(,).27 E(or only null ar)144 465.6 Q (guments,)-.18 E F1 -2.3 -.15(ev a)2.5 H(l).15 E F0(returns 0.)2.5 E F1 -(exec)108 338.4 Q F0([)2.5 E F1(\255cl)A F0 2.5(][)C F1-2.5 E F2 +(exec)108 482.4 Q F0([)2.5 E F1(\255cl)A F0 2.5(][)C F1-2.5 E F2 (name)2.5 E F0 2.5(][)C F2(command)-2.5 E F0([)2.5 E F2(ar)A(guments) --.37 E F0(]])A(If)144 350.4 Q F2(command)3.005 E F0 .305 +-.37 E F0(]])A(If)144 494.4 Q F2(command)3.005 E F0 .305 (is speci\214ed, it replaces the shell.)3.575 F .305(No ne)5.305 F 2.805 (wp)-.25 G .306(rocess is created.)-2.805 F(The)5.306 E F2(ar)3.136 E -(guments)-.37 E F0(become)3.076 E .177(the ar)144 362.4 R .177 +(guments)-.37 E F0(become)3.076 E .177(the ar)144 506.4 R .177 (guments to)-.18 F F2(command)2.676 E F0 5.176(.I)C 2.676(ft)-5.176 G (he)-2.676 E F12.676 E F0 .176 (option is supplied, the shell places a dash at the be)2.676 F .176 -(ginning of)-.15 F .48(the zeroth ar)144 374.4 R .48(gument passed to) +(ginning of)-.15 F .48(the zeroth ar)144 518.4 R .48(gument passed to) -.18 F F2(command)3.18 E F0 5.48(.T).77 G .48(his is what)-5.48 F F2(lo) 3.07 E(gin)-.1 E F0 .48(\(1\) does.).24 F(The)5.48 E F12.98 E F0 -.48(option causes)2.98 F F2(com-)3.18 E(mand)144 386.4 Q F0 .639 +.48(option causes)2.98 F F2(com-)3.18 E(mand)144 530.4 Q F0 .639 (to be e)3.909 F -.15(xe)-.15 G .638(cuted with an empty en).15 F 3.138 (vironment. If)-.4 F F13.138 E F0 .638 (is supplied, the shell passes)3.138 F F2(name)3.498 E F0 .638(as the) -3.318 F 1.077(zeroth ar)144 398.4 R 1.077(gument to the e)-.18 F -.15 +3.318 F 1.077(zeroth ar)144 542.4 R 1.077(gument to the e)-.18 F -.15 (xe)-.15 G 1.077(cuted command.).15 F(If)6.077 E F2(command)3.777 E F0 1.077(cannot be e)4.347 F -.15(xe)-.15 G 1.077(cuted for some reason, a) -.15 F(non-interacti)144 410.4 Q .877 -.15(ve s)-.25 H .577(hell e).15 F +.15 F(non-interacti)144 554.4 Q .877 -.15(ve s)-.25 H .577(hell e).15 F .577(xits, unless the)-.15 F F1(execfail)3.077 E F0 .577 (shell option is enabled.)3.077 F .576(In that case, it returns f)5.577 -F(ail-)-.1 E 3.32(ure. An)144 422.4 R(interacti)3.32 E 1.12 -.15(ve s) +F(ail-)-.1 E 3.32(ure. An)144 566.4 R(interacti)3.32 E 1.12 -.15(ve s) -.25 H .82(hell returns f).15 F .82(ailure if the \214le cannot be e)-.1 F -.15(xe)-.15 G 3.32(cuted. A).15 F .82(subshell e)3.32 F .82 -(xits uncondi-)-.15 F .288(tionally if)144 434.4 R F1(exec)2.788 E F0 +(xits uncondi-)-.15 F .288(tionally if)144 578.4 R F1(exec)2.788 E F0 -.1(fa)2.788 G 2.788(ils. If).1 F F2(command)2.988 E F0 .288 (is not speci\214ed, an)3.558 F 2.787(yr)-.15 G .287(edirections tak) -2.787 F 2.787(ee)-.1 G -.25(ff)-2.787 G .287(ect in the current shell,) -.25 F(and the return status is 0.)144 446.4 Q +.25 F(and the return status is 0.)144 590.4 Q (If there is a redirection error)5 E 2.5(,t)-.4 G -(he return status is 1.)-2.5 E F1(exit)108 463.2 Q F0([)2.5 E F2(n)A F0 -(])A .095(Cause the shell to e)144 463.2 R .095(xit with a status of) +(he return status is 1.)-2.5 E F1(exit)108 607.2 Q F0([)2.5 E F2(n)A F0 +(])A .095(Cause the shell to e)144 607.2 R .095(xit with a status of) -.15 F F2(n)2.595 E F0 5.095(.I)C(f)-5.095 E F2(n)2.955 E F0 .096 (is omitted, the e)2.835 F .096(xit status is that of the last command) --.15 F -.15(exe)144 475.2 S 2.5(cuted. A).15 F(trap on)2.5 E F3(EXIT)2.5 +-.15 F -.15(exe)144 619.2 S 2.5(cuted. A).15 F(trap on)2.5 E F3(EXIT)2.5 E F0(is e)2.25 E -.15(xe)-.15 G(cuted before the shell terminates.).15 E -F1(export)108 492 Q F0([)2.5 E F1(\255fn)A F0 2.5(][).833 G F2(name)-2.5 -E F0([=)A F2(wor)A(d)-.37 E F0(]] ...)A F1(export \255p)108 504 Q F0 -.257(The supplied)144 516 R F2(names)3.117 E F0 .257(are mark)3.027 F +F1(export)108 636 Q F0([)2.5 E F1(\255fn)A F0 2.5(][).833 G F2(name)-2.5 +E F0([=)A F2(wor)A(d)-.37 E F0(]] ...)A F1(export \255p)108 648 Q F0 +.257(The supplied)144 660 R F2(names)3.117 E F0 .257(are mark)3.027 F .257(ed for automatic e)-.1 F .257(xport to the en)-.15 F .257 (vironment of subsequently e)-.4 F -.15(xe)-.15 G(cuted).15 E 2.626 -(commands. If)144 528 R(the)2.626 E F12.626 E F0 .127 +(commands. If)144 672 R(the)2.626 E F12.626 E F0 .127 (option is gi)2.627 F -.15(ve)-.25 G .127(n, the).15 F F2(names)2.987 E F0 .127(refer to functions.)2.897 F .127(If no)5.127 F F2(names)2.987 E F0 .127(are gi)2.897 F -.15(ve)-.25 G .127(n, or if the).15 F F1 -144 540 Q F0 .048(option is supplied, a list of names of all e)2.548 F +144 684 Q F0 .048(option is supplied, a list of names of all e)2.548 F .048(xported v)-.15 F .048(ariables is printed.)-.25 F(The)5.048 E F1 -2.547 E F0 .047(option causes the)2.547 F -.15(ex)144 552 S 1.446 +2.547 E F0 .047(option causes the)2.547 F -.15(ex)144 696 S 1.446 (port property to be remo).15 F -.15(ve)-.15 G 3.947(df).15 G 1.447 (rom each)-3.947 F F2(name)3.947 E F0 6.447(.I)C 3.947(fav)-6.447 G 1.447(ariable name is follo)-4.197 F 1.447(wed by =)-.25 F F2(wor)A(d) --.37 E F0 3.947(,t)C(he)-3.947 E -.25(va)144 564 S .742(lue of the v).25 +-.37 E F0 3.947(,t)C(he)-3.947 E -.25(va)144 708 S .742(lue of the v).25 F .742(ariable is set to)-.25 F F2(wor)3.242 E(d)-.37 E F0(.)A F1 (export)5.742 E F0 .742(returns an e)3.242 F .741 (xit status of 0 unless an in)-.15 F -.25(va)-.4 G .741(lid option is) -.25 F .031(encountered, one of the)144 576 R F2(names)2.531 E F0 .031 +.25 F .031(encountered, one of the)144 720 R F2(names)2.531 E F0 .031 (is not a v)2.531 F .032(alid shell v)-.25 F .032(ariable name, or)-.25 F F12.532 E F0 .032(is supplied with a)2.532 F F2(name)2.892 E F0 -(that)2.712 E(is not a function.)144 588 Q F1(fc)108 604.8 Q F0([)2.5 E -F1A F2(ename)2.5 E F0 2.5(][)C F1(\255lnr)-2.5 E F0 2.5(][)C F2 -<8c72>-2.5 E(st)-.1 E F0 2.5(][)C F2(last)-2.5 E F0(])A F1(fc \255s)108 -616.8 Q F0([)2.5 E F2(pat)A F0(=)A F2 -.37(re)C(p).37 E F0 2.5(][)C F2 -(cmd)-2.5 E F0(])A .432 -(The \214rst form selects a range of commands from)144 628.8 R F2<8c72> +(that)2.712 E(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(63)190.95 E +0 Cg EP +%%Page: 64 64 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E +(is not a function.)144 84 Q/F1 10/Times-Bold@0 SF(fc)108 100.8 Q F0([) +2.5 E F1A/F2 10/Times-Italic@0 SF(ename)2.5 E F0 2.5(][)C F1 +(\255lnr)-2.5 E F0 2.5(][)C F2<8c72>-2.5 E(st)-.1 E F0 2.5(][)C F2(last) +-2.5 E F0(])A F1(fc \255s)108 112.8 Q F0([)2.5 E F2(pat)A F0(=)A F2 -.37 +(re)C(p).37 E F0 2.5(][)C F2(cmd)-2.5 E F0(])A .432 +(The \214rst form selects a range of commands from)144 124.8 R F2<8c72> 4.842 E(st)-.1 E F0(to)3.612 E F2(last)3.022 E F0 .431 (from the history list and displays or)3.612 F .141(edits and re-e)144 -640.8 R -.15(xe)-.15 G .141(cutes them.).15 F F2 -.45(Fi)5.141 G -.1(rs) +136.8 R -.15(xe)-.15 G .141(cutes them.).15 F F2 -.45(Fi)5.141 G -.1(rs) .45 G(t).1 E F0(and)3.321 E F2(last)2.731 E F0 .141 (may be speci\214ed as a string \(to locate the last command)3.321 F(be) -144 652.8 Q .311(ginning with that string\) or as a number \(an inde) +144 148.8 Q .311(ginning with that string\) or as a number \(an inde) -.15 F 2.811(xi)-.15 G .31(nto the history list, where a ne)-2.811 F -.05(ga)-.15 G(ti).05 E .61 -.15(ve n)-.25 H(umber).15 E .189 -(is used as an of)144 664.8 R .189 +(is used as an of)144 160.8 R .189 (fset from the current command number\).)-.25 F(If)5.189 E F2(last)2.78 E F0 .19(is not speci\214ed, it is set to the cur)3.37 F(-)-.2 E .949 -(rent command for listing \(so that)144 676.8 R F4 .948(fc \255l \25510) -3.448 F F0 .948(prints the last 10 commands\) and to)3.448 F F2<8c72> -5.358 E(st)-.1 E F0(other)4.128 E(-)-.2 E 2.5(wise. If)144 688.8 R F2 -<8c72>4.41 E(st)-.1 E F0(is not speci\214ed, it is set to the pre)3.18 E -(vious command for editing and \25516 for listing.)-.25 E(The)144 712.8 +(rent command for listing \(so that)144 172.8 R/F3 10/Courier@0 SF .948 +(fc \255l \25510)3.448 F F0 .948(prints the last 10 commands\) and to) +3.448 F F2<8c72>5.358 E(st)-.1 E F0(other)4.128 E(-)-.2 E 2.5(wise. If) +144 184.8 R F2<8c72>4.41 E(st)-.1 E F0 +(is not speci\214ed, it is set to the pre)3.18 E +(vious command for editing and \25516 for listing.)-.25 E(The)144 208.8 Q F12.522 E F0 .022 (option suppresses the command numbers when listing.)2.522 F(The)5.022 E F12.522 E F0 .022(option re)2.522 F -.15(ve)-.25 G .022 -(rses the order of).15 F .438(the commands.)144 724.8 R .438(If the) +(rses the order of).15 F .438(the commands.)144 220.8 R .438(If the) 5.438 F F12.938 E F0 .438(option is gi)2.938 F -.15(ve)-.25 G .438 (n, the commands are listed on standard output.).15 F(Otherwise,)5.438 E -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(63)185.545 E 0 Cg EP -%%Page: 64 64 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .334 -(the editor gi)144 84 R -.15(ve)-.25 G 2.834(nb).15 G(y)-2.834 E/F1 10 -/Times-Italic@0 SF(ename)3.024 E F0 .335(is in)3.014 F -.2(vo)-.4 G -.1 -(ke).2 G 2.835(do).1 G 2.835(na\214)-2.835 G .335 -(le containing those commands.)-2.835 F(If)5.335 E F1(ename)3.025 E F0 -.335(is not gi)3.015 F -.15(ve)-.25 G(n,).15 E .631(the v)144 96 R .631 -(alue of the)-.25 F/F2 9/Times-Bold@0 SF(FCEDIT)3.131 E F0 -.25(va)2.881 -G .631(riable is used, and the v).25 F .631(alue of)-.25 F F2(EDIT)3.131 -E(OR)-.162 E F0(if)2.881 E F2(FCEDIT)3.13 E F0 .63(is not set.)2.88 F -.63(If nei-)5.63 F .005(ther v)144 108 R .005(ariable is set,)-.25 F F1 +.334(the editor gi)144 232.8 R -.15(ve)-.25 G 2.834(nb).15 G(y)-2.834 E +F2(ename)3.024 E F0 .335(is in)3.014 F -.2(vo)-.4 G -.1(ke).2 G 2.835 +(do).1 G 2.835(na\214)-2.835 G .335(le containing those commands.)-2.835 +F(If)5.335 E F2(ename)3.025 E F0 .335(is not gi)3.015 F -.15(ve)-.25 G +(n,).15 E .631(the v)144 244.8 R .631(alue of the)-.25 F/F4 9 +/Times-Bold@0 SF(FCEDIT)3.131 E F0 -.25(va)2.881 G .631 +(riable is used, and the v).25 F .631(alue of)-.25 F F4(EDIT)3.131 E(OR) +-.162 E F0(if)2.881 E F4(FCEDIT)3.13 E F0 .63(is not set.)2.88 F .63 +(If nei-)5.63 F .005(ther v)144 256.8 R .005(ariable is set,)-.25 F F2 (vi)4.171 E F0 .005(is used.)4.171 F .005 (When editing is complete, the edited commands are echoed and e)5.005 F -(x-)-.15 E(ecuted.)144 120 Q .789(In the second form,)144 144 R F1 +(x-)-.15 E(ecuted.)144 268.8 Q .789(In the second form,)144 292.8 R F2 (command)3.288 E F0 .788(is re-e)3.288 F -.15(xe)-.15 G .788 -(cuted after each instance of).15 F F1(pat)3.288 E F0 .788 -(is replaced by)3.288 F F1 -.37(re)3.288 G(p).37 E F0(.)A F1(Com-)5.788 -E(mand)144 156 Q F0 .171(is interpreted the same as)2.671 F F1<8c72> +(cuted after each instance of).15 F F2(pat)3.288 E F0 .788 +(is replaced by)3.288 F F2 -.37(re)3.288 G(p).37 E F0(.)A F2(Com-)5.788 +E(mand)144 304.8 Q F0 .171(is interpreted the same as)2.671 F F2<8c72> 2.671 E(st)-.1 E F0(abo)2.671 E -.15(ve)-.15 G 5.171(.A).15 G .172 -(useful alias to use with this is)-2.499 F/F3 10/Courier@0 SF .172 -(r='fc \255s')2.672 F F0 2.672(,s)C 2.672(ot)-2.672 G(hat)-2.672 E -(typing)144 168 Q F3 7.166(rc)3.666 G(c)-7.166 E F0 1.166 -(runs the last command be)3.666 F 1.166(ginning with)-.15 F F3(cc)3.666 -E F0 1.165(and typing)3.666 F F3(r)3.665 E F0(re-e)3.665 E -.15(xe)-.15 -G 1.165(cutes the last com-).15 F(mand.)144 180 Q .142 -(If the \214rst form is used, the return v)144 204 R .142 -(alue is 0 unless an in)-.25 F -.25(va)-.4 G .142 -(lid option is encountered or).25 F F1<8c72>4.552 E(st)-.1 E F0(or)3.322 -E F1(last)2.732 E F0 .455(specify history lines out of range.)144 216 R -.454(If the)5.454 F/F4 10/Times-Bold@0 SF2.954 E F0 .454 +(useful alias to use with this is)-2.499 F F3 .172(r='fc \255s')2.672 F +F0 2.672(,s)C 2.672(ot)-2.672 G(hat)-2.672 E(typing)144 316.8 Q F3 7.166 +(rc)3.666 G(c)-7.166 E F0 1.166(runs the last command be)3.666 F 1.166 +(ginning with)-.15 F F3(cc)3.666 E F0 1.165(and typing)3.666 F F3(r) +3.665 E F0(re-e)3.665 E -.15(xe)-.15 G 1.165(cutes the last com-).15 F +(mand.)144 328.8 Q .142(If the \214rst form is used, the return v)144 +352.8 R .142(alue is 0 unless an in)-.25 F -.25(va)-.4 G .142 +(lid option is encountered or).25 F F2<8c72>4.552 E(st)-.1 E F0(or)3.322 +E F2(last)2.732 E F0 .455(specify history lines out of range.)144 364.8 +R .454(If the)5.454 F F12.954 E F0 .454 (option is supplied, the return v)2.954 F .454(alue is the v)-.25 F .454 -(alue of the)-.25 F .787(last command e)144 228 R -.15(xe)-.15 G .787 +(alue of the)-.25 F .787(last command e)144 376.8 R -.15(xe)-.15 G .787 (cuted or f).15 F .788 (ailure if an error occurs with the temporary \214le of commands.)-.1 F .788(If the)5.788 F 1.136 (second form is used, the return status is that of the command re-e)144 -240 R -.15(xe)-.15 G 1.135(cuted, unless).15 F F1(cmd)3.835 E F0 1.135 -(does not)4.405 F(specify a v)144 252 Q -(alid history line, in which case)-.25 E F4(fc)2.5 E F0(returns f)2.5 E -(ailure.)-.1 E F4(fg)108 268.8 Q F0([)2.5 E F1(jobspec)A F0(])A(Resume) -144 280.8 Q F1(jobspec)5.653 E F0 1.413(in the fore)4.223 F 1.413 +388.8 R -.15(xe)-.15 G 1.135(cuted, unless).15 F F2(cmd)3.835 E F0 1.135 +(does not)4.405 F(specify a v)144 400.8 Q +(alid history line, in which case)-.25 E F1(fc)2.5 E F0(returns f)2.5 E +(ailure.)-.1 E F1(fg)108 417.6 Q F0([)2.5 E F2(jobspec)A F0(])A(Resume) +144 429.6 Q F2(jobspec)5.653 E F0 1.413(in the fore)4.223 F 1.413 (ground, and mak)-.15 F 3.913(ei)-.1 G 3.913(tt)-3.913 G 1.413 -(he current job)-3.913 F 6.413(.I)-.4 G(f)-6.413 E F1(jobspec)5.653 E F0 -1.414(is not present, the)4.223 F(shell')144 292.8 Q 3.117(sn)-.55 G -.617(otion of the)-3.117 F F1(curr)3.117 E .617(ent job)-.37 F F0 .617 +(he current job)-3.913 F 6.413(.I)-.4 G(f)-6.413 E F2(jobspec)5.653 E F0 +1.414(is not present, the)4.223 F(shell')144 441.6 Q 3.117(sn)-.55 G +.617(otion of the)-3.117 F F2(curr)3.117 E .617(ent job)-.37 F F0 .617 (is used.)3.117 F .617(The return v)5.617 F .616 -(alue is that of the command placed into the)-.25 F(fore)144 304.8 Q +(alue is that of the command placed into the)-.25 F(fore)144 453.6 Q .362(ground, or f)-.15 F .362 (ailure if run when job control is disabled or)-.1 F 2.862(,w)-.4 G .363 -(hen run with job control enabled, if)-2.862 F F1(jobspec)145.74 316.8 Q -F0(does not specify a v)2.81 E(alid job or)-.25 E F1(jobspec)4.24 E F0 +(hen run with job control enabled, if)-2.862 F F2(jobspec)145.74 465.6 Q +F0(does not specify a v)2.81 E(alid job or)-.25 E F2(jobspec)4.24 E F0 (speci\214es a job that w)2.81 E(as started without job control.)-.1 E -F4(getopts)108 333.6 Q F1(optstring name)2.5 E F0([)2.5 E F1(ar)A 2.5 -(g.)-.37 G(..)-2.5 E F0(])A F4(getopts)144 345.6 Q F0 .793 -(is used by shell procedures to parse positional parameters.)3.294 F F1 +F1(getopts)108 482.4 Q F2(optstring name)2.5 E F0([)2.5 E F2(ar)A 2.5 +(g.)-.37 G(..)-2.5 E F0(])A F1(getopts)144 494.4 Q F0 .793 +(is used by shell procedures to parse positional parameters.)3.294 F F2 (optstring)6.023 E F0 .793(contains the option)3.513 F .149 -(characters to be recognized; if a character is follo)144 357.6 R .15 +(characters to be recognized; if a character is follo)144 506.4 R .15 (wed by a colon, the option is e)-.25 F .15(xpected to ha)-.15 F .45 --.15(ve a)-.2 H(n).15 E(ar)144 369.6 Q .579 +-.15(ve a)-.2 H(n).15 E(ar)144 518.4 Q .579 (gument, which should be separated from it by white space.)-.18 F .578 (The colon and question mark char)5.579 F(-)-.2 E .636 -(acters may not be used as option characters.)144 381.6 R .636 -(Each time it is in)5.636 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F4(getopts) +(acters may not be used as option characters.)144 530.4 R .636 +(Each time it is in)5.636 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F1(getopts) 3.136 E F0 .636(places the ne)3.136 F .636(xt op-)-.15 F .03 -(tion in the shell v)144 393.6 R(ariable)-.25 E F1(name)2.89 E F0 2.53 -(,i).18 G(nitializing)-2.53 E F1(name)2.89 E F0 .029(if it does not e) +(tion in the shell v)144 542.4 R(ariable)-.25 E F2(name)2.89 E F0 2.53 +(,i).18 G(nitializing)-2.53 E F2(name)2.89 E F0 .029(if it does not e) 2.71 F .029(xist, and the inde)-.15 F 2.529(xo)-.15 G 2.529(ft)-2.529 G .029(he ne)-2.529 F .029(xt ar)-.15 F(gu-)-.18 E .065 -(ment to be processed into the v)144 405.6 R(ariable)-.25 E F2(OPTIND) -2.565 E/F5 9/Times-Roman@0 SF(.)A F2(OPTIND)4.565 E F0 .066 +(ment to be processed into the v)144 554.4 R(ariable)-.25 E F4(OPTIND) +2.565 E/F5 9/Times-Roman@0 SF(.)A F4(OPTIND)4.565 E F0 .066 (is initialized to 1 each time the shell or a)2.315 F .885 -(shell script is in)144 417.6 R -.2(vo)-.4 G -.1(ke).2 G 3.385(d. When) -.1 F .885(an option requires an ar)3.385 F(gument,)-.18 E F4(getopts) +(shell script is in)144 566.4 R -.2(vo)-.4 G -.1(ke).2 G 3.385(d. When) +.1 F .885(an option requires an ar)3.385 F(gument,)-.18 E F1(getopts) 3.385 E F0 .885(places that ar)3.385 F .885(gument into)-.18 F .566 -(the v)144 429.6 R(ariable)-.25 E F2(OPT)3.066 E(ARG)-.81 E F5(.)A F0 -.566(The shell does not reset)5.066 F F2(OPTIND)3.066 E F0 .567 +(the v)144 578.4 R(ariable)-.25 E F4(OPT)3.066 E(ARG)-.81 E F5(.)A F0 +.566(The shell does not reset)5.066 F F4(OPTIND)3.066 E F0 .567 (automatically; it must be manually reset)2.816 F .39 -(between multiple calls to)144 441.6 R F4(getopts)2.89 E F0 .39 +(between multiple calls to)144 590.4 R F1(getopts)2.89 E F0 .39 (within the same shell in)2.89 F -.2(vo)-.4 G .389(cation if a ne).2 F -2.889(ws)-.25 G .389(et of parameters is to)-2.889 F(be used.)144 453.6 -Q 2.043(When the end of options is encountered,)144 477.6 R F4(getopts) +2.889(ws)-.25 G .389(et of parameters is to)-2.889 F(be used.)144 602.4 +Q 2.043(When the end of options is encountered,)144 626.4 R F1(getopts) 4.543 E F0 -.15(ex)4.543 G 2.043(its with a return v).15 F 2.044 -(alue greater than zero.)-.25 F F2(OPTIND)144 489.6 Q F0 +(alue greater than zero.)-.25 F F4(OPTIND)144 638.4 Q F0 (is set to the inde)2.25 E 2.5(xo)-.15 G 2.5(ft)-2.5 G -(he \214rst non-option ar)-2.5 E(gument, and)-.18 E F1(name)2.5 E F0 -(is set to ?.)2.5 E F4(getopts)144 513.6 Q F0 .485 +(he \214rst non-option ar)-2.5 E(gument, and)-.18 E F2(name)2.5 E F0 +(is set to ?.)2.5 E F1(getopts)144 662.4 Q F0 .485 (normally parses the positional parameters, b)2.985 F .485 -(ut if more ar)-.2 F .485(guments are supplied as)-.18 F F1(ar)3.315 E -(g)-.37 E F0 -.25(va)3.205 G(l-).25 E(ues,)144 525.6 Q F4(getopts)2.5 E -F0(parses those instead.)2.5 E F4(getopts)144 549.6 Q F0 .345 +(ut if more ar)-.2 F .485(guments are supplied as)-.18 F F2(ar)3.315 E +(g)-.37 E F0 -.25(va)3.205 G(l-).25 E(ues,)144 674.4 Q F1(getopts)2.5 E +F0(parses those instead.)2.5 E F1(getopts)144 698.4 Q F0 .345 (can report errors in tw)2.845 F 2.845(ow)-.1 G 2.845(ays. If)-2.945 F -.345(the \214rst character of)2.845 F F1(optstring)3.075 E F0 .345 -(is a colon,)3.065 F F1(silent)3.185 E F0 .345(error re-)3.525 F 1.669 -(porting is used.)144 561.6 R 1.668 +.345(the \214rst character of)2.845 F F2(optstring)3.075 E F0 .345 +(is a colon,)3.065 F F2(silent)3.185 E F0 .345(error re-)3.525 F 1.669 +(porting is used.)144 710.4 R 1.668 (In normal operation, diagnostic messages are printed when in)6.669 F -.25(va)-.4 G 1.668(lid options or).25 F .393(missing option ar)144 -573.6 R .393(guments are encountered.)-.18 F .394(If the v)5.394 F -(ariable)-.25 E F2(OPTERR)2.894 E F0 .394 -(is set to 0, no error messages)2.644 F(will be displayed, e)144 585.6 Q --.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he \214rst character of)-2.5 E -F1(optstring)2.73 E F0(is not a colon.)2.72 E .667(If an in)144 609.6 R --.25(va)-.4 G .667(lid option is seen,).25 F F4(getopts)3.167 E F0 .667 -(places ? into)3.167 F F1(name)3.527 E F0 .666 -(and, if not silent, prints an error message)3.347 F .399(and unsets)144 -621.6 R F2(OPT)2.899 E(ARG)-.81 E F5(.)A F0(If)4.899 E F4(getopts)2.899 -E F0 .399(is silent, the option character found is placed in)2.899 F F2 -(OPT)2.899 E(ARG)-.81 E F0 .4(and no)2.65 F -(diagnostic message is printed.)144 633.6 Q 1.242(If a required ar)144 -657.6 R 1.242(gument is not found, and)-.18 F F4(getopts)3.741 E F0 -1.241(is not silent, a question mark \()3.741 F F4(?).833 E F0 3.741 -(\)i).833 G 3.741(sp)-3.741 G 1.241(laced in)-3.741 F F1(name)144.36 -669.6 Q F0(,).18 E F2(OPT)2.713 E(ARG)-.81 E F0 .213 -(is unset, and a diagnostic message is printed.)2.463 F(If)5.213 E F4 -(getopts)2.713 E F0 .213(is silent, then a colon \()2.713 F F4(:).833 E -F0(\)).833 E(is placed in)144 681.6 Q F1(name)2.86 E F0(and)2.68 E F2 -(OPT)2.5 E(ARG)-.81 E F0(is set to the option character found.)2.25 E F4 -(getopts)144 705.6 Q F0 .902 -(returns true if an option, speci\214ed or unspeci\214ed, is found.) -3.402 F .902(It returns f)5.902 F .901(alse if the end of)-.1 F -(options is encountered or an error occurs.)144 717.6 Q(GNU Bash 5.0)72 -768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(64)185.545 E 0 Cg -EP +722.4 R .393(guments are encountered.)-.18 F .394(If the v)5.394 F +(ariable)-.25 E F4(OPTERR)2.894 E F0 .394 +(is set to 0, no error messages)2.644 F(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(64)190.95 E 0 Cg EP %%Page: 65 65 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(hash)108 84 Q F0([)2.5 E F1(\255lr)A F0 2.5(][)C F1-2.5 E/F2 10 -/Times-Italic@0 SF(\214lename)2.5 E F0 2.5(][)C F1(\255dt)-2.5 E F0 2.5 -(][)C F2(name)-2.5 E F0(])A .858(Each time)144 96 R F1(hash)3.358 E F0 -.858(is in)3.358 F -.2(vo)-.4 G -.1(ke).2 G .858 -(d, the full pathname of the command).1 F F2(name)3.718 E F0 .858 -(is determined by searching)3.538 F .956(the directories in)144 108 R F1 -($P)3.456 E -.95(AT)-.74 G(H).95 E F0 .956(and remembered.)3.456 F(An) -5.956 E 3.456(yp)-.15 G(re)-3.456 E .956 -(viously-remembered pathname is discarded.)-.25 F .242(If the)144 120 R -F12.742 E F0 .243 -(option is supplied, no path search is performed, and)2.742 F F2 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E +(will be displayed, e)144 84 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G +(he \214rst character of)-2.5 E/F1 10/Times-Italic@0 SF(optstring)2.73 E +F0(is not a colon.)2.72 E .667(If an in)144 108 R -.25(va)-.4 G .667 +(lid option is seen,).25 F/F2 10/Times-Bold@0 SF(getopts)3.167 E F0 .667 +(places ? into)3.167 F F1(name)3.527 E F0 .666 +(and, if not silent, prints an error message)3.347 F .399(and unsets)144 +120 R/F3 9/Times-Bold@0 SF(OPT)2.899 E(ARG)-.81 E/F4 9/Times-Roman@0 SF +(.)A F0(If)4.899 E F2(getopts)2.899 E F0 .399 +(is silent, the option character found is placed in)2.899 F F3(OPT)2.899 +E(ARG)-.81 E F0 .4(and no)2.65 F(diagnostic message is printed.)144 132 +Q 1.242(If a required ar)144 156 R 1.242(gument is not found, and)-.18 F +F2(getopts)3.741 E F0 1.241(is not silent, a question mark \()3.741 F F2 +(?).833 E F0 3.741(\)i).833 G 3.741(sp)-3.741 G 1.241(laced in)-3.741 F +F1(name)144.36 168 Q F0(,).18 E F3(OPT)2.713 E(ARG)-.81 E F0 .213 +(is unset, and a diagnostic message is printed.)2.463 F(If)5.213 E F2 +(getopts)2.713 E F0 .213(is silent, then a colon \()2.713 F F2(:).833 E +F0(\)).833 E(is placed in)144 180 Q F1(name)2.86 E F0(and)2.68 E F3(OPT) +2.5 E(ARG)-.81 E F0(is set to the option character found.)2.25 E F2 +(getopts)144 204 Q F0 .902 +(returns true if an option, speci\214ed or unspeci\214ed, is found.) +3.402 F .902(It returns f)5.902 F .901(alse if the end of)-.1 F +(options is encountered or an error occurs.)144 216 Q F2(hash)108 232.8 +Q F0([)2.5 E F2(\255lr)A F0 2.5(][)C F2-2.5 E F1(\214lename)2.5 E +F0 2.5(][)C F2(\255dt)-2.5 E F0 2.5(][)C F1(name)-2.5 E F0(])A .858 +(Each time)144 244.8 R F2(hash)3.358 E F0 .858(is in)3.358 F -.2(vo)-.4 +G -.1(ke).2 G .858(d, the full pathname of the command).1 F F1(name) +3.718 E F0 .858(is determined by searching)3.538 F .956 +(the directories in)144 256.8 R F2($P)3.456 E -.95(AT)-.74 G(H).95 E F0 +.956(and remembered.)3.456 F(An)5.956 E 3.456(yp)-.15 G(re)-3.456 E .956 +(viously-remembered pathname is discarded.)-.25 F .242(If the)144 268.8 +R F22.742 E F0 .243 +(option is supplied, no path search is performed, and)2.742 F F1 (\214lename)4.653 E F0 .243(is used as the full \214lename)2.923 F .615 -(of the command.)144 132 R(The)5.615 E F13.115 E F0 .615 +(of the command.)144 280.8 R(The)5.615 E F23.115 E F0 .615 (option causes the shell to for)3.115 F .615 -(get all remembered locations.)-.18 F(The)5.615 E F13.115 E F0 -(op-)3.115 E .293(tion causes the shell to for)144 144 R .293 -(get the remembered location of each)-.18 F F2(name)2.794 E F0 5.294(.I) -C 2.794(ft)-5.294 G(he)-2.794 E F12.794 E F0 .294 +(get all remembered locations.)-.18 F(The)5.615 E F23.115 E F0 +(op-)3.115 E .293(tion causes the shell to for)144 292.8 R .293 +(get the remembered location of each)-.18 F F1(name)2.794 E F0 5.294(.I) +C 2.794(ft)-5.294 G(he)-2.794 E F22.794 E F0 .294 (option is supplied,)2.794 F .028(the full pathname to which each)144 -156 R F2(name)2.528 E F0 .028(corresponds is printed.)2.528 F .028 -(If multiple)5.028 F F2(name)2.528 E F0(ar)2.528 E .028 -(guments are sup-)-.18 F .175(plied with)144 168 R F12.675 E F0 -2.675(,t)C(he)-2.675 E F2(name)2.675 E F0 .175 -(is printed before the hashed full pathname.)2.675 F(The)5.175 E F1 +304.8 R F1(name)2.528 E F0 .028(corresponds is printed.)2.528 F .028 +(If multiple)5.028 F F1(name)2.528 E F0(ar)2.528 E .028 +(guments are sup-)-.18 F .175(plied with)144 316.8 R F22.675 E F0 +2.675(,t)C(he)-2.675 E F1(name)2.675 E F0 .175 +(is printed before the hashed full pathname.)2.675 F(The)5.175 E F2 2.676 E F0 .176(option causes output to)2.676 F .783 -(be displayed in a format that may be reused as input.)144 180 R .783 +(be displayed in a format that may be reused as input.)144 328.8 R .783 (If no ar)5.783 F .783(guments are gi)-.18 F -.15(ve)-.25 G .783 -(n, or if only).15 F F13.283 E F0(is)3.283 E .807 -(supplied, information about remembered commands is printed.)144 192 R -.807(The return status is true unless a)5.807 F F2(name)144.36 204 Q F0 -(is not found or an in)2.68 E -.25(va)-.4 G(lid option is supplied.).25 -E F1(help)108 220.8 Q F0([)2.5 E F1(\255dms)A F0 2.5(][)C F2(pattern) --2.5 E F0(])A .867(Display helpful information about b)144 232.8 R .867 -(uiltin commands.)-.2 F(If)5.867 E F2(pattern)4.617 E F0 .866 -(is speci\214ed,)3.607 F F1(help)3.366 E F0(gi)3.366 E -.15(ve)-.25 G -3.366(sd).15 G(etailed)-3.366 E .223(help on all commands matching)144 -244.8 R F2(pattern)3.973 E F0 2.723(;o).24 G .223 +(n, or if only).15 F F23.283 E F0(is)3.283 E .807 +(supplied, information about remembered commands is printed.)144 340.8 R +.807(The return status is true unless a)5.807 F F1(name)144.36 352.8 Q +F0(is not found or an in)2.68 E -.25(va)-.4 G(lid option is supplied.) +.25 E F2(help)108 369.6 Q F0([)2.5 E F2(\255dms)A F0 2.5(][)C F1 +(pattern)-2.5 E F0(])A .867(Display helpful information about b)144 +381.6 R .867(uiltin commands.)-.2 F(If)5.867 E F1(pattern)4.617 E F0 +.866(is speci\214ed,)3.607 F F2(help)3.366 E F0(gi)3.366 E -.15(ve)-.25 +G 3.366(sd).15 G(etailed)-3.366 E .223(help on all commands matching)144 +393.6 R F1(pattern)3.973 E F0 2.723(;o).24 G .223 (therwise help for all the b)-2.723 F .224 -(uiltins and shell control struc-)-.2 F(tures is printed.)144 256.8 Q F1 -144 268.8 Q F0(Display a short description of each)180 268.8 Q F2 -(pattern)2.5 E F1144 280.8 Q F0(Display the description of each) -180 280.8 Q F2(pattern)2.5 E F0(in a manpage-lik)2.5 E 2.5(ef)-.1 G -(ormat)-2.5 E F1144 292.8 Q F0 -(Display only a short usage synopsis for each)180 292.8 Q F2(pattern)2.5 -E F0(The return status is 0 unless no command matches)144 309.6 Q F2 -(pattern)3.75 E F0(.).24 E F1(history [)108 326.4 Q F2(n)A F1(])A -(history \255c)108 338.4 Q(history \255d)108 350.4 Q F2(of)2.5 E(fset) --.18 E F1(history \255d)108 362.4 Q F2(start)2.5 E F0A F2(end)A F1 -(history \255anrw)108 374.4 Q F0([)2.5 E F2(\214lename)A F0(])A F1 -(history \255p)108 386.4 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A 2.5 -(g.)-.37 G(..)-2.5 E F0(])A F1(history \255s)108 398.4 Q F2(ar)2.5 E(g) --.37 E F0([)2.5 E F2(ar)A 2.5(g.)-.37 G(..)-2.5 E F0(])A -.4(Wi)144 -410.4 S .752 +(uiltins and shell control struc-)-.2 F(tures is printed.)144 405.6 Q F2 +144 417.6 Q F0(Display a short description of each)180 417.6 Q F1 +(pattern)2.5 E F2144 429.6 Q F0(Display the description of each) +180 429.6 Q F1(pattern)2.5 E F0(in a manpage-lik)2.5 E 2.5(ef)-.1 G +(ormat)-2.5 E F2144 441.6 Q F0 +(Display only a short usage synopsis for each)180 441.6 Q F1(pattern)2.5 +E F0(The return status is 0 unless no command matches)144 458.4 Q F1 +(pattern)3.75 E F0(.).24 E F2(history [)108 475.2 Q F1(n)A F2(])A +(history \255c)108 487.2 Q(history \255d)108 499.2 Q F1(of)2.5 E(fset) +-.18 E F2(history \255d)108 511.2 Q F1(start)2.5 E F0A F1(end)A F2 +(history \255anrw)108 523.2 Q F0([)2.5 E F1(\214lename)A F0(])A F2 +(history \255p)108 535.2 Q F1(ar)2.5 E(g)-.37 E F0([)2.5 E F1(ar)A 2.5 +(g.)-.37 G(..)-2.5 E F0(])A F2(history \255s)108 547.2 Q F1(ar)2.5 E(g) +-.37 E F0([)2.5 E F1(ar)A 2.5(g.)-.37 G(..)-2.5 E F0(])A -.4(Wi)144 +559.2 S .752 (th no options, display the command history list with line numbers.).4 F -.752(Lines listed with a)5.752 F F1(*)3.251 E F0(ha)3.251 E -.15(ve)-.2 -G .38(been modi\214ed.)144 422.4 R .38(An ar)5.38 F .38(gument of)-.18 F -F2(n)3.24 E F0 .38(lists only the last)3.12 F F2(n)3.24 E F0 2.88 -(lines. If)3.12 F .38(the shell v)2.88 F(ariable)-.25 E/F3 9 -/Times-Bold@0 SF(HISTTIMEFOR-)2.881 E(MA)144 434.4 Q(T)-.855 E F0 .265 -(is set and not null, it is used as a format string for)2.515 F F2 +.752(Lines listed with a)5.752 F F2(*)3.251 E F0(ha)3.251 E -.15(ve)-.2 +G .38(been modi\214ed.)144 571.2 R .38(An ar)5.38 F .38(gument of)-.18 F +F1(n)3.24 E F0 .38(lists only the last)3.12 F F1(n)3.24 E F0 2.88 +(lines. If)3.12 F .38(the shell v)2.88 F(ariable)-.25 E F3(HISTTIMEFOR-) +2.881 E(MA)144 583.2 Q(T)-.855 E F0 .265 +(is set and not null, it is used as a format string for)2.515 F F1 (strftime)2.764 E F0 .264(\(3\) to display the time stamp asso-)B 1.019 -(ciated with each displayed history entry)144 446.4 R 6.019(.N)-.65 G +(ciated with each displayed history entry)144 595.2 R 6.019(.N)-.65 G 3.519(oi)-6.019 G(nterv)-3.519 E 1.019 (ening blank is printed between the formatted)-.15 F .176 -(time stamp and the history line.)144 458.4 R(If)5.176 E F2(\214lename) +(time stamp and the history line.)144 607.2 R(If)5.176 E F1(\214lename) 2.676 E F0 .176 (is supplied, it is used as the name of the history \214le; if)2.676 F -(not, the v)144 470.4 Q(alue of)-.25 E F3(HISTFILE)2.5 E F0(is used.) +(not, the v)144 619.2 Q(alue of)-.25 E F3(HISTFILE)2.5 E F0(is used.) 2.25 E(Options, if supplied, ha)5 E .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F1144 482.4 Q F0 -(Clear the history list by deleting all the entries.)180 482.4 Q F1 -144 494.4 Q F2(of)2.5 E(fset)-.18 E F0 .389 -(Delete the history entry at position)180 506.4 R F2(of)2.889 E(fset) --.18 E F0 5.389(.I)C(f)-5.389 E F2(of)2.889 E(fset)-.18 E F0 .389(is ne) +(wing meanings:)-.25 E F2144 631.2 Q F0 +(Clear the history list by deleting all the entries.)180 631.2 Q F2 +144 643.2 Q F1(of)2.5 E(fset)-.18 E F0 .389 +(Delete the history entry at position)180 655.2 R F1(of)2.889 E(fset) +-.18 E F0 5.389(.I)C(f)-5.389 E F1(of)2.889 E(fset)-.18 E F0 .389(is ne) 2.889 F -.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G 2.89(,i).15 G 2.89(ti) -2.89 G 2.89(si)-2.89 G .39(nterpreted as relati)-2.89 F -.15(ve)-.25 G -.599(to one greater than the last history position, so ne)180 518.4 R +.599(to one greater than the last history position, so ne)180 667.2 R -.05(ga)-.15 G(ti).05 E .899 -.15(ve i)-.25 H .598 -(ndices count back from the end).15 F(of the history)180 530.4 Q 2.5(,a) +(ndices count back from the end).15 F(of the history)180 679.2 Q 2.5(,a) -.65 G(nd an inde)-2.5 E 2.5(xo)-.15 G 2.5<66ad>-2.5 G 2.5(1r)-2.5 G -(efers to the current)-2.5 E F1(history -d)2.5 E F0(command.)2.5 E F1 -144 542.4 Q F2(start)2.5 E F0A F2(end)A F0 .757 -(Delete the history entries between positions)180 554.4 R F2(start)3.257 -E F0(and)3.258 E F2(end)3.258 E F0 3.258(,i)C(nclusi)-3.258 E -.15(ve) +(efers to the current)-2.5 E F2(history -d)2.5 E F0(command.)2.5 E F2 +144 691.2 Q F1(start)2.5 E F0A F1(end)A F0 .757 +(Delete the history entries between positions)180 703.2 R F1(start)3.257 +E F0(and)3.258 E F1(end)3.258 E F0 3.258(,i)C(nclusi)-3.258 E -.15(ve) -.25 G 5.758(.P).15 G(ositi)-5.758 E 1.058 -.15(ve a)-.25 H .758(nd ne) -.15 F -.05(ga)-.15 G(-).05 E(ti)180 566.4 Q .3 -.15(ve v)-.25 H -(alues for)-.1 E F2(start)2.5 E F0(and)2.5 E F2(end)2.5 E F0 -(are interpreted as described abo)2.5 E -.15(ve)-.15 G(.).15 E F1 -144 578.4 Q F0 .565(Append the `)180 578.4 R(`ne)-.74 E(w')-.25 E 3.065 -('h)-.74 G .564(istory lines to the history \214le.)-3.065 F .564 -(These are history lines entered since)5.564 F(the be)180 590.4 Q -(ginning of the current)-.15 E F1(bash)2.5 E F0(session, b)2.5 E -(ut not already appended to the history \214le.)-.2 E F1144 602.4 -Q F0 .854(Read the history lines not already read from the history \214\ -le into the current history list.)180 602.4 R .773 -(These are lines appended to the history \214le since the be)180 614.4 R -.772(ginning of the current)-.15 F F1(bash)3.272 E F0(ses-)3.272 E -(sion.)180 626.4 Q F1144 638.4 Q F0(Read the contents of the hist\ -ory \214le and append them to the current history list.)180 638.4 Q F1 -144 650.4 Q F0 -(Write the current history list to the history \214le, o)180 650.4 Q --.15(ve)-.15 G(rwriting the history \214le').15 E 2.5(sc)-.55 G -(ontents.)-2.5 E F1144 662.4 Q F0 .625 -(Perform history substitution on the follo)180 662.4 R(wing)-.25 E F2 -(ar)3.125 E(gs)-.37 E F0 .626(and display the result on the standard) -3.125 F 2.975(output. Does)180 674.4 R .475 -(not store the results in the history list.)2.975 F(Each)5.475 E F2(ar) -2.975 E(g)-.37 E F0 .475(must be quoted to disable)2.975 F -(normal history e)180 686.4 Q(xpansion.)-.15 E F1144 698.4 Q F0 -.362(Store the)180 698.4 R F2(ar)3.192 E(gs)-.37 E F0 .363 -(in the history list as a single entry)3.132 F 5.363(.T)-.65 G .363 -(he last command in the history list is)-5.363 F(remo)180 710.4 Q -.15 -(ve)-.15 G 2.5(db).15 G(efore the)-2.5 E F2(ar)2.83 E(gs)-.37 E F0 -(are added.)2.77 E .146(If the)144 727.2 R F3(HISTTIMEFORMA)2.645 E(T) --.855 E F0 -.25(va)2.395 G .145 -(riable is set, the time stamp information associated with each history) -.25 F(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 -E(65)185.545 E 0 Cg EP +.15 F -.05(ga)-.15 G(-).05 E(ti)180 715.2 Q .3 -.15(ve v)-.25 H +(alues for)-.1 E F1(start)2.5 E F0(and)2.5 E F1(end)2.5 E F0 +(are interpreted as described abo)2.5 E -.15(ve)-.15 G(.).15 E +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(65)190.95 E 0 Cg EP %%Page: 66 66 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .668 -(entry is written to the history \214le, mark)144 84 R .669 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF144 84 Q F0 .565(Append the `)180 84 R(`ne)-.74 E(w')-.25 E +3.065('h)-.74 G .564(istory lines to the history \214le.)-3.065 F .564 +(These are history lines entered since)5.564 F(the be)180 96 Q +(ginning of the current)-.15 E F1(bash)2.5 E F0(session, b)2.5 E +(ut not already appended to the history \214le.)-.2 E F1144 108 Q +F0 .854(Read the history lines not already read from the history \214le\ + into the current history list.)180 108 R .773 +(These are lines appended to the history \214le since the be)180 120 R +.772(ginning of the current)-.15 F F1(bash)3.272 E F0(ses-)3.272 E +(sion.)180 132 Q F1144 144 Q F0(Read the contents of the history \ +\214le and append them to the current history list.)180 144 Q F1 +144 156 Q F0(Write the current history list to the history \214le, o)180 +156 Q -.15(ve)-.15 G(rwriting the history \214le').15 E 2.5(sc)-.55 G +(ontents.)-2.5 E F1144 168 Q F0 .625 +(Perform history substitution on the follo)180 168 R(wing)-.25 E/F2 10 +/Times-Italic@0 SF(ar)3.125 E(gs)-.37 E F0 .626 +(and display the result on the standard)3.125 F 2.975(output. Does)180 +180 R .475(not store the results in the history list.)2.975 F(Each)5.475 +E F2(ar)2.975 E(g)-.37 E F0 .475(must be quoted to disable)2.975 F +(normal history e)180 192 Q(xpansion.)-.15 E F1144 204 Q F0 .362 +(Store the)180 204 R F2(ar)3.192 E(gs)-.37 E F0 .363 +(in the history list as a single entry)3.132 F 5.363(.T)-.65 G .363 +(he last command in the history list is)-5.363 F(remo)180 216 Q -.15(ve) +-.15 G 2.5(db).15 G(efore the)-2.5 E F2(ar)2.83 E(gs)-.37 E F0 +(are added.)2.77 E .146(If the)144 232.8 R/F3 9/Times-Bold@0 SF +(HISTTIMEFORMA)2.645 E(T)-.855 E F0 -.25(va)2.395 G .145 +(riable is set, the time stamp information associated with each history) +.25 F .668(entry is written to the history \214le, mark)144 244.8 R .669 (ed with the history comment character)-.1 F 5.669(.W)-.55 G .669 -(hen the history)-5.669 F .956(\214le is read, lines be)144 96 R .956 +(hen the history)-5.669 F .956(\214le is read, lines be)144 256.8 R .956 (ginning with the history comment character follo)-.15 F .955 (wed immediately by a digit)-.25 F .832 -(are interpreted as timestamps for the follo)144 108 R .832 +(are interpreted as timestamps for the follo)144 268.8 R .832 (wing history entry)-.25 F 5.833(.T)-.65 G .833(he return v)-5.833 F -.833(alue is 0 unless an in-)-.25 F -.25(va)144 120 S .168(lid option i\ -s encountered, an error occurs while reading or writing the history \ -\214le, an in).25 F -.25(va)-.4 G(lid).25 E/F1 10/Times-Italic@0 SF(of) -2.668 E(f-)-.18 E(set)144 132 Q F0(is supplied as an ar)2.5 E(gument to) --.18 E/F2 10/Times-Bold@0 SF2.5 E F0 2.5(,o)C 2.5(rt)-2.5 G -(he history e)-2.5 E(xpansion supplied as an ar)-.15 E(gument to)-.18 E -F22.5 E F0 -.1(fa)2.5 G(ils.).1 E F2(jobs)108 148.8 Q F0([)2.5 E -F2(\255lnprs)A F0 2.5(][)C F1(jobspec)A F0(... ])2.5 E F2(jobs \255x)108 -160.8 Q F1(command)2.5 E F0([)2.5 E F1(ar)2.5 E(gs)-.37 E F0(... ])2.5 E -(The \214rst form lists the acti)144 172.8 Q .3 -.15(ve j)-.25 H 2.5 +.833(alue is 0 unless an in-)-.25 F -.25(va)144 280.8 S .168(lid option\ + is encountered, an error occurs while reading or writing the history \ +\214le, an in).25 F -.25(va)-.4 G(lid).25 E F2(of)2.668 E(f-)-.18 E(set) +144 292.8 Q F0(is supplied as an ar)2.5 E(gument to)-.18 E F12.5 E +F0 2.5(,o)C 2.5(rt)-2.5 G(he history e)-2.5 E +(xpansion supplied as an ar)-.15 E(gument to)-.18 E F12.5 E F0 -.1 +(fa)2.5 G(ils.).1 E F1(jobs)108 309.6 Q F0([)2.5 E F1(\255lnprs)A F0 2.5 +(][)C F2(jobspec)A F0(... ])2.5 E F1(jobs \255x)108 321.6 Q F2(command) +2.5 E F0([)2.5 E F2(ar)2.5 E(gs)-.37 E F0(... ])2.5 E +(The \214rst form lists the acti)144 333.6 Q .3 -.15(ve j)-.25 H 2.5 (obs. The).15 F(options ha)2.5 E .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F2144 184.8 Q F0 -(List process IDs in addition to the normal information.)180 184.8 Q F2 -144 196.8 Q F0 .193(Display information only about jobs that ha) -180 196.8 R .494 -.15(ve c)-.2 H .194(hanged status since the user w).15 -F .194(as last noti-)-.1 F(\214ed of their status.)180 208.8 Q F2 -144 220.8 Q F0(List only the process ID of the job')180 220.8 Q 2.5(sp) --.55 G(rocess group leader)-2.5 E(.)-.55 E F2144 232.8 Q F0 -(Display only running jobs.)180 232.8 Q F2144 244.8 Q F0 -(Display only stopped jobs.)180 244.8 Q(If)144 261.6 Q F1(jobspec)4.554 +(wing meanings:)-.25 E F1144 345.6 Q F0 +(List process IDs in addition to the normal information.)180 345.6 Q F1 +144 357.6 Q F0 .193(Display information only about jobs that ha) +180 357.6 R .494 -.15(ve c)-.2 H .194(hanged status since the user w).15 +F .194(as last noti-)-.1 F(\214ed of their status.)180 369.6 Q F1 +144 381.6 Q F0(List only the process ID of the job')180 381.6 Q 2.5(sp) +-.55 G(rocess group leader)-2.5 E(.)-.55 E F1144 393.6 Q F0 +(Display only running jobs.)180 393.6 Q F1144 405.6 Q F0 +(Display only stopped jobs.)180 405.6 Q(If)144 422.4 Q F2(jobspec)4.554 E F0 .314(is gi)3.124 F -.15(ve)-.25 G .314 (n, output is restricted to information about that job).15 F 5.313(.T) --.4 G .313(he return status is 0 unless)-5.313 F(an in)144 273.6 Q -.25 +-.4 G .313(he return status is 0 unless)-5.313 F(an in)144 434.4 Q -.25 (va)-.4 G(lid option is encountered or an in).25 E -.25(va)-.4 G(lid).25 -E F1(jobspec)4.24 E F0(is supplied.)2.81 E .394(If the)144 290.4 R F2 -2.894 E F0 .394(option is supplied,)2.894 F F2(jobs)2.894 E F0 -.394(replaces an)2.894 F(y)-.15 E F1(jobspec)4.634 E F0 .394(found in) -3.204 F F1(command)3.094 E F0(or)3.664 E F1(ar)3.224 E(gs)-.37 E F0 .395 -(with the corre-)3.164 F(sponding process group ID, and e)144 302.4 Q --.15(xe)-.15 G(cutes).15 E F1(command)2.7 E F0(passing it)3.27 E F1(ar) +E F2(jobspec)4.24 E F0(is supplied.)2.81 E .394(If the)144 451.2 R F1 +2.894 E F0 .394(option is supplied,)2.894 F F1(jobs)2.894 E F0 +.394(replaces an)2.894 F(y)-.15 E F2(jobspec)4.634 E F0 .394(found in) +3.204 F F2(command)3.094 E F0(or)3.664 E F2(ar)3.224 E(gs)-.37 E F0 .395 +(with the corre-)3.164 F(sponding process group ID, and e)144 463.2 Q +-.15(xe)-.15 G(cutes).15 E F2(command)2.7 E F0(passing it)3.27 E F2(ar) 2.83 E(gs)-.37 E F0 2.5(,r).27 G(eturning its e)-2.5 E(xit status.)-.15 -E F2(kill)108 319.2 Q F0([)2.5 E F2A F1(sigspec)2.5 E F0(|)2.5 E -F22.5 E F1(signum)2.5 E F0(|)2.5 E F22.5 E F1(sigspec)A F0 2.5 -(][)C F1(pid)-2.5 E F0(|)2.5 E F1(jobspec)2.5 E F0 2.5(].)C(..)-2.5 E F2 -(kill \255l)108 331.2 Q F0(|)A F2A F0([)2.5 E F1(sigspec)A F0(|) -2.5 E F1 -.2(ex)2.5 G(it_status).2 E F0(])A .017 -(Send the signal named by)144 343.2 R F1(sigspec)2.857 E F0(or)2.827 E -F1(signum)2.857 E F0 .017(to the processes named by)2.837 F F1(pid)3.767 -E F0(or)3.287 E F1(jobspec)4.257 E F0(.).31 E F1(sigspec)5.357 E F0(is) -2.827 E .318(either a case-insensiti)144 355.2 R .618 -.15(ve s)-.25 H -.318(ignal name such as).15 F/F3 9/Times-Bold@0 SF(SIGKILL)2.818 E F0 -.319(\(with or without the)2.569 F F3(SIG)2.819 E F0 .319 -(pre\214x\) or a signal)2.569 F(number;)144 367.2 Q F1(signum)3.268 E F0 -.427(is a signal number)3.247 F 5.427(.I)-.55 G(f)-5.427 E F1(sigspec) +E F1(kill)108 480 Q F0([)2.5 E F1A F2(sigspec)2.5 E F0(|)2.5 E F1 +2.5 E F2(signum)2.5 E F0(|)2.5 E F12.5 E F2(sigspec)A F0 2.5 +(][)C F2(pid)-2.5 E F0(|)2.5 E F2(jobspec)2.5 E F0 2.5(].)C(..)-2.5 E F1 +(kill \255l)108 492 Q F0(|)A F1A F0([)2.5 E F2(sigspec)A F0(|)2.5 +E F2 -.2(ex)2.5 G(it_status).2 E F0(])A .017(Send the signal named by) +144 504 R F2(sigspec)2.857 E F0(or)2.827 E F2(signum)2.857 E F0 .017 +(to the processes named by)2.837 F F2(pid)3.767 E F0(or)3.287 E F2 +(jobspec)4.257 E F0(.).31 E F2(sigspec)5.357 E F0(is)2.827 E .318 +(either a case-insensiti)144 516 R .618 -.15(ve s)-.25 H .318 +(ignal name such as).15 F F3(SIGKILL)2.818 E F0 .319 +(\(with or without the)2.569 F F3(SIG)2.819 E F0 .319 +(pre\214x\) or a signal)2.569 F(number;)144 528 Q F2(signum)3.268 E F0 +.427(is a signal number)3.247 F 5.427(.I)-.55 G(f)-5.427 E F2(sigspec) 3.267 E F0 .427(is not present, then)3.237 F F3(SIGTERM)2.927 E F0 .427 -(is assumed.)2.677 F .427(An ar)5.427 F(-)-.2 E .313(gument of)144 379.2 -R F22.813 E F0 .314(lists the signal names.)2.814 F .314(If an) -5.314 F 2.814(ya)-.15 G -.18(rg)-2.814 G .314(uments are supplied when) -.18 F F22.814 E F0 .314(is gi)2.814 F -.15(ve)-.25 G .314 -(n, the names of).15 F .12(the signals corresponding to the ar)144 391.2 -R .119(guments are listed, and the return status is 0.)-.18 F(The)5.119 -E F1 -.2(ex)2.619 G(it_status).2 E F0(ar)2.619 E(-)-.2 E .799(gument to) -144 403.2 R F23.299 E F0 .799 +(is assumed.)2.677 F .427(An ar)5.427 F(-)-.2 E .313(gument of)144 540 R +F12.813 E F0 .314(lists the signal names.)2.814 F .314(If an)5.314 +F 2.814(ya)-.15 G -.18(rg)-2.814 G .314(uments are supplied when).18 F +F12.814 E F0 .314(is gi)2.814 F -.15(ve)-.25 G .314 +(n, the names of).15 F .12(the signals corresponding to the ar)144 552 R +.119(guments are listed, and the return status is 0.)-.18 F(The)5.119 E +F2 -.2(ex)2.619 G(it_status).2 E F0(ar)2.619 E(-)-.2 E .799(gument to) +144 564 R F13.299 E F0 .799 (is a number specifying either a signal number or the e)3.299 F .8 -(xit status of a process termi-)-.15 F .963(nated by a signal.)144 415.2 -R(The)5.962 E F23.462 E F0 .962(option is equi)3.462 F -.25(va) --.25 G .962(lent to).25 F F23.462 E F0(.)A F2(kill)5.962 E F0 .962 +(xit status of a process termi-)-.15 F .963(nated by a signal.)144 576 R +(The)5.962 E F13.462 E F0 .962(option is equi)3.462 F -.25(va)-.25 +G .962(lent to).25 F F13.462 E F0(.)A F1(kill)5.962 E F0 .962 (returns true if at least one signal w)3.462 F(as)-.1 E -(successfully sent, or f)144 427.2 Q(alse if an error occurs or an in) --.1 E -.25(va)-.4 G(lid option is encountered.).25 E F2(let)108 444 Q F1 -(ar)2.5 E(g)-.37 E F0([)2.5 E F1(ar)A(g)-.37 E F0(...])2.5 E(Each)144 -456 Q F1(ar)3.026 E(g)-.37 E F0 .196(is an arithmetic e)2.916 F .197 +(successfully sent, or f)144 588 Q(alse if an error occurs or an in)-.1 +E -.25(va)-.4 G(lid option is encountered.).25 E F1(let)108 604.8 Q F2 +(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(Each)144 +616.8 Q F2(ar)3.026 E(g)-.37 E F0 .196(is an arithmetic e)2.916 F .197 (xpression to be e)-.15 F -.25(va)-.25 G .197(luated \(see).25 F F3 .197 (ARITHMETIC EV)2.697 F(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E F0(abo) -2.447 E -.15(ve)-.15 G 2.697(\). If).15 F(the last)144 468 Q F1(ar)2.83 -E(g)-.37 E F0 -.25(eva)2.72 G(luates to 0,).25 E F2(let)2.5 E F0 -(returns 1; 0 is returned otherwise.)2.5 E F2(local)108 484.8 Q F0([)2.5 -E F1(option)A F0 2.5(][)C F1(name)-2.5 E F0([=)A F1(value)A F0 2.5(].)C -(.. | \255 ])-2.5 E -.15(Fo)144 496.8 S 2.542(re).15 G .042(ach ar) --2.542 F .042(gument, a local v)-.18 F .042(ariable named)-.25 F F1 -(name)2.902 E F0 .042(is created, and assigned)2.722 F F1(value)2.832 E -F0 5.042(.T).18 G(he)-5.042 E F1(option)2.542 E F0 .041(can be)2.541 F -(an)144 508.8 Q 3.152(yo)-.15 G 3.152(ft)-3.152 G .652 -(he options accepted by)-3.152 F F2(declar)3.152 E(e)-.18 E F0 5.652(.W) -C(hen)-5.652 E F2(local)3.152 E F0 .653 +2.447 E -.15(ve)-.15 G 2.697(\). If).15 F(the last)144 628.8 Q F2(ar) +2.83 E(g)-.37 E F0 -.25(eva)2.72 G(luates to 0,).25 E F1(let)2.5 E F0 +(returns 1; 0 is returned otherwise.)2.5 E F1(local)108 645.6 Q F0([)2.5 +E F2(option)A F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C +(.. | \255 ])-2.5 E -.15(Fo)144 657.6 S 2.542(re).15 G .042(ach ar) +-2.542 F .042(gument, a local v)-.18 F .042(ariable named)-.25 F F2 +(name)2.902 E F0 .042(is created, and assigned)2.722 F F2(value)2.832 E +F0 5.042(.T).18 G(he)-5.042 E F2(option)2.542 E F0 .041(can be)2.541 F +(an)144 669.6 Q 3.152(yo)-.15 G 3.152(ft)-3.152 G .652 +(he options accepted by)-3.152 F F1(declar)3.152 E(e)-.18 E F0 5.652(.W) +C(hen)-5.652 E F1(local)3.152 E F0 .653 (is used within a function, it causes the v)3.152 F(ari-)-.25 E(able)144 -520.8 Q F1(name)3.282 E F0 .422(to ha)3.102 F .722 -.15(ve a v)-.2 H +681.6 Q F2(name)3.282 E F0 .422(to ha)3.102 F .722 -.15(ve a v)-.2 H .422(isible scope restricted to that function and its children.).15 F -(If)5.421 E F1(name)2.921 E F0 .421(is \255, the set)2.921 F .509 -(of shell options is made local to the function in which)144 532.8 R F2 +(If)5.421 E F2(name)2.921 E F0 .421(is \255, the set)2.921 F .509 +(of shell options is made local to the function in which)144 693.6 R F1 (local)3.01 E F0 .51(is in)3.01 F -.2(vo)-.4 G -.1(ke).2 G .51 -(d: shell options changed us-).1 F 1.171(ing the)144 544.8 R F2(set) +(d: shell options changed us-).1 F 1.171(ing the)144 705.6 R F1(set) 3.671 E F0 -.2(bu)3.671 G 1.171 (iltin inside the function are restored to their original v).2 F 1.17 -(alues when the function re-)-.25 F 2.887(turns. W)144 556.8 R .387 -(ith no operands,)-.4 F F2(local)2.887 E F0 .388 +(alues when the function re-)-.25 F 2.887(turns. W)144 717.6 R .387 +(ith no operands,)-.4 F F1(local)2.887 E F0 .388 (writes a list of local v)2.888 F .388(ariables to the standard output.) --.25 F .388(It is an error)5.388 F .333(to use)144 568.8 R F2(local) -2.833 E F0 .332(when not within a function.)2.832 F .332 -(The return status is 0 unless)5.332 F F2(local)2.832 E F0 .332 -(is used outside a func-)2.832 F(tion, an in)144 580.8 Q -.25(va)-.4 G -(lid).25 E F1(name)2.86 E F0(is supplied, or)2.68 E F1(name)2.5 E F0 -(is a readonly v)2.5 E(ariable.)-.25 E F2(logout)108 597.6 Q F0 -(Exit a login shell.)144 597.6 Q F2(map\214le)108 614.4 Q F0([)2.5 E F2 -A F1(delim)2.5 E F0 2.5(][)C F2-2.5 E F1(count)2.5 E F0 2.5 -(][)C F2-2.5 E F1(origin)2.5 E F0 2.5(][)C F2-2.5 E F1 -(count)2.5 E F0 2.5(][)C F2-2.5 E F0 2.5(][)C F2-2.5 E F1 -(fd)2.5 E F0 2.5(][)C F2-2.5 E F1(callbac)2.5 E(k)-.2 E F0 2.5(][) -C F2-2.5 E F1(quantum)2.5 E F0 2.5(][)C F1(arr)-2.5 E(ay)-.15 E F0 -(])A F2 -.18(re)108 626.4 S(adarray).18 E F0([)2.5 E F2A F1(delim) -2.5 E F0 2.5(][)C F2-2.5 E F1(count)2.5 E F0 2.5(][)C F2-2.5 -E F1(origin)2.5 E F0 2.5(][)C F2-2.5 E F1(count)2.5 E F0 2.5(][)C -F2-2.5 E F0 2.5(][)C F2-2.5 E F1(fd)2.5 E F0 2.5(][)C F2 --2.5 E F1(callbac)2.5 E(k)-.2 E F0 2.5(][)C F2-2.5 E F1 -(quantum)2.5 E F0 2.5(][)C F1(arr)-2.5 E(ay)-.15 E F0(])A .158 -(Read lines from the standard input into the inde)144 638.4 R -.15(xe) +-.25 F .388(It is an error)5.388 F 1.662(to use)144 729.6 R F1(local) +4.162 E F0 1.662(when not within a function.)4.162 F 1.662 +(The return status is 0 unless)6.662 F F1(local)4.161 E F0 1.661 +(is used outside a)4.161 F(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 +E(66)190.95 E 0 Cg EP +%%Page: 67 67 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(function, an in) +144 84 Q -.25(va)-.4 G(lid).25 E/F1 10/Times-Italic@0 SF(name)2.86 E F0 +(is supplied, or)2.68 E F1(name)2.5 E F0(is a readonly v)2.5 E(ariable.) +-.25 E/F2 10/Times-Bold@0 SF(logout)108 100.8 Q F0(Exit a login shell.) +144 100.8 Q F2(map\214le)108 117.6 Q F0([)2.5 E F2A F1(delim)2.5 E +F0 2.5(][)C F2-2.5 E F1(count)2.5 E F0 2.5(][)C F2-2.5 E F1 +(origin)2.5 E F0 2.5(][)C F2-2.5 E F1(count)2.5 E F0 2.5(][)C F2 +-2.5 E F0 2.5(][)C F2-2.5 E F1(fd)2.5 E F0 2.5(][)C F2 +-2.5 E F1(callbac)2.5 E(k)-.2 E F0 2.5(][)C F2-2.5 E F1(quantum) +2.5 E F0 2.5(][)C F1(arr)-2.5 E(ay)-.15 E F0(])A F2 -.18(re)108 129.6 S +(adarray).18 E F0([)2.5 E F2A F1(delim)2.5 E F0 2.5(][)C F2 +-2.5 E F1(count)2.5 E F0 2.5(][)C F2-2.5 E F1(origin)2.5 E F0 2.5 +(][)C F2-2.5 E F1(count)2.5 E F0 2.5(][)C F2-2.5 E F0 2.5 +(][)C F2-2.5 E F1(fd)2.5 E F0 2.5(][)C F2-2.5 E F1(callbac) +2.5 E(k)-.2 E F0 2.5(][)C F2-2.5 E F1(quantum)2.5 E F0 2.5(][)C F1 +(arr)-2.5 E(ay)-.15 E F0(])A .158 +(Read lines from the standard input into the inde)144 141.6 R -.15(xe) -.15 G 2.659(da).15 G .159(rray v)-2.659 F(ariable)-.25 E F1(arr)2.989 E (ay)-.15 E F0 2.659(,o).32 G 2.659(rf)-2.659 G .159 -(rom \214le descriptor)-2.659 F F1(fd)4.629 E F0 1.249(if the)144 650.4 +(rom \214le descriptor)-2.659 F F1(fd)4.629 E F0 1.249(if the)144 153.6 R F23.749 E F0 1.249(option is supplied.)3.749 F 1.249(The v)6.249 -F(ariable)-.25 E F3(MAPFILE)3.749 E F0 1.249(is the def)3.499 F(ault)-.1 -E F1(arr)3.748 E(ay)-.15 E F0 6.248(.O)C 1.248(ptions, if supplied,) --6.248 F(ha)144 662.4 Q .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F2144 674.4 Q F0 .91 -(The \214rst character of)180 674.4 R F1(delim)3.41 E F0 .911 +F(ariable)-.25 E/F3 9/Times-Bold@0 SF(MAPFILE)3.749 E F0 1.249 +(is the def)3.499 F(ault)-.1 E F1(arr)3.748 E(ay)-.15 E F0 6.248(.O)C +1.248(ptions, if supplied,)-6.248 F(ha)144 165.6 Q .3 -.15(ve t)-.2 H +(he follo).15 E(wing meanings:)-.25 E F2144 177.6 Q F0 .91 +(The \214rst character of)180 177.6 R F1(delim)3.41 E F0 .911 (is used to terminate each input line, rather than ne)3.41 F 3.411 -(wline. If)-.25 F F1(delim)180 686.4 Q F0(is the empty string,)2.5 E F2 +(wline. If)-.25 F F1(delim)180 189.6 Q F0(is the empty string,)2.5 E F2 (map\214le)2.5 E F0(will terminate a line when it reads a NUL character) -2.5 E(.)-.55 E F2144 698.4 Q F0(Cop)180 698.4 Q 2.5(ya)-.1 G 2.5 +2.5 E(.)-.55 E F2144 201.6 Q F0(Cop)180 201.6 Q 2.5(ya)-.1 G 2.5 (tm)-2.5 G(ost)-2.5 E F1(count)2.7 E F0 2.5(lines. If)3.18 F F1(count) -2.5 E F0(is 0, all lines are copied.)2.5 E F2144 710.4 Q F0(Be)180 -710.4 Q(gin assigning to)-.15 E F1(arr)2.83 E(ay)-.15 E F0(at inde)2.82 +2.5 E F0(is 0, all lines are copied.)2.5 E F2144 213.6 Q F0(Be)180 +213.6 Q(gin assigning to)-.15 E F1(arr)2.83 E(ay)-.15 E F0(at inde)2.82 E(x)-.15 E F1(origin)2.73 E F0 5(.T).24 G(he def)-5 E(ault inde)-.1 E -2.5(xi)-.15 G 2.5(s0)-2.5 G(.)-2.5 E(GNU Bash 5.0)72 768 Q(2019 No) -136.385 E -.15(ve)-.15 G(mber 26).15 E(66)185.545 E 0 Cg EP -%%Page: 67 67 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF144 84 Q F0(Discard the \214rst)180 84 Q/F2 10/Times-Italic@0 SF -(count)2.5 E F0(lines read.)2.5 E F1144 96 Q F0(Remo)180 96 Q .3 --.15(ve a t)-.15 H(railing).15 E F2(delim)2.5 E F0(\(def)2.5 E(ault ne) --.1 E(wline\) from each line read.)-.25 E F1144 108 Q F0 -(Read lines from \214le descriptor)180 108 Q F2(fd)2.5 E F0 -(instead of the standard input.)2.5 E F1144 120 Q F0(Ev)180 120 Q -(aluate)-.25 E F2(callbac)2.7 E(k)-.2 E F0(each time)3.17 E F2(quantum) -2.5 E F0(lines are read.)2.5 E(The)5 E F12.5 E F0 -(option speci\214es)2.5 E F2(quantum)2.75 E F0(.).32 E F1144 132 Q -F0(Specify the number of lines read between each call to)180 132 Q F2 -(callbac)2.7 E(k)-.2 E F0(.).67 E(If)144 148.8 Q F12.968 E F0 .467 -(is speci\214ed without)2.967 F F12.967 E F0 2.967(,t)C .467 -(he def)-2.967 F .467(ault quantum is 5000.)-.1 F(When)5.467 E F2 +2.5(xi)-.15 G 2.5(s0)-2.5 G(.)-2.5 E F2144 225.6 Q F0 +(Discard the \214rst)180 225.6 Q F1(count)2.5 E F0(lines read.)2.5 E F2 +144 237.6 Q F0(Remo)180 237.6 Q .3 -.15(ve a t)-.15 H(railing).15 +E F1(delim)2.5 E F0(\(def)2.5 E(ault ne)-.1 E +(wline\) from each line read.)-.25 E F2144 249.6 Q F0 +(Read lines from \214le descriptor)180 249.6 Q F1(fd)2.5 E F0 +(instead of the standard input.)2.5 E F2144 261.6 Q F0(Ev)180 +261.6 Q(aluate)-.25 E F1(callbac)2.7 E(k)-.2 E F0(each time)3.17 E F1 +(quantum)2.5 E F0(lines are read.)2.5 E(The)5 E F22.5 E F0 +(option speci\214es)2.5 E F1(quantum)2.75 E F0(.).32 E F2144 273.6 +Q F0(Specify the number of lines read between each call to)180 273.6 Q +F1(callbac)2.7 E(k)-.2 E F0(.).67 E(If)144 290.4 Q F22.968 E F0 +.467(is speci\214ed without)2.967 F F22.967 E F0 2.967(,t)C .467 +(he def)-2.967 F .467(ault quantum is 5000.)-.1 F(When)5.467 E F1 (callbac)2.967 E(k)-.2 E F0 .467(is e)2.967 F -.25(va)-.25 G .467 -(luated, it is sup-).25 F .261(plied the inde)144 160.8 R 2.761(xo)-.15 +(luated, it is sup-).25 F .261(plied the inde)144 302.4 R 2.761(xo)-.15 G 2.761(ft)-2.761 G .261(he ne)-2.761 F .262(xt array element to be ass\ igned and the line to be assigned to that element)-.15 F .275 -(as additional ar)144 172.8 R(guments.)-.18 E F2(callbac)5.275 E(k)-.2 E +(as additional ar)144 314.4 R(guments.)-.18 E F1(callbac)5.275 E(k)-.2 E F0 .275(is e)2.775 F -.25(va)-.25 G .274 (luated after the line is read b).25 F .274 -(ut before the array element is)-.2 F(assigned.)144 184.8 Q -(If not supplied with an e)144 201.6 Q(xplicit origin,)-.15 E F1 -(map\214le)2.5 E F0(will clear)2.5 E F2(arr)2.5 E(ay)-.15 E F0 -(before assigning to it.)2.5 E F1(map\214le)144 218.4 Q F0 .797 +(ut before the array element is)-.2 F(assigned.)144 326.4 Q +(If not supplied with an e)144 343.2 Q(xplicit origin,)-.15 E F2 +(map\214le)2.5 E F0(will clear)2.5 E F1(arr)2.5 E(ay)-.15 E F0 +(before assigning to it.)2.5 E F2(map\214le)144 360 Q F0 .797 (returns successfully unless an in)3.297 F -.25(va)-.4 G .797 -(lid option or option ar).25 F .797(gument is supplied,)-.18 F F2(arr) -3.297 E(ay)-.15 E F0 .798(is in-)3.298 F -.25(va)144 230.4 S -(lid or unassignable, or if).25 E F2(arr)2.5 E(ay)-.15 E F0 +(lid option or option ar).25 F .797(gument is supplied,)-.18 F F1(arr) +3.297 E(ay)-.15 E F0 .798(is in-)3.298 F -.25(va)144 372 S +(lid or unassignable, or if).25 E F1(arr)2.5 E(ay)-.15 E F0 (is not an inde)2.5 E -.15(xe)-.15 G 2.5(da).15 G(rray)-2.5 E(.)-.65 E -F1(popd)108 247.2 Q F0<5bad>2.5 E F1(n)A F0 2.5(][)C(+)-2.5 E F2(n)A F0 -2.5(][)C-2.5 E F2(n)A F0(])A(Remo)144 259.2 Q -.15(ve)-.15 G 2.8(se) +F2(popd)108 388.8 Q F0<5bad>2.5 E F2(n)A F0 2.5(][)C(+)-2.5 E F1(n)A F0 +2.5(][)C-2.5 E F1(n)A F0(])A(Remo)144 400.8 Q -.15(ve)-.15 G 2.8(se) .15 G .3(ntries from the directory stack.)-2.8 F -.4(Wi)5.299 G .299 (th no ar).4 F .299(guments, remo)-.18 F -.15(ve)-.15 G 2.799(st).15 G .299(he top directory from the)-2.799 F 1.478(stack, and performs a)144 -271.2 R F1(cd)3.978 E F0 1.479(to the ne)3.978 F 3.979(wt)-.25 G 1.479 +412.8 R F2(cd)3.978 E F0 1.479(to the ne)3.978 F 3.979(wt)-.25 G 1.479 (op directory)-3.979 F 6.479(.A)-.65 G -.18(rg)-6.479 G 1.479 (uments, if supplied, ha).18 F 1.779 -.15(ve t)-.2 H 1.479(he follo).15 -F(wing)-.25 E(meanings:)144 283.2 Q F1144 295.2 Q F0 .551 -(Suppresses the normal change of directory when remo)180 295.2 R .551 +F(wing)-.25 E(meanings:)144 424.8 Q F2144 436.8 Q F0 .551 +(Suppresses the normal change of directory when remo)180 436.8 R .551 (ving directories from the stack, so)-.15 F -(that only the stack is manipulated.)180 307.2 Q F1(+)144 319.2 Q F2(n)A -F0(Remo)180 319.2 Q -.15(ve)-.15 G 2.64(st).15 G(he)-2.64 E F2(n)2.64 E +(that only the stack is manipulated.)180 448.8 Q F2(+)144 460.8 Q F1(n)A +F0(Remo)180 460.8 Q -.15(ve)-.15 G 2.64(st).15 G(he)-2.64 E F1(n)2.64 E F0 .14(th entry counting from the left of the list sho)B .14(wn by)-.25 -F F1(dirs)2.64 E F0 2.64(,s)C .14(tarting with zero.)-2.64 F -.15(Fo)180 -331.2 S 2.5(re).15 G(xample:)-2.65 E/F3 10/Courier@0 SF(popd +0)2.5 E F0 +F F2(dirs)2.64 E F0 2.64(,s)C .14(tarting with zero.)-2.64 F -.15(Fo)180 +472.8 S 2.5(re).15 G(xample:)-2.65 E/F4 10/Courier@0 SF(popd +0)2.5 E F0 (remo)2.5 E -.15(ve)-.15 G 2.5(st).15 G(he \214rst directory)-2.5 E(,) --.65 E F3(popd +1)2.5 E F0(the second.)2.5 E F1144 343.2 Q F2(n)A F0 -(Remo)180 343.2 Q -.15(ve)-.15 G 3.76(st).15 G(he)-3.76 E F2(n)3.76 E F0 +-.65 E F4(popd +1)2.5 E F0(the second.)2.5 E F2144 484.8 Q F1(n)A F0 +(Remo)180 484.8 Q -.15(ve)-.15 G 3.76(st).15 G(he)-3.76 E F1(n)3.76 E F0 1.259(th entry counting from the right of the list sho)B 1.259(wn by) --.25 F F1(dirs)3.759 E F0 3.759(,s)C 1.259(tarting with)-3.759 F 2.5 -(zero. F)180 355.2 R(or e)-.15 E(xample:)-.15 E F3(popd -0)2.5 E F0 +-.25 F F2(dirs)3.759 E F0 3.759(,s)C 1.259(tarting with)-3.759 F 2.5 +(zero. F)180 496.8 R(or e)-.15 E(xample:)-.15 E F4(popd -0)2.5 E F0 (remo)2.5 E -.15(ve)-.15 G 2.5(st).15 G(he last directory)-2.5 E(,)-.65 -E F3(popd -1)2.5 E F0(the ne)2.5 E(xt to last.)-.15 E .643(If the)144 -372 R F1(popd)3.143 E F0 .643(command is successful, a)3.143 F F1(dirs) -3.143 E F0 .644(is performed as well, and the return status is 0.)3.143 -F F1(popd)5.644 E F0 .416(returns f)144 384 R .416(alse if an in)-.1 F --.25(va)-.4 G .415 +E F4(popd -1)2.5 E F0(the ne)2.5 E(xt to last.)-.15 E .643(If the)144 +513.6 R F2(popd)3.143 E F0 .643(command is successful, a)3.143 F F2 +(dirs)3.143 E F0 .644(is performed as well, and the return status is 0.) +3.143 F F2(popd)5.644 E F0 .416(returns f)144 525.6 R .416 +(alse if an in)-.1 F -.25(va)-.4 G .415 (lid option is encountered, the directory stack is empty).25 F 2.915 (,an)-.65 G(on-e)-2.915 E .415(xistent direc-)-.15 F -(tory stack entry is speci\214ed, or the directory change f)144 396 Q -(ails.)-.1 E F1(printf)108 412.8 Q F0([)2.5 E F1A F2(var)2.5 E F0 -(])A F2(format)2.5 E F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A .357 -(Write the formatted)144 424.8 R F2(ar)2.857 E(guments)-.37 E F0 .357 -(to the standard output under the control of the)2.857 F F2(format)2.858 -E F0 5.358(.T)C(he)-5.358 E F12.858 E F0(op-)2.858 E .714 -(tion causes the output to be assigned to the v)144 436.8 R(ariable)-.25 -E F2(var)3.214 E F0 .714(rather than being printed to the standard)3.214 -F(output.)144 448.8 Q(The)144 472.8 Q F2(format)3.017 E F0 .517(is a ch\ +(tory stack entry is speci\214ed, or the directory change f)144 537.6 Q +(ails.)-.1 E F2(printf)108 554.4 Q F0([)2.5 E F2A F1(var)2.5 E F0 +(])A F1(format)2.5 E F0([)2.5 E F1(ar)A(guments)-.37 E F0(])A .357 +(Write the formatted)144 566.4 R F1(ar)2.857 E(guments)-.37 E F0 .357 +(to the standard output under the control of the)2.857 F F1(format)2.858 +E F0 5.358(.T)C(he)-5.358 E F22.858 E F0(op-)2.858 E .714 +(tion causes the output to be assigned to the v)144 578.4 R(ariable)-.25 +E F1(var)3.214 E F0 .714(rather than being printed to the standard)3.214 +F(output.)144 590.4 Q(The)144 614.4 Q F1(format)3.017 E F0 .517(is a ch\ aracter string which contains three types of objects: plain characters,\ which are)3.017 F .704(simply copied to standard output, character esc\ -ape sequences, which are con)144 484.8 R -.15(ve)-.4 G .703 +ape sequences, which are con)144 626.4 R -.15(ve)-.4 G .703 (rted and copied to).15 F .036(the standard output, and format speci\ -\214cations, each of which causes printing of the ne)144 496.8 R .037 -(xt successi)-.15 F -.15(ve)-.25 G F2(ar)144 508.8 Q(gument)-.37 E F0 -5.532(.I)C 3.032(na)-5.532 G .532(ddition to the standard)-3.032 F F2 -(printf)3.032 E F0 .532(\(1\) format speci\214cations,)B F1(printf)3.031 -E F0 .531(interprets the follo)3.031 F(w-)-.25 E(ing e)144 520.8 Q -(xtensions:)-.15 E F1(%b)144 532.8 Q F0(causes)180 532.8 Q F1(printf) +\214cations, each of which causes printing of the ne)144 638.4 R .037 +(xt successi)-.15 F -.15(ve)-.25 G F1(ar)144 650.4 Q(gument)-.37 E F0 +5.532(.I)C 3.032(na)-5.532 G .532(ddition to the standard)-3.032 F F1 +(printf)3.032 E F0 .532(\(1\) format speci\214cations,)B F2(printf)3.031 +E F0 .531(interprets the follo)3.031 F(w-)-.25 E(ing e)144 662.4 Q +(xtensions:)-.15 E F2(%b)144 674.4 Q F0(causes)180 674.4 Q F2(printf) 2.595 E F0 .096(to e)2.595 F .096 -(xpand backslash escape sequences in the corresponding)-.15 F F2(ar) -2.596 E(gument)-.37 E F0 .096(in the)2.596 F(same w)180 544.8 Q(ay as) --.1 E F1(echo \255e)2.5 E F0(.)A F1(%q)144 556.8 Q F0(causes)180 556.8 Q -F1(printf)2.51 E F0 .01(to output the corresponding)2.51 F F2(ar)2.51 E +(xpand backslash escape sequences in the corresponding)-.15 F F1(ar) +2.596 E(gument)-.37 E F0 .096(in the)2.596 F(same w)180 686.4 Q(ay as) +-.1 E F2(echo \255e)2.5 E F0(.)A F2(%q)144 698.4 Q F0(causes)180 698.4 Q +F2(printf)2.51 E F0 .01(to output the corresponding)2.51 F F1(ar)2.51 E (gument)-.37 E F0 .01(in a format that can be reused as shell)2.51 F -(input.)180 568.8 Q F1(%\()144 580.8 Q F2(datefmt)A F1(\)T)A F0(causes) -180 592.8 Q F1(printf)4.403 E F0 1.904 +(input.)180 710.4 Q(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(67) +190.95 E 0 Cg EP +%%Page: 68 68 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(%\()144 84 Q/F2 10/Times-Italic@0 SF(datefmt)A F1(\)T)A F0(causes)180 +96 Q F1(printf)4.403 E F0 1.904 (to output the date-time string resulting from using)4.403 F F2(datefmt) -4.404 E F0 1.904(as a format)4.404 F .381(string for)180 604.8 R F2 +4.404 E F0 1.904(as a format)4.404 F .381(string for)180 108 R F2 (strftime)2.881 E F0 2.881(\(3\). The)B(corresponding)2.881 E F2(ar) 2.881 E(gument)-.37 E F0 .381(is an inte)2.881 F .381 (ger representing the number)-.15 F .292(of seconds since the epoch.)180 -616.8 R -1 -.8(Tw o)5.293 H .293(special ar)3.593 F .293(gument v)-.18 F +120 R -1 -.8(Tw o)5.293 H .293(special ar)3.593 F .293(gument v)-.18 F .293(alues may be used: \2551 represents the)-.25 F .694 -(current time, and \2552 represents the time the shell w)180 628.8 R -.693(as in)-.1 F -.2(vo)-.4 G -.1(ke).2 G 3.193(d. If).1 F .693(no ar) -3.193 F .693(gument is speci-)-.18 F .21(\214ed, con)180 640.8 R -.15 -(ve)-.4 G .21(rsion beha).15 F -.15(ve)-.2 G 2.71(sa).15 G 2.71(si)-2.71 -G 2.71<66ad>-2.71 G 2.71(1h)-2.71 G .21(ad been gi)-2.71 F -.15(ve)-.25 -G 2.71(n. This).15 F .21(is an e)2.71 F .21(xception to the usual)-.15 F -F1(printf)2.71 E F0(beha)180 652.8 Q(vior)-.2 E(.)-.55 E(Ar)144 669.6 Q -.464(guments to non-string format speci\214ers are treated as C constan\ -ts, e)-.18 F .463(xcept that a leading plus or)-.15 F 1.258 -(minus sign is allo)144 681.6 R 1.259 +(current time, and \2552 represents the time the shell w)180 132 R .693 +(as in)-.1 F -.2(vo)-.4 G -.1(ke).2 G 3.193(d. If).1 F .693(no ar)3.193 +F .693(gument is speci-)-.18 F .21(\214ed, con)180 144 R -.15(ve)-.4 G +.21(rsion beha).15 F -.15(ve)-.2 G 2.71(sa).15 G 2.71(si)-2.71 G 2.71 +<66ad>-2.71 G 2.71(1h)-2.71 G .21(ad been gi)-2.71 F -.15(ve)-.25 G 2.71 +(n. This).15 F .21(is an e)2.71 F .21(xception to the usual)-.15 F F1 +(printf)2.71 E F0(beha)180 156 Q(vior)-.2 E(.)-.55 E(Ar)144 172.8 Q .464 +(guments to non-string format speci\214ers are treated as C constants, \ +e)-.18 F .463(xcept that a leading plus or)-.15 F 1.258 +(minus sign is allo)144 184.8 R 1.259 (wed, and if the leading character is a single or double quote, the v) --.25 F 1.259(alue is the)-.25 F(ASCII v)144 693.6 Q(alue of the follo) --.25 E(wing character)-.25 E(.)-.55 E(The)144 710.4 Q F2(format)2.515 E +-.25 F 1.259(alue is the)-.25 F(ASCII v)144 196.8 Q(alue of the follo) +-.25 E(wing character)-.25 E(.)-.55 E(The)144 213.6 Q F2(format)2.515 E F0 .015(is reused as necessary to consume all of the)2.515 F F2(ar)2.515 E(guments)-.37 E F0 5.015(.I)C 2.514(ft)-5.015 G(he)-2.514 E F2(format) 2.514 E F0 .014(requires more)2.514 F F2(ar)2.514 E(-)-.2 E(guments)144 -722.4 Q F0 .565(than are supplied, the e)3.065 F .566 +225.6 Q F0 .565(than are supplied, the e)3.065 F .566 (xtra format speci\214cations beha)-.15 F .866 -.15(ve a)-.2 H 3.066(si) .15 G 3.066(faz)-3.066 G .566(ero v)-3.066 F .566(alue or null string,) --.25 F(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26) -.15 E(67)185.545 E 0 Cg EP -%%Page: 68 68 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -(as appropriate, had been supplied.)144 84 Q(The return v)5 E -(alue is zero on success, non-zero on f)-.25 E(ailure.)-.1 E/F1 10 -/Times-Bold@0 SF(pushd)108 100.8 Q F0([)2.5 E F1A F0 2.5(][)C(+) --2.5 E/F2 10/Times-Italic@0 SF(n)A F0 2.5(][)C-2.5 E F2(n)A F0(])A -F1(pushd)108 112.8 Q F0([)2.5 E F1A F0 2.5(][)C F2(dir)-2.5 E F0 -(])A .64(Adds a directory to the top of the directory stack, or rotates\ - the stack, making the ne)144 124.8 R 3.139(wt)-.25 G .639(op of the) --3.139 F .416(stack the current w)144 136.8 R .416(orking directory)-.1 -F 5.416(.W)-.65 G .416(ith no ar)-5.816 F(guments,)-.18 E F1(pushd)2.916 -E F0 -.15(ex)2.916 G .416(changes the top tw).15 F 2.917(od)-.1 G -(irectories)-2.917 E 1.625 -(and returns 0, unless the directory stack is empty)144 148.8 R 6.625 +-.25 F(as appropriate, had been supplied.)144 237.6 Q(The return v)5 E +(alue is zero on success, non-zero on f)-.25 E(ailure.)-.1 E F1(pushd) +108 254.4 Q F0([)2.5 E F1A F0 2.5(][)C(+)-2.5 E F2(n)A F0 2.5(][)C +-2.5 E F2(n)A F0(])A F1(pushd)108 266.4 Q F0([)2.5 E F1A F0 +2.5(][)C F2(dir)-2.5 E F0(])A .64(Adds a directory to the top of the di\ +rectory stack, or rotates the stack, making the ne)144 278.4 R 3.139(wt) +-.25 G .639(op of the)-3.139 F .416(stack the current w)144 290.4 R .416 +(orking directory)-.1 F 5.416(.W)-.65 G .416(ith no ar)-5.816 F +(guments,)-.18 E F1(pushd)2.916 E F0 -.15(ex)2.916 G .416 +(changes the top tw).15 F 2.917(od)-.1 G(irectories)-2.917 E 1.625 +(and returns 0, unless the directory stack is empty)144 302.4 R 6.625 (.A)-.65 G -.18(rg)-6.625 G 1.625(uments, if supplied, ha).18 F 1.925 --.15(ve t)-.2 H 1.625(he follo).15 F(wing)-.25 E(meanings:)144 160.8 Q -F1144 172.8 Q F0 1.811(Suppresses the normal change of directory \ -when rotating or adding directories to the)180 172.8 R -(stack, so that only the stack is manipulated.)180 184.8 Q F1(+)144 -196.8 Q F2(n)A F0 1.268(Rotates the stack so that the)180 196.8 R F2(n) +-.15(ve t)-.2 H 1.625(he follo).15 F(wing)-.25 E(meanings:)144 314.4 Q +F1144 326.4 Q F0 1.811(Suppresses the normal change of directory \ +when rotating or adding directories to the)180 326.4 R +(stack, so that only the stack is manipulated.)180 338.4 Q F1(+)144 +350.4 Q F2(n)A F0 1.268(Rotates the stack so that the)180 350.4 R F2(n) 3.768 E F0 1.267(th directory \(counting from the left of the list sho)B -1.267(wn by)-.25 F F1(dirs)180 208.8 Q F0 2.5(,s)C -(tarting with zero\) is at the top.)-2.5 E F1144 220.8 Q F2(n)A F0 -.92(Rotates the stack so that the)180 220.8 R F2(n)3.42 E F0 .92 +1.267(wn by)-.25 F F1(dirs)180 362.4 Q F0 2.5(,s)C +(tarting with zero\) is at the top.)-2.5 E F1144 374.4 Q F2(n)A F0 +.92(Rotates the stack so that the)180 374.4 R F2(n)3.42 E F0 .92 (th directory \(counting from the right of the list sho)B .92(wn by)-.25 -F F1(dirs)180 232.8 Q F0 2.5(,s)C(tarting with zero\) is at the top.) --2.5 E F2(dir)144.35 244.8 Q F0(Adds)180 244.8 Q F2(dir)3.138 E F0 .288 +F F1(dirs)180 386.4 Q F0 2.5(,s)C(tarting with zero\) is at the top.) +-2.5 E F2(dir)144.35 398.4 Q F0(Adds)180 398.4 Q F2(dir)3.138 E F0 .288 (to the directory stack at the top, making it the ne)3.518 F 2.787(wc) -.25 G .287(urrent w)-2.787 F .287(orking directory as)-.1 F -(if it had been supplied as the ar)180 256.8 Q(gument to the)-.18 E F1 -(cd)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .488(If the)144 273.6 R F1(pushd) +(if it had been supplied as the ar)180 410.4 Q(gument to the)-.18 E F1 +(cd)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .488(If the)144 427.2 R F1(pushd) 2.988 E F0 .488(command is successful, a)2.988 F F1(dirs)2.988 E F0 .488 (is performed as well.)2.988 F .489(If the \214rst form is used,)5.488 F -F1(pushd)2.989 E F0 1.04(returns 0 unless the cd to)144 285.6 R F2(dir) +F1(pushd)2.989 E F0 1.04(returns 0 unless the cd to)144 439.2 R F2(dir) 3.89 E F0 -.1(fa)4.27 G 3.539(ils. W).1 F 1.039(ith the second form,)-.4 F F1(pushd)3.539 E F0 1.039(returns 0 unless the directory)3.539 F .846 -(stack is empty)144 297.6 R 3.346(,an)-.65 G(on-e)-3.346 E .847(xistent\ +(stack is empty)144 451.2 R 3.346(,an)-.65 G(on-e)-3.346 E .847(xistent\ directory stack element is speci\214ed, or the directory change to the) --.15 F(speci\214ed ne)144 309.6 Q 2.5(wc)-.25 G(urrent directory f)-2.5 -E(ails.)-.1 E F1(pwd)108 326.4 Q F0([)2.5 E F1(\255LP)A F0(])A .845 -(Print the absolute pathname of the current w)144 338.4 R .845 +-.15 F(speci\214ed ne)144 463.2 Q 2.5(wc)-.25 G(urrent directory f)-2.5 +E(ails.)-.1 E F1(pwd)108 480 Q F0([)2.5 E F1(\255LP)A F0(])A .845 +(Print the absolute pathname of the current w)144 492 R .845 (orking directory)-.1 F 5.844(.T)-.65 G .844 (he pathname printed contains no)-5.844 F .181(symbolic links if the)144 -350.4 R F12.681 E F0 .181(option is supplied or the)2.681 F F1 -.181(\255o ph)2.681 F(ysical)-.15 E F0 .181(option to the)2.681 F F1 -(set)2.681 E F0 -.2(bu)2.681 G .182(iltin command is).2 F 3.264 -(enabled. If)144 362.4 R(the)3.264 E F13.264 E F0 .763 +504 R F12.681 E F0 .181(option is supplied or the)2.681 F F1 .181 +(\255o ph)2.681 F(ysical)-.15 E F0 .181(option to the)2.681 F F1(set) +2.681 E F0 -.2(bu)2.681 G .182(iltin command is).2 F 3.264(enabled. If) +144 516 R(the)3.264 E F13.264 E F0 .763 (option is used, the pathname printed may contain symbolic links.)3.264 F .763(The return)5.763 F .405(status is 0 unless an error occurs while\ - reading the name of the current directory or an in)144 374.4 R -.25(va) --.4 G .405(lid op-).25 F(tion is supplied.)144 386.4 Q F1 -.18(re)108 -403.2 S(ad).18 E F0([)3.817 E F1(\255ers)A F0 3.817(][)C F1-3.817 + reading the name of the current directory or an in)144 528 R -.25(va) +-.4 G .405(lid op-).25 F(tion is supplied.)144 540 Q F1 -.18(re)108 +556.8 S(ad).18 E F0([)3.817 E F1(\255ers)A F0 3.817(][)C F1-3.817 E F2(aname)3.817 E F0 3.817(][)C F1-3.817 E F2(delim)3.817 E F0 3.817(][)C F1-3.817 E F2(te)3.817 E(xt)-.2 E F0 3.817(][)C F1 -3.817 E F2(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F1 -3.816 E F2(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F1-3.816 E F2(pr)3.816 E(ompt)-.45 E F0 3.816(][)C F1-3.816 E F2(timeout) -3.816 E F0 3.816(][)C F1-3.816 E F2(fd)3.816 E F0(])A([)108 415.2 +3.816 E F0 3.816(][)C F1-3.816 E F2(fd)3.816 E F0(])A([)108 568.8 Q F2(name)A F0(...])2.5 E .516(One line is read from the standard input\ -, or from the \214le descriptor)144 427.2 R F2(fd)3.016 E F0 .516 -(supplied as an ar)3.016 F .517(gument to)-.18 F(the)144 439.2 Q F1 +, or from the \214le descriptor)144 580.8 R F2(fd)3.016 E F0 .516 +(supplied as an ar)3.016 F .517(gument to)-.18 F(the)144 592.8 Q F1 2.936 E F0 .436(option, split into w)2.936 F .435 (ords as described abo)-.1 F .735 -.15(ve u)-.15 H(nder).15 E F1 -.75 (Wo)2.935 G .435(rd Splitting).75 F F0 2.935(,a)C .435(nd the \214rst w) --2.935 F .435(ord is as-)-.1 F .375(signed to the \214rst)144 451.2 R F2 +-2.935 F .435(ord is as-)-.1 F .375(signed to the \214rst)144 604.8 R F2 (name)3.235 E F0 2.876(,t).18 G .376(he second w)-2.876 F .376 (ord to the second)-.1 F F2(name)3.236 E F0 2.876(,a).18 G .376 (nd so on.)-2.876 F .376(If there are more w)5.376 F(ords)-.1 E .237 -(than names, the remaining w)144 463.2 R .237(ords and their interv)-.1 +(than names, the remaining w)144 616.8 R .237(ords and their interv)-.1 F .237(ening delimiters are assigned to the last)-.15 F F2(name)3.096 E -F0 5.236(.I).18 G(f)-5.236 E .874(there are fe)144 475.2 R .874(wer w) +F0 5.236(.I).18 G(f)-5.236 E .874(there are fe)144 628.8 R .874(wer w) -.25 F .875(ords read from the input stream than names, the remaining n\ -ames are assigned)-.1 F .518(empty v)144 487.2 R 3.018(alues. The)-.25 F +ames are assigned)-.1 F .518(empty v)144 640.8 R 3.018(alues. The)-.25 F .518(characters in)3.018 F/F3 9/Times-Bold@0 SF(IFS)3.018 E F0 .518 (are used to split the line into w)2.768 F .517 -(ords using the same rules the)-.1 F .026(shell uses for e)144 499.2 R +(ords using the same rules the)-.1 F .026(shell uses for e)144 652.8 R .026(xpansion \(described abo)-.15 F .326 -.15(ve u)-.15 H(nder).15 E F1 -.75(Wo)2.526 G .026(rd Splitting).75 F F0 2.526(\). The)B .026 (backslash character \()2.526 F F1(\\)A F0 2.527(\)m)C(ay)-2.527 E .489 -(be used to remo)144 511.2 R .788 -.15(ve a)-.15 H .788 -.15(ny s).15 H +(be used to remo)144 664.8 R .788 -.15(ve a)-.15 H .788 -.15(ny s).15 H .488(pecial meaning for the ne).15 F .488 (xt character read and for line continuation.)-.15 F(Op-)5.488 E -(tions, if supplied, ha)144 523.2 Q .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F1144 535.2 Q F2(aname)2.5 E F0 1.025 -(The w)180 547.2 R 1.026 +(tions, if supplied, ha)144 676.8 Q .3 -.15(ve t)-.2 H(he follo).15 E +(wing meanings:)-.25 E F1144 688.8 Q F2(aname)2.5 E F0 1.025 +(The w)180 700.8 R 1.026 (ords are assigned to sequential indices of the array v)-.1 F(ariable) -.25 E F2(aname)3.856 E F0 3.526(,s).18 G 1.026(tarting at 0.)-3.526 F -F2(aname)180.33 559.2 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5 +F2(aname)180.33 712.8 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5 -.25(ew va)-2.5 H(lues are assigned.).25 E(Other)5 E F2(name)2.5 E F0 -(ar)2.5 E(guments are ignored.)-.18 E F1144 571.2 Q F2(delim)2.5 E -F0 .281(The \214rst character of)180 583.2 R F2(delim)2.781 E F0 .281 +(ar)2.5 E(guments are ignored.)-.18 E(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(68)190.95 E 0 Cg EP +%%Page: 69 69 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF144 84 Q/F2 10/Times-Italic@0 SF(delim)2.5 E F0 .281 +(The \214rst character of)180 96 R F2(delim)2.781 E F0 .281 (is used to terminate the input line, rather than ne)2.781 F 2.78 -(wline. If)-.25 F F2(de-)2.78 E(lim)180 595.2 Q F0(is the empty string,) +(wline. If)-.25 F F2(de-)2.78 E(lim)180 108 Q F0(is the empty string,) 2.5 E F1 -.18(re)2.5 G(ad).18 E F0 (will terminate a line when it reads a NUL character)2.5 E(.)-.55 E F1 -144 607.2 Q F0 .372 -(If the standard input is coming from a terminal,)180 607.2 R F1 -.18 -(re)2.873 G(adline).18 E F0(\(see)2.873 E F3(READLINE)2.873 E F0(abo) -2.623 E -.15(ve)-.15 G 2.873(\)i).15 G 2.873(su)-2.873 G(sed)-2.873 E -.218(to obtain the line.)180 619.2 R .218 +144 120 Q F0 .372 +(If the standard input is coming from a terminal,)180 120 R F1 -.18(re) +2.873 G(adline).18 E F0(\(see)2.873 E/F3 9/Times-Bold@0 SF(READLINE) +2.873 E F0(abo)2.623 E -.15(ve)-.15 G 2.873(\)i).15 G 2.873(su)-2.873 G +(sed)-2.873 E .218(to obtain the line.)180 132 R .218 (Readline uses the current \(or def)5.218 F .218 (ault, if line editing w)-.1 F .218(as not pre)-.1 F(viously)-.25 E -(acti)180 631.2 Q -.15(ve)-.25 G 2.5(\)e).15 G(diting settings, b)-2.5 E +(acti)180 144 Q -.15(ve)-.25 G 2.5(\)e).15 G(diting settings, b)-2.5 E (ut uses Readline')-.2 E 2.5(sd)-.55 G(ef)-2.5 E -(ault \214lename completion.)-.1 E F1144 643.2 Q F2(te)2.5 E(xt) --.2 E F0(If)180 643.2 Q F1 -.18(re)2.715 G(adline).18 E F0 .216 +(ault \214lename completion.)-.1 E F1144 156 Q F2(te)2.5 E(xt)-.2 +E F0(If)180 156 Q F1 -.18(re)2.715 G(adline).18 E F0 .216 (is being used to read the line,)2.715 F F2(te)2.716 E(xt)-.2 E F0 .216 (is placed into the editing b)2.716 F(uf)-.2 E .216(fer before edit-) --.25 F(ing be)180 655.2 Q(gins.)-.15 E F1144 667.2 Q F2(nc)2.5 E -(har)-.15 E(s)-.1 E F1 -.18(re)180 679.2 S(ad).18 E F0 .323 +-.25 F(ing be)180 168 Q(gins.)-.15 E F1144 180 Q F2(nc)2.5 E(har) +-.15 E(s)-.1 E F1 -.18(re)180 192 S(ad).18 E F0 .323 (returns after reading)2.823 F F2(nc)2.823 E(har)-.15 E(s)-.1 E F0 .323 (characters rather than w)2.823 F .323 -(aiting for a complete line of in-)-.1 F(put, b)180 691.2 Q +(aiting for a complete line of in-)-.1 F(put, b)180 204 Q (ut honors a delimiter if fe)-.2 E(wer than)-.25 E F2(nc)2.5 E(har)-.15 E(s)-.1 E F0(characters are read before the delimiter)2.5 E(.)-.55 E F1 -144 703.2 Q F2(nc)2.5 E(har)-.15 E(s)-.1 E F1 -.18(re)180 715.2 S -(ad).18 E F0 1.269(returns after reading e)3.769 F(xactly)-.15 E F2(nc) -3.769 E(har)-.15 E(s)-.1 E F0 1.269(characters rather than w)3.769 F -1.27(aiting for a complete)-.1 F 3.19 -(line of input, unless EOF is encountered or)180 727.2 R F1 -.18(re)5.69 -G(ad).18 E F0 3.19(times out.)5.69 F 3.19(Delimiter characters)8.19 F -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(68)185.545 E 0 Cg EP -%%Page: 69 69 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.109 -(encountered in the input are not treated specially and do not cause)180 -84 R/F1 10/Times-Bold@0 SF -.18(re)3.609 G(ad).18 E F0 1.109 -(to return until)3.609 F/F2 10/Times-Italic@0 SF(nc)180 96 Q(har)-.15 E -(s)-.1 E F0 .819(characters are read.)3.319 F .818 -(The result is not split on the characters in)5.818 F F1(IFS)3.318 E F0 -3.318(;t)C .818(he intent is)-3.318 F .497(that the v)180 108 R .497 -(ariable is assigned e)-.25 F .498 -(xactly the characters read \(with the e)-.15 F .498 -(xception of backslash;)-.15 F(see the)180 120 Q F12.5 E F0 -(option belo)2.5 E(w\).)-.25 E F1144 132 Q F2(pr)2.5 E(ompt)-.45 E -F0(Display)180 144 Q F2(pr)3.661 E(ompt)-.45 E F0 1.161 -(on standard error)3.661 F 3.661(,w)-.4 G 1.161(ithout a trailing ne) --3.661 F 1.161(wline, before attempting to read)-.25 F(an)180 156 Q 2.5 -(yi)-.15 G 2.5(nput. The)-2.5 F +144 216 Q F2(nc)2.5 E(har)-.15 E(s)-.1 E F1 -.18(re)180 228 S(ad) +.18 E F0 1.269(returns after reading e)3.769 F(xactly)-.15 E F2(nc)3.769 +E(har)-.15 E(s)-.1 E F0 1.269(characters rather than w)3.769 F 1.27 +(aiting for a complete)-.1 F .275 +(line of input, unless EOF is encountered or)180 240 R F1 -.18(re)2.775 +G(ad).18 E F0 .274(times out.)2.774 F .274(Delimiter characters encoun-) +5.274 F 1.002 +(tered in the input are not treated specially and do not cause)180 252 R +F1 -.18(re)3.503 G(ad).18 E F0 1.003(to return until)3.503 F F2(nc)3.503 +E(har)-.15 E(s)-.1 E F0 .609(characters are read.)180 264 R .608 +(The result is not split on the characters in)5.609 F F1(IFS)3.108 E F0 +3.108(;t)C .608(he intent is that the)-3.108 F -.25(va)180 276 S .669 +(riable is assigned e).25 F .669 +(xactly the characters read \(with the e)-.15 F .67 +(xception of backslash; see the)-.15 F F1180 288 Q F0(option belo) +2.5 E(w\).)-.25 E F1144 300 Q F2(pr)2.5 E(ompt)-.45 E F0(Display) +180 312 Q F2(pr)3.661 E(ompt)-.45 E F0 1.161(on standard error)3.661 F +3.661(,w)-.4 G 1.161(ithout a trailing ne)-3.661 F 1.161 +(wline, before attempting to read)-.25 F(an)180 324 Q 2.5(yi)-.15 G 2.5 +(nput. The)-2.5 F (prompt is displayed only if input is coming from a terminal.)2.5 E F1 -144 168 Q F0 .543(Backslash does not act as an escape character) -180 168 R 5.543(.T)-.55 G .544(he backslash is considered to be part of) --5.543 F .493(the line.)180 180 R .493(In particular)5.493 F 2.993(,ab) +144 336 Q F0 .543(Backslash does not act as an escape character) +180 336 R 5.543(.T)-.55 G .544(he backslash is considered to be part of) +-5.543 F .493(the line.)180 348 R .493(In particular)5.493 F 2.993(,ab) -.4 G(ackslash-ne)-2.993 E .493 (wline pair may not then be used as a line continua-)-.25 F(tion.)180 -192 Q F1144 204 Q F0(Silent mode.)180 204 Q +360 Q F1144 372 Q F0(Silent mode.)180 372 Q (If input is coming from a terminal, characters are not echoed.)5 E F1 -144 216 Q F2(timeout)2.5 E F0(Cause)180 228 Q F1 -.18(re)2.928 G +144 384 Q F2(timeout)2.5 E F0(Cause)180 396 Q F1 -.18(re)2.928 G (ad).18 E F0 .428(to time out and return f)2.928 F .428 (ailure if a complete line of input \(or a speci\214ed num-)-.1 F .561 -(ber of characters\) is not read within)180 240 R F2(timeout)3.061 E F0 +(ber of characters\) is not read within)180 408 R F2(timeout)3.061 E F0 (seconds.)3.061 E F2(timeout)5.561 E F0 .56(may be a decimal number) -3.061 F(with a fractional portion follo)180 252 Q +3.061 F(with a fractional portion follo)180 420 Q (wing the decimal point.)-.25 E(This option is only ef)5 E(fecti)-.25 E .3 -.15(ve i)-.25 H(f).15 E F1 -.18(re)2.5 G(ad).18 E F0 .506(is readin\ g input from a terminal, pipe, or other special \214le; it has no ef)180 -264 R .505(fect when reading)-.25 F .589(from re)180 276 R .589 +432 R .505(fect when reading)-.25 F .589(from re)180 444 R .589 (gular \214les.)-.15 F(If)5.589 E F1 -.18(re)3.089 G(ad).18 E F0 .589 (times out,)3.089 F F1 -.18(re)3.089 G(ad).18 E F0(sa)3.089 E -.15(ve) -.2 G 3.089(sa).15 G .889 -.15(ny p)-3.089 H .59 -(artial input read into the speci\214ed).15 F -.25(va)180 288 S(riable) +(artial input read into the speci\214ed).15 F -.25(va)180 456 S(riable) .25 E F2(name)2.77 E F0 5.27(.I)C(f)-5.27 E F2(timeout)2.77 E F0 .27 (is 0,)2.77 F F1 -.18(re)2.77 G(ad).18 E F0 .27(returns immediately)2.77 F 2.77(,w)-.65 G .27(ithout trying to read an)-2.77 F 2.77(yd)-.15 G -(ata.)-2.77 E 1.12(The e)180 300 R 1.12(xit status is 0 if input is a) +(ata.)-2.77 E 1.12(The e)180 468 R 1.12(xit status is 0 if input is a) -.15 F -.25(va)-.2 G 1.12(ilable on the speci\214ed \214le descriptor) .25 F 3.62(,n)-.4 G 1.12(on-zero other)-3.62 F(-)-.2 E 2.5(wise. The)180 -312 R -.15(ex)2.5 G(it status is greater than 128 if the timeout is e) -.15 E(xceeded.)-.15 E F1144 324 Q F2(fd)2.5 E F0 -(Read input from \214le descriptor)180 324 Q F2(fd)2.5 E F0(.)A .477 -(If no)144 340.8 R F2(names)3.337 E F0 .477 +480 R -.15(ex)2.5 G(it status is greater than 128 if the timeout is e) +.15 E(xceeded.)-.15 E F1144 492 Q F2(fd)2.5 E F0 +(Read input from \214le descriptor)180 492 Q F2(fd)2.5 E F0(.)A .477 +(If no)144 508.8 R F2(names)3.337 E F0 .477 (are supplied, the line read is assigned to the v)3.247 F(ariable)-.25 E -/F3 9/Times-Bold@0 SF(REPL)2.976 E(Y)-.828 E/F4 9/Times-Roman@0 SF(.)A -F0 .476(The e)4.976 F .476(xit status is zero,)-.15 F .772 -(unless end-of-\214le is encountered,)144 352.8 R F1 -.18(re)3.272 G(ad) +F3(REPL)2.976 E(Y)-.828 E/F4 9/Times-Roman@0 SF(.)A F0 .476(The e)4.976 +F .476(xit status is zero,)-.15 F .772 +(unless end-of-\214le is encountered,)144 520.8 R F1 -.18(re)3.272 G(ad) .18 E F0 .773 (times out \(in which case the status is greater than 128\), a)3.272 F --.25(va)144 364.8 S .853 +-.25(va)144 532.8 S .853 (riable assignment error \(such as assigning to a readonly v).25 F .852 (ariable\) occurs, or an in)-.25 F -.25(va)-.4 G .852(lid \214le de-).25 -F(scriptor is supplied as the ar)144 376.8 Q(gument to)-.18 E F1 -2.5 E F0(.)A F1 -.18(re)108 393.6 S(adonly).18 E F0([)2.5 E F1(\255aAf)A +F(scriptor is supplied as the ar)144 544.8 Q(gument to)-.18 E F1 +2.5 E F0(.)A F1 -.18(re)108 561.6 S(adonly).18 E F0([)2.5 E F1(\255aAf)A F0 2.5(][)C F1-2.5 E F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(wor)A -(d)-.37 E F0 2.5(].)C(..])-2.5 E .77(The gi)144 405.6 R -.15(ve)-.25 G +(d)-.37 E F0 2.5(].)C(..])-2.5 E .77(The gi)144 573.6 R -.15(ve)-.25 G (n).15 E F2(names)3.27 E F0 .77(are mark)3.27 F .77(ed readonly; the v) -.1 F .77(alues of these)-.25 F F2(names)3.63 E F0 .77 -(may not be changed by subse-)3.54 F 1.097(quent assignment.)144 417.6 R +(may not be changed by subse-)3.54 F 1.097(quent assignment.)144 585.6 R 1.097(If the)6.097 F F13.597 E F0 1.097 (option is supplied, the functions corresponding to the)3.597 F F2 -(names)3.596 E F0 1.096(are so)3.596 F(mark)144 429.6 Q 3.334(ed. The) +(names)3.596 E F0 1.096(are so)3.596 F(mark)144 597.6 Q 3.334(ed. The) -.1 F F13.334 E F0 .834(option restricts the v)3.334 F .834 (ariables to inde)-.25 F -.15(xe)-.15 G 3.334(da).15 G .834(rrays; the) -3.334 F F13.334 E F0 .834(option restricts the v)3.334 F(ari-) --.25 E .777(ables to associati)144 441.6 R 1.077 -.15(ve a)-.25 H 3.277 +-.25 E .777(ables to associati)144 609.6 R 1.077 -.15(ve a)-.25 H 3.277 (rrays. If).15 F .777(both options are supplied,)3.277 F F13.277 E F0(tak)3.277 E .776(es precedence.)-.1 F .776(If no)5.776 F F2(name) -3.636 E F0(ar)3.456 E(gu-)-.18 E .521(ments are gi)144 453.6 R -.15(ve) +3.636 E F0(ar)3.456 E(gu-)-.18 E .521(ments are gi)144 621.6 R -.15(ve) -.25 G .521(n, or if the).15 F F13.021 E F0 .521 (option is supplied, a list of all readonly names is printed.)3.021 F .522(The other)5.521 F .295(options may be used to restrict the output \ -to a subset of the set of readonly names.)144 465.6 R(The)5.295 E F1 +to a subset of the set of readonly names.)144 633.6 R(The)5.295 E F1 2.795 E F0(option)2.795 E .786 (causes output to be displayed in a format that may be reused as input.) -144 477.6 R .786(If a v)5.786 F .786(ariable name is fol-)-.25 F(lo)144 -489.6 Q .718(wed by =)-.25 F F2(wor)A(d)-.37 E F0 3.218(,t)C .718(he v) +144 645.6 R .786(If a v)5.786 F .786(ariable name is fol-)-.25 F(lo)144 +657.6 Q .718(wed by =)-.25 F F2(wor)A(d)-.37 E F0 3.218(,t)C .718(he v) -3.218 F .718(alue of the v)-.25 F .718(ariable is set to)-.25 F F2(wor) 3.218 E(d)-.37 E F0 5.718(.T)C .718(he return status is 0 unless an in) -5.718 F -.25(va)-.4 G(lid).25 E .26(option is encountered, one of the) -144 501.6 R F2(names)3.12 E F0 .26(is not a v)3.03 F .26(alid shell v) +144 669.6 R F2(names)3.12 E F0 .26(is not a v)3.03 F .26(alid shell v) -.25 F .26(ariable name, or)-.25 F F12.76 E F0 .26 -(is supplied with a)2.76 F F2(name)144.36 513.6 Q F0 -(that is not a function.)2.68 E F1 -.18(re)108 530.4 S(tur).18 E(n)-.15 -E F0([)2.5 E F2(n)A F0(])A .021(Causes a function to stop e)144 542.4 R +(is supplied with a)2.76 F F2(name)144.36 681.6 Q F0 +(that is not a function.)2.68 E F1 -.18(re)108 698.4 S(tur).18 E(n)-.15 +E F0([)2.5 E F2(n)A F0(])A .021(Causes a function to stop e)144 710.4 R -.15(xe)-.15 G .021(cuting and return the v).15 F .021 (alue speci\214ed by)-.25 F F2(n)2.88 E F0 .02(to its caller)2.76 F 5.02 (.I)-.55 G(f)-5.02 E F2(n)2.88 E F0 .02(is omitted,)2.76 F .596 -(the return status is that of the last command e)144 554.4 R -.15(xe) +(the return status is that of the last command e)144 722.4 R -.15(xe) -.15 G .597(cuted in the function body).15 F 5.597(.I)-.65 G(f)-5.597 E F1 -.18(re)3.097 G(tur).18 E(n)-.15 E F0 .597(is e)3.097 F -.15(xe)-.15 -G(cuted).15 E .267(by a trap handler)144 566.4 R 2.767(,t)-.4 G .267 +G(cuted).15 E(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(69)190.95 E +0 Cg EP +%%Page: 70 70 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .267 +(by a trap handler)144 84 R 2.767(,t)-.4 G .267 (he last command used to determine the status is the last command e) -2.767 F -.15(xe)-.15 G .267(cuted be-).15 F .02(fore the trap handler) -144 578.4 R 5.02(.I)-.55 G(f)-5.02 E F1 -.18(re)2.52 G(tur).18 E(n)-.15 -E F0 .02(is e)2.52 F -.15(xe)-.15 G .02(cuted during a).15 F F1(DEB)2.52 -E(UG)-.1 E F0 .02(trap, the last command used to deter)2.52 F(-)-.2 E -.886(mine the status is the last command e)144 590.4 R -.15(xe)-.15 G -.886(cuted by the trap handler before).15 F F1 -.18(re)3.385 G(tur).18 E -(n)-.15 E F0 -.1(wa)3.385 G 3.385(si).1 G -1.9 -.4(nv o)-3.385 H -.1(ke) -.4 G 3.385(d. If).1 F F1 -.18(re)144 602.4 S(tur).18 E(n)-.15 E F0 .627 +144 96 R 5.02(.I)-.55 G(f)-5.02 E/F1 10/Times-Bold@0 SF -.18(re)2.52 G +(tur).18 E(n)-.15 E F0 .02(is e)2.52 F -.15(xe)-.15 G .02 +(cuted during a).15 F F1(DEB)2.52 E(UG)-.1 E F0 .02 +(trap, the last command used to deter)2.52 F(-)-.2 E .886 +(mine the status is the last command e)144 108 R -.15(xe)-.15 G .886 +(cuted by the trap handler before).15 F F1 -.18(re)3.385 G(tur).18 E(n) +-.15 E F0 -.1(wa)3.385 G 3.385(si).1 G -1.9 -.4(nv o)-3.385 H -.1(ke).4 +G 3.385(d. If).1 F F1 -.18(re)144 120 S(tur).18 E(n)-.15 E F0 .627 (is used outside a function, b)3.127 F .628(ut during e)-.2 F -.15(xe) -.15 G .628(cution of a script by the).15 F F1(.)3.128 E F0(\()5.628 E F1(sour)A(ce)-.18 E F0 3.128(\)c)C .628(ommand, it)-3.128 F .589 -(causes the shell to stop e)144 614.4 R -.15(xe)-.15 G .589 -(cuting that script and return either).15 F F2(n)3.448 E F0 .588 -(or the e)3.328 F .588(xit status of the last com-)-.15 F .325(mand e) -144 626.4 R -.15(xe)-.15 G .325(cuted within the script as the e).15 F -.326(xit status of the script.)-.15 F(If)5.326 E F2(n)2.826 E F0 .326 -(is supplied, the return v)2.826 F .326(alue is)-.25 F .445 -(its least signi\214cant 8 bits.)144 638.4 R .444 +(causes the shell to stop e)144 132 R -.15(xe)-.15 G .589 +(cuting that script and return either).15 F/F2 10/Times-Italic@0 SF(n) +3.448 E F0 .588(or the e)3.328 F .588(xit status of the last com-)-.15 F +.325(mand e)144 144 R -.15(xe)-.15 G .325 +(cuted within the script as the e).15 F .326(xit status of the script.) +-.15 F(If)5.326 E F2(n)2.826 E F0 .326(is supplied, the return v)2.826 F +.326(alue is)-.25 F .445(its least signi\214cant 8 bits.)144 156 R .444 (The return status is non-zero if)5.445 F F1 -.18(re)2.944 G(tur).18 E (n)-.15 E F0 .444(is supplied a non-numeric ar)2.944 F(gu-)-.18 E .381 -(ment, or is used outside a function and not during e)144 650.4 R -.15 -(xe)-.15 G .381(cution of a script by).15 F F1(.)2.881 E F0(or)3.714 E -F1(sour)2.881 E(ce)-.18 E F0 5.381(.A)C .681 -.15(ny c)-5.381 H(om-).15 -E .75(mand associated with the)144 662.4 R F1(RETURN)3.249 E F0 .749 +(ment, or is used outside a function and not during e)144 168 R -.15(xe) +-.15 G .381(cution of a script by).15 F F1(.)2.881 E F0(or)3.714 E F1 +(sour)2.881 E(ce)-.18 E F0 5.381(.A)C .681 -.15(ny c)-5.381 H(om-).15 E +.75(mand associated with the)144 180 R F1(RETURN)3.249 E F0 .749 (trap is e)3.249 F -.15(xe)-.15 G .749(cuted before e).15 F -.15(xe)-.15 -G .749(cution resumes after the function).15 F(or script.)144 674.4 Q F1 -(set)108 691.2 Q F0([)2.5 E F1(\255\255abefhkmnptuvxBCEHPT)A F0 2.5(][)C +G .749(cution resumes after the function).15 F(or script.)144 192 Q F1 +(set)108 208.8 Q F0([)2.5 E F1(\255\255abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1-2.5 E F2(option\255name)2.5 E F0 2.5(][)C F2(ar)-2.5 E(g)-.37 E -F0(...])2.5 E F1(set)108 703.2 Q F0([)2.5 E F1(+abefhkmnptuvxBCEHPT)A F0 +F0(...])2.5 E F1(set)108 220.8 Q F0([)2.5 E F1(+abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1(+o)-2.5 E F2(option\255name)2.5 E F0 2.5(][)C F2(ar)-2.5 E -(g)-.37 E F0(...])2.5 E -.4(Wi)144 715.2 S .835 +(g)-.37 E F0(...])2.5 E -.4(Wi)144 232.8 S .835 (thout options, the name and v).4 F .835(alue of each shell v)-.25 F .836(ariable are displayed in a format that can be)-.25 F .784 -(reused as input for setting or resetting the currently-set v)144 727.2 +(reused as input for setting or resetting the currently-set v)144 244.8 R 3.284(ariables. Read-only)-.25 F -.25(va)3.284 G .783 -(riables cannot be).25 F(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15 -(ve)-.15 G(mber 26).15 E(69)185.545 E 0 Cg EP -%%Page: 70 70 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 2.946(reset. In) -144 84 R/F1 10/Times-Italic@0 SF .447(posix mode)2.946 F F0 2.947(,o)C -.447(nly shell v)-2.947 F .447(ariables are listed.)-.25 F .447 +(riables cannot be).25 F 2.946(reset. In)144 256.8 R F2 .447(posix mode) +2.946 F F0 2.947(,o)C .447(nly shell v)-2.947 F .447 +(ariables are listed.)-.25 F .447 (The output is sorted according to the current)5.447 F 3.531 -(locale. When)144 96 R 1.031(options are speci\214ed, the)3.531 F 3.531 -(ys)-.15 G 1.031(et or unset shell attrib)-3.531 F 3.53(utes. An)-.2 F -3.53(ya)-.15 G -.18(rg)-3.53 G 1.03(uments remaining).18 F .584 -(after option processing are treated as v)144 108 R .585 +(locale. When)144 268.8 R 1.031(options are speci\214ed, the)3.531 F +3.531(ys)-.15 G 1.031(et or unset shell attrib)-3.531 F 3.53(utes. An) +-.2 F 3.53(ya)-.15 G -.18(rg)-3.53 G 1.03(uments remaining).18 F .584 +(after option processing are treated as v)144 280.8 R .585 (alues for the positional parameters and are assigned, in or)-.25 F(-) --.2 E(der)144 120 Q 2.5(,t)-.4 G(o)-2.5 E/F2 10/Times-Bold@0 SF($1)2.5 E -F0(,)A F2($2)2.5 E F0(,)A F2 2.5(... $)2.5 F F1(n)A F0 5(.O)C -(ptions, if speci\214ed, ha)-5 E .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F2144 132 Q F0 1.378(Each v)184 132 R 1.377 +-.2 E(der)144 292.8 Q 2.5(,t)-.4 G(o)-2.5 E F1($1)2.5 E F0(,)A F1($2)2.5 +E F0(,)A F1 2.5(... $)2.5 F F2(n)A F0 5(.O)C(ptions, if speci\214ed, ha) +-5 E .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 +304.8 Q F0 1.378(Each v)184 304.8 R 1.377 (ariable or function that is created or modi\214ed is gi)-.25 F -.15(ve) -.25 G 3.877(nt).15 G 1.377(he e)-3.877 F 1.377(xport attrib)-.15 F -1.377(ute and)-.2 F(mark)184 144 Q(ed for e)-.1 E(xport to the en)-.15 E -(vironment of subsequent commands.)-.4 E F2144 156 Q F0 .131 -(Report the status of terminated background jobs immediately)184 156 R +1.377(ute and)-.2 F(mark)184 316.8 Q(ed for e)-.1 E(xport to the en)-.15 +E(vironment of subsequent commands.)-.4 E F1144 328.8 Q F0 .131 +(Report the status of terminated background jobs immediately)184 328.8 R 2.632(,r)-.65 G .132(ather than before the ne)-2.632 F(xt)-.15 E -(primary prompt.)184 168 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o)-.25 -H(nly when job control is enabled.).15 E F2144 180 Q F0 .088 -(Exit immediately if a)184 180 R F1(pipeline)2.588 E F0 .087 -(\(which may consist of a single)2.588 F F1 .087(simple command)2.587 F -F0 .087(\), a)B F1(list)2.587 E F0 2.587(,o)C(r)-2.587 E(a)184 192 Q F1 -1.52(compound command)4.02 F F0(\(see)4.021 E/F3 9/Times-Bold@0 SF 1.521 -(SHELL GRAMMAR)4.021 F F0(abo)3.771 E -.15(ve)-.15 G 1.521(\), e).15 F -1.521(xits with a non-zero status.)-.15 F .08(The shell does not e)184 -204 R .079(xit if the command that f)-.15 F .079 -(ails is part of the command list immediately)-.1 F(follo)184 216 Q -1.654(wing a)-.25 F F2(while)4.154 E F0(or)4.154 E F2(until)4.154 E F0 +(primary prompt.)184 340.8 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o) +-.25 H(nly when job control is enabled.).15 E F1144 352.8 Q F0 +.088(Exit immediately if a)184 352.8 R F2(pipeline)2.588 E F0 .087 +(\(which may consist of a single)2.588 F F2 .087(simple command)2.587 F +F0 .087(\), a)B F2(list)2.587 E F0 2.587(,o)C(r)-2.587 E(a)184 364.8 Q +F2 1.52(compound command)4.02 F F0(\(see)4.021 E/F3 9/Times-Bold@0 SF +1.521(SHELL GRAMMAR)4.021 F F0(abo)3.771 E -.15(ve)-.15 G 1.521(\), e) +.15 F 1.521(xits with a non-zero status.)-.15 F .08 +(The shell does not e)184 376.8 R .079(xit if the command that f)-.15 F +.079(ails is part of the command list immediately)-.1 F(follo)184 388.8 +Q 1.654(wing a)-.25 F F1(while)4.154 E F0(or)4.154 E F1(until)4.154 E F0 -.1(ke)4.154 G(yw)-.05 E 1.655(ord, part of the test follo)-.1 F 1.655 -(wing the)-.25 F F2(if)4.155 E F0(or)4.155 E F2(elif)4.155 E F0(reserv) -4.155 E(ed)-.15 E -.1(wo)184 228 S .582(rds, part of an).1 F 3.082(yc) --.15 G .582(ommand e)-3.082 F -.15(xe)-.15 G .581(cuted in a).15 F F2 -(&&)3.081 E F0(or)3.081 E F2(||)3.081 E F0 .581(list e)3.081 F .581 -(xcept the command follo)-.15 F(wing)-.25 E .917(the \214nal)184 240 R -F2(&&)3.417 E F0(or)3.417 E F2(||)3.417 E F0 3.417(,a)C 1.217 -.15(ny c) +(wing the)-.25 F F1(if)4.155 E F0(or)4.155 E F1(elif)4.155 E F0(reserv) +4.155 E(ed)-.15 E -.1(wo)184 400.8 S .582(rds, part of an).1 F 3.082(yc) +-.15 G .582(ommand e)-3.082 F -.15(xe)-.15 G .581(cuted in a).15 F F1 +(&&)3.081 E F0(or)3.081 E F1(||)3.081 E F0 .581(list e)3.081 F .581 +(xcept the command follo)-.15 F(wing)-.25 E .917(the \214nal)184 412.8 R +F1(&&)3.417 E F0(or)3.417 E F1(||)3.417 E F0 3.417(,a)C 1.217 -.15(ny c) -3.417 H .918(ommand in a pipeline b).15 F .918 (ut the last, or if the command')-.2 F 3.418(sr)-.55 G(eturn)-3.418 E --.25(va)184 252 S .661(lue is being in).25 F -.15(ve)-.4 G .661 -(rted with).15 F F2(!)3.161 E F0 5.661(.I)C 3.161(fac)-5.661 G .66 +-.25(va)184 424.8 S .661(lue is being in).25 F -.15(ve)-.4 G .661 +(rted with).15 F F1(!)3.161 E F0 5.661(.I)C 3.161(fac)-5.661 G .66 (ompound command other than a subshell returns a)-3.161 F 1.112 -(non-zero status because a command f)184 264 R 1.112(ailed while)-.1 F -F23.612 E F0 -.1(wa)3.612 G 3.612(sb).1 G 1.113 -(eing ignored, the shell does)-3.612 F .178(not e)184 276 R 2.678 -(xit. A)-.15 F .178(trap on)2.678 F F2(ERR)2.678 E F0 2.678(,i)C 2.678 +(non-zero status because a command f)184 436.8 R 1.112(ailed while)-.1 F +F13.612 E F0 -.1(wa)3.612 G 3.612(sb).1 G 1.113 +(eing ignored, the shell does)-3.612 F .178(not e)184 448.8 R 2.678 +(xit. A)-.15 F .178(trap on)2.678 F F1(ERR)2.678 E F0 2.678(,i)C 2.678 (fs)-2.678 G .178(et, is e)-2.678 F -.15(xe)-.15 G .178 (cuted before the shell e).15 F 2.677(xits. This)-.15 F .177 -(option applies to)2.677 F .617(the shell en)184 288 R .617 +(option applies to)2.677 F .617(the shell en)184 460.8 R .617 (vironment and each subshell en)-.4 F .617(vironment separately \(see) --.4 F F3 .618(COMMAND EXE-)3.118 F .643(CUTION ENVIR)184 300 R(ONMENT) +-.4 F F3 .618(COMMAND EXE-)3.118 F .643(CUTION ENVIR)184 472.8 R(ONMENT) -.27 E F0(abo)2.893 E -.15(ve)-.15 G .643 (\), and may cause subshells to e).15 F .643(xit before e)-.15 F -.15 -(xe)-.15 G .642(cuting all).15 F(the commands in the subshell.)184 312 Q -.998(If a compound command or shell function e)184 330 R -.15(xe)-.15 G -.999(cutes in a conte).15 F .999(xt where)-.15 F F23.499 E F0 .999 -(is being ig-)3.499 F .089(nored, none of the commands e)184 342 R -.15 -(xe)-.15 G .089(cuted within the compound command or function body).15 F -.502(will be af)184 354 R .502(fected by the)-.25 F F23.002 E F0 -.502(setting, e)3.002 F -.15(ve)-.25 G 3.002(ni).15 G(f)-3.002 E F2 +(xe)-.15 G .642(cuting all).15 F(the commands in the subshell.)184 484.8 +Q .998(If a compound command or shell function e)184 502.8 R -.15(xe) +-.15 G .999(cutes in a conte).15 F .999(xt where)-.15 F F13.499 E +F0 .999(is being ig-)3.499 F .089(nored, none of the commands e)184 +514.8 R -.15(xe)-.15 G .089 +(cuted within the compound command or function body).15 F .502 +(will be af)184 526.8 R .502(fected by the)-.25 F F13.002 E F0 +.502(setting, e)3.002 F -.15(ve)-.25 G 3.002(ni).15 G(f)-3.002 E F1 3.002 E F0 .502(is set and a command returns a f)3.002 F .503 -(ailure sta-)-.1 F 4.184(tus. If)184 366 R 4.184(ac)4.184 G 1.684 -(ompound command or shell function sets)-4.184 F F24.183 E F0 +(ailure sta-)-.1 F 4.184(tus. If)184 538.8 R 4.184(ac)4.184 G 1.684 +(ompound command or shell function sets)-4.184 F F14.183 E F0 1.683(while e)4.183 F -.15(xe)-.15 G 1.683(cuting in a conte).15 F(xt) --.15 E(where)184 378 Q F23.153 E F0 .653 +-.15 E(where)184 550.8 Q F13.153 E F0 .653 (is ignored, that setting will not ha)3.153 F .954 -.15(ve a)-.2 H .954 -.15(ny e).15 H -.25(ff).15 G .654(ect until the compound command).25 F -(or the command containing the function call completes.)184 390 Q F2 -144 402 Q F0(Disable pathname e)184 402 Q(xpansion.)-.15 E F2 -144 414 Q F0 .988(Remember the location of commands as the)184 414 -R 3.488(ya)-.15 G .988(re look)-3.488 F .988(ed up for e)-.1 F -.15(xe) --.15 G 3.488(cution. This).15 F .987(is en-)3.487 F(abled by def)184 426 -Q(ault.)-.1 E F2144 438 Q F0 .513(All ar)184 438 R .514 +(or the command containing the function call completes.)184 562.8 Q F1 +144 574.8 Q F0(Disable pathname e)184 574.8 Q(xpansion.)-.15 E F1 +144 586.8 Q F0 .988(Remember the location of commands as the)184 +586.8 R 3.488(ya)-.15 G .988(re look)-3.488 F .988(ed up for e)-.1 F +-.15(xe)-.15 G 3.488(cution. This).15 F .987(is en-)3.487 F +(abled by def)184 598.8 Q(ault.)-.1 E F1144 610.8 Q F0 .513 +(All ar)184 610.8 R .514 (guments in the form of assignment statements are placed in the en)-.18 F .514(vironment for a)-.4 F -(command, not just those that precede the command name.)184 450 Q F2 -144 462 Q F0 .149(Monitor mode.)184 462 R .149 +(command, not just those that precede the command name.)184 622.8 Q F1 +144 634.8 Q F0 .149(Monitor mode.)184 634.8 R .149 (Job control is enabled.)5.149 F .148(This option is on by def)5.149 F .148(ault for interacti)-.1 F .448 -.15(ve s)-.25 H(hells).15 E .65 -(on systems that support it \(see)184 474 R F3 .651(JOB CONTR)3.151 F +(on systems that support it \(see)184 646.8 R F3 .651(JOB CONTR)3.151 F (OL)-.27 E F0(abo)2.901 E -.15(ve)-.15 G 3.151(\). All).15 F .651 -(processes run in a separate)3.151 F .679(process group.)184 486 R .678 -(When a background job completes, the shell prints a line containing it\ -s)5.679 F -.15(ex)184 498 S(it status.).15 E F2144 510 Q F0 .652 -(Read commands b)184 510 R .652(ut do not e)-.2 F -.15(xe)-.15 G .652 -(cute them.).15 F .653(This may be used to check a shell script for) -5.652 F(syntax errors.)184 522 Q(This is ignored by interacti)5 E .3 --.15(ve s)-.25 H(hells.).15 E F2144 534 Q F1(option\255name)2.5 E -F0(The)184 546 Q F1(option\255name)2.5 E F0(can be one of the follo)2.5 -E(wing:)-.25 E F2(allexport)184 558 Q F0(Same as)224 570 Q F22.5 E -F0(.)A F2(braceexpand)184 582 Q F0(Same as)224 594 Q F22.5 E F0(.) -A F2(emacs)184 606 Q F0 .089 -(Use an emacs-style command line editing interf)224 606 R 2.589 -(ace. This)-.1 F .089(is enabled by def)2.589 F(ault)-.1 E .95 -(when the shell is interacti)224 618 R -.15(ve)-.25 G 3.45(,u).15 G .95 -(nless the shell is started with the)-3.45 F F2(\255\255noediting)3.45 E -F0 2.5(option. This)224 630 R(also af)2.5 E(fects the editing interf) --.25 E(ace used for)-.1 E F2 -.18(re)2.5 G(ad \255e).18 E F0(.)A F2(err) -184 642 Q(exit)-.18 E F0(Same as)224 642 Q F22.5 E F0(.)A F2 -(errtrace)184 654 Q F0(Same as)224 654 Q F22.5 E F0(.)A F2 -(functrace)184 666 Q F0(Same as)224 678 Q F22.5 E F0(.)A F2 -(hashall)184 690 Q F0(Same as)224 690 Q F22.5 E F0(.)A F2 -(histexpand)184 702 Q F0(Same as)224 714 Q F22.5 E F0(.)A -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(70)185.545 E 0 Cg EP +(processes run in a separate)3.151 F .679(process group.)184 658.8 R +.678(When a background job completes, the shell prints a line containin\ +g its)5.679 F -.15(ex)184 670.8 S(it status.).15 E F1144 682.8 Q +F0 .652(Read commands b)184 682.8 R .652(ut do not e)-.2 F -.15(xe)-.15 +G .652(cute them.).15 F .653 +(This may be used to check a shell script for)5.652 F(syntax errors.)184 +694.8 Q(This is ignored by interacti)5 E .3 -.15(ve s)-.25 H(hells.).15 +E F1144 706.8 Q F2(option\255name)2.5 E F0(The)184 718.8 Q F2 +(option\255name)2.5 E F0(can be one of the follo)2.5 E(wing:)-.25 E +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(70)190.95 E 0 Cg EP %%Page: 71 71 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(history)184 84 Q F0 .587(Enable command history)224 84 R 3.087(,a) +SF(allexport)184 84 Q F0(Same as)224 96 Q F12.5 E F0(.)A F1 +(braceexpand)184 108 Q F0(Same as)224 120 Q F12.5 E F0(.)A F1 +(emacs)184 132 Q F0 .089(Use an emacs-style command line editing interf) +224 132 R 2.589(ace. This)-.1 F .089(is enabled by def)2.589 F(ault)-.1 +E .95(when the shell is interacti)224 144 R -.15(ve)-.25 G 3.45(,u).15 G +.95(nless the shell is started with the)-3.45 F F1(\255\255noediting) +3.45 E F0 2.5(option. This)224 156 R(also af)2.5 E +(fects the editing interf)-.25 E(ace used for)-.1 E F1 -.18(re)2.5 G +(ad \255e).18 E F0(.)A F1(err)184 168 Q(exit)-.18 E F0(Same as)224 168 Q +F12.5 E F0(.)A F1(errtrace)184 180 Q F0(Same as)224 180 Q F1 +2.5 E F0(.)A F1(functrace)184 192 Q F0(Same as)224 204 Q F12.5 E +F0(.)A F1(hashall)184 216 Q F0(Same as)224 216 Q F12.5 E F0(.)A F1 +(histexpand)184 228 Q F0(Same as)224 240 Q F12.5 E F0(.)A F1 +(history)184 252 Q F0 .587(Enable command history)224 252 R 3.087(,a) -.65 G 3.087(sd)-3.087 G .587(escribed abo)-3.087 F .887 -.15(ve u)-.15 H(nder).15 E/F2 9/Times-Bold@0 SF(HIST)3.087 E(OR)-.162 E(Y)-.315 E/F3 9 -/Times-Roman@0 SF(.)A F0 .587(This option is)5.087 F(on by def)224 96 Q +/Times-Roman@0 SF(.)A F0 .587(This option is)5.087 F(on by def)224 264 Q (ault in interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(ignor)184 -108 Q(eeof)-.18 E F0 1.656(The ef)224 120 R 1.656 +276 Q(eeof)-.18 E F0 1.656(The ef)224 288 R 1.656 (fect is as if the shell command)-.25 F/F4 10/Courier@0 SF(IGNOREEOF=10) 4.157 E F0 1.657(had been e)4.157 F -.15(xe)-.15 G(cuted).15 E(\(see)224 -132 Q F1(Shell V)2.5 E(ariables)-.92 E F0(abo)2.5 E -.15(ve)-.15 G(\).) -.15 E F1 -.1(ke)184 144 S(yw).1 E(ord)-.1 E F0(Same as)224 156 Q F1 -2.5 E F0(.)A F1(monitor)184 168 Q F0(Same as)224 168 Q F12.5 -E F0(.)A F1(noclob)184 180 Q(ber)-.1 E F0(Same as)224 192 Q F12.5 -E F0(.)A F1(noexec)184 204 Q F0(Same as)224 204 Q F12.5 E F0(.)A -F1(noglob)184 216 Q F0(Same as)224 216 Q F12.5 E F0(.)A F1(nolog) -184 228 Q F0(Currently ignored.)224 228 Q F1(notify)184 240 Q F0 -(Same as)224 240 Q F12.5 E F0(.)A F1(nounset)184 252 Q F0(Same as) -224 252 Q F12.5 E F0(.)A F1(onecmd)184 264 Q F0(Same as)224 264 Q -F12.5 E F0(.)A F1(ph)184 276 Q(ysical)-.15 E F0(Same as)224 276 Q -F12.5 E F0(.)A F1(pipefail)184 288 Q F0 1.03(If set, the return v) -224 288 R 1.029(alue of a pipeline is the v)-.25 F 1.029 -(alue of the last \(rightmost\) com-)-.25 F 1.136(mand to e)224 300 R +300 Q F1(Shell V)2.5 E(ariables)-.92 E F0(abo)2.5 E -.15(ve)-.15 G(\).) +.15 E F1 -.1(ke)184 312 S(yw).1 E(ord)-.1 E F0(Same as)224 324 Q F1 +2.5 E F0(.)A F1(monitor)184 336 Q F0(Same as)224 336 Q F12.5 +E F0(.)A F1(noclob)184 348 Q(ber)-.1 E F0(Same as)224 360 Q F12.5 +E F0(.)A F1(noexec)184 372 Q F0(Same as)224 372 Q F12.5 E F0(.)A +F1(noglob)184 384 Q F0(Same as)224 384 Q F12.5 E F0(.)A F1(nolog) +184 396 Q F0(Currently ignored.)224 396 Q F1(notify)184 408 Q F0 +(Same as)224 408 Q F12.5 E F0(.)A F1(nounset)184 420 Q F0(Same as) +224 420 Q F12.5 E F0(.)A F1(onecmd)184 432 Q F0(Same as)224 432 Q +F12.5 E F0(.)A F1(ph)184 444 Q(ysical)-.15 E F0(Same as)224 444 Q +F12.5 E F0(.)A F1(pipefail)184 456 Q F0 1.03(If set, the return v) +224 456 R 1.029(alue of a pipeline is the v)-.25 F 1.029 +(alue of the last \(rightmost\) com-)-.25 F 1.136(mand to e)224 468 R 1.136 (xit with a non-zero status, or zero if all commands in the pipeline) --.15 F -.15(ex)224 312 S(it successfully).15 E 5(.T)-.65 G -(his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 324 Q F0 -2.091(Change the beha)224 324 R 2.091(vior of)-.2 F F1(bash)4.591 E F0 +-.15 F -.15(ex)224 480 S(it successfully).15 E 5(.T)-.65 G +(his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 492 Q F0 +2.091(Change the beha)224 492 R 2.091(vior of)-.2 F F1(bash)4.591 E F0 2.091(where the def)4.591 F 2.091(ault operation dif)-.1 F 2.091 (fers from the)-.25 F 1.212(POSIX standard to match the standard \()224 -336 R/F5 10/Times-Italic@0 SF 1.212(posix mode)B F0 3.712(\). See)B F2 +504 R/F5 10/Times-Italic@0 SF 1.212(posix mode)B F0 3.712(\). See)B F2 1.212(SEE ALSO)3.712 F F0(belo)3.463 E(w)-.25 E .955 -(for a reference to a document that details ho)224 348 R 3.454(wp)-.25 G +(for a reference to a document that details ho)224 516 R 3.454(wp)-.25 G .954(osix mode af)-3.454 F .954(fects bash')-.25 F 3.454(sb)-.55 G(e-) --3.454 E(ha)224 360 Q(vior)-.2 E(.)-.55 E F1(pri)184 372 Q(vileged)-.1 E -F0(Same as)224 384 Q F12.5 E F0(.)A F1 -.1(ve)184 396 S(rbose).1 E -F0(Same as)224 396 Q F12.5 E F0(.)A F1(vi)184 408 Q F0 .209 -(Use a vi-style command line editing interf)224 408 R 2.709(ace. This) --.1 F .209(also af)2.709 F .21(fects the editing in-)-.25 F(terf)224 420 +-3.454 E(ha)224 528 Q(vior)-.2 E(.)-.55 E F1(pri)184 540 Q(vileged)-.1 E +F0(Same as)224 552 Q F12.5 E F0(.)A F1 -.1(ve)184 564 S(rbose).1 E +F0(Same as)224 564 Q F12.5 E F0(.)A F1(vi)184 576 Q F0 .209 +(Use a vi-style command line editing interf)224 576 R 2.709(ace. This) +-.1 F .209(also af)2.709 F .21(fects the editing in-)-.25 F(terf)224 588 Q(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1(xtrace) -184 432 Q F0(Same as)224 432 Q F12.5 E F0(.)A(If)184 450 Q F1 +184 600 Q F0(Same as)224 600 Q F12.5 E F0(.)A(If)184 618 Q F1 3.053 E F0 .553(is supplied with no)3.053 F F5(option\255name) 3.053 E F0 3.053(,t)C .553(he v)-3.053 F .552 (alues of the current options are printed.)-.25 F(If)5.552 E F1(+o)184 -462 Q F0 1.071(is supplied with no)3.571 F F5(option\255name)3.571 E F0 +630 Q F0 1.071(is supplied with no)3.571 F F5(option\255name)3.571 E F0 3.571(,as)C 1.071(eries of)-3.571 F F1(set)3.572 E F0 1.072 (commands to recreate the current)3.572 F -(option settings is displayed on the standard output.)184 474 Q F1 -144 486 Q F0 -.45(Tu)184 486 S 1.072(rn on).45 F F5(privile)4.822 E -.1 +(option settings is displayed on the standard output.)184 642 Q F1 +144 654 Q F0 -.45(Tu)184 654 S 1.072(rn on).45 F F5(privile)4.822 E -.1 (ge)-.4 G(d).1 E F0 3.572(mode. In)4.342 F 1.072(this mode, the)3.572 F F2($ENV)3.572 E F0(and)3.322 E F2($B)3.572 E(ASH_ENV)-.27 E F0 1.071 (\214les are not pro-)3.322 F 1.5 -(cessed, shell functions are not inherited from the en)184 498 R 1.501 -(vironment, and the)-.4 F F2(SHELLOPTS)4.001 E F3(,)A F2 -.27(BA)184 510 +(cessed, shell functions are not inherited from the en)184 666 R 1.501 +(vironment, and the)-.4 F F2(SHELLOPTS)4.001 E F3(,)A F2 -.27(BA)184 678 S(SHOPTS).27 E F3(,)A F2(CDP)2.775 E -.855(AT)-.666 G(H).855 E F3(,)A F0 (and)2.775 E F2(GLOBIGNORE)3.025 E F0 -.25(va)2.775 G .524 (riables, if the).25 F 3.024(ya)-.15 G .524(ppear in the en)-3.024 F -(vironment,)-.4 E .379(are ignored.)184 522 R .379 +(vironment,)-.4 E .379(are ignored.)184 690 R .379 (If the shell is started with the ef)5.379 F(fecti)-.25 E .679 -.15 (ve u)-.25 H .38(ser \(group\) id not equal to the real).15 F .462 -(user \(group\) id, and the)184 534 R F12.961 E F0 .461 +(user \(group\) id, and the)184 702 R F12.961 E F0 .461 (option is not supplied, these actions are tak)2.961 F .461 -(en and the ef)-.1 F(fec-)-.25 E(ti)184 546 Q .694 -.15(ve u)-.25 H .394 +(en and the ef)-.1 F(fec-)-.25 E(ti)184 714 Q .694 -.15(ve u)-.25 H .394 (ser id is set to the real user id.).15 F .395(If the)5.395 F F1 2.895 E F0 .395(option is supplied at startup, the ef)2.895 F(fecti)-.25 -E -.15(ve)-.25 G .387(user id is not reset.)184 558 R -.45(Tu)5.387 G +E -.15(ve)-.25 G .387(user id is not reset.)184 726 R -.45(Tu)5.387 G .387(rning this option of).45 F 2.886(fc)-.25 G .386(auses the ef)-2.886 F(fecti)-.25 E .686 -.15(ve u)-.25 H .386(ser and group ids to be).15 F -(set to the real user and group ids.)184 570 Q F1144 582 Q F0 -(Exit after reading and e)184 582 Q -.15(xe)-.15 G(cuting one command.) -.15 E F1144 594 Q F0 -.35(Tr)184 594 S .043(eat unset v).35 F .044 -(ariables and parameters other than the special parameters "@" and "*" \ -as an)-.25 F .183(error when performing parameter e)184 606 R 2.683 -(xpansion. If)-.15 F -.15(ex)2.683 G .182 -(pansion is attempted on an unset v).15 F(ari-)-.25 E .746 -(able or parameter)184 618 R 3.246(,t)-.4 G .746 +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(71)190.95 E 0 Cg EP +%%Page: 72 72 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E +(set to the real user and group ids.)184 84 Q/F1 10/Times-Bold@0 SF +144 96 Q F0(Exit after reading and e)184 96 Q -.15(xe)-.15 G +(cuting one command.).15 E F1144 108 Q F0 -.35(Tr)184 108 S .043 +(eat unset v).35 F .044(ariables and parameters other than the special \ +parameters "@" and "*" as an)-.25 F .183 +(error when performing parameter e)184 120 R 2.683(xpansion. If)-.15 F +-.15(ex)2.683 G .182(pansion is attempted on an unset v).15 F(ari-)-.25 +E .746(able or parameter)184 132 R 3.246(,t)-.4 G .746 (he shell prints an error message, and, if not interacti)-3.246 F -.15 (ve)-.25 G 3.246(,e).15 G .746(xits with a)-3.396 F(non-zero status.)184 -630 Q F1144 642 Q F0(Print shell input lines as the)184 642 Q 2.5 -(ya)-.15 G(re read.)-2.5 E F1144 654 Q F0 .315(After e)184 654 R -.315(xpanding each)-.15 F F5 .315(simple command)2.815 F F0(,)A F1 -.25 -(fo)2.815 G(r).25 E F0(command,)2.815 E F1(case)2.815 E F0(command,) -2.815 E F1(select)2.815 E F0(command,)2.815 E 1.235(or arithmetic)184 -666 R F1 -.25(fo)3.736 G(r).25 E F0 1.236(command, display the e)3.736 F -1.236(xpanded v)-.15 F 1.236(alue of)-.25 F F2(PS4)3.736 E F3(,)A F0 -(follo)3.486 E 1.236(wed by the com-)-.25 F(mand and its e)184 678 Q +144 Q F1144 156 Q F0(Print shell input lines as the)184 156 Q 2.5 +(ya)-.15 G(re read.)-2.5 E F1144 168 Q F0 .315(After e)184 168 R +.315(xpanding each)-.15 F/F2 10/Times-Italic@0 SF .315(simple command) +2.815 F F0(,)A F1 -.25(fo)2.815 G(r).25 E F0(command,)2.815 E F1(case) +2.815 E F0(command,)2.815 E F1(select)2.815 E F0(command,)2.815 E 1.235 +(or arithmetic)184 180 R F1 -.25(fo)3.736 G(r).25 E F0 1.236 +(command, display the e)3.736 F 1.236(xpanded v)-.15 F 1.236(alue of) +-.25 F/F3 9/Times-Bold@0 SF(PS4)3.736 E/F4 9/Times-Roman@0 SF(,)A F0 +(follo)3.486 E 1.236(wed by the com-)-.25 F(mand and its e)184 192 Q (xpanded ar)-.15 E(guments or associated w)-.18 E(ord list.)-.1 E F1 -144 690 Q F0 1.206(The shell performs brace e)184 690 R 1.206 +144 204 Q F0 1.206(The shell performs brace e)184 204 R 1.206 (xpansion \(see)-.15 F F1 1.205(Brace Expansion)3.705 F F0(abo)3.705 E -.15(ve)-.15 G 3.705(\). This).15 F 1.205(is on by de-)3.705 F -.1(fa) -184 702 S(ult.).1 E F1144 714 Q F0 .213(If set,)184 714 R F1(bash) +184 216 S(ult.).1 E F1144 228 Q F0 .213(If set,)184 228 R F1(bash) 2.713 E F0 .213(does not o)2.713 F -.15(ve)-.15 G .214(rwrite an e).15 F .214(xisting \214le with the)-.15 F F1(>)2.714 E F0(,)A F1(>&)2.714 E F0 2.714(,a)C(nd)-2.714 E F1(<>)2.714 E F0 .214(redirection opera-)2.714 F -5.436(tors. This)184 726 R 2.936(may be o)5.436 F -.15(ve)-.15 G 2.936 -(rridden when creating output \214les by using the redirection).15 F -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(71)185.545 E 0 Cg EP -%%Page: 72 72 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(operator)184 84 Q -/F1 10/Times-Bold@0 SF(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1 -144 96 Q F0 .103(If set, an)184 96 R 2.603(yt)-.15 G .103(rap on) --2.603 F F1(ERR)2.603 E F0 .104 +3.054(tors. This)184 240 R .553(may be o)3.053 F -.15(ve)-.15 G .553 +(rridden when creating output \214les by using the redirection opera-) +.15 F(tor)184 252 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1 +144 264 Q F0 .103(If set, an)184 264 R 2.603(yt)-.15 G .103 +(rap on)-2.603 F F1(ERR)2.603 E F0 .104 (is inherited by shell functions, command substitutions, and com-)2.603 -F .839(mands e)184 108 R -.15(xe)-.15 G .839(cuted in a subshell en).15 +F .839(mands e)184 276 R -.15(xe)-.15 G .839(cuted in a subshell en).15 F 3.339(vironment. The)-.4 F F1(ERR)3.338 E F0 .838 -(trap is normally not inherited in)3.338 F(such cases.)184 120 Q F1 -144 132 Q F0(Enable)184 132 Q F1(!)3.031 E F0 .531 +(trap is normally not inherited in)3.338 F(such cases.)184 288 Q F1 +144 300 Q F0(Enable)184 300 Q F1(!)3.031 E F0 .531 (style history substitution.)5.531 F .531(This option is on by def)5.531 -F .532(ault when the shell is inter)-.1 F(-)-.2 E(acti)184 144 Q -.15 -(ve)-.25 G(.).15 E F1144 156 Q F0 .96 -(If set, the shell does not resolv)184 156 R 3.459(es)-.15 G .959 +F .532(ault when the shell is inter)-.1 F(-)-.2 E(acti)184 312 Q -.15 +(ve)-.25 G(.).15 E F1144 324 Q F0 .96 +(If set, the shell does not resolv)184 324 R 3.459(es)-.15 G .959 (ymbolic links when e)-3.459 F -.15(xe)-.15 G .959 (cuting commands such as).15 F F1(cd)3.459 E F0 1.452 -(that change the current w)184 168 R 1.452(orking directory)-.1 F 6.452 +(that change the current w)184 336 R 1.452(orking directory)-.1 F 6.452 (.I)-.65 G 3.953(tu)-6.452 G 1.453(ses the ph)-3.953 F 1.453 -(ysical directory structure in-)-.05 F 3.335(stead. By)184 180 R(def) +(ysical directory structure in-)-.05 F 3.335(stead. By)184 348 R(def) 3.335 E(ault,)-.1 E F1(bash)3.334 E F0(follo)3.334 E .834 (ws the logical chain of directories when performing com-)-.25 F -(mands which change the current directory)184 192 Q(.)-.65 E F1144 -204 Q F0 .89(If set, an)184 204 R 3.39(yt)-.15 G .89(raps on)-3.39 F F1 +(mands which change the current directory)184 360 Q(.)-.65 E F1144 +372 Q F0 .89(If set, an)184 372 R 3.39(yt)-.15 G .89(raps on)-3.39 F F1 (DEB)3.39 E(UG)-.1 E F0(and)3.39 E F1(RETURN)3.39 E F0 .89 (are inherited by shell functions, command)3.39 F 1.932 -(substitutions, and commands e)184 216 R -.15(xe)-.15 G 1.932 +(substitutions, and commands e)184 384 R -.15(xe)-.15 G 1.932 (cuted in a subshell en).15 F 4.432(vironment. The)-.4 F F1(DEB)4.432 E -(UG)-.1 E F0(and)4.432 E F1(RETURN)184 228 Q F0 -(traps are normally not inherited in such cases.)2.5 E F1144 240 Q -F0 .4(If no ar)184 240 R .401(guments follo)-.18 F 2.901(wt)-.25 G .401 +(UG)-.1 E F0(and)4.432 E F1(RETURN)184 396 Q F0 +(traps are normally not inherited in such cases.)2.5 E F1144 408 Q +F0 .4(If no ar)184 408 R .401(guments follo)-.18 F 2.901(wt)-.25 G .401 (his option, then the positional parameters are unset.)-2.901 F -(Otherwise,)5.401 E(the positional parameters are set to the)184 252 Q -/F2 10/Times-Italic@0 SF(ar)2.5 E(g)-.37 E F0(s, e)A -.15(ve)-.25 G 2.5 -(ni).15 G 2.5(fs)-2.5 G(ome of them be)-2.5 E(gin with a)-.15 E F1 -2.5 E F0(.)A F1144 264 Q F0 .797 -(Signal the end of options, cause all remaining)184 264 R F2(ar)3.297 E -(g)-.37 E F0 3.297(st)C 3.297(ob)-3.297 G 3.296(ea)-3.297 G .796 -(ssigned to the positional pa-)-3.296 F 3.021(rameters. The)184 276 R F1 -3.021 E F0(and)3.022 E F13.022 E F0 .522 +(Otherwise,)5.401 E(the positional parameters are set to the)184 420 Q +F2(ar)2.5 E(g)-.37 E F0(s, e)A -.15(ve)-.25 G 2.5(ni).15 G 2.5(fs)-2.5 G +(ome of them be)-2.5 E(gin with a)-.15 E F12.5 E F0(.)A F1144 +432 Q F0 .797(Signal the end of options, cause all remaining)184 432 R +F2(ar)3.297 E(g)-.37 E F0 3.297(st)C 3.297(ob)-3.297 G 3.296(ea)-3.297 G +.796(ssigned to the positional pa-)-3.296 F 3.021(rameters. The)184 444 +R F13.021 E F0(and)3.022 E F13.022 E F0 .522 (options are turned of)3.022 F 3.022(f. If)-.25 F .522(there are no) 3.022 F F2(ar)3.022 E(g)-.37 E F0 .522(s, the positional pa-)B -(rameters remain unchanged.)184 288 Q .425(The options are of)144 304.8 +(rameters remain unchanged.)184 456 Q .425(The options are of)144 472.8 R 2.925(fb)-.25 G 2.925(yd)-2.925 G(ef)-2.925 E .425 (ault unless otherwise noted.)-.1 F .425 (Using + rather than \255 causes these options)5.425 F .177 -(to be turned of)144 316.8 R 2.677(f. The)-.25 F .178 +(to be turned of)144 484.8 R 2.677(f. The)-.25 F .178 (options can also be speci\214ed as ar)2.678 F .178(guments to an in) -.18 F -.2(vo)-.4 G .178(cation of the shell.).2 F(The)5.178 E .066 -(current set of options may be found in)144 328.8 R F1<24ad>2.566 E F0 +(current set of options may be found in)144 496.8 R F1<24ad>2.566 E F0 5.066(.T)C .066(he return status is al)-5.066 F -.1(wa)-.1 G .066 (ys true unless an in).1 F -.25(va)-.4 G .066(lid option).25 F -(is encountered.)144 340.8 Q F1(shift)108 357.6 Q F0([)2.5 E F2(n)A F0 -(])A .428(The positional parameters from)144 369.6 R F2(n)2.928 E F0 +(is encountered.)144 508.8 Q F1(shift)108 525.6 Q F0([)2.5 E F2(n)A F0 +(])A .428(The positional parameters from)144 537.6 R F2(n)2.928 E F0 .429(+1 ... are renamed to)B F1 .429($1 ....)2.929 F F0 -.15(Pa)5.429 G -.429(rameters represented by the num-).15 F(bers)144 381.6 Q F1($#)2.583 +.429(rameters represented by the num-).15 F(bers)144 549.6 Q F1($#)2.583 E F0(do)2.583 E .083(wn to)-.25 F F1($#)2.583 E F0A F2(n)A F0 .083 (+1 are unset.)B F2(n)5.443 E F0 .083(must be a non-ne)2.823 F -.05(ga) -.15 G(ti).05 E .382 -.15(ve n)-.25 H .082(umber less than or equal to) .15 F F1($#)2.582 E F0 5.082(.I)C(f)-5.082 E F2(n)2.942 E F0 .06 -(is 0, no parameters are changed.)144 393.6 R(If)5.06 E F2(n)2.92 E F0 +(is 0, no parameters are changed.)144 561.6 R(If)5.06 E F2(n)2.92 E F0 .06(is not gi)2.8 F -.15(ve)-.25 G .06(n, it is assumed to be 1.).15 F (If)5.06 E F2(n)2.92 E F0 .06(is greater than)2.8 F F1($#)2.56 E F0 2.56 -(,t)C(he)-2.56 E .144(positional parameters are not changed.)144 405.6 R +(,t)C(he)-2.56 E .144(positional parameters are not changed.)144 573.6 R .144(The return status is greater than zero if)5.144 F F2(n)3.003 E F0 .143(is greater than)2.883 F F1($#)2.643 E F0 -(or less than zero; otherwise 0.)144 417.6 Q F1(shopt)108 434.4 Q F0([) +(or less than zero; otherwise 0.)144 585.6 Q F1(shopt)108 602.4 Q F0([) 2.5 E F1(\255pqsu)A F0 2.5(][)C F1-2.5 E F0 2.5(][)C F2(optname) --2.5 E F0(...])2.5 E -.8(To)144 446.4 S .639(ggle the v).8 F .639 +-2.5 E F0(...])2.5 E -.8(To)144 614.4 S .639(ggle the v).8 F .639 (alues of settings controlling optional shell beha)-.25 F(vior)-.2 E 5.639(.T)-.55 G .64(he settings can be either those)-5.639 F .375 -(listed belo)144 458.4 R 1.675 -.65(w, o)-.25 H 1.175 -.4(r, i).65 H +(listed belo)144 626.4 R 1.675 -.65(w, o)-.25 H 1.175 -.4(r, i).65 H 2.875(ft).4 G(he)-2.875 E F12.875 E F0 .375 (option is used, those a)2.875 F -.25(va)-.2 G .375(ilable with the).25 F F12.875 E F0 .374(option to the)2.875 F F1(set)2.874 E F0 -.2 -(bu)2.874 G .374(iltin com-).2 F 2.565(mand. W)144 470.4 R .065 +(bu)2.874 G .374(iltin com-).2 F 2.565(mand. W)144 638.4 R .065 (ith no options, or with the)-.4 F F12.566 E F0 .066 (option, a list of all settable options is displayed, with an in-)2.566 -F .074(dication of whether or not each is set; if)144 482.4 R F2 +F .074(dication of whether or not each is set; if)144 650.4 R F2 (optnames)2.574 E F0 .074 (are supplied, the output is restricted to those op-)2.574 F 3.105 -(tions. The)144 494.4 R F13.105 E F0 .605(option causes output to\ +(tions. The)144 662.4 R F13.105 E F0 .605(option causes output to\ be displayed in a form that may be reused as input.)3.105 F(Other)5.605 -E(options ha)144 506.4 Q .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F1144 518.4 Q F0(Enable \(set\) each)180 -518.4 Q F2(optname)2.5 E F0(.)A F1144 530.4 Q F0 -(Disable \(unset\) each)180 530.4 Q F2(optname)2.5 E F0(.)A F1144 -542.4 Q F0 .003(Suppresses normal output \(quiet mode\); the return sta\ -tus indicates whether the)180 542.4 R F2(optname)2.503 E F0(is)2.503 E -.255(set or unset.)180 554.4 R .255(If multiple)5.255 F F2(optname)2.755 +E(options ha)144 674.4 Q .3 -.15(ve t)-.2 H(he follo).15 E +(wing meanings:)-.25 E F1144 686.4 Q F0(Enable \(set\) each)180 +686.4 Q F2(optname)2.5 E F0(.)A F1144 698.4 Q F0 +(Disable \(unset\) each)180 698.4 Q F2(optname)2.5 E F0(.)A F1144 +710.4 Q F0 .003(Suppresses normal output \(quiet mode\); the return sta\ +tus indicates whether the)180 710.4 R F2(optname)2.503 E F0(is)2.503 E +.255(set or unset.)180 722.4 R .255(If multiple)5.255 F F2(optname)2.755 E F0(ar)2.755 E .256(guments are gi)-.18 F -.15(ve)-.25 G 2.756(nw).15 G (ith)-2.756 E F12.756 E F0 2.756(,t)C .256 -(he return status is zero if)-2.756 F(all)180 566.4 Q F2(optnames)2.5 E -F0(are enabled; non-zero otherwise.)2.5 E F1144 578.4 Q F0 -(Restricts the v)180 578.4 Q(alues of)-.25 E F2(optname)2.5 E F0 -(to be those de\214ned for the)2.5 E F12.5 E F0(option to the)2.5 -E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .625(If either)144 595.2 R F1 -3.125 E F0(or)3.124 E F13.124 E F0 .624(is used with no) -3.124 F F2(optname)3.124 E F0(ar)3.124 E(guments,)-.18 E F1(shopt)3.124 -E F0(sho)3.124 E .624(ws only those options which are)-.25 F .983 -(set or unset, respecti)144 607.2 R -.15(ve)-.25 G(ly).15 E 5.983(.U) --.65 G .983(nless otherwise noted, the)-5.983 F F1(shopt)3.484 E F0 .984 -(options are disabled \(unset\) by de-)3.484 F -.1(fa)144 619.2 S(ult.) -.1 E 1.544(The return status when listing options is zero if all)144 636 -R F2(optnames)4.044 E F0 1.544(are enabled, non-zero otherwise.)4.044 F -.696 -(When setting or unsetting options, the return status is zero unless an) -144 648 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .696(alid shell) --.25 F(option.)144 660 Q(The list of)144 676.8 Q F1(shopt)2.5 E F0 -(options is:)2.5 E F1(assoc_expand_once)144 694.8 Q F0 1.945 -(If set, the shell suppresses multiple e)184 706.8 R -.25(va)-.25 G -1.944(luation of associati).25 F 2.244 -.15(ve a)-.25 H 1.944 -(rray subscripts during).15 F .885(arithmetic e)184 718.8 R .885 -(xpression e)-.15 F -.25(va)-.25 G .885(luation, while e).25 F -.15(xe) --.15 G .885(cuting b).15 F .885(uiltins that can perform v)-.2 F .885 -(ariable as-)-.25 F(signments, and while e)184 730.8 Q -.15(xe)-.15 G -(cuting b).15 E(uiltins that perform array dereferencing.)-.2 E -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(72)185.545 E 0 Cg EP +(he return status is zero if)-2.756 F(GNU Bash 5.0)72 768 Q +(2020 January 29)141.79 E(72)190.95 E 0 Cg EP %%Page: 73 73 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(autocd)144 84 Q F0 .2 -(If set, a command name that is the name of a directory is e)184 84 R +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(all)180 84 Q/F1 10 +/Times-Italic@0 SF(optnames)2.5 E F0(are enabled; non-zero otherwise.) +2.5 E/F2 10/Times-Bold@0 SF144 96 Q F0(Restricts the v)180 96 Q +(alues of)-.25 E F1(optname)2.5 E F0(to be those de\214ned for the)2.5 E +F22.5 E F0(option to the)2.5 E F2(set)2.5 E F0 -.2(bu)2.5 G +(iltin.).2 E .625(If either)144 112.8 R F23.125 E F0(or)3.124 E F2 +3.124 E F0 .624(is used with no)3.124 F F1(optname)3.124 E F0(ar) +3.124 E(guments,)-.18 E F2(shopt)3.124 E F0(sho)3.124 E .624 +(ws only those options which are)-.25 F .983(set or unset, respecti)144 +124.8 R -.15(ve)-.25 G(ly).15 E 5.983(.U)-.65 G .983 +(nless otherwise noted, the)-5.983 F F2(shopt)3.484 E F0 .984 +(options are disabled \(unset\) by de-)3.484 F -.1(fa)144 136.8 S(ult.) +.1 E 1.544(The return status when listing options is zero if all)144 +153.6 R F1(optnames)4.044 E F0 1.544(are enabled, non-zero otherwise.) +4.044 F .696 +(When setting or unsetting options, the return status is zero unless an) +144 165.6 R F1(optname)3.196 E F0 .696(is not a v)3.196 F .696 +(alid shell)-.25 F(option.)144 177.6 Q(The list of)144 194.4 Q F2(shopt) +2.5 E F0(options is:)2.5 E F2(assoc_expand_once)144 212.4 Q F0 1.945 +(If set, the shell suppresses multiple e)184 224.4 R -.25(va)-.25 G +1.944(luation of associati).25 F 2.244 -.15(ve a)-.25 H 1.944 +(rray subscripts during).15 F .885(arithmetic e)184 236.4 R .885 +(xpression e)-.15 F -.25(va)-.25 G .885(luation, while e).25 F -.15(xe) +-.15 G .885(cuting b).15 F .885(uiltins that can perform v)-.2 F .885 +(ariable as-)-.25 F(signments, and while e)184 248.4 Q -.15(xe)-.15 G +(cuting b).15 E(uiltins that perform array dereferencing.)-.2 E F2 +(autocd)144 260.4 Q F0 .2 +(If set, a command name that is the name of a directory is e)184 260.4 R -.15(xe)-.15 G .199(cuted as if it were the ar).15 F(gu-)-.18 E -(ment to the)184 96 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F +(ment to the)184 272.4 Q F2(cd)2.5 E F0 2.5(command. This)2.5 F (option is only used by interacti)2.5 E .3 -.15(ve s)-.25 H(hells.).15 E -F1(cdable_v)144 108 Q(ars)-.1 E F0 .155(If set, an ar)184 120 R .155 -(gument to the)-.18 F F1(cd)2.655 E F0 -.2(bu)2.655 G .156 +F2(cdable_v)144 284.4 Q(ars)-.1 E F0 .155(If set, an ar)184 296.4 R .155 +(gument to the)-.18 F F2(cd)2.655 E F0 -.2(bu)2.655 G .156 (iltin command that is not a directory is assumed to be the).2 F -(name of a v)184 132 Q(ariable whose v)-.25 E -(alue is the directory to change to.)-.25 E F1(cdspell)144 144 Q F0 +(name of a v)184 308.4 Q(ariable whose v)-.25 E +(alue is the directory to change to.)-.25 E F2(cdspell)144 320.4 Q F0 1.055 (If set, minor errors in the spelling of a directory component in a)184 -144 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.987 -(corrected. The)184 156 R 1.487(errors check)3.987 F 1.487 +320.4 R F2(cd)3.555 E F0 1.055(command will be)3.555 F 3.987 +(corrected. The)184 332.4 R 1.487(errors check)3.987 F 1.487 (ed for are transposed characters, a missing character)-.1 F 3.988(,a) --.4 G(nd)-3.988 E .77(one character too man)184 168 R 4.57 -.65(y. I) +-.4 G(nd)-3.988 E .77(one character too man)184 344.4 R 4.57 -.65(y. I) -.15 H 3.27(fac).65 G .77 (orrection is found, the corrected \214lename is printed, and)-3.27 F -(the command proceeds.)184 180 Q(This option is only used by interacti)5 -E .3 -.15(ve s)-.25 H(hells.).15 E F1(checkhash)144 192 Q F0 .736 -(If set,)184 204 R F1(bash)3.236 E F0 .736 -(checks that a command found in the hash table e)3.236 F .737 -(xists before trying to e)-.15 F -.15(xe)-.15 G(-).15 E(cute it.)184 216 -Q(If a hashed command no longer e)5 E -(xists, a normal path search is performed.)-.15 E F1(checkjobs)144 228 Q -F0 .449(If set,)184 240 R F1(bash)2.949 E F0 .449 +(the command proceeds.)184 356.4 Q +(This option is only used by interacti)5 E .3 -.15(ve s)-.25 H(hells.) +.15 E F2(checkhash)144 368.4 Q F0 .736(If set,)184 380.4 R F2(bash)3.236 +E F0 .736(checks that a command found in the hash table e)3.236 F .737 +(xists before trying to e)-.15 F -.15(xe)-.15 G(-).15 E(cute it.)184 +392.4 Q(If a hashed command no longer e)5 E +(xists, a normal path search is performed.)-.15 E F2(checkjobs)144 404.4 +Q F0 .449(If set,)184 416.4 R F2(bash)2.949 E F0 .449 (lists the status of an)2.949 F 2.949(ys)-.15 G .448 (topped and running jobs before e)-2.949 F .448(xiting an interacti)-.15 -F -.15(ve)-.25 G 2.661(shell. If)184 252 R(an)2.661 E 2.661(yj)-.15 G +F -.15(ve)-.25 G 2.661(shell. If)184 428.4 R(an)2.661 E 2.661(yj)-.15 G .161(obs are running, this causes the e)-2.661 F .161 (xit to be deferred until a second e)-.15 F .162(xit is at-)-.15 F 1.473 -(tempted without an interv)184 264 R 1.473(ening command \(see)-.15 F/F2 -9/Times-Bold@0 SF 1.473(JOB CONTR)3.973 F(OL)-.27 E F0(abo)3.723 E -.15 -(ve)-.15 G 3.973(\). The).15 F 1.472(shell al-)3.972 F -.1(wa)184 276 S -(ys postpones e).1 E(xiting if an)-.15 E 2.5(yj)-.15 G(obs are stopped.) --2.5 E F1(checkwinsize)144 288 Q F0 1.09(If set,)184 300 R F1(bash)3.59 -E F0 1.09(checks the windo)3.59 F 3.59(ws)-.25 G 1.09(ize after each e) --3.59 F 1.09(xternal \(non-b)-.15 F 1.09(uiltin\) command and, if)-.2 F -(necessary)184 312 Q 3.351(,u)-.65 G .851(pdates the v)-3.351 F .85 -(alues of)-.25 F F2(LINES)3.35 E F0(and)3.1 E F2(COLUMNS)3.35 E/F3 9 -/Times-Roman@0 SF(.)A F0 .85(This option is enabled by de-)5.35 F -.1 -(fa)184 324 S(ult.).1 E F1(cmdhist)144 336 Q F0 .172(If set,)184 336 R -F1(bash)2.672 E F0 .172(attempts to sa)2.672 F .472 -.15(ve a)-.2 H .173 +(tempted without an interv)184 440.4 R 1.473(ening command \(see)-.15 F +/F3 9/Times-Bold@0 SF 1.473(JOB CONTR)3.973 F(OL)-.27 E F0(abo)3.723 E +-.15(ve)-.15 G 3.973(\). The).15 F 1.472(shell al-)3.972 F -.1(wa)184 +452.4 S(ys postpones e).1 E(xiting if an)-.15 E 2.5(yj)-.15 G +(obs are stopped.)-2.5 E F2(checkwinsize)144 464.4 Q F0 1.09(If set,)184 +476.4 R F2(bash)3.59 E F0 1.09(checks the windo)3.59 F 3.59(ws)-.25 G +1.09(ize after each e)-3.59 F 1.09(xternal \(non-b)-.15 F 1.09 +(uiltin\) command and, if)-.2 F(necessary)184 488.4 Q 3.351(,u)-.65 G +.851(pdates the v)-3.351 F .85(alues of)-.25 F F3(LINES)3.35 E F0(and) +3.1 E F3(COLUMNS)3.35 E/F4 9/Times-Roman@0 SF(.)A F0 .85 +(This option is enabled by de-)5.35 F -.1(fa)184 500.4 S(ult.).1 E F2 +(cmdhist)144 512.4 Q F0 .172(If set,)184 512.4 R F2(bash)2.672 E F0 .172 +(attempts to sa)2.672 F .472 -.15(ve a)-.2 H .173 (ll lines of a multiple-line command in the same history en-).15 F(try) -184 348 Q 5.597(.T)-.65 G .597(his allo)-5.597 F .597 +184 524.4 Q 5.597(.T)-.65 G .597(his allo)-5.597 F .597 (ws easy re-editing of multi-line commands.)-.25 F .597 -(This option is enabled by de-)5.597 F -.1(fa)184 360 S 1.287(ult, b).1 -F 1.288(ut only has an ef)-.2 F 1.288 +(This option is enabled by de-)5.597 F -.1(fa)184 536.4 S 1.287(ult, b) +.1 F 1.288(ut only has an ef)-.2 F 1.288 (fect if command history is enabled, as described abo)-.25 F 1.588 -.15 -(ve u)-.15 H(nder).15 E F2(HIST)184 372 Q(OR)-.162 E(Y)-.315 E F3(.)A F1 -(compat31)144 384 Q F0 .42(If set,)184 396 R F1(bash)2.92 E F0 .42 +(ve u)-.15 H(nder).15 E F3(HIST)184 548.4 Q(OR)-.162 E(Y)-.315 E F4(.)A +F2(compat31)144 560.4 Q F0 .42(If set,)184 572.4 R F2(bash)2.92 E F0 .42 (changes its beha)2.92 F .419(vior to that of v)-.2 F .419 (ersion 3.1 with respect to quoted ar)-.15 F(guments)-.18 E .461(to the) -184 408 R F1([[)2.961 E F0 .462(conditional command')2.962 F(s)-.55 E F1 -(=~)2.962 E F0 .462 +184 584.4 R F2([[)2.961 E F0 .462(conditional command')2.962 F(s)-.55 E +F2(=~)2.962 E F0 .462 (operator and locale-speci\214c string comparison when)2.962 F .71 -(using the)184 420 R F1([[)3.21 E F0 .71(conditional command')3.21 F(s) --.55 E F1(<)3.21 E F0(and)3.21 E F1(>)3.21 E F0 3.21(operators. Bash) +(using the)184 596.4 R F2([[)3.21 E F0 .71(conditional command')3.21 F +(s)-.55 E F2(<)3.21 E F0(and)3.21 E F2(>)3.21 E F0 3.21(operators. Bash) 3.21 F -.15(ve)3.21 G .71(rsions prior to bash-4.1).15 F .792 -(use ASCII collation and)184 432 R/F4 10/Times-Italic@0 SF(str)3.632 E -(cmp)-.37 E F0 .793(\(3\); bash-4.1 and later use the current locale') -.19 F 3.293(sc)-.55 G(ollation)-3.293 E(sequence and)184 444 Q F4(str) -2.84 E(coll)-.37 E F0(\(3\).).51 E F1(compat32)144 456 Q F0 1.41 -(If set,)184 468 R F1(bash)3.91 E F0 1.41(changes its beha)3.91 F 1.409 -(vior to that of v)-.2 F 1.409 -(ersion 3.2 with respect to locale-speci\214c)-.15 F .422 -(string comparison when using the)184 480 R F1([[)2.922 E F0 .422 -(conditional command')2.922 F(s)-.55 E F1(<)2.922 E F0(and)2.922 E F1(>) +(use ASCII collation and)184 608.4 R F1(str)3.632 E(cmp)-.37 E F0 .793 +(\(3\); bash-4.1 and later use the current locale').19 F 3.293(sc)-.55 G +(ollation)-3.293 E(sequence and)184 620.4 Q F1(str)2.84 E(coll)-.37 E F0 +(\(3\).).51 E F2(compat32)144 632.4 Q F0 1.41(If set,)184 644.4 R F2 +(bash)3.91 E F0 1.41(changes its beha)3.91 F 1.409(vior to that of v)-.2 +F 1.409(ersion 3.2 with respect to locale-speci\214c)-.15 F .422 +(string comparison when using the)184 656.4 R F2([[)2.922 E F0 .422 +(conditional command')2.922 F(s)-.55 E F2(<)2.922 E F0(and)2.922 E F2(>) 2.923 E F0 .423(operators \(see pre-)2.923 F .481 -(vious item\) and the ef)184 492 R .481 +(vious item\) and the ef)184 668.4 R .481 (fect of interrupting a command list.)-.25 F .48(Bash v)5.481 F .48 -(ersions 3.2 and earlier)-.15 F(continue with the ne)184 504 Q +(ersions 3.2 and earlier)-.15 F(continue with the ne)184 680.4 Q (xt command in the list after one terminates due to an interrupt.)-.15 E -F1(compat40)144 516 Q F0 1.409(If set,)184 528 R F1(bash)3.909 E F0 +F2(compat40)144 692.4 Q F0 1.409(If set,)184 704.4 R F2(bash)3.909 E F0 1.409(changes its beha)3.909 F 1.409(vior to that of v)-.2 F 1.41 (ersion 4.0 with respect to locale-speci\214c)-.15 F .679 -(string comparison when using the)184 540 R F1([[)3.179 E F0 .678 -(conditional command')3.179 F(s)-.55 E F1(<)3.178 E F0(and)3.178 E F1(>) -3.178 E F0 .678(operators \(see de-)3.178 F .282(scription of)184 552 R -F1(compat31)2.782 E F0 2.782(\)a)C .282(nd the ef)-2.782 F .282 +(string comparison when using the)184 716.4 R F2([[)3.179 E F0 .678 +(conditional command')3.179 F(s)-.55 E F2(<)3.178 E F0(and)3.178 E F2(>) +3.178 E F0 .678(operators \(see de-)3.178 F .282(scription of)184 728.4 +R F2(compat31)2.782 E F0 2.782(\)a)C .282(nd the ef)-2.782 F .282 (fect of interrupting a command list.)-.25 F .283(Bash v)5.283 F .283 -(ersions 4.0)-.15 F 1.164 -(and later interrupt the list as if the shell recei)184 564 R -.15(ve) +(ersions 4.0)-.15 F(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(73) +190.95 E 0 Cg EP +%%Page: 74 74 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.164 +(and later interrupt the list as if the shell recei)184 84 R -.15(ve) -.25 G 3.664(dt).15 G 1.164(he interrupt; pre)-3.664 F 1.164(vious v) --.25 F 1.164(ersions con-)-.15 F(tinue with the ne)184 576 Q -(xt command in the list.)-.15 E F1(compat41)144 588 Q F0 .414(If set,) -184 600 R F1(bash)2.914 E F0 2.914(,w)C .414(hen in)-2.914 F F4 .414 -(posix mode)2.914 F F0 2.914(,t)C .414 -(reats a single quote in a double-quoted parameter e)-2.914 F(x-)-.15 E -.503(pansion as a special character)184 612 R 5.502(.T)-.55 G .502 -(he single quotes must match \(an e)-5.502 F -.15(ve)-.25 G 3.002(nn).15 -G .502(umber\) and the)-3.002 F 1.866 -(characters between the single quotes are considered quoted.)184 624 R +-.25 F 1.164(ersions con-)-.15 F(tinue with the ne)184 96 Q +(xt command in the list.)-.15 E/F1 10/Times-Bold@0 SF(compat41)144 108 Q +F0 .414(If set,)184 120 R F1(bash)2.914 E F0 2.914(,w)C .414(hen in) +-2.914 F/F2 10/Times-Italic@0 SF .414(posix mode)2.914 F F0 2.914(,t)C +.414(reats a single quote in a double-quoted parameter e)-2.914 F(x-) +-.15 E .503(pansion as a special character)184 132 R 5.502(.T)-.55 G +.502(he single quotes must match \(an e)-5.502 F -.15(ve)-.25 G 3.002 +(nn).15 G .502(umber\) and the)-3.002 F 1.866 +(characters between the single quotes are considered quoted.)184 144 R 1.866(This is the beha)6.866 F 1.866(vior of)-.2 F .156 -(3.582 +(before the shell starts, identical to the)184 624 R F13.582 E(ugger)-.2 E F0 3.581(option. If)3.581 F 1.081(set after in)3.581 F -.2 -(vo)-.4 G 1.081(cation, be-).2 F(ha)184 468 Q +(vo)-.4 G 1.081(cation, be-).2 F(ha)184 636 Q (vior intended for use by deb)-.2 E(uggers is enabled:)-.2 E F1(1.)184 -480 Q F0(The)220 480 Q F14.25 E F0 1.75(option to the)4.25 F F1 +648 Q F0(The)220 648 Q F14.25 E F0 1.75(option to the)4.25 F F1 (declar)4.251 E(e)-.18 E F0 -.2(bu)4.251 G 1.751 (iltin displays the source \214le name and line).2 F -(number corresponding to each function name supplied as an ar)220 492 Q -(gument.)-.18 E F1(2.)184 504 Q F0 1.667(If the command run by the)220 -504 R F1(DEB)4.167 E(UG)-.1 E F0 1.667(trap returns a non-zero v)4.167 F -1.667(alue, the ne)-.25 F(xt)-.15 E(command is skipped and not e)220 516 -Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 528 Q F0 .84 -(If the command run by the)220 528 R F1(DEB)3.34 E(UG)-.1 E F0 .841 +(number corresponding to each function name supplied as an ar)220 660 Q +(gument.)-.18 E F1(2.)184 672 Q F0 1.667(If the command run by the)220 +672 R F1(DEB)4.167 E(UG)-.1 E F0 1.667(trap returns a non-zero v)4.167 F +1.667(alue, the ne)-.25 F(xt)-.15 E(command is skipped and not e)220 684 +Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 696 Q F0 .84 +(If the command run by the)220 696 R F1(DEB)3.34 E(UG)-.1 E F0 .841 (trap returns a v)3.341 F .841(alue of 2, and the shell is)-.25 F -.15 -(exe)220 540 S .488 +(exe)220 708 S .488 (cuting in a subroutine \(a shell function or a shell script e).15 F -.15(xe)-.15 G .488(cuted by the).15 F F1(.)2.988 E F0(or)2.988 E F1 -(sour)220 552 Q(ce)-.18 E F0 -.2(bu)2.5 G +(sour)220 720 Q(ce)-.18 E F0 -.2(bu)2.5 G (iltins\), the shell simulates a call to).2 E F1 -.18(re)2.5 G(tur).18 E -(n)-.15 E F0(.)A F1(4.)184 564 Q F2 -.27(BA)220 564 S(SH_ARGC).27 E F0 -(and)3.153 E F2 -.27(BA)3.403 G(SH_ARGV).27 E F0 .904 -(are updated as described in their descriptions)3.154 F(abo)220 576 Q --.15(ve)-.15 G(.).15 E F1(5.)184 588 Q F0 1.637(Function tracing is ena\ -bled: command substitution, shell functions, and sub-)220 588 R -(shells in)220 600 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1 -(\()2.5 E/F4 10/Times-Italic@0 SF(command)2.5 E F1(\))2.5 E F0 -(inherit the)2.5 E F1(DEB)2.5 E(UG)-.1 E F0(and)2.5 E F1(RETURN)2.5 E F0 -(traps.)2.5 E F1(6.)184 612 Q F0 1.082(Error tracing is enabled: comman\ -d substitution, shell functions, and subshells)220 612 R(in)220 624 Q --.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E F4(command) -2.5 E F1(\))2.5 E F0(inherit the)2.5 E F1(ERR)2.5 E F0(trap.)2.5 E F1 -(extglob)144 636 Q F0 .4(If set, the e)184 636 R .4 -(xtended pattern matching features described abo)-.15 F .7 -.15(ve u) --.15 H(nder).15 E F1 -.1(Pa)2.9 G .4(thname Expan-).1 F(sion)184 648 Q -F0(are enabled.)2.5 E F1(extquote)144 660 Q F0 .86(If set,)184 672 R F1 -($)3.36 E F0<08>A F4(string)A F0 3.36<0861>C(nd)-3.36 E F1($)3.36 E F0 -(")A F4(string)A F0 3.36("q)C .86(uoting is performed within)-3.36 F F1 -(${)3.36 E F4(par)A(ameter)-.15 E F1(})A F0 -.15(ex)3.36 G .86 -(pansions en-).15 F(closed in double quotes.)184 684 Q -(This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 696 Q F0 -.243(If set, patterns which f)184 696 R .243 -(ail to match \214lenames during pathname e)-.1 F .243 -(xpansion result in an e)-.15 F(x-)-.15 E(pansion error)184 708 Q(.)-.55 -E(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(74)185.545 E 0 Cg EP +(n)-.15 E F0(.)A(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(74) +190.95 E 0 Cg EP %%Page: 75 75 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF -.25(fo)144 84 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0 .936 -(If set, the suf)184 96 R<8c78>-.25 E .936(es speci\214ed by the)-.15 F -/F2 9/Times-Bold@0 SF(FIGNORE)3.436 E F0 .936(shell v)3.186 F .936 -(ariable cause w)-.25 F .937(ords to be ignored)-.1 F .32 -(when performing w)184 108 R .32(ord completion e)-.1 F -.15(ve)-.25 G -2.82(ni).15 G 2.82(ft)-2.82 G .32(he ignored w)-2.82 F .32 -(ords are the only possible com-)-.1 F 2.947(pletions. See)184 120 R F2 -.447(SHELL V)2.947 F(ARIABLES)-1.215 E F0(abo)2.697 E .747 -.15(ve f) --.15 H .448(or a description of).15 F F2(FIGNORE)2.948 E/F3 9 -/Times-Roman@0 SF(.)A F0 .448(This option is)4.948 F(enabled by def)184 -132 Q(ault.)-.1 E F1(globasciiranges)144 144 Q F0 2.519(If set, range e) -184 156 R 2.519(xpressions used in pattern matching brack)-.15 F 2.518 -(et e)-.1 F 2.518(xpressions \(see)-.15 F F2 -.09(Pa)5.018 G(tter).09 E -(n)-.135 E(Matching)184 168 Q F0(abo)2.964 E -.15(ve)-.15 G 3.214(\)b) -.15 G(eha)-3.214 E 1.014 -.15(ve a)-.2 H 3.214(si).15 G 3.214(fi)-3.214 -G 3.214(nt)-3.214 G .714 -(he traditional C locale when performing comparisons.)-3.214 F 1.02 -(That is, the current locale')184 180 R 3.52(sc)-.55 G 1.02 +SF(4.)184 84 Q/F2 9/Times-Bold@0 SF -.27(BA)220 84 S(SH_ARGC).27 E F0 +(and)3.153 E F2 -.27(BA)3.403 G(SH_ARGV).27 E F0 .904 +(are updated as described in their descriptions)3.154 F(abo)220 96 Q +-.15(ve)-.15 G(.).15 E F1(5.)184 108 Q F0 1.637(Function tracing is ena\ +bled: command substitution, shell functions, and sub-)220 108 R +(shells in)220 120 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1 +(\()2.5 E/F3 10/Times-Italic@0 SF(command)2.5 E F1(\))2.5 E F0 +(inherit the)2.5 E F1(DEB)2.5 E(UG)-.1 E F0(and)2.5 E F1(RETURN)2.5 E F0 +(traps.)2.5 E F1(6.)184 132 Q F0 1.082(Error tracing is enabled: comman\ +d substitution, shell functions, and subshells)220 132 R(in)220 144 Q +-.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E F3(command) +2.5 E F1(\))2.5 E F0(inherit the)2.5 E F1(ERR)2.5 E F0(trap.)2.5 E F1 +(extglob)144 156 Q F0 .4(If set, the e)184 156 R .4 +(xtended pattern matching features described abo)-.15 F .7 -.15(ve u) +-.15 H(nder).15 E F1 -.1(Pa)2.9 G .4(thname Expan-).1 F(sion)184 168 Q +F0(are enabled.)2.5 E F1(extquote)144 180 Q F0 .86(If set,)184 192 R F1 +($)3.36 E F0<08>A F3(string)A F0 3.36<0861>C(nd)-3.36 E F1($)3.36 E F0 +(")A F3(string)A F0 3.36("q)C .86(uoting is performed within)-3.36 F F1 +(${)3.36 E F3(par)A(ameter)-.15 E F1(})A F0 -.15(ex)3.36 G .86 +(pansions en-).15 F(closed in double quotes.)184 204 Q +(This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 216 Q F0 +.243(If set, patterns which f)184 216 R .243 +(ail to match \214lenames during pathname e)-.1 F .243 +(xpansion result in an e)-.15 F(x-)-.15 E(pansion error)184 228 Q(.)-.55 +E F1 -.25(fo)144 240 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0 .936 +(If set, the suf)184 252 R<8c78>-.25 E .936(es speci\214ed by the)-.15 F +F2(FIGNORE)3.436 E F0 .936(shell v)3.186 F .936(ariable cause w)-.25 F +.937(ords to be ignored)-.1 F .32(when performing w)184 264 R .32 +(ord completion e)-.1 F -.15(ve)-.25 G 2.82(ni).15 G 2.82(ft)-2.82 G .32 +(he ignored w)-2.82 F .32(ords are the only possible com-)-.1 F 2.947 +(pletions. See)184 276 R F2 .447(SHELL V)2.947 F(ARIABLES)-1.215 E F0 +(abo)2.697 E .747 -.15(ve f)-.15 H .448(or a description of).15 F F2 +(FIGNORE)2.948 E/F4 9/Times-Roman@0 SF(.)A F0 .448(This option is)4.948 +F(enabled by def)184 288 Q(ault.)-.1 E F1(globasciiranges)144 300 Q F0 +2.519(If set, range e)184 312 R 2.519 +(xpressions used in pattern matching brack)-.15 F 2.518(et e)-.1 F 2.518 +(xpressions \(see)-.15 F F2 -.09(Pa)5.018 G(tter).09 E(n)-.135 E +(Matching)184 324 Q F0(abo)2.964 E -.15(ve)-.15 G 3.214(\)b).15 G(eha) +-3.214 E 1.014 -.15(ve a)-.2 H 3.214(si).15 G 3.214(fi)-3.214 G 3.214 +(nt)-3.214 G .714(he traditional C locale when performing comparisons.) +-3.214 F 1.02(That is, the current locale')184 336 R 3.52(sc)-.55 G 1.02 (ollating sequence is not tak)-3.52 F 1.02(en into account, so)-.1 F F1 -(b)3.52 E F0 1.02(will not)3.52 F .956(collate between)184 192 R F1(A) +(b)3.52 E F0 1.02(will not)3.52 F .956(collate between)184 348 R F1(A) 3.456 E F0(and)3.456 E F1(B)3.456 E F0 3.457(,a)C .957(nd upper)-3.457 F .957(-case and lo)-.2 F(wer)-.25 E .957 -(-case ASCII characters will collate)-.2 F(together)184 204 Q(.)-.55 E -F1(globstar)144 216 Q F0 .519(If set, the pattern)184 216 R F1(**)3.019 +(-case ASCII characters will collate)-.2 F(together)184 360 Q(.)-.55 E +F1(globstar)144 372 Q F0 .519(If set, the pattern)184 372 R F1(**)3.019 E F0 .519(used in a pathname e)3.019 F .519(xpansion conte)-.15 F .518 (xt will match all \214les and zero)-.15 F .431 -(or more directories and subdirectories.)184 228 R .431 +(or more directories and subdirectories.)184 384 R .431 (If the pattern is follo)5.431 F .432(wed by a)-.25 F F1(/)2.932 E F0 2.932(,o)C .432(nly directories)-2.932 F(and subdirectories match.)184 -240 Q F1(gnu_errfmt)144 252 Q F0(If set, shell error messages are writt\ -en in the standard GNU error message format.)184 264 Q F1(histappend)144 -276 Q F0 .676 +396 Q F1(gnu_errfmt)144 408 Q F0(If set, shell error messages are writt\ +en in the standard GNU error message format.)184 420 Q F1(histappend)144 +432 Q F0 .676 (If set, the history list is appended to the \214le named by the v)184 -288 R .676(alue of the)-.25 F F2(HISTFILE)3.176 E F0 -.25(va)2.926 G -(ri-).25 E(able when the shell e)184 300 Q(xits, rather than o)-.15 E --.15(ve)-.15 G(rwriting the \214le.).15 E F1(histr)144 312 Q(eedit)-.18 -E F0 .575(If set, and)184 324 R F1 -.18(re)3.075 G(adline).18 E F0 .575 +444 R .676(alue of the)-.25 F F2(HISTFILE)3.176 E F0 -.25(va)2.926 G +(ri-).25 E(able when the shell e)184 456 Q(xits, rather than o)-.15 E +-.15(ve)-.15 G(rwriting the \214le.).15 E F1(histr)144 468 Q(eedit)-.18 +E F0 .575(If set, and)184 480 R F1 -.18(re)3.075 G(adline).18 E F0 .575 (is being used, a user is gi)3.075 F -.15(ve)-.25 G 3.075(nt).15 G .576 (he opportunity to re-edit a f)-3.075 F .576(ailed his-)-.1 F -(tory substitution.)184 336 Q F1(histv)144 348 Q(erify)-.1 E F0 .403 -(If set, and)184 360 R F1 -.18(re)2.903 G(adline).18 E F0 .403 +(tory substitution.)184 492 Q F1(histv)144 504 Q(erify)-.1 E F0 .403 +(If set, and)184 516 R F1 -.18(re)2.903 G(adline).18 E F0 .403 (is being used, the results of history substitution are not immediately) -2.903 F .661(passed to the shell parser)184 372 R 5.661(.I)-.55 G .662 +2.903 F .661(passed to the shell parser)184 528 R 5.661(.I)-.55 G .662 (nstead, the resulting line is loaded into the)-5.661 F F1 -.18(re)3.162 -G(adline).18 E F0(editing)3.162 E -.2(bu)184 384 S -.25(ff).2 G(er).25 E +G(adline).18 E F0(editing)3.162 E -.2(bu)184 540 S -.25(ff).2 G(er).25 E 2.5(,a)-.4 G(llo)-2.5 E(wing further modi\214cation.)-.25 E F1 -(hostcomplete)144 396 Q F0 1.182(If set, and)184 408 R F1 -.18(re)3.682 +(hostcomplete)144 552 Q F0 1.182(If set, and)184 564 R F1 -.18(re)3.682 G(adline).18 E F0 1.182(is being used,)3.682 F F1(bash)3.682 E F0 1.181 (will attempt to perform hostname completion)3.681 F 1.38(when a w)184 -420 R 1.38(ord containing a)-.1 F F1(@)3.881 E F0 1.381 +576 R 1.38(ord containing a)-.1 F F1(@)3.881 E F0 1.381 (is being completed \(see)3.881 F F1(Completing)3.881 E F0(under)3.881 E -F2(READLINE)3.881 E F0(abo)184 432 Q -.15(ve)-.15 G 2.5(\). This).15 F -(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 444 Q F0(If set,) -184 456 Q F1(bash)2.5 E F0(will send)2.5 E F2(SIGHUP)2.5 E F0 +F2(READLINE)3.881 E F0(abo)184 588 Q -.15(ve)-.15 G 2.5(\). This).15 F +(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 600 Q F0(If set,) +184 612 Q F1(bash)2.5 E F0(will send)2.5 E F2(SIGHUP)2.5 E F0 (to all jobs when an interacti)2.25 E .3 -.15(ve l)-.25 H(ogin shell e) -.15 E(xits.)-.15 E F1(inherit_err)144 468 Q(exit)-.18 E F0 .22 -(If set, command substitution inherits the v)184 480 R .219(alue of the) +.15 E(xits.)-.15 E F1(inherit_err)144 624 Q(exit)-.18 E F0 .22 +(If set, command substitution inherits the v)184 636 R .219(alue of the) -.25 F F1(err)2.719 E(exit)-.18 E F0 .219(option, instead of unsetting) -2.719 F(it in the subshell en)184 492 Q 2.5(vironment. This)-.4 F -(option is enabled when)2.5 E/F4 10/Times-Italic@0 SF(posix mode)2.5 E -F0(is enabled.)2.5 E F1(interacti)144 504 Q -.1(ve)-.1 G(_comments).1 E -F0 .33(If set, allo)184 516 R 2.83(waw)-.25 G .33(ord be)-2.93 F .33 -(ginning with)-.15 F F1(#)2.83 E F0 .33(to cause that w)2.83 F .33 +2.719 F(it in the subshell en)184 648 Q 2.5(vironment. This)-.4 F +(option is enabled when)2.5 E F3(posix mode)2.5 E F0(is enabled.)2.5 E +F1(interacti)144 660 Q -.1(ve)-.1 G(_comments).1 E F0 .33(If set, allo) +184 672 R 2.83(waw)-.25 G .33(ord be)-2.93 F .33(ginning with)-.15 F F1 +(#)2.83 E F0 .33(to cause that w)2.83 F .33 (ord and all remaining characters on)-.1 F .967 -(that line to be ignored in an interacti)184 528 R 1.267 -.15(ve s)-.25 +(that line to be ignored in an interacti)184 684 R 1.267 -.15(ve s)-.25 H .967(hell \(see).15 F F2(COMMENTS)3.467 E F0(abo)3.217 E -.15(ve)-.15 -G 3.467(\). This).15 F .967(option is)3.467 F(enabled by def)184 540 Q -(ault.)-.1 E F1(lastpipe)144 552 Q F0 .066 -(If set, and job control is not acti)184 552 R -.15(ve)-.25 G 2.566(,t) +G 3.467(\). This).15 F .967(option is)3.467 F(enabled by def)184 696 Q +(ault.)-.1 E F1(lastpipe)144 708 Q F0 .066 +(If set, and job control is not acti)184 708 R -.15(ve)-.25 G 2.566(,t) .15 G .066(he shell runs the last command of a pipeline not e)-2.566 F -.15(xe)-.15 G(-).15 E(cuted in the background in the current shell en) -184 564 Q(vironment.)-.4 E F1(lithist)144 576 Q F0 .655(If set, and the) -184 576 R F1(cmdhist)3.155 E F0 .654 -(option is enabled, multi-line commands are sa)3.154 F -.15(ve)-.2 G -3.154(dt).15 G 3.154(ot)-3.154 G .654(he history)-3.154 F -(with embedded ne)184 588 Q +184 720 Q(vironment.)-.4 E(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 +E(75)190.95 E 0 Cg EP +%%Page: 76 76 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(lithist)144 84 Q F0 .655(If set, and the)184 84 R F1(cmdhist)3.155 E +F0 .654(option is enabled, multi-line commands are sa)3.154 F -.15(ve) +-.2 G 3.154(dt).15 G 3.154(ot)-3.154 G .654(he history)-3.154 F +(with embedded ne)184 96 Q (wlines rather than using semicolon separators where possible.)-.25 E F1 -(localv)144 600 Q(ar_inherit)-.1 E F0 .421(If set, local v)184 612 R +(localv)144 108 Q(ar_inherit)-.1 E F0 .421(If set, local v)184 120 R .422(ariables inherit the v)-.25 F .422(alue and attrib)-.25 F .422 (utes of a v)-.2 F .422(ariable of the same name that)-.25 F -.15(ex)184 -624 S .174(ists at a pre).15 F .174(vious scope before an)-.25 F 2.673 +132 S .174(ists at a pre).15 F .174(vious scope before an)-.25 F 2.673 (yn)-.15 G .673 -.25(ew va)-2.673 H .173(lue is assigned.).25 F .173 -(The nameref attrib)5.173 F .173(ute is not)-.2 F(inherited.)184 636 Q -F1(localv)144 648 Q(ar_unset)-.1 E F0 .328(If set, calling)184 660 R F1 +(The nameref attrib)5.173 F .173(ute is not)-.2 F(inherited.)184 144 Q +F1(localv)144 156 Q(ar_unset)-.1 E F0 .328(If set, calling)184 168 R F1 (unset)2.828 E F0 .328(on local v)2.828 F .329(ariables in pre)-.25 F .329(vious function scopes marks them so subse-)-.25 F .543(quent looku\ ps \214nd them unset until that function returns. This is identical to \ -the beha)184 672 R(v-)-.2 E(ior of unsetting local v)184 684 Q -(ariables at the current function scope.)-.25 E F1(login_shell)144 696 Q +the beha)184 180 R(v-)-.2 E(ior of unsetting local v)184 192 Q +(ariables at the current function scope.)-.25 E F1(login_shell)144 204 Q F0 .486 (The shell sets this option if it is started as a login shell \(see)184 -708 R F2(INV)2.987 E(OCA)-.405 E(TION)-.855 E F0(abo)2.737 E -.15(ve) --.15 G 2.987(\). The).15 F -.25(va)184 720 S(lue may not be changed.).25 -E(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(75)185.545 E 0 Cg EP -%%Page: 76 76 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(mailwar)144 84 Q(n)-.15 E F0 .815(If set, and a \214le that)184 96 R -F1(bash)3.315 E F0 .814 +216 R/F2 9/Times-Bold@0 SF(INV)2.987 E(OCA)-.405 E(TION)-.855 E F0(abo) +2.737 E -.15(ve)-.15 G 2.987(\). The).15 F -.25(va)184 228 S +(lue may not be changed.).25 E F1(mailwar)144 240 Q(n)-.15 E F0 .815 +(If set, and a \214le that)184 252 R F1(bash)3.315 E F0 .814 (is checking for mail has been accessed since the last time it)3.315 F --.1(wa)184 108 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E -(`The mail in)-.74 E/F2 10/Times-Italic@0 SF(mail\214le)2.5 E F0 +-.1(wa)184 264 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E +(`The mail in)-.74 E/F3 10/Times-Italic@0 SF(mail\214le)2.5 E F0 (has been read')2.5 E 2.5('i)-.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E F1 -(no_empty_cmd_completion)144 120 Q F0 .324(If set, and)184 132 R F1 -.18 +(no_empty_cmd_completion)144 276 Q F0 .324(If set, and)184 288 R F1 -.18 (re)2.824 G(adline).18 E F0 .324(is being used,)2.824 F F1(bash)2.824 E -F0 .324(will not attempt to search the)2.824 F/F3 9/Times-Bold@0 SF --.666(PA)2.825 G(TH)-.189 E F0 .325(for possible)2.575 F -(completions when completion is attempted on an empty line.)184 144 Q F1 -(nocaseglob)144 156 Q F0 .437(If set,)184 168 R F1(bash)2.937 E F0 .436 +F0 .324(will not attempt to search the)2.824 F F2 -.666(PA)2.825 G(TH) +-.189 E F0 .325(for possible)2.575 F +(completions when completion is attempted on an empty line.)184 300 Q F1 +(nocaseglob)144 312 Q F0 .437(If set,)184 324 R F1(bash)2.937 E F0 .436 (matches \214lenames in a case\255insensiti)2.937 F .736 -.15(ve f)-.25 -H .436(ashion when performing pathname).05 F -.15(ex)184 180 S +H .436(ashion when performing pathname).05 F -.15(ex)184 336 S (pansion \(see).15 E F1 -.1(Pa)2.5 G(thname Expansion).1 E F0(abo)2.5 E --.15(ve)-.15 G(\).).15 E F1(nocasematch)144 192 Q F0 1.193(If set,)184 -204 R F1(bash)3.693 E F0 1.194(matches patterns in a case\255insensiti) +-.15(ve)-.15 G(\).).15 E F1(nocasematch)144 348 Q F0 1.193(If set,)184 +360 R F1(bash)3.693 E F0 1.194(matches patterns in a case\255insensiti) 3.693 F 1.494 -.15(ve f)-.25 H 1.194(ashion when performing matching).05 -F .551(while e)184 216 R -.15(xe)-.15 G(cuting).15 E F1(case)3.051 E F0 +F .551(while e)184 372 R -.15(xe)-.15 G(cuting).15 E F1(case)3.051 E F0 (or)3.051 E F1([[)3.051 E F0 .551 (conditional commands, when performing pattern substitution)3.051 F -.1 -(wo)184 228 S .622(rd e).1 F .623(xpansions, or when \214ltering possib\ -le completions as part of programmable com-)-.15 F(pletion.)184 240 Q F1 -(nullglob)144 252 Q F0 .855(If set,)184 264 R F1(bash)3.355 E F0(allo) +(wo)184 384 S .622(rd e).1 F .623(xpansions, or when \214ltering possib\ +le completions as part of programmable com-)-.15 F(pletion.)184 396 Q F1 +(nullglob)144 408 Q F0 .855(If set,)184 420 R F1(bash)3.355 E F0(allo) 3.355 E .855(ws patterns which match no \214les \(see)-.25 F F1 -.1(Pa) 3.354 G .854(thname Expansion).1 F F0(abo)3.354 E -.15(ve)-.15 G 3.354 -(\)t).15 G(o)-3.354 E -.15(ex)184 276 S +(\)t).15 G(o)-3.354 E -.15(ex)184 432 S (pand to a null string, rather than themselv).15 E(es.)-.15 E F1(pr)144 -288 Q(ogcomp)-.18 E F0 .676(If set, the programmable completion f)184 -300 R .677(acilities \(see)-.1 F F1(Pr)3.177 E .677 +444 Q(ogcomp)-.18 E F0 .676(If set, the programmable completion f)184 +456 R .677(acilities \(see)-.1 F F1(Pr)3.177 E .677 (ogrammable Completion)-.18 F F0(abo)3.177 E -.15(ve)-.15 G(\)).15 E -(are enabled.)184 312 Q(This option is enabled by def)5 E(ault.)-.1 E F1 -(pr)144 324 Q(ogcomp_alias)-.18 E F0 2.124 -(If set, and programmable completion is enabled,)184 336 R F1(bash)4.624 -E F0 2.124(treats a command name that)4.624 F(doesn')184 348 Q 3.288(th) +(are enabled.)184 468 Q(This option is enabled by def)5 E(ault.)-.1 E F1 +(pr)144 480 Q(ogcomp_alias)-.18 E F0 2.124 +(If set, and programmable completion is enabled,)184 492 R F1(bash)4.624 +E F0 2.124(treats a command name that)4.624 F(doesn')184 504 Q 3.288(th) -.18 G -2.25 -.2(av e)-3.288 H(an)3.488 E 3.288(yc)-.15 G .789 (ompletions as a possible alias and attempts alias e)-3.288 F .789 -(xpansion. If it has)-.15 F 1.473(an alias,)184 360 R F1(bash)3.973 E F0 +(xpansion. If it has)-.15 F 1.473(an alias,)184 516 R F1(bash)3.973 E F0 1.473(attempts programmable completion using the command w)3.973 F 1.473 -(ord resulting)-.1 F(from the e)184 372 Q(xpanded alias.)-.15 E F1(pr) -144 384 Q(omptv)-.18 E(ars)-.1 E F0 1.447(If set, prompt strings under) -184 396 R 1.448(go parameter e)-.18 F 1.448 -(xpansion, command substitution, arithmetic)-.15 F -.15(ex)184 408 S +(ord resulting)-.1 F(from the e)184 528 Q(xpanded alias.)-.15 E F1(pr) +144 540 Q(omptv)-.18 E(ars)-.1 E F0 1.447(If set, prompt strings under) +184 552 R 1.448(go parameter e)-.18 F 1.448 +(xpansion, command substitution, arithmetic)-.15 F -.15(ex)184 564 S .171(pansion, and quote remo).15 F -.25(va)-.15 G 2.67(la).25 G .17 -(fter being e)-2.67 F .17(xpanded as described in)-.15 F F3(PR)2.67 E +(fter being e)-2.67 F .17(xpanded as described in)-.15 F F2(PR)2.67 E (OMPTING)-.27 E F0(abo)2.42 E -.15(ve)-.15 G(.).15 E -(This option is enabled by def)184 420 Q(ault.)-.1 E F1 -.18(re)144 432 +(This option is enabled by def)184 576 Q(ault.)-.1 E F1 -.18(re)144 588 S(stricted_shell).18 E F0 1.069 (The shell sets this option if it is started in restricted mode \(see) -184 444 R F3 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 456 Q 2.86 +184 600 R F2 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 612 Q 2.86 (w\). The)-.25 F -.25(va)2.86 G .36(lue may not be changed.).25 F .36 (This is not reset when the startup \214les are e)5.36 F -.15(xe)-.15 G -(-).15 E(cuted, allo)184 468 Q(wing the startup \214les to disco)-.25 E +(-).15 E(cuted, allo)184 624 Q(wing the startup \214les to disco)-.25 E -.15(ve)-.15 G 2.5(rw).15 G(hether or not a shell is restricted.)-2.5 E -F1(shift_v)144 480 Q(erbose)-.1 E F0 .501(If set, the)184 492 R F1 +F1(shift_v)144 636 Q(erbose)-.1 E F0 .501(If set, the)184 648 R F1 (shift)3.001 E F0 -.2(bu)3.001 G .501 (iltin prints an error message when the shift count e).2 F .502 -(xceeds the number)-.15 F(of positional parameters.)184 504 Q F1(sour) -144 516 Q(cepath)-.18 E F0 .771(If set, the)184 528 R F1(sour)3.271 E +(xceeds the number)-.15 F(of positional parameters.)184 660 Q F1(sour) +144 672 Q(cepath)-.18 E F0 .771(If set, the)184 684 R F1(sour)3.271 E (ce)-.18 E F0(\()3.271 E F1(.)A F0 3.271(\)b)C .771(uiltin uses the v) --3.471 F .771(alue of)-.25 F F3 -.666(PA)3.27 G(TH)-.189 E F0 .77 +-3.471 F .771(alue of)-.25 F F2 -.666(PA)3.27 G(TH)-.189 E F0 .77 (to \214nd the directory containing the)3.02 F(\214le supplied as an ar) -184 540 Q 2.5(gument. This)-.18 F(option is enabled by def)2.5 E(ault.) --.1 E F1(xpg_echo)144 552 Q F0(If set, the)184 564 Q F1(echo)2.5 E F0 --.2(bu)2.5 G(iltin e).2 E(xpands backslash-escape sequences by def)-.15 -E(ault.)-.1 E F1(suspend)108 580.8 Q F0([)2.5 E F1A F0(])A 1.001 -(Suspend the e)144 592.8 R -.15(xe)-.15 G 1.001 +184 696 Q 2.5(gument. This)-.18 F(option is enabled by def)2.5 E(ault.) +-.1 E(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(76)190.95 E 0 Cg EP +%%Page: 77 77 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(xpg_echo)144 84 Q F0(If set, the)184 96 Q F1(echo)2.5 E F0 -.2(bu)2.5 +G(iltin e).2 E(xpands backslash-escape sequences by def)-.15 E(ault.)-.1 +E F1(suspend)108 112.8 Q F0([)2.5 E F1A F0(])A 1.001 +(Suspend the e)144 124.8 R -.15(xe)-.15 G 1.001 (cution of this shell until it recei).15 F -.15(ve)-.25 G 3.501(sa).15 G -F3(SIGCONT)A F0 3.502(signal. A)3.252 F 1.002(login shell cannot be) -3.502 F .023(suspended; the)144 604.8 R F12.523 E F0 .023 -(option can be used to o)2.523 F -.15(ve)-.15 G .022 +/F2 9/Times-Bold@0 SF(SIGCONT)A F0 3.502(signal. A)3.252 F 1.002 +(login shell cannot be)3.502 F .023(suspended; the)144 136.8 R F1 +2.523 E F0 .023(option can be used to o)2.523 F -.15(ve)-.15 G .022 (rride this and force the suspension.).15 F .022(The return status is) -5.022 F 2.5(0u)144 616.8 S(nless the shell is a login shell and)-2.5 E +5.022 F 2.5(0u)144 148.8 S(nless the shell is a login shell and)-2.5 E F12.5 E F0(is not supplied, or if job control is not enabled.)2.5 -E F1(test)108 633.6 Q F2 -.2(ex)2.5 G(pr).2 E F1([)108 645.6 Q F2 -.2 -(ex)2.5 G(pr).2 E F1(])2.5 E F0 .877 -(Return a status of 0 \(true\) or 1 \(f)144 645.6 R .878 +E F1(test)108 165.6 Q/F3 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F1([) +108 177.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 .877 +(Return a status of 0 \(true\) or 1 \(f)144 177.6 R .878 (alse\) depending on the e)-.1 F -.25(va)-.25 G .878 -(luation of the conditional e).25 F(xpression)-.15 E F2 -.2(ex)144 657.6 +(luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)144 189.6 S(pr).2 E F0 5.53(.E).73 G .53 (ach operator and operand must be a separate ar)-5.53 F 3.03 (gument. Expressions)-.18 F .53(are composed of the)3.03 F 1.36 -(primaries described abo)144 669.6 R 1.66 -.15(ve u)-.15 H(nder).15 E F3 +(primaries described abo)144 201.6 R 1.66 -.15(ve u)-.15 H(nder).15 E F2 (CONDITION)3.86 E 1.36(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(.)A F1(test)5.86 E F0 1.361(does not accept an)3.86 F 3.861(yo)-.15 G(p-) --3.861 E(tions, nor does it accept and ignore an ar)144 681.6 Q +-3.861 E(tions, nor does it accept and ignore an ar)144 213.6 Q (gument of)-.18 E F12.5 E F0(as signifying the end of options.)2.5 -E .786(Expressions may be combined using the follo)144 699.6 R .785 +E .786(Expressions may be combined using the follo)144 231.6 R .785 (wing operators, listed in decreasing order of prece-)-.25 F 3.411 -(dence. The)144 711.6 R -.25(eva)3.411 G .911 +(dence. The)144 243.6 R -.25(eva)3.411 G .911 (luation depends on the number of ar).25 F .912(guments; see belo)-.18 F 4.712 -.65(w. O)-.25 H .912(perator precedence is).65 F -(used when there are \214v)144 723.6 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G -(ore ar)-2.5 E(guments.)-.18 E(GNU Bash 5.0)72 768 Q(2019 No)136.385 E --.15(ve)-.15 G(mber 26).15 E(76)185.545 E 0 Cg EP -%%Page: 77 77 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF(!)144 84 Q/F2 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F0 -.35(Tr) -180 84 S(ue if).35 E F2 -.2(ex)2.5 G(pr).2 E F0(is f)3.23 E(alse.)-.1 E -F1(\()144 96 Q F2 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0 .26(Returns the v) -180 96 R .26(alue of)-.25 F F2 -.2(ex)2.76 G(pr).2 E F0 5.26(.T)C .26 -(his may be used to o)-5.26 F -.15(ve)-.15 G .26 -(rride the normal precedence of opera-).15 F(tors.)180 108 Q F2 -.2(ex) -144 120 S(pr1).2 E F02.5 E F1(a)A F2 -.2(ex)2.5 G(pr2).2 E F0 -.35 -(Tr)180 132 S(ue if both).35 E F2 -.2(ex)2.5 G(pr1).2 E F0(and)2.5 E F2 --.2(ex)2.5 G(pr2).2 E F0(are true.)2.52 E F2 -.2(ex)144 144 S(pr1).2 E -F02.5 E F1(o)A F2 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180 156 S -(ue if either).35 E F2 -.2(ex)2.5 G(pr1).2 E F0(or)2.5 E F2 -.2(ex)2.5 G -(pr2).2 E F0(is true.)2.52 E F1(test)144 172.8 Q F0(and)2.5 E F1([)2.5 E -F0 -.25(eva)2.5 G(luate conditional e).25 E +(used when there are \214v)144 255.6 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G +(ore ar)-2.5 E(guments.)-.18 E F1(!)144 267.6 Q F3 -.2(ex)2.5 G(pr).2 E +F0 -.35(Tr)180 267.6 S(ue if).35 E F3 -.2(ex)2.5 G(pr).2 E F0(is f)3.23 +E(alse.)-.1 E F1(\()144 279.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0 +.26(Returns the v)180 279.6 R .26(alue of)-.25 F F3 -.2(ex)2.76 G(pr).2 +E F0 5.26(.T)C .26(his may be used to o)-5.26 F -.15(ve)-.15 G .26 +(rride the normal precedence of opera-).15 F(tors.)180 291.6 Q F3 -.2 +(ex)144 303.6 S(pr1).2 E F02.5 E F1(a)A F3 -.2(ex)2.5 G(pr2).2 E F0 +-.35(Tr)180 315.6 S(ue if both).35 E F3 -.2(ex)2.5 G(pr1).2 E F0(and)2.5 +E F3 -.2(ex)2.5 G(pr2).2 E F0(are true.)2.52 E F3 -.2(ex)144 327.6 S +(pr1).2 E F02.5 E F1(o)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180 +339.6 S(ue if either).35 E F3 -.2(ex)2.5 G(pr1).2 E F0(or)2.5 E F3 -.2 +(ex)2.5 G(pr2).2 E F0(is true.)2.52 E F1(test)144 356.4 Q F0(and)2.5 E +F1([)2.5 E F0 -.25(eva)2.5 G(luate conditional e).25 E (xpressions using a set of rules based on the number of ar)-.15 E -(guments.)-.18 E 2.5(0a)144 190.8 S -.18(rg)-2.5 G(uments).18 E(The e) -180 202.8 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 214.8 S -.18 -(rg)-2.5 G(ument).18 E(The e)180 226.8 Q +(guments.)-.18 E 2.5(0a)144 374.4 S -.18(rg)-2.5 G(uments).18 E(The e) +180 386.4 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 398.4 S -.18 +(rg)-2.5 G(ument).18 E(The e)180 410.4 Q (xpression is true if and only if the ar)-.15 E(gument is not null.)-.18 -E 2.5(2a)144 238.8 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar) -180 250.8 R .37(gument is)-.18 F F1(!)2.87 E F0 2.87(,t)C .37(he e)-2.87 +E 2.5(2a)144 422.4 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar) +180 434.4 R .37(gument is)-.18 F F1(!)2.87 E F0 2.87(,t)C .37(he e)-2.87 F .37(xpression is true if and only if the second ar)-.15 F .37 -(gument is null.)-.18 F .38(If the \214rst ar)180 262.8 R .38 +(gument is null.)-.18 F .38(If the \214rst ar)180 446.4 R .38 (gument is one of the unary conditional operators listed abo)-.18 F .679 --.15(ve u)-.15 H(nder).15 E/F3 9/Times-Bold@0 SF(CONDI-)2.879 E(TION)180 -274.8 Q .552(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(,)A F0 .552 -(the e)2.802 F .552(xpression is true if the unary test is true.)-.15 F -.552(If the \214rst ar)5.552 F(gu-)-.18 E(ment is not a v)180 286.8 Q +-.15(ve u)-.15 H(nder).15 E F2(CONDI-)2.879 E(TION)180 458.4 Q .552 +(AL EXPRESSIONS)-.18 F F4(,)A F0 .552(the e)2.802 F .552 +(xpression is true if the unary test is true.)-.15 F .552 +(If the \214rst ar)5.552 F(gu-)-.18 E(ment is not a v)180 470.4 Q (alid unary conditional operator)-.25 E 2.5(,t)-.4 G(he e)-2.5 E -(xpression is f)-.15 E(alse.)-.1 E 2.5(3a)144 298.8 S -.18(rg)-2.5 G -(uments).18 E .236(The follo)180 310.8 R .236 +(xpression is f)-.15 E(alse.)-.1 E 2.5(3a)144 482.4 S -.18(rg)-2.5 G +(uments).18 E .236(The follo)180 494.4 R .236 (wing conditions are applied in the order listed.)-.25 F .236 (If the second ar)5.236 F .236(gument is one of)-.18 F .855 -(the binary conditional operators listed abo)180 322.8 R 1.155 -.15 -(ve u)-.15 H(nder).15 E F3(CONDITION)3.355 E .855(AL EXPRESSIONS)-.18 F -F4(,)A F0(the)3.105 E .579(result of the e)180 334.8 R .578(xpression i\ +(the binary conditional operators listed abo)180 506.4 R 1.155 -.15 +(ve u)-.15 H(nder).15 E F2(CONDITION)3.355 E .855(AL EXPRESSIONS)-.18 F +F4(,)A F0(the)3.105 E .579(result of the e)180 518.4 R .578(xpression i\ s the result of the binary test using the \214rst and third ar)-.15 F -(guments)-.18 E 1.332(as operands.)180 346.8 R(The)6.332 E F13.832 +(guments)-.18 E 1.332(as operands.)180 530.4 R(The)6.332 E F13.832 E F0(and)3.832 E F13.832 E F0 1.333 (operators are considered binary operators when there are)3.832 F .558 -(three ar)180 358.8 R 3.058(guments. If)-.18 F .558(the \214rst ar)3.058 +(three ar)180 542.4 R 3.058(guments. If)-.18 F .558(the \214rst ar)3.058 F .558(gument is)-.18 F F1(!)3.058 E F0 3.058(,t)C .558(he v)-3.058 F .558(alue is the ne)-.25 F -.05(ga)-.15 G .558(tion of the tw).05 F (o-ar)-.1 E(gument)-.18 E .52(test using the second and third ar)180 -370.8 R 3.021(guments. If)-.18 F .521(the \214rst ar)3.021 F .521 +554.4 R 3.021(guments. If)-.18 F .521(the \214rst ar)3.021 F .521 (gument is e)-.18 F(xactly)-.15 E F1(\()3.021 E F0 .521(and the third) -3.021 F(ar)180 382.8 Q .485(gument is e)-.18 F(xactly)-.15 E F1(\))2.985 +3.021 F(ar)180 566.4 Q .485(gument is e)-.18 F(xactly)-.15 E F1(\))2.985 E F0 2.985(,t)C .485(he result is the one-ar)-2.985 F .485 (gument test of the second ar)-.18 F 2.985(gument. Other)-.18 F(-)-.2 E -(wise, the e)180 394.8 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(4a)144 -406.8 S -.18(rg)-2.5 G(uments).18 E .384(If the \214rst ar)180 418.8 R +(wise, the e)180 578.4 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(4a)144 +590.4 S -.18(rg)-2.5 G(uments).18 E .384(If the \214rst ar)180 602.4 R .384(gument is)-.18 F F1(!)2.884 E F0 2.885(,t)C .385 (he result is the ne)-2.885 F -.05(ga)-.15 G .385(tion of the three-ar) .05 F .385(gument e)-.18 F .385(xpression com-)-.15 F .285 -(posed of the remaining ar)180 430.8 R 2.784(guments. Otherwise,)-.18 F +(posed of the remaining ar)180 614.4 R 2.784(guments. Otherwise,)-.18 F .284(the e)2.784 F .284(xpression is parsed and e)-.15 F -.25(va)-.25 G .284(luated ac-).25 F(cording to precedence using the rules listed abo) -180 442.8 Q -.15(ve)-.15 G(.).15 E 2.5(5o)144 454.8 S 2.5(rm)-2.5 G -(ore ar)-2.5 E(guments)-.18 E 1.635(The e)180 466.8 R 1.635 +180 626.4 Q -.15(ve)-.15 G(.).15 E 2.5(5o)144 638.4 S 2.5(rm)-2.5 G +(ore ar)-2.5 E(guments)-.18 E 1.635(The e)180 650.4 R 1.635 (xpression is parsed and e)-.15 F -.25(va)-.25 G 1.635 (luated according to precedence using the rules listed).25 F(abo)180 -478.8 Q -.15(ve)-.15 G(.).15 E(When used with)144 496.8 Q F1(test)2.5 E +662.4 Q -.15(ve)-.15 G(.).15 E(When used with)144 680.4 Q F1(test)2.5 E F0(or)2.5 E F1([)2.5 E F0 2.5(,t)C(he)-2.5 E F1(<)2.5 E F0(and)2.5 E F1 (>)2.5 E F0(operators sort le)2.5 E -(xicographically using ASCII ordering.)-.15 E F1(times)108 513.6 Q F0 +(xicographically using ASCII ordering.)-.15 E F1(times)108 697.2 Q F0 1.229(Print the accumulated user and system times for the shell and for\ - processes run from the shell.)144 513.6 R(The return status is 0.)144 -525.6 Q F1(trap)108 542.4 Q F0([)2.5 E F1(\255lp)A F0 2.5(][)C([)-2.5 E -F2(ar)A(g)-.37 E F0(])A F2(sigspec)2.5 E F0(...])2.5 E .682(The command) -144 554.4 R F2(ar)3.512 E(g)-.37 E F0 .682(is to be read and e)3.402 F --.15(xe)-.15 G .682(cuted when the shell recei).15 F -.15(ve)-.25 G -3.183(ss).15 G(ignal\(s\))-3.183 E F2(sigspec)3.523 E F0 5.683(.I).31 G -(f)-5.683 E F2(ar)3.513 E(g)-.37 E F0(is)3.403 E .609 -(absent \(and there is a single)144 566.4 R F2(sigspec)3.108 E F0 3.108 -(\)o)C(r)-3.108 E F13.108 E F0 3.108(,e)C .608 + processes run from the shell.)144 697.2 R(The return status is 0.)144 +709.2 Q(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(77)190.95 E 0 Cg +EP +%%Page: 78 78 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(trap)108 84 Q F0([)2.5 E F1(\255lp)A F0 2.5(][)C([)-2.5 E/F2 10 +/Times-Italic@0 SF(ar)A(g)-.37 E F0(])A F2(sigspec)2.5 E F0(...])2.5 E +.682(The command)144 96 R F2(ar)3.512 E(g)-.37 E F0 .682 +(is to be read and e)3.402 F -.15(xe)-.15 G .682 +(cuted when the shell recei).15 F -.15(ve)-.25 G 3.183(ss).15 G +(ignal\(s\))-3.183 E F2(sigspec)3.523 E F0 5.683(.I).31 G(f)-5.683 E F2 +(ar)3.513 E(g)-.37 E F0(is)3.403 E .609(absent \(and there is a single) +144 108 R F2(sigspec)3.108 E F0 3.108(\)o)C(r)-3.108 E F13.108 E F0 +3.108(,e)C .608 (ach speci\214ed signal is reset to its original disposition)-3.108 F -.658(\(the v)144 578.4 R .658(alue it had upon entrance to the shell\).) +.658(\(the v)144 120 R .658(alue it had upon entrance to the shell\).) -.25 F(If)5.658 E F2(ar)3.488 E(g)-.37 E F0 .659 (is the null string the signal speci\214ed by each)3.378 F F2(sigspec) -144.34 590.4 Q F0 .581 -(is ignored by the shell and by the commands it in)3.391 F -.2(vo)-.4 G --.1(ke).2 G 3.08(s. If).1 F F2(ar)3.41 E(g)-.37 E F0 .58 -(is not present and)3.3 F F13.08 E F0(has)3.08 E 1.214 -(been supplied, then the trap commands associated with each)144 602.4 R -F2(sigspec)4.054 E F0 1.215(are displayed.)4.024 F 1.215(If no ar)6.215 -F(gu-)-.18 E .86(ments are supplied or if only)144 614.4 R F13.36 -E F0 .86(is gi)3.36 F -.15(ve)-.25 G(n,).15 E F1(trap)3.36 E F0 .86 +144.34 132 Q F0 .581(is ignored by the shell and by the commands it in) +3.391 F -.2(vo)-.4 G -.1(ke).2 G 3.08(s. If).1 F F2(ar)3.41 E(g)-.37 E +F0 .58(is not present and)3.3 F F13.08 E F0(has)3.08 E 1.214 +(been supplied, then the trap commands associated with each)144 144 R F2 +(sigspec)4.054 E F0 1.215(are displayed.)4.024 F 1.215(If no ar)6.215 F +(gu-)-.18 E .86(ments are supplied or if only)144 156 R F13.36 E +F0 .86(is gi)3.36 F -.15(ve)-.25 G(n,).15 E F1(trap)3.36 E F0 .86 (prints the list of commands associated with each)3.36 F 2.83 -(signal. The)144 626.4 R F12.83 E F0 .33(option causes the shell \ -to print a list of signal names and their corresponding num-)2.83 F -4.311(bers. Each)144 638.4 R F2(sigspec)4.651 E F0 1.811 +(signal. The)144 168 R F12.83 E F0 .33(option causes the shell to\ + print a list of signal names and their corresponding num-)2.83 F 4.311 +(bers. Each)144 180 R F2(sigspec)4.651 E F0 1.811 (is either a signal name de\214ned in <)4.621 F F2(signal.h)A F0 1.81 (>, or a signal number)B 6.81(.S)-.55 G(ignal)-6.81 E -(names are case insensiti)144 650.4 Q .3 -.15(ve a)-.25 H(nd the).15 E -F3(SIG)2.5 E F0(pre\214x is optional.)2.25 E .666(If a)144 668.4 R F2 -(sigspec)3.506 E F0(is)3.476 E F3(EXIT)3.166 E F0 .666 +(names are case insensiti)144 192 Q .3 -.15(ve a)-.25 H(nd the).15 E/F3 +9/Times-Bold@0 SF(SIG)2.5 E F0(pre\214x is optional.)2.25 E .666(If a) +144 210 R F2(sigspec)3.506 E F0(is)3.476 E F3(EXIT)3.166 E F0 .666 (\(0\) the command)2.916 F F2(ar)3.496 E(g)-.37 E F0 .666(is e)3.386 F -.15(xe)-.15 G .666(cuted on e).15 F .667(xit from the shell.)-.15 F .667(If a)5.667 F F2(sigspec)3.507 E F0(is)3.477 E F3(DE-)3.167 E -.09 -(BU)144 680.4 S(G).09 E F4(,)A F0 .484(the command)2.734 F F2(ar)3.314 E -(g)-.37 E F0 .484(is e)3.204 F -.15(xe)-.15 G .484(cuted before e).15 F --.15(ve)-.25 G(ry).15 E F2 .483(simple command)2.984 F F0(,)A F2(for) -2.983 E F0(command,)2.983 E F2(case)2.983 E F0(command,)2.983 E F2 -(select)144 692.4 Q F0 .562(command, e)3.062 F -.15(ve)-.25 G .563 -(ry arithmetic).15 F F2(for)3.063 E F0 .563 +(BU)144 222 S(G).09 E/F4 9/Times-Roman@0 SF(,)A F0 .484(the command) +2.734 F F2(ar)3.314 E(g)-.37 E F0 .484(is e)3.204 F -.15(xe)-.15 G .484 +(cuted before e).15 F -.15(ve)-.25 G(ry).15 E F2 .483(simple command) +2.984 F F0(,)A F2(for)2.983 E F0(command,)2.983 E F2(case)2.983 E F0 +(command,)2.983 E F2(select)144 234 Q F0 .562(command, e)3.062 F -.15 +(ve)-.25 G .563(ry arithmetic).15 F F2(for)3.063 E F0 .563 (command, and before the \214rst command e)3.063 F -.15(xe)-.15 G .563 -(cutes in a shell).15 F .623(function \(see)144 704.4 R F3 .622 +(cutes in a shell).15 F .623(function \(see)144 246 R F3 .622 (SHELL GRAMMAR)3.122 F F0(abo)2.872 E -.15(ve)-.15 G 3.122(\). Refer).15 F .622(to the description of the)3.122 F F1(extdeb)3.122 E(ug)-.2 E F0 -.622(option to the)3.122 F F1(shopt)144 716.4 Q F0 -.2(bu)2.996 G .496 +.622(option to the)3.122 F F1(shopt)144 258 Q F0 -.2(bu)2.996 G .496 (iltin for details of its ef).2 F .496(fect on the)-.25 F F1(DEB)2.996 E (UG)-.1 E F0 2.996(trap. If)2.996 F(a)2.996 E F2(sigspec)3.336 E F0(is) 3.306 E F3(RETURN)2.996 E F4(,)A F0 .496(the command)2.746 F F2(ar) -144.33 728.4 Q(g)-.37 E F0 .18(is e)2.9 F -.15(xe)-.15 G .18 +144.33 270 Q(g)-.37 E F0 .18(is e)2.9 F -.15(xe)-.15 G .18 (cuted each time a shell function or a script e).15 F -.15(xe)-.15 G .18 (cuted with the).15 F F1(.)2.68 E F0(or)2.68 E F1(sour)2.68 E(ce)-.18 E -F0 -.2(bu)2.68 G .18(iltins \214nishes).2 F(GNU Bash 5.0)72 768 Q -(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(77)185.545 E 0 Cg EP -%%Page: 78 78 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.15(exe)144 84 S -(cuting.).15 E .96(If a)144 102 R/F1 10/Times-Italic@0 SF(sigspec)3.8 E -F0(is)3.77 E/F2 9/Times-Bold@0 SF(ERR)3.46 E/F3 9/Times-Roman@0 SF(,)A -F0 .96(the command)3.21 F F1(ar)3.791 E(g)-.37 E F0 .961(is e)3.681 F --.15(xe)-.15 G .961(cuted whene).15 F -.15(ve)-.25 G 3.461(rap).15 G +F0 -.2(bu)2.68 G .18(iltins \214nishes).2 F -.15(exe)144 282 S(cuting.) +.15 E .96(If a)144 300 R F2(sigspec)3.8 E F0(is)3.77 E F3(ERR)3.46 E F4 +(,)A F0 .96(the command)3.21 F F2(ar)3.791 E(g)-.37 E F0 .961(is e)3.681 +F -.15(xe)-.15 G .961(cuted whene).15 F -.15(ve)-.25 G 3.461(rap).15 G .961(ipeline \(which may consist of a)-3.461 F .185(single simple comma\ -nd\), a list, or a compound command returns a non\255zero e)144 114 R -.184(xit status, subject to)-.15 F .451(the follo)144 126 R .451 -(wing conditions.)-.25 F(The)5.451 E F2(ERR)2.951 E F0 .451 +nd\), a list, or a compound command returns a non\255zero e)144 312 R +.184(xit status, subject to)-.15 F .451(the follo)144 324 R .451 +(wing conditions.)-.25 F(The)5.451 E F3(ERR)2.951 E F0 .451 (trap is not e)2.701 F -.15(xe)-.15 G .451(cuted if the f).15 F .452 (ailed command is part of the com-)-.1 F .388 -(mand list immediately follo)144 138 R .388(wing a)-.25 F/F4 10 -/Times-Bold@0 SF(while)2.888 E F0(or)2.888 E F4(until)2.888 E F0 -.1(ke) -2.888 G(yw)-.05 E .388(ord, part of the test in an)-.1 F F1(if)2.897 E -F0 .387(statement, part)4.847 F .777(of a command e)144 150 R -.15(xe) --.15 G .778(cuted in a).15 F F4(&&)3.278 E F0(or)3.278 E F4(||)3.278 E -F0 .778(list e)3.278 F .778(xcept the command follo)-.15 F .778 -(wing the \214nal)-.25 F F4(&&)3.278 E F0(or)3.278 E F4(||)3.278 E F0 -3.278(,a)C -.15(ny)-3.278 G 1.28(command in a pipeline b)144 162 R 1.28 +(mand list immediately follo)144 336 R .388(wing a)-.25 F F1(while)2.888 +E F0(or)2.888 E F1(until)2.888 E F0 -.1(ke)2.888 G(yw)-.05 E .388 +(ord, part of the test in an)-.1 F F2(if)2.897 E F0 .387 +(statement, part)4.847 F .777(of a command e)144 348 R -.15(xe)-.15 G +.778(cuted in a).15 F F1(&&)3.278 E F0(or)3.278 E F1(||)3.278 E F0 .778 +(list e)3.278 F .778(xcept the command follo)-.15 F .778 +(wing the \214nal)-.25 F F1(&&)3.278 E F0(or)3.278 E F1(||)3.278 E F0 +3.278(,a)C -.15(ny)-3.278 G 1.28(command in a pipeline b)144 360 R 1.28 (ut the last, or if the command')-.2 F 3.78(sr)-.55 G 1.28(eturn v)-3.78 -F 1.28(alue is being in)-.25 F -.15(ve)-.4 G 1.28(rted using).15 F F4(!) -3.78 E F0(.)A(These are the same conditions obe)144 174 Q(yed by the) --.15 E F4(err)2.5 E(exit)-.18 E F0(\()2.5 E F4A F0 2.5(\)o)C +F 1.28(alue is being in)-.25 F -.15(ve)-.4 G 1.28(rted using).15 F F1(!) +3.78 E F0(.)A(These are the same conditions obe)144 372 Q(yed by the) +-.15 E F1(err)2.5 E(exit)-.18 E F0(\()2.5 E F1A F0 2.5(\)o)C (ption.)-2.5 E .132 (Signals ignored upon entry to the shell cannot be trapped or reset.)144 -192 R -.35(Tr)5.133 G .133(apped signals that are not be-).35 F .117 -(ing ignored are reset to their original v)144 204 R .117 +390 R -.35(Tr)5.133 G .133(apped signals that are not be-).35 F .117 +(ing ignored are reset to their original v)144 402 R .117 (alues in a subshell or subshell en)-.25 F .117 -(vironment when one is cre-)-.4 F 2.5(ated. The)144 216 R -(return status is f)2.5 E(alse if an)-.1 E(y)-.15 E F1(sigspec)2.84 E F0 -(is in)2.81 E -.25(va)-.4 G(lid; otherwise).25 E F4(trap)2.5 E F0 -(returns true.)2.5 E F4(type)108 232.8 Q F0([)2.5 E F4(\255aftpP)A F0(]) -A F1(name)2.5 E F0([)2.5 E F1(name)A F0(...])2.5 E -.4(Wi)144 244.8 S -.173(th no options, indicate ho).4 F 2.673(we)-.25 G(ach)-2.673 E F1 +(vironment when one is cre-)-.4 F 2.5(ated. The)144 414 R +(return status is f)2.5 E(alse if an)-.1 E(y)-.15 E F2(sigspec)2.84 E F0 +(is in)2.81 E -.25(va)-.4 G(lid; otherwise).25 E F1(trap)2.5 E F0 +(returns true.)2.5 E F1(type)108 430.8 Q F0([)2.5 E F1(\255aftpP)A F0(]) +A F2(name)2.5 E F0([)2.5 E F2(name)A F0(...])2.5 E -.4(Wi)144 442.8 S +.173(th no options, indicate ho).4 F 2.673(we)-.25 G(ach)-2.673 E F2 (name)3.033 E F0 -.1(wo)2.853 G .174 (uld be interpreted if used as a command name.).1 F .174(If the)5.174 F -F4144 256.8 Q F0 .715(option is used,)3.215 F F4(type)3.215 E F0 -.715(prints a string which is one of)3.215 F F1(alias)3.545 E F0(,).27 E -F1 -.1(ke)3.215 G(ywor)-.2 E(d)-.37 E F0(,).77 E F1(function)5.185 E F0 -(,).24 E F1 -.2(bu)3.215 G(iltin).2 E F0 3.215(,o).24 G(r)-3.215 E F1 -(\214le)5.125 E F0(if)3.395 E F1(name)144.36 268.8 Q F0 .086 +F1144 454.8 Q F0 .715(option is used,)3.215 F F1(type)3.215 E F0 +.715(prints a string which is one of)3.215 F F2(alias)3.545 E F0(,).27 E +F2 -.1(ke)3.215 G(ywor)-.2 E(d)-.37 E F0(,).77 E F2(function)5.185 E F0 +(,).24 E F2 -.2(bu)3.215 G(iltin).2 E F0 3.215(,o).24 G(r)-3.215 E F2 +(\214le)5.125 E F0(if)3.395 E F2(name)144.36 466.8 Q F0 .086 (is an alias, shell reserv)2.766 F .086(ed w)-.15 F .086 (ord, function, b)-.1 F .087(uiltin, or disk \214le, respecti)-.2 F -.15 -(ve)-.25 G(ly).15 E 5.087(.I)-.65 G 2.587(ft)-5.087 G(he)-2.587 E F1 +(ve)-.25 G(ly).15 E 5.087(.I)-.65 G 2.587(ft)-5.087 G(he)-2.587 E F2 (name)2.947 E F0 .087(is not)2.767 F .119 -(found, then nothing is printed, and an e)144 280.8 R .118 +(found, then nothing is printed, and an e)144 478.8 R .118 (xit status of f)-.15 F .118(alse is returned.)-.1 F .118(If the)5.118 F -F42.618 E F0 .118(option is used,)2.618 F F4(type)2.618 E F0 .855 -(either returns the name of the disk \214le that w)144 292.8 R .855 -(ould be e)-.1 F -.15(xe)-.15 G .855(cuted if).15 F F1(name)3.715 E F0 +F12.618 E F0 .118(option is used,)2.618 F F1(type)2.618 E F0 .855 +(either returns the name of the disk \214le that w)144 490.8 R .855 +(ould be e)-.1 F -.15(xe)-.15 G .855(cuted if).15 F F2(name)3.715 E F0 .855(were speci\214ed as a com-)3.535 F .529(mand name, or nothing if) -144 304.8 R/F5 10/Courier@0 SF .528(type -t name)3.028 F F0 -.1(wo)3.028 -G .528(uld not return).1 F F1(\214le)4.938 E F0 5.528(.T).18 G(he)-5.528 -E F43.028 E F0 .528(option forces a)3.028 F F2 -.666(PA)3.028 G -(TH)-.189 E F0 .006(search for each)144 316.8 R F1(name)2.506 E F0 2.506 +144 502.8 R/F5 10/Courier@0 SF .528(type -t name)3.028 F F0 -.1(wo)3.028 +G .528(uld not return).1 F F2(\214le)4.938 E F0 5.528(.T).18 G(he)-5.528 +E F13.028 E F0 .528(option forces a)3.028 F F3 -.666(PA)3.028 G +(TH)-.189 E F0 .006(search for each)144 514.8 R F2(name)2.506 E F0 2.506 (,e)C -.15(ve)-2.756 G 2.506(ni).15 G(f)-2.506 E F5 .007(type -t name) -2.506 F F0 -.1(wo)2.507 G .007(uld not return).1 F F1(\214le)4.417 E F0 -5.007(.I).18 G 2.507(fac)-5.007 G .007(ommand is hashed,)-2.507 F F4 -2.507 E F0(and)144 328.8 Q F43.231 E F0 .731 +2.506 F F0 -.1(wo)2.507 G .007(uld not return).1 F F2(\214le)4.417 E F0 +5.007(.I).18 G 2.507(fac)-5.007 G .007(ommand is hashed,)-2.507 F F1 +2.507 E F0(and)144 526.8 Q F13.231 E F0 .731 (print the hashed v)3.231 F .73 (alue, which is not necessarily the \214le that appears \214rst in)-.25 -F F2 -.666(PA)3.23 G(TH)-.189 E F3(.)A F0 .73(If the)5.23 F F4144 -340.8 Q F0 .823(option is used,)3.323 F F4(type)3.323 E F0 .824 +F F3 -.666(PA)3.23 G(TH)-.189 E F4(.)A F0 .73(If the)5.23 F F1144 +538.8 Q F0 .823(option is used,)3.323 F F1(type)3.323 E F0 .824 (prints all of the places that contain an e)3.323 F -.15(xe)-.15 G .824 -(cutable named).15 F F1(name)3.684 E F0 5.824(.T).18 G .824(his in-) +(cutable named).15 F F2(name)3.684 E F0 5.824(.T).18 G .824(his in-) -5.824 F 1.176(cludes aliases and functions, if and only if the)144 -352.8 R F43.676 E F0 1.176(option is not also used.)3.676 F 1.176 +550.8 R F13.676 E F0 1.176(option is not also used.)3.676 F 1.176 (The table of hashed)6.176 F 1.223(commands is not consulted when using) -144 364.8 R F43.723 E F0 6.223(.T)C(he)-6.223 E F43.723 E F0 +144 562.8 R F13.723 E F0 6.223(.T)C(he)-6.223 E F13.723 E F0 1.223(option suppresses shell function lookup, as)3.723 F .326(with the) -144 376.8 R F4(command)2.826 E F0 -.2(bu)2.826 G(iltin.).2 E F4(type) +144 574.8 R F1(command)2.826 E F0 -.2(bu)2.826 G(iltin.).2 E F1(type) 5.326 E F0 .326(returns true if all of the ar)2.826 F .325 (guments are found, f)-.18 F .325(alse if an)-.1 F 2.825(ya)-.15 G .325 -(re not)-2.825 F(found.)144 388.8 Q F4(ulimit)108 405.6 Q F0([)2.5 E F4 -(\255HSabcde\214klmnpqrstuvxPT)A F0([)2.5 E F1(limit)A F0(]])A(Pro)144 -417.6 Q .243(vides control o)-.15 F -.15(ve)-.15 G 2.743(rt).15 G .243 +(re not)-2.825 F(found.)144 586.8 Q F1(ulimit)108 603.6 Q F0([)2.5 E F1 +(\255HSabcde\214klmnpqrstuvxPT)A F0([)2.5 E F2(limit)A F0(]])A(Pro)144 +615.6 Q .243(vides control o)-.15 F -.15(ve)-.15 G 2.743(rt).15 G .243 (he resources a)-2.743 F -.25(va)-.2 G .244 (ilable to the shell and to processes started by it, on systems).25 F -.944(that allo)144 429.6 R 3.444(ws)-.25 G .944(uch control.)-3.444 F -(The)5.944 E F43.444 E F0(and)3.444 E F43.444 E F0 .943 +.944(that allo)144 627.6 R 3.444(ws)-.25 G .944(uch control.)-3.444 F +(The)5.944 E F13.444 E F0(and)3.444 E F13.444 E F0 .943 (options specify that the hard or soft limit is set for the)3.444 F(gi) -144 441.6 Q -.15(ve)-.25 G 2.708(nr).15 G 2.708(esource. A)-2.708 F .208 +144 639.6 Q -.15(ve)-.25 G 2.708(nr).15 G 2.708(esource. A)-2.708 F .208 (hard limit cannot be increased by a non-root user once it is set; a so\ -ft limit may)2.708 F .426(be increased up to the v)144 453.6 R .426 -(alue of the hard limit.)-.25 F .425(If neither)5.426 F F42.925 E -F0(nor)2.925 E F42.925 E F0 .425 +ft limit may)2.708 F .426(be increased up to the v)144 651.6 R .426 +(alue of the hard limit.)-.25 F .425(If neither)5.426 F F12.925 E +F0(nor)2.925 E F12.925 E F0 .425 (is speci\214ed, both the soft and)2.925 F .139(hard limits are set.)144 -465.6 R .139(The v)5.139 F .139(alue of)-.25 F F1(limit)2.729 E F0 .139 +663.6 R .139(The v)5.139 F .139(alue of)-.25 F F2(limit)2.729 E F0 .139 (can be a number in the unit speci\214ed for the resource or one)3.319 F -.742(of the special v)144 477.6 R(alues)-.25 E F4(hard)3.242 E F0(,)A F4 -(soft)3.241 E F0 3.241(,o)C(r)-3.241 E F4(unlimited)3.241 E F0 3.241(,w) +.742(of the special v)144 675.6 R(alues)-.25 E F1(hard)3.242 E F0(,)A F1 +(soft)3.241 E F0 3.241(,o)C(r)-3.241 E F1(unlimited)3.241 E F0 3.241(,w) C .741(hich stand for the current hard limit, the current)-3.241 F .023 -(soft limit, and no limit, respecti)144 489.6 R -.15(ve)-.25 G(ly).15 E -5.023(.I)-.65 G(f)-5.023 E F1(limit)2.613 E F0 .023 +(soft limit, and no limit, respecti)144 687.6 R -.15(ve)-.25 G(ly).15 E +5.023(.I)-.65 G(f)-5.023 E F2(limit)2.613 E F0 .023 (is omitted, the current v)3.203 F .023 (alue of the soft limit of the re-)-.25 F .985 -(source is printed, unless the)144 501.6 R F43.485 E F0 .984 +(source is printed, unless the)144 699.6 R F13.485 E F0 .984 (option is gi)3.485 F -.15(ve)-.25 G 3.484(n. When).15 F .984 (more than one resource is speci\214ed, the)3.484 F -(limit name and unit are printed before the v)144 513.6 Q 2.5 -(alue. Other)-.25 F(options are interpreted as follo)2.5 E(ws:)-.25 E F4 -144 525.6 Q F0(All current limits are reported)180 525.6 Q F4 -144 537.6 Q F0(The maximum sock)180 537.6 Q(et b)-.1 E(uf)-.2 E -(fer size)-.25 E F4144 549.6 Q F0 -(The maximum size of core \214les created)180 549.6 Q F4144 561.6 -Q F0(The maximum size of a process')180 561.6 Q 2.5(sd)-.55 G(ata se) --2.5 E(gment)-.15 E F4144 573.6 Q F0 -(The maximum scheduling priority \("nice"\))180 573.6 Q F4144 -585.6 Q F0 -(The maximum size of \214les written by the shell and its children)180 -585.6 Q F4144 597.6 Q F0(The maximum number of pending signals)180 -597.6 Q F4144 609.6 Q F0 -(The maximum number of kqueues that may be allocated)180 609.6 Q F4 -144 621.6 Q F0(The maximum size that may be lock)180 621.6 Q -(ed into memory)-.1 E F4144 633.6 Q F0 -(The maximum resident set size \(man)180 633.6 Q 2.5(ys)-.15 G -(ystems do not honor this limit\))-2.5 E F4144 645.6 Q F0 .791(Th\ -e maximum number of open \214le descriptors \(most systems do not allo) -180 645.6 R 3.291(wt)-.25 G .791(his v)-3.291 F .791(alue to)-.25 F -(be set\))180 657.6 Q F4144 669.6 Q F0 -(The pipe size in 512-byte blocks \(this may not be set\))180 669.6 Q F4 -144 681.6 Q F0 -(The maximum number of bytes in POSIX message queues)180 681.6 Q F4 -144 693.6 Q F0(The maximum real-time scheduling priority)180 693.6 -Q F4144 705.6 Q F0(The maximum stack size)180 705.6 Q F4144 -717.6 Q F0(The maximum amount of cpu time in seconds)180 717.6 Q -(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(78)185.545 E 0 Cg EP +(limit name and unit are printed before the v)144 711.6 Q 2.5 +(alue. Other)-.25 F(options are interpreted as follo)2.5 E(ws:)-.25 E +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(78)190.95 E 0 Cg EP %%Page: 79 79 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF144 84 Q F0(The maximum number of processes a)180 84 Q -.25(va) --.2 G(ilable to a single user).25 E F1144 96 Q F0 .47 -(The maximum amount of virtual memory a)180 96 R -.25(va)-.2 G .47 -(ilable to the shell and, on some systems, to).25 F(its children)180 108 -Q F1144 120 Q F0(The maximum number of \214le locks)180 120 Q F1 -144 132 Q F0(The maximum number of pseudoterminals)180 132 Q F1 -144 144 Q F0(The maximum number of threads)180 144 Q(If)144 160.8 +SF144 84 Q F0(All current limits are reported)180 84 Q F1144 +96 Q F0(The maximum sock)180 96 Q(et b)-.1 E(uf)-.2 E(fer size)-.25 E F1 +144 108 Q F0(The maximum size of core \214les created)180 108 Q F1 +144 120 Q F0(The maximum size of a process')180 120 Q 2.5(sd)-.55 +G(ata se)-2.5 E(gment)-.15 E F1144 132 Q F0 +(The maximum scheduling priority \("nice"\))180 132 Q F1144 144 Q +F0(The maximum size of \214les written by the shell and its children)180 +144 Q F1144 156 Q F0(The maximum number of pending signals)180 156 +Q F1144 168 Q F0 +(The maximum number of kqueues that may be allocated)180 168 Q F1 +144 180 Q F0(The maximum size that may be lock)180 180 Q(ed into memory) +-.1 E F1144 192 Q F0(The maximum resident set size \(man)180 192 Q +2.5(ys)-.15 G(ystems do not honor this limit\))-2.5 E F1144 204 Q +F0 .791(The maximum number of open \214le descriptors \(most systems do\ + not allo)180 204 R 3.291(wt)-.25 G .791(his v)-3.291 F .791(alue to) +-.25 F(be set\))180 216 Q F1144 228 Q F0 +(The pipe size in 512-byte blocks \(this may not be set\))180 228 Q F1 +144 240 Q F0(The maximum number of bytes in POSIX message queues) +180 240 Q F1144 252 Q F0 +(The maximum real-time scheduling priority)180 252 Q F1144 264 Q +F0(The maximum stack size)180 264 Q F1144 276 Q F0 +(The maximum amount of cpu time in seconds)180 276 Q F1144 288 Q +F0(The maximum number of processes a)180 288 Q -.25(va)-.2 G +(ilable to a single user).25 E F1144 300 Q F0 .47 +(The maximum amount of virtual memory a)180 300 R -.25(va)-.2 G .47 +(ilable to the shell and, on some systems, to).25 F(its children)180 312 +Q F1144 324 Q F0(The maximum number of \214le locks)180 324 Q F1 +144 336 Q F0(The maximum number of pseudoterminals)180 336 Q F1 +144 348 Q F0(The maximum number of threads)180 348 Q(If)144 364.8 Q/F2 10/Times-Italic@0 SF(limit)3.058 E F0 .468(is gi)3.648 F -.15(ve) -.25 G .468(n, and the).15 F F12.968 E F0 .468 (option is not used,)2.968 F F2(limit)2.968 E F0 .468(is the ne)2.968 F 2.968(wv)-.25 G .468(alue of the speci\214ed resource.)-3.218 F(If)5.468 -E .045(no option is gi)144 172.8 R -.15(ve)-.25 G .045(n, then).15 F F1 +E .045(no option is gi)144 376.8 R -.15(ve)-.25 G .045(n, then).15 F F1 2.545 E F0 .045(is assumed.)2.545 F -1.11(Va)5.045 G .045 (lues are in 1024-byte increments, e)1.11 F .044(xcept for)-.15 F F1 2.544 E F0 2.544(,w)C .044(hich is)-2.544 F .672(in seconds;)144 -184.8 R F13.172 E F0 3.172(,w)C .672 +388.8 R F13.172 E F0 3.172(,w)C .672 (hich is in units of 512-byte blocks;)-3.172 F F13.172 E F0(,)A F1 3.172 E F0(,)A F13.172 E F0(,)A F13.172 E F0(,)A F1 3.172 E F0 3.172(,a)C(nd)-3.172 E F13.172 E F0 3.172(,w)C -.673(hich are un-)-3.172 F .36(scaled v)144 196.8 R .36 +.673(hich are un-)-3.172 F .36(scaled v)144 400.8 R .36 (alues; and, when in posix mode,)-.25 F F12.86 E F0(and)2.86 E F1 2.86 E F0 2.86(,w)C .36(hich are in 512-byte increments.)-2.86 F -.36(The return)5.36 F .411(status is 0 unless an in)144 208.8 R -.25(va) +.36(The return)5.36 F .411(status is 0 unless an in)144 412.8 R -.25(va) -.4 G .411(lid option or ar).25 F .411 (gument is supplied, or an error occurs while setting a ne)-.18 F(w)-.25 -E(limit.)144 220.8 Q F1(umask)108 237.6 Q F0([)2.5 E F1A F0 2.5 +E(limit.)144 424.8 Q F1(umask)108 441.6 Q F0([)2.5 E F1A F0 2.5 (][)C F1-2.5 E F0 2.5(][)C F2(mode)-2.5 E F0(])A .18 -(The user \214le-creation mask is set to)144 249.6 R F2(mode)3.06 E F0 +(The user \214le-creation mask is set to)144 453.6 R F2(mode)3.06 E F0 5.18(.I).18 G(f)-5.18 E F2(mode)3.06 E F0(be)2.86 E .18 (gins with a digit, it is interpreted as an octal)-.15 F .066(number; o\ therwise it is interpreted as a symbolic mode mask similar to that acce\ -pted by)144 261.6 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 -273.6 Q F2(mode)3.263 E F0 .382(is omitted, the current v)3.063 F .382 +pted by)144 465.6 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 +477.6 Q F2(mode)3.263 E F0 .382(is omitted, the current v)3.063 F .382 (alue of the mask is printed.)-.25 F(The)5.382 E F12.882 E F0 .382 (option causes the mask to be)2.882 F .547 -(printed in symbolic form; the def)144 285.6 R .547 +(printed in symbolic form; the def)144 489.6 R .547 (ault output is an octal number)-.1 F 5.547(.I)-.55 G 3.047(ft)-5.547 G (he)-3.047 E F13.047 E F0 .547(option is supplied, and)3.047 F F2 -(mode)144.38 297.6 Q F0 .552 +(mode)144.38 501.6 Q F0 .552 (is omitted, the output is in a form that may be reused as input.)3.232 -F .551(The return status is 0 if the)5.551 F(mode w)144 309.6 Q +F .551(The return status is 0 if the)5.551 F(mode w)144 513.6 Q (as successfully changed or if no)-.1 E F2(mode)2.5 E F0(ar)2.5 E (gument w)-.18 E(as supplied, and f)-.1 E(alse otherwise.)-.1 E F1 -(unalias)108 326.4 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0 -(...])2.5 E(Remo)144 338.4 Q 1.057 -.15(ve e)-.15 H(ach).15 E F2(name) +(unalias)108 530.4 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0 +(...])2.5 E(Remo)144 542.4 Q 1.057 -.15(ve e)-.15 H(ach).15 E F2(name) 3.257 E F0 .757(from the list of de\214ned aliases.)3.257 F(If)5.758 E F13.258 E F0 .758(is supplied, all alias de\214nitions are re-) -3.258 F(mo)144 350.4 Q -.15(ve)-.15 G 2.5(d. The).15 F(return v)2.5 E +3.258 F(mo)144 554.4 Q -.15(ve)-.15 G 2.5(d. The).15 F(return v)2.5 E (alue is true unless a supplied)-.25 E F2(name)2.86 E F0 -(is not a de\214ned alias.)2.68 E F1(unset)108 367.2 Q F0<5bad>2.5 E F1 +(is not a de\214ned alias.)2.68 E F1(unset)108 571.2 Q F0<5bad>2.5 E F1 (fv)A F0 2.5(][)C-2.5 E F1(n)A F0 2.5(][)C F2(name)-2.5 E F0(...]) -2.5 E -.15(Fo)144 379.2 S 3.804(re).15 G(ach)-3.804 E F2(name)4.164 E F0 +2.5 E -.15(Fo)144 583.2 S 3.804(re).15 G(ach)-3.804 E F2(name)4.164 E F0 3.804(,r).18 G(emo)-3.804 E 1.604 -.15(ve t)-.15 H 1.304 (he corresponding v).15 F 1.303(ariable or function.)-.25 F 1.303 (If the)6.303 F F13.803 E F0 1.303(option is gi)3.803 F -.15(ve) --.25 G 1.303(n, each).15 F F2(name)144.36 391.2 Q F0 .464 +-.25 G 1.303(n, each).15 F F2(name)144.36 595.2 Q F0 .464 (refers to a shell v)3.144 F .464(ariable, and that v)-.25 F .464 (ariable is remo)-.25 F -.15(ve)-.15 G 2.965(d. Read-only).15 F -.25(va) -2.965 G .465(riables may not be un-).25 F 2.769(set. If)144 403.2 R F1 +2.965 G .465(riables may not be un-).25 F 2.769(set. If)144 607.2 R F1 2.769 E F0 .269(is speci\214ed, each)2.769 F F2(name)3.129 E F0 .269(refers to a shell function, and the function de\214nition is remo) -2.949 F -.15(ve)-.15 G(d.).15 E .403(If the)144 415.2 R F12.903 E +2.949 F -.15(ve)-.15 G(d.).15 E .403(If the)144 619.2 R F12.903 E F0 .404(option is supplied, and)2.904 F F2(name)2.904 E F0 .404(is a v) 2.904 F .404(ariable with the)-.25 F F2(namer)2.904 E(ef)-.37 E F0 (attrib)2.904 E(ute,)-.2 E F2(name)2.904 E F0 .404(will be unset)2.904 F -.72(rather than the v)144 427.2 R .72(ariable it references.)-.25 F F1 +.72(rather than the v)144 631.2 R .72(ariable it references.)-.25 F F1 5.72 E F0 .72(has no ef)3.22 F .719(fect if the)-.25 F F1 3.219 E F0 .719(option is supplied.)3.219 F .719(If no options)5.719 F -.736(are supplied, each)144 439.2 R F2(name)3.236 E F0 .736 +.736(are supplied, each)144 643.2 R F2(name)3.236 E F0 .736 (refers to a v)3.236 F .737(ariable; if there is no v)-.25 F .737 (ariable by that name, a function with)-.25 F 1.762(that name, if an)144 -451.2 R 3.062 -.65(y, i)-.15 H 4.262(su).65 G 4.261(nset. Each)-4.262 F +655.2 R 3.062 -.65(y, i)-.15 H 4.262(su).65 G 4.261(nset. Each)-4.262 F 1.761(unset v)4.261 F 1.761(ariable or function is remo)-.25 F -.15(ve) -.15 G 4.261(df).15 G 1.761(rom the en)-4.261 F(vironment)-.4 E 3.171 -(passed to subsequent commands.)144 463.2 R 3.172(If an)8.172 F 5.672 +(passed to subsequent commands.)144 667.2 R 3.172(If an)8.172 F 5.672 (yo)-.15 G(f)-5.672 E/F3 9/Times-Bold@0 SF -.27(BA)5.672 G(SH_ALIASES) .27 E/F4 9/Times-Roman@0 SF(,)A F3 -.27(BA)5.422 G(SH_ARGV0).27 E F4(,)A -F3 -.27(BA)5.422 G(SH_CMDS).27 E F4(,)A F3 -.27(BA)144 475.2 S +F3 -.27(BA)5.422 G(SH_CMDS).27 E F4(,)A F3 -.27(BA)144 679.2 S (SH_COMMAND).27 E F4(,)A F3 -.27(BA)11.482 G(SH_SUBSHELL).27 E F4(,)A F3 -.27(BA)11.482 G(SHPID).27 E F4(,)A F3(COMP_W)11.482 E(ORDBREAKS)-.09 E F4(,)A F3(DIRST)11.481 E -.495(AC)-.81 G(K).495 E F4(,)A F3(EPOCHREAL) -144 487.2 Q(TIME)-.828 E F4(,)A F3(EPOCHSECONDS)2.67 E F4(,)A F3(FUNCN) +144 691.2 Q(TIME)-.828 E F4(,)A F3(EPOCHSECONDS)2.67 E F4(,)A F3(FUNCN) 2.67 E(AME)-.18 E F4(,)A F3(GR)2.67 E(OUPS)-.27 E F4(,)A F3(HISTCMD)2.67 E F4(,)A F3(LINENO)2.67 E F4(,)A F3(RANDOM)2.67 E F4(,)A F3(SECONDS)144 -499.2 Q F4(,)A F0(or)4.03 E F3(SRANDOM)4.28 E F0 1.779(are unset, the) +703.2 Q F4(,)A F0(or)4.03 E F3(SRANDOM)4.28 E F0 1.779(are unset, the) 4.03 F 4.279(yl)-.15 G 1.779(ose their special properties, e)-4.279 F -.15(ve)-.25 G 4.279(ni).15 G 4.279(ft)-4.279 G(he)-4.279 E 4.279(ya) --.15 G 1.779(re subse-)-4.279 F(quently reset.)144 511.2 Q(The e)5 E +-.15 G 1.779(re subse-)-4.279 F(quently reset.)144 715.2 Q(The e)5 E (xit status is true unless a)-.15 E F2(name)2.86 E F0(is readonly)2.68 E -(.)-.65 E F1(wait)108 528 Q F0([)2.5 E F1(\255fn)A F0 2.5(][)C F1 --2.5 E F2(varname)2.5 E F0 2.5(][)C F2(id ...)-2.5 E F0(])A -.8(Wa)144 -540 S .659(it for each speci\214ed child process and return its termina\ -tion status.).8 F(Each)5.659 E F2(id)3.169 E F0 .659(may be a process) -3.929 F .009(ID or a job speci\214cation; if a job spec is gi)144 552 R --.15(ve)-.25 G .008(n, all processes in that job').15 F 2.508(sp)-.55 G -.008(ipeline are w)-2.508 F .008(aited for)-.1 F 5.008(.I)-.55 G(f) --5.008 E F2(id)144.01 564 Q F0 .441(is not gi)3.711 F -.15(ve)-.25 G(n,) -.15 E F1(wait)2.941 E F0 -.1(wa)2.941 G .441 +(.)-.65 E(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(79)190.95 E 0 +Cg EP +%%Page: 80 80 +%%BeginPageSetup +BP +%%EndPageSetup +/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(wait)108 84 Q F0([)2.5 E F1(\255fn)A F0 2.5(][)C F1-2.5 E/F2 10 +/Times-Italic@0 SF(varname)2.5 E F0 2.5(][)C F2(id ...)-2.5 E F0(])A -.8 +(Wa)144 96 S .659(it for each speci\214ed child process and return its \ +termination status.).8 F(Each)5.659 E F2(id)3.169 E F0 .659 +(may be a process)3.929 F .009 +(ID or a job speci\214cation; if a job spec is gi)144 108 R -.15(ve)-.25 +G .008(n, all processes in that job').15 F 2.508(sp)-.55 G .008 +(ipeline are w)-2.508 F .008(aited for)-.1 F 5.008(.I)-.55 G(f)-5.008 E +F2(id)144.01 120 Q F0 .441(is not gi)3.711 F -.15(ve)-.25 G(n,).15 E F1 +(wait)2.941 E F0 -.1(wa)2.941 G .441 (its for all running background jobs and the last-e).1 F -.15(xe)-.15 G .442(cuted process substitu-).15 F .598 -(tion, if its process id is the same as)144 576 R F1($!)3.098 E F0 3.098 +(tion, if its process id is the same as)144 132 R F1($!)3.098 E F0 3.098 (,a)C .598(nd the return status is zero.)-3.098 F .597(If the)5.597 F F1 -3.097 E F0 .597(option is supplied,)3.097 F F1(wait)144 588 Q F0 +3.097 E F0 .597(option is supplied,)3.097 F F1(wait)144 144 Q F0 -.1(wa)2.793 G .293(its for a single job to terminate and returns its e) .1 F .293(xit status.)-.15 F .293(If the)5.293 F F12.793 E F0 .294 (option is supplied, the)2.793 F .636 -(process or job identi\214er of the job for which the e)144 600 R .636 +(process or job identi\214er of the job for which the e)144 156 R .636 (xit status is returned is assigned to the v)-.15 F(ariable)-.25 E F2 -(varname)144 612 Q F0 1.016(named by the option ar)3.516 F 3.516 +(varname)144 168 Q F0 1.016(named by the option ar)3.516 F 3.516 (gument. The)-.18 F -.25(va)3.516 G 1.017 (riable will be unset initially).25 F 3.517(,b)-.65 G 1.017(efore an) --3.517 F 3.517(ya)-.15 G(ssign-)-3.517 E 2.673(ment. This)144 624 R .173 +-3.517 F 3.517(ya)-.15 G(ssign-)-3.517 E 2.673(ment. This)144 180 R .173 (is useful only when the)2.673 F F12.672 E F0 .172 (option is supplied.)2.672 F .172(Supplying the)5.172 F F12.672 E F0 .172(option, when job con-)2.672 F .346(trol is enabled, forces)144 -636 R F1(wait)2.846 E F0 .346(to w)2.846 F .346(ait for)-.1 F F2(id) +192 R F1(wait)2.846 E F0 .346(to w)2.846 F .346(ait for)-.1 F F2(id) 2.846 E F0 .347 (to terminate before returning its status, instead of return-)2.846 F -.793(ing when it changes status.)144 648 R(If)5.793 E F2(id)3.303 E F0 +.793(ing when it changes status.)144 204 R(If)5.793 E F2(id)3.303 E F0 .792(speci\214es a non-e)4.062 F .792 (xistent process or job, the return status is 127.)-.15 F -(Otherwise, the return status is the e)144 660 Q +(Otherwise, the return status is the e)144 216 Q (xit status of the last process or job w)-.15 E(aited for)-.1 E(.)-.55 E -/F5 10.95/Times-Bold@0 SF(RESTRICTED SHELL)72 676.8 Q F0(If)108 688.8 Q +/F3 10.95/Times-Bold@0 SF(RESTRICTED SHELL)72 232.8 Q F0(If)108 244.8 Q F1(bash)3.581 E F0 1.081(is started with the name)3.581 F F1(rbash)3.581 E F0 3.581(,o)C 3.581(rt)-3.581 G(he)-3.581 E F13.581 E F0 1.081 (option is supplied at in)3.581 F -.2(vo)-.4 G 1.081 -(cation, the shell becomes re-).2 F 2.977(stricted. A)108 700.8 R .476 +(cation, the shell becomes re-).2 F 2.977(stricted. A)108 256.8 R .476 (restricted shell is used to set up an en)2.977 F .476 (vironment more controlled than the standard shell.)-.4 F .476(It be-) -5.476 F(ha)108 712.8 Q -.15(ve)-.2 G 2.5(si).15 G(dentically to)-2.5 E +5.476 F(ha)108 268.8 Q -.15(ve)-.2 G 2.5(si).15 G(dentically to)-2.5 E F1(bash)2.5 E F0(with the e)2.5 E(xception that the follo)-.15 E -(wing are disallo)-.25 E(wed or not performed:)-.25 E(GNU Bash 5.0)72 -768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E(79)185.545 E 0 Cg -EP -%%Page: 80 80 -%%BeginPageSetup -BP -%%EndPageSetup -/F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E<83>108 84 Q -(changing directories with)144 84 Q/F1 10/Times-Bold@0 SF(cd)2.5 E F0 -<83>108 100.8 Q(setting or unsetting the v)144 100.8 Q(alues of)-.25 E -/F2 9/Times-Bold@0 SF(SHELL)2.5 E/F3 9/Times-Roman@0 SF(,)A F2 -.666(PA) -2.25 G(TH)-.189 E F3(,)A F2(ENV)2.25 E F3(,)A F0(or)2.25 E F2 -.27(BA) -2.5 G(SH_ENV).27 E F0<83>108 117.6 Q -(specifying command names containing)144 117.6 Q F1(/)2.5 E F0<83>108 -134.4 Q(specifying a \214lename containing a)144 134.4 Q F1(/)2.5 E F0 -(as an ar)2.5 E(gument to the)-.18 E F1(.)2.5 E F0 -.2(bu)5 G -(iltin command).2 E<83>108 151.2 Q .449 -(specifying a \214lename containing a slash as an ar)144 151.2 R .449 +(wing are disallo)-.25 E(wed or not performed:)-.25 E<83>108 285.6 Q +(changing directories with)144 285.6 Q F1(cd)2.5 E F0<83>108 302.4 Q +(setting or unsetting the v)144 302.4 Q(alues of)-.25 E/F4 9 +/Times-Bold@0 SF(SHELL)2.5 E/F5 9/Times-Roman@0 SF(,)A F4 -.666(PA)2.25 +G(TH)-.189 E F5(,)A F4(ENV)2.25 E F5(,)A F0(or)2.25 E F4 -.27(BA)2.5 G +(SH_ENV).27 E F0<83>108 319.2 Q(specifying command names containing)144 +319.2 Q F1(/)2.5 E F0<83>108 336 Q(specifying a \214lename containing a) +144 336 Q F1(/)2.5 E F0(as an ar)2.5 E(gument to the)-.18 E F1(.)2.5 E +F0 -.2(bu)5 G(iltin command).2 E<83>108 352.8 Q .449 +(specifying a \214lename containing a slash as an ar)144 352.8 R .449 (gument to the)-.18 F F12.95 E F0 .45(option to the)2.95 F F1 -(hash)2.95 E F0 -.2(bu)2.95 G .45(iltin com-).2 F(mand)144 163.2 Q<83> -108 180 Q(importing function de\214nitions from the shell en)144 180 Q -(vironment at startup)-.4 E<83>108 196.8 Q(parsing the v)144 196.8 Q -(alue of)-.25 E F2(SHELLOPTS)2.5 E F0(from the shell en)2.25 E -(vironment at startup)-.4 E<83>108 213.6 Q(redirecting output using the\ - >, >|, <>, >&, &>, and >> redirection operators)144 213.6 Q<83>108 -230.4 Q(using the)144 230.4 Q F1(exec)2.5 E F0 -.2(bu)2.5 G +(hash)2.95 E F0 -.2(bu)2.95 G .45(iltin com-).2 F(mand)144 364.8 Q<83> +108 381.6 Q(importing function de\214nitions from the shell en)144 381.6 +Q(vironment at startup)-.4 E<83>108 398.4 Q(parsing the v)144 398.4 Q +(alue of)-.25 E F4(SHELLOPTS)2.5 E F0(from the shell en)2.25 E +(vironment at startup)-.4 E<83>108 415.2 Q(redirecting output using the\ + >, >|, <>, >&, &>, and >> redirection operators)144 415.2 Q<83>108 432 +Q(using the)144 432 Q F1(exec)2.5 E F0 -.2(bu)2.5 G (iltin command to replace the shell with another command).2 E<83>108 -247.2 Q(adding or deleting b)144 247.2 Q(uiltin commands with the)-.2 E +448.8 Q(adding or deleting b)144 448.8 Q(uiltin commands with the)-.2 E F12.5 E F0(and)2.5 E F12.5 E F0(options to the)2.5 E F1 -(enable)2.5 E F0 -.2(bu)2.5 G(iltin command).2 E<83>108 264 Q(using the) -144 264 Q F1(enable)2.5 E F0 -.2(bu)2.5 G +(enable)2.5 E F0 -.2(bu)2.5 G(iltin command).2 E<83>108 465.6 Q +(using the)144 465.6 Q F1(enable)2.5 E F0 -.2(bu)2.5 G (iltin command to enable disabled shell b).2 E(uiltins)-.2 E<83>108 -280.8 Q(specifying the)144 280.8 Q F12.5 E F0(option to the)2.5 E -F1(command)2.5 E F0 -.2(bu)2.5 G(iltin command).2 E<83>108 297.6 Q -(turning of)144 297.6 Q 2.5(fr)-.25 G(estricted mode with)-2.5 E F1 +482.4 Q(specifying the)144 482.4 Q F12.5 E F0(option to the)2.5 E +F1(command)2.5 E F0 -.2(bu)2.5 G(iltin command).2 E<83>108 499.2 Q +(turning of)144 499.2 Q 2.5(fr)-.25 G(estricted mode with)-2.5 E F1 (set +r)2.5 E F0(or)2.5 E F1(set +o r)2.5 E(estricted)-.18 E F0(.)A -(These restrictions are enforced after an)108 314.4 Q 2.5(ys)-.15 G +(These restrictions are enforced after an)108 516 Q 2.5(ys)-.15 G (tartup \214les are read.)-2.5 E 1.566 -(When a command that is found to be a shell script is e)108 331.2 R -.15 -(xe)-.15 G 1.566(cuted \(see).15 F F2 1.566(COMMAND EXECUTION)4.066 F F0 -(abo)3.816 E -.15(ve)-.15 G(\),).15 E F1(rbash)108 343.2 Q F0(turns of) +(When a command that is found to be a shell script is e)108 532.8 R -.15 +(xe)-.15 G 1.566(cuted \(see).15 F F4 1.566(COMMAND EXECUTION)4.066 F F0 +(abo)3.816 E -.15(ve)-.15 G(\),).15 E F1(rbash)108 544.8 Q F0(turns of) 2.5 E 2.5(fa)-.25 G .3 -.15(ny r)-2.5 H(estrictions in the shell spa).15 -E(wned to e)-.15 E -.15(xe)-.15 G(cute the script.).15 E/F4 10.95 -/Times-Bold@0 SF(SEE ALSO)72 360 Q/F5 10/Times-Italic@0 SF(Bash Refer) -108 372 Q(ence Manual)-.37 E F0 2.5(,B)C(rian F)-2.5 E(ox and Chet Rame) --.15 E(y)-.15 E F5(The Gnu Readline Libr)108 384 Q(ary)-.15 E F0 2.5(,B) -C(rian F)-2.5 E(ox and Chet Rame)-.15 E(y)-.15 E F5 -(The Gnu History Libr)108 396 Q(ary)-.15 E F0 2.5(,B)C(rian F)-2.5 E -(ox and Chet Rame)-.15 E(y)-.15 E F5 -.8(Po)108 408 S(rtable Oper).8 E -(ating System Interface \(POSIX\) P)-.15 E(art 2: Shell and Utilities) --.8 E F0 2.5(,I)C(EEE --)-2.5 E(http://pubs.opengroup.or)144 420 Q -(g/onlinepubs/9699919799/)-.18 E(http://tiswww)108 432 Q -(.case.edu/~chet/bash/POSIX -- a description of posix mode)-.65 E F5(sh) -108 444 Q F0(\(1\),)A F5(ksh)2.5 E F0(\(1\),)A F5(csh)2.5 E F0(\(1\))A -F5(emacs)108 456 Q F0(\(1\),)A F5(vi)2.5 E F0(\(1\))A F5 -.37(re)108 468 -S(adline).37 E F0(\(3\))A F4(FILES)72 484.8 Q F5(/bin/bash)109.666 496.8 -Q F0(The)144 508.8 Q F1(bash)2.5 E F0 -.15(exe)2.5 G(cutable).15 E F5 -(/etc/pr)109.666 520.8 Q(o\214le)-.45 E F0 -(The systemwide initialization \214le, e)144 532.8 Q -.15(xe)-.15 G -(cuted for login shells).15 E F5(~/.bash_pr)109.666 544.8 Q(o\214le)-.45 -E F0(The personal initialization \214le, e)144 556.8 Q -.15(xe)-.15 G -(cuted for login shells).15 E F5(~/.bashr)109.666 568.8 Q(c)-.37 E F0 -(The indi)144 580.8 Q(vidual per)-.25 E(-interacti)-.2 E -.15(ve)-.25 G -(-shell startup \214le).15 E F5(~/.bash_lo)109.666 592.8 Q(gout)-.1 E F0 -(The indi)144 604.8 Q(vidual login shell cleanup \214le, e)-.25 E -.15 -(xe)-.15 G(cuted when a login shell e).15 E(xits)-.15 E F5(~/.inputr) -109.666 616.8 Q(c)-.37 E F0(Indi)144 628.8 Q(vidual)-.25 E F5 -.37(re) -2.5 G(adline).37 E F0(initialization \214le)2.5 E F4 -.548(AU)72 645.6 S -(THORS).548 E F0(Brian F)108 657.6 Q(ox, Free Softw)-.15 E(are F)-.1 E -(oundation)-.15 E(bfox@gnu.or)108 669.6 Q(g)-.18 E(Chet Rame)108 686.4 Q -1.3 -.65(y, C)-.15 H(ase W).65 E(estern Reserv)-.8 E 2.5(eU)-.15 G(ni) --2.5 E -.15(ve)-.25 G(rsity).15 E(chet.rame)108 698.4 Q(y@case.edu)-.15 -E(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15(ve)-.15 G(mber 26).15 E -(80)185.545 E 0 Cg EP +E(wned to e)-.15 E -.15(xe)-.15 G(cute the script.).15 E F3(SEE ALSO)72 +561.6 Q F2(Bash Refer)108 573.6 Q(ence Manual)-.37 E F0 2.5(,B)C(rian F) +-2.5 E(ox and Chet Rame)-.15 E(y)-.15 E F2(The Gnu Readline Libr)108 +585.6 Q(ary)-.15 E F0 2.5(,B)C(rian F)-2.5 E(ox and Chet Rame)-.15 E(y) +-.15 E F2(The Gnu History Libr)108 597.6 Q(ary)-.15 E F0 2.5(,B)C +(rian F)-2.5 E(ox and Chet Rame)-.15 E(y)-.15 E F2 -.8(Po)108 609.6 S +(rtable Oper).8 E(ating System Interface \(POSIX\) P)-.15 E +(art 2: Shell and Utilities)-.8 E F0 2.5(,I)C(EEE --)-2.5 E +(http://pubs.opengroup.or)144 621.6 Q(g/onlinepubs/9699919799/)-.18 E +(http://tiswww)108 633.6 Q +(.case.edu/~chet/bash/POSIX -- a description of posix mode)-.65 E F2(sh) +108 645.6 Q F0(\(1\),)A F2(ksh)2.5 E F0(\(1\),)A F2(csh)2.5 E F0(\(1\))A +F2(emacs)108 657.6 Q F0(\(1\),)A F2(vi)2.5 E F0(\(1\))A F2 -.37(re)108 +669.6 S(adline).37 E F0(\(3\))A F3(FILES)72 686.4 Q F2(/bin/bash)109.666 +698.4 Q F0(The)144 710.4 Q F1(bash)2.5 E F0 -.15(exe)2.5 G(cutable).15 E +(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 E(80)190.95 E 0 Cg EP %%Page: 81 81 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F -(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10.95 -/Times-Bold@0 SF -.11(BU)72 84 S 2.738(GR).11 G(EPOR)-2.738 E(TS)-.438 E -F0 .567(If you \214nd a b)108 96 R .568(ug in)-.2 F/F2 10/Times-Bold@0 -SF(bash,)3.068 E F0 .568(you should report it.)3.068 F .568 -(But \214rst, you should mak)5.568 F 3.068(es)-.1 G .568 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10 +/Times-Italic@0 SF(/etc/pr)109.666 84 Q(o\214le)-.45 E F0 +(The systemwide initialization \214le, e)144 96 Q -.15(xe)-.15 G +(cuted for login shells).15 E F1(~/.bash_pr)109.666 108 Q(o\214le)-.45 E +F0(The personal initialization \214le, e)144 120 Q -.15(xe)-.15 G +(cuted for login shells).15 E F1(~/.bashr)109.666 132 Q(c)-.37 E F0 +(The indi)144 144 Q(vidual per)-.25 E(-interacti)-.2 E -.15(ve)-.25 G +(-shell startup \214le).15 E F1(~/.bash_lo)109.666 156 Q(gout)-.1 E F0 +(The indi)144 168 Q(vidual login shell cleanup \214le, e)-.25 E -.15(xe) +-.15 G(cuted when a login shell e).15 E(xits)-.15 E F1(~/.inputr)109.666 +180 Q(c)-.37 E F0(Indi)144 192 Q(vidual)-.25 E F1 -.37(re)2.5 G(adline) +.37 E F0(initialization \214le)2.5 E/F2 10.95/Times-Bold@0 SF -.548(AU) +72 208.8 S(THORS).548 E F0(Brian F)108 220.8 Q(ox, Free Softw)-.15 E +(are F)-.1 E(oundation)-.15 E(bfox@gnu.or)108 232.8 Q(g)-.18 E +(Chet Rame)108 249.6 Q 1.3 -.65(y, C)-.15 H(ase W).65 E(estern Reserv) +-.8 E 2.5(eU)-.15 G(ni)-2.5 E -.15(ve)-.25 G(rsity).15 E(chet.rame)108 +261.6 Q(y@case.edu)-.15 E F2 -.11(BU)72 278.4 S 2.738(GR).11 G(EPOR) +-2.738 E(TS)-.438 E F0 .567(If you \214nd a b)108 290.4 R .568(ug in)-.2 +F/F3 10/Times-Bold@0 SF(bash,)3.068 E F0 .568(you should report it.) +3.068 F .568(But \214rst, you should mak)5.568 F 3.068(es)-.1 G .568 (ure that it really is a b)-3.068 F .568(ug, and)-.2 F 5.626 -(that it appears in the latest v)108 108 R 5.625(ersion of)-.15 F F2 +(that it appears in the latest v)108 302.4 R 5.625(ersion of)-.15 F F3 (bash)8.125 E F0 10.625(.T)C 5.625(he latest v)-10.625 F 5.625 (ersion is al)-.15 F -.1(wa)-.1 G 5.625(ys a).1 F -.25(va)-.2 G 5.625 -(ilable from).25 F/F3 10/Times-Italic@0 SF(ftp://ftp.gnu.or)108 120 Q -(g/pub/gnu/bash/)-.37 E F0(.)A .41(Once you ha)108 136.8 R .71 -.15 -(ve d)-.2 H .41(etermined that a b).15 F .41(ug actually e)-.2 F .411 -(xists, use the)-.15 F F3(bashb)3.181 E(ug)-.2 E F0 .411 -(command to submit a b)3.131 F .411(ug report.)-.2 F(If)5.411 E .595 -(you ha)108 148.8 R .895 -.15(ve a \214)-.2 H .595 -(x, you are encouraged to mail that as well!).15 F .594 -(Suggestions and `philosophical' b)5.595 F .594(ug reports may)-.2 F -(be mailed to)108 160.8 Q F3 -.2(bu)2.5 G(g-bash@gnu.or).2 E(g)-.37 E F0 -(or posted to the Usenet ne)2.5 E(wsgroup)-.25 E F2(gnu.bash.b)2.5 E(ug) --.2 E F0(.)A(ALL b)108 177.6 Q(ug reports should include:)-.2 E(The v) -108 194.4 Q(ersion number of)-.15 E F2(bash)2.5 E F0(The hardw)108 206.4 -Q(are and operating system)-.1 E(The compiler used to compile)108 218.4 -Q 2.5(Ad)108 230.4 S(escription of the b)-2.5 E(ug beha)-.2 E(viour)-.2 -E 2.5(As)108 242.4 S(hort script or `recipe' which e)-2.5 E -.15(xe)-.15 -G(rcises the b).15 E(ug)-.2 E F3(bashb)108.27 259.2 Q(ug)-.2 E F0 +(ilable from).25 F F1(ftp://ftp.gnu.or)108 314.4 Q(g/pub/gnu/bash/)-.37 +E F0(.)A .41(Once you ha)108 331.2 R .71 -.15(ve d)-.2 H .41 +(etermined that a b).15 F .41(ug actually e)-.2 F .411(xists, use the) +-.15 F F1(bashb)3.181 E(ug)-.2 E F0 .411(command to submit a b)3.131 F +.411(ug report.)-.2 F(If)5.411 E .595(you ha)108 343.2 R .895 -.15 +(ve a \214)-.2 H .595(x, you are encouraged to mail that as well!).15 F +.594(Suggestions and `philosophical' b)5.595 F .594(ug reports may)-.2 F +(be mailed to)108 355.2 Q F1 -.2(bu)2.5 G(g-bash@gnu.or).2 E(g)-.37 E F0 +(or posted to the Usenet ne)2.5 E(wsgroup)-.25 E F3(gnu.bash.b)2.5 E(ug) +-.2 E F0(.)A(ALL b)108 372 Q(ug reports should include:)-.2 E(The v)108 +388.8 Q(ersion number of)-.15 E F3(bash)2.5 E F0(The hardw)108 400.8 Q +(are and operating system)-.1 E(The compiler used to compile)108 412.8 Q +2.5(Ad)108 424.8 S(escription of the b)-2.5 E(ug beha)-.2 E(viour)-.2 E +2.5(As)108 436.8 S(hort script or `recipe' which e)-2.5 E -.15(xe)-.15 G +(rcises the b).15 E(ug)-.2 E F1(bashb)108.27 453.6 Q(ug)-.2 E F0 (inserts the \214rst three items automatically into the template it pro) 2.72 E(vides for \214ling a b)-.15 E(ug report.)-.2 E(Comments and b)108 -276 Q(ug reports concerning this manual page should be directed to)-.2 E -F3 -.15(ch)2.5 G(et.r).15 E(ame)-.15 E(y@case)-.3 E(.edu)-.15 E F0(.).25 -E F1 -.11(BU)72 292.8 S(GS).11 E F0(It')108 304.8 Q 2.5(st)-.55 G +470.4 Q(ug reports concerning this manual page should be directed to)-.2 +E F1 -.15(ch)2.5 G(et.r).15 E(ame)-.15 E(y@case)-.3 E(.edu)-.15 E F0(.) +.25 E F2 -.11(BU)72 487.2 S(GS).11 E F0(It')108 499.2 Q 2.5(st)-.55 G (oo big and too slo)-2.5 E -.65(w.)-.25 G 1.868 -(There are some subtle dif)108 321.6 R 1.868(ferences between)-.25 F F2 +(There are some subtle dif)108 516 R 1.868(ferences between)-.25 F F3 (bash)4.369 E F0 1.869(and traditional v)4.369 F 1.869(ersions of)-.15 F -F2(sh)4.369 E F0 4.369(,m)C 1.869(ostly because of the)-4.369 F/F4 9 -/Times-Bold@0 SF(POSIX)108 333.6 Q F0(speci\214cation.)2.25 E -(Aliases are confusing in some uses.)108 350.4 Q(Shell b)108 367.2 Q +F3(sh)4.369 E F0 4.369(,m)C 1.869(ostly because of the)-4.369 F/F4 9 +/Times-Bold@0 SF(POSIX)108 528 Q F0(speci\214cation.)2.25 E +(Aliases are confusing in some uses.)108 544.8 Q(Shell b)108 561.6 Q (uiltin commands and functions are not stoppable/restartable.)-.2 E 1.315(Compound commands and command sequences of the form `a ; b ; c' a\ -re not handled gracefully when)108 384 R .389 -(process suspension is attempted.)108 396 R .389 +re not handled gracefully when)108 578.4 R .389 +(process suspension is attempted.)108 590.4 R .389 (When a process is stopped, the shell immediately e)5.389 F -.15(xe)-.15 G .39(cutes the ne).15 F .39(xt com-)-.15 F .193(mand in the sequence.) -108 408 R .192(It suf)5.193 F .192(\214ces to place the sequence of com\ -mands between parentheses to force it into a)-.25 F -(subshell, which may be stopped as a unit.)108 420 Q(Array v)108 436.8 Q -(ariables may not \(yet\) be e)-.25 E(xported.)-.15 E -(There may be only one acti)108 453.6 Q .3 -.15(ve c)-.25 H -(oprocess at a time.).15 E(GNU Bash 5.0)72 768 Q(2019 No)136.385 E -.15 -(ve)-.15 G(mber 26).15 E(81)185.545 E 0 Cg EP +108 602.4 R .192(It suf)5.193 F .192(\214ces to place the sequence of c\ +ommands between parentheses to force it into a)-.25 F +(subshell, which may be stopped as a unit.)108 614.4 Q(Array v)108 631.2 +Q(ariables may not \(yet\) be e)-.25 E(xported.)-.15 E +(There may be only one acti)108 648 Q .3 -.15(ve c)-.25 H +(oprocess at a time.).15 E(GNU Bash 5.0)72 768 Q(2020 January 29)141.79 +E(81)190.95 E 0 Cg EP %%Trailer end %%EOF diff --git a/doc/bashref.dvi b/doc/bashref.dvi index 9c5c9a00d9ae6ca36b0bea37ace9bda3b2729b80..676505dc6080f67c99aa8f6f4ca4f1f7cb75b442 100644 GIT binary patch delta 4042 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