From 879213c6308fab5a1f8a29fc607e7069b940537c Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Mon, 8 Jan 2018 11:55:31 -0500 Subject: [PATCH] commit bash-20180105 snapshot --- CWRU/CWRU.chlog | 60 + MANIFEST | 3 + builtins/declare.def | 44 +- builtins/history.def | 15 +- doc/bash.0 | 2501 +++---- doc/bash.1 | 15 +- doc/bash.html | 83 +- doc/bash.info | 412 +- doc/bash.pdf | Bin 339063 -> 372088 bytes doc/bash.ps | 10558 +++++++++++++++--------------- doc/bashref.aux | 6 +- doc/bashref.cp | 2 +- doc/bashref.cps | 2 +- doc/bashref.dvi | Bin 756456 -> 758784 bytes doc/bashref.html | 94 +- doc/bashref.info | 412 +- doc/bashref.log | 24 +- doc/bashref.pdf | Bin 743678 -> 745404 bytes doc/bashref.ps | 3342 +++++----- doc/bashref.texi | 2 +- doc/bashref.toc | 4 +- doc/builtins.0 | 499 +- doc/builtins.ps | 831 +-- doc/rbash.ps | 2 +- doc/version.texi | 8 +- execute_cmd.c | 4 +- lib/glob/sm_loop.c | 7 +- lib/readline/doc/history.dvi | Bin 69552 -> 69556 bytes lib/readline/doc/history.html | 6 +- lib/readline/doc/history.info | 52 +- lib/readline/doc/history.log | 11 +- lib/readline/doc/history.ps | 10 +- lib/readline/doc/hsuser.texi | 8 +- lib/readline/doc/readline.dvi | Bin 314568 -> 315852 bytes lib/readline/doc/readline.html | 36 +- lib/readline/doc/readline.info | 137 +- lib/readline/doc/readline.ps | 867 +-- lib/readline/doc/rlman.log | 13 +- lib/readline/doc/rluserman.dvi | Bin 111372 -> 112652 bytes lib/readline/doc/rluserman.html | 36 +- lib/readline/doc/rluserman.info | 79 +- lib/readline/doc/rluserman.log | 13 +- lib/readline/doc/rluserman.ps | 829 +-- make_cmd.c | 4 +- subst.c | 29 +- tests/RUN-ONE-TEST | 2 +- tests/assoc.right | 1 + tests/assoc9.sub | 8 + tests/dollar-at-star | 17 + tests/history.right | 34 + tests/history.tests | 1 + tests/history3.sub | 36 + tests/jobs.right | 31 +- tests/jobs.tests | 3 + tests/jobs6.sub | 14 + tests/varenv.right | 28 + tests/varenv.sh | 4 + tests/varenv9.sub | 66 + variables.c | 13 +- variables.h | 4 +- 60 files changed, 11056 insertions(+), 10266 deletions(-) create mode 100644 tests/history3.sub create mode 100644 tests/jobs6.sub create mode 100644 tests/varenv9.sub diff --git a/CWRU/CWRU.chlog b/CWRU/CWRU.chlog index a75c55f1..69ba0ffb 100644 --- a/CWRU/CWRU.chlog +++ b/CWRU/CWRU.chlog @@ -14740,3 +14740,63 @@ lib/readline/bind.c doc/bash.1,lib/readline/doc/{rluser.texi,readline.3} - document new `if variable comparison value' construct + + 1/2/2018 + -------- +lib/glob/sm_loop.c + - EXTMATCH: when matching against !(patlist), if a filename beginning + with a `.' does not match any of the patterns in patlist, don't + return it as a match if leading dots need to be matched explicitly + (flags & FNM_PERIOD). Report from Eric Cook + + 1/3 + --- +variables.[ch] + - bind_function_def: takes an additional flags argument. If FLAGS&1, + overwrite any existing function_def hash table entry; if FLAGS==0, + leave any existing function_def alone. + +make_cmd.c + - make_function_def: call bind_function_def with flags == 0 + +execute_cmd.c + - execute_intern_function: call bind_function_def with flags == 1 so + we have function_def information that's correct for where the + function is defined, not just where it's last parsed. Fixes report + from Bruno Vasselle ; final piece of + fix from 12/15/2011 + + 1/4 + --- +subst.c + - param_expand: deal with string_list_dollar_star returning NULL. + Fixes bug reported by Martijn Dekker + +builtins/history.def + - history_builtin: enabled code that performs range deletion + + 1/5 + --- +subst.c + - do_assignment_internal: if performing a compound assignment, make + sure to pass ASS_CHKLOCAL flag to do_compound_assignment if the + assignment word has the W_CHKLOCAL flag set + - do_compound_assignment: honor ASS_CHKLOCAL flag and check for an + existing local variable before creating or modifying a global + variable + +builtins/declare.def + - declare_internal: new (undocumented so far) option: -G. Means to + act on global variables (create, modify) if no local variable is + found with the specified name + - declare_find_variable: new declare-specific wrapper functon for + declare builtin; obeys -g and -G options in one place + - declare_internal: if no variable is found after following any nameref + chain, look up the variable using declare_find_variable to honor the + -G option. XXX - so far, this is the only place that function is used + +subst.c + - shell_expand_word_list: before calling make_internal_declare, add + 'G' to the options list if W_CHKLOCAL is set in the word's flags. + This makes builtins like `readonly' that modify local variables in + a function behave the same for scalar and array variables diff --git a/MANIFEST b/MANIFEST index 60957a8c..658cc7ba 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1067,6 +1067,7 @@ tests/history.right f tests/history.list f 444 tests/history1.sub f tests/history2.sub f +tests/history3.sub f tests/ifs.tests f tests/ifs.right f tests/ifs1.sub f @@ -1091,6 +1092,7 @@ tests/jobs2.sub f tests/jobs3.sub f tests/jobs4.sub f tests/jobs5.sub f +tests/jobs6.sub f tests/jobs.right f tests/lastpipe.right f tests/lastpipe.tests f @@ -1344,6 +1346,7 @@ tests/varenv5.sub f tests/varenv6.sub f tests/varenv7.sub f tests/varenv8.sub f +tests/varenv9.sub f tests/version f tests/version.mini f tests/vredir.tests f diff --git a/builtins/declare.def b/builtins/declare.def index baa7df6b..8a327458 100644 --- a/builtins/declare.def +++ b/builtins/declare.def @@ -88,6 +88,7 @@ $END #include "builtext.h" #include "bashgetopt.h" +static SHELL_VAR *declare_find_variable __P((const char *, int, int)); static int declare_internal __P((register WORD_LIST *, int)); /* Declare or change variable attributes. */ @@ -134,11 +135,31 @@ local_builtin (list) } #if defined (ARRAY_VARS) -# define DECLARE_OPTS "+acfgilnprtuxAF" +# define DECLARE_OPTS "+acfgilnprtuxAFG" #else -# define DECLARE_OPTS "+cfgilnprtuxF" +# define DECLARE_OPTS "+cfgilnprtuxFG" #endif +static SHELL_VAR * +declare_find_variable (name, mkglobal, chklocal) + const char *name; + int mkglobal, chklocal; +{ + SHELL_VAR *var; + + if (mkglobal == 0) + return (find_variable (name)); + else if (chklocal) + { + var = find_variable (name); + if (var && local_p (var) && var->context == variable_context) + return var; + return (find_global_variable (name)); + } + else + return (find_global_variable (name)); +} + /* The workhorse function. */ static int declare_internal (list, local_var) @@ -146,12 +167,14 @@ declare_internal (list, local_var) int local_var; { int flags_on, flags_off, *flags; - int any_failed, assign_error, pflag, nodefs, opt, mkglobal, onref, offref; + int any_failed, assign_error, pflag, nodefs, opt, onref, offref; + int mkglobal, chklocal; char *t, *subscript_start; SHELL_VAR *var, *refvar, *v; FUNCTION_DEF *shell_fn; - flags_on = flags_off = any_failed = assign_error = pflag = nodefs = mkglobal = 0; + flags_on = flags_off = any_failed = assign_error = pflag = nodefs = 0; + mkglobal = chklocal = 0; refvar = (SHELL_VAR *)NULL; reset_internal_getopt (); while ((opt = internal_getopt (list, DECLARE_OPTS)) != -1) @@ -189,6 +212,10 @@ declare_internal (list, local_var) case 'f': *flags |= att_function; break; + case 'G': + if (flags == &flags_on) + chklocal = 1; + /*FALLTHROUGH*/ case 'g': if (flags == &flags_on) mkglobal = 1; @@ -538,14 +565,9 @@ restart_new_var_name: #endif if (var == 0 && (flags_on & att_nameref)) { -#if 0 - /* See if we are trying to modify an existing nameref variable */ - var = mkglobal ? find_global_variable_last_nameref (name, 1) : find_variable_last_nameref (name, 1); -#else /* See if we are trying to modify an existing nameref variable, but don't follow the nameref chain. */ var = mkglobal ? find_global_variable_noref (name) : find_variable_noref (name); -#endif if (var && nameref_p (var) == 0) var = 0; } @@ -571,6 +593,7 @@ restart_new_var_name: NEXT_VARIABLE (); } if (refvar) + /* XXX - use declare_find_variable here? */ var = mkglobal ? find_global_variable (nameref_cell (refvar)) : find_variable (nameref_cell (refvar)); } #if defined (ARRAY_VARS) @@ -602,6 +625,7 @@ restart_new_var_name: if (refvar && nameref_p (refvar) == 0) refvar = 0; if (refvar) + /* XXX - use declare_find_variable here? */ var = mkglobal ? find_global_variable (nameref_cell (refvar)) : find_variable (nameref_cell (refvar)); if (refvar && var == 0) { @@ -652,7 +676,7 @@ restart_new_var_name: } } if (var == 0) - var = mkglobal ? find_global_variable (name) : find_variable (name); + var = declare_find_variable (name, mkglobal, chklocal); #if defined (ARRAY_VARS) var_exists = var != 0; diff --git a/builtins/history.def b/builtins/history.def index b0aab56d..b2bf66ab 100644 --- a/builtins/history.def +++ b/builtins/history.def @@ -1,7 +1,7 @@ This file is history.def, from which is created history.c. It implements the builtin "history" in Bash. -Copyright (C) 1987-2016 Free Software Foundation, Inc. +Copyright (C) 1987-2018 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. @@ -177,13 +177,13 @@ history_builtin (list) return (sh_chkwrite (EXECUTION_SUCCESS)); } #endif -#if defined (BASH_50) /* bash 5.0 */ - else if ((flags & DFLAG) && (range = strchr (delete_arg[0] == '-' ? delete_arg + 1 : delete_arg, '-'))) + else if ((flags & DFLAG) && (range = strchr ((delete_arg[0] == '-') ? delete_arg + 1 : delete_arg, '-'))) { intmax_t delete_start, delete_end; *range++ = '\0'; if (legal_number (delete_arg, &delete_start) == 0 || legal_number (range, &delete_end) == 0) { + range[-1] = '-'; sh_erange (delete_arg, _("history position")); return (EXECUTION_FAILURE); } @@ -193,6 +193,7 @@ history_builtin (list) delete_start += history_length; if (delete_start < history_base) { +start_error: sh_erange (delete_arg, _("history position")); return (EXECUTION_FAILURE); } @@ -200,23 +201,27 @@ history_builtin (list) /* numbers as displayed by display_history are offset by history_base */ else if (delete_start > 0) delete_start -= history_base; + if (delete_start < 0 || delete_start >= history_length) + goto start_error; if (range[0] == '-' && delete_end < 0) { delete_end += history_length; if (delete_end < history_base) { - sh_erange (delete_arg, _("history position")); +range_error: + sh_erange (range, _("history position")); return (EXECUTION_FAILURE); } } else if (delete_end > 0) delete_end -= history_base; + if (delete_end < 0 || delete_end >= history_length) + goto range_error; result = bash_delete_history_range (delete_start, delete_end); if (where_history () > history_length) history_set_pos (history_length); return (result ? EXECUTION_SUCCESS : EXECUTION_FAILURE); } -#endif /* BASH_50 */ else if (flags & DFLAG) { if (legal_number (delete_arg, &delete_offset) == 0) diff --git a/doc/bash.0 b/doc/bash.0 index 2048b828..42462b41 100644 --- a/doc/bash.0 +++ b/doc/bash.0 @@ -1598,12 +1598,14 @@ EEXXPPAANNSSIIOONN tion. BBaasshh uses the value of the variable formed from the rest of _p_a_r_a_m_e_t_e_r as the name of the variable; this variable is then expanded and that value is used in the rest of the substitution, rather than the - value of _p_a_r_a_m_e_t_e_r itself. This is known as _i_n_d_i_r_e_c_t _e_x_p_a_n_s_i_o_n. If - _p_a_r_a_m_e_t_e_r is a nameref, this expands to the name of the variable refer- - enced by _p_a_r_a_m_e_t_e_r instead of performing the complete indirect expan- - sion. The exceptions to this are the expansions of ${!!_p_r_e_f_i_x**} and - ${!!_n_a_m_e[_@]} described below. The exclamation point must immediately - follow the left brace in order to introduce indirection. + value of _p_a_r_a_m_e_t_e_r itself. This is known as _i_n_d_i_r_e_c_t _e_x_p_a_n_s_i_o_n. The + value is subject to tilde expansion, parameter expansion, command sub- + stitution, and arithmetic expansion. If _p_a_r_a_m_e_t_e_r is a nameref, this + expands to the name of the variable 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 indirection. In each of the cases below, _w_o_r_d is subject to tilde expansion, parame- ter expansion, command substitution, and arithmetic expansion. @@ -3305,8 +3307,9 @@ RREEAADDLLIINNEE $$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 extends to the end of the line; - no characters are required to isolate it. + readline. The text of the test, after any comparison operator, + 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 @@ -3331,7 +3334,9 @@ RREEAADDLLIINNEE The version number supplied on the right side of the operator 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- @@ -3348,6 +3353,16 @@ RREEAADDLLIINNEE "\C-xq": "\eb\"\ef\"" $$eennddiiff + _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 + 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 + against the values _o_n and _o_f_f. + $$eennddiiff This command, as seen in the previous example, terminates an $$iiff command. @@ -3355,51 +3370,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 @@ -3415,29 +3430,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. @@ -3445,70 +3460,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 + between the start of the current line and the current cursor position (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- + string may match anywhere in a history line. This is a non- incremental 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 + insert the _nth word from the previous command (the words in the + previous command begin with word 0). A negative argument inserts the _nth word from the end of the previous command. Once - the argument _n is computed, the argument is extracted as if the + 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. @@ -3517,80 +3532,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 + Perform history expansion on the current line. See HHIISSTTOORRYY EEXXPPAANNSSIIOONN 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 - result as shell commands. BBaasshh attempts to invoke $$VVIISSUUAALL, + Invoke an editor on the current command line, and execute the + result as shell commands. BBaasshh attempts to invoke $$VVIISSUUAALL, $$EEDDIITTOORR, 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 + Uppercase the current (or following) word. With a negative argument, uppercase the previous word, but do not move point. ddoowwnnccaassee--wwoorrdd ((MM--ll)) - Lowercase the current (or following) word. With a negative + Lowercase the current (or following) word. With a negative argument, lowercase the previous word, but do not move point. ccaappiittaalliizzee--wwoorrdd ((MM--cc)) - Capitalize the current (or following) word. With a negative + Capitalize the current (or following) word. With a negative argument, 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 @@ -3599,31 +3614,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 - same as those used by ffoorrwwaarrdd--wwoorrdd. - bbaacckkwwaarrdd--kkiillll--wwoorrdd ((MM--RRuubboouutt)) - 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 + same as those used by ffoorrwwaarrdd--wwoorrdd. + bbaacckkwwaarrdd--kkiillll--wwoorrdd ((MM--RRuubboouutt)) + 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 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. @@ -3632,65 +3647,65 @@ 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- - lowed by digits, executing uunniivveerrssaall--aarrgguummeenntt again ends the - numeric argument, but is otherwise ignored. As a special case, - if this command is immediately followed by a character that is - neither 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- + 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 + numeric argument, but is otherwise ignored. As a special case, + if this command is immediately followed by a character that is + neither 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 - argument may be used to move backward through the list. This - command is intended to be bound to TTAABB, but is unbound by + moves _n positions forward in the list of matches; a negative + argument may be used to move backward through the list. This + command 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--//)) @@ -3699,67 +3714,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)) @@ -3767,196 +3782,196 @@ 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 + 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 removed, the line will be executed by the shell. gglloobb--ccoommpplleettee--wwoorrdd ((MM--gg)) - The word before point is treated as a pattern for pathname - expansion, with an asterisk implicitly appended. This pattern - is used to generate a list of matching filenames for possible + The word before point is treated as a pattern for pathname + expansion, with an asterisk implicitly appended. This pattern + is used to generate a list of matching filenames for possible completions. gglloobb--eexxppaanndd--wwoorrdd ((CC--xx **)) - The word before point is treated as a pattern for pathname - expansion, and the list of matching filenames is inserted, - replacing the word. If a numeric argument is supplied, an + The word before point is treated as a pattern for pathname + expansion, and the list of matching filenames is inserted, + replacing 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 + 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. - 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 + Any completions specified by a pathname expansion pattern to the --GG option are generated next. The words generated by the pattern need not - match the word being completed. The GGLLOOBBIIGGNNOORREE shell variable is 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 - being 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 + being 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 + If the previously-applied actions do not generate any matches, and the + --oo ddiirrnnaammeess option was supplied to ccoommpplleettee when the compspec was defined, 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 + For instance, assuming that there is a library of compspecs, each kept + in a file corresponding to the name of the command, the following default completion function would load completions dynamically: _completion_loader() @@ -3967,162 +3982,162 @@ 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 + 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 - unwritable, the history is not saved. If the HHIISSTTTTIIMMEEFFOORRMMAATT variable - is set, time stamps are written to the history file, marked with the - history comment character, so they may be preserved across shell ses- - sions. This uses the history comment character to distinguish time- + unwritable, the history is not saved. If the HHIISSTTTTIIMMEEFFOORRMMAATT variable + is set, time stamps are written to the history file, marked with the + history comment character, so they may be preserved across shell ses- + sions. This uses the history comment character to distinguish time- stamps from other history lines. After saving the history, the history file is truncated to contain no more than HHIISSTTFFIILLEESSIIZZEE lines. If HHIISSTT-- - FFIILLEESSIIZZEE is unset, or set to null, a non-numeric value, or a numeric + FFIILLEESSIIZZEE is unset, or set to null, a non-numeric value, or a numeric value less than zero, the history file is not truncated. - The builtin command ffcc (see SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS below) may be used + 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 - manipulate 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 + manipulate the history file. When using command-line editing, search + commands are available in each editing mode that provide access to the history list. - The shell allows control over which commands are saved on the history + 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 options. HHIISSTTOORRYY EEXXPPAANNSSIIOONN - The shell supports a history expansion feature that is similar to the - history expansion in ccsshh.. This section describes what syntax features - are available. This feature is enabled by default for interactive + 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 + History expansion is performed immediately after a complete line is + read, before the shell breaks it into words, and is performed on each line individually without taking quoting on previous lines into account. 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_- + 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 - expansion character is also treated as quoted if it immediately pre- + 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 + expansion character is also treated as quoted if it immediately pre- cedes 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 + Several shell options settable with the sshhoopptt builtin may be used to + tailor the behavior of history expansion. If the hhiissttvveerriiffyy shell option 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 + 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 + 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. ^^_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 + $$ The last word. This is usually the last argument, but will expand to the zeroth word if there is only one word in the line. %% The word matched by the most recent `?_s_t_r_i_n_g?' search. _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 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 `:'. hh Remove a trailing filename component, leaving only the head. @@ -4131,80 +4146,80 @@ 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 + xx Quote the substituted words as with qq, but break into words at bbllaannkkss and newlines. ss//_o_l_d//_n_e_w// - Substitute _n_e_w for the first occurrence of _o_l_d in the event - line. Any delimiter can be used in place of /. The final - delimiter is optional if it is the last character of the event - line. The delimiter may be quoted in _o_l_d and _n_e_w with a single - backslash. If & appears in _n_e_w, it is replaced by _o_l_d. A sin- - gle backslash will quote the &. If _o_l_d is null, it is set to - the last _o_l_d substituted, or, if no previous history substitu- + Substitute _n_e_w for the first occurrence of _o_l_d in the event + line. Any delimiter can be used in place of /. The final + delimiter is optional if it is the last character of the event + line. The delimiter may be quoted in _o_l_d and _n_e_w with a single + backslash. If & appears in _n_e_w, it is replaced by _o_l_d. A sin- + gle backslash will quote the &. If _o_l_d is null, it is set to + the last _o_l_d substituted, or, if no previous history substitu- tions took place, the last _s_t_r_i_n_g in a !!??_s_t_r_i_n_g[[??]] search. && 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' modifier once to each word in the event + GG Apply the following `ss' modifier once to each word in the event line. 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 - environment 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 + Read and execute commands from _f_i_l_e_n_a_m_e in the current shell + environment 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 - positional 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 + 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 + positional 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 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 - returns 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 + returns 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] @@ -4213,29 +4228,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 - variable. Each non-option argument is a command as it would - appear 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'. + 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 + appear 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'. Options, if supplied, have the following meanings: --mm _k_e_y_m_a_p Use _k_e_y_m_a_p as the keymap to be affected by the subsequent bindings. Acceptable _k_e_y_m_a_p names are _e_m_a_c_s_, _e_m_a_c_s_-_s_t_a_n_- - _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 @@ -4247,174 +4262,174 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS --rr _k_e_y_s_e_q Remove any current binding for _k_e_y_s_e_q. --xx _k_e_y_s_e_q::_s_h_e_l_l_-_c_o_m_m_a_n_d - Cause _s_h_e_l_l_-_c_o_m_m_a_n_d to be executed whenever _k_e_y_s_e_q is - entered. 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 + Cause _s_h_e_l_l_-_c_o_m_m_a_n_d to be executed whenever _k_e_y_s_e_q is + entered. 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 + command changes the value of RREEAADDLLIINNEE__LLIINNEE or RREEAADD-- + LLIINNEE__PPOOIINNTT, 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 + --XX List all key sequences bound to shell commands and the + associated commands in a format that can be reused as input. - The return value is 0 unless an unrecognized option is given or + The return value is 0 unless an unrecognized option is given or an error occurred. bbrreeaakk [_n] - Exit from within a ffoorr, wwhhiillee, uunnttiill, or sseelleecctt loop. If _n is - specified, break _n levels. _n must be >= 1. If _n is greater - than the number of enclosing loops, all enclosing loops are - exited. The return value is 0 unless _n is not greater than or + Exit from within a ffoorr, wwhhiillee, uunnttiill, or sseelleecctt loop. If _n is + specified, break _n levels. _n must be >= 1. If _n is greater + than the number of enclosing loops, all enclosing loops are + exited. The return value is 0 unless _n is not greater than or equal to 1. bbuuiillttiinn _s_h_e_l_l_-_b_u_i_l_t_i_n [_a_r_g_u_m_e_n_t_s] - Execute the specified shell builtin, passing it _a_r_g_u_m_e_n_t_s, and + Execute the specified shell builtin, passing it _a_r_g_u_m_e_n_t_s, and return its exit status. This is useful when defining a function - whose name is the same as a shell builtin, retaining the func- + whose name is the same as a shell builtin, retaining the func- tionality of the builtin within the function. The ccdd builtin is - commonly redefined this way. The return status is false if + commonly redefined this way. The return status is false if _s_h_e_l_l_-_b_u_i_l_t_i_n is not a shell builtin command. ccaalllleerr [_e_x_p_r] Returns the context of any active subroutine call (a shell func- tion or a script executed with the .. or ssoouurrccee builtins). With- out _e_x_p_r, ccaalllleerr displays the line number and source filename of - the current subroutine call. If a non-negative integer is sup- + the current subroutine call. If a non-negative integer is sup- plied as _e_x_p_r, ccaalllleerr displays the line number, subroutine name, - and source file corresponding to that position in the current - execution call stack. This extra information may be used, for - example, to print a stack trace. The current frame is frame 0. - The return value is 0 unless the shell is not executing a sub- - routine call or _e_x_p_r does not correspond to a valid position in + and source file corresponding to that position in the current + execution call stack. This extra information may be used, for + example, to print a stack trace. The current frame is frame 0. + The return value is 0 unless the shell is not executing a sub- + routine call or _e_x_p_r does not correspond to a valid position in the call stack. ccdd [--LL|[--PP [--ee]] [-@]] [_d_i_r] - Change the current directory to _d_i_r. if _d_i_r is not supplied, - the value of the HHOOMMEE shell variable is the default. Any addi- + Change the current directory to _d_i_r. if _d_i_r is not supplied, + the value of the HHOOMMEE shell variable is the default. Any addi- tional arguments following _d_i_r are ignored. The variable CCDDPPAATTHH - defines the search path for the directory containing _d_i_r: each - directory name in CCDDPPAATTHH is searched for _d_i_r. Alternative - directory names in CCDDPPAATTHH are separated by a colon (:). A null - directory name in CCDDPPAATTHH is the same as the current directory, + defines the search path for the directory containing _d_i_r: each + directory name in CCDDPPAATTHH is searched for _d_i_r. Alternative + directory names in CCDDPPAATTHH are separated by a colon (:). A null + directory name in CCDDPPAATTHH is the same as the current directory, i.e., ``..''. If _d_i_r begins with a slash (/), then CCDDPPAATTHH is not - used. The --PP option causes ccdd to use the physical directory - structure by resolving symbolic links while traversing _d_i_r and + used. The --PP option causes ccdd to use the physical directory + structure by resolving symbolic links while traversing _d_i_r and before processing instances of _._. in _d_i_r (see also the --PP option to the sseett builtin command); the --LL option forces symbolic links - to be followed by resolving the link after processing instances + to be followed by resolving the link after processing instances of _._. in _d_i_r. If _._. appears in _d_i_r, it is processed by removing - the immediately previous pathname component from _d_i_r, back to a - slash or the beginning of _d_i_r. If the --ee option is supplied - with --PP, and the current working directory cannot be success- - fully determined after a successful directory change, ccdd will - return an unsuccessful status. On systems that support it, the - --@@ option presents the extended attributes associated with a - file as a directory. An argument of -- is converted to $$OOLLDDPPWWDD + the immediately previous pathname component from _d_i_r, back to a + slash or the beginning of _d_i_r. If the --ee option is supplied + with --PP, and the current working directory cannot be success- + fully determined after a successful directory change, ccdd will + return an unsuccessful status. On systems that support it, the + --@@ option presents the extended attributes associated with a + file as a directory. An argument of -- is converted to $$OOLLDDPPWWDD before the directory change is attempted. If a non-empty direc- - tory name from CCDDPPAATTHH is used, or if -- is the first argument, + tory name from CCDDPPAATTHH is used, or if -- is the first argument, and the directory change is successful, the absolute pathname of - the new working directory is written to the standard output. - The return value is true if the directory was successfully + the new working directory is written to the standard output. + The return value is true if the directory was successfully changed; false otherwise. ccoommmmaanndd [--ppVVvv] _c_o_m_m_a_n_d [_a_r_g ...] - Run _c_o_m_m_a_n_d with _a_r_g_s suppressing the normal shell function + Run _c_o_m_m_a_n_d with _a_r_g_s suppressing the normal shell function lookup. Only builtin commands or commands found in the PPAATTHH are - executed. If the --pp option is given, the search for _c_o_m_m_a_n_d is - performed using a default value for PPAATTHH that is guaranteed to - find all of the standard utilities. If either the --VV or --vv + executed. If the --pp option is given, the search for _c_o_m_m_a_n_d is + performed using a default value for PPAATTHH that is guaranteed to + find all of the standard utilities. If either the --VV or --vv option is supplied, a description of _c_o_m_m_a_n_d is printed. The --vv - option causes a single word indicating the command or filename + option causes a single word indicating the command or filename used to invoke _c_o_m_m_a_n_d to be displayed; the --VV option produces a - more verbose description. If the --VV or --vv option is supplied, - the exit status is 0 if _c_o_m_m_a_n_d was found, and 1 if not. If + more verbose description. If the --VV or --vv option is supplied, + the exit status is 0 if _c_o_m_m_a_n_d was found, and 1 if not. If neither option is supplied and an error occurred or _c_o_m_m_a_n_d can- - not be found, the exit status is 127. Otherwise, the exit sta- + not be found, the exit status is 127. Otherwise, the exit sta- tus of the ccoommmmaanndd builtin is the exit status of _c_o_m_m_a_n_d. ccoommppggeenn [_o_p_t_i_o_n] [_w_o_r_d] - Generate possible completion matches for _w_o_r_d according to the - _o_p_t_i_o_ns, which may be any option accepted by the ccoommpplleettee - builtin with the exception of --pp and --rr, and write the matches - to the standard output. When using the --FF or --CC options, the - various shell variables set by the programmable completion + Generate possible completion matches for _w_o_r_d according to the + _o_p_t_i_o_ns, which may be any option accepted by the ccoommpplleettee + builtin with the exception of --pp and --rr, and write the matches + to the standard output. When using the --FF or --CC options, the + various shell variables set by the programmable completion facilities, while available, will not have useful values. The matches will be generated in the same way as if the program- mable completion code had generated them directly from a comple- - tion specification with the same flags. If _w_o_r_d is specified, + tion specification with the same flags. If _w_o_r_d is specified, only those completions matching _w_o_r_d will be displayed. - The return value is true unless an invalid option is supplied, + The return value is true unless an invalid option is supplied, or no matches were generated. - ccoommpplleettee [--aabbccddeeffggjjkkssuuvv] [--oo _c_o_m_p_-_o_p_t_i_o_n] [--DDEE] [--AA _a_c_t_i_o_n] [--GG _g_l_o_b_- + ccoommpplleettee [--aabbccddeeffggjjkkssuuvv] [--oo _c_o_m_p_-_o_p_t_i_o_n] [--DDEE] [--AA _a_c_t_i_o_n] [--GG _g_l_o_b_- _p_a_t] [--WW _w_o_r_d_l_i_s_t] [--FF _f_u_n_c_t_i_o_n] [--CC _c_o_m_m_a_n_d] [--XX _f_i_l_t_e_r_p_a_t] [--PP _p_r_e_f_i_x] [--SS _s_u_f_f_i_x] _n_a_m_e [_n_a_m_e _._._.] ccoommpplleettee --pprr [--DDEE] [_n_a_m_e ...] - Specify how arguments to each _n_a_m_e should be completed. If the - --pp option is supplied, or if no options are supplied, existing - completion specifications are printed in a way that allows them + Specify how arguments to each _n_a_m_e should be completed. If the + --pp option is supplied, or if no options are supplied, existing + completion specifications are printed in a way that allows them to be reused as input. The --rr option removes a completion spec- - ification for each _n_a_m_e, or, if no _n_a_m_es are supplied, all com- + ification for each _n_a_m_e, or, if no _n_a_m_es are supplied, all com- pletion specifications. The --DD option indicates that the - remaining options and actions should apply to the ``default'' - command completion; that is, completion attempted on a command - for which no completion has previously been defined. The --EE - option indicates that the remaining options and actions should - apply to ``empty'' command completion; that is, completion + remaining options and actions should apply to the ``default'' + command completion; that is, completion attempted on a command + for which no completion has previously been defined. The --EE + option indicates that the remaining options and actions should + apply to ``empty'' command completion; that is, completion attempted on a blank line. - The process of applying these completion specifications when - word completion is attempted is described above under PPrrooggrraamm-- + The process of applying these completion specifications when + word completion is attempted is described above under PPrrooggrraamm-- mmaabbllee CCoommpplleettiioonn. - Other options, if specified, have the following meanings. The - arguments to the --GG, --WW, and --XX options (and, if necessary, the - --PP and --SS options) should be quoted to protect them from expan- + Other options, if specified, have the following meanings. The + arguments to the --GG, --WW, and --XX options (and, if necessary, the + --PP and --SS options) should be quoted to protect them from expan- sion before the ccoommpplleettee builtin is invoked. --oo _c_o_m_p_-_o_p_t_i_o_n - The _c_o_m_p_-_o_p_t_i_o_n controls several aspects of the comp- - spec's behavior beyond the simple generation of comple- + The _c_o_m_p_-_o_p_t_i_o_n controls several aspects of the comp- + spec's behavior beyond the simple generation of comple- tions. _c_o_m_p_-_o_p_t_i_o_n may be one of: bbaasshhddeeffaauulltt Perform the rest of the default bbaasshh completions if the compspec generates no matches. - ddeeffaauulltt Use readline's default filename completion if + ddeeffaauulltt Use readline's default filename completion if the compspec generates no matches. ddiirrnnaammeess - Perform directory name completion if the comp- + Perform directory name completion if the comp- spec generates no matches. ffiilleennaammeess - Tell readline that the compspec generates file- - names, so it can perform any filename-specific - processing (like adding a slash to directory - names, quoting special characters, or suppress- - ing trailing spaces). Intended to be used with + Tell readline that the compspec generates file- + names, so it can perform any filename-specific + processing (like adding a slash to directory + names, quoting special characters, or suppress- + ing trailing spaces). Intended to be used with shell functions. - nnooqquuoottee Tell readline not to quote the completed words - if they are filenames (quoting filenames is the + nnooqquuoottee Tell readline not to quote the completed words + if they are filenames (quoting filenames is the default). - nnoossoorrtt Tell readline not to sort the list of possible + nnoossoorrtt Tell readline not to sort the list of possible completions alphabetically. - nnoossppaaccee Tell readline not to append a space (the - default) to words completed at the end of the + nnoossppaaccee Tell readline not to append a space (the + default) to words completed at the end of the line. pplluussddiirrss - After any matches defined by the compspec are - generated, directory name completion is - attempted and any matches are added to the + After any matches defined by the compspec are + generated, directory name completion is + attempted and any matches are added to the results of the other actions. --AA _a_c_t_i_o_n - The _a_c_t_i_o_n may be one of the following to generate a + The _a_c_t_i_o_n may be one of the following to generate a list of possible completions: aalliiaass Alias names. May also be specified as --aa. aarrrraayyvvaarr Array variable names. bbiinnddiinngg RReeaaddlliinnee key binding names. - bbuuiillttiinn Names of shell builtin commands. May also be + bbuuiillttiinn Names of shell builtin commands. May also be specified as --bb. ccoommmmaanndd Command names. May also be specified as --cc. ddiirreeccttoorryy @@ -4422,7 +4437,7 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS ddiissaabblleedd Names of disabled shell builtins. eennaabblleedd Names of enabled shell builtins. - eexxppoorrtt Names of exported shell variables. May also be + eexxppoorrtt Names of exported shell variables. May also be specified as --ee. ffiillee File names. May also be specified as --ff. ffuunnccttiioonn @@ -4431,17 +4446,17 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS hheellppttooppiicc Help topics as accepted by the hheellpp builtin. hhoossttnnaammee - Hostnames, as taken from the file specified by + Hostnames, as taken from the file specified by the HHOOSSTTFFIILLEE shell variable. - jjoobb Job names, if job control is active. May also + jjoobb Job names, if job control is active. May also be specified as --jj. - kkeeyywwoorrdd Shell reserved words. May also be specified as + kkeeyywwoorrdd Shell reserved words. May also be specified as --kk. rruunnnniinngg Names of running jobs, if job control is active. sseerrvviiccee Service names. May also be specified as --ss. - sseettoopptt Valid arguments for the --oo option to the sseett + sseettoopptt Valid arguments for the --oo option to the sseett builtin. - sshhoopptt Shell option names as accepted by the sshhoopptt + sshhoopptt Shell option names as accepted by the sshhoopptt builtin. ssiiggnnaall Signal names. ssttooppppeedd Names of stopped jobs, if job control is active. @@ -4450,188 +4465,188 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS Names of all shell variables. May also be spec- ified as --vv. --CC _c_o_m_m_a_n_d - _c_o_m_m_a_n_d is executed in a subshell environment, and its + _c_o_m_m_a_n_d is executed in a subshell environment, and its output is used as the possible completions. --FF _f_u_n_c_t_i_o_n - The shell function _f_u_n_c_t_i_o_n is executed in the current - shell environment. When the function is executed, the - first argument ($$11) is the name of the command whose - arguments are being completed, the second argument ($$22) + The shell function _f_u_n_c_t_i_o_n is executed in the current + shell environment. When the function is executed, the + first argument ($$11) is the name of the command whose + arguments are being completed, the second argument ($$22) is the word being completed, and the third argument ($$33) - is the word preceding the word being completed on the - current command line. When it finishes, the possible - completions are retrieved from the value of the CCOOMMPPRREE-- + is the word preceding the word being completed on the + current command line. When it finishes, the possible + completions are retrieved from the value of the CCOOMMPPRREE-- PPLLYY array variable. --GG _g_l_o_b_p_a_t - The pathname expansion pattern _g_l_o_b_p_a_t is expanded to + The pathname expansion pattern _g_l_o_b_p_a_t is expanded to generate the possible completions. --PP _p_r_e_f_i_x - _p_r_e_f_i_x is added at the beginning of each possible com- + _p_r_e_f_i_x is added at the beginning of each possible com- pletion after all other options have been applied. --SS _s_u_f_f_i_x _s_u_f_f_i_x is appended to each possible completion after all other options have been applied. --WW _w_o_r_d_l_i_s_t - The _w_o_r_d_l_i_s_t is split using the characters in the IIFFSS - special variable as delimiters, and each resultant word - is expanded. The possible completions are the members - of the resultant list which match the word being com- + The _w_o_r_d_l_i_s_t is split using the characters in the IIFFSS + special variable as delimiters, and each resultant word + is expanded. The possible completions are the members + of the resultant list which match the word being com- pleted. --XX _f_i_l_t_e_r_p_a_t - _f_i_l_t_e_r_p_a_t is a pattern as used for pathname expansion. + _f_i_l_t_e_r_p_a_t is a pattern as used for pathname expansion. It is applied to the list of possible completions gener- - ated by the preceding options and arguments, and each - completion matching _f_i_l_t_e_r_p_a_t is removed from the list. - A leading !! in _f_i_l_t_e_r_p_a_t negates the pattern; in this + ated by the preceding options and arguments, and each + completion matching _f_i_l_t_e_r_p_a_t is removed from the list. + A leading !! in _f_i_l_t_e_r_p_a_t negates the pattern; in this case, any completion not matching _f_i_l_t_e_r_p_a_t is removed. - The return value is true unless an invalid option is supplied, - an option other than --pp or --rr is supplied without a _n_a_m_e argu- - ment, an attempt is made to remove a completion specification + The return value is true unless an invalid option is supplied, + an option other than --pp or --rr is supplied without a _n_a_m_e argu- + ment, an attempt is made to remove a completion specification for a _n_a_m_e for which no specification exists, or an error occurs adding a completion specification. ccoommppoopptt [--oo _o_p_t_i_o_n] [--DDEE] [++oo _o_p_t_i_o_n] [_n_a_m_e] Modify completion options for each _n_a_m_e according to the - _o_p_t_i_o_ns, or for the currently-executing completion if no _n_a_m_es - are supplied. If no _o_p_t_i_o_ns are given, display the completion - options for each _n_a_m_e or the current completion. The possible - values of _o_p_t_i_o_n are those valid for the ccoommpplleettee builtin - described above. The --DD option indicates that the remaining + _o_p_t_i_o_ns, or for the currently-executing completion if no _n_a_m_es + are supplied. If no _o_p_t_i_o_ns are given, display the completion + options for each _n_a_m_e or the current completion. The possible + values of _o_p_t_i_o_n are those valid for the ccoommpplleettee builtin + described above. The --DD option indicates that the remaining options should apply to the ``default'' command completion; that - is, completion attempted on a command for which no completion - has previously been defined. The --EE option indicates that the - remaining options should apply to ``empty'' command completion; + is, completion attempted on a command for which no completion + has previously been defined. The --EE option indicates that the + remaining options should apply to ``empty'' command completion; that is, completion attempted on a blank line. - The return value is true unless an invalid option is supplied, + The return value is true unless an invalid option is supplied, an attempt is made to modify the options for a _n_a_m_e for which no completion specification exists, or an output error occurs. ccoonnttiinnuuee [_n] Resume the next iteration of the enclosing ffoorr, wwhhiillee, uunnttiill, or - sseelleecctt loop. If _n is specified, resume at the _nth enclosing - loop. _n must be >= 1. If _n is greater than the number of - enclosing loops, the last enclosing loop (the ``top-level'' + sseelleecctt loop. If _n is specified, resume at the _nth enclosing + loop. _n must be >= 1. If _n is greater than the number of + enclosing loops, the last enclosing loop (the ``top-level'' loop) is resumed. The return value is 0 unless _n is not greater than or equal to 1. ddeeccllaarree [--aaAAffFFggiillnnrrttuuxx] [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] ttyyppeesseett [--aaAAffFFggiillnnrrttuuxx] [--pp] [_n_a_m_e[=_v_a_l_u_e] ...] - Declare variables and/or give them attributes. If no _n_a_m_es are - given then display the values of variables. The --pp option will + Declare variables and/or give them attributes. If no _n_a_m_es are + given then display the values of variables. The --pp option will display the attributes and values of each _n_a_m_e. When --pp is used - with _n_a_m_e arguments, additional options, other than --ff and --FF, - are ignored. When --pp is supplied without _n_a_m_e arguments, it - will display the attributes and values of all variables having + with _n_a_m_e arguments, additional options, other than --ff and --FF, + are ignored. When --pp is supplied without _n_a_m_e arguments, it + will display the attributes and values of all variables having the attributes specified by the additional options. If no other - options are supplied with --pp, ddeeccllaarree will display the - attributes and values of all shell variables. The --ff option - will restrict the display to shell functions. The --FF option - inhibits the display of function definitions; only the function - name and attributes are printed. If the eexxttddeebbuugg shell option - is enabled using sshhoopptt, the source file name and line number + options are supplied with --pp, ddeeccllaarree will display the + attributes and values of all shell variables. The --ff option + will restrict the display to shell functions. The --FF option + inhibits the display of function definitions; only the function + name and attributes are printed. If the eexxttddeebbuugg shell option + is enabled using sshhoopptt, the source file name and line number where each _n_a_m_e is defined are displayed as well. The --FF option - implies --ff. The --gg option forces variables to be created or + implies --ff. The --gg option forces variables to be created or modified at the global scope, even when ddeeccllaarree is executed in a - shell function. It is ignored in all other cases. The follow- + shell function. It is ignored in all other cases. The follow- ing options can be used to restrict output to variables with the specified attribute or to give variables attributes: - --aa Each _n_a_m_e is an indexed array variable (see AArrrraayyss + --aa Each _n_a_m_e is an indexed array variable (see AArrrraayyss above). - --AA Each _n_a_m_e is an associative array variable (see AArrrraayyss + --AA Each _n_a_m_e is an associative array variable (see AArrrraayyss above). --ff Use function names only. --ii The variable is treated as an integer; arithmetic evalua- - tion (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN above) is performed when + tion (see AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN above) is performed when the variable is assigned a value. - --ll When the variable is assigned a value, all upper-case - characters are converted to lower-case. The upper-case + --ll When the variable is assigned a value, all upper-case + characters are converted to lower-case. The upper-case attribute is disabled. - --nn Give each _n_a_m_e the _n_a_m_e_r_e_f attribute, making it a name - reference to another variable. That other variable is - defined by the value of _n_a_m_e. All references, assign- - ments, and attribute modifications to _n_a_m_e, except those - using or changing the --nn attribute itself, are performed - on the variable referenced by _n_a_m_e's value. The nameref + --nn Give each _n_a_m_e the _n_a_m_e_r_e_f attribute, making it a name + reference to another variable. That other variable is + defined by the value of _n_a_m_e. All references, assign- + ments, and attribute modifications to _n_a_m_e, except those + using or changing the --nn attribute itself, are performed + on the variable referenced by _n_a_m_e's value. The nameref attribute cannot be applied to array variables. --rr Make _n_a_m_es readonly. These names cannot then be assigned values by subsequent assignment statements or unset. - --tt Give each _n_a_m_e the _t_r_a_c_e attribute. Traced functions - inherit the DDEEBBUUGG and RREETTUURRNN traps from the calling - shell. The trace attribute has no special meaning for + --tt Give each _n_a_m_e the _t_r_a_c_e attribute. Traced functions + inherit the DDEEBBUUGG and RREETTUURRNN traps from the calling + shell. The trace attribute has no special meaning for variables. - --uu When the variable is assigned a value, all lower-case - characters are converted to upper-case. The lower-case + --uu When the variable is assigned a value, all lower-case + characters are converted to upper-case. The lower-case attribute is disabled. - --xx Mark _n_a_m_es for export to subsequent commands via the + --xx Mark _n_a_m_es for export to subsequent commands via the environment. - Using `+' instead of `-' turns off the attribute instead, with + Using `+' instead of `-' turns off the attribute instead, with the exceptions that ++aa may not be used to destroy an array vari- - able and ++rr will not remove the readonly attribute. When used + able and ++rr will not remove the readonly attribute. When used in a function, ddeeccllaarree and ttyyppeesseett make each _n_a_m_e local, as with the llooccaall command, unless the --gg option is supplied. If a vari- - able name is followed by =_v_a_l_u_e, the value of the variable is - set to _v_a_l_u_e. When using --aa or --AA and the compound assignment - syntax to create array variables, additional attributes do not + able name is followed by =_v_a_l_u_e, the value of the variable is + set to _v_a_l_u_e. When using --aa or --AA and the compound assignment + syntax to create array variables, additional attributes do not take effect until subsequent assignments. The return value is 0 - unless an invalid option is encountered, an attempt is made to - define a function using ``-f foo=bar'', an attempt is made to - assign a value to a readonly variable, an attempt is made to - assign a value to an array variable without using the compound - assignment syntax (see AArrrraayyss above), one of the _n_a_m_e_s is not a - valid shell variable name, an attempt is made to turn off read- - only status for a readonly variable, an attempt is made to turn + unless an invalid option is encountered, an attempt is made to + define a function using ``-f foo=bar'', an attempt is made to + assign a value to a readonly variable, an attempt is made to + assign a value to an array variable without using the compound + assignment syntax (see AArrrraayyss above), one of the _n_a_m_e_s is not a + valid shell variable name, an attempt is made to turn off read- + only status for a readonly variable, an attempt is made to turn off array status for an array variable, or an attempt is made to display a non-existent function with --ff. ddiirrss [[--ccllppvv]] [[++_n]] [[--_n]] - Without options, displays the list of currently remembered - directories. The default display is on a single line with - directory names separated by spaces. Directories are added to - the list with the ppuusshhdd command; the ppooppdd command removes - entries from the list. The current directory is always the + Without options, displays the list of currently remembered + directories. The default display is on a single line with + directory names separated by spaces. Directories are added to + the list with the ppuusshhdd command; the ppooppdd command removes + entries from the list. The current directory is always the first directory in the stack. --cc Clears the directory stack by deleting all of the entries. - --ll Produces a listing using full pathnames; the default + --ll Produces a listing using full pathnames; the default listing format uses a tilde to denote the home directory. --pp Print the directory stack with one entry per line. - --vv Print the directory stack with one entry per line, pre- + --vv Print the directory stack with one entry per line, pre- fixing each entry with its index in the stack. ++_n Displays the _nth entry counting from the left of the list shown by ddiirrss when invoked without options, starting with zero. - --_n Displays the _nth entry counting from the right of the + --_n Displays the _nth entry counting from the right of the list shown by ddiirrss when invoked without options, starting with zero. - The return value is 0 unless an invalid option is supplied or _n + The return value is 0 unless an invalid option is supplied or _n indexes beyond the end of the directory stack. ddiissoowwnn [--aarr] [--hh] [_j_o_b_s_p_e_c ... | _p_i_d ... ] - Without options, remove each _j_o_b_s_p_e_c from the table of active - jobs. If _j_o_b_s_p_e_c is not present, and neither the --aa nor the --rr - option is supplied, the _c_u_r_r_e_n_t _j_o_b is used. If the --hh option - is given, each _j_o_b_s_p_e_c is not removed from the table, but is - marked so that SSIIGGHHUUPP is not sent to the job if the shell - receives a SSIIGGHHUUPP. If no _j_o_b_s_p_e_c is supplied, the --aa option - means to remove or mark all jobs; the --rr option without a _j_o_b_- - _s_p_e_c argument restricts operation to running jobs. The return + Without options, remove each _j_o_b_s_p_e_c from the table of active + jobs. If _j_o_b_s_p_e_c is not present, and neither the --aa nor the --rr + option is supplied, the _c_u_r_r_e_n_t _j_o_b is used. If the --hh option + is given, each _j_o_b_s_p_e_c is not removed from the table, but is + marked so that SSIIGGHHUUPP is not sent to the job if the shell + receives a SSIIGGHHUUPP. If no _j_o_b_s_p_e_c is supplied, the --aa option + means to remove or mark all jobs; the --rr option without a _j_o_b_- + _s_p_e_c argument restricts operation to running jobs. The return value is 0 unless a _j_o_b_s_p_e_c does not specify a valid job. eecchhoo [--nneeEE] [_a_r_g ...] - Output the _a_r_gs, separated by spaces, followed by a newline. - The return status is 0 unless a write error occurs. If --nn is + Output the _a_r_gs, separated by spaces, followed by a newline. + The return status is 0 unless a write error occurs. If --nn is specified, the trailing newline is suppressed. If the --ee option - is given, interpretation of the following backslash-escaped - characters is enabled. The --EE option disables the interpreta- - tion of these escape characters, even on systems where they are - interpreted by default. The xxppgg__eecchhoo shell option may be used - to dynamically determine whether or not eecchhoo expands these - escape characters by default. eecchhoo does not interpret ---- to - mean the end of options. eecchhoo interprets the following escape + is given, interpretation of the following backslash-escaped + characters is enabled. The --EE option disables the interpreta- + tion of these escape characters, even on systems where they are + interpreted by default. The xxppgg__eecchhoo shell option may be used + to dynamically determine whether or not eecchhoo expands these + escape characters by default. eecchhoo does not interpret ---- to + mean the end of options. eecchhoo interprets the following escape sequences: \\aa alert (bell) \\bb backspace @@ -4644,190 +4659,190 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS \\tt horizontal tab \\vv vertical tab \\\\ backslash - \\00_n_n_n the eight-bit character whose value is the octal value + \\00_n_n_n the eight-bit character whose value is the octal value _n_n_n (zero to three octal digits) - \\xx_H_H the eight-bit character whose value is the hexadecimal + \\xx_H_H the eight-bit character whose value is the hexadecimal value _H_H (one or two hex digits) - \\uu_H_H_H_H the Unicode (ISO/IEC 10646) character whose value is the + \\uu_H_H_H_H the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value _H_H_H_H (one to four hex digits) \\UU_H_H_H_H_H_H_H_H - the Unicode (ISO/IEC 10646) character whose value is the + the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value _H_H_H_H_H_H_H_H (one to eight hex digits) eennaabbllee [--aa] [--ddnnppss] [--ff _f_i_l_e_n_a_m_e] [_n_a_m_e ...] - Enable and disable builtin shell commands. Disabling a builtin + Enable and disable builtin shell commands. Disabling a builtin allows a disk command which has the same name as a shell builtin - to be executed without specifying a full pathname, even though - the shell normally searches for builtins before disk commands. - If --nn is used, each _n_a_m_e is disabled; otherwise, _n_a_m_e_s are + to be executed without specifying a full pathname, even though + the shell normally searches for builtins before disk commands. + If --nn is used, each _n_a_m_e is disabled; otherwise, _n_a_m_e_s are enabled. For example, to use the tteesstt binary found via the PPAATTHH - instead of the shell builtin version, run ``enable -n test''. - The --ff option means to load the new builtin command _n_a_m_e from + instead of the shell builtin version, run ``enable -n test''. + The --ff option means to load the new builtin command _n_a_m_e from shared object _f_i_l_e_n_a_m_e, on systems that support dynamic loading. - The --dd option will delete a builtin previously loaded with --ff. + The --dd option will delete a builtin previously loaded with --ff. If no _n_a_m_e arguments are given, or if the --pp option is supplied, a list of shell builtins is printed. With no other option argu- - ments, the list consists of all enabled shell builtins. If --nn - is supplied, only disabled builtins are printed. If --aa is sup- - plied, the list printed includes all builtins, with an indica- - tion of whether or not each is enabled. If --ss is supplied, the - output is restricted to the POSIX _s_p_e_c_i_a_l builtins. The return - value is 0 unless a _n_a_m_e is not a shell builtin or there is an + ments, the list consists of all enabled shell builtins. If --nn + is supplied, only disabled builtins are printed. If --aa is sup- + plied, the list printed includes all builtins, with an indica- + tion of whether or not each is enabled. If --ss is supplied, the + output is restricted to the POSIX _s_p_e_c_i_a_l builtins. The return + value is 0 unless a _n_a_m_e is not a shell builtin or there is an error loading a new builtin from a shared object. eevvaall [_a_r_g ...] - The _a_r_gs are read and concatenated together into a single com- - mand. This command is then read and executed by the shell, and - its exit status is returned as the value of eevvaall. If there are + The _a_r_gs are read and concatenated together into a single com- + mand. This command is then read and executed by the shell, and + its exit status is returned as the value of eevvaall. If there are no _a_r_g_s, or only null arguments, eevvaall returns 0. eexxeecc [--ccll] [--aa _n_a_m_e] [_c_o_m_m_a_n_d [_a_r_g_u_m_e_n_t_s]] - If _c_o_m_m_a_n_d is specified, it replaces the shell. No new process - is created. The _a_r_g_u_m_e_n_t_s become the arguments to _c_o_m_m_a_n_d. If + If _c_o_m_m_a_n_d is specified, it replaces the shell. No new process + is created. The _a_r_g_u_m_e_n_t_s become the arguments to _c_o_m_m_a_n_d. If the --ll option is supplied, the shell places a dash at the begin- - ning of the zeroth argument passed to _c_o_m_m_a_n_d. This is what + ning of the zeroth argument passed to _c_o_m_m_a_n_d. This is what _l_o_g_i_n(1) does. The --cc option causes _c_o_m_m_a_n_d to be executed with - an empty environment. If --aa is supplied, the shell passes _n_a_m_e + an empty environment. If --aa is supplied, the shell passes _n_a_m_e as the zeroth argument to the executed command. If _c_o_m_m_a_n_d can- - not be executed for some reason, a non-interactive shell exits, - unless the eexxeeccffaaiill shell option is enabled. In that case, it - returns failure. An interactive shell returns failure if the - file cannot be executed. A subshell exits unconditionally if - eexxeecc fails. If _c_o_m_m_a_n_d is not specified, any redirections take - effect in the current shell, and the return status is 0. If + not be executed for some reason, a non-interactive shell exits, + unless the eexxeeccffaaiill shell option is enabled. In that case, it + returns failure. An interactive shell returns failure if the + file cannot be executed. A subshell exits unconditionally if + eexxeecc fails. If _c_o_m_m_a_n_d is not specified, any redirections take + effect in the current shell, and the return status is 0. If there is a redirection error, the return status is 1. eexxiitt [_n] - Cause the shell to exit with a status of _n. If _n is omitted, + Cause the shell to exit with a status of _n. If _n is omitted, the exit status is that of the last command executed. A trap on EEXXIITT is executed before the shell terminates. eexxppoorrtt [--ffnn] [_n_a_m_e[=_w_o_r_d]] ... eexxppoorrtt --pp - The supplied _n_a_m_e_s are marked for automatic export to the envi- - ronment of subsequently executed commands. If the --ff option is - given, the _n_a_m_e_s refer to functions. If no _n_a_m_e_s are given, or - if the --pp option is supplied, a list of names of all exported - variables is printed. The --nn option causes the export property + The supplied _n_a_m_e_s are marked for automatic export to the envi- + ronment of subsequently executed commands. If the --ff option is + given, the _n_a_m_e_s refer to functions. If no _n_a_m_e_s are given, or + if the --pp option is supplied, a list of names of all exported + variables is printed. The --nn option causes the export property to be removed from each _n_a_m_e. If a variable name is followed by =_w_o_r_d, the value of the variable is set to _w_o_r_d. eexxppoorrtt returns an exit status of 0 unless an invalid option is encountered, one - of the _n_a_m_e_s is not a valid shell variable name, or --ff is sup- + of the _n_a_m_e_s is not a valid shell variable name, or --ff is sup- plied with a _n_a_m_e that is not a function. ffcc [--ee _e_n_a_m_e] [--llnnrr] [_f_i_r_s_t] [_l_a_s_t] ffcc --ss [_p_a_t=_r_e_p] [_c_m_d] - The first form selects a range of commands from _f_i_r_s_t to _l_a_s_t - from the history list and displays or edits and re-executes - them. _F_i_r_s_t and _l_a_s_t may be specified as a string (to locate - the last command beginning with that string) or as a number (an - index into the history list, where a negative number is used as - an offset from the current command number). If _l_a_s_t is not - specified it is set to the current command for listing (so that - ``fc -l -10'' prints the last 10 commands) and to _f_i_r_s_t other- - wise. If _f_i_r_s_t is not specified it is set to the previous com- + The first form selects a range of commands from _f_i_r_s_t to _l_a_s_t + from the history list and displays or edits and re-executes + them. _F_i_r_s_t and _l_a_s_t may be specified as a string (to locate + the last command beginning with that string) or as a number (an + index into the history list, where a negative number is used as + an offset from the current command number). If _l_a_s_t is not + specified it is set to the current command for listing (so that + ``fc -l -10'' prints the last 10 commands) and to _f_i_r_s_t other- + wise. If _f_i_r_s_t is not specified it is set to the previous com- mand for editing and -16 for listing. - The --nn option suppresses the command numbers when listing. The - --rr option reverses the order of the commands. If the --ll option - is given, the commands are listed on standard output. Other- - wise, the editor given by _e_n_a_m_e is invoked on a file containing - those commands. If _e_n_a_m_e is not given, the value of the FFCCEEDDIITT - variable is used, and the value of EEDDIITTOORR if FFCCEEDDIITT is not set. - If neither variable is set, _v_i is used. When editing is com- + The --nn option suppresses the command numbers when listing. The + --rr option reverses the order of the commands. If the --ll option + is given, the commands are listed on standard output. Other- + wise, the editor given by _e_n_a_m_e is invoked on a file containing + those commands. If _e_n_a_m_e is not given, the value of the FFCCEEDDIITT + variable is used, and the value of EEDDIITTOORR if FFCCEEDDIITT is not set. + If neither variable is set, _v_i is used. When editing is com- plete, the edited commands are echoed and executed. - In the second form, _c_o_m_m_a_n_d is re-executed after each instance - of _p_a_t is replaced by _r_e_p. _C_o_m_m_a_n_d is interpreted the same as - _f_i_r_s_t above. A useful alias to use with this is ``r="fc -s"'', - so that typing ``r cc'' runs the last command beginning with + In the second form, _c_o_m_m_a_n_d is re-executed after each instance + of _p_a_t is replaced by _r_e_p. _C_o_m_m_a_n_d is interpreted the same as + _f_i_r_s_t above. A useful alias to use with this is ``r="fc -s"'', + so that typing ``r cc'' runs the last command beginning with ``cc'' and typing ``r'' re-executes the last command. - If the first form is used, the return value is 0 unless an - invalid option is encountered or _f_i_r_s_t or _l_a_s_t specify history - lines out of range. If the --ee option is supplied, the return + If the first form is used, the return value is 0 unless an + invalid option is encountered or _f_i_r_s_t or _l_a_s_t specify history + lines out of range. If the --ee option is supplied, the return value is the value of the last command executed or failure if an error occurs with the temporary file of commands. If the second - form is used, the return status is that of the command re-exe- - cuted, unless _c_m_d does not specify a valid history line, in + form is used, the return status is that of the command re-exe- + cuted, unless _c_m_d does not specify a valid history line, in which case ffcc returns failure. ffgg [_j_o_b_s_p_e_c] - Resume _j_o_b_s_p_e_c in the foreground, and make it the current job. + Resume _j_o_b_s_p_e_c in the foreground, and make it the current job. If _j_o_b_s_p_e_c is not present, the shell's notion of the _c_u_r_r_e_n_t _j_o_b - is used. The return value is that of the command placed into - the foreground, or failure if run when job control is disabled + is used. The return value is that of the command placed into + the foreground, or failure if run when job control is disabled or, when run with job control enabled, if _j_o_b_s_p_e_c does not spec- - ify a valid job or _j_o_b_s_p_e_c specifies a job that was started + ify a valid job or _j_o_b_s_p_e_c specifies a job that was started without job control. ggeettooppttss _o_p_t_s_t_r_i_n_g _n_a_m_e [_a_r_g_s] - ggeettooppttss is used by shell procedures to parse positional parame- - ters. _o_p_t_s_t_r_i_n_g contains the option characters to be recog- - nized; if a character is followed by a colon, the option is - expected to have an argument, which should be separated from it - by white space. The colon and question mark characters may not - be used as option characters. Each time it is invoked, ggeettooppttss - places the next option in the shell variable _n_a_m_e, initializing + ggeettooppttss is used by shell procedures to parse positional parame- + ters. _o_p_t_s_t_r_i_n_g contains the option characters to be recog- + nized; if a character is followed by a colon, the option is + expected to have an argument, which should be separated from it + by white space. The colon and question mark characters may not + be used as option characters. Each time it is invoked, ggeettooppttss + places the next option in the shell variable _n_a_m_e, initializing _n_a_m_e if it does not exist, and the index of the next argument to be processed into the variable OOPPTTIINNDD. OOPPTTIINNDD is initialized to - 1 each time the shell or a shell script is invoked. When an - option requires an argument, ggeettooppttss places that argument into - the variable OOPPTTAARRGG. The shell does not reset OOPPTTIINNDD automati- - cally; it must be manually reset between multiple calls to + 1 each time the shell or a shell script is invoked. When an + option requires an argument, ggeettooppttss places that argument into + the variable OOPPTTAARRGG. The shell does not reset OOPPTTIINNDD automati- + cally; it must be manually reset between multiple calls to ggeettooppttss within the same shell invocation if a new set of parame- ters is to be used. - When the end of options is encountered, ggeettooppttss exits with a - return value greater than zero. OOPPTTIINNDD is set to the index of + When the end of options is encountered, ggeettooppttss exits with a + return value greater than zero. OOPPTTIINNDD is set to the index of the first non-option argument, and _n_a_m_e is set to ?. - ggeettooppttss normally parses the positional parameters, but if more + ggeettooppttss normally parses the positional parameters, but if more arguments are given in _a_r_g_s, ggeettooppttss parses those instead. - ggeettooppttss can report errors in two ways. If the first character - of _o_p_t_s_t_r_i_n_g is a colon, _s_i_l_e_n_t error reporting is used. In - normal operation, diagnostic messages are printed when invalid - options or missing option arguments are encountered. If the - variable OOPPTTEERRRR is set to 0, no error messages will be dis- + ggeettooppttss can report errors in two ways. If the first character + of _o_p_t_s_t_r_i_n_g is a colon, _s_i_l_e_n_t error reporting is used. In + normal operation, diagnostic messages are printed when invalid + options or missing option arguments are encountered. If the + variable OOPPTTEERRRR is set to 0, no error messages will be dis- played, even if the first character of _o_p_t_s_t_r_i_n_g is not a colon. If an invalid option is seen, ggeettooppttss places ? into _n_a_m_e and, if - not silent, prints an error message and unsets OOPPTTAARRGG. If - ggeettooppttss is silent, the option character found is placed in + not silent, prints an error message and unsets OOPPTTAARRGG. If + ggeettooppttss is silent, the option character found is placed in OOPPTTAARRGG and no diagnostic message is printed. - If a required argument is not found, and ggeettooppttss is not silent, - a question mark (??) is placed in _n_a_m_e, OOPPTTAARRGG is unset, and a - diagnostic message is printed. If ggeettooppttss is silent, then a - colon (::) is placed in _n_a_m_e and OOPPTTAARRGG is set to the option + If a required argument is not found, and ggeettooppttss is not silent, + a question mark (??) is placed in _n_a_m_e, OOPPTTAARRGG is unset, and a + diagnostic message is printed. If ggeettooppttss is silent, then a + colon (::) is placed in _n_a_m_e and OOPPTTAARRGG is set to the option character found. - ggeettooppttss returns true if an option, specified or unspecified, is + ggeettooppttss returns true if an option, specified or unspecified, is found. It returns false if the end of options is encountered or an error occurs. hhaasshh [--llrr] [--pp _f_i_l_e_n_a_m_e] [--ddtt] [_n_a_m_e] Each time hhaasshh is invoked, the full pathname of the command _n_a_m_e - is determined by searching the directories in $$PPAATTHH and remem- + is determined by searching the directories in $$PPAATTHH and remem- bered. Any previously-remembered pathname is discarded. If the --pp option is supplied, no path search is performed, and _f_i_l_e_n_a_m_e - is used as the full filename of the command. The --rr option - causes the shell to forget all remembered locations. The --dd - option causes the shell to forget the remembered location of - each _n_a_m_e. If the --tt option is supplied, the full pathname to - which each _n_a_m_e corresponds is printed. If multiple _n_a_m_e argu- - ments are supplied with --tt, the _n_a_m_e is printed before the - hashed full pathname. The --ll option causes output to be dis- + is used as the full filename of the command. The --rr option + causes the shell to forget all remembered locations. The --dd + option causes the shell to forget the remembered location of + each _n_a_m_e. If the --tt option is supplied, the full pathname to + which each _n_a_m_e corresponds is printed. If multiple _n_a_m_e argu- + ments are supplied with --tt, the _n_a_m_e is printed before the + hashed full pathname. The --ll option causes output to be dis- played in a format that may be reused as input. If no arguments - are given, or if only --ll is supplied, information about remem- - bered commands is printed. The return status is true unless a + are given, or if only --ll is supplied, information about remem- + bered commands is printed. The return status is true unless a _n_a_m_e is not found or an invalid option is supplied. hheellpp [--ddmmss] [_p_a_t_t_e_r_n] - Display helpful information about builtin commands. If _p_a_t_t_e_r_n - is specified, hheellpp gives detailed help on all commands matching - _p_a_t_t_e_r_n; otherwise help for all the builtins and shell control + Display helpful information about builtin commands. If _p_a_t_t_e_r_n + is specified, hheellpp gives detailed help on all commands matching + _p_a_t_t_e_r_n; otherwise help for all the builtins and shell control structures is printed. --dd Display a short description of each _p_a_t_t_e_r_n --mm Display the description of each _p_a_t_t_e_r_n in a manpage-like @@ -4844,49 +4859,49 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS hhiissttoorryy --ss _a_r_g [_a_r_g _._._.] With no options, display the command history list with line num- bers. Lines listed with a ** have been modified. An argument of - _n lists only the last _n lines. If the shell variable HHIISSTTTTIIMMEE-- - FFOORRMMAATT is set and not null, it is used as a format string for - _s_t_r_f_t_i_m_e(3) to display the time stamp associated with each dis- - played history entry. No intervening blank is printed between - the formatted time stamp and the history line. If _f_i_l_e_n_a_m_e is - supplied, it is used as the name of the history file; if not, - the value of HHIISSTTFFIILLEE is used. Options, if supplied, have the + _n lists only the last _n lines. If the shell variable HHIISSTTTTIIMMEE-- + FFOORRMMAATT is set and not null, it is used as a format string for + _s_t_r_f_t_i_m_e(3) to display the time stamp associated with each dis- + played history entry. No intervening blank is printed between + the formatted time stamp and the history line. If _f_i_l_e_n_a_m_e is + supplied, it is used as the name of the history file; if not, + the value of HHIISSTTFFIILLEE is used. Options, if supplied, have the following meanings: --cc Clear the history list by deleting all the entries. --dd _o_f_f_s_e_t - Delete the history entry at position _o_f_f_s_e_t. If _o_f_f_s_e_t + Delete the history entry at position _o_f_f_s_e_t. If _o_f_f_s_e_t is negative, it is interpreted as relative to one greater than the last history position, so negative indices count - back from the end of the history, and an index of -1 + back from the end of the history, and an index of -1 refers to the current hhiissttoorryy --dd command. - --aa Append the ``new'' history lines to the history file. - These are history lines entered since the beginning of + --aa Append the ``new'' history lines to the history file. + These are history lines entered since the beginning of the current bbaasshh session, but not already appended to the history file. - --nn Read the history lines not already read from the history - file into the current history list. These are lines - appended to the history file since the beginning of the + --nn Read the history lines not already read from the history + file into the current history list. These are lines + appended to the history file since the beginning of the current bbaasshh session. - --rr Read the contents of the history file and append them to + --rr Read the contents of the history file and append them to the current history list. --ww Write the current history list to the history file, over- writing the history file's contents. - --pp Perform history substitution on the following _a_r_g_s and - display the result on the standard output. Does not - store the results in the history list. Each _a_r_g must be + --pp Perform history substitution on the following _a_r_g_s and + display the result on the standard output. Does not + store the results in the history list. Each _a_r_g must be quoted to disable normal history expansion. - --ss Store the _a_r_g_s in the history list as a single entry. - The last command in the history list is removed before + --ss Store the _a_r_g_s in the history list as a single entry. + The last command in the history list is removed before the _a_r_g_s are added. - If the HHIISSTTTTIIMMEEFFOORRMMAATT variable is set, the time stamp informa- - tion associated with each history entry is written to the his- - tory file, marked with the history comment character. When the - history file is read, lines beginning with the history comment - character followed immediately by a digit are interpreted as + If the HHIISSTTTTIIMMEEFFOORRMMAATT variable is set, the time stamp informa- + tion associated with each history entry is written to the his- + tory file, marked with the history comment character. When the + history file is read, lines beginning with the history comment + character followed immediately by a digit are interpreted as timestamps for the following history entry. The return value is 0 unless an invalid option is encountered, an error occurs while - reading or writing the history file, an invalid _o_f_f_s_e_t is sup- + reading or writing the history file, an invalid _o_f_f_s_e_t is sup- plied as an argument to --dd, or the history expansion supplied as an argument to --pp fails. @@ -4895,210 +4910,210 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS The first form lists the active jobs. The options have the fol- lowing meanings: --ll List process IDs in addition to the normal information. - --nn Display information only about jobs that have changed + --nn Display information only about jobs that have changed status since the user was last notified of their status. - --pp List only the process ID of the job's process group + --pp List only the process ID of the job's process group leader. --rr Display only running jobs. --ss Display only stopped jobs. - If _j_o_b_s_p_e_c is given, output is restricted to information about - that job. The return status is 0 unless an invalid option is + If _j_o_b_s_p_e_c is given, output is restricted to information about + that job. The return status is 0 unless an invalid option is encountered or an invalid _j_o_b_s_p_e_c is supplied. If the --xx option is supplied, jjoobbss replaces any _j_o_b_s_p_e_c found in - _c_o_m_m_a_n_d or _a_r_g_s with the corresponding process group ID, and + _c_o_m_m_a_n_d or _a_r_g_s with the corresponding process group ID, and executes _c_o_m_m_a_n_d passing it _a_r_g_s, returning its exit status. kkiillll [--ss _s_i_g_s_p_e_c | --nn _s_i_g_n_u_m | --_s_i_g_s_p_e_c] [_p_i_d | _j_o_b_s_p_e_c] ... kkiillll --ll|--LL [_s_i_g_s_p_e_c | _e_x_i_t___s_t_a_t_u_s] - Send the signal named by _s_i_g_s_p_e_c or _s_i_g_n_u_m to the processes - named by _p_i_d or _j_o_b_s_p_e_c. _s_i_g_s_p_e_c is either a case-insensitive - signal name such as SSIIGGKKIILLLL (with or without the SSIIGG prefix) or - a signal number; _s_i_g_n_u_m is a signal number. If _s_i_g_s_p_e_c is not - present, then SSIIGGTTEERRMM is assumed. An argument of --ll lists the - signal names. If any arguments are supplied when --ll is given, - the names of the signals corresponding to the arguments are + Send the signal named by _s_i_g_s_p_e_c or _s_i_g_n_u_m to the processes + named by _p_i_d or _j_o_b_s_p_e_c. _s_i_g_s_p_e_c is either a case-insensitive + signal name such as SSIIGGKKIILLLL (with or without the SSIIGG prefix) or + a signal number; _s_i_g_n_u_m is a signal number. If _s_i_g_s_p_e_c is not + present, then SSIIGGTTEERRMM is assumed. An argument of --ll lists the + signal names. If any arguments are supplied when --ll is given, + the names of the signals corresponding to the arguments are listed, and the return status is 0. The _e_x_i_t___s_t_a_t_u_s argument to - --ll is a number specifying either a signal number or the exit - status of a process terminated by a signal. The --LL option is - equivalent to --ll. kkiillll returns true if at least one signal was - successfully sent, or false if an error occurs or an invalid + --ll is a number specifying either a signal number or the exit + status of a process terminated by a signal. The --LL option is + equivalent to --ll. kkiillll returns true if at least one signal was + successfully sent, or false if an error occurs or an invalid option is encountered. lleett _a_r_g [_a_r_g ...] Each _a_r_g is an arithmetic expression to be evaluated (see AARRIITTHH-- - MMEETTIICC EEVVAALLUUAATTIIOONN above). If the last _a_r_g evaluates to 0, lleett + MMEETTIICC EEVVAALLUUAATTIIOONN above). If the last _a_r_g evaluates to 0, lleett returns 1; 0 is returned otherwise. llooccaall [_o_p_t_i_o_n] [_n_a_m_e[=_v_a_l_u_e] ... | - ] - For each argument, a local variable named _n_a_m_e is created, and - assigned _v_a_l_u_e. The _o_p_t_i_o_n can be any of the options accepted + For each argument, a local variable named _n_a_m_e is created, and + assigned _v_a_l_u_e. The _o_p_t_i_o_n can be any of the options accepted by ddeeccllaarree. When llooccaall is used within a function, it causes the - variable _n_a_m_e to have a visible scope restricted to that func- - tion and its children. If _n_a_m_e is -, the set of shell options - is made local to the function in which llooccaall is invoked: shell - options changed using the sseett builtin inside the function are - restored to their original values when the function returns. - With no operands, llooccaall writes a list of local variables to the - standard output. It is an error to use llooccaall when not within a + variable _n_a_m_e to have a visible scope restricted to that func- + tion and its children. If _n_a_m_e is -, the set of shell options + is made local to the function in which llooccaall is invoked: shell + options changed using the sseett builtin inside the function are + restored to their original values when the function returns. + With no operands, llooccaall writes a list of local variables to the + standard output. It is an error to use llooccaall when not within a function. The return status is 0 unless llooccaall is used outside a - function, an invalid _n_a_m_e is supplied, or _n_a_m_e is a readonly + function, an invalid _n_a_m_e is supplied, or _n_a_m_e is a readonly variable. llooggoouutt Exit a login shell. - mmaappffiillee [--dd _d_e_l_i_m] [--nn _c_o_u_n_t] [--OO _o_r_i_g_i_n] [--ss _c_o_u_n_t] [--tt] [--uu _f_d] [--CC + mmaappffiillee [--dd _d_e_l_i_m] [--nn _c_o_u_n_t] [--OO _o_r_i_g_i_n] [--ss _c_o_u_n_t] [--tt] [--uu _f_d] [--CC _c_a_l_l_b_a_c_k] [--cc _q_u_a_n_t_u_m] [_a_r_r_a_y] rreeaaddaarrrraayy [--dd _d_e_l_i_m] [--nn _c_o_u_n_t] [--OO _o_r_i_g_i_n] [--ss _c_o_u_n_t] [--tt] [--uu _f_d] [--CC _c_a_l_l_b_a_c_k] [--cc _q_u_a_n_t_u_m] [_a_r_r_a_y] - Read lines from the standard input into the indexed array vari- - able _a_r_r_a_y, or from file descriptor _f_d if the --uu option is sup- - plied. The variable MMAAPPFFIILLEE is the default _a_r_r_a_y. Options, if + Read lines from the standard input into the indexed array vari- + able _a_r_r_a_y, or from file descriptor _f_d if the --uu option is sup- + plied. The variable MMAAPPFFIILLEE is the default _a_r_r_a_y. Options, if supplied, have the following meanings: - --dd The first character of _d_e_l_i_m is used to terminate each - input line, rather than newline. If _d_e_l_i_m is the empty + --dd The first character of _d_e_l_i_m is used to terminate each + input line, rather than newline. If _d_e_l_i_m is the empty string, mmaappffiillee will terminate a line when it reads a NUL character. - --nn Copy at most _c_o_u_n_t lines. If _c_o_u_n_t is 0, all lines are + --nn Copy at most _c_o_u_n_t lines. If _c_o_u_n_t is 0, all lines are copied. - --OO Begin assigning to _a_r_r_a_y at index _o_r_i_g_i_n. The default + --OO Begin assigning to _a_r_r_a_y at index _o_r_i_g_i_n. The default index is 0. --ss Discard the first _c_o_u_n_t lines read. - --tt Remove a trailing _d_e_l_i_m (default newline) from each line + --tt Remove a trailing _d_e_l_i_m (default newline) from each line read. - --uu Read lines from file descriptor _f_d instead of the stan- + --uu Read lines from file descriptor _f_d instead of the stan- dard input. - --CC Evaluate _c_a_l_l_b_a_c_k each time _q_u_a_n_t_u_m lines are read. The + --CC Evaluate _c_a_l_l_b_a_c_k each time _q_u_a_n_t_u_m lines are read. The --cc option specifies _q_u_a_n_t_u_m. - --cc Specify the number of lines read between each call to + --cc Specify the number of lines read between each call to _c_a_l_l_b_a_c_k. - If --CC is specified without --cc, the default quantum is 5000. + If --CC is specified without --cc, the default quantum is 5000. When _c_a_l_l_b_a_c_k is evaluated, it is supplied the index of the next array element to be assigned and the line to be assigned to that - element as additional arguments. _c_a_l_l_b_a_c_k is evaluated after + element as additional arguments. _c_a_l_l_b_a_c_k is evaluated after the line is read but before the array element is assigned. - If not supplied with an explicit origin, mmaappffiillee will clear + If not supplied with an explicit origin, mmaappffiillee will clear _a_r_r_a_y before assigning to it. - mmaappffiillee returns successfully unless an invalid option or option - argument is supplied, _a_r_r_a_y is invalid or unassignable, or if + mmaappffiillee returns successfully unless an invalid option or option + argument is supplied, _a_r_r_a_y is invalid or unassignable, or if _a_r_r_a_y is not an indexed array. ppooppdd [-nn] [+_n] [-_n] - Removes entries from the directory stack. With no arguments, - removes the top directory from the stack, and performs a ccdd to + Removes entries from the directory stack. With no arguments, + removes the top directory from the stack, and performs a ccdd to the new top directory. Arguments, if supplied, have the follow- ing meanings: - --nn Suppresses the normal change of directory when removing - directories from the stack, so that only the stack is + --nn Suppresses the normal change of directory when removing + directories from the stack, so that only the stack is manipulated. - ++_n Removes the _nth entry counting from the left of the list - shown by ddiirrss, starting with zero. For example: ``popd + ++_n Removes the _nth entry counting from the left of the list + shown by ddiirrss, starting with zero. For example: ``popd +0'' removes the first directory, ``popd +1'' the second. --_n Removes the _nth entry counting from the right of the list - shown by ddiirrss, starting with zero. For example: ``popd - -0'' removes the last directory, ``popd -1'' the next to + shown by ddiirrss, starting with zero. For example: ``popd + -0'' removes the last directory, ``popd -1'' the next to last. - If the ppooppdd command is successful, a ddiirrss is performed as well, - and the return status is 0. ppooppdd returns false if an invalid + If the ppooppdd command is successful, a ddiirrss is performed as well, + and the return status is 0. ppooppdd returns false if an invalid option is encountered, the directory stack is empty, a non-exis- tent directory stack entry is specified, or the directory change fails. pprriinnttff [--vv _v_a_r] _f_o_r_m_a_t [_a_r_g_u_m_e_n_t_s] - Write the formatted _a_r_g_u_m_e_n_t_s to the standard output under the - control of the _f_o_r_m_a_t. The --vv option causes the output to be - assigned to the variable _v_a_r rather than being printed to the + Write the formatted _a_r_g_u_m_e_n_t_s to the standard output under the + control of the _f_o_r_m_a_t. The --vv option causes the output to be + assigned to the variable _v_a_r rather than being printed to the standard output. - The _f_o_r_m_a_t is a character string which contains three types of - objects: plain characters, which are simply copied to standard - output, character escape sequences, which are converted and - copied to the standard output, and format specifications, each - of which causes printing of the next successive _a_r_g_u_m_e_n_t. In + The _f_o_r_m_a_t is a character string which contains three types of + objects: plain characters, which are simply copied to standard + output, character escape sequences, which are converted and + copied to the standard output, and format specifications, each + of which causes printing of the next successive _a_r_g_u_m_e_n_t. In addition to the standard _p_r_i_n_t_f(1) format specifications, pprriinnttff interprets the following extensions: %%bb causes pprriinnttff to expand backslash escape sequences in the corresponding _a_r_g_u_m_e_n_t in the same way as eecchhoo --ee. - %%qq causes pprriinnttff to output the corresponding _a_r_g_u_m_e_n_t in a + %%qq causes pprriinnttff to output the corresponding _a_r_g_u_m_e_n_t in a format that can be reused as shell input. %%((_d_a_t_e_f_m_t))TT - causes pprriinnttff to output the date-time string resulting - from using _d_a_t_e_f_m_t as a format string for _s_t_r_f_t_i_m_e(3). + causes pprriinnttff to output the date-time string resulting + from using _d_a_t_e_f_m_t as a format string for _s_t_r_f_t_i_m_e(3). The corresponding _a_r_g_u_m_e_n_t is an integer representing the - number of seconds since the epoch. Two special argument - values may be used: -1 represents the current time, and - -2 represents the time the shell was invoked. If no - argument is specified, conversion behaves as if -1 had - been given. This is an exception to the usual pprriinnttff + number of seconds since the epoch. Two special argument + values may be used: -1 represents the current time, and + -2 represents the time the shell was invoked. If no + argument is specified, conversion behaves as if -1 had + been given. This is an exception to the usual pprriinnttff behavior. - Arguments to non-string format specifiers are treated as C con- + Arguments to non-string format specifiers are treated as C con- stants, except that a leading plus or minus sign is allowed, and - if the leading character is a single or double quote, the value + if the leading character is a single or double quote, the value is the ASCII value of the following character. - The _f_o_r_m_a_t is reused as necessary to consume all of the _a_r_g_u_- + The _f_o_r_m_a_t is reused as necessary to consume all of the _a_r_g_u_- _m_e_n_t_s. If the _f_o_r_m_a_t requires more _a_r_g_u_m_e_n_t_s than are supplied, - the extra format specifications behave as if a zero value or - null string, as appropriate, had been supplied. The return + the extra format specifications behave as if a zero value or + null string, as appropriate, had been supplied. The return value is zero on success, non-zero on failure. ppuusshhdd [--nn] [+_n] [-_n] ppuusshhdd [--nn] [_d_i_r] - Adds a directory to the top of the directory stack, or rotates - the stack, making the new top of the stack the current working - directory. With no arguments, ppuusshhdd exchanges the top two - directories and returns 0, unless the directory stack is empty. + Adds a directory to the top of the directory stack, or rotates + the stack, making the new top of the stack the current working + directory. With no arguments, ppuusshhdd exchanges the top two + directories and returns 0, unless the directory stack is empty. Arguments, if supplied, have the following meanings: - --nn Suppresses the normal change of directory when rotating - or adding directories to the stack, so that only the + --nn Suppresses the normal change of directory when rotating + or adding directories to the stack, so that only the stack is manipulated. - ++_n Rotates the stack so that the _nth directory (counting - from the left of the list shown by ddiirrss, starting with + ++_n Rotates the stack so that the _nth directory (counting + from the left of the list shown by ddiirrss, starting with zero) is at the top. - --_n Rotates the stack so that the _nth directory (counting - from the right of the list shown by ddiirrss, starting with + --_n Rotates the stack so that the _nth directory (counting + from the right of the list shown by ddiirrss, starting with zero) is at the top. _d_i_r Adds _d_i_r to the directory stack at the top, making it the - new current working directory as if it had been supplied + new current working directory as if it had been supplied as the argument to the ccdd builtin. If the ppuusshhdd command is successful, a ddiirrss is performed as well. - If the first form is used, ppuusshhdd returns 0 unless the cd to _d_i_r - fails. With the second form, ppuusshhdd returns 0 unless the direc- - tory stack is empty, a non-existent directory stack element is - specified, or the directory change to the specified new current + If the first form is used, ppuusshhdd returns 0 unless the cd to _d_i_r + fails. With the second form, ppuusshhdd returns 0 unless the direc- + tory stack is empty, a non-existent directory stack element is + specified, or the directory change to the specified new current directory fails. ppwwdd [--LLPP] - Print the absolute pathname of the current working directory. + Print the absolute pathname of the current working directory. The pathname printed contains no symbolic links if the --PP option is supplied or the --oo pphhyyssiiccaall option to the sseett builtin command - is enabled. If the --LL option is used, the pathname printed may - contain symbolic links. The return status is 0 unless an error - occurs while reading the name of the current directory or an + is enabled. If the --LL option is used, the pathname printed may + contain symbolic links. The return status is 0 unless an error + occurs while reading the name of the current directory or an invalid option is supplied. rreeaadd [--eerrss] [--aa _a_n_a_m_e] [--dd _d_e_l_i_m] [--ii _t_e_x_t] [--nn _n_c_h_a_r_s] [--NN _n_c_h_a_r_s] [--pp _p_r_o_m_p_t] [--tt _t_i_m_e_o_u_t] [--uu _f_d] [_n_a_m_e ...] - One line is read from the standard input, or from the file - descriptor _f_d supplied as an argument to the --uu option, split - into words as described above under WWoorrdd SSpplliittttiinngg, and the + One line is read from the standard input, or from the file + descriptor _f_d supplied as an argument to the --uu option, split + into words as described above under WWoorrdd SSpplliittttiinngg, and the first word is assigned to the first _n_a_m_e, the second word to the second _n_a_m_e, and so on. If there are more words than names, the remaining words and their intervening delimiters are assigned to - the last _n_a_m_e. If there are fewer words read from the input - stream than names, the remaining names are assigned empty val- - ues. The characters in IIFFSS are used to split the line into + the last _n_a_m_e. If there are fewer words read from the input + stream than names, the remaining names are assigned empty val- + ues. The characters in IIFFSS are used to split the line into words using the same rules the shell uses for expansion (described above under WWoorrdd SSpplliittttiinngg). The backslash character (\\) may be used to remove any special meaning for the next char- - acter read and for line continuation. Options, if supplied, + acter read and for line continuation. Options, if supplied, have the following meanings: --aa _a_n_a_m_e The words are assigned to sequential indices of the array @@ -5106,31 +5121,31 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS new values are assigned. Other _n_a_m_e arguments are ignored. --dd _d_e_l_i_m - The first character of _d_e_l_i_m is used to terminate the - input line, rather than newline. If _d_e_l_i_m is the empty - string, rreeaadd will terminate a line when it reads a NUL + The first character of _d_e_l_i_m is used to terminate the + input line, rather than newline. If _d_e_l_i_m is the empty + string, rreeaadd will terminate a line when it reads a NUL character. --ee If the standard input is coming from a terminal, rreeaaddlliinnee - (see RREEAADDLLIINNEE above) is used to obtain the line. Read- - line uses the current (or default, if line editing was - not previously active) editing settings, but uses Read- + (see RREEAADDLLIINNEE above) is used to obtain the line. Read- + line uses the current (or default, if line editing was + not previously active) editing settings, but uses Read- line's default filename completion. --ii _t_e_x_t - If rreeaaddlliinnee is being used to read the line, _t_e_x_t is + If rreeaaddlliinnee is being used to read the line, _t_e_x_t is placed into the editing buffer before editing begins. --nn _n_c_h_a_r_s - rreeaadd returns after reading _n_c_h_a_r_s characters rather than + rreeaadd returns after reading _n_c_h_a_r_s characters rather than waiting for a complete line of input, but honors a delim- - iter if fewer than _n_c_h_a_r_s characters are read before the + iter if fewer than _n_c_h_a_r_s characters are read before the delimiter. --NN _n_c_h_a_r_s - rreeaadd returns after reading exactly _n_c_h_a_r_s characters - rather than waiting for a complete line of input, unless - EOF is encountered or rreeaadd times out. Delimiter charac- - ters encountered in the input are not treated specially - and do not cause rreeaadd to return until _n_c_h_a_r_s characters - are read. The result is not split on the characters in - IIFFSS; the intent is that the variable is assigned exactly + rreeaadd returns after reading exactly _n_c_h_a_r_s characters + rather than waiting for a complete line of input, unless + EOF is encountered or rreeaadd times out. Delimiter charac- + ters encountered in the input are not treated specially + and do not cause rreeaadd to return until _n_c_h_a_r_s characters + are read. The result is not split on the characters in + IIFFSS; the intent is that the variable is assigned exactly the characters read (with the exception of backslash; see the --rr option below). --pp _p_r_o_m_p_t @@ -5138,131 +5153,131 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS line, before attempting to read any input. The prompt is displayed only if input is coming from a terminal. --rr Backslash does not act as an escape character. The back- - slash is considered to be part of the line. In particu- - lar, a backslash-newline pair may not be used as a line + slash is considered to be part of the line. In particu- + lar, a backslash-newline pair may not be used as a line continuation. --ss Silent mode. If input is coming from a terminal, charac- ters are not echoed. --tt _t_i_m_e_o_u_t - Cause rreeaadd to time out and return failure if a complete - line of input (or a specified number of characters) is - not read within _t_i_m_e_o_u_t seconds. _t_i_m_e_o_u_t may be a deci- - mal number with a fractional portion following the deci- - mal point. This option is only effective if rreeaadd is - reading input from a terminal, pipe, or other special - file; it has no effect when reading from regular files. + Cause rreeaadd to time out and return failure if a complete + line of input (or a specified number of characters) is + not read within _t_i_m_e_o_u_t seconds. _t_i_m_e_o_u_t may be a deci- + mal number with a fractional portion following the deci- + mal point. This option is only effective if rreeaadd is + reading input from a terminal, pipe, or other special + file; it has no effect when reading from regular files. If rreeaadd times out, rreeaadd saves any partial input read into - the specified variable _n_a_m_e. If _t_i_m_e_o_u_t is 0, rreeaadd - returns immediately, without trying to read any data. - The exit status is 0 if input is available on the speci- - fied file descriptor, non-zero otherwise. The exit sta- + the specified variable _n_a_m_e. If _t_i_m_e_o_u_t is 0, rreeaadd + returns immediately, without trying to read any data. + The exit status is 0 if input is available on the speci- + fied file descriptor, non-zero otherwise. The exit sta- tus is greater than 128 if the timeout is exceeded. --uu _f_d Read input from file descriptor _f_d. If no _n_a_m_e_s are supplied, the line read is assigned to the vari- - able RREEPPLLYY. The exit status is zero, unless end-of-file is + able RREEPPLLYY. The exit status is zero, unless end-of-file is encountered, rreeaadd times out (in which case the status is greater - than 128), a variable assignment error (such as assigning to a + than 128), a variable assignment error (such as assigning to a readonly variable) occurs, or an invalid file descriptor is sup- plied as the argument to --uu. rreeaaddoonnllyy [--aaAAff] [--pp] [_n_a_m_e[=_w_o_r_d] ...] - The given _n_a_m_e_s are marked readonly; the values of these _n_a_m_e_s - may not be changed by subsequent assignment. If the --ff option - is supplied, the functions corresponding to the _n_a_m_e_s are so - marked. The --aa option restricts the variables to indexed - arrays; the --AA option restricts the variables to associative - arrays. If both options are supplied, --AA takes precedence. If - no _n_a_m_e arguments are given, or if the --pp option is supplied, a + The given _n_a_m_e_s are marked readonly; the values of these _n_a_m_e_s + may not be changed by subsequent assignment. If the --ff option + is supplied, the functions corresponding to the _n_a_m_e_s are so + marked. The --aa option restricts the variables to indexed + arrays; the --AA option restricts the variables to associative + arrays. If both options are supplied, --AA takes precedence. If + no _n_a_m_e arguments are given, or if the --pp option is supplied, a list of all readonly names is printed. The other options may be - used to restrict the output to a subset of the set of readonly - names. The --pp option causes output to be displayed in a format - that may be reused as input. If a variable name is followed by - =_w_o_r_d, the value of the variable is set to _w_o_r_d. The return - status is 0 unless an invalid option is encountered, one of the + used to restrict the output to a subset of the set of readonly + names. The --pp option causes output to be displayed in a format + that may be reused as input. If a variable name is followed by + =_w_o_r_d, the value of the variable is set to _w_o_r_d. The return + status is 0 unless an invalid option is encountered, one of the _n_a_m_e_s is not a valid shell variable name, or --ff is supplied with a _n_a_m_e that is not a function. rreettuurrnn [_n] - Causes a function to stop executing and return the value speci- - fied by _n to its caller. If _n is omitted, the return status is - that of the last command executed in the function body. If - rreettuurrnn is executed by a trap handler, the last command used to - determine the status is the last command executed before the - trap handler. if rreettuurrnn is executed during a DDEEBBUUGG trap, the - last command used to determine the status is the last command - executed by the trap handler before rreettuurrnn was invoked. If - rreettuurrnn is used outside a function, but during execution of a - script by the .. (ssoouurrccee) command, it causes the shell to stop - executing that script and return either _n or the exit status of - the last command executed within the script as the exit status - of the script. If _n is supplied, the return value is its least - significant 8 bits. The return status is non-zero if rreettuurrnn is - supplied a non-numeric argument, or is used outside a function - and not during execution of a script by .. or ssoouurrccee. Any com- - mand associated with the RREETTUURRNN trap is executed before execu- + Causes a function to stop executing and return the value speci- + fied by _n to its caller. If _n is omitted, the return status is + that of the last command executed in the function body. If + rreettuurrnn is executed by a trap handler, the last command used to + determine the status is the last command executed before the + trap handler. If rreettuurrnn is executed during a DDEEBBUUGG trap, the + last command used to determine the status is the last command + executed by the trap handler before rreettuurrnn was invoked. If + rreettuurrnn is used outside a function, but during execution of a + script by the .. (ssoouurrccee) command, it causes the shell to stop + executing that script and return either _n or the exit status of + the last command executed within the script as the exit status + of the script. If _n is supplied, the return value is its least + significant 8 bits. The return status is non-zero if rreettuurrnn is + supplied a non-numeric argument, or is used outside a function + and not during execution of a script by .. or ssoouurrccee. Any com- + mand associated with the RREETTUURRNN trap is executed before execu- tion resumes after the function or script. sseett [----aabbeeffhhkkmmnnppttuuvvxxBBCCEEHHPPTT] [--oo _o_p_t_i_o_n_-_n_a_m_e] [_a_r_g ...] sseett [++aabbeeffhhkkmmnnppttuuvvxxBBCCEEHHPPTT] [++oo _o_p_t_i_o_n_-_n_a_m_e] [_a_r_g ...] - Without options, the name and value of each shell variable are + Without options, the name and value of each shell variable are displayed in a format that can be reused as input for setting or resetting the currently-set variables. Read-only variables can- - not be reset. In _p_o_s_i_x mode, only shell variables are listed. - The output is sorted according to the current locale. When - options are specified, they set or unset shell attributes. Any - arguments remaining after option processing are treated as val- + not be reset. In _p_o_s_i_x mode, only shell variables are listed. + The output is sorted according to the current locale. When + options are specified, they set or unset shell attributes. Any + arguments remaining after option processing are treated as val- ues for the positional parameters and are assigned, in order, to - $$11, $$22, ...... $$_n. Options, if specified, have the following + $$11, $$22, ...... $$_n. Options, if specified, have the following meanings: --aa Each variable or function that is created or modified is - given the export attribute and marked for export to the + given the export attribute and marked for export to the environment of subsequent commands. - --bb Report the status of terminated background jobs immedi- + --bb Report the status of terminated background jobs immedi- ately, rather than before the next primary prompt. This is effective only when job control is enabled. - --ee Exit immediately if a _p_i_p_e_l_i_n_e (which may consist of a - single _s_i_m_p_l_e _c_o_m_m_a_n_d), a _l_i_s_t, or a _c_o_m_p_o_u_n_d _c_o_m_m_a_n_d + --ee Exit immediately if a _p_i_p_e_l_i_n_e (which may consist of a + single _s_i_m_p_l_e _c_o_m_m_a_n_d), a _l_i_s_t, or a _c_o_m_p_o_u_n_d _c_o_m_m_a_n_d (see SSHHEELLLL GGRRAAMMMMAARR above), exits with a non-zero status. - The shell does not exit if the command that fails is - part of the command list immediately following a wwhhiillee - or uunnttiill keyword, part of the test following the iiff or - eelliiff reserved words, part of any command executed in a - &&&& or |||| list except the command following the final &&&& + The shell does not exit if the command that fails is + part of the command list immediately following a wwhhiillee + or uunnttiill keyword, part of the test following the iiff or + eelliiff reserved words, part of any command executed in a + &&&& or |||| list except the command following the final &&&& or ||||, any command in a pipeline but the last, or if the - command's return value is being inverted with !!. If a - compound command other than a subshell returns a non- - zero status because a command failed while --ee was being - ignored, the shell does not exit. A trap on EERRRR, if - set, is executed before the shell exits. This option + command's return value is being inverted with !!. If a + compound command other than a subshell returns a non- + zero status because a command failed while --ee was being + ignored, the shell does not exit. A trap on EERRRR, if + set, is executed before the shell exits. This option applies to the shell environment and each subshell envi- - ronment separately (see CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENNTT + ronment separately (see CCOOMMMMAANNDD EEXXEECCUUTTIIOONN EENNVVIIRROONNMMEENNTT above), and may cause subshells to exit before executing all the commands in the subshell. - If a compound command or shell function executes in a - context where --ee is being ignored, none of the commands - executed within the compound command or function body - will be affected by the --ee setting, even if --ee is set - and a command returns a failure status. If a compound - command or shell function sets --ee while executing in a - context where --ee is ignored, that setting will not have - any effect until the compound command or the command + If a compound command or shell function executes in a + context where --ee is being ignored, none of the commands + executed within the compound command or function body + will be affected by the --ee setting, even if --ee is set + and a command returns a failure status. If a compound + command or shell function sets --ee while executing in a + context where --ee is ignored, that setting will not have + any effect until the compound command or the command containing the function call completes. --ff Disable pathname expansion. - --hh Remember the location of commands as they are looked up + --hh Remember the location of commands as they are looked up for execution. This is enabled by default. - --kk All arguments in the form of assignment statements are - placed in the environment for a command, not just those + --kk All arguments in the form of assignment statements are + placed in the environment for a command, not just those that precede the command name. - --mm Monitor mode. Job control is enabled. This option is - on by default for interactive shells on systems that - support it (see JJOOBB CCOONNTTRROOLL above). All processes run + --mm Monitor mode. Job control is enabled. This option is + on by default for interactive shells on systems that + support it (see JJOOBB CCOONNTTRROOLL above). All processes run in a separate process group. When a background job com- pletes, the shell prints a line containing its exit sta- tus. --nn Read commands but do not execute them. This may be used - to check a shell script for syntax errors. This is + to check a shell script for syntax errors. This is ignored by interactive shells. --oo _o_p_t_i_o_n_-_n_a_m_e The _o_p_t_i_o_n_-_n_a_m_e can be one of the following: @@ -5270,10 +5285,10 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS Same as --aa. bbrraacceeeexxppaanndd Same as --BB. - eemmaaccss Use an emacs-style command line editing inter- + eemmaaccss Use an emacs-style command line editing inter- face. This is enabled by default when the shell is interactive, unless the shell is started with - the ----nnooeeddiittiinngg option. This also affects the + the ----nnooeeddiittiinngg option. This also affects the editing interface used for rreeaadd --ee. eerrrreexxiitt Same as --ee. eerrrrttrraaccee @@ -5287,8 +5302,8 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS HHIISSTTOORRYY. This option is on by default in inter- active shells. iiggnnoorreeeeooff - The effect is as if the shell command - ``IGNOREEOF=10'' had been executed (see SShheellll + The effect is as if the shell command + ``IGNOREEOF=10'' had been executed (see SShheellll VVaarriiaabblleess above). kkeeyywwoorrdd Same as --kk. mmoonniittoorr Same as --mm. @@ -5303,375 +5318,375 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS pphhyyssiiccaall Same as --PP. ppiippeeffaaiill - If set, the return value of a pipeline is the - value of the last (rightmost) command to exit - with a non-zero status, or zero if all commands - in the pipeline exit successfully. This option + If set, the return value of a pipeline is the + value of the last (rightmost) command to exit + with a non-zero status, or zero if all commands + in the pipeline exit successfully. This option is disabled by default. - ppoossiixx Change the behavior of bbaasshh where the default - operation differs from the POSIX standard to - match the standard (_p_o_s_i_x _m_o_d_e). See SSEEEE AALLSSOO + ppoossiixx Change the behavior of bbaasshh where the default + operation differs from the POSIX standard to + match the standard (_p_o_s_i_x _m_o_d_e). See SSEEEE AALLSSOO below for a reference to a document that details how posix mode affects bash's behavior. pprriivviilleeggeedd Same as --pp. vveerrbboossee Same as --vv. - vvii Use a vi-style command line editing interface. + vvii Use a vi-style command line editing interface. This also affects the editing interface used for rreeaadd --ee. xxttrraaccee Same as --xx. If --oo is supplied with no _o_p_t_i_o_n_-_n_a_m_e, the values of the - current options are printed. If ++oo is supplied with no - _o_p_t_i_o_n_-_n_a_m_e, a series of sseett commands to recreate the - current option settings is displayed on the standard + current options are printed. If ++oo is supplied with no + _o_p_t_i_o_n_-_n_a_m_e, a series of sseett commands to recreate the + current option settings is displayed on the standard output. - --pp Turn on _p_r_i_v_i_l_e_g_e_d mode. In this mode, the $$EENNVV and - $$BBAASSHH__EENNVV files are not processed, shell functions are - not inherited from the environment, and the SSHHEELLLLOOPPTTSS, - BBAASSHHOOPPTTSS, CCDDPPAATTHH, and GGLLOOBBIIGGNNOORREE variables, if they + --pp Turn on _p_r_i_v_i_l_e_g_e_d mode. In this mode, the $$EENNVV and + $$BBAASSHH__EENNVV files are not processed, shell functions are + not inherited from the environment, and the SSHHEELLLLOOPPTTSS, + BBAASSHHOOPPTTSS, CCDDPPAATTHH, and GGLLOOBBIIGGNNOORREE variables, if they appear in the environment, are ignored. If the shell is - started with the effective user (group) id not equal to - the real user (group) id, and the --pp option is not sup- + started with the effective user (group) id not equal to + the real user (group) id, and the --pp option is not sup- plied, these actions are taken and the effective user id - is set to the real user id. If the --pp option is sup- - plied at startup, the effective user id is not reset. - Turning this option off causes the effective user and + is set to the real user id. If the --pp option is sup- + plied at startup, the effective user id is not reset. + Turning this option off causes the effective user and group ids to be set to the real user and group ids. --tt Exit after reading and executing one command. --uu Treat unset variables and parameters other than the spe- - cial parameters "@" and "*" as an error when performing - parameter expansion. If expansion is attempted on an - unset variable or parameter, the shell prints an error - message, and, if not interactive, exits with a non-zero + cial parameters "@" and "*" as an error when performing + parameter expansion. If expansion is attempted on an + unset variable or parameter, the shell prints an error + message, and, if not interactive, exits with a non-zero status. --vv Print shell input lines as they are read. - --xx After expanding each _s_i_m_p_l_e _c_o_m_m_a_n_d, ffoorr command, ccaassee + --xx After expanding each _s_i_m_p_l_e _c_o_m_m_a_n_d, ffoorr command, ccaassee command, sseelleecctt command, or arithmetic ffoorr command, dis- - play the expanded value of PPSS44, followed by the command + play the expanded value of PPSS44, followed by the command and its expanded arguments or associated word list. - --BB The shell performs brace expansion (see BBrraaccee EExxppaannssiioonn + --BB The shell performs brace expansion (see BBrraaccee EExxppaannssiioonn above). This is on by default. - --CC If set, bbaasshh does not overwrite an existing file with - the >>, >>&&, and <<>> redirection operators. This may be + --CC If set, bbaasshh does not overwrite an existing file with + the >>, >>&&, and <<>> redirection operators. This may be overridden when creating output files by using the redi- rection operator >>|| instead of >>. --EE If set, any trap on EERRRR is inherited by shell functions, - command substitutions, and commands executed in a sub- - shell environment. The EERRRR trap is normally not inher- + command substitutions, and commands executed in a sub- + shell environment. The EERRRR trap is normally not inher- ited in such cases. --HH Enable !! style history substitution. This option is on by default when the shell is interactive. - --PP If set, the shell does not resolve symbolic links when - executing commands such as ccdd that change the current + --PP If set, the shell does not resolve symbolic links when + executing commands such as ccdd that change the current working directory. It uses the physical directory structure instead. By default, bbaasshh follows the logical - chain of directories when performing commands which + chain of directories when performing commands which change the current directory. - --TT If set, any traps on DDEEBBUUGG and RREETTUURRNN are inherited by - shell functions, command substitutions, and commands - executed in a subshell environment. The DDEEBBUUGG and + --TT If set, any traps on DDEEBBUUGG and RREETTUURRNN are inherited by + shell functions, command substitutions, and commands + executed in a subshell environment. The DDEEBBUUGG and RREETTUURRNN traps are normally not inherited in such cases. - ---- If no arguments follow this option, then the positional + ---- If no arguments follow this option, then the positional parameters are unset. Otherwise, the positional parame- - ters are set to the _a_r_gs, even if some of them begin + ters are set to the _a_r_gs, even if some of them begin with a --. - -- Signal the end of options, cause all remaining _a_r_gs to + -- Signal the end of options, cause all remaining _a_r_gs to be assigned to the positional parameters. The --xx and --vv options are turned off. If there are no _a_r_gs, the posi- tional parameters remain unchanged. - The options are off by default unless otherwise noted. Using + - rather than - causes these options to be turned off. The - options can also be specified as arguments to an invocation of - the shell. The current set of options may be found in $$--. The + The options are off by default unless otherwise noted. Using + + rather than - causes these options to be turned off. The + options can also be specified as arguments to an invocation of + the shell. The current set of options may be found in $$--. The return status is always true unless an invalid option is encoun- tered. sshhiifftt [_n] - The positional parameters from _n+1 ... are renamed to $$11 ........ - Parameters represented by the numbers $$## down to $$##-_n+1 are - unset. _n must be a non-negative number less than or equal to - $$##. If _n is 0, no parameters are changed. If _n is not given, - it is assumed to be 1. If _n is greater than $$##, the positional - parameters are not changed. The return status is greater than + The positional parameters from _n+1 ... are renamed to $$11 ........ + Parameters represented by the numbers $$## down to $$##-_n+1 are + unset. _n must be a non-negative number less than or equal to + $$##. If _n is 0, no parameters are changed. If _n is not given, + it is assumed to be 1. If _n is greater than $$##, the positional + parameters are not changed. The return status is greater than zero if _n is greater than $$## or less than zero; otherwise 0. sshhoopptt [--ppqqssuu] [--oo] [_o_p_t_n_a_m_e ...] - Toggle the values of settings controlling optional shell behav- - ior. The settings can be either those listed below, or, if the + Toggle the values of settings controlling optional shell behav- + ior. The settings can be either those listed below, or, if the --oo option is used, those available with the --oo option to the sseett builtin command. With no options, or with the --pp option, a list - of all settable options is displayed, with an indication of + of all settable options is displayed, with an indication of whether or not each is set; if _o_p_t_n_a_m_e_s are supplied, the output - is restricted to those options. The --pp option causes output to - be displayed in a form that may be reused as input. Other + is restricted to those options. The --pp option causes output to + be displayed in a form that may be reused as input. Other options have the following meanings: --ss Enable (set) each _o_p_t_n_a_m_e. --uu Disable (unset) each _o_p_t_n_a_m_e. - --qq Suppresses normal output (quiet mode); the return status + --qq Suppresses normal output (quiet mode); the return status indicates whether the _o_p_t_n_a_m_e is set or unset. If multi- - ple _o_p_t_n_a_m_e arguments are given with --qq, the return sta- - tus is zero if all _o_p_t_n_a_m_e_s are enabled; non-zero other- + ple _o_p_t_n_a_m_e arguments are given with --qq, the return sta- + tus is zero if all _o_p_t_n_a_m_e_s are enabled; non-zero other- wise. - --oo Restricts the values of _o_p_t_n_a_m_e to be those defined for + --oo Restricts the values of _o_p_t_n_a_m_e to be those defined for the --oo option to the sseett builtin. - If either --ss or --uu is used with no _o_p_t_n_a_m_e arguments, sshhoopptt - shows only those options which are set or unset, respectively. - Unless otherwise noted, the sshhoopptt options are disabled (unset) + If either --ss or --uu is used with no _o_p_t_n_a_m_e arguments, sshhoopptt + shows only those options which are set or unset, respectively. + Unless otherwise noted, the sshhoopptt options are disabled (unset) by default. - The return status when listing options is zero if all _o_p_t_n_a_m_e_s - are enabled, non-zero otherwise. When setting or unsetting - options, the return status is zero unless an _o_p_t_n_a_m_e is not a + The return status when listing options is zero if all _o_p_t_n_a_m_e_s + are enabled, non-zero otherwise. When setting or unsetting + options, the return status is zero unless an _o_p_t_n_a_m_e is not a valid shell option. The list of sshhoopptt options is: - aauuttooccdd If set, a command name that is the name of a directory - is executed as if it were the argument to the ccdd com- + aauuttooccdd If set, a command name that is the name of a directory + is executed as if it were the argument to the ccdd com- mand. This option is only used by interactive shells. ccddaabbllee__vvaarrss - If set, an argument to the ccdd builtin command that is - not a directory is assumed to be the name of a variable + If set, an argument to the ccdd builtin command that is + not a directory is assumed to be the name of a variable whose value is the directory to change to. ccddssppeellll If set, minor errors in the spelling of a directory com- - ponent in a ccdd command will be corrected. The errors + ponent in a ccdd command will be corrected. The errors checked for are transposed characters, a missing charac- - ter, and one character too many. If a correction is - found, the corrected filename is printed, and the com- - mand proceeds. This option is only used by interactive + ter, and one character too many. If a correction is + found, the corrected filename is printed, and the com- + mand proceeds. This option is only used by interactive shells. cchheecckkhhaasshh If set, bbaasshh checks that a command found in the hash ta- - ble exists before trying to execute it. If a hashed - command no longer exists, a normal path search is per- + ble exists before trying to execute it. If a hashed + command no longer exists, a normal path search is per- formed. cchheecckkjjoobbss If set, bbaasshh lists the status of any stopped and running - jobs before exiting an interactive shell. If any jobs + jobs before exiting an interactive shell. If any jobs are running, this causes the exit to be deferred until a - second exit is attempted without an intervening command - (see JJOOBB CCOONNTTRROOLL above). The shell always postpones + second exit is attempted without an intervening command + (see JJOOBB CCOONNTTRROOLL above). The shell always postpones exiting if any jobs are stopped. cchheecckkwwiinnssiizzee - If set, bbaasshh checks the window size after each external - (non-builtin) command and, if necessary, updates the + If set, bbaasshh checks the window size after each external + (non-builtin) command and, if necessary, updates the values of LLIINNEESS and CCOOLLUUMMNNSS. - ccmmddhhiisstt If set, bbaasshh attempts to save all lines of a multiple- - line command in the same history entry. This allows - easy re-editing of multi-line commands. This option is - enabled by default, but only has an effect if command + ccmmddhhiisstt If set, bbaasshh attempts to save all lines of a multiple- + line command in the same history entry. This allows + easy re-editing of multi-line commands. This option is + enabled by default, but only has an effect if command history is enabled, as described above under HHIISSTTOORRYY. ccoommppaatt3311 If set, bbaasshh changes its behavior to that of version 3.1 - with respect to quoted arguments to the [[[[ conditional + with respect to quoted arguments to the [[[[ conditional command's ==~~ operator and locale-specific string compar- - ison when using the [[[[ conditional command's << and >> - operators. Bash versions prior to bash-4.1 use ASCII + ison when using the [[[[ conditional command's << and >> + operators. Bash versions prior to bash-4.1 use ASCII collation and _s_t_r_c_m_p(3); bash-4.1 and later use the cur- rent locale's collation sequence and _s_t_r_c_o_l_l(3). ccoommppaatt3322 If set, bbaasshh changes its behavior to that of version 3.2 - with respect to locale-specific string comparison when - using the [[[[ conditional command's << and >> operators - (see previous item) and the effect of interrupting a - command list. Bash versions 3.2 and earlier continue - with the next command in the list after one terminates + with respect to locale-specific string comparison when + using the [[[[ conditional command's << and >> operators + (see previous item) and the effect of interrupting a + command list. Bash versions 3.2 and earlier continue + with the next command in the list after one terminates due to an interrupt. ccoommppaatt4400 If set, bbaasshh changes its behavior to that of version 4.0 - with respect to locale-specific string comparison when - using the [[[[ conditional command's << and >> operators - (see description of ccoommppaatt3311) and the effect of inter- - rupting a command list. Bash versions 4.0 and later - interrupt the list as if the shell received the inter- - rupt; previous versions continue with the next command + with respect to locale-specific string comparison when + using the [[[[ conditional command's << and >> operators + (see description of ccoommppaatt3311) and the effect of inter- + rupting a command list. Bash versions 4.0 and later + interrupt the list as if the shell received the inter- + rupt; previous versions continue with the next command in the list. ccoommppaatt4411 - If set, bbaasshh, when in _p_o_s_i_x mode, treats a single quote - in a double-quoted parameter expansion as a special - character. The single quotes must match (an even num- - ber) and the characters between the single quotes are - considered quoted. This is the behavior of posix mode - through version 4.1. The default bash behavior remains + If set, bbaasshh, when in _p_o_s_i_x mode, treats a single quote + in a double-quoted parameter expansion as a special + character. The single quotes must match (an even num- + ber) and the characters between the single quotes are + considered quoted. This is the behavior of posix mode + through version 4.1. The default bash behavior remains as in previous versions. ccoommppaatt4422 - If set, bbaasshh does not process the replacement string in - the pattern substitution word expansion using quote + If set, bbaasshh does not process the replacement string in + the pattern substitution word expansion using quote removal. ccoommppaatt4433 - If set, bbaasshh does not print a warning message if an - attempt is made to use a quoted compound array assign- - ment as an argument to ddeeccllaarree, makes word expansion - errors non-fatal errors that cause the current command - to fail (the default behavior is to make them fatal + If set, bbaasshh does not print a warning message if an + attempt is made to use a quoted compound array assign- + ment as an argument to ddeeccllaarree, makes word expansion + errors non-fatal errors that cause the current command + to fail (the default behavior is to make them fatal errors that cause the shell to exit), and does not reset - the loop state when a shell function is executed (this - allows bbrreeaakk or ccoonnttiinnuuee in a shell function to affect + the loop state when a shell function is executed (this + allows bbrreeaakk or ccoonnttiinnuuee in a shell function to affect loops in the caller's context). ccoommpplleettee__ffuullllqquuoottee - If set, bbaasshh quotes all shell metacharacters in file- - names and directory names when performing completion. + If set, bbaasshh quotes all shell metacharacters in file- + names and directory names when performing completion. If not set, bbaasshh removes metacharacters such as the dol- - lar sign from the set of characters that will be quoted - in completed filenames when these metacharacters appear - in shell variable references in words to be completed. - This means that dollar signs in variable names that - expand to directories will not be quoted; however, any - dollar signs appearing in filenames will not be quoted, - either. This is active only when bash is using back- - slashes to quote completed filenames. This variable is - set by default, which is the default bash behavior in + lar sign from the set of characters that will be quoted + in completed filenames when these metacharacters appear + in shell variable references in words to be completed. + This means that dollar signs in variable names that + expand to directories will not be quoted; however, any + dollar signs appearing in filenames will not be quoted, + either. This is active only when bash is using back- + slashes to quote completed filenames. This variable is + set by default, which is the default bash behavior in versions through 4.2. ddiirreexxppaanndd - If set, bbaasshh replaces directory names with the results - of word expansion when performing filename completion. - This changes the contents of the readline editing buf- - fer. If not set, bbaasshh attempts to preserve what the + If set, bbaasshh replaces directory names with the results + of word expansion when performing filename completion. + This changes the contents of the readline editing buf- + fer. If not set, bbaasshh attempts to preserve what the user typed. ddiirrssppeellll - If set, bbaasshh attempts spelling correction on directory - names during word completion if the directory name ini- + If set, bbaasshh attempts spelling correction on directory + names during word completion if the directory name ini- tially supplied does not exist. - ddoottgglloobb If set, bbaasshh includes filenames beginning with a `.' in - the results of pathname expansion. The filenames ````..'''' - and ````....'''' must always be matched explicitly, even if + ddoottgglloobb If set, bbaasshh includes filenames beginning with a `.' in + the results of pathname expansion. The filenames ````..'''' + and ````....'''' must always be matched explicitly, even if ddoottgglloobb is set. eexxeeccffaaiill If set, a non-interactive shell will not exit if it can- - not execute the file specified as an argument to the - eexxeecc builtin command. An interactive shell does not + not execute the file specified as an argument to the + eexxeecc builtin command. An interactive shell does not exit if eexxeecc fails. eexxppaanndd__aalliiaasseess - If set, aliases are expanded as described above under + If set, aliases are expanded as described above under AALLIIAASSEESS. This option is enabled by default for interac- tive shells. eexxttddeebbuugg - If set at shell invocation, arrange to execute the - debugger profile before the shell starts, identical to - the ----ddeebbuuggggeerr option. If set after invocation, behav- + If set at shell invocation, arrange to execute the + debugger profile before the shell starts, identical to + the ----ddeebbuuggggeerr option. If set after invocation, behav- ior intended for use by debuggers is enabled: 11.. The --FF option to the ddeeccllaarree builtin displays the source file name and line number corresponding to each function name supplied as an argument. - 22.. If the command run by the DDEEBBUUGG trap returns a - non-zero value, the next command is skipped and + 22.. If the command run by the DDEEBBUUGG trap returns a + non-zero value, the next command is skipped and not executed. - 33.. If the command run by the DDEEBBUUGG trap returns a - value of 2, and the shell is executing in a sub- - routine (a shell function or a shell script exe- - cuted by the .. or ssoouurrccee builtins), the shell + 33.. If the command run by the DDEEBBUUGG trap returns a + value of 2, and the shell is executing in a sub- + routine (a shell function or a shell script exe- + cuted by the .. or ssoouurrccee builtins), the shell simulates a call to rreettuurrnn. - 44.. BBAASSHH__AARRGGCC and BBAASSHH__AARRGGVV are updated as described + 44.. BBAASSHH__AARRGGCC and BBAASSHH__AARRGGVV are updated as described in their descriptions above. - 55.. Function tracing is enabled: command substitu- + 55.. Function tracing is enabled: command substitu- tion, shell functions, and subshells invoked with (( _c_o_m_m_a_n_d )) inherit the DDEEBBUUGG and RREETTUURRNN traps. - 66.. Error tracing is enabled: command substitution, - shell functions, and subshells invoked with (( + 66.. Error tracing is enabled: command substitution, + shell functions, and subshells invoked with (( _c_o_m_m_a_n_d )) inherit the EERRRR trap. eexxttgglloobb If set, the extended pattern matching features described above under PPaatthhnnaammee EExxppaannssiioonn are enabled. eexxttqquuoottee - If set, $$'_s_t_r_i_n_g' and $$"_s_t_r_i_n_g" quoting is performed - within $${{_p_a_r_a_m_e_t_e_r}} expansions enclosed in double + If set, $$'_s_t_r_i_n_g' and $$"_s_t_r_i_n_g" quoting is performed + within $${{_p_a_r_a_m_e_t_e_r}} expansions enclosed in double quotes. This option is enabled by default. ffaaiillgglloobb - If set, patterns which fail to match filenames during + If set, patterns which fail to match filenames during pathname expansion result in an expansion error. ffoorrccee__ffiiggnnoorree - If set, the suffixes specified by the FFIIGGNNOORREE shell - variable cause words to be ignored when performing word + If set, the suffixes specified by the FFIIGGNNOORREE shell + variable cause words to be ignored when performing word completion even if the ignored words are the only possi- ble completions. See SSHHEELLLL VVAARRIIAABBLLEESS above for a - description of FFIIGGNNOORREE. This option is enabled by + description of FFIIGGNNOORREE. This option is enabled by default. gglloobbaasscciiiirraannggeess - If set, range expressions used in pattern matching - bracket expressions (see PPaatttteerrnn MMaattcchhiinngg above) behave - as if in the traditional C locale when performing com- + If set, range expressions used in pattern matching + bracket expressions (see PPaatttteerrnn MMaattcchhiinngg above) behave + as if in the traditional C locale when performing com- parisons. That is, the current locale's collating - sequence is not taken into account, so bb will not col- - late between AA and BB, and upper-case and lower-case + sequence is not taken into account, so bb will not col- + late between AA and BB, and upper-case and lower-case ASCII characters will collate together. gglloobbssttaarr If set, the pattern **** used in a pathname expansion con- - text will match all files and zero or more directories - and subdirectories. If the pattern is followed by a //, + text will match all files and zero or more directories + and subdirectories. If the pattern is followed by a //, only directories and subdirectories match. ggnnuu__eerrrrffmmtt If set, shell error messages are written in the standard GNU error message format. hhiissttaappppeenndd - If set, the history list is appended to the file named - by the value of the HHIISSTTFFIILLEE variable when the shell + If set, the history list is appended to the file named + by the value of the HHIISSTTFFIILLEE variable when the shell exits, rather than overwriting the file. hhiissttrreeeeddiitt - If set, and rreeaaddlliinnee is being used, a user is given the + If set, and rreeaaddlliinnee is being used, a user is given the opportunity to re-edit a failed history substitution. hhiissttvveerriiffyy - If set, and rreeaaddlliinnee is being used, the results of his- - tory substitution are not immediately passed to the - shell parser. Instead, the resulting line is loaded + If set, and rreeaaddlliinnee is being used, the results of his- + tory substitution are not immediately passed to the + shell parser. Instead, the resulting line is loaded into the rreeaaddlliinnee editing buffer, allowing further modi- fication. hhoossttccoommpplleettee If set, and rreeaaddlliinnee is being used, bbaasshh will attempt to - perform hostname completion when a word containing a @@ - is being completed (see CCoommpplleettiinngg under RREEAADDLLIINNEE + perform hostname completion when a word containing a @@ + is being completed (see CCoommpplleettiinngg under RREEAADDLLIINNEE above). This is enabled by default. hhuuppoonneexxiitt If set, bbaasshh will send SSIIGGHHUUPP to all jobs when an inter- active login shell exits. iinnhheerriitt__eerrrreexxiitt - If set, command substitution inherits the value of the - eerrrreexxiitt option, instead of unsetting it in the subshell - environment. This option is enabled when _p_o_s_i_x _m_o_d_e is + If set, command substitution inherits the value of the + eerrrreexxiitt option, instead of unsetting it in the subshell + environment. This option is enabled when _p_o_s_i_x _m_o_d_e is enabled. iinntteerraaccttiivvee__ccoommmmeennttss If set, allow a word beginning with ## to cause that word - and all remaining characters on that line to be ignored - in an interactive shell (see CCOOMMMMEENNTTSS above). This + and all remaining characters on that line to be ignored + in an interactive shell (see CCOOMMMMEENNTTSS above). This option is enabled by default. llaassttppiippee - If set, and job control is not active, the shell runs + If set, and job control is not active, the shell runs the last command of a pipeline not executed in the back- ground in the current shell environment. - lliitthhiisstt If set, and the ccmmddhhiisstt option is enabled, multi-line + lliitthhiisstt If set, and the ccmmddhhiisstt option is enabled, multi-line commands are saved to the history with embedded newlines rather than using semicolon separators where possible. llooccaallvvaarr__iinnhheerriitt If set, local variables inherit the value and attributes of a variable of the same name that exists at a previous - scope before any new value is assigned. The nameref + scope before any new value is assigned. The nameref attribute is not inherited. llooggiinn__sshheellll - The shell sets this option if it is started as a login - shell (see IINNVVOOCCAATTIIOONN above). The value may not be + The shell sets this option if it is started as a login + shell (see IINNVVOOCCAATTIIOONN above). The value may not be changed. mmaaiillwwaarrnn - If set, and a file that bbaasshh is checking for mail has - been accessed since the last time it was checked, the - message ``The mail in _m_a_i_l_f_i_l_e has been read'' is dis- + If set, and a file that bbaasshh is checking for mail has + been accessed since the last time it was checked, the + message ``The mail in _m_a_i_l_f_i_l_e has been read'' is dis- played. nnoo__eemmppttyy__ccmmdd__ccoommpplleettiioonn - If set, and rreeaaddlliinnee is being used, bbaasshh will not + If set, and rreeaaddlliinnee is being used, bbaasshh will not attempt to search the PPAATTHH for possible completions when completion is attempted on an empty line. nnooccaasseegglloobb - If set, bbaasshh matches filenames in a case-insensitive + If set, bbaasshh matches filenames in a case-insensitive fashion when performing pathname expansion (see PPaatthhnnaammee EExxppaannssiioonn above). nnooccaasseemmaattcchh - If set, bbaasshh matches patterns in a case-insensitive + If set, bbaasshh matches patterns in a case-insensitive fashion when performing matching while executing ccaassee or [[[[ conditional commands, when performing pattern substi- - tution word expansions, or when filtering possible com- + tution word expansions, or when filtering possible com- pletions as part of programmable completion. nnuullllgglloobb - If set, bbaasshh allows patterns which match no files (see - PPaatthhnnaammee EExxppaannssiioonn above) to expand to a null string, + If set, bbaasshh allows patterns which match no files (see + PPaatthhnnaammee EExxppaannssiioonn above) to expand to a null string, rather than themselves. pprrooggccoommpp If set, the programmable completion facilities (see PPrroo-- @@ -5679,50 +5694,50 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS enabled by default. pprroommppttvvaarrss If set, prompt strings undergo parameter expansion, com- - mand substitution, arithmetic expansion, and quote - removal after being expanded as described in PPRROOMMPPTTIINNGG + mand substitution, arithmetic expansion, and quote + removal after being expanded as described in PPRROOMMPPTTIINNGG above. This option is enabled by default. rreessttrriicctteedd__sshheellll - The shell sets this option if it is started in + The shell sets this option if it is started in restricted mode (see RREESSTTRRIICCTTEEDD SSHHEELLLL below). The value - may not be changed. This is not reset when the startup - files are executed, allowing the startup files to dis- + may not be changed. This is not reset when the startup + files are executed, allowing the startup files to dis- cover whether or not a shell is restricted. sshhiifftt__vveerrbboossee - If set, the sshhiifftt builtin prints an error message when + If set, the sshhiifftt builtin prints an error message when the shift count exceeds the number of positional parame- ters. ssoouurrcceeppaatthh If set, the ssoouurrccee (..) builtin uses the value of PPAATTHH to - find the directory containing the file supplied as an + find the directory containing the file supplied as an argument. This option is enabled by default. xxppgg__eecchhoo - If set, the eecchhoo builtin expands backslash-escape + If set, the eecchhoo builtin expands backslash-escape sequences by default. ssuussppeenndd [--ff] - Suspend the execution of this shell until it receives a SSIIGGCCOONNTT + Suspend the execution of this shell until it receives a SSIIGGCCOONNTT signal. A login shell cannot be suspended; the --ff option can be used to override this and force the suspension. The return sta- - tus is 0 unless the shell is a login shell and --ff is not sup- + tus is 0 unless the shell is a login shell and --ff is not sup- plied, or if job control is not enabled. tteesstt _e_x_p_r [[ _e_x_p_r ]] Return a status of 0 (true) or 1 (false) depending on the evalu- ation of the conditional expression _e_x_p_r. Each operator and op- - erand must be a separate argument. Expressions are composed of - the primaries described above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS. - tteesstt does not accept any options, nor does it accept and ignore + erand must be a separate argument. Expressions are composed of + the primaries described above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS. + tteesstt does not accept any options, nor does it accept and ignore an argument of ---- as signifying the end of options. - Expressions may be combined using the following operators, + Expressions may be combined using the following operators, listed in decreasing order of precedence. The evaluation - depends on the number of arguments; see below. Operator prece- + depends on the number of arguments; see below. Operator prece- dence is used when there are five or more arguments. !! _e_x_p_r True if _e_x_p_r is false. (( _e_x_p_r )) - Returns the value of _e_x_p_r. This may be used to override + Returns the value of _e_x_p_r. This may be used to override the normal precedence of operators. _e_x_p_r_1 -aa _e_x_p_r_2 True if both _e_x_p_r_1 and _e_x_p_r_2 are true. @@ -5739,120 +5754,120 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS null. 2 arguments If the first argument is !!, the expression is true if and - only if the second argument is null. If the first argu- - ment is one of the unary conditional operators listed - above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the expression is + only if the second argument is null. If the first argu- + ment is one of the unary conditional operators listed + above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the expression is true if the unary test is true. If the first argument is not a valid unary conditional operator, the expression is false. 3 arguments The following conditions are applied in the order listed. - If the second argument is one of the binary conditional + If the second argument is one of the binary conditional operators listed above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the result of the expression is the result of the binary test - using the first and third arguments as operands. The --aa - and --oo operators are considered binary operators when - there are three arguments. If the first argument is !!, - the value is the negation of the two-argument test using + using the first and third arguments as operands. The --aa + and --oo operators are considered binary operators when + there are three arguments. If the first argument is !!, + the value is the negation of the two-argument test using the second and third arguments. If the first argument is exactly (( and the third argument is exactly )), the result - is the one-argument test of the second argument. Other- + is the one-argument test of the second argument. Other- wise, the expression is false. 4 arguments If the first argument is !!, the result is the negation of - the three-argument expression composed of the remaining + the three-argument expression composed of the remaining arguments. Otherwise, the expression is parsed and eval- - uated according to precedence using the rules listed + uated according to precedence using the rules listed above. 5 or more arguments - The expression is parsed and evaluated according to + The expression is parsed and evaluated according to precedence using the rules listed above. - When used with tteesstt or [[, the << and >> operators sort lexico- + When used with tteesstt or [[, the << and >> operators sort lexico- graphically using ASCII ordering. - ttiimmeess Print the accumulated user and system times for the shell and + ttiimmeess Print the accumulated user and system times for the shell and for processes run from the shell. The return status is 0. ttrraapp [--llpp] [[_a_r_g] _s_i_g_s_p_e_c ...] - The command _a_r_g is to be read and executed when the shell - receives signal(s) _s_i_g_s_p_e_c. If _a_r_g is absent (and there is a - single _s_i_g_s_p_e_c) or --, each specified signal is reset to its - original disposition (the value it had upon entrance to the - shell). If _a_r_g is the null string the signal specified by each - _s_i_g_s_p_e_c is ignored by the shell and by the commands it invokes. - If _a_r_g is not present and --pp has been supplied, then the trap - commands associated with each _s_i_g_s_p_e_c are displayed. If no - arguments are supplied or if only --pp is given, ttrraapp prints the - list of commands associated with each signal. The --ll option - causes the shell to print a list of signal names and their cor- - responding numbers. Each _s_i_g_s_p_e_c is either a signal name - defined in <_s_i_g_n_a_l_._h>, or a signal number. Signal names are + The command _a_r_g is to be read and executed when the shell + receives signal(s) _s_i_g_s_p_e_c. If _a_r_g is absent (and there is a + single _s_i_g_s_p_e_c) or --, each specified signal is reset to its + original disposition (the value it had upon entrance to the + shell). If _a_r_g is the null string the signal specified by each + _s_i_g_s_p_e_c is ignored by the shell and by the commands it invokes. + If _a_r_g is not present and --pp has been supplied, then the trap + commands associated with each _s_i_g_s_p_e_c are displayed. If no + arguments are supplied or if only --pp is given, ttrraapp prints the + list of commands associated with each signal. The --ll option + causes the shell to print a list of signal names and their cor- + responding numbers. Each _s_i_g_s_p_e_c is either a signal name + defined in <_s_i_g_n_a_l_._h>, or a signal number. Signal names are case insensitive and the SSIIGG prefix is optional. - If a _s_i_g_s_p_e_c is EEXXIITT (0) the command _a_r_g is executed on exit - from the shell. If a _s_i_g_s_p_e_c is DDEEBBUUGG, the command _a_r_g is exe- - cuted before every _s_i_m_p_l_e _c_o_m_m_a_n_d, _f_o_r command, _c_a_s_e command, - _s_e_l_e_c_t command, every arithmetic _f_o_r command, and before the - first command executes in a shell function (see SSHHEELLLL GGRRAAMMMMAARR - above). Refer to the description of the eexxttddeebbuugg option to the + If a _s_i_g_s_p_e_c is EEXXIITT (0) the command _a_r_g is executed on exit + from the shell. If a _s_i_g_s_p_e_c is DDEEBBUUGG, the command _a_r_g is exe- + cuted before every _s_i_m_p_l_e _c_o_m_m_a_n_d, _f_o_r command, _c_a_s_e command, + _s_e_l_e_c_t command, every arithmetic _f_o_r command, and before the + first command executes in a shell function (see SSHHEELLLL GGRRAAMMMMAARR + above). Refer to the description of the eexxttddeebbuugg option to the sshhoopptt builtin for details of its effect on the DDEEBBUUGG trap. If a _s_i_g_s_p_e_c is RREETTUURRNN, the command _a_r_g is executed each time a shell function or a script executed with the .. or ssoouurrccee builtins fin- ishes executing. - If a _s_i_g_s_p_e_c is EERRRR, the command _a_r_g is executed whenever a + If a _s_i_g_s_p_e_c is EERRRR, the command _a_r_g is executed whenever a pipeline (which may consist of a single simple command), a list, or a compound command returns a non-zero exit status, subject to - the following conditions. The EERRRR trap is not executed if the + the following conditions. The EERRRR trap is not executed if the failed command is part of the command list immediately following - a wwhhiillee or uunnttiill keyword, part of the test in an _i_f statement, + a wwhhiillee or uunnttiill keyword, part of the test in an _i_f statement, part of a command executed in a &&&& or |||| list except the command - following the final &&&& or ||||, any command in a pipeline but the - last, or if the command's return value is being inverted using - !!. These are the same conditions obeyed by the eerrrreexxiitt (--ee) + following the final &&&& or ||||, any command in a pipeline but the + last, or if the command's return value is being inverted using + !!. These are the same conditions obeyed by the eerrrreexxiitt (--ee) option. - Signals ignored upon entry to the shell cannot be trapped or - reset. Trapped signals that are not being ignored are reset to + Signals ignored upon entry to the shell cannot be trapped or + reset. Trapped signals that are not being ignored are reset to their original values in a subshell or subshell environment when - one is created. The return status is false if any _s_i_g_s_p_e_c is + one is created. The return status is false if any _s_i_g_s_p_e_c is invalid; otherwise ttrraapp returns true. ttyyppee [--aaffttppPP] _n_a_m_e [_n_a_m_e ...] - With no options, indicate how each _n_a_m_e would be interpreted if + With no options, indicate how each _n_a_m_e would be interpreted if used as a command name. If the --tt option is used, ttyyppee prints a - string which is one of _a_l_i_a_s, _k_e_y_w_o_r_d, _f_u_n_c_t_i_o_n, _b_u_i_l_t_i_n, or - _f_i_l_e if _n_a_m_e is an alias, shell reserved word, function, - builtin, or disk file, respectively. If the _n_a_m_e is not found, - then nothing is printed, and an exit status of false is - returned. If the --pp option is used, ttyyppee either returns the + string which is one of _a_l_i_a_s, _k_e_y_w_o_r_d, _f_u_n_c_t_i_o_n, _b_u_i_l_t_i_n, or + _f_i_l_e if _n_a_m_e is an alias, shell reserved word, function, + builtin, or disk file, respectively. If the _n_a_m_e is not found, + then nothing is printed, and an exit status of false is + returned. If the --pp option is used, ttyyppee either returns the name of the disk file that would be executed if _n_a_m_e were speci- fied as a command name, or nothing if ``type -t name'' would not - return _f_i_l_e. The --PP option forces a PPAATTHH search for each _n_a_m_e, + return _f_i_l_e. The --PP option forces a PPAATTHH search for each _n_a_m_e, even if ``type -t name'' would not return _f_i_l_e. If a command is hashed, --pp and --PP print the hashed value, which is not necessar- - ily the file that appears first in PPAATTHH. If the --aa option is - used, ttyyppee prints all of the places that contain an executable + ily the file that appears first in PPAATTHH. If the --aa option is + used, ttyyppee prints all of the places that contain an executable named _n_a_m_e. This includes aliases and functions, if and only if the --pp option is not also used. The table of hashed commands is - not consulted when using --aa. The --ff option suppresses shell + not consulted when using --aa. The --ff option suppresses shell function lookup, as with the ccoommmmaanndd builtin. ttyyppee returns true if all of the arguments are found, false if any are not found. uulliimmiitt [--HHSSaabbccddeeffiikkllmmnnppqqrrssttuuvvxxPPTT [_l_i_m_i_t]] - Provides control over the resources available to the shell and - to processes started by it, on systems that allow such control. + Provides control over the resources available to the shell and + to processes started by it, on systems that allow such control. The --HH and --SS options specify that the hard or soft limit is set - for the given resource. A hard limit cannot be increased by a - non-root user once it is set; a soft limit may be increased up - to the value of the hard limit. If neither --HH nor --SS is speci- + for the given resource. A hard limit cannot be increased by a + non-root user once it is set; a soft limit may be increased up + to the value of the hard limit. If neither --HH nor --SS is speci- fied, both the soft and hard limits are set. The value of _l_i_m_i_t can be a number in the unit specified for the resource or one of the special values hhaarrdd, ssoofftt, or uunnlliimmiitteedd, which stand for the - current hard limit, the current soft limit, and no limit, - respectively. If _l_i_m_i_t is omitted, the current value of the - soft limit of the resource is printed, unless the --HH option is + current hard limit, the current soft limit, and no limit, + respectively. If _l_i_m_i_t is omitted, the current value of the + soft limit of the resource is printed, unless the --HH option is given. When more than one resource is specified, the limit name and unit are printed before the value. Other options are inter- preted as follows: @@ -5861,12 +5876,12 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS --cc The maximum size of core files created --dd The maximum size of a process's data segment --ee The maximum scheduling priority ("nice") - --ff The maximum size of files written by the shell and its + --ff The maximum size of files written by the shell and its children --ii The maximum number of pending signals --kk The maximum number of kqueues that may be allocated --ll The maximum size that may be locked into memory - --mm The maximum resident set size (many systems do not honor + --mm The maximum resident set size (many systems do not honor this limit) --nn The maximum number of open file descriptors (most systems do not allow this value to be set) @@ -5875,53 +5890,53 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS --rr The maximum real-time scheduling priority --ss The maximum stack size --tt The maximum amount of cpu time in seconds - --uu The maximum number of processes available to a single + --uu The maximum number of processes available to a single user - --vv The maximum amount of virtual memory available to the + --vv The maximum amount of virtual memory available to the shell and, on some systems, to its children --xx The maximum number of file locks --PP The maximum number of pseudoterminals --TT The maximum number of threads - If _l_i_m_i_t is given, and the --aa option is not used, _l_i_m_i_t is the - new value of the specified resource. If no option is given, - then --ff is assumed. Values are in 1024-byte increments, except - for --tt, which is in seconds; --pp, which is in units of 512-byte - blocks; --PP, --TT, --bb, --kk, --nn, and --uu, which are unscaled values; + If _l_i_m_i_t is given, and the --aa option is not used, _l_i_m_i_t is the + new value of the specified resource. If no option is given, + then --ff is assumed. Values are in 1024-byte increments, except + for --tt, which is in seconds; --pp, which is in units of 512-byte + blocks; --PP, --TT, --bb, --kk, --nn, and --uu, which are unscaled values; and, when in Posix mode, --cc and --ff, which are in 512-byte incre- ments. The return status is 0 unless an invalid option or argu- ment is supplied, or an error occurs while setting a new limit. uummaasskk [--pp] [--SS] [_m_o_d_e] The user file-creation mask is set to _m_o_d_e. If _m_o_d_e begins with - a digit, it is interpreted as an octal number; otherwise it is - interpreted as a symbolic mode mask similar to that accepted by - _c_h_m_o_d(1). If _m_o_d_e is omitted, the current value of the mask is - printed. The --SS option causes the mask to be printed in sym- - bolic form; the default output is an octal number. If the --pp + a digit, it is interpreted as an octal number; otherwise it is + interpreted as a symbolic mode mask similar to that accepted by + _c_h_m_o_d(1). If _m_o_d_e is omitted, the current value of the mask is + printed. The --SS option causes the mask to be printed in sym- + bolic form; the default output is an octal number. If the --pp option is supplied, and _m_o_d_e is omitted, the output is in a form that may be reused as input. The return status is 0 if the mode - was successfully changed or if no _m_o_d_e argument was supplied, + was successfully changed or if no _m_o_d_e argument was supplied, and false otherwise. uunnaalliiaass [-aa] [_n_a_m_e ...] - Remove each _n_a_m_e from the list of defined aliases. If --aa is - supplied, all alias definitions are removed. The return value + Remove each _n_a_m_e from the list of defined aliases. If --aa is + supplied, all alias definitions are removed. The return value is true unless a supplied _n_a_m_e is not a defined alias. uunnsseett [-ffvv] [-nn] [_n_a_m_e ...] - For each _n_a_m_e, remove the corresponding variable or function. + For each _n_a_m_e, remove the corresponding variable or function. If the --vv option is given, each _n_a_m_e refers to a shell variable, - and that variable is removed. Read-only variables may not be - unset. If --ff is specified, each _n_a_m_e refers to a shell func- - tion, and the function definition is removed. If the --nn option - is supplied, and _n_a_m_e is a variable with the _n_a_m_e_r_e_f attribute, - _n_a_m_e will be unset rather than the variable it references. --nn - has no effect if the --ff option is supplied. If no options are - supplied, each _n_a_m_e refers to a variable; if there is no vari- - able by that name, any function with that name is unset. Each - unset variable or function is removed from the environment - passed to subsequent commands. If any of CCOOMMPP__WWOORRDDBBRREEAAKKSS, RRAANN-- + and that variable is removed. Read-only variables may not be + unset. If --ff is specified, each _n_a_m_e refers to a shell func- + tion, and the function definition is removed. If the --nn option + is supplied, and _n_a_m_e is a variable with the _n_a_m_e_r_e_f attribute, + _n_a_m_e will be unset rather than the variable it references. --nn + has no effect if the --ff option is supplied. If no options are + supplied, each _n_a_m_e refers to a variable; if there is no vari- + able by that name, any function with that name is unset. Each + unset variable or function is removed from the environment + passed to subsequent commands. If any of CCOOMMPP__WWOORRDDBBRREEAAKKSS, RRAANN-- DDOOMM, SSEECCOONNDDSS, LLIINNEENNOO, HHIISSTTCCMMDD, FFUUNNCCNNAAMMEE, GGRROOUUPPSS, or DDIIRRSSTTAACCKK are unset, they lose their special properties, even if they are sub- sequently reset. The exit status is true unless a _n_a_m_e is read- @@ -5929,23 +5944,23 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS wwaaiitt [--ffnn] [_i_d _._._.] Wait for each specified child process and return its termination - status. Each _i_d may be a process ID or a job specification; if - a job spec is given, all processes in that job's pipeline are + status. Each _i_d may be a process ID or a job specification; if + a job spec is given, all processes in that job's pipeline are waited for. If _i_d is not given, all currently active child pro- cesses are waited for, and the return status is zero. If the --nn - option is supplied, wwaaiitt waits for any job to terminate and - returns its exit status. If the --ff option is supplied, and job + option is supplied, wwaaiitt waits for any job to terminate and + returns its exit status. If the --ff option is supplied, and job control is enabled, wwaaiitt forces _i_d to terminate before returning - its status, instead of returning when it changes status. If _i_d - specifies a non-existent process or job, the return status is - 127. Otherwise, the return status is the exit status of the + its status, instead of returning when it changes status. If _i_d + specifies a non-existent process or job, the return status is + 127. Otherwise, the return status is the exit status of the last process or job waited for. RREESSTTRRIICCTTEEDD SSHHEELLLL If bbaasshh is started with the name rrbbaasshh, or the --rr option is supplied at - invocation, the shell becomes restricted. A restricted shell is used - to set up an environment more controlled than the standard shell. It - behaves identically to bbaasshh with the exception that the following are + invocation, the shell becomes restricted. A restricted shell is used + to set up an environment more controlled than the standard shell. It + behaves identically to bbaasshh with the exception that the following are disallowed or not performed: +o changing directories with ccdd @@ -5954,16 +5969,16 @@ RREESSTTRRIICCTTEEDD SSHHEELLLL +o specifying command names containing // - +o specifying a filename containing a // as an argument to the .. + +o specifying a filename containing a // as an argument to the .. builtin command - +o specifying a filename containing a slash as an argument to the + +o specifying a filename containing a slash as an argument to the --pp option to the hhaasshh builtin command - +o importing function definitions from the shell environment at + +o importing function definitions from the shell environment at startup - +o parsing the value of SSHHEELLLLOOPPTTSS from the shell environment at + +o parsing the value of SSHHEELLLLOOPPTTSS from the shell environment at startup +o redirecting output using the >, >|, <>, >&, &>, and >> redirect- @@ -5972,10 +5987,10 @@ RREESSTTRRIICCTTEEDD SSHHEELLLL +o using the eexxeecc builtin command to replace the shell with another command - +o adding or deleting builtin commands with the --ff and --dd options + +o adding or deleting builtin commands with the --ff and --dd options to the eennaabbllee builtin command - +o using the eennaabbllee builtin command to enable disabled shell + +o using the eennaabbllee builtin command to enable disabled shell builtins +o specifying the --pp option to the ccoommmmaanndd builtin command @@ -5985,14 +6000,14 @@ RREESSTTRRIICCTTEEDD SSHHEELLLL These restrictions are enforced after any startup files are read. When a command that is found to be a shell script is executed (see CCOOMM-- - MMAANNDD EEXXEECCUUTTIIOONN above), rrbbaasshh turns off any restrictions in the shell + MMAANNDD EEXXEECCUUTTIIOONN above), rrbbaasshh turns off any restrictions in the shell spawned to execute the script. SSEEEE AALLSSOO _B_a_s_h _R_e_f_e_r_e_n_c_e _M_a_n_u_a_l, Brian Fox and Chet Ramey _T_h_e _G_n_u _R_e_a_d_l_i_n_e _L_i_b_r_a_r_y, Brian Fox and Chet Ramey _T_h_e _G_n_u _H_i_s_t_o_r_y _L_i_b_r_a_r_y, Brian Fox and Chet Ramey - _P_o_r_t_a_b_l_e _O_p_e_r_a_t_i_n_g _S_y_s_t_e_m _I_n_t_e_r_f_a_c_e _(_P_O_S_I_X_) _P_a_r_t _2_: _S_h_e_l_l _a_n_d _U_t_i_l_i_- + _P_o_r_t_a_b_l_e _O_p_e_r_a_t_i_n_g _S_y_s_t_e_m _I_n_t_e_r_f_a_c_e _(_P_O_S_I_X_) _P_a_r_t _2_: _S_h_e_l_l _a_n_d _U_t_i_l_i_- _t_i_e_s, IEEE -- http://pubs.opengroup.org/onlinepubs/9699919799/ http://tiswww.case.edu/~chet/bash/POSIX -- a description of posix mode @@ -6010,7 +6025,7 @@ FFIILLEESS _~_/_._b_a_s_h_r_c The individual per-interactive-shell startup file _~_/_._b_a_s_h___l_o_g_o_u_t - The individual login shell cleanup file, executed when a login + The individual login shell cleanup file, executed when a login shell exits _~_/_._i_n_p_u_t_r_c Individual _r_e_a_d_l_i_n_e initialization file @@ -6024,14 +6039,14 @@ AAUUTTHHOORRSS BBUUGG RREEPPOORRTTSS If you find a bug in bbaasshh,, you should report it. But first, you should - make sure that it really is a bug, and that it appears in the latest - version of bbaasshh. The latest version is always available from + make sure that it really is a bug, and that it appears in the latest + version of bbaasshh. The latest version is always available from _f_t_p_:_/_/_f_t_p_._g_n_u_._o_r_g_/_p_u_b_/_g_n_u_/_b_a_s_h_/. - Once you have determined that a bug actually exists, use the _b_a_s_h_b_u_g - command to submit a bug report. If you have a fix, you are encouraged - to mail that as well! Suggestions and `philosophical' bug reports may - be mailed to _b_u_g_-_b_a_s_h_@_g_n_u_._o_r_g or posted to the Usenet newsgroup + Once you have determined that a bug actually exists, use the _b_a_s_h_b_u_g + command to submit a bug report. If you have a fix, you are encouraged + to mail that as well! Suggestions and `philosophical' bug reports may + be mailed to _b_u_g_-_b_a_s_h_@_g_n_u_._o_r_g or posted to the Usenet newsgroup ggnnuu..bbaasshh..bbuugg. ALL bug reports should include: @@ -6042,7 +6057,7 @@ BBUUGG RREEPPOORRTTSS A description of the bug behaviour A short script or `recipe' which exercises the bug - _b_a_s_h_b_u_g inserts the first three items automatically into the template + _b_a_s_h_b_u_g inserts the first three items automatically into the template it provides for filing a bug report. Comments and bug reports concerning this manual page should be directed @@ -6059,10 +6074,10 @@ BBUUGGSS Shell builtin commands and functions are not stoppable/restartable. Compound commands and command sequences of the form `a ; b ; c' are not - handled gracefully when process suspension is attempted. When a - process is stopped, the shell immediately executes the next command in - the sequence. It suffices to place the sequence of commands between - parentheses to force it into a subshell, which may be stopped as a + handled gracefully when process suspension is attempted. When a + process is stopped, the shell immediately executes the next command in + the sequence. It suffices to place the sequence of commands between + parentheses to force it into a subshell, which may be stopped as a unit. Array variables may not (yet) be exported. @@ -6071,4 +6086,4 @@ BBUUGGSS -GNU Bash 4.4 2017 October 27 BASH(1) +GNU Bash 4.4 2017 December 28 BASH(1) diff --git a/doc/bash.1 b/doc/bash.1 index e26b6e09..544b07cd 100644 --- a/doc/bash.1 +++ b/doc/bash.1 @@ -5,12 +5,12 @@ .\" Case Western Reserve University .\" chet.ramey@case.edu .\" -.\" Last Change: Thu Dec 28 14:50:35 EST 2017 +.\" Last Change: Thu Jan 4 15:29:06 EST 2018 .\" .\" bash_builtins, strip all but Built-Ins section .if \n(zZ=1 .ig zZ .if \n(zY=1 .ig zY -.TH BASH 1 "2017 December 28" "GNU Bash 4.4" +.TH BASH 1 "2018 January 4" "GNU Bash 4.4" .\" .\" 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-2017 by the Free Software Foundation, Inc. -.if t Bash is Copyright \(co 1989-2017 by the Free Software Foundation, Inc. +.if n Bash is Copyright (C) 1989-2018 by the Free Software Foundation, Inc. +.if t Bash is Copyright \(co 1989-2018 by the Free Software Foundation, Inc. .SH DESCRIPTION .B Bash is an \fBsh\fR-compatible command language interpreter that @@ -8552,6 +8552,8 @@ The return status is 0 unless no command matches .TP \fBhistory \-d\fP \fIoffset\fP .TP +\fBhistory \-d\fP \fIstart\fP\-\fIend\fP +.TP \fBhistory\fP \fB\-anrw\fP [\fIfilename\fP] .TP \fBhistory\fP \fB\-p\fP \fIarg\fP [\fIarg ...\fP] @@ -8593,6 +8595,11 @@ than the last history position, so negative indices count back from the end of the history, and an index of \-1 refers to the current \fBhistory -d\fP command. .TP +\fB\-d\fP \fIstart\fP\-\fIend\fP +Delete the history entries between positions \fIstart\fP and \fIend\fP, +inclusive. Positive and negative values for \fIstart\fP and \fIend\fP +are interpreted as described above. +.TP .B \-a Append the ``new'' history lines to the history file. These are history lines entered since the beginning of the current diff --git a/doc/bash.html b/doc/bash.html index 8e8d4865..a337cfd4 100644 --- a/doc/bash.html +++ b/doc/bash.html @@ -3,7 +3,7 @@ -
BASH(1)2017 October 7BASH(1) +BASH(1)2017 December 28BASH(1)

Index @@ -3398,14 +3398,18 @@ builtin is used to destroy arrays. unset name[subscript] destroys the array element at index subscript, for both indexed and associative arrays. Negative subscripts to indexed arrays are interpreted as described above. -Care must be taken to avoid unwanted side effects caused by pathname -expansion. Unsetting the last element of an array variable does not unset the variable. unset name, where name is an array, or unset name[subscript], where subscript is * or @, removes the entire array.

+When using a variable name with a subscript as an argument to a command, +such as with unset, without using the word expansion syntax +described above, the argument is subject to pathname expansion. +If pathname expansion is not desired, the argument should be quoted. +

+ The declare, @@ -3735,6 +3739,8 @@ it introduces a level of variable indirection. expanded and that value is used in the rest of the substitution, rather than the value of parameter itself. This is known as indirect expansion. +The value is subject to tilde expansion, +parameter expansion, command substitution, and arithmetic expansion. If parameter is a nameref, this expands to the name of the variable referenced by parameter instead of performing the complete indirect expansion. @@ -4131,7 +4137,7 @@ is an array variable subscripted with or *, -the case modification operation is applied to each member of the +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 pathname @@ -5528,10 +5534,6 @@ the unset builtin. -Note that shell functions and variables with the same name may result -in multiple identically-named entries in the environment passed to the -shell's children. -Care should be taken in cases where this may cause a problem.

Functions may be recursive. @@ -7295,7 +7297,8 @@ or

emacs-mode-string (@)
-This string is displayed immediately before the last line of the primary +If the show-mode-in-prompt 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. @@ -7478,9 +7481,9 @@ of ringing the bell.
show-mode-in-prompt (Off)
-If set to On, add a character to the beginning of the prompt -indicating the editing mode: emacs (@), vi command (:) or vi -insertion (+). +If set to On, add a string to the beginning of the prompt +indicating the editing mode: emacs, vi command, or vi insertion. +The mode strings are user-settable (e.g., emacs-mode-string).
skip-completed-text (Off)
@@ -7493,7 +7496,8 @@ following the cursor are not duplicated.
vi-cmd-mode-string ((cmd))
-This string is displayed immediately before the last line of the primary +If the show-mode-in-prompt 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 is expanded like a key binding, so the standard set of meta- and control prefixes and @@ -7504,7 +7508,8 @@ sequence into the mode string.
vi-ins-mode-string ((ins))
-This string is displayed immediately before the last line of the primary +If the show-mode-in-prompt 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 @@ -7536,8 +7541,9 @@ The construct allows bindings to be made based on the editing mode, the terminal being used, or the application using -readline. The text of the test extends to the end of the line; -no characters are required to isolate it. +readline. The text of the test, after any comparison operator, +
 extends to the end of the line; +unless otherwise noted, no characters are required to isolate it.
mode
@@ -7564,6 +7570,33 @@ and sun-cmd, for instance. +
version
+The version test may be used to perform comparisons against +specific readline versions. +The version expands to the current readline version. +The set of comparison operators includes +=, + +(and +==), + +!=, + +<=, + +>=, + +<, + +and +>. + +The version number supplied on the right side of the operator consists +of a major version number, an optional decimal point, and an optional +minor version (e.g., 7.1). If the minor version is omitted, it +is assumed to be 0. +The operator may be separated from the string version +and from the version number argument by whitespace.
application
The application construct is used to include application-specific settings. Each program using the readline @@ -7583,6 +7616,15 @@ key sequence that quotes the current or previous word in bash:
+
variable
+The variable construct provides simple equality tests for 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 variables may be tested. Boolean variables must be +tested against the values on and off.
$endif
@@ -11610,7 +11652,7 @@ is omitted, the return status is that of the last command executed in the function body. If return is executed by a trap handler, the last command used to determine the status is the last command executed before the trap handler. -if return is executed during a DEBUG trap, the last command +If return is executed during a DEBUG trap, the last command used to determine the status is the last command executed by the trap handler before return was invoked. If @@ -12171,7 +12213,8 @@ With no options, or with the -p option, a list of all settable options is displayed, with -an indication of whether or not each is set. +an indication of whether or not each is set; +if optnames are supplied, the output is restricted to those options. The -p option causes output to be displayed in a form that may be reused as input. Other options have the following meanings: @@ -13754,7 +13797,7 @@ There may be only one active coprocess at a time.
-
GNU Bash 4.42017 October 7BASH(1) +GNU Bash 4.42017 December 28BASH(1)

@@ -13860,6 +13903,6 @@ There may be only one active coprocess at a time.
This document was created by man2html from bash.1.
-Time: 09 October 2017 15:38:40 EDT +Time: 02 January 2018 10:55:16 EST diff --git a/doc/bash.info b/doc/bash.info index 1fcaa314..fb8fba09 100644 --- a/doc/bash.info +++ b/doc/bash.info @@ -1,10 +1,10 @@ -This is bash.info, produced by makeinfo version 6.4 from +This is bash.info, produced by makeinfo version 6.5 from bashref.texi. This text is a brief description of the features that are present in the -Bash shell (version 4.4, 7 October 2017). +Bash shell (version 4.4, 19 December 2017). - This is Edition 4.4, last updated 7 October 2017, of 'The GNU Bash + This is Edition 4.4, last updated 19 December 2017, of 'The GNU Bash Reference Manual', for 'Bash', Version 4.4. Copyright (C) 1988-2017 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 4.4, 7 October 2017). The Bash home page is +Bash shell (version 4.4, 19 December 2017). The Bash home page is . - This is Edition 4.4, last updated 7 October 2017, of 'The GNU Bash + This is Edition 4.4, last updated 19 December 2017, of 'The GNU Bash Reference Manual', for 'Bash', Version 4.4. Bash contains features that appear in other popular shells, and some @@ -1274,10 +1274,7 @@ the 'declare' ('typeset') builtin command (*note Bash Builtins::). The (and optionally the source file and line number, if the 'extdebug' shell option is enabled). Functions may be exported so that subshells automatically have them defined with the '-f' option to the 'export' -builtin (*note Bourne Shell Builtins::). Note that shell functions and -variables with the same name may result in multiple identically-named -entries in the environment passed to the shell's children. Care should -be taken in cases where this may cause a problem. +builtin (*note Bourne Shell Builtins::). Functions may be recursive. The 'FUNCNEST' variable may be used to limit the depth of the function call stack and restrict the number of @@ -1548,10 +1545,7 @@ each term. The default increment is 1 or -1 as appropriate. Brace expansion is performed before any other expansions, and any characters special to other expansions are preserved in the result. It is strictly textual. Bash does not apply any syntactic interpretation -to the context of the expansion or the text between the braces. To -avoid conflicts with parameter expansion, the string '${' is not -considered eligible for brace expansion, and inhibits brace expansion -until the closing '}'.. +to the context of the expansion or the text between the braces. A correctly-formed brace expansion must contain unquoted opening and closing braces, and at least one unquoted comma or a valid sequence @@ -1560,7 +1554,7 @@ expression. Any incorrectly formed brace expansion is left unchanged. A { or ',' may be quoted with a backslash to prevent its being considered part of a brace expression. To avoid conflicts with parameter expansion, the string '${' is not considered eligible for -brace expansion. +brace expansion, and inhibits brace expansion until the closing '}'.. This construct is typically used as shorthand when the common prefix of the strings to be generated is longer than in the above example: @@ -1660,12 +1654,14 @@ PARAMETER is not a NAMEREF, it introduces a level of variable indirection. Bash uses the value of the variable formed from the rest of PARAMETER as the name of the variable; this variable is then expanded and that value is used in the rest of the substitution, rather than the -value of PARAMETER itself. This is known as 'indirect expansion'. If -PARAMETER is a nameref, this expands to the name of the variable -referenced by PARAMETER instead of performing the complete indirect -expansion. The exceptions to this are the expansions of ${!PREFIX*} and -${!NAME[@]} described below. The exclamation point must immediately -follow the left brace in order to introduce indirection. +value of PARAMETER itself. This is known as 'indirect expansion'. The +value is subject to tilde expansion, parameter expansion, command +substitution, and arithmetic expansion. If PARAMETER is a nameref, this +expands to the name of the variable referenced by PARAMETER instead of +performing the complete indirect expansion. The exceptions to this are +the expansions of ${!PREFIX*} and ${!NAME[@]} described below. The +exclamation point must immediately follow the left brace in order to +introduce indirection. In each of the cases below, WORD is subject to tilde expansion, parameter expansion, command substitution, and arithmetic expansion. @@ -3098,7 +3094,7 @@ standard. status of the last command executed in the function. If 'return' is executed by a trap handler, the last command used to determine the status is the last command executed before the trap handler. - if 'return' is executed during a 'DEBUG' trap, the last command + If 'return' is executed during a 'DEBUG' trap, the last command used to determine the status is the last command executed by the trap handler before 'return' was invoked. 'return' may also be used to terminate execution of a script being executed with the '.' @@ -4305,9 +4301,10 @@ This builtin allows you to change additional shell optional behavior. option is used, those available with the '-o' option to the 'set' builtin command (*note The Set Builtin::). With no options, or with the '-p' option, a list of all settable options is displayed, - with an indication of whether or not each is set. The '-p' option - causes output to be displayed in a form that may be reused as - input. Other options have the following meanings: + with an indication of whether or not each is set; if OPTNAMES are + supplied, the output is restricted to those options. The '-p' + option causes output to be displayed in a form that may be reused + as input. Other options have the following meanings: '-s' Enable (set) each OPTNAME. @@ -6233,11 +6230,15 @@ quotes. The 'unset' builtin is used to destroy arrays. 'unset NAME[SUBSCRIPT]' destroys the array element at index SUBSCRIPT. Negative subscripts to indexed arrays are interpreted as described -above. Care must be taken to avoid unwanted side effects caused by -filename expansion. Unsetting the last element of an array variable -does not unset the variable. 'unset NAME', where NAME is an array, -removes the entire array. A subscript of '*' or '@' also removes the -entire array. +above. Unsetting the last element of an array variable does not unset +the variable. 'unset NAME', where NAME is an array, removes the entire +array. A subscript of '*' or '@' also removes the entire array. + + When using a variable name with a subscript as an argument to a +command, such as with 'unset', without using the word expansion syntax +described above, the argument is subject to the shell's filename +expansion. If filename expansion is not desired, the argument should be +quoted. The 'declare', 'local', and 'readonly' builtins each accept a '-a' option to specify an indexed array and a '-A' option to specify an @@ -7393,14 +7394,14 @@ Variable Settings This variable can be set to either 'emacs' or 'vi'. 'emacs-mode-string' - 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 mode string. The - default is '@'. + If the SHOW-MODE-IN-PROMPT 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 mode string. The default is '@'. 'enable-bracketed-paste' When set to 'On', Readline will configure the terminal in a @@ -7552,10 +7553,10 @@ Variable Settings default value is 'off'. 'show-mode-in-prompt' - If set to 'on', add a character to the beginning of the prompt + If set to 'on', add a string to the beginning of the prompt indicating the editing mode: emacs, vi command, or vi - insertion. The mode strings are user-settable. The default - value is 'off'. + insertion. The mode strings are user-settable (e.g., + EMACS-MODE-STRING). The default value is 'off'. 'skip-completed-text' If set to 'on', this alters the default completion behavior @@ -7571,24 +7572,26 @@ Variable Settings 'off'. 'vi-cmd-mode-string' - 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 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 mode - string. The default is '(cmd)'. + If the SHOW-MODE-IN-PROMPT 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 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 mode string. The + default is '(cmd)'. 'vi-ins-mode-string' - 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 control sequence into the mode - string. The default is '(ins)'. + If the SHOW-MODE-IN-PROMPT 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 control sequence into the mode string. The + default is '(ins)'. 'visible-stats' If set to 'on', a character denoting a file's type is appended @@ -7715,8 +7718,9 @@ four parser directives used. '$if' The '$if' construct allows bindings to be made based on the editing mode, the terminal being used, or the application using Readline. - The text of the test extends to the end of the line; no characters - are required to isolate it. + The text of the test, after any comparison operator, extends to the + end of the line; unless otherwise noted, no characters are required + to isolate it. 'mode' The 'mode=' form of the '$if' directive is used to test @@ -7733,6 +7737,22 @@ four parser directives used. the portion of the terminal name before the first '-'. This allows 'sun' to match both 'sun' and 'sun-cmd', for instance. + 'version' + The 'version' test may be used to perform comparisons against + specific Readline versions. The 'version' expands to the + current Readline version. The set of comparison operators + includes '=' (and '=='), '!=', '<=', '>=', '<', and '>'. The + version number supplied on the right side of the operator + consists of a major version number, an optional decimal point, + and an optional minor version (e.g., '7.1'). If the minor + version is omitted, it is assumed to be '0'. The operator may + be separated from the string 'version' and from the version + number argument by whitespace. The following example sets a + variable if the Readline version being used is 7.0 or newer: + $if version >= 7.0 + set show-mode-in-prompt on + $endif + 'application' The APPLICATION construct is used to include application-specific settings. Each program using the @@ -7746,6 +7766,20 @@ four parser directives used. "\C-xq": "\eb\"\ef\"" $endif + 'variable' + The VARIABLE construct provides simple equality tests for + 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 variables may be + tested. Boolean variables must be tested against the values + ON and OFF. The following example is equivalent to the + 'mode=emacs' test described above: + $if editing-mode == emacs + set show-mode-in-prompt on + $endif + '$endif' This command, as seen in the previous example, terminates an '$if' command. @@ -11139,9 +11173,9 @@ D.3 Parameter and Variable Index * vi-cmd-mode-string: Readline Init File Syntax. (line 310) * vi-ins-mode-string: Readline Init File Syntax. - (line 320) + (line 321) * visible-stats: Readline Init File Syntax. - (line 330) + (line 332)  File: bash.info, Node: Function Index, Next: Concept Index, Prev: Variable Index, Up: Indexes @@ -11504,134 +11538,134 @@ D.5 Concept Index  Tag Table: -Node: Top893 -Node: Introduction2809 -Node: What is Bash?3025 -Node: What is a shell?4139 -Node: Definitions6677 -Node: Basic Shell Features9628 -Node: Shell Syntax10847 -Node: Shell Operation11873 -Node: Quoting13166 -Node: Escape Character14466 -Node: Single Quotes14951 -Node: Double Quotes15299 -Node: ANSI-C Quoting16577 -Node: Locale Translation17836 -Node: Comments18732 -Node: Shell Commands19350 -Node: Simple Commands20222 -Node: Pipelines20853 -Node: Lists23785 -Node: Compound Commands25524 -Node: Looping Constructs26536 -Node: Conditional Constructs29031 -Node: Command Grouping40086 -Node: Coprocesses41565 -Node: GNU Parallel43397 -Node: Shell Functions47371 -Node: Shell Parameters54570 -Node: Positional Parameters58983 -Node: Special Parameters59883 -Node: Shell Expansions63220 -Node: Brace Expansion65343 -Node: Tilde Expansion68177 -Node: Shell Parameter Expansion70525 -Node: Command Substitution84702 -Node: Arithmetic Expansion86057 -Node: Process Substitution86989 -Node: Word Splitting88109 -Node: Filename Expansion90053 -Node: Pattern Matching92427 -Node: Quote Removal96413 -Node: Redirections96708 -Node: Executing Commands106266 -Node: Simple Command Expansion106936 -Node: Command Search and Execution108866 -Node: Command Execution Environment111242 -Node: Environment114226 -Node: Exit Status115885 -Node: Signals117555 -Node: Shell Scripts119522 -Node: Shell Builtin Commands122037 -Node: Bourne Shell Builtins124075 -Node: Bash Builtins144730 -Node: Modifying Shell Behavior173639 -Node: The Set Builtin173984 -Node: The Shopt Builtin184397 -Node: Special Builtins200732 -Node: Shell Variables201711 -Node: Bourne Shell Variables202148 -Node: Bash Variables204252 -Node: Bash Features234045 -Node: Invoking Bash234944 -Node: Bash Startup Files240930 -Node: Interactive Shells246033 -Node: What is an Interactive Shell?246443 -Node: Is this Shell Interactive?247092 -Node: Interactive Shell Behavior247907 -Node: Bash Conditional Expressions251395 -Node: Shell Arithmetic255761 -Node: Aliases258578 -Node: Arrays261126 -Node: The Directory Stack266288 -Node: Directory Stack Builtins267072 -Node: Controlling the Prompt270040 -Node: The Restricted Shell272802 -Node: Bash POSIX Mode274627 -Node: Job Control284978 -Node: Job Control Basics285438 -Node: Job Control Builtins290406 -Node: Job Control Variables295133 -Node: Command Line Editing296289 -Node: Introduction and Notation297960 -Node: Readline Interaction299583 -Node: Readline Bare Essentials300774 -Node: Readline Movement Commands302557 -Node: Readline Killing Commands303517 -Node: Readline Arguments305435 -Node: Searching306479 -Node: Readline Init File308665 -Node: Readline Init File Syntax309812 -Node: Conditional Init Constructs329999 -Node: Sample Init File332524 -Node: Bindable Readline Commands335641 -Node: Commands For Moving336845 -Node: Commands For History338694 -Node: Commands For Text342989 -Node: Commands For Killing346378 -Node: Numeric Arguments348859 -Node: Commands For Completion349998 -Node: Keyboard Macros354189 -Node: Miscellaneous Commands354876 -Node: Readline vi Mode360829 -Node: Programmable Completion361736 -Node: Programmable Completion Builtins369197 -Node: A Programmable Completion Example379083 -Node: Using History Interactively384334 -Node: Bash History Facilities385018 -Node: Bash History Builtins388019 -Node: History Interaction392311 -Node: Event Designators395373 -Node: Word Designators396592 -Node: Modifiers398229 -Node: Installing Bash399631 -Node: Basic Installation400768 -Node: Compilers and Options403459 -Node: Compiling For Multiple Architectures404200 -Node: Installation Names405863 -Node: Specifying the System Type406681 -Node: Sharing Defaults407397 -Node: Operation Controls408070 -Node: Optional Features409028 -Node: Reporting Bugs419554 -Node: Major Differences From The Bourne Shell420748 -Node: GNU Free Documentation License437600 -Node: Indexes462777 -Node: Builtin Index463231 -Node: Reserved Word Index470058 -Node: Variable Index472506 -Node: Function Index488184 -Node: Concept Index501487 +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 Commands25532 +Node: Looping Constructs26544 +Node: Conditional Constructs29039 +Node: Command Grouping40094 +Node: Coprocesses41573 +Node: GNU Parallel43405 +Node: Shell Functions47379 +Node: Shell Parameters54355 +Node: Positional Parameters58768 +Node: Special Parameters59668 +Node: Shell Expansions63005 +Node: Brace Expansion65128 +Node: Tilde Expansion67852 +Node: Shell Parameter Expansion70200 +Node: Command Substitution84488 +Node: Arithmetic Expansion85843 +Node: Process Substitution86775 +Node: Word Splitting87895 +Node: Filename Expansion89839 +Node: Pattern Matching92213 +Node: Quote Removal96199 +Node: Redirections96494 +Node: Executing Commands106052 +Node: Simple Command Expansion106722 +Node: Command Search and Execution108652 +Node: Command Execution Environment111028 +Node: Environment114012 +Node: Exit Status115671 +Node: Signals117341 +Node: Shell Scripts119308 +Node: Shell Builtin Commands121823 +Node: Bourne Shell Builtins123861 +Node: Bash Builtins144516 +Node: Modifying Shell Behavior173425 +Node: The Set Builtin173770 +Node: The Shopt Builtin184183 +Node: Special Builtins200592 +Node: Shell Variables201571 +Node: Bourne Shell Variables202008 +Node: Bash Variables204112 +Node: Bash Features233905 +Node: Invoking Bash234804 +Node: Bash Startup Files240790 +Node: Interactive Shells245893 +Node: What is an Interactive Shell?246303 +Node: Is this Shell Interactive?246952 +Node: Interactive Shell Behavior247767 +Node: Bash Conditional Expressions251255 +Node: Shell Arithmetic255621 +Node: Aliases258438 +Node: Arrays260986 +Node: The Directory Stack266352 +Node: Directory Stack Builtins267136 +Node: Controlling the Prompt270104 +Node: The Restricted Shell272866 +Node: Bash POSIX Mode274691 +Node: Job Control285042 +Node: Job Control Basics285502 +Node: Job Control Builtins290470 +Node: Job Control Variables295197 +Node: Command Line Editing296353 +Node: Introduction and Notation298024 +Node: Readline Interaction299647 +Node: Readline Bare Essentials300838 +Node: Readline Movement Commands302621 +Node: Readline Killing Commands303581 +Node: Readline Arguments305499 +Node: Searching306543 +Node: Readline Init File308729 +Node: Readline Init File Syntax309876 +Node: Conditional Init Constructs330247 +Node: Sample Init File334443 +Node: Bindable Readline Commands337560 +Node: Commands For Moving338764 +Node: Commands For History340613 +Node: Commands For Text344908 +Node: Commands For Killing348297 +Node: Numeric Arguments350778 +Node: Commands For Completion351917 +Node: Keyboard Macros356108 +Node: Miscellaneous Commands356795 +Node: Readline vi Mode362748 +Node: Programmable Completion363655 +Node: Programmable Completion Builtins371116 +Node: A Programmable Completion Example381002 +Node: Using History Interactively386253 +Node: Bash History Facilities386937 +Node: Bash History Builtins389938 +Node: History Interaction394230 +Node: Event Designators397292 +Node: Word Designators398511 +Node: Modifiers400148 +Node: Installing Bash401550 +Node: Basic Installation402687 +Node: Compilers and Options405378 +Node: Compiling For Multiple Architectures406119 +Node: Installation Names407782 +Node: Specifying the System Type408600 +Node: Sharing Defaults409316 +Node: Operation Controls409989 +Node: Optional Features410947 +Node: Reporting Bugs421473 +Node: Major Differences From The Bourne Shell422667 +Node: GNU Free Documentation License439519 +Node: Indexes464696 +Node: Builtin Index465150 +Node: Reserved Word Index471977 +Node: Variable Index474425 +Node: Function Index490103 +Node: Concept Index503406  End Tag Table diff --git a/doc/bash.pdf b/doc/bash.pdf index 042c215cb26111ba22abad9f3e421d3c91ada76d..0f1d5c144edc742e201f01acd8f053f2f1561a8f 100644 GIT binary patch literal 372088 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

i88= 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

    x>ABv(qGg3-AYRB7whMk^kSrUaVX>!uDzAi=c z{vDFK*;OMf(jGk9lqI1;Q^Qfbbk50kM{UHHfB!vJINcuzdG*z z>ho#IQiIqp68ogrNoFWg>w^=rg=)TP3Si{F{J~3`uz-@0C=?9ESKZ{TLEBc31tb!b}u2axgi6?4dt>7%`@Pgcfuvo~%pTk>uWQHfq9nEXlNdHrZjDqa67-#LdI_iZ1*^2tHc->4xnUvYUQ1HD8`&E|twPC$Yr z?9P+JM+79EU>)75th2s8ixPx|rpS!sJIHv(YjcF{VHQ2AO!w0d(C*F5&F4DbSnMn-)HP$zx-dqD zs~2%px%i^uXS92*c1_wxh)Sp(gg4ayrFrh1!%#FWL=LdBJ|c_5VKJ?IfNjLW7fvm^xA z9OEQ7=yBm&#)s8FZ2H6KNya+et1Wx85xENmCq=!JX}45bXXrAgO1ifgd~Uq@K*DLX zI8bim$m6RH?d+A2wN6*ze{VLc$FKO$Z&&MbDkLmP`)*;Y$GQvcxc}l8WN-6uS#;kT z-&VaKpZ|>A;IEpUH<;h3O^+%s?wb$719sN-_=YR4)?1IhOUfIIVoSS!8jMeq%vNpt ztmP(L(rlKaICRb{zQx@nJqf}@QCz|@oIs6toaBs^fpyQTEq8Sr&HKRkQ9P4$`>Z?0rZ*HQ zwUv%1grD3B4~S|OH&h$L`bK(ct|*eHZJL> zku6=ZRxKz+JE>3KI{TAOq6!#9re?@r)Ty;SzU=Fg%VykTGtnD^#>li7HWDf(OI++9 zVoof$&f&hO*x)3ORJq2FZvmU~JkL2pGn&GHGqRSvAC3aP{B9{Eh3B5{JIi>Jzyx4B zp*UUVHHnHi@2&mX7{*_Ms_-YMCEC9qvBe91eEijqweC>ftt9}KN_b!T=4MfYI+Qh{ zNTKB5=p8s7U^c}-YHfCEFleco;-K}N{#-~L{nYf`z3&ANay19xqFJ}$`V#|(^b_5^ zT3KOX&3jYOJ~9)xsZTFcY91^~=k`>uT$5bDgdG)0;LKBG8rciTv{Ff$tJ%tj)h=4| z5UU6UdSn%dvrzHo5LQ)JNgsoSO?EiLuuUGP#aCuO44ddPB?gQlkuB*(=3b|;{{7P=J8KCTMT?Tp}zH= z-|f9d&@?_=N&6K_vb$f zuae?BuxA+9^pRe;9n8UE2S0=Yd^j6;;!? zX#Lb06lR++8sFA-d;a4(EHn$mU#@D{+VjykN`r4@0G%;% zx6vrXI2+zuB^GL4s}aBsnO95cO7dB@*;NzQ)R?Gq<(4yHv)sx9IAGGgkMok1R|EDZ z51iN!)qo{UhUaRb0;Q0lvx)=VSF6Vsu4N)0diR&nUQ%6gud??kCkR5m_wK?~?}S00 zj3~eI&q%CN#;(ecAmbtZh%VSSF`2h4To z%E>Aqo3Cn%T7JK6aOPeU<8&UM~NP3sY&J)$-ki4`2|4hze=m zwJAs-nU!nA0@NzWgL}zd+{V6!R|%fQ{X}^s_?b53b`{yIT7w-694X=e)s z1GK4X<01+NdwRY>U_E0w1Baqb|Gi<`w*DkdWm#Rs=HBfWbCFwdZNZS3W~2G_23R$1 zlE&-Bwv`mIZXl&ENv{z(C)!F`qGuZzBZA~VZK8e{<}Eu~%4PF;IT@Qw#Kz7H`~r`q zKKs$x)`ktoz1J{F*`-lKdNClJl7^+%8Rpt3KmvK}ovh0oSMynvF-j&WCV8;^<+?=A z2@2?uW_QXzKjF;3BgWV9p(R!>%%73D)r~`npQ!0wrbOY?GqRv zi$qG;yuy6Q4tKhT?736B;lQh+viI{_TJiNb_hF;m-bM!5uu!7|{XTkJyAq(26Pfmh z)@H+I(ZH5Ri>%ZZh*0_KgLmVXPz`H$RNewq9Hlg8h4pf8O&?M0Nv`~SD>uxDrko+6 z!}19EjM5J!BnHq0?(1pT{l*vl${gcI5jP>#$+}l^GP2486%H60+*|&& zwg$i1`=J7RXy1eV61v|k1no8hK*SKs9UXpjpdZxIptr}^9B{NM196D(9?$xSfck=U zqW^&HkKa`dl%L8-?_YVXg!A7KaJms28|2y|gn1Q_exT-k&>HT-?_bGyrL{T`Z14W+ z)qRH7-1vlm2Ui@eKDwN@v`t_!Ew$H(*uN&yeOMOiz2mU10}l zns!L`q+Wx}>G%cgK8;HkC`$}Us?troz56Xnj5{0~`wO}Y&ZKv7SR;8{_Q2Ghwu`C# zf)vW|VzXo!$=B@O+a5d|pkQCFjEYZmUYevm0*rpBF5!uoZFNySZn zU8LoWIm(yK*<^R`o30dyol7vWP>J?ymkl!6J#dfYqU>}Sgb=-W8HIhgz+{%wN5!7n zSonvB&*kGIJsN%3m%nstVuBGTb$w(Zi^LzG0rN|mNn%Q~&m2;UuPq>@m3d@4LasejdTUq~su zYG~Pq+~8I_zvOZrusZP6V?uwZMh!6cT(%c>qW+CQAS)<7xRw~nvQS!LDS)cK0MPOW zk3xXHRYUI|wHLe$4OPu9jcYMp7CSh|rEvpBy!U!Tcr4XcDh{f&P2%Ldd7+@aB7++E;iJOj*<~ zd!mt#<|cSdXX7=%J)5nLjQP()_B2cU=P&D0AGwnXe_e$cI+pLF1jIn=#0XSvImB1p@Y^5pZ z(SlfnN;bDX>A5moU$mTN;?q?!(*TUc<+nco!{GLHT^2r*-w5YO$Q>*)KJ8%YMF926 z3DI~JPD0+NO)YyQv~qJS66nyM9T=t^w8S7u?YsK>{XKv0Pi32f@doqhr2_EI+e5R1I9SKv`g}Rj*R)P$ zpB^r*`|nzZHZn~-#viIJzdcLkF+`c6lb2@V(M5b{&9MHa(n8B9EkA4_WjvLwNt50* z;_o>;2X(D3u$FKL5ajc@H!rRM`|5kzMaf(gIbaLPAXrD(GfNwH41NU$z8X6pE7RHG zlshOA1Zen0)5kUp^n z<3;BEdmPoxPKSP;;O9$%1XQ0QP*cq7*q7P*DQ>2$gns(rxMSGICN2m)L9s-l65^s5 zz3GAhXSb9G^6Mmd5NUnp+G*ax??bB?Q=*_NS18TYO_ZA2tOH1(o>|nw@c(0)ueUkg!Y2p9dcTZ)ng@ z6R%nt;6Md$C`Nj|mtx>PC%ENy9RPi8*}J4t9I%~w z$iri&5kjVOG_xZufeD9;Ebi>aJ+$DT7**3%Qn85c(yJnZe9WAqIHo62s2$T*XPDu`<1pSq1^e8-P%gxD=b5{s+S;m#?J zh%3MNODKd$4sc2e%B}=fmo4B#XOaYtRpe!n71YWK%+(%_KhtDsVc6r7T*$>~Aob{IN#Y(1TKpI; z2T{Ny+UuY=l9?nNhdr*+K*T9<^KZpPa)cN}{vQqC({Ems3I_^WBI-LH)+?elqIqzD zczg2C;oo)6CS=os6=${A6G%8$L67NJb5~AAM&mn*>YO6{I`;>O%uf~A{l3AD%H=b+ zj~F)k$r04tQ4Y0=t8Ii`y5ctLqVFpnx)8&KmPY1(?=s)DLtB0Co!g;_q5ib-O|gWq z?enI02NL+J4N~a(CIoQdL$z%qM$8T}N-MJ_1J0q;qLSo12KK;IRuII+qm-JRxC5~P z^xh^12o4lor|5?TG{*~;$cAHXo}o@?p=($?THd8@>T@G&D9kU)yi%d!g_?IqB)eXM zNdL4S@rQy)I3cqy9(WhFE=&(YLAi0Vg>em===0B@x92vV;D})bY-gwPxxKuc(Gchh zrh1|CWFMB1ieq2oDv+(Z31FAQt>|R&_* z1n9;Dj$je~Ko^^?hLt7G?|~8pr0o5bSB9Zw*SZ2J9UW?Fxj@{UAC=VRl984wr$(CZQHhO z+qP}vR`ib?z|^eD!XE8 zrJre97dxMxdQA8k+P}29J@NTr<1G4r=b8VWQvN&NO~=ake@fSw{{www{$J6@qF?%W zF#KPdd0lv-yjX+%)YL(LL*C?BU(<0nCyP$#cvUotuM80|^G& z*cOEaxv?Is1HxM;jeq{*q?J0^U8z2M2e z>m_+ss4uPj(UhS`qq9~<>^gPXx>If0Ab3;Qk~WTG@s(4hnmn(7bBvkmIm|T97hUe` zt+`%^TI1^T$*>b$3=fZtjW6NJ++_gWd8BZK^dw#wIV)9HU3?Pbg5D}F6H&cw%qJ#d zq?xbYAqg=?Z&-S9@d3Dz)!%BE7OO9o)OffDgMp}?2%}3d%CCG3yLl$Zcs{okl`h|L z`mz(neRnVDWqpLFs;?*Sk16~{NatYG%J3BZQ#48R`2dxCmv8Gm@6qMNld3^Pfbco~ zp4V_)yuQUallo}=RoK}>@#SXS4e+Cu!ChH@XuSj78jXfQFI+Mcs;uIZpcg$pTFSPC=Bvy!RrjWAip#+|!e&n6a zO*SGIUEzi7T`HM!K@dK0Cx=KfdVM?kQ=S< zv?ziVT_820*9VoFPz~2XdjYnfyhW@FYd3ymGY< z2IgMQrxGs2L`t$xL&_o+lqZ?{k)$WstU-qPDL1%5G7RJCC8dGbYhxKM@qMLoJRk7W@NegkG~ca65xM%0GX+-eS5FNMZjbz_H&>!WQ}9 ztTb+dWT=3%ITeL0iGumr!oomW4FjoUTfpDIn!G?TRR!Lc=M%?>c3(qhCE@MY6Xt7f z`N%3%@<;tbMIMLe{1f8@!N@EnK(Z~IihwWil(?E(d1av3z{!Dtiz#!i!nzO4u)xD- z3ZiM#r~jjf_$I4eF+(|Sa-|6V?d08%F$d3U`Uz+v_c7;yE)`Q+SIvlFL(PUrQCDr+ zJ8mqnyaW_Jm^`72JU>0sUG)!|y5T8CJw!_K@y3)CAT+*~weilL3*o^rN1^dvH&%(N zp!;yJWDt1nzmhNU!Wn^vGPpgpG1}(^<4kvj+LhEqC01pEh}7kV!>DFy0JG#qdl}X8 ztPP{P6I)do%9JGWLPO`Ry<8~5(v|)Qz0i85S+4U2-xj~g_ADO70!w#Q1oHu_ zT7Ex8!MGXKqwV>#g>F7)wis=2sW_7)WViSB+>VZ5BsHy4x!y)hIDAI8*>Ah3e0-}4 z^2O4OI`^)q7R|gNxG?BiT z?92HCdDdOeA;!aXiJFnwjXg@I;xSnQerq^Q?^_bRieE))OkS?z#OOl#I5i^%Zv3GkaF^7}_s}L??V=`Zj z*P5_A_7w&9R(kkXWMBdi)}&TXuW&>)8oO+WAvqOjgl4_A9FA#3lF;FslBZ3Zko&V$gFF%$ca>7e*j)o>cd@#*`q+@St%Nz zXsHf3WyrM-QB`>0dEoIx9aG{N`Dbpc43r6i8uILGurK&4X5mf$>(bb>-esajn0CN{ z=Pv~Q8myZ4$}7U$JZxfA1Ro(MhtrM;G8O6)$XpgQW88Vpe3QAka-k<1;E3It62NyM zUY(lg-o@TwC>{o&LG<#mv;sMP>W{9~1F~V|S`bsk!mWTeoqzI5f6xez+UUcLGqCZ% zYO!Js`tgoJ=W=rQ(HEU|){dSV3H+$#K^ZCiaCE#`Z~i@Wx+i%R(VWxdXumPtUAIgx zpFuZa#~5PLLP%Z>OZI(hC406o@cM_udA z<}vw~jG^;(myKy;l@!nWQ`S2U2Ig=LdDFrI^y^`o{goAt^8ni6s#FCP1Qhky78VsK zy38wg77j;|_3X-=fA=)c>j8VVUks3pJgyRgg%#hqsQy3`(>VZQb=xAL0fSKQfZkRt zXeTSDCg;x(nV6r3w`He=D(jVWJ`8W~ainW18}(IeoxtA|$Ba72YydPkAINpVl{R1a z3~lJ|i-A%*D#O8ri^#)SP>zqpU>@1r~)k9+k#A&Y|7c7lj-eyXH zA3D7)q%}KTL_>7cO&pAtblzHQSEd_=L&oFFB+%(X@2hOdL;#04bU}kUA#{9qH}&uS z6Q>!o;A@qNcW}-h!XVP;l?P=&8VM2Ad=3v^q z4Ap!^;b*pr&81sl&a#UI5DPk)xeDw&ueWnK9E3RHmb;Ss0`+(x>Fatz4OS~H=N*HG zCcA1|1V>Ir4Yx4Sd#yU;T%cX!X0Uyjt+8e1(4Y_Q#uaK)wyC~TjzcLw~ao7N1lzUlO& z^X1t0-uq8axM|6xyndd;SCrx1-FyaaQjigqXJd6rNIRMF_Z9wp;tl9IX{X!lh!y{c}mYCT$jJIWWsG|L_q<&jvycvYWp&0k<>A1zw zEh((;yzF2a3A5reXm{)-Z6RAjyJx1(LT(=%H(GOvUPTHC zcEc=2Q-;@6Kexpf5zn=dfN06+0`(OI_}gL zyJ$@!0V090tsSl$9P~k#a#x{m_ubJ~!6BJWNW&%D_Cm1NSd8GhJ9tqz)}NUkI~A8po+64Qk;=G1eujQle@DQ0_kcnDFeC$^g&bDv0}`j z(L{NVT$og5o$pc)K)MJ((Aufo=FUvsmuUF>Qc3n2PZL4Dr*tDO+32ux${;0U;zyMZ zU)!()Y`md{YFKmH7vojMG!~9L+zz6kF&^-rtExMG`I*9;KxdxWZKbmn?Av|9&FbkW zU@rmzg*Uc?`_@Un*2%XuYRlidMiwd=K4fH8RE8ck&U$B0>3hmDTC zR2qrzJP|3;$2^ZXXV7dc^NbvFfFsR2P@ztDmCWh)lecT3!w8L7{M4XO!b}xiYKxkV zX<(o>tKfw^?_tw)zlgYfuQ8%WekK}91G!Q))tvZqj0Mi_aO9s?k2N6l{5?q{tI=CLIPS~fWiV!(WG+6Jh-U)7#%E+h$rdF%Wu1){ zT;uZb-nmVE4)<0QGYA#QyK2+6mM|jH-U*Iu-|VIu8R8w9l&+%d9w316}Cjd z6|F&}(qF->cU6Y`mmrPVOpUUo#-2lKN9MrG8HYrVK;`!B@?v>QgCxG*;w@LCFw-Njr#Wsn$I0+#?zf)m)q#m$pl@nr;I98jO3tI!RDk zYciJNT8%|`(k9OlL2*Uk9Iuf>-5qOPP8KVssPwi=FV3toPu)~C*kDcUjvZ}9zqaGd z3tV6i32GBJYf*cP^KE8w&u1nXM>seeFHMiBg~MySJSc?c?6c0El^as*OOJ%O?#9jF zcZa8kwZ9mLqH3MfhO_yBL_);Q9#Mn4g7`kJt<*y+w2ebQydRbfCjxj_9v)?#>K|X3 z9)2(+cUPk`dIh`vJ2Y!*3Q>w?JDsI=kkuQi4itSDs#F2Kw9jb=N$?e#!tGZZJUueo ziv!$%QuXQz+PhJLYHjBb%Yj_FA%W|wT$;d1o9xe|ouO~f4rWe8gVFU0#M3a%0 zmj3^209gJ5(Pa5w63w;vjbW7E4M1j`j7m;* z>NkC@&+^Ca($o?;q!9LIWgUHijWurdQK-y1vMTT6U0TYEqo`WBc|^g!uv(4~miv>Km|a@KT+c zm$N`il(&2#Wn_ZxU&ODaDP_=(`YZo;zwYmM;D|~g`9O$>RxhEBD!44QJ;`IcR2Yxl zi~8#IT+1I$k2&%&0gOKs$!9@AJ4+W+k4p6QU?G|rpT`8IN-j9aee39WibL9Dn=8}6^i1hS9P95d=US2n6Yq^falV*iw%bl+^|pS5e+%S{ zpyPqDY}6MGiDBBaUy^Y|?u(l#cnP+Rrey0mFFd6XT33opxf(4JgJF2Fj$T6huDR0j> zQJQOJT@9Xgs?pTcLwcjg2KjNOD?DC^m#`Oy%t<^f+I7=t8TZZ}vX{GbKazJ}h3}|r z5qb*EI=8(JT-ud-&E>)uEtwnaAAMc#aMw|GLMkmT!y6Akl}Ezbn*;*7)Hq1?QExS-`BU~xgF~>82-u7` zuWx9l1w9+upJ_5(YHl!xN7TI*yH!>P9F4`y3x5GXU3->pN_MPzv8E7Q=XU)UdV7|> z(9QhrwChv0GGxF|53|G2*~5HAjo!8N!`z_?_|gmWvs;0kz@a5v&mpc-ct{jbpIPlA_gc1Wo>E&%e6)tq$t%f z0~>_Gm{wW`k2?~2!o=VSz10e4K6-e9bMpWa4#_FwsuR!yI6+M3S{d!!du09w5bUUm z_%fQfSg*Hwk3DX&+ItaDb8Qk?u{dJ{eiGv%Jys(Nh#fnAUcb^Z`|46I=52rc(6MG9 z675j;DriXlM!$_v!}fWn9E>zHNvEX5VX@Bn$Frwm;UtYn(BHMUT-)CMHlq@*va(8w z_Ug&wV48wRgF?MjsOZErsn2&?{C@yHj9yA|wxif+G_K?KFDLZ{ zG;#yef4z`HIPE>}83W-r{T3tY{XmLlI|M8U9{51i{ar3B(8 z^eQ%sS(M}xQV3x|U!3h*1yT=?wMw4<=og>VZ!CMAe7y!Lf)t&s@td7=7+CJxrb-7 zo!_^|2UCbKdB;Z)FL=rRs(z#qKJT#0_`sYbsjMN9lipWxe%ocIARYKVt0{*viQ3CN zWc<+^k~N{x(iG!Xc|?gtYx`xDSPSB4jC+7Ru}aXKaSk_PX0yJ}q4k2f=yFWL`*{qS z76`XxHBY*N9tnIy9fA#8?Ntw~C|IlrG}4n9GO+xyCv7(us4XoDzz?*3-eO*V)DS?- z^UX4Nbk4${?TH?c%GbceQimp4WPHA6DxVp~^5Qqdp@;5#qh7ua=6e_TMXHMV=HUxTHvPZpEit7J2IM zwP8f_&tV)X4rfIu-Cm8X*lhQ*b!g>5Sl5PsxFN{X$H9_ zU#u{%l2%16_;ht*Z-A!B&OqfLFuY_}cFqhk<36GB)?ON$sHYw{^W1T-Z#|i8(jtA0 zU_`I=i0+w{HKZ3X!HH8lKyGm1x6Jqqj(XEe{8uA|Y-@vL~GE37NAg zM4j0|5e5BUoRKMdeqPUXY8;|E41R9=n#Fs7S$-F5ZgRFTDxzB=DHLI9Z)2b&3G;jv zEK`-TPy@vkw#|`qW)z?KW3^I^r1|MbfZW33)KPXf0^Jsn)cviCjKJzMq4m- zERD0 zCOjZqLhRRxa!7Id1j!8&PpXU{2fwu=`LWvqA9u$;4>Vk-IehWn=Kmq@tYi0_A#;C z1l2g|^M!z861UN|+@X|ni`|$VK!l4j3+us)FdU>5+RBF!;=C^xZf=we&T9d+15aAf zebG(|I&gd#g5Br1D2z&Q5{MQA;n}v6O-uHi4m|sL*ni~{wJRywZECfQ)}BHfJw;gz zT~AXv)>6_S$Tpnoi(d!JKv12W$oR!Be0(8bxp?HWp8Psbc4Z+5>RCCfEpi|EmFiMB zNyD|>`@olm#{z~#hq6+IaWUR^yeyI5Rj50T8)z^sUQkg#L{wgp%TVm>QwtNOL9<3D z6FtyE$RBGe=~&WRi{qO57aSeSfhBSwT6N0r&RfgI66}A{tC^H$pI@w0oV%*|F>gg# ze;k6^*Cg$Xz29z)Ql;>X$9w!3`wxXVH>Jzka?-d^3Rddm_HUvy&>BMtGdQ#|@w#gx zpfN)3g5ntQFk9m?E)=mDcIC!QQPo8(=&!J&>U?TC5GvvWtswTiU(lD#5$-Ahv zhCxZHt=Sm}Ru#4MO80<^IzFi~O5O4I$dTbu;OH{MaXdAI7vv}w{?p>#$lNJ?iq6jW zOWlQn!Zux8v!N7ZT+UkgphNpRpjq^)R8c1zN_Roe@eufu{S+fiNKMu?+#*A*bIIg$ zWKkIl#EwuMdw}`z)sgdr4pc~xLJ>S3J*agH-v4+r3pE%9IP-{QcnP9jZuhn|wZwCK z)01WVefj^+eE&Vk{WtYxWMTflGv9xpzAXPM>bs?`5%W9qc~d>BK>Gt6qoNLAz}j3T zWLaXPS+7^Kc&VYm{*6+$B$FrkcViv#4g8bzIg;&gEG$324*0If>T6)f>Oj5oHf{9k zCq!U^@J;7awWJ6S}%J6apm;m-c4SWI$s>jVgyudT9(w;oxcC&^AlskPMM5 zHfHUN);EEc!t&qPH)epC+FsSJA=t-|Amr~0THglVHt6TpUymZpr6i{66CvDi)tX4t zxt1$y73PcVuQp3q_c$b8Th*-7B@?*DkyI8oYSlqHxP(Ni{lsKT@fT~d~T(GniV(h-77$vj(&2Q5O zCerG3YLzzMmqseM*B}Qf4sJjke0O znXY=-mn!_4OE;Wn-t(}LJ9f&0liU>$(=G6Whh%bWQo$SQFB2mqH3 zDrwt!$VxN-IZ)ad;gm!8s>T3o1=LokswH}1zPCPbeLjxUMNqfxPMKR_lDGcuQis=b z$_~?UBZ8>b$2ylZXWR@5ApG4NpJx_W!cNpSYzd8^jdO-to~ zCtA=gPzFwGGEoxnrvk}LMGa#pbf)M>byV46;8YJZtr^Z8KM2+M;xly` zLu%y3=JX8_FaRz&$`9oQT^%Qc(Kpbk;OpAKK7Sv`!!ahG81-P6YAn&QLB~IOoAmvS z{`=M@+o?TooCy=cx{+sI$>TTz;)q={gKd`OXQZSk%chnUCX8^EWEvq}E^I zrhP}){?LJJj-*6ZtGOaZDk>UtR@AJrfbO)$~G042{xRH1-6Iu6y`b!e%_C z8|;R%>@JAHvuu5SGpD-MZQh`W{>d;S^(pKPHAG0%Qlhp1J#3KUU8WGC?pY~>?9&7v zSwP4Q@mz7XAk>MS9|PN#nEmR5sUML}lCl|)wAsh^rIg%=Z71rO8^ce7jvz#ormv!- z3f}b(aU%=}=@KJDjX_Zdl?v&#JN_WrXeJh>OpqmE_P;>`LnWMhw8_TAK=Z!^`t=Rr zB#9?*8(AM@1!%K_I`(Rpw7%=59 zC;?*rhIP7-d~pzkl2!S^Z9eM3Y8MX$@pR-fUJR?svC^zHjd&T?uvk8-kTWub$b@-12%BP zQ=>x7@P(QS0j;Y0ixfxl_LU~@27$#_|AlwiEQAb2(!<*c^wNkgq3(9Ije|;IYnbKX5uOEuZ)iq@RI5+?l3U z!J(uvf_6h7Pqg0rcO$CB6kg`U1RqF-0o*gFsS1V798K=qE?Odp$5)rs-iaMp<3uep zB@kUpKf@dq6LEKQmHUtq$i8lJf#iJvZ`;kxde$+|a{Efa-XzOq$mnQ%ZoG`mj(&5Lz~BsNP{HB^}@ z=dR@A7I~A%dV`Dubx~S~ZK9o)cy=&-&tY6j`y)=4-BFdTltL&)fPunykcyz^~BUtR~W2hV=0eytAG#+ApBaU*Cxcu#p)w`}Yy?vN5*5ZdO zlm{=(OE@BNe_`jM+lh&tb?QVC~Np%`iQNA6i#vi*?HBB`9hK`EOEbFqUS? z9GL3o%ywUoQ!2&xsn`k?#W4K3RCSD@w*jZX*X}U`FK_gj-FP?9vH8u4_o%j_^w;;p z^oQ}Zm%g%px_d6BG}8$s+gCWHqm^|*;ee05M&Cgy5~k0uv$dStFGj+$oH0qPx4*QC z1qoqG_95_(O9;-iJibvcwL`KvpLq;;VU&I{gP+&WH6h(C3fCd`w11B*^Taobo| zuIK|SVU~1o9`AQzdX%zlF5*ioVZ-i0&6f|4p$_$LUOOzFhiBfZR)@oiWT+E zk@QRyvQFoRT`=BXOY6uUB<$YC%OH`&t!{jQX}^b!q=q&B%0wv@I@y&`>%YL@=@~i) zXOVUEUChsJ0mwjqLsl?lqiA<=Dr5?`oRW^$;DG*c}-U$uRjBs#Xz{) z+*l?88mC*>Ye^n!K40FL0kWBb)#$r<*;bgq+0KZIa&=H<$nHu8{iD4Hb>N!)=|{fk z9mE%932XpxEM$3_wbkyX%y>>U%Pk?+MGNRkVXPs2+EQ>O24p;iscH>um&v=D=0NXW z8Ue}*80RJF)8DPGvslw;f znFnUA*f5aGg8a~D_`hk{1^uyGSeJ^bunK44H&wXQ3hb7@(^P$0h-~Qn2A|_8=O;}u z=vMY)W^5_S!01czoiSS3??LfE!`@;8Xj zNu2XyeCkNyaUzuvk`_UQyb|e|j$w$e&u~`A3Dnf9xz9&s6+%i+DomGmeV6sG6SHId z>&0f>#w|_5tY|-tarQ27?;xYs`K(a5VcYCKSVmBZM?wRrv_og z1ql}w89CKHnShS^sDS!9a?)RA3p%Nm`JYbw0%Os&d$Z3KK(%i zM>N19woYDNjI&Z-n{ZujlVuRmQNn4DV`rtA&l9OcpRx~q$R{4yI4)7yet9D-G)PbMzI}x#{l`a==4n&nK1`7)(Wv`n@9%J-L8m-rigoRPE6~zkChc z%^Ug&BTR@=Q~Ud^>FKg|pF09}Q&k?dWx^kqB#9v&cZrTzLZ6mG>}rL>EJpiEgLNjO z&~~B!Tq-#z4(h*d{E7s27{=@g#a_53aX-);IsjxbG*>ubPl@gCzf9soMu4yVBQ|IH zrVR}lGFQ~NQ5U9lLUPQNoi;A+b+>SDm6dz|^})PKNVz8`ogmA*9yNcrn24Dd*`&ao z@G`}Yx9ddZ(m$?_9_bZyY-AyJBrQ8>Y2Lv( ztTYU`JMg^ToYK%&f~)PNjRWgr-O+4P&Au{ZVmII5B7~J{+<(rh%|vvRr+O;FpR}T} z?vU>sZKaQ1{lI7;3dvS{JPEbfX46RBmp=9$D*^va3OXcUE#rU*!r@OK7H9IMV zeC&esY{GvBAbs^^e$N)>8c%p{hT>(eN$`ARi3O3=7KmV{M0fijt+O0JS$JicMr5rW z?Rm!2G|YOD=-o)z+kyCLbkZTTfio{eG#V=ETV)kGo>ViDO*uw)$E>z^>BN0sS?7W7 zsj;^UBk2(|y$f%18`>;Q!ia&XhH6bG97nbAXm+^`l-l*WPy1NC?7u%nq}Y54uDU|X z9`m$$)WZNoNTjH-8~|Fy8*|f)Z?eL^cggJlR=q(BuZ0SkkmZBURttG+yE9fD3*oL^ z(iTz5^YQbbpu|(j;-Yodcz=d<4Z`snlF{TriQl;sz_VKaNLL|Gl?qC8$A!VfQx4;DyOvHl1A%KE>;uUWs=>kVPltqY2Fb5uYDLVxQ{ z7XyxL)w0#G!AZ-*e$`YmGj)fKM_oP-eFu1`mmErE!q=u;GYmR`#zwhlUF9zx zYF6sc%E}@Qzaz-^;1L+~84X&o$gv>8;LSEqUV zm4U|CDJFX4z(tvF)K{xJTk46a)dgI#FDY8mbm(g+zgTXK?k6yd2m-mF9UC`#7(1)r zSYf=mp^6+(@wisWze}-FjY=)*8c91F$K@EsJ@EvcuT*T42-!R5>j$5Lh zlMQ$AY^y7jM1$8U5ZZhAYpyW6Yl^^Wgny&o@XZa(q9tM*0&_VGd#P52>=OFR4PGHN zB`rt^@QeX{B!2iwHT@YnH1x@Sb?cd^T1k$OwdH|qbusxFN2)o0w0f%3+l}aD=e||w zxKXaFj?1VIXgP}R((h=GJ+xfT@lPr3>wO@8aK>Jb>#8d?I~Yi6evk` zN>~oD+qH8WE5T2ebi_-IwY6$pQmGlT@v9Ai&^)=V%4lA&I2Zz_U}qYO$r_+>(^p zj%CcnT+QbYeKdd0L#iijJGasZ4v?HiY0#YjwP4=A*@QDx`(p~;Ewa1rypsMI0Xiv8 z5NAcol_%D_Q-FsL^B2}`|276pgV^G)q9&>n7Y6SKlVPd(0(NgjDTkJuY;$!l<3qepDF0Wuh;)>AY%D88ozlk80#lnSTI5b=2`xx>vFA${Px zW*p&3Rhhu_823VVbQW1|b8V?MM%&QHm;+11evO#d5Hqy(q~W7roZNYy z6fKENzi~V$!y)sPDXX3c0Yb(DT+GaunP5WUs9yGCN_57VvHkAS`*a%_Le4X^)XL15!CM()u#pMYEreDGX8Y_O z8}hJQX-W+70bWaxP5>I`UpM)bSg406qut;nsb6;6-fc@Wu2qw^h>X+1nKCznoNt1|sSGoc$H}a~b z!hEHgipPeHaX_W3Fr9vf_~v&M+Od#tXHmSlaW_6mskdWRRky zb*}m2+6Z&8>lf2_gSWw){Ob|8xE_~BAi(n0R#R@S--+gA+SoCn=q$`xb?IDoRldNQl( za)!CE-VjwxqFZL_ouoPWE|5;ROFOPCiO3>4(NH-V+RDZt=R&^n3ZR=ZbLO6yAnLh& zXP|Fnbg5(hzy&JzouT5dg+b!rkO8NynYI&8gi|J)6k;>d?Nz(~xCu|Yq8?7K&#G_i z>?EHMb54G@Yc6xAa8Dj8{ z3cBr}{KSiM-q^Cw$PgoYH3OZSmWm|0(yT?M?D;~)>j1w9jlu0D7!qAHj|gb}b3Ec9 zl3|GPcLP`4T^JKm@0L->Qmn!(!@8QG4HyWi8=i8p@qRNSX-%+;iY*-w?%{(&4<=|@ zR4C*$j*3?(Z~(_(AM3=zX9SwCeb&%fe%bZm(z9#$1E1``5>7erF*ds}4(TiJJSd1Z zYw0%aAk*=5HcV11Dwofr7`g$>i?IG@YI^5@)-lE*DTkUUN0W9#Jtf5mIvJgIcCCctOkoayGEtAc>;*I`xud{BV__6Y_q zfi_XafjnS0ynmIg+m`vwkyqv1Sp66idBsH^TB!5Ya-xGBVCdJ&BY$A4EnVVv!C_zp4az6|+BVn@wle)_G0(yc?%!8k<<^g^@>6l~W~ zu-`%Sc96V1Kc1gDmOj)(MCJ6%c(UF!L}8`PVbXNjR)u(~u`I8Uwx%;;(ZJsob-%U{ zZls&H@;EaS&@2REi5<@QWh*?K6>c_5uQ(YApG3;#)Y64Jrhb1Ba>Zkf<>m#XWCF18 zBf;S6n@0rkV+;*DrZMaJrKCpvFsA)yWWt0i)Z-Gx=vAtQ>KHIYO=^tp&brI`05)wl zck4$QM%}%7YfQ9a5CiR9#~;KzNmyv`-7*ENHY$)mrrv_}*vHCJV4+cYoOY`H0zX5NBe6Ba9eKrSoS4d62$C`DQ zpBmnF&r!w3rE<}MGhGX*Ra7(ZN|^Y8UnU=e3MR)=ZmaWS#=p23L#7i?r%Uxv5nAuG z%G%qLMM5sL%kz<7&n7&Y6RU-sDXhR)kn?h5E&-T-V2#Y#||AR8vvk?DT?;ppqdzF4#|#^V>wS<(FKf(oxGK*zp9 zP3e~JI82F;Rw02{%;HB9qQZs-JLxlLTEeA$RN!*2S%WZtvf8Zkid8N^H>MhlIr1aW z&GJV%i1sOst#$_nlW#8RdPtUMr(lEKgyXHGl275-z=4QkYs`Y&z!4|7&?D#pU$)m< zAv2bjs+adJq6s%%_oEi_5U_YVO~iqoM1`S(rN~3uU~MTNK5M(c@(-F{j&@|iU(9o# zCu3&ru&>q>I6rA;drYGyi}>Py3o5I$>E!JM(8|tmJ+r5lmm+@`(|a#o&Ae@Tpbct_ z%qudwOFIJ%&=n{2#|WhQ%sBzM#=Dh3nZAR=BuQnFIXcCO)=!_#&v#xQd=Nc%$p7D& z=D#PE|36gve@k*${{voR{a@k5A+`Uhv_17Y08kFu>Lij0W3cTMwX6|=qNIg|7B?50 zlrNl|i2Q>4M)^6&?v9fZPfxRCR%N|&?KO6CS}Id0NzVzD!MHoZdvNe-eZThNcfLxJ zasIEHQg_kGm?yu_)=u?T#?VpwsH8H_`c3V#6bvy|vHn;}IF;=f9!(mb5R^&-z$kyp zq3|QH9^yp3v4JF)kB2`oUacfGf`8LH6ED<~<#A7wy44@+xv}rf7vgmu%2y)5{;&?5 zi`I0v=4}ace_eAuL`_8C>oJCp5r!_6musI?ttLH*(=>`edDZJ`z6lKA%W-#Y$16M1 z7^AvH1_VuBwvTUoEh3&ULLE$E!w%~kUB;pU$}w)Vvmq}LBvNlQoBXRN5q5^WBn8AOX95y zKok{(#EVanWm;|mKqzSnKe8-sdMOErK=imbri})Wr`gN1$m|+p%*UMU2NLA@rl*tW zFDW;`fShDA^Z6$Kx#DFq*>NXchDR3x6vbC3{`1uTmvk~$8PE6!s5kN0P)bE z_tU_c*~ zEw;WDTMfoHS{c`zAnV45N!xBJ+A>4&`4_f|?50NTFf3X7r}^`P@nOAs3xPSq!Zz=Q zv`poOcy*HEBo>~uE&`-&4FVqKkP)j6+>(Budk%+52kr0qoK)2Y%k0cSUPHG+&dIF@}h{7`{x8F zaRrSbQS%DM6g_T<_IAovTI1^pgFUOWXc3JMRIQN*9os1gZ}t78@t?H53$VXbXBAPt zMvD^ZVB6KnivH@nTYiOwYRQ9)qVstTfn$M1+N#%?w1-gfEJ7_IS^8W<%}g)E&Hp4c z?Ojb-`AZ@jmSqu8@Bwh&!bZ3_=`6rLrc|Sws$tEcY3_rI^V)Jzdau&XcTf# zo$I)k#8aySw3%kXMJg7@!QNwg4w;O0EQ0Km;5N> zK8dX&`pe&H-4T-xp_b^DueMa>TBsnzo#RrzhMKoHU1x;Y1|;;so=Z8Yaw!c*3@ zND3wfIGopwSCkR&ZEq@f&b@y|C<~!o?m7d|yQ~Vz1i=f_i|0h)mj;#yDmcRrJWErn zHN=D?+WBK+3{FqZ8`bKGCYwEZ&--g$snN_b*;~2TeW{wI>r9E*H_e|+5R_qPt6Xun zpvN`HuFp)xP>%4|b9B1KlnoWL#G~}d4ue%>$IH%7?iOzYlVKJjTGra~xOa|C1VE*#l^g_Py@-mZk1t9~(oLfDujB6-Lj#~I`lW#yN#%dv^UuxB;A7A;g zmXO4Qa=iHrJq?rTDqZgFPdFJA%o@E1I7-dA~f6|g_(M``!%t8}IZomRnJOMZ7SS1tB z$gm#aJ`K$W4{52{>GpoQzsfj*{{I+zr#4ZbCCfH#+xAY|wr$(CoqMNk+qP}nwrzBF z-LLCD)Oo01u_9uuIVOqYI+HJWGIdw;YCs2t!VzlVAqIXmwRb~trQ2vTZ$D>^v)fYE zGSHEzBnaNdLn~ zy#cV9rE1yif!2b*H2m~G?ETGrU!2;2k3F7A|%u7AR?*4tiLo14YxAs0eGZZdSd+7kqfpTGIaGRX#eX8q%{`lLT> zg8RD7$?fU2VXBRjVh`b=76*a(A+b|p@3F{V?rz05_4d5ORcSL~e_LHUDKo$k1DPE_ z&Xf!y{YxyQM$IFiZLH$ABUeKQ@jXLoww2VNyxerI5%cP!6PU8vzX+- zgz!U9HFE+Nw{JOUmRkwg@>JFXqtnKuEgfNDqzYWZ=ksAIbSle zVjD8!w$R;r3MFRsGXya>hJp7(kWvaa_-AlS=CN75-#d-iQ@&hnREh&z5<{PnZYbA% z8J>`?rN}vyH{3jF2VYhTvq!zNf|sj8!yA zOkiemrB*WEwxGET0jqyYoggaG?_+v)@U|&H=fH%nnpV*1p zxu5Cyvsg{ziwfbQyg-*^=r5XjYQ404rB1dN^wYE5flOO#QB>0VicSa8Czn;82c za40JYOw&78CTj$k8QSMgZgV`)Q%Sl}GjQU`$hN}KPQJkrFE-F?PAhtxU34mXz&1tR zffG|=A-RPu8AH1@@8qs4DLz1a@??%x+Q_RG2PIJq?%_v|7O~H|82grc2t0b=rZ~p` zXjl=Gvv9ojTb@;Tyz!|85EV3c_1QlS=>x|576PR~@KyF8a%dQb(I1;6sOr+vvnzcn z6&c8D`Zs5xtB#A9&t>=Dm%VW5AqOQr9a(~iKhjSGvgVH-vZW&>l*Cs`J!acV z?~e`2xzzERQ{TNgV;__dEjbUFAu|_~42LV3&|=z|9Z<7@V!DX8=tN55K$arRL!99! z0FyW=O;n+xT26b0uC7dtBWcZyIm}0$^}JP_w?1rxaUj0ui<;fHgzw}A52S^AS1)yv zzWsA9A<{kashq}PnWtA~LcBQMv8l%s{O22d>{P(Yf7m(xo1@Tk{QogFj{m?>IQ~~0 zrAl+l_HYoXdqyc0`xfVl`P#O_Mhe0rzGk0YGL>KCV~^^_ zX~sl?iJ&{0PWA5CuQ^par!>VPv4KKv;ndL!$?w6_;SIYIXhuPnQ5WrY@QCJ9PL_iE z-X2NM+Yfi)Lgca7_M&@z_o0y*;^2HtnD^19WlQzy3gJt>$?GYW#b3dlQ%MegYt}lb zhmmMU>pnAHT3Cwq5Lu!qr6|NZD}KIfduPoBT5!tt!)7Zwh?#?!R7SnA5XP@9obKkL zRJS(=IX&qvOh*r1XrW1gN%%rUVm$sIQ8lZO3|f!w_re;r}h7L;?!I z8Gc>jDO@zfvN0qg&^^T*JlZ`+i}}j3Ldo`ei^>ni-t!cMs%l2*h5%8N4xey_DTWpO zMKM#H0_Fg8{Mt~6<|hyJkt6uLQex4wyqA_#MPZ86BSFwgWJ1r^-Ikk~R2!ffheZ4) z(f6B;FwsBEV90=hxFRZa!B8l3i zM?cx3%%9EHA_p=qN1-XNc+0`;6pxP90G8#hoQ!Xn5_|`I+22bbVB`L}lU@ts@hIRl z)xKff4hjqmtvU=Z<8>m->u(mI>)Ig$ylbs_c2^A^Ytd`SjR7vz_D?KUFLTOKARAf6 z1G*SRgA6dVW}BH#Dwa;$cQ!L_6DO@7zaa>dX#VjZOu)-3iHJ0#aVktA)+?4)jwBca zK+_ug1Q?u&EL|A+@~v=h>#ng!ULdgenw_W+9+Z$sGT0dqpA7z@ZlXp5K7A&w3<3Rt z&%#c6@SZe+<=NA;fT@M=oTsh{!;T0R7?O>w}WpsSUFCG-<~m920~t|H3T)Bp}y1)AdW(ho&GF!*+$aJin7b z2zqqoEWp);rV}r?>`*uX+c42_!Z&|@L(?Nn$T$Jc3u^SoCsG=}cuevr(bEiFMB(;L zh)VoJCj}3cCmmB)aJ{xotT}4nx@J-r2sEQ22B|bX@?yt0?cYA?h(&%3fl>oD-ccsA zUiq@M8m)Au56_6PFCoe+fRz%pvS z%7KKp^G_WtF26^zwt2*Hr);{XDl;YL9E%5$RZ&u4`HIDcY#2#TjRyYT)wQ5%Jb4u7=5Uska z>?~iEKfhM**qs+t0W_}{5$3-%nSne+68LURDpKJ0Hzi}9c2fWQsEQ2t#-8A2IRuT| zT0yIcRS-qoJs<@@dT|gqOjC+`0JGkg)zN9>%k!;g_DbU`;5%Ve8T61)teu{>JRMhl zzZB`#HYKH3`}e8Ts{W0gG=MkrG8_2|o`rq~s52Or(A-|y~%m`>MY-|F<8Vcoq-uHpRp-O_ERvK;pDfXcUquA7HT zi3aqO4$=cLGdhCK;6qR<+J;Bk?WDhu#i(5B2XYx}$=JAQ-R=b&k_1AHZjYTCNU=Fi z8)`jAcd6pTvmuV}K+n~u1&Ctc=BxWxLEqv6k9c(nPU#lVJnXY0I-nl)0T_^ja4P@F zH0o#s4?vr`K68BcyqzujzF_Kx0AE_7?e5!kuOvyL3=+{G6rq>*xyz15VeVZ*Y{0fl z;uJMi)5nRK-HXM+>^4xX3#yP#5Q9Lpq7FrorygkyIfZPi)1lZfsLv!I0e8;Kj79Y| zX%1jx$>~fTs^c64SW!$}BTg75)XI7{fT+k1oFuA!g{WK{GW#mvX<4idJVaciRJ|9x zM?|;-6Lg`0Y&{ZneRz3DDSjDK{Wg3}>_w zG0kUY$<@qmtR29I);z&o&*{E&YjXuoC1LZ^-X1gCc}z@T6l*Y$AfQkw2BOC#_^`?5 z2K#Nl0Yl(-m@9-@MHE*R>7=Gw{_aU*5}B?La6F&2fw2V~{lZn+yenfqnn%`;hZeB{ zJyhK2e}D-+(~lAK#hiuMyN9rm9@1PUj}_7eehF`6ht1~VdJ&N^QVMng;zfs93zcei z@o2EGkH;hErOy`1)2>UyOKSfWmelqSK#iqJ!CCQw@pUL zoE>^ea$R+S3pprB=~>Y6K1?c2S9yj+LBb$@@(;tUGSHZ5FBS?i1<2;NyIz{Ku`q;P z>OkpvkFBMCjX}+^SACYEaj3}nTMbsI?b0Y#xaEmFg$5W+n|Ka20M5Fx5mtI`2Q<#S zKCN}R7{~A16QC=g5544C>_@FMd+9oEOy1#M&Fw;|G}=~-b6tKG!+~9h3zu|9M1aDI zz>tmqQf#jRFX)6G%hh;Z{lrH_vY`e}lI?ZlPXgd_g|ZKK6e-D!(zZ&+gPlQ26SCrH z07p4FK1nj?EuT`xB~ru)#Ktddod6I;xZ=dRhEZM4b54>Hs90P8P*K^I4!;hCnqvA@ z9H#UL@PIq*6~Mm!r5d8LD?Qw_sZQeATHS-_!{9Ph#w{yLsht-JEESplsCW5k7C8e_Tc3xlj-T{1M0eO&^9-&`?r3 z4j@Q^Qmmc;QH02KNL^`Vx~l>whM}DTS4@D^m>ln+0$GF}Rf7Vn8b;eJjWcTZO>&2U zH2-sOcs5<$J1pJ+dtJuo8@>CHm3dOp6JZi?H29#h9>2oXLgmC=jQF!Natg|5N+pol zm1@5jy)Ea*(E)=5XG{TM&NU!ajqVEzIVtdylJ5;UcCyN%Bu1b#CBYPnIU^xk#auT% z(T2}lQ*5{)F^t-%c2Fs&0TmbDIhiQsVs%8t2av{BwboYg#*{+kGa|{R`+EI|&Eb4t zf%)?}?3vF@DL^x7hE6QFO34-yJp^k92Tm}M^%h|a{kSgSyZF<4L+zLLV|UIXD^?6` z4Ejj)xh5g_g8_uKX@D3^PRql&-Q3-YJc{Hc-CeJVO^*|b!DD|S!DUm#tV zPn$S|ox~NqFit~7l04#+3ML!`o4jBjjt17d?~2BQdojb4Wtx$`=o)WJ`XjO|U`OfJ z>-&WwN9QwjPBOog^Bky-2et))kJpO!w=j-H!A7&MYJ8tV? zB{rg%DAbv?6+U^=Tw;v|4oG`&c5~E%ujpR$P&(rOx63Bd+^RkF6n59#ts(ECfp;^2 zB6oLA$5gvmZme9gN7UB=7%}x`8jD$$w709{zGH{V?GF{N0o1YP^VC{rZfZsVqBY5(pai)XUre*N znId8!GlY2K#Dsn9EG_^AQdiSs}ku$TC)`EI4F=G{t$eZyxDgQMO8YTB?ylji0 zaGw%c#c#5z+O5{5pgp9`&N&b4)$1tbPKUJ5qIsyXc1a#?dUby+~>FLYc z$40Hk*~bCwPL(Ug2D|M*2pq9`adHw2<85kRZj@TN9b+w%tNfgT>z2|!%de$(?A z_Wld;Q7oTH6Y+}oRP+tP-%M7~0Ld7oTJiKNeaE93<|8$`S$FcLNZ^_VE{p)X<`I|h zC(ER6V9bK2ie0A_Rveyfw{<4#NwVN@J@O(_z2%;7rd+jl_Wv3@xStx;S?c!qpIx$r z`3K095;NT-j0J%VT~d4OL`S{-O$7r@^Vk|Q);!rE;vK(Hq^qJ%Ev{s$!25YPo<Y z@IgG`%?6!3=yen*Q^ZlB@j?40=;Ifr_dPb_UDlC}=_yv*%vdTV`t_vRf4QQ?#=_ZP zA+xpYgm-;@es?Xd6W;$pXs_5Q%-Z`#O_7%HA+D0dahU>&e+s|`ci+It65E@X{-R;w zR=|rP;fTk#j`=M>tzM+~a-DIHWzLg0pnTkgy9W{mb*-=@M%ZAbT=^PC7fY7XSU)mr zCUniYHHJtRU%>NyUdeC6&d%g>`Lq32oF?jYorVJ*U&Pfy*=B>0gV0#uCL zlIIB|63kx(w9LbrI&_xfDk&iVD!e+>yhUsbRxQ_h zi^o5ZBI8H2@aCA09OJG&fTq>rA{)OnbHJW$e{_{w6!?MBh9XAl%PN2~vol>qM9#|z zOuRlEo>H(k$LQEHElZAM;#`J8fnGG$@L2thDDcift#5YWI;44~;y`aq` zg(>ufXjZr4E89&B?+P#dUa%|a`Ke-=8R|gMn?{JlYS?E(HbHv^3t$m}Kh_M*| z8cQSFT%D^ENu&zvzfrj6L(P zfwkpTw&!yI5fN|!?)gM$tP36=rB6c8O4y|YN??H*-kC;tSTXkIhm!KE8W?^(H(__+ zx&nHey2S~HQg=w|wR`PWzx!5kiPGC9eUVs4|3zo%Ann?|%^}FWIJcEFN zVOsP3Ej8)aP5sN^gXoM4(Er8mWyA7*?SRwZS z!5rO<1kL|(mTbTf;J!F@9F4KF9oJM%EFbET%DGV|s8N&Y9Oh!7)C>w1A#4@wij=65)UjAWz?q zmP^U-f+kV@(I=Kn=%3BMY8m;mq=z=?QsySa6q%$4a3rh-P)4o>6Ej5s0aH>&1~I=- z*V&GEy+U03Fpz)*PB#)kb2k)HG;>2}>c0%mOn9h2wz2t73uEUIo&-iy6=)ndpm8c- zIdp{NH!L1MW(+NE%=yXBVEge!sYjer3osSxh1WW>=zH8y} zJkCdfFuNp@aoe;0x&2 zdu7f7dWjdeZuZIgixXPcKnMSKV_61no)tS9Z{)6b8c-rE9NeFt`|TM#M~B!#=~t+R z5(gO;PxJ}0G*nAd4_1y}DHYz<>VMRaiSKW0fIL4UcoFBzu-}5>EMN}*&fd%*YN_%L z{#zaUrZftX?#XfvnyMi0C;Q0_j5-S#O-QZ0x`@uJyd60mUTIyi%KE?-w=O&|Ykp+} zf>t|A8??`SkO#7Brr|4Tj&KhVUR?E0-vUZbL=k-t(%X8CFn4}IHoW{XIhQi1#s5o) z?!mZ}34WuIi@avGK?U&EwxM{FkMd9QMXk?dda}30`g9W?)2CCSXy2dP9JoU~kp51Q z5%466UZjKJh9se-7LZx_hMEf6foTk@b8!>#$5?^mCe662mv$sb{i!7Pb-U@171E^hO3*XhG zDph#MX7=ce#Z^#QP1U#V9Rl2Z{sBHh?8wi4Rm+O+qG|x?qqT7ST=&*QLIh^S-xKOK zG#U` zi3Da4Uy)UGQ&>_T;+TKR^l|~o;c{1lCyJnzRm9fHRV8pjbtBBS`3Lc%FAb;OgwcU- zea%JKHw2LEh10io7OcW+<@)ln*!gniJ=im0CZtlbcviEBCqfiWLN_*tow=swdz%f-X<4_Ni?CND ztclqT`{@pd9Pf+EOXvn}HUq9<7*nxD602-@ZbsXeQAIiiQQ&AD2CrDy4a$A?rb{g} zx9q4vSwAfbE#F@a0mb|m-h3bc;RhzPL%(9SsDm*Mpb4+wt^SghGHlxD?HLa+&jRbx z^bwR_SoYTNclG%Q6oNh>u$Tzz{LN+euUgwwMkjs{q`)l-U?S6kFTK@l8Jl2tGkR8Y zZY{>W#W_=nz|f=8!4$BGFFR9SzW%xMrhz9{hKf5AeQ)e&5pPC8?mC?lZD&{k zFasFBFbkoTX*~dJxp~|Hyv9GX=`DHdUhG=%Nh)Qy$QNy?c!eLK=T{1z7d-DO`osWG zP;2slW3&o~os#ORfJ_8#L7~IuFt)L(Z6$3t}9hHucqI3?zn(X%$XdRl;Y=i%-hESN54UzSmmmg-E-4jOy% zNVq{=z^k7*%HsnVy$9z}0e=*D(%o@foMhB~)RG$3+MRCxocW|3)3f!Av6Q9PgpDLf zb#nen;jt9;+3>o;$xy?Xj!gehwStraB@^0+%2_msU;oIi44S_#-g#M-our$|Z3eye zJg~Zp?>d^z7Q~j{B7QwDzRVsC8)8#QL*F@thoH^!{s>R_^Xo4#PJwcnR6i!Nz1L~m zVHR<*8M+7k12=@S%#F4L7Q^CgWj}R0Pyxf|eIBt5qsVVuMg_N)$QPFM6+s_E`yg{8 zCQ;ibTs@Wt0O#2b^)>(v2f7G4g=kD?Y1DKNjx+Lc8%fd>e_X~BGZSJfJX);!5TT<} z77yiJs%{WXoE(^cVq3F-J-Rv#p+sXbEtVgOQL#qA?Czn2*U@fq2ja4kc077H*2J$3 z=?)i?DaCc}(uE7boBiuLC5GRl*90IVnop{&aG8R3@W*dp7^q1K?93Jz`Gd%rJR&Ft z;+&`N-R64^RWC}vivbjBLKmdn zy5~}|)W>Y}B>nE0G;+b@EvOn?joO8-HWBx{Tk)KX?^*Z?9cLbG7SXQyJ=YIcW(~}b zn^PZ1@q4YtWAhN;9QYOSJ34BQdj}*s{t^wJ?nsNo?CkjSR-IJ`9yWw5=ggOMyZJLF z0gh+76cLHj=7zo_aaR`PblbtUt5Mh6SA`%}OxaV1>FwF2&L+ZFDd?IraV9BusRG80 zOFVyy9_TbWA3f>X?>Ls%vS)+Z@=4ngf$aJ00g$yq6W;eec`5e{rZlL7dxN14e^g_`sw}BQc_TBGH zbTJmsjB`{nWUMt0e^ZmvqPasQt*5k{EAJ5+o)}^`xk6fmutM=XvW*Dq-^NO~6p_&W zo}6j=TQZN&EwSL7YFRLhT`W7e{VUSKG57Xd-dW|}FiC8^a%9Iz$JdQVD@70QLweiim2bOB_t*|TDiUmSyJ6;JY&^LrV>?w& z7g^S##!`ea(ww0dzzeh<0)s>{mt7=qSa;)VVdq=GcXAy!Ajd9+I+E1ip%0jBEGN8E zo@5$12_}yIZvv9dw};Dv+v`ma{W0{-f7q`7o6fT{{r8XHU*RkPJ;DFoxw*ONq)lwi zoXrWC>Hn8>e#7zq*37J^O)3Euk3xb0>-)1esa)s`RjhjbBN>60qyh~XK*d4I1++IQ zx=&X78UHqFKY@!)yppuUZ$$EM%e?0GX*csFU@##W_B%G~>UjNXBES#(z3g_Zw~aDQJE?c0HdsE1 zD1y}R=<+kz{32F&&<_8sjd!o_e^gSN_djLSd7i1XY^Yp$64+Hd=ju5^i(_D+n(=6NJ%0NOzOOz}J(?Nbx!g zJrJ+CShZ;xm}6NLJUMbd(qIl-a>Ep2?sf=uBn<%Y_stIT{;P*K3N$5R5%MeFw3HeT zucwE<&bMhG+w!$;Pj=?1bOSUWbVwG(hi{e5G-3a3_$vh5mDl%P(bT(~M$)4w? z1f7gq5bSbYRT6F@@8s60hv|FC>^0sb9XhkTHz#~5{>e*>y0RslC^_X|hP_6ELqB1cL7ROYLHokz8Ke}Ckz4*uS}WW`N^F9j{!Zz!|I?%^{fSa$FI3Tp#4tZx6O!PCQ>A{ zWXq?;#&U=ks~hmsLF>sM9}~YkPT7U#<+blC!NDnc>T-AWHXUGK|F1iMGE<2(OyX>02|&{&|jxxgbI;#zNN)B z8LA7ufrv!ktXF2`rdxiX^2oGrzm(HjY#w*`OCW9g9d@oek2T?pknqH0x7Tq0F?0AG zlbsj+dCe5&j1{>~qGFB#2~q~SkL;2uAaKMmd@wlHhp|Ca?=Dp+k%L=yql+SqcssI8 zKUHhX2iv8-W;~cV)FO)8g3d;y!|R7hDJXe1 z6APhy&NPjBy*Q8aj)#GwyE*q%)_$T#>l8 zC97lTE09{Jm(RgX#zt)Y(d`+iu5H-v|5#Uryh=tJI>=^9t z+PI*40euFCBZHvLT0Bwd4SlUR@)s6*vH`K7%XF zP-O8xBMaEIQYHmwZY06r66FK`nl(CHVO@YYZNL^a1&dbLmUxsA`1dn}w2Ua`hNw;;QKk7u%TXBUUdB_C zmt%AIa6@d8)z?Q@N~xGev+*;=x)lN4Pxz2y6go)mF&s-xm?C-1CKe7=+Luy|Bl14rEr10??Z@&UhFk~b^=CymS9}!#m(66s7aXyZH0Znu?j4hloe56KE zwLoiY-9?pyD`N06u2@gIK&n#aQAA!+73=h`|Dbqbq*UEQG?*y=V`beVbtYX~rVx^i zRf{`5p-vWr;goroH`pfy2n%r`zL(Q&&#Smutm+D>7UfMmKd%rNR_5POEo z2V@`0#&i??BA2e>Gv|)O(pJ`10azhOziQu#e+UmwU1+%=7CNX40Bsuk z+*bti+6(;300kqDx_m3ALqR2cS)V?GRb(@6T6AIB?fLUOz}Kw>K$pm`Gxu?^qNl6Z z{rNsT_wQSLHl71tOZK;E5iq8wcjOk&`omuXqg#TW) zc&c01fj}pRslcv!Tc_KL?=3S(I7&x_@qTm4ODMObbvBIe$=_y3W^_DUX$2jR`p?a+b%fDqGXqED#Mf zQMQ4Mx7x$KH^Q0$Cf6>w1r5q&=t`k2WPn7$&=n<2i#6VKbX|^!!b$0fc{PP2O~!Rb zJ1PxH8{#lpHuOq1QgbvHAUJjv0|Bjg^bV{6=9f?%^6iw1U15Q|JVUmMGi*>r7%iR0 zK_{ObkH*A8`HYw;rc6J$&WRK;tPF#HcXQiQeh=q8Bik zuyA3lW>#a=ZQfenN>L4)%H&dTpWi{*scO+v-DnD&9-7Psz0uOc2seCCtCq-1qQaL8wkOn099U=D-%iZiTv9{_ z7eHudMUyP>RbFaJV;D0ZdCV5XJZ-4eER`X@b$76Nl`S!~IyJ&hG0`5?J3 z*ov3=15wI!9RhyVBQo^7^WqPKrCt_S~FfBz9(V5 zAc5VzwG=`)O#1O$3eb80B&SSJ4S)pU-D;u=2!XV(!!Wq&@b2!CDsAAzzRDAK>giVCo~iQ4c}-`z~;@2u36I@em6P;^^2HQ zJfTm3x}-C5^jP1voo0F;bO2{aYL>`Y$hx1ao)tARQ71u0X$qcDz)TOhY|LZnOtZ&+ z2?y=J3SVSn`rx@&>q)FUht%{um2gx58Lqusy%bVr?<(;m%&2|G?%6Wy8@!yDy)fSc zb!G{oH&<~J_s-NYqJM+21~b)dD-61ca?wOc_|>n2RUINLJekDm-A+LwV6wPOl$Hb( zTmuWj2QT2NPOItcY-?(Cw{*M7*z9O~-b}+Q{tZXA>0B`I-TMpV z&wM!?Eb|OSWkTBmNv!R-Dm>~24~>@4?)rR)Rbe$YoE~p?1-C1Ez7gK%=E^K=YPVqy zcbDDiXOv3GYRG!no9h-&>s&>cx>LW|P{N>o8PrryH$v;4FJP(3C*Xqh>```t9cfDG z_qyslnF?Q7;3&%+r=zHGq8F~3(0bq8>GCQo(I^9)eFxSPVx`xvUCbCZqSqL-$>{9u zRdlfJN2?)0wQ?Vn(BnUhR83O`SpwS0=T;?MDsHI)6l#%RcEVPMBI$3zB)w-4ri%G| zM_7VUk#QF$U+|e*8jPy;ja}$G=73^xMx)T||Gg+qd0KsvH!q{$kQ6HensuLzgi$*_ z`v*DcLZO{jj=4nFtx-A?1&@R|CRZl4-kDpy!DSFWuWb_k_3vnYm3_v^4P8R*ZISkU zV1nMSL^o@*I}Ii>X>hGM5dZpqORpqHz|t|?P4_o%?7SB}M^y}Mk^n{BDGISYs1tE~ zJjEB7cI8mei*5TR@yUR1la1iA;H9|9R!UKkzO1W~K@pSKK0S7GlDrI`lT+3&rCPpm zVs__JogrrYILUl&&g^;=)IAiuf^-Xn;Kp{p7*#-gqzn;@`Mt6o6Hcfwtq0+q?8Dvl$6zaqke&L4ZOj(E^?9SB?8 zhsAs5vMim0a7bB=)#y8`tD<59k<|D3xjvfjq4>_%m-tUazi(3s-v_}zALw*{KVa;t zfnL;l4}#LELHeVdoi%|FuRd7s#WZppz&nZe7uIJ&VLA2aUN*{;0Y%@34J)o8Wq@Gp z0D!OdMO1+&)NZ;-^$bh>duUZ7Pk@ko69);#^(Hj;tC-_aEV(R9QwX4NuI``r>3+?| z{|e(bX>2%Rk0AP-s7YrxivR7K-d2+% zGm*@XKte^L?g*D8h1LhK?pzId5k&B~mC}9s^FHD{bE#cRK*Q-EsZu6H~xFXTWGq3+$iOpFm2kvBv7w-0=X?MZk5;p zA@=Nekb@6f<_EIm*O#&|D~GJkpwr7|IIcf-J=o^+vu2PZc8E*ok%iitT?F~$-8PRJ zv8|jTqe_c)PxyzcO&oidK^=E|X-2oS8j%Z_t=K?#*f%)mI?FF+xEsA)wpsn~C|sFE z<2JD6^<{0;sqA97d*KN5GjuYEw4+le!F5W^FXJ14fWAenF9MdgiYUju#S7aJ|k3^$D zgKR;HqRCLe&OQpCv_)ntgL(!I(JBkXI&$eCpbXO0>W}H%SDplfKX)wkJ(wS@c*C&> zV4o4COalFB&KU+*VNVpJ|@O!+8jZQyNiU^gtjMm8m+U%AxH0>*&J+;9i z8vsiusb3kqz&(+Tn+kl}&Ajl*aMz}8oF~W`EM#ix$46@^6S26T5pNR0U}W(m|E}~( z=U(CU41!0(5{`RAdK6MPYuUowSYs9ZS+irELezo1(pk;Z#FN zV}J;Q3k^2GQ-QehuNtZ038G<}mbT5!I-B2B0ItH_x&bjcW-%g5XUya-&SYqpu=OQybks>CxGV(L zGxFBG4mw$bq`Rw?z)Y=WB|GV`${yd!@<}|l%WgTglx;2a0^Uo7Jt@El40c5>Dk(PVP-iV5Z!LdR zO1AnQlf?7X`03jMJ1s)t-7kIAa1mLIta~P-x%`E$4gq5Krw_$#k%^grpK=CU$CfP$VIiQ?DYq5- zQH1UN1SVWBDPx-$wv7YzDNyrJZMc@AXp1tS3Q7uaR1y9+|uzG zffC`blmE>R4~;7pp<5x0j@{rp5E%?SGEaxBuEN3Xl`MlTC_lpgEc_dY3-5ja*zjCH z;4aiO*ElB38Lk&^5`GIrdMLP6>s=^0JfJAAdtjw{odu;+W=>W~ct=-PXA|y^Im~t{ zFLT<_(P1n48=yb-smcPeL71cnW?}P1vpyzlTfxKPo@zvI+>kS)Iie)lhCeAJ?0zqk zbb|pvh`~mggbL^$~1DB<`05d42fX%ld_KTYBF3ri$fBCg=l2qBRIKa$T*Kz&w0<&IxdT z+|rk9SXFwcL;i?YXQ_soPMv?8hgQJqqyYq07@_+$*tEw=Je|uzHj>pI*@uRE;0-xa zG>T}Id`JNP^l6zd?YZSP{2I;liAdc@0H;!nmjD!8R{ro+5=r;`P&?f2AOFmaCCoL~ zi3Ux%P?2Szo6#Wm_Q5{QK7THuI%Liys%k>|to68;Px%Vp z4ZK}#KZf=SEA#{(62^mZ+J-o28Qx2S9M80Ke62mYJVgrlv?RpI@xPr24I}l{tOLUb z5(ja zUfB^C|Geelj4#1wQp4conk>0_talCMjaoZ0d=V2fe&jibgnCXdXl z0s*=h*BOvHO&~z;oLyrv#KY^BFv5tE?uWiJeaH5OG-4_oZM;*!!S4*q`He~rAuhFo z>gxS{aMX2%{?>f)P7HAEqU@N8TshBL^A&o5$7_r+t*q0u&!u0{=vs|Zw}YPt8_)^R zO@_yEOg>wXp@7*0EvpStUrsdvTKq;Q;Ph14&7|4ImjuTcxCNZ`h3YlO*=0D0g$vZq zO~7;1uRT;geO?x_{`hHoygtB1tZ@W{6*W2*%T*B^ang|PK5?S8zelR$fk3U=M=@wi z&HhCF{sh+}0Ji!MGw1(zJ}+vwG>#0%e^Htc zd@SbCEW*#Q;57*-=^LfBs2bgcsV4Xi3%tbtH7E4t(j#r`ZMjdkiM>f1j*DOFK6tIs zZvUhubZHD4_q=xMf5%SRnMhSH|KhBK#7Ze)wCmrVGU>6%!^}g$SeK5!)wC%WehQ!t z)Oi*}(8851uklKuu_GeR9}7N%*C~gZZl3Z{5oYzd+-XEc_>Vq2&E*?d_YvpAl&9an6HCzxa7!+biMU1G!aQ zG!S{<2fP(R4WfB+9_#W8J7Ysq;jZ)ZDx+8jRnx7Lxr-T)HJGncek%RIawBK{R;TKx z23M+!Mo>BxNVAj_-X|ili!)N~)A#BqyNSZPT0SyjM8F3v7dE%E2uC&BB~?i+G0zlU zTi+bmyP7AuC>+v1N+pZJKcOvL+rOn0Uq1^QSdx_`GK@eN&w}#{e^Kx!n6^#Mn7Lk_ z!5R7Y$BsQH6%(55Bzc}{+h{F?HfEbT%6rL3FU7##Gp{ZCZ=ciDeJ%dU^##+|Z-us` zsHj2ArNK>>_ODPDE?<(OEt#3wNg6*rKwR3mgB|2JOde_ACdN87dmyltE0yN)0b)Ec zdlXT_m&1~>pf+JmY3p_YFCimPAFku4dO2Zx-j{9%rIAhf7s=B>I^loiJ^Ny;bi;Fw zmLsz;Gho^+IbEu+INcZXsBWSnPNnNGY95Dbi+q#sQUor8;w!zgztUP4Rbbk3Xs9>{ z2bjCy&-hX5g074UoiR zcsmbxD%&^ki|kd1Y$23!oOA4mWMprWJ&wJ1l#FDT>`f?Si)51$vUepJ*`(|U|1+Fk zUS7Z6_y7O<^q%)T_j5n@^<3wA?)AOy>wb(VJXom&xO+EoVY4VCDGo;omT?U6noa6> zq}}M0B{4|wFe+lA)Op@zR^sp;g#VDDdpQZ~J9{{TW$mtu$MSl@d#U(_=+`2cZp|{; zL!nF;{gxS4B2MY@lsY^dwR=}QFEQ@&^cxcqXV{M!m2UsHn+cWEFT3Ty1zHzwa`lIb zi<0N|)|XROc0;W{n(yE7VaHA}L86wnq{yQ1+j7ar5GI??OjoY1Ff8evOQ=1QF8nA0 zg()o2zT|5J{g-fj&z4~5o{~}gwcEm3%8L@F*B_lb?O0@o;(4<*3+I_gOb(a#&qmNDF87Gig;Pp9>h4?ZkBkI4xdqL&8m2l`YhOl)F+SYb zwYSIP#eG4wU^SVv7Vl)UV@yq#^MOP~9-@5OAoa1VU^oqD;n-BX{j#idrcnEJ)(215 zs%=EN0(2a8_#Wv}wQ}0srOp2~N6|dP1rxsf-67FSTso$fK=yy?E)ilm4;UC1uE{ z-hP%Tp54^ugDYL`qW(2Sjz|ahmBvEx+g}?WZF^bs=Q%#uy=>^Rb5ER>D~*jqf6fJ! z_We7S{8}P@Lc*dsJ>hUxw{vGz*)-VduRnZt_K~K%XXjHJUU#~x?`XkXW|;vx<+KCA z!rwOu^@<+(AMOL;JsXU>fk3{$7Wn^K-dDYC2LUJ=m_h(@5My%#QCl}UEm#N10|e3W z@`H460Lr#b22Kz;gdK%(r>+E0zafHSQC_300sX&~x0E%J~bO2R| zn-jF0xSNxt3cM(g3sFSE7Frw#Lw;qPt5v!GUvmw_B z+mLI&4Y`i6A=lq+$aTUtnN7?ca#sE*6V}J)h26z<701u%I@T6G=cmQUAN6`%M5Y7NknrDCqfChLJ(Etx2 z4e+Fy26zB!fJadc@DSDjPnv6h2fzk+6xjd|p$+h)*#>w3Zh%M84e$`&08g54fCm5v zcog9P4cmQ^w?&KrpM2Bz( z$am6nq65GKJc@XLhmZ$&(#!)q06oB?s0Vlmdw~2WY)jAq?g1UeJ)lF}13GE$0Uh8T z&{5n2I>bGolja`K0qy}E#XX=y+ygpk?g1U(9?((T13JV#pp)hv&;jlN9mPGML)-&8 zY3>0X;2sd@i2f3Eh`*t zoiz7=4sZ|XDDD9r;vUdRa}VeM_kfP#9?&7~0i87WfDUjE=qT<19pWC)NplbA0QZ27 z;vUc;?g5=N_ka#?59lcF0UhEV&`EO-=m7VCj^ZBBA?^X4H1~iGa1ZDx?g1U*9?(g1 z59k2*fR5rG&>`*toiz7=4{#6oDDD9t;vVoxa}W3c_kfS$9`GUV0iQJYfDdpF_$clH zAL1VHNplbQ0QZ28;vVoJ?g5`P_ka&@5BMnV0UzQX@JVwI_yG5SkK!KiA?^X6H1~iH za1Zz>?g1a-9`H$X5BLE0fRExH@FDI2pEUP?4{#6oDDD9t;vVoxa}W3c_kfS$9`GUV z0iQJYfDdpF_$clHAL1VHNplbQ0QZ28;vVoJ?g5`P_ka&@5BMnV0UzQX@JVwI_yG5S zkK!KiA?^X6H1~iHa1Zz>?g1a-9`H$X5BLE0fRExH@FDI2pEUP?4{#6oDDD9t;vVox za}W3c_kfS$9`GUV0iQJYfDdpF_$clHAL1VHNplbQ0QZ28;vVoJ?g5`P_i!EH9DdWHg5M>;A4-Nf7pz166hBq4-wD^y*(Tuq2GJ^dVp{Yf~Mi1 z0sG#&eorMt_!0E{o>GVq8fbb?EkqayG`*)7B9sA|-ct>+91l(JDTi26hNkz_LoACz z4FRu+uy4fu5sPQg^qzi*1t4g8Pd~&W1~k2AGlU}^n%=V-!kG+B@7WFE5QV1qEQfIF zLDPG-LpY|O={@TqoGZ}up8XIG0_Y>!(+>f;(Da^u2vCEj_w+-+1~k2=A7a7`P4DT4 znDjx@d-@?JF3|Lzeu%*rn%>h7F@QkRd-@?dL1=nUKSV=@R+>Hibm*YLj?U06ThPt3 zf9=}&+r}s8H3m)wR<@?ds)~p~gzhGDGBAeb&~g1msmM6@-<2G(x$E~vF&uz`q8uIY z>Q!W<;=VvdWnLV3bn8AvU?GEh0fNdv5VYFC>N-Ff$O)~Xh(kUcxIcbh8CcCgmN_I5 zj?T#3Ka>dHn1w8JSRzbkWG;vcTDA6c{4;goh>9$JNH`o>k-0~!3kE`K*FV?-PL{~x zhlRr|hs-@%_#x}UDG*uakVH5YB6I&#;(q%bmiQlZgwqvLi$fCOw1v$5LmlBHge-Gd z;(i_feGPyE%s&c;0}V3w57mXk2C~c{b>Z-V%>6@&a4MI z#IA{dl#bX&fz19xg%NukkcAFujM(&m%>GlE@R0*q=&(%q)D4;a$1;zt2#5^@|5hg4 z`-?1eSWoysi_HF0J>kAuWT7Ku?ymxWD)abZ3lUn6yyYLuJl>vg$0$g$QCs zDsuR_|ChlF5psNt%>VM-j~}!U5yQw^{^@gvyLXU<4*&K8gVmqPJbs8mMB^fF`NuMk zf9`N!3R333Z~BNBS7iA^W3|Z*#bBC{zA+!HORXu*dLWK1p#UDrRh(J5!m523&uRtNQ|J0txk5Y&@xqmJ5 z_~-s#Mkz$d8B&qMzx}`{wf`9%;|W0oh#e#I|FVlZe!xP6dLi%rr;qFS0SghB^>1Y! zKVTuksE(I;oR0+&?u0CV_{kj@yZ+D&h~T7ul!=H|LT3N5%wuaUBDUz?$~=CQLPP=` zFY`FlA|iH>lz8Qc)D z4@gB0oA!Y3@IRRLct0W{iUE1|KQ-;~oAddb@L(juY{XHLfr-SEVDNd*shtDF@CyYD`T`~FX>!pa=;@0jw?`@vqXX=7w-Y;I#p z$At)12BBD%35y$muAw5|vWUputBUYfRU%6QV3q85Lc`qVnvJ9R@3fe?i3tSy z!cXWMKDBW80QSzdP7p`v{j4C+1!F|g!Q9l$3A*me18_38GKN4G?7;wQa~o$zoxg6s zzn%Q9)S8+K3O7|)Rn4s-j_gv<IRbv zJBEG3HufOT!;WDem2>XV8V0nlLAK3rlzx*F7B1|^?-#=dQ zzw@Eb;$T&VM{fLcRo=IJ|6i-}zUs=w2{17~y4J!}-)l2})mk}~8|t_AYOScPmGPlE zi&$!hYxak|G3-I?nduLWiLAQZ(C}L1qldnH3{iJrPYn5iXF?+~kp=##t|NsYzhUb9 zmH{o#jr>4sAwM)C9$s_zYCZB8UZbHug%|pP)ghQH*fFfe^F!+u>^f)~QS)Kf!RjWo z*6+0lcpCmA;1@zOVHq$bVD|Z~3{(NwF4>WEF(VG5gSUdCvW@O2KF|0u&%b*%Vps%-ffY>`5 zSiwTU0EP|*Mi7YGzA;7$DfRqVqMz9Y|2J!=KBG8d=ZzO{@ zS7cj;^#!m7fo#ff9iUAOmWJi=?HxnY@a70V4=oQX1Mf#*eFgOMyWiL=2a|(r+VDmS z?+oCbz+Qv>-Eg5-9?~3o4XiZGGJAP{jfyZULA8SaLYSqXAD9M68L)eBLF2Ju?>d2f z!!$uQW5iyJea{Tq?El^!9LznCI^qfQ!gnOVu7X0F+hzuiuk*$@j z4Zs*+Y-?p@-~fOC;9V5J1YiPXL1ecDFawxD|9T|E24D`b0$3xa-vAqcE%eV_LI8FE zJJ>t>;nLwp2-#4b%x#SUc2>@gh%VjO&}!d|9&w16>jNABjsQo9wK+l?M=JwIGk~KV zw1)&ZA!hvmCs$j5Gr-x#82U?%Y#kr~7l0e!HozU?V0#JvOeM^%AkfJ$B3k$_GC-Wz zs}Im?pq()6c{)MFAW*V_K%dQipt%l^h1i%nnbC1^bMjri>gWXRwykm85|eIXtEy;} z)tq%$%uA#DL4Q3#hFXydM@@@0&kVi(7CI)$IsbPV^y#9p{%5dy4CJwvwWI2@mGgq+ z678~H`h5H-@N0I~);cGxU}1CJnR=(jl_=~@&01dB@GVU?heh(Wowc&sYFDwypIFk2 zL`5`R#X1I0Dpz(pNT|eK&oSKRZ4LjSJo<*`WY4>qb7 z_ZeARv>D?o1yfyS1HPb7`!@ zlPVUCmW0iKcscf`lZx-N%OeTjD$%!uIHbPmog=w!otZ%*15p%Qr6~2Mkh&|Psraq; zd`tMP8=6W+*`bl#7oYH`d}9=dtGzCG6%47A~DWcI+FLc?OXL1k<3vv$YK@>}Bl4kf4gncnIe5ZC}DktY(9Iu3e(;tJ*?Y^bo)*$ z%fKlRSGUm-fmTjw)~q0r+27d~|77rnr;|6|=EigI6~FZ)7=7vZp!YSeYC|% z*KeAnT6}6~-Eo_jtg`*q2>;!WK9+>{Uftd{9rj8&lXY%&Zsb{euHJj`xVo1S7zsXK z>Z;B#6`RJQ#`2wQEs{GG>`I|zneL3{op=UIc`{~c%QnUk-0$0*veB-UFTTqluvYP| z0&DCu3L6S)&Rwje)aZe}Y}WXUI-nemoI|lF4FJD>jS&Y^JI<{^3;*^NgSrGDh6Pr~^=EXPKvVHm zwD%UE%S3KfSfXZubHu4@+_cVSVyi*@H`QG1Ybc7iDdepEl#^~YyenzyJ=;WUJ;d)( zlbw=wO?Z@B)IUbPF$cVA!?oiVVXEiszyO}_&yg3c0G=(Pwx%0ili0XU*?%KU2sb5> z8lZ{MqtB?pI*>uZVFyms&Z*TX28{KnTq2{^|62W`jDU#>%XZ9_%eIdVkf8Heg(XM2 zyU9|K+harZ(<-Ijo6}L!!QrYw6mMqp#tJ~;1A$$a%;Vy+e}2vQY><%C&&S6;RA?-D zSImRxOLTAaw%i)|gw4daUWIN;2ut$kLaR@e%hB_~ph((px6HbO+?`OLf{Aa@g{dTL z6uT(i;|emNnJ&h~H!Fx&9OxLspKRQp>b$tX+pPK!Ai$XCrRk@cU z#PTaGNKW&dRC7?Pn>o#kr$%xMpkilwo_B_VaqIfu+0MwJmKAXHQCESCThWLvND@&B zi(+yzk7jlHGh7R5tBy60aW8tH`+Z_Fleyhuw(_a}bITk>d@c5YjES$LEa$q<#AyW4 z8VciB2-o{kxNvR?=0@Zg|6&z8pNEG3W6-w{#UC@4B|g1tSN}p`SE|3Uhu|aj5R0ME z?IMg{mH3wU{t;yjmpb{*m_5&CV#W~J;1o(Ge5RAvPWxv3;su|WHtO^ZX`=Mgj^StR z;~I3yy2Fif`g22cXV08*58H707)VZ<8u2RDkg+r2hDvE+(k1f_Clu3AvuvkO2CJUt;M%(P(^1k6nl6D732tY;*+PD<=!{9 zi;`Q#OX#ZI(!QyDQAp#SSYO~^&9|nuUk;6BCK^9XM1cwXH80!(UvIa3d{=E6ub@MJ z+kW^?cEP7z!&O%#NSC}nRl=P+OR)Wqn++ANyZ(?Az9YLw|mpHYaDKs*! zm?uLvkD~X>rZ#z+epYQ zoZkf2k~5$?QK1GmlfZhbHF}h4N2tnydIJ# z%P9kXV9bqwQ8fS6YerIrkejrbKV=fIl;M{qg zEB}pzVi{0^I>Ds3XxLkv>*}SZH_xWeK9h+1ZWxcP;wR3PNEL?9#M#>QdM+c*`qVx7 zw~=5@n-;(z%_sTfKuII5GjbR^*den!ss(K=Lw6w2TzuWvCxe;Ne#Z3BytuVoQ8}O> zEGnEv=~-%%J9^`S9IHS+aU%Z0M`wa7k1gs)*MA6}F`{&f_}-t$Wn;rhmf*`ixoS<> zDQt*S>%E}!1FQIB>p2N8w83pG6S^@yCeoQoaXN;~m$;KuY~Zu25Yy>#$t$&jz0om! z4D0}wYvKWUeX6~xknEnIpWht{iuK=AuxY*sTTkG1b%mgP=Cpdkm9O_fv@ zKE7nBuGS98wD&Jz=g$q?m<}^S3(okEr`CBMm#>QZE2Y=0%QIHHa?Moxh6*+1R2I)v z>XMmkU|h__KhKDg?U2z=jyGs~rVN!JcgD7iR&!lJ&|k=Qi1K=+ublC~^L$Ke=8|cU z$L?p!j8%@!+Dl|4u@M+|aC%&Cf1W+J%-c#O@#{iB-jgcZ>L)riPi+?`$<;!{UJzEs zCjRut_Tnh{db`FhN-N~;T|n?t#T!8r0bskaR<~xLL3!sJblO4H%J>ZIiAf<#8Kdtz zd^OiySkeLG@l{G6;w!E^hSF0QYtKdz~~ zCfsp0$6^l8=zWrzVi%@DY1zD_)w|*E3xYN7pIAhc9>iF)Z=I>MwKYEfsNl1StVzB4 z=GZ3Sjt_kVn$Ods6n|cHdUXfk^Wsm%?h`nF#d}QfpotjGhRQ^cJbkQ{llpQTkJ0rr z7YD1v$G>{pkCoz;glqDKKWO{z`$}RF_|uEw+BOOYAh6$t zr4NrkvQ%}k_}CPVp*ApF7ZqT5_?=?&hUvS}hS3G@Dk}M^&8q76-xKHWQ2rXZHI7zD zTJQFmfx44%+9S}UI%a0vm-I>4gFNcM%7{;3fT^}zLA$lQtyDqK#Y1jF)5-?q8w>8>)^P7+U%5S2Pu_d4kwH7 z`9PoQHgSg1hUr1HRS$}X>dv3CL##fFnVvSbk{O!BvU&OVGkK*F@z%@}G#&QR57_M8 zXsdk_PbY2|X(TDdB}YW0BwTE3iBfwT^Y%jJTh{GpvFMgZY@@pno@mq;G|rDI7yQTYhF;6(9bkV1AykTQ#k z5{7c5m8JegT*}uy(qq&vX?(X;Wi2W|#FuW|OVG?yJ{J=uz5X&=no<$H`zueAW}x8O ziwE=S{_4G|MW(LTh3d0>@>)7G$ms`9ZIyeYhehioYDEUmldxQ2X3nAO;OWq(P>wXQ zjO=`*F=)6XncvzhfpaBNBT^+&E7nviJg@zdBqXb(F!yFklHJ#exWdSdXz$_|#OXrc z1J1OjHk-BVU{~MlrN~uRC2w4q?eDLO==&5Jg8jVT-tpWGHUCegV;%gQHUB*maS>%j0 z{$-=6tyoQBsc1i9z=iAKmC|fWnp1?C-lWjh(IRT@;!c|};yr-3Ehrk^_tj$C+(VF` zjKN#KJD5|jd1L$W=%n)N@;fZt2GKpNtSYq*yHt>xV~ z*BMu+nw#3C+M>sN+#@7ujUK~%#OIW~BmJr9S$lg$ha%amtPPIsC+%7icGD@&Cgz#+ zthOJcSHiC=a(+}I`$F!_HpA-FC6dqM(?xx){z?0T$%o<5hHB)`jV!;OlVasX-?;JP z4u)T|@s%awrE{7r z#$C#-_A)KM9(6e!6Tmk=m5`-+S?YT?EBJEoMeH#*`^39>u9veO{GbqjR- z`r8-y8?U`jy6QPIBy8i$eUt0uljV7Z7vK2U^~kBuT$US*q6sAWfEQX-A+4sXMV~jv zzx(0b8&AjEecih^KCbqE`sG2(cC%_w@-d`R%&x{rb@;|Mz@RXJs`g6K_0hoMfT34a zY!{_XRJh|-h2B*Hq*s#{Y;8Vh^xn);eht^G{y(J4&&bx=+TgI`58`HIWnc~S|Cs|!_xt@U0G0=Qe>Tq6hEQLe zx#|CQ1Hv4mfCKJ8sPhlv=wuG{Jim6FRa=9r?B$i9{ zezwv{Jfu61*Esn7>x$dXFS+tA^X4LNV#k?myv>QTD_?v%b69o=hxM5vCPOdO#nN$_ zWGqg^g$FvV1b^>#V@VVVG3Jc+6R$9pod3A|aj1N`-`FJ3A)GkE;d%_)tzQymAuKB$ zyVyFE9SZWTSV?|_OJhBt7v1Avhq8;A@31zWRDyca!J;XJq4i4487r;9A+LGvTYs z-(?8aZn*Sigh>G-JY%WAw#Vev$pDC*b@{4>a6m3{nN_D+t30e(*b{PkMOv9ky2#Cq% zox6d}g-K}t#2-TtUydCEm=fD=0IURD(z=NaQG-PglRiD|)|ve&YG1A5X)hhbeZ; zT-_Qj^!R!Z$r<*ItjH-6kSnPt5) z_2qUGnA7Z;St6(z+F?(+ZE>_!=J0i=l&?5&blkTgxI-pEply{apx%OCrN^+XHZJCl z&$#xBi~lRQjd8HiC-}k-;GI$3TkopUd;M!3j7_?OzPj8k%`Ek3aka!eli)u@)X#l4 zo75O3`-0?q$#MUe_F`8`D?VQaeFd96C>tE82m0zcs%jIXzm^iq{dm7o99McyCP+bD zXf%q-k-I`+#Q&<-)tBkTgI(xNk3L0cER4}U98+ojxy3ER#>kOb?4zq#pXGsLnSxRO zZbjXNBtWGR%Vb{L*QcIqDRlX<-j}LjyC3w6lcC=-M=t!FX~&hh9VEC`w0U1AN7{M{SQI@9KS7)|!RxZ>3-j}}4_?4a`-7V3^~UYN1B*+Rvh z5~Fe}-ddiQ94dN9B9cZz@{oZ3YCIvfSl!RsJ5KXu1uXV6V*{?wYSCY@m@T96Vb|CZ zJ-qu1=)BZhx|uLSX(y0|b++L`WRJ>2;PekY^rTEZh=%56c2E8=J8ybyrNDrQO4V1& z72?h}o&|u$rNupb2!nK@p4Ry9_^XCiwJM_D;KSwcvTfj{p`Fp9bfH_#OHyr6Agz3h zfihrHOmW+U^cJ1ID1hLTYBIiyH$J&c`b!C0;jkLausBf#h$UrW?}pd&O6MP{wPz)h zIklZIw)ydJd?GOPjP-h=EJR2-F6t#L4=78gGMs;iTFWaWu-o8IHiCsBMZ_VQtJmdD zV_{g|cE#?8V7raosg?H$KQqH;d3;?@QJf9+;jtPlx+}ivBtp~TIuJd$U6Vs1j}Zj$ zrR?Z5VkPHJ!R%7$vUwR0g|!sKHc@ACsgR^@V&!hTMf6JQ*ZZB6zK-v&*`~3Z4S&pU z7`Q6fMWDACe#=L`$>`!NCmIHh&i9II;h&WgqKd81+#wAdm$ky4j-Y`q6%;M*pitS5 zqdm{gewuqKhSJp?ce}(7$VZ?s7AF6?;`#Dv!^ZKP4%&yBRWj-LZ)C|%>-ouC%=b0; zz^^1~hk1nfy4~GN%OZJ3QY0ZkSG9Z8SEv zLA9g&PN~js@ntiwrT1`dTC0UV$nvr*6;;L%;Cbql+Qb&KXk#@oA+!I@kE3ia&s4Xs z6yw}QN4FWlfM5t?eB`o@dN-Z0xw7=ZU+4Ba0^N+UEk?Q2WUK7&W%yi7Ra$SBi$!(U zt_NK*%7zH|l9+jYjJJK~TH#=<{-ak7Go9y|y4b3iqK?O1DLP-l$Yd8|*Uhd)M!})Y zGy?a+C~pr2GrPqRs+T1qtznmux+4P9LSKXGiBtFle`r!t^siE<$}d*Otm54{ z^(|Uhzy-%o(u+5!UQfL?Q9ax5wBUr)(CW^5Lt?|VPf4Q^^^02drtWS(Oi8t2#1@+|k76E6)PF>q^g^L%^nweJVYs?SfId@x2zUgfqYbT)Y><#J|3 z&YzWTC>b)C#dd7c*$5I1ZkY9ff>$BCbV1mAZ&uKMnZS#7s)(bU;Hi_lSxOMrsd z)w0V&-wt&hd$nW z`mG?4TypWu&l$+gsVX~xEYyY?N`+^X9ZHX1IX&@6qO8Vw`IwwEDQ9vnWi)qpvUGJo z7c7JVlX-+O5lyxS2B;U)TMF(Q+uJz58>4(s)|u zE^UscSW+p85P5hhV z-m%O7coKs;9ylgpyYsA9O0ph**E-3!YF_?~n1{X$gV2?w zZ0S-8J8l90o-b$`YxV1wv>v~;VDJ6N_o+l8eaY(?LpnW<3ISQ0q`~y6a}sc1k;>AW zxF&UJ7-TL&Kpvi=l$*7f&#}9Cim)1gu~Q30{=mqg~-dy_Y?k_f)$3n6LeKv`w zu6PP~hR)WwrTsMXvLoBcMkPiqZGK!B)aGa6Up}a9>~P+SDS;*?f|jPpm^Gdk-`71O zv$p--%r3vjr`1hr3qcQ3+wY{AA5X=5eHwF8ze%m0+2?$2(sAS_i3YVw{OP4~k;^?9 z6sscU(Fxz#S2sxg+oM1Dt2ZoDxnWH9X{eUx;1-@4dQyc|d$l9gw4UyzMBYI5x$+sD zDAXpe3NbBPC$yXo(aSHEPJdsyYI8*$gDSQ2W)`4dK+ex=CC2^o<+n6DkMFyHp;J|U5))6Sf+M|h&@LymTyTAE zWg&tCQ8sWX&&bYx_1!^OZ9w^h+ln>=MZ={JD)iPENvSV4$21!J^3#|T4LcJ%d`1H5 zo9Ev%Ri4H2`k2u>8SliDN4`6r8sjf3d)@9^!wT+AiUO~k(eNuMbp^rl0=)l=ppTaox=Y#g{#*=;=QkvnnW0 z-}@O#UBe(>NE=oe?(xmDf35FluFSbJY!BWB_kC z(?`^2fo_CIx0hT1Sy!mOlJswe2=fG?zcvi%_~v8bK~5!CFs@B5(6~}GU9=+phDQ3a z*iM2!58s2#x2EiutlSAEViwk9{P+aE1>v|)KrpHtIHrx{B?6KDUVuJZKUv zEz5ZGa6*^eEP5TXl3ChRlsYdwJgjqxwT-yt>raY=k55vq1ab(@OO+}!H!G3Q$c<8$ zhv^l+I8Ea#Y&Vp}z=w~HNp)FWlzE0Mhsiy;KJO;xL{E|1*z2+^E<=&$T=|B!#8jVg zB$d@@e=a8Z$GzfRXCYoSxTQ>Wr~NCJk02eG67pD*Q^nF2|X`c+1GqmW;~AG%^jUN12xEhGZwrcqd zfVUn_=JQo<{qTSE(9n}lI3o*kJIoe~=@f06NR@Ng^cc^W0$ZDID1 z_qE+Qp7?2COtQilpSMM}1<9rQm=u_uEJS{uLX;2c_}tDj)d});U}v`dq?W5cCuMNY z$ztk`7?s$I*OMxvi&nu}xJ?j$j_ZxCnIrS89a+n?dNWo27f$g!8N}I?0=E_zr)mhN z@(vMLq+kD_SENgOivvpz`w@n=U!&$t{i2Was@@ICC{)INO))XdXD66SP1ZecZ_(OW z5-xI7y}OSWogNp6rH-cEZ9gSQC!^zzPa~7=-EG!hUGl@SYBEH3>< zQ{FV)x0^ha>_z%*_;YDNK<+YHjgNw+7dz?c@83~1YYwiGt++HkYJmz6aZV0_i` z=h$7_zUMNo$73LwGDw5zqU^_y`Ro?|afG(ZaEk{Pf z>r+|NE!AFonnp*P=~1_p0BqA2iok9BZ~a83U^-!;`0qQG3F~QO;uJF12+rB*++A_? zY|O^I#)(-x$bU&7RQe*RjM_~fGcM@Z+&0ISJ`W*f?VUN%qvit8%t2HOxS5I)cFD1 z5)xQRe-LXq$O~5fLaFI$^AKp-{L*cYvHsfCI;6hHyG;y@m4clGoaikUOxO;#?+STB zA;qXyEcK{)E0%XdF0&p-Km?fYa3#Y`Xo_mi#(w=4A347Hycqq8u`5OCVv}&O{$1-^j6|!^8Z_Mg8&RNN^>^nScvlaMGG@>lM5cLpQNNbweb!IbJQ$?4@$Ha>)3~7xB zDVWaH`E>x2EYXbvRoEYArgs&YQ9NztZ2G#@j6%=8lydd%RBztS_|0eKxP3PtK3@^F zU?$2L3o%T69T2H|IeX#Cu){81$2Vg`?8{4pH6y0K>TyXdbM8B<3tP>-{iv-;`td4P zII&Cz=#w|`;H%WilCQbcF*n$;Ys@Zp3#^mnPo+jpXELlLj>_a}cdBW-T`YX3A?>4u zH+V5SI12seTigPID2EnJPXFPKk{6r)Yv64*x8$9yZ%#@Era<2Bm_!@pOBxklI;J;; zu(ZB9&oA3~E|d<_&J~bydrK6nO}>|JQqbfWpGec-!Umf0#{Iy!!s?$Ar5^XGQ&pu; z@zF(36cf%}$wa@N4iM+$)`#Vr8?irG-`|bqk6Aq{YiMIs9U2~M)~#1l^;%hiv({8R zb*6)`w!t(aPD4{cA4Dv_`94NZGkD~x%ZR|8dn4uEF%PaO;`uVIHPGGRGns zgmEUM_bV6IfGRJ~MDH_|3uU{wJ4s269a3@yle`%6yi>gyLie;VsCLiWxSbK3GmB5U zbxzGCtH~ocqLs+@HYV0e*PUT z$=+c%tQVF{{w(cyH42z7GB04bp9;O@e&TpjEYT48n07|R!bBu-uU|Xs!uKf`@F9zPVlMAJ?Krj zR{JaB?Yz;p7-4bJZFT-L5do#Bp?6rXDSlqvVh*dYDT{NGPnJ~5DCilZi>U|ljz%Wn zZITNG3K@S8)4FNa(lmwns0(VsqlDXRxsWi*>%*+zNMI^}zB8SHL@SwGN4;qtnpg>?iI zARFow|<&lTiq>rpI7S$`o>XXV<>neBqHkg?5_@Ph_&~bd`rUuI87`xw>;pKiYeOzkIyy=2#)Asxq;LV=XxdfY@xy(zQm7QXCLm6Jp36(^I3@Bn0!0( zq5hP!%x5V&iZ=n>D(l~*JP30ymN`*RFV5sGSWo#0hB}m(uE=c{bc|qa5NSWq^}b++ zD-bd)f~&~*F)(85a>&oZ+OHd5E{QjINNt@5?CR3zf*yM6y8T)6Urp8<8uHLY77XmBXs>meO?Bqc1$OS*Um%t5ChQPL(V6#dXDel&F_3## zqr~g+n&lXE0`TSaugt}oox@$&nnGt9s(<~(<%RNFzX=x(z9#1~Q_FqLgqx>4NVM<=Rz!R8E)D|ax4cZQ^0_l( zITV`rN-gOIi+l8RS-mx|f6gMu_U`H9S!;2gVD=H3q(PyNyH1bBhTcTa4;R?%qLgjV z(2x}mxuo~&^IS^Lre=|F4+^+}hwZ8=fdnD@TaHd6JdpNAoL* ziK?xD)wa@Dy<$s$b3(aU)6Pp~M3wh$R1zwf6F+k%`1U?waFH-{Yf5@jh*ZeN4x*2p zo=1z9Z^|X?9g}jpzLt=~H2tj^O^YPXoARAa!gub1azecd>$I=Wp|sPDhEsoO8=V1t zFr^@@4t@3}t<0q@V~qDLBQ2`2vBj=wZOVf!jGCtc`K~-kST_sEGikGEWeGH;I;gc9 zBxLRQ_^m&lDoKv0y;b*x?OS+MQ(@saEB$F!pdgO=bAk!^Q={y!Z9{l?nTOfg8$bhd zSwD2^J8x}Se~2i)lq#=GGgUd7W1aP@gsi3^+fDhCT_0ual@W4dBSJ7XkH?$b?bolL zizZ|iCKn5^yJ($Fl=t8ttmCsQAc?h-2+P)x_)Z!uYm%pFFedE_xS7L7gMP-ryFa53 zw+L0$fdu>ZbJvoF4$m7JUyM2#t`er1iUcK9>SYaD(|2)P!F@2^!NT{voc2!Lw#~w} zcp$cgy@0K)iMm5$JPv#2cw^Cn_g+;VCLI-mMm6&CKNtwCv9^0Teqnz~AS(Gz7>e;nyczij3>0S^d3hW|G`d7oP<0x|4Qf6PG-q`UdXWKV4GpM0p>;9dKrcZ2eN=MgbJ zuwA=<6ytN`ZhAz75A=<+?69q>{Cv>urQDoH1o*(?a(?gggI<5W0U4zODH8K0jz&5Ojm$vD^QC@4VjI3HS$L zK_=!d5a>?qy&Zyx&Dcln6huS}SwS2f_iY*ce-t(Ze^JQq4TbO@3_peV!TVk#^7pNU z5Etk!Mn`iuz~43*{@0)*_#a8xA9Mse@vpZV^6~H-*ly@%>IMxu`i7MrCq+k4bUuuQ z=ovAc2%QL4^?e(G#*yJlt7h?Hh!jWhMRv_^YA+#L4)xKLJUoqF7b5Qy(LG_hGEXuX zsp=A5J;3sQ>#A#L(tL#DBL7r*$K78I6m9Wco5PFS(Emsuofirk`Qc_nAo1pY6PZn< z1g2w*ZE?iy`ADUC)tK$3Ut0IUz8yjDi1c%D&tIwVY@uolEv-7WSW5sI59ksc4zk7! zo}&4<$Zxyz3q2vjURqP^rrYb1GBSWB54$4&!upjS9{(nW*M^yGjkMvSX;1Be7mBcH z&H}vym&~`G0#6n7yrSJ*Cfoh-e781+`1ILV7uK32vIm~MN>3OsYZ{KRl^cwHC1ft? zP$w@w!U5_07ODRzOz4S6!zP`H|q6WtOl2GdY5>RdO z(0yUZ*?PIZ_O?~c|KaW(qC|Yaf;-hE2Ld%pLwVgkV5a?{`PYiU1W}IAn4_bAVnStR~zgM@`y- zC>3Tsv^nJROCtrUiCz)!5V#;rhHno+4g{)6&<}wa5cU%V4UrE7qsvH>z6M343C0a6 z1rRO?vlEb-2?~k-qEY6;ME8{YvQY#oNQU9)1~B)S2vSufTH&kV&qM46!1rMLGHnRF zL4J26BS->ips&gLLqs_Vr`XLtO0|>JsbHz4g{?6zcOqUKKd|n8U1HIt0MAI>ek+T! zI^jOaFBSGvnTAh>yf~M9Er%@Qmb|szCmjRLW6ztbu3bA^v|d|swjf>iOV-JoIQ^vl z?p>E|$8O+E8Ryw`CW13TqewhtxY=nO_a$}(e`&6eu2F|0YGgTC&i9W_##2du=#Q5v zG)t0X&(nX)+|4a!mNX9>B&v!e9rQDHn}*E2Z!)(Iw_$E*Zh&ucW%1Z}T;78*J~0kW z$xXF#+c7eh9R9HlT0#2f>IBO-W#i%A|-lCAFzmr{l9CY%qyU9FoRaZfo z@+z&Ke}RVoGRoTpUDq+>w_ivqvcWu-)x!DS-TV?JJAdoJgrtL>`9VCjz3NKo7yr z8|K$T&)F>hlUVV&hSLP>^5+Lg8+WiChUEoPq-I7WFZt`bZIjLpLkoIW#GuWmV2@}L z#4R_-a_{UTZnyRf);2x}FScw;K>|ugu%o*5w7)19OnXD_RoEyXveN#q$iwdRVvvARC=TU^*U6b0@@ZN;# zA_FxGd)h~07XvkAXo$}2v*W}JI_<`Q1i2q%>l?C|_wkvFK*S)zlxhiEkbG8cH0$k| zIJ+Opstl)-{E20-29(;#{$j^IIzFbko+1qom9Q*-|2+nJjapFuw|JKA1oJ_}{F%cz zFRG@J`T}87#*52?x^M#;2GSB_E4&A>fFnu2oAs-kI%-GG<)VAw331RH^QK@A(5<_n zr=*DnFA%K)-LB_gFWX;JE30u2$mI5h{7qh@id2CNbhE$a-&+6Lqj_#XDl>EktXO}2 zsT`%y`%pJQ%U#QJ6HdjUxU!n42jUojxqCRthqahgEFh+Pp}QFYB)@S8sp=Yj`s#mez=W) zdEsVSTRYzI_0QUr5TnU1WN?pbC>LpN3ux7x=n;ZXPhbh&+vBI2Ar|Gt$YZvI;CV+% zP+5lLOwH+>GD0>#2T+RZp@YG5Gv5m%AGo$%AU00rX#lo~^q4b4#pocw@gS+4k^!`n zW0vbIl!4Lz%FXvIqUuDWTIpPouH4k+Xx4xRw~7i?*R<&p z9rRw(Q>-m4W2b8V1^HCd=K;=ULP~1B|Ae-xihruuhVT6&YLb)9o}yh&0}3Ib#@D{g z4Mx%tYHxr~ohsuC)mKi3{o#OSH!9s>rJ8_7Gfxx!+MdJE@OQNil`}3vjNjjP?7Pk6 zeYqM;x;s4JR5#Zerrii}^})H-N?IAIak|6w4LG>f+H-v605&C2;7q2~gmJ15MUSs7YRwoGMQGl zX3ERe>3naM6Y@CCO0u#}*$}|GHfwNYVKqy<7-}9bo{;3*SXM8zV-JSaA=?51-#0)r zg}pMFb7g#(%$j)G0)BG35VtyL(FSDcjyLFyl+XocPYKCiwM*}D=}^U3`1nyP5g><8 zJ(os*XCk)JW+VQ~fBZX=b!v)t4%D*b4(z_WxzZ!;8?*YU|5+Uqk97_3a>Xt>1e+JK z5VM`T&fFfwdk!-$9w#U_m*6K}R&kcv3r1_xu(0Fna=>&^bN}hHTCtx1yP8TVNOCw- z&rtqb;@GT=mua8qMq6leUX2ZL@8U#n_BumzGqY>76n$l(e1kw+D_X1cyds^o+Phvp z9X#Q1$bnhHk0Y56EvB%P$x-epYtQ0z_-B-(70dT&Owme{?l8BKg6-de-JiFya;A62 z=;823FKLf67Y^2(OTT6XiKm1JE%xZ%Ye}Ileenty$gFI|9!t8xJY{Q*YGtVKItlkxa7$G6A6NzH5kYl5zBmalJ^Z?H z`e0v<)B<+YoJ3am`;0CcGP?5ek?KLaJiGhQ4G&XsA>1~$4mHW2ltg@N8p`e9=lPFI zHpNq7844yetfy$H5tEeDB7K6cVol(oqM|_{tZzBu@N7ldV`n47`#!gTSp@p6^6f8_ zl(!iSWI|#sH%~_`yy~(pCrKs&AbBdG!nHC`lhR6|=AMm~No>fgOqv1^bxB9A>Gvbc z4i~~P<7$oDMYGe)rZys%K@XSuvnZyGR08FHl#-EIkN1rkIhNzHOD(rxPhq<$o8s?a z+^%oWFne=?BG=TDvqeOr-wJl`Eu9+;B=i zhH-?x+<#{;-S*|X9{+&t&*M3VG3KB&sI__4`0;0@q_vzHL}Aa;ibifG$>hF^RT!oJ z>5Fy^%y$jVj7e{JIg@lubwKXxxU~&_dn1qzOJF>=*YL+SW@lt$;6xkzt%4Ulh^VaU zN({Z_OP0^V!DIqGMQC_dyMk+_x~d zxNOUchKz!$Dn*qbxj=~&Oj1DzItGH-OdFwDg+)87;<5tTwm5MPspZe3nCyt@NZH6f zh%65Gr6B6YfDeY_$}QX;Yen zyf%rHcs*rg`8V4La=`c-XM!tr8!tHGPl{JpvI1%+Z5&Fnod9=tatvVMCg$ZG>g2jm z&~!A{u5N4D+1UODnlaoCRwk2@)UeyH_gu7TAe=Gj=&Xw*h=qU&lY;_zY6#rzqu^`R z!D>=6v4A2@LjnLv>#9KP1n_R?cR9Fd@h>);z;;(vrrczA#-& z(HU9IQh}9SxWYjuDYZFDGSXiRc2W5LVnD^)IuPyVf|(wmHQ%W{#Yt%_CE+UjcJTaG zratVfLA?isb$Y@8b~>lPbaoI-U`3b*Q9ot`PNbLF648niX&CG9VMh`<^~ZzsoaW}D0aVO>094E~<6*(;>S zFb7qx@c(-HOKrTBSurAfxZnYPa~?FQ;dW*93WnsyEP4(XAYkRJ(AmJU7#|2@&s+YX z;LKS;brID13=m_!713_Sn(<}Ei~Ta3o`S|kT!vU5{9b>qBiD7VY_6Ls)#I2Qzn{XaZ}Nz)_rWmVae5 zR^76xv@?H?i-2ixw()H*n>M*>uP)VlrWJ3{$YddBp+RovKE7!4Yb6SERSq+SV%Ioz zxNga;FjV@VY0+%E4ynkcd|HB@-tS!gxWnITvQ1&-iP(7BGyDG{FevHyzcB{!&- zwdGC@A8YhD2ZY>JW_)~{eSn+0as`Sj~BE(JF|OkDSAtO zphE>;A;0NEX(;4Rr(#&wKte*oKG7fkpH@@&wQC{7M*}jg(}Sl*Cds@RxmteSIw`l} z5uKH#xh=DEuu^)e6CDw*P<4B-|%$q%%4e@^bCk8yQ zI3cd}Ta3SPs^+xh3JfL~RMzVEWic1j7vyd;E{*$7w%Df$?laA@t`f6(&Rv!HoG zMOaA*<+LF>%v`Y1EOkxfNAM0MRZ46*Veu0OdiGJYe82bi0efP`dU{yJbajO@`M^nN z7bR#QD>d;#)WAojk*kbQs*?N}7?e!1Xr;ofJ4dpDST6OG<&*^OjF^p&HHg(%+n{3B z>Dn=#+51r8U?X?npsQTl><(;w3oBZz<~=Y$vSPaIm`cC!?y-&8dP(!zr=oOsGZt1#r5sW;z6`# zSqAqwJVfsIy^kPdo;ot1wJ_yt3-|z-V3@QZ4i}eL?=rs-qDK$Dxl1Z(ps}lbkdjhxn+b9 zE8Bjc%2cGFnDLkVF4*`0#i1j&QgZI&P zN819YYsY~3jk6YML~k>HfLy04!Wt$IATwes zgfUWBuoGLf6?2ptBJp)q|G{{Zh#^7R1Aopy_9f^!v>EfT=$3|-eN5jtKrQy!lc_mlagU5DZx?UE>Ed$EVP=y4Va`B*` zaTi>?qM*j}CTu)_D@!5WZ=sy#LyU)DLQSbX82L!Ua!lf^>_(E;NqOuUnhI8~oS%g@ zou}oiSY9O?p8TQ-5;_En;Vz(?4qM=_Q9B_aR5qLAL}OiUjMf@jUG z&4xV3QDWyR_ITU5*?Le23pZ(00L>+Q8AfBDni+T|jodBVTL)p##yxhU6SX}*SrhF_ z9beGPOpu8}E2MF6%5p9knOn>s>F*y1p*?l()C(p)gT_3+(VmBNDAu?yXe$EGe81S6 zMB4(qp6QE~Y)K@Z_#8ffmU-~cPgvriWE?oekJgc-QD9DL9aNuJhgYOmTCZcWv+v27 zUVNQM;v#0w+ikBJ^$M*0AI{)SrdkNvk#+680Z~piCh?-RlPSHb97;Y*p2?5lp&Ae z5X&`2s#^rD!+`2RgAp>~p;I-nvvdENm_=X$?VW^(*))e&kMZ=ATgvx`s=S;YghltW zzfNa0uiVDLwQcSK@s364M8U-45ny-;M^$MyPkf$E|vgA$*3H?$;~`sBVe7=eOsVLzo%FVVa4 zlFZ?Jzaf#~)m)g}z)wEyPkx7y=zW!avG$kfpcw0|j2{9QH&5p8nHMv$v%d41n(xIe z*TIiN7T=Gf14s6WVC`8_#<}bVn;3F!MNvNXwvdN$*(H%u?5K!;L(cF2*1PQ%STT>~ zu_yy%MFa>bRKrjeV+pM~Dm^@I!1)wnDdp5OG;ykxOZ!CV^Dd%oVQ*vVd%{Oo$S)R` zXnRjMm=Oz=PUw1$DfZyku#noNgz)rKnLI5Faq{q>nVGd3?Xtl$S-AqiKS;`#BM?F1 zhsj7L6QmY1k`dXxDbQ+XDuy;V(Q51m5%79~X*T7|uz=4qP5Hod7h8elZV{j!x(SK8 zy<)}wiARVFxT(|j#!*v9u7ZhyRJ|l|JM~QbIrz2}_E9W;9-QzQ=0KlUcG3uia=>oE zHm$$rI7=fxTjX?9&k#U&XNK+WF}T}9^Zrs1i#!?_ZlSBk`5HQ1LbabnIC0aK=8xOZ zy&wtaK*z<37*>`~-Av({dnmik>MopF065F09uA7*;7?7=PKNJhm;nayD+);C)UcD* z#G#{0krA!c`{6;2_Pzb|2gl2?ZQr8da9?(qe=1@vol*nb5HPj3W$}2U6MO{>&pmg7 zOykyLMZS!1Y7YStvi68aB?hP+!qE>k1U^8P#|I-`J>{JGim}}Qztpf+i3CJ?BCXW- z)eBJ};?fnUuaqallg<0f#{H)=9~{rpqeA)K&wJml6O!Z&Jvg0?3{vTe#|4zAw8jX< zBv1{$C~B=0V>&c`z&Gpc7I^i%a}(U8u>O+g5?({__ZRPTi)qB`H<&iYEn3-$7kct3m}#n1El!ac>43PLd|NJKB5T;-q0< zhkHX5LP_Xbe2AOh$XeQxzfP$ndQ@LT%?Re(yPmBN|E!|kdrnel6>VxiHqoOV&APVS zIqQ78m4=?9pGss(z7kaN5;0sSH1jP|{3wF;kuJgR2`){UW>C2oTJ_6Ud%0cRJ>pXs zw#k<_t!zs)160@JfU$ZkQ8x<(fjj0P!?P;U_cd5L_ z&Tp)ZTx7GsCG(56aZEk>amm1n;DG1jdI(U7MAyJNy<@H|(OVY!D+{wz&GP)^y1-a6 z%(ZCPJe#J_O2ShIs#?4U?LCxJSQFPGW(sz@H$uE8N`9n1!jA_3=C4eTK%X@!Hu(=O z<9|hp462Jcfb1yz62o#bcp4v9FnBI-Y+zNqUn*^tgVzgCOj=0br!vT&5#Cyqz&EJM zT3q)}2lu#kncwEmqi%KB%_g&uyCr8gw4Oq#ES=QFqE!^DXnLb&jq04VO>VVM(y?J% zBq<+8qyQ9sH{I(UHsGldCf51I2(L^sx+|OSc65(d;Fn zO&RSMW)(d450#}~cF=y%Zj_#0SNXFzKR52GW)#j8Q@Fa9o?foQgnlJJ#Il(*+lg0X zk-JF3o!>25^Kj=gb&GQh03u{{Ki*)Y+(x>5Jo0q`-XkH55Z&e^`h9S(R0V`QaH7>< zSZ6pqI;WoC8Sk6J0d(F_T!u5U-ydvoaAf_>YPDnqUv5u6aBSSVP9QacQ2Ik({Sn`{ zBp3gb^K~++`GZ*V?bR$<2fpm6bA)$;rSkqXI;MQwv~L<;RHOhY=2PfCFi@Y`lCp&| zO@~Of6RhoJ9>gQ_L#coekBk|RhLW()=$7%Wu8^2JG^t-}d0&QdY!8eu#B?w^+Sb4z zpQapZM$$OvW!S{67fED9r5V*zGZXPJvo2CI=P;(KaZOxKljJ41kY5-WA|@IrJ~W{) z+FRFgY$L}NqlGM)pp11SZYmWk@JpeL*XyHB>%|-?#gLSWnNJ~(5L-M0g1z%s5h`h< zt|@7%Y$;HgbIU6&Ei0wbFu$KIq99}ldxMD=6Imc;WL{pxq+UigtJEI^)o_-!((A5O zQBE{S;^-u2i1M>7ududKOu!vWcs(k)>njfyj&p}Ht@d}mMM8D$X$|8)_u2?FAM!Bv zCCM9bN^ou03D8pZSQXU9r;)Tl+I$-?G?Kb!@5WDDBc+&Lkp!O5D^7> z;yv+xhkA-6?yrRdr8q;+HlzB!MU9y+ zqCF&HRB8b=I4cP1D=X($?9DB?4y@VpprKH}LCd|MrM|tl;%lDAM_8FhMS~9+)`CX& z$a?h*SM{hTB65Rx^P~wZl-*{=o}li%&b+Y57^VBUiQ-4xlYUTBFdyx(oB|{5fS-Dw ze3|*HSjC0{G;&YMdOm?zs4_oMIvbMzz+W9ph<`@?tOA24?= z9YOp*U9mS`tZzWnUq6~#P}ea~^VT{>_p~LrnrQFt;n%*p*k${7n#zwA4*kWDMM8`OV#liaC<{EJCHPG}L#Vx?*7Z95Wj*vyl&*weQpRP1v`P~VkXn7&Ux&5DyopFTG~4f zjsB|YIL;_Iv$hyU9|~Kq$`keG?(ruQS8I>CBR4gPRQWS&JK_PqKbY3VQJIKFR4BTn ztK%}6ZI+22Z}e?L%m+%@iu91Ub~R9!`i3cKNvM9Mx0w{k6Jp#x+{#w8%%{h!DQi%Z zfYx*}Pbtt0N#@E44z#$`>kR1QZLxTrUQtt1hr0@G2@AmF2ChO0;Io4iv{ld{3=WJg zjVf%5;)QQp0yCPqySBX$xMAPzH-HE3I8v}sXyD*vV&bcdGDeflGb2!WaK8il;6y@1 z(c0821*|9zPXp@~-n3}sIfx6!ut5ElYATc&67VkA>4pP=fDradHs@yQ3JOa&>!J3| z#+}?OYZJ&E=7qk7Vv#vcG(9iX)q?4S$i%A}Ef#vO^TJp&C2V+8<5e}?mL7OkH*NwF zsIIn2we+f3%)0=;E*C^H+vLHqHw)jtQmz@=!6-~SzD`d`aN{!hB{|3ekPf1*skSHb!JV50t0bN*j#NB<3L`X7xA|6PIfzXDC>zY6sKzfn#9(Y~heU#X`5 zQpfiHT&2YED_{SgR7&PrNa{Tw@==;*}GnDzIXlwl%+H7 zGmpMGr@jLNBe8>O)GNfNdGx($#^6K)UIR3%xr-~*?~C?N)Gas*U*2C~0YXru`g(|1 z(wMsc&Q04@oSvCquME-oP_SkVsy8nUw7kypCQYSMsJC$u($R5{;nBG~pC^0PH#HDlcMT-G41z*`VE!>b2e^egMP*U;8*tzcTvG$Ypybq!$Fc&%_+@HAuP z*PN`tMh4v0*rQ_W>(kfVrZ5lnat+v7p@{1ErTya5ppgvl^c(9jt$&w?ztuRl*)%C^bX;CBH^>g)npz+cGzv@D(!hQ`)JBK&**K0zD z_xJXPzI$zsvU`qqUmW7rS3cP?GsWgN6a6(7dS#5_5C6lU)Mr_OT{rYlqK1ABMQ9rD|syVN_w zH(QgMY;}E}WslZp*W8UM4Q|U)KblwRIz@c6EtF46Eg~zVoZRSHAMR4anY*of$H)_x zX>UF{-<@Fh*pvRZBd>k0**8;EJ2Y&yz2-d2{=wi$R2QMIBn02TklLMR9K}`fgC-MF zwPR3Teojx$IzTZou@nCaf*XwBSadSxO6rYPb6^~bW$1-a5Nh+-D_1;G_0 zD!^HaBTNy97SqQDfK&w&R~$>{Gx1Z%z|{3%gtQD^C7jdG1$CY$Lh(~UWQHq}O+?H1 zacg6AXoh|MdB#<5@C2g>8I=k0OxY^qkQop@FujG^j0qyW-llMqBzLAQz;BOC%N0g{ zYTxkUUpa}`4i=X(!#+}Ig?6wKAv#PuUW@gT%|}M?(a|mfspqc}hlb+ECf<94zV^jf zgqe8DTS{6is$PDWGUFH4nk7g00Y?->)fg12oXcN!Tv*UvOiz}Y3KB9=fGqK{f4|nR#R=~&ZTmT;9Qjk!&#M;#wwVNRFH`K@p?D^(GaNA-4P-(`$?Be9r|sJ2>n{HxQ|_yyCy;|g~SgTe@snuxLM1)`iuQ3B z>k5e}B#rPJ2pIZ{4z0+%ph&CEgB@Z|XKDx4@E09)QSz=@Lp|pN6G9b1OWw{hxL^}g z_7fo{6lzbY^On!`A;$h6Dle&0htR#h!YQ#2V|?YbiHaO67IMzOJUs43tQG-0h_)KDtdEuJ9B|D`P(`yp8|SCj)bF%S#RDebB81f0!tU(WQa{m# znAP}*aWJKrbUuq3;1E0zg?IDYg}#Sj=aa%DO~-02<V0`}g9x&HEvKllOsQU?{5Pp_3l0Cal_|PO;%Mk4gykjoMr7nJLHy`CG z29SkztN;Z8GWWY~tLD_~$273`ag!SUG1Ff&_RyfId?1m=H5rumU^-UDN%4%rShJuo zC3hG}F?|O;?8!H=EuopiM@uCat`KW{+jk zpc=R>#VGE$MkQX_EKazF<~V0Hfb<#<+j&=5Db#maaVlfp?{pduz92vxL5SWqwPNwuXIT44i=Xy(^jJN z`5cz9Q*1m%8bQfwk*(4jbFGMD6JOa(>jD3rC! z4cN8$y{ae@Gx!X5h1HU$CNEf0Rn6%5W8F;Yg}FiP6fNvi$6(7z$xQwQMEQGmq+ZWa zug>7N2@kDz38t(Fi<0c97!br(_5Kea%UuxQG65H0l zOP-V%#wRf;vAiC4CPjF}f3#}0O&B)##kcys=BY8~_--*xV+WXp&5naUv?d*6qxFjfk;BMia(Pyu%_SY>ztGt0fAz%4&`G~^_S69{7 z>CDN~*f)_s0}m}Z3laSF`yiuIaP2|ng{WH z0BS6Fy%71$WD=JpEqwQO4mRkYkIs%EFi`>w;Xys6T>iFb!QdHCVaU(H%$jU$v_W}~ zz(z%qvn%=yx=ER1h~(h5^91&^1mbsq3K@bbV-)0`C?N(Q;Q}$DyOCBIHFVslP)29) z9fbxtfh=Q2)ib_4YW;cAz_OiL0n^*X!V$mC=JUM#`Ink_kMaOZ0t`$k>E3hl(U15h(|GWPGAS z10wH^0WboWH{2}JB6|~z_V(EZ8uP;!h+P9xYSN5kcgZ-Ap$c^OBTD3HO>o1+cK`rT zufI9A?B;qUmo%gs3(*Y=gX#%eXIDkZV}Y&cs3oW6kNmiJNyn#6MvQXTh)5_G*dpyz zO`^Uh7($Lk>-bPd=+P`uzU1zFgze*UsU`qkz+)3M7ePR;XgU(Dyp>7rpbWt-f3>*T z#UClFX}Loqa~XoAZhHktB#g`r_(v$AJcH+g0lv(g4<_1H3QfTIX*W-7@GND^s;H@G zW|xf2p#`05NWsy^GDaR|7FqT~K|Uawtb7e79>?zS+sG%>Z#L5gM%E*#xAm`NB}aN`3LWq1aq2mMp9<@zkUj7|-d7It3W zJ>lJPumKO-2d-B_sgVG7pidbCn+}RpNoajwN#N&!!wrIMtwB59nmEXe2c?wa{Tdhw zfLYu}K*EJYj1cskC!0%t!IouQT}sbz@}NyECnn{DoVK+xNL~BAuiW7(ZK_a^gR?ZDaxv7&Z#S56cL()mop(j+R*F~ z2Rt^jg^agvhJe6{{R#cBGhlCrn`QB6G4C_V-wM*de~&|^`C(a!T)-$`X!a&smo01+ z+l{5wHBmXrT_5<}ymWwjR}}n3^RqCf5vF)&Da(Ar@nVKturRLuimF|qvnaWsA9Uj* z(4RO}|BA#bt!n~_KcG;*B0Y>+Ok8TIgdw?qS_X?iuc@4-W0vm{K0a4yxOblnzkELY zkVPCu1T%|XzHCHcu^sX0k4`*#BL|5hHX2DB6;VPzl3*r2B@Jd2C60`<1;6cBX$wG$ z4$o+BW-egpqf?w?oBz&}p*ULMF;#Lpken2%%|9i;UsLx3hIk8h!);0P_w^W}@z7yF zDq#Y!w_{4nzW?Tk({(inKsP_rbx5`@UU+HoIL^DEu`FNtucCfUH6CHK&qxsD>=FK(jnv50yotXSf6FnYSFjn${wjL9ErjlnLkU|(B(HlNSOZ;CYK|4^ z4GAODUV#s+hC?`zWU(}XoMf0n5U|5`zU`h8`}b3z*r}X5E-GU)HJwbopRqCEW#kTq z)_hnbC~f+mAJS@k3BFKaKKMdpnge_+gdJc=MJ}H4dG8;@W;uvRHHJ2nMU=L0ZGn5m zKv1kqRy#oA01rR-bqy@X z++RYB0c1d68*uJvDdr{S>+Ajfb;3jY5%!c3=k_+xKEe1|-84TsK8V-n9Xq@L;_wO% zwnWbqC*P@%C~MRz&J0PFq0=unC!vt{NdgMU3k%Z5!%0X`s&|&bue1rf3xecz$^kQ? zk3!;X=Vi3Il?hs#o2EfY4FYv?;BXV}NV5dJ#3PKe@1(IVS6k`V5pOZdz2h=63%;}^ zlPOpy;G(vM)S5&jU*MN73}jf`AZL!Bm41~3-Ox6EHWHpj+x0sv&6DUA$V>#2DHROp z7J1Jovv0XvZ3Kh@1>w3!wd~p9O=ih7#d;jxHBYZdycNM zt}yBml~mhCZGGKqS0*)d6r^1IMAM?j!$T#95&px6<86pd?ScS*KKIx97dp6HCD#|I z4Xg+(0j{=#^=29*`SmWLjx?>mAd;CH77iLrQx-U8z}Y1s86_HuQ0%}L3zWps#0oJp zMH#<1k161rP$F~R{0aL(6|dT=X1wJEH_22$ZCU9i|Q5~T_2mLM-Hc>VqQ0&!X z_je?TdyLluID;tmJR0)AGnQwshi_$Gb6f3WfAl}RbQzL;gc9GZS-X*ejJL6m#&;MY zPf#4*Xb4wBS!3vMJbNdBCZsgZd&qCh3MGoMmV*CA|nLO--{X74;|&Sj2tJahYK>FO8=K_fZY3;BJsKZW<^<>1NChJrFdhAI|4 z8E;(?XE&8}Hy}sn6#!fW4rEI$6c2&sQ$qeh$9DxuKAR&RAE=TTn9t?!n$F+QuMkh-n*|r29V^Oore+Fc19(LzUy0@v5!I9-=Ff&D)=f>AHbbB|(gLX* zb~L;f0=-2RkB*%CP5p(FTL<1i!U06`{uLw^QfDSRJg+Mk0Nut^U#VW44g5#MOTg6RCitqRAFNh zvXHQF&@xYew0efMNZ7Y_w{Ac6l)YN!D%@eDuAMk<9?Ly|?87qfk*kILvK%wbY?jf% zq?cZQvusotiNZHK6}YMh-bzbvdz^bh++Knl>E53L03Gr=uP4H72#V+{#{A9K z(~1l4Ow9ONK66J>ejsrRV*i@Ido%bbkVWR0n#*t|8n2_YOHA$fNCRX>nYjl@5=bP| zr&Q1rCzGg%J7Azi%ScB+ormF^T~k+8AhfWi>;lP2++eLDWcq@_F0w7wcB;?yfiSBw zH4`XW7#;b~aLCcq7^^FA7{n*HLE7v`>5M3wL6sub`c*X;h@Xu;7GkuSSVtISi)_k$ z=G3R8HuT__V3i1!L&(j&pQZ1ujD-FJ$%=+GDmh<#!uZ4v)&X4@OF~YT#z!2qL%OMk zWBJGuncUOY(T2$a8(l@#R%CL&DhoQBJ1PaH5SNITEHXpQ7${stI`24axJwE&@JS1P z1l`c8K4vCSy&%AjCSwj|VzfFowAhteEUt33-RJXICkmyOB|+VfU6h9Ccq6XB?~_f| zRZuG$-I=TYrAt*sbEK`5TKp@CyZBagybaB3HAIFMcd=?OK{ozb0dE1R!)e+$|Do)3 z{OB`8L`Cd)c?+I(NN2Mk*^X0$+)eJeHfe_I@{yj!(_3tY|EvEIU;qp70F`Ou zG6u>qNMc6e6e4@)*am_dAZrGp<^K1vXqEGBbGJqT-;BkK-ml|3zV%-#tzKT z)H2u*W#m0p-(}s2oNfP~hkMRRz;PCd_G!iyU8}KKip-H^v<9gw>xl$+aG`wANt|#4 zT{bq;PyG1ru9`P0wzu#rzehNbu%D4}5j8XortxE1_$T@&elvF3YhDw5t9&ZxLo;X! z5^rM|`?OOcPi4MIQ>^KLJ~PkS6Eoira^j`v6tt<^S5@lZ+|Gj~M_L5ye$B>_mkb$% z=AXRDaVGQ%N{w|2eBQD+F7+(>6=8NjiTHO+h{mw@oRNe?zb-YzcAYSw zKh1%X=Vb=C5%dW19dXp{5Kedbbbw^oy-maOEED%}`1b~XrwR5z35zdZ65t?;Z|ca! zebyWjNetx*k!{B}IlrWOO7SM@nG2*2_SrOUWpt7Di=-C!rc=O&DX# zM26Ox6%95S-OQTS1C|^-h_skG;tdCM1rzh5^k+F7eSL1)yWn5}(X zVyuZl5Q1d;_IkglxUqt-cLQ9WURB3`Rd++-4Uu~YZDbdYe23efbwD!YSeKuc=l9-K zC#v+1;H=(uMpTAPkYe+zHGeh_{OtTp0$5mdpW2!|b7R{Fi0jMgex{tdm;Tw#iS0m0 z@_FjR41V0h2Ub={97S@L-OAdU`r)~H^=_ku`h-x;oGhhe1R0CKw9}-l6`Ss)X-Mw+ z_7%`T(nlP^n#tQ+tjaj{gVNxI?2marp`3EU0*jqEq$Q<1K%Rgw70sF$Y4v(8hN1X4DpBrlO6@hLJ7h}tp0|CAFfH>R= zE-$KaZ*e{fW3HbJ2G$qi-=+}X&##kugjMqvEO0hFHR4lUK6`RYRt$k}`J`n)cmI>l1=l>n+G+Vn|2!{XD!E71ronU8l=;jzwW zFF48WL@wbySv4?41_;;%{ezy6-6f5xa)|-rSaIR@hayE%Cn|!6iUG?M?u;2Ak3d>Jl`9QU}trUVw8CpXVYE!$Jw@U=I#q4AJsaA|Yn%uyJEe9N^DC zv2ddVIRf2~ppW~~r@SXc0*?cNi2$975UFRUhbGe)Fi?`1oQs03R+z?22Ib6cDXBR* ziMuE}YVtc8dI%~wrNic4f1Z2m%^TkFx(p2t6j{5|XY%kf|5Wf;Xrzkiz%-CuB_mMu z%L~LqjP}XzsUxqQ>!Qii_IO4K(+n|Q?JIgem z(Aq&ZQDzny%WKCQn=M!)T7>BjL*yRNNi=zKG~Wc2A!dO9Pfxc(jiWwgcpR&tLj3dJ z2K>$(PB|)~l<@&)iL)N2mRMm3?7U=S4(-_9a)i(#oCRy~1RWXyg=oX*KQ3Sm6sVj= zwF7om*T`$08CNL|5q`ycKxh0UcB>wdHj+4gYBe^c9%l1V2~oO8ex(Avpo+kAg^D6+V2hp{|@ zCS>O#{Xt$M;6~p;xNspj2b?Atl&b}4PltDN2HRB|oHClM1oD^CR8l9z7mYQfdkaKW z3k+f+@>B~rXSjf1`U{~GdDx>AB|fxo7G|-kJA6Byk!v{F0zEy30(S)S=iEM}HS&LV zY;Va^c`UPS!E>K|AnqTv$@+L6Y8KOFEM0H3E>n>d8kP6Z*i3sXY1Bq_J+Aj`XK9tU z-N^SMUbJ{{Sj@a(w61D;sb)@tu_F^1LE*HpxanSCm77_zYHtpeU6L_pjS>r)9?R=0 zBV6nPxR>X)R#&n2ZmwL75@Y=|yACZc5C=4~=r(Zfo}{=T#WhDOV5vVA~{~Gn3mXrs+8x;7;qiBbR`$25Vcv#IAT5c=rP(N`j<{>M^Cy#ZjClYqE+%o+T`uM^ zB6J`kIlv5@NUDyf$oAkL1cb&03-(i*b3DdFO4Fixr+KJ1e!{LZ`a}S{LFUM;bAQYQ zQpKFLe8cL)TJJ4{Esp}zG9NDVi!xw>dp=45AIQ6fJ$4ITM=A;mDg=||wWyPR zH_QCA8tQAmmyQ)fU2)<$N7UKTzpeWxgkV~C-8|osdbv8Sweyh~M zPbJ%gZQ-@kE%|m5C2FNeaP9?_#Nn##LYcCt2{@q3_DIRyWcB0V)_2QU!#XA37!a1h zWI*$UZ0a_Dza8Y=J)L8*z@a1Q3=>br&YMDAr(VS*WMD#X{AP0RIGOES_8@!PXzhLQ z_wYdd$NdFpL(`eNqmO7CZteKCJsVDh8~wPhvbRxvCf@1j(ASIiz?k8D0{#)$K9OiJ zq?oPd4d19kxG`m}YDSH%HSH zCma4>tzCO~RMoXFBA|f)0j#YxFonRxl4SNi?=vO=^8i7T@(2(V4a3X?hCC)tCM4kX z7D;#{3i6akK_mt)7QHBxA_`I@D9WS22epC-1&W}6+5i?2yuTeln6>lu-ur#b#~+h5 zd;iwn>%I0loYQxe_svzO)8`qPtM3}uenrikDe;+S`t{DPshP9O-~H6uvu(VOFYkS* zwy;%f-E+)0Z^f{zPJ7v zUCj^rrqsn}FNvEmJtkw?_WJD~&pWeeTy4wjFXr{QzkA&D?f3q3z@YJ)94^*#UZBm2 zs=N_tgB~qNTahsBOnryA)M6s(O3Ge95gikSeJD6%DBXsy7>#W zH%{(&AnowNWk>7QcWUl^`DHVAV0mS9*_)MVG4FcruG!SAo2NdyQ?qX6C%n##3rl)b zY^u4qz*8}5;gQ~JRunJq`}V{QX{TQIq=n+<)~PF|45*CS@@&6NEhnzO)V{jr-ra47 ze)--Xf1KER&?_6W(>gYL;m>t?!IcSTzW07St4&^yg#Z3>t6sDyc0^{2l%*G)y%XbS z4{foyTkC{rkNa2F)^y&mIMJ9n=zO#HS>DDiz!5(UVggE!`6n9 zdDhy>hemJSzVG#8{Xf__Gj+_Sv%fn%W6~2p|L3#?u~(Npb;+~2^jCl1)#}R!R-4=Q zJ{NdxnZ7@7@P>WSBR6NhW_^=)B>koOv6qLPb)KH|UN^1yxNrE*rR_UD9Y17t>pinC z6m-p6P&>@GBj-QP@9#9*N<8R}j=yj`Va`{Jy2QL3TlDPR4^~%OoyX@qoqVbXyT zTskUYOn8%;;Ew%vmHO&$%;U>OZOd+X?#VWLy%kTK{PcY6lChT`SW_9@G2y$(n=e&1 zuPa!Wm-m=Iv(&rf)4bOXjLn&>t)Cibu_I^b`0OEBJ9}Tr-SbB0xBien^x9pm|I?G+ zydf~=*xa*Sj-5U^Z94xb_LHg|bF+&+ALDJgb;RBwpB+-Hy>0vb%sF@OnC?p|^Y2k= zSN*-?^vWM*E&J~5`hv~BtNhTj_g?FK_lC)To4tJ(t{aZpwxu@lz@FN-Tkh`Gp}4E& z${2dMf9Hj}4<7RDTz_fMgl%thRhIQ0vh~|h7a#0!&Y_L3-uG_D;Pn2r>&M5f?RH_^ z;mSone80T>fkhv`@T>a2)mNQ)b5B*US-;DRhrDzy`{42?d)ggpx8($O_}~70&$cl$ z--#J_C9Zmg-<2HveALkl_m>|WotrR!ezVT|?rWF(&4&vL-FNM&ts8M|W@yEKO?`3j z(FTwiA9nku>c_8!zxajyZhdUS{Z)5Yr_U+exxZrRkNfslw3_8gdT`{1GdpU^ zR!0l5*Lm-SzkX}mtlhnys~$aR zQR>>7cNUF|`NR5O$26~BaO!lc>cbhe@w?qS*MHE%2oF~taxR>Y*WF(0^L}jArR;tO zqZ`i8ssGLH*bawce%ZdEAfwBy*?-*M>#4Pq%a?tB4;{!y0meQTT&x9K5+JAQU)sLQyiT?H< zT~7>BKYI4*uY5xfUtV1a<3 zbWI;TpifsZpu$~IR8oXxI4X(?i%Z=VDbB_zZhRMHm($TWBwUc<%*`6;2nU0O1%a?b zNwSl8B3Ba}`5{k{zdRT!aPTC<3CNHy-#s{^&kaEQmEs&54wtxHuJZEoq;fSW7#ic^ zwr#tZ;!>1Ej7Th!;1HZgw%5$pt()vhZd+yq zKl}iOD&&A~?t!78ugvQYr8xTz9N_3XHdq?I&fj4tDT>o|WBYe%RnSe-Qh-8lh#?tc z+*v_iAb&!JC+tsE7`GA`Ph?6CXKr10b2E|YZpM;bWF(Z2sp%nc^Wy(y>TM%$n;Hz| zz$8+K78eu;%Znc=DJcwiJwhGV`87_uF(%n1G<2J6?zFT#C0SYjUS35-!l1=CcSg`# zR)p70_RIMHn9H5ku+RI`f=kLmg^j-9^SbvOTvX?1Du) zQlRiMx@siBv!OQEPjMqP%5jH2cMj-Qu*8dAQ=H`@6iP3DRc<|f@1|GBH|5k1;cjT* zBQR;=?T~~ES zzN3+*a?@m*qwyz4@eP`xs)|Ku+++%F3>TlD#xd1WSR_sS&heI0@wqvUG1b6b;1M*z z7q^H<(iD>$NL}J{bFPY=tI{}wD};xNq{s0H&WO2+uBnu!s$8VUh;iJsq`9DJbS_hE zi>yWLO(%O}$OqDzfoIEnZD}nGcPKZ3r<1iX>_U>MqM3LzaOB<;i!p)++1nz36+ASuKBi!xv^NVQi43^KZAxRB zL2X>%QTt6{b&0uPFd#AB*yQXOF*nnlKergKVTx*Lq)P(>2M=iAGSjMjaxR2VJb72 zMfMBv$uY-(Uy^Yuw;8obLDM9C7>Y*r2DX|-Y@8XIM#lk<%l=_=**^@8Q=J3PAo@k{ z<8++hA^Qi!N9ICSx=D2oJeuE_sVIspD@FDXTjf-5%rNQR1Rj-(NN+U9V;^c0I#O*S zXY9jfgs;Gp_@c6q{oK~@aO?=*0$&Xe%Z{Wmq(LG-20R)&VSG*D=_<7$ga|{5yCxE0 zBwv9i>BvR~q3h$eA;%Zn!2gz``_LGf%YaAo3=?9Za^^M)Hi8G5BvWSU2AM1HXsyR= z)21;8vNx&!f@X1or#31$axDVSB63El+Y}E=suR)FQ@MbLMdPW!lX(~>jcZu5E$LSr z98f=Es9%WAIedo3Y>vn-)mI8bh>nzj3L32^RTwJuX@N)mh@%dZVjUU=Nxz^;d5c++ zUkW_xzntreTw|giq54&r6eF+?MDob}3Ot%?k+e`@8R7t-g98h~^mPzeY;8Fh& zTcf@zcvwW2plMvzITBao`UD=W2|0Qf8eaq+jYFX6v_4Sb)U;j`cqWlEhg1w2|3p|L zauz(O-GhgsG=WF+0t`sb(+V?adD<zXdb2;fQj1&zj76+xEvumX?f1+JsVrn*$P z-0y=X)zlomD#^vPXr2}=BF$xx3%cS+nF<>1!LSdV`mex~_!@c>J_sw9?3t@_zC<-e z#&O_DK4@4b%`;fDCg~S6ntQMhi`payok0O zU+hDd`UOQun&?QFJ=HlfEwv#8Nq8oi3%n-mz>v-vIG1vOz@su1#}<;kAPdTQ3x_<^ z#*y^sIN+Hy2cWg*3Z1KjSjO@czhg(1%UsENF6_jV6)m z9C)cLxDhh65vVa0w~QOXfhY=8;wKQheG2itVO4B4R}&*Cdv)zOa>8K(l2Oq z&ER3u9#P;?-$Ht8BCq0zOxBSm#Wk*2Ch>EDM{})$5G$<@qLTCr8nq!bx{?flr%{`P zYawt*`Y@;rpbvESWE_Xr5Ze%VG{(aE@Q=&|9doOO>A6PB;6a<4CjxWD`?cWpbwMQIT(iGCvq;D4@Iug;i_aDhS{{1 z0uPJ!V8BD0NO|C_fb3TclYI~!4Ydufp<$5m=$aJ`MlQt?9HB`2z)2jzLlj39On7KG z_91iet{YCz7_kqKBj*a5be@Qckj7YnM|%=H&PS*9J@8c8g9)0XBb?sT^#RYIu~@;i zDJh4d)s=k^?XTp6D9Fivfrrz+NEs+Pu06>**O{y%Y0c1w)Vl~g8pjm_j@bkr^&`m2 zp!Kt`4BBrAJZdkBfwGDCrNEQ)tH9rg4S@#|Fp&%JXdi&cq{(%OYD)SA57`GHd>Y$< zNA-pSEi5K-E!YRD3z;VSVB^)yh;uW6N9Cg6YGV_!N5d-dz`+@zp?RU_5x|qKi6|D1 zi>d!2c1rpcttqid=mUjLBwv9?{Y|kn`5F)cjHF-C=(P?NoeQnk1fG;r5IJcMKqQf` zp`j&~Yy(k)_7Di|()p=kx(vq? z$+)&_;Ox>!x0TGabcB0+EJEL@#D(<6`PWKrd!v=wd2j zYHV*}%Et$Ac5yN_v;}zNjA(5-ZH^=PuBuND@daoiMPqFxlWVHkkhUIaxKL@QSi^t_ z0;~}W92;wDReJmRlOTVLJ5K?yl$+~Ps*^33O+eEwuQ`0ao#ObBr%DI=`0wt$yzl3> zGHlzC;%wyj@)Z6ONBZw+JlZ+aysHQkMB(fxK1~|=5%H9fSdqa2G_B;b&CTlv>KfoX z#l1KmmLT>tYIpH#rFWA3@M^1~&^mJ}2Oo*&d|DlnuQBtzDK8Cv(9-y%FPE@oyOF#ic^*GNppEmoQ%)j@h1e zdm|=tSbTb1?waoMFGnNG+z&Na8=V>Xwq}Kwo{e)kH8m46Q$d3D3y>oCG9W6FBuE+7C-&QQ1Tuzl44B4XL9njP5nG6K_W zjO#kuy{{213hK=9N<;pH-rV51*J_$~&1c<7+!o8)kU)NbOv)G(P zJu4)-CO!+p{Hm2ns)Ht4Eh+N=voW=7=;I`tE}16ol+~7t^(*r)oWs&Zj}@zKFO__D z`0AjlnSC%20&_cEYLMpzWOMoRttl4VbM*WLK418L46gTOXFS=RtpUw|%sUlxWC}|XNF3J zm4bxTLVNt;vu?(1&I*o{Xd5?_=MY(7(sY>Kkp z6APpgbRUYKKrNfB3a2HN%rOd68?u^JfBasG_3?EPfWrBd*b)eKo>NZhV3ei7;bBj^ z%{d{4DPoXgDP{V)07e0ehpsRbZIT;1-S0&-L^3>_|HCa)JZ{F|Agel#Y1`Ys4;#((=Cd(WlUUG#Xj6`zRR5tX>hB|u@k3J-_R{|MsbJsUlZWosK zz!3N-a!3~sg#Hx`QbuG|A6ONw7zrWX9^WgN!ZjYPtW(cc3QOAmH^Fms7t07 z%!E2hg|Pa~@m46GYJnC_Byt0D$8h*NLoqlVUHZQFr8OQTl$2U&dS`|jHi|Z7VH?Yc zEyvDqe7b}QQ55%H)n05E$Rrb@wUJ8F`xi!@`m)nW8G|}d8$GmcP6q08)Chq>m(17i zjz)xmy|nTqTz~`tU7@n$&ABd&NFYt`v@w?g^s!(qC~EWwc^>LO(g`96IE`!))8`xk z9RX~;?wkX`1Z^ES(Oxm%^~MGdVkuVngyv?M9oK>fumq}z9-65me&=pwT?hQFZCiq6Ml+n1($83?SxM;W3Thz*)=9JsJYrs zA8Y>hNGjG@m|e>^l4X^TC+{%x&@Ko5e(UUXhB&4LvVei4vU-;^4c?$J$hxvw7!K-Z zHCkO)ALG^Gs&7WX96&v4RMrRt;VTX^?^{+2jMSK$WOaJsMO@Vl{NgpdA#wX2|Li3S zYiQ{3KCfY-Anwj~>Xdnk;z1H9vdZ1D0m392Zwnyv4WKLswJ#}6pFLjQHAk#wDNJMFNvCr;s|(k;xURgsiNIR$RX0cYk9`I3!kU2E&ZH@g;`6$xAH1vGbo zXf&NI84$E;!#n7y$FHQw5cG~0Yxw{V1eIxP2F>HQk%kwR&9jY%+tb^j+tbfsV9XUx z^m#l_S_u_Q82LSXC&~hCM;31TzN&PHHTah5cx$1qNgISHt4^hl3BkgGYSiQCk$c!< zS(w>!qD(Q7^=-Gv!pDH&nx=YD1_soOAw!k;(Y)O$Kv#^W-Tk1ga|YRQMh50emr_WE zCBdYd&0B{EmI#BCPadnjvg}W(fn;P{DlHt3o5rZ%nY+ax4@r|{@}}+!E%_qi(r);h zv`DVv17ot*0oQ&d%NvY)?4h1_BT7fH6{7*LK|{48W_$bWvkjdQY%JM~PXo7;G(4Dl8@A!C{0DzGodEujj`K2hzkTP~-Bt``w;y7OE1V z|JHWCei{Ns!D6MvyCh2o_cb2!sw&IJEyDB!i5)@d2L`ttdq`8G#S1^B#sBD1e1JAa zHKfg%BKmDRyjlZ)!8go<=Jd{7)FFS@+UY$M+A312%I2wppGa>%sYwqAB%JpieiisB zZ8LGoT7yF`$stn@F2KD-BoaiF^|lM0j8fX~ll6ehqh9?scJUiPShOgq%DlY%1>Yp= z2_0|YCxo*&{!wt+Xo1i|#ndI;Up>{V4mQHOmq$}b|HR+bPcEf>2n2@3a(^{gryuM* zw^B$Ec&>u#Yf}phTVqALbU@2RDa>w=5DV0$AxAN zy7>BdzHF{OT?ru>W)q7iYKYpO#-mw*1Vv*;RS9&B)v2p}3yz7DUH;a33r6}LF2q}@ zdSHR0M}41G8X|y9vKJ?FD8!lPMNpM?A_BqNG@PuLbM;@i58FrKr-1Uq z1Up$&_-nl9{VFT5sZ4Ca$P#M7fx|rDh$xQ4`i0|FL_@so7rnHwMi9cYGGl!fN}Ow4 zX_p`Cy3x3CHO^U@#)*z^v;en$WaG;xn=dyIP!?mB>#{)u%~~_Sw-1#TuDX6*b*0GS zoQa6dSP?Lvwe)CcMi10JgO{kkDKs-*0-M!DmSU^B@hVSo+Z-&$x@75khX&^$R$7=U z0;07BW1c#m0nz{_vG5k)9~6uQ6&P0&j;_Z^1lh4q6BbYfmAgzd=!Y8d4>=nlE$H!lz|yM{Izhu2 zSpe%=jx7qPkgB~x-nYfNPlpN|* zAta0POo>wp{wMVa@Y*7dU0^7d+z<>T=#p#yBFYRr*|xrPY!CS%7ILsWaeyElaa7fwt(bETwuHro19bHlCVxw4 zSP3e>g+Pp*!`$w8d2kz+V61$`2T6v#zm!GP%7Avp0kJCFLf(>jOO7BtnuX~lM;*N2 zycL6Stc$mirG3zaPy@3gC|Qt}I9*P=*a>8aLQUt4gn!DK`Uxynw&LnzX{{M^&p z;MXFJZHb}Jp-rqLex#O6 z2Z&m;g^a_rEEG`d?=HN2X_ZP&so-Y?)%a!!p>M>~;)Rjknkheo#x@aWpe3s;-tVog z+NslzbhQ_6&vRhzleb>i--GbOYLcD;K)@J%1r~GpYi7DXLV0ATHmtJaf+9g;Rxj3= zcG@?k$}fkX6}!Zfz;4}MQ{-1^T-}&sX3`baPFKp)p=Wxdi@6 zpP!TC+xF}iCOoB7&Q_gdLPIAzC2P;DFQRMN0MZpt=MFCya4;vivVEGX57K z|9`>QqP1kw{%)y+KDNT-qj1ifumCY8Qg1SU^Y}zbsCsAj5TqK{M ze$V}q^G@!rt{99CVWWvVo5RV!`##J0MLNNpbo4g%)3u@7?M0u2FeIAi)BbiGbQT`@ zZQdf?tD~oLjCDNW1WrxLr^%<2kuFITCBl$Kn=wL&mU#3&$W$jV+eM{pV2 zTU5VIO?`_xCOR~A5|!>bdpxy$Ewr2=a;Noh69s&KeWVK;&(S@tJGfxYzG=JsBTvGZ+S5!;T!4+q9w#mF?RknMq{1gTB>^l^GaEX*EW3u=!UK{h}rMoSzj$ znG_+Ox2(ReKEaVPl|)Ln?Ki#d_r~oR`A#U8&jI{pS0qs4B@0OUC+snqyVfkZK z_z0h1>`OukTcN=!Sf^^yZRgcqIz1prm{Tc7S1C|3CZ3YDhvmBYDjR6gF~vLuu=4=4 z;p?|0T7X=WQW-+=4ki0OP~ylHQFqjmI&kBwE5C~^_=eqpVwLTqH7lELbP)pcdOd)U zsj^$jZqdJQ@}}DGQN9~ET=!j))G2cT5h1-<*ApT!*O|QUKUoAVYDQ^5w87neoTwTV zrznOT^J!wbF4P0=t4kgicm4E(5Hfadc_~7Wbzs?;!W}y#*?PLzw;K8&lU8SQ-ijbZ z^I)D5KaD^I4+cvu{O0{XD~c$ubM}GDIirek5xSD*JoH;6;|7pB(B0rQQRmDzOEDA< z_@uuKA?89JA{RO=nFWr0za4JuC?~*LGop)~QT6CNbbo5t4^Sc)J;Wl!F@h)AIKcM= zkU%*Gt74zKTq>+F8l*O%P3ZqPY?ayX{K$$&CNTNFE?-=eR}yaPd*j)r6rg8~H)r<-(giGe3KG!-R?X9Ret$=^xc$#iDO^XCp# zFB`I8e#uD8E`YHpHE5na!HgGs>g6S9n@*33KHec$fKQizE27lU&a}kexnc2ym?i;U zSIQRnoJ0vj=Y>2)L}#|kw)OPkNdo$A^OIWQ(EgB3G{$_0?bH%}N#6_ApUi!-OsMo% z7-n%z#)!S~no=ps>mF0>Y5R`>-q5 z|JdK2$1->WvycyZMwrj$ychEZ6 zv3AH8$FyIW8ckMSQ4&?#f*lUlvj>wcF;mCloQ`>OC?R0~nhE0*es2 z*?o6L2z9Wq;9&%-kb;m;imhi#JfyU6j_=Kfa;)+a{~FsPC<@MrHF(UW`xpCDx} z+Mn5x+W?M5;b$zq@$?=M*i0GdG`wyXt0o}7e}vV@I3oCS4hhhx9rXwl`o;DNwA`ZH zeg=Q|!?2+uo!}J|?F(|jjH_1dg^35hdA(Tl7s2S$EJ~XW2HfbV_Wbg7_v`KZdGmON z(*_=`KRdkS-(O@s^wPVEptG1c{xeMR*KO5)hbqYNn#dXF&t75RLXxhfgSNtu3@m(H z7KW+0>dgDVGRGU5c{g&l0?s2m^X|E!g-?>#TkUl=v;q-0TqlmJ*Ud6LeXH8v6@=me z3Q`)yrYkvWL4zpgI9RCwCSnTUW;a&YJLVJcHQn1aHSQ-UAdx*51+dnDVA_h|u)bOV zBukix_BTy`c7F!%(t=T1C_qZS9*XhQxU!=M6jhKx!rTt{u} zqGcL%B}gqikF)-BgVk`39xy`04jW!f8e?l2ZWS?o%kv}F2Sb0}yccKFI9f14O23nj z1{xbyw%17ppKuzz%6ZKbjXz%ZEr%P(#{4Q?Bip}vsxy02ZH> zjlrUgQ~mL*rKh@H%p?M$wF;HOJG$vC?O;`7Ry>FpM3raQv1w-Oc3ajMk7jD&nkeL4 zMlv-SO(WNmZji0zv3JhxZL8y2LJrvJx(_pcvuJAg(0U>e;QH$zs|87`vEdoUk`ydT zeU(EEl?CYlOV5}g>v83ciCPk&`zO}^bB>j+9x-&0G86S$>p4zE)*6*WXU9XGeq(J6 zu$#PU;ay^}+H5>brB(h+4vejN9*VjUbLVu&6FM}3!Zu2FH~W2~ShW;B5S|9^zt)$Y zg)vwcRr-Q6c4w`;9hJl;RDrJ>E7|*XK=g!gzlf~Nh4W~7=Tr9aAhIC#*(=(W6Vn5u zJCC|XB`ARMDZ81J5X!Cr!pSBMRX1^#gXfrOd8^+|myJzEuT1wIOg5)$FI}9KiNi7+ z88#`kY=E_@Of?tAB|09h&cFAT8}3|BvtfAe@jN+E5ppXEPC3_TxYD3g%UxLkT_yQ( zts^L9VUxjRO_!Ae}Ox<-3{dT zNNsDQ5vIdj`>Y8x4@v{cYONn(JUo6`nBizCfx-_-W`F{oS&T`+qKJ-F`{9f`rO&qy z>>M)<1noc0_Mr9>`|ZDUQJFP=Jm;tjMMANcEh{oLf#P1VxSY7-Ie=O{XLE0V9E8no zr{?uVBR!_M1ro)50-XES^ZDjpjMg&UlGv`Tyfs#ve_+6~u3`4pbsMmb@&6Z~I^R_hd)oAGK3RffOyzK5S(Xfc>#lRkAcXx(k4@Z1u6GhH3>n zDZRvl!4Ff0EI8oJrns6}p#?_W$2n#BP2Nwnb+!0iw6$MAf|<>U??30&KjFAo06ZJAel4gH;#201Ca;JBVM7h=k5j_&*jjJ2feL5Ek|(e8a&)s4ELarWK~P7={TSc zR^!~W=VZL~Lhv$#S&^8yLJz=FJ^H8`bHIl{HX5q5Ztl0Vr-h^y zqv0iGwah1asEwKOYNVz9b(e6m{;#_HM8IqUA@vT*(R+b-^klJW6o@{MG`6h((%j~FTt;QZHwB5>=VrUt$Nq*?AjKrFj=2XBBE;K`b4U&srF^G9TT{(-ul$Kdrl z#1u*CK8N+;r-r9#0`T`_>lAr+$}&eiprZGkmO?4m%?!~DHW7vjn${4Abz86RMFg0@ zafq0g=gn+m2vDBr@Pt1=pT0tLfnvl&VKHCs1+L81V+^kU&L)GY&V)VJc&a2-1%`L2 zrAoQ%Y<7*zad63ulgfkN6U%K;20?&&p%UD@#sPwI!LKQ5Tk#69!!PQjFkiZ<%^h*G zrh7W6WXR?FsX!#D`x*cKFozgV(!BDp;}#n}y8H|c1U!L8I3GoK*mcSV_3z3SgW3dl z!svRcZ(2Th*2#sIQ2Q!>_th$2Dj((wnM`-xu4^)aD@~TQ!%#|x&F-5TE2UlQQ&VVb z-qigth&fT6z~CHYAFWl5h8QcLbT6{!U8O-$0c8oNb&sm0L)5kRp|%Pw8y;X?=LsGn zdY2L?Zkt&NR-kp}H>PC8J63`P>3k#|j3irlIQb#Nh4(rj)2{g-!!7(t@X(@_BJ?e{ z^EENGVLAhzjuqc%80)cg7~o4hOmgJYa73I58R^w)tj>` z?!Fa(%7KAUU|ovwCqR$kW{@~$x^RFZm2q=}lhm!XV6Vb}5{^PS4ADw6n-5Zb-P~aD zcO2DzLv7`$qUg`oIA53eGK5k|E$4v-iAle4CPA!^p^njg4ym0T3IO{)D@GUJmhJkj zDsYgYGc#T&+h%!M1i80QX?47QU(>?(36FAuE`Zw(v zqu8sY0Es*>@bQY2djOjL2ntbyxl!no<>8f`66KKPv6q9*O6i{sh>v6X z$B72+VLZG!(|iI)ki38*(qx#qi98GqC16}br9>t>De)L)hl+!P9h1KSMN=VqEA4?w ze_lgUKmTREQrYlp8I_E7?Mw$Lu!I`KErj_(E{#F@$V6~)nUM%mVB{)Raqg6GX}$N} zY-BY(rxNflz+-fN+DBt$0YgyE^l@UFU%p;pb2Aas41hA=sD1}SWZ;g8(+?rM>6%1& z$CMhMxAyrVE;;R%6QTiQ;qv@+fR*!C#AW|_?qY~Yh7$Mtohn_^R}LqDikVY4;V?O! z^MMEkz4_M>IXwh4Q+D>K8a?PK!e|S~oj-kw@`{#pRK6|UlSJwv$j|5<~>x4BA@R{H;>{Iluz@Kr@72No+QINlQ01U zZO&vw^dB)Y4p3?gGPSl7#ek&mSq2W>xmP!K)qjdutY;nyTLy0G($oI{{C_}6RR)s& z7ykcS_5Y=R76yj@tAEb_rGF-d{}=tIYF*oHiKTttmRJ0tX|fS8(xCBE<-zQi?2bc^ z%x!65h8Z6Sx+o*5>zaU{Xg$!J;|bIsxotmPVPB^m2}BuJQ&->abiM63-Kx^pM0QS_ z$A5J0@qT!|OxliS|!)<9iNVWj`Q_?KjMiLouymF)LbA>XP19U=cHCvGsEiI z;*IR}ZSDNhpAK@=8SY3x6VtJ~i)T8)bowRndK}t}=+kY)kX?m+P8)UB9I2cqMqxec z@@uQ^ni==2>I%j?f|cMDJN0@BhS@NkW?xjwrpqLmnrkkJc?`;pKCnnbEhG6i^T0o+ z|C7r1w27{&gPysqk>k+xMrFm#w#`~|t|m0vH0klw`{%=M)nyUOT8(Fj{*mUxw*F;V zj@Y|T>ak)64|`>252I%1Hror+GOLi&7;_BXnEAp|y-(+7ELp|Ok??EM%#zi-8JetS zxoydPRy1u)G-~EyiMzep9q!UzV}{Qbhwa(M;v!b7iIMJba-FC0V7dnLdxe92f}^%U z@^RpUfwl1^iA7JUIRit|D!vl$_C!xcRL8;c+h==g`O&qyy#m>e&#xX`?(oavyxO8h z-4Y^R8Yz|*H(^*(NsK*tqq~W9L}x3@32h*o{o8Hx(E3eHOYGIweQJg4V2#(uzWX{> z(lf_Q{~%5QpoTx1tMaH1IDm1aj)vYLMK~&8#4^-os>xZ- zrbzXpWule1_V&zhd>Wa_e`2eZXH!a#j>yt_RV4x7wisNw>5ghCZuz&~I7QC(eac9I zSe}*qh=cZa&bK{bJgB9v;@sPnu?ux4t)~)Bmf@CD+edydOtVhjRp!@HCOmYU<;CuS z2#?W9DsD^j$Qe&It2Y}hTHZMqhFn*fQv7tRLOu5TP9h_^+;ZRZb(ge45Uu2rWW{Ef zo4q*q9a?15?)%Or=XL>B$KM+9lkr%B0_O(M&xETEtvfHq&EEn9t+!*1q7FHYpIzvT zO*h67g)q%fSNyg=>7 z+W4$kv&(7O6@9EoS^KY+Ry~kDR4$%>ZX3Rt!-#7V<+eS&oeVXH2Z@NpNvE$mi}l+g zOw$~>M`z_1o4rxGquXf@RLb0j^7-v+8wIb25!121{e)<870*9e{u2%_E?vDWzG-ky zicZ^#@I#H5)GDkXlWAM5Dv|?6@M3n0vI}=DQ9KVC3F~!Q-a0c^^l!se)6R=_KqF+% zHf2pkbB@ybL^LcJ2@4|}P<|dSGs>pEWhhe%J)NR$^0q67AriNBGq#!JnDzx|iaE~$ zE}+Z%EFqeRR{O*lP6%i#!BgLuVCmIyijO0S>_Mma{cpT7;;swU%F1~Xi;<6mypx|O z&w|amK0p&jfqgc&TUI$fp#_F$fcHGny0Gd{(QBQAbB%I`up;uNdF)J7U>c)jpMd)I z#q`v^U{G}biIAh{KC~Ywk#hZLO&aB$VI@h9^Cz5@GJ0k@NCtqLjnnMPp++|ab)18? zUs{W}w2rG%Q9LAqK)aXBI&b#+vv(?e>4~Bj(Yt5Yxx%$sQ(O=eC1|N+cj%VBU%T{@cXADC6LyR$ERiT`z$&|p8JOcm69hGc?B7L&6XUYal-I4} zIyzJZ@yH4f$~IU{i%P;N}jMgz*xhjI0&9FQTfF4s##n+wS4sDU34`1lzo zVjX}ChJ6QhJ!%9bd7CXL_{2(=f%_8Wj6<&4`)f}Jeq77$JmVN#!I5P}Vmwe)7jB&Y zjo}kUNYhDqSlEszf?{(nJDQZF z(+xU&d-!;Nj6Clz6}26puv;{kL{#~p}*RE zmkU5F6w*MqI~$EG69M!ncVu`~PzqjJQ!sBsYb`Fr;@D0n__obGsuY1qLe3V@^a2!v z|EVJsyH;A3SSOr237iZ4SRpUWMu@9{4F|u>Dpml(AGNrVks{ZnLs3B_SoIk$;(;vl zxcETkRHNrc3o;RZCd`^My!f)%Z0ZlX^idGx@Mn0bv?H|#s)7koG;x{OQHs7_S zvL3gef5J~F9*BCw@t?M>xHC#X0Of#nEO{j*IqT>Eb%+yVmqPBLj_Y?wWWjj`&5<}3`TL6Qdj{UNYy$x-fiOC79IudDXC5x&I`|W zQ`b3Am7XGLaBq_VN#F%#_CBIuI?i)BIJxH z7*84=M1t~Aamg79>GzJMOgArU190oAn9d5!M(^6{39K$PPZ?BTj~!N8I491w{t*`X z3gIu)b`IjZf2A5rmh@o`+QXJ7S+M9^AWwqbon#@m9a|UG6W8IQ9_FSw#IU_OB#R4s zIj1c8j;jr|!pC~t9xA@t2iAFWi_4aF#K(SsMPhftZst7v*O|`mB@S#EsReZhAf=*D z5)Ag~Y@`IORf~T@Nhs7bHa^J#IhVpBN;h=(9GqkSI)mGiH$p>klF2s4h>1>YUAUjZ zzc-T25&O3qN<6yQ1wzi+mPVBaw=rf)%R>IxNN|2KFgXie~-r3_w~L%IIdou!$$-H zpR_(NcoqE7Cu7?CJ;YMwc2)v8p~x9UO6dR%L1^AMmMt=>GE~vMYkrpoPGS*cAjp$x z9L0@%BBVz7!*NaPP0>CJ&NvI7}9yS9*;}Gy6btZ)cXC;-SbNw z`)A0XWIqgn+B-krg87(q^C(k4u+rU??XKm%bt_ip5g-AA`;jZs(OwAO0_o5XuT;{F z#`_>54$dseZ(W$E*XA9ZS9?ha>OAyLeK4apq+*5OEW29lx67_9FRU2>kv^PFS!R}t zs17q?9q3-?0P0#?mDE5cLdhcY%|`QEu0t<}+D|!O`+ea7(<{2HvY%Wf8kX*J^kLYQ z&$Y-jC0z*x@l&i_2wuKuQb8i5YdY*(?^-#JJke}pP~4WWeN=3|6z$Q-gR0y9^s^P? zuD)vSkm>n4VT7vc6nHw^)&6?L!_}4*ka667?efsNnKs+ih2f~=rQEzX9dhTS#o$Iy zI(>HK_M##s-3Aj67GdW_*x+-z1ly@qSXA29u5Q7nU==u+{3HtBI}s&l%A0xa4OZoA z8g8sS!4Cgc_|2^WYO1ytXscV9Hb(gE`f$G@F9tSmAGs=(7AX(Kf59CjHt^3wW-;s4 za-O^>Q#Xhny(gi-HVRhH0Uw>)>$fNO6C%s8{ zRR(xls97~-1MGYp%OdI}r|9z@D|Um(gEQs78?9m9-%`1DU|B{XM)PBdf1Qfl<}ZVnR^boVR_Atk{A=x2 zVD!ZNeSdgAvz?^VBF~mDZ+9`db1`~?6*pjK{9~P1yUCXeLNR)@Cv&vcVxp-K9!_2Q zRYh7({Y2&COa@gAsw&LfpS!EjpY8^B0qA;0OMnq$&F5y_cUKk2hMZS}zzi6UU$9e@)IE({@RX31KXviA zq2bAeT}skeC!~zM;nM*k%-{B28NAJHze_qgBzWUyi@iM_8NNoG@M;PLbV(O#IK*D?dX;)X zS(i+-*i&gx1W449T2JIx|0{eOD|fiAPNTjrCs?3krgwSpF!BpMmkWnaIu9N+y&|57 zww#ZOQhPi#vD>*KcRrjbk#o9HEzx=q^fK^3uTTl|wE1W?{w_;}<(DioT*8Ei`ndfW zbpWPX>?dg?8s(Qs`ihR5r+GSB9&X+yk+fj_c-Ax=j|4 zF!MA7FTtbe-{#+pzhX@WC0+7U=8L5ze7*AIBPcX$*f14C_&n# zGHbiph3qYFO1o1_wPkU2OWaWTbH)#Z3KU*OGw;;g8{{IsB52ur-S0d#Wy@S7RE=oe5K? zIH}q+%^{;%M7$7JO`!_D1>OtCH^Lm|i(>&zxF?p~FDJ_h5(4{7G zf*G!a@1$Wgk*pbhb|S1X>rEK*zvqzX|NNYpnaVj2#L$}Aw)+W|qJpy{WNS0kZAn61 zv8{ZUSyngdC1r~=xIc*j*tzd!%?;I?a`g;aD47A^9onK`pTl*x=~9wATg71PI(M)P z0x()t?d|J#8qlrAdbN}7U;=Qu{GjT|4Ck2G%Rf*zL(;LRXNKw!`i^p>5;aYHJ^=Y; zAM=7a3_xVfcE#!_Mkte-R_gl8*fl~F4OTc84(-<;vaHB&pl%Iepz*(0eF>STDVJw< z0hpsUGBGn{ak-+V`*ANvW54TR`Gd!zCxZvy-cGVV0z2Y(7+5nl6<&m(?69&aA*bzb zWLa{`N_mXoc!%WsbVApXKR9|ILUY0`FAI#T!{zdp`&j)s`XST;8Xn~3DONbs;O&Yh zK2C53{0p!VPoOOGbk%;6o!jl(u|Uffw@iWr_r9B++C%WBgSHJ3A{z$4!)?zX#QVLK zuqNYcl@<=%?AHUap3rf$2wR-X++cRee|dncC8Jd~itD#LPbL|f0vwY60q2-SDxBhF z*NLJBQ;2pOW3IMg?xhk@K|_mF93y#lJWm?)Ur$*kIeQm)tv?xnYM^EqYSU-!vM|2o zyxXxYwTwvrXUWn$g*457H^<-m{^aX;dF1#q;@p{`=W$lH=SBq&G-_JP8HlIeZG5Op zS&Gh1SSM=m^%jqgbjHa$%8X$+0c0CBPS;(yhbQ_FP9YfsQUP?GIo3!H{jbA#=$jAsjuN&lD*6})UKVCaC5L>si-_>jy)3atwOuz9Xbcc*Z^0@@I zx^G*THf4ZeKX3Tv-g>y|YCLtw=CvLOFfM5%Df#`gdXCS(!m_j%d3cWrV{G3(G0zQF^nsmJPrnZfBVGDNdVs6)+cuV49$sH_b z!(?=R+N_tLNh73#cGjLXcGcOgwsb_yOMG;0#%vUoGGw`qCioJj$t(w<$zo>3%;7vN z{mj=XH3~*0GL~5ycd*IY0u4=n8-4)Omarc2whjcVEinHlTfx2DTttcTmewZ(QUfizyEn?)@Q2z4Zf>gxs-g(YzZ_@iFc0% z=Xh{y)8nuDqtrvv5SJ1liy?$TR(%$p!GlY@9hVmh=F#?7eQtUm^&_maPu<)28wkp8 z{?l{`r0g=?v42QcH})Z1W9L)J6b4C&{&E1c<)Oilt!~hkj`S=ZTK!r4cP~_1mYHyn z6cz+A)p59{tIJHWR?^zth^v8l4-00#YjRUeZc}H@r*2^Fai|U(YRi0qoqhZdd+tkL z4*;^OWALIr`gn(_h9^ZqLPxrZ2kxks@EvM~Y52C7G9xDa z(;N@v!*bM$Q7yccy*taB(8UzJ8vr4-X$$=yL7u1TSXiqX9;!MZjB=Q0-%3@SPzC5W zWyQ-|6`JI&iDFCe?*Us$cL0r#x^+gjj~NwpD&#&r8F4ZcN(m|bx-=Q9g-z4P{=@ai z+>;ADIG9KF+>a%F8Dm6bd+d~Vo>B5(s0TX>eqn^}N>&XF`lWRQ5H)CO2FPzPL{99K zq;w!}6HN>1&cO2qyz*~Rmvy#2@!>J@(6i+k+Mp`~)o{`=C#c()Ggeh0QCnG>%#?>n zk)^B!Kr(@EdO_Gs!Rr0P5n6NMz z@V@$$8KekNNMX{5Q2eieg8r&dKvt)l>-X|FTb*7`y5zAtLs#=DT0&^B(?^Nvl@G-! zzVrhknQ2`m-ob@w31FN$vdQowK?Ls{P#IXmm75qc?UE1kFLj0lp%~v<2=4})qdn*^ zT4rSxTf6e&MJ^+(K*G(6hHj!Mv(4(VagPr?c}?mZi?BUhJR}=RKaj$j@2r_%YKmic zt8P~f@pp7(pNtgwSg6~pHktrGr8QK9;pb@0KebpcIp^`LgwasY-2Y6|OE7(pyebgDj@BrtwcTI~x)HZJHSOa8Eq~3vlwrydTkuEO< zo)v=}$`gChXQno_UV z>;6g0`Sr2m;-VaV4}qI~GSvHth(&Sw`6!QOk4l7@#O2rP^>h9Cpo&7Z!R0ht+@4K{ z?@kt8FP4J`;h1BJ{+Pb<-F?#Ss@z;~(^I;d(WZ#;E&@4lxHvMR491JRpl47tstst9 z@wH`KHZ0o-_A$?kkc$+2EK#5hezbPRUG=I+$vA;krj`-p=W{xOsh5!P1tn_^30nwTF z-<8H?q6AbY6~7qXbN7BtTF6T@?Jp65>Yi_4o9FIM4uIFpLSuyMq|1XmE|wEV3xk_r zyl7(anbr*vqUeeMiCnNxx$oy}7St7>OOe%70pw zI5gg*wX12qU5CRIw!D(Tw-KfWBnA`)WX9>xrXeDD`yWGE&#?O+ls^~SccQUQV9?m@ z97d;fn}3yA$fhj!XUx=8=Zh)6JBZ+8Sp<#!``0O7Lr`}nTr~Nvs#<8R39n{zUIL5Q zDPw`6He3nN`a8vQU^|L(yj&scp_c#N+7OJ#@Sop6>SqRzm8sE~ypN-UG$ri$G=cNm z#3YHg-pLq_QDEU3Qx&8HRzS|JM+1k1@T#BK&HS~DXTXw>R7uO4PN=EAZmsho#Xc}n zV>oG=1;&;w;BnRn2C=QFE|uJWF4J_e-hR*rakj%=jaZi9$1tGGdlN7pWL2p;6uuRH z+=+0~EW-{m6o`J1#Ft;j5XhCy+AXbYpe1*{+FRp|n_w$l33G_pmD}i-)_^`ES~cpb zL@!6Is>1v|uH%k9onRT|21@vgJ zm4@@c_)`T{t`3WlsVs3lt7fPiFgc@5&|i%ok5LdmGGVti3F$lIX0*F_=oDeNITf;Y zrXd>#XI^%w+s&8=_PJ#druK=^~@8Wl9~?nXm1!Z$F0k zn+XYBROrK0j(^)6NJeaG$|(}Pe|AV;+~cUBv=1HQr1nBAGyK)EeiLeJDX%1DLZpu) z=T*78Zjm)b1B0qvJjij@DS#*IsQSUP>2kvnXg%<Xq08_ydh#KCJCYs_tO z2jY_-s4-4y#JeA^0&nX=9unHpjuq04)5rnSU+9iQ438US94*0ILf9vj&BLL4;AY zM2z~1o8&$mGT$}gHh%372>I*rB3__!qthJWuq@k*3wFuX(H~}s!Ab9n<>Qld2*~ms zf&45-u*pxJJjZujLgyDr!e^IP)K}Idy3hb{8$+iR^!J-Qop$oi*< zv5VivMR;Lm@=wV=%^X<5;Tk%vmJf@nkjY^nfkeZ0a^gUHN>tb_q%qaTZ?8pnQjvxZPS3 zg=jKKD$Oo6rMq>P;@R`)5GL_VMQR#si`y!TUc0hvsV%s6>9xIejw8!ectZbYQ>M2* zJDY^d`Yx45mTC0ZffK^xDcB&4y zO4Vh%1;;eCE{GNjCNoq-J$}PZ_pfCamDN%O%OUjs;B~+W$C0Q{UtM+;f83pL4}`Jh zWHL*tsE>Xnk~FUPcbeq4q6&MnKDs}D)@I?1m#dH6>ao&$UCf7-GX19OCJ9x_V@U-1 zF8)aR{Z;flIE^8VY`!CKD5^y5xy@eZ9OZ`&-=k+5l=T~nB=iE_Rq^Bz{Qt+;IR#e& zb?Y|RvF&8Xw(WG1j&0kvosR8vY$qMtwr$(!B)8AGb#C3N|K+@|=T$Yw9N#zhD1NXA zU(z9^JY>sQ5ZglQ3{DWd3quI?be!8)KJom^Kqp1gd0_4=>Heb(W)Td1wka&=W*Lh= zQ6kaXG7g3=)NAFYdt&6iJ>U07hSn|~P9Oi4Hgb-ufx!05;PeRiyLxqF+tU z*rQS0J=vj5K*Y;}mrSC*iyr6k5&U+x6DE2|ThyGbSl}_i1v#?@NI3l%g0)Xo{=Db1S+sR#lF?ww(=BCIV(L<{R^)25UVf_O`3v#Y&1WPo zB4)^`k01;$O|h_f`=;CqN3{h1o@tFeE; zQRR+ofFQ2tu$9}0{`SLVIU6f>GxzsXoVnnY%`yw~5ID5lP3ANuQ@m)Upr8mT5-HL9u|yB78b8!X}mwWq>cpY z>$c&c8{rQIOk$jqp@vQ9Ue{0v5z|gMCTLz|>XoeWw^}vw8TGK$-)1|ZCLxlt$&kAJ zaY-?zB9+Fxk(5a8_%SavLs!*Jjy)^DNuO2pu9afYwb$m|C%grxtR-ek-Ed_MjXyu( zR1KvhF}sZppIv|Sp4{OueM_U;a9jw#sS2JYnCQZyr zAeDvTT29}cqTN*Mo_3))K-S5GK;Ax$Vx)J-1vL@5L*Rb@yzi<@^1k16UcB?lEH8N% z3M{c5irY4RiJZ^^5ep|im4~^HMk=9H&VqD>NCO&Og^c`h0SoMQZ;|{p_oiIoT&2vs zrGo{81vUQ6s}#CQhk-aC@2hWCO|{Psfqhy!1xvkbhgO#-P;PfoqG@E{Lw6JvtZ(tO zMs-QEC_%!6Rk}#OXE-Q{(>yAzRu0RYv0&jhI#N(yaZ)km&NtTt^E@l&?@3qux=s+X zsm?3m*Y(i_Wy5LaA0`K7fX<1)WBd+lc7K%LXVRzBsx(JlCp40Ut7LIR%{gvJV4@2g z4?7h#{2UNVA(#ubBp917uKHI!h8*ChfTII3oBol(@=+}Wv(#SGzaVRYxaV6n%f=cj zKXD`@%yr`0EiFd)gz|N$@I!*5V*~{8XNhvvJegz7-b}Q71>8{FAwpeqFPIf}&-mbg zyZigSEadNRXdpt6o+s+>6O0GN(}9AbKp;$tmU-t~H$&HLATh`-G}%hCmCE#=m^3+o zKsflh7cLaBq)dnf?BKbjJ0_+tg_@@_sz|ufD%(p!CYz2`K?T$MYoF7^=AIv*tOZ_N={RCK^Uowb5uk2bkO0%eHh7c;pE2P2ta!3S}CL6 zZ+~yIgpk5Hy5)VNKlSq6;nE-BoTc_BCF@|X$aczi+OO|d*b!nvUy=1*%&C8n1tDC= zKTm{`>d0RB1#aP;GmCa=gyReV`M~wm0b6A|bmtwmF6CWT6N4+M>MyA5tLup@hGaLHidimD#WAeTM4rtq})_i`uj)2&3@P(zOA8- z=f%vl&vbu{wI7VZ&C3v&K?Q~Wr~|fIM3Nrs@E+IO-C*YIx*K}-xo+GPS`CN_2#f;* z?nQ4=u!RUQ4q;S?Tuoppxq${WH-5krK5_B>eJoJ5rdtv2CISXq7z|rM7_h;j#e^^a z+Ls^@RM}ZayqVOA4hdU3eLiF2i+gR(R~PS_6YYpWUHfzErSnF(G2(0=se(es+E8Z1 z5@RBnUk5rE#pK#`V+pyR7ezhU0QS+t4!*zF_E6p6Z`U!KZlX;bXVMUhBL+z|o7>A1 zP6&(L7bzrg>-ZO#xhl=nP_6%RETM?{xmG?(Zg?ddA}aDZtKaVz{0X_m;VqEI(>mtI zjb|-vQaFF423>!Xtx^ObwJS~(`kjj8XzpybKR12?ToDyC^ubk(eSl4tRrGZqr{Hw; zk*dT)6<-f^ouAnJaA&oN5lVb$9zi^HVoo|1Z3D}Rfp-0L?l+&vWW+EN>xQ%7tCofy z#|N#RM}oAw2sg;97&a7tS@JXsE{M_eMvmZrHMiF8$-_E|?_UTHMd7ANQyn8g2w+CX zKE({-h{O#%Wx0B@y9pp{Fa!EjQl2ZKt)Kb^`PEKTgX=ox-(uAM1pHam4jT+hVLu{U zCd10qDa!^$EP<>yRc*Fy`T`|;k4dC&Id z(I=7dI5rHUbdZ8=Nh8hYDZBGwf9QpN=!0-DTnq5BRRT1g*j%~cj481~P2Jcc1hz!; zbw~!W*@b3Osq4l}aHmd1AjCe`S?PbFa%6S^1ouVy#{Pr~n!XMqrg=`lq5!SwoIz zgbX}Kdc=d($TE?CgPUQqg{P{OV|TAk+V9zq&^L~xfRMzOhS?mL92NaRmb__kByaRg zL8k^u6}~qz?XGF(cG1vyFOVd>0>N1e;1e&0){}CDy@UaYS4?9L(cB6M@M*9_7@NY+ z<8C6=qPiCn-VUKuBI8o_#P+6!L(&0`PtG$Khxv-~ohyP13qwdeUTvxHg<2V;zvQpi zrM*ZH!D50@GD)XeqdJr!=TIZe2upfFsGF3`Re7tfzXx&K@9ui&kow>uiHhdjhS=7B z)#HF{#iUo`-9iJt9R9jQ1?_ugO(}53wxRX0_=-fF%*tUr>1v$cZsxR7fya`8Ad@ur zcExii*Hc@RZ#JnU&z1L+s{uPuzGL0W?J(tdEIi;3W^#TT+PP;K(WMClX5mPqxxc#y zWU-UuWq|NWWTe69usHKP3;Rr&D76yiP@tt2CGyKtzGG-JNWM!I6^KB==4WrzF}15I z0mp>ckgt}JfW%Bts3(;!Bn&?R#3pHbKNZIvoW zelV_ySHNAYctCzbgvTtUT>vz3X*F|*~V@+u2-aDa-d(?=n+ zYrW`kxP?y8i;Ux``i&sVB~pc7KI{9PJ-5cUm zLJ2RmXHt40fuW}cH9uVbRjlB}wW|CX$4_%hX)6hMCpq1JDkc}L@pd3XMs!b+eewB@ z9j<6b3Pq6KyFOzZpwbGx)!22hS#yp5bWf$Eei)e$TTzt~#0(lL)_l+|*j!`%tMr?ski>n8uFW|5u5x7^TQ6Zith z`59hg-ASj+2@>hKR4!(UkZEaRO@W$mc#3lNSNbw_-Bp{X2pLTu2cgwJG zrbzC@Rfh_VssY5Ez@-N2rT%0PdGu%G3)}o0&Hjrf=8_Zf7hqxK_*Kj49a0^el& zuvs?s?I+|Eo8%?9Gvo1R$s#x)t@3YZ``PK{HJsWDK;|+**62Z-OxThfw%h&Hh|7J= zE^jdC&IfLOE0sqq$Y)C*19;$!&K{Nb}u$>|(nzXbbe6xpyFQOju(;)H9k=*ZMl%YF{QoX zbRd!Vuf)$lpQ0B5Cb+$@;P*NjKWo<>j`zmBj7;4JC`mr18+9V2Q037rAI$77xyO4<1MB#)<@+Ff`Rout}++((yJ=lcO~itlCZ_~pS8lKP-edYgXb$Yte5 zWmba$Nr!G<5{93Xx4)@AMMgo!K3|7#=Xj4-SL-JcHbgFI6|#)_?cf#eS0OA|9G~vd z&gYY_+%{uF58FmbCFd*OoT_k!Zvz|Br{&A5hW(1~bBmXE9TEgMRbXkTua}#MAcEif zi2J&x&j31g$fRBRzn9^7>Fc2h^Zb;*ex(!>RlK1em%(a=BBj1{Yxnl=B9Ym@cW>EZ z5!roTBv(>Vdq6aAAzOuYUiHVfQ|+N$AM>zjdJ7t3(8Cey*(6mdWff4%1iiR;bY3-n zKu|w;EpUc%`tv*>5Hq>6eY5h3Y(5GAveC)s*69zB{L?jQ=O7ZuKmRVxw;^x#P6iFc zGe!x!wcrt&MIVqKL%sPNjFMp*n+x^Nc#2~3lsubz8}k|BmtAMtoFXE>EG%r#CSpEv zLVwH%&P+mI{7ob-#hnZn>S8*S<>h1B(wPNC--qqin00r4NYKwRIWb23;1A1A1vKNd z{=iIeofT!3kl74Z^;ol80W9~P930ASSM?6``QhEYnwi=-T~l^*Ts|wHhUu=DU+6Y( zA!r`t7?V_r?TviY%aKSWO4=bl%}#<+i6;5EhLJNAN67JL$khG|Ej;u$kLcCcXXu^n8y zk5x>xo_99FB#DSlru%3MW>PH}X<2$|aivZ$c_n5P#or~k@lMM$-iQn{QmRE~^d)U| zO+z~fH>fX*n@|*gXe(wnX<~F&`M=(t55PoG(dmL)fnSrPD=X(TI#y z-U(npCm4!fY&GNbz*{O|k|UidIgHzmgJ_s=;T#X4IY3K-)PT+gG;iH-;APph)2Wbm zp2=T5A9#3aWR_HA!a-7(9ZoxCXST&GcO;W)35|okvRzzU7Um~|PbMt&HMm(2ei%8D z8YI;zVORRIl_bErS)Q?0T(7^|Ey(Ch1dy_7$u`&}+Z7bRv_8kISwaiR^oM7P&qx_g z&SZH##j|G}qqG#SsoWOSw``fU-qkdMlroQkIb=V)0i%Lq=f!mC=EME@zBaRts1g(;{?=~aMK#u{w@UF+uLX0x-s}&?2X4YZQl;Yym=I77 z*6D($juAI(rm}&7R_MVta(Keozo@YxE@tb}0m$ezvI=TyPBNRrprtCVW46QApC(sz zB;}RoHoYnsPTKe5%e_|>fu9R&*q82IBdfk!!tbEc!9T4eF|w?09=h)+eo}XZH_^`& zAcJCc%NC(hW5d;Wzr5Sq+wF9I*xBS7)Nw;U)puAMh#Ip~xuytq>2rCQ$KxxmEM-W`m%ki7b=d0bF6w2>_C0>m>bn1}b&aP&4WBPt>gjDUZQN2a){|Y zC-Zi??!o&Z%R-c*ZP7;O1zQM8$c~X!ruIM;%5~SGtANqP_r{PcT&3ky>EE;>HLz0T zPmfsz*WS2GeCO7=vzzu&4~d33OO+T7SY${8)7NnWC7|TvKQUl?_-SHBxLzkAjHA&HZxm7R`1 zs{OKhx4o5mJ0+_OZI88GpT{@b?(1ze@MXDJ#yvD;55>=RZTu*D)Sx2No|Yc@lczsn zpAT~vg1oXZku9)vp~u}&jfUZ1rSC(DuQPpvzgPLpp^%xIYoUwkcKHkeA{{uT?@1t| zPST7r%}tF@=@NqMTZq)jAV3D!ui=FXZedAj&$f{h{!|dx^L84SDO5O6Dh-u`xn5k@ ziD$?ufKv1a77OdOzKZXPvX-dfGHV2QRTwHkLFt%_J){6^=Ukj~w@K(P)A_q$353*& z)?bQ+i}$5u+V!6U$$p;AsUn{=$Y}{`3KizP5rImxY42FT$4w9pQ-1fpV^g-8Z7l-J z+?@7H?srsFOmx(Ybxgj5Vllk=&l=CN5k;^{OR8}}j)w(?hi*NEJYt?3?GL0`_?PG3 zDXIV3-0;AvMEZ;Mnw(`TP$%TDPk~dTin~9O7dRNCrECsJl;jVse(4nCR@-M%n&hHO zkG?fQy<_hOb5I{x&Mc0!AsIXNkA-gPdv!xwOklY zN=-@yqr%Kx3RBgFQA5XM)>E2#u0v$r=Qf2qS7|D1SwPls<7_WbQEOKQ}Z~!P0hcTOu_(*uvc+lTE2R ziv=Vlnn=Cl#tpd3DzCF*+q1Jc6Fa@i6NODbzNmanW)ht9T2sEV#vjcxJ>b?M2oK2# zvry*HKR9@NtF1oo5RC!CW<#ZX;?vzn#0zr6&v9G52|9Tjiagn*_!tcJMw#BQF-<=J z2AR-&;%%$W?f=Cb#H$Jbb%*UX@b(=`pypa{#di+3| z)oXyfJwRkb@1b~F>^v56^ciH)0-e&0D3oGR*HGcfeRd{|sMOV3*HT(sC2GsG!d}@1 zP&9!t0C=(1@G$yeuy?*)iyyO)$po;&L6X*E$LGOZ2dX4;D=4?8_vW*tZ#iuYHNQ7U zkDBM4swj=klx}gRzWg6$BCG%sM$5$o%XrnCi|#xwfCQI;#ngxx{f=dRs@_8#O$v5_ ze$YJt@8-ARp!(f(CA9Otn~}lHc<$&O4-IXA!)0n*pJZHm6QNVR0dbJ`_uh6q&Z5s0 zBc>s1u855Xb$Jln8P1>h)$!(v$Sai?zMD9?oHRz%%T~l8Pp}sTl<8r$T6q z5C)&~3jJ*Wb`eGAXU_slq0tVAIdLK6=bTdrm00r8gRJ2m6c4tcD{p=ez8MCkU3PT2 zJrkuW@Q5?P0k7g(JyC#*nuNj5@`W zxsz3t7jmk{@m|83dLq5!E%~ur8fE%`9LRV^OWu!i?rZZjRTR14X>9=vWDpt%S%|@k z>(UQ%lX>c2f+Q_4E%q&?IZOhqdKAwkvR5x};gQ4#GcW9Q<#r-@!gLh;`;AJ+Cu65T z+}IxiEPi}_;T|@+#Er1QSmMXE3&jng;+js1&7I={CgRL6*bd_~ayyStRt0(i2Iw@~ zd!GFH%|Iw4kq`w+tQ%>}=bA(x0C|r~*TtO_dUCyOj3@WjzxG*V?(qzvBpgCj`4Gd5 zZRl3Hbw|_rW}V~J?Q^Y-V~;8*A!Q+uUC6Q|0GcGktU|z=F$Kg%vbs51#C~~ptboIo zlmDX6DFTd(#VAM?8-c4RJ;7OikoLi?;|5->x3dz=f`CC_OAT284O?10IF-)A7(rDr z+wW*qmd-QLH`{%>%Lb_Ds}iq+5j@7`ASWW$YqBLMqf;4N)>s zDTsY^b;a60<7N5Gky2Mza(&9nMekhACkG$G7?ZMTQYmrH75{s>EQN?h_7%H%FovFW zyUF8{RM#AX@&d{Ia~3hY4|o1bO?D^l%gW|`uMRK1l>b`7ml(EKH*|y0*_Rkn%Bpk| z9p`zn6cp7XNtB4v*Wr`u<7lkrnheY@fqgsh7a6!@pqWT%@9e5}Cj2-p2PSI51=VHb zX&^ce8b8(!nOEzb>XYUip7=-@D*Xp8edA~1#<$Kfht2D0`7H6uaPso~qb*XuYY@i< z!G3jMNaS`H@Z)3C^Ly5YW6e&m)z7(cNSvo{zqe-QSr$t2{?zBEFh6q2vquKRHRWyp zHItB0n?qV^JE(eG$g^>#8r{)fVD8o$p_U!lo!Pg-4o*)EA&`OgQksjixAIL;abbCG z`eVxwZ%~b-ptN;T$lr;3hY`{yfKI;Q$9$paq=$l11gj6sCm)oSHF;2!A)JF5dGU3>}&s&m%FXK8gA(N0#OOHTs3C!-+C zZXGs6DEZf-%M1N>uaNk&um7SWItUgI)0cXZcKPut=QfUWp>P-YT$fes8Bg80M~KHI zAV2AWZiRcQ`ZDMFNz>`sHMMzP4?7+#SYm{b9<5>_)Hq`Mn<`O&g14REDSrzhECXxeQdY*>}gBt3+ZAJ0Z$t#Rp%|J6q&OVJbxD zEA^=0$s6pfYz+F(HxxsK0r?#eaOUEcJN2#8T=TaaZiC67OFN{sJ?|su*3v z!&5Cb3U%gkmJ!2tyJfJ&rP_f}C>9H$k)lkZdvLquZ2LJbA29Spjj7cja{G{>IM!&& z+IDbXyo_@Pqp!fy#yJOoDJ%>XYIw@1CQXuf7Jr8ZYg1}`RCMsPWSmi%lBDz zOVFfO0dp6;1jy^8g_`2qi0kI@SSfSb`gpIiUuJJt`-SKCg~X1aVf~*F=)d63|IKNz zF#Qh%V*5|Eh3$W(woGYl{Hx|b{Re@NH4KD7GvzotJS|VgT1@^#91W({!;MM^O)21- znUBJZ-AQU*61}QF6SY*_98O9)C5DR=hInLdEvc4P$f-WnqL9-Sy#9XU)&K4Dzz}Em zfrh)4``4>~F)rbaRsRPggS=VtEn9o`z&MzHTPOD%Q6rUnflkD!lP_wIho9FQ+$Gor zHYIf$L{+O!@AqLyU*eY3-!FS2&w9nVr_9HB*ApMH-gWy~O}uydl>T(r5>Tr04_TANML^2sfvDz_OteP+99r|CXu0qstSvw zAlB^H;5O?n{4fPqHxC*m!MM}q7yDE|+z_y`FZj3SB`^KW@a@-+D#21X42~)ETJn4X z5)}HwV7dxk?$ecMDGF9?W{LoJ<5B8=O9pM9wrH*5i?1Qpkv+GN(CkJ0Ex`k;>+TZ1f@v4B&Kpm zJPHkE#^>)Nu^>)~3rI+mF~(zRiy#bJQ0YZyyEpIvdFuq{-4&DFm_#NewKT`Cl2yJI z(%d3QS~Z-@kIkM|g2#$r4l$LcntB7IMxX&qLC|lVrGLYt&-Mc>uqTEJLCo|V@*#e2 zl<8TETPI|UK8q9L2#?*UrYbNIF@mLd(i)>u=|IETbejKQh`2rL2S@1t=9-EDyI1vD z&J_uX>DWnDIakm~Fi~2^FgPgd7WP)3yG~a09YPJ{X_r(3Dn*qJPC;alH2}adEP$k; z0*|I0XL5a>R6jL0rz^W_y^P)6QI1ufePFF3o;P(JW4&RZomj@6^pbJ__;z=oFi@OZ z)arDFewx*4)7~7q?6sJAUl$+XptMJ1Es8tYu&ap>SpRfe$z0?61b6S*dA&{Qu|G9z}>q#cJO^D`(9hl1f-qou%rFl0j0pr@Bpb`qCgK ztI)TLRel`OAScT$)~V2c9CMD%{|++SV)S|h@Ip#68BiQRH#Clf;%E zci}@9o$GtkIDh0^Fc{CTlTRGkiO!odhH)8)S34R7EJ;Vvp)nuEi^#&AkYvC)C1#|VTEd00Wr=_W(6LhwRssicmWBaD^g4AcO|%Gh^U6ND-)*FQ%>DL? ziZ@OJ%lrxVwzQiK6UL7Fkk7JkXW0cI5y075vq?@YA~#Fx+^@?Z5Ts|IBLfL&$Tl0$ zssE?L)UITu!1W(gJ7Jo9y&7+-tE%Y5Q4@}|FP2|C)bBprJ#LgiB)N99*G?B`)t|Qq zDj-QM)~Pg|rpaM(Fr-p&lZ#)ATH?`Uwnd4|aFe-=}t&C8s{}F0WV*rp@HiATG4SB+vBbwQ2UaUett5`5nKh6tur=AFybEJVd&E7f;mi@qy@d|W8=w}}RheSo zS%g3Dtx8gHeu#MM%oR+YSPdX<2r*q)k67hhU`P?cy1{|Yi;8Tt_GIDUG~e*)H)&CS$SO0!{w zpN8+FV;l0NUe~OW4!U~!U_~fuw${s5*@kq;A&iE3M6F+~&KBzQ`5`(m>&Vb?@Q?WZ ziz}<3fvN0h(*s9^rD4av$qM!64>oGA)p6N0=@cGaFpI#nbwbt!6(O7}ds>Zk_e0q4 zCh+&sW|fbt&6T5gLr`EO9KBZgXwc(*UKba`9MQR0rnQHT@bpCE9XkbG6HuJFCPoAo zE}s%E3+g5X%fH1|B|S<{RXhhD!%&EQq_vvw{J{t&(G=}!fGELhmZ`+MQJ@X#f5IaP0lZ{e#4WA50dtCj0q z_jZ#uyVJb3aT2Ws@)RnJ+wE|yYml2E0GTw0Ncmu7i2=4ILB6wAsmf>JS^D#cW<8l; z5o%YnVnVK*IYqTp4k^m2JE&*e*=`-fWM$Ar*8Q`Q+C#`H(RnDn>a8A-(KHQlx)S(l zY(trz+i-A0*PA!L=#LbH^7#9M=Xu6R1#dYbt%({5k*4Wq7tJHB3+8Lwm z(Jnxk(eN3TMx$c5{fl_c)}`|&Y_sDS7S~Eq(r-~1s}~||PK$#`I!9llh#I^r%l0tY zUe~r86>K>_KWD0&_$mkR?tyU7j*`{ux&U4l1`q|a$h+@Qf~DT-1m)$=q9jOA(AG;- zxB2dyBlW{1C*a>@dID|ek<7>i7oRPLYsyu*h!gU#{m}dk6>!*TSOKY2w4FyB&`nNe zp~~D(!Ak_x4;u!xI9NpY;K^_sK(J?7zUUv{dS*kFWR#tSbhqJj1<&1tX>5S6b9#;Z zc%KZ`uOb6w&mhaU<{c5Yj-89^DK3ba!UJ~@Z!xBswx7U7x9MJ{8nOC;F#pQIm*0)2 z@93?B#gP&D4V-_g7ZX5gfG%emWMZ&zNgtk)PJC_b?m}%KX?a@}cpC+yFjHGUV}ID> zHJawW*}MT*1JaYP)L{<#kX{>E1M(*2O4Cr}1g2PFGS6240SD%DZ~2Z*017(gFNa4e zpjYehHi|o9C-w#L!H{JB9G8a$B1H6~+aF?gUi?Rg1=*D+p5zmS76@HS8a7K9kwI7W z>8Tdorwhyqb>5aIN8lcrYi$~#tOCSLa6EU0B}7i%2xLNs=~8r$9JA|TT&v!u>|pp~ zrnyt5lLR%7Bg<0zPChPfJLIAaK}Dm=`(WCU66uc^3UtApo1dahNpwrTXYCnEv_t9y zA@M_7;umhrD2UP=)Uccb**f&fwbHA1m3ule?elyK_;{b2lVr%C&#wo+aCj ziWP@-AZ}FCndkTRe$B z+E+wIa9k4JVCAT*36_iiEzzKZXGAdsF zMT>8S;gVQ&=5#^H@j((o`s+9;Y0;kGyutd zpYQvDHzXRB(hzPxeEnQ~G3bI5tXc}-_(NT(JJYPbVUZxXPK@^ZN=l`${Y6RNagP<4 zY%VTD{#rWFAs8 zp(Vwtp9-A}8*E+pqPrB6*$RqP_OD*Lp$9+`E#I7x0n0BK=8_;fgq}WF^_zsB`ng#} z=m-6u%-L9BNcdmUymN1)LMuKR3VCdZ5m3ExEexF_>zGZB;BaH&+GpmpN7BK;!NRP% zD1js_-nR@?DM}G_m?~y(au~8ygMn(kkd_bfZEwU_;qClS2O7M!%q>+ITs1datoRXU z?>Mo0b-&;ncTEQjWgPIeC4V5kfr^3XKKPpRt2Agc5s3BEDMZ{pS^QmqYE*Mr_!d{P z$T_$wGaU5g_xHQ|Y&sC)634WzeOPGz1AgGhN%wSRm4M|IW;;T#Yj%LjK9EMYO?}VT zLW3ey$#(gV+Id8`_(O z{Wd!W%a>%qi5`&s(Z6k}_+o`?W{Tr*8Wf?#O7Kyum(BXuVnKHJQK$~q6S?Xj*30mp zPf67DSV#BF-az+AZ{O~Q@Y0J1+G1~y$2!K&stwaVB2k=YmR;oj^|dehSa6w^0Ni&O z2K+EWp+x68+jyJRQ`b$dBnZL#dq{PCF_H9px91zw+0*IIe~^*?CLaG+kKtnfe`Mr8 z^%%DQl^#>9wGsPYH!gK2)m@@N@-YiJvTU|7g;6&$swh|g5NL;S-W~>u{*l;Bk<2Kn za_lCSf7@5tVQe?Z2_=Hhy1YKGP%iyv*TD>>=cRuu`g3knmfFKTGU*MS?wv1Spdcl@ zSFRPDL{)l5FTm5|dNdx&V^-3(rRR|dLlj%ocm2v0%%b-T)7|Ay+^4IS{+Ia)@kdYZ zr46q<-J0l#*qoYusWKMr+Pg`r7?h&fi5~jN_UzdMT zo1-4I9%rmzM0YF3c4u#`2h+bN6ANY)?s!rv_NOCjcVO$5>{gXxkH~_S&G#dHWXey= z$ja7P^WI}uR#J3zRVA?tuK;5QnFg8)JT5nheGByPwe&;uf&6ipzk^EIt(GH^^oqVa z-f6Nwbrc?)O7y-aXScon^g1e{9>v+gjKC(*s@y%GYNTSUpZRyaZCq7u3|(EQ-yCWW zR{=)YDDyQhyu=P-*=@Uowbk5hUwVzf{DcoOZ8=CJH$J)Yy>W`kNLz!LrlpMf?k#s7 zCjQVa%9RnkA%X|D#=-|J%8_nV)dgfg4vOT@2*Bp2QppvdnH5=tNTNmX`pwJefpiEY2-pyxA zSG3?Z*FiE|Hx8T~0-$1}8Gtm?W6yVElboc%Zf7vGU+76}%XO9@9jFZs(m~|UPNSYl zH7khwMo<2vCSS)KTd86cQPm{#PXHL`r(9kpjGDWg?%oVP$YbEt&$E91i1=VB{Z2y?jH zkLxNMzE|9g(18R`ASwktpcHhB85jW<5rL)j=$Y!!U!Xw1;azeLcb;DV=qN&gvZu*U z?PEqg-6(DD)pXAJi<#?776K|)o*V`r1S{N4E9w(NHj&KBX4P(=4Tkc&K8Z}Sw}?c2 z2p9XO9SQ-5?Z{Wi+|{q&qHx)iZHR6JK+pwPqjTatcn}glnwG5n`NQgZZ30-;4g!U) zje0MI*W;Bsg%Gg$r*^y10`OQM^%5dUI$6202mX5%9cU6urC;zInUqeUrz)NXy%pCY z{@^zjjT%&EeQoH%4GE#5$DNjHU!d)$5t2=mWrl|fWWos)L^3A5I%brD1N)VjXb;A= zRmYZ}2q~xKgf7*zR8kOH@;z#=GdU=XxY1B%d5Q(=axdx6?~_qg%-1QbMFE%3-c)y1 zx|ss5qcVpf)f6d@ZI`JMBJO1BEvM?qZCF8V(*zGiEfCRP~cgLPLr(kf-8rbidJ#`NpU`T(krk~JiSrV?=DzR;Qk z{Z7f01HPBdN}3>|^J@e8LZSAss#XRtN_LyEjCZ(z>BERqVk~St4_Pu25zfAt&c>Z7{fb9IB0fH$nVZE}->4ezJ61 zR(WNf_Izau<>_dZ|J0wB<7JnT)M^CeIf%Ub^j>P7UVp{Awfr6r9q!8nnsmj67AiD~hN;uc7&vF$# z&lwQZ-z+=+WCBkmw2ofP-s{f3ryE&Hp3^Gwd#|d>Q&nM#%;Ju(ekq_4yM@KZ1f7q6 zlE~Cj4+I@tnxS&vDfc)%o`hMtndZ|_i4SyA&@Qbgh%gK#LS6|vNO;SyXafdy{fFPY|!_$J9uAvLYbP3U6$vhvz$UeKyuACfg9 z=`lV$lt_i-YS}t_c>^5Wb|o%_NbSG&H|0>fpJYS$1b^D(T~s-IM)e>rI$27Gx#vjB z@J1g>J{3)&gax<;TbF}~f*r!UqH}UPC7K@r-^3cq*3hVTQ*nXz*($_*knepP=7QUF zcH5AwycTfz>}*>l>7?WpW%#Yg>bO4__dQ|rPJ9y(`k^S_luMHU<#Hy@taLwqrVVfa zA!fnc8a%?VdtkIZ5Bx0TdQFuW(aB7xi4XV)3L^G+D0Ff>N@7n%*PK z;t1`BZQb^Fd5q~R3WP)vnt?3Q$jz4#rH)!oyBlruKhY#irbv@y&M3E#q}jP%L5BgH z=ESm;Q>FIX zTbRfprc62h=% zKLeeXtMKc@u7wQx<Ze8#)!Ctbhc)s z3roM9cIC-|cA^aIO^a zxnBoO_WQVgTG+_Ks-r4>+qw)1|95~)1kI-Xif&rfmwWGx=7EoqVpl;PZeb@<2oMQW z-Dsk#pyID;k0M7P;p7>swZ7G}4Rq)vRygD6zz~ zZ|!>}`%z^)q>|$QJoUr~*oEeHbo51dRuD*}n(@wzNceHKZBj$AQdhdfId}J&cf_`3 zjSQNQ=Lda1h+(9U5xy8B;w(m(P0+;Q?IQO`HTX8H$(eiDf|N&xXtlU!RPXRg=>)Ek ziaUGE95Q8I2=bfHloz1g$qITkFAnH_kq<%s{Js=R=KkDM96vSayduQ+iz71)oL~)R zBABBLWTlQJsAw7g%r@``(Ngk&`aY325-%4qPM{1>7N&S>|~wd`u;wYcZOq zOFX3^KPmq*6NLX;ikwAQ1ba};R~;}SEfCM;hu8=6LuEEdrM~+(Do^E>VGLgJLny^* zHe=_!)ARHCnG$Bb0yYJ6Mrc8p8%?JyB6J%l1oay@F(abk&d|0@z6lpp_C%gSI~2}# zTPW@G<&B5>H(RW&RXej=!e?*cd;OPwN^}K`dW4dGu|cWM()Epg*N+)bMp5RRDHz!( zbaO>i(L6m)Wq+hWb!b85DQm?s&NfY*Pw=n5NK2`e*#9{V{m-75m4%J_f2JY!|J)O^ z|F8DMG5^8>8FX})F9-}-0)Ts8|=iLa^7caBUIa}|I^V6946HpRj7+$hoNFk|h z`&0c4|IN-t1R%Bht1u>vis{kO;aJt8y<%nr)sX-3iP`t@jz2>|_?;{+f9Km(OdccY zgK=YAcaLYI99oJvC!R;cpuOGo&g}#Vjfsi{!Pe!@;Eulj)?daduo;*XlM0%>$SnH5 zN@QS!o_=WlUms~2K5f6gmR+V4Zf-plQzBLVnn)vk&fdJZwh$ElKEEDC;sz}WC}s6~ z-w$)cdoZKcc!U*`uYfPsw?<$*oYOjb>@QuD7SF&7-2Ywc@8$k*eKPa5{NCDd|6TKAp4P@3X&FSUGTPP#<7UMMa7AqoFaoRXT1 z)`$KBQ&T2p1&>3yjUgIWA!MJyKBdgx^t4rz;axo5N3$F?>RAxH#kI{(Y;nBzn4K2-MLZ)DN2S1J6j>hk*XNexcXfcJsHM>DA1p>6`r_1L_mnHBCw0xl03eg>F3rzp(rQz&U6hM2331zVE6)SfgczId25T z1bsiw$}bSVU)RUQtD!O}GnY+1j%bWCqvdAV+c3BX1Uqns;6z{gVJlOrloY~P4z`X& zph;|O%PP7PHlp}m>#TSj4zm7gAMTN4LPL>;1f7s|7$eTzwsWml@Ls$BpqDye#F=X$ zC#93#Em)iNI*)FUITqz!KAVhs6Sm75JBVPdq>6V$o>Bz)0*h9b#|0=HUoUC7xJ~Sn zL{OZGCtrOG1BNf1FO_8d+TNoJT*e>zf6W*@hJ&YqKlYtXs&(yO)VFhWVi76Zn|NIt zXHN878EY8zabJm~;t__*E>^|n&mT}}C^J^(yso0S{sl&S!vyB{9I04-U0*`Y2q|Au zZH7!UdN}YCyi8w<-W*p02hq;S@AtVzL+kC*k97`mB(FV_d_1oQL zT&e8~F{L)p#uVyxeAS?lj3+7HI3dtvAwsVlG z=iQ~r-GwSf*$;adA%^k1wA#77FqbH`n7J}Cd^bVX%!VM+HwO=QvT(ey`BIor=H6yk z1d(C-;at(#c=Z>Jp&z#w^qEEk0T2}njBc`j2BRj;JxfsM)V0KDMQX{n6W7O=fa(Y1 zAeYdf+S#8z#qve&`?rmhDb~{Rxm#At7PX|!>sYOijLs}%`mFz277qn-^fA2=P6adm zeP`t6>ts>AkQhoF*)ZVcmq2mC4*Y9-DhjV;WQyR0B&9RXV-yG4OkR8<$_GH*L5)UxN|;p4Wb5iU zPd43)T|$TI^DD6swA}$rvrg@Y&CO? zRVylBtkj86l(8UvA&jM=DF|4Rdu_8o!)Z-}hlOdA(8TSPj}>=6NAocRl*#uF^GFgf zZ~}e0@!Z`u*I{5*e?DbC5+R%Lx#|i9k?qLZ*Ml!@xkBvAoLIzxaatB&sV{W)|C@?) zt}1n`LP_lWEh*<)ICI?d%Mp!^LfyUv;bfVvuvq~`Usa=TNLBzS^iN_tZ<5yz`3dvD zhyKloKow#{83EOg8ye)k3uea@%A4!nCh=HNOBEq3nT9S82(ku~8{8V#uF<8%6Vr@# znUL%a=I`j;&}v$Ad40slZCj?Hdg%>X*R%hF^J&D<1yIhbuMb$#0;lUAoFF^CRzw1& ziIN7H4HDF&r4aPP9DR^Br)jtwp1r`jH84U0CQY5u4Wm^Dy>e@5eG9}q#zm$_g^AzH z`?gp@J_h6y#?71t5dLvmEvGcCd>oZ~Dbf$0$QetD~4mIiGB(H!SP=sH=&k*R1evA7GOs?`f!kSkDQo8^o#(~oV*1FiKZk~y$ymJM(#q%6zptJ+|9?4-B6aHjWFNPgIFf^ zRS4mg&VkB`TiAo1)DaT(Rk$Z0$-y1xuP>Bzr@UaerWT?v6m*S>aI;I^l(P}Cif_vP zq#RH5O^58*lcI}o6~DZoSdNFh_TaGEU<>27QN94gmyE9&4q`U~7$$nMmKU{w%L3nue=X zKT%A&vF7Edf3t8^Ad<;j#^e0ObHKbIDO-ec&0=o{INebwRR;B(xlVQD4o4U`U}J@X zMF@UMd1oilbdce8(>`(U3|u5?IjO~vCpOq(@ja4-~Cbilj%nzx+ zW|+FA%7eGEa^!6OP|`IAsxBRL=vX|6MSK?Wz2bl8YI!yfr`pG%yM)`z{<;u_D8L+T zLM{RRO7NHB-(=a=^ICWC{l-6;j5-}2oLiD&2cqQtzRc%N)qysR@?g<`epdpz0*kyz zcMsTdd4oHe1;Pk}y-P3P434d7(%--`ngUFCf*v(dYqYlQceHcr2ZVE28mrs^~H9N3wk&{DOZ@&r4m;7p2l%Kn?#0GSlGKeLH zwPk-)xDYN}P9Lk3OX=xa5zL89U#2#gR3={|uChQ5Fb)`a-a12o$K9uQmu9gWUWvQS z1@c$Q?=@7~$QU~b>IH28zXt7XF=8V;!|SirZX0y`R(;AnNS518h??p-zoHzkLS)&sO){(mAC~MvvU@`u!Wje zye?%$Vpdv%>1xBS zk!hn<4b?Du3^Z6ThV-zeEhDCtvn|Uc#4ad+01qV9zqom~d*^jaT~`qU#iDD-3fm>1 zbEMnDl{9GjNB~WH28F^ziV1`PvvdE~7b-Wk4=Oz7tlYnfq34>NXVIM*zlUk)cfft# zNrb;QT((RtzwO2vbE4>7aMJiPqO+iNTSqk_^sW%Ow4%2?I68%FvFJHHTPN-ZDTP>W$GR zs~x-&r_amc|M||OKxP&dTFjYuj!VH$;79 zkO7WQ>G4J@?k0UXEF}UcqXLg-ga{z`QtK!t`Bns0%h*<- zN+}NYlndFD#-&veO7CcS#lB^S>>Bn zVsJfo!v#SUkpB0oIq$)QF3Ox-(viAIhDh3<1F~w!X!iHxv)=DY%h9D-&f~C3g|{yu zYG$!7RZy2~APa`Z-7h&EH1HX&L;vvw66{;a$-8adW`Sl#iJJa(^BJ4idNn2GSqMTE z4|$lF{x^7{V|?2?sFC3wLsbU?VLslk5Rb;Ka!PKE$4RGCjjgbPS!G}~xoL)GGiVCe z)Pu>eP1~?c0PB2GmgH(HkXx(hpK4#x8<9#&MGW06h_}J(aeUF@33ZZBGwH631YjO4 zu_ki;U{HUjPl2%Y_WRWxN>;tZA2uhENC>sK={{UxWw2E`tnUca5V{u1XYQ!`VAGM8 zFnJI^*r3|;q$&+{l3ByEhB8wN+*8)YR5V%J91a<2-%UfOVI?-a5u>}n*_-cz9!uxw zr4jtH^z@2S5L$VONP$cHa0_gq8Wm_TV77TSLyS;sW1ekFoT=Y3z1f3q$)ZzfO{BJ* zk5-V{79Fgfmc@|PwqM5{=jEwgK)oYxs@)oGmgd7x62(uf=W{C_o_QM&WQ}uqQ+yse ziF#r2bpZCgxGWT(LDv&&CZ=qeGnkLVN`HS!Vs3ajoK59a(%vy7u%U2~t&iXEBElUPh#ulGW=-TxM?e zzhUvY6fd(_fi9DsRz!N1|P0K}BxaO}d0>9rTBM9wx0zMjE z9;k_U7WB&v^9t(yIvh${(Ym^8(aR@VeNkpX8&t5;NtlI0Sxy4wi&ShpKJ!* zI(9CbBgkKMhE8t$s7#~=jvk(!$D*{H_C>KKoks9AuSQ`%C9YQj@0XK*L7}NhiN7qq^zCPR-k8Zbx3#70X9RMXe?S=lX}b59 zZ?*&~$SD`(U73GVE}k+CrlcmMal{Y3eK7bsGxU2wsc#8T*)Ui_IO{ZT1*y$$C$_a6 zpSCvxyK|EqVmd4zV0JB7iuF!8MV}V(v#&VnHSu4G>;JuxmjhYcy4UOqv=?qm)W!|~ zMxZle#Q1f7zc!tYZ5GhN_DR`@J%%J}^Bk-9CS&cVauZ=qLL#yL&LH1AEW zV}dRQ?XtJ_y@^o&`#4bOuXccfqUbE6eQ&CibmyYf&u{b7-c9_;SP8!d7y0Xjs_6g~ zjY-+O{F7IvwHl5khBC$2W56G4iQY~9EUOu>T4$^hu@Y!oxU}jY(-}s5FJlynA~Cd& zr;!5iYLit!wJ%dh|IxXcO$ViNls8P|)guCjUz{=$Q8LG1yNXVp#Mwp4@wTPQ?$E?_ zk}z>MB^BDAV_GZ-Edp9k6CWNCr>Ay20}*YAhxx`+i zL6;Q+)xObXvV?UgtkohT-a&!=&E%2=YFgc-Sr=>)67?nzFTsKV(gSrcMZh)F6*k8S zC^)zs28gafai`YnM`HlVlXGG?UMw?<(^*k;qmnNIZ_uUt^nH!p40&U~m7${{$7O&5 zOd*s=2?y4Hf}kZTWllv3alg>_?a{9qsG#qy4HM1nlnx4lkuq%h*0*!&3OK8xp|q2R zyHQ?jHlIw}gPvsd5J3K}B5SfF%?~y89~ss?il*ZvUX#l5g)0fki)q49{^kO?Jl}q3 zo$BWR=sDaI7{;j5aG9)7WvVqm%QS4FR!6SGQcc)BJ<7H~Mw+FVqU&V&tIUKZo*GC2 zO;8jn(5jVjzzRR6hD*2q5*#6J4~>_808VKFPSMC3DWib_rr|l{Gkc?krR)Hoykl_$ z+&1Oke_LXgx?bXrg&ohM;un+rU?wn-f})SdHTX(d{yKN%qh}P-v)<73v-=0ZEBt~c z#w7;un<5*hO|cK5#ID%JGM^+NuMNf|6{5q^EitSfTp|)P;wQ!nZ`|xFL`7_^ z>d)t2i0wb<*Tr$2VE=$8?B`k=b81NHHjRZvEFQSvK#IyQ5Ry$cwH2ID zs##?W{K$|rPK?#D=w)RS0}MK9gQOZU%0gqrHwqCcF*gWu>RZtO|=esZkp?)@r+_?g<3 zMS~i8eN>rYcrddyjz+YmH67f;IE#BhD_2DBEC3Ha_h3qbmsnww%ndfxdWz)KbCdbH zUK~umua^CTCWw*0b-CJkehMLm*=vOY5+4L6RZPR;9nY;4o^OJbPdD+eZmq3PAbh2k2xL@6HQoEim*G1 zM$+m$BbDg?DF2msGjI*R_^)dlwY z#>ADYboWO-_?RbLs7kf(oNU0+TVOtLNnUEa)@ zr{oPFG3kyx0-@F)YcEKbfv`EUg9i*|bLq_{4C}QQ>`Xoesl8M@h28|im18yFelbTR3vn{3h=-Dn)JlqC_CxbK&Kh2mTR zVNS#hVKV1a*a>)o=mLZr=~3*6rfaISDkarjv+w#X+6dT}HdGBH`zObv{Z`O{YD_A`7?lffbQ?XzVp}us zgU8tlTrZlljh0?CJD0?Q{-mV*0x-dR88hP=^zMd_lD(eYT*TZ&#*Q+O{CDa*ClAMl zU>kPD7f|@JHebWUokgh<2KgL~XOTm$3lLZ2!2_{zEE2{yx?2R4BO@@o%_LMK>s>N>xD-Wn$}cMV5fb`seRIIv09yPv?cE5MH^PjSCr92IgG0YoIBl zgpjQoXT&->?mpnlt_xQXf>~0B7d}Luw?8J$u!%;oyUt8v(&^~rECStjR?rw$dikoWYdF(LC3qHq)EM}YDuAcnc z5AB@>4Rt_cqf4o6)ez2?^-otGnX3Y+ET3?CZ;vSc5>Mw ztRV_)F}|VBn_Rz+`JSLAE?l($56J%+0lxP_n$(UH*S&g?Z1a`-4WwEGRh#+7z6m5R zb)mbBy-Z>aRE{W6@e`VFF`%j-;vMz?AZ4pOF+>L$13%t*qn8^U-nBJa$= zAGv3ztP9NkPjo~x;fClnGO50fC5bOLDjC{cBgCu*)bZ-T$KxWB(u$OW0%aU+xR)2` z0Mf~#E0>b?CjIL+m#Z2is3{97s>!0MUoZWL=F96hH3(yHTWFi9h)(Ok20#|r zaV3zO6ojdzDsJFkMUtz>N_+5|!$17#9ptn1^W(Lxrqo1q zgPyOiI&XQUjS1QLUU&Q2$COO$o5kqqktF3>I8{v5eYs1nCm~=NpT%TkV64kCx zY*q=){HtEAd|=Pxj>Un~_H675G=)?}|H(Yfy^eT?;@xFrw3m)wHZ<@W%5E!mpp=2w zt8_Au<2tupnGajq#o4}ds6=f+hfkdcA~uvnt1wHT(KY0w>3RJ9aq! zPmY~!o$2JwKgd0^s(THPG>u3gV9+eO+_Bxw&n1^mzb3QQrfuz%Q7ne^qn47FVsq8* z!TeLZOgip^HqOKqfM$%`YJONga|9;4 zOUV`z_mxoOai}bD$)cSlI}C#QJwC4>`On@i3gEEZnJjf=W!fcbo$w5_$(-_EQG5!2 z3bbh!i5w<;dl<$RtL$OF-=FF%jopMh)P<|I%?;Q}dMG!$#yQ0`+32ZhRSsj&+eaO4 zvFr3Mv&t$u#uJ(aePF~{!tH96kG(p7WWA)>GWSws0V)9u(QQ$4Jm8hs7M&P<%@uU* z!wYt+PTxD&T)6|TA`+AS%Zx|;t4Z07?XF7W{3;?3;Z7Q(>UaGXCEQhbD@^(JWgYIy za*aGzQ?ua8K49e-axa?B)aOk0L?kumG;GlMLQxZ6e7q{cmFZh`2!yn$99P`mPj#70 z&=RpfKS{t?4uxlrgCzoR+B&~ONT)RS->3rPi4cxeLRJD-9kWv8t|X^OvU23r7091r zfR(r1^?c}wLAsaCs=$JWY2DTmESzL%rnDHV*+}doq>E!IyH1NiPc>sSW(CzWEy2Ln zq}JAxYrCCRBQGxBPSAf0()w;K&>{?WZ)Ot(B&FIU2&PPsSWwM_?d1mO$nd$v5(ZP2 zfbhb36f-rFU%uy#HZgVlbVyvJakg~1^oh`P(u+%B3N2q?nFs{b)xsbO#Z;xt|43dN z5Jj%;>nhTW2F#fAZ<*Hk`2fqH>r1k!ykX(7W`!;ilGqZ_D{wI<0}V@mFu{}%(O7}_3BDhg zJ1Br#$cph3Qwd=OD-rjAxeKU|;f*TKs#l(vvLe!_wq31&z_;$+tv+(uHn$D5LPJtW z;Uw3aZ=}#+d2|-O>vtQvRxPc(UqrK^ArsA?s+8tkVQFl8zWUC(9iSTWA8uzpq>Z+e zS%xoojaR&l$L3W>DA^#2FG^Dx-QbWk!pIJA;>%y#B@ik!>2swRvwPn)k%0pQ0ZkG} zU6B$7M87={R#q}MQUw_nVHXNHL4pMp65~I#4R24uW z(`EZwP!>{8w{GX)xw<23!g`gh9cd1bkyZ4;>Rwu(8EfOWJ=f(d{(fQq?_^#;Wq z3pQFde<>pX(UHA&5$w^X1WPOw^&KF4Mh0S@n_N=>^jhs+mF$ovjM*u)=xRIhIATAh zvEl|#m2mR@UUA(ST&o)#c4BORE`1;yMh3;PcA~Z-Z2ZzfBs~j@o;yvVWhZj#pMUMB zC3cPaw;j2A9}2_$Xj0S0b1Lb*Z8K&`C7%fXFJd~SFPV&Yp+1*Q5w2#O0BF9a8VDgj zsfqLg2VTwHju2M9n?9?KZo{GkOF|?zl$G~~rBr6CJc6c!s8rK6$|_5T`_TI01_=xj zxQ<2y&%f|XA|hs3>kQMO$0q;;C|NAs?~vL~H>63Qdrr|5ZQ!>BwD~6~SGOQn;k91d zk=@<{0fWT$d08Jr0XPQOW!d)1@&bvZw(tybh!$`)ajrMyg0u04dt5B^i26SDK+{?% zz*uki<6=LmXOo5>J5r!jXwAPS z-Z*thtO~MIG)na%bP3W)5n`5fb}~tI4>91Vrx+05u&+Q!`9|!0vmxxEVWqK13Fh5& zXRjMkq5Ze~vK_96Q&W_+$fzEdr8=dw;=?y6Q!!}%pV^^+A1J-EXm<6qi-3b7 z{xyctCJdh2E!2aum91!n=lVI?dgbFwmDx8%hn1H=t_%_6O_0~+_i%iF+{q{cvxLpB zr^L1hAxX&p01{$j8V~hbQDGX%@nj5l2q-_Wsp~>+3chVhhz73y;pM$f2h;At34Iv} zP7JPpk3_&kFqM}_2o=w+MD%wX#`u%dUefxqEB#2_Qb7Syh@Z~~k;e#AE zAcm6JZOl=HZqX{0pM8)uK>|Xdd?qHgy4SG#g{jlu=V9@Ez4IbF-4HHmQ`qv*dp}j2 z&vT7($Z{?i{Ay&#oP#icx8SC4l$2!}TClw)Gfp<^e1h%@|+S)QubqM_T4ASD7M?Vew z`4uhwP_W8E-bw;J3VSQmBec2LiML470+MCnaM_LER@WcpTHOq=bcZ@UP=2~%(5xqb z%^{{|BFM{{O$prt63+n@XirJLJoa+3dcu%8MvIIR?qToCJYvO)CK?Y(>A5dw_uFy) zETvw5B@{#MyS@BJ}cBn8KJFZEBDJJlfe^QB(dH5{lxTd}Z&o`Cd38>HZ~{P&Qy zJ&CttSZ@ge^euy{k|=W#R8!u~8F|LS#pfpCje*|P1vq~d9BKLb&H9)QwgSkS5T}$D zg`_KV6=DO;#boDr$^%6DmoFZuGa1LDO3xZkgKaiKQVV5s=;I~tlS@}4VLBd(q@w_o zTq!0mQf7<+Hq=RCCgcQR$NTiEO@*|F52}9w^+I+1yFEAUR+&jTP|TV1F4rE=`a%YI zym!+Y2aaD%{WUYup0knj9tukrN07fds^Xaa#UDgF=0MOil^ z>lf#&nwdOnZ<*fA2ej6Tpl7KO?%UkFK9*Lzv4_!c$E9fG@ESJLr1h^j$fu6FGP@vE zNK?*>CiUM&+8o10KRxJ{KGt)nsc!n;3&}ovB9n@JeNGu5WH$OIvg%C7F!uevTk$L& zRq9sq35XN%=GM_&{sId;&uD&Tk+tGiys8qml3 z6Cfd@tzg2mw5qpv;ukZ?`7!7l0!`vYB7mQBtrhpd4Gk#+6(V@50IyNlYosXcn?!73 zI=^)Iz@d`O=iV@5qdbzLR)21EcgIa7S2*nJ)1AXG zf_olZA2x{~HWfi3Vl1sYgZA*bjTq8JcUQ=SZ9?WcqpM6K$Q?d32k@PU)=>B&c&w|$ zmMQ;kWyRA<(puFH+B?4I(C!yu65@@d&zXzoksD25j}0KmAT5FDHNPVIM-7&_ZV}RE3yT5l@9R(af;*m%8wsz3F0ZzUvMzzUvq=mUoO%SMLn)Lb zkv9g;xWRN-Q&GXP?hcWHj@2l-dOJ?;u)#Vgr@SKzrJLnE9=yQ-$*M-l+KkVM9r@Buy%P6w@UXRq)@g;6JASGT2x_B_ z`2hjBjwiP_CN=Mtl==H;>AC5?gn7LIZclGdQI7}Sd0x1BnlTdn)pc3y4IHBM>Z?(r zb{?N5f|$!>15z>Cw^|%-rSsS~1>WYMrz1>L&1{}P11voSaVQdIp4R536odqu*l{Lm z1xNTYp>ouPm9UJk844nrk}09j;Ol`!?a3VDQEi@{sli0p1jAyd4wYPpC;@-G|9!n3 zzqfU8P>NhmSNZ(|OONYCci937cr)==gqW+fH;2qfjtfvTFLYL~Pj47A*cs5&x|o2; zIFV3PObn^Ypx95EpWIzE&iMb`4X}IC}O3m@e4eKwTWtufEOH8 zJ0}?5#2N-M^ed8}-tIoXpLoNB>i1nnCfgSH^)Gw?Q@8A_T;Ozjbz7Mty%CPI<@Rr%R|8CoosIgdT{Jzy4alyu>BvW<|~KIJpsm=J`H06q~g5Lu7ANjB}l>XYm#M z%-3H!Az~z@(5~H$bJ<;8uR?hTxrj^+pyV~j{jDbIsQ+oa;?s~^T7!EPpuyjdO3)OG*m|; z`+c&d>9EEnw!Haii5^ZmESWBfElL5f5>D!5z}|<;%oTi$lyqbHqfnBq>+V%fCtJY% zK%f`#XXfhB@hRgC%S{eKAkrzHOjFYJF! zT+heZq~FVDwqKy`{X7`p(g4_+jQU#&Sgf=y!q=PLkG*C@)*D#u@iMJN@3fdeNpG_X zjNIjHdF5K28#m>vM-oaP3$5JKWk|%|qid8chwVupWD{D6B|Fl9>rHVu_t&r8lbapG zuGi5cbo#T@*&?EI#e+B5&fe7P&O25;Fk=iH@z2-V$5!#SuBVlS$ZFa9oct7j4Qln%c~QDzoqM*_k@qZ+V2hXXOhXFG9y2m8Bcb5 z_&KY?bn$rx@s@btL+DNzHQ(>2Ngqb&TygbYPYBzhSvodo_d3dI?7LEJ)8*R>0(eV_ zL$-`DGMPe)Ub<|%n}X}BkEC2&*igf}eJ#@Kcl`sN^RZ!D zpwe#yJlq#A`X$WSFH3k-`gtN?!AF8TH_l5qk z$+kc3TL{ud{T8BAkS_SwD<_7+9V#FDMW!yJqW?PKxX_t@)Sxg%+H0?|(^S_{R8!NE z-dUEUE?IB4?YY@O&l~oMdh42a2wjBG+N&ygPlb>?<*Yjoprmmm0oKn=!G6@xpvJH{ z`@23MhN(FeMSovGIrB>>r-o8tBeYU~qGhAJZUvF4X?17fX`^#TT^1!Jc;LFucG4wd zw&<*`6;S)HZT_wJUJb2ez*o30wsu@IMjH?v*f_@!NEtRVfkB*PuGfhv=1e4H#)(f!<-Ie%hI@zMWfVgDWVfIX>S z)(tXTYr_JuE4r9$Oizpw2OKdDc%q0o^$;FFBO_0aV3lW0 zIkQS9*`NwSyUW%ohUjZ^v`&G=rg$Me_&r`jzK?xV>H#5W=hx+hy#tNYl`9%JjF#kS0Yuc3EQwUz`ApTa=cBZa<*Ih0Wnn z`}2*lHr6UWN$P~_2oj@z!TZsLoG<;;S*8pn6eEHANkR`D7LSSzq&Uivs6`~8%*s}Q z1Kekkq#$0_O$3$W0&mx4aY%gCNGlNbi5xy%UM#AYLWyJ5B zAb>XP^lR0qb!dTHe_HVmK;O~yDLFUe@1N+6e$%O4GeF1!UdYB*)x^YjT-Klpb1}JU zwd#+~>zf5r0;VH}+@e6b^>K7CG7+=z0EPU*y(~|DfVjfsqAh6s1->5l1lWDmmDM9< z^O(Xadk!9rID`Zo&3K+P?U&E1zVUHZiv{J2rmL}mPi>%S_P+g=&Lfr9t5C0`CjCs< zeKwX|`KsI>-?dz$W%)og(62Exj^HmL*nOg@buEAED4!4b-$HeVQ{JJ4@Ww078o9q} zZw1D2u@R!$O)#xyj}jVf)4MZ%R^M7GwiF_k5(S8TwN(6VVq3(&}v?U>cSA zB&MVel2j^E*?bz6MKY;17wSXsC=)auCbjS}4`y1yYr?a__rF=cD4;D=%A&DWqz!b+ zMn04>aSntyYE@JT+e zOff`L5OKV_ygmHimfu5~u^s;-U!l+`lFytFUvvqQLD?(WfkPf6VL)5f?^>2&; z=kny~Dyy<%(*?nzoE*5dTSg!EU*KrFLN#DiltL2q*>Z9(v&CW+i%qubJ{b{6AoK{{p$`$D;am9~&8i+>;BpPv@KMTAJa^S}C zu%Ah~2G}#&y3{HfQukae)1=YQXtJ2-8ham*XG=+rF?HZg4Nn*yjRv1oEfYwZb=E?` znDq=YojnojMLlr&s8XRZ9^q9^)q2y<$$ zZheho9CDkz17+Sr;B231jS(&Z5FWn5k-n|MUMKTD4{4G)6%vZbG`A**K`ZTITYDp6CIY2 z1WK!@!e^KH*7P)?eg=`}CY0Q|DinD|0Mb+6Q>#He+UQ60qT7&z`j_a=!?}Ljw%d-I zs)L%Lp@wI*9;6H~xLk(bzs$}m8jfTcC$5|~?Bb;t4RCeWYYI&Ztt#J0186jppfQ&+yV$&M-wUQmN)RI0wXpys!LV2hbTP(1+-g732z7} z1lU{6ENpV#t`oa%(o z(?leFC-8wqr&AsQ-F#jA%L9JdG0MTiENfTc;Bj?zK7ZBfsF~YyHX07fNQNiLy6N4? zV`PaW=&^ap%0>|N!|tkWTQ7_u&??lbMf=O<%nI(k)Rxs}d3iinEfA@M{UN!>QBcpKH1CMzqj5>LKxGUQMGKGyCTl#rgO*X+G=k)NX>$yL!=d0BZ!66qm# zNhU3FF-{<^4jUw9aiON*Yc3ngW9r3A#3TAiR__AQwEi&9A>(6Eq0I*62lzrUky}X9 zp$7*JG{=ftYZ;B8_sOQWSM}N2rG+w|RPAR0E##o-N;BEzT6>@5H!3a| z%wm<_Z80LNDeUj@uz$N9O52mI5;g_ILV}zoji-c*Ov=p%?@gUg97j!+ioan9VCt>g zAe4Ae53Tvdy($<`1e(6ZjZ0ynCM8FV@A=5k?}>Jt`BSA+BcJ((z4!WYYWVU_SgMyq_TPKoe?-5Zy^r-jdmrb2i+-H{ zN6}B$VRH=K|6e^3hF5`(O&Y7Hb9h30vAo{Piq=R`1130q9KAcaimXcGw)nSjfa`1~ zuC%sFlWsvDhL_YO_Ds%&M~@3dFBo#6aA?5gZu9c|zkKoAB|P!|#d$_aHAaZ%`gIyl zL4F*`P|AK+2ww6!Il_dgQ8pwxBquyMP07FSDf5qnjxd+SIb?h(4JJGhgkXgYN3T>} zudaj(@5;BzsZ}%SfAY!AGI|rY3c4Rx})AVJ4=}f#WL(LL{bX^ekbx zBs|E^W8$0z^;z^%Bo zXt?QC9ItVqh$NiP6(gCfc>cxg9*Q&=gG$MaonFw_!XU-4Ae;1jvHYe+b&UA7Sd8`0 z`WhahFM&8nf<2uUE%smkxqj9osS)w7!x(3kg2|l*8#((t|CK-0QC%D>*)qj)mf6%` zA^~&T;H$!p6wYn$d^CzHUn-CKPj zrlh_ONhk(m**Npldr>7%N|xThZU(PM`&N4(atJXmOq(pQdg$1$8Mn+4v2>gmq%J#5 zN0yZmYX&Q-9wSUcG9H;T8Nt$u<89s!YneDvZ}-J7eGyL%6LYx4?g$C&yp7nLT%1HE zOW*N!W^T;(=ohDh)5`$}8?3(4N`Yq$=L}Vj25XseK*wezzS&MhG6K}*5TSEUA2Y_#gc zX{IilPkG7|RTxs1D71CXt)B^q{ZlJt!5AdO7+w@%uWclV118CUGAzK`5c>RLEheZ& zO_qW5-mN7P=vfr9V#vCZdQFsjKVq8X%gef)Yr!C1*vy|C8oMN!mm*K$@}1tgM_WxCj= zw<&j!+NETaY?%#_5K6&{I5DE-ScidpG~Z=ryp#~d%U(7(<1`PASRR@@-p$j(K`DHS zlrtGILATNnrT}38u9c*s{cxDiO5#J^Zwk;LdiK|2A-RG>@z93r(?tp(8V9ext*F7c zQIn04(zibrxv(2gD=4t zSe1eZ)VyIt4^BuvzkP-h^d;J6Y85G>5&F<_I~PuIjPEA9tkdcB;WLqDKX$3 zF9}1i$1qAacU)}Ne-$=mj%5-qM3TrkyyOd&DwIWWD-3ZiEa$-gH-a&7v)OgGT@RsU zVP=IQFqJ!kzN-UObNAipK61ySyGCMOnE!qJ2XmC#1&}0~#vC^Hra)kUsN^rWMDv2o z0@;fUtSorLx3Vm?`p2JsIgNBL3_sB4@8t*bl#C+xeV%u5ZU}^k$HWerf7y`o02B0I zlfkpqbJi0jlmXu`AUrk~La@b7TB+4@+kYwA<)*fzECD|nDu=Tpb`K)frl)Nnf$X4s z_jw4Dcs$#+CR!6<*W6A7&EkaMNWBf?{25#yK9^s@Vp|eGAxvLFjUikF)6r%<)B4$h zOY^4Sd#nW^y)gs(Oh!XdrP>cgJ~bDrc59mrwinHB@%iFBF!grz_AiSbQkcnMSkE3j z!h__;d>g%BqakoFm33^^GrRd1BR2PC@IqE8kTj)-z+@8ptuh$>U_QqaI*7gnM+ywA)7F3i_pxsJ4(Xt#BLVc%u=(IZ4CfgMx0P*R^qYjt2PC zZV|Wz7WBM9!|u@^uZg_Y1pGlo3Ey<7T-w)W;=4?U0aYNl9sg1W@Zr^06?eD$yE=p4v0>35!DnkA^N;hg>+=skO#w(>O1}M#^W8d%56~1wWp=k67+ouE z9D%UGE-Ki0EHyl2=HpUdUF$|QfyhP{;kK$ouV_MGbyR#Hf(NrkQClp4&j|(Abnrx) zy=Q$aKTCXL1YO`CS5!mcp>`Qzq8d0&$EU3Y6yw0?z+^hW5%0W zLRHLZbv*01HGGes*v^##QHjl3ir!q`9_G(;pfjEXJDmlsCZnuIWb9V0!!x< zu^1l|O&UhM$PE3g_Va@!iQuu@62O^biyr(+4idS3Z)-wO5<|oE1i0&I@?&*^Ve(M^ zLqTYZ$4+^xk9&v5*DIF^0n}@%o$FrAVZ%>&j+8Ajfn6Qj2;p!8FA6DpfR*bv z`vNFok@q*A_P_7p&5y#Ogoj<{p2Ix6?1&~q(M(Zawaf$1e(N^dgAJmtJ01#ClMGNv zrFr8#psmwZscqyf7|Tv}FwtyLezP*2lL?t(cct)m%S0X?u7sy&ormgg8*DB1 z+%%L@c>CMyn(JW~>jfJDj`5z;5*wLs(mNkHZjEL|6IqHFj!*k$J$mRb9d$nyS(xN! z2t8as4qu0QL7wH2WI(-s)dQGsN-Ejp9xIH(hb%Q0`HTdoqVORE=ej#*CM|9_@5w?P zfL@YZMEenlpZ?nME-9yvW1wG#lOfRkl~mvrGB(zMraV))9|J9U zVW-bfXFlYfxO}!xPzZN!W!O1FH!3l}0;6#s{FUglmM>x=)Wd-R0)|U^)wZ_CPxuM8 zGl`6m?GA<>kCsk;cDFH1+>kOz6Fv32yDtPLMi=^SF}Aa_;u#Jo1ZT5!!AsTA(WpKx zcv)z6rIzYqE|VR50W#jfXeo!&JeMFh*a*8g4h6nKzT$^@wR@8y?nXQ#?(;X>RoEl* zw&EyO8hwy~HIKCyxqfv@Bv}~&p~JKA+5uNlc-RL$VJKSRI0$#6*V>@yac7UQcDFmj zh9Z0M9uZQ zl7m=k@PDD$TtSaC5>m>7n|`>Z?ds1v`MUD9WNHgCJ!^;d?(SWguDkdyPrll;f544p zs3N^?$Edb-%Q881$~^NcuV|NY=7m|`X94GSLg^oGIzO?^qP>6Yu*XjJ)1mfd+4bC@ ztM$pBnkiyApJeSbF?!+S3oWj_qR@+0oALajM%Ud`-GvS~kRRN2Yf^9AZ-klEbOKpx z{Z2C3#(ub;N=}owj&<2$ErSq22L9Q>=chLJctz}hD%gZv!6+ohiK&BVC_C0gy5rTV}UaU6HGsgLGKKUXvUD>R;Zy-5Me~WHudxshqye-8~KL zuxXNMBaGU1^k#GUGwJ+?038Z|yh`F>)G_wYczZt?B1SVJzfWG|obyXhovXIpnU~^` z4z;(b37yx1O`B=Y&Dv$t&SrEFu+rYeu%7Qr;5Xybwfils`8{zQQ(lQpp_21Lm-{OH zHQEk^kKwKUj&-YbcIpk6+gB26Tg@27cF&HDpLm;uT?{huL5IU%m#zWK0o9vW#?`^< zre)W;^@rYz9Pve56muTw=)v5FQn+$}&R&8CAXC1%mD-*yOBK)BwZraW=8z}WQ*qp8 z^weMb+wrOn0FB|GE^&F2Kj-l=(cZPuWc`UK3>hscS36Apl~Kl)wNz0M06DPoJr(#9d~D5NcB$`b0w9#sT(VMq_)hZ8oH9|fdvR!jR-~sSWtyWJT8PZZyfq#;3>d=Vk1>Z? z6WzbL)XqnCrf7hanM@Yn+%z6xzU>ocVVGOq>xn$;g)pJhTyB%6Af)@8c35?ULKa>h69C4H(mf}sm9dS$7u?udZ}1pKoo^_@)A5PWaAlADwj2nZ{Q z?woza&Pernf~grCBa@>AD8glQd%Zj?KWA6xpYfj-P=as@(Dwncm~^A)2! z0nd|eL7gZ)DXmh}>Gc@Rohzx{$xsvI$FJ7QdvJ!GikoPD0u3?fqrunOByg01VqzCLGG%Vo#0+ zQ_MlI5g2+=ouWbQ=0V%RU+bc5tMOnRsS>AsKVT6Kk62i%J3{fR9j+ zph4t-O*>vSJr@i<3Lp-cFc=1hdkd32yMk8rmH6`*FD#$NgN|QamklBv+7B<}38mSv z_T*jtfSJmsFw4F`3}~l@1^NVQ?;Z+1x~fkO7KgtDeYe`hG{|59CROd({988j5$6qo z15@dNjiqNV1IRg0#P)>fSdX9D<<_?K0$O6VeQ}8I)nKo&IsL=$j5c@kqCMoGz+SU? z>y{nGb)*t0a;_2S)9!Wu(oQb!nv6D4Z*>b`+mxqr$c4BS;&nrF)gjqHns$T(^e4PG zy)OQnsM1a?W0`S&_toxd?Ngx4ls=v1i-7-4n;i+D2-NyTTzhpVn45R1L+%jVa#Z z@&IUbE_aGU8FbC;;GYH|aSQu^(NdNuk+j8&h$oo^D#;avU=qg$+XWY~3j|WgL%}C= zE=oD3;8rC+!jO_b<9XcvkO_vMP#!9@;XQ!x&>89?ZVzd39&bBr&QJTE$QRYE9Q5!Slx#V~{LV;MqdjW0uJf zXd9JB+7E$@=T?>rK|u>Py$Fd3WV$coAv2bPN`sSCF%`5>gk%ziq8~hxa5W{6;*IP` z1nVJ+Q${pSmz^?607x?7tHN-X-MDqySUxo5VCl$^iYV~i^x#L4=t=c&FLF!r7WRp= zf^2n_k)@>O_6Ujuzm9|)-&$N04=_pxZN`UplvXMMj3nrqJtS-B55Yj=JkvgcUt6lp zys_Z#9dCHMuE$UyQ*Q_a@Xn&4xht!PDYGOx@A+a*>hOO%k}Ky4SG6*#oU2gFU?<4s zKF@PAd0Nbxy7MQx!HAIcz$X}uM%2-3-|hH8ausvoVcZL5@~OOjiiKPCEl^6@{t3h4 zvX*8fZM8U85@B{@f-VYS;)1{hDMMW0e)ND7zp`eJ@??y z(b%vVd*so`c(+9XlvslHi}qkWzJ3;H<|>@4hgh=D(Lpcx zfdpB_a3-O0%?y##12pzb@GeqIwVyB7v!+ke!d!feQ(j_|+N&0A>&vYw_J^p*m&gk0 zR5Ac-CJNPB*V@m3#PHDm&E5egf$ZLb8GT~+%Id$WI^amiZT$EPaqB3O!1D+DuF!b} zd-r10V8M|yOUX(ZOEAql@UH*s;Zfm{eoK|;VoBA4Pb>60B=2E1S6Ra`IeD^imtQ*! zC;W~!p&@3a(y*3jRI&wyUP*JlgIqBJzVXgNRmxDvnEHwmYl)BS?)f4>^b;Z@&!nSf z{f2PRzDjnPziFnBOIm_@QrHz8&yv}ziPw5)9dfhLbYSV9@7vJiQOmu$bt5+HX$ZSa zkr8L5=WoICl9P~`!ASWDH4OzVv)L=lFz0W#>D|nRRNjmG=J0(6iEv7=W<6~#%ofC{ zQNN4XVU>7;?tcJRFAhj{NW?=g&VX2MXc9lX3oAlJ*ONHLE_huHUMysprM@g>-e9p| z_w@js(-T6Ld84dk1-j>a+6tXQ{nt`hJ!;Yhlg*a1`+2S2vo4bG&?GNb*6CZUw+Er& zR;}ekk7~;=cE6oZo~6$?{ickmIcG88if}S#(jmDVIarz#2h{CmD}nP_<8c$l8hS8W z4O#6mIP>==YZxfU<)XbfBhLn5S;w_DDKImN!So2cvAA^z-nxk3st?=DFrF6%QvZU8B1@BB`rVzGaRjc@M{EkEOdZB@tMaR*1n zG1$98qRDsBfXuG&G;x4e1dhAVU$-yNW{0c$eSFzFJMNU(H=6c8|vwv^ypfn>5?u& zZ1^=0h?dl{Oxv%ZzGYqYoy7U(E(QtErys>a=<>Xco z3ixK_J13hJxMYYP2HFS1hL+~F@^vT~!Gs*(WQGQ)*g08ed>Lhk5<|PS-+9IT1`}5% zgQJXsyit@>eTnoX=PYF?V=iHE@Y`=jTs~FV2AUmO=eqS{)eDUJXgn^Bo|9j?C!r9F6P8{Bbx zIWxs8=z<6v79x*Lq{VQo34qycY+W_oTUi9(%L0uoNQo|X=!u8&(nEIf!rfOXFYSJ- zMF{#*|J#`Xh2ViZk;7#D45v-jCHF*Es7 zx^9AS8!+PsEOx79i$UFvAM6INz6HY`>scqpZIwD)*Lu-gGcA3b`V$HsW#jS4gLFog zd-<2&P@SY0N=x-E?C;zyhiFMIjmskCj5&?5KoF#yA5Brxy*%!#Q_hId?^#xMt{vy? zAdUE~QH>i0VrImo!5;m|gI5*q5@?3*9G*}l@L8^$?Z52&!i-j%q<{@m^bryuNpt)n zwg7R^TW0JH=&N)?aS58gy%&Fb-ctAifo^Uc8*o_HA5ybP z#;{HwcQYp#Wf6@)SaaaxdT>Ta5AGXmwZ9qGTgm>0J zW;mHCr3S_C=H^u!Y8`(*r5}HoKMq%hV5s|haB806F8@v^UTxE(@cOz2mGSaEqm~m1 zN9Gf~8ze+M9c;uKhqenWrkwt0Zy%-Z8Eij(uohDt!(UdK2Oo+|)z`WKk& z-(Mf7hU3@D*E|H+AMF)O_psg^9v%>kYf(E3aOec;&mhLocz!Ufhn;*Pv497Fm6BI^ zDO0{#;X^SINq0Go=Jn2V$z&V|7I~W?&<~SeeG67=;hXees zHo->@j3zy@oa@ps{0H-YfGn++LjPL<{|^de|9_3$ z9RH01IsR8DFjnhdWA}fSoeLho)FPoyf~HLJO*C6uOsDj;cV^PMQ-h!sh9STJKz~dL z9>CwvuJgDBnB0zuBB7>b-1GT-J0bnS97TdKe-?i9Y~}sFbHLq)ByqQLKOKdR;sd`| zt#G!VtHtM7fpYH$fJF<;ne75@%=G z+^gsJM}Hrd#y3|?f{;#|44>8aUzCRJU_n-tGpb7G=yJ1Ol4x()tyGOAz{EF~tYBd& z;z=jhv9B_yi1KTJzKM23t?A;!WM6&~APuW+Io_|zse^?u)w!+wMqSmVS``_1F2lbI zRT06GY{@tLkl|B96hyA+EVE7*cGZ6x(MT2i_k%cJ8{BkLy}b79$_nO+!((T~QOdWK zbi`v6gcEIG?t(zeX;W1OomKbYo3N6y%&=n1xT4Fg>DXSc_6%#|{?TpEcx*YGY>Zxx zj7Fu{H~Ev7MH`&!bjRLer#QD2BHY+xU$ti_=t=s(0Ud3o4!&3Pqw|B;S}<%7u)u{jxyzUH#U&i#3o=N<P{iOSsBcT7BZ-|+;Y-N< zz%z+r7xz6W$Pp=#g=K>=MD9^zSlEgaTx7}R6DO+kD=8>kg7&F7zBu1lr{n|@UO<9? zddYkOiAzP}FAv~F7CBMpXse%P79hhYW-w(7ZlU$8%1CHK?VLlJJT^c}G;OkLd_PeK zLuZuvb$pmUrJo)FfPS&vUfJA!VF}Qw8PZ*M)bYIqpD!qO*{^?A;W^b)hz%p0cX(YN$?XQ2Wtk z37AA#dvH{48SvF_>t}Ee+<^8F>*Pa4jz^7V!Y6AyfG%kR)-Yms(=I4Q+k3~_9cQM* z`_s;|B9E95|LnCZhM<#g0-;R$~NfuTz4SE7~pmZAl zR&vYm^8Z|{j@~} zL>o6OLO|l0v4qgT2#4AP3=NdH(G%&Gz5Yi=p7?SC>Q! z*dqU=b%7RuA4SBR>2Aw1;BJQk?7IjYnYyiJzPd7lUXpVVqS0uUo>O20KYDI?&>dLq!>CTlCY_ zK89_#V#~ZK6(uktn9PzVb}d99UER9dMvK&X+!$%sK-l8;bE{SMXw!&-4rm5{4^S(t zfO1&_8Nw{oO=7S6)kk?IcD28s>OC)lsr{Qo1d23iN-&$m3cI2FjhS}y*(&&Lp!0UT zZNG#6Ae$x-C^?<&pM5h|h%e;u9M4^o-F&t}+3351lmI$`=rk%g8erfA9A{$qVL6Gp z^+HD(8f2@k_UKcXNo;Vrpie(bzpLl_=~Ji)W55oac>2|x`iKovpQ05;TvdjD&YnV1 z03Y-YSy`Jg!MsIM0iZT81B_CX6F{S+vm#RbL-AqTPfFK8gJo_-!&rG_o3EYZW`44!bddfC-_srt;= zDd8T|C76%GlX9OK-ChN?A!`0jq`X?9H>H(VF+*<4?S6&Vb6?8K7&k^z6|j<#8=q|# zkkqZrxJCKVdL})wma@x4PcNirpis5}Lv2(#(zv^`-Q`9gg755j(72*x3Mn>aW@n2t#u{OEp1NtJ ztby-W(WN(LQ-{D2NNj}pY{qwNFddn@q^S=CIpKub)QIgOiQ>_X^%^p@q}<03rWOTH zx9P-2F;H4l)0K$_ACP87?3|Y^BUM1+0XjdT9`Ipdb=9n}vKS)zr=_kU@=v!EhEs4J zyxS~{2gLZ$%}d|n()QIn&=Cjwrfeje;-!3*E1l<#$%%TOb3EP`;X-KFhWrby9B8q+GasyfH|5fB-Z zI)8s>zx(%xca0A}5_oEwdek-6VinbdJF`!Ysn?9ow?nVvDS-a1@XA_~N7tjX+E1fh zKM}e3ON~R1*X!sic4S85kYcT%tvqB|nmH0&))TfuLuj|8^6~?G%S`e6SO$sxt5y-q-Rj+P! zl7SjeeCK#z7U%8@ZZWD7%16x?>f&cf<8Ng-iYiD`e(NsCyu>VEmx3is5a&R=CwseL z;Oc^kn8UjP_xAnUSPXQ>f`z16&r!9aFuI1->LE5GwOC$tfhW3*7BM7~3^m%u{0MgN zWWoLdMOs$2f!Zw?o4L--w|*4P4MB6u?W=uE6Qm?z$-#ct-{+V)z2FlvlZJ5&^k$)- zLrABUm%67F1i7R$s^6Lhq~4i&4JWKBqiMc6%Jq{jWiZE!$3 ziNa%zq_9bs=P4Ds@p;c>XCzxQJISXw$5Lg}E=dc{B?gD+6C7!(#TnCO^9C;;3sgE_ z$ZtKomH4=>p|9)H$@lyI;{7qGi2Q)`^HmQ%s)*%Hk(9}r4|`Ze4S(Pu7;m{^iXvz7 zS$Bz$mOXbni^@~HoBEYwGkIg6sCPk>ie0AEY|_z<%q(tsYVNnr`Y#I@mTyk8qk6WBUKRHLE}g+ z*fb?-R#(b}i?rZg?2k3^9qQ1Zmd#C^gIkkc!}MJC0~_{qtQ^TK*~Y!au* zMvP`Bcm8R!F`jH4XhT*-=BWWTgs2j)5m%19nP019kvF*)cI+BDMYP^xT;deFH^*Rs z?GD^+Txw%OO4j6sxJ@RU9t>r1Ao!myfE9{>?BTA9Eq6KGNa5Lz>(QAlPO2SfFJi|v z0l{qpS8!HdZT685LAq~h<*iBR$bz*s%B;cwT{uYcK^-=HI71M#*`>G-TKrtB$l~t2 z5B8q1x_aZ5s@~q6M?5jQmh!51a7K)`AwdU5_LqgV#R(vtTP0v`aJ2f-J-Bfyl0h++ z<=Di*bzl$ddy?{NDTymIPU1z%LZ2XRh+38JRZ|3|jpJ-8XFl*DGi#gQC7;QV^927w zLHu&HT5#r`0l@bvr;fbY)Q+M0k-xoqvzfkP1#U1e*QKFS!2ZCyKEp5(F;G1pK|bxL z0DGo*PSoyt1!NtRXKgOl#@O{=0+IcDO_L)TQq9+;GNXN3j7>wk{$lQwm--}|A;OH~jf!lBdOX5W6>YM(SoCogPSN5Rxs_!3 zyaQ45moT6Qeiu|vFU+{`!9J{A?QXgYP6by9*i+CP)&Vb}as`Y<_OL%UdR)X_9W9s< zzzd4WbD8#A9QdP<2|EfH2ff7Qj>eR^qFz zY_lHqqG~p~m4?wRCld+OWj0xrERJ1Tt5V4y*c%d!)a`8DYAS zgW;-M&61Y;Xfwi>2D&hFmNrYXg$`Pf9#-)LCrM>GfP!23_vx6@6MvdCAX%J8;oWk*`rj?(L4 zt^#tGI+7#l1=w{yzqrT9clJwz$-p`(E`7UBWbYGpttEepTl4q?BFt;lBl(aw#vjl{ zbovz~HrT7emzxEO_vs-P1mqca(p1_Hjy}JtF+p7`daN0Tl*Zv341EvpXI76;b{L+6 zXtMpaG76$tNpv5bSUf+9j0twd+RAOope}u#{7=yDH-3IMiQ@k{Dg5VD@SmB) z4dl8W?i0w*wY}sFEFf7Y^)|r9iTUL6f3FJR`aKK=dJ+ClyT><2*RB`a&lH93?hnr) zmGrz{>K%`MdbzYi0>e91A*on?&7Hi3;hE`9^s&VDE!_A1er+0GIBtQiGGLA4%o>dw z{r-yq14-eiKaceKJ};*G{}N7DQP``^Jh1HrsfAikz1!DOW=r1rQ6~b?HNZIo7a3}O zuR@R5pD)+0b-(n)46%nJ+W?VTPg8HF%i)jF&2y(e9L1?8HVp<7?M%E99O`1Vt&5vz z@yj<2k6A-@zqspro-e8rd(>NJ6#Dzv^p-t9X}8qA=H29X+O#0rS>qoG<1*YJuc#d6 zaDMEyBN0`4-23(v6U+^-FmzRGtj`C+MR(QR+ie?PPcP=q!0K`uSUxOizCH%Ih!Hi? z%oAVC6JVM8_{NtyEMKDvxmipZ$7d?lx4mL%O?NT2QSB&#pa>v#&2WiJ+Pd%M!$Tv$ zy2&3mm9Ws2OoGmq^a!YF2n+SN;;dIHok573Jg^-#4f;Bg0=XO(B{7F} zOm29HDAGG926mwM+|S^tNbH{USP8>GYHBL7Y+E4mEkCMS1+#?&6vkBv$CZ08}>>_3lFLo9zTU3^L6@=}}Ya#VOrP$Xs@q zc2wI{Wy#RFN2C*TItI9NgLK%e!!)q}#QkipKNf(c++96frT35%adRz9Ue3V_$|7dB7Ls(AbfyQzk^sXfywNyRL#YH6yu7z$jztSBWTe{&P7}7L_~{0H!ew=bNDHDFIx_0Ii6A z7fH@JLe?q{a=PD$Nv%f?CGwivQuDIc3bDu3`pHaSErzpy5HOBqGJG^MN!zjwU}pYs ziz7t=ikR0gh%IT2qL8s)PanZ2c0WTK^1K8A(Zcw8ft12~)DMV)@WnT|YDd=&auC&Q z2Gt;VByqcAzii||MJU#+p^4}gbq%=RyoPL&>p)}Xj}GL;N`-@lu`X6><*)I6dj=BK zU&1_M;Q75Yt8;!`@**tZ z7roCws!)gWJIi z2T*@*nOCBU2qkITSDVx{fh*G~JncNVmR|S>g_Adgv8Qb$THJHfFt9>sKI&2+)h#Sf zObT6t1@CK;nD-h4*|Mp+M2Et;PAl2AAYy@Z2WK@sG2mJS2qHAZc7 zI7>;w07E!ZMj>}@Yp2ci1V@4tyirLIAp5gihYbV|Lpu-cym=Kgp!LvQ5RK*_V&l?S zMQjK`#0t;QnNkICXm#MqbHYy|K@h%03(XeRw#9q>iPYgx%#y4Ax%gaK53jzIzeVRn zXB@9urcE7|P&zKd%-N08-q$%gRKxr%YR6LC!M(uVST1DelkC^3zAzM?L|x*i`lTa~ zSe{FkyJwkigN4Yh3!WppS|VrJ(Ovz0?& z1mu}%Eo?+v!yLW|bA8L&$xAIKt3?AP@pWPm?ot3ARRKpt4M^w0B&3NZeb)#0k{dC? zWZkuQwv8{MXcapMJOGmYvv1V%^&g~fr|0uj;t6q1cO7&8A%f4&P(Qp3~c@Qks@IxZGTuTCLC zy1hF~1~Cmw0B*^5)fpFw-lx|>@~WbIWPmwg9_nF9n-k@(-KO7}xiSK!nPi6cKwye_ zwr>rn%fkQwFROo~0u_+$z39HPOfVtj*P!E-nVlOgFqL}Y$4syp zvkYHCF|{U&-bAK%j5J10IXtPfUCim zE)@mX=oeZgp6j_|G!@y#=#ppAML8V)%Dk+s@L*#97C`*WmOWd~`d?(pp+Q#2SVF!6 z3mG=ms?3AWCp!VZIY)idFf+_y@>AT1uy*Ax1nWrJhK75g`;xCZrQiK8^$*K@~bd3ibQ8_<4P-3}2CeiIt`kp&j=9m*sJz+~~mhr*{T zTC?S7AkiYAO<^^Lhh7T8cZvN@nUCJII}EIkfck+y9&a@3&K_x7a)G6?03qAN7*roOs~E*f4+E1 zeKXU2M6FUg%KWO*j@3=pvx{ySlFpp@vl;)@OL;8Mk1+CHPJol+`G$CwlfToC{WGIj zXd)1kI24;@lB4VEQ7I>sA!K-Ivbr)HS5VGCszHSl6C@IbOhrhld*>(Wr5C zfQ6Lfo&&ZC`L8GsXD1@lW090}_yQ#uN+(YMKOD;h5i$p9ZtHg;Fis*Qq-J)v6Xgk) zFuUTiI<%D&f~dF0hO%?0nD6C#A`m`2>QZ72(#AFQ*f>3llU}vqUW(TPRCvo<%;Gf> z#WQQOFqA%D+&sV4siC5T@7ftt90f;Ts|b-0pCcc-(rj%&$zl{ZoU}EfYy7bbJ@{$E zh?VwqQ6T(+g;;%U`&iV9hBnc>kcfC#yWr%R9-K4*2}<52X~MYdfQX#$NvdQd%Ubdt09p^yc% z2ZvF@RNrT3r{7Q0Y@CSAG6iLbSoFC%CB~D&;NY!7T?bND46qQ5YX%Op=qOGO?$U!c93!W#ER^hCq)w}!Jqfvk4U?J=X{UoZv5KF7><ZBPFICk9*0gg_sfV_qYBn9i3iXM@QyGjTpa(B(t>Vb;=ZqLtOCq zCCAE}pZ&o7Rjzmzc;r-!aX>)Co?Gi-H4Zl3Hk2&nflMG-2%d54;hC7*O(03Aa-Q0K-uA+q$ns61s209)_+>-ldjRs6Op`-tb7Lom42}7s}UWygJhv#4lfe zSI59ZRe#r)Nefn^PmU(qmc$llv(EWWIteRR90d$JiN!WB6&+F3551o)gKEk&GZA7r z&_oFy1Z#h@(@@%#-}?dT;A%g z{CeLPUooqd^RaYkv?!HOM)|_rH@d09(M`Wp!y}A9Ez|b=%&U|8{?UEld&ji3|CZwa zL-#rUpA_f(Z@SOOa}+C6HPaWr3!Zr*GcPAn<1}29YF8~gY-%2VZ%vAh z0;L zFMY99OIzo*!q)VeC;v=;M?O+qd_MJ3xsSNj%kSh)`*m`aesLkX!g5Gk{1w0A(>{)U zW^lBe;%HsslDChZ)-qeO$xYWZZmFK0l>Y3jY-Y2a$h(-;s#)aH-LoR8DHd&8r$!U& zh#WH-?qBc*AB;uxR7J#ZK^NU%(InX_B2XgdTI}ZE<+PvRJ}qZwA4?`QKtM$KI6jZn z`uU?OjA*#ai%(r88dbeX9?VQ#U2CYD*s7s!+vxM|r`^)N{F`;!n)cNx@t5QNOL1yk z%ri*8GRf&1Lm0NDjNZ*GE+Y)i1@oCj{hQ zZI{}^DExyT*S93jZf?C88UA^yQ@>@&n4J4hXkxj$fKW!uB#8~=2(b=jNs1wu!x*7( zPrU1*MnD!(L$iStM|x>Z|WpBcrY zzS3d|F`45(8egJur215F3=xacQvpq-;K9yP@)P*uuR4qrh@`?|w2{7Fc>+DBM9o=o zqM&K7d<3^GlTm{kb`5x?ioKSRYD&I2BBRTa8Yo`m?d<0C{v2H#o~4K+YHy6rT&8uDe1DTf&h8tL(=yGcThbsWN2dEC*ec4)hpkIN^;oHCVRTHv^=L5g$ zZkxxIO(m{;O1m*2o9;-bhp?7|4mD4iXNCAx_?q=A%eNdmz_dW+>%Amq4xv4ULqcbd zqns;wh7BjHN~Z6!EXePQ0IEJqjfOKofLIY#+IuWy9sR;)n>@GkMe=k(XySlgnh_y z=_5gR^Q3OhjM$*j_IV0X;z+~>faoad<>bFx;;#j$$JvR5OORt*s{SmTjRxJF<9P6? z>Bjh?KZ=Oo*3C#+BbXD@MZ*Y*Qpe6VF&O$mMwSma>Y{TcN?Jm8imK=fg2Wc&v2G2L zF9B(yITNtR=J>D!$KZ}VU%P1k28)|tV5=BW#9iaBG0>;GLB)Y>ljW?chwQytgDHyk z2^2y8$g)K=%@J9or{SoqEMRrOAU~QZli)`oTg1LQ*?xWNB~z1>PH)dGS_A9cV~iYFZoRYgay!7Qt=nnpV=uwzH}!r4o=$W=QLe zh$R{SleWCP=iw{}g9EIsByeinO z{-Cc_>}MDK8=a?7jz1|jjN7iV1_r}|vg%RWJ)o$)Kwdlwef;&U%id%efg_qqM>r%h z1=&b!L1k09x3*03d3Fey&ts2Kc|5-lhoeFrI6~k!>qiU*_ylBVmkm%8`6 z?dJRdUQM*B+R}{_1eUlVVpIqDsRUPZu%x2kkYQmxo{yJ4abjEkC9z#z?{5VAw91cv z4fI%+(DdlB5(G4w&Cl z*CLu~=A2!0@3*$ZFs)S=SfdMfB2NR%y;>*(^$7KN^KrG>2JQ9ENHnmyH`Ux)7~c)t zLyUecyDnKwb{DkChblY{r~lHm3sHGr`@N3cW#8l^36#Bw)ny*Ol4u2kyBgxQ#Xb<4 zS8w=pa`NP*;z1N61Nb+bXo)zoPmEeLRlR=x{EF7IaXk`QNmhkD|CU0rE#j3FpPVd0 z_P0+XIuQ!{uBu;9WtEk&Oy+g86XP+;O`c{@_zXf^{EW|-7%kL6UbGOa38(MZh8NK!qnZoTee9nlg|}|&7&CK> zm5JlGxBHR5#b$8uaZ|c=|2{?}jpd79i3gRux#MiuL`MXuUK<-_`h<`YNhnegj ze+%4_Jj7~ic4|zhHPNgX>F!qZz-6ARU4=`b-uCCd)N9U-<(ZGK=uL`9;bM=#xiSgm zSLtSp%EBW)Yl0fZ6W=pE*CDRkiM3&92ZU8pkmv^$8dE6+>CU+h#=8tIJ(e))+Fc zs{6$+Lrg2$@o&^GHFo$j&_EgZZC-&rl~Z_`2dB)Xm@+Jhu)5^I;y{*g7~Yt>8K3Gl zLt3C3y9D9U8$#AJJ2s%K(DzL~m?FbCj7ek=G__}!Wlr$HBKNps`g4%h2{<^CJE1>; z3IW|yv1+ccUNg@~Ww8XrCa0RqT%hX{Lz;?)C7Eh#bCPk4;G#n$E zgBA5&VFqFamC)FW@>d zvWJFoaCehlac}Z)0xP{e05!Opwec0d(gA+9*jAY!l4xhaR?lzqqlK|Ao8XA-p8wrZ zCo#8&WMN0+{^H@}YHSr%#e-DH=;!I?=;8hS$)wf&#=632i>8S4=5Lf#o_VQ9GN!VF zd(IM~r*5kCAfGF9@lK9K|5p*dgc0+pAnj%Ad0Pw?{HlseN3pr*+NQ#Hnbia0N~cyF zgy*+|`MP4UvM$I76LNP1crGz9$M|E!_C(UPSVgQ*~-O2dcnM5zEH(kLdtjrrYOT-tIE)O zEN3oWJ-?*ejajaUv%99(u$l|H=uZm|kqQs*;cF+3@F1jS+Pv;zGH~21-7`Sq{|{s5 z)Sd~{F6pFW+w9o3ZR?F~C*84a+qP}nwr$(fv*(&U2j3j*->^>BQ*~EWz9M23&DW{O zv(Cna@rRpbL|A>P>pXHoCWqrD6zTnRW4*Ho)xGS1`6tgJA>X2~%XQ5x;n&|N#HH4h zx)l`mIJldmx24N0s(!s!1!AYyJhi>^gJ?q%YMf_Jl79zYqO|{I)a};dBOXjSgIzi; zQuk~yx0t+<4%#LE=8M@1io8y$PEMAOUvfVMZVO(=iOiO@BvQ%+j#=oK5YpZ2w#?RC;oaT$oyiCjd(U&xQ5!@v{s}zymA#%Q+g$*!B z_ab6JL_%g5^x}+AhRKhn2s+IE@A~OT=3%~3L!Xi_XN}X#ON0TnJS;-%lQsS&z1q)- zus1Ohpdkfj+OwB3lj(@@`J?Qz+n4?(n^Eu8wwYcz?5>9wH$!A?M6CCf&R+L~s1iWN z?Eu`rW;}WFmhzi$ilN?uF}OdXyqz zKwz75Ybt)1NWZ>H%FQ<7E*IdZz<9yueng{fWnyo@!f(E0%J|~OIFQ^C_iL?~GZm(i zx-r|g*`K}cP;!6+YGU*zad$q-U!TS-Br23%z)QQs=HiLCDI|#c(pVF)LHCE51N6o5 z*F0-;?{c$~vE)A8kmp{yIhuX&<5VFppTNZ*jvqX~8FKguoaV?dAAhedF4%Q5`hlb6 z;^GMM$_-#R+ylT(22eU^hB_*i2dKaI@ky1`!oqk}H04Iu=7 zs;f(oBcF6T!oB(3>CM9Vhxb+OrOw%%o5nCVMt9`9Hs)**)Op;kpU2Yps}*lZXt=;DvLE*!1!~eJ=|LZ>dubeb1 z+kY2EasH>J%lSXDbelA->^6tdzOYXLwdP=dkZ1>9K;9Hq%Mv(lE0SRwYv+UaqZ?&f z57Q4d)w~1#^+jcIBg9j$(fSJ!kX*r=T|aF8xw-8+@bEiWhf$vR-H}+FGGl42O-rw9_8P(Z&h2f2R!6k|5JA%5y927 zZqFeQ7Dr}Vb~-5&2QOA2_Dj1%_d1yB4 zIU!3roQG|AIX>#?T?|pX0(=Ika#GkHA8}(x@#3d2ZYayO)M_$pP$5m9*Dlt4r`;&BSfavOg%5_1Q zXr`Am;Oy;+>F$P`F;Ec7+gujnrMwL{eeAnnn^_-Je;Fs>PJ+-$2-_$}5ab}a7vvWA zZ!QCFxe}g2eygQy~3anLkplDaeGHsgk9M@PI6vV6cplP9~2}kuEKR zb1*rm$mmztdbF>qbdVwO z3y&Aa9SXv5AB-w?yUmO^Q%xXs^vaTwMBM87t&D&QX* z&R>K`OX1=%krH75P|>`e+hi=vcip&jLY|+yvxgIL&QhD3A`9z=+xJu6p;mgp(HfYCf7&7rTm=oT()5pV*%Jh&j zu$vh%VQ<+Wb-2Or#ds1PqYU^OqDRtBrylc<458n1EG&MF-9nl!=41w_h0A7JaFgUt z8t(Kozv$UD`)Fr$dA`1vGB9EQU?xUNtr%3%*AJ%n#XmU3LY`0sMIe7Sl4_qRkjz&j z{((gW{4H5L4EOmA2}{2V&U0DY@Jf#Sl3z6wW!C>tC#12JYw-p6LiyBT{x4A!UEO3OAM;g{p8SPln*FsTE>BL&x+NwA_+^A)qPL{veV8LF4K5*f^gB`?Y;8(X$rg!Tsw!V zZShjPsr)VlK+X;=2Px1R2Wk3gWw7fZk?~m7Va#~Fe$t|a?vtRF2J0(qxM17=A=-K) zNVILm5v%*i_pCV?Np;OfG2iJrrM^_(4rR^{{TLYCbwA7QcItMPn-LuEagh5*@4KEX zPM~QsY0j&0jbkiJ`2MI>d}$}+jv7r!%ldYg*(vmr3Gi8p)Pp|@`Z&tkJbyvU2Hupk zMVNt)=KAqxkSl?fHNDNye1q&fmM|yip`<%(OQjKRvgYB4403WWc?R-H751?enoyKg zcHH>-XFsST6)KRi9!}aAds38`IFE;THHDS?m^Vp@5Zyt0H50#(r!E*G^ZnZB7=VP3 z0t7*pQnYxCV_)#$BQby|2I@jWIQja9vnnU+Dwj3#U`#1bQ*iKm0Ji7+=9O~>kF~}+ zN#Egy5LWaJ*kTc%dfgLuPDiD$zi!?mgKSB9Lpai7fjh?Ti>0fd5E=U6<#8-y(?~6Y zf@Gczyq+AYYEkBuRV#q~D;s~ZE12W}rYV*nF4 z!M?bubac8HC3DhbXQcrPp38cl3VXke(~&>7t2Qn>e-w-iM5N}3mPG-h&+Id(M0tZ! z^c-}G+(f-T_LlUodW9rde{VA=(3rN<8EWH-S4)9+B&$tn%Xl1z=pLVy1){`)cv$f8 zTBTJaTY&DgJ-;CGY!MA1cvQjV)p!ywxU25^X}@(raSow3ue3L-;*pq!F@pr68u zNgqeNMKeaZb^mHHn*ew4*H!F`8{2i_L48P=nI41=0J_m0O9^YFzKvMokc0?H4^!+B zM45x177};rsH(X7+iu8 z3u895Yo97+YE0fepm+koaF;;TV$#kNxz(dsJckb#lJz=?Nf-8r8a)P?G|RzY47$hs zti!xImp*fZb(NZI#s_#HM@$p(qnxp1s~|LFNMO8fffDq&s(y3>rG{|7;N% zi!EeL1;X4?p?{w6P3+U;Bu|)RpQ-wrAgCeRmS-oe&Q-44#jx-P|3_wAHz?^z%sp#! zGog%hEk$s7TFIhnW_cQefS?movdy9bBJFx$_3A}PGbCH$_2ZlbrgOD0*oDza&>)ma zqZ^PoPw4`9n##k!$yA!ILFI2P;;T;n`bEDrcN9kgjc4!Q={SUhN@h;kFbiF-+1y@q zhq+@nri3$+jh8s@g(zH>8P5FkZx;mxgd2~rLwQxB(Fo*@s$JY~dVWA96s-szg@P9= znMTqJI0rjJp`Cu7?aolySb~OZ6d9S!ly3n8-10JGK5g9&HP=y#q#|ns!m(RE!>iCc z@=lBy1ggc+9nO@@><5U_)|i<{Bxs8`T_CS}F;<3mj7*?3ti4F2d8uDKy;#; zM2)FQuqq}wag%VvQ(Fnt8P}$Z1NZr(I61{&ptMqTRBao6Ea|4t>)(?Hle3*j4-y6= z8E(8$L3jmrPG!L=HBa>4OO39s#Bp4puI>0+#Sj{CX-N*wj9ysr z!SX7#5_j6{%1%oPwHFp{TkJWE6|`xZtl?|+KRNX4?=JX`_VJTDK@{dZmY^SZYj0rkf8zVSo=nlk ztX3Dl$WI(ZoTbRoJ>O$iDrBCw(mq~~-WmY(7@JIzu=JjUNla+TOi3z8F|%UW+nBu; zoyK?H5GzZf+W)pSw)sXk$223@3c+D^`RZ+NyH@SRiSw|rJ;#vZ$+14Yd`hXCvw4d1SFEkYT6^G>wIzk4 z3h0t*+<8t{?0Q%CCGj}#ak{=$55-sJBF(X$fW*B!n#e9>YkZx~@C(0%j7RcP8a)t_elrJIleq-~~s1^DPsc zJ1s0${w>8H#9Ecf8rM#<2qP1kCN0#=+5^}Z5T(zWtn+bwTh7Z%1SxLQgm6d{G-n4L z<*q5OD=<(ZdkRO%5)+i;=Ii2k5_YPB-yMyH<<7_wH^NIbU ze2dXqdLa{^59@;e)YlSr1^@tFPfJ1krirzY`~1&48v{c(-IVnmcmAd>82q{nUq+@s zO}xfAI{!KsiS94mVdRrvC!Vf?+|o?IW}qn>E(V6q8(c0fdU~mDaZyMxRH5XxZ+3m4 z`*-6;B9>Zy?hJLWH-jhA%7Hxzj>Afin9R+T7lU z;I`P_Wfd9XD=wudxeftJzG7uxWZ76k+OO8H={&Rng;Z`sYF|Kx zk6GVdJI-(#K0aSL7?qPyD4XLlB4tC~{3adUSPj)V_0?-^2kHn{-<%uEC3SPukuOu; zId~Ta*7_5C8NtQbjj^^v)WZSzkqQTiPc6E>mG})@8~(xRwnVSjH{E5IN!mwXG`SLG zPPew0=O;)xyOUKN@0IvBQ_|P?Z6urpNvfL;r%zds{Ziwbz!TvXe)#J;0q5q`&a{{O z&0c_;hUN{{=jhaK;$ck1&2qD+LLXF-U80SM@Y{N-qAv$P2+m<4s&1?;1UcS^jh4Jk zeJhQGZu7(qbegu88 zQ-c}m0?qR2?`F$}^Dh7cPM@liMpXV;lp`^1reMAc*9qB5UApSnggplc*$W)aQvQHn zbq7r?^!L2((Jj3q4V57Y%vXvSXOfmM$c`%bx9SJ&fb7N6`nc z{=jCLPmD5=$(g{Z8zgmShAHNpTJkUCm2{XW?aiym-I3a5poIX1h=rWw*k#0h{`sD6x&PZ6QK5#P;IwYBd$Yqqal z2$k4&PG}O=t-My4Am}}4{#bzb0h7CE85U_nlpm&fdY zrI$dgzI&Wf$7=<+6xcRE9yW${kSJ7P>Uv&X%Ml#Dm++(|rN`T47x4SmGBn6Z3({w8 z546rIV8aQJ)qr9t3`&}$byXdmDxHNtd*V;32^^th2gJld_hg6F6}g5^%r_jcut?Aw*!+aA zU)R+nv7cgsjM(m|fGLhE2_5r5!7gtIZ>`9^0`6~cDP*+whkZ$&44UDbLmOC7nq#ly zeRi@Hc<@d?h`piZHxIPb)>KSM6ss~S5>P)_s{?oAh($941i<0b@agNuj5;M3{8s(r zLAZE@ZuGhf8ZURSeB%xz?F0dX`Y!`k) z8yvHaFs2*vSH&G$dIA%|NMxt4s8|z!pRQ|$({dJr3Wv@qp+c{uxq}!mGG+sUYM3BM zJkUsPwoP?{x~~<9sxil5qp?kfL7u(6rDWOG3W!9 z*&%os$%CW1Eeh>8(!uA()Q(Y78KE>Ua~kx{{jvA31}cLqLLh+v4LzX9r$k_1N?w~f zAy}aNekeuHG{*v1G2xo3$K$8SbYFiY$i70i=ZEX#Q(n*O>H5Owhi$8?w6oY&EyEN+ zyZ6`5K}b_y7lmT1ie6R6PcCu9GkrxU3K~2o07>B?$h|x#gtU%dtWp)s^wX={7q@3WjU> zeT2vy^*vax=UziK7OQ=nu&{f13iLE0-O-8eaYs-W2958nR$pKFuV_LPRheE9HciaK z+oY4*q`cb_C^vt}#9^Zbn;%mY$B~JDGvUUP;Z&U&hgQGGi!6bM>2(bDf^f;(4SgqK z_kpkexR`-NLtyCJ^L=T zpr45EI9L>`t7Mu3e>`oKm6TGQRyXtl1%;3`LiAglG{OC{868X{9c%8-qra8zr6h$J zi1eqV!y0bp$NfkcTiYX_v=IX|`EKx3`k-i`)AwrV0nZQCdgtg`R?DinCpuYXtClG7 zxREx}g#s56{RXd9VRF?dpNG&As&t~-g&Nrn28Uhr5&!{BSBayGI|e zYea-v5f)WBQBvw<91=b{y-GyQ)aex50gF{fz{d_V+}M64=(p;s2}ts z3fO=Opu|R?V{{P&Ig3ds1Gf!!{{UH*ryd_FPZP@$_BfaYV#;R07lbZvtD6z-V!)l1 zK$H8Bze=aRWuyWaX|Dl!BA~7q#?K)h*<;Zxg3}breUU4oM;daY{f1f6%#Br2jH#FZ z((KI5(6FnAP#Txwk#=%E#OJKwI1)?)ma)lLkKc_CIJ;D;NCyWPr zT3%T6434M)`l!jX?~MFM&JW9AeCM`s+g6}pd4uN45E>oT&q@H1A==&xVJ6*^JwsWb zqEDlr5GT{$P-%24HCrkGH zL}146%mLs0i(c;3hcP<`hE*UL<|wMuFj%+sLV(h|2K5%Vd!v$Xrw-*V`ozuVbnE zafMoo5Bty9I2w)+%LuoBgyY*C?d>W2ku$J%g)jx=s8n!#8n8KDxY`XDWQ_k|kYiP= zZ|sb0<%vW>BSW=enQ&qR=PW@cO?B^&-48Q6hW=lspH-Fflmp)EIn3D?{36 z0(2*7#n$Sl^A<8+^E9Iwevm}8VuL(VTh>1TpOk6F66xCRy@rYiwW@LY`kdNtzhZUi ze;Ifa2|FRt5Ya~p=rb4%o)Jb_+IeLmTk{U|OFoAhxX39Kf0+j5`eF41zRwf!5g!G zYyfGDKI4D4X33m(8KTYBQV1e1TfmWVcd$5J#B;#ke-2%Zf9TVp zOG-fC8c|aX2heHOeSu#DXaMEwlgR6 zJOuq47X7942;>=RaZ8y4u@@-*t09G}1r$MpTy6Q;f8)AHiVBZtOCfgPiml zynug?Z^@#ykp(KtLTk*C6eU?TRS6tKOII}P|! z9M(t(MbkGb3Lj8hwEZPdkv0IPMJHc=I4K_G2D^BC-mg7R-hhzkVE3#=ed4pWm=arzoE~EbdI8}eVm<<12 zFIY^-t2?O+w&VDB3$qT5z1S!TAsXrTz*u1@#H#dcAZ#DQYd$T?`d{<{PJuc<%~mm? z3CPCQEOaKPyk_ZylFd(e4d#(>dreaD-kGi2_v(^Y|HEQ3Yc^b&2k2O$*{`q`S3=@9mO9UYfjE(ng!I0t^TM2Sp+Ny@I6rgGd79 z#9nsl25>~fW0;&&N@iaE)W!DS)QWvf`+u|EEF`h+ZD>SyLB-0Fiy&b=kA9RXiH2=^ zg`gy%Jnw1?~1J6(<KMzFjthzjX>Yb+jDIAS|L+6Z7_-6TC6h(cWnlfV=4>}#%eMai; z%G%nJ!Nj~_MTUBFXlmcL?TDUQ*XDCRT(#9I#50frJ2ziCEpYW(5P)%2d%U?iBqt7X z&OyA^(xC$7p|{`C5S9d;gW0JLv2~G27KN#Oo(8posy@B`Fv$0q+L(3$>9Vr@9s`lR zLdCA}+kr8UgeU#3r_XIDr5d*c&I6LU1Du-Pi200h;Pmu`bsG00oBS0VguZ@#_n)6K*SZib;+A~ ziEZ^OmWaYIi2&NR5(aQN*|}zZ44R3?h-4~BLTyz0S}OLK6fV!W}ht2ZRx+zaVEl|CMeypWYB;t%{0vg};7UW@ptgj2!OLW*dc> zc41KFb<94XaVb0ducnJX7_3C-(%3r^?91czs%g{9Rj_@-BsY8kTt(6He!|zCD*vtk z$vq|OQElZ>@6CI{7(Hd)OJlP?53d0LxQ+%nFz#Us#z-PxXz^6^pAi-ZbhrUX*rth} zZyIPbDLgTXs4vWL2L8bOm+?dvW~2)_gmOIas8azsI1m`^G%4GbOc>s7I6IaS3IdRT zYTSBR1Y@H(>BH5s{IkjKotq}I>c=d;P0@9}W$B&#BupsJlY-ir8U8m4&kbx*NGRyQ zh?)g_8WKgONtmxnd~2d%%!ocm#i-{5P$6qW+NasB;dd?VCaW+L+ITH!g!*71iZ~k1?(4xah0E3>ST4gp>7c8 z()}=mPp+iyrTlTZtm><~a0&uxIQ!JM33!AkZ5pfnXo%;k$CJEvH3HU}zgs=Mmn$(= zZN*87+CfdBR8$t}jF~rxK4jt}2Qox^tj^X*_i`_Lv}11XPx(KIs=}HgKDC1TTI3+xQJ4u4kSPPTTUovmFW0w>W=7jmF>(fz4%_)Z*`_L7E>LN`jEcL=y?I4$ z&oO#FDSP6}X(WzbLxmKeV}MK{?}w7BMWeJDhA!xxW-~O~&!MLwp8@_K2&yei=Kqio z|Bo{GzmXzV22Q5`+Y-UZ@SjW(Bg6j)D*6{ri9Q^T^SY@a1O+ZfFLz8G>v+BEl*m+O-hul%Y;#Yfj@828b{wU-5x3mB&udnc)9{6t+mnVhhM?QK-GNLC_ z3cYtDACAN=Ti9=HXY!|bRss9YtkM>}tXUc2p2&enQj6L!rMFXOy@eS&Z<+baGvZPjsiJv|)mPLe+%yyUZ4V;mVia4@ zLdo_9!Pn02YdnA)%|A=_=T&*lIVUs={K*~NRyj{6hI|er>efBm*_SI|%pRgvu^qFG z$_r6~I%*%emF4doU`L)^ZTc1zkNQ6)1e%_MGOKCt2aAt73{QQol@-U|oD?0oXUKYXHL@`eTI%hYYqej=0012Gnc+)l7sA!aA&H}q*F+0QD-;?+H z13`nt5&1&!E)HNv9M7uCa#NmIKrxWYQRc~F|B@AT@H_>|`t!L-GDYN2rU@NWDCjtt zb#`ZQ`fc8WSS(7TtcCB5l1W0RT6 zZ-Qd9-S&P8F?|lD7485R)u~fA>^dUpsaUR4x;{=b#cZ^kkp~kRqXV5mz5aUtS|VT? zq7mq;?qO(B=+y&c5=B4K2S6TP-6Bx5*gnf*76j66z8esae=}A|ZV$rrN~movi_Q~> zt4-;Ijy?Zli2k~fGFfjUt}|rlfkphzfff`rQI5zI(D?)sNLm<>^TjitXVpHKn1+CZBEu z=(kk3>RL8Xb#UfcW+;2H7Zji6hHh6F!3?q6gTVL3vi+S!CDLcXcBJr@Eb)T1T!fKm zJ`EUyzFBzB5%kX2RmcVG?$m;z)5Dhhj`z0ua@WOD*hnNloBHW~rUGDt~K z7}_UIX5+vaN>yKexC9Zz>#`b`%INFAaiq9Y`REQ`gJ#+t=;|{vk?3 z*~7fc>^;g92YHgDxUM7_aKei~EH{PGxc+WZ_wF-|o~-ycN>u<|t!N zmhC#`=N(LBeRP|Ro!T9C-PjySHntg=eS+)o?8&%6Cap5hZtp7 z_)TK$fP#O9fps%PdS$_#3$3?4MqlFXwZB;FW4&9;$6S?Q1FL;1KkF=oNMvjqq@ zy`=+=hfbwTM-%T^V~Ncm6Cynm5gK{sj6Wjz@zdQ{PRj{vq$YK{$5vOmaSbdDlFHsi z%p{-WXoxm*i@WqBqEJQ%4SbZwvrML<7veL*X>jUr)e~W# z5lxZ{J7eUKqk`faP)l3^nh&z6&BU14e3$x!iL zoC%<)0^Zx~Xfc4?LYjuossxBJg0rx!L|daRKB?#NgjA{U7i!r$^kdQSKuDXq>P`-A z@!F`8vv3~e*%L*7AWIC;tXVBKyv`mq)G21ACEFB5aWu_YpBScf$6Aq?Ta71~KYr#I zlMT8|F&c40I;0Uh(5gVU!W~;#@LEYw)APp^A&ip7QkuHza1u8%A8o@MsVhEV$z>vu zOY_$Ar(rdd_xGd1mD8}IbUq-@{zw(V;|gq!g^!)LVsepj_5Kd@1E}`lwb|l#hucZ% z$+}@@Xa!tX_7vsj2s{KzZDdmeBq$CDL7;BN*=6|*qU*0mGC>*#8pZMW--fy%q^a5k z#}oV%a9KkW&gzpgy`GBijAZkxp=cZqj7;aHo6Zg0pRK4vmA59)vn)TF_O0_&PaXW9 zUkmw-)RkL$5-QbUy6|5T8djAfq8PcpmlKtYdOf9X4IFF(T{I|vNXlN>HAh!4(2<9# zhluxAOM!@8kl_=XNvUXnoH}+#Sj^mv-C;9H+n*tL{S0`#!>v_gnAQf>(~FCZ6j#yX zO3=M;-D6{mjgyIb?Yp{kPbmCtEtBWY7>NV=gP9>Lj0e_cunRREq&2ok zpTxPWgozpt$yR4ImRw3=66R&m%+Uwk9jXP1ZtG^&^n8y-0^gG7p(J#qXCwO%Y3m>e zSkU__JU&+VRR-Rk4fo8;dNAluPzZ%+sZp;E6w4zBMxhpPVLg49_!%8<{3ggXUL7Dl z+7uL~v9!*({6LY`5*RxW^sn0T8ceuSLGqT=@-|XqMTlCbdF?w$#_7of+3usNQbIL7iIb;zC~= zx#bD(Y1j(PQdfbv%HbXiDG}%rfLi0G?xLnMoLV_QgsQqF`xmpLNRj0fiw>`4`dDe8 zl(9pVb)0=%vjyC5XdKybF-k%TZ*dj-r)wM|z1(mG)dKbcyXwXB0pd$E60%9>F(R-% zP-TCggjJMgg90!+yF&D(3i+cw3K+B+>axS&?e7>Ep=^`6t#&1AR_?KIotm?Sq3lu5 z*!Jgy6#LNxK5SLMea;bl5LR>U=CU5+mT+XyHRRype9N1q6Z3m)6KWt_R1o?X8_!Yj zt&C_E{CdcY)8uP5 zn^RzwzS$(%FtND~{}I|wVko~h?esEYln8Cp@lAmq3w=)Hu~oGJOZpG|EdrHk&V z-}4BAznC^sW}$|y5jGGpAAq1T_-kA9xntbfW|bTqft;;LuaRWh`l7crPBU)e55Z23 z%i>Ce&})Ktg~JlJwOfEYuFGc-C$<|iw;C{0sC(0_X= z_Oiw{!Sf<4m-_%)l}+krGJ2P!-RsTLU*M%YbV9p>G)$#>*{=)>!0z-LNO(oxFC1{C zr=xbR(roXd$>6W>pH+wh3BxciNe^P%Njw^+mhDF8(BrsL~K5%}=T^ zJ#_@;<|q?Aa_!q3dO-0&2z^+#SZ^XU0+$C@P0=tim>{25?dd5x6eK1*PPg8+ChH*; z^jn~BVMz}vj7m+fl7__MFBT9bb^M^CCV%JRURwot4*$zlv)a;VB`@yz1tG%UM{(Vd z>GvG>Q&ok?k9Hf7_(2G+jHYdxy9$);L$x=B35=yF!6oG5WK#usifPR?wt|bM%k&Ua z|Ngu%cJcEiA-GJFkLHRpo$&l%aM>loKq>o1Uc&nT{*l7|E9DcHXF9Mh9?WsZR7p;@ zcZ{qo|8~-$8grvSU9*w9fCiBI;UpBJt48`Hvzt%2*-gZ|o!VejWUFiMF6nI`PfVjRA|y z&~23p1@@Jkm~&n5B6j@s2%*X0r4LxMW(Mc29)s|O zS=BYWSv=`YUpH#SmGy%ZWmJjbTeiO%>ox<^Xfqdwf+tYE4jfKngh8-pKa3`VNigWg z!7G^Pv*zrqJ`qYq^Z4^Q)V2so+$+M}`G*4Aq{rK?Q8UQS_YY-LmbMURnN7$tr}xU=27$@ZDN(86?S$~hG^Ob{Zd{9P8t^63>Snco~$d|`NW%b{>g4*v^0HC8c6 zhQhOL2hP{U^Y+^g6N68-S!b8ZtoVf|%J^D+OQjS;*sGBidSx?)XbYCW((z#!=uhod zJCPH95kjD<|2!eq4Hp!6i5x-cW9gKMn{*DB{0IdbPq_Otg z3|2K+Y&>f!D%-0oUXLnv7Hw=H{g<9yB3i7iDsY|FIa16Qq<>@TYRTmUY#XVW(}{3c zK5eVY;ZQD3)rzP`oRzk}iOOIgHm5w%K^}(F0X5ix)qAD>^=HphYS)oDou3T@%IvIF z`OIjG5!<1@r7h2N(Tc}iNM6EV;A3>9yx);eHcV?3B}H-rWlFL=Ck1MeVvvy^-oER8 zM`px?p`@q97)xqu{-@uS=eFEXI}&679oDl5)eYkFP<<0oI{xB=%o^PO2W#i2scaUH zd3A--HMQi+`mqn>3|RF5It~09T)xZn->!eKL)ev`y0Ajdr_hm}kBxS&m$P`G=XqVY z%2{~Nn?hD+pX{#HI!rT{wc3%L+%fsjaKJRA%KJ;-boJ60_&2M{z3lAxvODxo{n#v4 zMwFYp9_A**F5FjSa+YlhyxG!DUoKztYAg`H2HptpgZV6&66&$reoySWv;cmB_b&*R!NVZPnLk4PYat}KoFE-kJ z2z50+(?iWtG_RKSR07A;s$mejw0r%k_8Gw+HAppyG4zg#)3t?*A^tk(?E{Osm}iWVdvkE!p?%M7Egq8B&SVWK5FvhyPPj;-qL8jt7p?VLyHX`sG4 z=i(jjzrr0+??p1<9209iQ%mp;)6(llWbV$D0644aw#bTliUNcX_nnrl?52;s)hhXl zVl&o@maD5R-=3=Wtvvj7lMb5@2=4v$MGh=iA|-e4nTgi3Cf zkG6ZkbW#V^J}7N-a>%kw#HJ6eWxO@Zji<*PX-CPKci{%hi!1bzPOE3@Rx5KfB#cMu zSFRI>^i^2`O9D`&hx$?(nmWlmUM~)or?@3v?nUv`CO@s48aHHe?PEn3?HSDeDfp3M zyXYGy9ww|l#LLcri?f|dZn%&IMEOjrSS<@m8=*zzpGneZN@7SUNIrxr&G>lLCjEf2lx~{xJ%{Ae@1_g35!;XfRSy3{O1$clfEDYYOmlA@R*yqm zo?4bM@sd5X`uWNd7ja{2w&6?pM&@6s#tXDaoP~DiUZpM}Hq6SlMOh6j1z8#m1nEW% zro!xZ*chUhG0xdas%iEQjn_}g*&H$9EYmP2b9&8FJ+CsKEV?99`$SWLvO$rVvSce% z81Bo}2Dqy5@z%(@ZpnA*YDAj5F%Ge3X%gd959+m^sjbx%`$Q+rxG82(e^(Zd%7!tUP~{8XE4@`bj;D&##fM&bGCQ3 z^#h$dx6^$nyUqRc z`>5hVO2N5kZvSZIa)P}^kN@la&4sMXlSW#lxUqsJ!^VYH#;nc9qiQdvw_@>X^-VI!sgKydMA-)^Y72;2~_Z)MfxhAaPeuq+x;`PLdzC% zB(iPmlZWN+3RBsvNc>O7O9-<_DiK43HW@FJL)0O4SZroL@O! zCkQ3pzo?WCko>q2qiUP8dy6Q*-sMd}%C(vJacdTEvr&jFz29;@<1Ms=!b#^~e^I!V zW!P8i2^Y@t*`RD+dU;^;o<2{t<*<;)n$U;>Ne7L>kt@__NgL#H74SVUE~?j8D_j4BV(rcM4)6$nE(3yAPf)H0)T!3Mtz~MxF1N3K zHN~O_1RcgB1O9t&3IS4RTY~P*$YpTSBsU8bO6^sSxKN2BZF&|Zg&$78bJ+J!7re{{ zF?LNqO8!;iEcYcFVf^8_R7cyhyAZNLx|soUoUEdX1^ovJZpe@45)=N$fiNW~Ulx`p zO}tbyP6nP9*4NTtCm z|DM;*xns&f@1OzFB&nStGiW>dORWYMexGk+)B6x?5c=03Yd5=4()6%^ulLpE>PneN zK^dtKhMmu^w?G)gUjR1V$+V9$op)HM)}Ab-Q^K+$j+2tvB{CGry&-ENi|+;~?H-u8 zNQ^S+TB^8qw69OQ8(`)R-gDr|pfH;f4Bpsz5sE9UolbXr*E}YfIXTmYIuEAIz77bl zd^{C&rR$i6xzCX1=!sHlSj=iN(aSjE6iPUc&^7qGerAJa2B#hE1exKv)bt7r8a3xv>ulc}CEAfzuDI0&Stet?(zCdIiAy=9F!x1GA zN6J3ag0OT4SnKcH|HarlHfaK_O}b^$ zAKss^KCQSj^UB;a1o5AsQ;*s1q;_o*eGJ52u9P{4r24~oR(<2W+mP2naxtPfdlNpn zES}nNoMdWa*+6;kIOV((7pzY5Dal~U@pMIkp?do)W@(=@pV1Cv6`>T9|1Mln`FLus zVXWN*qP2OLJ;C#C7qHYb%IzG!p@qlkIU2CO4U~8^3mJuVyA|sT=Z2z33HR786l7!`7>la^|Ran5tasE+Zt}NBUEFoS+ zC}1pUgTBD4XObgn;IE;FCc1xoLCly?#3fW!!`Reii(Xu>K4gfT@?;Id?1!@D3#s-r zHV1GX{xB(oL!k*3jknya<#P{c{=$WgNvB0^A?s~|nXU6?5|ikxs+rqexCC*fVa*Z+ zsVPRm4)RtPKoTQa4{)55QJdfqYjfdkZlYvKDk&ZAz@l2>8|VMGi*UiV`M{R5+4AFT ztQ4=E%GiU$E^JvWIWpQkS4E{8>-F_`RB1QWV^TuSA)G&C`{K-eO~4>?01%Xw3~%51 z`{kN8EFO|aMN|Qo}hLXCu^mWRxW>tS&tzwFAw1% z1D?kq#x&=v9C{2vlb8-ifO}rPL>rsRWl_M*25o&aA|`$xyPDu*^(x3h&-3s(PSaHO zSbp&PTTt2!HOllGZ)%bmv4I-bLV(q@7-O_>Nk5z&PZ2?*T=y(lG{CVn6~y?;y*Q2D zc{9go1$Y@Qnd<<`E@Qy!a$evv1(5PsU}AJdf57IJm>~lfuvVuuztHK4vbYRnc=(9j z*=yxL$#&`*f>mFfBVdf4FF?JXxd1dHk7hilq0w%-0JmB&0F+&%=%&C(lNy*qS$=gj zYHRz40hr*Gl%hO89TZDpEJN(*J&>)j2=r?OF zt>h{G#^1O*Y^_$%yWB_n1a;JY!TgA)r$j*;#e|$rxZRBo+ds0s6^JR<3_?83LrWHF z!bCN(x_QwlF^iFFFh^=8ELtGwAb`s?!W&J{h{h7C=m}!DJzr|lS}F~&1te;7jOYx+ z+l4nEg7pHWl}&MiLZ6S?algH?GkDc>j5XGxoE`2yB?7Z>P&@R9cBRD1g}~H0quqh& zK2eb=Fs^R&zC%WOIS34-qYiT+4A>lu=dUv~&e`&gI@~LK;~ix0Tr@WqeGYd28aHD- z?+EzhB!=Q3|Hc(_qw3#C@aBC*WO1xw43zFAX@fPS(eQK$@px^vcAG*behscXhzVO? zk_ggS0kwF?>%@|%FD+nQFjc_$?3~Hj*iV8eVVmtdW3cekslwgd=l;nq% zmR^wZtkyWO0%nk=UH;4a)E}%UHe2P!Lr^8kQwR5At$G9NO7RE zsQGcj;02wpB6bhWCIzD5$eALsIq=ktgl({dSINB~j-^dkG&dAR``2HQ2zKpn4i5On zZv-_}mgYvY9Qoeu`o>anFf6A4;LbPux17lMWG8PSI+m-D1U$X z49sXOxz@MortlyDtgRR%aW^R=VER!4ua57QwHmJMK~D+72c{_^>6#}CtJT!?xBcWo zcTHv=zvUleMi)>pNW!}vvn{X3Ro^Ta(t%Fx!V>|Xdt*6D9+$WU{a=-gEKyaaSb9Jx z7FA+ho?zSDf^%*VEyt+%%boE=yyQfksBsVR7QZ-z)zCW;yl)uG!|Al(OAIzmS=WHm zdipg{D_r%GxUI7OSO^vviZ001dWXvi-Zy+@_>n2Q9!E>{2RyxeO<`lqVDY}5pHOt% zIM4Whi(g10Ck_!SrDl5&e3UA&@G!2*P5j|V$Vf_L{obK41SAU5?Xxk8(*$8W&y-v$ zjB`5HwT~WI7I40_NtF>jW8_6|yq2-SxUn8j|9ZlRKlO&g1W4&NA<=M9z$)QDqxn)+ z9A6XNuxqZS1HtUsQD(k!;}({^)2Hc z%oU6Q@yu0D{_BV>N{giBc4&^xBEfn#0?AN2+k|=NVUjH1>~zKAwY5{^BEl`b$~$u4 zpgOKs4;E>Simj>`{GBnJD4$HXMLsOi@VdWab}o)mP$~T+lT+$ZU>hfVN1BE>Kh2^D z&WRQLrgZqxV=$X38$H%@VCG72-dS11@@X>arzJo#6qnI#RB!G|OPqi7-a zVcC~h*!h^*M{DfQ#J9^<@hz1{{}y++)E^zE^bujk_mkRQGqxQj=fw-|R14s^FtD&+ zo{cy>9fNzQj`=K`<}seg3YA#iZ{e)+*_K)~{{>M_dS!=-&E zYT;Txk_pb&-p12N2%93EQcB&qmQBy^)6n&bsMhZ(OsWhPJzu>!(7RDV@=Ht&P21qCu60ur7s_sGF4<5Tx{y;lHd28 zMVbkvG_5y@rx~KY_2wR~tItn;9eh?dEt^gpTT4}X5p2}b>5O_iYBoF0^cOW-5kg>> z!ETTK291||B>|S6o3mtBgn+ zONO80_I#+@P`{^HoIJ=}HOUIK@6=_-dZ$uoP@ZVX$+~dJ$spI-%D$}@cWe#9NmLoQY?^or%J^C9V6r_bs0#H z$}%QNMKmp#AX+_OQ6y&(e3E978g_N*Whtw2&M0$iGE0%Pn(gVRp^ga2wEXk5ti;n? zbN&QWIrHy2@);1>&_0wzB^EndB%ciOS7Ct&cy-l(aru?Up?G?oX&?xJ&271YC=qMf zYw+YFZ%L#+HOtAKkEH{En_@6>M(vVWPziyu)8Z=9LX5679vJdV2uDa@)LVW;5|}S! ziH8!49X)Y@iWmodU_o;SzY-*13>~?y#aZm zPN5~O%N9hip!K&%r}9m-{#m?H@!>vCpM17^&){26Fz&HzUREeXSiEQQsA&s>Vg6SM zv6@&ko7e@#D3_@B!N!;H5WIAga0e7N#@-kuUboG5#h%G?mF2=8gGZsD62OTz5h=F2 z>&T@(w6(ubcU#Adj!#rd0&|yVrh*nAE>c02*hS}?3Br=3>TQnGJY z__bGv6a&Mk@cS8b9V8jPa~+Rl_8e&nL}xRlm?*2*M8IELwJ z49#6CsTy?*^d25F%x%B87|Y2WhyG8nlBc|{=F zRIvGH_6ERG;y#RXN?}3m#W=&_eMkAe#(_U^9IZ9d&C9MEn8<~<(=XAOTO4#09SYQX zDde@nR+_F3pq_I2Am(b%_itz;uqA<;DC#*D#%EPynDnB2Zz~&}WV|Pfs!pO){IRdB zz#>KLpn(ONPnaMdHkhs(K(G`QzC7!1i#;D{g8rPjxM%A{jR}Z45ED@K0eN=p>x4@+ zyI+$(LcLYFFl>K(lPk*MtbR>H=4E{(R;&k{gQK%BP{jjk2SH=h|DU^Iq&p6#a>JWHz! zraVx2&wpPJE6p%-z3(3P*C{W{vlsIYs6lS|-ac_tBZ6Ja1=*Jby2J9hag)8Dj~>eD z`vxMo7WL_5QvMeB{y17_+mfvhpS*rszKv2tk4JQInN*+)Jyiu2Ew#8ioU5Zgs`xKE z8qTd`Z2nR(PEKM zu6_O&{v1XV>lvdwJOAVf7h{bak5mrNIFZb_Yn?W1()D7&&QNG>8yQ&sOCi6TRubw@ z6Q$@o1+HKp6_&{09<^t4V2Ps=^t^jzv#G(PksYRi>be+6o50O^XT z$3IY~fGqmV@Jazcui|*R8=DMH;hTjZ3fS_s;FQpao$=S(`Z&F^Q%4LIMKBS z!^%Sw@x=u|a0()vAyDEiC>N|YEr$to*;0h#JcWc094jdpSv}jC-*O`?F7MYCj*$&Y z;!UIziwvTN?vRU(pQj1)GD7)hf)D?cBA?3qj!xyUvd$x==nh0r4kj9)E1xJV?lJ#? z_EzOoWpOP*jJ0nHurauvCCf$8XK5~fhanI5)FD*BM&b*^cpOA2#PG@XwL^c0}T!(~e8;dH3GYH6! z#n(z1YuG0v+i+b&219r_3k?7w_N$(o|Fl-zpwDpIWmIl3knG(kyy%Deb|OxcPV+*{CtXr5 z@2keq4ouj(A0;Ii`WRmXm&{+hfP&t_f=l_m>}I+>!|KliDQ^>g*-3H@27)6ds6 z-3`g7lP4II2CN^8t$ToEBJ`nI8_G7KBg==^}J_ z?>w)%mutgWOd1gaGOT?&+K0g8ORmA^&j=2Kv-_-iDa-7U_}KWctnk|g#mxR6T6rn8 z5t6;Mt%g{ZwWn%h_W*ttMdzG{Z=WyhMm^y*uYR06#tJh#_fgJP5ISJ% z;LCwQ`>VkgAtamzxnBXXF&d;G`1#_b9$wo_NX3PtrD#YHj){P@xSa-JlnxOn|2I0K z$tXStX9y3+!@6IAq%walynQ@BFK*l+t6j+4*UT}!+J zcY}wsO+r-D+w{|GF48x?d~Dqz(hLa=Dgi7US*CP2cbG(%gk&0-KPtqOX?P(*w;~uG zqgaVoxQo-I60V^(ICR{xfkQ$mffu?@9qWKA;hMREk+8o?VfD}+vImqAoXu@G1$T*3 zhwjyW2qT|J14FsP{I>FQPU-gS7cq62-V%#UdLwJ00GP|)YvQ=_@$%%wW8#1-$&bx= z#HWyr!BL@H1kqE6xsyxy$Rx)JyI9vh5I+ptzR2(su{vR8wsx)2d^)8*6jApS@nmC7 zMh*fzV~Kn25wVHWo8GPM+N;jLjFf*wLtkyv%rq;hU{ug&wf2bFGcP~#gsKT{!sk2( z@Z~p@DU{q?G?8z5tg_M13x`qax@%=$eC67uscA#;1i0 z1x8i%v$x})p`mv_D>-lZ{PYq<>*Ht@R=i*WY2KY8%}KU;_73)C&zX{}xW}UJhaeA;ziJU7Wh!+#J|n?WXEii z)0%!H%RS``@pfZ{H7|BLT6pN>T(x+klffokt4S`=lw^g_F3vrC8BDYR(EaC;+#xY7 zyf=jyjc_MhrypN`9pjO0cd=gLVPt89Kpd~{^yHAk z8tO$!P=Cb@0DM@KEyZ3;2GCo!y7y($>wI^Xu0HXE^OT`K?R_A?xR&0m#XU)9rnvA) zxN=Gsp&wV5d)y$Amk@|4N>b~`lgQKROYbPqUWM1z9^BOvPHWTsme);#~#& z3|=M^gdu&do-7Z=bI4 z7#+z7)PcvtFxC%0y3S-bE!#ibLiqgOi!A!CIlp~MGoo{Xk&o88QI&^4rT#Mklx&Lmqh*2mbH7?LzYzyTf5LQ?fhIMY znsGVXKFqh9YJSn%wEE@PccF2$W2vF>u(1{PzY+hC!~Knv*`{#*C?SC3UEdV>wvF2Z z4Bzfng3nZ@2`k*?h}oRQvlr5;Z9jAFo8!L7xfo{occ(O*hQ5n~l?N6Frg7ry)d zx*x1Qx#6G*zb5$dihcLp+H-9#0PM*{MGI5sE{p7)7rt9x%!|Q!qA3m!zJLA8l{MB* zQ~I%QtFV79aB?+AUldI zBqOZ0XLE3S_3F3K9!@;eXANS#=lL=4c|Dz`!I(4pCDlVAe9mKWnuSfooXcaKNh_cM zP$bS4U4E0^^#Z(?ohELl8Q?+|l?hnb2)9oMeNatgJU%{6fNB7o%p?@3I9!Gp^(D)^ zCV9N@1(oOy_#ea?XQVsMFL`#w;+Pg2w?KJp>h?RW9PbcBZl5{M1mf*pGfrK$I0*Jp zU222Zc+NQ1fcPbB;zbQ$7*SRmgbT=9IHrvj0Ar^~XSq5!)oA)3`6|7%!y=x1Eh(CJ z5D_WEAf@rRrx6|=b@coUh@(J;V7~FH?W^;bVF-*y%CwslZQlODkNju&JW#^b9ul0( zkNvZ3Fr5a$33zIF*qOT;hY8l#c{~+} ziTMEm9b>^^C{ESe7iv&UmwM>VaD+_0;-@~2_1}O7N|Lg;lqMKRrEfvIJ|IaV zv9vG{&Ca02HZNj_dgO;d&4mRJ{gC3^3kEE=a1L;CJGZ>^;N(bbU_s)MRv zr%Bqvo%OV`;t7cwb71x({1OA=hHeSCLgS}|Z{$(eI_AT3-C0Da$9JI!^GFy~rMdRU z`9Y1Y_7_K{m_!`IKy{?1P*gu0(*2<9^+o{YY6y4()#FYzUkS|$ zY?q9d3kT$MsfV@84EP)na;@bL1|VdI7#I~1VrM^M&mu}Ku7(`cHpAcR(`3>fu%~dM zh%3mA!$28=1Qn2A&)aNbAJ&%0U+#XJjj?32usM)ayjIDfpAm6%RDVOu$2$%*6^pE&w3lX=vBbb?Y z13KX5A*gN3@S_eR@XO08VpPfe6vre+fygqU;BQ(4H-LXSF%T9Q5S*Yed_!dK27$Ah zTK=N=JYI(5f{P~eh~a~Ax(G!`4hKh2*i$j$1p)xDZR-T)h}3wsz!l0BSQjcRrJ7N( zL<2a>mqy3HLl`N3(>W=b@HD;Re$f>a&~-w`t}&dX}!$Ed~9e1)+%6t-Z}_v(+DRTAbF6?rQmqC1%4hE%Vdb;{IYr4(H3Wn zj-Pt`CmI3VbJm>lW=G0?i}80k81_;Fe!NL#6XSPhrNg|l4siv6n-GfGMX-I33S{F1 zl30}q6@sRWh4Wifu?IJh3t4u{z2hi&f0H+T+>7AHUlLk;BaK~7>Cad!l|&JlQR6CKdShGenI zIR(U5u^v*#&^>@VhcW;qVFWwC@_oJyKq*4K4!P@kPrilF32qs***{BcBnq>?1N~;= z>n@Xo&@+$jZrX=0epd8x$|5zIPk?~sJ#~syjLxStg;i+OM_W-E${OG7qzCX&sLqD&|DJbe}t4F&Ba48b?Wp z=(poFyMQFp2SHK(y@BaKAd$S7I6;1BalxRW@SJo6bPAns2)e24?JntgSM1m+X^T>u z=~^wT2L^-^&bQr^AAwxQ!VjvX7kiPu9|81xgC#wEpYur03|-xgD^Q;|WBv4g%iSEjdI!-Pb`0M?i~5W482UsX7boyN>#2x4pQ5 zn)b`3Y>fii4rf^^?wZy573dYq!h8)mLU>E1$98Su;!rHLU-4ltH3|{A3h2^Bs3^ZG zU3j<|wkde{Y{CAhJWM}>(eU?NTcPP?m-B$18(+VqI8ZKbfzr0`5m7S_k09f@rx7ZZ zyWxvPb3{}RA5V1O%=mDqP`~%KB}B?;ZKdA|8Q^)^egS6Z5$75jdIQj*SG|pS1@Rq` zo`X%&*b@89{PDohVR_8VF=I`Wee4Y(`G$SLl7%y8aUq9|?g+$jdhbe?)s2Th6u_Oj z2Yxi5WofY=$C*3@%jbaJGqv`tDH?j4P7ywN#^TINWV zx}Jk@Xh10il1B382#7fDNITgeVSQ0IG^#17ik(cJ^xt3})vWD?1tgi+6ISHYz zCZXikr^i%(q><4=PK0Z4YZ+{`@U}IIpNsvc;Fq;3WZGZ>UrwOmg#d^ifOVaM=GJQ` z3W2tNs{jbw2iY6}kDzuec5!bJkcB{uETvubC0)PN7w+X>vp%`zhzH6jKaXbb8o~@) z?%A3hO|McUDT=Kzoa!^G zi{5y0i}I{a(vD%T;Sx|8RO~E0?#>kSa6DBNBAasxxgh7DAfXowvw2Qw);gv`Lfdaz ze3pp81CK0;r@(RpbL7YVrTGA~xn2HJ2Rzd1MVF#`bDpaIKJsi{#rezDd6Ekw{?6mZ z`da*}-iG`>GsiB&K}^IDj?Yut^(Je$FIzU{`HQyy@3WwQdZgiE0Bpbf$|geg6!WqR zEW2O#*`{p7t}CrFaxuUkQ0 zt^JS02;jw6eW7*#eGy`ix%ZZJO;*8VBW5z0y_k3BzK_TBeX=A}8;3PpKu0ehLk60f z?_gEJ?`zc#&8=VVH(MxYQOsst{W2_UG@m zQy(&VAf@TmFf}^m^t%r%(oTL%GzqW&MK}~Zyvv;HsTxKLDR;s3L1l3ZI^E; z1>?nsx=*SvuhLG}G)`K)q}b{s8p%0xP`V;V8{n**=My*D*N-`J6Ue( zt6_`&z|XBn_0Pb3Y~}Ct*7n$n5t)&GM%VG28z)eM%(0rsRRPkSDX5z>!#i-1zYPAn zqCl|DQ{e}MCMK@V?e!DLJ^mfSSv|SskC7c zy#&r4b)YVi>x8~mv&Z8K&nGL7`0%_jrh_=&m@VKj+I-j&+4SG_2Q0o#lUIr)O(TI{w?-0X)#w*(WnG$l(HjaQqU*j8i94qJxiI#r|?rTrxX<5@Y@HH=dx1jZy|31n+{3)JO1M(fq?6C^np27eU-&((gm zyg~}d;VE=tayD7iUo^mOq>61rUvdp~EZYppDSBUE%VQpjCNR!a z)EGd~M4M^SMyEO`77g*mBZjGkJLgw;vWGn@PQEDuzjE<|><>+@OP%H`>Rr_` z24?eAn5uJf0v~GNB0um-5jMt;28cQMx4>2q3Tm)6T@WWe6IdLNqB26W@>wlPLSFoc8a-5ryB z{(Ul}5!cfB6EAc2-Dz*sFo7|}R!QV>IyO9L!##&+#2}{mS(f_{;Bfc(x^IvYqlG=V zle-~w6(^%GaG0oAK$H2WvWXK6WH8eCI$AEbYy=GxAyz?uMU%nQI1R|5Zopglks zML+gSsEf|HJftchMHWDqg1j#|MMmiVvPVU%*x;VhbIAGaEW@*$`wY5QaDOC`>UzA( z8bEO$WwKs+^Cpxhx2C-8vC-h>pN)Qvsx<_-lOajF#Ro1A@?&Hyk z5)9oJyYtiZ_iK<7mK_Kmn$XFn^0}Jvu(J|f+j+CO?_#lDOOGD|5-CcoeTZ(n;m)Ck zPyj1!gNSpPQw*$F_u1Qf5l=-VB{gv22fQu|G!u;ueIdO;c{wK_uK!ab=)4P13YIbQ zlf1_{@=o{0*w&Au}L{QcTO;kA1G>~T5$Lr~BN<%(2`A8%e$$Ul+~tF2<# zuA9Ml=t|&dI>6wO=_gD{alcUc9Zu z+qkPC2Gz32K3G&`9J{tQ6_81q`I>mRR7ru|FmB4%@!X)InbMJRT2@KwK#i5%tCVFG|T1T$StG9nxYubWma4Qhpc5t5|XVb8awI@Uq-kg=sy59+ERO_ z*^c<9@u*3qq_n1e3EDKXe@!zFzr)|Fqq&YNzNWh^3WvB|H2)@Exr5N2YjfR;0O#KH z9a=XLXf1m+3WjUZ<%lmKWea*Os?ktoVOMi~`3PgFLcr#uqB3^qciH>#9yJWf+c0T7 zI*|FBxp90y0;TL9U}mz<@V;Xr^#*&y-QJ4J7OMMN}Z18i`*g#dQ@AK*B%%~U0&E! ziCoZuBwz$egWaaYtw8!Tt!Lbq!b?!yZedYu%0d$}QA+)|!^`RJ*PFjDGbXcz3x2(I zF~0mZiOY$%nIvH)JD*7+DPfN@1w?{wQja$RJ$P$Udk=ldY#UcLCxK74<+&r<^!E;C zJ1|#86%qPQ^8hKE0>{rpFTH*YFBM>S1Rl-S44C|YMMm?2=Qux%7XW3G-X%;^7_xL6 zW1X;^g_bpTWJN*!=t9NjVi26r5tjOV1-PW(cJOXIp+kM>(ASmFO*n=ME9PYO@|7TlhH;P9^`1!OYpZk83XBcX-HBc*GfSdgL)is@G4-I zYUY0X!%_|ee|$4(f!mpGrT*}Zn7aS$+E0?fy2s(AVi6wK=1@-Aa`tEu-mzU2apwo? z6CdA7&+KPVTFKNB1XOb?ABly`oYH}SWJeYfh0ELekxbWLa znAY#+*@_1jOJ9GL=fH#T7Qpx#qPb&UQ}2a)Doxd>gC8lvnQrGYaww;1i=uk|yw6dL z8%ZdX}u2hL?YT?I<<+)UHo?m6UgAEPL5L) zD2r%vcIPO^fj3!0H1;*c(#>}S&I{9?5mhLOvm$oxc$W{Ex5_DSxCJl>v9Soav}MN0Fu~<5guUJUV{?AeIJgH zNW0;|pM^|;kAn3qG3g|;n(+c7x&NNy7v#EKCgsunvZGd;vF_7$zP>0=RhBQ7tZBM9 z26d-?mvxD>C=Mv*i*RpK=7?m*%|ozb4tws;{{)0DZ@M89UlkLIEL)(TaBt|Nkl<2R zHvP%AA+U)0xMXP|qTtsb>46>Z=q197CKvI56tpj^z=_zdEwZ6DMPWyO4e2388!zmN zNm_l44$1$Rg&io|LXsaxsU-L<_K_fq%T{>fs1WJUdd#Qg?9QL-+Ofh2kc-b* zmJJ;DlUu7AS5C{F5>nA`(H6<|V{=Jlh}uXheyNph%^`*kK~{A==2#o5;hX<7(F^zK zS-7B2_ss%0b#~#lcU{${NKlJ#NStx1S$ur;$>8!WUfera4Nx{+nLsWx8Lp__PC#qS zwLvS#8p7%&TB-GuCrpCY@FB!>x1GZ}8>j@X|1 z@BK#pwKE-HXp!s?b45UHNu^8iJ;HE5;s2c`eX`OqzWaOx(w5q^(+BmpPjJYYnY1|c zb-V$X&l^k;>BJV@%-&^2#Aru}C}hE6l{Xg^CS?-aYUg!%G+n7(&;PTRC;AuHk_1l! z|4VR4hy^T}tuNjw``uu1gYMk`7v5H37M~dQ%adHTKPg$Bgv^TMBM(wUJuEEiX0B2C zwdrG1!ILBZTLAYPSJYbP3~U~OR`dW##?&NPzmKw_C~n4CU7_@F@oD)wb>rFe0a=#? zr8G_JC!6}#^RbtOeS2P>l@VJkiF2UjT?T|vMc*ZV6euOy2AY|_C=O-MXasACNr&kd zUENKxS`G2s{ul;W4vQ(|=`C9I(HKGH%}Y*-Tgt zk(^cRc}TvWy<7sI-5VYS3~`DP$*{QJd%B3n zHkX?|MGXbU{lbLg^cpYG^2Q=uPG&Td#a%fZ?Pgn`GH)HRbHWhb3Y^LrJ z+7+>L=e6wS$gt3_NF=y$83$N)c{{JH*xo5%GfW$p%@z>>ru`1vsO`@nwir1la zD3rv&{qRlf^SbuN==mQMo`06%-JO4;sY;=9N~!!bm-}(ma-Aabs0_e=6p;g(xoujK z&jrlcitPA2NSl!LjJv0g@pd3{^Eng#boCBcT4*IX^qPkdd$_q{jkxkg+3e_k9bDVF zrxzdF%oN~`ET6k0!m5X}ITlH#NRhYenL?#1l4um8YYtT1KAA37KA1@w_&)QBx-@N8 zn)H+~{#7bI-$JpANJ>8mS;5CMTwA?4uyw;K^dWo-jsNC+o)#^o}p$uAO>WaaD8RroZ04eo1})zK*=4AE!Z$#SDj1 zlf3S_F$o`2w$09uli>zkGLzv(rA(A0e~o8jXfRGlE>AAOFZjxjJl`{F)wubn5rE5# zeGCx9W7_DUOUz>Z_;k5C5)M;WqXn>7juKm%F(}=*%65lt!sn|i3>iEXO|`LetxQPq zta^L3hA14bL;V1j2Z3G+$cd-|DkLhTj_(c(Hk~J6$CEK2xrq50oShdB9uK@(@i^kl zi}~3n)`R-uSqd#;elVo+30++{iAoYq)wpxX8cm-4+`Ubg>8Kw9d=+bN)s)PICx88G z#j^NPn2Xaxn455U?6MPw;VFbTrT4Jq#J!KEP2(}i8kN6lU@qyO6rUUPXDY~mrg;iM zl{pqv!h{^Jc1=_f2q8i)b_!j_B7&Nv-EI8dmx$zz|7p$(5i~J9fcQrQ=2*^F&^jDeGHnG6W6QRuL(rCY?jN)@M>r{i5r{58;^Eiay^j) ze(+2w;#2j=&_(aQxm4%!LkDeFZ^X0EazkSW*Q}{!&f|O9=OIHm55>+t<>Z*~xP`ll3PP9(4UE(tg;YTZMs6vEvFXl9p6D-!6OCh@u9 zK?l~Yy$F39t!t2?Rfi*A&oY-6xY|I~fTA_cH={0mB+dN>6_y@5OGqKH*r@7xrBzTS z?jn@TH7#1-K5!6MLTK$>sH$i+ZPk1#L_%NmP+BwJ4Hk8@tN2;QYt|E`g&RdW!Bv)Z z3z@JKd29AkJ+%3+!pj9zuufH6C7r<>6Q2kQ`!Vq)n*4M<6%U%3Sb&WMR-!0=dNTWJhQ_;;pE2&yM$k)z zvAx19Wgp)QuWHcyv%nCKP2l04G0V;i(wnzZqE}TojFX`oXUIod$@WaLPk%e~@8ig< zhs$GhT30OoF=@1DrB7iwDfGrnGI5e37JmepVnvtXx`x)CXO5MrokRD%if-3P`Q?O6 z42&Q^8+nH&2^3=|nX_^%`x~zP(N)I1f>bI|vx=8Z4?bezvlMvd0F(>4%c5j2qK}qA(>Z_-dk8MF>tu7#gvf!ElvcYqf~w zhlpWz>jFob1nGy({4+oILr$Dn?}doNWJ9sBiGfO<2nv#bp^QVE zbbCTl<>QISt(*pJf_fO@Eb$ygWi|I(%4jq#(y^kVB*<92Sew=I0w{znXX%UjZGZL* z`wCx$Qy%h28Oj{RJFj5Ntk+QVsGK;D#ZnAx(tGYXPv7p)MqbyioVFMcPF;6L1-od* zvF@qmP(sRAC8(3>ku)c`F~8*=CZ40^1{&QA1j8_*`>u-J$D;E5bpdJ%O<)5WT4SSu z6i_ahT&gyv_jCF=qRVh;Vj*T*V>GTLpQwQylz)+8;JJHbFK0X^_7geV!4LQ9Ie222 zr_}N#;tFKwb>T&U2ox7IIc}yGtF%LJ9{Z)rS*t%K5eY!Srqz%!hW#QMRXI6FAgX#f z@a1guN(Qvq@BKtnUguvIs)UtV7^7&5=V8TA z))r@zgx|X{{6{nV@6LSomgM;x$j9}yJq4pI?ptt8uvpAyY9cqa6g4wm$!(NM!e1~f zRDFw0qH*$=Ed~g`I5z>W%s3-_kHvo(9kD*=DPr}1sUFkGmXE87Z;6>$U`coK6$^}4 zeb>MXkQ7!ue{q;^*B3|?#n!T9K3-Ea=ULcP*{sh*sS8UM7up7E?)@YG1n1;2z__+Z zt$)xes*%=pKN7~K?%&AkAk)1?6juT}2gY&_(M)DBh*~@+G z;law1T-yTtPh14pT1xY;T#eM5hbrFeH=N5SWGj?SKNZN^u74N8|E)z&p%F`KHeBe< z2t8M!$@+y9bK`k?f=|UM-S2;0rYO{|7xXrEy^OFLf^#N5v880Z5ImyrIkcyEF7=2@ zv(3i$;r*uixEy6VzzMM4%lB8zG-$!uC7HERd-diXyoj1%!o+l0mU?>vYk-#*G028e zn|aqPJn|wpJN`Oc<;O~k- z0EBp?uzjSh-jahXR9wC+Pen*1Q#(OhmwIHYQ1G!;3}Bl*iAy>!%4!ju8}L2Qc-^G2 zN&YX!-YH0wKwZ{s+jg%uSKGF2+pBHcwr$(CZQHgnJv(CVnTWd|&U?L8L`7x(UuM<> ztz_{n6{pL2TGXAT#nz;l?3)gHPI>!eTARQ-DG@=+8G97-o+-&s+gEw8KIY9crYjc7 zpJBd!RZ^zQfM_#{xC5s#yOrnVV9nYoCf1rr7ccmSd4ZAh z;SA<|mJZarHzNH*$BB3!M8?)mDRd^25NRBnH%|8x$7X_JvFWlXpJEkm+SjoIz)(i9CJ7bhafL(4}5g$EgS)gevVr(ifV@f0_M`Z-R zQqtXvHf2U^6v5yyFnHj{Y;1j^SJBSxWX+}MDs1X*ixeWF;xM=XzT{X#t`sqWs3f1> zS82R+c}qr3)KRP-uO+oC!oez7xHQ=!oFBCPw&&)uEL9{P%KF# zQ#~P*N#y96e)TTQ%`{?>P<8@ebtOw^7`p2&Sl;$E*p_r%tjH(O^vy>-v>)vZMW?ry z`3ywb@qvJ#G^Z629r1_k)Gvs-F9CX_NdZxc0~aJ+zHI z&3v^!2zK4wGL}MxTRU%`!FxF+Js37r{I?0wj*H0|45BQY`qrtesxrW!Ogm*1%%!Zq z5$^JDhC;c8qHia7)so=oL*RwpV04VOtvbq988-6Zgf|!BF~Y`s0!-9?)uf1E=v@=cwH`iUtsQpp>qet^0Y6|oEv*(6q05K#$5{P=Y>g`yWnaM(oH-~tj$~HHl zyuS`&=BS#4QCXh6yT0Vf`fZc#T|P+PA2xEl-QSLB8%!8NrLPkuF>A8V2srk&lu>2W zrsu#d3_eP#PwYY+TC>M7+ad3lGoFOS4w^Ab)pX9YLbv6UfVt#-_3D#naE0y7t=RwdRFFLsJGH81v#*n90*)NsF^asyUIA2q!$K{4PRI1;*fIu}^@E)bZW1Rra zBpq@ZWAM7N5aXIHh`i24v7-Kc4M#@=32@IqKb@k{p78GkCw*^YYfCQeA+pd{?VI7< zx`i9kwH>bgDB20!4M6uSIds9AI~|$ez1V%(u=bfvL#Y$1(}c_BE_r2s-d$8^@fDtN zyNZYtLNAs+Oqd?pFTNLXVF#SY;h^SdYRyoR_Dm{(wzLcKoP@t`BDXv25#dCTY@OmY z%T`P{%VjkgCW1iHdg?v`g@#g^dILLbP3R041tv!XGUhR)U&XW$cVF)X1sF%X^Mrw- zh$INfn#+9A$RjSQ;mc&@jMJrb#i@DadAGr{rf+aA1-X5=~y{2f4=D!UM-RQ-<-jJjI;l625c<O@*6hU&(q33G2u?;+g6NEp(wLyl!*(ikrv2 zSYrtB?`U`tQ%VGlrYD{}+R?p}%s?Y~W8ldASWr|$ruo7wN=krRb3QsrsmO2@M%d~N z)f{}Gb=V&dKaLj3`6$h%+@K#Nqg7SozgQ2Mi6X;%EK73FPwnfmPD_sK24!5fiS}5= zb`b zFYs$J!;Q%B#5bY}sU`$@*~yfhh30a_@$@6fg=tn~1_F;+7_5Qhzd4u;R*~3RR#gKU zXS7#(*W7@xM$BzN;M>1=`%oiNR(?9w?%0AB(iwwxvrwM8APcEI|5**K=&fUUU$g41 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 $- z;a&pZU(5#ZwjIkEPS4JmyZVU~KZuX2%DN5@Z>w!=N>jnQ>V8vX{Tci)(h=Tzc_M!7H95TLSSw)1;Y6_%qLQR?MVdW zE9X--N)TM;G%%f#=jqH-R)0s_3Ds8LtGI5Kuy8RXl{P#ZzAlgjsQHFcw z2<7UICY|rp#wQ7R>~R33ETG)!qf=VeRkyU0sULe}!sj(V8>kbwp}H=yke%LLBKo?` zzE0jS@&awk*grGr*4rmY!sAO!H1!1yFkb%k@z{_2p zF$)ySq3Qs$M&6K?``8ZXLHDKj!^}@!@iI+MVVgwRp5M+H)c(FqRl{iGJ+i*OOC!vC zP&kQ($GTSTg_kF&QKU#pTdV3hzxk;&M%wwaHpS}QMTT+QKxTtEZn$L|m0KsgjMOny zW}-k;E(x~15?+Omq7o^ySXWNzZAs7myGN-Ih zC|WZsUTz?^t4fKGIylwEMC>NzF1cnPKzn!pnYz7_u?$1B1T?Tj1lacr)e9@h>>M0` zy<2_}qJd-0nkW&$Igf9D=Mt#g`52(`0H{#9z@~gUgi@_~T8f6m?%ea0T^c9Hpp3!# z6U(z6l=P<27?)cB6v2>JYV+Y~0uiV*lS12trJ{DAPF+7?$;_NEtdE4a>n-|G1dsCY zu?ry8{3i)z*81w?ndUsSYdras7zBUV!V<;71?{^9Ww)K=$4qtfU`>exhR_cF!@F?< zwxQR?I;#f_pKE}y7Q7p336y6-aBL&R z%E0~w8!?R2BXC^X+wm^}l-!+%C3PmP(V4gFZ?#!35Zt3%2??KZ>;hFLA*1}gUSoO! zum+fOYU=s732fq$FyJ0NIUlepO+tNX9q`mjH#Jw!BYOvP{(!;v+y4Jkg8!$m{?9xf z2m60xpB(?o37F&mbOPSdo=QDtbJ}@TcOWm-4J8~PzgBG{v6d>s$8&x8TWEzgEn|XO zmSGYZN0-t!(0Azn1ltY4R8{F3+w-s>bSZ}b0b;k^ju_wvPlN`J_-*{t!{75hWiRT$ z-yIS3$==r&u@V>fzV?ICz17e8~S&L>`k<_u?`ChKPvIBNL=)CK7Q9yg%!N;eSsA@ z?>J_^arErdIXZgtR64!!^NA}KD$P{z6^Xj>PfbxCawk=M=+6OL_J=e3_yJXUP|vRI{hPuaK2S#l zGn!}x#Bcc+p-1%?c=WschWnH9WJoy2Hwug~tDNw?0_*_8&8rgLaiHx_@Aoq-I%w2` z4O@EBK-(DPiJ>aHGQH+KK73=# zD1;XClxD)FaQRCUEu*w2C0)z{Im6_SN}JVAZRlDY_J9axiKs@5Dl*LTcgqXPnB5Xn zQ!bP?>|);+nm8L*{gp;~%3$1wIyM*QlrtgCa_v*x;Fm>1Pt~8W6LXwTXNZ{Q6J!CD z=>Eet*f9JfnGjWG$!tr6$A`R>j$F+WgOeyTNVGY#oj)nL8u$p^cewGR8?M=CFuUEc z&T3Y1rHZ9;r>EzDU3fvQ*ulo^En(EGXFmmYa04B85aI*9Y4@Dl@)q~RspN>rbnCzI zdJ=~yQ_H!=SS6d-pO(ph)z>E+&o=t?*<1&cY1KIPjE%nOA%BE_-7m3N|Dt!449?fwOLg1Q`H7BIZeQYA+H63Lnc z2c|%ho7O{zY(3g45P?XGXmOqcFVpEYsW{vj<(B{oGKXT7fua8JYfp*So1;!Bf&ekU zQ}U?I+!qRxQcGtAnFSwGjGAw@GQnwcZlw+rTn^9H$klA!mHFkH%%2+&sLgs@w1b6} ztf6~aB1tEA#rtWAA(-Y=Q}h8#F|QQ~k-t6J8avaKHJ~tw+Fe+&dnR${$v=a%6>vSi zS8GT08KpP@$^Es9!24~u^8zwqfL-AoJko;>IfdlkU^vP|m2#+(1v_Y)WG2_E7t$-| zWql?*pAB)T-m=a^1Ep@)0R5=I1B*@@#S%k*x@szsz2_I?Kx*c0fpw$}x~ssg z;)fBpXx1GV6Z5;KhP|`SB?%w&IVto~IqR4wqjTw{q=y_pLQf4x%Be_5(zw^G>{v=4 z(L)-F6Gq3-nByD$kVMkNi`Q5fJ0`j;yhgS81C0ix%$Acup>79)(&(8Zerh&f%8;-? zwFapGqweAJ^?sTbM@5;eiPr1;yJ0ZAnZmIbs+KpMbyPfGjpakPLQaFGhTPP>oY+KW z3c^&|zXeTEtaBlcjHpDt*e*ji?|`khk_Gbb;Lfmc-aw*4hcPJwxUbqJ*y^36h=zPh z(vQ10&6VN9dRI|58$x|N`Pq7PV(?0z3_w(1DLxptmFNFi?;-#dcyi3+DF8mMTb{2J zgRU`wv){KmF0?S2hq>IQToxvG2~zv#@+Qz+S_M3UyZMYaCmsx0P7p2QG~J#8%uJks zku>xuXgRvz+M`YJ!t4MB3f!D0+wsw{iv^DrRJ1Uww%I^nw$C3!^+(8!k7ZtARxk|^ zl|0Ba^kio2vLxV;5kWazU1+l2$Kda}e7<^kW><`o1}1gFgI)j6JssktL(8E&goOh~ zVz=vy`>@>`PIx?zC{vlX$F03oUD-ieRt>ZmFA7$FgY)>RRrfd#my*yG{tjI9LaguF zxh~j4IVfA=AflyJ4{`cs?~3(Ba}p4^=J3@Yl&;VA@pKPSlwUBDc%Pdej@YhP|#MC7q>M(OFwD-60tm1^3di2{V>0k9Od@dTCV z+P?CX0xp)+>aVR-f&+IC^f5j`V z&K6AK7W;&}*K9g~X%co|^eNC#-GZQ~_5SBwt-;Fuq+WL4?g3 zJc9k+7sAv;8zKI3uo9PWSE2l|WRHI4sIY9YUT*N!Rr4(;)5Oy*pD05&S+A}72;LDK z6=|kn7Oruh(D{V`2W=-+R$v}pc>858-0yc)@t_5TdXT}tTMdn_Pz^LI5k`~)ukdEI zj1Eelb>uplSCAk7sD^9ND#Ri%4kg87daTn|Q$s4xnbgeCY!oVXE;`QPL1IHwD~QdP zxw~iqwJ<_48?1%@`^V`tF-T(fOin`FEcyXpo(l4x)I`s;1iaTlp=+RPGXqM!N1oX> z^I{9fky;PH55YbxEYX5s9b|AjV}3@9*q5**eM~E@s1h%iSL8KB-meVRJ-%gnMA?hW zTV+X9%5$jw>=I}lDi*RsW7fz{4Y2@MoDRKjrgV>>;6OCv=tjxatO)_^bbCSnub zl`zBYezKGD~5Qr4D^n_D(+L_yS3tVFWn?&L!yH0D-FHk9unYE{P z8x5hu*>uctfZ%iKy{vOpD|&>FHy`!lXH}Iis{r}BpO=M2l@r*h&`uBRjF?Gj=PZ0` zyoP`m{|yP?TQd)%J#|2BdR!*u&yH7|g;KAyEw!G7w$vUKILS7Jd!DydX``bb8td?_ z=K&Gu7>`=p#1cCdQl273$S)Q(nsRSsW>3TB@AJp+R<;XRb>sMQdej4jry9r9Hn`az zlgH=l{(f6JGbK^@rIyMDUUj~OX1-FCTBCQr`TbVfy&D+BjyWfYuYRRt%`&V>&7!gSF*w2}B)_F^(R{)?4 zYXWf)c%jc0lO}3%!wVO-lexH7(M_pUY7uc<%?epm@iaa*oTIMvbh*aC(|%`>dihJ+UK0hz?_@__XB!P41gpj;l`mWF2 znW#0vZ`F5D%s{V?|7dr3r1MZ#+Gi72LTr(Yp}5ObT|EFQ5j!|;>7YG7NucspUQzGr ztQaHzI3mFI6wFO_)4}|k2m^g!hqRF9E-kXzU@Z-|%{#GkxM+p3A1C17PGd! zCtydt?$qACFD!_7MLI)1=Tz1Ay*~92nq*y%{pZWGLpOvRB zx{)#Gy3ddULs(T6FM1vD-em4Zi$Xuw1LPd~KydYQh=qyrT1F>jaaPV&nXj1Od>hZa zF-T`f>&FewSg>8Pt9@)gyuH-1TeU?E$&|Y?hn!;bY*1@|p;WzT9fAnit3(e~taPiT zme8RmbfNTVc0b5<%vKzsqDVs&Tj*gA#62KGq~$!tkTWM+BgLTs&?FmG$*rs$wC?MH zCFTj$+gUT-n=%9cF#yRdrsTevTkfy4+ZCkH*I*GO+}AlIfdF0gWkaTytE~S%e%9oW zt&OPG+@Ox99RIuHG~JIi(p1M0rIZ%#d{uz;$4+>=$Ni!`m zUyu&E|EVNUPCeb1s~CrBKtP9osaj<^;7}q9+iN8-Wc(R*BTpuMy~?-S!S^;Oy?IH- z;&^Ds45z#XLQ@}A!I|5N4Y86Te_~yE#VIxN+hy!WOP{bi#F z@VR@oAMgGq9@=RaKBo@HfDVJTl3uIg0N-)UQ~ev4&A>XNk-x1ghkB>mU(M}dt^PIN zrvcpHp-=*waJ(>-iNg@Opz)r%rp&?x04`~@6LR<#Q2x@U|CU=tT<22stnaY>5A?vu zCAl5YPla6*10ne?OUW-P*Ur7b#<#au$nNM6L+zQNIlRnDQZRY1sT!ZHVet7mg;oil z6TupviEHaOVT%sGWH7_So4|%mIIs;OcuNx&#tASgi8x@4z5eLixbV5~2)%AF& z0d7uWi8jFZ^0r;&Cro4~@E{zW*pzO)wNB`=9lze@Vd2(hp?N6H=?V0&r~~z~%1z$y zlI#{Lq~sra`egk(vhr@(=1}^1f=@H?QAx~F>|Kfqax{i-KYmKQqc^yG3mEma)2pDo za3eEKTulLMZUiK5pq&ws$jjl)FfVjzH>N@?G77)(d`KRg>;^J+2h?`HJr+|s7gTGo zK)5k^=H4_T(wi+GEOsFTr_$X@LbJNt_%T$GNOP$!vWKLeT?T#_G&K(y1sX2h-l>4J znBsIHALUB&I3Mp1JEoHqp;{J+-PRzb*`uL6=l0jf@pr)ujbwdnqr2$AVQI$SuhU94# zdv<0u%(+QV>v$=V&7Q@yhNbw%-{o{Y`Y-pWCNG2cc;<^p@A0gSs9xumREe|k%w6PC z^L)hFgx`j|j*Br~2W&pjygvI+3|#R%tb6;XcOW^cj8Ld1Y2jb3^o+r9vYi;6UOJZ2 zdO4ovaxRRNn7#!MQWvQo+hJRp^v_+aCjX6CIVGy&{?RqBctN#E-3D=eVZ30P>+ z5GM|J>UcfU`81R9a$TJ1^j{=0q0fExZ*>`XCVPN6tW`hYIfTpX1O^jDK)T4P1i&Gu zg>m!{uBaQO8r+nuR?=!$uKh6AEU41F6xyq`U1s3NZ9h)Q>p%S_)W;7r0YJ&JPbTY8 zQ9LB4JgNpzcDVQpP+$t^Zf3}I7eaTB+%$crSVx8y$3x$6 ze{NX2Oy3R^_!YU7kWzh#>Rw;5Fmb8k&(q`gfsphAwL3fGmPrOC5+9ex1|N zCrRxWB_qlHm139YHZH5MZ^1puPCR;&=v%qY6>%Dq-`v&889cyKoD&Ntw1GHo}_&Nn~gY7Ae) ziTJ$reb>xR`%(CT0at}vyxEL6vOoeXH$8S zv#RB02j}C!z1+V>yDPZE`1Tw_ys6;ddRl zRI(at<&~cw`{kK%DR=jNrQn4nrpyB|&)IMJTpOMH#yQ*@ohiGR9vR z#9}v+8Bj;0IoHSP_p~azk3C_koQ)e05^75=ooS;Vi64L$od-jt!UY5qM8&O?7gFMi6lSKWJFKCEkh$C?IORj!%nSla{A7BVk6TXgtjpMK%^kocn>dgPjl?QOR|K! zsKH6>4iVtH7j8FJa^iruUTyY#VMX3ll~&&sPi0qG(4Gho&WHf{xE>9JC4HUo&3Q0B z8XlgF{2mMqpQL@kT?#UsuQm935>aA*SyT=+(18<{+=73sAgQP#ao^tm4F8G^GR*pl zR3+RyUOKJsiq4A>GEmC9m1hzgg2I@o>52)g@VM-bM~Oss(Xrp*b-k?H+|80oIOCHs zv2D(f?)#bLfB$qs*sQr34IpbU$?-PnZ%xob&WmY*N6Y~u+uT)l=H6t!8zQ35URNr_ zw3gYEC>?SSyK5DLt@7oXI_{Tk8|4C(M+71cZlAL!-=Vz`KtygM_Xr(ekVz0k3F=d#! zO8~5@YY)_WLI8tn7Pkt8D^@C6AR5f?-8kmMB)W0oioAK)eP~5?zikh;HBS2^t;a1+TP(|@%~3l2 zQ%niF0S=--IMW-D7rl*nqpkygDt?gOc7Y<{EFe-bblA z%ORrj_$XwQEszWOMlDbG!ASpv*iZI^h`+PO*9(imAVEwkeLL>J=L`xj-yxwETzf&K zS>=0GH+I)z9a!g1kj^E;v37nHs7|1waD^Iy@8@8gsh#5aP`rj|O=IA2$O~KxXE_m@ z!NBp5wg6Dd5(oDzqawVaY+)=t+qMew97;T%6ey#J&mwLnR8-GCF|-xF*RkfFhxMNh z`gBmk8}D%mz$|Ock#OO((}&F-y_P$K<#l+1`2vwxaH5Mr--%lHqP1mm%)f{jx`;^{xOPix!Y-pqL7Pt^`0R( z5Vb@9wbBLWBGq^rto=P-YkX{uEzP5g!P3gDn_rM`~S zHH%^-oFKx?5CiMBmr!{xWAoDC?FK|}Of1b&&MgLA@@c;uY9xYcEQ%@^m~W!{5=>Q* zTBA%1R{C0fj(9GAW5Batm=Io^G()cXN4@AqGO8_bc_gPf(2?q5^e@u6MN>7V#r@Le=|ol-}Kc@ zfDLB6&!cijprd5hV8pIb0x(PfnIQ{yOxGFN`p=h=CKUHY>9ume7GAhzHW(ELGl- zc-jTNplM)hS%wGOaF74Z%}TFiAG0)fsg*y~=vGE=E&ybPOxlVGndGt^%|o*cmfXT6 zJ;CiJG^$Ee+6!8F=2U$ao)aki+vVd^>{Deh>V&43EfK;vIh{jSe%ssvwb9o3bxPG^ zs!h=46eu_7ZO=4h!)bby{XvXO!c};*VPTFkN9+bE)11V=scTmZN0|6rDGQ)Ha|2T$AB2HVOC)qtwg6Ei`kA2_ zNSKE)USmY{WIv8*3-noQRcYhZijxGS7YOmdLLoW|W%K(q8VW3e^@5iF${TtJRI*qC zQuc2M)Ovm$VK(gHAoq=>GBdf%Gle+{bzsxj>z;OB@vw{SSd+I&n+_^-akHs&XE*92 z;6k%*r*@pCoDC%nrnoV2Jj(;3@F;kBSO!*pylO|*L;E2^Qw2?M5oE-qik9FS5}3cL z>qdndH!&H89Mi!z2PL99w~xmJht8t*=0$3gzC@CU%18B`-b|^pUx;}v;6x!y;2y<20hAW6qd&820(j!{EAzSgX3SK^5XDXifxSJKrH`&RtJS zWH`$1oZ^hWCC|9{f_A%|lAYTAo)RRhlY>Cu6frBP4(8yn6^n-~e{S?RWPZAet6bCk zU~=%QP^cl6V~Nwb%1fuya04=y0@esbOm|3|MB%Z`2>m(B4B%ma7`X8icGMp98+N*8A z2`7vI;baV%1uIU-wN0XN60M7C*%gw2GKws>+`ZSN>=+urfD#38FD&MG9$D%E*pP1z z44bATvP!F=1x1@EHSW@^ij!p$4?9ZJGH3=?@P zxqle|W?O&@8&+((mhlBwYplzFM?i=u&X9s(Y5YGtQe_o5ng}t*sG>8Gu}3S6!L0(d zQY`E|4Q!2@DT?FE&uWD|KR+Jj``#{_D)1Pykx5QbnZ{IbTwDSTq40;t>yNte(rz_R zc5y1Q1n!v?rM6U_)fS`-D~7;L(kagcQ8IyrlkI(H1qNhOuvkf(J)`PQo8bGmUDHTs zOB7u7?LzGmNgj&@D=u>IcvhYcvm|0{3zrcez3*y)5Q#HKA|AIKK@(}*!r06grp2GJ zXunT)IPF0*%~Gx6c~KxJ1y(nNoljd3Vj^^T*<*b1Om3fK@~Cy8n}{? zYw3bZpl2mbx4w~x6f}trCGr+v{avdhG~<;iCNzje4pPtf_mlER5NsR66%m9jax6+V zYK2_WwEO~Gbz4O);JEF9MQA1I)lGq5nXwkh`TEordbkLvILe54%-Mk}LL{V70!E9% zeowPfGy1DwFwlghh>H_M=6inR(ozMk1OEgK(dBYeXSFOon2$(P4D&--)0XB;(%3fh zZhTV?S3?L^R^p;Dku*y{#ue?&a8_K`ZAMN+fO`kwtfN|QlFq1lVr4RAG@?r9QpDAz z?m!AMO3XGtVLvn{@7Zvdi44TKj6Qs3UIyf1T`dRT>N;JK%`F#9641z?@%U_KL&1e* zddX8ND87Wfsf20cN_T~RCz3Y-vX@X|-rDvQ%uK0TU& zisr_)Qe$dXL1uLV*b(Q+C;DppYb}E{*TBRfbqOl0apJw_uwB)U!j!NWXIJ@)sk>1m zqPz#xSuK@^{cdjC8r|3oEJ&vc(d5m3j?*X|X`rXb)-oi+%wiA%>3p={ zm(?IF1NG2=MX%Q&M8ZvC%@$$9>}Y1|Z5qsw@lcJ6#H$tcyR>T6Wz1qnu8G|B%pkz! zd%}A_EEuKu`wd34ujrbYfKXCZ)PJkza1!xfwLr1m@ZgX_9wECnbffZCF^hV=!G~cf zrdIy^Zbn1#Sn{8YjHaM<=sq-?jG{@4PHoX$A9V&3rB@;II6fri*HAX``*YuC_;qJr zqEjN3wJI;uWrO>DmsQGkXebuP3u}m$5Opc43#U?z)!U!IUSTm+zbKL2#3Qd|*hH3P zos*8=8JJO=b1!)KlWUCu4YcC3qqe+WKUm(&h1he5Aeo&!Cully>RI}el2$B0`&O4W zh@3O=Jz6H-VU)uiG?6=Nln3$`%v^tw6nprdX_&8~6{1yi@z@~Wn6#lMVhBc6YpN0R zUlpTvW=sVd_FDz+>3VX}(0b%5f7um{QG$5U)ExE;yD${pa@exJa7WOXZ2JN{gUj0+ zJjp#o?M3QA6;0BEjacPb|w-rUMF&6kK??)ZzSJ zNFC1q6RDH)A1g-Vi2qiM2vTaG(o4)3ncHubZEC31CL7t=*t3$8rCfKPkb^UNbNP0H^}7QU===FU?tI)|cE*Ogu4aMmZm-jrsqno% z>U_?6^m1~*L&SHf!cr*tGDJ4wte@SeK(eOZIxALf{v;%+EE``Uh&?AP_Kd$;a- zjqcR@R+#h~UhfBYh1Hww-qM@yU(;TEI8xBtCx(KAtUw@NqgsdN0|Bzd#F7#CPKiJ+ z-8%7uDT)D?=IphEOB~d&I19gTKwY;AsR*dyn1GOtc;?1~D;NY>&;&-e zOsBx3XfY%6{Z^>_uWm&1?0YKb_eDc&E86FqPp!j$u9)Jf`*Z#Ero*C z-|XKxf@pxp#4`L8UbKnz$p%7^Gl#`K?RWj!y_k{diFjtq^$1q4)HK5rY1q_+7l=te zgegCaj(7(-a|6E0*+Siqgsd&bY+Eqp&vV!~ zrvu;UsraN2v%tu6%1h2JB{US*9qT74(?!=n&vw9#;$Y>-_X%4eiWxMHY)*s;a_ES4B8 zrd2=TO@KAY+*D*Sn$R*MheaG^nz*bfnNkg&+E75ST4V{}IVwc@;634D1|AZj#ggmb zOEkWUG)pESPiTvDvBF(`Gk6uL|EF-))NW1Ix7U8EQ=D7l(?$BuQCrA%BCBB2!&-BM z-J%RAx@iD}dQ(@^TF*vqX|V!gGON=*%ZdjUPSI_*ZN~1GDDUkI@+8vh(e**P0V$*# z!=pUNg=|C%myGb|QDQU-Z3XOBpBHd)!fAFe9b`g-gsJ1iHgNv!yMb3g$S^KAgvy&V zb63I|23L^kDyGlAQ%T9tA-PKz)E_(VdKj5!w#v|$^&-G+U&vvG7Q_AFG7XAaO&tZf z{zOxtaroiBEiF$Cy1ZQzY-bdlLMptH=H<75k)_3M@eWhJCQ8bTbDh&!fDEc)`RuP5 z;RqOJY`%U)IWC;p+p2f}Qg5OzAq!z|Gs9 zkzhlMq|xsqo(oV!z6D@}b;0c6R47RcOVqLRw!bCqD(qD){pW!W7l^2LmvsFCZ6SGZAK$(CPU(begVcBpNk*CRA0d~#=1|utyTYE zk%+_*`8bke*F>+b05t3u?=vD49!Z6OB53g~%OMeg3&2sUmnc6}8}MXUh3J9Z*0p&K$$5G#gY7m`0QQ!o(MW`FU){I7{a&~C zSx;&)`(eWG(n*)-=={{SzHaX;9iPs>y0PD(vW!)fAO_f)9+OnY8@X}H!}K(hgh?5L zRGpyuKRmxjS?c`VT|WHgibba3MjZhW5VBO5RZcrl0Wp5mUiQ#jYM_Nt@u7{?ufPud zwu-<^hwwm2Xh!M;R}RR@q}j!2l)^Wx2Dm#KZ}WwL&onF6%PxlH2iv#v@{CCn72Wq= zI_x8*BG-AB5S)-Ii^+bdq*NWj=^;E=foY&nLxP`O6=30i+@M#)9255+Fei0BTQu%L za0HS2)c;bWn)G986vhxd0~ud1r~hm8B53Iu7d|@9hGX$15=s{!4S$6r7p#Z-kjx~@ zsJZVCcF14@_fl5TExK$yss|2M8b`~`0Q%IKHe=l%VaQomEbD1dt;C46bv71I*@}y9 z&qgu^Z*Y{|#{s1czIk08a@3|Eoq}>9*}Wo9xx+MwqLs)JQnRvPH7dg^;c6dNc$UUJ zV|6gIrPVgAKXpH;trn?zvN55)>)D9tCZ+--0V#NNh&RuEy&Q_*+QjIeg^sKfKp%r3>E427e@sq@=8)jG;(%PGt38}FIg&reF@K$5#11{%VqVR zj1P8*PqNl?oUry4Vp`V_#7tX?F-`7$KgO0UFryP$Xsm+epUywx(jc|O1}TG>(*zT3 zF=RH&n1J|@6eKQXKvex$CO$;0pDz+Bjs)QP=&FpVNBYqJ9I^uWFw~4W$HVyIY1(^* zRMOgRdoM$)Y+^QCYTxp2H_fU*;V@^Q;t&hp2s^AYs~%LYAr{}PLa|v7{+fG2+=hG) zuGxNHf}t26_(FYf^x$}vK@{A-bShaEt*OA!^}#X6-f3IPX;Fzan%nkJ&%eIkExJ%9t9I>={wj1W0(}5A zU_&2WluLFP0m)y9H7opeG*}0yKy8YEAEac@_1d@%G;R3M(LfakH)k$S__!`{XT|J| zaXIiL6B98af8m=W$RmNo#cWoT&A6Q@i+b0apAwtifin8DguZ=3FFm%!n0>OYm@5hu z{^DEJ(fL|BHR2bGg4xnmGLEd0DG+wRRQldKu0h+W1?v$W@^5jR<4Hp5P2B?+DnbrK z7czyUUs>0yI24d(8?pk$oa2S@mW~S+4B^%BG8%?SbaMcFtT|i~iPX*_5cK3!!OAuq zUBB2bVbey5KOi~oB%EV0tT7MLr7y7AO?MS)wl0_cv;oxDBE9%Y#YU6|+K9RsuEIRn zys2jq#gR4(Or0UkCl+)DNJ;!f_GWhg=seDL4`eo})Q598|I;XTud#?xEawkFt75Bd zWy~#c0Jg9=YX>w;YHEPzikG zh&l)-NLvaS9zDVeY{D_}fQeY;MZpPbEB#;wF$>ruS_UE6oR$eEYR(b>DpJ@U=kbifYo(1ifZ-pI&pfQ``kP2OML@U|%J5O?UfNizuQ4MpXkd~R zLSOh%%Y(q009D16(^ly^7B*Q{)UZSonYA?J;G<=xlG6aY=r0(;e=m2ZKCytyNe*Th zAa*?Pesb96q!mbr4x(C$em?v4gbF#7C==970)Hp7Ft#<-VyHTH46rLDC;?}s(^>Ci zPJ4!IN&tKG+A@d3#I(kQnz?B?#uyry;TCsU_<{ui z#>I5^N2{f2F(I!!veh<*1v}8pd|R=V8YSjo@+NtFi=oAYwx;S_irsnvCL1%_8QwBv zNtWpCi`6t-D1qY>Z%edkjVAGs&Mt6`s9)W!^Ist^qEaUozq4eGUp*FXUPAC`Gdbsi zK}o=oqU`kQs2YuNdCbCTe~K)%y{SrsDGufcm@j4DJK$yY-F>%Hpdytol_q5ybJugq zbYlevnlw)w#akVI2LalWNVM;03;vE6MPWnFf|VJ9aG?OR)*it)92iVT5pJY5Jum1! z&H8zt8~@dzQoWd;C4!*5{q;(L8itl(mLev};0+ih&XTbB&JNcdyfCzFCEq1bwLSKD zKWhrkHevqe2jcoxmWcAvA59RFML&ju(;p8aZW^*%aALX`g89HL6K|yFZw#`Dx94Dg z0|6>}hYG_nMCA%nbL2`UCY*4RRts<$Ve}7RZRNArB7U=34B>e=)SEVj>vaToWgr`2 z`^Y67Y0>R1vvE7;S8~vMts2E*kgQ^gW|@c*;p4#)3znu)E35ONFwAjB0y(+{1GMAY zF_?1E5fjMs*uMm_; zoF;r)OxV#oH-S+4k4FYP;!voZt~?oi>%$Rv7WPKC;r%JEZecZb@8sN{;fO=gYQ%v) zpWh?-syKAyfD9P7F(UWNKZqKxrI`K|Vrywu(-7H%9pKH2QDn0`1rxhi9*s z3ZEx1A_$D)x(%%OKKI(*YBelr8uzhT%UWbgch;iQqAVEJE%P8nlyr7$Z^q%2%EH7o zptDAYUL6%gX?AH9PfzEGBTBzt$edl&rRIZ!6-yBG_D|8#zCC{Cb*~j}dCh;)&RUKm z8?f*}TO9h1e}eG?OB9<9ji<+#wI5}zZ0H}%{Q`toFa6UECeAKSriQlvO?CW#)`O9Q z{lA_vG5k-~gNfn)#Co)7ZP{%}Ao=RPQDg0b{sE$a%i6I?^ur){;b7iqNzxq~;936^ zkhG1$j&zZrYCJRSCFm>k->&TaOEfWIR?iT>Zlr(dRC%eQm?yEXjIlE}6tpqa=j#%kBjG-?uJCoU(lG(3|l3%2JL zCAc>x-(mXcr3^EVk9B8#eV*KkPocMA9_=UKmx|HaGhc$le2Ek-@r-5q$epOJH$8jp z49JQq?k{ivQX-Kn6kRnWKqsaZ=}IY0+9)0s2lqa*%|?E`R!vtX`cM|tMq>rYy(Bgg zQS(!2-x2i3m9nU;ycnZd%ihyeoBt@NHS74-D8g(MZFQ>5nmGX#fV04Khjr0BJ_Oi2 zxJfb`atKLNs<%+Apm8eacFARp<9S#9;%;^a-PJ-V_w-e-&6KVxP*JTEh5;Y8u_Arg1 zAcozA1|j)MXF~YG<)H?5JOY13)axQ8nXR7<7Xy6tgtt%ubHFYRjkJEu!G?u=6$B855?nu~lZwPG^VT%>3XC zaGH#3)Qxs{l{KmYJ0>=pY)ib6+DjzNUR3#sS*GX@ps<8x85s*|Q)$yM^gLv$Oza3w zb;*_sR4^fV4N%>{!u_?1Uf~$){UGoLj=Mj zo6#PqPE5$O!Oyg+H%z~5(^0%lmcM7Wf)Cu@OiZ>2$wwQ2^qmzP0YocQ7*-n*;6dAP zZK-6V5A>j~3%*8Nk{1*c~(c#mTEAXSRNTa%;t`Z^)i-%IS z56Wou)SIpVvR-DYZ1kkIRx+bjX0qa}#hdtYZ|7)++uHz?0}WS}`4)@5g!hFn%BG#& z@omE-yJL9KJjlt7rXd!%>nm};J&l^&H_H@y;(YDtdO!Gnw{SiX-)(w)c%J26Rl0v@ zR!J|lr}yjhd3-VQ00=X<88|-%uA#ScvxA3&4ZCa|yxuE2s_Vb*|5xR7 zy>juQL1vC*uy+1-(G>@=1L-gyHFCq&M|*j2Ry2F$aT^dz(#D9@pAagy@fRRwhdFPXwjkRTzWZH3W!Vc7cwi1uKo1asA-Xe3$-soa{0 zq>o@bN$am0(ue|R&`_n>iTcHO2A5*_C`WK!9iv9IARYoOai0ytkZOCdP)1rzl{U?h zbouy6{McOj#}?8WKw}gsv!}V_&1ih-v}(*r&c45Qrq;jfYfZ;v1EK}T870sty4reI z&fQq0*g33Kljy|u(5ktH5r-_mgh#0JT(!F`?JvBoo1Eeuv-13C*lRiyaweydpH0pr zn|C0KCh?!4NS!=DakGI~61OJF^l#xAa9>3fO|bKux*;j&Z$}ov^XP*#>b<;&2o;V2 zSP&@Pts@Ecc*nsWikNP7(fu#|N%_mJ5w$|a9r3Be3%!VfIn2=bUF4m0GL)%0lNhHu zXgiyfGsh$59F9~psBH+oW)Cy5x%!j>)%7udNQ4o8&O;G1VvM?T^@C(*F0QW?U{n*% zwD8+$rd)c-okTND!vOFSF5#=f7s6nBf@JxW)X;IZIHw$WSn7y=amy{rzam=e^c|R$ zQnpz!2U2rI6-Q(Up829?&F9cl#@KV~&dyQ|V8U~$s|k=Aw-`3Sy1NQ5j3jNgx!Epx zuyx}VmJgUsr4r-f3{n7gQ_cC2t1%Y<25d%hAzoogZ$yx|FsRHS0L$N?3QLG^oKJd= z7S8a&-)ZD2Qy4BgbgRZzAXgMo(V66TwD5z1L@+MO_(BB^ju)&Wk5s6AcDM??hGg38 zT$6;o<>~_S+&LD^Vn{)N)1>&HRnuk-=E39Pc_hAeo?IuDJ$d=k!LOH2v80Bb-q8lz z%bg=5Hzmg1yYVpcRqtXU@M=$O!t$daQ8m=|pU*P5rJ|Ec*_EM^MpqnVsETJBdUk9v z#vJEDYdN13Q9wjhTCEtS=*NRg3hI0Gj$AjhQC*rJN6mpK2x96SK-q8rDqiXS*I75s zEXuMz`DX(xM;(Ln=RO^!!+0aR z(3jvp7Npzh%<3&eyTaY{T#;1Ejo-^#kWm1SLRhh301{*i0(Z}+@cdN;F6IzbyK%CC zI@rIMO&lXHHI}GP?~F*fP!R_JRm*Ub&LhM!3=_h0o0Hz(>k7l@s002oZ73#wg^3@gx6J%0@zGh2J=#_PJx@k3PK6MY1m4Cxkt!J%r zj#Y!>UtK{B-6lPFJC4*n5l#OXW-6Vk@$%P)FyI&S#S!TA;y&7-a6bB^I8{?&a3`mU zJER4CNh;}-KudX5_iO3$t$KjUNUY|n1Bly?KmrZ6F>8U~Wv~ffPmttee_0}nyyC-& z$;GaKGRg7gUL5s2i%B9xp&@p(iuO54?t@=h*@zA<&A~y{X#Mn6C1nXUg&;DKSF~82 zLvRw;$8qNR@gL6YAzO^#X*^y$`O#m7Zmlj`{eBzN>|9-HL$fPiXcNaV6Yo)9jnpGR zB}_-RpGy#T%C)^Bnr`OaGNN5u1X8Sir`kngh|uMj&ymp`GgQmG8hz zwJIwQQpVoin8R_h{KU&eaX8i)f#H-TCMc*;9T4 z=iv9Ul>=w)<9qq_388WbooK;z{Hlhy+lUd4oYJu~Jx<6Ui&0=-_(|03Hv4Q$l4684 z4Cx;r(IpwNPCPZ?VAZsFqxVf=H^MO7$>J2^5C8s2+>cWMgF+M)RFBMs@Ni&33P!ly zh)(kmyK=v-D8ww2VVcT>Ag{k&7BPyrsRmaP_yg$$W$#ZSD?B31>2r^MbxhbP-0p{K zgpdh55<95jB%PO@#4l!c=1$lO%zd>Fj@bH@Ck|`jZ#oaL7~(JLVec~Yc>^>Vh$ngL z8;zAx8wI34WO&OgXRmZjnkGg_$SS<{tXFL?6+4ksU1~NYqO-X5*8x_pjmu>K3M;18 z9zRXI6B{~yWr%b*Ew;Ur+X0Sgqhu`eSh_O~-iGc0t(RUPR)6Cwt=2|uw$zbcI_9(q zBB!?f9^{lY^9*y8dwNRiiDg`7?VKK8;LcrlD&HQ@!!v;1O@5TiDJ${mX$sD>q7R_$ z(QJaIeg7*=)1m;2Pf)yc@GV=-MdeE0ILuuyDwiq3Z zh3xjkmNke8yOQBJK{k+PIEc&sYNnPKN(a9RF38GBNy* zWNGpLk)^Wd)FoZ;V9EzqFbr+S({3#*I}Pfn+H!bBOLP$bk!>#koJaQwJ5zdxzsQR| z1%O0JPT4upz;SjydA^8#M{Ssl9QtRf_xR;%G>)?Ud3!DvXQe; zQHD;MBV(UDt&;hhf!tC;iE!-rg~sFC%I%##9_Z9V#>Di}v@^y6tB`kM9aJPzNv@SaDC zGX|L{4$1ZG!>brxBWdsT<6d>qZd_{OSOtJ*O8C*?`)N>Jkk;H#1~cw)&rZ4j_s8>n zQjzi+5p|-#w(>wMQSIfkg|ArRkH}DmWhH-R2R&O6Jz6Qr78d%WWHh*9tCNF^+#t z&5A7fI4uVc1)H~IMeN>uiAbfrD~?D3AG4tYl!M&k+uAoz@k`@nUODMGcKnuR=Sryjj5(>%)7icolqwJd=NQ{yJwNC zz1G6+etkTZKZG5h-3syE-P{LEgQ{sm7rAs=0i=fk!nLO(orZ)bNRPBd2?X#NkqXdH zeJX1LYr5Vt`^3^e+6YRD5G2nzxp?xG&qSphYoXXY$#S`y5-abud4YaAzw9|T6>s^h zA%~WH$<{H_sq})RxGDBcq&aTwxTq{Ck>YjEfTS&?nY{0)+;grbp;M$h{!K1~Lr5;T ze9@-$4RBKb><|ekqH9U4@DGOJjL{BbBxUwcr>1Vki!ysR_{u2+UyLV%gpL89{p@e1 zq)0z~0rv1yOxEv^ov)6#nlJ(vqu&o}(ejrYF2D?vb;uNrWA>#JlK2-lIG7SB3O%;e zRgJHhCvbY}-*}vuxcXv;N+BpZ)FyxHzHC+~EEu^Fq>7`Ix`qOQhXtMms7}SGMUPLl zt4jri;P3qA+P+SY$V9&vOZtwSoyZ{16xO=eJijt2E|@{;Z`7zb;UKsOxF>Zl|h5{qe+Q0$DhsA85#6D3S| zBU~gKP)&zNKnyz*gPRz#+#o@8B|k#}FBvNVCaXo+v*OH;h%A-@|E)6VdlBz=BJ``1 z*9r$~o(8?f$Ny{pMF%{YOb<<0Fz#{j^Y!SNrqnYP;NHjY)h|^T>YfLRZueViN5|*w z?qapqk7*2lDM%^_((uue5O7n2OcM*#eYLR^DFlj8r$Gl4pLXn*Z!$mh#1NuN0kyAg z`>4SI1aTV(PQErOwrqxY#@~zyeSQof1`X1YA`b+uS$@6Jw=x5utZQBEj{xZvH%A>E zO1=OLQL2_yCDyX(uojB|MJSs?p5n*E2qRkrM*H11n%-O6?ih8CGSy@H`D2ib0kbm9pAP!tnlLy~p^&nAnjCJf zCoM*7wP*`{A4N1_unM42=Xmqxgqog!R->7&j}iyqe58zO+KR<uiBexZR0Y4x{D%(r4(4gLI zaf-5d7j~6>29Oe$E)c1(`ZpbN(N~-ao4UXL!(}`6Hoem#HO7u|dMwY-PPloNj}3aR6@pH|6BlrDspBe{}RC}mx! zHVoAtW`Sfy}XP6l8q?=K%hN zg!B6he(#eeCk^7bgMyr!I2}KL4BoKnbkuXxu~s`Omyt-PT)aDdd0T9M;ohJtraRWI z0jed;nu+VVtC~I2O#~HRE65*965X_y8C>##N_uDg4|H=2$dlcvRjEr511-}y$tn%c zn0y&?U96{SbxyDMnq&fI3i_yYCKa_HJvO$Td`j45faj&NOP%s@moNNK%wbF~cxH&t z1cJ>s+JeUN{}=#Q*;T?B2daypa0e!M&Vg_%Jx>9HcE68gf=>&CxfF|1`AResaWou2 zu+d!#RD88p)UXb;cn9T`9A!_S-f44rYj{E(dmbsPjb*!jS^`tg{- z=23s(X}(ytbw7=e<8gO^X0vNLsM=QDGMF9GC_%U7D=Ie*@fpS{CHe zT_R_ul*|L>?8RrY@vYzCraO0VeCQO$^Y-q`%j4dI32)W&GU2Y`%&5Q_FPaEWjd+$UMR>rBO2in`#s4c7H{)@gtaoNWM9)x(KUgkVliH zSC5p%pD0#Ir@2S0qo6npTVcqmDP21>iO);!Em72OaV6vTGD}(TRKW@Pe#o^-NJVav zT=c-5;>sLyL^3L>**2=W$$VJbZXZhGcuZUq2EFF`c{|_#92}N1Qj#+yc3KrbCp^nA z*dEy~vo&L3yB=l?53o7Lnf>xC7sLj^hRxk*8uardWe=%d*oU&#7{Y|7@~aoVOFt307Q+{?c} zDZZ9$A?R&l3E{b%0m$ca3Dq{t23DUrDxPeQs=?xIV?dUX;3R9NwGcK4pG3<#v{MWc zENBnikLqr8Cf?=)V+ZZ-BAi7)8*QD|fGuCJH$b<#+&pe6xp)5#^ z6nJiL$8%={2_i5>dj_>l1#=+16pMqu2+=KUvS9)c4)fdIJT?#kp95rnQ$J-4qbUpA zY1X+beeBVpdxY~3$EA4p2!h!$)v|6K3-l47JJ0M&fbyX|kL9b}E6U;cYPVW*vVGqi zp?alh$+fDg76-S3wRYL|WX&r!z$Ml?Pa8$t>Wn?gRl|)Y4_=* zZ9Vqq?OVJlgVR>rUbN4}I1ksk^dF?~LI;hc<)m7E2iizqbhMHvn^XlhpGn}WaF);n zPwOhSp9YN>Yh2CQCp{V{JU8pD5gqVF_H`W*0Sh#)Fya@oLF>*vual|}mheOd{3=p` zJ_g!U0l;jzPKuIRe2=88A$gTZpQa#)es%M}>{F2^zq3Y36Vr;Lk_k@`C zlw)Ed9yl91qlpLczMqq=qyu%k5%#Pxl5Zo1DI*_s-Y~UghmqM{Ke9Kk6bLFaX9x|f zc@79n`Ek*8_OZ8er_k_fVo+gCe%+jJ*q<-(9=*J({~~byHzfThPBAkw{y&^z{BHyf zgKc*9pRil|+utzVy4YbstTa%yE&F?X&%U~& z=aJv1$HG}W`|ezi$os_Oq}W%L+GckKeM5AT1Nva16CltLI_hX~w6` zTR+<7;YyOJAeKipN3kfpFWJ>AYre=D-s?|o8=QvZ_pi9x(rSzsS680pE?+$NokD!0 z#^0Ua>2`iL&3XweTogr0*xp@7`9DNj_KlSvR?H86cOB&RL$?kFi_JSdqnJ;P6P3dZ z3%f7d4B@V{X%>IMe3W8xFnDZXcct9-r+Rnm2qu)d9)D)xe=0HDw+){%?Wlj&RGu6i zIwuNvBqr8=Ut?Q$`o!(89QLBRz$OO>R{2V+O&svPD)=03+fPxWOBS_n-FMvGnLF(@ zFCP0VJ73mmu-uK}H;JSYq8Fs_^LUSXRoE0v`yv}8wmcTgRcE_%4l}WPp3j8v*iKw& zUx0b;q}=E15UwBp-aw_!%N5A z7JX*uLwv)%rZVttE-~nWknak2+{17BP#*Gw?AaY0X_ z)~ceg^#skFmbRFe;z$!OnC#$3QHC>WD#NJ-w|#)UhbsFUl?BpJ8~4uF@TGru zkJN^;OH1S-2gSmYn2cDZaz?RJbwye^Z!!7Y`o%}zk*8$*`J!Ii;S@*9%+u%n(p|mK z$?pOkvVH-*%L9!u6u&^oz{^%L2V^ACvc<3;)Jrs9ChDYyR$kin^GX8|MUurtNi?P3 z-f|1rIDv!fHK%%V-FPAa{B=g7wOEL^Y%7qY6lt#0eb=D=s!>+r^5@SYJU+iyuKB2l zVXzE)YRX7MA-l}HXids}#y!D++hD&WRUf6Bi!zgJ`oIIji%~DT${7Y&hvIOkpSY{R znu<4{E_lAM@3DO1zxc-c+&8l>VZJ%9?lvqEDb;zi{0Ma@yyg$V0R#F%#6|*`j1$XT z>XjJi@E8jq?26qi#vqdcRg|&7EB+m@o$i@9pfiXJ2`H$54|sC|qSZQ9%v4EhC7&&(u>eZwF|-Uj8k4|~54B(4hS=s$}>cXccbHUuc5 zE88WBO>40!0OS)8H5C5Hcd6yr`821>iej?0C!!Gx59jAvf^dQ?t4c`kX{0viydP)S z%1kp4Oze0WoC;0cg0J4BJ+uoP&z*jkOQ2&lEFze+PDu49VvQ_AbY)2n=(pt#QEI3# zs+dZ1kf^Jem=lM9=Ett!Fp?2a$XHW&?sS(};p%f>I6}qcFWxw5mI69*nt)`)B3(JpegSf zEKl!&5jI8(sVA~?UA^kcYkIIBlf6S9w`cknu;6#`6-$*3YwSK6?)GC9$SOSrd5A@j zl$SN{Detl}@t^w4MA}?rz1<5fYq+cS@~7q?wS3C(CvN08q(8pyy^{qZ*4cZg8o-)w_XHdMwep` z)E`XeHjap`GA`-oEV#ov`82dbgxWYf4Mm;ZG2E(DwrM|Gn}Tkrp+f+E0n+F+0EbIc z>ss&tkHG)&r+eas^6v)ycf=;LcY);|EkSPy+)?>uJCz(Nmvsc~w$H8iyvjG?pTG?9 z^x__+=Vhj}KyP;*MXj~57k@2W0~ae; zNl95<4!IS|1e2dtUKGR{t*BYC?nR@e3WP5;4BzQW(GlQEO*8ItCO=}?GS;Zb5LhnR zn=V0C=E3mCerPg$N%ra@sm-$J6<#YWlLXa=9xQZ)b|KLm69s{1F)XGr+Lh&#M}Ld! zXeaC@|72OUV*4U4vQ#BkHovYVy8SkVQg7J{qB}oqlPrXPY^mF*@QAd1f1e=fjE7Hb z8*Y=%!WbecIYgp<=T_-03(?FYgHy%CN|kO0VBW0T3G||+sa!(j0S*#5J+qh*rDsR2 zjIMi%Hf64be`t7#T8{D5?TC^=mtUbo44|@WldO=UUEZ|9q2C;(sP={fde|gh;ZWIG zqjF5))k`&M*;F+#-&}DeRm&uyJmRFyM2wqj%KbF@C}`g9iaZR~5S`2#Mbyhx(Lmd) zz^*=_PE8-D{x>_4$ZM5oA}f`CMHuTCjd%`5y6i|0G?Ki9k7s^14;Tl}N651hOfz@$ zbYmzCVBZK}CAuy9hysgz46KAmV@*$-ia!ICMx@^P?;?w$vg($Nc`#neQWTQ^Mba`= z8jAoDi+fz|eYmG>1OKtnnI~srg zN>c$A%J?4CIg6%>q=8VOxT?AAD7NLDrXVTpekd=`3*Lt!;N_&e?&}a=I!b~C+nthT`^~~o5rIx!!2#NeHrvrwHMQG&D9_I}-Fb4*1N3FFikoBcyJ(Y5EM6gfd z&zS<55G%BcS1ovykfUvi$@&MLiKnjnYT#U(1%GuT?P)hN2N@&oZnKJAN+hp`RgH3S zfVq*aT1&K}dzHY+A&G$bZL5p>Dtw*T?WGh869@3+k+Nuz0J@E2@LyS;5W=qzxu#_z zF;N~Fi?K@klk}j>+cQ~>v{FaMT!gBKlZ7Proo0Ddk1gkaCPJM%&b3q(#$7PP6QPK26JaZwCpBIm;GVLyB&;*yN+>XK~pj2MbLvO}7eQ zJ1<96a;99eNThz|Y#{BOS+K)rwl%Y%Vxuf$$jsOUTXX0k&MmQr{&??+$CR7-!bOoa zSgg!RIx&At^VzxMFG&j`^a{&+9~FPR>dR`%;LfKUvGAQ!w|e9l#3|D~fUfro`lFWD zxR(Ze-Lx=KxS|i5PFrV z@bbP!tgFp3DBgb}D*aiP)#q`rPASJgqFPaqp9+_!l&ehMHg#Tx5QK)YRo$uW4nY(t zp~eWz(NIApGl!8C(IXXbtL6_O=Pfe`7{)5J22^{ufkr6z;`{7OIthYXjCqB9}OM!d!McI68I%awk>^; zk0YJv1VBWjYaN;`hQ^jnVtf)$TNvYyZa%PP3W+`R z__?T(raeOyXY?W!adD`A-VaMZ6g7QD8|Ss~>c;xkWUoWAiw34uO+3m0!@xc1*(TPy{A-#A zjh&XW19_VR$A#AXkm1wodtyP8|7A~^tUe#Od$E+u4~}FfteO>l=+P%ylyp=n38vEI zx*sGEwNZ!6%%?DBCJZtmSDy7ErcUxv+Dr zn!@%dtJn&tgI}!Oy^t7{K%tq zzNp%aX0NI{$K9dJqfH$SdQzN$r307mToC?;AsVqkTT>%S)E9gSb=+r z&6KP3%W;~BLRsGB5-3<`s15Cz<~*xgrjG#+a`-g+Lj$j_{~g~DwjbFTR;gbT+%tX^ z_t4kV-q~?1h|$=IByZ+&YUggMhene^6GP-V+!Ew-iKc&k$RQILNsnghzjBJcD)_j%($v0-KKORks zTeu6Oj5q|@35)DoS+0#b7gOsuR!!w{sV3puX%|;|@1tPcf5VRN#@!gMzR6Dolp{fV z`^wE$mJqY;w9XKq=V&MTF}I*AAxTdQg9(K@+|=U5^vbn+tW|K!l}beKDmEtvGA6kUYU5TX=4ARS{NGO%Kajt zl*ps;uFxtvI8jmt@0HYGvF^Zy*Xg(Plc)n$E~?ZFe7GYOX-r^F$z7qD8~P_}k85oP)miS?9I0NY`U) zz>iHS$KH)u_acBrM*~3oWDV}WMk1M`frWLL7_c9>3%n%y(MNF(HPr6Ko~>Nkr4cxd zp4~5(?BJ6X`P*6i-Q3?FICQpKgcp;N(}Nsv#dPj7MTutk;A743vpwvW?ecQ6e?>Qd zv##1N7kPQa88v5~nDP}KST5-?;35rlrKjdh8QbyV_))%Dt7 zn1z}sr(}_aFyT@wZVe4a2B1|nknC+eG0qIh65$Ip7N#gi?K0%y4ZJ%9bn8^h4Pjb; z$0ezfFff`QeAGhk3m7_3T4?#WSxLrdsc$H~;?`D%l09p&Js5Y9a;y(097otAVF?D4qeopb=UE{aHqB(FGuq3nGEr-AI2~B;nIR%7Bya1;RWDJ;y&a3>JpYW&qsW zs#kF}9wdM+;CVIdLq={rv7LZglsaDf@*3n@efqU2>^};^_-ZT~N8!ONK~|n|)`7vw zFliIX)SL_z^936(_tQZ|rwj~{mj6rLQ*T+?elR`wv-@`H%ehdCW61M;m&1I)XKxkregml3V}ID zcH(rRI`uSTYK_RHiDlVE{E{~q;MN;V zuiae#CQFR0&n{I_T_#Q(d7o3YIxhzCNZmJiEx_c`wk?F4K&SjXELk(;pJ>=OE1hth zi$10asN6uJz5s9~&nP@uEjuLbKt-yG?-p#6=s2zCE0ar`W<0H(rz-|VR_Di4)%>lg zqAKmduvP|FDow-^^kD_5BXinlcy%I3MY<^%XLz-GbqQ72;A16QwmehBRsbjjMSUn^ ziPE(Cvqdbd%$HXc$D@kV@;q414QnkeO=8eriUtG8!^-kLWF~44)JK{G)uBKsn}QUW zZ+aBO8ZB$+*Lxlx>Ov_}%u~dju5`Foc2C3~0#GYc5-xd#C5^b?-|07TYiw#*YFJ?> z122-bM z~0#UxlEoG<+ak9x7o3iY|O*@K48TW;63-dtrpbh4B5PInpU*Y`v-f`jFIf7oP)>f@-5%1F7zZl9UWOv&%TJGwU zK^4@XC@aLEyI^vX2ca4nN15}1OF8-WqDUADr=Ar6ESbW;boLaUa%WVx^@*#G+Q--_ zWIB4(SWw>PdKP|rIc}hV)t56Pz^7g=%4)NQ8P>)WOH}iW5agwwP5u`8))W1%5n3}X znM z?06AN^yAb*M$|1>HdqQ~Sx3yY=>%hu_<%vlM9#UCrjd5h9zawuIqns4=KJd}r$vVV zdkIrojT@}!UsP#!WF9Us5ZwX~#5?>BJ*|)l(sQimEJl$ntyUvJY@)Clq5Gk0LSee7 znH+Qc(^Xq3)qJ{(EiXtvguyaftavhG*0I(CNVd40zOmckSDv^R!7t$0Gpo;^tntQ| zyj3i-BpsB?*Bm%IKgaB=zygXQJ7~MgmN7_&8i3;S;p=`^g%;3U z`mx6{=c1OI&B6*~^m!EPF2unvp3y8ZdS^ImL&=u`oU_GMs8bU0?*E;)vFPdbU^D*c z!;<{`S!>^rB7pnFrJWyo8mj|ql5hXQrAr%)OqPI6(o~w!NZ!Ei%QM~J0P6$a&h5<* zP$b-o-)UIZI*mhll1v2n_{gJOKlMF=u%GWiBwaD+=mYfC0@XK&wYmhYX!)YTR$_bI zxj49UjZszL<|h)Nb}l_j!8uK`D`1xuS#104IfkC2XeNmE@ro`kywdRKjEH+wc_^MZ zaTIbA@f=bk=NeHhPbMKbczjl_^rxhLo^PQ)0Oca8pJ4K;3bs#OSQDq*x{eoB3j_-i zIL&=l_JB^@o=EE1GPw9RN}0tftM>_o))DeC3Vwdh5tQ)HF-pvcm!2cCNNrB(yw^C> z$M2fw#)$?`*&_|ej*KeitUjngv`Ow5Du8fLPDihgL~PG+TsLzLE!?=P--0>I+@zfD zNf0O3Q8oms%F6Sq0d|wtxL7rWv{Lte$!)9bwZE-gr+$OtDS965o9b~u#8P! z8>RPBZm04i%qYel@upIJy;XkGwITqzm)Aq)pw}7S>zZd=;xYSxXi&KKBXO95iG4h? zJB7>76&;n;hZ>04XIy~=XC;9#L-!ANO_dI|P&oOziW-H3A~UbAP;b54=lHaG$5R4sVkUC{P;z!I}xIdJ>bgE@0wc{LYD zKB1W) zE^y^KCYLYA(F6DxH*<=fXF)@lZ($rR5lAcbY3?tUaQZ9Xg^E+7(jppQ&A1J<5@r`n zvRX5zK+N!ov+lfv+m_p$&GvujOpZ*ZrBi!>N2j?@ixH<~{CcwEcC6G=pmczZ~Tb57^$V5T`-iv7uV^_2WX1o_HjO?J`>_Fxrpj=D1`yzENyrZ3n+IXg<0Ns zaa2^%3m2-wrA0+Yif+}eA|iIUK>ZNRcjkA$A9t^?t*Yl+bao>tWDu#a$LCA_2<&!( z0+wvdBz&@wCN?d#x~u;V^!@_I!6X&_H^ljWN5h!e7?}Q_S!DWe%p%kO$ShuKZaQuK zGmEF{Q^FM>WLu12?i?uDXz9lT13=UO(vk0A-%!7drKh3LX^D@i zQpF}I7DjW6tBa-B`02BtkLPjktvq_Z&&m@wVbrJ~5*UKZPhEsOZ zSyN}@*FRFdG#XfSERk#1_Y zlWH%b!vB!-o?waG*Y#}k#)IY`a{i&+XyiLWfdKiBhnkh>8`evI4XHe`>SWW)#JSg5 zvhaMKmF;Bm#jz3R4!P|)Tvi8O@p7X|JZoNOPhZwlpUE}rt6%MU!{+|%{Ft7Eoo}ay zDGGsYdA5dm8Hh4Z_!%4uHb~tNCV%=Ncn-H?uFK&;kxGDY!aqt}$|4!j?&sfltz0i} zn!59_I#qS1UeDS}^21cwY4%4i@jOQE3(SUnXt0aUj?9#u+ccqfTUj`6Ex(@L@RYG5 z=Nwh~e*(S&9~%6m>R>qL!$tUy63tFGelv)Q-bt*bfrvn%8gM2CMqz*u!ZTBU>sl8_ zrND8pioTyX;{C|HsRh-DKk(pPJoN3EW%CIY%V#|jIDZ_8<${mL%Bc`|#A_%f&FIo2 zMi-dsQm>a|hkC6}2^ZEt9-#0!VG_30F8mdR?Qg1zif*s2-f_Q6 z-n|_Rig6F^cDeH3%@UqDq7mTEqx37}IFwAqSDU=pbVmm14uU;776g`fu_h|b-dV@|)?H`WaH!oMauVHU57aPZkG{{yxyeR6ElH(0nC;OO^n-sbM3ph`o~p zE-eq2=e^t$XkX%cbOI!{yvB^1@i5F=U#L0hUib|WyAWO0w;o~}D-^-}n;hC`QDt+1 zmT|H3N5i`BMoS40DMxnzor)DrUT-YnM$ntiqd)b-iIU8@5X4(|PW=!au{Q zkh`o143Ov%l1BFID;&}hb0YzJqng>dQDqeHL94P)v;~|hx6_ELAOi<yWVf<9&MG)nh0Oj@b<+r5qYZmmo3KW1V@!6+Umeh`?c2(ZKTx+z`ru^;s;A?h;L+V#mjhfhu zA(m2)Jg_uc@TWnd&C!O$9A|dJIU{HJ9&FqlZ~E1yms7 zYZXOMvS@bcs~}VmYnNGLK;W>J|9zNC0AEngB_y!BRgH~*3`K-O@ip}#fDliWTT3Ht zXG@HSzu}vxUt?%!yxOS0#o89i=A=OIYNMWb1wL>waH5DpwoAaDX`sDN_o+?TAs>-W zHS^%C|2{W-U>9OCgxzCa{$N*0%lhV#5G{p}_CZgP!6%w*(auj^w*$7t36~7?&T`D> zta4?k&W;@!G9Ut%&j1VdJ}8MNzjto{m$U423&OEM9g-XNF>ce+M9^SHh={C-AI&a8 zizJ5f5jwC#Q()Ip7El8k(|Quv%O(=vxK;~*98@*CWcrW+7pVuz)kC57d(~H|vPAPM z*GQs3jFredoHUXxKhk-@PH530pD?&&o#trxqgN}irP+;D=A&5)C`q^6g$_PX{fwoM z=3Rc@p?AolL-{rARJ`^3r~T(PwKCI3p<pNJ1pXrO3nCl6FIR4L!ddlrEj;Byt@4^M$U4k zaEXm4Zma$Yh>5G=GpQQgfGux|H@m1p?a-NG6-~VST|3b+p=2_TlBHlhHoBd~twtC% z$v@cqVkehI@vFrea)xUH;47LUSDH6o4yq7a9yxS9mIIJg*CUzM$gY(T=+QuNMV6PZ z-4%k#hhy27R||M@eYl8K?)*EFX2h8u7xOFC0RSR85@1*PSvE-6$g`*>c))Q;#3K&a z+de?RSSwI#a(L+A@d&7-pI!4xVNJ);TtT)FelK;8BE;8M)^()RJ#Db9d|(N2(Xal}l3rf~_DvZ$0%==7 z>aRanPH-AxpQoFgvMz{+`C!4f9}R$FXP|$bwZ6e+?P+-UGPIECCyQ)=wOTi+%@2K@cu_OWi=01n{ zs|IlHSfI8R=n%MIlF!9Hi~BH0rmDl~hw+5{yKf%bY2roggf*<2z89duJi`t4KmQ3-3<< z*7K_HwBJ;f)V!cKa+@{9_?)vLUUF`$9gU$d0}~==Y;KH|8arx*h|4~$Ae(h`0){_X zEvn~b?52ZtLMkW{#g>}L53aSDXGKcQK3?{OCbmrCAD5dC-qj2Sb7<|UR!-v^$dSl7 zXX#3U#K>H+jfK;Uo)k`pm{x-0Ms1Oec+=A-amH;0VJt9}?$86l*m_HEu>%6WHzCi9 zia{Htfo0n2=W(OKLdyRDbI9P9tJ&8`(TrJ=A9u(baV1mLdlD(0x0*WFknwE7kZZ2w zO10#4A{P}~GrbSzq&-ml-OZc{=dmE$SP$5e{CB|I1;jw`Axh*7B^(aZgGCTzgZ*yd z1OqjOxC8y1yw#qTC zHx@yiAO|vJ!m2zw<>V1cjhP-Bvx^h%_l(JuJl6<5KYts7@K;#uEai}DA;{YP015bW zYMDH$VJ6@6JT(r%n&z+P!$3WRCzMTztIw89D_~hs&_htH)hyNxy_}X94)K?gnR$`d z6MW|j&lXjlPQaxj2G2J%CD*OjeV5~p6g#q1nxctzn}b$Kg8=Mp#_6{{(z8bVUAR*7 z>S4fvq2OGK0K(!c9htA$PzIWE_abE_ooI~nyIrEv(&?$r*rP$Z~^NkBNEd(j%^(7SvQk8f+N&2 zUYAJ^VwSF6jzpqNG2L+oB?>Uy>!FX$+$V3}QRCo2I^k|5v&szoi#NB_ne)Plz@u|! z55#PqC_+DN?1ltfk1)@~(#G$s|6q554c120+9NcN(llOvUTOGEPy38KZT;44M6y)% z9Jb(}Zp5>hJk(QT@;qP9v&izCN5z>BsjdB+-|CrBz@YA7{Tu$P%AQAJ&%F^oS{Ng_cw`q3yr4dhv`aC>6A8+HI^nGS;vbFelXX9}E zeFeq(eUvy!8b9sb`_iiR)jJ2(-J}G%Q7NZh=${(>e;dN#SJzkiF4o8PpMz3yFH@>C zRjt8WRw5f0HEPj@yza$4d2pAZSF2w%R!r-;)K)j+2OB6NJ7Q={^k-uM4k{stKO0*E z<#n|u74C>KJDks!ZSBK4tUv#*chO$X$!Jq8cxuc+eSRb`;zFA3A-GtoVdA4b%pnzh6 zoV=L7$Gn=N5UUz9p0Dz9=CH4KY_1d=O|&F-<=cKh*G6MtMvL^xMZzKasKAN9%#t!;^am=@I6Wk6Zh=K_N zZg2B4U}2Q=;tnAlzVloLA-k+#1W=R4U+%Bd@OoF zk)OlB=_+VWggp^2N1i`zj8{mO(?7N*tNd!Jnv6^loV=-mukcrQ?*LMtCYeEmkP1O8 z^7mU*+vGFhj}RXBtVI`LIY>I6B2X+MH=DrirKV5v$m6bW07^ka(7_Umf{Knsy7Dh_ z4*ExI;JpohkPsZE7W?z!Emqk(xtnYx{&(HB0q9y(2Zj6Y(KpN~kpU&rC*>GiE2p@@6xK6y)+?Gs$Y+ zxlJY*AYU(kFfjM(a=3Ysg9@Q7k*5T`B5_Jd&-Bk+_TT-8@lNJHf43IkT9ve;G=leS zTZjJ`u9J!prHlelo$UI zPduiuCUH>|_x&?jLQZ=f#Q-%qtl5c^`B0L8wDm?+$u*P6`J9e})9J!gWy!rJQu8qEo)kex&1*lFU5`gGGY-0?#AL}7JA@G|$ zLhpg5^$8lu&_VG)p$GY% z5n6frINf4CSFg;KE5L80dhy5!L~Wi^)!sc*84Nb!A<#ShaM4V!mLM&X!g7JV%7vWa zzC=lUO7!4M*+#v>jLqt&kwK!D0Uc}xpr`gM*68Y7#|oJu{Of3Bspdk=aHh=K3}Tti zmGr*cP-KoOjD8q6dke%$5|E|)<;&~=cpDa2jcdUnJMR0Zt*~xf2V78Zww3znR)Tg- zYzP{n2bz;_iGV4uJ@gkwqI07{xjuii~tjnXL&He%;iVl%k z4l})6ERBruykbGxf~e;(%R?1g+wGec3+Kr!$_BR7%!`<9SPask+as4_b)=+r6)Ff_*J3?Y_)6W^o^LlcrjDv-B>|Sqxl*PBZtU;7@4QtxY(Kh1RTxvAifi% zM9oG@5Cwo6KYE*lb>Hp7O^Z-hvu%d4%Hk}mj%WwjvhW{mIa;K5GK}{?}^}W!T?`z zO6X5#vy$^_OdR8jiO}?wqsz9U3*Dzxv%4!DAx=vOEfId1XpnDtK+vHpWtE zdH<3Gv2$FR_szcr4@?tcjvGWVn*lOPf!mN2q~z_C6uVe~#ikBZmey~F8>$AGN8S~=-Yt%Q&%c?##g{1V}0D_xC8rr?NXWC~3LbJ)4-a`1<`oTx+-lHgkRC&+R!v(39M1_Z*@#}RXO7j$SY+@rEKLTo}%Pe`i&YNCIzR%#|#$tYo zYJOG&7eb}S6$`CJw3zQwa`6Yx4)~daQ^I+Qs$YGS6bcnxB(Xla^TZ7}yHRHe=y|sE zbydqlmd@~|^~G6!HSjhM24@I z$QSzC@AQ2*Sp$v;J!%gbx*dM%ffBdInBYaBnw&dVFSdMmV!mC{I?`6`bg?l^a}Z1B z{fO}Giiyrol$vp;U9z+u=KY}BIX-vvR1GQe`eWx}Z^~YF=2PM0XyD6zHS^=EYT1lK zzYuU#`djv*_c=UW%?*#{+q`N%ZVVk|oo+%u33FY9xSrP3&-~5gAoC)zB~zX0Z;Tj8 zQbpg$SUc%;kbiZlF-aJFPT+L5#K3Jx4{j)jai34uv#Ogpf(ILE)(nm(#Gmrowy z`@eF1wcWhY9z7aS8m9?7f+#{b-dva1GiWr->b#K01sr9%ecHP|VSj&Mu}_1k{sSra zZ##sElk@*2|KAG5n6Fg6~CdSHMEGD*al=Lmf2}Hk zSJ$V*_)XgQi)#Jg<;DtI88J~4kc!lwNn1Bto~cyTu%p=^=ktK!cPHs%ruN+v5(-O|rEOVm!=ADeFI0ffbs z5^buYD$Yvuk2NV-15XSyrng>VZd)AV94SNk6P9N5;OmsHAan-@a<}#u_5Gl)pYc!o{8wnmvl)0MK27lm6j&}i})nqcRqSPZ3oRa zb%&Xu>AzmLjW6xH+kaFQZjB3xl4 zh*!IPv>6a3O3-zn(u$udQ2AJ+0c5J?pB-01pT)Y~3$E5(mxwbjoMH@&G!ryvF-`oU z83vI^n9SfQJk4~~HE|04;V{x03FfQ@n#btO$Wvu)wD+h0cmpoVixoHB#ID6HR{}zI zjg)nPAT8h* zkdEo#8Lj%IF$YL%p+6lUtEe^{{rP#)yhAtalPpk4&5-lqbbvAZJ~USDV&0GMH?EeGwRk z@KMSV31&e`5Zj7n{p@|OMrF@AC=&6 z*J(!v5K(|U99)TlZwUlmn{~%U7K_zFg$z!MYIT1ue63M0?!ff20>U;VP?I`7Llx*bm@{}@q&?1pj76V!ongAXc>9H5WL=?VOm55 zusa3{>4l?3Ys`DlvApXEEKqYA>d}FV?O*ot**`KRrD9kBU98KY{(+z6e-T?>uOGeX zQ2s2nwOgx*)>|Zv2)LZ7L$CwsyAm08@V+18zcb|qJa*|TU|fmLmJUW33nQgNt@hEB zG2azB)95M-*7`oSz?!^?-k~x9dxcrEb1y7pf)lT?PLq`FrXq;>-ur&PZU#m`$;F%P zP~MF&QO6PcGm2~b`wIH}7_l+?-w<1YS6*i0)dpflymB2;@9a>#>c#wOiZQBS0+!4H zj&@A@?bj#R8XL=7;l~t)P8OI|0cy!xbrH=m4)nr-fKnzvRnHz;j7wN((@;cUQh=@C zXdKsJ!0W2F${Vc};6;Q_gdr#8__VY88+eDAMS7DwMKTV-siP{V{C9GP_ex(bzaetz zB9iXVZ!P;i7jaC1{K(L0a@^kUZA zR`x9Jong?z_GZM+G!ohw&^ok8;C-)Jer(&bXR26kB|P@pRA)%qbZ;wq#3DIQ-w9|w z)U@>t-e-Q2R!tbzMaMz#**cUF_~Ma#Hu7Bbvzb0$= z=dqyjsTI<~3+J|(C4MQ_x0P>7Cs@qPk*H;6$yfD*#(PPwSU5i}-d_otdfD0Flutw( za_s6MWj|g!@p}3p$w(5q9qw{cKEjc}vk!A~pV?fs-ArTQk-s5EhxC?!KfNPM0r9Ch z@Pfdc`3|NMI`5W1@;jd_b%r$d_fB&p+ekFb*WQu8gh}%*5hFqwd_CU5pBA(8rc0ob zSn#XZE$m^;^eN&J3x>Df|9;OMxxyv;i4;$yh!TaeVK`U-9|!GIkIKsYA5>Q6|C`GCKbz|Wbn2irNQTp( z1N)A>yX#ULdgi3#lC?=FAaIf|}oWUg~<@A)a=`@d~UF7xU@^2RA z6tfa2M*UCBd;32Qgb{7Ss#!L5zI{ZO(-YqnZ;R<~>(VTTn$GINQi1wAwe`ksJnXm0*ZbPsS1CB>uyscqNprxOu29Gz43eV_1=y+)r|Z%p=W{`FFd3SsJH zQjOkq`}AF@3p?ws;yn|U1C%mwEmPM=u^6q$ts#(16PHdqRA-q;iP2q}B1ExD* zp%jr4BF!SKDr&P%m(_lCqTg!V6b-KV@XFp#qvuN*Lz)sg+mRM>{2j-T!|nb#=D@)V zYqZ~-L1d?kh`79V>@DD-l-3&2{Z)Cc9_7FJ!C6OLW;rc^JQmWHjf`Dw5VVAT&``v( zHB_xs8`NCrxb7Y{gXT9iX&JD+aIckGt}XV`epcn3^ozhddLuElMpOBY*gK?uF1-D_ zh=?V%u^{ET$yjvc7c;1CHD$ckV%(%*7DG}reaOwDTy1A^TaEr^9|B+HCfGzm$`h}j z*VdG-xD+&4J3Glc$<$&3N!Zy-L%d0H)_Il_pHk^o>j*e@$n<(7?^tWLPlcrn+`>G6=L<7tA#hO1R zF$$JJOzdC=upTisx6Ohc9c4NNjpnEH98Or}ay#PYa2TMo(R(2;*%ch0k5&Rou{Em8 ztt&U(jC&ImMRd4GZ7)bow34|9s}}e-;(Y8rt42mcFH0iY-|FjoaJa;UP$Pw_SKP&> z#1>-h6|%Cv6jnqD`+}yBv|Y?*h3v}&iUqSkn6g9D_1YCdQjKBo%FTMQ6QOXCA^{Pn zmj5Thi=TF~1O;;{1#r!`{go`l2i4N;0PsuCmRfnzVJko|hN{3fy`(@Aa^AuiCSIr~ zcppkeT)HUO$m=6m2O%VqD4yNnOxakqrK#x2&yWdZT0TXYDapZ5iPUciYo8?Z2MLIV z)hHcB5QUeFT@f|N;>LghFM9$I^CU=qMCKCrm*^R=L#{&jfuwi@Z_yseKhehRQbXLk zIEOvw9?!r%k?Eo8v*mTZNi->aBwAsE&9xk4$<109-GK8*HK1*%#5{v5WU(Xa1YYlfJ(-IMe60yFs0g>T5eEul166$>HO}= zQ)Ry|iYh`J_9Xv%PzAFbQWh|N1XQ-hkbfzRN>a%SV@XQ0VATjQKM%j!%>ux)4K<8@ zIpwe7>P)>;D#l;*KzDW6L&%4yul7WD$s`<_I+l-{43V{H(ix?B@?ia6RLqiWBPTsC z8L$YcXk-~N*OWwP33f-gBw4dOV35{#NpiEXLK7@Fkfe~b5&$n=Kno=;7e_bS@t;w% zj?lwW&IPPnCW57uEsZfGNcOYr&0WcLCTCc`O*OTULCApInmfxn_#u|`IXNs+gghTI zny`v3!}Fh#gd8%@Nt=KP%X3k_KalNr*lPOGL)fKg0sfO^&jjR#igI?sPeq)qNbs(- z;f7F#3GJQHxINg-?$zIvo)(illP7 z-`bQVive6rA9+W0Kv4ejwjMG;Zc>H^UC#uue3f%$p$BiVw)-!@b)&n{%dbL)<98f? z3W~-e`a5ttH*9tw-l}$I=?ggk9&!liYx~Lz%cAXZ_zd9$u(lN<7@N{ipiE}%!UZ6c zuoK0sT}JpWM(3Xrp)9{S)jzG1+zyl_HqF*!U@G+mpjbyh3G2d-9J{;?%l;B$ZF!L)2~&ONsna| zS9ZGGPjc5w=_9?VZY5kSTCPq4v#G$Qq&ly@@lD|1*Mk<_U}%SC{>ZAH&@e>ljGQY3 zH+B%&d3O%mF#Im8Z1+X(avO1KqK8D}S^n0NJT#PU9R|lRk}lM`=hUjt2MT&N+E0u> zCnqm*k1;hdd;SbQc~v2ST#1Zkh{w0LJIhI9XQ74r2sdinzmnJoxuZ{MGPbFJ;50Tsvcb7O(p6^ zw}lUaf(tt4TQWQ&1Pdbe9uz5g9#Uj7!p6C+Dx(p^CkM?0zxg>B32r{EmX^o=HdY;z z`XkmvpnscYU95eTGHE}ebtEO3YUu^86m=X4LA>=8)ORbOj9$`BBdb9?aO*;l(G{k6 zJ$~&yz-*{P%s>$h({$(P%E$-xw6pZ&Q5vK>L!ZGlqjRNe$C$>g_kymQ+%39sV8rRaNDP{(ADHfc?`_x#wqw8`o%9iNA}HSW z!$pX)N*(vd;>6ebh+X#Zy49nR*2Ug|afOfHql`HG(3Km;6qDOEA8CSta2c$6G+|;c zgQGTKAX`TsI-@LpApUJeT$$2ko%Kcs_$6|kiS|`)*a1$#q|@157qmooL2C$yVp^i) z>nz1=%zWpDYYu7;5<+gclN74Mx)MWXeo@u!Bal4z{$#h!Sf17E%O1{^u;U>@QRxp| ze+Ns@-8$6O=Hiy&=*MayI0t)(Z8b|t#YQCh1ebw9X62jdj&=xOS7{{4C-qRk`z|@V zzUTBx#T#dL^Qp#Wt+=UlHTsGc7R6=R?d;ke%a>6e4bV6$;|A5pdvR`4qdcps9L9%8~OYu3}7kUT#SrHe@FPUwhij;h(0F@+cf5@On*OX~^ww z7BECJx+t~6IsQQupTy;0Z7~_s9qcs`XUJdLS)&6;3h40vS&wK5r7CPwmy3LB6qqa*s1%(fl1dN3b(-=A5Ho;=&hQ(|p_CftP!J&ti$26Uk;a~Qi5dcaE zgV&Z+Gc_WR0o}j$`I(ec6?hhoLJMwx4;uj?;2|ym6?vyFxZVnU1Svt}PO7xjE{p(n zZD)d8_>X}tOv(ZY4jR)FhGX$)HjT?7`9N;D8qV(-sALTe3+=-xze@tbSG8_;eEv|Ezu&Ta~AZ$Tk3M{(-H{>FUTL)8Rbpm;n_$3B_|CL4PI9FG7jHz6}4+g%i%(^@@r0Maf2$y0f|sjK4uyJv?}?s)eXKo3hFI+SJ!)0GVg z@2HK@nW3UHILz3<6m#j~aYWY2AL?|r$Aqq(Nw~!X+tw@|-$C%xoy`CPmZXx;TdQzu z5}DpXbj(>D%q-dE6$p|qvzJ(qID;qyV^m~}tYyhFWY+aJVp(Ym)dn$62+&?eL1_O3 zl#|pfA8Q}6*EDr1NKCpyqzv-o;}f5_1RgQq3#b6kyPKwrlCtRad7U=^9Ex|Tx%emJ z)MK{0ySjg%{};gc&m`@CU||0(X)`mk{l5u+mj57Wv;3bV?Hx^R`@;@YzqxvYJ(B@5 z(I^zrC(9(dwk0?B1zmbD(K7fbnk_4n3E~OIvR}$yNBH`#w^hgn0Yw;wLzzFr&hNAC zbU#5tG71$x>;BCg&Y1*) zi3TvV?(T!%;TsQo1fa8t5RVdM4o00p_#k8sM;_>359xD&?>xeLr>eUprCjnRL6#Pzpfhot(b+g0C^XlC>9$Rec7913Y5U6szTHt?0@743NU) zWt?R*7uS?CdC%dhdMCO+X|_vZx@W$EplKpfEd(msftd^^Kbm_2J8a??YFVzH!Eh^3 zKdZm)7MogAMH*Gq2H?pVh@U@S^IPR1VsedD(_3x?K&Z4*+~4?~twPUQ{xs24`Nc&- z)gMnNucL6qrfe6goHv0FjvyIassRn_gKkOVOpSbhF>tyyONjB7N3Zm! z`m+EO!;1e%LdO92RMA$v)|f#BJX0A{*Wx<^|F5 zJkc4!4~{<(irRO(Eyg_MfDuJ8@P5V_*zD1Hg)eh{ViCtbiI`r%KY=jz!L+zpaip_? z&;@i^D^cyP*G_(}WozmVJBd(AewXda?0HV9za$g??5f}b!H>tPkuf;+aLqp38epry z6O9-8@z(R0fHfz%cw_OBWjA2P43)eJ;9dkf6S8I!@AeWKcouosFRfq`1|>~nDoI== zw_RYQmqyM7l{A_bzJMXmAQ`)hx2E2QA{{J;`Uyhb?GKyjDh~9?5g{uFSWvvW%Yog< z>&Pn1i+ft~ZG+XVEv~kXaryaVZ100@wTB$c37|bm&vr>bTNr56WsHItM}(B*fs(X9 zrX3^7DT6|RmDo;jK(c}B?zspsS2~oTM@rINK@118U4d38f^1hrGl6&7))dMmZK@Bt z%)>OIpz3Y%T$N>%NAVwBx_UWdS151)VdT?+WLy+g1UX&*>ATzUBE$*mE)szR= zQG(*=5JDmNYCep^TwyF`8WxFImN#~mTm~pHwceU=(^zoUrodU{2qum~G3*L`J7w?( zhf;T_^hT#B7kU)W;6R`WGa%$nkKb9l`~?SBjBbNnOCO0T2jOpl#&Y;7uStY(1=$dK zzVTiQ>ps%v?ZQ3?Pf$R|$qmG`-^oMQ=RNjSw2QP%u$ z)k^@U8k!)Ns7QRl15{8@|JoQeM+OfvO41^uhT9x z<>vsW1R(0JKuYJ=89}Lyn$7spA66*sO&0)k;-g4bnrvXe640zE0RQU}IratP2#g zM8k}kvgvZ%?yxj(=Yr{y)A>n)(imnLdLRy&C?dDgALRvW0Wi8?JXits!fh6zfTJ~E zO_NZoo2?@1v0bzQu0~)wnVv)p*Nj3_GAU7e{W(F|M8dTZAq93c`Rm5BrrHaQi=|cS zu*k<9It>w+Mf#gVhY4tdD9B*vFslrK84r&E8MRqnRbASe=rF-(!~Ok{wW9gmEUyS? zA+jWKx}Y$?%@Jq3rsnEK*TGONj?q9Z$%5&c-h$B;y%L@f$f?(d`R44H7=oyhS4rJe z{c#^DLj2IFBcF7$YZD#NSE&;TVatc|NPzvap8;vcJ~^-hLWo6$WF%loII*~9fD6WR zbi8(g2CAn&NR^H8o>Qon*u=(~%;a4ZNYk=T3 z-Wrp`h<$`onS>@XN#wpe>^!O9FMrhGfu}JLu-#~d4APm}pvi#ekOsGxkUsn9m;L*! zxD0Vt0|r^X*I!J4tdw6$wCqchae^|ebHRfOPFuUz@Yiavw!oHf}qbNTJ*od}f%u=?n+*SG2`T~q@7i1={R#hI@cT7a+dNX`fu zVQ%`1RQpzEU<@4-@Fr(xed(V69u_W^<;u|s&1&k{yd9iOw5F-RZn}-Q$J4CQdYk4lWP-Lp%T4+UKgLAP=+^9AO+%fT;K`xNB^nY@N>TiFjTHRM<;a#Q6+AxYq~X_ zu1>L48l@6$eXI^k$KMtWOEuQbvb>E|ydY%T9+ci*8^0Eb{QBqOqDoR>I8>{-y1*4G zYoD146~dSA!Q-=cj6*IjP^GKeMS?H=Dx@ zLun6?tCi04Q5)BD*B`h!#|W8NB;pVnFNhHL73UkHWebPL8S1+_A^kRt=aySNODC|0 zPB~>as7FgYhEP7KIwAh}7WiE{k?BS^+ZS<~_SrUsJSyND9f&+cbQ#SatN)RsA7dCI zJO%sKA9<`&OXhJ8_K3yAD*1v-#C~I_g%>7lQPAxJL_y#BkFyG3|9LBu0e}qPZ4v0H z$2yPi?_vEJpKUwDx@j8$gNG0sI135TcZ%yX@-kv!Df7({Vkne@tNQXFA{ed-Y}LOh;x-ny7*@QQ z5Z0%`g==9%nk0-s0PtvvkA3?2`aAqwP3$zX?&Dz*{ADW?s@HUS1) z7te&{0Ok%{i{-aaEk<|e?D$N@_f${FSfeJWBOd=!xvCEypL-1Wp1(=%F3h}bKV)~@ zk0w4}yux08dw={)n0nfcbj~G%IfQiad;8H%CA)%2PDRC_oIq{?9l3qxhBt@h_dV+vB&SqmIJsMw9x=L=UYc1$3#7pvz;1vac(U^=Wb>npt zNCO=Qi@~XUL3WPPT$~1p8W^X0=5Q&s7NJNnawb!hkvo#aS3UDd^d>B;j!jd_HL*6W z+nrlR;}?anym&a>`s6c7t;%W0*zUogtH0I$ejREnN-t65%vqA zXSF^C$qzHQYFWpQH+CYYLC8S*ut7_^kW(b`!$OoxUg)t+I4r%#aPRcg(wLIhhj&r_ zD68jE)Nd-v?|xn`CD&G*7T*07>5%{p73^BH+K+2bR}8oKt`sB`b&`%y$H3CL<(2Y9H(}qz?oZ5To`3>CROZPEvvm~O#RMoizel}^`aNiUd1NtM;_k_d z-2*F9MyJx6sHc+#Mcd( zPOnF7|C^Ji;4fX4SIqERugT#9*uC4dN41r8rz`sSS1l}hco`*|xk}OZi)5@2X`HWZ zKa2_meTiJ@E^LBu3#c#Czy_Um9w8GfEMormUwW8fO{oT`!rCQdh=FiN&pbTea_-rY zN@D2+;fm4NQf-!vME@;8>Y(iS?VvguJRJBcRGGl<%h*uU|4__Gj5S8@_h- z0z|)J1(TPV3ku+KW1cFSd@V>7a(6T#s9D3`B^L?X%ldOzLWHPKNhFi`P@y{$8D-pU z{Lf;WsGJ^49L=5K{D1uiAWjnVwvF^%)fPHY7r|6|KS@3PO{9e>2li{~5Oske?Ak{X z0`ki%Z8xEoX#y=VAc|~CHuNG#p8i+T3zZRTu$J5l1I97!i)cO7QE}shrrV=B>j73F z05HyTS-sI#7ZpvN;7mdjNlELyR&67bKL3l)cKSYH1*^B?di zQ_TDMj!;6jN$#O5nvbjmCw$SlCZw;(Z&p^CFo$u{3E5?s(Po~Az-(s4S|DXSb$|uG z%3$`j5Mm;YmVt|vR}6;PrT~Xruew+ykwFFo%?W^@OAuxZW%>;Nr$6Py=t3Am;H7>-OED?ShWiS}&` z@u}DLCf=B&Pi-L$cmqwDDuWjp(BWaGDkeM}dl2j*sz%P1Nn;cnFVLn^2;Lxa;Ehr& zbKc9anEtGvuIvD&S}vod9jGi zTZxEhC{o%^AxWpzNirHYt=z(acia|01~I|fKmoQC8kva!o3kTWaKfcqtCL>GGap2) zS#f|27EL|IacsGRC_NsZk8tf7lJgvd?QB2h(l!~={p47scxa5c)<|*O$;<{0_(|cLnqYRAv=V!5H zJ`c(uP`pr!Em&=z2?q6;YPJbC)gECe!=|3ivnmF})Q3NViS=@#50eqyf?$Keg8mu9 zaNxki#y@O9tNQ z8wC90nTT2EU}g(F1Asu*AX8v%;!sjCAlZhXFm7Z!oRC40q1ZNUBt!r3-oB0<9>6$h z;O0TZJL8@PLe_*bV7_UqaRd$`d;&Dqn+MJU1Lj)OYWoTBPsdCU1;aViW+mx1xo$e- zqd^`*Hj=OM6O zqVBzyf8GUX0{+6pe3PK4?)9x3 zK(Yi(N@T!Yc^TfO4a&V`q`h}*cM#O|!*EiD=n=rP=YolOT5ab@UJU?!VnK#!Rjv?P|{W4q(TQHvH75-Ao7B3P1XI5z2h}<$14R1gXWu z+8f^hd*19SFl7vGTqUhIAF%j+V4umh!#SRMak&z$<<2C}^RS4m8o)L?-Q_@a82aHw zPf8cfpSsHUixs4QG5O~XK(q#e92eM{6`;G5rd=9?2(T{k-uOq7RRFW^0syi62l~U{ z4c}L0d?1(C1ouihNJpD)IwGaO%yg5;UFDUZ--b5T)iO(tKF_%(BVjO-I2%w;3aRi! znJD}G*P`Hh)fA(qyuo1AB!I`QsivWFcFNT_kfjg`%TH$hflyxot%J`7cSo(?C+L~o zk-e$8ivT#!pA&sRCgyGIe_Pkux>LxuIONMV!t7iMEsL)M5#|;G!)R1Y6 z-&P(|XGWx@A>fEtb7?_5yfmD4wuLmTpV)vw-K3_UNzGyB63@ z;5JShey$@97NvK3#CRpASLOIHTYb#9&x;K)<}jnP=qz#~7jfWyK+W^Vny z$OVaHgs|w;Xkd^qT6y5EQod5$pTW%fMS8Kj>RSz?sJ>jk@8I9w@ySkHTK@y6|8J?8 ziIbW6e?UF!e~_A4|4&kLuf|r=78}yPnhJwzrB;;{2r>`g`!+oC)ETnbQN=v72LMHk zNN%LcgynVR%1QJ$^{4pru~2qhv0V@4!zMEk1PbD%4E6DjZ zWc{)keiB#WZKUmw6Vv5}GAEcZGWQc-hDLg3A>bk6h?(}}yVsZJU;PZwF~)?k!ihr> z??^xUDT4{G$hW8dd)`-mQhjQnRYzds%!!KxEX2ONXR@6;lSZ1!?M>_1g0ukvgJa4;4bFq|?RsJhVY&~#b&WHS(62KxxN7MliOpb3u) z=dK>h2cLrerH2xK*4)Tq%@=6H4v&flW`i1$&va3}R3FZ6#`|&m^(cv{ArV+uqSj$iG#1${~iUMibl2feR>{QMX^RNCp z)a|`rTxilaYmI{np3)v|4RzBq4UvDux`7_;1m91WH=)EU1ByBXFC>4%4x9VK^(&wM z8gTi2?4eIZduBshEv$*l5PvF)8 z+^C`%5txZaAPUaw-$+0z7D+ZmAa|Y~9$P zkNC?^%9Tq9P@lXAn!4%z=VVY2H?Rxv%9`_^sg@#cTpPI`vU$-X+fvXNAu@l!w%g#z z=M>IS;K`op0U~L{fe1zUYX$4YG0g7$ki^#;H&9Xe*UdIR57ui?y4;HwZHBmynmuy z`@U-0U$FfBSEAK9`CHZoZKd2s;__dP_@#2ks=40iWupbyXGIDfN96Kp97y_NHvyOj zO&sCE!|^(k_RAR;3FdBz=-B3Un&Nv2U_`38BpcJ@TKOCZC)O4J5Q4#;0GL0rbk?BH z=A{F$d7F(^lDmgDl+~m>ER(+L=$W-@Gw9Kj%&sZzbL{{6hZ`M)h}1&fa%)BS(LTP^ zmi*mX0hehDt6}&mcK_~GLk;-6#JXX5;|zRpCc&XX>;nnM+SaLEtR*QE-Jd@g_+M?N_ui(+RLD>`At|}|GvlPhE zX&GNBVzO@O#bXiBHLuQ-i=N}IfalhX*;KdC>cnqqAZ9aktL8Rql>QU}=Q}{U2jeM) zgP~hG8N4!F>di4+`v}c760nlydCxz;*7^7U4hL;vt6FvX`c6v50{p3<((v%E3R?+v z17ut7S*I6%O|+fF(xtLrHGo1B(cQE$DzSs3*e$)sTY?l>XKsD|O}>H*cm_$ZZ+Q*K zK9Cu^zv>9bv^G8?Sc*-y@La)L4RhqNS8ZXY_*`v^4p{0 z=(>Q(I#Y@NZp#i~q}sGQpY_&D@!-E#GgC+_)6=vbg*fx~>2IFtN>p|B(4m3X##!G% zb#UGYHJn>osDQ}y7I7LEuA-AxppAyQ!Ko44E6_SO-F!8TBm_8r;Jm$&n8 znPJIsnd1)4YUB(`>k9Hq6B1h!jIbO5#m8))ZRqvE6pXFd!`wXX ziDM=YX@t=xAEaE)naP2$Sl+qKo!fR?ZTHL_ z^dy8l84SOtzkYpg@n5W&M{Gk=U=u{sJ;LX{D}))RxvM9OeuQE(io@ zalwt3@6CR0CIM{#sa-afJ?Ga9gIzMK4!ZlX+SVsYge87hglO+c_-E3@a!k-oGGGOK z_WSv@KS5iwUQ(p^JVuld9M>aoj^mxsdNQ;MVl7#`kvoz&@X?1g{|kiQA1K*Kfb@Uk zjsHRs|0ND*?<8V=z`oR-cvX;1;xe0fd&z3 z;===+Cu)yzpEEmMVvOKCkpxbXJLjZ(Z_`~gI>Qa<)94qCyZY`=vKRce>K?C-Z^yw! ziMd}g_wD!gGLeDd)pm+T#(Y-SbIQ(CkBWySil=)Q_3wArWtYAq)XIJQh+(eb$Tn18 zag6c!V~YRhka?be?@Mo5i%m3b&8g>Kk#cn~tNC!VfBPD$r@mAd!Fop^2sl;7Js$_5 zFIZlm*YX_+9*Cfn(a83QWLAm|HXA#iSN$z$CQ%LFTm*#V>mV2hXO7kUvPe@+V)_kr$R%^1U&_QWffqZ(+nur%b=%*nk zuwQ>FIqkBn@#+IcJAP?4t=|YB7N+Q<eT zKM$&OJdaB)qLFsyH^DoCLXLG}K(XOwH4@EUNO5Zj6`_gFF_y1bMw}gcU3inZZ z!Aqx32l`o0NgI@HvOh!Nsf?ZQm^tz_b)=w$p*OVNH1(Pn18Ayc#Kj>*vQBSvP$1!9 zG~D{?^d)B(_O3GuwQ{Iy;F7}gg2`|#GSXizsG`)U$nv^in)Tv;5akqbU3 zH9a)|tiqf>XZXCc3tyh7uOC;;AMmt&4gRKS&l@}K{fnGhqn~1E?Fmaw5z+e;oY4K_ zO0Pcj+_69v(~l-by~P*{nA^k>*WuZdONHA+0|OMTe@4@XLp7uz#H=#-)-NI-`Y1Nz z!Pf634YR<$SS32KKvS=tiA{3h`p=C1~7@$fH>Oe(6&m8sfcH`RInQZP7i|2rN4Q> z8>@&pYP6ev^G8CQ3e55}2CW?;fZJZZx)_eVT|By7A}D)= z=lS+5!|SV@Ah0^&5@7-{G()sAS&jNzseX<$2c7ew9K*Aj=PB%~OfRzEoDM2Q+ANCD zL)p8N6kd}(JUn()o!g?=FeqJ8;}V@cisM>sdtU`P=EM4NSgCG~L%#$}ar0rV1wN|A zuaxKE>~=53vHnitiQ0uvH5-=SHoNNf(7q!A!Xvt#@7j1PRSytIQX>yE@$bF>0Xc?C z{;e&kI{OgklS-xv^v@1EF3kFpJtVz8%TwIN12GNfnGoaagV@wIUlo=_{qP8H1PSs) z+lb%XxOeSGEV8m^a*;(uqQe?$rLH?M_?~&VMT?e9voN8ejA7go4HEPzc}0@5)aXn@ z?*_b~jC6=8iSvAH8FT(q=CzbAQqWGqEBP8P`L;@N@*vx+Inf9?P=S=7UbJfLfqRdW zTK?rfaM5U*@nx)!WQi~xm_f&t<5ls1?2I#y8r}CuadAATie&03?q_ZGlAGs2H})c( z#jO&`QfYUEOsQ`yd6$`(AZ9sL21XDFhjr8s7finm&wW+}B~n6JFh-bw_&Bo^g(q7{ zm^|cdjVs1f6kJaRi*TmAjv^b?C^KoIr=m6&tlY>m{$ETcoSw6)NKhlRhX8W5FPUg~ zWe;NMA}?7T*T~MQ)ir6txV{R;ZkHB9hr)4 z;}-r@UDu^eDbL6+&PkEV+V4moOQqf>%wyjtXxDI;P?1({n@_8I4p+xGsNGbwAjg6X z(O$1@0~Hrp!E9}OGq>1O*o(jwsI3;uIh}N|fT!GT6zI9OmLi{$G{nlnqb1gDw{~s; z5see!=sS;`s#buWLLrcBgu-G+K7)!{WPb|@Q-jYguM(Qrsbo%3OUzY)ZqoCboO!Fj zQJKSgg=H>Nw4LzMn@zLJZLJ*s!cVGbJgJ~rdw##(-g~%hK-QzGaJxN^x?n#;de?=} z0t_vw6shUJL%Q3n*}U7nj*Kk&DS%cBBR)X5L-Q$isTvDbQ1?h;m=3!4%;kb&rKT*a zU!4M|ohc_TjPiJPagq~=dNbYxK#Khvs=kH-a+_~zrB|mOHy|>Vb+~LB&|=Mzf}IJt z>jWUFAU>6~Z+eQ3iBLi_1Q{$iG&mTpD!g6?GFp`Niiee@QFaQ4uG~T}mEhk(R|T;1 z%>!2)K?5<}i#5&I%=Qof=Xj0>?rPnxPB%=txj8W+X`$7GX|Kz-bh{9~I#MAQAa=o1 zl;Y86VN7XWmPp#*VyZN4R9G#B{U)OJ*o~o;k%jXfF}ZR^@IYrU;#Z27h?~WEjV0UTpOafNlIdHph8aG++xs9z}@Ykkf)v)qrPO^0O47 zi9F*vDo}@u8A?>SbKI-4e=6JQ*;k5^mqkr@xtxi>jYrdTAh-~HE(SqN{ST<#vUWNc zgbimrxv=Cis)}^E5)Q{ zj8Z!gUk4Cm)2<>4nIN3`))X&w(8A-uun#c+_OGMFbxXpUv+*leV8ODW2e|JSLyaMyX?XL@*$TvTZ6Z zZY0mf&r_WzON`rW=t+QkZI=($+Uxbo*pvnN40m^QYu_Y7KUFWcE{*O-|0Ow z9MNL85bdjo&dK6ZtgCi^-CL2fGjl1N_LD!IlUf$Gy% zal_tXmd(kQCya){+cNjeS0{@RLcIm+V_U#s5=xX8Pf;|EZtI)k%Wu)bA&44d)ZlON zY0Mi@ma5N6EAeC?T@!~>s&`eTG66xb70KMg%-e4)eTqekNO@f!Hs{gPh1}~2mY!wy z+q7XJ zaQz$yB)en=5cMH&Q^w^<|HLeM0J_8RbU(8zGz78g@)(0pufQjqMbn?XhTN(3@2Vj? ze;xb_rTIlu2hvjJ&j!-o{9D@6VMlLTbQSU@;3a%ZDzNl+$`KH$`8f$PFS?)=Nni5o ztNx9aKnuB-GkGqe8r;}V{Yl&aeZO!a&kX3lxX zY%zOoCkusm(*Swxr(YAXcG+lZR6rvp?eUS3zU&WVcBvr{uxi}-}GmiYE-mb0> z@_#Vks~7Iq|DbyQkITx;#Poj)y=?!%Wo7#xxvVw+{ZhF%pbDl;#1o8Z5HPX0Lo7~h z>vnFVQ>6k$6i#G>vAk zm6W#=eOAg(I6pmpid^}Fk>OA4KL0o}o=rj%jV6tuxu=hIiOicJMidKjI&b8T#P83h z{e`U-=$K53NezwBpfT_p5i%IRne;ZKUu)#W8oe_n=C+JBy4Wb8R4R_ddM4VnsXATx zXGd*X5Z(!_7)8w7>nRC)!}hL@zlT0{#92-x@pwM_nBz>jo9pTYUf;}A2`#&^{o>-n zi~4h&ADtf@JapbUv(lL)wDDF~on2VPwoS1sE-W_2ixY-}^}?iOV-%)mBGp< zKB94WJ#UK-F&nXL6&FUHQ$w(^eFJZgUbt$-b+RSg&>y4FFF@aI+$J}gi4qDeuck;U zgPYwOQ+hx<(mk)nYC(0fK6&Hn>s6_#da zS_4k3*s?pjGlMK7DEbL>$KI5wqetfq@Fe2o!)+M}POU$W39C(h7gw?|5x0-`^mrF$ zprW?-WatRpRs02E9(<$bAgf**c=rLD5Vf}ZzQ-R|=fy++ zLnRtQ4&+p7rT|WMzIJP2m!Wu--vOBL*d<@m`E{>mC~73R^k)*CNNrHK;VGhquuv|> zNmURmc|g8cWN7^AY)*cXT& zchGo@0P{{88Ll^GPFAZ@X(f7dl%*fzIlIFfhHpBV`NPz)N*M6``p zxlu?&(XAa9R0SF)G>2iO33`Go)(3iJ&{eD=l$cgPw0F4bli=)LX3p4%6XR|m6p z8EI|_H84&DIMf-TDD@&c_Lf13dZoU!$q&B@UpG{BWtm|PH1KIZkS+9xX$JNNru`U< zlh``5ECvt@G8;W9jY;~rcq9$orvzLJJs1W?zCtL1mkCmm6b3=@&`U4Kq)bxtzras#*Vk#*6h zgNN%)b98$Cn0X?oVpikWEh;NOo8*q7t<9?S3SQ>o2^LDooZ<0a=y+tERjraR)1I1e ztVbELYWeB}b*Sp%5ZBy8I}VP4;5;`~ zg6mf3&Wy=SrLrTTwZ|}YaR_7wS)G;+oFl$w;8S8A*kLe>B6}uxMBrm)E4uEJh}E`u zQL+{q47)2sCm5+s!=}k^`^y-#5mZJc(pxvnnBi{SAV-*Yrk*4?K@0)axgDYXvEh0b zn;I#VND0v6%v*9n1k$v-&7 zSoJmDDc&!(yQ{_)mn!fuMaZ=~0zd`F@Ce=$55Xu#!* z*+Lv~pdHmkFM%ymd|7P}=F9%_UI?sY&qJhSnl96_ZxD02V90|w`pF~_t)BIUw>!QF zO_{541cXdEvld&5)9FwvI=fsdkGyfAIFwIZ?Ol7PI}Bg>ZdMEz(QRDWF1~bbVWJ$-w}a%K)dIZz&$plFC+Q1S`-)I2wpyh(3<7g|yCQGAG4$yY)DF<+f3cmIL03$YU?e%P1wUh{aB}cxugItCyL#Mhxn@HYILjKoI~d=MC3nTigBp zYigjQVHB+Y(kQHJb>;yV2x@7TtmAAe7q4AaLL^!=yT`HWZX7kTbW6b}8|)H#nUVO^ zxV~daBcOxz4F33%)BRidK(qqs=cvz3K&mIrlMPg*%TICd)Ds*Vk)qX}G*n>S3=m*M z6t1NYsTnhOk86xdTRrHdA)iPjFm0Lc<^+q<-1&JpWW|&eoReW3TRk*27rP9zc`n1Se8q8Ev&P3tTVZ6tlq&;|pkQaeB{O6cyE_vb>fwGw) z&@K+V?H%>u%*c2Wkkt0H8f09LVf^*ssJmJO#n?fmwg~G zP>e&bML(Jwv|y0b=|2CaGNc}HX=m7onU0@f|KnvK>v8gQbPupFRB=)Y&CxU(AhB<3)Q6a;pOH|K$qzDd5U0 zS$+tF%`?(-%)~OY}ZZJ5_ zZNQ2{H?X^&z4`);JmWv1xGdXsqs-t1U%MqK!j%dbR@K4Zy$&d)%0G$*`@P?Zf3ctM z4EO`o6gIuZ5;VP2Yd$T53%$8KDZ!4j4`f3O2yT&c>;4gE6zF~Dl9RP=JRbyeE;Xdk zoZQ(4VlY<2WvKiWVy?EZ#5fuAAJ9)8*Mn(T0W!2tx?U1RGq}9Lx{q0mwZT zDW9y3Yi$RJ|Oy{Ml^}WAT?wLs~jdGzTZk8VL-=Vp>!> zaD8CiJg8`pt`yn&aM;*koPfC>Z!s=$LaMBm8BYa5@X4qEkXllim9KWe^|=u8<4fca z`TNDjHc|3+0dk2}p}R|()>A1$z$ZP@p<JOE~X`!IPc0k>gGGUoQSGhXV=Z)Es}VOel0xC#u1UTe?{~w4#mqr2E+09Y{@!9psbOSHaTZz*}xx4%aaKa{+of@XSfTUqAe z89jCO_3}tZyw6wf6u0SUjr;lu1MA%(bJF}L`tWZ>%S`ek!(7CaKXyvQj)ePqA*jcd z^F`)h25S15&~uyA|88gRQ>Nbq`WBC;^O{VX?GLQ=EbY=)LKe;$4B!u~aIyaRl^;P;qT+sqOutvk-C%`-!fw!4qK9vBu)^r zmn-;6zIq8w_POX}C8m75^v+wMY?*$+_N$U*)Je2jP^2<89G1UC?jb+Ziwpcz+nokNhl0Jd#}gOZ+PH0$+-~*d|ES&zFEjU; zRE*C^LDPuJwftZa^fDcGJ9Q4QFXM+6w_bT- zyPN*TE^Tq-O8YRj(!5HHInFWC)$x`V^2l)PmJ;yJHX+4xvRMj@V5G87W@wklbu&YW?HIvgm;WW*$)Bq0n^pvG|$tfuhs2g{NGC zF<*r+>-X}ePH0M`M?_@SG04N8h1xEpm7IsUhW5NlHe)dA5AX_TW*^bgs;*Z#e&ra2y3f z3sI2FFo3>8X4c+%licwOeu)_|E+-k68Qf+0A*odWc=^K72AIZ zK-vCB0cfn&wcXZV)bF~obgH%?fDe!D{vQLD1nsM40G04*h?BwZ(ACsJzB zPY^HEKI7RO`9!UeK)}s~L}ur{8P3<4pQ*z5rih<(fA+4VQ+sDO-fWSpkE2uMT0WDL zyy>_e9)3-6!|cXK*j$>kq{k}cZzl5&1JA_z$8E{Ghmngf@#>&c51i5ln!91oQ2dAZ z!-TG+y=``Mz&?$Jy35v^Nm|}nQ^Y6@e$0ySpQURzQ*GF*I#cgC_zqx*xH9GM|1txX zvLutkE&r}KmbyV4@~C%pw_{!Arfkw))~Q)WK zxw=kFq^_VC3P#Uanotx@U3vX7@X8^bZu!)gJ zv-A1Y@w@KG4e6MjC^r%+v$=S4ky<;94W(?9u93Xms__Upe8|6~cGG0PZh>{z4Ydm7h&cltMi87rI?UJ`al_gg zGqahCVM`!?A;NrolMFsw>flD5*fCJwIb^BEV>{l-)M%V^dR(lh4bP%a?zs`aj?*=# z3cj2`7<*h&>#u>MgQGeVF193u#ty!4vV%@L3C1c|9#7iKmZa)Ij~1y+QW9{J;O3|` z>2liI3V9Mr2=z?X)^G88Oy3#6BZ~RQx^CZnn-)z+UpVQm;=<65^Sbs*FB#Acb_&hI z!<;20Ad5!-Ydxm1=6Bq7I@UIJtd~Fq{ApMAqN2*AOD;PUBR={_*cz{rhN{CXAD+%M z)AQEl$ybf67@~Q?gWKHFK*Qzqak+3!6^MQlOfkhATYtD^s?VS*DUmMAxdhgCpfIeoI-2JkGi%=BrD!I>z#4{ALFDuJMX;u;ZepOlK<(aw^) z(a!b`?+xR0Chwx%IS<-E&kVSb)4aVR5)vnO#TJqZ;2aA?+#(qNj&0~m--BjOhZ%NP;|E?Os6vnx+UctW4N~?aQr{b1K z`SV1=^z?Yq2@fb+&IHamN+?O(d-jEIkCRQZWQg=pMxWnDU_r%(qddP@k%HVI2Q5?j zevbUCh5~@RgLiNA7A-$LBy`HAx?z`SMS#t4;P|jh{Pu68x4O8(qnoB`CgLU1{^oL* zG(#q#cR;TkdV<4|`Bi}2y76KT!=B2z{O!}T!&)4cS&SLevAX^ZVfg-gGGRVKxv z5#+Uxj8Qqo<(?mOT9in~(--`0FmsV~yfG1^X#&}R?ILd2_4mdCFOq16wreFzjZy&@ zIh`;nxmLLVh$HypD>weD%YjyG`^=sv0u$n2xGH|PYAY|*Qca9wH$Wwjp(3p$O**rE zKxpNM!l3IFleQTS4;u~+MrQs&tWI*7qQT|XlAHHbNT+P=-bj|$-R-3s*soltWvW1u zBHF5tf)cB6#b>jt5AV|9X_D;X5SC}ng8J6a_Jx>1l0_uxaJvGi_#-%%yJ9mx52rp} zm^F|6_T-{=SflROxM1#Rit#kROlZ0cg33_X6=b~w00YBS{*%0MHTh3-TNU(#imAA? z`6YL%j_Me;JCHjhab;x=FSZWOI&1yp;F?P~|L0a3mH?#j>7ZmYE^@t{p<3!hw9Y)RP-$djwQEF=+W}CgOu{@GEb7h*oo=8DZmq%!s&pjq9jgz+9P$SY z4x$_hFN%}PA^>nD>igoxxTC$}1BZ%sR@PC|Ob2-po^mKJk?F)RsaSa@wG@BK)@-29 zoEQHtD5f+@&zY8p8|Qe+uMStlx@Q`1MINj9N@GP(SPC7RdW;~zU!X0xa=Q@%KX znm(_)2&u%o`-g4abzk-E*i3Og0<~$&YN-XM{c7Y`fz74@=CEfT5K#ai(U)Bse}Vw$ za}0)djR53X7C2P`gnjLrwEH(8O#jO=*Ywg4d)~G0@J{Tf-g0Il^-YqfS4S!}be2$^Z~i z{V_M)Wu0w#GHp4i$mHQjWL%w0RqPUWH{8tRAq8Ot22f6`wbl5IHQmBfmhVK(p>~iX zlQL^4;O9N5Nh%UWs%zuL$; zh1*gQ@2wf@@b9ORtrnO-RH-9PUW|OJb2?*r6=zR-mLjZ~7M4s_)#n1tb%xYKK~xa& z1HoU3u>&HqsHI1(65K6{VJ(|foHJV56*i8YmJB9NADZxjO%@iC*T?nP+(YIGXi!<^ zbdV2#Cni}2FQiM)Um^z(E0Y`HKUXx~-6PE9X*|vL4a$t}N%OiuNYdQ|tbm0&t&}2)1uzj%%}Kw?-X_Qq;s1+U^2P8pAcsN+e-zcdFqvRWw0lpO*Y}s|J!tb`~N=f3Y z%pA_Eb~HR6a5C~TLFzdN4Ky>;)ztS)0Mlu%(t%-Q)H>V)#>6{XA&^yhN?`bIUe%Gf z;?OOm98Zn(15f2RSvPwMtjd`VfI`dhMji^B3&dZawKYp#nQAEt^*-f1N`s7Py+slI@RSz z$zqT{!M~Mw>@PW@ZyB>ZS+TR1j*r?iYWK&?Gr7FX z7{UleQ4_m6AipL0G8F+e`VFI}CYPGgV*Fa5za9H&2&i>t5*%F=EG@n8y`0|ewW`vo z;PyMUMk)emU(SL@J9?eohkAs3HxV8h?UyW8IEvcE$mkz@(8#~Z=lEaCIr?<6bB!HT zZMu9W7Y9sikc(^2hT)L;oQ;2+y_;G?k-S(AR`TJC7gs$c(YDx7r?uIz6BSQvHmG@= zTx4-g_usV!z7?aHIXU+$EIaPHBK3=w(gJbQ?XFbov4Tq7e#ZZP{%h+VMs!lLcDFAV zMFU;u^u!gYvi8cARNvRL;M$zr_EBK(gjBoHTv zNzvQ}X?IghteT^_~7ISo<`B;GpHN*J{Tg1?#p<7JI_+RhoH$7oNDkC z+HYB!-FYvVnUScb-%|g>gon`a+W%xV-BM<=@Tc}3TK86HVvenFWqhc5*f{a* z261A#sZPJovujK)VuI*p(aax|^qH1+b(g3imVoxLjJD(yZ}9oPC1wWx6HE_%cSH< zT*i7x@aaMV0_M}j)#fOx_8XhNdU-|~{Ww7!q3pHQuQwjm5C074yi2`*0~9Q-NyK8Z zMaOvVMHSZwVhSg5qi-$#E)| zr!QBnNTAF=G_0-Jq3>%-KrQZMscI9sK_prSvlv4xh!uH;fP&fR8VfCk&n8ckeymK~ zrhEVn{Z(F2qujz8JXRWKX1L_h8rfXhLlPqyPU7U3IvYckOx^uB6>l$@n@xea9Om;{ z3zb`9NZHc4%QeI12GC6(o;Zm~1$WdD7 z?Fs5@zGXHYjgA!pKTuzLvK$~?UK!#nrLy5-wJH2*z6$CAjE`r!=y@~plWntZ&RIB@ z&MPS3B7S*SB8!YuU*ZanJ4^2XH|p~-g6vp!qUy9Ob0wkSq7m#_<$Of4nYo?H*`?Nd zF@h~FP|Dm-y4-?0c_-t&&03~fY?(zu9&sKGKJc7{ch?jhpOu0 znDX@XhUNU?luhE3wTJq3vs{!U_di#quPKd%N_NnsJ|C5 zra~nixR;Cn9sB1C-?&JA<3DKo|Bm@N|DSR*`+tb}+5bl|e~#8=;wFdN&#wG{N{LlP zbqFB<5Q%aMJ~Q%dyK*acgLjhb)mJ{n*t75=xZSN= z`>8*c$qf|Ji)TL`$iEMd7eBuSXc*$0h~595e!t;<$ca(Hvh5Gt>G_ABhNwPdSu3gG zIdaiB4Yy)sp7QlK4;yUUe4jdP#F)qI0~9f6r_RjLT_(@;OC`lZV%T&p>cYT7@qeFM zBcOcY1RH7Sr{H%->Fsy7cXxaJ?#sH`>iqRkDJh+(4nLQFcYd+$f@rJb&5Pr=ZutCY zzWtzt9*N|q(d*e2&x%}KJ9sIOzE^{-9IC%dI}tg@i#Pq&!<`iqPeEJ4NFp;%eZTVI z!q0Tz;pc_7;cZ`0D!|HiM6E!@r4nOC^)Cwa#U1v}6kdY)gg9D{iXF`U{38DOzIpN2 z!&q!zECC(&WYXkW4d+;jy(ns24BNURBIYrj4`aF(61uLhRNnr!#&b=^6x`WTd{9~19NMnLQyfCwz)8&PsB3!unJrzW0f?-Mr zkcw!w4gXHJjj^R)dK$tTD_aM~p@P2rd8|qN&08C-*pTZBtIv9k@O*qFBO}oM>EL^# za36;O61;{A3Gas7A-L$7-Nhlf@HIM5GyP~^kO9ibli511fUgR2?!uE%UJuufg)-Xs z8Pe3Ka-mFeBcOv1AtY&>`Mv!YAZ7}(?B)qYD)K%mwxsrIHJvgrV&Vvg~KaJ!B6T9;}imj^4g-TtgIB>sc z+$d#L?e%~HmVnptD*yuTe6(_;`97SkrIo?s58x1F*i5zgtR+mMfEKWXXY?Hnv+960 zU~FG--pcf7!wr7(pXz89yvw6(0wxm{Og#E{RADG@ZOO;DEr%|rykU3T)DUnsBsU5^+u9-I|L$WaTM z_(c$*mb)_cADh2L7Z+4sI*i(jlSAcCB6pkPX&;Yg0QV)dNZ+ci*B@ANgczQ|og5?x zo^=MJ)pN%;KY2UCD3umnMhaFIVuuZU0u<*2AVwz{A)>KCcOspG-E}8yfzFWU5Hi)! zCtLdO#RqgyTA8N&8ngX~9p=I6mzcRLBseH+{iHel@orobETVwKRl2+)4hQAR*sQ`1 zR0Lnp>UMoR;d|K7dz=YO&;>bWOA5t~0aREy8#74Z(1pd+0LMrasZAr_i5mfsphe17 z!IV~RlP3_fn3PQXF5Ggh*OKy?m`;X1z4b5w6XyW{3U|=0OtRIh7k6E;;;k>y?#?Z)(pV;OY0uKc5vv zsJ3K{FOce)B#Qn~<;2pm@rA{wrGbq>mx9wyO%yjBYq&QO3lKv!lw>aDGAWO(u#$3_+sLU126%juEr&3dFG-4SLE1Nlr+mA zwX5T)jBLe&DGbt^g`o!-OeLT3xI}=^xV1PD@@W%xIa_Y1-2i6jJA>(#7L65>p)fS# zXf}>rJhy~HoqFY5s>TP9TAf$i6Iup9$+zl~Qw4TN)9YdbuTl0GbkbxX(8`FW+v6E3 zF_zsV5x|XS_oEE0>u|;#=OOhxAQmyJcsyVjDI${XLGQo}mW8`zq=jB`ta2-7$1W*o zkkIg9b85Ex5KQ5I@~CH1&;mrv9ISU2E5p7kCU`^)8{99Se|JXpUl$qUko27Z#q`%S z&sgdSu1nFBdz8#@#Q{Y?;}=(|(Z-VV38z%hxtp5yU8fLWJ?_)HtC$0L|Aa&})vLcz z1Y^HDZD1+2LRhbd`aJmKgGQd4I-#*>z-xmg$_pt*7CJXSikQSo@5<2!)J_eRG2(9D zf}D|yca;#7Tsk;E`|HOzGCIgS_Ij`X;|qF2-H7ruo#o!gG9Z&~~9+ldN$$$MTeWoS(^D4?-}4`}o(HCw>)AU>Mq3n{=# zu2mB&HLB{za2|Y!O-m?4-lt}sy1DUQ3eIfOlEcU@vK;cOMkpYN_a%Zxf2+4nkrH8_ zr04)UG+vla8T+{OK2m$I0Z2t_!Y9!A(;+qUX{}X$Ue1zN3>oTy1-6gT0R9dyBO+uY z%!9)oUl4D8&>8mv+LE7^NQlNv)c^GoVMf9i$({p-6F6KovLm{A?P>*K33@L-8Tmp= z^J_E>IyR)>`VRh-4Z~7!MP%HE576vonopwgk^%%g%jA_6Bg%Y`t~1%ZgJ6oDMKB4a z%lHa>GghFObU+(;l(v?NMJ!~|oWu)Q=)E(T*?|hSGEV=#E};INgz#zh(_+<1&_@Y3 zXq^R7bW9LCV2mMS%C#F&TO3KwMSGP9Rg}=?#GiB0l19ajuUfVL$lbW4@G+{eUoyJ= z+U=XU#tFmDq0ml__~>M=;vu4@SsufRKtXlgnrOZPx%dwv>J-(-Ftyhx;Hn0-D*GAb zq}-vEUc}pB1S}b?iqsKFD|>%)QML)2=7&a`F+ZWQoBuKdO)=&bUjyBx+{mpy(Xy*; zIQS~^fhi7$_e0W((^M}<=UjRounPbrXZvafoKY~yn z3m_6gtNTs(Rn4C}bJ#%?&Stxy6pyJzLD1ev>vU`w#hA4x9Z)dEO6T*aIPy zL;J&*y}@rD!h0LE9+|a``D>Vusn=C4Nvqa{E2|;|IcPJZ)Wv z&A*>0(oGVY8i}&m7i%bDf~qaX#@q-9=Xyz_ZNawI5Q*W+15u?IGjbxz#B_!$iv`uq z)p#>u7h@{Y;*95-z-O|yz{ET>Qryars2I?ZjU2;HtvXk)wX30M*l2s5HxVyf*1lD; zuUk1Nt(=A1YnD+!P*&yPh>UAb`wdg%q1i4JB``38fkM0MqTa3nm6sn}J^P8r2I#9T zm0U5cgY=DMwldfu#;bW?mc-0`skwiv89NM^LnnSFZWAJ1+(wmN{i=oM@^%)6mr)_e zZxnQSz0?D8_acq&8*D{@Ss;4LIbawH+liu~h@jO>2+w4&f=2GHR$)tiODe+oPCbB} z*R@B-Q#FBzW^@O7!?!NfbaqiDJXS9Q(9Jq9`Q-(#I6Y%_A7h_aH*PT?AYpfuhMp=@yKini1@!`W-gwZ;=a~E#d+Y&OJJ!d zyPfng*N4H8+5?Y?plwv~E4>M?0j^4GyqDUg9Z8~ayP#9ZrNJM3J5LuXZY7QZz0!ya zYenHU_Ts*tP+vfb8w)l93B5apNni>6nP_sw^wK$}HsNSyMDx=A@@fRzxfn6fhOLaI zL=Kt#A`XJHVo!1`lpKJ6&L&EgCgYw^Ly_oqVyGrV-GIS6G>hf%t7nxJ&@;?8b!4>u zxbl;C@DNt?J;nVR7D&t=EOjtPfRsxTJ+Z-PGA{wqE0Xu8qlQgw84lTKtL1$FhY&05 zy_1m;q}dPqycu+|ROd(ca+UL)=p_u}t0nm%kVeY*SeUR;0=y|u3M^>t7RAr~>R@g0 zp0wLJY(-n9p!TYw)wMObskB34hL2pWIhFvt`-N!#6+=OJ^FdO4QxL1d^Ph!?SHNRH zC3I(;n%v1Y3b*Ay5<(UO1pz6XdWo(St}0om#ci8`ia;v)HZd+`i~%~=g&9Wo69`!3 z{EOZv9EQHJNP@gO=G~8L2dU->Q7Yo&Ro+&=+p*8M3#_~)e2$mJDZSO!D-W;fsJE4* zSMUq{OL!>TvujoY*xyUg3*2V-kvvw6N4)6;?q+ALcIGH-u}mE|L2rJ)^OdBC2EU*8 zje+&hp9i%|Cl!&5)`4aG;~)2d9N)@1H-4?vwq30{6Skvny1INU4mt`mM+d@wCt9byoc3?Da+^+Tl~NAD z%Trzdt@^a-066vB^rX?e^7cJ7t^HI>|5PBcouDhksK~^RBv-acGW@Z+qLkYy6SW;3 z6&e^2J^$x!mYoT-^(fb#fFv_6-MilUHB?v=Kj79#&SqJ-!an)l5~Ms9u1Z=0MVF62 zZ5Sw0g2Ha(2@#^}0fdZ2-_!#nSenObCQ%8m>fd=tJK+vxQ=iT=+`e%B6DO{(&X%}0 znR3Nl9kYsYWgVOOy2#fcClr76A(=YK0h6^QbGf;UB9$9`M;D@SlT@>1h)3@gf#4np zw7H5|{#@EKzr-fq21N+p)AQ1sO+`M$SU=8G1!B4zZf^W{P9WK9aT0C#Oh|6Phi?;x zu03<&!QnD_BR9GOh+!7*q(7QP8eauFY6#Ml&r^|vrqRmL-$EMa<{!K-4SMn9yxGdH z%{FjhPQdbN*|j(!Qkp1gsSjYu1kA$p#uWWVd4tZfO!dg`>WLe#MzC^$T6KbA=6LDj zCxcm`JMLcP{FX;J;*SLuaEYQzbd?C)l}L!UT2high4T@cXZ0L{y3@iC^RleO_0een zRs`@x6viD`w>vEgG3>Cm>&WQr5j;4z6q!Fk;DdvtO%9Ljmn>9fO2ga_j(I4*i}|Z} zUonXQYIz?_OM(ILz|Jq{uQ~EuuiN{m(CwRjnJ6_^PV;2nMquh9_^Q6Y3((b?@?O1FuV*T#*7m+c23)M}Wv5qZwEpG}I*<`r zUJJQI({S0)?nfvuCR@pw`x-K~&ANLAGD9v{5BfcNN7UNxeSw?l{{_V&!N2F$I2!2817zWMOr+(QAJnu+2R-UUVzuh)c4rlj(G0dAvj zXW^UK;9>b5yX-bT@N<1A3<4`C6E9&_U(dVq6ZFMea&Z-`LIwJ*Xzq5JZj9Uub} zG0&H^_rQHI{f+$(@Xx0|kBrUp|L-vUmv8i6?GZLchW~Dlu>Xhl2>bu2J<_6e>9o~~ z`cqdHP$oGwU2Oo=O}==~VVT*v*c@BK!hhs4d@O`yOxHowk-B6)SM`SL4JV)zv7N#? zZt^9ZipIggv3kqBhK-~oCiKPrUCl;LzhiP_#Q{0KJU$JXgr9gW-a@#Wos%8LA~mK7 zO6~l0boC%&YesTN5^e0%$_d%)*~0OOTHMctHcvw3q~X{arq48CFn%q0_hNqw^kOI2 zi(Yd!3AWnwuYaaQE!=UoY1c%#`7Gc^v6-V~g7Ob{N^bQ$5B$vNWR7FTA~|lEETt=u zB$L~SCcM15*>Iz^pnI@@ZXb2-WGOMkVwTi=>4i~s*@(YHWE+@1l#rpPQrju1NQP?4 zc-+wd5L>3q57F2pW!_wmw9#^QYUQvt+TXvg^VqgpXgTKZU^^_J*h56|*{Q=ixX2u3 zVaF0_fmNn7(FICszG{>>$fUOByc8vv+k`zV@Yh;!4o25sp332mg?JDdWtHNSiHiCu zWSJsblJeggW_Hux9UI)sSd70;O}Jy%Ef(Xp`hQ%#S&@I|Ah_6vD9s6&OE{%?;d?*p z4fgUFsDV@t>5aaxe+Xinq0aj>xXnqd zoe?U)l@j%IqV$?m0zQZ8QlhjLmTCy{F?34o%-OB?%DS;;nKPSQqCDql6FR?_f^L&* zYHWC{SY67L&LOJ%-?#dw?NFp|m3T_0+P@m41Ml$UttT3CB_jrCJja@&65w_eFXUY# z$SoN|W#?kqYWL;bnzo?aE8Tqmz-_t-(>C3td*aM8%jk`M4lvWVD&sa=rXLEP4s14D z{V&GOp-m8=&9Z6RwryLLwr$(CZQHhO+eW2rYifF)=~>LT=wA@Kz>V{s`{ynUjr&S< zNIj052k9C_6J2yXs7uoN4{B(d&XO~eyE@=O-l=N&WV==aS(TUKY)cd|mQ$&)*-G-Y zmo`A_n2l`%h~Kb9`I7U7Z0X5l^aajyMth6u@D+O&Lv?B~mDl(^wev>%LUCnL+N%(4h`N9Y>|KTk>hL*7;xCZp+RU-2?G!Bo$aL6$U~o(Wn+v*k^;u{SNO? z(U6RudO5vKW*H$Tt#&nTa^+|IORz|gWa>UDV@{cA8yDkxc`Lah3YeDY)h?{E3fLX? zber@MTR5-3Q1%8WjYEHt&h*)8UIIBJ%`YfE7SLse4l^H;(ZE@7bAlH&?Jiu||5d|~ zI8OT|t%^dhHEQBdbU${;Zt2qeQwh%n!n?F#H@iAJWCk19gIQEep4#uZ)=Y}2d-Vm- zTuqEL#a(gcT(m2YO6Hv%8(a}$;5)d8KPsbcWvph|Vi1;4tz~L``P6hRDMg}V)<5mX zZh3aU-~xX94w=7gKQjoRYvFjalZ1RMW9*lZbMRXR4B{bdpm6)WM}--Y0WLvClNmgP zWt3lRHdJdB6?KHRM1!;NK4y2s&!v(tnT+;UXYnErGs!ytJKwMYG^d{iO1sIa1v_PU zW92t5q~s=O9H&ML%!8a^V_HuEMLI3%(vdxoreqa?eKpsPDKfn_R3K2WDS`<1YxmKl z;*tQgQ@9v}&;r7kJnsBn6Z0t+>j@%?(3rvEiQH=q_gOp|L4HsmJ1RywmpS_5%Q7aL zXyTOle;m}*Zq0NsqyU#~bwv;iwG?7Y9mmmdm@`W@YY6@TwrMbG2$9%kHEzNagXu6E zd!G=Vpn{yW@hqO(6R2=HE%X^hi&!v6$<{|A=j?5q1vgVg$7kh)swvI=xzYc7FMRII zdjil5_Gqy@Oq66M%u3_Www~zjVBkvLtS>KHwlkOO!`gj!og}0Nhu;$C+N}8(dS4&7 zZ~N{KD32R~5zuNQ6rWnZs2&e2D;XTv!4RamD%+#)+3Iu9IAP2lE&?B8-DFSF) zIDU6)AZ~4a$g^A+ws!d-MmbX92iE=r%z50amiT!AaazBme*kUbxrhr+rwx^PYq1$z z{&$Cy@TmNjFE2406~KeXRSAV=)$Jr8xB7z&@kq~{Lg_IB)H`s8mQe`42r-qYgXh~+ zjiEXZTqmCUo5`MyaV(S%xePN$@FlrASp8hYR~s>DUH59TAl(TUeDA|0Qx}}v|P_YyeVEUmhVkD z?QNz)_|;r^BDyV9%fFwSQZhSd@Q?*(k_cp&!D$UJ(+mRNmv7jp12ByZO>b~O_==T& zl%r+2p#6N#0P%Jt>+V6!eFvrYr|SQd)q&jTMYUq162k_3e#<@W497ah=sTV;TliKp zfuwKdKe3Pk2PZUex&`Ya^+flt7U48Lor@%A50lP@{Dh-*;03+ZC?fBVh zr)7z`$GU0M<2cd;ka)G-fpbB!L=2`{S5LTm)#n$_KnnTn036*<+9rRgP$f$aGE-m1 z^SRSY*rwg-jmRFUlu_}M^6E1uvsf5!9#9TZhG%$O-%k&-zHPM3QQg;a;d{H5+7Q`+ z_l$7vnt&Hv1Nv%~y=bHAmQ2H*C2eersc~nY9q`mAv+z#fw)1FI;-xxiA++u(5Vy-2 zKfPbo^KodaFvdi(mPC6kM{$l|D@zey3LM2OVcAlZqk`~l!FDwQitt)yTr^_dk&kBV zFt7@{9FuC$suxh4!7Z0(g_Z}Kh$3y2t%}=Mm;d7|HdYrprLJI=w)_NN3ABSlIB}Uobc9Q__8+MNO$n}_+UB~I? zduVj|deGz$rB)(%g&=c*)1n}JKn>QQc|#@boCP;QaickS1JwUTit*?%kTE=A`C)b7 zNj+CL#P69lL#mYZ$f3Ts*Ll#4Nn)hE4mRb&bHe(-q0}P!=uHZO@UL=0KCZCRnG@hJ zj*D^0QC4w>=K+o$l3LVri)Z}9yfV~h?|D|=erWz^)#BBJTc9v0BHUDoS({!A3|l*C zaC;4WS}qH-jSC5M*8?e@ilQWN18Q_8dvy!fKH;>!_qDHA9)>4q-@WQm|-*s&1*XbP#86fUepK~ZM#Scm)bhzvj=IH|&!ARftNM2~r zw!_A{NZIecBOCI-6R4iLK=dsFkn`znV)3V@^oL^!k*JF>TMG_c0~=%QUsrSB>Z>14 z35zULSQlRD!A%qPl2X1}+Cu?CvjRPYiBs|%1q94boN~q-pk789^5=MPD04o(Tqai6 zv;)r3KajVXnnw4pDf!-FK8vAckQm%6n6rd^lt)L#P4lv?oP{A_>flIWb#2+f z=@WwpUGGDcn>}yV0~W)JnDq($h-0gneua-Ebwm%1nZKcFlWhK@<$MHusZB?MzYFx5 zu>4Xu(gm*wXk&~kkmy?BHuyhx0svRp7%{-ZIak+J#3uq$C$f1fU-?sh^Q!(;P%c%R z{Sc*Y7do<0EO&b z$mq0foU4Wa=&={8)SVn&kMKaQg}GkHy~WP2D)hcP_)pz2@#Ir8J-z}Q22?&!+iks9 zlLPDR!of1Dl^qD}pFON=UM}>oSl$M40D-n%LBca+zh2utg;H>Unq#d)`db10dxL>@ zVsI|~N{aLetJ&jzs`hMCd`G5v70YJgu44XTe@~>WZ3b5ddE&Wgr9Q#Qrb(ci=v)9! zGOFmJK8WY#kb9M?zjVSY$CnYLFazJ4Cq3GQDu^<$?QjoeK>ID3p*#8by*QNL?y-j+ zTRRq&>B;~h-yv9r4p<}G-C`v)%t2A$AdFT{5V8O)&49HEah~xcgeBjN%gf9>z@(7J zd0%LY9jpr$Ku5gLMimh%K=yH!mN@MaxuUZ(iZ0CcLo>BX!n}ErMk~|!4o;?yI7qYb zNW(@I_%UyV=YNaH>*pe++?~fT?=eN5(DEuSs(` zIRm9ibk}6eqwe}@eK8M49C zY7S9M$vC0LhAo2QR6(vFlIMw%Z-3vB-@$6omfQiu`6l~+0O1MKepO<2pdQGQ3=c)1 zr45tcb~YyB?rwk6&aRmM!~65U2?sVtw*P*Aa{LFvf#ZKfI9zMl*lmkD{?zI%bikXz z5j;0;kYqg(ajbV`>41MawpI0j#KQ(>9+FChQ@v5vm1`H=BVEmr>rFBKo`=TA$wuevbjD$gx;Uj&|IsVbr)6*VFHaqf! zv_pG4^7JX-n+_Kb7guuZ=?d5F)71V2tLpcPUW!fw?RMx1{6$P2pngSPpx^6>S>FPE zZ?(Pb-TeDmO=CW|lGWgSUS-=>wYehTTfQ0OIRO>V;LfdNm$x%-P0T+5TBIRc>mD0t zTj--lpBO#bu)i=?$_-<@1Y@*@KVjdFJ8H@kEwct^eAW4C+*gzOOp3|Qx}iGM?(X(o zmk*4FO`05tCS=DI?X$FdkSi-CA$!Op`-CkcMfKdx0u7N_-?%*Ydk%k5q0^V2J?7wG z2;3wvc!274lf~bibu;If+4UXPd69Ob|bLy$5R4oP#LX(}p_>`ti?|E1_T2?%7@kZ< zdNK}FQ%cF*>XJ_6OtR5LTWX5|B{C_eet&Pv#-`Lx5*6wl(Q9a3?Rg;UqC9*xzQO}) z)ksB21-mRA=2cz|Roc+ddumAKVyz^4`>>Sg#km?VIRyVk64ur@i)u8jjg@}kE?zE^ z7Sfqa7UG}Ld^|BDJ=%NTbpSu^m{bxv3k4oTntF=@*BlWUAU5=qrn=4kCPmF*F;z6^yxo_D4Jn*s6iiC+&p?0bH4 zy7c=w9CC?gYwUaUl44WYf7a}LN%X#-hT!Xbzdq1wpylFb)d-u5+5BwUo&kKJ9A95y zNg`UYFIP&qcCLvcQYzqQT$2T;B|tP>riS1IdRNWB`tU46`p(FwOkjQCPvmd-^)0nl zsog(cF#aNs-+zlf)w>@^K%Js`Sn!C_vV+V+nMT7(xVuC2Q|6)v4dE-#8BZ58*#hy#!5Q^*fU*XntqD&IKE{u72A0(BU`3OXW=%xLLp%Svg_)) zLGb1f1mb!|70D8+_v}J0xYE}sM|W5%GGnxMN#f!-t#crb9xwut<~^qErf$Wtl10i2penlR6Iv zKfxZSH>Z-tWbPX?s#3yl&K#978OV3kHB|wiq~h8q{wJwCkr9C*w6ow063MPqG4c0X zbv8{c#Tqx~J)-JDo>~{#5cf`eVl*KKItvcj5ZEAH-s)zFS2zeA%|cP~M}JsW74J=A zileg5NOvAI9z|KSG^BhqJ$JU{fnUL>9_imu9+vwiOLFO#zKZupA{JI z_F0|J?y_}rrU}T6^g(Z%m&Zbi;7+~UG6o>p860#}H1p3C*Ok5l4cKq#pk74uiAFXT zM6}Aodq=G*5=-DNO!%SU=TZlei3f%a0*vvFTi3kxv|`E9*eKKz&L`O-=+eXdt34Hy z^~E(>_YirO5!A+lSq6KB0HJfY zh$0zf7MkU->hhziU?60Wn3cUsEH%bKL=8`o#`?WNZe8aL^xXY}J<3^emSINla0Hbt zxx;d#q-tZ^_!>?2>K6{W?~!Jl6iV&ud~T}U$ZNbcSV-t z+JJ1Be=up<=L`}E0UG`0=)?y{B~c`z5s}o|a4X6v*LS!HA9tW4{oAS^Cvgs`W*C&f zy>gyQldBt}PdciGd^_E-$MmL-eI3b(tL2d+D{yALIUi7cX`-EbDFjNsybgV4k{d7G z3tYsggLdwOo0gVQhvDK>u(JEF5ErGQKXC@a=Xb%w z2#i4gU8sdu+%yn30gU+?;E6*G-F2wZ?uFO`dxXylSR$S|-JRv3vam682OA($m18CM zu>(6LdzUVmy1GWxK^>?ojJ1;@zA8gyZsjb)ZB7IcZiJGXlX}&Uom20^Q^+oR&_FVDuW^+kyhC;bbOhqX=0@pNqjO*Mei=xUQcR=I z+#ut9(&%gGv6gx7yIGj{8Z!|PQodv zE!>!A9~gw|+Kj|qoU;=pAM0%T%PQ35aZOOT_;o2#TOV=A8MODQ`mrsdCL+$XqB*lj zSc*`!7O*74qj?dOg|dY0DF^;o{JYA4&LPm0IYpT*411;7ofd?hz6CG^F~zkB<)J^B z!p5;ECPMh9`LzlK=L!&3dzvY}FiRQd9K#>NjXg0b1AXJ_!P;k-gVokJ#Ak#8WUeId z!CO*&u-u`hXsO4W%qk3jH3C{`5HU>GpaNWq1Nl)2W8L!etV{$0kUp=1n0e(KkMRW; zOfKHb!N4Ud8hd05RpXEZ>Te(~vln*;ctQd*!bGVog3_MAX-bYzW2u5~0{Ni6FfE5l z?PuRQ%m-W&v%DNGga zbVxpMwNR>W_i_eq4F#v3?36>u1eyaMu8?J4_-RQ6{HW1=%hn5%gNcXwpjsZMz@BjY z_0XvY2?_&u`#nA+g`6uStGC+PzmmSVR|jG`?^24kF5|L4BW!*GmHGPPlDFKI=d!I* zRu$nt__-2HI+bMj*PsiZ@8>>^|M&BWhU3?9rzZZE87{F)V(AxC#~Xq;*DL7WyvD99 zZ#!D9)|20?Y3TRF^qUh`Dw-m9`Ci@+;^FD2)aZ-=GT&zMXBOwE+Dw`~PgmUoqKS-X zAtN=2m#?+s%kvHY?JaNCX4VGy-tUT)erVI)5nLrP417ls3J{`>h5T3i$HnlyqV!i% zlZE5Keo*HANA~_#(^+%)b}>T#yMn6+x*bTx2(eZ3VC1)=YqJ-kl`^5E-Ks#_p`k9z zpsyy@RMj>XV;gW*$q&Tk0f#2WcddqhVCp?*xQN{^U~vwS{c0rh*0dmv z<$A}S(vJw$gTIDlz`Ef)eDrNacx8wKDUQQ*{E~)wB(&B0bf{o;Z>oH@oG3_WFvd7f zUNj#FaTJ7+)CMeqYXF+l<|yA-DXB0{~iaB`dOX$Teh-s+!uvhRnPV z;QM(0#TCX4d7*R%f7BPS1lj(AMDs!cYm)bvW;(A%+jGcyKD;Z;AGG32cB8znr?6Y* z<)WpzYlwjR<CBd>3xU);jf$Bp6~M=G3ET7@2`_vc~VkqfJ}xa86Zs#M25OH^Vy&~tA`?;G;h zJAFjOiU0o}UHw-e^?%R_PR{=qUHu1ig5!ULPV{JPIUbEB_?)Wk+hieHV}uNA{Rrk&b3<9riZ&XNBo5InlRh3zBx$7U z1yUFbiuf(Re%RlK;Xm%Xc83RUMd{I{zcI+~T?pU3KaX%hd0=U;VQ9>guXRDcGeAFZ zj3<$_^J!P}`MG#}|E7Z;V!$iuqG34njOabY8;lQ)T+He9Xf&{=4d7?hVpj6Tn3*7s zYR5(o=hJ@-6{mIjjrzg%m;)GtJQGbl)iyTs}W@M2QR&=TiSg1lz+eYrP$%ZlFvJwYaja+yOm2ci(QCd7)~rS}sjrSI!LS(7@qFh2Lf$ zFm6lJhc`Kwc5mvm3e@S_drfmdN;S!@!`r-J<6uz-~k~fG2h`z%jijlwOGy1i9+Y%}gaX#51+5JX54m1Y>l?q=2s zh}1RjV>5b^rnDq8PwBafbg81lK31`LHK$=P1DHr* zI;xLv7S5uOe@aMAYTS7-A1%nr;#jXiNr}jx;cDSjesNEQu$MaunV<;!B#;prJyMdx zf|g|aJTJ_w@^R|9+1CYiqxJE7J|DGYw$7ra)eGoNFV)W!`FtIbV|?X-_YGQ7veE7kWGlVh8qYhV zQUOcsX}=XG&U1)brl@xs`ka(7pE>NNXiVI5f3T8x6wJf+s!!HWG4IW~H$6|r?><2# zVe&@vcX-;oJ6{P(D^9aqvq5ae&#v6+OJ^k*3jDisn*rRL#E)ZE_8$ameKl-eZPwh; zX!dDxa8=#gInh32yt)~)lvM+WVbZ{Cz$0sJ z0ouWXRwB#WkU~*(kvuT+!xI@6Nbc3UNE9^dm2nZj=Bp`9K2;AG1BVwEm*DB&8~9*> z0bEB}2-*kpui83qF{fy7u*M3S9`BdFATi7&?hUe9EvBt|MNrJ)$6>(yi_e*u@c&%m zwbM&T&alv=6iSk;V1?~Ik>g-{U^;L;EkY1I$_5EQ6!hyrOa(hw*w1%0!U;G3kzKlH z(Qxko*Bmp!OV!7+nE}6V2*f0YG-vodJ7cO(x^F+Ci&6Y!NvCE9d5xf;Wu^p(Y5M)D zgWomF<`ursdW}EziSf3O`)#0Gg`YtYQ@HEwmPxHM&L zCPB~X??d106;D!W;b)aHjdt{n#l&=!$o*n74R*OMp}CRX!~bgZMUYGVw$KS_1Ucc$YR_*bsk!DQlLl{$yk6-87k{H;WIQ0V1vfyY(( zcnQJqV}#M_(yjh#9@pe|F$S;Kzxf~j{%maa8(gf_BkmkV(cF-Y&zBE8D}d#Mq3)p$ zSKvzPsXwPu`pVn7xT)gNTkYIWkL8C`wNNW1;$K#k-4Q%pWBF*=1gRqHB6!LqH5Q;~ zS07HN;|auk2MFa-(t2i?<)qPv1Q$D;*o9c1cP&$9Yd=>dlMbxAte@YHsArkuQDPT1 zz6v>FeZYV~ZXzepO#zuue=yM+ltUXum!`j_h}+aX&EWas0zO1)vckGbv-oojU2DCZ zm7)26-!%M^>ZADp+aT`Cm&s95Y}r|biJRyLH^a~S^rxhlM-vj7Mx!e!{)pIX#nah9 z<7T3K48y=l$TaXa!2}Ys@h+xady=wZ+mK*nO^mY%X;5Ybii=9iy&PVu>G?iByVd>1 z^=3~zdkD%jydHbzT%d-n@J6r86n3j>xr>GR7aDx6Z=MZFvCP}d!q9k7HF3Zud+?MB z4K;hp3jNt9fJ1Vf$rrtu7P99wBYmWO8hX|9bMqM$SthIhUV>*$C~Wl6Q!DIsmPQQ{ zB&td>AVH(X6q;ei^10fQoxH4uSsH8>CmtOhuN$%U4If<=^VSRBEyqv^Mp$-JaoZZt zr32BHEY5}k4CBQHB|k_R*{`_5={7BoWKQ}H%>ZA;(T>+prtuMY3@;ExDP;qwJFz0^ zL`$eJ>b(48tkxENKvI6(1pitqBte5HRq{JeR2a3MSmdWr7Q}SpIaXmFkv=ZRtZ=G}Ud1^VwO0 z(-w76x`>&|6^*#YrT~(bNHy_vUz`G8_%x8FxyCfkCoj#CLkDqw12!6P4Z2x-YrgJ` z#ifEje;nbDUd{j|yVHwlQTAqGe(}?4^&5%l<-#pm_PbL9Xy_{d1TXxq_b0=c3fLE<5c5l%j<&X0_cB3ty4Qump^o1&6g4C-?sN?J9)k_Zmx5UTGHz&RGU<{F)}Fz5PYVML`GqLUk!?Ts6WX54-+PGtRP>0Z*l z=2fb*KFNbw%q({7DC095MEsYpI@tE4EF$$kWwJ6U_ z#srXV20~f6CL<$nU0LnR^^Dahb-Zgvn>%NP|ibXMsja zHHz={tLw#;WMO*N_O|Phj>>R)lVlW7Qo6z&w@3xulOE@#~d6<_O|Wr||_F4=h6o$TQ^ z)00JMn$FnhS6k=~P(Q8*QX;uPqL1~k3)(oiAuXTL@E7MW$xj&XO#0uwI1&FD?WSy} zQyn~KqnIx!p!K)3>vUscJu--kN5i?xeG&U@N;NFiGAb4)gG&Q6xC$Y*_b}?|MIoCg*+uztovV^6;G*#UN2N?Z%$)l&=e_N@Scol zO0#*4&kE&xB;ce^A@UQcD;t)bkBNcos9fSLS#GgAJ_1QVMP%E$`K&=DCs0%Q{AMv= zl18iT086B|=X+P=}&s=}X% z6-v4EZT`3$axD?1R>(r>^ZebWOP#5EwQQ#1s4j;+Qoe7z){DEM)wIlf0=Ff`qjY@? z*0L!30y{`DyL^5w>dINjbzR2bPHJ5EQR7a_)l`=%@(6ubgSnWn)r;qAW>v zFM^(S0qQImtzcbOdnV&N2hMoie^yokulR>p0T&v2+qLJ+r&fU`)FK)3p&PyGm>_m~ zy40G@>O#2gxE1nYB#ocKl4=>-i1VS>W9&6W2@ufmMd!Q@EdT|*BLab{U0ESHq14&f zCn0%M%18V7vAYT51i#NhiQsA=K-ux?W?;FKiH^vQc@X>Jw zDHj;DibIINFAg{!Wd;-jX~|oTIrHZEc_i=dG;cexNclhH0RI%?uVw(zY|12 zbv(Ku{6EKZByMX1Z7y1`$AEj}qIe2qd(k6OdM;x|8@6Hlb|zk_^ckS?Kz8I0*HOq9 z7I)`n{PF6v9y3fxq!#t274BABPj6yKB^7;~K>XBDteQvCNg_0I<(~E!m%ab{QXfB# zdZLg$CSpTDWpBN{ER1V?&7d)yG~At3>6Y1BJ6h`pwfUe9FSs-biy{~hHL0$gUgP)t z%*|?*OJX^med0Nxx4qt>PtT*`6yld4d=Z1DAjnkMNA<~taiO%4X4C`ACMSrgyi;Hm z)O8ofbv9lxd{d>{kv65gBD5^(Wa!yGhRRyv(g$ggb*L_(U?Pm(TgRbpFfu! zW$=(ZXOB36(y;g^3V|5yw`0l8?#+pT#1aL01KxK>ZV5J0*0`DhL%cx#1JYp&{~F@N@pnbRkFZREu1GxVv+qBgj^{B8-H3$sO%!(N<_ zx=vr1Ob1psetTod3<)Z~hg2A*aMF-JQwYky9Kuw}0t~}y3GsJB>TO!hTO2PlV)^L| z2;~uw&Z9>UbHwvjoG>~o5IJ=sTVp}q|Kp-iX0@=ezC~p%k%y>@hE0zoP%-HdnHg2;*(1_gQY&)!p9U-x;_X5M zR1~ObZ>hB#8P@9XUQ+BKW;NSihrc0o5hxwA#lKmdd&AF2oA2>zZz$WuY%KA;cDy6A73nPJBa2a+ZQ*QWzFSne9)v z;3GTKhJnSz6~jCe)zSP9mUefclZ@@0e#hks{1$JPfD^|V49AS5%WDWau*;HnkC{r0)PanK9At~htL*JVP zs|!2xUheWYrxk$%r6j<>6L~{bnU(++dpC^^j?^IX5w8ByAJEB2TNNlQ5{2n7x0Tb7 z1j@R=H~BAuU5KFwuGW%D40l6JJsOC73_QRfCFSSkgpO^m6}Hp8{T^Jg7^vcE%mjh) zrul5dwu}!B{PEX)oW?hm?(oI9NzZ6fDVAWw44|I|kQ8-)Y z`YzkZOd3qy-joYb8EHW6o5OoY%qK6xKQZ(s&1O*cA;zbDV(`!A3jr+U?rvAARobtx z+f;b2>(`K8yO_GB{-Z!=Gr*JcT(?g-F@K+L5#b+Uy6AXE66)Y3%LFOmPe>u2F#SM8 zrmtO`Zljb^bi&zUfr6FKCVC-u8~_pEsa}vInL_?j09?Pcz-i;v-4<}ZnGq;G$!B7& z1hbD;yc%BX*Y>ZcxZ#Ydf)R+H}Zy={Xbv)2`Vd_ogBBO-iSZCToSlb4}{?hlEGG zo)nBnC=ny2n9sKl>CPG*zvJBOR&j2U4?6rKFTCmlUw=cTKyBy3|q?$S8Kl!6w+W{R@PMRBrILMROTHf)24MMmJkb%%54h z4WJpuYQW^yop*{=YX07|PD)3rB)ufkLYg;ATJ0dKL7c!j=0U5O(3+NYhlAcH&i9DChsbk_gTC;LD zf?gp+Q%KUq%M`L|bs`r+W>%1O2d-tno)M?&r>D9+6^M6snQ?12OAdXQn1*ysCu!q= zmMW@zU%q$QsZEJ|dIvNGt(2H)5%M;IpP}wrNaO{7Xw^^smB|jT9NT^ z^C)q@frPE*yHiOP=7A;Akaw0SC@Gmzc`MZ%uWbls_=^0}4ME!;@V!9+4L1pv;_A5- z6ef*q_Gr2Y#4^7xZx5JVDF1E2U%t!2@jX`HjUub}Q~o)&nQKooN;vofqolvRnbbl> zT@De$G8;ih(khc?@_w&{akNsb??%&JcZW!ZFnG&FLI|dxpS?U>r-ae+bvpJmJ>$wm zcoaR=$!xk6MV*TjBpT8I;S0k%i8bRCBu}fyJQ9v~uh5 z%HK#PGZ_Pwwpv4_tsI#wtXOZ{BqW&YmQWan<(YKyqDDh9+qMjcFlC*Ve1+=Q+5RZh zA95b>pI%O)(B(reE}yGwbmnel9`_O_EbgL=gk=!frB3Jtx-^v>O9ToYry}z%Y2VVpo%t1KJ2eT;LrDA!~j=jR- z@~c>AH>NH`@zysK*-M+H6Cs#M>v$V|roDB23&6*C*FhxCPa`7*OhYAlZ&Gr^PO&f` zCv;q|B@4d{Gi}TXNDJ%A?yq6CPE=#i$PI6WU|kGbbI`oPne$Z2`Wbm!NYq0R}{WTg;+6fkp)GO&DKN^%z&GU~HI3oF+E9fZ=l)fC|vE-fKi^&$8 zwthOTPhVTir3&AypFQ+4yRw^?-ArbCpnp>#Vxa1rs_WL*nZveu(fs7iGB`8xY~W2y zKs{si8B69GvqPBtAk9ITP>k?qpOWEr$x!MSt4=BjnvWp0|9!MUVY$&*Gih#JXHN|d z)3W#wCLiFYqy>63GPoE9_LH~njkoh0M3*Hkk!>K4DPl5mLDBlqV0-+EgGEM@-q9wv%yQ;#L%v{BV**osNUg6W@l~g) z#SFA)8t#PlO%4${&^?JwqBipx(G~PM2%vV!E6aFU)y)CBOg1^jnAZw}Xg)c3Xb2|v zR>&aHc_RA1G`c68xmIT*IZ$Wu6MW=Uyd3M_q#B$P-lQIEnCr9+wEnCUK}JsJ2!)c+ zcP#MUzMHOMj#v2YGCSmo;DEI)$ww;rAhqtV?~~p_&Mjb^?PPa+Q`JUwE4<6^{xxjy z0ye#1Tg$v?e@FdEs!Vj`QJ(8gTympDxIU3@y}buAqm8@fSltq7Ub#!k>giaC(lKt} zU0KdhuEWdYH~c(BoU-PjJw6HKR9j2EHZep%e_iE=-#i2n;vs2-R|MK zHTCq{eWRl*K!YjxRfBGxq(!=0!)HB5+VTEmCPC|vI7@{~o2X{1RA8^^*JN96E{BEo zyXLH76?#22eMj%QbtW>iO^6Q7-^^OrldN`<81DEEP2_-RlA-%y=?u);kcMhnJzTV$ z-8k(F3}}h$C8NK)PrI+Rb@}CxntoMBFTX(H`r_ne3q6xsdY!|I9+U{BURfQ+ju5lZaqx z_NaF~|8({LM@at_4E+~M!pi>tP!i7nfRb?jk5G~l^@+qSHiVu_YI|rER6>CEQ&Tf1 zMF%vk3DMbr!hFn46ba;Ijt}tP$REa-7y?R#!;Iy1JSpqKwzayhdqhNO#035mH(zz{ zM=~)tL&5o-zlVX9VdGzu@Mp)K4Mgkk3tZq6B77RR=pQDLhM|861TKdLz1|HweBsOd zah@H{${@w7-R=lSQAGG?yW8q^J)Zs-W9QVKX&7eNFSaYTZQHhO+qP}nw(W|oiYvD5 zWU70vo;m0~=wI=^_ulJSdmH)dH}zk$(v)(`pv-#GNaXiAKAa{i^7)GzE~~=705L(X z<;7;`TC4{$Rr|WnjC}?nYJMfA&zeRFZ9 z?0gIay}gJ^xiS16FuVK|5ZZKH*vcFNp`juiu(hby64lwG9Bz#%S>zmxXBespF_2WF zmBM6hIt5bd0Js2Y4Sd50f%F|`M$ztviR=eWN^_1#;iEf!A+M~f$)bH|M#5)fumOgY zfW`_m?(hsibA^8aG0FjCRa)l~v1?Zgz?aT5755bY9RGnm#sRf>I`y^f(Osk)WN9FJ zDd{U@_+Zs1-Wm2%;B)>Ql4nHf#RD>GZ#c=7r&MB`V(3a8nn^yy`1^ z&MnOxHOFbS!F3|^YX#TqBy|L$nsJ^bd7t81Fd6QRyd({+cU!J6k5EzQuAnZ@1j6UT zqlTLjM61iC?`nzoE`7P+?`sl0O2}85$%K zkC=@FTh*1ER%z_bG42MdMyFg6n7~wT=bomSGB~iHaufsELOMxd9^?uJRv{c zD5b~b_qdYC*|y-oLMRUL_S3?>tRETcYS)`!9D=8xb>u<^BrDR6cjg%``-V9A3rNwvy*3YG^J~*l%zAR0? zoPc)^a=O1K=u2mi6|1p}?*S7kNC9IEHQP7}AM0o5P>gLI%LO=a8k42Ix@k{Ip;!U= zzx@CB8Ud=?&o4Hkxu6Z>oD?aeZNLq%Z$f=4CiL%_3IAF%&{2mHnQeQU$c>0Vz!BR( zAm8M~#+NtgJQZ8gVFYT1bv6=NZ(cqYNTiBF`Q+eI52#T_qfg&v(ykU1RYkSQjY}MON+6eSW{x}jKc2R&3;Nk1~Wk>@8vO_ z9L0wk*ONQahte)?wBhH&f9|3%Sz`wR^|8;uuR2>~ElwF=;sDabRz&>=8=YV53` zIQWpKrVn`gw=Q*+JSwLAnGz)rT z7{i#kKfQQyQ^1QHp84$EKBC1Q*viz4o|Q9S<=jn83@C-AxoJZ9vY4W7vA6aG0U2;{ zWYb&MDBsZ0z_V@le)`yais%1%9~Q9&K15~CR?*IOOJHpE7zCjKijTYqxVgA`!n*UT zYM7^#_iuUM z3Sl&WT&wgx5pS=pggctJ#1mL+@RpezC%^uReNhv|4Kw-6_vljTruwG#YtLXh!72T0 zU2!hzCm5Tbr!p4|Ry;0X!&o)b^hN60`i^bbv$2DCk9xl$YK_)M7cNpzX6*2uhZX(D$8vYKpYMpxb9>{_ec3t?=w;t*>Mt=e@@Gi(Iv@T) zBoX4K?W6Yod1=ovFb<7LR>rWrOQ6D$Q}>Mhwg#E8$@YOb1ig&$WIql1?~s3+bY|@k zKL5l2%zss4OpI**&nm{u@ZT#jW`_S=C8l-pADeXltYR6!Kr)3JP$xr#5Q6?BmC0QZ z$;*lfXifm-?vymj^sNM)bw7yyD8DB#@7XPm!)q!z?C}OVoY|ZU_daJce^N?Qk`ekB z-`?)mM^(A&@aU8+{ZFsKY2p38TKB`~i)d9TQL(z!hNc1XRd@7fQ!ytwC(4PZYofRP zhp7vF19Xis(3ucAgOMk2zX{4HtqN~NcAW)-{IO+mk>Sl z+-WVRbXgOSziU@l{A$<^pLsFcSA4wFB(u6#hyM_;=WoWEw`73!@`A##Jo(pTH`<*E zdC(1jCe>iHlP|y2vd&PR%?MM!IN@vjddBGf>f6X!Kh!REbr;`ax|eq6)=7Ma_b0fh z!~LiuWYsdQ$*r4yjW|k@I%@N*AcFHOggL{*p&SRBX(re*tax8a+9u&2Vy@q&l3qGA zealOknNQq|g8i`4^#^!P?cJYT^waZ{v~YjlG3?|rPO45C?Pkm64E|mRp_^r$5jJqh%2c7aG6MHdR9W`VkM>&XJH2QiPnG#>Rd4%eAB)aXZ6NS_=2Y=e4qnN0b~mOh za|HvqDoY&2X0&83*8OD2(s$r@jkZ$Ko`dz3R%=HGU=@_{j=&V&tKy?>TlLCARDew> zem7;fgFgmi3DMU=eA=n$Calm6Pq$G<10sVC~jy z3Zul_0sS-)%SQk`gk2QUSTlov@3sktIvJjpn#8o%+8hKwD}{4;68pPCW~PiCK!&<2 zvi%nYy-n|`5SU}fW2ANW1eKm+WikI9sy)h@XAf$`6}oWREGn418PT7;;&xMde2FO4 zbMYzLm{ZZern6%>D%+{PXiFk=#c}IT?@CDl<V%I&Cs#3cB^9b+`XA;tMxSWQkGSch4W12G0M&Z-;hb4z{c?qDxfJp>v=ac4&2 z1Pz_p8=1!aD2S3VGg2FG+{8k{r72Lg%weO}2E)A_Qrbw-3xHl6vi_3j`@P(MsL%EP z94k3zm5HW(PWA5jhOs80Dn|aEzX>E7a6EOb^wBMiF3_<2umW7y$4lqY2~qaicWwH1 z?j{r{MjeqI>YqO#1Y)Pz%UY?YH>hVhW%g{QUj+cb=SHjSb7ht?g%n4k%V&QfJ0{Z4 z=Mch8l|yHvf$QA%!2SNSmgp@!Ja(?aqcLtO8kUGdbDv#${ZTHpE!%WMUx*D*)KK#E zFjvw2)s<{*W~vA+4*?JnDS-P2YEX$6PuDgI%o2qKMcaOL)^DOc!0y*lt!^r33QTg} zhVEJ5UaofQ84zqbsTp^G{>{rJ=%yw_ogv3*)46I35}|qdD63wavEms`5!c5;O=TjXd9n0Q#$bP0aj+Ogwwma<#h4y|BT%P&Nd#Z^hQ~_bAf^H; zr#Q~c9qu@^kriydtlFmC_&wMYh)yvqh1N_Gc#jw&LJqj96uj5v9QtW95z=L3@GCOG z6ZFba`|)WCewz=V#ciY0&Ujsibx+L~D^Zc7l{p*4`7+6h?5>L++!<)T^2&i~y^!|d zEI171q(woQ8)jDF7%oFFW6&DOfR^F5R{s~ftK3&&m}+TakHO!Y4j`}*MeQs1<-G2R z#Mo|Wer7y38-kwrIwxY35AvnY88u7K2Zvwp*H}i+2MR=Ih1pzG>$0D`Q64Eb8!>7K zAWoHcLNPxLJYB{m6d;{l`tI`5nDdG7+3!c9$cOqXq*~N*COJ~TQ9Ww-XI+%#&TEz%7ni1q2L_^*=jktqU%^K z`(VLLFy~YNi)=fpeY=5ZgoK5-7HC^ZY8>w8+pl@Hm4Ha#jGInocNAFAP6Clj7_<)| zs_aeK-n(LP8ajyV6ASAfbM3e>+jTm#gthmRzq9clqPB@C&PTEvPtop}M_Qqj3r4Tt z3$sF3(lr`&lL6Y-om}Uh(D&& zfA?kMs)$&c#6l1+$_Q}aeusj?W8a^c;V}k52VM?|%D7K!3fEkHfld;RY|Sa>{rI5p zFy;pLx}5W-^L#(OO~eLFnFgBpO^f+|4};|mSi8+f0tQ~QpB<7#8%}<60N_iGROq{9 zeP8&VYv?C2m^FOjwdi>Gx&65s(w66Zrk=1gQVi?1MO4dKz?yQyS#qYGX7Si~6dNq; z7JBq&$epo}31;}sdQPE-r4Ik`4u2*(X>}4c&$-8Qk7$0W$+<3X0^`i2+vRqeWC&n+ z3Z;RG!R!1XW`fsniaO&tR*190muPe1t4LFu|l3#(UOfN6>FGi2MU7PQM1_*i4g$Bg1yus z@aYQw41LfgfL~w=Rs6$VCJ*c!t@8ou(_DF703;)2fs~&qfVkT{1ov5td}}kxZz{q+ z6X6ooJy$c$YM{>Z*^n~?Z#cye9DmWG2;ee21&XfRGxO}TX>}5U{A4{$yMcy;pD# z2Z}K`7R){uzQ9)Zz*Kt;>C^KH6V`FKX&XBcZw^)on?g&|=Kh9F-SDO{(GXzD!^?p z)a6?Iq(gEua7`S?CKKA6ZmHUB$Az;pql>rW2qh5hz_|%_A}p>YqeRD_D^Qw|@NAXW z1`YP)JPNwi_~`>UQOFaTvSOb=%7iN46KU!4TI!W7t{O)S40mJ<((puTIeGY*C=-G<_DjH&pGXJis4xD3WV`l!U&@fx5U2Rf@euOJ)k6Z9N*dlqP|j_tM= zD6W$lCyT7V3m3`|fa)j3}|hSnBB`GrtZNG#KL)ByjaT8s6&&&TCRYR#tRWm@dtR(WS7T6$6u9${ZD(RzM<7*A%3nyb_cQuwno_R6h!Fm{Zob}oR?Cob#@Y&(|DeNbrc+Z` zNO?i{d|kyKMmwz`kB?2E2Iqk0W!|P79dyuQ=Vp*Ix# zx4ZEFUVHzMb2GCtGW{1S$;|NIb8cpa|5eUCqdk$d#fIGbqJB%J)&WBXpc|m@NwCo@ zhN5TA`g1z37P78dVHa05&NN{q`LnCPz%NJU)`a$tnF>LGj-;UJ?0I1V`bjehA;bJO z|IxXs>+{nkeHm6w+tUAX6MY){{oS}hI%i*(hPfx|)Etxu+`na0_ixNhsj+18;n2)I zmCwJe1J1zI>Xz&5e`!$|sLzkz>Er+sxHe76b712$wgsP#amY|AFGbW&(3-j@)kUrLBz$*~=NBGLed zr`+&kC*xbNRkADdW&2aPiH}1Wx@KZgcX-JrM=*2mdy-@odh_4lhFfcaj?fX#Ls({U z20D_7nc%ErxkMB#M@FbeiXmsEqvU3s8{BwlSuN*TaC@lC$tdHt6pzHE-Zl^Z1NEC0BJ zJ025(CP(GJC`dZ}yoCf~6yW7^RbbAQfihXan@~jGT4(<#rk(z-7mG7I*nlMs7g z61Wq#b&`pCY_z;_Bn(D^RbYS_$O~IB?0K9m0-#J6TQgm*RK4leCUbY66bmfD7psc# zVD0`=k-xJ_Zpnoc;pP#9cBGRO@(MYnftssw?#sPBe|jt@t;vRxu4q5gdRPH|&~Qq_ zVh*V!P#ts|S|=th6>X574=sz!-LJvtHuX^0VC}$}LbSv^Rx)0D2R>F40cCVf$&TS* zbKT6{wXFwVJF{BuZX=&poTG}MM|13A`Nrh#-kd4a1+#~im`>{a^qy%Kg_jS=o)WJ%X%)2!an##J9)DzR=Ky}qtqAZ1{jirS@va$ETx`dt3z zI3tf}^WAA7CYowW;M`S;b3D5z;zEn)Z@S+r=8Lm-Z4Vf>s&($jACZTj-A!dqVl3vq zPN+cB?EyCmAj!!@fQ)qd;eL%pg5t!p5Ynm8^JUP1=p>LB0fn1Rh21XHr-X4p75wnl zPgm-Gf2oz~DQ%O5@#nt0CZOjRaH>)Um7Yq{DWXKQ6BW>WB*;O(vc-+@$4){pKnFoG zU_h8EH>!d*=Y_6vLY6-+faDZBW8oG_F(mu(#Hr-U2Iw-p8gmDmM2FtW*2p#^PKj&( z83{En{2)f7Dp7aYBFRY?&xZeGts*o*L0sv!s|D&{v-Iu1x(4`! ztG27JMrJ|Vkp*UchQ+>5%TdT13qVPd5L5AtG-oPvD)W@yL&_&IC+c5DhNe1Xz$k~p z9`v}pd)P%+gW&aBCVPb`kfkL|2^kXRy!x;jU2BpS`o~IEo|&s61aw53Qi28oqY)$a zG;F(x`Ku+cW=1z5u$dE%P69Ym50Uoa8H}UrgwDeC9(G}zjQla~^6}tUl?pKHJ*X@@ zx4m&V6}ta8+t#EyM+$@m0#NW!HBhOL)LV=r_n~XXG>)9|-R%^sRe|7y0b5*>0SV+z zRX~sO&Iuuf{05}G9>^bmHLph)V;UrV{gkeiTx>eI;qqKn zIuwa`>$d(O&A)>+PiPW9li;mpL03v(eZu&$=vZ;jyX~;{JO9q6FW#nuWj=9hKrv91 z$WP48nN5AyU)sp(APBcxojYm`qxGfCLb?N?X10*TaI>3`W&G@1Q4zofJ?36eT}%GV zAew}iO$kmVibkGyk1I2ABe|7**36t~Hf}X59gQyE{u5$(D+khxMZdJhek#&hB>t`b zrevVn9hQrop(@~Q?gcN5{<<`(%(p{m<%_$EV2xQu25*&>9A=}wx-zfV-~N0XLuaq= zlhykaMrT)0d~<9+YsUXeBNZ#lU^VhZj zW0BN`>+ZO0ELuAzNils3y%qK3QT)rMRUtE`9>_i1UsJuF?i?c zJ-f}6Y=&T8Tne-F($Uf~ouT)xwS<-;QN@1WTyTc`My<)a?Awc_Y9De1T{0i@F3%-v0-54RLAWsLQx4y43`r)U>Z} z6&N6^aU^5=_)^7|WuMcY21Z;;F6<9G4y2~XHR_s^C0gQdaHd567bTM)QTj6@lvGB@87&>}D2 zkP%^DhOmHDcukNXxVMF%g}{cv=R@1F+MFC}ab~ix3g0WTI-Rpj#J_lf+4i9brEd$` z0P!e7&DKPaAgia-vwXZu1*iUktM^uZ9)BZ>)D^iOxliW7VfHJJ8hp>M3A0kiezOaok| zm%vH_@DxBD1Fp0la6!R1M%e+4>g57Xc>x#>F(rIF{oZ#zg{m0zi|q6#DP)l8d@gd^ zM7K&^#65nF564e3v~--v4H-upYpWlG>yO)V#Iw*Y$VG+Mhz8#DQ!T&o?qtX}0w+LD zFWQ(x-Fju+s_gDw0*vK~1do3TYj|@|{l&CI7ZC~}1eWvJkt6(d;JWz0<_KYPo5Ul_ zxUDrcK^+Y-%w9K8{ zmeCqloO5=<3?-t3R-3Hok8z^b3olFMWUQ@Fq!A+x^vHRMb+YN<()UrtKSPt zsMy;+)k968qOU$}BctC!9mV3dFAD+s#adegOuxXJ=U0V}(?k-U)L2`bgrv|u=@Y!f z&Pa2=aVYZ0b#5$iO)uDg9uGep(%-*=&g_w;cU4AeuV}EduD-*>|HVb5(;g9RiVMmP|C~Gr-g;}B>)t9^7A-EXkj;Vi*=uEIa zr9KrGGROCX^i7GRB0x3|*50ciRC)3Xm63hLeKx&<``z!~+!#J`Q35u;4fj9El<$b4 zv!NHxqnLuc*Q1RdTCa~JEt^ho5zsYe+zHA!;oh;Y-*!NKWz<>gW~4PTbm4?7mpJ>u z8X80nU~(k8@m*x3Tw3Ne^eltB?9+g1z&`G`Wf;`{r1=jE)RzCgt(XpKEK-YEDLN+w z?RFXTIrL=3ea)@T9$aF^R`Y%zVM?4eJB@(Q)Wp@j&5TfzySDqdcS|iwa`;<~zy9qU z>(I-dqtde1+(+&tYp_kiwfHnT(V0AY7;IY}V#}5Z4brocr(yyhvM38HqXMLk^+*y#2C3j8pc3Uyi24s}yk!1;< znDa^s+`3j~)98B%Lw?l7yb%C>R-?!^07`y+XdY9k8Q*z7QoY4>iy zUI0DpjgM};M!*5vRgo?7w}v`cyTKQCK23C%ScSd7&(lBWuxmuTQTUjRz0(7>-9$}$ zlp6+!dntQ0^2-Mp`*JFC!%eD!K>Vtr%{pBXbumCMyyD5C2w!KWgcE0AY5LO4=9$Il zkNF@^8czzvSy!Of!}Ehxx4%#NmLKcMCXHXjx||iQe8#i&qlwq^t{2{2p)7x~9(!`^ zwNF&!6iyX8{(*h=nqyGdeYiFv``RwPx|Vtdx~z5s)A7Oizh28Wf(`KlT7NY_05}_< z?&@1SeLzKmIym&Wu(GRVi+0=xk#N<3+dGWi6Xs%PE|kEe=CUOh*wLzb>=^&2#O_SK zjhel}cl*Ly?6UjnBGnUVP#{Ax(+{1k${YM&wDxope;Rtt60rDX=%FEx4=P|e_+>p# z!@N4KcEHDr)=tXj@8m?b?f&ru+jeVXJMgvdfJIvTI&5^)Z)yf?iX zbyY#Tn=Rwv)S#4FXvKIVR+CTs0W6EPV^V5|@0EM_tq&P%QYLhlx(7-VwT=ymt=0cB zY=XO_0!*OU%Reb*czxqTZsJ;oa(|_^((4_4V)jSbNT+5+Ep|NM{c3vjnNkeD-yF-x z++H};7v_DnPaFSsLAh2oiW;MA8^@r~mzVF9z}M=zlm$@{>P$B@uNUPx1KSR{C!`{= z^=X*^GB*y`ig|HyhUtQIhzVhvu4%BSrPp$wdtst!empSn?!KIT;=#*9q5w~a#&Y&f z(GF7*?(f2`dl_1jRdLx7ffYalwix_{9B2e@iRKjnW&UH+?$XJKY%`G2VkIN89BtsTGxZl+rnI2@RzvF5vX-L$eiL!~zBm%$%cy-=DeLJH}rk)a1ro6swq5r-tVF&!UMmXHz4%4 z^=OM3CW1Cm)zBUf-JDDH%z)xS^2!FUzOC+7@aygQ4bW?hB{N7(15w+pKM@cx(|Gi0 z`~1E84PI6USBsEzTZ^A+XoffxsfjyJ<*)qoSuglry;pEnh^Pgo8@QCK=l;1f3d{9< z)U6`Zq09}_Af`ytqxo=`or{tD)a?B?S7s1lwUKHrr-k@Q)HpAg#pRl#F4$BRmq$<`)m(+u>T_@{*G*lozn0{C4Wb^)l^{&gS2bzWB!XiL6L43g1rwM^~uVjo+y;Ks?S-ZtP( zOJ&wCi@&)WF@xNSzq_x)3wGL89oszYg2L4;VaqjOlMlCkW92NxBg7RakY~1C?0ZsU zt?5BjGx-1~o5|37SUoX|%}vf%JSeUa&<%q!=47F?!Za~NAsZW|5*}VYL(0MnZ?k>D zfyt1wrW)QRpKeGqzG?UTp45L27`tG4|J+cph zN}n?_O%yo|9yOmz9!`ye_1{NgO6ucjY}im8=5tvV2eyRoKo{>m27PoEJZL;g34U~# zf*!7;2g8R*R3dFHxzrz{KN6=UlU|P(>@$7CjMi9ew;moJs!Y05UFTTh(CLymytz5E zDAy@G<9zc1842SAOh{oYeDk82`E^%8uBB zIzEF^KELhZqk&T}D77OZ z`;I~0r=3HW5J@qUpbo~zMbd~XouQ`|^j`pH@z60F@7 zk1IoLFoz0MNbp9tO;YQ(@;Z$T+{&<=!j@`vAzq|V;-U;Ug5wdegDnsmR>uJkqrO|rK;`@!<(fP;1|SNgj=Y!8bZ|#XwevDqydW`2MEP@8f$j(hkRDJ`JlB zNz|30r;y>qg`kJ^oU&4`rjFHow?ek5&#K>i;pb%os50fA@< zl((ZGPyp6C29*3ch0-62a7det$RA?`L-ebMS^37_Ue0{pGCaf?_dNXRvjO!yW(N*` zqpQv){*WuG5ZHHEvQ%JcwpfdcnfykJ3GD8T55Y7?n~u##WD#uLv>Z|ia8vbG~O~+M%X1W21vXI{ncxN$CyHCY>9U&1+}zJwnww1ynGVE{!f!m z*kWvba!cB10zy)W%7xI_^tT5bHKY3QiV;E{te50fR_aNZV{n-i_&E=vondG6d0m8B|$uu#}6 zE_zr=`i15MW3V=fj#dGPccbXfX&z{aC&%*vBy?W4*SyD6AcW*OY=TIYK9Vkk(0rXj zp*NH_W{+L;@{j|rxR-K*n_aFKu&kn8tQdxP;!E>rhrwx;mpCS9Z7J!ZQl-T>D6+ho zw`CGC4PR?0O{5C;vz>DkdBjt#KHX1%gB{_g(pP=9U`1Uaol8oMAcy3*T4WdAsyNeHBQMNvkMDtwWwmtwn{GHOL5< zT$9tbT|V52IcmSBq~=+F^%$Cs4b)FPw=Vq z8}FTckmUnZ`Fh^yuSc3GIT=5QNiSKD^cER3*&DbqnNXiAh{l^>a|L5Vk+NPB|KUPi zL&ozJLxz#iSgghILuG?hCCx50Ca8I~lDYu(vF(B}Fbnsl@h5rbyofE(FHNXdvwoLc>CEB$(f5J?ed*JD#O{4Q`w}$q!=-Yr1csf}NJ}x(!c-Gira*pJ=LPvU0>G{kHn@<=lzo2QY)Z zi|1tSPIio})fT5GovLVf?Jq1-sI`N^?qJ%$>kp7#SQlskIlC`kA3?^zh8sE_ZSQPgw*@iLS79?%R8+a3U;b!BB$5(GsS>79*Wn& zC6(&i2HTWomKP%o{yAipbvArw0q_PSAx%I%OJ(APyv4OJ=_T@QDz+=kq#+xz=fK0tJx38)Nn zmm(E`a%&917vwdVT`%2^dp#<$tGr7$B9=X?sJT%i4^#g3n->^%XS4cV_(Fj-Uj6cO z^j1oR!4mUWB~&!*8umj>?d4~m5Wf>+l_uXoiCP1;W%XLb#!|L+3uCH(3Y3JgBO<3- zekx}2YY@4&f-yPIL`WSuZ6oY)#R6iv)c7(vL|R%w%_eAdr_5`%U`lLe$LMZT+JUPG zi%dMb95bEUxMe~!Xafcqz+4S4fM7giVgn@Nt4brDLaY69sdX%s@u>_xXqw6jX zKU+le>&Ju^V+IsbwH%`ksTN_FtA@6*iX`%P;iH|seRB^xq2;{UgEMrZb1_1yMNJKZ zP-gnCa`Vog*Fg9rIpE%w?8Aw=Jn6*~llLU}+R%`fi^=x5RgYm>V-WjVG&?NC=5O$1 z=HW%fl#=k7HxXvH57f^==nG~lrXPmX*l76Y+Y`;8ZTW}`;W-!~@;^dC_?WG= zRQab>lrfQik?iY5q=wp$W3xxdS^l}vBwnO0-KuUoyK7I+_Z9Hb)%!PCNiK)f6-#&p7+b;k%*P&l+Cy&5b=<$}gtw zouO=2zRsPUjCf78yBcJoZvMZAJ3nX7-}w#DJ!8;B(Pd%m*Y3CRQ4AhO53=7cKd%|h z@$KvSD)pn!0XNNMWIYV_N?(fz!*^@X-IO0UZT#8kJ%F6S&BY#HSK;>9@1_cjMAJ4( zDOwmyjZ*isG8?Xc`WCsX>!vqN({Q`2f2zi(<_%Nbe%>5+tI3UFLhofKwV-8J<9N`i z6t7HY_l$18t|>nE2j@S}w?}oGZO-hE>kV^!{L~uW(_xGk;hf4>&zu)zv>DnC!yI%I zlDaEik}K`;5Us@P;kCtS4polQ)+O|3BD>1o|nz&J|KV6{H~rI)c&-=QGz;Cm6TYPaI?+KehJDN3?7Oo zA@A{2*vDH{iqT0bN?e;*VqJA0bP!=R%#@jz>INwbWm43F6a+5JL$ku@6^tVJIbm$* zuJRA6_jY}`{N%HPA$1ho86U^x`1`@e(F~3boo&+f;fELh?ZRD|&B=ix8c4pHc-Xtk zx8g>z#xM(B;e_Y<2}?DA@NgfNH2l0AIUT*EhOG7l;HF6>hODM^g(E}?!OUm)zbCXG z(1P-O1{}%1&nL#G6*P}#CL-QT!od0g@gIFN{Gm3YuaP|B*I6$jz*vFt0TzJNmR%4W zOwMtgio(1I+7?^69&qZm;eJHyM+_lj%98^dw%wAbt#F@# z)s9G2+xQ`T4}Nh7GZiHSXgOo9Q36;3EEIeomtQJP%i@z<{#i==H4>W2=qB!DMOe2O z_Jjv$h(p5u9y9OEAv`pYJArVMpJzTQUp(8oOIpN|l>X&^>qM|)3lIfjX_$w?B*icg z26L--me~YZs)nsGduFsQkM-LjjI&wRgIkA?^YK18i-=Lw787!m=0hD0p^o(~f$Q|s zQtGevS2gX7iS0b~fZ$PMKI9sN=o!Uib->iBbKU)z97aH`md$gwO3x(5n|{%$)k8w9 zYjK%}rihoyGjomk4f?<>a91rAZdXzM<}{KMB*gynrVo*>4iK!2EJN;TbOiS28}STv z!hB}FG{tGlAVTT^)B==R{8hm$Lmnbk8R)D%fkszVDI|tVwQm#yg>2sG_9OwKYN}#T z9%|^eu`boXXq%zEB%}@~$Gl`pEg>V5A-T%~Z9Uo?h*UGy0HKsF;t>i^Pl&j4nKPAz zkPd^vlVpZ4)=U>`CE^6|)MT=7^yz6t80%}c%~q7#2~B=4PzeZC)|3-@-5ugmhlE%F zK}m$NG)l|sj}=Zr8kQ;BqM*8)Rk>t&yGm&cOu>PZY^m2#s1!DWGiRrMK=z4M2FBjY z$%&iXT^9+e#+KKDVTY}NP@LZKQzQgX$U3^SGXEtwtEGCV0w}&=Wj))VYU$%{+8TsJ zFg+#(&+UxIPsb+t$Z#B+s zUFn~WFiKQdIET`3uDs(_nWtCO5(1!<37-IRR{S29gZW|z9X0eOLX{M`RQN$++ZEB3 z5@4MNBbRy=e^`cbOrKcK;BfWU%^ind)du5*K=y zR4d9nAQ3o|(jT9|H<%*0DVg^Byfp*c>+QDjt-nK`L`6$(w|=niuL5&q0!k#9%M1IN zFO7z=BX$HzKMHpYM7i5GJGE`dD&=i%*^3uG!C*1=J3^Gz`S@}cTLa+;1Q!M4pjPT@ zTjx#4TyoV{3?3Gv<1S5h+@O@u#yxtzV<5m%T#g!^t!Tuo(M*^uFNG1fLDcLvCD&Ul zUz6HYib-JptZ8mP0dIVh`U(6DkS;*BP1Ptn_jMRwr2svG zgY8mH&u*eH!n{#iihCpTqeGd1URR4}QgdJ;rPpwem_>Dj;l^z9^cY$xb=O6xc>_+2 z7|xcZ%cN~&1Gbv5dXQ#Cq;Ui95o4>^853JGO#DXq*ea&@$UoKo( z6IfP1{L}}#hqBN_ABNo{u~$l<=HC+h@njmo$*0}ZNx07?ecn@$oC-0ZaT3uI#S65W z>dQr#O;d17fQG%7yG^6g;ns;-cWdGAlKKS777B$@=+1_3XMOwwwiTS?$igK*-FgvZKg zzs_|W%sbwSoPZP}*IvJi+Gs#njeDY^(Ib+}NyU-4a=ST-+vr;eko^x1!pWRD^h zJ#GgmUadr6?SR~9HFcC_YzcyihwxOz8C|=FuAgeWr=Pc_ZI7VACJApX70S=#KMvrs3!p36*#5z?b0iI z;n0{~x`$L@9-SVhp!k;XaaX3yHpXldA$-^X7W(#n{qeZJ+on!H%lw`T%bT-q@LqR| z;3UCcXP1Ybl0=1F!9{}KXNU^^Lk5aewS{A zEUbYsKD2l2^OwNI&IswZD*xz+qP}nwr#u8wpD4{n(SU{dM@T% z^pDu<+Y#|bJYK}BV~JuUQwBLEBjW+}YKo->?fK3jH&RDUHqe1xjUpvTvgh~W6C(c- zOnc?Ly!wK&beh{ZTTi!)Tzs?@kjj!@r2oKuwa)+&_Jmyj1@Hn9N9 z+(#s=6wEp`FH;$w+%3qyVzeOiKN)VKq9p(j+@1^nfZFsDy#6o&Q3POlf?)9UkJMCK zwfQMF7;q5gJ(YVyA3iqn*?vxt?=LP~lLRlm)wvSU{S^x_aZV^Z{pr14{+#=m=F<$l zSe`*X!8+_Ya90<>`h{9?98uPV3Ls4c)vjxzgL0xR8c1;EIcFbK95Sl0*P%i271aIv zP;GO0yn-yuIEY^3C>|1+E>uV^0?tY!IH=FuXKs6HX${Xfgtg_`OU5lq7=d$VgGk5M zZuvwiStDX{Unvc#vOIE09=})l#8=;oSIe0~GhUJIU_ztW-e;3r0d*IZFq4cd;z7o` zxveTXwQ)r+@a<@t!WkDkifLd1Oqv69pJT@$$jp^!TL~BvZ!Xf2Bh&qj1k&E9war?G zWos&mk{{eIh>Z1DVZs{Y*k&Z$|`b|WwHgsWBn0QipgF=4T&-T$K2Q$OD@ zf#QR?;V=fiS*#g_mJXb#@}+K~os)TA$5_%`EA2jFar3drM!GA%W#jtVlCdn2f?2AN zU{9HzD0TS*cKVNM&4oFK0GZIQwq#7NbDxKn#^1c0K4hS;Z*ZQt3S)Oe+=7nTw!K~V z6*OOu^0Sibk%Kc1nxDk3DAW2b&7FP5LIuBAPB!=`H!^2vt4hSR4;<}ReK>_s)G zgywT@9~(9`{<OB%Q>ifx8-1FXMX8C%v!szXYNAt9tR8TOR_&URzO2-lY(rshP2J zO;7&YtDs@fg->+)rsjyEaLZX-#qYz*w6T|Q~)wXr#ps3FnRi3l~dAzOhAOKnnF;) z&wQevvl9?EXbO5Ec5-PHY$G5%#7_I-N0MA-6sbMcrr!1lH3U|Y#|e1$0BGeqAHy>j z-i?pMDBm%i4cLl=YH)&6y4!jP27@OtYs#B50b%K4t!(Ti3}tUP6r4%YO8m5<*FoKrXuOHA0OJc9wQXDHQaZW;E@z zVA4RZE>|%G_D~?!1JdqzSQKr~>QgvP_KNXrQ)N*ndQp6LO)fMAGf_n9dI7^@d#+B* zAtAv(CBI!UIhzo<16K4uZMzVD&LUiAB9=b2)nW>kLVRXtR851K3sS~EKKYok;5^f8 zMs0GUO!(}3CD}1GWCDo3$9@_uT%c|+KszUi<}R6&yu;(5x@Ht^IzBUv6hEH`ui$ZY zBe3ZAw@--b(MYXRn<;SHd|tzMGTwnFvDk~&Ujjg&Og{8?ouwYwTz7&wVm5-`&oJ;n z!csGcp^Ab%TtE(@;158R^mv^f{p-}YaGYp|9kqSjTnS498@4LW#bRu#?5*~_E{hUU z*hTy+RB9N7G?z(d4xwLX{uyhrEB!CmVANiUH=ABlT6t~c4tHJZj##VM09FfiK&Dsc z{bO;%zW=>5AnYwoL$SA7M&Mc?~4vQ}s<)lDVyu;mq>q*KfKByejc zyZ++iV`Erj39*$o2_yx>%k0&|H?OW5xy3=%Qtno}`v%p))S|ljBIC{SU{~lq7cUi)~q!tV+#+KPv#vSPpeIqzxqQ$CVfTva3?O5U%1@dQpn<7BR zL_w@&Q}6q|Z~eu+39bLybqJ)ea*8up=6TT-ubx)%>?WkIUfVJGWAr1dZ=lW(khXj; z;6Hdt|8pn7%JDx#-pow@;ZB0-e|abIe}P_0L!ua4`oiTv@&YyZD2X-kqYc!XMqJMU z3&5q=BnB?Pv;e#~=h%}NZuwbCMsnrC5dh?kEc&^ZGOEQ_FJmTtef@)S6Pmo zIM*yKn}BT{_#?m~uT#Zso(Y?-#OoVV=(iCdPWkcVAcbMh7VCWrh(dygaA zEX*d^QP<6F{-#i$ZZwlj6O~++58F|^E(<*U37^$A_UeoEMWZ$!<4sehm5=itM}$<= zE#tQCT{`%`P0HdWQ*~|;jC&wz4^y2iI<#$w-QrD1C&?BzE8ZMhO>k`OS{f8`4?L4w z9^aha`P6jiV@=J@dp{D`;Cp+RX)_$-AFf=u8&4A|nrd%V(C7df*Pj}5aH&)tq%!ZKN-Slm(9K?CPK z3;>{PBBh;?MWe3WAK6jw2@ex<$`m}>@ug96P!?QDaocvY^sa)o{kGU78d~F0p5f>s zG6{hRPCh1OXJQ;i`s{6+OJpAccl-K7w)lRrt8lEl(|<8=rVz#Jc^he``|WnEdtJ48 z;C5Jr2OD9gg#kjNv`Q+SEl!j$nK+ItMpT0l)x@4Sawt_ca%n@QUp#PLT$8m~neblI z&F_aqH5MWmIsn$OIkvfmS!pd0n^p|u&5b*O>g+p(S5NnQk*tYqKs)93>~4LN`a*jX z(tj{7XOJ&^BPf#ioA}Zrm$unPNo^|14lL(YT;}qGY4EU z4XJf%#bFoNOGcNllv&t7*UtJ%eO7U`4g9Tx{ovFXJ$ON$kxc4|VAi#5s>0w|yRM!N z+%M4l8h_r}E`R+(W`YQfKChasif~j!z_P?Tu!(``eIR&6%(Dp1U-)Q2i`n&WkCmx^ znf8n{PL04_rKLt7!P$!7!>;oV3M&t-4v?fL2tCD%8h(r~ad7pX?rttJhBK)px|<0I z2F_824nH+>VyR0$YLY0wU=UWwpVgc9oW8)~2bI6-xo>>1s~z$d6^S3}!~s0G)8spl zuU2Hm?$eNIMU+*O6qz(W=8ajU6cyOy4g!L@j|qm7*rKak*Aac6PtV)%e$J(f@Q1}? z9o%M}?wI4G^c~%=jjL52*G~m-uouEZLfI{Rt~|Zbc$5V}k@D33k1=BToLEsq7Tm64 z=niC+&i%{n&9l`%u73%0G~PE$F8v7EP8$YGOQ�cmjmxz{b|T9nUG&_vA+GDg!Yd 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 diff --git a/doc/bash.ps b/doc/bash.ps index 3a31e4c6..b98bd7a0 100644 --- a/doc/bash.ps +++ b/doc/bash.ps @@ -1,13 +1,13 @@ %!PS-Adobe-3.0 %%Creator: groff version 1.22.3 -%%CreationDate: Mon Oct 9 15:38:30 2017 +%%CreationDate: Tue Jan 2 10:55:05 2018 %%DocumentNeededResources: font Times-Roman %%+ font Times-Bold %%+ font Times-Italic %%+ font Courier %%+ font Symbol %%DocumentSuppliedResources: procset grops 1.22 3 -%%Pages: 79 +%%Pages: 80 %%PageOrder: Ascend %%DocumentMedia: Default 612 792 0 () () %%Orientation: Portrait @@ -340,7 +340,7 @@ F .475(xtended deb)-.15 F(ug-)-.2 E (~/.bashr)3.598 E(c)-.37 E F0 1.598(if the)4.408 F(shell is interacti) 144 710.4 Q .3 -.15(ve \()-.25 H(see).15 E F4(INV)2.5 E(OCA)-.405 E (TION)-.855 E F0(belo)2.25 E(w\).)-.25 E(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(1)197.895 E 0 Cg EP +(2017 December 28)136.795 E(1)190.955 E 0 Cg EP %%Page: 2 2 %%BeginPageSetup BP @@ -462,8 +462,8 @@ F2(~/.bashr)108 691.2 Q(c)-.37 E F0 2.535(,i)C 2.535(ft)-2.535 G .035 Q F1(bash)5.306 E F0 2.806(is started non-interacti)5.306 F -.15(ve)-.25 G(ly).15 E 5.306(,t)-.65 G 5.306(or)-5.306 G 2.806 (un a shell script, for e)-5.306 F 2.805(xample, it looks for the v)-.15 -F(ariable)-.25 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(2) -197.895 E 0 Cg EP +F(ariable)-.25 E(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(2) +190.955 E 0 Cg EP %%Page: 3 3 %%BeginPageSetup BP @@ -598,7 +598,7 @@ F .389(wed by)-.25 F F2(blank)2.889 E F0 .389(-separated w)B .389 -.15(xe)-.15 G(cuted,).15 E(and is passed as ar)108 722.4 Q (gument zero.)-.18 E(The remaining w)5 E(ords are passed as ar)-.1 E (guments to the in)-.18 E -.2(vo)-.4 G -.1(ke).2 G 2.5(dc).1 G(ommand.) --2.5 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(3)197.895 E 0 Cg +-2.5 E(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(3)190.955 E 0 Cg EP %%Page: 4 4 %%BeginPageSetup @@ -715,8 +715,8 @@ E -.15(xe)-.15 G(cuted with left associati).15 E(vity)-.25 E 5(.A)-.65 G (returns a non-zero e)3.229 F .729(xit status.)-.15 F .728 (The return status of AND)5.729 F(and OR lists is the e)108 705.6 Q (xit status of the last command e)-.15 E -.15(xe)-.15 G -(cuted in the list.).15 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E -(4)197.895 E 0 Cg EP +(cuted in the list.).15 E(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 +E(4)190.955 E 0 Cg EP %%Page: 5 5 %%BeginPageSetup BP @@ -845,8 +845,8 @@ F0 .597(with inde)2.847 F 3.097(x0i)-.15 G(s)-3.097 E .049 2.5 E F0 .523(Returns the v)180 685.2 R .522(alue of)-.25 F F2 -.2(ex) 3.022 G(pr).2 E(ession)-.37 E F0 5.522(.T)C .522(his may be used to o) -5.522 F -.15(ve)-.15 G .522(rride the normal precedence of).15 F -(operators.)180 697.2 Q(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E -(5)197.895 E 0 Cg EP +(operators.)180 697.2 Q(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E +(5)190.955 E 0 Cg EP %%Page: 6 6 %%BeginPageSetup BP @@ -995,8 +995,8 @@ E F0 1.087(is e)144 664.8 R -.15(xe)-.15 G 1.087 -.15 F .103(xit sta-)-.15 F(tus of the last command e)144 688.8 Q -.15 (xe)-.15 G(cuted, or zero if no condition tested true.).15 E F1(while) 108 705.6 Q F2(list-1)2.5 E F0(;)A F1(do)2.5 E F2(list-2)2.5 E F0(;)A F1 -(done)2.5 E F0(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(6)197.895 -E 0 Cg EP +(done)2.5 E F0(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(6) +190.955 E 0 Cg EP %%Page: 7 7 %%BeginPageSetup BP @@ -1136,7 +1136,7 @@ F0 1.337(option is on by def)3.837 F 1.337(ault in)-.1 F(interacti)108 (used to disable special treatment for special characters, to pre)108 727.2 R -.15(ve)-.25 G .185(nt reserv).15 F .185(ed w)-.15 F .185 (ords from being recognized as)-.1 F(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(7)197.895 E 0 Cg EP +(2017 December 28)136.795 E(7)190.955 E 0 Cg EP %%Page: 8 8 %%BeginPageSetup BP @@ -1238,7 +1238,7 @@ F3($)A F0(")A F1(string)A F0 .14 F3(C)2.995 E F0(or)2.995 E F3(POSIX)2.995 E F0 2.995(,t)C .495 (he dollar sign is ignored.)-2.995 F .496(If the string is trans-)5.496 F(lated and replaced, the replacement is double-quoted.)108 708 Q -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(8)197.895 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(8)190.955 E 0 Cg EP %%Page: 9 9 %%BeginPageSetup BP @@ -1390,7 +1390,7 @@ l function is e)108 705.6 Q -.15(xe)-.15 G(cuted \(see).15 E F4 (FUNCTIONS)2.5 E F0(belo)2.25 E(w\).)-.25 E 1.403(When a positional par\ ameter consisting of more than a single digit is e)108 722.4 R 1.404 (xpanded, it must be enclosed in)-.15 F(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(9)197.895 E 0 Cg EP +(2017 December 28)136.795 E(9)190.955 E 0 Cg EP %%Page: 10 10 %%BeginPageSetup BP @@ -1520,8 +1520,8 @@ embers correspond to the internal list of aliases as main-)-.25 F .16 9.502 E F2 -.3(BA)144 710.4 S(SH_ALIASES).3 E F0 (is unset, it loses its special properties, e)2.5 E -.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(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(10)192.895 E 0 Cg -EP +-2.5 E(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(10)185.955 E 0 +Cg EP %%Page: 11 11 %%BeginPageSetup BP @@ -1633,7 +1633,7 @@ F0(is)3.281 E(de\214ned in the \214le)144 612 Q F1(${B)2.5 E (ersion number \(the)-.15 E F4 -.37(re)2.5 G(lease).37 E F0(\).)A F1 -.3 (BA)144 714 S(SH_VERSINFO[).3 E F0(1)A F1(])A F0(The minor v)264 714 Q (ersion number \(the)-.15 E F4(ver)2.5 E(sion)-.1 E F0(\).)A -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(11)192.895 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(11)185.955 E 0 Cg EP %%Page: 12 12 %%BeginPageSetup BP @@ -1745,8 +1745,8 @@ F(\(see)144 672 Q F2(time)2.917 E F0 .417 1.09(are ignored.)3.34 F(If)6.09 E F3(EPOCHREAL)3.59 E(TIME)-.828 E F0 1.09(is unset, it loses its special properties, e)3.34 F -.15(ve)-.25 G 3.591(ni).15 G 3.591(fi)-3.591 G 3.591(ti)-3.591 G(s)-3.591 E -(subsequently reset.)144 696 Q(GNU Bash 4.4)72 768 Q(2017 October 7) -143.735 E(12)192.895 E 0 Cg EP +(subsequently reset.)144 696 Q(GNU Bash 4.4)72 768 Q(2017 December 28) +136.795 E(12)185.955 E 0 Cg EP %%Page: 13 13 %%BeginPageSetup BP @@ -1851,7 +1851,7 @@ g system on which)144 678 R F1(bash)2.829 E F0 .329(is e)2.829 F -.15 (xit status v)-.15 F .61(alues from the processes in)-.25 F (the most-recently-e)144 726 Q -.15(xe)-.15 G(cuted fore).15 E (ground pipeline \(which may contain only a single command\).)-.15 E -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(13)192.895 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(13)185.955 E 0 Cg EP %%Page: 14 14 %%BeginPageSetup BP @@ -1969,7 +1969,7 @@ mpty string causes the trace output to be sent to the standard error)144 693.6 S(SH_XTRA).27 E(CEFD)-.495 E F0 .74(to 2 \(the standard error \ \214le descriptor\) and then unsetting it will result in the)2.99 F (standard error being closed.)144 705.6 Q(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(14)192.895 E 0 Cg EP +(2017 December 28)136.795 E(14)185.955 E 0 Cg EP %%Page: 15 15 %%BeginPageSetup BP @@ -2088,7 +2088,7 @@ A F1(HISTFILE)108 696 Q F0 .181 -.1 F(alue)-.25 E(is)144 720 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(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(15)192.895 E 0 Cg EP +(2017 December 28)136.795 E(15)185.955 E 0 Cg EP %%Page: 16 16 %%BeginPageSetup BP @@ -2206,7 +2206,7 @@ ermines the collation order used when sorting the results of pathname e) -.25 F(xpansion,)-.15 E 1.464(and determines the beha)144 720 R 1.464 (vior of range e)-.2 F 1.465(xpressions, equi)-.15 F -.25(va)-.25 G 1.465(lence classes, and collating sequences).25 F(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(16)192.895 E 0 Cg EP +(2017 December 28)136.795 E(16)185.955 E 0 Cg EP %%Page: 17 17 %%BeginPageSetup BP @@ -2316,7 +2316,7 @@ E F0(and)3.423 E F1(\\W)3.423 E F0 .923(prompt string escapes \(see) (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 720 Q F0(abo)2.25 E -.15(ve)-.15 G(\).).15 E(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(17)192.895 E 0 Cg EP +(2017 December 28)136.795 E(17)185.955 E 0 Cg EP %%Page: 18 18 %%BeginPageSetup BP @@ -2436,7 +2436,7 @@ E F1(histchars)108 644.4 Q F0 2.07(The tw)144 656.4 R 4.57(oo)-.1 G 4.57 char)144 716.4 R(-)-.2 E 1.294(acter of a w)144 728.4 R 1.294 (ord, normally `)-.1 F F1(#)A F0 3.794('. The)B 1.293 (history comment character causes history substitution to be)3.794 F -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(18)192.895 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(18)185.955 E 0 Cg EP %%Page: 19 19 %%BeginPageSetup BP @@ -2582,6942 +2582,6998 @@ F0 2.767(]d)C(estro)-2.767 E .267(ys the array element at inde)-.1 F(x) (or both inde)-3.975 F -.15(xe)-.15 G 3.975(da).15 G 1.474(nd associati) -3.975 F 1.774 -.15(ve a)-.25 H 3.974(rrays. Ne).15 F -.05(ga)-.15 G(ti) .05 E 1.774 -.15(ve s)-.25 H 1.474(ubscripts to inde).15 F -.15(xe)-.15 -G 3.974(da).15 G 1.474(rrays are interpreted as)-3.974 F 2.206 -(described abo)108 705.6 R -.15(ve)-.15 G 7.206(.C).15 G 2.206 -(are must be tak)-7.206 F 2.206(en to a)-.1 F -.2(vo)-.2 G 2.206(id unw) -.2 F 2.207(anted side ef)-.1 F 2.207(fects caused by pathname e)-.25 F -(xpansion.)-.15 E .53(Unsetting the last element of an array v)108 717.6 -R .529(ariable does not unset the v)-.25 F(ariable.)-.25 E F1(unset) -5.529 E F2(name)3.029 E F0 3.029(,w)C(here)-3.029 E F2(name)3.029 E F0 -.529(is an)3.029 F(array)108 729.6 Q 2.5(,o)-.65 G(r)-2.5 E F1(unset)2.5 -E F2(name)2.5 E F0([)A F2(subscript)A F0(], where)A F2(subscript)2.5 E -F0(is)2.5 E F1(*)2.5 E F0(or)2.5 E F1(@)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 -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(19)192.895 E 0 Cg EP +G 3.974(da).15 G 1.474(rrays are interpreted as)-3.974 F .614 +(described abo)108 705.6 R -.15(ve)-.15 G 5.614(.U).15 G .614 +(nsetting the last element of an array v)-5.614 F .615 +(ariable does not unset the v)-.25 F(ariable.)-.25 E F1(unset)5.615 E F2 +(name)3.115 E F0(,)A(where)108 717.6 Q F2(name)2.5 E F0(is an array)2.5 +E 2.5(,o)-.65 G(r)-2.5 E F1(unset)2.5 E F2(name)2.5 E F0([)A F2 +(subscript)A F0(], where)A F2(subscript)2.5 E F0(is)2.5 E F1(*)2.5 E F0 +(or)2.5 E F1(@)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(GNU Bash 4.4)72 768 Q(2017 December 28) +136.795 E(19)185.955 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(The)108 84 Q/F1 10 -/Times-Bold@0 SF(declar)3.573 E(e)-.18 E F0(,)A F1(local)3.573 E F0 -3.573(,a)C(nd)-3.573 E F1 -.18(re)3.573 G(adonly).18 E F0 -.2(bu)3.573 G -1.073(iltins each accept a).2 F F13.573 E F0 1.073 -(option to specify an inde)3.573 F -.15(xe)-.15 G 3.574(da).15 G 1.074 -(rray and a)-3.574 F F13.574 E F0 .339 -(option to specify an associati)108 96 R .638 -.15(ve a)-.25 H(rray).15 -E 5.338(.I)-.65 G 2.838(fb)-5.338 G .338(oth options are supplied,) +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .848 +(When using a v)108 84 R .848(ariable name with a subscript as an ar) +-.25 F .848(gument to a command, such as with)-.18 F/F1 10/Times-Bold@0 +SF(unset)3.347 E F0 3.347(,w)C(ithout)-3.347 E .344(using the w)108 96 R +.344(ord e)-.1 F .344(xpansion syntax described abo)-.15 F -.15(ve)-.15 +G 2.845(,t).15 G .345(he ar)-2.845 F .345 +(gument is subject to pathname e)-.18 F 2.845(xpansion. If)-.15 F(path-) +2.845 E(name e)108 108 Q(xpansion is not desired, the ar)-.15 E +(gument should be quoted.)-.18 E(The)108 124.8 Q F1(declar)3.574 E(e) +-.18 E F0(,)A F1(local)3.574 E F0 3.574(,a)C(nd)-3.574 E F1 -.18(re) +3.574 G(adonly).18 E F0 -.2(bu)3.574 G 1.073(iltins each accept a).2 F +F13.573 E F0 1.073(option to specify an inde)3.573 F -.15(xe)-.15 +G 3.573(da).15 G 1.073(rray and a)-3.573 F F13.573 E F0 .338 +(option to specify an associati)108 136.8 R .638 -.15(ve a)-.25 H(rray) +.15 E 5.338(.I)-.65 G 2.838(fb)-5.338 G .338(oth options are supplied,) -2.838 F F12.838 E F0(tak)2.838 E .338(es precedence.)-.1 F(The) -5.338 E F1 -.18(re)2.838 G(ad).18 E F0 -.2(bu)2.838 G(iltin).2 E .44 -(accepts a)108 108 R F12.941 E F0 .441 +5.338 E F1 -.18(re)2.839 G(ad).18 E F0 -.2(bu)2.839 G(iltin).2 E .441 +(accepts a)108 148.8 R F12.941 E F0 .441 (option to assign a list of w)2.941 F .441 (ords read from the standard input to an array)-.1 F 5.441(.T)-.65 G(he) --5.441 E F1(set)2.941 E F0(and)2.941 E F1(declar)2.941 E(e)-.18 E F0 -.2 -(bu)108 120 S(iltins display array v).2 E(alues in a w)-.25 E +-5.441 E F1(set)2.941 E F0(and)2.941 E F1(declar)2.94 E(e)-.18 E F0 -.2 +(bu)108 160.8 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/F2 10.95 -/Times-Bold@0 SF(EXP)72 136.8 Q(ANSION)-.81 E F0 .76(Expansion is perfo\ -rmed on the command line after it has been split into w)108 148.8 R 3.26 +/Times-Bold@0 SF(EXP)72 177.6 Q(ANSION)-.81 E F0 .76(Expansion is perfo\ +rmed on the command line after it has been split into w)108 189.6 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 160.8 S .369(pansion performed:).15 F/F3 10 +(inds of)-3.26 F -.15(ex)108 201.6 S .37(pansion performed:).15 F/F3 10 /Times-Italic@0 SF(br)2.869 E .369(ace e)-.15 F(xpansion)-.2 E F0(,).24 E F3 .369(tilde e)2.869 F(xpansion)-.2 E F0(,).24 E F3(par)2.869 E .369 -(ameter and variable e)-.15 F(xpansion)-.2 E F0(,).24 E F3 .37 -(command sub-)2.869 F(stitution)108 172.8 Q F0(,).24 E F3(arithmetic e) +(ameter and variable e)-.15 F(xpansion)-.2 E F0(,).24 E F3 .369 +(command sub-)2.869 F(stitution)108 213.6 Q F0(,).24 E F3(arithmetic e) 2.5 E(xpansion)-.2 E F0(,).24 E F3(wor)2.5 E 2.5(ds)-.37 G(plitting)-2.5 E F0 2.5(,a).22 G(nd)-2.5 E F3(pathname e)2.5 E(xpansion)-.2 E F0(.).24 -E .419(The order of e)108 189.6 R .419(xpansions is: brace e)-.15 F .418 -(xpansion; tilde e)-.15 F .418(xpansion, parameter and v)-.15 F .418 -(ariable e)-.25 F .418(xpansion, arithmetic)-.15 F -.15(ex)108 201.6 S -.195(pansion, and command substitution \(done in a left-to-right f).15 F -.196(ashion\); w)-.1 F .196(ord splitting; and pathname e)-.1 F(xpan-) --.15 E(sion.)108 213.6 Q .257 -(On systems that can support it, there is an additional e)108 230.4 R +E .418(The order of e)108 230.4 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 242.4 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 254.4 Q .257 +(On systems that can support it, there is an additional e)108 271.2 R .257(xpansion a)-.15 F -.25(va)-.2 G(ilable:).25 E F3(pr)2.757 E .257 -(ocess substitution)-.45 F F0 5.257(.T)C .256(his is per)-5.257 F(-)-.2 -E(formed at the same time as tilde, parameter)108 242.4 Q 2.5(,v)-.4 G +(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 283.2 Q 2.5(,v)-.4 G (ariable, and arithmetic e)-2.75 E(xpansion and command substitution.) --.15 E .002(After these e)108 259.2 R .003 +-.15 E .003(After these e)108 300 R .003 (xpansions are performed, quote characters present in the original w) --.15 F .003(ord are remo)-.1 F -.15(ve)-.15 G 2.503(du).15 G .003 -(nless the)-2.503 F(y)-.15 E(ha)108 271.2 Q .3 -.15(ve b)-.2 H +-.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 312 Q .3 -.15(ve b)-.2 H (een quoted themselv).15 E(es \()-.15 E F3(quote r)A(emo)-.37 E(val)-.1 -E F0(\).)A 1.191(Only brace e)108 288 R 1.191(xpansion, w)-.15 F 1.191 +E F0(\).)A 1.19(Only brace e)108 328.8 R 1.19(xpansion, w)-.15 F 1.19 (ord splitting, and pathname e)-.1 F 1.191 -(xpansion can increase the number of w)-.15 F 1.19(ords of the)-.1 F --.15(ex)108 300 S 1.164(pansion; other e).15 F 1.164(xpansions e)-.15 F -1.164(xpand a single w)-.15 F 1.165(ord to a single w)-.1 F 3.665 -(ord. The)-.1 F 1.165(only e)3.665 F 1.165(xceptions to this are the) --.15 F -.15(ex)108 312 S 1.245(pansions of ").15 F F1($@)A F0 3.745("a)C -1.245(nd ")-3.745 F F1(${)A F3(name)A F1([@]})A F0 1.245 -(", and, in most cases,)B F1($*)3.745 E F0(and)3.745 E F1(${)3.744 E F3 -(name)A F1([*]})A F0 1.244(as e)3.744 F 1.244(xplained abo)-.15 F 1.544 --.15(ve \()-.15 H(see).15 E/F4 9/Times-Bold@0 SF -.666(PA)108 324 S -(RAMETERS).666 E/F5 9/Times-Roman@0 SF(\).)A F1(Brace Expansion)87 340.8 -Q F3(Br)108.58 352.8 Q .606(ace e)-.15 F(xpansion)-.2 E F0 .606 +(xpansion can increase the number of w)-.15 F 1.191(ords of the)-.1 F +-.15(ex)108 340.8 S 1.165(pansion; other e).15 F 1.165(xpansions e)-.15 +F 1.165(xpand a single w)-.15 F 1.165(ord to a single w)-.1 F 3.665 +(ord. The)-.1 F 1.164(only e)3.665 F 1.164(xceptions to this are the) +-.15 F -.15(ex)108 352.8 S 1.244(pansions of ").15 F F1($@)A F0 3.744 +("a)C 1.244(nd ")-3.744 F F1(${)A F3(name)A F1([@]})A F0 1.245 +(", and, in most cases,)B F1($*)3.745 E F0(and)3.745 E F1(${)3.745 E F3 +(name)A F1([*]})A F0 1.245(as e)3.745 F 1.245(xplained abo)-.15 F 1.545 +-.15(ve \()-.15 H(see).15 E/F4 9/Times-Bold@0 SF -.666(PA)108 364.8 S +(RAMETERS).666 E/F5 9/Times-Roman@0 SF(\).)A F1(Brace Expansion)87 381.6 +Q F3(Br)108.58 393.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 364.8 Q F3 .415 +.606(This mechanism is similar)5.606 F(to)108 405.6 Q F3 .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 .151(form of an optional)108 376.8 R F3(pr)2.651 E(eamble) +(he)-2.915 E .152(form of an optional)108 417.6 R F3(pr)2.652 E(eamble) -.37 E F0 2.651(,f).18 G(ollo)-2.651 E .151 (wed by either a series of comma-separated strings or a sequence e)-.25 -F(xpres-)-.15 E .563(sion between a pair of braces, follo)108 388.8 R +F(xpres-)-.15 E .563(sion between a pair of braces, follo)108 429.6 R .563(wed by an optional)-.25 F F3(postscript)3.063 E F0 5.563(.T).68 G .563(he preamble is pre\214x)-5.563 F .563(ed to each string)-.15 F .659 (contained within the braces, and the postscript is then appended to ea\ -ch resulting string, e)108 400.8 R .659(xpanding left to)-.15 F(right.) -108 412.8 Q .719(Brace e)108 429.6 R .719(xpansions may be nested.)-.15 +ch resulting string, e)108 441.6 R .658(xpanding left to)-.15 F(right.) +108 453.6 Q .718(Brace e)108 470.4 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 441.6 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.242(As) -108 458.4 S .742(equence e)-3.242 F .742(xpression tak)-.15 F .742 -(es the form)-.1 F F1({)3.242 E F3(x)A F1(..)A F3(y)A F1([..)A F3(incr)A -F1(]})A F0 3.242(,w)C(here)-3.242 E F3(x)3.242 E F0(and)3.243 E F3(y) -3.243 E F0 .743(are either inte)3.243 F .743(gers or single characters,) --.15 F(and)108 470.4 Q F3(incr)3.032 E F0 3.032(,a)C 3.032(no)-3.032 G +108 482.4 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 499.2 S .743(equence e)-3.243 F .743(xpression tak)-.15 F .743 +(es the form)-.1 F F1({)3.243 E F3(x)A F1(..)A F3(y)A F1([..)A F3(incr)A +F1(]})A F0 3.243(,w)C(here)-3.243 E F3(x)3.243 E F0(and)3.242 E F3(y) +3.242 E F0 .742(are either inte)3.242 F .742(gers or single characters,) +-.15 F(and)108 511.2 Q F3(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 .531(xpands to each)-.15 F .077(number between)108 -482.4 R F3(x)2.577 E F0(and)2.577 E F3(y)2.577 E F0 2.577(,i)C(nclusi) --2.577 E -.15(ve)-.25 G 5.077(.S).15 G .077(upplied inte)-5.077 F .077 -(gers may be pre\214x)-.15 F .077(ed with)-.15 F F3(0)2.577 E F0 .078 -(to force each term to ha)2.578 F .378 -.15(ve t)-.2 H(he).15 E .015 -(same width.)108 494.4 R .015(When either)5.015 F F3(x)2.515 E F0(or) -2.515 E F3(y)2.515 E F0(be)2.515 E .014(gins with a zero, the shell att\ +(xpression e)-.15 F .532(xpands to each)-.15 F .078(number between)108 +523.2 R F3(x)2.578 E F0(and)2.578 E F3(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 F3(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 535.2 R .014(When either)5.014 F F3(x)2.514 E F0(or) +2.514 E F3(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 506.4 R +(the same number of digits, zero-padding where necessary)108 547.2 R 6.143(.W)-.65 G 1.143(hen characters are supplied, the e)-6.143 F -(xpression)-.15 E -.15(ex)108 518.4 S 1.064(pands to each character le) +(xpression)-.15 E -.15(ex)108 559.2 S 1.064(pands to each character le) .15 F 1.064(xicographically between)-.15 F F3(x)3.564 E F0(and)3.564 E F3(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 .983 -(that both)108 530.4 R F3(x)3.483 E F0(and)3.483 E F3(y)3.483 E F0 .983 -(must be of the same type.)3.483 F .984 +1.064(sing the def)-3.564 F 1.064(ault C locale.)-.1 F(Note)6.064 E .984 +(that both)108 571.2 R F3(x)3.484 E F0(and)3.484 E F3(y)3.484 E F0 .983 +(must be of the same type.)3.484 F .983 (When the increment is supplied, it is used as the dif)5.983 F(ference) --.25 E(between each term.)108 542.4 Q(The def)5 E -(ault increment is 1 or -1 as appropriate.)-.1 E .582(Brace e)108 559.2 -R .582(xpansion is performed before an)-.15 F 3.082(yo)-.15 G .581 -(ther e)-3.082 F .581(xpansions, and an)-.15 F 3.081(yc)-.15 G .581 -(haracters special to other e)-3.081 F(xpansions)-.15 E .015 -(are preserv)108 571.2 R .015(ed in the result.)-.15 F .015 -(It is strictly te)5.015 F(xtual.)-.15 E F1(Bash)5.016 E F0 .016 -(does not apply an)2.516 F 2.516(ys)-.15 G .016 -(yntactic interpretation to the con-)-2.516 F(te)108 583.2 Q -(xt of the e)-.15 E(xpansion or the te)-.15 E(xt between the braces.) --.15 E 3.633(Ac)108 600 S 1.133(orrectly-formed brace e)-3.633 F 1.132(\ -xpansion must contain unquoted opening and closing braces, and at least\ - one)-.15 F 3.44(unquoted comma or a v)108 612 R 3.441(alid sequence e) --.25 F 5.941(xpression. An)-.15 F 5.941(yi)-.15 G 3.441 -(ncorrectly formed brace e)-5.941 F 3.441(xpansion is left)-.15 F 2.755 -(unchanged. A)108 624 R F1({)2.755 E F0(or)2.755 E F1(,)2.755 E F0 .255 -(may be quoted with a backslash to pre)2.755 F -.15(ve)-.25 G .255 -(nt its being considered part of a brace e).15 F(xpres-)-.15 E 2.91 -(sion. T)108 636 R 2.91(oa)-.8 G -.2(vo)-3.11 G .41 +-.25 E(between each term.)108 583.2 Q(The def)5 E +(ault increment is 1 or -1 as appropriate.)-.1 E .581(Brace e)108 600 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 612 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 624 Q(xt of the e) +-.15 E(xpansion or the te)-.15 E(xt between the braces.)-.15 E 3.632(Ac) +108 640.8 S 1.132(orrectly-formed brace e)-3.632 F 1.132(xpansion must \ +contain unquoted opening and closing braces, and at least one)-.15 F +3.441(unquoted comma or a v)108 652.8 R 3.441(alid sequence e)-.25 F +5.941(xpression. An)-.15 F 5.941(yi)-.15 G 3.441 +(ncorrectly formed brace e)-5.941 F 3.44(xpansion is left)-.15 F 2.755 +(unchanged. A)108 664.8 R F1({)2.755 E F0(or)2.755 E F1(,)2.755 E F0 +.255(may be quoted with a backslash to pre)2.755 F -.15(ve)-.25 G .255 +(nt its being considered part of a brace e).15 F(xpres-)-.15 E 2.911 +(sion. T)108 676.8 R 2.911(oa)-.8 G -.2(vo)-3.111 G .411 (id con\215icts with parameter e).2 F .411(xpansion, the string)-.15 F -F1(${)2.911 E F0 .411(is not considered eligible for brace e)2.911 F -(xpan-)-.15 E(sion, and inhibits brace e)108 648 Q +F1(${)2.911 E F0 .41(is not considered eligible for brace e)2.911 F +(xpan-)-.15 E(sion, and inhibits brace e)108 688.8 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 664.8 R(longer than in the abo)108 676.8 Q .3 --.15(ve ex)-.15 H(ample:).15 E(mkdir /usr/local/src/bash/{old,ne)144 -693.6 Q -.65(w,)-.25 G(dist,b).65 E(ugs})-.2 E(or)108 705.6 Q(cho)144 -717.6 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(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E -(20)192.895 E 0 Cg EP +gs to be generated is)108 705.6 R(longer than in the abo)108 717.6 Q .3 +-.15(ve ex)-.15 H(ample:).15 E(GNU Bash 4.4)72 768 Q(2017 December 28) +136.795 E(20)185.955 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 .618(Brace e)108 -84 R .618 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E +(mkdir /usr/local/src/bash/{old,ne)144 84 Q -.65(w,)-.25 G(dist,b).65 E +(ugs})-.2 E(or)108 96 Q(cho)144 108 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 124.8 R .618 (xpansion introduces a slight incompatibility with historical v)-.15 F .618(ersions of)-.15 F/F1 10/Times-Bold@0 SF(sh)3.118 E F0(.)A F1(sh) -5.618 E F0 .618(does not treat open-)3.118 F .248 -(ing or closing braces specially when the)108 96 R 2.748(ya)-.15 G .247 -(ppear as part of a w)-2.748 F .247(ord, and preserv)-.1 F .247 -(es them in the output.)-.15 F F1(Bash)5.247 E F0(remo)108 108 Q -.15 +5.618 E F0 .618(does not treat open-)3.118 F .247 +(ing or closing braces specially when the)108 136.8 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 148.8 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 10/Times-Italic@0 SF(\214le{1,2})108 120 Q F0 -.515(appears identically in the output.)3.015 F .515(The same w)5.515 F -.515(ord is output as)-.1 F F2 .514(\214le1 \214le2)4.925 F F0 .514 -(after e)3.034 F .514(xpansion by)-.15 F F1(bash)3.014 E F0(.)A .436 -(If strict compatibility with)108 132 R F1(sh)2.936 E F0 .436 +3.53 E F0(as)3.53 E/F2 10/Times-Italic@0 SF(\214le{1,2})108 160.8 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 172.8 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 .437 -(xpansion with the)-.15 F F1(+B)108 144 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 160.8 S -(lde Expansion).18 E F0 1.087(If a w)108 172.8 R 1.087(ord be)-.1 F -1.087(gins with an unquoted tilde character \(`)-.15 F F1(~)A F0 1.086 -('\), all of the characters preceding the \214rst unquoted)B .185(slash\ - \(or all characters, if there is no unquoted slash\) are considered a) -108 184.8 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 .726(in the tilde-pre\214x\ - are quoted, the characters in the tilde-pre\214x follo)108 196.8 R .725 -(wing the tilde are treated as a possible)-.25 F F2(lo)108 208.8 Q .522 -(gin name)-.1 F F0 5.522(.I)C 3.022(ft)-5.522 G .522 +(+B)2.936 E F0 .436(option or disable brace e)2.936 F .436 +(xpansion with the)-.15 F F1(+B)108 184.8 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 201.6 S(lde Expansion).18 E F0 1.086(If a w)108 213.6 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 225.6 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 237.6 R +.726(wing the tilde are treated as a possible)-.25 F F2(lo)108 249.6 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.022 F .523(alue of the shell parameter)-.25 F F3(HOME)108 220.8 Q/F4 -9/Times-Roman@0 SF(.)A F0(If)4.787 E F3(HOME)2.787 E F0 .287 -(is unset, the home directory of the user e)2.537 F -.15(xe)-.15 G .286 -(cuting the shell is substituted instead.).15 F(Other)5.286 E(-)-.2 E(w\ +-3.023 F .522(alue of the shell parameter)-.25 F F3(HOME)108 261.6 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 232.8 Q .092 -(If the tilde-pre\214x is a `~+', the v)108 249.6 R .092 +with the speci\214ed login name.)108 273.6 Q .093 +(If the tilde-pre\214x is a `~+', the v)108 290.4 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 .093(If the tilde-pre\214x is) -5.093 F 3.404(a`)108 261.6 S .904(~\255', the v)-3.404 F .904 +(replaces the tilde-pre\214x.)2.342 F .092(If the tilde-pre\214x is) +5.092 F 3.403(a`)108 302.4 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 .903(If the characters follo) -5.903 F .903(wing the)-.25 F 1.641 -(tilde in the tilde-pre\214x consist of a number)108 273.6 R F2(N)4.141 -E F0 4.142(,o)C 1.642(ptionally pre\214x)-4.142 F 1.642 -(ed by a `+' or a `\255', the tilde-pre\214x is)-.15 F 1.438(replaced w\ +.904(if it is set, is substituted.)3.154 F .904(If the characters follo) +5.904 F .904(wing the)-.25 F 1.642 +(tilde in the tilde-pre\214x consist of a number)108 314.4 R F2(N)4.142 +E F0 4.142(,o)C 1.642(ptionally pre\214x)-4.142 F 1.641 +(ed by a `+' or a `\255', the tilde-pre\214x is)-.15 F 1.437(replaced w\ ith the corresponding element from the directory stack, as it w)108 -285.6 R 1.437(ould be displayed by the)-.1 F F1(dirs)3.937 E F0 -.2(bu) -108 297.6 S .454(iltin in).2 F -.2(vo)-.4 G -.1(ke).2 G 2.954(dw).1 G -.454(ith the tilde-pre\214x as an ar)-2.954 F 2.954(gument. If)-.18 F -.454(the characters follo)2.954 F .455 +326.4 R 1.438(ould be displayed by the)-.1 F F1(dirs)3.938 E F0 -.2(bu) +108 338.4 S .455(iltin in).2 F -.2(vo)-.4 G -.1(ke).2 G 2.955(dw).1 G +.455(ith the tilde-pre\214x as an ar)-2.955 F 2.954(gument. If)-.18 F +.454(the characters follo)2.954 F .454 (wing the tilde in the tilde-pre\214x)-.25 F (consist of a number without a leading `+' or `\255', `+' is assumed.) -108 309.6 Q(If the login name is in)108 326.4 Q -.25(va)-.4 G +108 350.4 Q(If the login name is in)108 367.2 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 .167(Each v)108 343.2 R .167 +(ord is unchanged.)-.1 E .166(Each v)108 384 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.666 E F0 5.166(.I)C(n)-5.166 E -.467(these cases, tilde e)108 355.2 R .467(xpansion is also performed.) --.15 F(Consequently)5.467 E 2.967(,o)-.65 G .468 -(ne may use \214lenames with tildes in assign-)-2.967 F(ments to)108 -367.2 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 F1 -.1(Pa)87 384 S(rameter Expansion).1 E F0 1.606(The `) -108 396 R F1($)A F0 4.106('c)C 1.606(haracter introduces parameter e) --4.106 F 1.605(xpansion, command substitution, or arithmetic e)-.15 F -4.105(xpansion. The)-.15 F .406(parameter name or symbol to be e)108 408 -R .407(xpanded may be enclosed in braces, which are optional b)-.15 F -.407(ut serv)-.2 F 2.907(et)-.15 G 2.907(op)-2.907 G(ro-)-2.907 E .033 -(tect the v)108 420 R .033(ariable to be e)-.25 F .033 -(xpanded from characters immediately follo)-.15 F .032 -(wing it which could be interpreted as part)-.25 F(of the name.)108 432 -Q 1.189 +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 396 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 408 +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 +F1 -.1(Pa)87 424.8 S(rameter Expansion).1 E F0 1.605(The `)108 436.8 R +F1($)A F0 4.105('c)C 1.605(haracter introduces parameter e)-4.105 F +1.606(xpansion, command substitution, or arithmetic e)-.15 F 4.106 +(xpansion. The)-.15 F .407(parameter name or symbol to be e)108 448.8 R +.407(xpanded may be enclosed in braces, which are optional b)-.15 F .406 +(ut serv)-.2 F 2.906(et)-.15 G 2.906(op)-2.906 G(ro-)-2.906 E .032 +(tect the v)108 460.8 R .032(ariable to be e)-.25 F .032 +(xpanded from characters immediately follo)-.15 F .033 +(wing it which could be interpreted as part)-.25 F(of the name.)108 +472.8 Q 1.19 (When braces are used, the matching ending brace is the \214rst `)108 -448.8 R F1(})A F0 3.69('n)C 1.19(ot escaped by a backslash or within a) --3.69 F 2.15(quoted string, and not within an embedded arithmetic e)108 -460.8 R 2.15(xpansion, command substitution, or parameter)-.15 F -.15 -(ex)108 472.8 S(pansion.).15 E(${)108 489.6 Q F2(par)A(ameter)-.15 E F0 -(})A 1.204(The v)144 501.6 R 1.204(alue of)-.25 F F2(par)3.704 E(ameter) --.15 E F0 1.204(is substituted.)3.704 F 1.204 -(The braces are required when)6.204 F F2(par)4.955 E(ameter)-.15 E F0 -1.205(is a positional)4.435 F .264 -(parameter with more than one digit, or when)144 513.6 R F2(par)4.014 E +489.6 R F1(})A F0 3.689('n)C 1.189 +(ot escaped by a backslash or within a)-3.689 F 2.15 +(quoted string, and not within an embedded arithmetic e)108 501.6 R 2.15 +(xpansion, command substitution, or parameter)-.15 F -.15(ex)108 513.6 S +(pansion.).15 E(${)108 530.4 Q F2(par)A(ameter)-.15 E F0(})A 1.205 +(The v)144 542.4 R 1.205(alue of)-.25 F F2(par)3.705 E(ameter)-.15 E F0 +1.204(is substituted.)3.705 F 1.204(The braces are required when)6.204 F +F2(par)4.954 E(ameter)-.15 E F0 1.204(is a positional)4.434 F .264 +(parameter with more than one digit, or when)144 554.4 R F2(par)4.014 E (ameter)-.15 E F0 .264(is follo)3.494 F .264 -(wed by a character which is not to)-.25 F 2.676 -(be interpreted as part of its name.)144 525.6 R(The)7.677 E F2(par) -5.177 E(ameter)-.15 E F0 2.677(is a shell parameter as described abo) -5.177 F -.15(ve)-.15 G F1 -.74(PA)144 537.6 S(RAMETERS).74 E F0 2.5(\)o) +(wed by a character which is not to)-.25 F 2.677 +(be interpreted as part of its name.)144 566.4 R(The)7.677 E F2(par) +5.177 E(ameter)-.15 E F0 2.676(is a shell parameter as described abo) +5.177 F -.15(ve)-.15 G F1 -.74(PA)144 578.4 S(RAMETERS).74 E 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 .347(If the \214rst character of)108 554.4 R F2(par)2.846 E +(\).)A .346(If the \214rst character of)108 595.2 R F2(par)2.846 E (ameter)-.15 E F0 .346(is an e)2.846 F .346(xclamation point \()-.15 F F1(!)A F0 .346(\), and)B F2(par)2.846 E(ameter)-.15 E F0 .346(is not a) -2.846 F F2(namer)2.846 E(ef)-.37 E F0 2.846(,i)C 2.846(ti)-2.846 G -(ntroduces)-2.846 E 2.634(al)108 566.4 S -2.15 -.25(ev e)-2.634 H 2.634 -(lo).25 G 2.634(fv)-2.634 G .134(ariable indirection.)-2.884 F F1(Bash) +2.846 F F2(namer)2.846 E(ef)-.37 E F0 2.847(,i)C 2.847(ti)-2.847 G +(ntroduces)-2.847 E 2.635(al)108 607.2 S -2.15 -.25(ev e)-2.635 H 2.635 +(lo).25 G 2.635(fv)-2.635 G .135(ariable indirection.)-2.885 F F1(Bash) 5.134 E F0 .134(uses the v)2.634 F .134(alue of the v)-.25 F .134 -(ariable formed from the rest of)-.25 F F2(par)2.635 E(ameter)-.15 E F0 -.135(as the)2.635 F 1.004(name of the v)108 578.4 R 1.003 +(ariable formed from the rest of)-.25 F F2(par)2.634 E(ameter)-.15 E F0 +.134(as the)2.634 F 1.003(name of the v)108 619.2 R 1.003 (ariable; this v)-.25 F 1.003(ariable is then e)-.25 F 1.003 (xpanded and that v)-.15 F 1.003 -(alue is used in the rest of the substitution,)-.25 F .594 -(rather than the v)108 590.4 R .594(alue of)-.25 F F2(par)3.094 E -(ameter)-.15 E F0 3.095(itself. This)3.095 F .595(is kno)3.095 F .595 -(wn as)-.25 F F2(indir)3.095 E .595(ect e)-.37 F(xpansion)-.2 E F0 5.595 -(.I)C(f)-5.595 E F2(par)3.095 E(ameter)-.15 E F0 .595(is a nameref,) -3.095 F .478(this e)108 602.4 R .478(xpands to the name of the v)-.15 F -.478(ariable referenced by)-.25 F F2(par)2.977 E(ameter)-.15 E F0 .477 -(instead of performing the complete indi-)2.977 F 2.163(rect e)108 614.4 -R 4.663(xpansion. The)-.15 F -.15(ex)4.663 G 2.163 -(ceptions to this are the e).15 F 2.163(xpansions of ${)-.15 F F1(!)A F2 -(pr)A(e\214x)-.37 E F1(*)A F0 4.663(}a)C 2.163(nd ${)-4.663 F F1(!)A F2 -(name)A F0([)A F2(@)A F0 2.164(]} described)B(belo)108 626.4 Q 3.8 -.65 -(w. T)-.25 H(he e).65 E(xclamation point must immediately follo)-.15 E -2.5(wt)-.25 G(he left brace in order to introduce indirection.)-2.5 E -.334(In each of the cases belo)108 643.2 R -.65(w,)-.25 G F2(wor)3.484 E +(alue is used in the rest of the substitution,)-.25 F .258 +(rather than the v)108 631.2 R .258(alue of)-.25 F F2(par)2.757 E +(ameter)-.15 E F0 2.757(itself. This)2.757 F .257(is kno)2.757 F .257 +(wn as)-.25 F F2(indir)2.757 E .257(ect e)-.37 F(xpansion)-.2 E F0 5.257 +(.T)C .257(he v)-5.257 F .257(alue is subject to tilde)-.25 F -.15(ex) +108 643.2 S 2.766(pansion, parameter e).15 F 2.766 +(xpansion, command substitution, and arithmetic e)-.15 F 5.267 +(xpansion. If)-.15 F F2(par)5.267 E(ameter)-.15 E F0 2.767(is a)5.267 F +.462(nameref, this e)108 655.2 R .461(xpands to the name of the v)-.15 F +.461(ariable referenced by)-.25 F F2(par)2.961 E(ameter)-.15 E F0 .461 +(instead of performing the com-)2.961 F 2.418(plete indirect e)108 667.2 +R 4.918(xpansion. The)-.15 F -.15(ex)4.918 G 2.418 +(ceptions to this are the e).15 F 2.419(xpansions of ${)-.15 F F1(!)A F2 +(pr)A(e\214x)-.37 E F1(*)A F0 4.919(}a)C 2.419(nd ${)-4.919 F F1(!)A F2 +(name)A F0([)A F2(@)A F0(]})A .465(described belo)108 679.2 R 4.265 -.65 +(w. T)-.25 H .465(he e).65 F .465 +(xclamation point must immediately follo)-.15 F 2.965(wt)-.25 G .464 +(he left brace in order to introduce indi-)-2.965 F(rection.)108 691.2 Q +.334(In each of the cases belo)108 708 R -.65(w,)-.25 G F2(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 655.2 Q(xpansion.)-.15 E 1.089 -(When not performing substring e)108 672 R 1.089 -(xpansion, using the forms documented belo)-.15 F 3.589(w\()-.25 G -(e.g.,)-3.589 E F1(:-)3.59 E F0(\),)A F1(bash)3.59 E F0 1.09 -(tests for a)3.59 F(parameter that is unset or null.)108 684 Q(Omitting\ - the colon results in a test only for a parameter that is unset.)5 E(${) -108 700.8 Q F2(par)A(ameter)-.15 E F1<3aad>A F2(wor)A(d)-.37 E F0(})A F1 -.723(Use Default V)144 712.8 R(alues)-.92 E F0 5.723(.I)C(f)-5.723 E F2 -(par)4.473 E(ameter)-.15 E F0 .723(is unset or null, the e)3.953 F .722 -(xpansion of)-.15 F F2(wor)3.562 E(d)-.37 E F0 .722(is substituted.) -3.992 F(Other)5.722 E(-)-.2 E(wise, the v)144 724.8 Q(alue of)-.25 E F2 -(par)3.75 E(ameter)-.15 E F0(is substituted.)3.23 E(GNU Bash 4.4)72 768 -Q(2017 October 7)143.735 E(21)192.895 E 0 Cg EP +F(and arithmetic e)108 720 Q(xpansion.)-.15 E(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(21)185.955 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(${)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 F2 2.004(Assign Default V)144 96 R(alues)-.92 E -F0 7.004(.I)C(f)-7.004 E F1(par)5.754 E(ameter)-.15 E F0 2.005 -(is unset or null, the e)5.234 F 2.005(xpansion of)-.15 F F1(wor)4.845 E -(d)-.37 E F0 2.005(is assigned to)5.275 F F1(par)144 108 Q(ameter)-.15 E -F0 5.279(.T).73 G .279(he v)-5.279 F .279(alue of)-.25 F F1(par)4.029 E -(ameter)-.15 E F0 .278(is then substituted.)3.508 F .278 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.09 +(When not performing substring e)108 84 R 1.089 +(xpansion, using the forms documented belo)-.15 F 3.589(w\()-.25 G +(e.g.,)-3.589 E/F1 10/Times-Bold@0 SF(:-)3.589 E F0(\),)A F1(bash)3.589 +E F0 1.089(tests for a)3.589 F(parameter that is unset or null.)108 96 Q +(Omitting the colon results in a test only for a parameter that is unse\ +t.)5 E(${)108 112.8 Q/F2 10/Times-Italic@0 SF(par)A(ameter)-.15 E F1 +<3aad>A F2(wor)A(d)-.37 E F0(})A F1 .722(Use Default V)144 124.8 R +(alues)-.92 E F0 5.722(.I)C(f)-5.722 E F2(par)4.472 E(ameter)-.15 E F0 +.723(is unset or null, the e)3.952 F .723(xpansion of)-.15 F F2(wor) +3.563 E(d)-.37 E F0 .723(is substituted.)3.993 F(Other)5.723 E(-)-.2 E +(wise, the v)144 136.8 Q(alue of)-.25 E F2(par)3.75 E(ameter)-.15 E F0 +(is substituted.)3.23 E(${)108 148.8 Q F2(par)A(ameter)-.15 E F1(:=)A F2 +(wor)A(d)-.37 E F0(})A F1 2.005(Assign Default V)144 160.8 R(alues)-.92 +E F0 7.005(.I)C(f)-7.005 E F2(par)5.755 E(ameter)-.15 E F0 2.005 +(is unset or null, the e)5.235 F 2.004(xpansion of)-.15 F F2(wor)4.844 E +(d)-.37 E F0 2.004(is assigned to)5.274 F F2(par)144 172.8 Q(ameter)-.15 +E F0 5.278(.T).73 G .278(he v)-5.278 F .278(alue of)-.25 F F2(par)4.028 +E(ameter)-.15 E F0 .278(is then substituted.)3.508 F .279 (Positional parameters and special param-)5.278 F -(eters may not be assigned to in this w)144 120 Q(ay)-.1 E(.)-.65 E(${) -108 132 Q F1(par)A(ameter)-.15 E F2(:?)A F1(wor)A(d)-.37 E F0(})A F2 -.535(Display Err)144 144 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 .662(sage to that ef)144 156 R -.662(fect if)-.25 F F1(wor)3.502 E(d)-.37 E F0 .661(is not present\) is\ - written to the standard error and the shell, if it is not)3.932 F -(interacti)144 168 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 180 Q F1(par)A(ameter)-.15 E F2(:+)A F1 -(wor)A(d)-.37 E F0(})A F2 .745(Use Alter)144 192 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 +(eters may not be assigned to in this w)144 184.8 Q(ay)-.1 E(.)-.65 E +(${)108 196.8 Q F2(par)A(ameter)-.15 E F1(:?)A F2(wor)A(d)-.37 E F0(})A +F1 .535(Display Err)144 208.8 R .535(or if Null or Unset)-.18 F F0 5.535 +(.I)C(f)-5.535 E F2(par)4.285 E(ameter)-.15 E F0 .535 +(is null or unset, the e)3.765 F .535(xpansion of)-.15 F F2(wor)3.035 E +(d)-.37 E F0 .535(\(or a mes-)3.035 F .661(sage to that ef)144 220.8 R +.661(fect if)-.25 F F2(wor)3.501 E(d)-.37 E F0 .662(is not present\) is\ + written to the standard error and the shell, if it is not)3.931 F +(interacti)144 232.8 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 F2(par)2.5 E(ameter)-.15 E F0 +(is substituted.)2.5 E(${)108 244.8 Q F2(par)A(ameter)-.15 E F1(:+)A F2 +(wor)A(d)-.37 E F0(})A F1 .745(Use Alter)144 256.8 R .745(nate V)-.15 F +(alue)-.92 E F0 5.745(.I)C(f)-5.745 E F2(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 204 Q F1(wor)2.84 E(d)-.37 E F0 -(is substituted.)3.27 E(${)108 216 Q F1(par)A(ameter)-.15 E F2(:)A F1 -(of)A(fset)-.18 E F0(})A(${)108 228 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 240 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 -(ameter)-.15 E F0 .002(starting at the)2.502 F 1.081 -(character speci\214ed by)144 252 R F1(of)3.581 E(fset)-.18 E F0 6.081 -(.I)C(f)-6.081 E F1(par)3.582 E(ameter)-.15 E F0(is)3.582 E F2(@)3.582 E +(xpan-)-.15 E(sion of)144 268.8 Q F2(wor)2.84 E(d)-.37 E F0 +(is substituted.)3.27 E(${)108 280.8 Q F2(par)A(ameter)-.15 E F1(:)A F2 +(of)A(fset)-.18 E F0(})A(${)108 292.8 Q F2(par)A(ameter)-.15 E F1(:)A F2 +(of)A(fset)-.18 E F1(:)A F2(length)A F0(})A F1 .002(Substring Expansion) +144 304.8 R F0 5.002(.E)C .002(xpands to up to)-5.002 F F2(length)2.502 +E F0 .002(characters of the v)2.502 F .002(alue of)-.25 F F2(par)2.502 E +(ameter)-.15 E F0 .002(starting at the)2.502 F 1.082 +(character speci\214ed by)144 316.8 R F2(of)3.582 E(fset)-.18 E F0 6.082 +(.I)C(f)-6.082 E F2(par)3.582 E(ameter)-.15 E F0(is)3.582 E F1(@)3.582 E F0 3.582(,a)C 3.582(ni)-3.582 G(nde)-3.582 E -.15(xe)-.15 G 3.582(da).15 -G 1.082(rray subscripted by)-3.582 F F2(@)3.582 E F0(or)3.582 E F2(*) -3.582 E F0 3.582(,o)C 3.582(ra)-3.582 G(n)-3.582 E(associati)144 264 Q +G 1.082(rray subscripted by)-3.582 F F1(@)3.582 E F0(or)3.581 E F1(*) +3.581 E F0 3.581(,o)C 3.581(ra)-3.581 G(n)-3.581 E(associati)144 328.8 Q 1.022 -.15(ve a)-.25 H .722(rray name, the results dif).15 F .722 -(fer as described belo)-.25 F 4.522 -.65(w. I)-.25 H(f).65 E F1(length) -3.222 E F0 .722(is omitted, e)3.222 F .722(xpands to the)-.15 F .042 -(substring of the v)144 276 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 288 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 300 Q(w\).)-.25 E -(If)144 324 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 +(fer as described belo)-.25 F 4.522 -.65(w. I)-.25 H(f).65 E F2(length) +3.222 E F0 .722(is omitted, e)3.222 F .722(xpands to the)-.15 F .043 +(substring of the v)144 340.8 R .043(alue of)-.25 F F2(par)2.543 E +(ameter)-.15 E F0 .042(starting at the character speci\214ed by)2.543 F +F2(of)2.542 E(fset)-.18 E F0 .042(and e)2.542 F .042(xtending to the) +-.15 F .846(end of the v)144 352.8 R(alue.)-.25 E F2(length)5.846 E F0 +(and)3.346 E F2(of)3.346 E(fset)-.18 E F0 .846(are arithmetic e)3.346 F +.847(xpressions \(see)-.15 F/F3 9/Times-Bold@0 SF .847(ARITHMETIC EV) +3.347 F(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E F0(belo)144 364.8 Q +(w\).)-.25 E(If)144 388.8 Q F2(of)3.029 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 336 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 +.045(end of the v)144 400.8 R .045(alue of)-.25 F F2(par)2.546 E(ameter) +-.15 E F0 5.046(.I)C(f)-5.046 E F2(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 348 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 360 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 372 Q -.2(vo) --.2 G(id being confused with the).2 E F2(:-)2.5 E F0 -.15(ex)2.5 G -(pansion.).15 E(If)144 396 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(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 .096(is tak)144 408 R .096 +(of)144 412.8 Q .203(fset in characters from the end of the v)-.25 F +.202(alue of)-.25 F F2(par)2.702 E(ameter)-.15 E F0 .202 +(rather than a number of characters, and)2.702 F .557(the e)144 424.8 R +.557(xpansion is the characters between)-.15 F F2(of)3.057 E(fset)-.18 E +F0 .557(and that result.)3.057 F .558(Note that a ne)5.558 F -.05(ga) +-.15 G(ti).05 E .858 -.15(ve o)-.25 H -.25(ff).15 G .558(set must be).25 +F(separated from the colon by at least one space to a)144 436.8 Q -.2 +(vo)-.2 G(id being confused with the).2 E F1(:-)2.5 E F0 -.15(ex)2.5 G +(pansion.).15 E(If)144 460.8 Q F2(par)2.959 E(ameter)-.15 E F0(is)2.959 +E F1(@)2.959 E F0 2.959(,t)C .459(he result is)-2.959 F F2(length)2.959 +E F0 .459(positional parameters be)2.959 F .458(ginning at)-.15 F F2(of) +2.958 E(fset)-.18 E F0 5.458(.A)C(ne)-2.5 E -.05(ga)-.15 G(ti).05 E -.15 +(ve)-.25 G F2(of)3.108 E(fset)-.18 E F0 .095(is tak)144 472.8 R .095 (en relati)-.1 F .396 -.15(ve t)-.25 H 2.596(oo).15 G .096 (ne greater than the greatest positional parameter)-2.596 F 2.596(,s)-.4 G 2.596(oa)-2.596 G 2.596(no)-2.596 G -.25(ff)-2.596 G .096(set of -1 e) -.25 F -.25(va)-.25 G .095(luates to).25 F 1.321 -(the last positional parameter)144 420 R 6.322(.I)-.55 G 3.822(ti)-6.322 -G 3.822(sa)-3.822 G 3.822(ne)-3.822 G 1.322(xpansion error if)-3.972 F -F1(length)3.822 E F0 -.25(eva)3.822 G 1.322 -(luates to a number less than).25 F(zero.)144 432 Q(If)144 456 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 -468 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 480 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 492 Q(Substring e)144 516 Q -(xpansion applied to an associati)-.15 E .3 -.15(ve a)-.25 H -(rray produces unde\214ned results.).15 E 1.93(Substring inde)144 540 R -1.931(xing is zero-based unless the positional parameters are used, in \ -which case the)-.15 F(inde)144 552 Q .307(xing starts at 1 by def)-.15 F -2.807(ault. If)-.1 F F1(of)2.807 E(fset)-.18 E F0 .307 -(is 0, and the positional parameters are used,)2.807 F F2($0)2.806 E F0 -.306(is pre\214x)2.806 F(ed)-.15 E(to the list.)144 564 Q(${)108 580.8 Q -F2(!)A F1(pr)A(e\214x)-.37 E F2(*)A F0(})A(${)108 592.8 Q F2(!)A F1(pr)A -(e\214x)-.37 E F2(@)A F0(})A F2 .084(Names matching pr)144 604.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 616.8 R F3(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 628.8 Q(ariable name e)-.25 E -(xpands to a separate w)-.15 E(ord.)-.1 E(${)108 645.6 Q F2(!)A F1(name) -A F0([)A F1(@)A F0(]})A(${)108 657.6 Q F2(!)A F1(name)A F0([)A F1(*)A F0 -(]})A F2 2.035(List of array k)144 669.6 R(eys)-.1 E F0 7.036(.I)C(f) --7.036 E F1(name)4.536 E F0 2.036(is an array v)4.536 F 2.036 -(ariable, e)-.25 F 2.036(xpands to the list of array indices \(k)-.15 F --.15(ey)-.1 G(s\)).15 E .596(assigned in)144 681.6 R F1(name)3.096 E F0 -5.596(.I)C(f)-5.596 E F1(name)3.096 E F0 .595(is not an array)3.096 F -3.095(,e)-.65 G .595(xpands to 0 if)-3.245 F F1(name)3.095 E F0 .595 -(is set and null otherwise.)3.095 F(When)5.595 E F1(@)144 693.6 Q F0 -(is used and the e)2.5 E(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 -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(22)192.895 E 0 Cg EP +.25 F -.25(va)-.25 G .096(luates to).25 F 1.322 +(the last positional parameter)144 484.8 R 6.322(.I)-.55 G 3.822(ti) +-6.322 G 3.822(sa)-3.822 G 3.822(ne)-3.822 G 1.322(xpansion error if) +-3.972 F F2(length)3.822 E F0 -.25(eva)3.822 G 1.322 +(luates to a number less than).25 F(zero.)144 496.8 Q(If)144 520.8 Q F2 +(par)3.013 E(ameter)-.15 E F0 .514(is an inde)3.013 F -.15(xe)-.15 G +3.014(da).15 G .514(rray name subscripted by @ or *, the result is the) +-3.014 F F2(length)3.014 E F0 .514(members of)3.014 F 1.082 +(the array be)144 532.8 R 1.082(ginning with ${)-.15 F F2(par)A(ameter) +-.15 E F0([)A F2(of)A(fset)-.18 E F0 3.582(]}. A)B(ne)3.582 E -.05(ga) +-.15 G(ti).05 E -.15(ve)-.25 G F2(of)3.732 E(fset)-.18 E F0 1.081 +(is tak)3.581 F 1.081(en relati)-.1 F 1.381 -.15(ve t)-.25 H 3.581(oo) +.15 G 1.081(ne greater)-3.581 F 1.079(than the maximum inde)144 544.8 R +3.579(xo)-.15 G 3.579(ft)-3.579 G 1.079(he speci\214ed array)-3.579 F +6.079(.I)-.65 G 3.579(ti)-6.079 G 3.579(sa)-3.579 G 3.58(ne)-3.579 G +1.08(xpansion error if)-3.73 F F2(length)3.58 E F0 -.25(eva)3.58 G 1.08 +(luates to a).25 F(number less than zero.)144 556.8 Q(Substring e)144 +580.8 Q(xpansion applied to an associati)-.15 E .3 -.15(ve a)-.25 H +(rray produces unde\214ned results.).15 E 1.931(Substring inde)144 604.8 +R 1.931(xing is zero-based unless the positional parameters are used, i\ +n which case the)-.15 F(inde)144 616.8 Q .306(xing starts at 1 by def) +-.15 F 2.806(ault. If)-.1 F F2(of)2.807 E(fset)-.18 E F0 .307 +(is 0, and the positional parameters are used,)2.807 F F1($0)2.807 E F0 +.307(is pre\214x)2.807 F(ed)-.15 E(to the list.)144 628.8 Q(${)108 645.6 +Q F1(!)A F2(pr)A(e\214x)-.37 E F1(*)A F0(})A(${)108 657.6 Q F1(!)A F2 +(pr)A(e\214x)-.37 E F1(@)A F0(})A F1 .085(Names matching pr)144 669.6 R +(e\214x)-.18 E F0 5.085(.E)C .084(xpands to the names of v)-5.085 F .084 +(ariables whose names be)-.25 F .084(gin with)-.15 F F2(pr)2.584 E +(e\214x)-.37 E F0 2.584(,s)C(epa-)-2.584 E .257 +(rated by the \214rst character of the)144 681.6 R F3(IFS)2.757 E F0 +.257(special v)2.507 F 2.757(ariable. When)-.25 F F2(@)2.758 E F0 .258 +(is used and the e)2.758 F .258(xpansion appears)-.15 F +(within double quotes, each v)144 693.6 Q(ariable name e)-.25 E +(xpands to a separate w)-.15 E(ord.)-.1 E(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(22)185.955 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(${)108 84 Q/F1 10 -/Times-Bold@0 SF(#)A/F2 10/Times-Italic@0 SF(par)A(ameter)-.15 E F0(})A -F1 -.1(Pa)144 96 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 F2(par) -2.971 E(ameter)-.15 E F0 .471(is substituted.)2.971 F(If)5.471 E F2(par) -4.221 E(ame-)-.15 E(ter)144 108 Q F0(is)4.439 E F1(*)3.709 E F0(or)3.709 -E F1(@)3.709 E F0 3.708(,t)C 1.208(he v)-3.708 F 1.208 +/Times-Bold@0 SF(!)A/F2 10/Times-Italic@0 SF(name)A F0([)A F2(@)A F0(]}) +A(${)108 96 Q F1(!)A F2(name)A F0([)A F2(*)A F0(]})A F1 2.036 +(List of array k)144 108 R(eys)-.1 E F0 7.036(.I)C(f)-7.036 E F2(name) +4.536 E F0 2.036(is an array v)4.536 F 2.036(ariable, e)-.25 F 2.036 +(xpands to the list of array indices \(k)-.15 F -.15(ey)-.1 G(s\)).15 E +.595(assigned in)144 120 R F2(name)3.095 E F0 5.595(.I)C(f)-5.595 E F2 +(name)3.095 E F0 .595(is not an array)3.095 F 3.095(,e)-.65 G .595 +(xpands to 0 if)-3.245 F F2(name)3.095 E F0 .596 +(is set and null otherwise.)3.095 F(When)5.596 E F2(@)144 132 Q F0 +(is used and the e)2.5 E(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 +148.8 Q F1(#)A F2(par)A(ameter)-.15 E F0(})A F1 -.1(Pa)144 160.8 S .471 +(rameter length).1 F F0 5.471(.T)C .471 +(he length in characters of the v)-5.471 F .471(alue of)-.25 F F2(par) +2.971 E(ameter)-.15 E F0 .47(is substituted.)2.97 F(If)5.47 E F2(par) +4.22 E(ame-)-.15 E(ter)144 172.8 Q F0(is)4.438 E F1(*)3.708 E F0(or) +3.708 E F1(@)3.708 E F0 3.708(,t)C 1.208(he v)-3.708 F 1.208 (alue substituted is the number of positional parameters.)-.25 F(If) -6.208 E F2(par)4.958 E(ameter)-.15 E F0 1.208(is an)4.438 F .348 -(array name subscripted by)144 120 R F1(*)2.849 E F0(or)2.849 E F1(@) +6.209 E F2(par)4.959 E(ameter)-.15 E F0 1.209(is an)4.439 F .349 +(array name subscripted by)144 184.8 R F1(*)2.849 E F0(or)2.849 E F1(@) 2.849 E F0 2.849(,t)C .349(he v)-2.849 F .349 -(alue substituted is the number of elements in the array)-.25 F 5.349 -(.I)-.65 G(f)-5.349 E F2(par)145.25 132 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 144 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 F2(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 156 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 172.8 Q F2(par)A(ameter)-.15 -E F1(#)A F2(wor)A(d)-.37 E F0(})A(${)108 184.8 Q F2(par)A(ameter)-.15 E -F1(##)A F2(wor)A(d)-.37 E F0(})A F1(Remo)144 196.8 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 F2(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 .151(name e)144 -208.8 R 2.651(xpansion. If)-.15 F .152(the pattern matches the be)2.652 -F .152(ginning of the v)-.15 F .152(alue of)-.25 F F2(par)2.652 E -(ameter)-.15 E F0 2.652(,t).73 G .152(hen the result of)-2.652 F 1.4 -(the e)144 220.8 R 1.4(xpansion is the e)-.15 F 1.4(xpanded v)-.15 F 1.4 -(alue of)-.25 F F2(par)5.15 E(ameter)-.15 E F0 1.4 -(with the shortest matching pattern \(the `)4.63 F(`)-.74 E F1(#)A F0 --.74('')C .281(case\) or the longest matching pattern \(the `)144 232.8 -R(`)-.74 E F1(##)A F0 1.761 -.74('' c)D .281(ase\) deleted.).74 F(If) -5.281 E F2(par)4.031 E(ameter)-.15 E F0(is)3.511 E F1(@)2.781 E F0(or) -2.781 E F1(*)2.782 E F0 2.782(,t)C .282(he pattern)-2.782 F(remo)144 -244.8 Q -.25(va)-.15 G 3.274(lo).25 G .774 +(alue substituted is the number of elements in the array)-.25 F 5.348 +(.I)-.65 G(f)-5.348 E F2(par)145.25 196.8 Q(ameter)-.15 E F0 .455 +(is an inde)3.685 F -.15(xe)-.15 G 2.955(da).15 G .456 +(rray name subscripted by a ne)-2.955 F -.05(ga)-.15 G(ti).05 E .756 +-.15(ve n)-.25 H(umber).15 E 2.956(,t)-.4 G .456 +(hat number is interpreted)-2.956 F .973(as relati)144 208.8 R 1.273 +-.15(ve t)-.25 H 3.473(oo).15 G .973(ne greater than the maximum inde) +-3.473 F 3.473(xo)-.15 G(f)-3.473 E F2(par)3.473 E(ameter)-.15 E F0 +3.472(,s)C 3.472(on)-3.472 G -2.25 -.15(eg a)-3.472 H(ti).15 E 1.272 +-.15(ve i)-.25 H .972(ndices count back).15 F(from the end of the array) +144 220.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(${)108 237.6 Q F2 +(par)A(ameter)-.15 E F1(#)A F2(wor)A(d)-.37 E F0(})A(${)108 249.6 Q F2 +(par)A(ameter)-.15 E F1(##)A F2(wor)A(d)-.37 E F0(})A F1(Remo)144 261.6 +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 F2(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 +.152(name e)144 273.6 R 2.652(xpansion. If)-.15 F .152 +(the pattern matches the be)2.652 F .152(ginning of the v)-.15 F .152 +(alue of)-.25 F F2(par)2.652 E(ameter)-.15 E F0 2.652(,t).73 G .151 +(hen the result of)-2.652 F 1.4(the e)144 285.6 R 1.4(xpansion is the e) +-.15 F 1.4(xpanded v)-.15 F 1.4(alue of)-.25 F F2(par)5.15 E(ameter)-.15 +E F0 1.4(with the shortest matching pattern \(the `)4.63 F(`)-.74 E F1 +(#)A F0 -.74('')C .281(case\) or the longest matching pattern \(the `) +144 297.6 R(`)-.74 E F1(##)A F0 1.761 -.74('' c)D .281(ase\) deleted.) +.74 F(If)5.281 E F2(par)4.031 E(ameter)-.15 E F0(is)3.511 E F1(@)2.781 E +F0(or)2.781 E F1(*)2.781 E F0 2.781(,t)C .281(he pattern)-2.781 F(remo) +144 309.6 Q -.25(va)-.15 G 3.274(lo).25 G .774 (peration is applied to each positional parameter in turn, and the e) --3.274 F .774(xpansion is the resul-)-.15 F .401(tant list.)144 256.8 R -(If)5.401 E F2(par)4.151 E(ameter)-.15 E F0 .401(is an array v)3.631 F +-3.274 F .774(xpansion is the resul-)-.15 F .402(tant list.)144 321.6 R +(If)5.402 E F2(par)4.152 E(ameter)-.15 E F0 .401(is an array v)3.632 F .401(ariable subscripted with)-.25 F F1(@)2.901 E F0(or)2.901 E F1(*) -2.901 E F0 2.902(,t)C .402(he pattern remo)-2.902 F -.25(va)-.15 G 2.902 -(lo).25 G(peration)-2.902 E -(is applied to each member of the array in turn, and the e)144 268.8 Q -(xpansion is the resultant list.)-.15 E(${)108 285.6 Q F2(par)A(ameter) --.15 E F1(%)A F2(wor)A(d)-.37 E F0(})A(${)108 297.6 Q F2(par)A(ameter) --.15 E F1(%%)A F2(wor)A(d)-.37 E F0(})A F1(Remo)144 309.6 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 F2(wor)2.647 E(d)-.37 E F0 .147(is e)2.647 F .146 +2.901 E F0 2.901(,t)C .401(he pattern remo)-2.901 F -.25(va)-.15 G 2.901 +(lo).25 G(peration)-2.901 E +(is applied to each member of the array in turn, and the e)144 333.6 Q +(xpansion is the resultant list.)-.15 E(${)108 350.4 Q F2(par)A(ameter) +-.15 E F1(%)A F2(wor)A(d)-.37 E F0(})A(${)108 362.4 Q F2(par)A(ameter) +-.15 E F1(%%)A F2(wor)A(d)-.37 E F0(})A F1(Remo)144 374.4 Q .346 -.1 +(ve m)-.1 H .146(atching suf\214x patter).1 F(n)-.15 E F0 5.146(.T)C(he) +-5.146 E F2(wor)2.646 E(d)-.37 E F0 .147(is e)2.647 F .147 (xpanded to produce a pattern just as in pathname)-.15 F -.15(ex)144 -321.6 S 3.088(pansion. If).15 F .588 +386.4 S 3.088(pansion. If).15 F .588 (the pattern matches a trailing portion of the e)3.088 F .588(xpanded v) -.15 F .588(alue of)-.25 F F2(par)3.088 E(ameter)-.15 E F0 3.088(,t).73 -G .588(hen the)-3.088 F .226(result of the e)144 333.6 R .226 +G .588(hen the)-3.088 F .226(result of the e)144 398.4 R .226 (xpansion is the e)-.15 F .226(xpanded v)-.15 F .226(alue of)-.25 F F2 (par)3.976 E(ameter)-.15 E F0 .226 -(with the shortest matching pattern \(the)3.456 F -.74(``)144 345.6 S F1 -(%).74 E F0 1.521 -.74('' c)D .042 +(with the shortest matching pattern \(the)3.456 F -.74(``)144 410.4 S F1 +(%).74 E F0 1.522 -.74('' c)D .042 (ase\) or the longest matching pattern \(the `).74 F(`)-.74 E F1(%%)A F0 1.522 -.74('' c)D .042(ase\) deleted.).74 F(If)5.042 E F2(par)3.792 E -(ameter)-.15 E F0(is)3.272 E F1(@)2.542 E F0(or)2.542 E F1(*)2.542 E F0 -2.542(,t)C(he)-2.542 E .441(pattern remo)144 357.6 R -.25(va)-.15 G -2.941(lo).25 G .441 +(ameter)-.15 E F0(is)3.272 E F1(@)2.541 E F0(or)2.541 E F1(*)2.541 E F0 +2.541(,t)C(he)-2.541 E .44(pattern remo)144 422.4 R -.25(va)-.15 G 2.94 +(lo).25 G .441 (peration is applied to each positional parameter in turn, and the e) --2.941 F .44(xpansion is the)-.15 F .24(resultant list.)144 369.6 R(If) -5.24 E F2(par)3.99 E(ameter)-.15 E F0 .24(is an array v)3.47 F .241 -(ariable subscripted with)-.25 F F1(@)2.741 E F0(or)2.741 E F1(*)2.741 E -F0 2.741(,t)C .241(he pattern remo)-2.741 F -.25(va)-.15 G 2.741(lo).25 -G(per)-2.741 E(-)-.2 E +-2.94 F .441(xpansion is the)-.15 F .241(resultant list.)144 434.4 R(If) +5.241 E F2(par)3.991 E(ameter)-.15 E F0 .241(is an array v)3.471 F .241 +(ariable subscripted with)-.25 F F1(@)2.741 E F0(or)2.74 E F1(*)2.74 E +F0 2.74(,t)C .24(he pattern remo)-2.74 F -.25(va)-.15 G 2.74(lo).25 G +(per)-2.74 E(-)-.2 E (ation is applied to each member of the array in turn, and the e)144 -381.6 Q(xpansion is the resultant list.)-.15 E(${)108 398.4 Q F2(par)A +446.4 Q(xpansion is the resultant list.)-.15 E(${)108 463.2 Q F2(par)A (ameter)-.15 E F1(/)A F2(pattern)A F1(/)A F2(string)A F0(})A F1 -.1(Pa) -144 410.4 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.106 +144 475.2 S(tter).1 E 3.606(ns)-.15 G(ubstitution)-3.606 E F0 6.106(.T)C +(he)-6.106 E F2(pattern)3.606 E F0 1.106(is e)3.606 F 1.107 (xpanded to produce a pattern just as in pathname e)-.15 F(xpan-)-.15 E -(sion.)144 422.4 Q F2 -.8(Pa)6.033 G -.15(ra).8 G(meter).15 E F0 1.033 -(is e)3.533 F 1.033(xpanded and the longest match of)-.15 F F2(pattern) -3.533 E F0(ag)3.533 E 1.034(ainst its v)-.05 F 1.034 -(alue is replaced with)-.25 F F2(string)144 434.4 Q F0 5.161(.I)C(f) --5.161 E F2(pattern)2.661 E F0(be)2.661 E .161(gins with)-.15 F F1(/) -2.661 E F0 2.661(,a)C .161(ll matches of)-2.661 F F2(pattern)2.661 E F0 -.16(are replaced with)2.661 F F2(string)2.66 E F0 5.16(.N)C .16 -(ormally only the)-5.16 F .806(\214rst match is replaced.)144 446.4 R -(If)5.806 E F2(pattern)3.306 E F0(be)3.306 E .806(gins with)-.15 F F1(#) -3.306 E F0 3.306(,i)C 3.307(tm)-3.306 G .807(ust match at the be)-3.307 -F .807(ginning of the e)-.15 F(xpanded)-.15 E -.25(va)144 458.4 S .621 -(lue of).25 F F2(par)3.121 E(ameter)-.15 E F0 5.621(.I)C(f)-5.621 E F2 -(pattern)3.121 E F0(be)3.121 E .621(gins with)-.15 F F1(%)3.121 E F0 -3.121(,i)C 3.121(tm)-3.121 G .62(ust match at the end of the e)-3.121 F -.62(xpanded v)-.15 F .62(alue of)-.25 F F2(par)144 470.4 Q(ameter)-.15 E -F0 6.253(.I)C(f)-6.253 E F2(string)3.753 E F0 1.253(is null, matches of) +(sion.)144 487.2 Q F2 -.8(Pa)6.034 G -.15(ra).8 G(meter).15 E F0 1.034 +(is e)3.534 F 1.033(xpanded and the longest match of)-.15 F F2(pattern) +3.533 E F0(ag)3.533 E 1.033(ainst its v)-.05 F 1.033 +(alue is replaced with)-.25 F F2(string)144 499.2 Q F0 5.16(.I)C(f)-5.16 +E F2(pattern)2.66 E F0(be)2.66 E .16(gins with)-.15 F F1(/)2.66 E F0 +2.66(,a)C .161(ll matches of)-2.66 F F2(pattern)2.661 E F0 .161 +(are replaced with)2.661 F F2(string)2.661 E F0 5.161(.N)C .161 +(ormally only the)-5.161 F .807(\214rst match is replaced.)144 511.2 R +(If)5.807 E F2(pattern)3.307 E F0(be)3.307 E .807(gins with)-.15 F F1(#) +3.307 E F0 3.306(,i)C 3.306(tm)-3.306 G .806(ust match at the be)-3.306 +F .806(ginning of the e)-.15 F(xpanded)-.15 E -.25(va)144 523.2 S .62 +(lue of).25 F F2(par)3.12 E(ameter)-.15 E F0 5.62(.I)C(f)-5.62 E F2 +(pattern)3.12 E F0(be)3.12 E .62(gins with)-.15 F F1(%)3.12 E F0 3.12 +(,i)C 3.121(tm)-3.12 G .621(ust match at the end of the e)-3.121 F .621 +(xpanded v)-.15 F .621(alue of)-.25 F F2(par)144 535.2 Q(ameter)-.15 E +F0 6.254(.I)C(f)-6.254 E F2(string)3.754 E F0 1.253(is null, matches of) 3.753 F F2(pattern)3.753 E F0 1.253(are deleted and the)3.753 F F1(/) -3.753 E F0(follo)3.753 E(wing)-.25 E F2(pattern)3.753 E F0 1.254(may be) -3.754 F 2.732(omitted. If)144 482.4 R(the)2.732 E F1(nocasematch)2.732 E -F0 .231(shell option is enabled, the match is performed without re)2.732 -F -.05(ga)-.15 G .231(rd to the).05 F .187 -(case of alphabetic characters.)144 494.4 R(If)5.187 E F2(par)3.937 E -(ameter)-.15 E F0(is)3.417 E F1(@)2.687 E F0(or)2.687 E F1(*)2.688 E F0 -2.688(,t)C .188(he substitution operation is applied to each)-2.688 F -.446(positional parameter in turn, and the e)144 506.4 R .446 -(xpansion is the resultant list.)-.15 F(If)5.445 E F2(par)4.195 E -(ameter)-.15 E F0 .445(is an array v)3.675 F(ari-)-.25 E .462 -(able subscripted with)144 518.4 R F1(@)2.962 E F0(or)2.962 E F1(*)2.962 -E F0 2.962(,t)C .463 +3.753 E F0(follo)3.753 E(wing)-.25 E F2(pattern)3.753 E F0 1.253(may be) +3.753 F 2.731(omitted. If)144 547.2 R(the)2.731 E F1(nocasematch)2.731 E +F0 .231(shell option is enabled, the match is performed without re)2.731 +F -.05(ga)-.15 G .232(rd to the).05 F .188 +(case of alphabetic characters.)144 559.2 R(If)5.188 E F2(par)3.938 E +(ameter)-.15 E F0(is)3.418 E F1(@)2.688 E F0(or)2.688 E F1(*)2.687 E F0 +2.687(,t)C .187(he substitution operation is applied to each)-2.687 F +.445(positional parameter in turn, and the e)144 571.2 R .446 +(xpansion is the resultant list.)-.15 F(If)5.446 E F2(par)4.196 E +(ameter)-.15 E F0 .446(is an array v)3.676 F(ari-)-.25 E .463 +(able subscripted with)144 583.2 R F1(@)2.963 E F0(or)2.963 E F1(*)2.963 +E F0 2.963(,t)C .462 (he substitution operation is applied to each member of the array in) --2.962 F(turn, and the e)144 530.4 Q(xpansion is the resultant list.) --.15 E(${)108 547.2 Q F2(par)A(ameter)-.15 E F1(^)A F2(pattern)A F0(})A -(${)108 559.2 Q F2(par)A(ameter)-.15 E F1(^^)A F2(pattern)A F0(})A(${) -108 571.2 Q F2(par)A(ameter)-.15 E F1(,)A F2(pattern)A F0(})A(${)108 -583.2 Q F2(par)A(ameter)-.15 E F1(,,)A F2(pattern)A F0(})A F1 .438 -(Case modi\214cation)144 595.2 R F0 5.438(.T)C .438(his e)-5.438 F .437 +-2.963 F(turn, and the e)144 595.2 Q(xpansion is the resultant list.) +-.15 E(${)108 612 Q F2(par)A(ameter)-.15 E F1(^)A F2(pattern)A F0(})A +(${)108 624 Q F2(par)A(ameter)-.15 E F1(^^)A F2(pattern)A F0(})A(${)108 +636 Q F2(par)A(ameter)-.15 E F1(,)A F2(pattern)A F0(})A(${)108 648 Q F2 +(par)A(ameter)-.15 E F1(,,)A F2(pattern)A F0(})A F1 .437 +(Case modi\214cation)144 660 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.937 E(ameter)-.15 E F0 5.437(.T)C(he)-5.437 E F2(pattern)144 607.2 Q -F0 1.406(is e)3.906 F 1.407 -(xpanded to produce a pattern just as in pathname e)-.15 F 3.907 -(xpansion. Each)-.15 F 1.407(character in the)3.907 F -.15(ex)144 619.2 -S 1.232(panded v).15 F 1.232(alue of)-.25 F F2(par)3.732 E(ameter)-.15 E +2.938 E(ameter)-.15 E F0 5.438(.T)C(he)-5.438 E F2(pattern)144 672 Q F0 +1.407(is e)3.907 F 1.407 +(xpanded to produce a pattern just as in pathname e)-.15 F 3.906 +(xpansion. Each)-.15 F 1.406(character in the)3.906 F -.15(ex)144 684 S +1.231(panded v).15 F 1.231(alue of)-.25 F F2(par)3.732 E(ameter)-.15 E F0 1.232(is tested ag)3.732 F(ainst)-.05 E F2(pattern)3.732 E F0 3.732 (,a)C 1.232(nd, if it matches the pattern, its case is)-3.732 F(con)144 -631.2 Q -.15(ve)-.4 G 2.924(rted. The).15 F .424 +696 Q -.15(ve)-.4 G 2.924(rted. The).15 F .424 (pattern should not attempt to match more than one character)2.924 F 5.424(.T)-.55 G(he)-5.424 E F1(^)2.924 E F0 .424(operator con-)2.924 F --.15(ve)144 643.2 S .61(rts lo).15 F .61(wercase letters matching)-.25 F +-.15(ve)144 708 S .61(rts lo).15 F .61(wercase letters matching)-.25 F F2(pattern)3.11 E F0 .61(to uppercase; the)3.11 F F1(,)3.11 E F0 .61 (operator con)3.11 F -.15(ve)-.4 G .61(rts matching uppercase).15 F -1.547(letters to lo)144 655.2 R 4.047(wercase. The)-.25 F F1(^^)4.047 E -F0(and)4.047 E F1(,,)4.047 E F0 -.15(ex)4.047 G 1.547(pansions con).15 F +1.548(letters to lo)144 720 R 4.047(wercase. The)-.25 F F1(^^)4.047 E F0 +(and)4.047 E F1(,,)4.047 E F0 -.15(ex)4.047 G 1.547(pansions con).15 F -.15(ve)-.4 G 1.547(rt each matched character in the e).15 F(xpanded) --.15 E -.25(va)144 667.2 S .634(lue; the).25 F F1(^)3.134 E F0(and)3.134 -E F1(,)3.134 E F0 -.15(ex)3.134 G .634(pansions match and con).15 F -.15 -(ve)-.4 G .633(rt only the \214rst character in the e).15 F .633 -(xpanded v)-.15 F 3.133(alue. If)-.25 F F2(pattern)144 679.2 Q F0 .78 -(is omitted, it is treated lik)3.28 F 3.28(ea)-.1 G F1(?)A F0 3.28(,w)C -.78(hich matches e)-3.28 F -.15(ve)-.25 G .78(ry character).15 F 5.78 -(.I)-.55 G(f)-5.78 E F2(par)4.53 E(ameter)-.15 E F0(is)4.01 E F1(@)3.28 -E F0(or)3.28 E F1(*)3.28 E F0(,)A .582(the case modi\214cation operatio\ -n is applied to each positional parameter in turn, and the e)144 691.2 R -(xpansion)-.15 E .468(is the resultant list.)144 703.2 R(If)5.468 E F2 -(par)4.218 E(ameter)-.15 E F0 .468(is an array v)3.698 F .468 -(ariable subscripted with)-.25 F F1(@)2.968 E F0(or)2.968 E F1(*)2.969 E -F0 2.969(,t)C .469(he case modi\214ca-)-2.969 F(tion operation is appli\ -ed to each member of the array in turn, and the e)144 715.2 Q -(xpansion is the resultant list.)-.15 E(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(23)192.895 E 0 Cg EP +-.15 E(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(23)185.955 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 -(oper)A(ator)-.15 E F0(})A F2 -.1(Pa)144 96 S .86(rameter transf).1 F -(ormation)-.25 E F0 5.86(.T)C .86(he e)-5.86 F .86 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.25(va)144 84 S +.633(lue; the).25 F/F1 10/Times-Bold@0 SF(^)3.133 E F0(and)3.133 E F1(,) +3.133 E F0 -.15(ex)3.133 G .633(pansions match and con).15 F -.15(ve)-.4 +G .634(rt only the \214rst character in the e).15 F .634(xpanded v)-.15 +F 3.134(alue. If)-.25 F/F2 10/Times-Italic@0 SF(pattern)144 96 Q F0 .78 +(is omitted, it is treated lik)3.28 F 3.28(ea)-.1 G F1(?)A F0 3.28(,w)C +.78(hich matches e)-3.28 F -.15(ve)-.25 G .78(ry character).15 F 5.78 +(.I)-.55 G(f)-5.78 E F2(par)4.53 E(ameter)-.15 E F0(is)4.01 E F1(@)3.28 +E F0(or)3.28 E F1(*)3.28 E F0(,)A .582(the case modi\214cation operatio\ +n is applied to each positional parameter in turn, and the e)144 108 R +(xpansion)-.15 E .469(is the resultant list.)144 120 R(If)5.469 E F2 +(par)4.218 E(ameter)-.15 E F0 .468(is an array v)3.698 F .468 +(ariable subscripted with)-.25 F F1(@)2.968 E F0(or)2.968 E F1(*)2.968 E +F0 2.968(,t)C .468(he case modi\214ca-)-2.968 F(tion operation is appli\ +ed to each member of the array in turn, and the e)144 132 Q +(xpansion is the resultant list.)-.15 E(${)108 148.8 Q F2(par)A(ameter) +-.15 E F1(@)A F2(oper)A(ator)-.15 E F0(})A F1 -.1(Pa)144 160.8 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 -F1(par)3.36 E(ameter)-.15 E F0 .153(or information about)144 108 R F1 -(par)2.653 E(ameter)-.15 E F0 .153(itself, depending on the v)2.653 F -.153(alue of)-.25 F F1(oper)2.653 E(ator)-.15 E F0 5.154(.E)C(ach)-5.154 -E F1(oper)2.654 E(ator)-.15 E F0 .154(is a sin-)2.654 F(gle letter:)144 -120 Q F2(Q)144 144 Q F0 1.065(The e)180 144 R 1.065 -(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.064(quoted in a format that can be)3.565 F -(reused as input.)180 156 Q F2(E)144 168 Q F0 .44(The e)180 168 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 .441(with backslash escape sequences)2.941 F --.15(ex)180 180 S(panded as with the).15 E F2($'...)2.5 E(')-.55 E F0 -(quoting mechanism.)2.5 E F2(P)144 192 Q F0 1.073(The e)180 192 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 F1(par)3.573 E(ameter)-.15 E -F0 1.073(as if it)3.573 F(were a prompt string \(see)180 204 Q F2(PR)2.5 -E(OMPTING)-.3 E F0(belo)2.5 E(w\).)-.25 E F2(A)144 216 Q F0 1.137(The e) -180 216 R 1.138 +F2(par)3.36 E(ameter)-.15 E F0 .154(or information about)144 172.8 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 +184.8 Q F1(Q)144 208.8 Q F0 1.064(The e)180 208.8 R 1.064 +(xpansion is a string that is the v)-.15 F 1.065(alue of)-.25 F F2(par) +3.565 E(ameter)-.15 E F0 1.065(quoted in a format that can be)3.565 F +(reused as input.)180 220.8 Q F1(E)144 232.8 Q F0 .441(The e)180 232.8 R +.441(xpansion is a string that is the v)-.15 F .441(alue of)-.25 F F2 +(par)2.941 E(ameter)-.15 E F0 .44(with backslash escape sequences)2.94 F +-.15(ex)180 244.8 S(panded as with the).15 E F1($'...)2.5 E(')-.55 E F0 +(quoting mechanism.)2.5 E F1(P)144 256.8 Q F0 1.072(The e)180 256.8 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 268.8 Q F1(PR) +2.5 E(OMPTING)-.3 E F0(belo)2.5 E(w\).)-.25 E F1(A)144 280.8 Q F0 1.138 +(The e)180 280.8 R 1.138 (xpansion is a string in the form of an assignment statement or)-.15 F -F2(declar)3.638 E(e)-.18 E F0(command)3.638 E(that, if e)180 228 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 F2(a)144 240 Q F0 -(The e)180 240 Q(xpansion is a string consisting of \215ag v)-.15 E -(alues representing)-.25 E F1(par)2.5 E(ameter)-.15 E F0 1.1 -.55('s a)D -(ttrib).55 E(utes.)-.2 E(If)144 256.8 Q F1(par)5.331 E(ameter)-.15 E F0 -(is)4.811 E F2(@)4.081 E F0(or)4.081 E F2(*)4.081 E F0 4.081(,t)C 1.58 +F1(declar)3.637 E(e)-.18 E F0(command)3.637 E(that, if e)180 292.8 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 304.8 Q F0 +(The e)180 304.8 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 321.6 Q F2(par)5.33 E(ameter)-.15 E F0 +(is)4.81 E F1(@)4.08 E F0(or)4.08 E F1(*)4.08 E F0 4.08(,t)C 1.581 (he operation is applied to each positional parameter in turn, and the) --4.081 F -.15(ex)144 268.8 S .346(pansion is the resultant list.).15 F -(If)5.346 E F1(par)4.096 E(ameter)-.15 E F0 .346(is an array v)3.576 F -.347(ariable subscripted with)-.25 F F2(@)2.847 E F0(or)2.847 E F2(*) -2.847 E F0 2.847(,t)C .347(he case)-2.847 F 1.204(modi\214cation operat\ -ion is applied to each member of the array in turn, and the e)144 280.8 -R 1.203(xpansion is the)-.15 F(resultant list.)144 292.8 Q 1.849 -(The result of the e)144 316.8 R 1.849(xpansion is subject to w)-.15 F +-4.08 F -.15(ex)144 333.6 S .13(pansion is the resultant list.).15 F(If) +5.13 E F2(par)3.88 E(ameter)-.15 E F0 .129(is an array v)3.36 F .129 +(ariable subscripted with)-.25 F F1(@)2.629 E F0(or)2.629 E F1(*)2.629 E +F0 2.629(,t)C .129(he oper)-2.629 F(-)-.2 E +(ation is applied to each member of the array in turn, and the e)144 +345.6 Q(xpansion is the resultant list.)-.15 E 1.849 +(The result of the e)144 369.6 R 1.849(xpansion is subject to w)-.15 F 1.849(ord splitting and pathname e)-.1 F 1.85(xpansion as described)-.15 -F(belo)144 328.8 Q -.65(w.)-.25 G F2(Command Substitution)87 345.6 Q F1 -1.698(Command substitution)108 357.6 R F0(allo)4.198 E 1.697 +F(belo)144 381.6 Q -.65(w.)-.25 G F1(Command Substitution)87 398.4 Q F2 +1.698(Command substitution)108 410.4 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 369.6 Q F2($\()144 386.4 Q F1 -(command)A F2(\))1.666 E F0(or)108 398.4 Q F2<92>144 410.4 Q F1(command) -A F2<92>A(Bash)108 427.2 Q F0 .088(performs the e)2.588 F .088 -(xpansion by e)-.15 F -.15(xe)-.15 G(cuting).15 E F1(command)2.588 E F0 +(There are tw)6.697 F(o)-.1 E(forms:)108 422.4 Q F1($\()144 439.2 Q F2 +(command)A F1(\))1.666 E F0(or)108 451.2 Q F1<92>144 463.2 Q F2(command) +A F1<92>A(Bash)108 480 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 439.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 451.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 F2($\(cat)2.692 E F1(\214le) -2.692 E F2(\))A F0(can be replaced by the equi)108 463.2 Q -.25(va)-.25 -G(lent b).25 E(ut f)-.2 E(aster)-.1 E F2($\(<)2.5 E F1(\214le)2.5 E F2 +108 492 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 504 +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 516 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 480 R(xcept)-.15 E -.314(when follo)108 492 R .314(wed by)-.25 F F2($)2.814 E F0(,)A F2<92> -2.814 E F0 2.814(,o)C(r)-2.814 E F2(\\)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 504 R 1.387(using the $\()3.887 F -F1(command).833 E F0 3.887(\)f)1.666 G 1.386 + used, backslash retains its literal meaning e)108 532.8 R(xcept)-.15 E +.314(when follo)108 544.8 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 556.8 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 516 Q(.)-.65 E .894 -(Command substitutions may be nested.)108 532.8 R 2.494 -.8(To n)5.894 H +(mand; none are treated specially)108 568.8 Q(.)-.65 E .894 +(Command substitutions may be nested.)108 585.6 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 544.8 Q .422 -(If the substitution appears within double quotes, w)108 561.6 R .422 +(quotes with backslashes.)108 597.6 Q .422 +(If the substitution appears within double quotes, w)108 614.4 R .422 (ord splitting and pathname e)-.1 F .422(xpansion are not performed)-.15 -F(on the results.)108 573.6 Q F2(Arithmetic Expansion)87 590.4 Q F0 -1.034(Arithmetic e)108 602.4 R 1.034(xpansion allo)-.15 F 1.034 +F(on the results.)108 626.4 Q F1(Arithmetic Expansion)87 643.2 Q F0 +1.034(Arithmetic e)108 655.2 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 614.4 Q(xpansion is:)-.15 E F2($\(\() -144 631.2 Q F1 -.2(ex)C(pr).2 E(ession)-.37 E F2(\)\))A F0(The)108 648 Q -F1 -.2(ex)2.666 G(pr).2 E(ession)-.37 E F0 .165 +(The format for arithmetic e)108 667.2 Q(xpansion is:)-.15 E F1($\(\() +144 684 Q F2 -.2(ex)C(pr).2 E(ession)-.37 E F1(\)\))A F0(The)108 700.8 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 660 R 5.23(.A)-.65 G .23(ll tok)-5.23 F .231 +(treated specially)108 712.8 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 1.06 -(tution, and quote remo)108 672 R -.25(va)-.15 G 3.56(l. The).25 F 1.059 -(result is treated as the arithmetic e)3.56 F 1.059(xpression to be e) --.15 F -.25(va)-.25 G 3.559(luated. Arithmetic).25 F -.15(ex)108 684 S -(pansions may be nested.).15 E 1.378(The e)108 700.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 F1 -.2(ex)108 712.8 S(pr).2 E(ession)-.37 E F0(is in) -2.74 E -.25(va)-.4 G(lid,).25 E F2(bash)2.5 E F0 -(prints a message indicating f)2.5 E(ailure and no substitution occurs.) --.1 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(24)192.895 E 0 Cg -EP +(tution, and quote remo)108 724.8 R -.25(va)-.15 G 3.56(l. The).25 F +1.059(result is treated as the arithmetic e)3.56 F 1.059 +(xpression to be e)-.15 F -.25(va)-.25 G 3.559(luated. Arithmetic).25 F +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(24)185.955 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(Pr)87 84 Q(ocess Substitution)-.18 E/F2 10/Times-Italic@0 SF(Pr)108 -96 Q .405(ocess substitution)-.45 F F0(allo)2.905 E .405(ws a process') --.25 F 2.905(si)-.55 G .405 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.15(ex)108 84 S +(pansions may be nested.).15 E 1.378(The e)108 100.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/F1 9/Times-Bold@0 SF 1.378(ARITHMETIC EV) +3.878 F(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E/F2 9/Times-Roman@0 SF(.) +A F0(If)5.879 E/F3 10/Times-Italic@0 SF -.2(ex)108 112.8 S(pr).2 E +(ession)-.37 E F0(is in)2.74 E -.25(va)-.4 G(lid,).25 E/F4 10 +/Times-Bold@0 SF(bash)2.5 E F0(prints a message indicating f)2.5 E +(ailure and no substitution occurs.)-.1 E F4(Pr)87 129.6 Q +(ocess Substitution)-.18 E F3(Pr)108 141.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 108 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 +(It tak)5.405 F .405(es the form)-.1 F(of)108 153.6 Q F4(<\()3.25 E F3 +(list)A F4(\)).833 E F0(or)3.25 E F4(>\()3.25 E F3(list)A F4(\)).833 E +F0 5.75(.T)C .751(he process)-5.75 F F3(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 120 R .148 +(This \214lename is passed as an ar)108 165.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 132 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 144 Q .309 -(gument should be read to obtain the output of)-.18 F F2(list)2.808 E F0 +(xpansion. If)-.15 F(the)2.647 E F4(>\()2.647 E F3(list)A F4(\)).833 E +F0 .559(form is used, writing to the \214le will pro)108 177.6 R .559 +(vide input for)-.15 F F3(list)3.059 E F0 5.559(.I)C 3.059(ft)-5.559 G +(he)-3.059 E F4(<\()3.06 E F3(list)A F4(\)).833 E F0 .56 +(form is used, the \214le passed as an)3.06 F(ar)108 189.6 Q .309 +(gument should be read to obtain the output of)-.18 F F3(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 156 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 172.8 R -.25(va) +-5.308 F(port named pipes \()108 201.6 Q F3(FIFOs)A F0 2.5(\)o)C 2.5(rt) +-2.5 G(he)-2.5 E F4(/de)2.5 E(v/fd)-.15 E F0 +(method of naming open \214les.)2.5 E .896(When a)108 218.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 184.8 Q(xpansion.)-.15 E F1 --.75(Wo)87 201.6 S(rd Splitting).75 E F0 1.143 -(The shell scans the results of parameter e)108 213.6 R 1.142 +(command substitution, and arithmetic e)108 230.4 Q(xpansion.)-.15 E F4 +-.75(Wo)87 247.2 S(rd Splitting).75 E F0 1.143 +(The shell scans the results of parameter e)108 259.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 225.6 Q -F2(wor)2.5 E 2.5(ds)-.37 G(plitting)-2.5 E F0(.).22 E .063 -(The shell treats each character of)108 242.4 R/F3 9/Times-Bold@0 SF -(IFS)2.563 E F0 .063(as a delimiter)2.313 F 2.563(,a)-.4 G .063 +(xpansion that)-.15 F(did not occur within double quotes for)108 271.2 Q +F3(wor)2.5 E 2.5(ds)-.37 G(plitting)-2.5 E F0(.).22 E .063 +(The shell treats each character of)108 288 R F1(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 254.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 266.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 +108 300 R(If)5.207 E F1(IFS)2.707 E F0 .207(is unset, or its v)2.457 F +.207(alue is e)-.25 F(xactly)-.15 E F4()2.707 E F0 +(,)A .836(the def)108 312 R .836(ault, then sequences of)-.1 F F4 +()3.336 E F0(,)A F4()3.336 E F0 3.336(,a)C(nd)-3.336 E F4 ()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 278.4 R .345 +(ginning and end of the results of)-.15 F .346(the pre)108 324 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 +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 290.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 -302.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 314.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 326.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 -338.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 1.927 -(Explicit null ar)108 355.2 R 1.927(guments \()-.18 F F1 .833("").833 G -F0(or)3.594 E F1 .833<0808>5.26 G F0 4.427(\)a)C 1.927 +-.15 E 1.236(to delimit w)108 336 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 F4(space)108 +348 Q F0(,)A F4(tab)2.507 E F0 2.507(,a)C(nd)-2.507 E F4(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 360 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 372 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 384 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 1.927(Explicit null ar)108 400.8 R 1.927 +(guments \()-.18 F F4 .833("").833 G F0(or)3.594 E F4 .833<0808>5.26 G +F0 4.427(\)a)C 1.927 (re retained and passed to commands as empty strings.)-4.427 F(Unquoted) -6.927 E .485(implicit null ar)108 367.2 R .485 +6.927 E .485(implicit null ar)108 412.8 R .485 (guments, resulting from the e)-.18 F .484 (xpansion of parameters that ha)-.15 F .784 -.15(ve n)-.2 H 2.984(ov).15 G .484(alues, are remo)-3.234 F -.15(ve)-.15 G 2.984(d. If).15 F(a)2.984 -E 1.571(parameter with no v)108 379.2 R 1.571(alue is e)-.25 F 1.571 +E 1.571(parameter with no v)108 424.8 R 1.571(alue is e)-.25 F 1.571 (xpanded within double quotes, a null ar)-.15 F 1.572 (gument results and is retained and)-.18 F .724 -(passed to a command as an empty string.)108 391.2 R .724 +(passed to a command as an empty string.)108 436.8 R .724 (When a quoted null ar)5.724 F .723(gument appears as part of a w)-.18 F -.723(ord whose)-.1 F -.15(ex)108 403.2 S .175 +.723(ord whose)-.1 F -.15(ex)108 448.8 S .175 (pansion is non-null, the null ar).15 F .176(gument is remo)-.18 F -.15 -(ve)-.15 G 2.676(d. That).15 F .176(is, the w)2.676 F(ord)-.1 E/F4 10 -/Courier@0 SF -5.1672.676 F F0(becomes)2.676 E F42.676 +(ve)-.15 G 2.676(d. That).15 F .176(is, the w)2.676 F(ord)-.1 E/F5 10 +/Courier@0 SF -5.1672.676 F F0(becomes)2.676 E F52.676 E F0 .176(after w)2.676 F .176(ord split-)-.1 F(ting and null ar)108 -415.2 Q(gument remo)-.18 E -.25(va)-.15 G(l.).25 E(Note that if no e)108 -432 Q(xpansion occurs, no splitting is performed.)-.15 E F1 -.1(Pa)87 -448.8 S(thname Expansion).1 E F0 .371(After w)108 460.8 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 .677 -(If one of these characters appears, then the w)108 472.8 R .677 -(ord is re)-.1 F -.05(ga)-.15 G .677(rded as a).05 F F2(pattern)3.177 E +460.8 Q(gument remo)-.18 E -.25(va)-.15 G(l.).25 E(Note that if no e)108 +477.6 Q(xpansion occurs, no splitting is performed.)-.15 E F4 -.1(Pa)87 +494.4 S(thname Expansion).1 E F0 .371(After w)108 506.4 R .371 +(ord splitting, unless the)-.1 F F42.871 E F0 .371 +(option has been set,)2.871 F F4(bash)2.871 E F0 .37(scans each w)2.87 F +.37(ord for the characters)-.1 F F4(*)2.87 E F0(,)A F4(?)2.87 E F0 2.87 +(,a)C(nd)-2.87 E F4([)2.87 E F0(.)A .677 +(If one of these characters appears, then the w)108 518.4 R .677 +(ord is re)-.1 F -.05(ga)-.15 G .677(rded as a).05 F F3(pattern)3.177 E F0 3.177(,a).24 G .678(nd replaced with an alphabeti-)-3.177 F .562 -(cally sorted list of \214lenames matching the pattern \(see)108 484.8 R -F3 -.09(Pa)3.062 G(tter).09 E 2.812(nM)-.135 G(atching)-2.812 E F0(belo) +(cally sorted list of \214lenames matching the pattern \(see)108 530.4 R +F1 -.09(Pa)3.062 G(tter).09 E 2.812(nM)-.135 G(atching)-2.812 E F0(belo) 2.812 E 3.062(w\). If)-.25 F .561(no matching \214lenames)3.061 F .008 -(are found, and the shell option)108 496.8 R F1(nullglob)2.508 E F0 .008 +(are found, and the shell option)108 542.4 R F4(nullglob)2.508 E F0 .008 (is not enabled, the w)2.508 F .009(ord is left unchanged.)-.1 F .009 -(If the)5.009 F F1(nullglob)2.509 E F0 .009(option is)2.509 F .443 -(set, and no matches are found, the w)108 508.8 R .443(ord is remo)-.1 F --.15(ve)-.15 G 2.943(d. If).15 F(the)2.942 E F1(failglob)2.942 E F0 .442 +(If the)5.009 F F4(nullglob)2.509 E F0 .009(option is)2.509 F .443 +(set, and no matches are found, the w)108 554.4 R .443(ord is remo)-.1 F +-.15(ve)-.15 G 2.943(d. If).15 F(the)2.942 E F4(failglob)2.942 E F0 .442 (shell option is set, and no matches are)2.942 F 1.38 -(found, an error message is printed and the command is not e)108 520.8 R --.15(xe)-.15 G 3.88(cuted. If).15 F 1.38(the shell option)3.88 F F1 +(found, an error message is printed and the command is not e)108 566.4 R +-.15(xe)-.15 G 3.88(cuted. If).15 F 1.38(the shell option)3.88 F F4 (nocaseglob)3.88 E F0(is)3.88 E .104 -(enabled, the match is performed without re)108 532.8 R -.05(ga)-.15 G +(enabled, the match is performed without re)108 578.4 R -.05(ga)-.15 G .104(rd to the case of alphabetic characters.).05 F .103 -(When a pattern is used)5.103 F .377(for pathname e)108 544.8 R .377 -(xpansion, the character)-.15 F F1 -.63(``)2.878 G -.55(.').63 G(')-.08 +(When a pattern is used)5.103 F .377(for pathname e)108 590.4 R .377 +(xpansion, the character)-.15 F F4 -.63(``)2.878 G -.55(.').63 G(')-.08 E F0 .378(at the start of a name or immediately follo)5.378 F .378 -(wing a slash must be)-.25 F 1.354(matched e)108 556.8 R(xplicitly)-.15 -E 3.854(,u)-.65 G 1.354(nless the shell option)-3.854 F F1(dotglob)3.854 -E F0 1.354(is set.)3.854 F 1.354(The \214lenames)6.354 F F1 -.63(``) -3.854 G -.55(.').63 G(')-.08 E F0(and)6.354 E F1 -.63(``)3.853 G(..).63 +(wing a slash must be)-.25 F 1.354(matched e)108 602.4 R(xplicitly)-.15 +E 3.854(,u)-.65 G 1.354(nless the shell option)-3.854 F F4(dotglob)3.854 +E F0 1.354(is set.)3.854 F 1.354(The \214lenames)6.354 F F4 -.63(``) +3.854 G -.55(.').63 G(')-.08 E F0(and)6.354 E F4 -.63(``)3.853 G(..).63 E -.63('')-.55 G F0 1.353(must al)6.983 F -.1(wa)-.1 G 1.353(ys be).1 F -.425(matched e)108 568.8 R(xplicitly)-.15 E 2.925(,e)-.65 G -.15(ve) --3.175 G 2.925(ni).15 G(f)-2.925 E F1(dotglob)2.925 E F0 .425(is set.) +.425(matched e)108 614.4 R(xplicitly)-.15 E 2.925(,e)-.65 G -.15(ve) +-3.175 G 2.925(ni).15 G(f)-2.925 E F4(dotglob)2.925 E F0 .425(is set.) 2.925 F .425(When matching a pathname, the slash character must al)5.425 -F -.1(wa)-.1 G .425(ys be).1 F .56(matched e)108 580.8 R(xplicitly)-.15 -E 5.56(.I)-.65 G 3.06(no)-5.56 G .56(ther cases, the)-3.06 F F1 -.63(``) +F -.1(wa)-.1 G .425(ys be).1 F .56(matched e)108 626.4 R(xplicitly)-.15 +E 5.56(.I)-.65 G 3.06(no)-5.56 G .56(ther cases, the)-3.06 F F4 -.63(``) 3.06 G -.55(.').63 G(')-.08 E F0 .56(character is not treated specially) -5.56 F 5.56(.S)-.65 G .56(ee the description of)-5.56 F F1(shopt)3.06 E -F0(belo)108 592.8 Q 3.595(wu)-.25 G(nder)-3.595 E F3 1.096(SHELL B)3.595 +5.56 F 5.56(.S)-.65 G .56(ee the description of)-5.56 F F4(shopt)3.06 E +F0(belo)108 638.4 Q 3.595(wu)-.25 G(nder)-3.595 E F1 1.096(SHELL B)3.595 F(UIL)-.09 E 1.096(TIN COMMANDS)-.828 F F0 1.096 -(for a description of the)3.346 F F1(nocaseglob)3.596 E F0(,)A F1 -(nullglob)3.596 E F0(,)A F1(failglob)3.596 E F0 3.596(,a)C(nd)-3.596 E -F1(dotglob)108 604.8 Q F0(shell options.)2.5 E(The)108 621.6 Q F3 +(for a description of the)3.346 F F4(nocaseglob)3.596 E F0(,)A F4 +(nullglob)3.596 E F0(,)A F4(failglob)3.596 E F0 3.596(,a)C(nd)-3.596 E +F4(dotglob)108 650.4 Q F0(shell options.)2.5 E(The)108 667.2 Q F1 (GLOBIGNORE)2.631 E F0 .131(shell v)2.381 F .131 (ariable may be used to restrict the set of \214le names matching a)-.25 -F F2(pattern)2.63 E F0 5.13(.I).24 G(f)-5.13 E F3(GLO-)2.63 E(BIGNORE) -108 633.6 Q F0 2.015(is set, each matching \214le name that also matche\ -s one of the patterns in)4.264 F F3(GLOBIGNORE)4.515 E F0(is)4.265 E -(remo)108 645.6 Q -.15(ve)-.15 G 3.915(df).15 G 1.415 -(rom the list of matches.)-3.915 F 1.415(If the)6.415 F F1(nocaseglob) +F F3(pattern)2.63 E F0 5.13(.I).24 G(f)-5.13 E F1(GLO-)2.63 E(BIGNORE) +108 679.2 Q F0 2.015(is set, each matching \214le name that also matche\ +s one of the patterns in)4.264 F F1(GLOBIGNORE)4.515 E F0(is)4.265 E +(remo)108 691.2 Q -.15(ve)-.15 G 3.915(df).15 G 1.415 +(rom the list of matches.)-3.915 F 1.415(If the)6.415 F F4(nocaseglob) 3.915 E F0 1.415(option is set, the matching ag)3.915 F 1.414 -(ainst the patterns in)-.05 F F3(GLOBIGNORE)108 657.6 Q F0 .146 +(ainst the patterns in)-.05 F F1(GLOBIGNORE)108 703.2 Q F0 .146 (is performed without re)2.396 F -.05(ga)-.15 G .146(rd to case.).05 F -.146(The \214lenames)5.146 F F1 -.63(``)2.646 G -.55(.').63 G(')-.08 E -F0(and)5.147 E F1 -.63(``)2.647 G(..).63 E -.63('')-.55 G F0 .147 -(are al)5.777 F -.1(wa)-.1 G .147(ys ignored when).1 F F3(GLOBIGNORE)108 -669.6 Q F0 .827(is set and not null.)3.077 F(Ho)5.827 E(we)-.25 E -.15 -(ve)-.25 G 1.627 -.4(r, s).15 H(etting).4 E F3(GLOBIGNORE)3.327 E F0 +.146(The \214lenames)5.146 F F4 -.63(``)2.646 G -.55(.').63 G(')-.08 E +F0(and)5.147 E F4 -.63(``)2.647 G(..).63 E -.63('')-.55 G F0 .147 +(are al)5.777 F -.1(wa)-.1 G .147(ys ignored when).1 F F1(GLOBIGNORE)108 +715.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 .682(enabling the)108 681.6 R F1(dotglob)3.182 E F0 .682 +-.25 F .682(enabling the)108 727.2 R F4(dotglob)3.182 E F0 .682 (shell option, so all other \214lenames be)3.182 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.283 -.8(To g)5.683 H .683(et the old).8 F(beha)108 693.6 Q -1.185(vior of ignoring \214lenames be)-.2 F 1.185(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.184 -(one of the patterns in)6.184 F F3(GLOBIGNORE)3.684 E/F5 9/Times-Roman@0 -SF(.)A F0(The)108 705.6 Q F1(dotglob)3.131 E F0 .631 -(option is disabled when)3.131 F F3(GLOBIGNORE)3.132 E F0 .632 -(is unset.)2.882 F .632(The pattern matching honors the setting of)5.632 -F(the)108 717.6 Q F1(extglob)2.5 E F0(shell option.)2.5 E(GNU Bash 4.4) -72 768 Q(2017 October 7)143.735 E(25)192.895 E 0 Cg EP +-.15 F F4 -.63(``)3.182 G -.55(.').63 G(')-.08 E F0 .682(will match.) +5.682 F 2.283 -.8(To g)5.683 H .683(et the old).8 F(GNU Bash 4.4)72 768 +Q(2017 December 28)136.795 E(25)185.955 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/F1 10/Times-Bold@0 -SF -.1(Pa)108 84 S(tter).1 E 2.5(nM)-.15 G(atching)-2.5 E F0(An)108 -100.8 Q 3.138(yc)-.15 G .638(haracter that appears in a pattern, other \ -than the special pattern characters described belo)-3.138 F 1.938 -.65 -(w, m)-.25 H(atches).65 E 3.62(itself. The)108 112.8 R 1.12 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(beha)108 84 Q +1.185(vior of ignoring \214lenames be)-.2 F 1.185(ginning with a)-.15 F +/F1 10/Times-Bold@0 SF -.63(``)3.684 G -.55(.').63 G(')-.08 E F0 3.684 +(,m)C(ak)-3.684 E(e)-.1 E F1 -.63(``)3.684 G(.*').63 E(')-.63 E F0 1.184 +(one of the patterns in)6.184 F/F2 9/Times-Bold@0 SF(GLOBIGNORE)3.684 E +/F3 9/Times-Roman@0 SF(.)A F0(The)108 96 Q F1(dotglob)3.131 E F0 .631 +(option is disabled when)3.131 F F2(GLOBIGNORE)3.132 E F0 .632 +(is unset.)2.882 F .632(The pattern matching honors the setting of)5.632 +F(the)108 108 Q F1(extglob)2.5 E F0(shell option.)2.5 E F1 -.1(Pa)108 +124.8 S(tter).1 E 2.5(nM)-.15 G(atching)-2.5 E F0(An)108 141.6 Q 3.138 +(yc)-.15 G .638(haracter that appears in a pattern, other than the spec\ +ial pattern characters described belo)-3.138 F 1.938 -.65(w, m)-.25 H +(atches).65 E 3.62(itself. The)108 153.6 R 1.12 (NUL character may not occur in a pattern.)3.62 F 3.62(Ab)6.12 G 1.12 (ackslash escapes the follo)-3.62 F 1.12(wing character; the)-.25 F .576 -(escaping backslash is discarded when matching.)108 124.8 R .576 +(escaping backslash is discarded when matching.)108 165.6 R .576 (The special pattern characters must be quoted if the)5.576 F 3.076(ya) --.15 G(re)-3.076 E(to be matched literally)108 136.8 Q(.)-.65 E -(The special pattern characters ha)108 153.6 Q .3 -.15(ve t)-.2 H -(he follo).15 E(wing meanings:)-.25 E F1(*)144 170.4 Q F0 .376 -(Matches an)180 170.4 R 2.876(ys)-.15 G .376 +-.15 G(re)-3.076 E(to be matched literally)108 177.6 Q(.)-.65 E +(The special pattern characters ha)108 194.4 Q .3 -.15(ve t)-.2 H +(he follo).15 E(wing meanings:)-.25 E F1(*)144 211.2 Q F0 .376 +(Matches an)180 211.2 R 2.876(ys)-.15 G .376 (tring, including the null string.)-2.876 F .376(When the)5.376 F F1 -(globstar)2.876 E F0 .377(shell option is enabled,)2.876 F(and)180 182.4 +(globstar)2.876 E F0 .377(shell option is enabled,)2.876 F(and)180 223.2 Q F1(*)3.275 E F0 .775(is used in a pathname e)3.275 F .775 (xpansion conte)-.15 F .775(xt, tw)-.15 F 3.275(oa)-.1 G(djacent)-3.275 E F1(*)3.275 E F0 3.275(su)C .775(sed as a single pattern)-3.275 F 1.058 (will match all \214les and zero or more directories and subdirectories\ -.)180 194.4 R 1.058(If follo)6.058 F 1.058(wed by a)-.25 F F1(/)3.558 E -F0(,)A(tw)180 206.4 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 218.4 Q -F0(Matches an)180 218.4 Q 2.5(ys)-.15 G(ingle character)-2.5 E(.)-.55 E -F1([...])144 230.4 Q F0 .579(Matches an)180 230.4 R 3.079(yo)-.15 G .579 +.)180 235.2 R 1.058(If follo)6.058 F 1.058(wed by a)-.25 F F1(/)3.558 E +F0(,)A(tw)180 247.2 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 259.2 Q +F0(Matches an)180 259.2 Q 2.5(ys)-.15 G(ingle character)-2.5 E(.)-.55 E +F1([...])144 271.2 Q F0 .579(Matches an)180 271.2 R 3.079(yo)-.15 G .579 (ne of the enclosed characters.)-3.079 F 3.079(Ap)5.579 G .578 (air of characters separated by a h)-3.079 F(yphen)-.05 E .684 -(denotes a)180 242.4 R/F2 10/Times-Italic@0 SF -.15(ra)3.184 G(ng).15 E +(denotes a)180 283.2 R/F4 10/Times-Italic@0 SF -.15(ra)3.184 G(ng).15 E 3.184(ee)-.1 G(xpr)-3.384 E(ession)-.37 E F0 3.184(;a)C .984 -.15(ny c) -3.184 H .684(haracter that f).15 F .684(alls between those tw)-.1 F -3.185(oc)-.1 G .685(haracters, inclu-)-3.185 F(si)180 254.4 Q -.15(ve) +3.185(oc)-.1 G .685(haracters, inclu-)-3.185 F(si)180 295.2 Q -.15(ve) -.25 G 3.713(,u).15 G 1.213(sing the current locale')-3.713 F 3.712(sc) -.55 G 1.212(ollating sequence and character set, is matched.)-3.712 F -1.212(If the)6.212 F 1.123(\214rst character follo)180 266.4 R 1.123 +1.212(If the)6.212 F 1.123(\214rst character follo)180 307.2 R 1.123 (wing the)-.25 F F1([)3.623 E F0 1.123(is a)3.623 F F1(!)3.623 E F0 1.124(or a)6.123 F F1(^)3.624 E F0 1.124(then an)3.624 F 3.624(yc)-.15 G 1.124(haracter not enclosed is matched.)-3.624 F .895 -(The sorting order of characters in range e)180 278.4 R .894 +(The sorting order of characters in range e)180 319.2 R .894 (xpressions is determined by the current locale)-.15 F .375(and the v) -180 290.4 R .375(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.976 -.8(To o)5.376 H .376 -(btain the tra-).8 F .068(ditional interpretation of range e)180 302.4 R -.068(xpressions, where)-.15 F F1([a\255d])2.568 E F0 .067(is equi)2.567 -F -.25(va)-.25 G .067(lent to).25 F F1([abcd])2.567 E F0 2.567(,s)C .067 -(et v)-2.567 F(alue)-.25 E .156(of the)180 314.4 R F1(LC_ALL)2.656 E F0 +180 331.2 R .375(alues of the)-.25 F F2(LC_COLLA)2.875 E(TE)-.855 E F0 +(or)2.625 E F2(LC_ALL)2.875 E F0 .375(shell v)2.625 F .375 +(ariables, if set.)-.25 F 1.976 -.8(To o)5.376 H .376(btain the tra-).8 +F .068(ditional interpretation of range e)180 343.2 R .068 +(xpressions, where)-.15 F F1([a\255d])2.568 E F0 .067(is equi)2.567 F +-.25(va)-.25 G .067(lent to).25 F F1([abcd])2.567 E F0 2.567(,s)C .067 +(et v)-2.567 F(alue)-.25 E .156(of the)180 355.2 R F1(LC_ALL)2.656 E F0 .156(shell v)2.656 F .156(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 .157(shell option.)2.657 F(A)5.157 E F12.657 E F0(may)2.657 E .193(\ be matched by including it as the \214rst or last character in the set.) -180 326.4 R(A)5.193 E F1(])2.693 E F0 .193(may be matched by)2.693 F -(including it as the \214rst character in the set.)180 338.4 Q -.4(Wi) -180 356.4 S(thin).4 E F1([)3.07 E F0(and)3.07 E F1(])3.07 E F0(,)A F2 +180 367.2 R(A)5.193 E F1(])2.693 E F0 .193(may be matched by)2.693 F +(including it as the \214rst character in the set.)180 379.2 Q -.4(Wi) +180 397.2 S(thin).4 E F1([)3.07 E F0(and)3.07 E F1(])3.07 E F0(,)A F4 -.15(ch)3.07 G(ar).15 E .571(acter classes)-.15 F F0 .571 -(can be speci\214ed using the syntax)3.071 F F1([:)3.071 E F2(class)A F1 -(:])A F0 3.071(,w)C(here)-3.071 E F2(class)3.071 E F0 -(is one of the follo)180 368.4 Q +(can be speci\214ed using the syntax)3.071 F F1([:)3.071 E F4(class)A F1 +(:])A F0 3.071(,w)C(here)-3.071 E F4(class)3.071 E F0 +(is one of the follo)180 409.2 Q (wing classes de\214ned in the POSIX standard:)-.25 E F1 8.173 -(alnum alpha ascii blank cntrl digit graph lo)180 380.4 R 8.173 -(wer print punct space)-.1 F 5(upper w)180 392.4 R 5(ord xdigit)-.1 F F0 -4.289(Ac)180 404.4 S 1.789(haracter class matches an)-4.289 F 4.289(yc) +(alnum alpha ascii blank cntrl digit graph lo)180 421.2 R 8.173 +(wer print punct space)-.1 F 5(upper w)180 433.2 R 5(ord xdigit)-.1 F F0 +4.289(Ac)180 445.2 S 1.789(haracter class matches an)-4.289 F 4.289(yc) -.15 G 1.789(haracter belonging to that class.)-4.289 F(The)6.789 E F1 -.1(wo)4.29 G(rd).1 E F0(character)4.29 E -(class matches letters, digits, and the character _.)180 416.4 Q -.4(Wi) -180 434.4 S(thin).4 E F1([)4.537 E F0(and)4.537 E F1(])4.537 E F0 4.537 -(,a)C(n)-4.537 E F2 2.037(equivalence class)4.537 F F0 2.036 -(can be speci\214ed using the syntax)4.536 F F1([=)4.536 E F2(c)A F1(=]) +(class matches letters, digits, and the character _.)180 457.2 Q -.4(Wi) +180 475.2 S(thin).4 E F1([)4.537 E F0(and)4.537 E F1(])4.537 E F0 4.537 +(,a)C(n)-4.537 E F4 2.037(equivalence class)4.537 F F0 2.036 +(can be speci\214ed using the syntax)4.536 F F1([=)4.536 E F4(c)A F1(=]) A F0 4.536(,w)C(hich)-4.536 E .125(matches all characters with the same\ - collation weight \(as de\214ned by the current locale\) as)180 446.4 R -(the character)180 458.4 Q F2(c)2.5 E F0(.)A -.4(Wi)180 476.4 S(thin).4 + collation weight \(as de\214ned by the current locale\) as)180 487.2 R +(the character)180 499.2 Q F4(c)2.5 E F0(.)A -.4(Wi)180 517.2 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 .705(If the)108 493.2 R F1(extglob)3.205 E F0 .705 +2.5 E F4(symbol)A F1(.])A F0(matches the collating symbol)2.5 E F4 +(symbol)2.5 E F0(.)A .705(If the)108 534 R F1(extglob)3.205 E F0 .705 (shell option is enabled using the)3.205 F F1(shopt)3.205 E F0 -.2(bu) 3.205 G .704(iltin, se).2 F -.15(ve)-.25 G .704(ral e).15 F .704 -(xtended pattern matching operators)-.15 F .255(are recognized.)108 -505.2 R .255(In the follo)5.255 F .255(wing description, a)-.25 F F2 +(xtended pattern matching operators)-.15 F .255(are recognized.)108 546 +R .255(In the follo)5.255 F .255(wing description, a)-.25 F F4 (pattern-list)2.755 E F0 .255 (is a list of one or more patterns separated by a)2.755 F F1(|)2.756 E F0(.)A(Composite patterns may be formed using one or more of the follo) -108 517.2 Q(wing sub-patterns:)-.25 E F1(?\()144 541.2 Q F2 +108 558 Q(wing sub-patterns:)-.25 E F1(?\()144 582 Q F4(pattern-list) +.833 E F1(\)).833 E F0(Matches zero or one occurrence of the gi)180 594 +Q -.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(*\()144 606 Q F4 (pattern-list).833 E F1(\)).833 E F0 -(Matches zero or one occurrence of the gi)180 553.2 Q -.15(ve)-.25 G 2.5 -(np).15 G(atterns)-2.5 E F1(*\()144 565.2 Q F2(pattern-list).833 E F1 -(\)).833 E F0(Matches zero or more occurrences of the gi)180 577.2 Q --.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(+\()144 589.2 Q F2 -(pattern-list).833 E F1(\)).833 E F0 -(Matches one or more occurrences of the gi)180 601.2 Q -.15(ve)-.25 G -2.5(np).15 G(atterns)-2.5 E F1(@\()144 613.2 Q F2(pattern-list).833 E F1 -(\)).833 E F0(Matches one of the gi)180 625.2 Q -.15(ve)-.25 G 2.5(np) -.15 G(atterns)-2.5 E F1(!\()144 637.2 Q F2(pattern-list).833 E F1(\)) -.833 E F0(Matches an)180 649.2 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 .969(Complicated e)108 -666 R .969(xtended pattern matching ag)-.15 F .969 +(Matches zero or more occurrences of the gi)180 618 Q -.15(ve)-.25 G 2.5 +(np).15 G(atterns)-2.5 E F1(+\()144 630 Q F4(pattern-list).833 E F1(\)) +.833 E F0(Matches one or more occurrences of the gi)180 642 Q -.15(ve) +-.25 G 2.5(np).15 G(atterns)-2.5 E F1(@\()144 654 Q F4(pattern-list).833 +E F1(\)).833 E F0(Matches one of the gi)180 666 Q -.15(ve)-.25 G 2.5(np) +.15 G(atterns)-2.5 E F1(!\()144 678 Q F4(pattern-list).833 E F1(\)).833 +E F0(Matches an)180 690 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 .969(Complicated e)108 706.8 +R .969(xtended pattern matching ag)-.15 F .969 (ainst long strings is slo)-.05 F 2.268 -.65(w, e)-.25 H .968 (specially when the patterns contain).65 F 1.23 -(alternations and the strings contain multiple matches.)108 678 R 1.23 +(alternations and the strings contain multiple matches.)108 718.8 R 1.23 (Using separate matches ag)6.23 F 1.23(ainst shorter strings, or)-.05 F (using arrays of strings instead of a single long string, may be f)108 -690 Q(aster)-.1 E(.)-.55 E F1(Quote Remo)87 706.8 Q -.1(va)-.1 G(l).1 E -F0 1.113(After the preceding e)108 718.8 R 1.113 -(xpansions, all unquoted occurrences of the characters)-.15 F F1(\\) -3.613 E F0(,)A F1<08>3.612 E F0 3.612(,a)C(nd)-3.612 E F1(")4.445 E F0 -1.112(that did not result)4.445 F(from one of the abo)108 730.8 Q .3 --.15(ve ex)-.15 H(pansions are remo).15 E -.15(ve)-.15 G(d.).15 E -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(26)192.895 E 0 Cg EP +730.8 Q(aster)-.1 E(.)-.55 E(GNU Bash 4.4)72 768 Q(2017 December 28) +136.795 E(26)185.955 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.95 -/Times-Bold@0 SF(REDIRECTION)72 84 Q F0 .545(Before a command is e)108 -96 R -.15(xe)-.15 G .545(cuted, its input and output may be).15 F/F2 10 -/Times-Italic@0 SF -.37(re)3.045 G(dir).37 E(ected)-.37 E F0 .545 -(using a special notation interpreted)3.815 F .405(by the shell.)108 108 -R .405(Redirection allo)5.405 F .405(ws commands' \214le handles to be \ -duplicated, opened, closed, made to refer to)-.25 F(dif)108 120 Q 1.019 -(ferent \214les, and can change the \214les the command reads from and \ -writes to.)-.25 F 1.02(Redirection may also be)6.02 F .215 -(used to modify \214le handles in the current shell e)108 132 R -.15(xe) --.15 G .215(cution en).15 F 2.715(vironment. The)-.4 F(follo)2.715 E +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(Quote Remo)87 84 Q -.1(va)-.1 G(l).1 E F0 1.113 +(After the preceding e)108 96 R 1.113 +(xpansions, all unquoted occurrences of the characters)-.15 F F1(\\) +3.613 E F0(,)A F1<08>3.612 E F0 3.612(,a)C(nd)-3.612 E F1(")4.445 E F0 +1.112(that did not result)4.445 F(from one of the abo)108 108 Q .3 -.15 +(ve ex)-.15 H(pansions are remo).15 E -.15(ve)-.15 G(d.).15 E/F2 10.95 +/Times-Bold@0 SF(REDIRECTION)72 124.8 Q F0 .545(Before a command is e) +108 136.8 R -.15(xe)-.15 G .545(cuted, its input and output may be).15 F +/F3 10/Times-Italic@0 SF -.37(re)3.045 G(dir).37 E(ected)-.37 E F0 .545 +(using a special notation interpreted)3.815 F .405(by the shell.)108 +148.8 R .405(Redirection allo)5.405 F .405(ws commands' \214le handles \ +to be duplicated, opened, closed, made to refer to)-.25 F(dif)108 160.8 +Q 1.019(ferent \214les, and can change the \214les the command reads fr\ +om and writes to.)-.25 F 1.02(Redirection may also be)6.02 F .215 +(used to modify \214le handles in the current shell e)108 172.8 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 .875(may precede or appear an)108 -144 R .875(ywhere within a)-.15 F F2 .875(simple command)3.715 F F0 .875 -(or may follo)4.145 F 3.376(wa)-.25 G F2(command)A F0 5.876(.R).77 G -.876(edirections are)-5.876 F(processed in the order the)108 156 Q 2.5 +184.8 R .875(ywhere within a)-.15 F F3 .875(simple command)3.715 F F0 +.875(or may follo)4.145 F 3.376(wa)-.25 G F3(command)A F0 5.876(.R).77 G +.876(edirections are)-5.876 F(processed in the order the)108 196.8 Q 2.5 (ya)-.15 G(ppear)-2.5 E 2.5(,f)-.4 G(rom left to right.)-2.5 E .771(Eac\ h redirection that may be preceded by a \214le descriptor number may in\ -stead be preceded by a w)108 172.8 R .771(ord of)-.1 F .292(the form {) -108 184.8 R F2(varname)A F0 2.793(}. In)B .293 +stead be preceded by a w)108 213.6 R .771(ord of)-.1 F .292(the form {) +108 225.6 R F3(varname)A F0 2.793(}. In)B .293 (this case, for each redirection operator e)2.793 F .293 -(xcept >&- and <&-, the shell will allocate)-.15 F 3.18<618c>108 196.8 S +(xcept >&- and <&-, the shell will allocate)-.15 F 3.18<618c>108 237.6 S .679(le descriptor greater than or equal to 10 and assign it to)-3.18 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 208.8 Q -F0 .599(}, the v)B .599(alue of)-.25 F F2(varname)3.099 E F0 .599 -(de\214nes the \214le descriptor to close.)3.099 F .6(If {)5.6 F F2 +F3(varname)3.179 E F0 5.679(.I)C 3.179(f>)-5.679 G .679 +(&- or <&- is preceded by {)-3.179 F F3(var)A(-)-.2 E(name)108 249.6 Q +F0 .599(}, the v)B .599(alue of)-.25 F F3(varname)3.099 E F0 .599 +(de\214nes the \214le descriptor to close.)3.099 F .6(If {)5.6 F F3 (varname)A F0 3.1(}i)C 3.1(ss)-3.1 G .6(upplied, the redirection)-3.1 F -1.238(persists be)108 220.8 R 1.238(yond the scope of the command, allo) +1.238(persists be)108 261.6 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 232.8 Q .283(In the follo)108 249.6 R .284(wing des\ +-.25 F(himself.)108 273.6 Q .283(In the follo)108 290.4 R .284(wing des\ criptions, if the \214le descriptor number is omitted, and the \214rst \ -character of the redirect-)-.25 F .513(ion operator is)108 261.6 R/F3 10 -/Times-Bold@0 SF(<)3.012 E F0 3.012(,t)C .512 +character of the redirect-)-.25 F .513(ion operator is)108 302.4 R F1(<) +3.012 E F0 3.012(,t)C .512 (he redirection refers to the standard input \(\214le descriptor 0\).) -3.012 F .512(If the \214rst character of the)5.512 F -(redirection operator is)108 273.6 Q F3(>)2.5 E F0 2.5(,t)C +(redirection operator is)108 314.4 Q F1(>)2.5 E F0 2.5(,t)C (he redirection refers to the standard output \(\214le descriptor 1\).) --2.5 E .824(The w)108 290.4 R .824(ord follo)-.1 F .824 +-2.5 E .824(The w)108 331.2 R .824(ord follo)-.1 F .824 (wing the redirection operator in the follo)-.25 F .825 (wing descriptions, unless otherwise noted, is sub-)-.25 F .463 -(jected to brace e)108 302.4 R .463(xpansion, tilde e)-.15 F .462 +(jected to brace e)108 343.2 R .463(xpansion, tilde e)-.15 F .462 (xpansion, parameter and v)-.15 F .462(ariable e)-.25 F .462 -(xpansion, command substitution, arith-)-.15 F .866(metic e)108 314.4 R +(xpansion, command substitution, arith-)-.15 F .866(metic e)108 355.2 R .866(xpansion, quote remo)-.15 F -.25(va)-.15 G .866(l, pathname e).25 F .867(xpansion, and w)-.15 F .867(ord splitting.)-.1 F .867(If it e)5.867 -F .867(xpands to more than one)-.15 F -.1(wo)108 326.4 S(rd,).1 E F3 +F .867(xpands to more than one)-.15 F -.1(wo)108 367.2 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 343.2 Q -.15 -(Fo)5 G 2.5(re).15 G(xample, the command)-2.65 E(ls)144 360 Q F3(>)2.5 E -F0(dirlist 2)2.5 E F3(>&)A F0(1)A -(directs both standard output and standard error to the \214le)108 376.8 -Q F2(dirlist)2.5 E F0 2.5(,w).68 G(hile the command)-2.5 E(ls 2)144 -393.6 Q F3(>&)A F0(1)A F3(>)2.5 E F0(dirlist)2.5 E .527 -(directs only the standard output to \214le)108 410.4 R F2(dirlist)3.027 +(Note that the order of redirections is signi\214cant.)108 384 Q -.15 +(Fo)5 G 2.5(re).15 G(xample, the command)-2.65 E(ls)144 400.8 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 417.6 +Q F3(dirlist)2.5 E F0 2.5(,w).68 G(hile the command)-2.5 E(ls 2)144 +434.4 Q F1(>&)A F0(1)A F1(>)2.5 E F0(dirlist)2.5 E .527 +(directs only the standard output to \214le)108 451.2 R F3(dirlist)3.027 E F0 3.027(,b).68 G .527(ecause the standard error w)-3.027 F .527 (as duplicated from the standard)-.1 F -(output before the standard output w)108 422.4 Q(as redirected to)-.1 E -F2(dirlist)2.5 E F0(.).68 E F3(Bash)108 439.2 Q F0 .598(handles se)3.098 -F -.15(ve)-.25 G .598(ral \214lenames specially when the).15 F 3.099(ya) +(output before the standard output w)108 463.2 Q(as redirected to)-.1 E +F3(dirlist)2.5 E F0(.).68 E F1(Bash)108 480 Q F0 .598(handles se)3.098 F +-.15(ve)-.25 G .598(ral \214lenames specially when the).15 F 3.099(ya) -.15 G .599(re used in redirections, as described in the follo)-3.099 F -(wing)-.25 E 3.478(table. If)108 451.2 R .978 -(the operating system on which)3.478 F F3(bash)3.478 E F0 .978 +(wing)-.25 E 3.478(table. If)108 492 R .978 +(the operating system on which)3.478 F F1(bash)3.478 E F0 .978 (is running pro)3.478 F .977 (vides these special \214les, bash will use them;)-.15 F -(otherwise it will emulate them internally with the beha)108 463.2 Q -(vior described belo)-.2 E -.65(w.)-.25 G F3(/de)144 480 Q(v/fd/)-.15 E -F2(fd)A F0(If)180 492 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 F3(/de)144 504 Q(v/stdin)-.15 E F0 -(File descriptor 0 is duplicated.)180 516 Q F3(/de)144 528 Q(v/stdout) --.15 E F0(File descriptor 1 is duplicated.)180 540 Q F3(/de)144 552 Q -(v/stderr)-.15 E F0(File descriptor 2 is duplicated.)180 564 Q F3(/de) -144 576 Q(v/tcp/)-.15 E F2(host)A F3(/)A F2(port)A F0(If)180 588 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 +(otherwise it will emulate them internally with the beha)108 504 Q +(vior described belo)-.2 E -.65(w.)-.25 G F1(/de)144 520.8 Q(v/fd/)-.15 +E F3(fd)A F0(If)180 532.8 Q F3(fd)2.5 E F0(is a v)2.5 E(alid inte)-.25 E +(ger)-.15 E 2.5<2c8c>-.4 G(le descriptor)-2.5 E F3(fd)2.5 E F0 +(is duplicated.)2.5 E F1(/de)144 544.8 Q(v/stdin)-.15 E F0 +(File descriptor 0 is duplicated.)180 556.8 Q F1(/de)144 568.8 Q +(v/stdout)-.15 E F0(File descriptor 1 is duplicated.)180 580.8 Q F1(/de) +144 592.8 Q(v/stderr)-.15 E F0(File descriptor 2 is duplicated.)180 +604.8 Q F1(/de)144 616.8 Q(v/tcp/)-.15 E F3(host)A F1(/)A F3(port)A F0 +(If)180 628.8 Q F3(host)2.996 E F0 .496(is a v)2.996 F .496 +(alid hostname or Internet address, and)-.25 F F3(port)2.997 E F0 .497 (is an inte)2.997 F .497(ger port number or ser)-.15 F(-)-.2 E -(vice name,)180 600 Q F3(bash)2.5 E F0 -(attempts to open the corresponding TCP sock)2.5 E(et.)-.1 E F3(/de)144 -612 Q(v/udp/)-.15 E F2(host)A F3(/)A F2(port)A F0(If)180 624 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 +(vice name,)180 640.8 Q F1(bash)2.5 E F0 +(attempts to open the corresponding TCP sock)2.5 E(et.)-.1 E F1(/de)144 +652.8 Q(v/udp/)-.15 E F3(host)A F1(/)A F3(port)A F0(If)180 664.8 Q F3 +(host)2.997 E F0 .497(is a v)2.997 F .497 +(alid hostname or Internet address, and)-.25 F F3(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 636 Q F3(bash)2.5 E F0 +(vice name,)180 676.8 Q F1(bash)2.5 E F0 (attempts to open the corresponding UDP sock)2.5 E(et.)-.1 E 2.5(Af)108 -652.8 S(ailure to open or create a \214le causes the redirection to f) +693.6 S(ailure to open or create a \214le causes the redirection to f) -2.6 E(ail.)-.1 E .946(Redirections using \214le descriptors greater th\ -an 9 should be used with care, as the)108 669.6 R 3.447(ym)-.15 G .947 +an 9 should be used with care, as the)108 710.4 R 3.447(ym)-.15 G .947 (ay con\215ict with \214le)-3.447 F -(descriptors the shell uses internally)108 681.6 Q(.)-.65 E F3(Redir)87 -698.4 Q(ecting Input)-.18 E F0 .391 -(Redirection of input causes the \214le whose name results from the e) -108 710.4 R .391(xpansion of)-.15 F F2(wor)3.231 E(d)-.37 E F0 .391 -(to be opened for read-)3.661 F(ing on \214le descriptor)108 722.4 Q F2 -(n)2.5 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(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 -E(27)192.895 E 0 Cg EP +(descriptors the shell uses internally)108 722.4 Q(.)-.65 E +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(27)185.955 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 -(The general format for redirecting input is:)108 84 Q([)144 100.8 Q/F1 -10/Times-Italic@0 SF(n)A F0(])A/F2 10/Times-Bold@0 SF(<)A F1(wor)A(d) --.37 E F2(Redir)87 117.6 Q(ecting Output)-.18 E F0 .174 +(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 Input)-.18 E F0 .391 +(Redirection of input causes the \214le whose name results from the e) +108 96 R .391(xpansion of)-.15 F/F2 10/Times-Italic@0 SF(wor)3.231 E(d) +-.37 E F0 .391(to be opened for read-)3.661 F(ing on \214le descriptor) +108 108 Q F2(n)2.5 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 124.8 Q([)144 141.6 Q +F2(n)A F0(])A F1(<)A F2(wor)A(d)-.37 E F1(Redir)87 158.4 Q +(ecting Output)-.18 E F0 .174 (Redirection of output causes the \214le whose name results from the e) -108 129.6 R .175(xpansion of)-.15 F F1(wor)3.015 E(d)-.37 E F0 .175 -(to be opened for writ-)3.445 F .825(ing on \214le descriptor)108 141.6 -R F1(n)3.325 E F0 3.325(,o).24 G 3.325(rt)-3.325 G .824 -(he standard output \(\214le descriptor 1\) if)-3.325 F F1(n)3.684 E F0 +108 170.4 R .175(xpansion of)-.15 F F2(wor)3.015 E(d)-.37 E F0 .175 +(to be opened for writ-)3.445 F .825(ing on \214le descriptor)108 182.4 +R F2(n)3.325 E F0 3.325(,o).24 G 3.325(rt)-3.325 G .824 +(he standard output \(\214le descriptor 1\) if)-3.325 F F2(n)3.684 E F0 .824(is not speci\214ed.)3.564 F .824(If the \214le does not)5.824 F --.15(ex)108 153.6 S(ist it is created; if it does e).15 E +-.15(ex)108 194.4 S(ist it is created; if it does e).15 E (xist it is truncated to zero size.)-.15 E -(The general format for redirecting output is:)108 170.4 Q([)144 187.2 Q -F1(n)A F0(])A F2(>)A F1(wor)A(d)-.37 E F0 .154 -(If the redirection operator is)108 204 R F2(>)2.654 E F0 2.654(,a)C -.154(nd the)-2.654 F F2(noclob)2.654 E(ber)-.1 E F0 .154(option to the) -2.654 F F2(set)2.655 E F0 -.2(bu)2.655 G .155 -(iltin has been enabled, the redirection).2 F .658(will f)108 216 R .658 -(ail if the \214le whose name results from the e)-.1 F .658(xpansion of) --.15 F F1(wor)3.158 E(d)-.37 E F0 -.15(ex)3.158 G .657(ists and is a re) -.15 F .657(gular \214le.)-.15 F .657(If the redi-)5.657 F .408 -(rection operator is)108 228 R F2(>|)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.909 G .409(iltin command).2 F -(is not enabled, the redirection is attempted e)108 240 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 256.8 S(pending Redir).25 E -(ected Output)-.18 E F0 .642(Redirection of output in this f)108 268.8 R -.642(ashion causes the \214le whose name results from the e)-.1 F .641 -(xpansion of)-.15 F F1(wor)3.481 E(d)-.37 E F0 .641(to be)3.911 F .473 -(opened for appending on \214le descriptor)108 280.8 R F1(n)2.973 E F0 +(The general format for redirecting output is:)108 211.2 Q([)144 228 Q +F2(n)A F0(])A F1(>)A F2(wor)A(d)-.37 E F0 .154 +(If the redirection operator is)108 244.8 R F1(>)2.654 E F0 2.654(,a)C +.154(nd the)-2.654 F F1(noclob)2.654 E(ber)-.1 E F0 .154(option to the) +2.654 F F1(set)2.655 E F0 -.2(bu)2.655 G .155 +(iltin has been enabled, the redirection).2 F .658(will f)108 256.8 R +.658(ail if the \214le whose name results from the e)-.1 F .658 +(xpansion of)-.15 F F2(wor)3.158 E(d)-.37 E F0 -.15(ex)3.158 G .657 +(ists and is a re).15 F .657(gular \214le.)-.15 F .657(If the redi-) +5.657 F .408(rection operator is)108 268.8 R F1(>|)2.909 E F0 2.909(,o)C +2.909(rt)-2.909 G .409(he redirection operator is)-2.909 F F1(>)2.909 E +F0 .409(and the)2.909 F F1(noclob)2.909 E(ber)-.1 E F0 .409 +(option to the)2.909 F F1(set)2.909 E F0 -.2(bu)2.909 G .409 +(iltin command).2 F(is not enabled, the redirection is attempted e)108 +280.8 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 +297.6 S(pending Redir).25 E(ected Output)-.18 E F0 .642 +(Redirection of output in this f)108 309.6 R .642 +(ashion causes the \214le whose name results from the e)-.1 F .641 +(xpansion of)-.15 F F2(wor)3.481 E(d)-.37 E F0 .641(to be)3.911 F .473 +(opened for appending on \214le descriptor)108 321.6 R F2(n)2.973 E F0 2.974(,o).24 G 2.974(rt)-2.974 G .474 -(he standard output \(\214le descriptor 1\) if)-2.974 F F1(n)3.334 E F0 +(he standard output \(\214le descriptor 1\) if)-2.974 F F2(n)3.334 E F0 .474(is not speci\214ed.)3.214 F(If)5.474 E(the \214le does not e)108 -292.8 Q(xist it is created.)-.15 E -(The general format for appending output is:)108 309.6 Q([)144 326.4 Q -F1(n)A F0(])A F2(>>)A F1(wor)A(d)-.37 E F2(Redir)87 343.2 Q +333.6 Q(xist it is created.)-.15 E +(The general format for appending output is:)108 350.4 Q([)144 367.2 Q +F2(n)A F0(])A F1(>>)A F2(wor)A(d)-.37 E F1(Redir)87 384 Q (ecting Standard Output and Standard Err)-.18 E(or)-.18 E F0 .249 -(This construct allo)108 355.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 -367.2 Q(xpansion of)-.15 E F1(wor)2.5 E(d)-.37 E F0(.).77 E -(There are tw)108 384 Q 2.5(of)-.1 G -(ormats for redirecting standard output and standard error:)-2.5 E F2 -(&>)144 400.8 Q F1(wor)A(d)-.37 E F0(and)108 412.8 Q F2(>&)144 424.8 Q -F1(wor)A(d)-.37 E F0(Of the tw)108 441.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 F2(>)144 458.4 Q F1(wor)A(d)-.37 E F0(2)2.5 -E F2(>&)A F0(1)A .114(When using the second form,)108 475.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.615(td)-2.614 G -.115(oes, other redirection operators)-2.615 F(apply \(see)108 487.2 Q -F2(Duplicating File Descriptors)2.5 E F0(belo)2.5 E -(w\) for compatibility reasons.)-.25 E F2 -.25(Ap)87 504 S -(pending Standard Output and Standard Err).25 E(or)-.18 E F0 .249 -(This construct allo)108 516 R .249(ws both the standard output \(\214l\ +(This construct allo)108 396 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 528 Q -(xpansion of)-.15 E F1(wor)2.5 E(d)-.37 E F0(.).77 E +(tor 2\) to be redirected to the \214le whose name is the e)108 408 Q +(xpansion of)-.15 E F2(wor)2.5 E(d)-.37 E F0(.).77 E(There are tw)108 +424.8 Q 2.5(of)-.1 G +(ormats for redirecting standard output and standard error:)-2.5 E F1 +(&>)144 441.6 Q F2(wor)A(d)-.37 E F0(and)108 453.6 Q F1(>&)144 465.6 Q +F2(wor)A(d)-.37 E F0(Of the tw)108 482.4 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 499.2 Q F2(wor)A(d)-.37 E F0(2)2.5 +E F1(>&)A F0(1)A .114(When using the second form,)108 516 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.615(td)-2.614 G .115 +(oes, other redirection operators)-2.615 F(apply \(see)108 528 Q F1 +(Duplicating File Descriptors)2.5 E F0(belo)2.5 E +(w\) for compatibility reasons.)-.25 E F1 -.25(Ap)87 544.8 S +(pending Standard Output and Standard Err).25 E(or)-.18 E F0 .249 +(This construct allo)108 556.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 +568.8 Q(xpansion of)-.15 E F2(wor)2.5 E(d)-.37 E F0(.).77 E (The format for appending standard output and standard error is:)108 -544.8 Q F2(&>>)144 561.6 Q F1(wor)A(d)-.37 E F0 -(This is semantically equi)108 578.4 Q -.25(va)-.25 G(lent to).25 E F2 -(>>)144 595.2 Q F1(wor)A(d)-.37 E F0(2)2.5 E F2(>&)A F0(1)A(\(see)108 -612 Q F2(Duplicating File Descriptors)2.5 E F0(belo)2.5 E(w\).)-.25 E F2 -(Her)87 628.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 640.8 R F1(delimiter)108.35 652.8 Q F0 .615 +585.6 Q F1(&>>)144 602.4 Q F2(wor)A(d)-.37 E F0 +(This is semantically equi)108 619.2 Q -.25(va)-.25 G(lent to).25 E F1 +(>>)144 636 Q F2(wor)A(d)-.37 E F0(2)2.5 E F1(>&)A F0(1)A(\(see)108 +652.8 Q F1(Duplicating File Descriptors)2.5 E F0(belo)2.5 E(w\).)-.25 E +F1(Her)87 669.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 681.6 R F2(delimiter)108.35 693.6 Q F0 .615 (\(with no trailing blanks\) is seen.)3.845 F .615 (All of the lines read up to that point are then used as the stan-)5.615 -F(dard input \(or \214le descriptor)108 664.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 681.6 Q([)144 698.4 Q F1(n)A F0(]) -A F2(<<)A F0([)A F2A F0(])A F1(wor)A(d)-.37 E(her)164 710.4 Q -(e-document)-.37 E(delimiter)144 722.4 Q F0(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(28)192.895 E 0 Cg EP +F(dard input \(or \214le descriptor)108 705.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 722.4 Q(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(28)185.955 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 .301 -(No parameter and v)108 84 R .302(ariable e)-.25 F .302 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E([)144 84 Q/F1 10 +/Times-Italic@0 SF(n)A F0(])A/F2 10/Times-Bold@0 SF(<<)A F0([)A F2A +F0(])A F1(wor)A(d)-.37 E(her)164 96 Q(e-document)-.37 E(delimiter)144 +108 Q F0 .301(No parameter and v)108 124.8 R .302(ariable e)-.25 F .302 (xpansion, command substitution, arithmetic e)-.15 F .302 (xpansion, or pathname e)-.15 F(xpansion)-.15 E .415(is performed on)108 -96 R/F1 10/Times-Italic@0 SF(wor)2.915 E(d)-.37 E F0 5.415(.I).77 G -2.915(fa)-5.415 G .715 -.15(ny p)-2.915 H .415(art of).15 F F1(wor)3.255 -E(d)-.37 E F0 .415(is quoted, the)3.685 F F1(delimiter)3.265 E F0 .415 +136.8 R F1(wor)2.915 E(d)-.37 E F0 5.415(.I).77 G 2.915(fa)-5.415 G .715 +-.15(ny p)-2.915 H .415(art of).15 F F1(wor)3.255 E(d)-.37 E F0 .415 +(is quoted, the)3.685 F F1(delimiter)3.265 E F0 .415 (is the result of quote remo)3.645 F -.25(va)-.15 G 2.915(lo).25 G(n) -2.915 E F1(wor)2.915 E(d)-.37 E F0(,).77 E .773 -(and the lines in the here-document are not e)108 108 R 3.274 +(and the lines in the here-document are not e)108 148.8 R 3.274 (xpanded. If)-.15 F F1(wor)3.274 E(d)-.37 E F0 .774 (is unquoted, all lines of the here-document)3.274 F 2.59 -(are subjected to parameter e)108 120 R 2.59 +(are subjected to parameter e)108 160.8 R 2.59 (xpansion, command substitution, and arithmetic e)-.15 F 2.59 -(xpansion, the character)-.15 F(sequence)108 132 Q/F2 10/Times-Bold@0 SF -(\\)2.5 E F0(is ignored, and)2.5 E F2(\\)2.5 E F0 +(xpansion, the character)-.15 F(sequence)108 172.8 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 .601 -(If the redirection operator is)108 148.8 R F2(<<\255)3.101 E F0 3.101 +(If the redirection operator is)108 189.6 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 160.8 Q F1(delimiter)2.5 E F0 5 + and the line)-3.101 F(containing)108 201.6 Q F1(delimiter)2.5 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 F2(Her)87 177.6 Q 2.5(eS)-.18 G(trings)-2.5 E F0 -2.5(Av)108 189.6 S(ariant of here documents, the format is:)-2.75 E([) -144 206.4 Q F1(n)A F0(])A F2(<<<)A F1(wor)A(d)-.37 E F0(The)108 223.2 Q -F1(wor)3.292 E(d)-.37 E F0(under)3.292 E .792(goes tilde e)-.18 F .792 +-.25 E(ashion.)-.1 E F2(Her)87 218.4 Q 2.5(eS)-.18 G(trings)-2.5 E F0 +2.5(Av)108 230.4 S(ariant of here documents, the format is:)-2.75 E([) +144 247.2 Q F1(n)A F0(])A F2(<<<)A F1(wor)A(d)-.37 E F0(The)108 264 Q F1 +(wor)3.292 E(d)-.37 E F0(under)3.292 E .792(goes tilde e)-.18 F .792 (xpansion, parameter and v)-.15 F .792(ariable e)-.25 F .791 -(xpansion, command substitution, arithmetic)-.15 F -.15(ex)108 235.2 S +(xpansion, command substitution, arithmetic)-.15 F -.15(ex)108 276 S 1.187(pansion, and quote remo).15 F -.25(va)-.15 G 3.687(l. P).25 F 1.187(athname e)-.15 F 1.187(xpansion and w)-.15 F 1.187 (ord splitting are not performed.)-.1 F 1.188(The result is)6.187 F .375 -(supplied as a single string, with a ne)108 247.2 R .374(wline appended\ -, to the command on its standard input \(or \214le descrip-)-.25 F(tor) -108 259.2 Q F1(n)2.5 E F0(if)2.5 E F1(n)2.5 E F0(is speci\214ed\).)2.5 E -F2(Duplicating File Descriptors)87 276 Q F0(The redirection operator)108 -288 Q([)144 304.8 Q F1(n)A F0(])A F2(<&)A F1(wor)A(d)-.37 E F0 .126 -(is used to duplicate input \214le descriptors.)108 321.6 R(If)5.127 E +(supplied as a single string, with a ne)108 288 R .374(wline appended, \ +to the command on its standard input \(or \214le descrip-)-.25 F(tor)108 +300 Q F1(n)2.5 E F0(if)2.5 E F1(n)2.5 E F0(is speci\214ed\).)2.5 E F2 +(Duplicating File Descriptors)87 316.8 Q F0(The redirection operator)108 +328.8 Q([)144 345.6 Q F1(n)A F0(])A F2(<&)A F1(wor)A(d)-.37 E F0 .126 +(is used to duplicate input \214le descriptors.)108 362.4 R(If)5.127 E F1(wor)2.967 E(d)-.37 E F0 -.15(ex)3.397 G .127 (pands to one or more digits, the \214le descriptor denoted).15 F(by)108 -333.6 Q F1(n)3.318 E F0 .458(is made to be a cop)3.198 F 2.958(yo)-.1 G +374.4 Q F1(n)3.318 E F0 .458(is made to be a cop)3.198 F 2.958(yo)-.1 G 2.958(ft)-2.958 G .457(hat \214le descriptor)-2.958 F 5.457(.I)-.55 G 2.957(ft)-5.457 G .457(he digits in)-2.957 F F1(wor)3.297 E(d)-.37 E F0 .457(do not specify a \214le descriptor open)3.727 F .149 -(for input, a redirection error occurs.)108 345.6 R(If)5.149 E F1(wor) +(for input, a redirection error occurs.)108 386.4 R(If)5.149 E F1(wor) 2.989 E(d)-.37 E F0 -.25(eva)3.419 G .149(luates to).25 F F22.649 E F0 2.65<2c8c>C .15(le descriptor)-2.65 F F1(n)3.01 E F0 .15(is closed.) 2.89 F(If)5.15 E F1(n)3.01 E F0 .15(is not speci\214ed,)2.89 F -(the standard input \(\214le descriptor 0\) is used.)108 357.6 Q -(The operator)108 374.4 Q([)144 391.2 Q F1(n)A F0(])A F2(>&)A F1(wor)A -(d)-.37 E F0 .444 -(is used similarly to duplicate output \214le descriptors.)108 408 R(If) -5.444 E F1(n)3.304 E F0 .443 +(the standard input \(\214le descriptor 0\) is used.)108 398.4 Q +(The operator)108 415.2 Q([)144 432 Q F1(n)A F0(])A F2(>&)A F1(wor)A(d) +-.37 E F0 .444 +(is used similarly to duplicate output \214le descriptors.)108 448.8 R +(If)5.444 E F1(n)3.304 E F0 .443 (is not speci\214ed, the standard output \(\214le descrip-)3.183 F 1.357 -(tor 1\) is used.)108 420 R 1.357(If the digits in)6.357 F F1(wor)4.197 -E(d)-.37 E F0 1.358(do not specify a \214le descriptor open for output,\ - a redirection error)4.627 F 2.754(occurs. If)108 432 R F1(wor)3.094 E -(d)-.37 E F0 -.25(eva)3.524 G .254(luates to).25 F F22.754 E F0 -2.754<2c8c>C .254(le descriptor)-2.754 F F1(n)3.114 E F0 .254 +(tor 1\) is used.)108 460.8 R 1.357(If the digits in)6.357 F F1(wor) +4.197 E(d)-.37 E F0 1.358(do not specify a \214le descriptor open for o\ +utput, a redirection error)4.627 F 2.754(occurs. If)108 472.8 R F1(wor) +3.094 E(d)-.37 E F0 -.25(eva)3.524 G .254(luates to).25 F F22.754 E +F0 2.754<2c8c>C .254(le descriptor)-2.754 F F1(n)3.114 E F0 .254 (is closed.)2.994 F .254(As a special case, if)5.254 F F1(n)2.754 E F0 .253(is omitted, and)2.754 F F1(wor)2.753 E(d)-.37 E F0(does)2.753 E -.965(not e)108 444 R .965(xpand to one or more digits or)-.15 F F2 +.965(not e)108 484.8 R .965(xpand to one or more digits or)-.15 F F2 3.465 E F0 3.466(,t)C .966 (he standard output and standard error are redirected as described) --3.466 F(pre)108 456 Q(viously)-.25 E(.)-.65 E F2(Mo)87 472.8 Q -(ving File Descriptors)-.1 E F0(The redirection operator)108 484.8 Q([) -144 501.6 Q F1(n)A F0(])A F2(<&)A F1(digit)A F2A F0(mo)108 518.4 Q +-3.466 F(pre)108 496.8 Q(viously)-.25 E(.)-.65 E F2(Mo)87 513.6 Q +(ving File Descriptors)-.1 E F0(The redirection operator)108 525.6 Q([) +144 542.4 Q F1(n)A F0(])A F2(<&)A F1(digit)A F2A F0(mo)108 559.2 Q -.15(ve)-.15 G 3.036(st).15 G .536(he \214le descriptor)-3.036 F F1 (digit)3.036 E F0 .536(to \214le descriptor)3.036 F F1(n)3.036 E F0 3.036(,o).24 G 3.036(rt)-3.036 G .535 (he standard input \(\214le descriptor 0\) if)-3.036 F F1(n)3.035 E F0 -.535(is not speci-)3.035 F(\214ed.)108 530.4 Q F1(digit)5 E F0 +.535(is not speci-)3.035 F(\214ed.)108 571.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 547.2 Q 2.5(,t)-.65 G(he redirection operator)-2.5 E([)144 564 Q F1 -(n)A F0(])A F2(>&)A F1(digit)A F2A F0(mo)108 580.8 Q -.15(ve)-.15 G +108 588 Q 2.5(,t)-.65 G(he redirection operator)-2.5 E([)144 604.8 Q F1 +(n)A F0(])A F2(>&)A F1(digit)A F2A F0(mo)108 621.6 Q -.15(ve)-.15 G 2.785(st).15 G .285(he \214le descriptor)-2.785 F F1(digit)2.785 E F0 .285(to \214le descriptor)2.785 F F1(n)2.785 E F0 2.785(,o).24 G 2.785 (rt)-2.785 G .286(he standard output \(\214le descriptor 1\) if)-2.785 F -F1(n)2.786 E F0 .286(is not speci-)2.786 F(\214ed.)108 592.8 Q F2 -(Opening File Descriptors f)87 609.6 Q(or Reading and Writing)-.25 E F0 -(The redirection operator)108 621.6 Q([)144 638.4 Q F1(n)A F0(])A F2(<>) +F1(n)2.786 E F0 .286(is not speci-)2.786 F(\214ed.)108 633.6 Q F2 +(Opening File Descriptors f)87 650.4 Q(or Reading and Writing)-.25 E F0 +(The redirection operator)108 662.4 Q([)144 679.2 Q F1(n)A F0(])A F2(<>) A F1(wor)A(d)-.37 E F0 1.349(causes the \214le whose name is the e)108 -655.2 R 1.349(xpansion of)-.15 F F1(wor)4.189 E(d)-.37 E F0 1.349 +696 R 1.349(xpansion of)-.15 F F1(wor)4.189 E(d)-.37 E F0 1.349 (to be opened for both reading and writing on \214le)4.619 F(descriptor) -108 667.2 Q F1(n)2.5 E F0 2.5(,o).24 G 2.5(ro)-2.5 G 2.5<6e8c>-2.5 G +108 708 Q F1(n)2.5 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 684 Q F1(Aliases)108 696 Q F0(allo)3.173 E -3.173(was)-.25 G .674(tring to be substituted for a w)-3.173 F .674 -(ord when it is used as the \214rst w)-.1 F .674 -(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 708 R F2(alias)2.893 E F0 -(and)2.893 E F2(unalias)2.893 E F0 -.2(bu)2.893 G .393(iltin commands).2 -F(\(see)108 720 Q/F4 9/Times-Bold@0 SF 1.979(SHELL B)4.479 F(UIL)-.09 E -1.979(TIN COMMANDS)-.828 F F0(belo)4.229 E 4.48(w\). The)-.25 F 1.98 -(\214rst w)4.48 F 1.98(ord of each simple command, if unquoted, is)-.1 F -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(29)192.895 E 0 Cg EP +(If the \214le does not e)5 E(xist, it is created.)-.15 E(GNU Bash 4.4) +72 768 Q(2017 December 28)136.795 E(29)185.955 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(check)108 84 Q -.473(ed to see if it has an alias.)-.1 F .473(If so, that w)5.473 F .472 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10.95 +/Times-Bold@0 SF(ALIASES)72 84 Q/F2 10/Times-Italic@0 SF(Aliases)108 96 +Q F0(allo)3.173 E 3.173(was)-.25 G .674(tring to be substituted for a w) +-3.173 F .674(ord when it is used as the \214rst w)-.1 F .674 +(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 108 R/F3 10/Times-Bold@0 SF +(alias)2.893 E F0(and)2.893 E F3(unalias)2.893 E F0 -.2(bu)2.893 G .393 +(iltin commands).2 F(\(see)108 120 Q/F4 9/Times-Bold@0 SF 1.979(SHELL B) +4.479 F(UIL)-.09 E 1.979(TIN COMMANDS)-.828 F F0(belo)4.229 E 4.48 +(w\). The)-.25 F 1.98(\214rst w)4.48 F 1.98 +(ord of each simple command, if unquoted, is)-.1 F(check)108 132 Q .473 +(ed to see if it has an alias.)-.1 F .473(If so, that w)5.473 F .472 (ord is replaced by the te)-.1 F .472(xt of the alias.)-.15 F .472 -(The characters)5.472 F/F1 10/Times-Bold@0 SF(/)2.972 E F0(,)A F1($) -2.972 E F0(,)A F1<92>2.972 E F0(,)A(and)108 96 Q F1(=)3.611 E F0 1.111 -(and an)3.611 F 3.611(yo)-.15 G 3.611(ft)-3.611 G 1.111(he shell)-3.611 -F/F2 10/Times-Italic@0 SF(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.412 -.15(ve m)-.15 H -1.112(ay not appear in an alias).15 F 3.62(name. The)108 108 R 1.12 +(The characters)5.472 F F3(/)2.972 E F0(,)A F3($)2.972 E F0(,)A F3<92> +2.972 E F0(,)A(and)108 144 Q F3(=)3.611 E F0 1.111(and an)3.611 F 3.611 +(yo)-.15 G 3.611(ft)-3.611 G 1.111(he shell)-3.611 F F2(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.412 -.15(ve m)-.15 H 1.112 +(ay not appear in an alias).15 F 3.62(name. The)108 156 R 1.12 (replacement te)3.62 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.119 -(The \214rst)6.119 F -.1(wo)108 120 S .513(rd of the replacement te).1 F +(The \214rst)6.119 F -.1(wo)108 168 S .513(rd of the replacement te).1 F .513(xt is tested for aliases, b)-.15 F .513(ut a w)-.2 F .514 (ord that is identical to an alias being e)-.1 F .514(xpanded is)-.15 F -.296(not e)108 132 R .296(xpanded a second time.)-.15 F .296 -(This means that one may alias)5.296 F F1(ls)2.796 E F0(to)2.796 E F1 -.296(ls \255F)2.796 F F0 2.796(,f)C .295(or instance, and)-2.796 F F1 -(bash)2.795 E F0 .295(does not try)2.795 F .542(to recursi)108 144 R +.296(not e)108 180 R .296(xpanded a second time.)-.15 F .296 +(This means that one may alias)5.296 F F3(ls)2.796 E F0(to)2.796 E F3 +.296(ls \255F)2.796 F F0 2.796(,f)C .295(or instance, and)-2.796 F F3 +(bash)2.795 E F0 .295(does not try)2.795 F .542(to recursi)108 192 R -.15(ve)-.25 G .542(ly e).15 F .542(xpand the replacement te)-.15 F 3.042(xt. If)-.15 F .543(the last character of the alias v)3.042 F .543 (alue is a)-.25 F F2(blank)3.043 E F0 3.043(,t).67 G .543(hen the ne) --3.043 F(xt)-.15 E(command w)108 156 Q(ord follo)-.1 E +-3.043 F(xt)-.15 E(command w)108 204 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 172.8 Q F1(alias)2.5 E F0 -(command, and remo)2.5 E -.15(ve)-.15 G 2.5(dw).15 G(ith the)-2.5 E F1 +E(Aliases are created and listed with the)108 220.8 Q F3(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 F3 (unalias)2.5 E F0(command.)2.5 E .284 -(There is no mechanism for using ar)108 189.6 R .284 +(There is no mechanism for using ar)108 237.6 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 201.6 Q/F3 9/Times-Bold@0 SF(FUNCTIONS)2.5 E F0(belo)2.25 E(w\).) --.25 E 1.22(Aliases are not e)108 218.4 R 1.22 +108 249.6 Q F4(FUNCTIONS)2.5 E F0(belo)2.25 E(w\).)-.25 E 1.22 +(Aliases are not e)108 266.4 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 F1(expand_aliases)3.72 E F0 1.22 -(shell option is set)3.72 F(using)108 230.4 Q F1(shopt)2.5 E F0 -(\(see the description of)2.5 E F1(shopt)2.5 E F0(under)2.5 E F3 +.15 G 1.22(nless the)-3.72 F F3(expand_aliases)3.72 E F0 1.22 +(shell option is set)3.72 F(using)108 278.4 Q F3(shopt)2.5 E F0 +(\(see the description of)2.5 E F3(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 .436 (The rules concerning the de\214nition and use of aliases are some)108 -247.2 R .435(what confusing.)-.25 F F1(Bash)5.435 E F0(al)2.935 E -.1 +295.2 R .435(what confusing.)-.25 F F3(Bash)5.435 E F0(al)2.935 E -.1 (wa)-.1 G .435(ys reads at least).1 F .337 -(one complete line of input before e)108 259.2 R -.15(xe)-.15 G .338 +(one complete line of input before e)108 307.2 R -.15(xe)-.15 G .338 (cuting an).15 F 2.838(yo)-.15 G 2.838(ft)-2.838 G .338 (he commands on that line.)-2.838 F .338(Aliases are e)5.338 F .338 -(xpanded when)-.15 F 3.404(ac)108 271.2 S .904 +(xpanded when)-.15 F 3.404(ac)108 319.2 S .904 (ommand is read, not when it is e)-3.404 F -.15(xe)-.15 G 3.404 (cuted. Therefore,).15 F .904 (an alias de\214nition appearing on the same line as)3.404 F 1.161 -(another command does not tak)108 283.2 R 3.662(ee)-.1 G -.25(ff)-3.662 +(another command does not tak)108 331.2 R 3.662(ee)-.1 G -.25(ff)-3.662 G 1.162(ect until the ne).25 F 1.162(xt line of input is read.)-.15 F 1.162(The commands follo)6.162 F 1.162(wing the)-.25 F .277 -(alias de\214nition on that line are not af)108 295.2 R .277 +(alias de\214nition on that line are not af)108 343.2 R .277 (fected by the ne)-.25 F 2.777(wa)-.25 G 2.777(lias. This)-2.777 F(beha) 2.777 E .277(vior is also an issue when functions)-.2 F .698(are e)108 -307.2 R -.15(xe)-.15 G 3.198(cuted. Aliases).15 F .698(are e)3.198 F +355.2 R -.15(xe)-.15 G 3.198(cuted. Aliases).15 F .698(are e)3.198 F .699(xpanded when a function de\214nition is read, not when the functio\ n is e)-.15 F -.15(xe)-.15 G(cuted,).15 E .613 -(because a function de\214nition is itself a command.)108 319.2 R .612 +(because a function de\214nition is itself a command.)108 367.2 R .612 (As a consequence, aliases de\214ned in a function are not)5.612 F -.2 -(av)108 331.2 S .058(ailable until after that function is e)-.05 F -.15 +(av)108 379.2 S .058(ailable until after that function is e)-.05 F -.15 (xe)-.15 G 2.558(cuted. T).15 F 2.558(ob)-.8 G 2.558(es)-2.558 G .058 (afe, al)-2.558 F -.1(wa)-.1 G .059 (ys put alias de\214nitions on a separate line, and).1 F(do not use)108 -343.2 Q F1(alias)2.5 E F0(in compound commands.)2.5 E -.15(Fo)108 360 S +391.2 Q F3(alias)2.5 E F0(in compound commands.)2.5 E -.15(Fo)108 408 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/F4 10.95 -/Times-Bold@0 SF(FUNCTIONS)72 376.8 Q F0 3.468(As)108 388.8 S .968 +(ry purpose, aliases are superseded by shell functions.).15 E F1 +(FUNCTIONS)72 424.8 Q F0 3.468(As)108 436.8 S .968 (hell function, de\214ned as described abo)-3.468 F 1.267 -.15(ve u)-.15 -H(nder).15 E F3 .967(SHELL GRAMMAR)3.467 F/F5 9/Times-Roman@0 SF(,)A F0 -.967(stores a series of commands for)3.217 F 1.001(later e)108 400.8 R +H(nder).15 E F4 .967(SHELL GRAMMAR)3.467 F/F5 9/Times-Roman@0 SF(,)A F0 +.967(stores a series of commands for)3.217 F 1.001(later e)108 448.8 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 412.8 R -.15(xe)-.15 +(mands associated with that function name is e)108 460.8 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 424.8 R 2.535(wp)-.25 G .036 +(shell; no ne)108 472.8 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 436.8 R -.15(xe)-.15 G .64(cuted, the ar).15 F +F .64(function is e)108 484.8 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 448.8 -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 460.8 Q F3(FUNCN)2.5 E +-.18 F -.15(xe)-.15 G(cution.).15 E .532(The special parameter)108 496.8 +R F3(#)3.032 E F0 .532(is updated to re\215ect the change.)3.032 F .532 +(Special parameter)5.532 F F3(0)3.033 E F0 .533(is unchanged.)3.033 F +.533(The \214rst ele-)5.533 F(ment of the)108 508.8 Q F4(FUNCN)2.5 E (AME)-.18 E F0 -.25(va)2.25 G (riable is set to the name of the function while the function is e).25 E -.15(xe)-.15 G(cuting.).15 E 1.25(All other aspects of the shell e)108 -477.6 R -.15(xe)-.15 G 1.25(cution en).15 F 1.25 +525.6 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 489.6 R 1.214(xceptions: the)-.15 F F3(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 F3(SHELL)3.715 E -.09(BU)108 501.6 S(IL) +1.214(these e)108 537.6 R 1.214(xceptions: the)-.15 F F4(DEB)3.714 E(UG) +-.09 E F0(and)3.464 E F3(RETURN)3.715 E F0 1.215 +(traps \(see the description of the)3.715 F F3(trap)3.715 E F0 -.2(bu) +3.715 G 1.215(iltin under).2 F F4(SHELL)3.715 E -.09(BU)108 549.6 S(IL) .09 E .479(TIN COMMANDS)-.828 F F0(belo)2.729 E .479 (w\) are not inherited unless the function has been gi)-.25 F -.15(ve) --.25 G 2.978(nt).15 G(he)-2.978 E F1(trace)2.978 E F0(attrib)2.978 E -.478(ute \(see)-.2 F .42(the description of the)108 513.6 R F3(declar) +-.25 G 2.978(nt).15 G(he)-2.978 E F3(trace)2.978 E F0(attrib)2.978 E +.478(ute \(see)-.2 F .42(the description of the)108 561.6 R F4(declar) 2.92 E(e)-.162 E F0 -.2(bu)2.67 G .42(iltin belo).2 F .42(w\) or the) --.25 F F1 .42(\255o functrace)2.92 F F0 .42 -(shell option has been enabled with the)2.92 F F1(set)2.921 E F0 -.2(bu) -108 525.6 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 F3(ERR)2.571 E F0 .071(trap is not inher)2.321 -F(-)-.2 E(ited unless the)108 537.6 Q F1(\255o errtrace)2.5 E F0 -(shell option has been enabled.)2.5 E -1.11(Va)108 554.4 S .655 -(riables local to the function may be declared with the)1.11 F F1(local) +-.25 F F3 .42(\255o functrace)2.92 F F0 .42 +(shell option has been enabled with the)2.92 F F3(set)2.921 E F0 -.2(bu) +108 573.6 S .072(iltin \(in which case all functions inherit the).2 F F3 +(DEB)2.572 E(UG)-.1 E F0(and)2.572 E F3(RETURN)2.572 E F0 .072 +(traps\), and the)2.572 F F4(ERR)2.571 E F0 .071(trap is not inher)2.321 +F(-)-.2 E(ited unless the)108 585.6 Q F3(\255o errtrace)2.5 E F0 +(shell option has been enabled.)2.5 E -1.11(Va)108 602.4 S .655 +(riables local to the function may be declared with the)1.11 F F3(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 566.4 R .051 +3.156(,v)-.65 G .656(ariables and)-3.406 F .051(their v)108 614.4 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 F1(local)2.55 E +-.55 G 2.55(fav)-5.051 G .05(ariable is declared)-2.8 F F3(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 578.4 R 1.186(Local v)6.186 F -(ariables)-.25 E("shado)108 590.4 Q .155(w" v)-.25 F .155 +luding the functions it calls\).)108 626.4 R 1.186(Local v)6.186 F +(ariables)-.25 E("shado)108 638.4 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 -602.4 R .67(ariable of the same name: references and assignments refer \ -to the local v)-.25 F(ari-)-.25 E .688(able, lea)108 614.4 R .688 +650.4 R .67(ariable of the same name: references and assignments refer \ +to the local v)-.25 F(ari-)-.25 E .688(able, lea)108 662.4 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 626.4 Q .726 -(The shell uses)108 643.2 R F2 .726(dynamic scoping)3.226 F F0 .726 +(ariable is once ag)-.25 F(ain)-.05 E(visible.)108 674.4 Q .726 +(The shell uses)108 691.2 R F2 .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 655.2 R .008 +(th dynamic scoping,).4 F .008(visible v)108 703.2 R .008 (ariables and their v)-.25 F .007 (alues are a result of the sequence of function calls that caused e)-.25 F -.15(xe)-.15 G .007(cution to reach).15 F .813(the current function.) -108 667.2 R .813(The v)5.813 F .813(alue of a v)-.25 F .813 +108 715.2 R .813(The v)5.813 F .813(alue of a v)-.25 F .813 (ariable that a function sees depends on its v)-.25 F .814 -(alue within its caller)-.25 F 3.314(,i)-.4 G(f)-3.314 E(an)108 679.2 Q +(alue within its caller)-.25 F 3.314(,i)-.4 G(f)-3.314 E(an)108 727.2 Q 2.117 -.65(y, w)-.15 H .817 (hether that caller is the "global" scope or another shell function.).65 -F .816(This is also the v)5.816 F .816(alue that a local)-.25 F -.25(va) -108 691.2 S(riable declaration "shado).25 E(ws", and the v)-.25 E -(alue that is restored when the function returns.)-.25 E -.15(Fo)108 708 -S 2.723(re).15 G .223(xample, if a v)-2.873 F(ariable)-.25 E F2(var) -2.723 E F0 .223(is declared as local in function)2.723 F F2(func1)2.723 -E F0 2.724(,a)C(nd)-2.724 E F2(func1)2.724 E F0 .224 -(calls another function)2.724 F F2(func2)2.724 E F0(,)A .464 -(references to)108 720 R F2(var)2.964 E F0 .464(made from within)2.964 F -F2(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 F2(var)2.963 E F0(from) -2.963 E F2(func1)2.963 E F0 2.963(,s)C(hado)-2.963 E .463(wing an)-.25 F -(y)-.15 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(30)192.895 E 0 -Cg EP +F .816(This is also the v)5.816 F .816(alue that a local)-.25 F +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(30)185.955 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(global v)108 84 Q -(ariable named)-.25 E/F1 10/Times-Italic@0 SF(var)2.5 E F0(.)A(The)108 -100.8 Q/F2 10/Times-Bold@0 SF(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 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.25(va)108 84 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 +100.8 S 2.723(re).15 G .223(xample, if a v)-2.873 F(ariable)-.25 E/F1 10 +/Times-Italic@0 SF(var)2.723 E F0 .223(is declared as local in function) +2.723 F F1(func1)2.723 E F0 2.724(,a)C(nd)-2.724 E F1(func1)2.724 E F0 +.224(calls another function)2.724 F F1(func2)2.724 E F0(,)A .464 +(references to)108 112.8 R F1(var)2.964 E F0 .464(made from within)2.964 +F F1(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 F1(var)2.963 E F0(from) +2.963 E F1(func1)2.963 E F0 2.963(,s)C(hado)-2.963 E .463(wing an)-.25 F +(y)-.15 E(global v)108 124.8 Q(ariable named)-.25 E F1(var)2.5 E F0(.)A +(The)108 141.6 Q/F2 10/Times-Bold@0 SF(unset)2.982 E F0 -.2(bu)2.982 G +.482(iltin also acts using the same dynamic scope: if a v).2 F .483 (ariable is local to the current scope,)-.25 F F2(unset)2.983 E F0 .19 -(will unset it; otherwise the unset will refer to the v)108 112.8 R .19 +(will unset it; otherwise the unset will refer to the v)108 153.6 R .19 (ariable found in an)-.25 F 2.69(yc)-.15 G .19 (alling scope as described abo)-2.69 F -.15(ve)-.15 G 5.19(.I).15 G(f) --5.19 E 3.575(av)108 124.8 S 1.076(ariable at the local scope is unset,\ +-5.19 E 3.575(av)108 165.6 S 1.076(ariable at the local scope is unset,\ it will remain so until it is reset in that scope or until the functio\ -n)-3.825 F 3.247(returns. If)108 136.8 R .747(the unset acts on a v) +n)-3.825 F 3.247(returns. If)108 177.6 R .747(the unset acts on a v) 3.247 F .747(ariable at a pre)-.25 F .747(vious scope, an)-.25 F 3.247 (yi)-.15 G .747(nstance of a v)-3.247 F .747 -(ariable with that name that)-.25 F(had been shado)108 148.8 Q -(wed will become visible.)-.25 E(The)108 165.6 Q F2(FUNCNEST)3.528 E F0 +(ariable with that name that)-.25 F(had been shado)108 189.6 Q +(wed will become visible.)-.25 E(The)108 206.4 Q F2(FUNCNEST)3.528 E F0 -.25(va)3.528 G 1.028(riable, if set to a numeric v).25 F 1.028 (alue greater than 0, de\214nes a maximum function nesting)-.25 F(le)108 -177.6 Q -.15(ve)-.25 G 2.5(l. Function).15 F(in)2.5 E -.2(vo)-.4 G +218.4 Q -.15(ve)-.25 G 2.5(l. Function).15 F(in)2.5 E -.2(vo)-.4 G (cations that e).2 E(xceed the limit cause the entire command to abort.) --.15 E .044(If the b)108 194.4 R .043(uiltin command)-.2 F F2 -.18(re) +-.15 E .044(If the b)108 235.2 R .043(uiltin command)-.2 F F2 -.18(re) 2.543 G(tur).18 E(n)-.15 E F0 .043(is e)2.543 F -.15(xe)-.15 G .043 (cuted in a function, the function completes and e).15 F -.15(xe)-.15 G -.043(cution resumes with).15 F 1.011(the ne)108 206.4 R 1.011 +.043(cution resumes with).15 F 1.011(the ne)108 247.2 R 1.011 (xt command after the function call.)-.15 F(An)6.011 E 3.511(yc)-.15 G 1.011(ommand associated with the)-3.511 F F2(RETURN)3.512 E F0 1.012 -(trap is e)3.512 F -.15(xe)-.15 G(cuted).15 E .214(before e)108 218.4 R +(trap is e)3.512 F -.15(xe)-.15 G(cuted).15 E .214(before e)108 259.2 R -.15(xe)-.15 G .214(cution resumes.).15 F .213 (When a function completes, the v)5.214 F .213 (alues of the positional parameters and the spe-)-.25 F(cial parameter) -108 230.4 Q F2(#)2.5 E F0(are restored to the v)2.5 E(alues the)-.25 E +108 271.2 Q F2(#)2.5 E F0(are restored to the v)2.5 E(alues the)-.25 E 2.5(yh)-.15 G(ad prior to the function')-2.5 E 2.5(se)-.55 G -.15(xe) -2.65 G(cution.).15 E 1.358 -(Function names and de\214nitions may be listed with the)108 247.2 R F2 +(Function names and de\214nitions may be listed with the)108 288 R F2 3.858 E F0 1.358(option to the)3.858 F F2(declar)3.858 E(e)-.18 E F0(or)3.859 E F2(typeset)3.859 E F0 -.2(bu)3.859 G 1.359(iltin com-).2 F -3.39(mands. The)108 259.2 R F23.39 E F0 .89(option to)3.39 F F2 +3.39(mands. The)108 300 R F23.39 E F0 .89(option to)3.39 F F2 (declar)3.39 E(e)-.18 E F0(or)3.39 E F2(typeset)3.39 E F0 .89 (will list the function names only \(and optionally the source)3.39 F -.326(\214le and line number)108 271.2 R 2.826(,i)-.4 G 2.826(ft)-2.826 G +.326(\214le and line number)108 312 R 2.826(,i)-.4 G 2.826(ft)-2.826 G (he)-2.826 E F2(extdeb)2.826 E(ug)-.2 E F0 .326 (shell option is enabled\).)2.826 F .327(Functions may be e)5.327 F .327 -(xported so that subshells)-.15 F 1.298(automatically ha)108 283.2 R -1.598 -.15(ve t)-.2 H 1.298(hem de\214ned with the).15 F F23.798 E -F0 1.298(option to the)3.798 F F2(export)3.797 E F0 -.2(bu)3.797 G 3.797 -(iltin. A).2 F 1.297(function de\214nition may be)3.797 F .16 -(deleted using the)108 295.2 R F22.66 E F0 .16(option to the)2.66 -F F2(unset)2.66 E F0 -.2(bu)2.66 G 2.661(iltin. Note).2 F .161 -(that shell functions and v)2.661 F .161(ariables with the same name) --.25 F 1.325(may result in multiple identically-named entries in the en) -108 307.2 R 1.325(vironment passed to the shell')-.4 F 3.825(sc)-.55 G -3.825(hildren. Care)-3.825 F(should be tak)108 319.2 Q -(en in cases where this may cause a problem.)-.1 E .371 -(Functions may be recursi)108 336 R -.15(ve)-.25 G 5.371(.T).15 G(he) --5.371 E F2(FUNCNEST)2.871 E F0 -.25(va)2.871 G .371 +(xported so that subshells)-.15 F 1.298(automatically ha)108 324 R 1.598 +-.15(ve t)-.2 H 1.298(hem de\214ned with the).15 F F23.798 E F0 +1.298(option to the)3.798 F F2(export)3.797 E F0 -.2(bu)3.797 G 3.797 +(iltin. A).2 F 1.297(function de\214nition may be)3.797 F +(deleted using the)108 336 Q F22.5 E F0(option to the)2.5 E F2 +(unset)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .371(Functions may be recursi) +108 352.8 R -.15(ve)-.25 G 5.371(.T).15 G(he)-5.371 E F2(FUNCNEST)2.871 +E F0 -.25(va)2.871 G .371 (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 348 R -.2(vo)-.4 G +(stack and restrict the number of function in)108 364.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(recursi)108 360 Q .3 +(ault, no limit is imposed on the number of)-.1 F(recursi)108 376.8 Q .3 -.15(ve c)-.25 H(alls.).15 E/F3 10.95/Times-Bold@0 SF(ARITHMETIC EV)72 -376.8 Q(ALU)-1.478 E -1.04(AT)-.657 G(ION)1.04 E F0 2.297 -(The shell allo)108 388.8 R 2.297(ws arithmetic e)-.25 F 2.297 +393.6 Q(ALU)-1.478 E -1.04(AT)-.657 G(ION)1.04 E F0 2.297 +(The shell allo)108 405.6 R 2.297(ws arithmetic e)-.25 F 2.297 (xpressions to be e)-.15 F -.25(va)-.25 G 2.297 (luated, under certain circumstances \(see the).25 F F2(let)4.798 E F0 -(and)4.798 E F2(declar)108 400.8 Q(e)-.18 E F0 -.2(bu)2.684 G .183 +(and)4.798 E F2(declar)108 417.6 Q(e)-.18 E F0 -.2(bu)2.684 G .183 (iltin commands, the).2 F F2(\(\()2.683 E F0 .183(compound command, and) 2.683 F F2 .183(Arithmetic Expansion)2.683 F F0 2.683(\). Ev)B .183 -(aluation is done in)-.25 F<8c78>108 412.8 Q 1.057(ed-width inte)-.15 F +(aluation is done in)-.25 F<8c78>108 429.6 Q 1.057(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 .829 -(The operators and their precedence, associati)108 424.8 R(vity)-.25 E +(The operators and their precedence, associati)108 441.6 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 .828(The fol-)5.828 F -(lo)108 436.8 Q .439(wing list of operators is grouped into le)-.25 F +(lo)108 453.6 Q .439(wing list of operators is grouped into le)-.25 F -.15(ve)-.25 G .439(ls of equal-precedence operators.).15 F .44(The le) 5.44 F -.15(ve)-.25 G .44(ls are listed in order).15 F -(of decreasing precedence.)108 448.8 Q F1(id)108 465.6 Q F2(++)A F1(id) -2.5 E F2A F0 -.25(va)144 477.6 S -(riable post-increment and post-decrement).25 E F2(++)108 489.6 Q F1(id) -A F22.5 E F1(id)A F0 -.25(va)144 501.6 S -(riable pre-increment and pre-decrement).25 E F2 2.5108 513.6 S F0 -(unary minus and plus)144 513.6 Q F2 2.5(!~)108 525.6 S F0 -(logical and bitwise ne)144 525.6 Q -.05(ga)-.15 G(tion).05 E F2(**)108 -537.6 Q F0 -.15(ex)144 537.6 S(ponentiation).15 E F2 2.5(*/%)108 549.6 S -F0(multiplication, di)144 549.6 Q(vision, remainder)-.25 E F2 2.5<2bad> -108 561.6 S F0(addition, subtraction)144 561.6 Q F2(<< >>)108 573.6 Q F0 -(left and right bitwise shifts)144 573.6 Q F2(<= >= < >)108 585.6 Q F0 -(comparison)144 597.6 Q F2(== !=)108 609.6 Q F0(equality and inequality) -144 609.6 Q F2(&)108 621.6 Q F0(bitwise AND)144 621.6 Q F2(^)108 633.6 Q -F0(bitwise e)144 633.6 Q(xclusi)-.15 E .3 -.15(ve O)-.25 H(R).15 E F2(|) -108 645.6 Q F0(bitwise OR)144 645.6 Q F2(&&)108 657.6 Q F0(logical AND) -144 657.6 Q F2(||)108 669.6 Q F0(logical OR)144 669.6 Q F1 -.2(ex)108 -681.6 S(pr).2 E F2(?)A F1 -.2(ex)C(pr).2 E F2(:)A F1 -.2(ex)C(pr).2 E F0 -(conditional operator)144 693.6 Q F2 2.5(=*)108 705.6 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 717.6 Q(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(31)192.895 E 0 Cg EP +(of decreasing precedence.)108 465.6 Q F1(id)108 482.4 Q F2(++)A F1(id) +2.5 E F2A F0 -.25(va)144 494.4 S +(riable post-increment and post-decrement).25 E F2(++)108 506.4 Q F1(id) +A F22.5 E F1(id)A F0 -.25(va)144 518.4 S +(riable pre-increment and pre-decrement).25 E F2 2.5108 530.4 S F0 +(unary minus and plus)144 530.4 Q F2 2.5(!~)108 542.4 S F0 +(logical and bitwise ne)144 542.4 Q -.05(ga)-.15 G(tion).05 E F2(**)108 +554.4 Q F0 -.15(ex)144 554.4 S(ponentiation).15 E F2 2.5(*/%)108 566.4 S +F0(multiplication, di)144 566.4 Q(vision, remainder)-.25 E F2 2.5<2bad> +108 578.4 S F0(addition, subtraction)144 578.4 Q F2(<< >>)108 590.4 Q F0 +(left and right bitwise shifts)144 590.4 Q F2(<= >= < >)108 602.4 Q F0 +(comparison)144 614.4 Q F2(== !=)108 626.4 Q F0(equality and inequality) +144 626.4 Q F2(&)108 638.4 Q F0(bitwise AND)144 638.4 Q F2(^)108 650.4 Q +F0(bitwise e)144 650.4 Q(xclusi)-.15 E .3 -.15(ve O)-.25 H(R).15 E F2(|) +108 662.4 Q F0(bitwise OR)144 662.4 Q F2(&&)108 674.4 Q F0(logical AND) +144 674.4 Q F2(||)108 686.4 Q F0(logical OR)144 686.4 Q F1 -.2(ex)108 +698.4 S(pr).2 E F2(?)A F1 -.2(ex)C(pr).2 E F2(:)A F1 -.2(ex)C(pr).2 E F0 +(conditional operator)144 710.4 Q(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(31)185.955 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/F1 10 -/Times-Italic@0 SF -.2(ex)108 84 S(pr1).2 E/F2 10/Times-Bold@0 SF(,)2.5 -E F1 -.2(ex)2.5 G(pr2).2 E F0(comma)144 96 Q .68(Shell v)108 112.8 R .68 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF 2.5(=*)108 84 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 96 Q/F2 10 +/Times-Italic@0 SF -.2(ex)108 108 S(pr1).2 E F1(,)2.5 E F2 -.2(ex)2.5 G +(pr2).2 E F0(comma)144 120 Q .68(Shell v)108 136.8 R .68 (ariables are allo)-.25 F .68(wed as operands; parameter e)-.25 F .68 (xpansion is performed before the e)-.15 F .68(xpression is e)-.15 F --.25(va)-.25 G(lu-).25 E 3.507(ated. W)108 124.8 R 1.007(ithin an e)-.4 +-.25(va)-.25 G(lu-).25 E 3.507(ated. W)108 148.8 R 1.007(ithin an e)-.4 F 1.007(xpression, shell v)-.15 F 1.007 (ariables may also be referenced by name without using the parameter) --.25 F -.15(ex)108 136.8 S 1.041(pansion syntax.).15 F 3.541(As)6.041 G +-.25 F -.15(ex)108 160.8 S 1.041(pansion syntax.).15 F 3.541(As)6.041 G 1.041(hell v)-3.541 F 1.041(ariable that is null or unset e)-.25 F -.25 (va)-.25 G 1.04(luates to 0 when referenced by name without).25 F 1.466 -(using the parameter e)108 148.8 R 1.466(xpansion syntax.)-.15 F 1.467 +(using the parameter e)108 172.8 R 1.466(xpansion syntax.)-.15 F 1.467 (The v)6.466 F 1.467(alue of a v)-.25 F 1.467(ariable is e)-.25 F -.25 (va)-.25 G 1.467(luated as an arithmetic e).25 F(xpression)-.15 E 1.39 -(when it is referenced, or when a v)108 160.8 R 1.389 +(when it is referenced, or when a v)108 184.8 R 1.389 (ariable which has been gi)-.25 F -.15(ve)-.25 G 3.889(nt).15 G(he) --3.889 E F1(inte)3.889 E -.1(ge)-.4 G(r).1 E F0(attrib)3.889 E 1.389 -(ute using)-.2 F F2(declar)3.889 E 3.889(e-)-.18 G(i)-3.889 E F0(is) -3.889 E .332(assigned a v)108 172.8 R 2.832(alue. A)-.25 F .332(null v) +-3.889 E F2(inte)3.889 E -.1(ge)-.4 G(r).1 E F0(attrib)3.889 E 1.389 +(ute using)-.2 F F1(declar)3.889 E 3.889(e-)-.18 G(i)-3.889 E F0(is) +3.889 E .332(assigned a v)108 196.8 R 2.832(alue. A)-.25 F .332(null v) 2.832 F .332(alue e)-.25 F -.25(va)-.25 G .332(luates to 0.).25 F 2.832 (As)5.332 G .332(hell v)-2.832 F .332(ariable need not ha)-.25 F .632 --.15(ve i)-.2 H(ts).15 E F1(inte)2.832 E -.1(ge)-.4 G(r).1 E F0(attrib) -2.832 E .333(ute turned on)-.2 F(to be used in an e)108 184.8 Q +-.15(ve i)-.2 H(ts).15 E F2(inte)2.832 E -.1(ge)-.4 G(r).1 E F0(attrib) +2.832 E .333(ute turned on)-.2 F(to be used in an e)108 208.8 Q (xpression.)-.15 E 1.406 -(Constants with a leading 0 are interpreted as octal numbers.)108 201.6 +(Constants with a leading 0 are interpreted as octal numbers.)108 225.6 R 3.906(Al)6.406 G 1.406(eading 0x or 0X denotes he)-3.906 F(xadecimal.) --.15 E .112(Otherwise, numbers tak)108 213.6 R 2.612(et)-.1 G .112 -(he form [)-2.612 F F1(base#)A F0 .112(]n, where the optional)B F1(base) +-.15 E .112(Otherwise, numbers tak)108 237.6 R 2.612(et)-.1 G .112 +(he form [)-2.612 F F2(base#)A F0 .112(]n, where the optional)B F2(base) 2.612 E F0 .113(is a decimal number between 2 and 64)2.612 F .534 -(representing the arithmetic base, and)108 225.6 R F1(n)3.034 E F0 .534 -(is a number in that base.)3.034 F(If)5.533 E F1(base#)3.033 E F0 .533 +(representing the arithmetic base, and)108 249.6 R F2(n)3.034 E F0 .534 +(is a number in that base.)3.034 F(If)5.533 E F2(base#)3.033 E F0 .533 (is omitted, then base 10 is used.)3.033 F .512(When specifying)108 -237.6 R F1(n)3.012 E F0 3.012(,t)C .512 +261.6 R F2(n)3.012 E F0 3.012(,t)C .512 (he digits greater than 9 are represented by the lo)-3.012 F .513 (wercase letters, the uppercase letters,)-.25 F .943 -(@, and _, in that order)108 249.6 R 5.943(.I)-.55 G(f)-5.943 E F1(base) +(@, and _, in that order)108 273.6 R 5.943(.I)-.55 G(f)-5.943 E F2(base) 3.443 E F0 .942(is less than or equal to 36, lo)3.443 F .942 (wercase and uppercase letters may be used)-.25 F -(interchangeably to represent numbers between 10 and 35.)108 261.6 Q -.234(Operators are e)108 278.4 R -.25(va)-.25 G .234 +(interchangeably to represent numbers between 10 and 35.)108 285.6 Q +.234(Operators are e)108 302.4 R -.25(va)-.25 G .234 (luated in order of precedence.).25 F(Sub-e)5.234 E .234 (xpressions in parentheses are e)-.15 F -.25(va)-.25 G .235 -(luated \214rst and may).25 F -.15(ove)108 290.4 S +(luated \214rst and may).25 F -.15(ove)108 314.4 S (rride the precedence rules abo).15 E -.15(ve)-.15 G(.).15 E/F3 10.95 -/Times-Bold@0 SF(CONDITION)72 307.2 Q(AL EXPRESSIONS)-.219 E F0 .256 -(Conditional e)108 319.2 R .256(xpressions are used by the)-.15 F F2([[) -2.755 E F0 .255(compound command and the)2.755 F F2(test)2.755 E F0(and) -2.755 E F2([)2.755 E F0 -.2(bu)2.755 G .255(iltin commands to test).2 F -.77(\214le attrib)108 331.2 R .77 +/Times-Bold@0 SF(CONDITION)72 331.2 Q(AL EXPRESSIONS)-.219 E F0 .256 +(Conditional e)108 343.2 R .256(xpressions are used by the)-.15 F F1([[) +2.755 E F0 .255(compound command and the)2.755 F F1(test)2.755 E F0(and) +2.755 E F1([)2.755 E F0 -.2(bu)2.755 G .255(iltin commands to test).2 F +.77(\214le attrib)108 355.2 R .77 (utes and perform string and arithmetic comparisons.)-.2 F .77 (Expressions are formed from the follo)5.77 F(wing)-.25 E .426 -(unary or binary primaries.)108 343.2 R F2(Bash)5.426 E F0 .426 +(unary or binary primaries.)108 367.2 R F1(Bash)5.426 E F0 .426 (handles se)2.926 F -.15(ve)-.25 G .426 (ral \214lenames specially when the).15 F 2.926(ya)-.15 G .426 (re used in e)-2.926 F 2.926(xpressions. If)-.15 F .193 -(the operating system on which)108 355.2 R F2(bash)2.693 E F0 .193 +(the operating system on which)108 379.2 R F1(bash)2.693 E F0 .193 (is running pro)2.693 F .193 (vides these special \214les, bash will use them; otherwise it)-.15 F -.589(will emulate them internally with this beha)108 367.2 R .589 -(vior: If an)-.2 F(y)-.15 E F1(\214le)3.089 E F0(ar)3.089 E .589 -(gument to one of the primaries is of the form)-.18 F F1(/de)108 379.2 Q -(v/fd/n)-.15 E F0 2.916(,t)C .416(hen \214le descriptor)-2.916 F F1(n) -2.917 E F0 .417(is check)2.917 F 2.917(ed. If)-.1 F(the)2.917 E F1 +.589(will emulate them internally with this beha)108 391.2 R .589 +(vior: If an)-.2 F(y)-.15 E F2(\214le)3.089 E F0(ar)3.089 E .589 +(gument to one of the primaries is of the form)-.18 F F2(/de)108 403.2 Q +(v/fd/n)-.15 E F0 2.916(,t)C .416(hen \214le descriptor)-2.916 F F2(n) +2.917 E F0 .417(is check)2.917 F 2.917(ed. If)-.1 F(the)2.917 E F2 (\214le)2.917 E F0(ar)2.917 E .417 -(gument to one of the primaries is one of)-.18 F F1(/de)2.917 E(v/stdin) --.15 E F0(,)A F1(/de)108 391.2 Q(v/stdout)-.15 E F0 2.5(,o)C(r)-2.5 E F1 +(gument to one of the primaries is one of)-.18 F F2(/de)2.917 E(v/stdin) +-.15 E F0(,)A F2(/de)108 415.2 Q(v/stdout)-.15 E F0 2.5(,o)C(r)-2.5 E F2 (/de)2.5 E(v/stderr)-.15 E F0 2.5<2c8c>C (le descriptor 0, 1, or 2, respecti)-2.5 E -.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 408 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 420 Q -1.095(When used with)108 438 R F2([[)3.595 E F0 3.595(,t)C(he)-3.595 E -F2(<)3.595 E F0(and)3.595 E F2(>)3.595 E F0 1.095(operators sort le) +108 432 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 444 Q +1.095(When used with)108 462 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) 3.595 F 1.095(xicographically using the current locale.)-.15 F(The)6.096 -E F2(test)3.596 E F0(com-)3.596 E(mand sorts using ASCII ordering.)108 -450 Q F2108 474 Q F1(\214le)2.5 E F0 -.35(Tr)144 474 S(ue if).35 E -F1(\214le)2.5 E F0 -.15(ex)2.5 G(ists.).15 E F2108 486 Q F1 -(\214le)2.5 E F0 -.35(Tr)144 486 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 F2108 498 Q F1 -(\214le)2.5 E F0 -.35(Tr)144 498 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 F2108 510 -Q F1(\214le)2.5 E F0 -.35(Tr)144 510 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 F2108 522 Q -F1(\214le)2.5 E F0 -.35(Tr)144 522 S(ue if).35 E F1(\214le)2.5 E F0 -.15 -(ex)2.5 G(ists.).15 E F2108 534 Q F1(\214le)2.5 E F0 -.35(Tr)144 -534 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 F2108 546 Q F1(\214le)2.5 E F0 -.35(Tr)144 -546 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and is set-group-id.).15 E F2108 558 Q F1(\214le)2.5 E F0 --.35(Tr)144 558 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and is a symbolic link.).15 E F2108 570 Q F1(\214le)2.5 E F0 --.35(Tr)144 570 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G +E F1(test)3.596 E F0(com-)3.596 E(mand sorts using ASCII ordering.)108 +474 Q F1108 498 Q F2(\214le)2.5 E F0 -.35(Tr)144 498 S(ue if).35 E +F2(\214le)2.5 E F0 -.15(ex)2.5 G(ists.).15 E F1108 510 Q F2 +(\214le)2.5 E F0 -.35(Tr)144 510 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 522 Q F2 +(\214le)2.5 E F0 -.35(Tr)144 522 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 F1108 534 +Q F2(\214le)2.5 E F0 -.35(Tr)144 534 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 F1108 546 Q +F2(\214le)2.5 E F0 -.35(Tr)144 546 S(ue if).35 E F2(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists.).15 E F1108 558 Q F2(\214le)2.5 E F0 -.35(Tr)144 +558 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 570 Q F2(\214le)2.5 E F0 -.35(Tr)144 +570 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 582 Q F2(\214le)2.5 E F0 +-.35(Tr)144 582 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 594 Q F2(\214le)2.5 E F0 +-.35(Tr)144 594 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G (ists and its `).15 E(`stick)-.74 E(y')-.15 E 2.5('b)-.74 G(it is set.) --2.5 E F2108 582 Q F1(\214le)2.5 E F0 -.35(Tr)144 582 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 F2108 594 Q F1(\214le)2.5 E F0 -.35(Tr)144 594 S(ue if).35 E -F1(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is readable.).15 E F2108 -606 Q F1(\214le)2.5 E F0 -.35(Tr)144 606 S(ue if).35 E F1(\214le)2.5 E -F0 -.15(ex)2.5 G(ists and has a size greater than zero.).15 E F2 -108 618 Q F1(fd)2.5 E F0 -.35(Tr)144 618 S(ue if \214le descriptor).35 E -F1(fd)4.47 E F0(is open and refers to a terminal.)3.27 E F2108 630 -Q F1(\214le)2.5 E F0 -.35(Tr)144 630 S(ue if).35 E F1(\214le)2.5 E F0 --.15(ex)2.5 G(ists and its set-user).15 E(-id bit is set.)-.2 E F2 -108 642 Q F1(\214le)2.5 E F0 -.35(Tr)144 642 S(ue if).35 E F1(\214le)2.5 -E F0 -.15(ex)2.5 G(ists and is writable.).15 E F2108 654 Q F1 -(\214le)2.5 E F0 -.35(Tr)144 654 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 F2108 -666 Q F1(\214le)2.5 E F0 -.35(Tr)144 666 S(ue if).35 E F1(\214le)2.5 E +-2.5 E F1108 606 Q F2(\214le)2.5 E F0 -.35(Tr)144 606 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 618 Q F2(\214le)2.5 E F0 -.35(Tr)144 618 S(ue if).35 E +F2(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is readable.).15 E F1108 +630 Q F2(\214le)2.5 E F0 -.35(Tr)144 630 S(ue if).35 E F2(\214le)2.5 E +F0 -.15(ex)2.5 G(ists and has a size greater than zero.).15 E F1 +108 642 Q F2(fd)2.5 E F0 -.35(Tr)144 642 S(ue if \214le descriptor).35 E +F2(fd)4.47 E F0(is open and refers to a terminal.)3.27 E F1108 654 +Q F2(\214le)2.5 E F0 -.35(Tr)144 654 S(ue if).35 E F2(\214le)2.5 E F0 +-.15(ex)2.5 G(ists and its set-user).15 E(-id bit is set.)-.2 E F1 +108 666 Q F2(\214le)2.5 E F0 -.35(Tr)144 666 S(ue if).35 E F2(\214le)2.5 +E F0 -.15(ex)2.5 G(ists and is writable.).15 E F1108 678 Q F2 +(\214le)2.5 E F0 -.35(Tr)144 678 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 +690 Q F2(\214le)2.5 E F0 -.35(Tr)144 690 S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is o).15 E(wned by the ef)-.25 E(fecti)-.25 E -.3 -.15(ve g)-.25 H(roup id.).15 E F2108 678 Q F1(\214le)2.5 E F0 --.35(Tr)144 678 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and is a symbolic link.).15 E F2108 690 Q F1(\214le)2.5 E F0 --.35(Tr)144 690 S(ue if).35 E F1(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and has been modi\214ed since it w).15 E(as last read.)-.1 E F2 -108 702 Q F1(\214le)2.5 E F0 -.35(Tr)144 702 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 F2108 714 Q F1 -(\214le)2.5 E F0 -.35(Tr)144 714 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(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(32)192.895 E 0 Cg EP +.3 -.15(ve g)-.25 H(roup id.).15 E F1108 702 Q F2(\214le)2.5 E F0 +-.35(Tr)144 702 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 714 Q F2(\214le)2.5 E F0 +-.35(Tr)144 714 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 +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(32)185.955 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/F1 10 -/Times-Italic@0 SF(\214le1)108 84 Q/F2 10/Times-Bold@0 SF(\255ef)2.5 E -F1(\214le2)2.5 E F0 -.35(Tr)144 96 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 108 Q F02.5 E F2(nt)A -F1(\214le2)2.5 E F0 -.35(Tr)144 120 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 132 Q F02.5 E F2(ot)A F1(\214le2)2.5 E F0 -.35(Tr)144 -144 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 F2108 156 Q F1 -(optname)2.5 E F0 -.35(Tr)144 168 S .263(ue if the shell option).35 F F1 -(optname)2.992 E F0 .262(is enabled.)2.942 F .262 -(See the list of options under the description of the)5.262 F F2 -2.762 E F0(option to the)144 180 Q F2(set)2.5 E F0 -.2(bu)2.5 G -(iltin belo).2 E -.65(w.)-.25 G F2108 192 Q F1(varname)2.5 E F0 --.35(Tr)144 204 S(ue if the shell v).35 E(ariable)-.25 E F1(varname)2.79 -E F0(is set \(has been assigned a v)2.68 E(alue\).)-.25 E F2108 -216 Q F1(varname)2.5 E F0 -.35(Tr)144 228 S(ue if the shell v).35 E -(ariable)-.25 E F1(varname)2.79 E F0(is set and is a name reference.) -2.68 E F2108 240 Q F1(string)2.5 E F0 -.35(Tr)144 252 S -(ue if the length of).35 E F1(string)2.5 E F0(is zero.)2.5 E F1(string) -108 264 Q F2108 276 Q F1(string)2.5 E F0 -.35(Tr)144 288 S -(ue if the length of).35 E F1(string)2.84 E F0(is non-zero.)2.72 E F1 -(string1)108 304.8 Q F2(==)2.5 E F1(string2)2.5 E(string1)108 316.8 Q F2 -(=)2.5 E F1(string2)2.5 E F0 -.35(Tr)144 328.8 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 +(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(\214le)2.5 E F0 -.35(Tr)144 84 +S(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is o).15 E +(wned by the ef)-.25 E(fecti)-.25 E .3 -.15(ve u)-.25 H(ser id.).15 E F1 +108 96 Q F2(\214le)2.5 E F0 -.35(Tr)144 96 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 108 Q F1(\255ef)2.5 E F2(\214le2)2.5 E F0 -.35(Tr)144 120 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 132 Q F02.5 E F1(nt)A F2(\214le2)2.5 E F0 -.35(Tr)144 144 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 156 Q +F02.5 E F1(ot)A F2(\214le2)2.5 E F0 -.35(Tr)144 168 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 180 Q F2(optname)2.5 E F0 +-.35(Tr)144 192 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 204 Q F1(set)2.5 E F0 -.2(bu)2.5 G +(iltin belo).2 E -.65(w.)-.25 G F1108 216 Q F2(varname)2.5 E F0 +-.35(Tr)144 228 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 +240 Q F2(varname)2.5 E F0 -.35(Tr)144 252 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 264 Q F2(string)2.5 E F0 -.35(Tr)144 276 S +(ue if the length of).35 E F2(string)2.5 E F0(is zero.)2.5 E F2(string) +108 288 Q F1108 300 Q F2(string)2.5 E F0 -.35(Tr)144 312 S +(ue if the length of).35 E F2(string)2.84 E F0(is non-zero.)2.72 E F2 +(string1)108 328.8 Q F1(==)2.5 E F2(string2)2.5 E(string1)108 340.8 Q F1 +(=)2.5 E F2(string2)2.5 E F0 -.35(Tr)144 352.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 -340.8 R F2([[)2.946 E F0 .446 +364.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 352.8 Q F0(\).)A F1 -(string1)108 369.6 Q F2(!=)2.5 E F1(string2)2.5 E F0 -.35(Tr)144 381.6 S -(ue if the strings are not equal.).35 E F1(string1)108 398.4 Q F2(<)2.5 -E F1(string2)2.5 E F0 -.35(Tr)144 410.4 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 427.2 Q F2(>)2.5 E F1(string2)2.5 E F0 -.35 -(Tr)144 439.2 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 -456 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 468 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 376.8 Q F0(\).)A F2 +(string1)108 393.6 Q F1(!=)2.5 E F2(string2)2.5 E F0 -.35(Tr)144 405.6 S +(ue if the strings are not equal.).35 E F2(string1)108 422.4 Q F1(<)2.5 +E F2(string2)2.5 E F0 -.35(Tr)144 434.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 451.2 Q F1(>)2.5 E F2(string2)2.5 E F0 -.35 +(Tr)144 463.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 +480 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 492 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 480 R -F1(ar)144 492 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 +s than or equal to, greater than, or greater than or equal to)144 504 R +F2(ar)144 516 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 F2([[)3.59 E F0 -(command,)144 504 Q F1(Ar)4.22 E(g1)-.37 E F0(and)3.21 E F1(Ar)4.22 E +.15 E 3.59(gers. When)-.15 F 1.09(used with the)3.59 F F1([[)3.59 E F0 +(command,)144 528 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 516 Q F0(abo)2.25 +(ARITHMETIC EV)3.209 F(ALU)-1.215 E(A-)-.54 E(TION)144 540 Q F0(abo)2.25 E -.15(ve)-.15 G(\).).15 E/F4 10.95/Times-Bold@0 SF(SIMPLE COMMAND EXP) -72 532.8 Q(ANSION)-.81 E F0 .613(When a simple command is e)108 544.8 R +72 556.8 Q(ANSION)-.81 E F0 .613(When a simple command is e)108 568.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.)108 556.8 Q(1.)108 573.6 Q 1.849(The w) -144 573.6 R 1.849(ords that the parser has mark)-.1 F 1.848(ed as v)-.1 +(rections, from left to right.)108 580.8 Q(1.)108 597.6 Q 1.849(The w) +144 597.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 585.6 Q -.15(ve)-.2 G 2.5(df).15 G -(or later processing.)-2.5 E(2.)108 602.4 Q 1.163(The w)144 602.4 R +(name\) and redirections are sa)144 609.6 Q -.15(ve)-.2 G 2.5(df).15 G +(or later processing.)-2.5 E(2.)108 626.4 Q 1.163(The w)144 626.4 R 1.163(ords that are not v)-.1 F 1.164 (ariable assignments or redirections are e)-.25 F 3.664(xpanded. If)-.15 F(an)3.664 E 3.664(yw)-.15 G 1.164(ords remain)-3.764 F .776(after e)144 -614.4 R .776(xpansion, the \214rst w)-.15 F .776(ord is tak)-.1 F .775 +638.4 R .776(xpansion, the \214rst w)-.15 F .776(ord is tak)-.1 F .775 (en to be the name of the command and the remaining w)-.1 F(ords)-.1 E -(are the ar)144 626.4 Q(guments.)-.18 E(3.)108 643.2 Q -(Redirections are performed as described abo)144 643.2 Q .3 -.15(ve u) +(are the ar)144 650.4 Q(guments.)-.18 E(3.)108 667.2 Q +(Redirections are performed as described abo)144 667.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 660 Q .716(The te)144 660 R .717(xt after the)-.15 F F2(=)3.217 E F0 +108 684 Q .716(The te)144 684 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 672 R .339 +.34(command substitution, arithmetic e)144 696 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 684 Q .332 -(If no command name results, the v)108 700.8 R .332 +(efore being assigned to the v)-2.839 F(ari-)-.25 E(able.)144 708 Q .332 +(If no command name results, the v)108 724.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 712.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 724.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 -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(33)192.895 E 0 Cg EP +2.833(vironment. Otherwise,)-.4 F(the)2.833 E(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(33)185.955 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(the command e)108 -84 Q(xits with a non-zero status.)-.15 E .15 -(If no command name results, redirections are performed, b)108 100.8 R +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.25(va)108 84 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 96 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 108 Q(xits with a non-zero status.)-.15 E .15 +(If no command name results, redirections are performed, b)108 124.8 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 112.8 +(vironment. A)-.4 F(redirection error causes the command to e)108 136.8 Q(xit with a non-zero status.)-.15 E 1.064 -(If there is a command name left after e)108 129.6 R 1.064(xpansion, e) +(If there is a command name left after e)108 153.6 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 -141.6 R 2.569(xits. If)-.15 F .069(one of the e)2.569 F .069 +165.6 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 153.6 R .466 +(xit status of the command)-.15 F .466(is the e)108 177.6 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 165.6 +(If there were no command substitutions, the)5.466 F(command e)108 189.6 Q(xits with a status of zero.)-.15 E/F1 10.95/Times-Bold@0 SF -(COMMAND EXECUTION)72 182.4 Q F0 .547 -(After a command has been split into w)108 194.4 R .546 +(COMMAND EXECUTION)72 206.4 Q F0 .547 +(After a command has been split into w)108 218.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 206.4 Q(wing actions are tak)-.25 E +F(gu-)-.18 E(ments, the follo)108 230.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 223.2 R .379(If there e)5.379 F .379 +mpts to locate it.)108 247.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 235.2 R -.2(vo)-.4 G -.1(ke).2 G 2.746(da).1 G 2.746(sd)-2.746 G +108 259.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/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 247.2 Q 2.5 +(tion, the shell searches for it in the list of shell b)108 271.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 264 R .31 +(If the name is neither a shell function nor a b)108 288 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 276 Q F2 -.666(PA)3.163 +E F0 .31(searches each element of)2.81 F(the)108 300 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 -288 R -.15(xe)-.15 G 1.915(cutable \214les \(see).15 F F4(hash)4.415 E +312 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 300 R F2 -.666(PA)3.22 G(TH)-.189 E F0 +(search of the directories in)108 324 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 searc\ -hes for a de\214ned shell function named)108 312 R F4(command_not_f) -3.456 E(ound_han-)-.25 E(dle)108 324 Q F0 6.006(.I)C 3.506(ft)-6.006 G +hes for a de\214ned shell function named)108 336 R F4(command_not_f) +3.456 E(ound_han-)-.25 E(dle)108 348 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 336 R 2.755(sa)-.55 G -.18(rg)-2.755 G +(and the original command')108 360 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 348 R .263(If that function is not de\ +.263(tus of that subshell.)108 372 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 360 Q 1.089(If the search is successfu\ +(xit sta-)-.15 F(tus of 127.)108 384 Q 1.089(If the search is successfu\ l, or if the command name contains one or more slashes, the shell e)108 -376.8 R -.15(xe)-.15 G 1.09(cutes the).15 F .198 -(named program in a separate e)108 388.8 R -.15(xe)-.15 G .198 +400.8 R -.15(xe)-.15 G 1.09(cutes the).15 F .198 +(named program in a separate e)108 412.8 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 400.8 Q +(n, and the remain-).15 F(ing ar)108 424.8 Q (guments to the command are set to the ar)-.18 E(guments gi)-.18 E -.15 -(ve)-.25 G(n, if an).15 E -.65(y.)-.15 G 1.809(If this e)108 417.6 R +(ve)-.25 G(n, if an).15 E -.65(y.)-.15 G 1.809(If this e)108 441.6 R -.15(xe)-.15 G 1.809(cution f).15 F 1.809 (ails because the \214le is not in e)-.1 F -.15(xe)-.15 G 1.809 (cutable format, and the \214le is not a directory).15 F 4.309(,i)-.65 G -4.309(ti)-4.309 G(s)-4.309 E .678(assumed to be a)108 429.6 R/F5 10 +4.309(ti)-4.309 G(s)-4.309 E .678(assumed to be a)108 453.6 R/F5 10 /Times-Italic@0 SF .678(shell script)3.178 F F0 3.178(,a\214)C .678 (le containing shell commands.)-3.178 F 3.178(As)5.678 G .678 (ubshell is spa)-3.178 F .677(wned to e)-.15 F -.15(xe)-.15 G .677 (cute it.).15 F(This)5.677 E .329 -(subshell reinitializes itself, so that the ef)108 441.6 R .329 +(subshell reinitializes itself, so that the ef)108 465.6 R .329 (fect is as if a ne)-.25 F 2.83(ws)-.25 G .33(hell had been in)-2.83 F -.2(vo)-.4 G -.1(ke).2 G 2.83(dt).1 G 2.83(oh)-2.83 G .33 -(andle the script, with)-2.83 F 1.219(the e)108 453.6 R 1.219 +(andle the script, with)-2.83 F 1.219(the e)108 477.6 R 1.219 (xception that the locations of commands remembered by the parent \(see) -.15 F F4(hash)3.719 E F0(belo)3.719 E 3.719(wu)-.25 G(nder)-3.719 E F2 -(SHELL)3.719 E -.09(BU)108 465.6 S(IL).09 E(TIN COMMANDS)-.828 E F3(\))A +(SHELL)3.719 E -.09(BU)108 489.6 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 482.4 R .347(ginning with)-.15 F F4(#!)2.847 E F0 2.847(,t)C .348(h\ +108 506.4 R .347(ginning with)-.15 F F4(#!)2.847 E F0 2.847(,t)C .348(h\ e remainder of the \214rst line speci\214es an interpreter for the pro-) --2.847 F 3.178(gram. The)108 494.4 R .678(shell e)3.178 F -.15(xe)-.15 G +-2.847 F 3.178(gram. The)108 518.4 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 1.192(format themselv) -108 506.4 R 3.692(es. The)-.15 F(ar)3.693 E 1.193 +108 530.4 R 3.692(es. The)-.15 F(ar)3.693 E 1.193 (guments to the interpreter consist of a single optional ar)-.18 F 1.193 (gument follo)-.18 F 1.193(wing the)-.25 F 1.131 -(interpreter name on the \214rst line of the program, follo)108 518.4 R +(interpreter name on the \214rst line of the program, follo)108 542.4 R 1.13(wed by the name of the program, follo)-.25 F 1.13(wed by the)-.25 F -(command ar)108 530.4 Q(guments, if an)-.18 E -.65(y.)-.15 G F1 -(COMMAND EXECUTION ENVIR)72 547.2 Q(ONMENT)-.329 E F0(The shell has an) -108 559.2 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 576 Q -1.405(open \214les inherited by the shell at in)144 576 R -.2(vo)-.4 G +(command ar)108 554.4 Q(guments, if an)-.18 E -.65(y.)-.15 G F1 +(COMMAND EXECUTION ENVIR)72 571.2 Q(ONMENT)-.329 E F0(The shell has an) +108 583.2 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 600 Q +1.405(open \214les inherited by the shell at in)144 600 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 588 S(iltin).2 E<83>108 604.8 Q -(the current w)144 604.8 Q(orking directory as set by)-.1 E F4(cd)2.5 E +(exec)3.906 E F0 -.2(bu)144 612 S(iltin).2 E<83>108 628.8 Q +(the current w)144 628.8 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 621.6 Q(the \214le creation mode mask as set by)144 621.6 Q F4 +<83>108 645.6 Q(the \214le creation mode mask as set by)144 645.6 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 638.4 Q(current traps set by)144 638.4 Q F4(trap)2.5 E F0 -<83>108 655.2 Q .257(shell parameters that are set by v)144 655.2 R .256 +-2.5 E<83>108 662.4 Q(current traps set by)144 662.4 Q F4(trap)2.5 E F0 +<83>108 679.2 Q .257(shell parameters that are set by v)144 679.2 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 667.2 Q(vironment)-.4 E<83>108 684 Q -(shell functions de\214ned during e)144 684 Q -.15(xe)-.15 G +(in the en)144 691.2 Q(vironment)-.4 E<83>108 708 Q +(shell functions de\214ned during e)144 708 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 700.8 Q -(options enabled at in)144 700.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 F4(set) -2.5 E F0<83>108 717.6 Q(options enabled by)144 717.6 Q F4(shopt)2.5 E F0 -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(34)192.895 E 0 Cg EP +(arent in the en)-2.5 E(vironment)-.4 E(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(34)185.955 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<83>108 84 Q -(shell aliases de\214ned with)144 84 Q/F1 10/Times-Bold@0 SF(alias)2.5 E -F0<83>108 100.8 Q -.25(va)144 100.8 S +(options enabled at in)144 84 Q -.2(vo)-.4 G(cation \(either by def).2 E +(ault or with command-line ar)-.1 E(guments\) or by)-.18 E/F1 10 +/Times-Bold@0 SF(set)2.5 E F0<83>108 100.8 Q(options enabled by)144 +100.8 Q F1(shopt)2.5 E F0<83>108 117.6 Q(shell aliases de\214ned with) +144 117.6 Q F1(alias)2.5 E F0<83>108 134.4 Q -.25(va)144 134.4 S (rious process IDs, including those of background jobs, the v).25 E (alue of)-.25 E F1($$)2.5 E F0 2.5(,a)C(nd the v)-2.5 E(alue of)-.25 E /F2 9/Times-Bold@0 SF(PPID)2.5 E F0 .426 -(When a simple command other than a b)108 117.6 R .427 +(When a simple command other than a b)108 151.2 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 129.6 S .134(cution en).15 F .134 +-2.927 G(eparate)-2.927 E -.15(exe)108 163.2 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 141.6 Q<83>108 158.4 Q 1.055(the shell')144 158.4 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 175.2 Q<83>108 192 Q 1.055(the shell')144 192 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 170.4 Q<83>108 187.2 Q(the current w)144 187.2 Q -(orking directory)-.1 E<83>108 204 Q(the \214le creation mode mask)144 -204 Q<83>108 220.8 Q .857(shell v)144 220.8 R .857 +-3.556 F(mand)144 204 Q<83>108 220.8 Q(the current w)144 220.8 Q +(orking directory)-.1 E<83>108 237.6 Q(the \214le creation mode mask)144 +237.6 Q<83>108 254.4 Q .857(shell v)144 254.4 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 232.8 Q(vironment) --.4 E<83>108 249.6 Q .306(traps caught by the shell are reset to the v) -144 249.6 R .307(alues inherited from the shell')-.25 F 2.807(sp)-.55 G +(xported for the command,)-.15 F(passed in the en)144 266.4 Q(vironment) +-.4 E<83>108 283.2 Q .306(traps caught by the shell are reset to the v) +144 283.2 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 -261.6 Q 2.5(Ac)108 278.4 S(ommand in)-2.5 E -.2(vo)-.4 G -.1(ke).2 G 2.5 +295.2 Q 2.5(Ac)108 312 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 295.2 R -.2(vo)-.4 G -.1 -(ke).2 G 3.077(di).1 G(n)-3.077 E 2.744(as)108 307.2 S .244(ubshell en) +ntheses, and asynchronous commands are in)108 328.8 R -.2(vo)-.4 G -.1 +(ke).2 G 3.077(di).1 G(n)-3.077 E 2.744(as)108 340.8 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 319.2 R .358 +.359(reset to the v)108 352.8 R .358 (alues that the shell inherited from its parent at in)-.25 F -.2(vo)-.4 G 2.858(cation. Builtin).2 F .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 331.2 +-.4 G -.1(ke).2 G(d).1 E .856(as part of a pipeline are also e)108 364.8 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 343.2 Q(fect the shell')-.25 E 2.5(se)-.55 G +-.4 E(ment cannot af)108 376.8 Q(fect the shell')-.25 E 2.5(se)-.55 G -.15(xe)-2.65 G(cution en).15 E(vironment.)-.4 E 1.377(Subshells spa)108 -360 R 1.377(wned to e)-.15 F -.15(xe)-.15 G 1.377 +393.6 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 F13.876 E F0 1.376(option from the parent)3.876 F 2.5(shell. When) -108 372 R(not in)2.5 E/F3 10/Times-Italic@0 SF(posix)2.5 E F0(mode,)2.5 -E 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 388.8 R +108 405.6 R(not in)2.5 E/F3 10/Times-Italic@0 SF(posix)2.5 E F0(mode,) +2.5 E 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 422.4 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 -400.8 R F3(/de)2.698 E(v/null)-.15 E F0 5.198(.O)C .198 +434.4 R F3(/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 412.8 Q/F4 10.95/Times-Bold@0 SF -(ENVIR)72 429.6 Q(ONMENT)-.329 E F0 2.353(When a program is in)108 441.6 +(as modi\214ed by redirections.)108 446.4 Q/F4 10.95/Times-Bold@0 SF +(ENVIR)72 463.2 Q(ONMENT)-.329 E F0 2.353(When a program is in)108 475.2 R -.2(vo)-.4 G -.1(ke).2 G 4.853(di).1 G 4.853(ti)-4.853 G 4.853(sg) -4.853 G -2.15 -.25(iv e)-4.853 H 4.853(na).25 G 4.853(na)-4.853 G 2.353 (rray of strings called the)-4.853 F F3(en)4.853 E(vir)-.4 E(onment)-.45 -E F0 7.353(.T).68 G 2.354(his is a list of)-7.353 F F3(name)108 453.6 Q +E F0 7.353(.T).68 G 2.354(his is a list of)-7.353 F F3(name)108 487.2 Q F0A F3(value)A F0(pairs, of the form)2.5 E F3(name)2.5 E F0(=)A F3 -(value)A F0(.).18 E 1.486(The shell pro)108 470.4 R 1.486(vides se)-.15 -F -.15(ve)-.25 G 1.486(ral w).15 F 1.485(ays to manipulate the en)-.1 F +(value)A F0(.).18 E 1.486(The shell pro)108 504 R 1.486(vides se)-.15 F +-.15(ve)-.25 G 1.486(ral w).15 F 1.485(ays to manipulate the en)-.1 F 3.985(vironment. On)-.4 F(in)3.985 E -.2(vo)-.4 G 1.485 -(cation, the shell scans its o).2 F(wn)-.25 E(en)108 482.4 Q .144(viron\ -ment and creates a parameter for each name found, automatically marking\ - it for)-.4 F F3 -.2(ex)2.644 G(port).2 E F0 .144(to child pro-)3.324 F -2.704(cesses. Ex)108 494.4 R .203(ecuted commands inherit the en)-.15 F +(cation, the shell scans its o).2 F(wn)-.25 E(en)108 516 Q .144(vironme\ +nt and creates a parameter for each name found, automatically marking i\ +t for)-.4 F F3 -.2(ex)2.644 G(port).2 E F0 .144(to child pro-)3.324 F +2.704(cesses. Ex)108 528 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 1.153 -(eters and functions to be added to and deleted from the en)108 506.4 R +(eters and functions to be added to and deleted from the en)108 540 R 3.653(vironment. If)-.4 F 1.153(the v)3.653 F 1.154 -(alue of a parameter in the)-.25 F(en)108 518.4 Q .64 +(alue of a parameter in the)-.25 F(en)108 552 Q .64 (vironment is modi\214ed, the ne)-.4 F 3.14(wv)-.25 G .64 (alue becomes part of the en)-3.39 F .64(vironment, replacing the old.) --.4 F .64(The en)5.64 F(viron-)-.4 E .58(ment inherited by an)108 530.4 -R 3.08(ye)-.15 G -.15(xe)-3.23 G .58 -(cuted command consists of the shell').15 F 3.08(si)-.55 G .58 -(nitial en)-3.08 F .58(vironment, whose v)-.4 F .58(alues may be)-.25 F -.301(modi\214ed in the shell, less an)108 542.4 R 2.801(yp)-.15 G .301 -(airs remo)-2.801 F -.15(ve)-.15 G 2.801(db).15 G 2.801(yt)-2.801 G(he) --2.801 E F1(unset)2.801 E F0 .3(command, plus an)2.8 F 2.8(ya)-.15 G .3 -(dditions via the)-2.8 F F1(export)2.8 E F0(and)2.8 E F1(declar)108 -554.4 Q 2.5<65ad>-.18 G(x)-2.5 E F0(commands.)2.5 E .562(The en)108 -571.2 R .562(vironment for an)-.4 F(y)-.15 E F3 .562(simple command) -3.402 F F0 .563 +-.4 F .64(The en)5.64 F(viron-)-.4 E .58(ment inherited by an)108 564 R +3.08(ye)-.15 G -.15(xe)-3.23 G .58(cuted command consists of the shell') +.15 F 3.08(si)-.55 G .58(nitial en)-3.08 F .58(vironment, whose v)-.4 F +.58(alues may be)-.25 F .301(modi\214ed in the shell, less an)108 576 R +2.801(yp)-.15 G .301(airs remo)-2.801 F -.15(ve)-.15 G 2.801(db).15 G +2.801(yt)-2.801 G(he)-2.801 E F1(unset)2.801 E F0 .3(command, plus an) +2.8 F 2.8(ya)-.15 G .3(dditions via the)-2.8 F F1(export)2.8 E F0(and) +2.8 E F1(declar)108 588 Q 2.5<65ad>-.18 G(x)-2.5 E F0(commands.)2.5 E +.562(The en)108 604.8 R .562(vironment for an)-.4 F(y)-.15 E F3 .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 583.2 R .502 -.15(ve i) +.203(parameter assignments, as described abo)108 616.8 R .502 -.15(ve i) -.15 H(n).15 E F2 -.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 595.2 Q(vironment seen by that command.)-.4 E .81(If the) -108 612 R F13.31 E F0 .81(option is set \(see the)3.31 F F1(set) +-.25 F(en)108 628.8 Q(vironment seen by that command.)-.4 E .81(If the) +108 645.6 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 F3(all)3.64 E F0 .81(parameter assignments are placed in)3.82 F(the en) -108 624 Q +108 657.6 Q (vironment for a command, not just those that precede the command name.) --.4 E(When)108 640.8 Q F1(bash)3.586 E F0(in)3.586 E -.2(vo)-.4 G -.1 +-.4 E(When)108 674.4 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 652.8 Q(vironment.)-.4 E F4 -(EXIT ST)72 669.6 Q -1.04(AT)-.986 G(US)1.04 E F0 .15(The e)108 681.6 R +(passed to that command in its en)108 686.4 Q(vironment.)-.4 E F4 +(EXIT ST)72 703.2 Q -1.04(AT)-.986 G(US)1.04 E F0 .15(The e)108 715.2 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 F3(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 693.6 R .348(statuses f)2.848 F .347 +(tion. Exit)108 727.2 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 705.6 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 -717.6 Q(alues to indicate speci\214c f)-.25 E(ailure modes.)-.1 E -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(35)192.895 E 0 Cg EP +F .647 -.15(ve 1)-.15 H(25).15 E(GNU Bash 4.4)72 768 Q(2017 December 28) +136.795 E(35)185.955 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 -.15(Fo)108 84 S -3.373(rt).15 G .873(he shell')-3.373 F 3.373(sp)-.55 G .873 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(specially)108 84 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 +96 Q(alues to indicate speci\214c f)-.25 E(ailure modes.)-.1 E -.15(Fo) +108 112.8 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 96 R 2.548(An)5.048 G .049 +-.15 F .048(zero indicates success.)108 124.8 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 108 Q/F1 10/Times-Italic@0 SF(N) +-2.549 F .049(atal sig-)-.1 F(nal)108 136.8 Q/F1 10/Times-Italic@0 SF(N) 2.5 E F0(,)A/F2 10/Times-Bold@0 SF(bash)2.5 E F0(uses the v)2.5 E (alue of 128+)-.25 E F1(N)A F0(as the e)2.5 E(xit status.)-.15 E .405 -(If a command is not found, the child process created to e)108 124.8 R +(If a command is not found, the child process created to e)108 153.6 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 136.8 Q(ut is not e)-.2 E -.15(xe) --.15 G(cutable, the return status is 126.).15 E(If a command f)108 153.6 +(If a command is)5.404 F(found b)108 165.6 Q(ut is not e)-.2 E -.15(xe) +-.15 G(cutable, the return status is 126.).15 E(If a command f)108 182.4 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 170.4 R .08 +-.15 E .08(Shell b)108 199.2 R .08 (uiltin commands return a status of 0 \()-.2 F F1(true)A F0 2.581(\)i)C 2.581(fs)-2.581 G .081(uccessful, and non-zero \()-2.581 F F1(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 182.4 Q 2.968(ye)-.15 G -.15(xe)-3.118 G 2.968 +-2.581 F(the)108 211.2 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 194.4 Q(guments.)-.18 -E F2(Bash)108 211.2 Q F0 .201(itself returns the e)2.701 F .202 +(va)-.4 G .467(lid options or).25 F(missing ar)108 223.2 Q(guments.)-.18 +E F2(Bash)108 240 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 223.2 -Q(xits with a non-zero v)-.15 E 2.5(alue. See)-.25 F(also the)2.5 E F2 +(cuted, unless a syntax error occurs, in which case).15 F(it e)108 252 Q +(xits with a non-zero v)-.15 E 2.5(alue. See)-.25 F(also the)2.5 E F2 (exit)2.5 E F0 -.2(bu)2.5 G(iltin command belo).2 E -.65(w.)-.25 G/F3 -10.95/Times-Bold@0 SF(SIGN)72 240 Q(ALS)-.219 E F0(When)108 252 Q F2 +10.95/Times-Bold@0 SF(SIGN)72 268.8 Q(ALS)-.219 E F0(When)108 280.8 Q F2 (bash)3.183 E F0 .683(is interacti)3.183 F -.15(ve)-.25 G 3.183(,i).15 G 3.183(nt)-3.183 G .683(he absence of an)-3.183 F 3.183(yt)-.15 G .683 (raps, it ignores)-3.183 F/F4 9/Times-Bold@0 SF(SIGTERM)3.183 E F0 .682 (\(so that)2.933 F F2 .682(kill 0)3.182 F F0 .682(does not kill an)3.182 -F(interacti)108 264 Q .757 -.15(ve s)-.25 H .457(hell\), and).15 F F4 +F(interacti)108 292.8 Q .757 -.15(ve s)-.25 H .457(hell\), and).15 F F4 (SIGINT)2.957 E F0 .458(is caught and handled \(so that the)2.707 F F2 (wait)2.958 E F0 -.2(bu)2.958 G .458(iltin is interruptible\).).2 F .458 -(In all cases,)5.458 F F2(bash)108 276 Q F0(ignores)2.5 E F4(SIGQ)2.5 E -(UIT)-.09 E/F5 9/Times-Roman@0 SF(.)A F0(If job control is in ef)4.5 E +(In all cases,)5.458 F F2(bash)108 304.8 Q F0(ignores)2.5 E F4(SIGQ)2.5 +E(UIT)-.09 E/F5 9/Times-Roman@0 SF(.)A F0(If job control is in ef)4.5 E (fect,)-.25 E F2(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 292.8 Q 1.065(uiltin commands run by)-.2 F F2(bash)3.565 E F0 +(Non-b)108 321.6 Q 1.065(uiltin commands run by)-.2 F F2(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 304.8 R .747(job control is not in ef)3.247 F .747 +108 333.6 R .747(job control is not in ef)3.247 F .747 (fect, asynchronous commands ignore)-.25 F F4(SIGINT)3.248 E F0(and) 2.998 E F4(SIGQ)3.248 E(UIT)-.09 E F0 .748(in addi-)2.998 F .653 -(tion to these inherited handlers.)108 316.8 R .653 +(tion to these inherited handlers.)108 345.6 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 328.8 Q F4 +-.15(ey)-.1 G(board-).15 E(generated job control signals)108 357.6 Q F4 (SIGTTIN)2.5 E F5(,)A F4(SIGTT)2.25 E(OU)-.162 E F5(,)A F0(and)2.25 E F4 -(SIGTSTP)2.5 E F5(.)A F0 2.045(The shell e)108 345.6 R 2.045 +(SIGTSTP)2.5 E F5(.)A F0 2.045(The shell e)108 374.4 R 2.045 (xits by def)-.15 F 2.045(ault upon receipt of a)-.1 F F4(SIGHUP)4.545 E F5(.)A F0 2.045(Before e)6.545 F 2.045(xiting, an interacti)-.15 F 2.346 --.15(ve s)-.25 H 2.046(hell resends the).15 F F4(SIGHUP)108 357.6 Q F0 +-.15(ve s)-.25 H 2.046(hell resends the).15 F F4(SIGHUP)108 386.4 Q F0 1.005(to all jobs, running or stopped.)3.255 F 1.004 (Stopped jobs are sent)6.005 F F4(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 F4(SIGHUP)108 369.6 Q F5(.)A F0 2.529 -.8(To p) +(ve t)-.25 H(he).15 E F4(SIGHUP)108 398.4 Q F5(.)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 381.6 R F2(diso) +G .93(rom the)-3.43 F 1.357(jobs table with the)108 410.4 R F2(diso) 3.857 E(wn)-.1 E F0 -.2(bu)3.857 G 1.357(iltin \(see).2 F F4 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 F4 -(SIGHUP)108 393.6 Q F0(using)2.25 E F2(diso)2.5 E(wn \255h)-.1 E F0(.)A -.166(If the)108 410.4 R F2(huponexit)2.666 E F0 .166 +(SIGHUP)108 422.4 Q F0(using)2.25 E F2(diso)2.5 E(wn \255h)-.1 E F0(.)A +.166(If the)108 439.2 R F2(huponexit)2.666 E F0 .166 (shell option has been set with)2.666 F F2(shopt)2.666 E F0(,)A F2(bash) 2.666 E F0 .166(sends a)2.666 F F4(SIGHUP)2.666 E F0 .166 (to all jobs when an interacti)2.416 F -.15(ve)-.25 G(login shell e)108 -422.4 Q(xits.)-.15 E(If)108 439.2 Q F2(bash)3.047 E F0 .547(is w)3.047 F +451.2 Q(xits.)-.15 E(If)108 468 Q F2(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 451.2 R -.15(xe)-.15 G .662 +-3.046 F .662(will not be e)108 480 R -.15(xe)-.15 G .662 (cuted until the command completes.).15 F(When)5.663 E F2(bash)3.163 E F0 .663(is w)3.163 F .663(aiting for an asynchronous command)-.1 F .99 -(via the)108 463.2 R F2(wait)3.49 E F0 -.2(bu)3.49 G .99(iltin, the rec\ -eption of a signal for which a trap has been set will cause the).2 F F2 +(via the)108 492 R F2(wait)3.49 E F0 -.2(bu)3.49 G .99(iltin, the recep\ +tion of a signal for which a trap has been set will cause the).2 F F2 (wait)3.49 E F0 -.2(bu)3.49 G .99(iltin to).2 F -(return immediately with an e)108 475.2 Q +(return immediately with an e)108 504 Q (xit status greater than 128, immediately after which the trap is e)-.15 -E -.15(xe)-.15 G(cuted.).15 E F3(JOB CONTR)72 492 Q(OL)-.329 E F1 -.25 -(Jo)108 504 S 4.567(bc).25 G(ontr)-4.567 E(ol)-.45 E F0 2.067 +E -.15(xe)-.15 G(cuted.).15 E F3(JOB CONTR)72 520.8 Q(OL)-.329 E F1 -.25 +(Jo)108 532.8 S 4.567(bc).25 G(ontr)-4.567 E(ol)-.45 E F0 2.067 (refers to the ability to selecti)5.077 F -.15(ve)-.25 G 2.067 (ly stop \().15 F F1(suspend)A F0 4.567(\)t)C 2.068(he e)-4.567 F -.15 -(xe)-.15 G 2.068(cution of processes and continue).15 F(\()108 516 Q F1 --.37(re)C(sume).37 E F0 3.202(\)t)C .702(heir e)-3.202 F -.15(xe)-.15 G -.702(cution at a later point.).15 F 3.202(Au)5.702 G .702 +(xe)-.15 G 2.068(cution of processes and continue).15 F(\()108 544.8 Q +F1 -.37(re)C(sume).37 E F0 3.202(\)t)C .702(heir e)-3.202 F -.15(xe)-.15 +G .702(cution at a later point.).15 F 3.202(Au)5.702 G .702 (ser typically emplo)-3.202 F .702(ys this f)-.1 F .702 (acility via an interacti)-.1 F 1.001 -.15(ve i)-.25 H(nterf).15 E(ace) --.1 E(supplied jointly by the operating system k)108 528 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 -F2(bash)2.5 E F0(.)A .784(The shell associates a)108 544.8 R F1(job) +-.1 E(supplied jointly by the operating system k)108 556.8 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 +F2(bash)2.5 E F0(.)A .784(The shell associates a)108 573.6 R F1(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 .341(listed with the)108 556.8 R F2 +(cuting jobs, which may be).15 F .341(listed with the)108 585.6 R F2 (jobs)2.841 E F0 2.841(command. When)2.841 F F2(bash)2.841 E F0 .341 (starts a job asynchronously \(in the)2.841 F F1(bac)2.84 E(kgr)-.2 E -(ound)-.45 E F0 .34(\), it prints a line).77 F(that looks lik)108 568.8 -Q(e:)-.1 E([1] 25647)144 585.6 Q .241(indicating that this job is job n\ +(ound)-.45 E F0 .34(\), it prints a line).77 F(that looks lik)108 597.6 +Q(e:)-.1 E([1] 25647)144 614.4 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 602.4 R .733(with this job is 25647.)108 614.4 R .732 +ociated)108 631.2 R .733(with this job is 25647.)108 643.2 R .732 (All of the processes in a single pipeline are members of the same job) -5.733 F(.)-.4 E F2(Bash)5.732 E F0(uses)3.232 E(the)108 626.4 Q F1(job) +5.733 F(.)-.4 E F2(Bash)5.732 E F0(uses)3.232 E(the)108 655.2 Q F1(job) 4.24 E F0(abstraction as the basis for job control.)2.73 E 3.062 -.8 -(To f)108 643.2 T 1.462(acilitate the implementation of the user interf) -.7 F 1.463(ace to job control, the operating system maintains the)-.1 F -.871(notion of a)108 655.2 R F1(curr)3.371 E .871(ent terminal pr)-.37 F +(To f)108 672 T 1.462(acilitate the implementation of the user interf).7 +F 1.463(ace to job control, the operating system maintains the)-.1 F +.871(notion of a)108 684 R F1(curr)3.371 E .871(ent terminal pr)-.37 F .871(ocess gr)-.45 F .871(oup ID)-.45 F F0 5.871(.M)C .87 (embers of this process group \(processes whose process)-5.871 F .023 (group ID is equal to the current terminal process group ID\) recei)108 -667.2 R .323 -.15(ve k)-.25 H -.15(ey).05 G .023 -(board-generated signals such as).15 F F4(SIG-)2.523 E(INT)108 679.2 Q -F5(.)A F0 1.347(These processes are said to be in the)5.847 F F1(for) -3.846 E -.4(eg)-.37 G -.45(ro).4 G(und).45 E F0(.).77 E F1(Bac)6.926 E -(kgr)-.2 E(ound)-.45 E F0 1.346(processes are those whose process)4.616 -F .145(group ID dif)108 691.2 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 703.2 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 715.2 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 -2.098(terminal are sent a)108 727.2 R F4 2.098(SIGTTIN \(SIGTT)4.598 F -(OU\))-.162 E F0 2.098(signal by the k)4.348 F(ernel')-.1 E 4.598(st) --.55 G 2.098(erminal dri)-4.598 F -.15(ve)-.25 G 2.898 -.4(r, w).15 H -2.098(hich, unless caught,).4 F(GNU Bash 4.4)72 768 Q(2017 October 7) -143.735 E(36)192.895 E 0 Cg EP +696 R .323 -.15(ve k)-.25 H -.15(ey).05 G .023 +(board-generated signals such as).15 F F4(SIG-)2.523 E(INT)108 708 Q F5 +(.)A F0 1.347(These processes are said to be in the)5.847 F F1(for)3.846 +E -.4(eg)-.37 G -.45(ro).4 G(und).45 E F0(.).77 E F1(Bac)6.926 E(kgr)-.2 +E(ound)-.45 E F0 1.346(processes are those whose process)4.616 F 1.843 +(group ID dif)108 720 R 1.844(fers from the terminal')-.25 F 1.844 +(s; such processes are immune to k)-.55 F -.15(ey)-.1 G 1.844 +(board-generated signals.).15 F(Only)6.844 E(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(36)185.955 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 -(suspends the process.)108 84 Q 1.087(If the operating system on which) -108 100.8 R/F1 10/Times-Bold@0 SF(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 112.8 S -.302(ping the).8 F/F2 10/Times-Italic@0 SF(suspend)3.142 E F0 .302 -(character \(typically)3.572 F F1(^Z)2.801 E F0 2.801(,C)C .301 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(fore)108 84 Q .182 +(ground processes are allo)-.15 F .182(wed to read from or)-.25 F 2.682 +(,i)-.4 G 2.682(ft)-2.682 G .182(he user so speci\214es with)-2.682 F/F1 +10/Courier@0 SF .181(stty tostop)2.681 F F0 2.681(,w)C .181(rite to the) +-2.681 F 3.366(terminal. Background)108 96 R .866 +(processes which attempt to read from \(write to when)3.366 F F1 .866 +(stty tostop)3.366 F F0 .866(is in ef)3.366 F(fect\))-.25 E .977 +(the terminal are sent a)108 108 R/F2 9/Times-Bold@0 SF .977 +(SIGTTIN \(SIGTT)3.477 F(OU\))-.162 E F0 .977(signal by the k)3.227 F +(ernel')-.1 E 3.477(st)-.55 G .977(erminal dri)-3.477 F -.15(ve)-.25 G +1.777 -.4(r, w).15 H .976(hich, unless caught,).4 F +(suspends the process.)108 120 Q 1.087(If the operating system on which) +108 136.8 R/F3 10/Times-Bold@0 SF(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 148.8 S +.302(ping the).8 F/F4 10/Times-Italic@0 SF(suspend)3.142 E F0 .302 +(character \(typically)3.572 F F3(^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 124.8 R F1(bash)4.642 E F0 -7.142(.T)C 2.142(yping the)-7.942 F F2 2.142(delayed suspend)4.992 F F0 -2.143(character \(typically)5.413 F F1(^Y)4.643 E F0 4.643(,C)C +F 2.142(stopped and returns control to)108 160.8 R F3(bash)4.642 E F0 +7.142(.T)C 2.142(yping the)-7.942 F F4 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 (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 -136.8 R(to)108 148.8 Q F1(bash)3.392 E F0 5.892(.T)C .892 +172.8 R(to)108 184.8 Q F3(bash)3.392 E F0 5.892(.T)C .892 (he user may then manipulate the state of this job, using the)-5.892 F -F1(bg)3.392 E F0 .892(command to continue it in the)3.392 F .895 -(background, the)108 160.8 R F1(fg)3.395 E F0 .895 +F3(bg)3.392 E F0 .892(command to continue it in the)3.392 F .895 +(background, the)108 196.8 R F3(fg)3.395 E F0 .895 (command to continue it in the fore)3.395 F .895(ground, or the)-.15 F -F1(kill)3.395 E F0 .894(command to kill it.)3.395 F(A)5.894 E F1(^Z) -3.394 E F0(tak)3.394 E(es)-.1 E(ef)108 172.8 Q .948(fect immediately) +F3(kill)3.395 E F0 .894(command to kill it.)3.395 F(A)5.894 E F3(^Z) +3.394 E F0(tak)3.394 E(es)-.1 E(ef)108 208.8 Q .948(fect immediately) -.25 F 3.448(,a)-.65 G .948(nd has the additional side ef)-3.448 F .948 (fect of causing pending output and typeahead to be dis-)-.25 F(carded.) -108 184.8 Q .777(There are a number of w)108 201.6 R .777 -(ays to refer to a job in the shell.)-.1 F .777(The character)5.777 F F1 -(%)3.277 E F0 .777(introduces a job speci\214cation)3.277 F(\()108 213.6 -Q F2(jobspec)A F0 3.457(\). Job)B(number)3.457 E F2(n)3.817 E F0 .957 -(may be referred to as)3.697 F F1(%n)3.457 E F0 5.957(.A)C .957 +108 220.8 Q .777(There are a number of w)108 237.6 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 249.6 +Q F4(jobspec)A F0 3.457(\). Job)B(number)3.457 E F4(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 (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 225.6 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 237.6 Q F1(ce)3.463 E F0(job)3.463 +108 261.6 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 273.6 Q F3(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 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 +(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 F0 3.464(,o)C 3.464(nt)-3.464 G .964(he other)-3.464 F .087 -(hand, refers to an)108 249.6 R 2.587(yj)-.15 G .087 -(ob containing the string)-2.587 F F1(ce)2.587 E F0 .087 +(hand, refers to an)108 285.6 R 2.587(yj)-.15 G .087 +(ob containing the string)-2.587 F F3(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 261.6 Q F1 +(If the substring matches more than one)5.087 F(job,)108 297.6 Q F3 (bash)2.518 E F0 .018(reports an error)2.518 F 5.018(.T)-.55 G .018 -(he symbols)-5.018 F F1(%%)2.518 E F0(and)2.518 E F1(%+)2.518 E F0 .018 +(he symbols)-5.018 F F3(%%)2.518 E F0(and)2.518 E F3(%+)2.518 E F0 .018 (refer to the shell')2.518 F 2.518(sn)-.55 G .018(otion of the)-2.518 F -F2(curr)2.518 E .018(ent job)-.37 F F0 2.518(,w).23 G .018(hich is) --2.518 F .495(the last job stopped while it w)108 273.6 R .495 +F4(curr)2.518 E .018(ent job)-.37 F F0 2.518(,w).23 G .018(hich is) +-2.518 F .495(the last job stopped while it w)108 309.6 R .495 (as in the fore)-.1 F .495(ground or started in the background.)-.15 F -(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 285.6 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 +(The)5.494 E F4(pr)4.244 E -.15(ev)-.37 G .494(ious job).15 F F0 .494 +(may be)3.224 F .787(referenced using)108 321.6 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 (can both be used to refer to that job)3.287 F 5.788(.I)-.4 G(n)-5.788 E -.257(output pertaining to jobs \(e.g., the output of the)108 297.6 R F1 +.257(output pertaining to jobs \(e.g., the output of the)108 333.6 R F3 (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 309.6 R .41(vious job with a)-.25 F F12.91 E F0 5.41(.A)C .411 +-.1 G .256(ys \215agged with a).1 F F3(+)2.756 E F0(,)A .41(and the pre) +108 345.6 R .41(vious job with a)-.25 F F32.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 321.6 Q(.)-.4 E .444 -(Simply naming a job can be used to bring it into the fore)108 338.4 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 +(rent job)108 357.6 Q(.)-.4 E .444 +(Simply naming a job can be used to bring it into the fore)108 374.4 R +(ground:)-.15 E F3(%1)2.943 E F0 .443(is a synon)2.943 F .443(ym for) +-.15 F F3 -.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 -350.4 R 3.972(ground. Similarly)-.15 F(,)-.65 E F1 -.63(``)3.973 G 1.473 +386.4 R 3.972(ground. Similarly)-.15 F(,)-.65 E F3 -.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 362.4 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 379.2 +(equi)108 398.4 Q -.25(va)-.25 G(lent to).25 E F3 -.63(``)2.5 G(bg %1') +.63 E(')-.63 E F0(.)A .131(The shell learns immediately whene)108 415.2 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 +(Normally)5.131 E(,)-.65 E F3(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 391.2 R 2.657(ss)-.55 G +(prompt before reporting changes in a job')108 427.2 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 403.2 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 +(ther output.)-2.658 F .158(If the)5.158 F F32.658 E F0 .158 +(option to)2.658 F(the)108 439.2 Q F3(set)2.648 E F0 -.2(bu)2.648 G .148 +(iltin command is enabled,).2 F F3(bash)2.648 E F0 .148 (reports such changes immediately)2.648 F 5.147(.A)-.65 G .447 -.15 -(ny t)-5.147 H .147(rap on).15 F/F3 9/Times-Bold@0 SF(SIGCHLD)2.647 E F0 -.147(is e)2.397 F -.15(xe)-.15 G(-).15 E(cuted for each child that e)108 -415.2 Q(xits.)-.15 E .032(If an attempt to e)108 432 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 2.02(using the)108 444 R F1 +(ny t)-5.147 H .147(rap on).15 F F2(SIGCHLD)2.647 E F0 .147(is e)2.397 F +-.15(xe)-.15 G(-).15 E(cuted for each child that e)108 451.2 Q(xits.) +-.15 E .032(If an attempt to e)108 468 R(xit)-.15 E F3(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 F3(checkjobs)2.533 E F0 .033 +(shell option has been enabled)2.533 F 2.02(using the)108 480 R F3 (shopt)4.52 E F0 -.2(bu)4.52 G 2.02 (iltin, running\), the shell prints a w).2 F 2.019 -(arning message, and, if the)-.1 F F1(checkjobs)4.519 E F0 2.019 +(arning message, and, if the)-.1 F F3(checkjobs)4.519 E F0 2.019 (option is)4.519 F .458(enabled, lists the jobs and their statuses.)108 -456 R(The)5.458 E F1(jobs)2.958 E F0 .459 +492 R(The)5.458 E F3(jobs)2.958 E F0 .459 (command may then be used to inspect their status.)2.958 F .459(If a) -5.459 F .604(second attempt to e)108 468 R .604 +5.459 F .604(second attempt to e)108 504 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 480 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E .644 -(When the shell is w)108 496.8 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 .428(return when the job changes state. The)108 508.8 R F1 -2.928 E F0 .428(option will force)2.928 F F1(wait)2.928 E F0 .428 +(and an)108 516 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E .644 +(When the shell is w)108 532.8 R .644 +(aiting for a job or process using the)-.1 F F3(wait)3.145 E F0 -.2(bu) +3.145 G .645(iltin, and job control is enabled,).2 F F3(wait)3.145 E F0 +(will)3.145 E .428(return when the job changes state. The)108 544.8 R F3 +2.928 E F0 .428(option will force)2.928 F F3(wait)2.928 E F0 .428 (to w)2.928 F .428(ait until the job or process terminates)-.1 F -(before returning.)108 520.8 Q/F4 10.95/Times-Bold@0 SF(PR)72 537.6 Q -(OMPTING)-.329 E F0 .644(When e)108 549.6 R -.15(xe)-.15 G .644 -(cuting interacti).15 F -.15(ve)-.25 G(ly).15 E(,)-.65 E F1(bash)3.144 E -F0 .645(displays the primary prompt)3.145 F F3(PS1)3.145 E F0 .645 +(before returning.)108 556.8 Q/F5 10.95/Times-Bold@0 SF(PR)72 573.6 Q +(OMPTING)-.329 E F0 .644(When e)108 585.6 R -.15(xe)-.15 G .644 +(cuting interacti).15 F -.15(ve)-.25 G(ly).15 E(,)-.65 E F3(bash)3.144 E +F0 .645(displays the primary prompt)3.145 F F2(PS1)3.145 E F0 .645 (when it is ready to read a command,)2.895 F .428 -(and the secondary prompt)108 561.6 R F3(PS2)2.928 E F0 .427 -(when it needs more input to complete a command.)2.678 F F1(Bash)5.427 E -F0(displays)2.927 E F3(PS0)2.927 E F0(after)2.677 E .037 -(it reads a command b)108 573.6 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 +(and the secondary prompt)108 597.6 R F2(PS2)2.928 E F0 .427 +(when it needs more input to complete a command.)2.678 F F3(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 609.6 R .037(ut before e)-.2 F -.15(xe)-.15 G +.037(cuting it.).15 F F3(Bash)5.037 E F0(displays)2.537 E F2(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 585.6 R F1 -3.622 E F0 1.122(option is enabled.)3.622 F F1(Bash)6.122 E F0(allo) +(efore tracing each com-).15 F 1.122(mand when the)108 621.6 R F3 +3.622 E F0 1.122(option is enabled.)3.622 F F3(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 597.6 Q(ws:)-.25 E F1(\\a)144 609.6 Q F0 -(an ASCII bell character \(07\))180 609.6 Q F1(\\d)144 621.6 Q F0 -(the date in "W)180 621.6 Q(eekday Month Date" format \(e.g., "T)-.8 E -(ue May 26"\))-.45 E F1(\\D{)144 633.6 Q F2(format)A F1(})A F0(the)180 -645.6 Q F2(format)3.926 E F0 1.426(is passed to)3.926 F F2(strftime) +as follo)108 633.6 Q(ws:)-.25 E F3(\\a)144 645.6 Q F0 +(an ASCII bell character \(07\))180 645.6 Q F3(\\d)144 657.6 Q F0 +(the date in "W)180 657.6 Q(eekday Month Date" format \(e.g., "T)-.8 E +(ue May 26"\))-.45 E F3(\\D{)144 669.6 Q F4(format)A F3(})A F0(the)180 +681.6 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 -657.6 Q F2(format)2.5 E F0 +693.6 Q F4(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 669.6 Q F0 -(an ASCII escape character \(033\))180 669.6 Q F1(\\h)144 681.6 Q F0 -(the hostname up to the \214rst `.)180 681.6 Q(')-.7 E F1(\\H)144 693.6 -Q F0(the hostname)180 693.6 Q F1(\\j)144 705.6 Q F0 -(the number of jobs currently managed by the shell)180 705.6 Q F1(\\l) -144 717.6 Q F0(the basename of the shell')180 717.6 Q 2.5(st)-.55 G -(erminal de)-2.5 E(vice name)-.25 E(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(37)192.895 E 0 Cg EP +(The braces are required)5 E F3(\\e)144 705.6 Q F0 +(an ASCII escape character \(033\))180 705.6 Q F3(\\h)144 717.6 Q F0 +(the hostname up to the \214rst `.)180 717.6 Q(')-.7 E(GNU Bash 4.4)72 +768 Q(2017 December 28)136.795 E(37)185.955 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/F1 10/Times-Bold@0 -SF(\\n)144 84 Q F0(ne)180 84 Q(wline)-.25 E F1(\\r)144 96 Q F0 -(carriage return)180 96 Q F1(\\s)144 108 Q F0 -(the name of the shell, the basename of)180 108 Q F1($0)2.5 E F0 +SF(\\H)144 84 Q F0(the hostname)180 84 Q F1(\\j)144 96 Q F0 +(the number of jobs currently managed by the shell)180 96 Q F1(\\l)144 +108 Q F0(the basename of the shell')180 108 Q 2.5(st)-.55 G(erminal de) +-2.5 E(vice name)-.25 E F1(\\n)144 120 Q F0(ne)180 120 Q(wline)-.25 E F1 +(\\r)144 132 Q F0(carriage return)180 132 Q F1(\\s)144 144 Q F0 +(the name of the shell, the basename of)180 144 Q F1($0)2.5 E F0 (\(the portion follo)2.5 E(wing the \214nal slash\))-.25 E F1(\\t)144 -120 Q F0(the current time in 24-hour HH:MM:SS format)180 120 Q F1(\\T) -144 132 Q F0(the current time in 12-hour HH:MM:SS format)180 132 Q F1 -(\\@)144 144 Q F0(the current time in 12-hour am/pm format)180 144 Q F1 -(\\A)144 156 Q F0(the current time in 24-hour HH:MM format)180 156 Q F1 -(\\u)144 168 Q F0(the username of the current user)180 168 Q F1(\\v)144 -180 Q F0(the v)180 180 Q(ersion of)-.15 E F1(bash)2.5 E F0 -(\(e.g., 2.00\))2.5 E F1(\\V)144 192 Q F0(the release of)180 192 Q F1 +156 Q F0(the current time in 24-hour HH:MM:SS format)180 156 Q F1(\\T) +144 168 Q F0(the current time in 12-hour HH:MM:SS format)180 168 Q F1 +(\\@)144 180 Q F0(the current time in 12-hour am/pm format)180 180 Q F1 +(\\A)144 192 Q F0(the current time in 24-hour HH:MM format)180 192 Q F1 +(\\u)144 204 Q F0(the username of the current user)180 204 Q F1(\\v)144 +216 Q F0(the v)180 216 Q(ersion of)-.15 E F1(bash)2.5 E F0 +(\(e.g., 2.00\))2.5 E F1(\\V)144 228 Q F0(the release of)180 228 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 204 Q F0 .116(the current w) -180 204 R .116(orking directory)-.1 F 2.616(,w)-.65 G(ith)-2.616 E/F2 9 +(l\().15 G(e.g., 2.00.0\))-2.5 E F1(\\w)144 240 Q F0 .116(the current w) +180 240 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 216 Q(OMPT_DIR)-.27 E(TRIM)-.36 E F0 -.25(va)2.25 G(riable\)).25 E -F1(\\W)144 228 Q F0(the basename of the current w)180 228 Q +180 252 Q(OMPT_DIR)-.27 E(TRIM)-.36 E F0 -.25(va)2.25 G(riable\)).25 E +F1(\\W)144 264 Q F0(the basename of the current w)180 264 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 240 Q F0 -(the history number of this command)180 240 Q F1(\\#)144 252 Q F0 -(the command number of this command)180 252 Q F1(\\$)144 264 Q F0 -(if the ef)180 264 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 276 Q/F3 10 +(abbre)2.25 E(viated with a tilde)-.25 E F1(\\!)144 276 Q F0 +(the history number of this command)180 276 Q F1(\\#)144 288 Q F0 +(the command number of this command)180 288 Q F1(\\$)144 300 Q F0 +(if the ef)180 300 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 312 Q/F3 10 /Times-Italic@0 SF(nnn)A F0 -(the character corresponding to the octal number)180 276 Q F3(nnn)2.5 E -F1(\\\\)144 288 Q F0 2.5(ab)180 288 S(ackslash)-2.5 E F1(\\[)144 300 Q -F0(be)180 300 Q 1.257(gin a sequence of non-printing characters, which \ +(the character corresponding to the octal number)180 312 Q F3(nnn)2.5 E +F1(\\\\)144 324 Q F0 2.5(ab)180 324 S(ackslash)-2.5 E F1(\\[)144 336 Q +F0(be)180 336 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 312 Q F1(\\])144 324 Q F0 -(end a sequence of non-printing characters)180 324 Q .12 -(The command number and the history number are usually dif)108 340.8 R +(control sequence into the prompt)180 348 Q F1(\\])144 360 Q F0 +(end a sequence of non-printing characters)180 360 Q .12 +(The command number and the history number are usually dif)108 376.8 R .119(ferent: the history number of a command is its)-.25 F 1.585(positi\ on in the history list, which may include commands restored from the hi\ -story \214le \(see)108 352.8 R F2(HIST)4.085 E(OR)-.162 E(Y)-.315 E F0 -(belo)108 364.8 Q .541(w\), while the command number is the position in\ +story \214le \(see)108 388.8 R F2(HIST)4.085 E(OR)-.162 E(Y)-.315 E F0 +(belo)108 400.8 Q .541(w\), while the command number is the position in\ the sequence of commands e)-.25 F -.15(xe)-.15 G .54 -(cuted during the cur).15 F(-)-.2 E .546(rent shell session.)108 376.8 R +(cuted during the cur).15 F(-)-.2 E .546(rent shell session.)108 412.8 R .546(After the string is decoded, it is e)5.546 F .546 (xpanded via parameter e)-.15 F .546(xpansion, command substitu-)-.15 F -.352(tion, arithmetic e)108 388.8 R .352(xpansion, and quote remo)-.15 F +.352(tion, arithmetic e)108 424.8 R .352(xpansion, and quote remo)-.15 F -.25(va)-.15 G .352(l, subject to the v).25 F .352(alue of the)-.25 F F1 (pr)2.852 E(omptv)-.18 E(ars)-.1 E F0 .351(shell option \(see the)2.852 -F(description of the)108 400.8 Q F1(shopt)2.5 E F0(command under)2.5 E +F(description of the)108 436.8 Q F1(shopt)2.5 E F0(command under)2.5 E F2(SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).) --.25 E/F4 10.95/Times-Bold@0 SF(READLINE)72 417.6 Q F0 .15 +-.25 E/F4 10.95/Times-Bold@0 SF(READLINE)72 453.6 Q F0 .15 (This is the library that handles reading input when using an interacti) -108 429.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 1.209(is gi)108 441.6 R +108 465.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 1.209(is gi)108 477.6 R -.15(ve)-.25 G 3.709(na).15 G 3.709(ts)-3.709 G 1.209(hell in)-3.709 F -.2(vo)-.4 G 3.709(cation. Line).2 F 1.208 (editing is also used when using the)3.709 F F13.708 E F0 1.208 (option to the)3.708 F F1 -.18(re)3.708 G(ad).18 E F0 -.2(bu)3.708 G -3.708(iltin. By).2 F(def)108 453.6 Q .851 +3.708(iltin. By).2 F(def)108 489.6 Q .851 (ault, the line editing commands are similar to those of Emacs.)-.1 F 3.351(Av)5.851 G .851(i-style line editing interf)-3.351 F .852 -(ace is also)-.1 F -.2(av)108 465.6 S 3.35(ailable. Line)-.05 F .85 +(ace is also)-.1 F -.2(av)108 501.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 477.6 Q F2 .762(SHELL B)3.262 F(UIL)-.09 E .762(TIN COMMANDS) +(\(see)108 513.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 489.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 506.4 Q +(emacs)108 525.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 542.4 Q F0 .463(In this section, the Emacs-style notation is used to denote k) -108 518.4 R -.15(ey)-.1 G(strok).15 E 2.963(es. Control)-.1 F -.1(ke) +108 554.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 530.4 R(Similarly)6.152 E(,) +1.152(e.g., C\255n means Control\255N.)108 566.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 542.4 S .831 +(\255x means Meta\255X.)-3.653 F(\(On)6.153 E -.1(ke)108 578.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 554.4 R F3 .599(meta pr)3.099 F +(his mak).65 F(es)-.1 E .599(ESC the)108 590.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 566.4 Q .3 -.15(ey w)-.1 H +(hen hold).15 F(the Control k)108 602.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 .62(Readline commands may be gi)108 583.2 R -.15(ve)-.25 G 3.119 +.65 E .62(Readline commands may be gi)108 619.2 R -.15(ve)-.25 G 3.119 (nn).15 G(umeric)-3.119 E F3(ar)3.119 E(guments)-.37 E F0 3.119(,w).27 G .619(hich normally act as a repeat count.)-3.119 F(Sometimes,)5.619 E -(ho)108 595.2 Q(we)-.25 E -.15(ve)-.25 G 1.418 -.4(r, i).15 H 3.118(ti) +(ho)108 631.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 607.2 R 1.018 +(ument to a command that).18 F 1.019(acts in the forw)108 643.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 619.2 Q +(ard direction.)-.1 F(Com-)6.018 E(mands whose beha)108 655.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 636 R F3 +-.25 E -.65(w.)-.25 G .811(When a command is described as)108 672 R F3 (killing)3.311 E F0(te)3.311 E .811(xt, the te)-.15 F .811 (xt deleted is sa)-.15 F -.15(ve)-.2 G 3.311(df).15 G .812 (or possible future retrie)-3.311 F -.25(va)-.25 G 3.312(l\().25 G F3 -(yank-)-3.312 E(ing)108 648 Q F0 2.529(\). The)B .029(killed te)2.529 F +(yank-)-3.312 E(ing)108 684 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 660 R .567(ed all at once.)-.1 F .567 +-.15 F .567(which can be yank)108 696 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 672 Q F1(Readline Initialization)87 688.8 Q F0 .091(Readline is cus\ -tomized by putting commands in an initialization \214le \(the)108 700.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 .196(is tak)108 712.8 R .196(en from the v) --.1 F .196(alue of the)-.25 F F2(INPUTRC)2.696 E F0 -.25(va)2.446 G -2.696(riable. If).25 F .196(that v)2.696 F .196 -(ariable is unset, the def)-.25 F .196(ault is)-.1 F F3(~/.inputr)2.696 -E(c)-.37 E F0 5.196(.W).31 G .197(hen a)-5.196 F 1.034(program which us\ -es the readline library starts up, the initialization \214le is read, a\ -nd the k)108 724.8 R 1.334 -.15(ey b)-.1 H 1.034(indings and).15 F -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(38)192.895 E 0 Cg EP +108 708 Q(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(38)185.955 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 -.25(va)108 84 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 96 R .737(Lines be)5.737 F .737(ginning with a) --.15 F/F1 10/Times-Bold@0 SF(#)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 108 R +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(Readline Initialization)87 84 Q F0 .091(Readline is customized by pu\ +tting commands in an initialization \214le \(the)108 96 R/F2 10 +/Times-Italic@0 SF(inputr)2.591 E(c)-.37 E F0 2.591(\214le\). The)2.591 +F .091(name of this \214le)2.591 F .196(is tak)108 108 R .196 +(en from the v)-.1 F .196(alue of the)-.25 F/F3 9/Times-Bold@0 SF +(INPUTRC)2.696 E F0 -.25(va)2.446 G 2.696(riable. If).25 F .196(that v) +2.696 F .196(ariable is unset, the def)-.25 F .196(ault is)-.1 F F2 +(~/.inputr)2.696 E(c)-.37 E F0 5.196(.W).31 G .197(hen a)-5.196 F 1.034 +(program which uses the readline library starts up, the initialization \ +\214le is read, and the k)108 120 R 1.334 -.15(ey b)-.1 H 1.034 +(indings and).15 F -.25(va)108 132 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 144 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 156 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 124.8 R .986(ault k)-.1 F --.15(ey)-.1 G .987(-bindings may be changed with an).15 F/F2 10 -/Times-Italic@0 SF(inputr)3.497 E(c)-.37 E F0 3.487(\214le. Other)3.797 -F .987(programs that use this library may)3.487 F(add their o)108 136.8 -Q(wn commands and bindings.)-.25 E -.15(Fo)108 153.6 S 2.5(re).15 G -(xample, placing)-2.65 E(M\255Control\255u: uni)144 170.4 Q -.15(ve)-.25 -G(rsal\255ar).15 E(gument)-.18 E(or)108 182.4 Q(C\255Meta\255u: uni)144 -194.4 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(into the)108 206.4 +(ariable settings.)-.25 E .986(The def)108 172.8 R .986(ault k)-.1 F +-.15(ey)-.1 G .987(-bindings may be changed with an).15 F F2(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 184.8 Q +(wn commands and bindings.)-.25 E -.15(Fo)108 201.6 S 2.5(re).15 G +(xample, placing)-2.65 E(M\255Control\255u: uni)144 218.4 Q -.15(ve)-.25 +G(rsal\255ar).15 E(gument)-.18 E(or)108 230.4 Q(C\255Meta\255u: uni)144 +242.4 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(into the)108 254.4 Q F2(inputr)2.51 E(c)-.37 E F0 -.1(wo)2.81 G(uld mak).1 E 2.5(eM)-.1 G (\255C\255u e)-2.5 E -.15(xe)-.15 G(cute the readline command).15 E F2 (univer)2.5 E(sal\255ar)-.1 E(gument)-.37 E F0(.).68 E 1.261(The follo) -108 223.2 R 1.261(wing symbolic character names are recognized:)-.25 F +108 271.2 R 1.261(wing symbolic character names are recognized:)-.25 F F2 -.4(RU)3.761 G(BOUT).4 E F0(,)1.27 E F2(DEL)3.761 E F0(,).53 E F2 (ESC)3.761 E F0(,).72 E F2(LFD)3.761 E F0(,).28 E F2(NEWLINE)3.76 E F0 -(,).73 E F2(RET)3.76 E F0(,)1.27 E F2(RETURN)108 235.2 Q F0(,)1.1 E F2 +(,).73 E F2(RET)3.76 E F0(,)1.27 E F2(RETURN)108 283.2 Q F0(,)1.1 E F2 (SPC)2.5 E F0(,).72 E F2(SP)2.5 E -.3(AC)-.9 G(E).3 E F0 2.5(,a).73 G (nd)-2.5 E F2 -.5(TA)2.5 G(B).5 E F0(.).27 E .209 -(In addition to command names, readline allo)108 252 R .209(ws k)-.25 F +(In addition to command names, readline allo)108 300 R .209(ws k)-.25 F -.15(ey)-.1 G 2.709(st).15 G 2.709(ob)-2.709 G 2.709(eb)-2.709 G .209 (ound to a string that is inserted when the k)-2.709 F .509 -.15(ey i) --.1 H(s).15 E(pressed \(a)108 264 Q F2(macr)2.5 E(o)-.45 E F0(\).)A F1 -(Readline K)87 280.8 Q(ey Bindings)-.25 E F0 .366 -(The syntax for controlling k)108 292.8 R .666 -.15(ey b)-.1 H .366 +-.1 H(s).15 E(pressed \(a)108 312 Q F2(macr)2.5 E(o)-.45 E F0(\).)A F1 +(Readline K)87 328.8 Q(ey Bindings)-.25 E F0 .366 +(The syntax for controlling k)108 340.8 R .666 -.15(ey b)-.1 H .366 (indings in the).15 F F2(inputr)2.876 E(c)-.37 E F0 .366 (\214le is simple.)3.176 F .366(All that is required is the name of the) -5.366 F .263(command or the te)108 304.8 R .264(xt of a macro and a k) +5.366 F .263(command or the te)108 352.8 R .264(xt of a macro and a k) -.15 F .564 -.15(ey s)-.1 H .264(equence to which it should be bound.) .15 F .264(The name may be speci-)5.264 F .853(\214ed in one of tw)108 -316.8 R 3.353(ow)-.1 G .853(ays: as a symbolic k)-3.453 F 1.153 -.15 +364.8 R 3.353(ow)-.1 G .853(ays: as a symbolic k)-3.453 F 1.153 -.15 (ey n)-.1 H .853(ame, possibly with).15 F F2(Meta\255)3.353 E F0(or) 3.353 E F2(Contr)3.353 E(ol\255)-.45 E F0(pre\214x)3.353 E .853 -(es, or as a k)-.15 F -.15(ey)-.1 G(sequence.)108 328.8 Q .16 -(When using the form)108 345.6 R F1 -.1(ke)2.66 G(yname).1 E F0(:)A F2 +(es, or as a k)-.15 F -.15(ey)-.1 G(sequence.)108 376.8 Q .16 +(When using the form)108 393.6 R F1 -.1(ke)2.66 G(yname).1 E F0(:)A F2 (function\255name).833 E F0(or)2.66 E F2(macr)2.66 E(o)-.45 E F0(,)A F2 -.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 357.6 R(or e) --.15 E(xample:)-.15 E(Control-u: uni)144 381.6 Q -.15(ve)-.25 G -(rsal\255ar).15 E(gument)-.18 E(Meta-Rubout: backw)144 393.6 Q -(ard-kill-w)-.1 E(ord)-.1 E(Control-o: "> output")144 405.6 Q .699 -(In the abo)108 422.4 R .998 -.15(ve ex)-.15 H(ample,).15 E F2(C\255u) +(ey s)-.1 H .161(pelled out in Eng-).15 F 2.5(lish. F)108 405.6 R(or e) +-.15 E(xample:)-.15 E(Control-u: uni)144 429.6 Q -.15(ve)-.25 G +(rsal\255ar).15 E(gument)-.18 E(Meta-Rubout: backw)144 441.6 Q +(ard-kill-w)-.1 E(ord)-.1 E(Control-o: "> output")144 453.6 Q .699 +(In the abo)108 470.4 R .998 -.15(ve ex)-.15 H(ample,).15 E F2(C\255u) 3.038 E F0 .698(is bound to the function)3.448 F F1(uni)3.198 E -.1(ve) -.1 G(rsal\255ar).1 E(gument)-.1 E F0(,)A F2(M\255DEL)3.878 E F0 .698 -(is bound to the func-)3.728 F(tion)108 434.4 Q F1 +(is bound to the func-)3.728 F(tion)108 482.4 Q F1 (backward\255kill\255w)2.758 E(ord)-.1 E F0 2.758(,a)C(nd)-2.758 E F2 (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 -446.4 Q(xt)-.15 E/F3 10/Courier@0 SF 6(>o)2.5 G(utput)-6 E F0 -(into the line\).)2.5 E .056(In the second form,)108 463.2 R F1("k)2.556 +494.4 Q(xt)-.15 E/F4 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 511.2 R F1("k)2.556 E(eyseq")-.1 E F0(:)A F2(function\255name).833 E F0(or)2.556 E F2(macr) 2.556 E(o)-.45 E F0(,)A F1 -.1(ke)2.556 G(yseq).1 E F0(dif)2.555 E .055 (fers from)-.25 F F1 -.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 475.2 R 1.584 -.15(ey s)-.1 H 1.284(equence m\ +(denoting an entire k)108 523.2 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 487.2 R .686 -.15(ey e)-.1 H +(Some)6.284 E .386(GNU Emacs style k)108 535.2 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 499.2 Q("\\C\255u": uni)144 523.2 Q -.15(ve) +(are not recognized.)108 547.2 Q("\\C\255u": uni)144 571.2 Q -.15(ve) -.25 G(rsal\255ar).15 E(gument)-.18 E -("\\C\255x\\C\255r": re\255read\255init\255\214le)144 535.2 Q -("\\e[11~": "Function K)144 547.2 Q .3 -.15(ey 1)-.25 H(").15 E .314 -(In this e)108 564 R(xample,)-.15 E F2(C\255u)2.654 E F0 .314(is ag) +("\\C\255x\\C\255r": re\255read\255init\255\214le)144 583.2 Q +("\\e[11~": "Function K)144 595.2 Q .3 -.15(ey 1)-.25 H(").15 E .314 +(In this e)108 612 R(xample,)-.15 E F2(C\255u)2.654 E F0 .314(is ag) 3.064 F .315(ain bound to the function)-.05 F F1(uni)2.815 E -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 E F0(.)A F2 .315(C\255x C\255r)5.155 F F0 -.315(is bound to the func-)3.545 F(tion)108 576 Q F1 -.18(re)2.5 G +.315(is bound to the func-)3.545 F(tion)108 624 Q F1 -.18(re)2.5 G .18 E(ead\255init\255\214le)-.18 E F0 2.5(,a)C(nd)-2.5 E F2(ESC [ 1 1 ~) -3.01 E F0(is bound to insert the te)3.94 E(xt)-.15 E F3(Function Key 1) +3.01 E F0(is bound to insert the te)3.94 E(xt)-.15 E F4(Function Key 1) 2.5 E F0(.)A(The full set of GNU Emacs style escape sequences is)108 -592.8 Q F1<5c43ad>144 604.8 Q F0(control pre\214x)180 604.8 Q F1<5c4dad> -144 616.8 Q F0(meta pre\214x)180 616.8 Q F1(\\e)144 628.8 Q F0 -(an escape character)180 628.8 Q F1(\\\\)144 640.8 Q F0(backslash)180 -640.8 Q F1(\\")144 652.8 Q F0(literal ")180 652.8 Q F1<5c08>144 664.8 Q -F0(literal \010)180 664.8 Q(In addition to the GNU Emacs style escape s\ -equences, a second set of backslash escapes is a)108 681.6 Q -.25(va)-.2 -G(ilable:).25 E F1(\\a)144 693.6 Q F0(alert \(bell\))180 693.6 Q F1(\\b) -144 705.6 Q F0(backspace)180 705.6 Q F1(\\d)144 717.6 Q F0(delete)180 -717.6 Q(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(39)192.895 E 0 Cg -EP +640.8 Q F1<5c43ad>144 652.8 Q F0(control pre\214x)180 652.8 Q F1<5c4dad> +144 664.8 Q F0(meta pre\214x)180 664.8 Q F1(\\e)144 676.8 Q F0 +(an escape character)180 676.8 Q F1(\\\\)144 688.8 Q F0(backslash)180 +688.8 Q F1(\\")144 700.8 Q F0(literal ")180 700.8 Q F1<5c08>144 712.8 Q +F0(literal \010)180 712.8 Q(In addition to the GNU Emacs style escape s\ +equences, a second set of backslash escapes is a)108 729.6 Q -.25(va)-.2 +G(ilable:).25 E(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(39) +185.955 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/F1 10/Times-Bold@0 -SF(\\f)144 84 Q F0(form feed)180 84 Q F1(\\n)144 96 Q F0(ne)180 96 Q -(wline)-.25 E F1(\\r)144 108 Q F0(carriage return)180 108 Q F1(\\t)144 -120 Q F0(horizontal tab)180 120 Q F1(\\v)144 132 Q F0 -.15(ve)180 132 S -(rtical tab).15 E F1(\\)144 144 Q/F2 10/Times-Italic@0 SF(nnn)A F0 -(the eight-bit character whose v)180 144 Q(alue is the octal v)-.25 E +SF(\\a)144 84 Q F0(alert \(bell\))180 84 Q F1(\\b)144 96 Q F0(backspace) +180 96 Q F1(\\d)144 108 Q F0(delete)180 108 Q F1(\\f)144 120 Q F0 +(form feed)180 120 Q F1(\\n)144 132 Q F0(ne)180 132 Q(wline)-.25 E F1 +(\\r)144 144 Q F0(carriage return)180 144 Q F1(\\t)144 156 Q F0 +(horizontal tab)180 156 Q F1(\\v)144 168 Q F0 -.15(ve)180 168 S +(rtical tab).15 E F1(\\)144 180 Q/F2 10/Times-Italic@0 SF(nnn)A F0 +(the eight-bit character whose v)180 180 Q(alue is the octal v)-.25 E (alue)-.25 E F2(nnn)2.5 E F0(\(one to three digits\))2.5 E F1(\\x)144 -156 Q F2(HH)A F0(the eight-bit character whose v)180 156 Q +192 Q F2(HH)A F0(the eight-bit character whose v)180 192 Q (alue is the he)-.25 E(xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0 (\(one or tw)2.5 E 2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E 1.142 -(When entering the te)108 172.8 R 1.141(xt of a macro, single or double\ +(When entering the te)108 208.8 R 1.141(xt of a macro, single or double\ quotes must be used to indicate a macro de\214nition.)-.15 F .089 -(Unquoted te)108 184.8 R .089(xt is assumed to be a function name.)-.15 +(Unquoted te)108 220.8 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 -196.8 Q 2.5(xpanded. Backslash)-.15 F(will quote an)2.5 E 2.5(yo)-.15 G +232.8 Q 2.5(xpanded. Backslash)-.15 F(will quote an)2.5 E 2.5(yo)-.15 G (ther character in the macro te)-2.5 E(xt, including " and \010.)-.15 E -F1(Bash)108 213.6 Q F0(allo)2.93 E .43(ws the current readline k)-.25 F +F1(Bash)108 249.6 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 225.6 R .345 -.15 +(The editing mode may be switched during interacti)108 261.6 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 237.6 Q/F3 9/Times-Bold@0 SF(SHELL B)2.5 E +(iltin command).2 F(\(see)108 273.6 Q/F3 9/Times-Bold@0 SF(SHELL B)2.5 E (UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E F1 -(Readline V)87 254.4 Q(ariables)-.92 E F0 .044(Readline has v)108 266.4 +(Readline V)87 290.4 Q(ariables)-.92 E F0 .044(Readline has v)108 302.4 R .043(ariables that can be used to further customize its beha)-.25 F (vior)-.2 E 5.043(.A)-.55 G -.25(va)-2.5 G .043 -(riable may be set in the).25 F F2(inpu-)2.553 E(tr)108 278.4 Q(c)-.37 E -F0(\214le with a statement of the form)2.81 E F1(set)144 295.2 Q F2 +(riable may be set in the).25 F F2(inpu-)2.553 E(tr)108 314.4 Q(c)-.37 E +F0(\214le with a statement of the form)2.81 E F1(set)144 331.2 Q F2 (variable\255name value)2.5 E F0 .79(Except where noted, readline v)108 -312 R .79(ariables can tak)-.25 F 3.29(et)-.1 G .79(he v)-3.29 F(alues) +348 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 324 R .448(ariable names are ignored.)-.25 F .448(When a v)5.448 F +108 360 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 336 Q -.15(ve)-.25 G .467 +(alues, "on" \(case-insensi-)-.25 F(ti)108 372 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 -348 S(lues are:).25 E F1(bell\255style \(audible\))108 364.8 Q F0 .011 -(Controls what happens when readline w)144 376.8 R .011 +384 S(lues are:).25 E F1(bell\255style \(audible\))108 400.8 Q F0 .011 +(Controls what happens when readline w)144 412.8 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 388.8 R .94(If set to)5.94 F F1(visible)3.44 E F0 +(rings the bell.)144 424.8 R .94(If set to)5.94 F F1(visible)3.44 E F0 3.44(,r)C .94(eadline uses a visible bell if one is a)-3.44 F -.25(va) -.2 G 3.44(ilable. If).25 F .94(set to)3.44 F F1(audible)3.44 E F0(,)A -(readline attempts to ring the terminal')144 400.8 Q 2.5(sb)-.55 G(ell.) --2.5 E F1(bind\255tty\255special\255chars \(On\))108 412.8 Q F0 .056 -(If set to)144 424.8 R F1(On)2.556 E F0 2.556(,r)C .056(eadline attempt\ +(readline attempts to ring the terminal')144 436.8 Q 2.5(sb)-.55 G(ell.) +-2.5 E F1(bind\255tty\255special\255chars \(On\))108 448.8 Q F0 .056 +(If set to)144 460.8 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 436.8 Q -.15 +(ernel')-.1 E 2.555(st)-.55 G(ermi-)-2.555 E(nal dri)144 472.8 Q -.15 (ve)-.25 G 2.5(rt).15 G 2.5(ot)-2.5 G(heir readline equi)-2.5 E -.25(va) --.25 G(lents.).25 E F1(blink\255matching\255par)108 448.8 Q(en \(Off\)) --.18 E F0 .21(If set to)144 460.8 R F1(On)2.71 E F0 2.71(,r)C .21 +-.25 G(lents.).25 E F1(blink\255matching\255par)108 484.8 Q(en \(Off\)) +-.18 E F0 .21(If set to)144 496.8 R F1(On)2.71 E F0 2.71(,r)C .21 (eadline attempts to brie\215y mo)-2.71 F .51 -.15(ve t)-.15 H .21 (he cursor to an opening parenthesis when a closing).15 F -(parenthesis is inserted.)144 472.8 Q F1(color)108 484.8 Q +(parenthesis is inserted.)144 508.8 Q F1(color)108 520.8 Q (ed\255completion\255pr)-.18 E(e\214x \(Off\))-.18 E F0 .515(If set to) -144 496.8 R F1(On)3.015 E F0 3.015(,w)C .515(hen listing completions, r\ +144 532.8 R F1(On)3.015 E F0 3.015(,w)C .515(hen listing completions, r\ eadline displays the common pre\214x of the set of possible)-3.015 F -2.935(completions using a dif)144 508.8 R 2.935(ferent color)-.25 F +2.935(completions using a dif)144 544.8 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 520.8 Q -F0(en)2.5 E(vironment v)-.4 E(ariable.)-.25 E F1(color)108 532.8 Q -(ed\255stats \(Off\))-.18 E F0 1.58(If set to)144 544.8 R F1(On)4.08 E +(en from the v)-.1 F 2.936(alue of the)-.25 F F1(LS_COLORS)144 556.8 Q +F0(en)2.5 E(vironment v)-.4 E(ariable.)-.25 E F1(color)108 568.8 Q +(ed\255stats \(Off\))-.18 E F0 1.58(If set to)144 580.8 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 -556.8 R(color de\214nitions are tak)2.5 E(en from the v)-.1 E +592.8 R(color de\214nitions are tak)2.5 E(en from the v)-.1 E (alue of the)-.25 E F1(LS_COLORS)2.5 E F0(en)2.5 E(vironment v)-.4 E -(ariable.)-.25 E F1(comment\255begin \(`)108 568.8 Q(`#')-.63 E('\))-.63 -E F0 .884(The string that is inserted when the readline)144 580.8 R F1 +(ariable.)-.25 E F1(comment\255begin \(`)108 604.8 Q(`#')-.63 E('\))-.63 +E F0 .884(The string that is inserted when the readline)144 616.8 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 592.8 Q F1 +3.385(cuted. This).15 F(com-)3.385 E(mand is bound to)144 628.8 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 \(-1\))108 -604.8 Q F0 1.453(The number of screen columns used to display possible \ -matches when performing completion.)144 616.8 R .193(The v)144 628.8 R +640.8 Q F0 1.453(The number of screen columns used to display possible \ +matches when performing completion.)144 652.8 R .193(The v)144 664.8 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 640.8 Q(The def)5 E -(ault v)-.1 E(alue is -1.)-.25 E F1(completion\255ignor)108 652.8 Q -(e\255case \(Off\))-.18 E F0(If set to)144 664.8 Q F1(On)2.5 E F0 2.5 +(cause matches to be displayed one per line.)144 676.8 Q(The def)5 E +(ault v)-.1 E(alue is -1.)-.25 E F1(completion\255ignor)108 688.8 Q +(e\255case \(Off\))-.18 E F0(If set to)144 700.8 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 676.8 Q F0 .094(If set to)144 -688.8 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 700.8 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(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(40)192.895 E 0 Cg EP +insensiti)-2.5 E .3 -.15(ve f)-.25 H(ashion.).05 E(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(40)185.955 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(completion\255pr)108 84 Q(e\214x\255display\255length \(0\))-.18 E F0 +SF(completion\255map\255case \(Off\))108 84 Q F0 .094(If set to)144 96 R +F1(On)2.593 E F0 2.593(,a)C(nd)-2.593 E F1(completion\255ignor)2.593 E +(e\255case)-.18 E F0 .093(is enabled, readline treats h)2.593 F .093 +(yphens \()-.05 F/F2 10/Times-Italic@0 SFA F0 2.593(\)a)C .093 +(nd underscores)-2.593 F(\()144 108 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 120 Q(e\214x\255display\255length \(0\))-.18 E F0 .829(The length in characters of the common pre\214x of a list of possi\ -ble completions that is displayed)144 96 R 1.275 -(without modi\214cation.)144 108 R 1.275(When set to a v)6.275 F 1.274 +ble completions that is displayed)144 132 R 1.275 +(without modi\214cation.)144 144 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 120 S(lue are replaced with an \ +(es longer than this)-.15 F -.25(va)144 156 S(lue are replaced with an \ ellipsis when displaying possible completions.).25 E F1 -(completion\255query\255items \(100\))108 132 Q F0 .529 -(This determines when the user is queried about vie)144 144 R .53 +(completion\255query\255items \(100\))108 168 Q F0 .529 +(This determines when the user is queried about vie)144 180 R .53 (wing the number of possible completions gen-)-.25 F .561(erated by the) -144 156 R F1(possible\255completions)3.061 E F0 3.061(command. It)3.061 +144 192 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 168 R +-.15 F .56(alue greater than or)-.25 F .782(equal to zero.)144 204 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 -.25(va)144 180 S .237 +the v)5.782 F .783(alue of this)-.25 F -.25(va)144 216 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 192 Q F1(con)108 204 -Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .612(If set to)144 216 R F1(On) +.237(re simply listed)-2.737 F(on the terminal.)144 228 Q F1(con)108 240 +Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .612(If set to)144 252 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 228 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 240 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 252 Q F0 .038(If set to)144 264 R -F1(On)2.538 E F0 2.538(,r)C .038(eadline will inhibit w)-2.538 F .038 +144 264 R .541(fect, using escape as the)-.25 F F2 .541(meta pr)3.041 F +(e-)-.37 E<8c78>144 276 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 288 Q F0 .038(If set to)144 300 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 276 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 288 Q(ol\255characters \(On\))-.18 E F0 1.211 -(When set to)144 300 R F1(On)3.711 E F0 3.711(,o)C 3.711(no)-3.711 G +144 312 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 324 Q(ol\255characters \(On\))-.18 E F0 1.211 +(When set to)144 336 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 312 Q -.15(ey)-.1 G -(board.).15 E F1(editing\255mode \(emacs\))108 324 Q F0 .141 -(Controls whether readline be)144 336 R .141(gins with a set of k)-.15 F +(corresponding to a signal generated from the k)144 348 Q -.15(ey)-.1 G +(board.).15 E F1(editing\255mode \(emacs\))108 360 Q F0 .141 +(Controls whether readline be)144 372 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 348 Q F1(emacs)2.5 E F0(or)2.5 E F1(vi)2.5 E -F0(.)A F1(emacs\255mode\255string \(@\))108 360 Q F0 .051(This string i\ -s displayed immediately before the last line of the primary prompt when\ - emacs editing)144 372 R .292(mode is acti)144 384 R -.15(ve)-.25 G -5.292(.T).15 G .292(he v)-5.292 F .293(alue is e)-.25 F .293 -(xpanded lik)-.15 F 2.793(eak)-.1 G .593 -.15(ey b)-2.893 H .293 -(inding, so the standard set of meta- and control).15 F(pre\214x)144 396 -Q .602(es and backslash escape sequences is a)-.15 F -.25(va)-.2 G 3.101 -(ilable. Use).25 F .601(the \\1 and \\2 escapes to be)3.101 F .601 -(gin and end)-.15 F .019(sequences of non-printing characters, which ca\ -n be used to embed a terminal control sequence into)144 408 R -(the mode string.)144 420 Q F1(enable\255brack)108 432 Q -(eted\255paste \(Off\))-.1 E F0 1.222(When set to)144 444 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 456 R(uf)-.2 E .353(fer as a single strin\ +(can be set to either)144 384 Q F1(emacs)2.5 E F0(or)2.5 E F1(vi)2.5 E +F0(.)A F1(emacs\255mode\255string \(@\))108 396 Q F0 .518(If the)144 408 +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 420 +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 432 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 444 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 456 Q F1(enable\255brack)108 468 Q(eted\255paste \(Off\))-.1 E F0 +1.222(When set to)144 480 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 492 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 468 R -.15(ey)-.1 G 3.043(board. This) +(it had been read from the k)144 504 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 480 Q F1(enable\255k)108 492 Q(eypad \(Off\))-.1 E F0 .892 -(When set to)144 504 R F1(On)3.393 E F0 3.393(,r)C .893 +144 516 Q F1(enable\255k)108 528 Q(eypad \(Off\))-.1 E F0 .892 +(When set to)144 540 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 516 Q 2.5(wk)-.25 G -.15(ey)-2.6 -G(s.).15 E F1(enable\255meta\255k)108 528 Q(ey \(On\))-.1 E F0 .64 -(When set to)144 540 R F1(On)3.14 E F0 3.14(,r)C .64 +(tems need this to enable the arro)144 552 Q 2.5(wk)-.25 G -.15(ey)-2.6 +G(s.).15 E F1(enable\255meta\255k)108 564 Q(ey \(On\))-.1 E F0 .64 +(When set to)144 576 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 552 Q +(he terminal claims to support).15 F(when it is called.)144 588 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 564 Q F0(If set to)144 576 Q F1(On)2.5 E F0 +(expand\255tilde \(Off\))108 600 Q F0(If set to)144 612 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 588 Q(eser)-.18 E -.1 -(ve)-.1 G(\255point \(Off\)).1 E F0 1.338(If set to)144 600 R F1(On) +-.15 E(ord completion.)-.1 E F1(history\255pr)108 624 Q(eser)-.18 E -.1 +(ve)-.1 G(\255point \(Off\)).1 E F0 1.338(If set to)144 636 R F1(On) 3.838 E F0 3.838(,t)C 1.338(he history code attempts to place point at \ -the same location on each history line)-3.838 F(retrie)144 612 Q -.15 +the same location on each history line)-3.838 F(retrie)144 648 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 624 Q F0 .949 -(Set the maximum number of history entries sa)144 636 R -.15(ve)-.2 G +(history\255size \(unset\))108 660 Q F0 .949 +(Set the maximum number of history entries sa)144 672 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 648 R 2.982(we)-.25 G .483 +(history entries are deleted and no ne)144 684 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 660 R .277(By def)5.278 F +(ber of history entries is not limited.)144 696 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 672 Q F1(HISTSIZE)3.41 E F0 .91(shell v)3.41 F +(alue of)-.25 F(the)144 708 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 684 Q F1 -(horizontal\255scr)108 696 Q(oll\255mode \(Off\))-.18 E F0 .449 -(When set to)144 708 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 720 R(w)-.25 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E -(41)192.895 E 0 Cg EP +(the maximum number of history entries will be set to 500.)144 720 Q +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(41)185.955 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(line.)144 84 Q/F1 -10/Times-Bold@0 SF(input\255meta \(Off\))108 96 Q F0 1.062(If set to)144 -108 R F1(On)3.562 E F0 3.562(,r)C 1.061(eadline will enable eight-bit i\ -nput \(that is, it will not strip the eighth bit from the)-3.562 F .335 -(characters it reads\), re)144 120 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 132 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 10/Times-Italic@0 SF(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 144 Q F1 -(isear)108 156 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 168 R -.15(xe)-.15 G(cut-).15 E -.935(ing the character as a command.)144 180 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 192 Q F2 -(C\255J)2.5 E F0(will terminate an incremental search.)2.5 E F1 -.1(ke) -108 204 S(ymap \(emacs\)).1 E F0 2.02(Set the current readline k)144 216 -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 .069 -(emacs\255meta, emacs\255ctlx, vi, vi\255command)144 228 R F0 2.568(,a)C -(nd)-2.568 E F2(vi\255insert)2.568 E F0(.).68 E F2(vi)5.068 E F0 .068 -(is equi)2.568 F -.25(va)-.25 G .068(lent to).25 F F2(vi\255command) -2.568 E F0(;)A F2(emacs)2.568 E F0 1.543(is equi)144 240 R -.25(va)-.25 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(horizontal\255scr)108 84 Q(oll\255mode \(Off\))-.18 E F0 .449 +(When set to)144 96 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 108 R(w)-.25 E(line.)144 120 Q F1(input\255meta \(Off\))108 132 +Q F0 1.062(If set to)144 144 R F1(On)3.562 E F0 3.562(,r)C 1.061(eadlin\ +e will enable eight-bit input \(that is, it will not strip the eighth b\ +it from the)-3.562 F .335(characters it reads\), re)144 156 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 168 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 10/Times-Italic@0 SF(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 +180 Q F1(isear)108 192 Q(ch\255terminators \(`)-.18 E(`C\255[C\255J') +-.63 E('\))-.63 E F0 .439(The string of characters that should terminat\ +e an incremental search without subsequently e)144 204 R -.15(xe)-.15 G +(cut-).15 E .935(ing the character as a command.)144 216 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 228 Q F2(C\255J)2.5 E F0(will terminate an incremental search.) +2.5 E F1 -.1(ke)108 240 S(ymap \(emacs\)).1 E F0 2.02 +(Set the current readline k)144 252 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 +.069(emacs\255meta, emacs\255ctlx, vi, vi\255command)144 264 R F0 2.568 +(,a)C(nd)-2.568 E F2(vi\255insert)2.568 E F0(.).68 E F2(vi)5.068 E F0 +.068(is equi)2.568 F -.25(va)-.25 G .068(lent to).25 F F2(vi\255command) +2.568 E F0(;)A F2(emacs)2.568 E F0 1.543(is equi)144 276 R -.25(va)-.25 G 1.543(lent to).25 F F2(emacs\255standar)4.044 E(d)-.37 E F0 6.544(.T)C 1.544(he def)-6.544 F 1.544(ault v)-.1 F 1.544(alue is)-.25 F F2(emacs) 4.044 E F0 4.044(;t).27 G 1.544(he v)-4.044 F 1.544(alue of)-.25 F F1 -(editing\255mode)4.044 E F0(also)4.044 E(af)144 252 Q(fects the def)-.25 -E(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1 -.1(ke)108 264 S -(yseq\255timeout \(500\)).1 E F0 .368(Speci\214es the duration)144 276 R +(editing\255mode)4.044 E F0(also)4.044 E(af)144 288 Q(fects the def)-.25 +E(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1 -.1(ke)108 300 S +(yseq\255timeout \(500\)).1 E F0 .368(Speci\214es the duration)144 312 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 1.356(\(one that can form a complete k)144 288 R +-.1 H(equence).15 E 1.356(\(one that can form a complete k)144 324 R 1.656 -.15(ey s)-.1 H 1.356(equence using the input read so f).15 F(ar) -.1 E 3.856(,o)-.4 G 3.856(rc)-3.856 G 1.356(an tak)-3.856 F 3.856(ea) --.1 G(dditional)-3.856 E .32(input to complete a longer k)144 300 R .62 +-.1 G(dditional)-3.856 E .32(input to complete a longer k)144 336 R .62 -.15(ey s)-.1 H 2.82(equence\). If).15 F .32(no input is recei)2.82 F -.15(ve)-.25 G 2.82(dw).15 G .32(ithin the timeout,)-2.82 F F2 -.37(re) -2.82 G(adline).37 E F0(will)2.82 E .906(use the shorter b)144 312 R .907 +2.82 G(adline).37 E F0(will)2.82 E .906(use the shorter b)144 348 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 324 R F2 -.37(re)2.55 G(adline) +(alue of)-.25 F .05(1000 means that)144 360 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 336 R(alue,)-.25 +(less than or equal to zero, or to a non-numeric v)144 372 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 348 Q .3 -.15(ey s)-.1 H -(equence to complete.).15 E F1(mark\255dir)108 360 Q(ectories \(On\)) --.18 E F0(If set to)144 372 Q F1(On)2.5 E F0 2.5(,c)C +-2.552 E(to decide which k)144 384 Q .3 -.15(ey s)-.1 H +(equence to complete.).15 E F1(mark\255dir)108 396 Q(ectories \(On\)) +-.18 E F0(If set to)144 408 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 384 Q F0(If set to)144 -396 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 420 Q F0(If set to)144 +432 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 408 Q(ed\255dir)-.1 E -(ectories \(Off\))-.18 E F0 .175(If set to)144 420 R F1(On)2.675 E F0 +(*)A F0(\).)A F1(mark\255symlink)108 444 Q(ed\255dir)-.1 E +(ectories \(Off\))-.18 E F0 .175(If set to)144 456 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 432 +-.15(ve a s)-.2 H .175(lash appended \(sub-).15 F(ject to the v)144 468 Q(alue of)-.25 E F1(mark\255dir)2.5 E(ectories)-.18 E F0(\).)A F1 -(match\255hidden\255\214les \(On\))108 444 Q F0 .192(This v)144 456 R +(match\255hidden\255\214les \(On\))108 480 Q F0 .192(This v)144 492 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 468 R .456 +(\214les\) when performing \214lename completion.)144 504 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 480 Q F1 -(menu\255complete\255display\255pr)108 492 Q(e\214x \(Off\))-.18 E F0 -1.585(If set to)144 504 R F1(On)4.085 E F0 4.085(,m)C 1.585(enu complet\ +(user in the \214lename to be completed.)144 516 Q F1 +(menu\255complete\255display\255pr)108 528 Q(e\214x \(Off\))-.18 E F0 +1.585(If set to)144 540 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 516 Q -(ycling through the list.)-.15 E F1(output\255meta \(Off\))108 528 Q F0 -.507(If set to)144 540 R F1(On)3.007 E F0 3.007(,r)C .507(eadline will \ +-4.085 F(\(which may be empty\) before c)144 552 Q +(ycling through the list.)-.15 E F1(output\255meta \(Off\))108 564 Q F0 +.507(If set to)144 576 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 552 Q .884(ed escape sequence.)-.15 F .884 +ta-)-3.007 F(pre\214x)144 588 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 564 Q F1 -(page\255completions \(On\))108 576 Q F0 .809(If set to)144 588 R F1(On) +(if the locale contains)3.384 F(eight-bit characters.)144 600 Q F1 +(page\255completions \(On\))108 612 Q F0 .809(If set to)144 624 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 600 Q F1 -(print\255completions\255horizontally \(Off\))108 612 Q F0 1.318 -(If set to)144 624 R F1(On)3.818 E F0 3.818(,r)C 1.319(eadline will dis\ +(tions at a time.)144 636 Q F1 +(print\255completions\255horizontally \(Off\))108 648 Q F0 1.318 +(If set to)144 660 R F1(On)3.818 E F0 3.818(,r)C 1.319(eadline will dis\ play completions with matches sorted horizontally in alphabetical)-3.818 -F(order)144 636 Q 2.5(,r)-.4 G(ather than do)-2.5 E(wn the screen.)-.25 -E F1 -2.29 -.18(re v)108 648 T(ert\255all\255at\255newline \(Off\)).08 E -F0 .699(If set to)144 660 R F1(On)3.199 E F0 3.199(,r)C .699 +F(order)144 672 Q 2.5(,r)-.4 G(ather than do)-2.5 E(wn the screen.)-.25 +E F1 -2.29 -.18(re v)108 684 T(ert\255all\255at\255newline \(Off\)).08 E +F0 .699(If set to)144 696 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 672 S +-3.199 F F1(accept\255line)3.198 E F0(is)3.198 E -.15(exe)144 708 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 684 S(adline) -.18 E F0(.)A F1(sho)108 696 Q(w\255all\255if\255ambiguous \(Off\))-.1 E -F0 .304(This alters the def)144 708 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 720 R(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(42)192.895 E 0 Cg EP +(vidual undo lists across calls to)-.25 F F1 -.18(re)144 720 S(adline) +.18 E F0(.)A(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(42)185.955 +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(bell.)144 84 Q/F1 -10/Times-Bold@0 SF(sho)108 96 Q(w\255all\255if\255unmodi\214ed \(Off\)) --.1 E F0 5.346(This alters the def)144 108 R 5.346(ault beha)-.1 F 5.345 +(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\255all\255if\255ambiguous \(Off\))-.1 E F0 .304 +(This alters the def)144 96 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 108 R(bell.)144 120 Q F1 +(sho)108 132 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.346 +(This alters the def)144 144 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 120 Q(w\255all\255if\255ambiguous)-.1 E F0 6.69(.I)C +-.1 F F1(sho)144 156 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 132 R 3.54 +(ore than one possible completion).15 F 1.04(without an)144 168 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 144 Q F1 -(sho)108 156 Q(w\255mode\255in\255pr)-.1 E(ompt \(Off\))-.18 E F0 1.018 -(If set to)144 168 R F1(On)3.518 E F0 3.518(,a)C 1.018 -(dd a character to the be)-3.518 F 1.018 -(ginning of the prompt indicating the editing mode: emacs)-.15 F -(\(@\), vi command \(:\) or vi insertion \(+\).)144 180 Q F1 -(skip\255completed\255text \(Off\))108 192 Q F0 .095(If set to)144 204 R +es to be listed immediately instead of ringing the bell.)144 180 Q F1 +(sho)108 192 Q(w\255mode\255in\255pr)-.1 E(ompt \(Off\))-.18 E F0 1.021 +(If set to)144 204 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 216 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 228 Q F0 .095(If set to)144 240 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 216 Q +(vior when inserting a single match into the line.)-.2 F(It')144 252 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 228 R -1.394(ord being com-)-.1 F(pleted, so portions of the w)144 240 Q +the completion that match characters after point in the w)144 264 R +1.394(ord being com-)-.1 F(pleted, so portions of the w)144 276 Q (ord follo)-.1 E(wing the cursor are not duplicated.)-.25 E F1 -(vi\255cmd\255mode\255string \(\(cmd\)\))108 252 Q F0 1.198(This string\ - is displayed immediately before the last line of the primary prompt wh\ -en vi editing)144 264 R .522(mode is acti)144 276 R .822 -.15(ve a)-.25 -H .522(nd in command mode.).15 F .522(The v)5.522 F .522(alue is e)-.25 -F .522(xpanded lik)-.15 F 3.022(eak)-.1 G .821 -.15(ey b)-3.122 H .521 -(inding, so the standard).15 F .869(set of meta- and control pre\214x) -144 288 R .869(es and backslash escape sequences is a)-.15 F -.25(va)-.2 -G 3.37(ilable. Use).25 F .87(the \\1 and \\2)3.37 F .387(escapes to be) -144 300 R .386(gin and end sequences of non-printing characters, which \ -can be used to embed a ter)-.15 F(-)-.2 E -(minal control sequence into the mode string.)144 312 Q F1 -(vi\255ins\255mode\255string \(\(ins\)\))108 324 Q F0 1.198(This string\ - is displayed immediately before the last line of the primary prompt wh\ -en vi editing)144 336 R .783(mode is acti)144 348 R 1.083 -.15(ve a)-.25 -H .783(nd in insertion mode.).15 F .783(The v)5.783 F .783(alue is e) --.25 F .783(xpanded lik)-.15 F 3.283(eak)-.1 G 1.083 -.15(ey b)-3.383 H -.783(inding, so the standard).15 F .869 -(set of meta- and control pre\214x)144 360 R .869 -(es and backslash escape sequences is a)-.15 F -.25(va)-.2 G 3.37 -(ilable. Use).25 F .87(the \\1 and \\2)3.37 F .387(escapes to be)144 372 -R .386(gin and end sequences of non-printing characters, which can be u\ -sed to embed a ter)-.15 F(-)-.2 E -(minal control sequence into the mode string.)144 384 Q F1 -(visible\255stats \(Off\))108 396 Q F0 .846(If set to)144 408 R F1(On) -3.346 E F0 3.346(,ac)C .846(haracter denoting a \214le')-3.346 F 3.346 -(st)-.55 G .846(ype as reported by)-3.346 F/F2 10/Times-Italic@0 SF -(stat)3.346 E F0 .846(\(2\) is appended to the \214lename)B -(when listing possible completions.)144 420 Q F1 -(Readline Conditional Constructs)87 436.8 Q F0 .05 -(Readline implements a f)108 448.8 R .05(acility similar in spirit to t\ +(vi\255cmd\255mode\255string \(\(cmd\)\))108 288 Q F0 .517(If the)144 +300 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 312 R .775 -.15(ve a)-.25 H .475(nd in command mode.).15 F .475 +(The v)5.475 F(alue)-.25 E 1.235(is e)144 324 R 1.235(xpanded lik)-.15 F +3.735(eak)-.1 G 1.535 -.15(ey b)-3.835 H 1.236 +(inding, so the standard set of meta- and control pre\214x).15 F 1.236 +(es and backslash)-.15 F .315(escape sequences is a)144 336 R -.25(va) +-.2 G 2.815(ilable. Use).25 F .314(the \\1 and \\2 escapes to be)2.815 F +.314(gin and end sequences of non-print-)-.15 F(ing characters, which c\ +an be used to embed a terminal control sequence into the mode string.) +144 348 Q F1(vi\255ins\255mode\255string \(\(ins\)\))108 360 Q F0 .517 +(If the)144 372 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 +384 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 396 S 1.929(panded lik).15 F +4.429(eak)-.1 G 2.229 -.15(ey b)-4.529 H 1.929 +(inding, so the standard set of meta- and control pre\214x).15 F 1.93 +(es and backslash)-.15 F .315(escape sequences is a)144 408 R -.25(va) +-.2 G 2.815(ilable. Use).25 F .314(the \\1 and \\2 escapes to be)2.815 F +.314(gin and end sequences of non-print-)-.15 F(ing characters, which c\ +an be used to embed a terminal control sequence into the mode string.) +144 420 Q F1(visible\255stats \(Off\))108 432 Q F0 .846(If set to)144 +444 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 456 Q F1 +(Readline Conditional Constructs)87 472.8 Q F0 .05 +(Readline implements a f)108 484.8 R .05(acility similar in spirit to t\ he conditional compilation features of the C preprocessor)-.1 F .096 -(which allo)108 460.8 R .096(ws k)-.25 F .396 -.15(ey b)-.1 H .096 +(which allo)108 496.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 472.8 Q -.15(ve)-.25 G 2.5 -(su).15 G(sed.)-2.5 E F1($if)108 489.6 Q F0(The)144 489.6 Q F1($if)2.963 +(There are four parser)5.096 F(directi)108 508.8 Q -.15(ve)-.25 G 2.5 +(su).15 G(sed.)-2.5 E F1($if)108 525.6 Q F0(The)144 525.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 .477 -(or the application using readline.)144 501.6 R .477(The te)5.477 F .477 -(xt of the test e)-.15 F .477 -(xtends to the end of the line; no characters)-.15 F -(are required to isolate it.)144 513.6 Q F1(mode)144 530.4 Q F0(The)180 -530.4 Q F1(mode=)3.712 E F0 1.212(form of the)3.712 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 542.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 554.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 566.4 -Q F1(term)144 583.2 Q F0(The)180 583.2 Q F1(term=)3.196 E F0 .696 -(form may be used to include terminal-speci\214c k)3.196 F .996 -.15 -(ey b)-.1 H .697(indings, perhaps to bind).15 F .654(the k)180 595.2 R +he editing mode, the terminal being used,)-.25 F +(or the application using readline.)144 537.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 549.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 566.4 Q F0(The)180 566.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 578.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 590.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 602.4 Q F1(term)144 619.2 Q F0(The)180 619.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 631.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 607.2 Q F1(=)3.231 -E F0 .731(is tested ag)3.231 F .732(ainst both the full name of the ter\ +(wo)3.154 G .654(rd on the right side of).1 F(the)180 643.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 -619.2 Q F12.5 E F0 5(.T)C(his allo)-5 E(ws)-.25 E F2(sun)2.84 E F0 +655.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.5 E F0 -2.5(,f).77 G(or instance.)-2.5 E F1(application)144 636 Q F0(The)180 648 -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 -660 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 .501(particular v) -180 672 R 3.001(alue. This)-.25 F .501(could be used to bind k)3.001 F -.801 -.15(ey s)-.1 H .5(equences to functions useful for a spe-).15 F -.396(ci\214c program.)180 684 R -.15(Fo)5.396 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 .397(equence that quotes the).15 F(current or pre)180 696 Q -(vious w)-.25 E(ord in)-.1 E F1(bash)2.5 E F0(:)A F1($if)180 720 Q F0 -(Bash)2.5 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(43)192.895 E -0 Cg EP +2.5(,f).77 G(or instance.)-2.5 E F1 -.1(ve)144 672 S(rsion).1 E F0(The) +180 684 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 696 Q F1 -.1 +(ve)3.929 G(rsion).1 E F0 -.15(ex)3.929 G 1.428 +(pands to the current readline v).15 F 3.928(ersion. The)-.15 F 1.428 +(set of comparison operators)3.928 F(includes)180 708 Q F1(=)2.605 E F0 +2.605(,\()C(and)-2.605 E F1(==)2.606 E F0(\),)A F1(!=)2.606 E F0(,)A F1 +(<=)2.606 E F0(,)A F1(>=)2.606 E F0(,)A F1(<)2.606 E F0 2.606(,a)C(nd) +-2.606 E F1(>)2.606 E F0 5.106(.T)C .106(he v)-5.106 F .106 +(ersion number supplied on the right side)-.15 F 1.472 +(of the operator consists of a major v)180 720 R 1.471(ersion number) +-.15 F 3.971(,a)-.4 G 3.971(no)-3.971 G 1.471 +(ptional decimal point, and an)-3.971 F(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(43)185.955 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 2.5(#Q)180 84 S -(uote the current or pre)-2.5 E(vious w)-.25 E(ord)-.1 E -("\\C\255xq": "\\eb\\"\\ef\\"")180 96 Q/F1 10/Times-Bold@0 SF($endif)180 -108 Q($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 F1($if)2.5 E F0(command.) -2.5 E F1($else)108 141.6 Q F0(Commands in this branch of the)144 141.6 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 158.4 Q F0 -.357(This directi)144 170.4 R .657 -.15(ve t)-.25 H(ak).15 E .357 -(es a single \214lename as an ar)-.1 F .356 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .766 +(optional minor v)180 84 R .766(ersion \(e.g.,)-.15 F/F1 10/Times-Bold@0 +SF(7.1)3.266 E F0 .766(\). If the minor v)B .766 +(ersion is omitted, it is assumed to be)-.15 F F1(0)3.267 E F0(.)A 1.756 +(The operator may be separated from the string)180 96 R F1 -.1(ve)4.255 +G(rsion).1 E F0 1.755(and from the v)4.255 F 1.755(ersion number)-.15 F +(ar)180 108 Q(gument by whitespace.)-.18 E F1(application)144 124.8 Q F0 +(The)180 136.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 +148.8 R/F2 10/Times-Italic@0 SF .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 160.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 +172.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 184.8 Q(vious w)-.25 E +(ord in)-.1 E F1(bash)2.5 E F0(:)A F1($if)180 208.8 Q F0(Bash)2.5 E 2.5 +(#Q)180 220.8 S(uote the current or pre)-2.5 E(vious w)-.25 E(ord)-.1 E +("\\C\255xq": "\\eb\\"\\ef\\"")180 232.8 Q F1($endif)180 244.8 Q F2 +(variable)144 261.6 Q F0(The)180 273.6 Q F2(variable)3.776 E F0 1.276 +(construct pro)3.776 F 1.276(vides simple equality tests for readline v) +-.15 F 1.277(ariables and v)-.25 F(alues.)-.25 E .08 +(The permitted comparison operators are)180 285.6 R F2(=)2.579 E F0(,)A +F2(==)2.579 E F0 2.579(,a)C(nd)-2.579 E F2(!=)2.579 E F0 5.079(.T)C .079 +(he v)-5.079 F .079(ariable name must be sepa-)-.25 F .98(rated from th\ +e comparison operator by whitespace; the operator may be separated from) +180 297.6 R .13(the v)180 309.6 R .13 +(alue on the right hand side by whitespace.)-.25 F .129 +(Both string and boolean v)5.129 F .129(ariables may be)-.25 F +(tested. Boolean v)180 321.6 Q(ariables must be tested ag)-.25 E +(ainst the v)-.05 E(alues)-.25 E F2(on)2.5 E F0(and)2.5 E F2(of)2.5 E(f) +-.18 E F0(.)A F1($endif)108 338.4 Q F0(This command, as seen in the pre) +144 338.4 Q(vious e)-.25 E(xample, terminates an)-.15 E F1($if)2.5 E F0 +(command.)2.5 E F1($else)108 355.2 Q F0(Commands in this branch of the) +144 355.2 Q F1($if)2.5 E F0(directi)2.5 E .3 -.15(ve a)-.25 H(re e).15 E +-.15(xe)-.15 G(cuted if the test f).15 E(ails.)-.1 E F1($include)108 372 +Q F0 .356(This directi)144 384 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/F2 10/Times-Italic@0 SF(/etc/inputr)2.5 -E(c)-.37 E F0(:)A F1($include)144 206.4 Q F2(/etc/inputr)5.833 E(c)-.37 -E F1(Sear)87 223.2 Q(ching)-.18 E F0 .834(Readline pro)108 235.2 R .834 +144 396 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 420 Q F2(/etc/inputr)5.833 E(c)-.37 E F1(Sear)87 436.8 Q +(ching)-.18 E F0 .835(Readline pro)108 448.8 R .835 (vides commands for searching through the command history \(see)-.15 F -/F3 9/Times-Bold@0 SF(HIST)3.335 E(OR)-.162 E(Y)-.315 E F0(belo)3.085 E -.835(w\) for lines)-.25 F(containing a speci\214ed string.)108 247.2 Q +/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 460.8 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.5 E(emental)-.37 E F0(.).51 -E .698(Incremental searches be)108 264 R .698 +E .697(Incremental searches be)108 477.6 R .697 (gin before the user has \214nished typing the search string.)-.15 F -.697(As each character of the)5.697 F .112 -(search string is typed, readline displays the ne)108 276 R .112 +.698(As each character of the)5.698 F .113 +(search string is typed, readline displays the ne)108 489.6 R .112 (xt entry from the history matching the string typed so f)-.15 F(ar)-.1 -E 5.113(.A)-.55 G(n)-5.113 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.541 -(.T)-.65 G .541(he char)-5.541 F(-)-.2 E .224(acters present in the v) -108 300 R .224(alue of the)-.25 F F1(isear)2.724 E(ch-terminators)-.18 E -F0 -.25(va)2.724 G .224 +E 5.112(.A)-.55 G(n)-5.112 E .542 +(incremental search requires only as man)108 501.6 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 513.6 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 525.6 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 .096(mental search.)108 324 R .096(Control-G will abort an incrementa\ -l search and restore the original line.)5.096 F .097(When the search is) -5.097 F(terminated, the history entry containing the search string beco\ -mes the current line.)108 336 Q 2.939 -.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.338(This will)6.338 F .674(search backw)108 -364.8 R .674(ard or forw)-.1 F .674(ard in the history for the ne)-.1 F -.675(xt entry matching the search string typed so f)-.15 F(ar)-.1 E -5.675(.A)-.55 G -.15(ny)-5.675 G .175(other k)108 376.8 R .475 -.15 -(ey s)-.1 H .174 +F .097(mental search.)108 537.6 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 549.6 Q 2.938 -.8(To \214) +108 566.4 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 578.4 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 590.4 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 .174(cute that command.).15 F -.15(Fo)5.174 G(r).15 E -.54(instance, a)108 388.8 R F2(ne)3.04 E(wline)-.15 E F0 .541 -(will terminate the search and accept the line, thereby e)3.04 F -.15 -(xe)-.15 G .541(cuting the command from the).15 F(history list.)108 -400.8 Q .653(Readline remembers the last incremental search string.)108 -417.6 R .653(If tw)5.653 F 3.153(oC)-.1 G .653 -(ontrol-Rs are typed without an)-3.153 F 3.152(yi)-.15 G(nterv)-3.152 E -(en-)-.15 E(ing characters de\214ning a ne)108 429.6 Q 2.5(ws)-.25 G +F -.15(xe)-.15 G .175(cute that command.).15 F -.15(Fo)5.175 G(r).15 E +.541(instance, a)108 602.4 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 614.4 +Q .653(Readline remembers the last incremental search string.)108 631.2 +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 643.2 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\ -h string may be typed by the user or be part of the contents of the cur\ -rent line.)108 458.4 Q F1(Readline Command Names)87 475.2 Q F0 1.392 -(The follo)108 487.2 R 1.391 +re starting to search for matching history lines.)108 660 R(The search \ +string may be typed by the user or be part of the contents of the curre\ +nt line.)108 672 Q F1(Readline Command Names)87 688.8 Q F0 1.391 +(The follo)108 700.8 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.891(ya)-.15 G(re)-3.891 E 2.621(bound. Command)108 499.2 R .121 -(names without an accompan)2.621 F .121(ying k)-.15 F .421 -.15(ey s)-.1 -H .122(equence are unbound by def).15 F 2.622(ault. In)-.1 F .122 -(the follo)2.622 F(wing)-.25 E(descriptions,)108 511.2 Q F2(point)3.411 -E F0 .911(refers to the current cursor position, and)3.411 F F2(mark) -3.411 E F0 .91(refers to a cursor position sa)3.411 F -.15(ve)-.2 G 3.41 -(db).15 G 3.41(yt)-3.41 G(he)-3.41 E F1(set\255mark)108 523.2 Q F0 2.5 -(command. The)2.5 F(te)2.5 E -(xt between the point and mark is referred to as the)-.15 E F2 -.37(re) -2.5 G(gion)-.03 E F0(.)A F1(Commands f)87 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 F1 -(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 F1 -.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 F1(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 -F1 -.25(fo)108 648 S(rward\255w).25 E(ord \(M\255f\))-.1 E F0(Mo)144 660 -Q .822 -.15(ve f)-.15 H(orw).15 E .522(ard to the end of the ne)-.1 F -.523(xt w)-.15 F 3.023(ord. W)-.1 F .523 -(ords are composed of alphanumeric characters \(let-)-.8 F -(ters and digits\).)144 672 Q F1(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 4.4)72 768 Q -(2017 October 7)143.735 E(44)192.895 E 0 Cg EP +3.892(ya)-.15 G(re)-3.892 E 2.622(bound. Command)108 712.8 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 724.8 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(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(44)185.955 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/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 .909 --.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 .608 -(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 -.89(Attempt to mo)144 168 R 1.19 -.15(ve p)-.15 H .89 -(oint to the same ph).15 F .891(ysical screen column on the pre)-.05 F -.891(vious ph)-.25 F .891(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(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\ - 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 .637 -(Attempt to mo)144 216 R .937 -.15(ve p)-.15 H .637(oint to the same ph) -.15 F .638(ysical screen column on the ne)-.05 F .638(xt ph)-.15 F .638 -(ysical screen line. This)-.05 F .009(will not ha)144 228 R .309 -.15 -(ve t)-.2 H .009(he desired ef).15 F .009 +SF(set\255mark)108 84 Q F0 2.5(command. The)2.5 F(te)2.5 E +(xt between the point and mark is referred to as the)-.15 E/F2 10 +/Times-Italic@0 SF -.37(re)2.5 G(gion)-.03 E F0(.)A F1(Commands f)87 +100.8 Q(or Mo)-.25 E(ving)-.1 E(beginning\255of\255line \(C\255a\))108 +112.8 Q F0(Mo)144 124.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 136.8 Q F0(Mo)144 148.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 160.8 S +(rward\255char \(C\255f\)).25 E F0(Mo)144 172.8 Q .3 -.15(ve f)-.15 H +(orw).15 E(ard a character)-.1 E(.)-.55 E F1 +(backward\255char \(C\255b\))108 184.8 Q F0(Mo)144 196.8 Q .3 -.15(ve b) +-.15 H(ack a character).15 E(.)-.55 E F1 -.25(fo)108 208.8 S(rward\255w) +.25 E(ord \(M\255f\))-.1 E F0(Mo)144 220.8 Q .823 -.15(ve f)-.15 H(orw) +.15 E .523(ard to the end of the ne)-.1 F .523(xt w)-.15 F 3.023(ord. W) +-.1 F .522(ords are composed of alphanumeric characters \(let-)-.8 F +(ters and digits\).)144 232.8 Q F1(backward\255w)108 244.8 Q +(ord \(M\255b\))-.1 E F0(Mo)144 256.8 Q 1.71 -.15(ve b)-.15 H 1.41 +(ack to the start of the current or pre).15 F 1.41(vious w)-.25 F 3.91 +(ord. W)-.1 F 1.41(ords are composed of alphanumeric)-.8 F +(characters \(letters and digits\).)144 268.8 Q F1(shell\255f)108 280.8 +Q(orward\255w)-.25 E(ord)-.1 E F0(Mo)144 292.8 Q .784 -.15(ve f)-.15 H +(orw).15 E .484(ard to the end of the ne)-.1 F .484(xt w)-.15 F 2.984 +(ord. W)-.1 F .484(ords are delimited by non-quoted shell metacharac-) +-.8 F(ters.)144 304.8 Q F1(shell\255backward\255w)108 316.8 Q(ord)-.1 E +F0(Mo)144 328.8 Q .908 -.15(ve b)-.15 H .609 +(ack to the start of the current or pre).15 F .609(vious w)-.25 F 3.109 +(ord. W)-.1 F .609(ords are delimited by non-quoted shell)-.8 F +(metacharacters.)144 340.8 Q F1(pr)108 352.8 Q -.15(ev)-.18 G +(ious\255scr).15 E(een\255line)-.18 E F0 .891(Attempt to mo)144 364.8 R +1.191 -.15(ve p)-.15 H .891(oint to the same ph).15 F .891 +(ysical screen column on the pre)-.05 F .89(vious ph)-.25 F .89 +(ysical screen line.)-.05 F .87(This will not ha)144 376.8 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 388.8 Q(ysical line or \ +if point is not greater than the length of the prompt plus the screen w\ +idth.)-.05 E F1(next\255scr)108 400.8 Q(een\255line)-.18 E F0 .638 +(Attempt to mo)144 412.8 R .938 -.15(ve p)-.15 H .638 +(oint to the same ph).15 F .637(ysical screen column on the ne)-.05 F +.637(xt ph)-.15 F .637(ysical screen line. This)-.05 F .008(will not ha) +144 424.8 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 .008(ore than one ph)-2.509 F(ysical)-.05 E .772(line\ +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 436.8 R(the screen width.)144 448.8 Q F1 +(clear\255scr)108 460.8 Q(een \(C\255l\))-.18 E F0 .993 +(Clear the screen lea)144 472.8 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 -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 .158 -(Accept the line re)144 352.8 R -.05(ga)-.15 G .158 -(rdless of where the cursor is.).05 F .158(If this line is non-empty) -5.158 F 2.659(,a)-.65 G .159(dd it to the history list)-2.659 F .699 -(according to the state of the)144 364.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 +(current line without clearing the screen.)144 484.8 Q F1 -.18(re)108 +496.8 S(draw\255curr).18 E(ent\255line)-.18 E F0 +(Refresh the current line.)144 508.8 Q F1(Commands f)87 525.6 Q +(or Manipulating the History)-.25 E(accept\255line \(Newline, Retur)108 +537.6 Q(n\))-.15 E F0 .159(Accept the line re)144 549.6 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 561.6 R/F3 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 573.6 Q F1(pr)108 +585.6 Q -.15(ev)-.18 G(ious\255history \(C\255p\)).15 E F0 +(Fetch the pre)144 597.6 Q(vious command from the history list, mo)-.25 +E(ving back in the list.)-.15 E F1(next\255history \(C\255n\))108 609.6 +Q F0(Fetch the ne)144 621.6 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 633.6 Q F0(Mo)144 645.6 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 657.6 Q F0(Mo)144 669.6 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.47(Search backw)144 496.8 R 1.471 -(ard starting at the current line and mo)-.1 F 1.471 +(re v)108 681.6 T(erse\255sear).08 E(ch\255history \(C\255r\))-.18 E F0 +1.471(Search backw)144 693.6 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 -(rward\255sear).25 E(ch\255history \(C\255s\))-.18 E F0 1.132 -(Search forw)144 532.8 R 1.132(ard starting at the current line and mo) --.1 F 1.131(ving `do)-.15 F 1.131(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 -(rse\255sear).15 E(ch\255history \(M\255p\))-.18 E F0 .164(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 -(emental\255f)-.18 E(orward\255sear)-.25 E(ch\255history \(M\255n\))-.18 -E F0 1.354(Search forw)144 604.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 .248(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 .951(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 .95(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 .006(ywhere in a history)-.15 F -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(45)192.895 E 0 Cg EP +(This is an incremental search.)144 705.6 Q(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(45)185.955 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 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 -.248(Search forw)144 108 R .249(ard through the history for the string \ -of characters between the start of the current line)-.1 F .319 -(and the point.)144 120 R .319(The search string may match an)5.319 F -.319(ywhere in a history line.)-.15 F .318(This is a non-incremental) -5.318 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 +(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\255sear).25 E(ch\255history \(C\255s\))-.18 E +F0 1.131(Search forw)144 96 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 108 Q F1(non\255incr)108 120 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 132 R .164(ar\ +d through the history starting at the current line using a non-incremen\ +tal search for)-.1 F 2.5(as)144 144 S(tring supplied by the user)-2.5 E +(.)-.55 E F1(non\255incr)108 156 Q(emental\255f)-.18 E(orward\255sear) +-.25 E(ch\255history \(M\255n\))-.18 E F0 1.353(Search forw)144 168 R +1.354(ard through the history using a non-incremental search for a stri\ +ng supplied by the)-.1 F(user)144 180 Q(.)-.55 E F1(history\255sear)108 +192 Q(ch\255f)-.18 E(orward)-.25 E F0 .249(Search forw)144 204 R .249(a\ +rd through the history for the string of characters between the start o\ +f the current line)-.1 F(and the point.)144 216 Q +(This is a non-incremental search.)5 E F1(history\255sear)108 228 Q +(ch\255backward)-.18 E F0 .95(Search backw)144 240 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 252 Q(This is a non-incremental search.) +5 E F1(history\255substring\255sear)108 264 Q(ch\255backward)-.18 E F0 +.951(Search backw)144 276 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 288 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 300 R(is a non-incremental search.)2.5 E F1 +(history\255substring\255sear)108 312 Q(ch\255f)-.18 E(orward)-.25 E F0 +.249(Search forw)144 324 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 336 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 348 Q F1(yank\255nth\255ar)108 360 Q 2.5(g\()-.1 G +<4dad43ad7929>-2.5 E F0 .622(Insert the \214rst ar)144 372 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 .795(at point.)144 -168 R -.4(Wi)5.795 G .794(th an ar).4 F(gument)-.18 E/F2 10 -/Times-Italic@0 SF(n)3.294 E F0 3.294(,i).24 G .794(nsert the)-3.294 F -F2(n)3.294 E F0 .794(th w)B .794(ord from the pre)-.1 F .794 -(vious command \(the w)-.25 F .794(ords in the)-.1 F(pre)144 180 Q .291 -(vious command be)-.25 F .291(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 -.292(ord from the end of)-.1 F .282(the pre)144 192 R .282 -(vious command.)-.25 F .282(Once the ar)5.282 F(gument)-.18 E F2(n)2.781 -E F0 .281(is computed, the ar)2.781 F .281(gument is e)-.18 F .281 -(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 -2.5(g\()-.1 G -1.667(M\255. ,)-2.5 F -1.667(M\255_ \))2.5 F F0 1.307 -(Insert the last ar)144 228 R 1.307(gument to the pre)-.18 F 1.307 -(vious command \(the last w)-.25 F 1.308(ord of the pre)-.1 F 1.308 -(vious history entry\).)-.25 F -.4(Wi)144 240 S .204(th a numeric ar).4 -F .204(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.203(.S)C(uccessi)-5.203 -E .503 -.15(ve c)-.25 H .203(alls to).15 F F1(yank\255last\255ar)2.703 E -(g)-.1 E F0(mo)144 252 Q .806 -.15(ve b)-.15 H .507 +F .622(ord on the pre)-.1 F .622(vious line\))-.25 F .794(at point.)144 +384 R -.4(Wi)5.794 G .794(th an ar).4 F(gument)-.18 E F2(n)3.294 E F0 +3.294(,i).24 G .794(nsert the)-3.294 F F2(n)3.294 E F0 .794(th w)B .794 +(ord from the pre)-.1 F .794(vious command \(the w)-.25 F .795 +(ords in the)-.1 F(pre)144 396 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 408 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 420 Q +(xpansion had been speci\214ed.)-.15 E F1(yank\255last\255ar)108 432 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 444 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 456 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 468 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 -1.397(to the \214rst call\) of each line in turn.)144 264 R(An)6.396 E -3.896(yn)-.15 G 1.396(umeric ar)-3.896 F 1.396 -(gument supplied to these successi)-.18 F 1.696 -.15(ve c)-.25 H(alls) -.15 E .491(determines the direction to mo)144 276 R .791 -.15(ve t)-.15 -H .491(hrough the history).15 F 5.492(.A)-.65 G(ne)-2.5 E -.05(ga)-.15 G -(ti).05 E .792 -.15(ve a)-.25 H -.18(rg).15 G .492 +1.396(to the \214rst call\) of each line in turn.)144 480 R(An)6.396 E +3.896(yn)-.15 G 1.396(umeric ar)-3.896 F 1.397 +(gument supplied to these successi)-.18 F 1.697 -.15(ve c)-.25 H(alls) +.15 E .492(determines the direction to mo)144 492 R .792 -.15(ve t)-.15 +H .492(hrough the history).15 F 5.491(.A)-.65 G(ne)-2.5 E -.05(ga)-.15 G +(ti).05 E .791 -.15(ve a)-.25 H -.18(rg).15 G .491 (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 504 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 .622 -(Expand the line as the shell does.)144 324 R .622 -(This performs alias and history e)5.622 F .623 -(xpansion as well as all of the)-.15 F(shell w)144 336 Q(ord e)-.1 E 2.5 +516 S(rd, as if the "!$" history e).1 E(xpansion had been speci\214ed.) +-.15 E F1(shell\255expand\255line \(M\255C\255e\))108 528 Q F0 .623 +(Expand the line as the shell does.)144 540 R .622 +(This performs alias and history e)5.622 F .622 +(xpansion as well as all of the)-.15 F(shell w)144 552 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 .939 -(Perform history e)144 360 R .939(xpansion on the current line.)-.15 F +(history\255expand\255line \(M\255^\))108 564 Q F0 .938 +(Perform history e)144 576 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.438(wf)-.25 G .938(or a descrip-) --3.438 F(tion of history e)144 372 Q(xpansion.)-.15 E F1(magic\255space) -108 384 Q F0 1.626(Perform history e)144 396 R 1.626 -(xpansion on the current line and insert a space.)-.15 F(See)6.627 E F3 -(HIST)4.127 E(OR)-.162 E 3.877(YE)-.315 G(XP)-3.877 E(ANSION)-.666 E F0 -(belo)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 .395 -(Perform alias e)144 432 R .395(xpansion on the current line.)-.15 F -(See)5.395 E F3(ALIASES)2.895 E F0(abo)2.645 E .694 -.15(ve f)-.15 H -.394(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) --.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 .947 -(Accept the current line for e)144 516 R -.15(xe)-.15 G .948 -(cution and fetch the ne).15 F .948(xt line relati)-.15 F 1.248 -.15 -(ve t)-.25 H 3.448(ot).15 G .948(he current line from the)-3.448 F .73 -(history for editing.)144 528 R 3.23(An)5.73 G .73(umeric ar)-3.23 F -.729 -(gument, if supplied, speci\214es the history entry to use instead of) --.18 F(the current line.)144 540 Q F1 -(edit\255and\255execute\255command \(C\255x C\255e\))108 552 Q F0(In)144 -564 Q -.2(vo)-.4 G 1.226 -.1(ke a).2 H 3.526(ne).1 G 1.026 -(ditor on the current command line, and e)-3.526 F -.15(xe)-.15 G 1.026 -(cute the result as shell commands.).15 F F1(Bash)6.026 E F0 -(attempts to in)144 576 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 .799 -(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.298 -(ft)-5.799 G .798(his character is read when)-3.298 F .592 -(there are no characters on the line, and point is at the be)144 628.8 R -.593(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 .442 -(Delete the character at point.)144 664.8 R .442 -(If this function is bound to the same character as the tty)5.442 F F1 -(EOF)2.941 E F0(char)2.941 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 .552(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 .553(gument, sa)-.18 F .853 -.15(ve t)-.2 H .553 -(he deleted te).15 F .553(xt on)-.15 F(the kill ring.)144 712.8 Q -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(46)192.895 E 0 Cg EP +(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 588 Q(xpansion.)-.15 E F1(magic\255space) +108 600 Q F0 1.627(Perform history e)144 612 R 1.627 +(xpansion on the current line and insert a space.)-.15 F(See)6.626 E F3 +(HIST)4.126 E(OR)-.162 E 3.876(YE)-.315 G(XP)-3.876 E(ANSION)-.666 E F0 +(belo)144 624 Q 2.5(wf)-.25 G(or a description of history e)-2.5 E +(xpansion.)-.15 E F1(alias\255expand\255line)108 636 Q F0 .394 +(Perform alias e)144 648 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 660 Q F1 +(history\255and\255alias\255expand\255line)108 672 Q F0 +(Perform history and alias e)144 684 Q(xpansion on the current line.) +-.15 E F1(insert\255last\255ar)108 696 Q(gument \(M\255.)-.1 E 2.5(,M) +.833 G -1.667(\255_ \))-2.5 F F0 2.5(As)144 708 S(ynon)-2.5 E(ym for) +-.15 E F1(yank\255last\255ar)2.5 E(g)-.1 E F0(.)A(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(46)185.955 E 0 Cg EP %%Page: 47 47 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F (Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 -SF -.25(fo)108 84 S(rward\255backward\255delete\255char).25 E F0 .474 -(Delete the character under the cursor)144 96 R 2.974(,u)-.4 G .474 -(nless the cursor is at the end of the line, in which case the)-2.974 F -(character behind the cursor is deleted.)144 108 Q F1 -(quoted\255insert \(C\255q, C\255v\))108 120 Q F0 .778(Add the ne)144 -132 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.279 E F0 3.279(,f)C -(or)-3.279 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 .322(Drag the character before point forw)144 216 R .321 -(ard o)-.1 F -.15(ve)-.15 G 2.821(rt).15 G .321 -(he character at point, mo)-2.821 F .321(ving point forw)-.15 F .321 -(ard as well.)-.1 F 1.182 -(If point is at the end of the line, then this transposes the tw)144 228 -R 3.683(oc)-.1 G 1.183(haracters before point.)-3.683 F(Ne)6.183 E -.05 -(ga)-.15 G(ti).05 E -.15(ve)-.25 G(ar)144 240 Q(guments ha)-.18 E .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 .024(Drag the w)144 -264 R .024(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.523(rt).15 G .023(hat w) --2.523 F .023(ord as well.)-.1 F .023(If point)5.023 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.698(Uppercase the current \(or follo)144 300 -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.999 -.15(ve a)-.25 H -.18(rg).15 G 1.699 -(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.648 -(wercase the current \(or follo)-.25 F 1.648(wing\) w)-.25 F 4.148 -(ord. W)-.1 F 1.647(ith a ne)-.4 F -.05(ga)-.15 G(ti).05 E 1.947 -.15 -(ve a)-.25 H -.18(rg).15 G 1.647(ument, lo).18 F 1.647(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.974(Capitalize the current \(or follo)144 372 -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.975 -(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 .438(ggle o).8 F -.15(ve)-.15 -G .438(rwrite mode.).15 F -.4(Wi)5.438 G .438(th an e).4 F .438 -(xplicit positi)-.15 F .737 -.15(ve n)-.25 H .437(umeric ar).15 F .437 -(gument, switches to o)-.18 F -.15(ve)-.15 G .437(rwrite mode.).15 F -.4 -(Wi)144 420 S .78(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 .781(This command af)5.781 F(fects)-.25 E(only)144 432 Q F1 -(emacs)4.395 E F0(mode;)4.395 E F1(vi)4.395 E F0 1.894(mode does o)4.395 -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.394 G -(adline\(\)).37 E F0 1.894(starts in insert)4.394 F 3.968(mode. In)144 -444 R -.15(ove)3.968 G 1.468(rwrite mode, characters bound to).15 F F1 -(self\255insert)3.969 E F0 1.469(replace the te)3.969 F 1.469 -(xt at point rather than)-.15 F .958(pushing the te)144 456 R .958 -(xt to the right.)-.15 F .957(Characters bound to)5.958 F F1 -(backward\255delete\255char)3.457 E F0 .957(replace the character)3.457 -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 -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 -(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 .728 -(Kill from point to the end of the current w)144 604.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 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 .729(Kill from point to the end of the current w)144 664.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 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 4.4)72 768 Q -(2017 October 7)143.735 E(47)192.895 E 0 Cg EP +SF(operate\255and\255get\255next \(C\255o\))108 84 Q F0 .948 +(Accept the current line for e)144 96 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 108 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 120 Q F1 +(edit\255and\255execute\255command \(C\255x C\255e\))108 132 Q F0(In)144 +144 Q -.2(vo)-.4 G 1.226 -.1(ke a).2 H 3.526(ne).1 G 1.026 +(ditor on the current command line, and e)-3.526 F -.15(xe)-.15 G 1.026 +(cute the result as shell commands.).15 F F1(Bash)6.026 E F0 +(attempts to in)144 156 Q -.2(vo)-.4 G -.1(ke).2 G/F2 9/Times-Bold@0 SF +($VISU)2.6 E(AL)-.54 E/F3 9/Times-Roman@0 SF(,)A F2($EDIT)2.25 E(OR) +-.162 E F3(,)A F0(and)2.25 E/F4 10/Times-Italic@0 SF(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 172.8 Q(or Changing T)-.25 E(ext)-.92 E F4 +(end\255of\255\214le)108 184.8 Q F1(\(usually C\255d\))2.5 E F0 .798 +(The character indicating end-of-\214le as set, for e)144 196.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 208.8 R +.592(ginning of the line, Readline interprets it)-.15 F +(as the end of input and returns)144 220.8 Q F2(EOF)2.5 E F3(.)A F1 +(delete\255char \(C\255d\))108 232.8 Q F0 .441 +(Delete the character at point.)144 244.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 256.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 268.8 Q F0 .553(Delete the character behind the cursor)144 280.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 292.8 Q F1 +-.25(fo)108 304.8 S(rward\255backward\255delete\255char).25 E F0 .473 +(Delete the character under the cursor)144 316.8 R 2.973(,u)-.4 G .474 +(nless the cursor is at the end of the line, in which case the)-2.973 F +(character behind the cursor is deleted.)144 328.8 Q F1 +(quoted\255insert \(C\255q, C\255v\))108 340.8 Q F0 .779(Add the ne)144 +352.8 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 364.8 S(ample.).15 E F1 +(tab\255insert \(C\255v T)108 376.8 Q(AB\))-.9 E F0 +(Insert a tab character)144 388.8 Q(.)-.55 E F1 +(self\255insert \(a, b, A, 1, !, ...\))108 400.8 Q F0 +(Insert the character typed.)144 412.8 Q F1 +(transpose\255chars \(C\255t\))108 424.8 Q F0 .321 +(Drag the character before point forw)144 436.8 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 1.182 +(If point is at the end of the line, then this transposes the tw)144 +448.8 R 3.682(oc)-.1 G 1.182(haracters before point.)-3.682 F(Ne)6.182 E +-.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G(ar)144 460.8 Q(guments ha)-.18 E +.3 -.15(ve n)-.2 H 2.5(oe).15 G -.25(ff)-2.5 G(ect.).25 E F1 +(transpose\255w)108 472.8 Q(ords \(M\255t\))-.1 E F0 .023(Drag the w)144 +484.8 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 496.8 Q 2.5 +(ow)-.1 G(ords on the line.)-2.6 E F1(upcase\255w)108 508.8 Q +(ord \(M\255u\))-.1 E F0 1.699(Uppercase the current \(or follo)144 +520.8 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 532.8 S(rd, b).1 +E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1(do)108 544.8 Q +(wncase\255w)-.1 E(ord \(M\255l\))-.1 E F0(Lo)144 556.8 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 568.8 S(rd, b).1 E(ut do not mo)-.2 E .3 +-.15(ve p)-.15 H(oint.).15 E F1(capitalize\255w)108 580.8 Q +(ord \(M\255c\))-.1 E F0 1.975(Capitalize the current \(or follo)144 +592.8 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 604.8 S(rd, b) +.1 E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1 -.1(ove)108 +616.8 S(rwrite\255mode).1 E F0 -.8(To)144 628.8 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 640.8 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 652.8 Q F1(emacs)4.394 E F0(mode;)4.394 E F1(vi) +4.394 E F0 1.894(mode does o)4.394 F -.15(ve)-.15 G 1.894(rwrite dif).15 +F(ferently)-.25 E 6.894(.E)-.65 G 1.894(ach call to)-6.894 F F4 -.37(re) +4.395 G(adline\(\)).37 E F0 1.895(starts in insert)4.395 F 3.969 +(mode. In)144 664.8 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 676.8 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 688.8 +Q(By def)5 E(ault, this command is unbound.)-.1 E F1(Killing and Y)87 +705.6 Q(anking)-.85 E F0(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 +E(47)185.955 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(unix\255w)108 84 Q(ord\255rubout \(C\255w\))-.1 E F0 .365(Kill the w) -144 96 R .365(ord behind point, using white space as a w)-.1 F .364 -(ord boundary)-.1 F 5.364(.T)-.65 G .364(he killed te)-5.364 F .364 -(xt is sa)-.15 F -.15(ve)-.2 G 2.864(do).15 G 2.864(nt)-2.864 G(he) --2.864 E(kill-ring.)144 108 Q F1(unix\255\214lename\255rubout)108 120 Q -F0 .166(Kill the w)144 132 R .166 +SF(kill\255line \(C\255k\))108 84 Q F0(Kill the te)144 96 Q +(xt from point to the end of the line.)-.15 E F1 +(backward\255kill\255line \(C\255x Rubout\))108 108 Q F0(Kill backw)144 +120 Q(ard to the be)-.1 E(ginning of the line.)-.15 E F1 +(unix\255line\255discard \(C\255u\))108 132 Q F0(Kill backw)144 144 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 156 Q F0 +(Kill all characters on the current line, no matter where point is.)144 +168 Q F1(kill\255w)108 180 Q(ord \(M\255d\))-.1 E F0 .729 +(Kill from point to the end of the current w)144 192 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 204 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 216 Q +(ord \(M\255Rubout\))-.1 E F0(Kill the w)144 228 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 240 Q +(ord)-.1 E F0 .728(Kill from point to the end of the current w)144 252 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 264 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 276 Q(ord)-.1 E F0 3.025(Kill the w)144 288 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 300 Q(ord)-.1 E F0(.)A F1(unix\255w)108 312 Q +(ord\255rubout \(C\255w\))-.1 E F0 .364(Kill the w)144 324 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 +336 Q F1(unix\255\214lename\255rubout)108 348 Q F0 .167(Kill the w)144 +360 R .166 (ord behind point, using white space and the slash character as the w) --.1 F .167(ord boundaries.)-.1 F(The)5.167 E(killed te)144 144 Q +-.1 F .166(ord boundaries.)-.1 F(The)5.166 E(killed te)144 372 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 384 Q F0 +(Delete all spaces and tabs around point.)144 396 Q F1(kill\255r)108 408 +Q(egion)-.18 E F0(Kill the te)144 420 Q(xt in the current re)-.15 E +(gion.)-.15 E F1(copy\255r)108 432 Q(egion\255as\255kill)-.18 E F0(Cop) +144 444 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.801(yt)-.1 -G 2.301(he w)-4.801 F 2.301(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.3 -(ord boundaries are the same as)-.1 F F1(back-)4.8 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.507(yt)-.1 G 2.007(he w)-4.507 F 2.007(ord follo)-.1 F -2.007(wing point to the kill b)-.25 F(uf)-.2 E(fer)-.25 E 7.008(.T)-.55 -G 2.008(he w)-7.008 F 2.008(ord boundaries are the same as)-.1 F F1 -.25 -(fo)4.508 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 +(copy\255backward\255w)108 456 Q(ord)-.1 E F0(Cop)144 468 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 480 +Q(ord)-.1 E F0(.)A F1(copy\255f)108 492 Q(orward\255w)-.25 E(ord)-.1 E +F0(Cop)144 504 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 516 Q(ord)-.1 E F0(.)A F1 +(yank \(C\255y\))108 528 Q F0 -1(Ya)144 540 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 552 Q F0 +(Rotate the kill ring, and yank the ne)144 564 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 580.8 Q +(guments)-.1 E(digit\255ar)108 592.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 604.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 .366(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 .778(This is another w)144 412.8 R .779(ay to specify an ar)-.1 F -3.279(gument. If)-.18 F .779(this command is follo)3.279 F .779 +(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 616.8 Q .3 -.15(ve a)-.25 H -.18(rg).15 G +(ument.).18 E F1(uni)108 628.8 Q -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 +E F0 .779(This is another w)144 640.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) +652.8 R 3.876(gument. If)-.18 F 1.376(the command is fol-)3.876 F(lo)144 +664.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 .899(wise ignored.)144 448.8 R .898 -(As a special case, if this command is immediately follo)5.899 F .898 +-.2 F(-)-.2 E .898(wise ignored.)144 676.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 688.8 R 1.23 (gument count for the ne)-.18 F 1.23(xt command is multiplied by four) --.15 F(.)-.55 E .823(The ar)144 472.8 R .823 +-.15 F(.)-.55 E .822(The ar)144 700.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 .822(es the ar)-.1 F -(gument)-.18 E(count four)144 484.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 -(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 .533(xt as a v) --.15 F .533(ariable \(if the te)-.25 F .533(xt be)-.15 F .533(gins with) --.15 F F1($)3.033 E F0 .533(\), username \(if the te)B .532(xt be)-.15 F -.532(gins with)-.15 F F1(~)3.032 E F0 .532(\), hostname \(if the)B(te) -144 549.6 Q .701(xt be)-.15 F .701(gins with)-.15 F F1(@)3.201 E F0 .701 -(\), or command \(including aliases and functions\) in turn.)B .702 -(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.282 E(pletions)144 -621.6 Q F0(.)A F1(menu\255complete)108 633.6 Q F0 .928(Similar to)144 -645.6 R F1(complete)3.428 E F0 3.428(,b)C .929(ut replaces the w)-3.628 -F .929(ord to be completed with a single match from the list of)-.1 F -1.194(possible completions.)144 657.6 R 1.194(Repeated e)6.194 F -.15 -(xe)-.15 G 1.194(cution of).15 F F1(menu\255complete)3.694 E F0 1.193 -(steps through the list of possible)3.694 F .828 -(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.227 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 4.4)72 768 Q(2017 October 7)143.735 E(48)192.895 E -0 Cg EP +(cuting this function the \214rst time mak).15 F .823(es the ar)-.1 F +(gument)-.18 E(count four)144 712.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(GNU Bash 4.4) +72 768 Q(2017 December 28)136.795 E(48)185.955 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(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(Completing)87 84 Q(complete \(T)108 96 Q(AB\))-.9 E F0 1.137 +(Attempt to perform completion on the te)144 108 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 120 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 132 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 144 Q F1 +(possible\255completions \(M\255?\))108 156 Q F0 +(List the possible completions of the te)144 168 Q(xt before point.)-.15 +E F1(insert\255completions \(M\255*\))108 180 Q F0 .783 +(Insert all completions of the te)144 192 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 204 Q F0(.)A F1 +(menu\255complete)108 216 Q F0 .929(Similar to)144 228 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 240 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 252 R .828 +(At the end of the list of completions, the bell is rung)5.828 F .727 +(\(subject to the setting of)144 264 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 276 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 288 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 300 Q F0 .82(Identical to)144 +312 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 324 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 -(ginning or end of the line \(lik)-.15 F(e)-.1 E F1(delete\255char)2.735 -E F0(\).)A .425(If at the end of the line, beha)144 144 R -.15(ve)-.2 G +(delete\255char\255or\255list)108 336 Q F0 .234 +(Deletes the character under the cursor if not at the be)144 348 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 360 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 +372 Q(ault.)-.1 E F1(complete\255\214lename \(M\255/\))108 384 Q F0 +(Attempt \214lename completion on the te)144 396 Q(xt before point.)-.15 +E F1(possible\255\214lename\255completions \(C\255x /\))108 408 Q F0 +(List the possible completions of the te)144 420 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 432 Q(name \(M\255~\))-.15 E F0 +(Attempt completion on the te)144 444 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 456 Q(name\255completions \(C\255x ~\))-.15 E F0 +(List the possible completions of the te)144 468 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 +480 Q(ariable \(M\255$\))-.1 E F0(Attempt completion on the te)144 492 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 504 Q(ariable\255completions \(C\255x $\))-.1 E F0 +(List the possible completions of the te)144 516 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 528 Q F0 +(Attempt completion on the te)144 540 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 552 Q F0 +(List the possible completions of the te)144 564 Q (xt before point, treating it as a hostname.)-.15 E F1 -(complete\255command \(M\255!\))108 360 Q F0 .58 -(Attempt completion on the te)144 372 R .581 -(xt before point, treating it as a command name.)-.15 F .581 -(Command comple-)5.581 F .715(tion attempts to match the te)144 384 R +(complete\255command \(M\255!\))108 576 Q F0 .581 +(Attempt completion on the te)144 588 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 600 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 612 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 624 Q F0 +(List the possible completions of the te)144 636 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 .424 -(Attempt completion on the te)144 444 R .425 -(xt before point, comparing the te)-.15 F .425(xt ag)-.15 F .425 +(dynamic\255complete\255history \(M\255T)108 648 Q(AB\))-.9 E F0 .425 +(Attempt completion on the te)144 660 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 --.15(ev)-.18 G(\255expand).15 E F0 .611 -(Attempt menu completion on the te)144 480 R .611 -(xt before point, comparing the te)-.15 F .61(xt ag)-.15 F .61 +(for possible completion matches.)144 672 Q F1(dab)108 684 Q(br)-.1 E +-.15(ev)-.18 G(\255expand).15 E F0 .61 +(Attempt menu completion on the te)144 696 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\ -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 -(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 -(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 -(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 1(cute the last k).15 F -.15(ey)-.1 -G .999(board macro de\214ned, by making the characters in the macro app\ -ear 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.776 -(Read in the contents of the)144 693.6 R F2(inputr)4.276 E(c)-.37 E F0 -1.777(\214le, and incorporate an)4.276 F 4.277(yb)-.15 G 1.777 -(indings or v)-4.277 F 1.777(ariable assignments)-.25 F(found there.)144 -705.6 Q(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(49)192.895 E 0 Cg -EP +(tory list for possible completion matches.)144 708 Q(GNU Bash 4.4)72 +768 Q(2017 December 28)136.795 E(49)185.955 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(abort \(C\255g\))108 84 Q F0 3.249 -(Abort the current editing command and ring the terminal')144 96 R 5.748 -(sb)-.55 G 3.248(ell \(subject to the setting of)-5.748 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.738 -(If the meta\214ed character)144 132 R F2(x)4.238 E F0 1.739 -(is uppercase, run the command that is bound to the corresponding)4.238 -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 1.095 -(Undo all changes made to this line.)144 216 R 1.095(This is lik)6.095 F -3.595(ee)-.1 G -.15(xe)-3.745 G 1.095(cuting the).15 F F1(undo)3.595 E +SF(complete\255into\255braces \(M\255{\))108 84 Q F0 .4(Perform \214len\ +ame completion and insert the list of possible completions enclosed wit\ +hin braces so)144 96 R(the list is a)144 108 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 124.8 S(yboard Macr).25 E(os)-.18 +E(start\255kbd\255macr)108 136.8 Q 2.5(o\()-.18 G(C\255x \()-2.5 E(\)) +.833 E F0(Be)144 148.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 160.8 Q 2.5(o\()-.18 G +(C\255x \))-2.5 E(\)).833 E F0(Stop sa)144 172.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 184.8 Q 2.5(o\()-.18 G(C\255x e\))-2.5 +E F0(Re-e)144 196.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 208.8 Q -.15(ey)-.1 G(board.).15 +E F1(print\255last\255kbd\255macr)108 220.8 Q 2.5(o\()-.18 G(\))-2.5 E +F0(Print the last k)144 232.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 249.6 Q -.18(re)108 261.6 S.18 E +(ead\255init\255\214le \(C\255x C\255r\))-.18 E F0 1.777 +(Read in the contents of the)144 273.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 +285.6 Q F1(abort \(C\255g\))108 297.6 Q F0 3.248 +(Abort the current editing command and ring the terminal')144 309.6 R +5.749(sb)-.55 G 3.249(ell \(subject to the setting of)-5.749 F F1 +(bell\255style)144 321.6 Q F0(\).)A F1(do\255lo)108 333.6 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 345.6 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 357.6 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 369.6 Q(e\214x\255meta \(ESC\))-.18 E F0 +(Metafy the ne)144 381.6 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 393.6 Q F0 +(Incremental undo, separately remembered for each line.)144 405.6 Q F1 +-2.29 -.18(re v)108 417.6 T(ert\255line \(M\255r\)).08 E F0 1.095 +(Undo all changes made to this line.)144 429.6 R 1.095(This is lik)6.095 +F 3.595(ee)-.1 G -.15(xe)-3.745 G 1.095(cuting the).15 F F1(undo)3.595 E F0 1.095(command enough times to)3.595 F -(return the line to its initial state.)144 228 Q F1 -(tilde\255expand \(M\255&\))108 240 Q F0(Perform tilde e)144 252 Q +(return the line to its initial state.)144 441.6 Q F1 +(tilde\255expand \(M\255&\))108 453.6 Q F0(Perform tilde e)144 465.6 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 477.6 Q F0 +(Set the mark to the point.)144 489.6 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 .282(ap the point with the mark.)-.1 F .283 +(exchange\255point\255and\255mark \(C\255x C\255x\))108 501.6 Q F0(Sw) +144 513.6 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.783(dp).15 G .283(osition, and the old)-2.783 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.036(Ac)144 336 S -.536(haracter is read and point is mo)-3.036 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.535(.A)-.55 G(ne)-2.5 E -.05 -(ga)-.15 G(ti).05 E .835 -.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.543(Ac)144 372 S 1.043 -(haracter is read and point is mo)-3.543 F -.15(ve)-.15 G 3.544(dt).15 G +2.782(dp).15 G .282(osition, and the old)-2.782 F(cursor position is sa) +144 525.6 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 537.6 Q(ch \(C\255]\))-.18 E F0 3.035(Ac)144 +549.6 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 561.6 Q(vious occurrences.)-.25 E F1(character\255sear)108 573.6 Q +(ch\255backward \(M\255C\255]\))-.18 E F0 3.544(Ac)144 585.6 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.044(.A)-.55 G(ne)-2.5 E +(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.827 -(Read enough characters to consume a multi-k)144 408 R 2.126 -.15(ey s) --.1 H 1.826(equence such as those de\214ned for k).15 F -.15(ey)-.1 G -4.326(sl).15 G(ik)-4.326 E(e)-.1 E .79(Home and End.)144 420 R .791 -(Such sequences be)5.79 F .791 +(count searches for subsequent occurrences.)144 597.6 Q F1 +(skip\255csi\255sequence)108 609.6 Q F0 1.826 +(Read enough characters to consume a multi-k)144 621.6 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 633.6 R +.791(Such sequences be)5.791 F .791 (gin with a Control Sequence Indicator \(CSI\), usually ESC\255[.)-.15 F -.332(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 .631 -.15(ve n) --.2 H 2.831(oe).15 G -.25(ff)-2.831 G .331(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 645.6 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 657.6 R(uf)-.2 E(fer)-.25 E +5.026(.T)-.55 G(his)-5.026 E(is unbound by def)144 669.6 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 .481(thout a numeric ar).4 F .481 +681.6 Q F0 -.4(Wi)144 693.6 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 .48 -(riable is inserted at the).25 F(be)144 492 Q .244 -(ginning of the current line.)-.15 F .245(If a numeric ar)5.244 F .245 -(gument is supplied, this command acts as a toggle: if)-.18 F .322 -(the characters at the be)144 504 R .321 +(comment\255begin)2.981 E F0 -.25(va)2.981 G .481 +(riable is inserted at the).25 F(be)144 705.6 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 717.6 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.821(,t)C .321(he v)-2.821 F .321(alue is) --.25 F .831(inserted, otherwise the characters in)144 516 R F1 -(comment\255begin)3.331 E F0 .832(are deleted from the be)3.331 F .832 -(ginning of the line.)-.15 F 1.469 -(In either case, the line is accepted as if a ne)144 528 R 1.468 -(wline had been typed.)-.25 F 1.468(The def)6.468 F 1.468(ault v)-.1 F -1.468(alue of)-.25 F F1(com-)3.968 E(ment\255begin)144 540 Q F0 .839 -(causes this command to mak)3.339 F 3.339(et)-.1 G .839 -(he current line a shell comment.)-3.339 F .84(If a numeric ar)5.84 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 .792(The w)144 576 R .791 -(ord before point is treated as a pattern for pathname e)-.1 F .791 -(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 .175(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 .626 -(Print all of the functions and their k)144 708 R .926 -.15(ey b)-.1 H -.627(indings to the readline output stream.).15 F .627(If a numeric ar) -5.627 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 4.4)72 768 Q(2017 October 7)143.735 E(50)192.895 -E 0 Cg EP +(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 729.6 R F1 +(comment\255begin)3.332 E F0 .831(are deleted from the be)3.332 F .831 +(ginning of the line.)-.15 F(GNU Bash 4.4)72 768 Q(2017 December 28) +136.795 E(50)185.955 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(dump\255v)108 84 Q(ariables)-.1 E F0 1.8 -(Print all of the settable readline v)144 96 R 1.799 -(ariables and their v)-.25 F 1.799(alues to the readline output stream.) --.25 F 1.799(If a)6.799 F .304(numeric ar)144 108 R .304 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.468 +(In either case, the line is accepted as if a ne)144 84 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 10/Times-Bold@0 SF(com-)3.969 E(ment\255begin) +144 96 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 108 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 120 Q +(ord \(M\255g\))-.1 E F0 .791(The w)144 132 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 144 +R(pattern is used to generate a list of matching \214lenames for possib\ +le completions.)2.5 E F1(glob\255expand\255w)108 156 Q(ord \(C\255x *\)) +-.1 E F0 .176(The w)144 168 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 180 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 192 Q(xpansion.)-.15 E F1(glob\255list\255expansions \(C\255x g\)) +108 204 Q F0 .923(The list of e)144 216 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 228 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 240 S(pansion.).15 E F1(dump\255functions)108 252 Q F0 .627 +(Print all of the functions and their k)144 264 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 276 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 288 Q(ariables)-.1 E F0 +1.799(Print all of the settable readline v)144 300 R 1.799 +(ariables and their v)-.25 F 1.8(alues to the readline output stream.) +-.25 F 1.8(If a)6.8 F .305(numeric ar)144 312 R .304 (gument is supplied, the output is formatted in such a w)-.18 F .304 -(ay that it can be made part of an)-.1 F/F2 10/Times-Italic@0 SF(inputr) -144 120 Q(c)-.37 E F0(\214le.)2.5 E F1(dump\255macr)108 132 Q(os)-.18 E -F0 .593(Print all of the readline k)144 144 R .893 -.15(ey s)-.1 H .592 -(equences bound to macros and the strings the).15 F 3.092(yo)-.15 G -3.092(utput. If)-3.092 F 3.092(an)3.092 G(umeric)-3.092 E(ar)144 156 Q +(ay that it can be made part of an)-.1 F F2(inputr)144 324 Q(c)-.37 E F0 +(\214le.)2.5 E F1(dump\255macr)108 336 Q(os)-.18 E F0 .592 +(Print all of the readline k)144 348 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 360 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.028 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 +(ay that it can be made part of an)-.1 F F2(inputr)3.027 E(c)-.37 E F0 +(\214le.)144 372 Q F1(display\255shell\255v)108 384 Q +(ersion \(C\255x C\255v\))-.1 E F0(Display v)144 396 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 .147(When w)108 -220.8 R .147(ord completion is attempted for an ar)-.1 F .147 +F0(.)A F1(Pr)87 412.8 Q(ogrammable Completion)-.18 E F0 .146(When w)108 +424.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.828(\)h)C 1.329 -(as been de\214ned using the)-3.828 F F1(complete)3.829 E F0 -.2(bu) +F2(compspec)108 436.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.329(w\), the) --.25 F(programmable completion f)108 244.8 Q(acilities are in)-.1 E -.2 -(vo)-.4 G -.1(ke).2 G(d.).1 E .498 -(First, the command name is identi\214ed.)108 261.6 R .498 -(If the command w)5.498 F .497 -(ord is the empty string \(completion attempted at)-.1 F .233(the be)108 -273.6 R .233(ginning of an empty line\), an)-.15 F 2.733(yc)-.15 G .233 +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 448.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 465.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 +477.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 .234(If a comp-) -5.234 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 .822 -(for the w)108 297.6 R 3.322(ord. If)-.1 F .822(the command w)3.322 F -.823(ord is a full pathname, a compspec for the full pathname is search\ -ed for)-.1 F 2.867(\214rst. If)108 309.6 R .366(no compspec is found fo\ +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 489.6 R .823 +(for the w)108 501.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 513.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.867 F(follo)108 321.6 Q .298(wing the \214nal slash.)-.25 F .298 -(If those searches do not result in a compspec, an)5.298 F 2.799(yc)-.15 -G .299(ompspec de\214ned with the)-2.799 F F12.799 E F0(option to) -108 333.6 Q F1(complete)2.5 E F0(is used as the def)2.5 E(ault.)-.1 E +rtion)2.866 F(follo)108 525.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(option to) +108 537.6 Q F1(complete)2.5 E F0(is used as the def)2.5 E(ault.)-.1 E .817(Once a compspec has been found, it is used to generate the list of\ - matching w)108 350.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 362.4 Q(ault)-.1 E F1(bash) + matching w)108 554.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 566.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 .463 -(First, the actions speci\214ed by the compspec are used.)108 379.2 R -.464(Only matches which are pre\214x)5.464 F .464(ed by the w)-.15 F -.464(ord being)-.1 F .596(completed are returned.)108 391.2 R .596 -(When the)5.596 F F13.096 E F0(or)3.095 E F13.095 E F0 .595 +E F1(Completing)2.5 E F0(is performed.)2.5 E .464 +(First, the actions speci\214ed by the compspec are used.)108 583.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 595.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 403.2 Q(ariable)-.25 E F3(FIGNORE)2.5 E F0 -(is used to \214lter the matches.)2.25 E(An)108 420 Q 4.084(yc)-.15 G +(shell v)108 607.2 Q(ariable)-.25 E F3(FIGNORE)2.5 E F0 +(is used to \214lter the matches.)2.25 E(An)108 624 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 432 S -.555(rds generated by the pattern need not match the w).1 F .554 -(ord being completed.)-.1 F(The)5.554 E F3(GLOBIGNORE)3.054 E F0 .554 -(shell v)2.804 F(ari-)-.25 E -(able is not used to \214lter the matches, b)108 444 Q(ut the)-.2 E F3 -(FIGNORE)2.5 E F0 -.25(va)2.25 G(riable is used.).25 E(Ne)108 460.8 Q -.32(xt, the string speci\214ed as the ar)-.15 F .32(gument to the)-.18 F -F12.82 E F0 .321(option is considered.)2.821 F .321 -(The string is \214rst split using the)5.321 F .413(characters in the) -108 472.8 R F3(IFS)2.913 E F0 .412(special v)2.663 F .412 +(option are generated ne)4.084 F 4.084(xt. The)-.15 F -.1(wo)108 636 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 648 Q(ut the)-.2 E F3 +(FIGNORE)2.5 E F0 -.25(va)2.25 G(riable is used.).25 E(Ne)108 664.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 +676.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 -.412(Each w)5.412 F .412(ord is then e)-.1 F(xpanded)-.15 E .091 -(using brace e)108 484.8 R .091(xpansion, tilde e)-.15 F .092 -(xpansion, parameter and v)-.15 F .092(ariable e)-.25 F .092 -(xpansion, command substitution, and arith-)-.15 F 1.397(metic e)108 -496.8 R 1.396(xpansion, as described abo)-.15 F 1.696 -.15(ve u)-.15 H +.413(Each w)5.412 F .413(ord is then e)-.1 F(xpanded)-.15 E .092 +(using brace e)108 688.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 +700.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 -508.8 Q .509 -.15(ve u)-.15 H(nder).15 E F1 -.75(Wo)2.709 G .209 -(rd Splitting).75 F F0 5.209(.T)C .209(he results of the e)-5.209 F .209 -(xpansion are pre\214x-matched ag)-.15 F .21(ainst the w)-.05 F .21 -(ord being com-)-.1 F(pleted, and the matching w)108 520.8 Q -(ords become the possible completions.)-.1 E 1.238 -(After these matches ha)108 537.6 R 1.538 -.15(ve b)-.2 H 1.238 -(een generated, an).15 F 3.738(ys)-.15 G 1.237 -(hell function or command speci\214ed with the)-3.738 F F13.737 E -F0(and)3.737 E F13.737 E F0 3.375(options is in)108 549.6 R -.2 -(vo)-.4 G -.1(ke).2 G 5.875(d. When).1 F 3.375 -(the command or function is in)5.875 F -.2(vo)-.4 G -.1(ke).2 G 3.375 -(d, the).1 F F3(COMP_LINE)5.876 E F4(,)A F3(COMP_POINT)5.626 E F4(,)A F3 -(COMP_KEY)108 561.6 Q F4(,)A F0(and)2.408 E F3(COMP_TYPE)2.658 E F0 -.25 -(va)2.408 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 .157 -(Shell V)2.657 F(ariables)-.92 E F0 5.157(.I)C(f)-5.157 E 3.485(as)108 -573.6 S .986(hell function is being in)-3.485 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.986 E .347 -(the function or command is in)108 585.6 R -.2(vo)-.4 G -.1(ke).2 G .347 -(d, the \214rst ar).1 F .346(gument \()-.18 F F1($1)A F0 2.846(\)i)C -2.846(st)-2.846 G .346(he name of the command whose ar)-2.846 F(guments) --.18 E .263(are being completed, the second ar)108 597.6 R .263 -(gument \()-.18 F F1($2)A F0 2.763(\)i)C 2.763(st)-2.763 G .264(he w) --2.763 F .264(ord being completed, and the third ar)-.1 F .264 -(gument \()-.18 F F1($3)A F0 2.764(\)i)C(s)-2.764 E .629(the w)108 609.6 -R .629(ord preceding the w)-.1 F .629 -(ord being completed on the current command line.)-.1 F .628 -(No \214ltering of the generated)5.629 F .714(completions ag)108 621.6 R -.714(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 633.6 Q(An)108 650.4 Q 2.938(yf)-.15 G .437 -(unction speci\214ed with)-2.938 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 .437(acilities, including)-.1 F(the)108 662.4 Q F1 -(compgen)2.956 E F0 -.2(bu)2.956 G .456(iltin described belo).2 F 1.756 --.65(w, t)-.25 H 2.956(og).65 G .456(enerate the matches.)-2.956 F .457 -(It must put the possible completions in the)5.456 F F3(COMPREPL)108 -674.4 Q(Y)-.828 E F0(array v)2.25 E(ariable, one per array element.)-.25 -E(Ne)108 691.2 Q .081(xt, an)-.15 F 2.581(yc)-.15 G .081 -(ommand speci\214ed with the)-2.581 F F12.581 E F0 .081 -(option is in)2.581 F -.2(vo)-.4 G -.1(ke).2 G 2.581(di).1 G 2.58(na) --2.581 G 2.58(ne)-2.58 G -.4(nv)-2.58 G .08(ironment equi).4 F -.25(va) --.25 G .08(lent to command sub-).25 F 2.858(stitution. It)108 703.2 R -.359(should print a list of completions, one per line, to the standard \ -output.)2.858 F .359(Backslash may be used)5.359 F(to escape a ne)108 -715.2 Q(wline, if necessary)-.25 E(.)-.65 E(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(51)192.895 E 0 Cg EP +712.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 724.8 Q +(ords become the possible completions.)-.1 E(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(51)185.955 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 .377 -(After all of the possible completions are generated, an)108 84 R 2.877 -<798c>-.15 G .377(lter speci\214ed with the)-2.877 F/F1 10/Times-Bold@0 -SF2.876 E F0 .376(option is applied to the)2.876 F 3.181 -(list. The)108 96 R .681(\214lter is a pattern as used for pathname e) -3.181 F .681(xpansion; a)-.15 F F1(&)3.181 E F0 .682 -(in the pattern is replaced with the te)3.182 F .682(xt of)-.15 F .523 -(the w)108 108 R .523(ord being completed.)-.1 F 3.023(Al)5.523 G -(iteral)-3.023 E F1(&)3.023 E F0 .522 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.237 +(After these matches ha)108 84 R 1.537 -.15(ve b)-.2 H 1.237 +(een generated, an).15 F 3.737(ys)-.15 G 1.238 +(hell function or command speci\214ed with the)-3.737 F/F1 10 +/Times-Bold@0 SF3.738 E F0(and)3.738 E F13.738 E F0 3.376 +(options is in)108 96 R -.2(vo)-.4 G -.1(ke).2 G 5.875(d. When).1 F +3.375(the command or function is in)5.875 F -.2(vo)-.4 G -.1(ke).2 G +3.375(d, the).1 F/F2 9/Times-Bold@0 SF(COMP_LINE)5.875 E/F3 9 +/Times-Roman@0 SF(,)A F2(COMP_POINT)5.625 E F3(,)A F2(COMP_KEY)108 108 Q +F3(,)A F0(and)2.407 E F2(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 120 S .986(hell function is being in) +-3.486 F -.2(vo)-.4 G -.1(ke).2 G .986(d, the).1 F F2(COMP_W)3.486 E +(ORDS)-.09 E F0(and)3.236 E F2(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 132 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 144 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 156 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 168 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 180 Q(An)108 196.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 208.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(COMPREPL)108 +220.8 Q(Y)-.828 E F0(array v)2.25 E(ariable, one per array element.)-.25 +E(Ne)108 237.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 249.6 +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(to escape a ne)108 +261.6 Q(wline, if necessary)-.25 E(.)-.65 E .376 +(After all of the possible completions are generated, an)108 278.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 290.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 302.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.022(db).15 G(efore)-3.022 E .849(attempting a match.)108 120 R -(An)5.849 E 3.349(yc)-.15 G .849 -(ompletion that matches the pattern will be remo)-3.349 F -.15(ve)-.15 G -3.35(df).15 G .85(rom the list.)-3.35 F 3.35(Al)5.85 G(eading)-3.35 E F1 -(!)3.35 E F0(ne)108 132 Q -.05(ga)-.15 G .764 +-.15 G 3.023(db).15 G(efore)-3.023 E .85(attempting a match.)108 314.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 326.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.264 E F1(nocase-)3.264 E(match)108 144 Q F0 +3.264(d. If).15 F(the)3.265 E F1(nocase-)3.265 E(match)108 338.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 -160.8 Q 3.086(,a)-.65 G .886 -.15(ny p)-3.086 H .586(re\214x and suf).15 +355.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 172.8 Q .247 -(If the pre)108 189.6 R .247(viously-applied actions do not generate an) +tion code as the list of possible completions.)108 367.2 Q .246 +(If the pre)108 384 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 .246(as supplied to)-.1 F -F1(complete)108 201.6 Q F0(when the compspec w)2.5 E -(as de\214ned, directory name completion is attempted.)-.1 E .461 -(If the)108 218.4 R F1 .462(\255o plusdirs)2.961 F F0 .462(option w) +2.747 F(names)-.15 E F0 .247(option w)2.747 F .247(as supplied to)-.1 F +F1(complete)108 396 Q F0(when the compspec w)2.5 E +(as de\214ned, directory name completion is attempted.)-.1 E .462 +(If the)108 412.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 230.4 Q 2.5(ym)-.15 G -(atches are added to the results of the other actions.)-2.5 E .56 -(By def)108 247.2 R .56(ault, if a compspec is found, whate)-.1 F -.15 -(ve)-.25 G 3.06(ri).15 G 3.06(tg)-3.06 G .559 -(enerates is returned to the completion code as the full set)-3.06 F -.631(of possible completions.)108 259.2 R .631(The def)5.631 F(ault)-.1 -E F1(bash)3.131 E F0 .631 -(completions are not attempted, and the readline def)3.131 F .632 -(ault of \214le-)-.1 F .559(name completion is disabled.)108 271.2 R -.559(If the)5.559 F F1 .559(\255o bashdefault)3.059 F F0 .559(option w) -3.059 F .559(as supplied to)-.1 F F1(complete)3.058 E F0 .558 -(when the compspec)3.058 F -.1(wa)108 283.2 S 3.171(sd).1 G .671 -(e\214ned, the)-3.171 F F1(bash)3.171 E F0(def)3.171 E .671 +F(pletion is attempted and an)108 424.8 Q 2.5(ym)-.15 G +(atches are added to the results of the other actions.)-2.5 E .559 +(By def)108 441.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 453.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 465.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 477.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 .672(If the)5.672 F F13.172 E(default)108 295.2 Q F0 1.207 -(option w)3.707 F 1.207(as supplied to)-.1 F F1(complete)3.707 E F0 +-.1 F .671(If the)5.671 F F13.171 E(default)108 489.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.206(ault completion)-.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 -307.2 Q(ault)-.1 E F1(bash)2.5 E F0(completions\) generate no matches.) +501.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 324 R .633(tions force r\ -eadline to append a slash to completed names which are symbolic links t\ -o directories, subject)108 336 R 2.761(to the v)108 348 R 2.761 -(alue of the)-.25 F F1(mark\255dir)5.261 E(ectories)-.18 E F0 2.761 -(readline v)5.261 F 2.761(ariable, re)-.25 F -.05(ga)-.15 G 2.762 -(rdless of the setting of the).05 F F1(mark-sym-)5.262 E(link)108 360 Q -(ed\255dir)-.1 E(ectories)-.18 E F0(readline v)2.5 E(ariable.)-.25 E -.191(There is some support for dynamically modifying completions.)108 -376.8 R .19(This is most useful when used in combina-)5.191 F 1.33 -(tion with a def)108 388.8 R 1.33(ault completion speci\214ed with)-.1 F +desired, the programmable completion func-)108 518.4 R .632(tions force\ + readline to append a slash to completed names which are symbolic links\ + to directories, subject)108 530.4 R 2.762(to the v)108 542.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 554.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 +571.2 R .191(This is most useful when used in combina-)5.191 F 1.33 +(tion with a def)108 583.2 R 1.33(ault completion speci\214ed with)-.1 F F1 1.33(complete -D)3.83 F F0 6.33(.I)C(t')-6.33 E 3.83(sp)-.55 G 1.33 (ossible for shell functions e)-3.83 F -.15(xe)-.15 G 1.33(cuted as).15 F .93(completion handlers to indicate that completion should be retried\ - by returning an e)108 400.8 R .93(xit status of 124.)-.15 F .93(If a) + by returning an e)108 595.2 R .93(xit status of 124.)-.15 F .93(If a) 5.93 F .1(shell function returns 124, and changes the compspec associat\ -ed with the command on which completion is)108 412.8 R .666 -(being attempted \(supplied as the \214rst ar)108 424.8 R .665 -(gument when the function is e)-.18 F -.15(xe)-.15 G .665 -(cuted\), programmable completion).15 F .083(restarts from the be)108 -436.8 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 .084(This allo)5.084 F -.084(ws a set of)-.25 F(completions to be b)108 448.8 Q(uilt dynamicall\ +ed with the command on which completion is)108 607.2 R .665 +(being attempted \(supplied as the \214rst ar)108 619.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 +631.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 643.2 Q(uilt dynamicall\ y as completion is attempted, rather than being loaded all at once.)-.2 -E -.15(Fo)108 465.6 S 2.637(ri).15 G .137 -(nstance, assuming that there is a library of compspecs, each k)-2.637 F +E -.15(Fo)108 660 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 477.6 Q(wing def)-.25 E +(the command, the follo)108 672 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 494.4 Q({)108 506.4 Q 6 -(.")144 518.4 S +E/F4 10/Courier@0 SF(_completion_loader\(\))108 688.8 Q({)108 700.8 Q 6 +(.")144 712.8 S (/etc/bash_completion.d/$1.sh" >/dev/null 2>&1 && return 124)-6 E(})108 -530.4 Q(complete -D -F _completion_loader -o bashdefault -o default)108 -542.4 Q/F3 10.95/Times-Bold@0 SF(HIST)72 571.2 Q(OR)-.197 E(Y)-.383 E F0 -.371(When the)108 583.2 R F1 .371(\255o history)2.871 F F0 .371 -(option to the)2.871 F F1(set)2.872 E F0 -.2(bu)2.872 G .372 -(iltin is enabled, the shell pro).2 F .372(vides access to the)-.15 F/F4 -10/Times-Italic@0 SF .372(command history)2.872 F F0(,)A .305 -(the list of commands pre)108 595.2 R .305(viously typed.)-.25 F .305 -(The v)5.305 F .304(alue of the)-.25 F/F5 9/Times-Bold@0 SF(HISTSIZE) -2.804 E F0 -.25(va)2.554 G .304(riable is used as the number of com-).25 -F .429(mands to sa)108 607.2 R .729 -.15(ve i)-.2 H 2.929(nah).15 G .429 -(istory list.)-2.929 F .429(The te)5.429 F .429(xt of the last)-.15 F F5 -(HISTSIZE)2.93 E F0 .43(commands \(def)2.68 F .43(ault 500\) is sa)-.1 F --.15(ve)-.2 G 2.93(d. The).15 F(shell)2.93 E .287 -(stores each command in the history list prior to parameter and v)108 -619.2 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 631.2 -S 4.065(ta).2 G 1.565(fter history e)-4.065 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.816 E F5(HISTCONTR)108 643.2 Q(OL)-.27 E/F6 9/Times-Roman@0 SF(.) -A F0 .082 -(On startup, the history is initialized from the \214le named by the v) -108 660 R(ariable)-.25 E F5(HISTFILE)2.582 E F0(\(def)2.332 E(ault)-.1 E -F4(~/.bash_history)2.582 E F0(\).)A .315(The \214le named by the v)108 -672 R .315(alue of)-.25 F F5(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 .659 -(lines speci\214ed by the v)108 684 R .659(alue of)-.25 F F5 -(HISTFILESIZE)3.158 E F6(.)A F0(If)5.158 E F1(HISTFILESIZE)3.158 E F0 -.658(is unset, or set to null, a non-numeric)3.158 F -.25(va)108 696 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 708 Q 1.605 -(ginning with the history comment character follo)-.15 F 1.604 -(wed immediately by a digit are interpreted as time-)-.25 F .15 -(stamps for the follo)108 720 R .15(wing history line.)-.25 F .151 -(These timestamps are optionally displayed depending on the v)5.151 F -.151(alue of)-.25 F(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(52) -192.895 E 0 Cg EP +724.8 Q F0(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(52)185.955 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(the)108 84 Q/F1 9 -/Times-Bold@0 SF(HISTTIMEFORMA)3.559 E(T)-.855 E F0 -.25(va)3.309 G -3.559(riable. When).25 F 3.559(as)3.559 G 1.059 -(hell with history enabled e)-3.559 F 1.059(xits, the last)-.15 F F1 -($HISTSIZE)3.559 E F0 1.058(lines are)3.309 F .158 -(copied from the history list to)108 96 R F1($HISTFILE)2.658 E/F2 9 -/Times-Roman@0 SF(.)A F0 .158(If the)4.658 F/F3 10/Times-Bold@0 SF -(histappend)2.658 E F0 .159 -(shell option is enabled \(see the description of)2.659 F F3(shopt)108 -108 Q F0(under)2.582 E F1 .082(SHELL B)2.582 F(UIL)-.09 E .082 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Courier@0 SF +(complete -D -F _completion_loader -o bashdefault -o default)108 84 Q/F2 +10.95/Times-Bold@0 SF(HIST)72 112.8 Q(OR)-.197 E(Y)-.383 E F0 .372 +(When the)108 124.8 R/F3 10/Times-Bold@0 SF .372(\255o history)2.872 F +F0 .372(option to the)2.872 F F3(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 +10/Times-Italic@0 SF .371(command history)2.871 F F0(,)A .304 +(the list of commands pre)108 136.8 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) +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 148.8 R .73 -.15(ve i)-.2 H 2.93(nah).15 G .43 +(istory list.)-2.93 F .43(The te)5.43 F .429(xt of the last)-.15 F F5 +(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 +160.8 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 172.8 +S 4.066(ta).2 G 1.565(fter history e)-4.066 F 1.565 +(xpansion is performed, subject to the v)-.15 F 1.565 +(alues of the shell v)-.25 F(ariables)-.25 E F5(HISTIGNORE)4.065 E F0 +(and)3.815 E F5(HISTCONTR)108 184.8 Q(OL)-.27 E/F6 9/Times-Roman@0 SF(.) +A F0 .082 +(On startup, the history is initialized from the \214le named by the v) +108 201.6 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 +213.6 R .315(alue of)-.25 F F5(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 225.6 R .658(alue of)-.25 F F5 +(HISTFILESIZE)3.158 E F6(.)A F0(If)5.158 E F3(HISTFILESIZE)3.158 E F0 +.659(is unset, or set to null, a non-numeric)3.158 F -.25(va)108 237.6 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 249.6 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 261.6 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 273.6 Q F5(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 F5 +($HISTSIZE)3.559 E F0 1.059(lines are)3.309 F .159 +(copied from the history list to)108 285.6 R F5($HISTFILE)2.659 E F6(.)A +F0 .159(If the)4.659 F F3(histappend)2.658 E F0 .158 +(shell option is enabled \(see the description of)2.658 F F3(shopt)108 +297.6 Q F0(under)2.581 E F5 .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 -.196(history \214le is o)108 120 R -.15(ve)-.15 G 2.696(rwritten. If).15 -F F1(HISTFILE)2.696 E F0 .197(is unset, or if the history \214le is unw\ -ritable, the history is not sa)2.446 F -.15(ve)-.2 G(d.).15 E .584 -(If the)108 132 R F1(HISTTIMEFORMA)3.084 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 .583(ed with the his-)-.1 F 1.147(tory comment character)108 144 R -3.647(,s)-.4 G 3.647(ot)-3.647 G(he)-3.647 E 3.647(ym)-.15 G 1.147 -(ay be preserv)-3.647 F 1.147(ed across shell sessions.)-.15 F 1.148 -(This uses the history comment)6.148 F 1.377 -(character to distinguish timestamps from other history lines.)108 156 R -1.377(After sa)6.377 F 1.377(ving the history)-.2 F 3.876(,t)-.65 G -1.376(he history \214le is)-3.876 F .756 -(truncated to contain no more than)108 168 R F1(HISTFILESIZE)3.257 E F0 -3.257(lines. If)3.007 F F1(HISTFILESIZE)3.257 E F0 .757 -(is unset, or set to null, a non-)3.007 F(numeric v)108 180 Q +.197(history \214le is o)108 309.6 R -.15(ve)-.15 G 2.697(rwritten. If) +.15 F F5(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 321.6 R F5(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 333.6 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 345.6 +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 357.6 R F5(HISTFILESIZE)3.257 E +F0 3.257(lines. If)3.007 F F5(HISTFILESIZE)3.257 E F0 .757 +(is unset, or set to null, a non-)3.007 F(numeric v)108 369.6 Q (alue, or a numeric v)-.25 E -(alue less than zero, the history \214le is not truncated.)-.25 E .299 -(The b)108 196.8 R .299(uiltin command)-.2 F F3(fc)2.799 E F0(\(see) -2.799 E F1 .299(SHELL B)2.799 F(UIL)-.09 E .299(TIN COMMANDS)-.828 F F0 -(belo)2.549 E .298(w\) may be used to list or edit and re-e)-.25 F -.15 -(xe)-.15 G(-).15 E .471(cute a portion of the history list.)108 208.8 R -(The)5.471 E F3(history)2.971 E F0 -.2(bu)2.971 G .472 -(iltin may be used to display or modify the history list and).2 F .002 -(manipulate the history \214le.)108 220.8 R .001 -(When using command-line editing, search commands are a)5.002 F -.25(va) --.2 G .001(ilable in each edit-).25 F(ing mode that pro)108 232.8 Q -(vide access to the history list.)-.15 E 1.485(The shell allo)108 249.6 -R 1.485(ws control o)-.25 F -.15(ve)-.15 G 3.986(rw).15 G 1.486 +(alue less than zero, the history \214le is not truncated.)-.25 E .298 +(The b)108 386.4 R .298(uiltin command)-.2 F F3(fc)2.798 E F0(\(see) +2.798 E F5 .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 398.4 R +(The)5.472 E F3(history)2.972 E F0 -.2(bu)2.972 G .471 +(iltin may be used to display or modify the history list and).2 F .001 +(manipulate the history \214le.)108 410.4 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 422.4 Q +(vide access to the history list.)-.15 E 1.486(The shell allo)108 439.2 +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.486 E F1(HISTCONTR)3.986 -E(OL)-.27 E F0(and)3.736 E F1(HISTIGNORE)108 261.6 Q F0 -.25(va)2.708 G -.458(riables may be set to cause the shell to sa).25 F .757 -.15(ve o) --.2 H .457(nly a subset of the commands entered.).15 F(The)5.457 E F3 -(cmdhist)108 273.6 Q F0 .75 +-3.986 G 1.486(he history list.)-3.986 F(The)6.485 E F5(HISTCONTR)3.985 +E(OL)-.27 E F0(and)3.735 E F5(HISTIGNORE)108 451.2 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 463.2 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 285.6 R 3.577(,a)-.65 G 1.077 +(the same history entry)108 475.2 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.576 E F0 -.373(shell option causes the shell to sa)108 297.6 R .674 -.15(ve t)-.2 -H .374(he command with embedded ne).15 F .374 -(wlines instead of semicolons.)-.25 F .374(See the)5.374 F .319 -(description of the)108 309.6 R F3(shopt)2.819 E F0 -.2(bu)2.819 G .318 -(iltin belo).2 F 2.818(wu)-.25 G(nder)-2.818 E F1 .318(SHELL B)2.818 F -(UIL)-.09 E .318(TIN COMMANDS)-.828 F F0 .318 +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 487.2 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 499.2 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 F5 .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 -321.6 Q/F4 10.95/Times-Bold@0 SF(HIST)72 338.4 Q(OR)-.197 E 2.738(YE) --.383 G(XP)-2.738 E(ANSION)-.81 E F0 .61(The shell supports a history e) -108 350.4 R .611(xpansion feature that is similar to the history e)-.15 -F .611(xpansion in)-.15 F F3(csh.)3.111 E F0 .611(This section)5.611 F -.871(describes what syntax features are a)108 362.4 R -.25(va)-.2 G -3.371(ilable. This).25 F .871(feature is enabled by def)3.371 F .87 -(ault for interacti)-.1 F 1.17 -.15(ve s)-.25 H .87(hells, and).15 F -2.013(can be disabled using the)108 374.4 R F3(+H)4.514 E F0 2.014 +511.2 Q F2(HIST)72 528 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 540 R .611 +(xpansion feature that is similar to the history e)-.15 F .61 +(xpansion in)-.15 F F3(csh.)3.11 E F0 .61(This section)5.61 F .87 +(describes what syntax features are a)108 552 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 +2.014(can be disabled using the)108 564 R F3(+H)4.514 E F0 2.014 (option to the)4.514 F F3(set)4.514 E F0 -.2(bu)4.514 G 2.014 -(iltin command \(see).2 F F1 2.014(SHELL B)4.514 F(UIL)-.09 E 2.014 -(TIN COMMANDS)-.828 F F0(belo)108 386.4 Q 2.5(w\). Non-interacti)-.25 F -.3 -.15(ve s)-.25 H(hells do not perform history e).15 E -(xpansion by def)-.15 E(ault.)-.1 E 1.306(History e)108 403.2 R 1.306 +(iltin command \(see).2 F F5 2.013(SHELL B)4.513 F(UIL)-.09 E 2.013 +(TIN COMMANDS)-.828 F F0(belo)108 576 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 592.8 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 .209 -(commands, insert the ar)108 415.2 R .209(guments to a pre)-.18 F .21 + input stream, making it easy to repeat)-.1 F .21 +(commands, insert the ar)108 604.8 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 427.2 Q(.)-.65 E 1.164(History e)108 -444 R 1.163(xpansion is performed immediately after a complete line is \ -read, before the shell breaks it into)-.15 F -.1(wo)108 456 S .251 +F(vious)-.25 E(commands quickly)108 616.8 Q(.)-.65 E 1.163(History e)108 +633.6 R 1.163(xpansion is performed immediately after a complete line i\ +s read, before the shell breaks it into)-.15 F -.1(wo)108 645.6 S .252 (rds, and is performed on each line indi).1 F .251 -(vidually without taking quoting on pre)-.25 F .252 -(vious lines into account.)-.25 F(It)5.252 E(tak)108 468 Q .146 -(es place in tw)-.1 F 2.646(op)-.1 G 2.646(arts. The)-2.646 F .146(\214\ +(vidually without taking quoting on pre)-.25 F .251 +(vious lines into account.)-.25 F(It)5.251 E(tak)108 657.6 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 480 R .767 -(The line selected from the)5.767 F .254(history is the)108 492 R/F5 10 -/Times-Italic@0 SF -.15(ev)2.754 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.753 E(s) --.1 E F0 .253(are a)2.753 F -.25(va)-.2 G(il-).25 E .538 -(able to manipulate the selected w)108 504 R 3.038(ords. The)-.1 F .538 -(line is brok)3.038 F .538(en into w)-.1 F .539(ords in the same f)-.1 F -.539(ashion as when reading)-.1 F .573(input, so that se)108 516 R -.15 -(ve)-.25 G(ral).15 E F5(metac)3.073 E(har)-.15 E(acter)-.15 E F0 .572 -(-separated w)B .572(ords surrounded by quotes are considered one w)-.1 -F 3.072(ord. His-)-.1 F .355(tory e)108 528 R .355 +r inclusion into the current one.)108 669.6 R .766 +(The line selected from the)5.766 F .253(history is the)108 681.6 R F4 +-.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 F4(wor) +2.753 E(ds)-.37 E F0 5.253(.V)C(arious)-6.363 E F4(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 693.6 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 705.6 +R -.15(ve)-.25 G(ral).15 E F4(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 717.6 R .355 (xpansions are introduced by the appearance of the history e)-.15 F .355 -(xpansion character)-.15 F 2.855(,w)-.4 G .356(hich is)-2.855 F F3(!) -3.689 E F0 .356(by def)3.689 F(ault.)-.1 E .791(Only backslash \()108 -540 R F3(\\).833 E F0 3.291(\)a).833 G .79 -(nd single quotes can quote the history e)-3.291 F .79 -(xpansion character)-.15 F 3.29(,b)-.4 G .79(ut the history e)-3.49 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 552 R -(string.)108 564 Q(Se)108 580.8 Q -.15(ve)-.25 G .03 -(ral characters inhibit history e).15 F .03 -(xpansion if found immediately follo)-.15 F .03(wing the history e)-.25 -F .03(xpansion character)-.15 F(,)-.4 E -2.15 -.25(ev e)108 592.8 T -3.162(ni).25 G 3.162(fi)-3.162 G 3.162(ti)-3.162 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.163 E -F0(will also inhibit e)108 604.8 Q(xpansion.)-.15 E(Se)108 621.6 Q -.15 -(ve)-.25 G .11(ral shell options settable with the).15 F F3(shopt)2.61 E -F0 -.2(bu)2.61 G .109(iltin may be used to tailor the beha).2 F .109 -(vior of history e)-.2 F(xpansion.)-.15 E 1.142(If the)108 633.6 R F3 -(histv)3.643 E(erify)-.1 E F0 1.143 -(shell option is enabled \(see the description of the)3.643 F F3(shopt) -3.643 E F0 -.2(bu)3.643 G 1.143(iltin belo).2 F 1.143(w\), and)-.25 F F3 --.18(re)3.643 G(adline).18 E F0(is)3.643 E .461(being used, history sub\ -stitutions are not immediately passed to the shell parser)108 645.6 R -5.46(.I)-.55 G .46(nstead, the e)-5.46 F .46(xpanded line)-.15 F 1.515 -(is reloaded into the)108 657.6 R F3 -.18(re)4.015 G(adline).18 E F0 -1.515(editing b)4.015 F(uf)-.2 E 1.516(fer for further modi\214cation.) --.25 F(If)6.516 E F3 -.18(re)4.016 G(adline).18 E F0 1.516 -(is being used, and the)4.016 F F3(histr)108 669.6 Q(eedit)-.18 E F0 -1.202(shell option is enabled, a f)3.702 F 1.202 -(ailed history substitution will be reloaded into the)-.1 F F3 -.18(re) -3.702 G(adline).18 E F0(editing)3.702 E -.2(bu)108 681.6 S -.25(ff).2 G -1.16(er for correction.).25 F(The)6.16 E F33.66 E F0 1.16 -(option to the)3.66 F F3(history)3.66 E F0 -.2(bu)3.661 G 1.161 -(iltin command may be used to see what a history).2 F -.15(ex)108 693.6 -S .056(pansion will do before using it.).15 F(The)5.056 E F32.556 -E F0 .056(option to the)2.556 F F3(history)2.555 E F0 -.2(bu)2.555 G -.055(iltin may be used to add commands to the).2 F -(end of the history list without actually e)108 705.6 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 2.2(The shell allo)108 722.4 R 2.2 -(ws control of the v)-.25 F 2.2(arious characters used by the history e) --.25 F 2.2(xpansion mechanism \(see the)-.15 F(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(53)192.895 E 0 Cg EP +(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 +729.6 R F3(\\).833 E F0 3.29(\)a).833 G .79 +(nd single quotes can quote the history e)-3.29 F .79 +(xpansion character)-.15 F 3.291(,b)-.4 G .791(ut the history e)-3.491 F +(xpansion)-.15 E(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(53) +185.955 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.147 -(description of)108 84 R/F1 10/Times-Bold@0 SF(histchars)3.647 E F0(abo) -3.647 E 1.447 -.15(ve u)-.15 H(nder).15 E F1 1.147(Shell V)3.647 F -(ariables)-.92 E F0 3.646(\). The)B 1.146 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .789(character is\ + also treated as quoted if it immediately precedes the closing double q\ +uote in a double-quoted)108 84 R(string.)108 96 Q(Se)108 112.8 Q -.15 +(ve)-.25 G .03(ral characters inhibit history e).15 F .03 +(xpansion if found immediately follo)-.15 F .03(wing the history e)-.25 +F .03(xpansion character)-.15 F(,)-.4 E -2.15 -.25(ev e)108 124.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/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 136.8 Q(xpansion.)-.15 E(Se)108 +153.6 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 1.143(If the)108 165.6 R F1(histv)3.643 E(erify)-.1 E +F0 1.143(shell option is enabled \(see the description of the)3.643 F F1 +(shopt)3.643 E F0 -.2(bu)3.643 G 1.143(iltin belo).2 F 1.143(w\), and) +-.25 F F1 -.18(re)3.643 G(adline).18 E F0(is)3.642 E .461(being used, h\ +istory substitutions are not immediately passed to the shell parser)108 +177.6 R 5.461(.I)-.55 G .461(nstead, the e)-5.461 F .461(xpanded line) +-.15 F 1.516(is reloaded into the)108 189.6 R F1 -.18(re)4.016 G(adline) +.18 E F0 1.516(editing b)4.016 F(uf)-.2 E 1.516 +(fer for further modi\214cation.)-.25 F(If)6.516 E F1 -.18(re)4.015 G +(adline).18 E F0 1.515(is being used, and the)4.015 F F1(histr)108 201.6 +Q(eedit)-.18 E F0 1.202(shell option is enabled, a f)3.702 F 1.202 +(ailed history substitution will be reloaded into the)-.1 F F1 -.18(re) +3.702 G(adline).18 E F0(editing)3.702 E -.2(bu)108 213.6 S -.25(ff).2 G +1.161(er for correction.).25 F(The)6.161 E F13.661 E F0 1.161 +(option to the)3.661 F F1(history)3.661 E F0 -.2(bu)3.661 G 1.16 +(iltin command may be used to see what a history).2 F -.15(ex)108 225.6 +S .055(pansion will do before using it.).15 F(The)5.055 E F12.555 +E F0 .055(option to the)2.555 F F1(history)2.556 E F0 -.2(bu)2.556 G +.056(iltin may be used to add commands to the).2 F +(end of the history list without actually e)108 237.6 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 2.2(The shell allo)108 254.4 R 2.2 +(ws control of the v)-.25 F 2.2(arious characters used by the history e) +-.25 F 2.2(xpansion mechanism \(see the)-.15 F 1.146(description of)108 +266.4 R F1(histchars)3.646 E F0(abo)3.646 E 1.446 -.15(ve u)-.15 H(nder) +.15 E F1 1.146(Shell V)3.646 F(ariables)-.92 E F0 3.646(\). The)B 1.147 (shell uses the history comment character to)3.646 F -(mark history timestamps when writing the history \214le.)108 96 Q F1 -(Ev)87 112.8 Q(ent Designators)-.1 E F0 .204(An e)108 124.8 R -.15(ve) +(mark history timestamps when writing the history \214le.)108 278.4 Q F1 +(Ev)87 295.2 Q(ent Designators)-.1 E F0 .205(An e)108 307.2 R -.15(ve) -.25 G .204(nt designator is a reference to a command line entry in the\ - history list.).15 F .205(Unless the reference is abso-)5.204 F(lute, e) -108 136.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 153.6 -Q F0 1.608(Start a history substitution, e)144 153.6 R 1.608 + history list.).15 F .204(Unless the reference is abso-)5.204 F(lute, e) +108 319.2 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 336 Q +F0 1.607(Start a history substitution, e)144 336 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.607(line, carriage return, = or \().25 F -(\(when the)144 165.6 Q F1(extglob)2.5 E F0 +(,n)C -.25(ew)-4.107 G 1.608(line, carriage return, = or \().25 F +(\(when the)144 348 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 177.6 Q/F2 10/Times-Italic@0 SF(n)A F0 -(Refer to command line)144 177.6 Q F2(n)2.5 E F0(.).24 E F1<21ad>108 -189.6 Q F2(n)A F0(Refer to the current command minus)144 189.6 Q F2(n) -2.5 E F0(.).24 E F1(!!)108 201.6 Q F0(Refer to the pre)144 201.6 Q -(vious command.)-.25 E(This is a synon)5 E(ym for `!\2551'.)-.15 E F1(!) -108 213.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 213.6 R -F2(string)144 225.6 Q F0(.).22 E F1(!?)108 237.6 Q F2(string)A F1([?])A -F0 1.503(Refer to the most recent command preceding the current positio\ -n in the history list containing)144 249.6 R F2(string)144 261.6 Q F0 5 -(.T).22 G(he trailing)-5 E F1(?)2.5 E F0(may be omitted if)2.5 E F2 -(string)2.84 E F0(is follo)2.72 E(wed immediately by a ne)-.25 E(wline.) --.25 E/F3 12/Times-Bold@0 SF(^)108 278.6 Q F2(string1)-5 I F3(^)5 I F2 -(string2)-5 I F3(^)5 I F0 .783(Quick substitution.)144 285.6 R .783 -(Repeat the pre)5.783 F .784(vious command, replacing)-.25 F F2(string1) -3.624 E F0(with)3.284 E F2(string2)3.284 E F0 5.784(.E).02 G(qui)-5.784 -E -.25(va)-.25 G .784(lent to).25 F -.74(``)144 297.6 S(!!:s/).74 E F2 -(string1)A F0(/)A F2(string2)A F0(/')A 2.5('\()-.74 G(see)-2.5 E F1 -(Modi\214ers)2.5 E F0(belo)2.5 E(w\).)-.25 E F1(!#)108 309.6 Q F0 -(The entire command line typed so f)144 309.6 Q(ar)-.1 E(.)-.55 E F1 --.75(Wo)87 326.4 S(rd Designators).75 E F0 -.8(Wo)108 338.4 S 1.314 +(iltin\).).2 E F1(!)108 360 Q/F2 10/Times-Italic@0 SF(n)A F0 +(Refer to command line)144 360 Q F2(n)2.5 E F0(.).24 E F1<21ad>108 372 Q +F2(n)A F0(Refer to the current command minus)144 372 Q F2(n)2.5 E F0(.) +.24 E F1(!!)108 384 Q F0(Refer to the pre)144 384 Q(vious command.)-.25 +E(This is a synon)5 E(ym for `!\2551'.)-.15 E F1(!)108 396 Q F2(string)A +F0 .865(Refer to the most recent command preceding the current position\ + in the history list starting with)144 396 R F2(string)144 408 Q F0(.) +.22 E F1(!?)108 420 Q F2(string)A F1([?])A F0 1.503(Refer to the most r\ +ecent command preceding the current position in the history list contai\ +ning)144 432 R F2(string)144 444 Q F0 5(.T).22 G(he trailing)-5 E F1(?) +2.5 E F0(may be omitted if)2.5 E F2(string)2.84 E F0(is follo)2.72 E +(wed immediately by a ne)-.25 E(wline.)-.25 E/F3 12/Times-Bold@0 SF(^) +108 461 Q F2(string1)-5 I F3(^)5 I F2(string2)-5 I F3(^)5 I F0 .784 +(Quick substitution.)144 468 R .784(Repeat the pre)5.784 F .784 +(vious command, replacing)-.25 F F2(string1)3.624 E F0(with)3.283 E F2 +(string2)3.283 E F0 5.783(.E).02 G(qui)-5.783 E -.25(va)-.25 G .783 +(lent to).25 F -.74(``)144 480 S(!!:s/).74 E F2(string1)A F0(/)A F2 +(string2)A F0(/')A 2.5('\()-.74 G(see)-2.5 E F1(Modi\214ers)2.5 E F0 +(belo)2.5 E(w\).)-.25 E F1(!#)108 492 Q F0 +(The entire command line typed so f)144 492 Q(ar)-.1 E(.)-.55 E F1 -.75 +(Wo)87 508.8 S(rd Designators).75 E F0 -.8(Wo)108 520.8 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.313 -(separates the e)3.813 F -.15(ve)-.25 G 1.313(nt speci\214cation).15 F -.529(from the w)108 350.4 R .529(ord designator)-.1 F 5.529(.I)-.55 G +-.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 532.8 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.53(.W)C(ords)-6.33 E 1.301 -(are numbered from the be)108 362.4 R 1.301 -(ginning of the line, with the \214rst w)-.15 F 1.3 -(ord being denoted by 0 \(zero\).)-.1 F -.8(Wo)6.3 G 1.3(rds are).8 F -(inserted into the current line separated by single spaces.)108 374.4 Q -F1 2.5(0\()108 391.2 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 403.2 Q +-3.029 E F1(%)3.029 E F0 5.529(.W)C(ords)-6.329 E 1.3 +(are numbered from the be)108 544.8 R 1.3 +(ginning of the line, with the \214rst w)-.15 F 1.301 +(ord being denoted by 0 \(zero\).)-.1 F -.8(Wo)6.301 G 1.301(rds are).8 +F(inserted into the current line separated by single spaces.)108 556.8 Q +F1 2.5(0\()108 573.6 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 585.6 Q 2.5(ord. F)-.1 F(or the shell, this is the command w)-.15 E(ord.)-.1 E -F2(n)108.36 415.2 Q F0(The)144 415.2 Q F2(n)2.5 E F0(th w)A(ord.)-.1 E -F1(^)108 427.2 Q F0(The \214rst ar)144 427.2 Q 2.5(gument. That)-.18 F -(is, w)2.5 E(ord 1.)-.1 E F1($)108 439.2 Q F0 .063(The last w)144 439.2 -R 2.563(ord. This)-.1 F .063(is usually the last ar)2.563 F .064 +F2(n)108.36 597.6 Q F0(The)144 597.6 Q F2(n)2.5 E F0(th w)A(ord.)-.1 E +F1(^)108 609.6 Q F0(The \214rst ar)144 609.6 Q 2.5(gument. That)-.18 F +(is, w)2.5 E(ord 1.)-.1 E F1($)108 621.6 Q F0 .064(The last w)144 621.6 +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 -.064(ord if there is only)-.1 F(one w)144 451.2 Q(ord in the line.)-.1 E -F1(%)108 463.2 Q F0(The w)144 463.2 Q(ord matched by the most recent `?) --.1 E F2(string)A F0(?' search.)A F2(x)108.77 475.2 Q F1A F2(y)A F0 -2.5(Ar)144 475.2 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 487.2 Q F0 -.316(All of the w)144 487.2 R .316(ords b)-.1 F .316(ut the zeroth.)-.2 +.063(ord if there is only)-.1 F(one w)144 633.6 Q(ord in the line.)-.1 E +F1(%)108 645.6 Q F0(The w)144 645.6 Q(ord matched by the most recent `?) +-.1 E F2(string)A F0(?' search.)A F2(x)108.77 657.6 Q F1A F2(y)A F0 +2.5(Ar)144 657.6 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 669.6 Q F0 +.315(All of the w)144 669.6 R .315(ords b)-.1 F .315(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 499.2 Q(ord in the e)-.1 E -.15(ve) +('. It)B .315(is not an error to use)2.815 F F1(*)2.816 E F0 .316 +(if there is)2.816 F(just one w)144 681.6 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 -511.2 Q F0(Abbre)144 511.2 Q(viates)-.25 E F2(x\255$)2.5 E F0(.)A F1 -<78ad>108 523.2 Q F0(Abbre)144 523.2 Q(viates)-.25 E F2(x\255$)2.5 E F0 +693.6 Q F0(Abbre)144 693.6 Q(viates)-.25 E F2(x\255$)2.5 E F0(.)A F1 +<78ad>108 705.6 Q F0(Abbre)144 705.6 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 -(ord.)-.1 E(If a w)108 540 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 556.8 Q F0 .183(After the optional w)108 568.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 580.8 Q F1(h)108 -597.6 Q F0(Remo)144 597.6 Q .3 -.15(ve a t)-.15 H -(railing \214lename component, lea).15 E(ving only the head.)-.2 E F1(t) -108 609.6 Q F0(Remo)144 609.6 Q .3 -.15(ve a)-.15 H -(ll leading \214lename components, lea).15 E(ving the tail.)-.2 E F1(r) -108 621.6 Q F0(Remo)144 621.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 633.6 Q F0(Remo)144 633.6 Q .3 -.15 -(ve a)-.15 H(ll b).15 E(ut the trailing suf)-.2 E(\214x.)-.25 E F1(p)108 -645.6 Q F0(Print the ne)144 645.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 657.6 Q F0 -(Quote the substituted w)144 657.6 Q -(ords, escaping further substitutions.)-.1 E F1(x)108 669.6 Q F0 -(Quote the substituted w)144 669.6 Q(ords as with)-.1 E F1(q)2.5 E F0 -2.5(,b)C(ut break into w)-2.7 E(ords at)-.1 E F1(blanks)2.5 E F0(and ne) -2.5 E(wlines.)-.25 E F1(s/)108 681.6 Q F2(old)A F1(/)A F2(ne)A(w)-.15 E -F1(/)A F0(Substitute)144 693.6 Q F2(ne)3.082 E(w)-.15 E F0 .221 -(for the \214rst occurrence of)3.032 F F2(old)2.951 E F0 .221(in the e) -3.491 F -.15(ve)-.25 G .221(nt line.).15 F(An)5.221 E 2.721(yd)-.15 G -.221(elimiter can be used in place)-2.721 F .616(of /.)144 705.6 R .617 -(The \214nal delimiter is optional if it is the last character of the e) -5.616 F -.15(ve)-.25 G .617(nt line.).15 F .617(The delimiter may)5.617 -F .666(be quoted in)144 717.6 R F2(old)3.396 E F0(and)3.936 E F2(ne) -3.526 E(w)-.15 E F0 .666(with a single backslash.)3.476 F .666 -(If & appears in)5.666 F F2(ne)3.166 E(w)-.15 E F0 3.166(,i).31 G 3.166 -(ti)-3.166 G 3.166(sr)-3.166 G .666(eplaced by)-3.166 F F2(old)3.166 E -F0 5.666(.A).77 G 1.594(single backslash will quote the &.)144 729.6 R -(If)6.594 E F2(old)4.324 E F0 1.595(is null, it is set to the last)4.864 -F F2(old)4.325 E F0 1.595(substituted, or)4.865 F 4.095(,i)-.4 G 4.095 -(fn)-4.095 G(o)-4.095 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E -(54)192.895 E 0 Cg EP +(ord.)-.1 E(If a w)108 722.4 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 +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(54)185.955 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(pre)144 84 Q -(vious history substitutions took place, the last)-.25 E/F1 10 -/Times-Italic@0 SF(string)2.84 E F0(in a)2.72 E/F2 10/Times-Bold@0 SF -(!?)2.5 E F1(string)A F2([?])A F0(search.)5 E F2(&)108 96 Q F0 -(Repeat the pre)144 96 Q(vious substitution.)-.25 E F2(g)108 108 Q F0 -.398(Cause changes to be applied o)144 108 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 F2(:s)A F0 2.897('\()C -(e.g.,)-2.897 E(`)144 120 Q F2(:gs/)A F1(old)A F2(/)A F1(ne)A(w)-.15 E -F2(/)A F0 1.218('\) or `)B F2(:&)A F0 3.718('. If)B 1.218(used with `) -3.718 F F2(:s)A F0 1.218(', an)B 3.718(yd)-.15 G 1.219 -(elimiter can be used in place of /, and the \214nal)-3.718 F .09 -(delimiter is optional if it is the last character of the e)144 132 R --.15(ve)-.25 G .089(nt line.).15 F(An)5.089 E F2(a)2.589 E F0 .089 -(may be used as a synon)2.589 F .089(ym for)-.15 F F2(g)144 144 Q F0(.)A -F2(G)108 156 Q F0(Apply the follo)144 156 Q(wing `)-.25 E F2(s)A 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 172.8 Q(UIL)-.11 E -(TIN COMMANDS)-1.007 E F0 .062(Unless otherwise noted, each b)108 184.8 +(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 .184(After the optional w)108 96 R .184 +(ord designator)-.1 F 2.684(,t)-.4 G .183 +(here may appear a sequence of one or more of the follo)-2.684 F .183 +(wing modi\214ers,)-.25 F(each preceded by a `:'.)108 108 Q 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 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 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 +(Quote the substituted w)144 196.8 Q(ords as with)-.1 E F1(q)2.5 E F0 +2.5(,b)C(ut break into w)-2.7 E(ords at)-.1 E F1(blanks)2.5 E F0(and ne) +2.5 E(wlines.)-.25 E F1(s/)108 208.8 Q F2(old)A F1(/)A F2(ne)A(w)-.15 E +F1(/)A F0(Substitute)144 220.8 Q F2(ne)3.081 E(w)-.15 E F0 .221 +(for the \214rst occurrence of)3.031 F F2(old)2.951 E F0 .221(in the e) +3.491 F -.15(ve)-.25 G .221(nt line.).15 F(An)5.221 E 2.721(yd)-.15 G +.221(elimiter can be used in place)-2.721 F .617(of /.)144 232.8 R .617 +(The \214nal delimiter is optional if it is the last character of the e) +5.617 F -.15(ve)-.25 G .617(nt line.).15 F .616(The delimiter may)5.616 +F .666(be quoted in)144 244.8 R F2(old)3.396 E F0(and)3.936 E F2(ne) +3.526 E(w)-.15 E F0 .666(with a single backslash.)3.476 F .666 +(If & appears in)5.666 F F2(ne)3.166 E(w)-.15 E F0 3.166(,i).31 G 3.166 +(ti)-3.166 G 3.166(sr)-3.166 G .666(eplaced by)-3.166 F F2(old)3.166 E +F0 5.666(.A).77 G .275(single backslash will quote the &.)144 256.8 R +(If)5.275 E F2(old)3.004 E F0 .274(is null, it is set to the last)3.544 +F F2(old)3.004 E F0 .274(substituted, or)3.544 F 2.774(,i)-.4 G 2.774 +(fn)-2.774 G 2.774(op)-2.774 G(re)-2.774 E(vi-)-.25 E +(ous history substitutions took place, the last)144 268.8 Q F2(string) +2.84 E F0(in a)2.72 E F1(!?)2.5 E F2(string)A F1([?])A F0(search.)5 E F1 +(&)108 280.8 Q F0(Repeat the pre)144 280.8 Q(vious substitution.)-.25 E +F1(g)108 292.8 Q F0 .397(Cause changes to be applied o)144 292.8 R -.15 +(ve)-.15 G 2.897(rt).15 G .398(he entire e)-2.897 F -.15(ve)-.25 G .398 +(nt line.).15 F .398(This is used in conjunction with `)5.398 F F1(:s)A +F0 2.898('\()C(e.g.,)-2.898 E(`)144 304.8 Q F1(:gs/)A F2(old)A F1(/)A F2 +(ne)A(w)-.15 E F1(/)A F0 1.219('\) or `)B F1(:&)A F0 3.719('. If)B 1.219 +(used with `)3.719 F F1(:s)A F0 1.218(', an)B 3.718(yd)-.15 G 1.218 +(elimiter can be used in place of /, and the \214nal)-3.718 F .089 +(delimiter is optional if it is the last character of the e)144 316.8 R +-.15(ve)-.25 G .09(nt line.).15 F(An)5.09 E F1(a)2.59 E F0 .09 +(may be used as a synon)2.59 F .09(ym for)-.15 F F1(g)144 328.8 Q F0(.)A +F1(G)108 340.8 Q F0(Apply the follo)144 340.8 Q(wing `)-.25 E F1(s)A 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 357.6 Q(UIL)-.11 E +(TIN COMMANDS)-1.007 E F0 .063(Unless otherwise noted, each b)108 369.6 R .062(uiltin command documented in this section as accepting options p\ -receded by)-.2 F F2108 196.8 Q F0(accepts)3.077 E F23.077 E F0 -.577(to signify the end of the options.)3.077 F(The)5.577 E F2(:)3.077 E -F0(,)A F2(true)3.077 E F0(,)A F2(false)3.077 E F0 3.077(,a)C(nd)-3.077 E -F2(test)3.077 E F0(/)A F2([)A F0 -.2(bu)3.077 G .577 -(iltins do not accept options).2 F .461(and do not treat)108 208.8 R F2 -2.961 E F0(specially)2.961 E 5.461(.T)-.65 G(he)-5.461 E F2(exit) -2.961 E F0(,)A F2(logout)2.961 E F0(,)A F2 -.18(re)2.961 G(tur).18 E(n) --.15 E F0(,)A F2(br)2.961 E(eak)-.18 E F0(,)A F2(continue)2.961 E F0(,)A -F2(let)2.961 E F0 2.961(,a)C(nd)-2.961 E F2(shift)2.961 E F0 -.2(bu) -2.962 G .462(iltins accept and).2 F .261(process ar)108 220.8 R .261 -(guments be)-.18 F .261(ginning with)-.15 F F22.761 E F0 .261 -(without requiring)2.761 F F22.761 E F0 5.261(.O)C .261(ther b) --5.261 F .26(uiltins that accept ar)-.2 F .26(guments b)-.18 F .26 +receded by)-.2 F F1108 381.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 393.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 405.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 232.8 R 1.154(guments be)-.18 F 1.154(ginning with)-.15 F F2 +108 417.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 F23.654 E F0(to)3.654 E(pre)108 -244.8 Q -.15(ve)-.25 G(nt this interpretation.).15 E F2(:)108 262.8 Q F0 -([)2.5 E F1(ar)A(guments)-.37 E F0(])A .452(No ef)144 274.8 R .452 +(lid options and require).25 F F13.654 E F0(to)3.654 E(pre)108 +429.6 Q -.15(ve)-.25 G(nt this interpretation.).15 E F1(:)108 447.6 Q F0 +([)2.5 E F2(ar)A(guments)-.37 E F0(])A .451(No ef)144 459.6 R .451 (fect; the command does nothing be)-.25 F .452(yond e)-.15 F(xpanding) --.15 E F1(ar)3.282 E(guments)-.37 E F0 .451(and performing an)3.221 F -2.951(ys)-.15 G(peci\214ed)-2.951 E 2.5(redirections. The)144 286.8 R -(return status is zero.)2.5 E F2(.)110.5 303.6 Q F1(\214lename)6.666 E -F0([)2.5 E F1(ar)A(guments)-.37 E F0(])A F2(sour)108 315.6 Q(ce)-.18 E -F1(\214lename)2.5 E F0([)2.5 E F1(ar)A(guments)-.37 E F0(])A 1.02 -(Read and e)144 327.6 R -.15(xe)-.15 G 1.02(cute commands from).15 F F1 +-.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 471.6 R +(return status is zero.)2.5 E F1(.)110.5 488.4 Q F2(\214lename)6.666 E +F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A F1(sour)108 500.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 512.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.458 -(status of the last command e)144 339.6 R -.15(xe)-.15 G 1.458 -(cuted from).15 F F1(\214lename)3.958 E F0 6.458(.I).18 G(f)-6.458 E F1 +(status of the last command e)144 524.4 R -.15(xe)-.15 G 1.458 +(cuted from).15 F F2(\214lename)3.958 E F0 6.458(.I).18 G(f)-6.458 E F2 (\214lename)5.868 E F0 1.458(does not contain a slash, \214le-)4.138 F -.608(names in)144 351.6 R/F4 9/Times-Bold@0 SF -.666(PA)3.108 G(TH)-.189 -E F0 .608(are used to \214nd the directory containing)2.858 F F1 +.608(names in)144 536.4 R/F4 9/Times-Bold@0 SF -.666(PA)3.108 G(TH)-.189 +E F0 .608(are used to \214nd the directory containing)2.858 F F2 (\214lename)3.108 E F0 5.608(.T).18 G .608(he \214le searched for in) --5.608 F F4 -.666(PA)3.108 G(TH)-.189 E F0 .833(need not be e)144 363.6 -R -.15(xe)-.15 G 3.333(cutable. When).15 F F2(bash)3.333 E F0 .832 -(is not in)3.333 F F1 .832(posix mode)3.332 F F0 3.332(,t)C .832 -(he current directory is searched if no)-3.332 F .981 -(\214le is found in)144 375.6 R F4 -.666(PA)3.481 G(TH)-.189 E/F5 9 -/Times-Roman@0 SF(.)A F0 .981(If the)5.481 F F2(sour)3.481 E(cepath)-.18 -E F0 .981(option to the)3.481 F F2(shopt)3.481 E F0 -.2(bu)3.481 G .981 -(iltin command is turned of).2 F .982(f, the)-.25 F F4 -.666(PA)144 -387.6 S(TH)-.189 E F0 .112(is not searched.)2.363 F .112(If an)5.112 F -(y)-.15 E F1(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 F1 -(\214lename)144 399.6 Q F0 1.697(is e)4.196 F -.15(xe)-.15 G 4.197 +-5.608 F F4 -.666(PA)3.108 G(TH)-.189 E F0 .832(need not be e)144 548.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 560.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 +572.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 584.4 Q F0 1.697(is e)4.197 F -.15(xe)-.15 G 4.197 (cuted. Otherwise).15 F 1.697(the positional parameters are unchanged.) -4.197 F 1.697(If the)6.697 F F24.197 E F0 1.697(option is)4.197 F -(enabled,)144 411.6 Q F2(sour)3.618 E(ce)-.18 E F0 1.118(inherits an) -3.618 F 3.618(yt)-.15 G 1.118(rap on)-3.618 F F2(DEB)3.618 E(UG)-.1 E F0 +4.197 F 1.697(If the)6.697 F F14.197 E F0 1.696(option is)4.197 F +(enabled,)144 596.4 Q F1(sour)3.617 E(ce)-.18 E F0 1.117(inherits an) +3.617 F 3.617(yt)-.15 G 1.117(rap on)-3.617 F F1(DEB)3.617 E(UG)-.1 E F0 3.618(;i)C 3.618(fi)-3.618 G 3.618(ti)-3.618 G 3.618(sn)-3.618 G 1.118 -(ot, an)-3.618 F(y)-.15 E F2(DEB)3.617 E(UG)-.1 E F0 1.117 -(trap string is sa)3.617 F -.15(ve)-.2 G 3.617(da).15 G(nd)-3.617 E .36 -(restored around the call to)144 423.6 R F2(sour)2.86 E(ce)-.18 E F0 -2.86(,a)C(nd)-2.86 E F2(sour)2.86 E(ce)-.18 E F0 .36(unsets the)2.86 F -F2(DEB)2.86 E(UG)-.1 E F0 .36(trap while it e)2.86 F -.15(xe)-.15 G 2.86 -(cutes. If).15 F F22.86 E F0(is)2.86 E 1.435 -(not set, and the sourced \214le changes the)144 435.6 R F2(DEB)3.935 E +(ot, an)-3.618 F(y)-.15 E F1(DEB)3.618 E(UG)-.1 E F0 1.118 +(trap string is sa)3.618 F -.15(ve)-.2 G 3.618(da).15 G(nd)-3.618 E .36 +(restored around the call to)144 608.4 R F1(sour)2.86 E(ce)-.18 E F0 +2.86(,a)C(nd)-2.86 E F1(sour)2.86 E(ce)-.18 E F0 .36(unsets the)2.86 F +F1(DEB)2.86 E(UG)-.1 E F0 .36(trap while it e)2.86 F -.15(xe)-.15 G 2.86 +(cutes. If).15 F F12.86 E F0(is)2.86 E 1.435 +(not set, and the sourced \214le changes the)144 620.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 F2(sour)3.935 E(ce)-.18 E F0 3.762 -(completes. The)144 447.6 R 1.262 -(return status is the status of the last command e)3.762 F 1.263 -(xited within the script \(0 if no)-.15 F(commands are e)144 459.6 Q --.15(xe)-.15 G(cuted\), and f).15 E(alse if)-.1 E F1(\214lename)4.41 E -F0(is not found or cannot be read.)2.68 E F2(alias)108 476.4 Q F0([)2.5 -E F2A F0 2.5(][)C F1(name)-2.5 E F0([=)A F1(value)A F0 2.5(].)C -(..])-2.5 E F2(Alias)144 488.4 Q F0 2.725(with no ar)5.225 F 2.724 -(guments or with the)-.18 F F25.224 E F0 2.724 -(option prints the list of aliases in the form)5.224 F F2(alias)5.224 E -F1(name)144 500.4 Q F0(=)A F1(value)A F0 .58(on standard output.)3.08 F +(alue is retained when)-4.185 F F1(sour)3.935 E(ce)-.18 E F0 3.763 +(completes. The)144 632.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 644.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 661.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 673.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 685.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 F1(name) -3.08 E F0(whose)144 512.4 Q F1(value)2.509 E F0 .009(is gi)2.509 F -.15 -(ve)-.25 G 2.509(n. A).15 F .009(trailing space in)2.509 F F1(value) +(guments are supplied, an alias is de\214ned for each)-.18 F F2(name) +3.08 E F0(whose)144 697.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 .008(ed for alias substi-)-.1 F .579 -(tution when the alias is e)144 524.4 R 3.079(xpanded. F)-.15 F .579 -(or each)-.15 F F1(name)3.079 E F0 .579(in the ar)3.079 F .579 -(gument list for which no)-.18 F F1(value)3.079 E F0 .579(is sup-)3.079 -F 1.314(plied, the name and v)144 536.4 R 1.314 -(alue of the alias is printed.)-.25 F F2(Alias)6.314 E F0 1.314 -(returns true unless a)3.814 F F1(name)3.814 E F0 1.313(is gi)3.814 F --.15(ve)-.25 G 3.813(nf).15 G(or)-3.813 E -(which no alias has been de\214ned.)144 548.4 Q F2(bg)108 565.2 Q F0([) -2.5 E F1(jobspec)A F0(...])2.5 E .744(Resume each suspended job)144 -577.2 R F1(jobspec)3.244 E F0 .745 -(in the background, as if it had been started with)3.244 F F2(&)3.245 E -F0 5.745(.I)C(f)-5.745 E F1(job-)4.985 E(spec)144 589.2 Q F0 .672 -(is not present, the shell')3.482 F 3.172(sn)-.55 G .672(otion of the) --3.172 F F1(curr)3.172 E .672(ent job)-.37 F F0 .672(is used.)3.172 F F2 -(bg)5.671 E F1(jobspec)4.911 E F0 .671(returns 0 unless run)3.481 F .418 -(when job control is disabled or)144 601.2 R 2.919(,w)-.4 G .419 -(hen run with job control enabled, an)-2.919 F 2.919(ys)-.15 G -(peci\214ed)-2.919 E F1(jobspec)2.919 E F0 -.1(wa)2.919 G 2.919(sn).1 G -(ot)-2.919 E(found or w)144 613.2 Q(as started without job control.)-.1 -E F2(bind)108 630 Q F0([)2.5 E F2A F1 -.1(ke)2.5 G(ymap)-.2 E F0 -2.5(][)C F2(\255lpsvPSVX)-2.5 E F0(])A F2(bind)108 642 Q F0([)2.5 E F2 -A F1 -.1(ke)2.5 G(ymap)-.2 E F0 2.5(][)C F2-2.5 E F1 -(function)2.5 E F0 2.5(][)C F2-2.5 E F1(function)2.5 E F0 2.5(][)C -F2-2.5 E F1 -.1(ke)2.5 G(yseq)-.2 E F0(])A F2(bind)108 654 Q F0([) -2.5 E F2A F1 -.1(ke)2.5 G(ymap)-.2 E F0(])A F22.5 E F1 -(\214lename)2.5 E F2(bind)108 666 Q F0([)2.5 E F2A F1 -.1(ke)2.5 G -(ymap)-.2 E F0(])A F22.5 E F1 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F1 -(shell\255command)A F2(bind)108 678 Q F0([)2.5 E F2A F1 -.1(ke)2.5 -G(ymap)-.2 E F0(])A F1 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F1 -(function\255name)A F2(bind)108 690 Q F0([)2.5 E F2A F1 -.1(ke)2.5 -G(ymap)-.2 E F0(])A F1 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F1 -.37(re)C -(adline\255command).37 E F0 .239(Display current)144 702 R F2 -.18(re) -2.739 G(adline).18 E F0 -.1(ke)2.739 G 2.739(ya)-.05 G .239 -(nd function bindings, bind a k)-2.739 F .539 -.15(ey s)-.1 H .238 -(equence to a).15 F F2 -.18(re)2.738 G(adline).18 E F0 .238(function or) -2.738 F .475(macro, or set a)144 714 R F2 -.18(re)2.975 G(adline).18 E -F0 -.25(va)2.975 G 2.975(riable. Each).25 F .476(non-option ar)2.976 F -.476(gument is a command as it w)-.18 F .476(ould appear in)-.1 F F1 -(.inputr)144 726 Q(c)-.37 E F0 2.984(,b).31 G .484 -(ut each binding or command must be passed as a separate ar)-3.184 F -.483(gument; e.g., '"\\C\255x\\C\255r":)-.18 F(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(55)192.895 E 0 Cg EP +(ord to be check)-.1 F .009(ed for alias substi-)-.1 F .579 +(tution when the alias is e)144 709.2 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 721.2 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(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(55)185.955 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 2.5 -(re\255read\255init\255\214le'. Options,)144 84 R(if supplied, ha)2.5 E -.3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E/F1 10 -/Times-Bold@0 SF144 96 Q/F2 10/Times-Italic@0 SF -.1(ke)2.5 G -(ymap)-.2 E F0(Use)180 108 Q F2 -.1(ke)5.158 G(ymap)-.2 E F0 2.658 -(as the k)5.348 F -.15(ey)-.1 G 2.658(map to be af).15 F 2.659 -(fected by the subsequent bindings.)-.25 F(Acceptable)7.659 E F2 -.1(ke) -180 120 S(ymap)-.2 E F0 3.193(names are)5.883 F F2 3.193 -(emacs, emacs\255standar)5.693 F 3.192 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E +(which no alias has been de\214ned.)144 84 Q/F1 10/Times-Bold@0 SF(bg) +108 100.8 Q F0([)2.5 E/F2 10/Times-Italic@0 SF(jobspec)A F0(...])2.5 E +.745(Resume each suspended job)144 112.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 124.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 136.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 148.8 Q(as started without job control.)-.1 +E F1(bind)108 165.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 177.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 F1(bind)108 189.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 201.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 213.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 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 -.37(re)C +(adline\255command).37 E F0 .238(Display current)144 237.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 249.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 261.6 Q(c)-.37 E F0 2.983(,b).31 G .484 +(ut each binding or command must be passed as a separate ar)-3.183 F +.484(gument; e.g., '"\\C\255x\\C\255r":)-.18 F 2.5 +(re\255read\255init\255\214le'. Options,)144 273.6 R(if supplied, ha)2.5 +E .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 +285.6 Q F2 -.1(ke)2.5 G(ymap)-.2 E F0(Use)180 297.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 309.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 132 Q F0 4.113(,a)C(nd)-4.113 E F2(vi\255insert)4.113 -E F0(.).68 E F2(vi)6.613 E F0 1.613(is equi)4.113 F -.25(va)-.25 G 1.613 -(lent to).25 F F2(vi\255command)4.113 E F0(\()4.113 E F2(vi\255mo)A(ve) --.1 E F0 1.614(is also a syn-)4.114 F(on)180 144 Q(ym\);)-.15 E F2 +(vi\255command)180 321.6 Q F0 4.114(,a)C(nd)-4.114 E F2(vi\255insert) +4.114 E F0(.).68 E F2(vi)6.614 E F0 1.613(is equi)4.114 F -.25(va)-.25 G +1.613(lent to).25 F F2(vi\255command)4.113 E F0(\()4.113 E F2(vi\255mo)A +(ve)-.1 E F0 1.613(is also a syn-)4.113 F(on)180 333.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 156 Q F0 -(List the names of all)180 156 Q F1 -.18(re)2.5 G(adline).18 E F0 -(functions.)2.5 E F1144 168 Q F0(Display)180 168 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 180 Q -F0(List current)180 180 Q F1 -.18(re)2.5 G(adline).18 E F0 -(function names and bindings.)2.5 E F1144 192 Q F0(Display)180 192 -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 204 S 2.5(yt).1 G -(hat the)-2.5 E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1144 216 Q F0 -(Display)180 216 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 228 Q F0(Display)180 228 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 345.6 Q F0 +(List the names of all)180 345.6 Q F1 -.18(re)2.5 G(adline).18 E F0 +(functions.)2.5 E F1144 357.6 Q F0(Display)180 357.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 369.6 +Q F0(List current)180 369.6 Q F1 -.18(re)2.5 G(adline).18 E F0 +(function names and bindings.)2.5 E F1144 381.6 Q F0(Display)180 +381.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 393.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 405.6 Q +F0(Display)180 405.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 417.6 Q F0(Display)180 417.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 240 Q F0(List current)180 240 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 252 Q F2(\214lename)2.5 E F0(Read k)180 264 Q -.3 -.15(ey b)-.1 H(indings from).15 E F2(\214lename)2.5 E F0(.)A F1 -144 276 Q F2(function)2.5 E F0(Query about which k)180 288 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 300 Q F2(function)2.5 E F0 -(Unbind all k)180 312 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 324 Q F2 -.1(ke)2.5 G(yseq) --.2 E F0(Remo)180 336 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 -348 Q F2 -.1(ke)2.5 G(yseq)-.2 E F1(:)A F2(shell\255command)A F0(Cause) -180 360 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 372 Q F0 1.765(is e)4.265 F -.15(xe)-.15 G 1.765 -(cuted, the shell sets the).15 F/F3 9/Times-Bold@0 SF(READLINE_LINE) -4.265 E F0 -.25(va)4.015 G 1.765(riable to the contents of the).25 F F1 --.18(re)180 384 S(adline).18 E F0 1.353(line b)3.852 F(uf)-.2 E 1.353 -(fer and the)-.25 F F3(READLINE_POINT)3.853 E F0 -.25(va)3.603 G 1.353 -(riable to the current location of the).25 F 2.012(insertion point.)180 -396 R 2.011(If the e)7.012 F -.15(xe)-.15 G 2.011 +(an be re-read.)-2.5 E F1144 429.6 Q F0(List current)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.)-.25 E F1144 441.6 Q F2(\214lename)2.5 E F0(Read k)180 +453.6 Q .3 -.15(ey b)-.1 H(indings from).15 E F2(\214lename)2.5 E F0(.)A +F1144 465.6 Q F2(function)2.5 E F0(Query about which k)180 477.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 489.6 Q F2(function) +2.5 E F0(Unbind all k)180 501.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 513.6 Q +F2 -.1(ke)2.5 G(yseq)-.2 E F0(Remo)180 525.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 537.6 Q F2 -.1(ke)2.5 G(yseq)-.2 E F1(:)A F2 +(shell\255command)A F0(Cause)180 549.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 561.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 573.6 S(adline).18 E +F0 1.353(line b)3.853 F(uf)-.2 E 1.353(fer and the)-.25 F F3 +(READLINE_POINT)3.853 E F0 -.25(va)3.603 G 1.353 +(riable to the current location of the).25 F 2.011(insertion point.)180 +585.6 R 2.011(If the e)7.011 F -.15(xe)-.15 G 2.011 (cuted command changes the v).15 F 2.011(alue of)-.25 F F3 -(READLINE_LINE)4.511 E F0(or)4.261 E F3(READLINE_POINT)180 408 Q/F4 9 +(READLINE_LINE)4.512 E F0(or)4.262 E F3(READLINE_POINT)180 597.6 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 420 -Q F0 .829(List all k)180 420 R 1.129 -.15(ey s)-.1 H .829 +(alues will be re\215ected in the editing state.)-2.75 E F1144 +609.6 Q F0 .83(List all k)180 609.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 432 Q(The return v) -144 448.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 621.6 Q(The return v) +144 638.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 465.6 Q(eak)-.18 E F0([)2.5 E F2(n)A F0(])A .055 -(Exit from within a)144 477.6 R F1 -.25(fo)2.555 G(r).25 E F0(,)A F1 -(while)2.555 E F0(,)A F1(until)2.555 E F0 2.555(,o)C(r)-2.555 E F1 +E F1(br)108 655.2 Q(eak)-.18 E F0([)2.5 E F2(n)A F0(])A .054 +(Exit from within a)144 667.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.414 E F0 .054(must be)2.794 F/F5 10/Symbol SF2.554 -E F0(1.)2.554 E(If)144 489.6 Q F2(n)3.074 E F0 .215(is greater than the\ - number of enclosing loops, all enclosing loops are e)2.954 F 2.715 -(xited. The)-.15 F .215(return v)2.715 F(alue)-.25 E(is 0 unless)144 -501.6 Q F2(n)2.5 E F0(is not greater than or equal to 1.)2.5 E F1 -.2 -(bu)108 518.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 530.4 Q .793 -(ecute the speci\214ed shell b)-.15 F .793(uiltin, passing it)-.2 F F2 -(ar)3.293 E(guments)-.37 E F0 3.293(,a).27 G .793(nd return its e)-3.293 -F .792(xit status.)-.15 F .792(This is useful)5.792 F .615 -(when de\214ning a function whose name is the same as a shell b)144 -542.4 R .616(uiltin, retaining the functionality of)-.2 F .57(the b)144 -554.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 566.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 583.2 Q F0([)2.5 E F2 -.2(ex)C(pr) -.2 E F0(])A .253(Returns the conte)144 595.2 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.754 E F0(or)2.754 E F1(sour)144 607.2 Q -(ce)-.18 E F0 -.2(bu)2.825 G 2.825(iltins\). W).2 F(ithout)-.4 E F2 -.2 -(ex)2.825 G(pr).2 E F0(,)A F1(caller)2.825 E F0 .324 -(displays the line number and source \214lename of the current)2.824 F -.253(subroutine call.)144 619.2 R .253(If a non-ne)5.253 F -.05(ga)-.15 -G(ti).05 E .553 -.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 .254 -(displays the line number)2.754 F 2.754(,s)-.4 G(ub-)-2.754 E 1.327(rou\ -tine name, and source \214le corresponding to that position in the curr\ -ent e)144 631.2 R -.15(xe)-.15 G 1.327(cution call stack.).15 F(This e) -144 643.2 Q(xtra information may be used, for e)-.15 E .001 -(xample, to print a stack trace.)-.15 F .001(The current frame is frame) -5.001 F 3.02(0. The)144 655.2 R .52(return v)3.02 F .52 -(alue is 0 unless the shell is not e)-.25 F -.15(xe)-.15 G .519 -(cuting a subroutine call or).15 F F2 -.2(ex)3.019 G(pr).2 E F0 .519 -(does not corre-)3.019 F(spond to a v)144 667.2 Q -(alid position in the call stack.)-.25 E F1(cd)108 684 Q F0([)2.5 E F1 -A F0(|[)A F1A F0([)2.5 E F1A F0(]] [\255@]] [)A F2 -(dir)A F0(])A .321(Change the current directory to)144 696 R F2(dir) -2.821 E F0 5.321(.i)C(f)-5.321 E F2(dir)2.821 E F0 .322 -(is not supplied, the v)2.821 F .322(alue of the)-.25 F F3(HOME)2.822 E -F0 .322(shell v)2.572 F .322(ariable is)-.25 F 1.036(the def)144 708 R -3.536(ault. An)-.1 F 3.536(ya)-.15 G 1.035(dditional ar)-3.536 F 1.035 -(guments follo)-.18 F(wing)-.25 E F2(dir)3.535 E F0 1.035(are ignored.) -3.535 F 1.035(The v)6.035 F(ariable)-.25 E F3(CDP)3.535 E -.855(AT)-.666 -G(H).855 E F0(de\214nes)3.285 E .849 -(the search path for the directory containing)144 720 R F2(dir)3.349 E -F0 3.35(:e).73 G .85(ach directory name in)-3.35 F F3(CDP)3.35 E -.855 -(AT)-.666 G(H).855 E F0 .85(is searched for)3.1 F(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(56)192.895 E 0 Cg EP +(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 679.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 +691.2 Q F2(n)2.5 E F0(is not greater than or equal to 1.)2.5 E +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(56)185.955 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-Italic@0 SF(dir)144 84 Q F0 5.665(.A)C(lternati)-5.665 E .965 --.15(ve d)-.25 H .665(irectory names in).15 F/F2 9/Times-Bold@0 SF(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 .664 -(ull directory name)-3.165 F(in)144 96 Q F2(CDP)4.162 E -.855(AT)-.666 G -(H).855 E F0 1.662(is the same as the current directory)3.912 F 4.162 -(,i)-.65 G 1.662(.e., `)-4.162 F(`)-.74 E/F3 10/Times-Bold@0 SF(.)A F0 --.74('')C 6.662(.I).74 G(f)-6.662 E F1(dir)4.513 E F0(be)4.893 E 1.663 -(gins with a slash \(/\), then)-.15 F F2(CDP)144 108 Q -.855(AT)-.666 G -(H).855 E F0 .191(is not used.)2.441 F(The)5.191 E F32.691 E F0 -.191(option causes)2.691 F F3(cd)2.691 E F0 .191(to use the ph)2.691 F -.19(ysical directory structure by resolving)-.05 F 1.12 -(symbolic links while tra)144 120 R -.15(ve)-.2 G(rsing).15 E F1(dir) -3.62 E F0 1.12(and before processing instances of)3.62 F F1(..)3.62 E F0 -(in)3.62 E F1(dir)3.62 E F0 1.12(\(see also the)3.62 F F33.62 E F0 -.395(option to the)144 132 R F3(set)2.895 E F0 -.2(bu)2.895 G .395 -(iltin command\); the).2 F F32.895 E F0 .395 +(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 .792 +(ecute the speci\214ed shell b)-.15 F .792(uiltin, passing it)-.2 F F2 +(ar)3.293 E(guments)-.37 E F0 3.293(,a).27 G .793(nd return its e)-3.293 +F .793(xit status.)-.15 F .793(This is useful)5.793 F .616 +(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 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 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 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 +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 .85 +(the search path for the directory containing)144 285.6 R F2(dir)3.35 E +F0 3.35(:e).73 G .849(ach directory name in)-3.35 F F3(CDP)3.349 E -.855 +(AT)-.666 G(H).855 E F0 .849(is searched for)3.099 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)4.163 E -.855(AT) +-.666 G(H).855 E F0 1.663(is the same as the current directory)3.913 F +4.162(,i)-.65 G 1.662(.e., `)-4.162 F(`)-.74 E F1(.)A F0 -.74('')C 6.662 +(.I).74 G(f)-6.662 E F2(dir)4.512 E F0(be)4.892 E 1.662 +(gins with a slash \(/\), then)-.15 F F3(CDP)144 321.6 Q -.855(AT)-.666 +G(H).855 E F0 .19(is not used.)2.44 F(The)5.191 E F12.691 E F0 +.191(option causes)2.691 F F1(cd)2.691 E F0 .191(to use the ph)2.691 F +.191(ysical directory structure by resolving)-.05 F 1.12 +(symbolic links while tra)144 333.6 R -.15(ve)-.2 G(rsing).15 E F2(dir) +3.62 E F0 1.12(and before processing instances of)3.62 F F2(..)3.62 E F0 +(in)3.62 E F2(dir)3.62 E F0 1.12(\(see also the)3.62 F F13.62 E F0 +.395(option to the)144 345.6 R F1(set)2.895 E F0 -.2(bu)2.895 G .395 +(iltin command\); the).2 F F12.895 E F0 .395 (option forces symbolic links to be follo)2.895 F .395(wed by resolv-) --.25 F .443(ing the link after processing instances of)144 144 R F1(..) -2.943 E F0(in)2.943 E F1(dir)2.943 E F0 5.443(.I)C(f)-5.443 E F1(..) -2.943 E F0 .443(appears in)2.943 F F1(dir)2.943 E F0 2.943(,i)C 2.943 -(ti)-2.943 G 2.944(sp)-2.943 G .444(rocessed by remo)-2.944 F(ving)-.15 -E .744(the immediately pre)144 156 R .744(vious pathname component from) --.25 F F1(dir)3.244 E F0 3.244(,b)C .744(ack to a slash or the be)-3.244 -F .744(ginning of)-.15 F F1(dir)3.244 E F0(.)A 1.465(If the)144 168 R F3 -3.965 E F0 1.465(option is supplied with)3.965 F F33.965 E -F0 3.965(,a)C 1.465(nd the current w)-3.965 F 1.466 -(orking directory cannot be successfully)-.1 F .468 -(determined after a successful directory change,)144 180 R F3(cd)2.968 E -F0 .468(will return an unsuccessful status.)2.968 F .467(On systems) -5.467 F .336(that support it, the)144 192 R F32.836 E F0 .336 -(option presents the e)2.836 F .336(xtended attrib)-.15 F .337 +-.25 F .444(ing the link after processing instances of)144 357.6 R F2 +(..)2.943 E F0(in)2.943 E F2(dir)2.943 E F0 5.443(.I)C(f)-5.443 E F2(..) +2.943 E F0 .443(appears in)2.943 F F2(dir)2.943 E F0 2.943(,i)C 2.943 +(ti)-2.943 G 2.943(sp)-2.943 G .443(rocessed by remo)-2.943 F(ving)-.15 +E .744(the immediately pre)144 369.6 R .744 +(vious pathname component from)-.25 F F2(dir)3.244 E F0 3.244(,b)C .744 +(ack to a slash or the be)-3.244 F .744(ginning of)-.15 F F2(dir)3.244 E +F0(.)A 1.466(If the)144 381.6 R F13.966 E F0 1.466 +(option is supplied with)3.966 F F13.965 E F0 3.965(,a)C 1.465 +(nd the current w)-3.965 F 1.465 +(orking directory cannot be successfully)-.1 F .467 +(determined after a successful directory change,)144 393.6 R F1(cd)2.968 +E F0 .468(will return an unsuccessful status.)2.968 F .468(On systems) +5.468 F .337(that support it, the)144 405.6 R F12.837 E F0 .336 +(option presents the e)2.836 F .336(xtended attrib)-.15 F .336 (utes associated with a \214le as a directory)-.2 F(.)-.65 E .71(An ar) -144 204 R .71(gument of)-.18 F F33.21 E F0 .71(is con)3.21 F -.15 -(ve)-.4 G .71(rted to).15 F F2($OLDPWD)3.21 E F0 .71 +144 417.6 R .71(gument of)-.18 F F13.21 E F0 .71(is con)3.21 F -.15 +(ve)-.4 G .71(rted to).15 F F3($OLDPWD)3.21 E F0 .71 (before the directory change is attempted.)2.96 F .71(If a non-)5.71 F -.106(empty directory name from)144 216 R F2(CDP)2.606 E -.855(AT)-.666 G -(H).855 E F0 .107(is used, or if)2.356 F F32.607 E F0 .107 -(is the \214rst ar)2.607 F .107(gument, and the directory change)-.18 F -.038(is successful, the absolute pathname of the ne)144 228 R 2.538(ww) --.25 G .038(orking directory is written to the standard output.)-2.638 F -(The return v)144 240 Q(alue is true if the directory w)-.25 E -(as successfully changed; f)-.1 E(alse otherwise.)-.1 E F3(command)108 -256.8 Q F0([)2.5 E F3(\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 268.8 Q F1(command)2.764 E F0(with) -3.334 E F1(ar)2.894 E(gs)-.37 E F0 .065 -(suppressing the normal shell function lookup.)2.834 F .065(Only b)5.065 -F .065(uiltin commands or)-.2 F .502(commands found in the)144 280.8 R -F2 -.666(PA)3.002 G(TH)-.189 E F0 .502(are e)2.752 F -.15(xe)-.15 G -3.002(cuted. If).15 F(the)3.002 E F33.002 E F0 .502(option is gi) -3.002 F -.15(ve)-.25 G .501(n, the search for).15 F F1(command)3.201 E -F0(is)3.771 E .399(performed using a def)144 292.8 R .399(ault v)-.1 F -.399(alue for)-.25 F F2 -.666(PA)2.899 G(TH)-.189 E F0 .4 +.107(empty directory name from)144 429.6 R F3(CDP)2.607 E -.855(AT)-.666 +G(H).855 E F0 .107(is used, or if)2.357 F F12.607 E F0 .106 +(is the \214rst ar)2.607 F .106(gument, and the directory change)-.18 F +.038(is successful, the absolute pathname of the ne)144 441.6 R 2.538 +(ww)-.25 G .038(orking directory is written to the standard output.) +-2.638 F(The 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 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 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.4 E .175(either the)144 304.8 R F32.675 E F0(or)2.675 E F3 -2.675 E F0 .175(option is supplied, a description of)2.675 F F1(command) -2.875 E F0 .174(is printed.)3.445 F(The)5.174 E F32.674 E F0 .174 -(option causes)2.674 F 3.317(as)144 316.8 S .817(ingle w)-3.317 F .817 -(ord indicating the command or \214lename used to in)-.1 F -.2(vo)-.4 G --.1(ke).2 G F1(command)3.618 E F0 .818(to be displayed; the)4.088 F F3 -144 328.8 Q F0 .25(option produces a more v)2.75 F .25 -(erbose description.)-.15 F .249(If the)5.25 F F32.749 E F0(or) -2.749 E F32.749 E F0 .249(option is supplied, the e)2.749 F .249 -(xit status)-.15 F 1.004(is 0 if)144 340.8 R F1(command)3.704 E F0 -.1 -(wa)4.274 G 3.504(sf).1 G 1.005(ound, and 1 if not.)-3.504 F 1.005 -(If neither option is supplied and an error occurred or)6.005 F F1 -(command)144.2 352.8 Q F0 1.599(cannot be found, the e)4.869 F 1.599 -(xit status is 127.)-.15 F 1.599(Otherwise, the e)6.599 F 1.598 -(xit status of the)-.15 F F3(command)4.098 E F0 -.2(bu)144 364.8 S -(iltin is the e).2 E(xit status of)-.15 E F1(command)2.5 E F0(.).77 E F3 -(compgen)108 381.6 Q F0([)2.5 E F1(option)A F0 2.5(][)C F1(wor)-2.5 E(d) --.37 E F0(])A .012(Generate possible completion matches for)144 393.6 R -F1(wor)2.513 E(d)-.37 E F0 .013(according to the)2.513 F F1(option)2.513 -E F0 .013(s, which may be an)B 2.513(yo)-.15 G(ption)-2.513 E .982 -(accepted by the)144 405.6 R F3(complete)3.482 E F0 -.2(bu)3.481 G .981 -(iltin with the e).2 F .981(xception of)-.15 F F33.481 E F0(and) -3.481 E F33.481 E F0 3.481(,a)C .981(nd write the matches to the) --3.481 F .13(standard output.)144 417.6 R .13(When using the)5.13 F F3 -2.63 E F0(or)2.63 E F32.631 E F0 .131(options, the v)2.631 F -.131(arious shell v)-.25 F .131(ariables set by the program-)-.25 F -(mable completion f)144 429.6 Q(acilities, while a)-.1 E -.25(va)-.2 G +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 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 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 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.5 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 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 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 453.6 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 -465.6 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 477.6 Q F1(wor)2.5 E(d)-.37 E F0 -(will be displayed.)2.5 E(The return v)144 501.6 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 F3 -(complete)108 518.4 Q F0([)3.729 E F3(\255abcdefgjksuv)A F0 3.729(][)C -F3-3.729 E F1(comp-option)3.729 E F0 3.729(][)C F3(\255DE)-3.729 E -F0 3.728(][)C F3-3.728 E F1(action)3.728 E F0 3.728(][)C F3 --3.728 E F1(globpat)3.728 E F0 3.728(][)C F3-3.728 E F1(wor)3.728 -E(dlist)-.37 E F0 3.728(][)C F3-3.728 E F1(func-)3.728 E(tion)108 -530.4 Q F0 2.5(][)C F3-2.5 E F1(command)2.5 E F0(])A([)144 542.4 Q -F3A F1(\214lterpat)2.5 E F0 2.5(][)C F3-2.5 E F1(pr)2.5 E -(e\214x)-.37 E F0 2.5(][)C F3-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 F3(complete \255pr)108 -554.4 Q F0([)2.5 E F3(\255DE)A F0 2.5(][)C F1(name)-2.5 E F0(...])2.5 E -.633(Specify ho)144 566.4 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 F33.134 E F0 .634 -(option is supplied, or if no)3.134 F .14(options are supplied, e)144 -578.4 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 590.4 R(The)5.31 E F32.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(name)2.81 E F0(s)A 1.347 -(are supplied, all completion speci\214cations.)144 602.4 R(The)6.347 E -F33.847 E F0 1.346(option indicates that the remaining options) -3.847 F .5(and actions should apply to the `)144 614.4 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 -626.4 S .955(ommand for which no completion has pre)-3.455 F .955 -(viously been de\214ned.)-.25 F(The)5.955 E F33.455 E F0 .955 -(option indicates that)3.455 F .064 -(the remaining options and actions should apply to `)144 638.4 R -(`empty')-.74 E 2.565('c)-.74 G .065 -(ommand completion; that is, comple-)-2.565 F -(tion attempted on a blank line.)144 650.4 Q 1.438 -(The process of applying these completion speci\214cations when w)144 -674.4 R 1.437(ord completion is attempted is)-.1 F(described abo)144 -686.4 Q .3 -.15(ve u)-.15 H(nder).15 E F3(Pr)2.5 E -(ogrammable Completion)-.18 E F0(.)A .555 -(Other options, if speci\214ed, ha)144 710.4 R .855 -.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 F33.056 E F0(,)A F33.056 E F0 3.056 -(,a)C(nd)-3.056 E F33.056 E F0 2.742(options \(and, if necessary) -144 722.4 R 5.242(,t)-.65 G(he)-5.242 E F35.242 E F0(and)5.241 E -F35.241 E F0 2.741 -(options\) should be quoted to protect them from)5.241 F(GNU Bash 4.4)72 -768 Q(2017 October 7)143.735 E(57)192.895 E 0 Cg EP +(lid option is supplied, or no matches were generated.).25 E +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(57)185.955 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 -.15(ex)144 84 S -(pansion before the).15 E/F1 10/Times-Bold@0 SF(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 -96 Q/F2 10/Times-Italic@0 SF(comp-option)2.5 E F0(The)184 108 Q F2 -(comp-option)2.79 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 120 Q F2(comp-option)5 E F0(may be one of:)2.5 E F1(bashdefault)184 -132 Q F0 .281(Perform the rest of the def)224 144 R(ault)-.1 E F1(bash) -2.781 E F0 .281(completions if the compspec generates no)2.781 F -(matches.)224 156 Q F1(default)184 168 Q F0 2.875(Use readline')224 168 -R 5.375(sd)-.55 G(ef)-5.375 E 2.876 +(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([)3.728 E F1(\255abcdefgjksuv)A F0 3.728(][)C F1 +-3.728 E/F2 10/Times-Italic@0 SF(comp-option)3.728 E F0 3.728(][)C +F1(\255DE)-3.728 E F0 3.728(][)C F1-3.728 E F2(action)3.728 E F0 +3.728(][)C F1-3.728 E F2(globpat)3.728 E F0 3.729(][)C F1 +-3.729 E F2(wor)3.729 E(dlist)-.37 E F0 3.729(][)C F1-3.729 E F2 +(func-)3.729 E(tion)108 96 Q F0 2.5(][)C F1-2.5 E F2(command)2.5 E +F0(])A([)144 108 Q F1A 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 120 Q F0([)2.5 E F1(\255DE)A F0 2.5(][)C F2(name) +-2.5 E F0(...])2.5 E .634(Specify ho)144 132 R 3.134(wa)-.25 G -.18(rg) +-3.134 G .634(uments to each).18 F F2(name)3.134 E F0 .634 +(should be completed.)3.134 F .633(If the)5.634 F F13.133 E F0 +.633(option is supplied, or if no)3.133 F .139(options are supplied, e) +144 144 R .139(xisting completion speci\214cations are printed in a w) +-.15 F .14(ay that allo)-.1 F .14(ws them to be)-.25 F .31 +(reused as input.)144 156 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.346 +(are supplied, all completion speci\214cations.)144 168 R(The)6.347 E F1 +3.847 E F0 1.347(option indicates that the remaining options)3.847 +F .5(and actions should apply to the `)144 180 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 192 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 .065 +(the remaining options and actions should apply to `)144 204 R(`empty') +-.74 E 2.564('c)-.74 G .064(ommand completion; that is, comple-)-2.564 F +(tion attempted on a blank line.)144 216 Q 1.437 +(The process of applying these completion speci\214cations when w)144 +240 R 1.438(ord completion is attempted is)-.1 F(described abo)144 252 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 276 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 288 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 300 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 312 Q F2 +(comp-option)2.5 E F0(The)184 324 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 336 Q F2 +(comp-option)5 E F0(may be one of:)2.5 E F1(bashdefault)184 348 Q F0 +.281(Perform the rest of the def)224 360 R(ault)-.1 E F1(bash)2.781 E F0 +.281(completions if the compspec generates no)2.781 F(matches.)224 372 Q +F1(default)184 384 Q F0 2.876(Use readline')224 384 R 5.376(sd)-.55 G +(ef)-5.376 E 2.875 (ault \214lename completion if the compspec generates no)-.1 F(matches.) -224 180 Q F1(dir)184 192 Q(names)-.15 E F0(Perform directory name compl\ -etion if the compspec generates no matches.)224 204 Q F1(\214lenames)184 -216 Q F0 -.7(Te)224 228 S .137(ll readline that the compspec generates \ -\214lenames, so it can perform an).7 F 2.636<798c>-.15 G(le-)-2.636 E -.134(name\255speci\214c processing \(lik)224 240 R 2.634(ea)-.1 G .134 +224 396 Q F1(dir)184 408 Q(names)-.15 E F0(Perform directory name compl\ +etion if the compspec generates no matches.)224 420 Q F1(\214lenames)184 +432 Q F0 -.7(Te)224 444 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 456 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 252 R .45 -(Intended to be used with shell)5.45 F(functions.)224 264 Q F1(noquote) -184 276 Q F0 -.7(Te)224 276 S .814 +(cial characters, or suppressing trailing spaces\).)224 468 R .45 +(Intended to be used with shell)5.45 F(functions.)224 480 Q F1(noquote) +184 492 Q F0 -.7(Te)224 492 S .814 (ll readline not to quote the completed w).7 F .814(ords if the)-.1 F -3.314(ya)-.15 G .815(re \214lenames \(quoting)-3.314 F -(\214lenames is the def)224 288 Q(ault\).)-.1 E F1(nosort)184 300 Q F0 --.7(Te)224 300 S(ll readline not to sort the list of possible completio\ -ns alphabetically).7 E(.)-.65 E F1(nospace)184 312 Q F0 -.7(Te)224 312 S +3.314(ya)-.15 G .814(re \214lenames \(quoting)-3.314 F +(\214lenames is the def)224 504 Q(ault\).)-.1 E F1(nosort)184 516 Q F0 +-.7(Te)224 516 S(ll readline not to sort the list of possible completio\ +ns alphabetically).7 E(.)-.65 E F1(nospace)184 528 Q F0 -.7(Te)224 528 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 324 Q F1 -(plusdirs)184 336 Q F0 1.985(After an)224 336 R 4.485(ym)-.15 G 1.985 +F .22(ords completed at the end)-.1 F(of the line.)224 540 Q F1 +(plusdirs)184 552 Q F0 1.985(After an)224 552 R 4.485(ym)-.15 G 1.985 (atches de\214ned by the compspec are generated, directory name)-4.485 F -.584(completion is attempted and an)224 348 R 3.084(ym)-.15 G .584 -(atches are added to the results of the other)-3.084 F(actions.)224 360 -Q F1144 372 Q F2(action)2.5 E F0(The)184 384 Q F2(action)2.5 E F0 +.583(completion is attempted and an)224 564 R 3.084(ym)-.15 G .584 +(atches are added to the results of the other)-3.084 F(actions.)224 576 +Q F1144 588 Q F2(action)2.5 E F0(The)184 600 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 -396 Q F0(Alias names.)224 396 Q(May also be speci\214ed as)5 E F1 -2.5 E F0(.)A F1(arrayv)184 408 Q(ar)-.1 E F0(Array v)224 420 Q -(ariable names.)-.25 E F1(binding)184 432 Q(Readline)224 432 Q F0 -.1 -(ke)2.5 G 2.5(yb)-.05 G(inding names.)-2.5 E F1 -.2(bu)184 444 S(iltin) -.2 E F0(Names of shell b)224 444 Q(uiltin commands.)-.2 E -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(command)184 456 -Q F0(Command names.)224 468 Q(May also be speci\214ed as)5 E F12.5 -E F0(.)A F1(dir)184 480 Q(ectory)-.18 E F0(Directory names.)224 492 Q -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(disabled)184 504 -Q F0(Names of disabled shell b)224 516 Q(uiltins.)-.2 E F1(enabled)184 -528 Q F0(Names of enabled shell b)224 528 Q(uiltins.)-.2 E F1(export)184 -540 Q F0(Names of e)224 540 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 -552 Q F0(File names.)224 552 Q(May also be speci\214ed as)5 E F1 -2.5 E F0(.)A F1(function)184 564 Q F0(Names of shell functions.)224 576 -Q F1(gr)184 588 Q(oup)-.18 E F0(Group names.)224 588 Q -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(helptopic)184 -600 Q F0(Help topics as accepted by the)224 612 Q F1(help)2.5 E F0 -.2 -(bu)2.5 G(iltin.).2 E F1(hostname)184 624 Q F0(Hostnames, as tak)224 636 -Q(en from the \214le speci\214ed by the)-.1 E/F3 9/Times-Bold@0 SF -(HOSTFILE)2.5 E F0(shell v)2.25 E(ariable.)-.25 E F1(job)184 648 Q F0 -(Job names, if job control is acti)224 648 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 660 S -(yw).1 E(ord)-.1 E F0(Shell reserv)224 672 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 -684 Q F0(Names of running jobs, if job control is acti)224 684 Q -.15 -(ve)-.25 G(.).15 E F1(ser)184 696 Q(vice)-.1 E F0(Service names.)224 696 -Q(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(setopt)184 708 -Q F0 -1.11(Va)224 708 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 -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(58)192.895 E 0 Cg EP +612 Q F0(Alias names.)224 612 Q(May also be speci\214ed as)5 E F1 +2.5 E F0(.)A F1(arrayv)184 624 Q(ar)-.1 E F0(Array v)224 636 Q +(ariable names.)-.25 E F1(binding)184 648 Q(Readline)224 648 Q F0 -.1 +(ke)2.5 G 2.5(yb)-.05 G(inding names.)-2.5 E F1 -.2(bu)184 660 S(iltin) +.2 E F0(Names of shell b)224 660 Q(uiltin commands.)-.2 E +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(command)184 672 +Q F0(Command names.)224 684 Q(May also be speci\214ed as)5 E F12.5 +E F0(.)A F1(dir)184 696 Q(ectory)-.18 E F0(Directory names.)224 708 Q +(May also be speci\214ed as)5 E F12.5 E F0(.)A(GNU Bash 4.4)72 768 +Q(2017 December 28)136.795 E(58)185.955 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(shopt)184 84 Q F0(Shell option names as accepted by the)224 84 Q F1 -(shopt)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(signal)184 96 Q F0 -(Signal names.)224 96 Q F1(stopped)184 108 Q F0 -(Names of stopped jobs, if job control is acti)224 108 Q -.15(ve)-.25 G -(.).15 E F1(user)184 120 Q F0(User names.)224 120 Q -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1 -.1(va)184 132 S -(riable).1 E F0(Names of all shell v)224 132 Q 2.5(ariables. May)-.25 F -(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1144 144 Q/F2 -10/Times-Italic@0 SF(command)2.5 E(command)184 156 Q F0 1.055(is e)3.555 -F -.15(xe)-.15 G 1.055(cuted in a subshell en).15 F 1.056 +SF(disabled)184 84 Q F0(Names of disabled shell b)224 96 Q(uiltins.)-.2 +E F1(enabled)184 108 Q F0(Names of enabled shell b)224 108 Q(uiltins.) +-.2 E F1(export)184 120 Q F0(Names of e)224 120 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 132 Q F0(File names.)224 132 Q +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(function)184 144 +Q F0(Names of shell functions.)224 156 Q F1(gr)184 168 Q(oup)-.18 E F0 +(Group names.)224 168 Q(May also be speci\214ed as)5 E F12.5 E F0 +(.)A F1(helptopic)184 180 Q F0(Help topics as accepted by the)224 192 Q +F1(help)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(hostname)184 204 Q F0 +(Hostnames, as tak)224 216 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 228 Q F0(Job names, if job control is acti)224 228 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 240 S(yw).1 E(ord)-.1 E F0(Shell reserv)224 252 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 264 Q F0(Names of running jobs, if job control is acti)224 +264 Q -.15(ve)-.25 G(.).15 E F1(ser)184 276 Q(vice)-.1 E F0 +(Service names.)224 276 Q(May also be speci\214ed as)5 E F12.5 E +F0(.)A F1(setopt)184 288 Q F0 -1.11(Va)224 288 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 300 Q F0 +(Shell option names as accepted by the)224 300 Q F1(shopt)2.5 E F0 -.2 +(bu)2.5 G(iltin.).2 E F1(signal)184 312 Q F0(Signal names.)224 312 Q F1 +(stopped)184 324 Q F0(Names of stopped jobs, if job control is acti)224 +324 Q -.15(ve)-.25 G(.).15 E F1(user)184 336 Q F0(User names.)224 336 Q +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1 -.1(va)184 348 S +(riable).1 E F0(Names of all shell v)224 348 Q 2.5(ariables. May)-.25 F +(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1144 360 Q/F3 +10/Times-Italic@0 SF(command)2.5 E(command)184 372 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 168 Q F1144 180 Q F2(function)2.5 E F0 .114 -(The shell function)184 192 R F2(function)2.614 E F0 .114(is e)2.614 F +184 384 Q F1144 396 Q F3(function)2.5 E F0 .113 +(The shell function)184 408 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 .113(the func-)2.613 F .816(tion is e)184 204 R --.15(xe)-.15 G .816(cuted, the \214rst ar).15 F .816(gument \()-.18 F F1 -($1)A F0 3.316(\)i)C 3.316(st)-3.316 G .817 +(vironment. When)-.4 F .114(the func-)2.614 F .817(tion is e)184 420 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 216 R 1.407(gument \()-.18 F F1 +(are being completed, the second ar)184 432 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 .103(third ar)184 228 R .103 -(gument \()-.18 F F1($3)A F0 2.603(\)i)C 2.603(st)-2.603 G .103(he w) --2.603 F .104(ord preceding the w)-.1 F .104 -(ord being completed on the current com-)-.1 F .102(mand line.)184 240 R -.102(When it \214nishes, the possible completions are retrie)5.102 F --.15(ve)-.25 G 2.601(df).15 G .101(rom the v)-2.601 F .101(alue of the) --.25 F/F3 9/Times-Bold@0 SF(COMPREPL)184 252 Q(Y)-.828 E F0(array v)2.25 -E(ariable.)-.25 E F1144 264 Q F2(globpat)2.5 E F0 1.007 -(The pathname e)184 276 R 1.007(xpansion pattern)-.15 F F2(globpat)3.507 -E F0 1.007(is e)3.507 F 1.008(xpanded to generate the possible comple-) --.15 F(tions.)184 288 Q F1144 300 Q F2(pr)2.5 E(e\214x)-.37 E(pr) -184 312 Q(e\214x)-.37 E F0 .535(is added at the be)3.035 F .534 +(ord being completed, and the)-.1 F .104(third ar)184 444 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 456 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 468 Q(Y)-.828 E F0(array v)2.25 E(ariable.)-.25 E +F1144 480 Q F3(globpat)2.5 E F0 1.008(The pathname e)184 492 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 504 Q +F1144 516 Q F3(pr)2.5 E(e\214x)-.37 E(pr)184 528 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 324 Q F1144 336 Q F2(suf)2.5 E -<8c78>-.18 E(suf)184 336 Q<8c78>-.18 E F0 +-.15(ve)-.2 G(been applied.)184 540 Q F1144 552 Q F3(suf)2.5 E +<8c78>-.18 E(suf)184 552 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 348 Q F2(wor)2.5 E -(dlist)-.37 E F0(The)184 360 Q F2(wor)3.639 E(dlist)-.37 E F0 1.14 -(is split using the characters in the)3.639 F F3(IFS)3.64 E F0 1.14 -(special v)3.39 F 1.14(ariable as delimiters, and)-.25 F 2.008 -(each resultant w)184 372 R 2.008(ord is e)-.1 F 4.508(xpanded. The)-.15 -F 2.007(possible completions are the members of the)4.508 F -(resultant list which match the w)184 384 Q(ord being completed.)-.1 E -F1144 396 Q F2(\214lterpat)2.5 E(\214lterpat)184 408 Q F0 .455 -(is a pattern as used for pathname e)2.955 F 2.956(xpansion. It)-.15 F -.456(is applied to the list of possible)2.956 F 1.596 -(completions generated by the preceding options and ar)184 420 R 1.596 -(guments, and each completion)-.18 F(matching)184 432 Q F2(\214lterpat) -3.204 E F0 .704(is remo)3.204 F -.15(ve)-.15 G 3.204(df).15 G .704 -(rom the list.)-3.204 F 3.204(Al)5.704 G(eading)-3.204 E F1(!)3.204 E F0 -(in)3.204 E F2(\214lterpat)3.205 E F0(ne)3.205 E -.05(ga)-.15 G .705 -(tes the pattern;).05 F(in this case, an)184 444 Q 2.5(yc)-.15 G -(ompletion not matching)-2.5 E F2(\214lterpat)2.5 E F0(is remo)2.5 E --.15(ve)-.15 G(d.).15 E .467(The return v)144 460.8 R .467 +E .3 -.15(ve b)-.2 H(een applied.).15 E F1144 564 Q F3(wor)2.5 E +(dlist)-.37 E F0(The)184 576 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 2.007 +(each resultant w)184 588 R 2.007(ord is e)-.1 F 4.507(xpanded. The)-.15 +F 2.008(possible completions are the members of the)4.507 F +(resultant list which match the w)184 600 Q(ord being completed.)-.1 E +F1144 612 Q F3(\214lterpat)2.5 E(\214lterpat)184 624 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 636 R 1.596 +(guments, and each completion)-.18 F(matching)184 648 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 660 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 676.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.966 E F0 -(or)2.966 E F12.966 E F0 .466(is sup-)2.966 F 1.361 -(plied without a)144 472.8 R F2(name)3.861 E F0(ar)3.861 E 1.361 -(gument, an attempt is made to remo)-.18 F 1.662 -.15(ve a c)-.15 H -1.362(ompletion speci\214cation for a).15 F F2(name)144 484.8 Q F0 +(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 688.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 700.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 501.6 Q F0([)2.5 E F1A F2(option)2.5 E F0 2.5(][)C -F1(\255DE)-2.5 E F0 2.5(][)C F1(+o)-2.5 E F2(option)2.5 E F0 2.5(][)C F2 -(name)-2.5 E F0(])A .447(Modify completion options for each)144 513.6 R -F2(name)2.947 E F0 .447(according to the)2.947 F F2(option)2.947 E F0 -.447(s, or for the currently-e)B -.15(xe)-.15 G(cuting).15 E .725 -(completion if no)144 525.6 R F2(name)3.225 E F0 3.225(sa)C .725 -(re supplied.)-3.225 F .725(If no)5.725 F F2(option)3.225 E F0 3.225(sa) -C .725(re gi)-3.225 F -.15(ve)-.25 G .726 -(n, display the completion options for).15 F(each)144 537.6 Q F2(name) -3.224 E F0 .724(or the current completion.)3.224 F .724(The possible v) -5.724 F .724(alues of)-.25 F F2(option)3.224 E F0 .724(are those v)3.224 -F .723(alid for the)-.25 F F1(com-)3.223 E(plete)144 549.6 Q F0 -.2(bu) -2.797 G .297(iltin described abo).2 F -.15(ve)-.15 G 5.297(.T).15 G(he) --5.297 E F12.797 E F0 .297 -(option indicates that the remaining options should apply to)2.797 F -1.228(the `)144 561.6 R(`def)-.74 E(ault')-.1 E 3.728('c)-.74 G 1.228(o\ -mmand completion; that is, completion attempted on a command for which \ -no)-3.728 F 2.177(completion has pre)144 573.6 R 2.177 -(viously been de\214ned.)-.25 F(The)7.177 E F14.677 E F0 2.178 -(option indicates that the remaining options)4.678 F(should apply to `) -144 585.6 Q(`empty')-.74 E 2.5('c)-.74 G -(ommand completion; that is, completion attempted on a blank line.)-2.5 -E 1.388(The return v)144 609.6 R 1.388(alue is true unless an in)-.25 F --.25(va)-.4 G 1.387 -(lid option is supplied, an attempt is made to modify the).25 F -(options for a)144 621.6 Q F2(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 638.4 Q F0([) -2.5 E F2(n)A F0(])A 1.753(Resume the ne)144 650.4 R 1.753 -(xt iteration of the enclosing)-.15 F F1 -.25(fo)4.254 G(r).25 E F0(,)A -F1(while)4.254 E F0(,)A F1(until)4.254 E F0 4.254(,o)C(r)-4.254 E F1 -(select)4.254 E F0 4.254(loop. If)4.254 F F2(n)4.614 E F0 1.754 -(is speci\214ed,)4.494 F 1.209(resume at the)144 662.4 R F2(n)3.709 E F0 -1.209(th enclosing loop.)B F2(n)6.569 E F0 1.209(must be)3.949 F/F4 10 -/Symbol SF3.709 E F0 3.709(1. If)3.709 F F2(n)4.069 E F0 1.209 -(is greater than the number of enclosing)3.949 F .513 -(loops, the last enclosing loop \(the `)144 674.4 R(`top-le)-.74 E -.15 -(ve)-.25 G(l').15 E 3.013('l)-.74 G .513(oop\) is resumed.)-3.013 F .514 -(The return v)5.514 F .514(alue is 0 unless)-.25 F F2(n)3.014 E F0(is) -3.014 E(not greater than or equal to 1.)144 686.4 Q F1(declar)108 703.2 -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 -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(59)192.895 E 0 Cg EP +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(59)185.955 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(typeset)108 84 Q F0([)2.5 E F1(\255aAfFgilnrtux)A F0 2.5(][)C F1 --2.5 E F0 2.5(][)C/F2 10/Times-Italic@0 SF(name)-2.5 E F0([=)A F2 -(value)A F0 2.5(].)C(..])-2.5 E 1.265(Declare v)144 96 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 -(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 108 S 3.482(riables. The).25 -F F13.482 E F0 .982(option will display the attrib)3.482 F .982 -(utes and v)-.2 F .983(alues of each)-.25 F F2(name)3.483 E F0 5.983(.W) -.18 G(hen)-5.983 E F13.483 E F0 .983(is used)3.483 F(with)144 120 -Q F2(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 132 Q F2 -(name)4.813 E F0(ar)4.813 E 2.313(guments, it will display the attrib) --.18 F 2.314(utes and v)-.2 F 2.314(alues of all v)-.25 F 2.314 -(ariables ha)-.25 F 2.314(ving the)-.2 F(attrib)144 144 Q 1.182 -(utes speci\214ed by the additional options.)-.2 F 1.181 -(If no other options are supplied with)6.182 F F13.681 E F0(,)A F1 -(declar)3.681 E(e)-.18 E F0 .62(will display the attrib)144 156 R .62 -(utes and v)-.2 F .62(alues of all shell v)-.25 F 3.12(ariables. The) --.25 F F13.12 E F0 .62(option will restrict the display)3.12 F -1.291(to shell functions.)144 168 R(The)6.291 E F13.791 E F0 1.291 -(option inhibits the display of function de\214nitions; only the functi\ -on)3.791 F .948(name and attrib)144 180 R .948(utes are printed.)-.2 F -.948(If the)5.948 F F1(extdeb)3.448 E(ug)-.2 E F0 .948 +SF(compopt)108 84 Q F0([)2.5 E F1A/F2 10/Times-Italic@0 SF(option) +2.5 E F0 2.5(][)C F1(\255DE)-2.5 E F0 2.5(][)C F1(+o)-2.5 E F2(option) +2.5 E F0 2.5(][)C F2(name)-2.5 E F0(])A .447 +(Modify completion options for each)144 96 R F2(name)2.947 E F0 .447 +(according to the)2.947 F F2(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 108 R F2(name)3.226 E F0 3.226(sa)C .726 +(re supplied.)-3.226 F .725(If no)5.725 F F2(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 120 Q F2(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 F2(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 132 Q F0 -.2(bu) +2.798 G .298(iltin described abo).2 F -.15(ve)-.15 G 5.297(.T).15 G(he) +-5.297 E F12.797 E F0 .297 +(option indicates that the remaining options should apply to)2.797 F +1.227(the `)144 144 R(`def)-.74 E(ault')-.1 E 3.727('c)-.74 G 1.228(omm\ +and completion; that is, completion attempted on a command for which no) +-3.727 F 2.178(completion has pre)144 156 R 2.178 +(viously been de\214ned.)-.25 F(The)7.178 E F14.678 E F0 2.177 +(option indicates that the remaining options)4.677 F(should apply to `) +144 168 Q(`empty')-.74 E 2.5('c)-.74 G +(ommand completion; that is, completion attempted on a blank line.)-2.5 +E 1.387(The return v)144 192 R 1.387(alue is true unless an in)-.25 F +-.25(va)-.4 G 1.388 +(lid option is supplied, an attempt is made to modify the).25 F +(options for a)144 204 Q F2(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 220.8 Q F0([) +2.5 E F2(n)A F0(])A 1.754(Resume the ne)144 232.8 R 1.754 +(xt iteration of the enclosing)-.15 F F1 -.25(fo)4.254 G(r).25 E F0(,)A +F1(while)4.254 E F0(,)A F1(until)4.254 E F0 4.254(,o)C(r)-4.254 E F1 +(select)4.254 E F0 4.253(loop. If)4.254 F F2(n)4.613 E F0 1.753 +(is speci\214ed,)4.493 F 1.208(resume at the)144 244.8 R F2(n)3.709 E F0 +1.209(th enclosing loop.)B F2(n)6.569 E F0 1.209(must be)3.949 F/F3 10 +/Symbol SF3.709 E F0 3.709(1. If)3.709 F F2(n)4.069 E F0 1.209 +(is greater than the number of enclosing)3.949 F .514 +(loops, the last enclosing loop \(the `)144 256.8 R(`top-le)-.74 E -.15 +(ve)-.25 G(l').15 E 3.014('l)-.74 G .514(oop\) is resumed.)-3.014 F .513 +(The return v)5.513 F .513(alue is 0 unless)-.25 F F2(n)3.013 E F0(is) +3.013 E(not greater than or equal to 1.)144 268.8 Q F1(declar)108 285.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 297.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.264(Declare v)144 309.6 R 1.264(ariables and/or gi)-.25 F +1.564 -.15(ve t)-.25 H 1.264(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(re gi)-3.765 F -.15(ve)-.25 +G 3.765(nt).15 G 1.265(hen display the v)-3.765 F 1.265(alues of)-.25 F +-.25(va)144 321.6 S 3.483(riables. The).25 F F13.483 E F0 .983 +(option will display the attrib)3.483 F .983(utes and v)-.2 F .982 +(alues of each)-.25 F F2(name)3.482 E F0 5.982(.W).18 G(hen)-5.982 E F1 +3.482 E F0 .982(is used)3.482 F(with)144 333.6 Q F2(name)2.774 E +F0(ar)2.774 E .274(guments, additional options, other than)-.18 F F1 +2.775 E F0(and)2.775 E F12.775 E F0 2.775(,a)C .275 +(re ignored.)-2.775 F(When)5.275 E F12.775 E F0 .275(is supplied) +2.775 F(without)144 345.6 Q F2(name)4.814 E F0(ar)4.814 E 2.314 +(guments, it will display the attrib)-.18 F 2.314(utes and v)-.2 F 2.313 +(alues of all v)-.25 F 2.313(ariables ha)-.25 F 2.313(ving the)-.2 F +(attrib)144 357.6 Q 1.181(utes speci\214ed by the additional options.) +-.2 F 1.182(If no other options are supplied with)6.181 F F13.682 +E F0(,)A F1(declar)3.682 E(e)-.18 E F0 .62(will display the attrib)144 +369.6 R .62(utes and v)-.2 F .62(alues of all shell v)-.25 F 3.12 +(ariables. The)-.25 F F13.12 E F0 .62 +(option will restrict the display)3.12 F 1.29(to shell functions.)144 +381.6 R(The)6.29 E F13.79 E F0 1.291(option inhibits the display \ +of function de\214nitions; only the function)3.791 F .948 +(name and attrib)144 393.6 R .948(utes are printed.)-.2 F .948(If the) +5.948 F F1(extdeb)3.448 E(ug)-.2 E F0 .948 (shell option is enabled using)3.448 F F1(shopt)3.448 E F0 3.448(,t)C .948(he source)-3.448 F 1.69(\214le name and line number where each)144 -192 R F2(name)4.19 E F0 1.69(is de\214ned are displayed as well.)4.19 F -(The)6.69 E F14.19 E F0(option)4.19 E(implies)144 204 Q F1 -3.891 E F0 6.391(.T)C(he)-6.391 E F13.891 E F0 1.391 -(option forces v)3.891 F 1.391 +405.6 R F2(name)4.19 E F0 1.69(is de\214ned are displayed as well.)4.19 +F(The)6.69 E F14.19 E F0(option)4.19 E(implies)144 417.6 Q F1 +3.892 E F0 6.392(.T)C(he)-6.392 E F13.892 E F0 1.391 +(option forces v)3.892 F 1.391 (ariables to be created or modi\214ed at the global scope, e)-.25 F -.15 -(ve)-.25 G(n).15 E(when)144 216 Q F1(declar)4.383 E(e)-.18 E F0 1.883 -(is e)4.383 F -.15(xe)-.15 G 1.883(cuted in a shell function.).15 F -1.882(It is ignored in all other cases.)6.883 F 1.882(The follo)6.882 F -(wing)-.25 E .793(options can be used to restrict output to v)144 228 R -.794(ariables with the speci\214ed attrib)-.25 F .794(ute or to gi)-.2 F -1.094 -.15(ve v)-.25 H(ariables)-.1 E(attrib)144 240 Q(utes:)-.2 E F1 -144 252 Q F0(Each)180 252 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 264 Q F0(Each)180 -264 Q F2(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 276 Q F0(Use function names only)180 276 Q(.)-.65 -E F1144 288 Q F0 .558(The v)180 288 R .558 +(ve)-.25 G(n).15 E(when)144 429.6 Q F1(declar)4.382 E(e)-.18 E F0 1.882 +(is e)4.382 F -.15(xe)-.15 G 1.882(cuted in a shell function.).15 F +1.883(It is ignored in all other cases.)6.882 F 1.883(The follo)6.883 F +(wing)-.25 E .794(options can be used to restrict output to v)144 441.6 +R .794(ariables with the speci\214ed attrib)-.25 F .793(ute or to gi)-.2 +F 1.093 -.15(ve v)-.25 H(ariables)-.1 E(attrib)144 453.6 Q(utes:)-.2 E +F1144 465.6 Q F0(Each)180 465.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 477.6 Q +F0(Each)180 477.6 Q F2(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 489.6 Q F0(Use function names only) +180 489.6 Q(.)-.65 E F1144 501.6 Q F0 .557(The v)180 501.6 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/F3 9/Times-Bold@0 SF .557 -(ARITHMETIC EV)3.058 F(ALU)-1.215 E(A-)-.54 E(TION)180 300 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 312 Q F0 .909 -(When the v)180 312 R .909(ariable is assigned a v)-.25 F .909 +(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 513.6 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 525.6 Q +F0 .91(When the v)180 525.6 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 .91(rted to lo).15 F(wer)-.25 E(-)-.2 E 2.5(case. The)180 324 R(upper) -2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1144 336 Q F0(Gi) -180 336 Q 1.62 -.15(ve e)-.25 H(ach).15 E F2(name)3.82 E F0(the)3.82 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 537.6 R +(upper)2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1144 549.6 +Q F0(Gi)180 549.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 (ute, making it a name reference to another v)-.2 F(ariable.)-.25 E -1.518(That other v)180 348 R 1.518(ariable is de\214ned by the v)-.25 F -1.519(alue of)-.25 F F2(name)4.019 E F0 6.519(.A)C 1.519 -(ll references, assignments, and)-6.519 F(attrib)180 360 Q .227 +1.519(That other v)180 561.6 R 1.519(ariable is de\214ned by the v)-.25 +F 1.518(alue of)-.25 F F2(name)4.018 E F0 6.518(.A)C 1.518 +(ll references, assignments, and)-6.518 F(attrib)180 573.6 Q .226 (ute modi\214cations to)-.2 F F2(name)2.726 E F0 2.726(,e)C .226 (xcept those using or changing the)-2.876 F F12.726 E F0(attrib) -2.726 E .226(ute itself, are)-.2 F .808(performed on the v)180 372 R -.808(ariable referenced by)-.25 F F2(name)3.308 E F0 1.908 -.55('s v)D -3.308(alue. The).3 F .809(nameref attrib)3.309 F .809(ute cannot be)-.2 -F(applied to array v)180 384 Q(ariables.)-.25 E F1144 396 Q F0 -(Mak)180 396 Q(e)-.1 E F2(name)5.047 E F0 5.047(sr)C(eadonly)-5.047 E -7.547(.T)-.65 G 2.546(hese names cannot then be assigned v)-7.547 F -2.546(alues by subsequent)-.25 F(assignment statements or unset.)180 408 -Q F1144 420 Q F0(Gi)180 420 Q .729 -.15(ve e)-.25 H(ach).15 E F2 -(name)2.929 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.93 E F1(RETURN)2.93 E F0 -(traps from the calling shell.)180 432 Q(The trace attrib)5 E -(ute has no special meaning for v)-.2 E(ariables.)-.25 E F1144 444 -Q F0 .91(When the v)180 444 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 .909(rted to upper).15 F(-)-.2 E 2.5(case. The)180 456 R(lo) -2.5 E(wer)-.25 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1144 -468 Q F0(Mark)180 468 Q F2(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 .12 -(Using `+' instead of `\255' turns of)144 484.8 R 2.62(ft)-.25 G .12 -(he attrib)-2.62 F .121(ute instead, with the e)-.2 F .121 -(xceptions that)-.15 F F1(+a)2.621 E F0 .121(may not be used)2.621 F -.645(to destro)144 496.8 R 3.145(ya)-.1 G 3.145(na)-3.145 G .645(rray v) --3.145 F .645(ariable and)-.25 F F1(+r)3.145 E F0 .645(will not remo) -3.145 F .945 -.15(ve t)-.15 H .645(he readonly attrib).15 F 3.144 -(ute. When)-.2 F .644(used in a func-)3.144 F(tion,)144 508.8 Q F1 +2.726 E .227(ute itself, are)-.2 F .809(performed on the v)180 585.6 R +.809(ariable referenced by)-.25 F F2(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 597.6 Q(ariables.)-.25 E F1144 609.6 Q F0 +(Mak)180 609.6 Q(e)-.1 E F2(name)5.046 E F0 5.046(sr)C(eadonly)-5.046 E +7.546(.T)-.65 G 2.546(hese names cannot then be assigned v)-7.546 F +2.547(alues by subsequent)-.25 F(assignment statements or unset.)180 +621.6 Q F1144 633.6 Q F0(Gi)180 633.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 645.6 Q(The trace attrib)5 E +(ute has no special meaning for v)-.2 E(ariables.)-.25 E F1144 +657.6 Q F0 .909(When the v)180 657.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 669.6 +R(lo)2.5 E(wer)-.25 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1 +144 681.6 Q F0(Mark)180 681.6 Q F2(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 .121 +(Using `+' instead of `\255' turns of)144 698.4 R 2.621(ft)-.25 G .121 +(he attrib)-2.621 F .121(ute instead, with the e)-.2 F .12 +(xceptions that)-.15 F F1(+a)2.62 E F0 .12(may not be used)2.62 F .644 +(to destro)144 710.4 R 3.144(ya)-.1 G 3.144(na)-3.144 G .644(rray v) +-3.144 F .644(ariable and)-.25 F F1(+r)3.145 E F0 .645(will not remo) +3.145 F .945 -.15(ve t)-.15 H .645(he readonly attrib).15 F 3.145 +(ute. When)-.2 F .645(used in a func-)3.145 F(tion,)144 722.4 Q F1 (declar)2.835 E(e)-.18 E F0(and)2.835 E F1(typeset)2.835 E F0(mak)2.835 E 2.835(ee)-.1 G(ach)-2.835 E F2(name)2.835 E F0 .335 (local, as with the)2.835 F F1(local)2.835 E F0 .335 -(command, unless the)2.835 F F12.835 E F0(option)2.835 E 1.283 -(is supplied.)144 520.8 R 1.283(If a v)6.283 F 1.283 -(ariable name is follo)-.25 F 1.283(wed by =)-.25 F F2(value)A F0 3.783 -(,t)C 1.283(he v)-3.783 F 1.283(alue of the v)-.25 F 1.282 -(ariable is set to)-.25 F F2(value)3.782 E F0(.)A .926(When using)144 -532.8 R F13.426 E F0(or)3.426 E F13.426 E F0 .927 -(and the compound assignment syntax to create array v)3.426 F .927 -(ariables, additional)-.25 F(attrib)144 544.8 Q .592(utes do not tak)-.2 -F 3.092(ee)-.1 G -.25(ff)-3.092 G .592 -(ect until subsequent assignments.).25 F .592(The return v)5.592 F .592 -(alue is 0 unless an in)-.25 F -.25(va)-.4 G(lid).25 E .429 -(option is encountered, an attempt is made to de\214ne a function using) -144 556.8 R/F4 10/Courier@0 SF .429(\255f foo=bar)2.929 F F0 2.929(,a)C -2.929(na)-2.929 G .429(ttempt is)-2.929 F .063(made to assign a v)144 -568.8 R .063(alue to a readonly v)-.25 F .062 -(ariable, an attempt is made to assign a v)-.25 F .062 -(alue to an array v)-.25 F(ari-)-.25 E .102 -(able without using the compound assignment syntax \(see)144 580.8 R F1 -(Arrays)2.602 E F0(abo)2.602 E -.15(ve)-.15 G .102(\), one of the).15 F -F2(names)2.602 E F0 .102(is not a)2.602 F -.25(va)144 592.8 S .172 -(lid shell v).25 F .171(ariable name, an attempt is made to turn of)-.25 -F 2.671(fr)-.25 G .171(eadonly status for a readonly v)-2.671 F .171 -(ariable, an)-.25 F .96(attempt is made to turn of)144 604.8 R 3.46(fa) --.25 G .96(rray status for an array v)-3.46 F .96 -(ariable, or an attempt is made to display a)-.25 F(non-e)144 616.8 Q -(xistent function with)-.15 E F12.5 E F0(.)A F1 -(dirs [\255clpv] [+)108 633.6 Q F2(n)A F1 2.5(][)C-2.5 E F2(n)A F1 -(])A F0 -.4(Wi)144 645.6 S .329 -(thout options, displays the list of currently remembered directories.) -.4 F .328(The def)5.328 F .328(ault display is on a)-.1 F 1.238 -(single line with directory names separated by spaces.)144 657.6 R 1.238 -(Directories are added to the list with the)6.238 F F1(pushd)144 669.6 Q -F0 2.003(command; the)4.504 F F1(popd)4.503 E F0 2.003(command remo) -4.503 F -.15(ve)-.15 G 4.503(se).15 G 2.003(ntries from the list.)-4.503 -F 2.003(The current directory is)7.003 F(al)144 681.6 Q -.1(wa)-.1 G -(ys the \214rst directory in the stack.).1 E F1144 693.6 Q F0 -(Clears the directory stack by deleting all of the entries.)180 693.6 Q -F1144 705.6 Q F0 .881 -(Produces a listing using full pathnames; the def)180 705.6 R .882 -(ault listing format uses a tilde to denote)-.1 F(the home directory)180 -717.6 Q(.)-.65 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(60) -192.895 E 0 Cg EP +(command, unless the)2.835 F F12.835 E F0(option)2.835 E +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(60)185.955 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/F1 10/Times-Bold@0 -SF144 84 Q F0(Print the directory stack with one entry per line.) -180 84 Q F1144 96 Q F0 .273(Print the directory stack with one en\ -try per line, pre\214xing each entry with its inde)180 96 R 2.772(xi) --.15 G 2.772(nt)-2.772 G(he)-2.772 E(stack.)180 108 Q F1(+)144 120 Q/F2 -10/Times-Italic@0 SF(n)A F0 1.564(Displays the)180 120 R F2(n)4.064 E F0 -1.565(th entry counting from the left of the list sho)B 1.565(wn by)-.25 -F F1(dirs)4.065 E F0 1.565(when in)4.065 F -.2(vo)-.4 G -.1(ke).2 G(d).1 -E(without options, starting with zero.)180 132 Q F1144 144 Q F2(n)A -F0 1.194(Displays the)180 144 R F2(n)3.694 E F0 1.194 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.282 +(is supplied.)144 84 R 1.282(If a v)6.282 F 1.283(ariable name is follo) +-.25 F 1.283(wed by =)-.25 F/F1 10/Times-Italic@0 SF(value)A F0 3.783 +(,t)C 1.283(he v)-3.783 F 1.283(alue of the v)-.25 F 1.283 +(ariable is set to)-.25 F F1(value)3.783 E F0(.)A .927(When using)144 96 +R/F2 10/Times-Bold@0 SF3.427 E F0(or)3.427 E F23.427 E F0 +.926(and the compound assignment syntax to create array v)3.427 F .926 +(ariables, additional)-.25 F(attrib)144 108 Q .592(utes do not tak)-.2 F +3.092(ee)-.1 G -.25(ff)-3.092 G .592(ect until subsequent assignments.) +.25 F .592(The return v)5.592 F .592(alue is 0 unless an in)-.25 F -.25 +(va)-.4 G(lid).25 E .429 +(option is encountered, an attempt is made to de\214ne a function using) +144 120 R/F3 10/Courier@0 SF .428(\255f foo=bar)2.929 F F0 2.928(,a)C +2.928(na)-2.928 G .428(ttempt is)-2.928 F .062(made to assign a v)144 +132 R .062(alue to a readonly v)-.25 F .063 +(ariable, an attempt is made to assign a v)-.25 F .063 +(alue to an array v)-.25 F(ari-)-.25 E .102 +(able without using the compound assignment syntax \(see)144 144 R F2 +(Arrays)2.602 E F0(abo)2.602 E -.15(ve)-.15 G .102(\), one of the).15 F +F1(names)2.602 E F0 .101(is not a)2.602 F -.25(va)144 156 S .171 +(lid shell v).25 F .171(ariable name, an attempt is made to turn of)-.25 +F 2.671(fr)-.25 G .171(eadonly status for a readonly v)-2.671 F .172 +(ariable, an)-.25 F .96(attempt is made to turn of)144 168 R 3.46(fa) +-.25 G .96(rray status for an array v)-3.46 F .96 +(ariable, or an attempt is made to display a)-.25 F(non-e)144 180 Q +(xistent function with)-.15 E F22.5 E F0(.)A F2 +(dirs [\255clpv] [+)108 196.8 Q F1(n)A F2 2.5(][)C-2.5 E F1(n)A F2 +(])A F0 -.4(Wi)144 208.8 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 220.8 R 1.238 +(Directories are added to the list with the)6.238 F F2(pushd)144 232.8 Q +F0 2.003(command; the)4.503 F F2(popd)4.503 E F0 2.003(command remo) +4.503 F -.15(ve)-.15 G 4.503(se).15 G 2.003(ntries from the list.)-4.503 +F 2.003(The current directory is)7.003 F(al)144 244.8 Q -.1(wa)-.1 G +(ys the \214rst directory in the stack.).1 E F2144 256.8 Q F0 +(Clears the directory stack by deleting all of the entries.)180 256.8 Q +F2144 268.8 Q F0 .882 +(Produces a listing using full pathnames; the def)180 268.8 R .881 +(ault listing format uses a tilde to denote)-.1 F(the home directory)180 +280.8 Q(.)-.65 E F2144 292.8 Q F0 +(Print the directory stack with one entry per line.)180 292.8 Q F2 +144 304.8 Q F0 .272(Print the directory stack with one entry per line, \ +pre\214xing each entry with its inde)180 304.8 R 2.773(xi)-.15 G 2.773 +(nt)-2.773 G(he)-2.773 E(stack.)180 316.8 Q F2(+)144 328.8 Q F1(n)A F0 +1.565(Displays the)180 328.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 +(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 340.8 Q F2144 352.8 Q F1 +(n)A F0 1.194(Displays the)180 352.8 R F1(n)3.694 E F0 1.194 (th entry counting from the right of the list sho)B 1.194(wn by)-.25 F -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 156 Q .257(The return v)144 -172.8 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) +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 364.8 Q .258(The return v)144 +381.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) -.15 G 2.758(sb).15 G -.15(ey)-2.758 G .258(ond the end of the direc-) -.15 F(tory stack.)144 184.8 Q F1(diso)108 201.6 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 213.6 S .122 -(thout options, remo).4 F .422 -.15(ve e)-.15 H(ach).15 E F2(jobspec) +.15 F(tory stack.)144 393.6 Q F2(diso)108 410.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 422.4 S .121 +(thout options, remo).4 F .422 -.15(ve e)-.15 H(ach).15 E F1(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 F2(jobspec)4.362 E F0 .121(is not present, and)2.932 -F .096(neither the)144 225.6 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.622(obs. If).15 F F1(jobspec)4.362 E F0 .122(is not present, and)2.932 +F .096(neither the)144 434.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.596 E F0 .096(option is gi)2.596 F -.15(ve)-.25 G .096(n, each) -.15 F F2(jobspec)145.74 237.6 Q F0 .586(is not remo)3.396 F -.15(ve)-.15 -G 3.086(df).15 G .585(rom the table, b)-3.086 F .585(ut is mark)-.2 F -.585(ed so that)-.1 F/F3 9/Times-Bold@0 SF(SIGHUP)3.085 E F0 .585 -(is not sent to the job if the)2.835 F .962(shell recei)144 249.6 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 F2(jobspec)5.202 E F0 .962(is supplied, the)3.772 F F1 +.15 F F1(jobspec)145.74 446.4 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/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 458.4 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 F1(jobspec)5.202 E F0 .962(is supplied, the)3.772 F F2 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.359(jobs; the)144 261.6 R F1 -3.859 E F0 1.359(option without a)3.859 F F2(jobspec)5.599 E F0 -(ar)4.169 E 1.358(gument restricts operation to running jobs.)-.18 F -1.358(The return)6.358 F -.25(va)144 273.6 S(lue is 0 unless a).25 E F2 +H 3.462(rm).15 G .962(ark all)-3.462 F 1.358(jobs; the)144 470.4 R F2 +3.858 E F0 1.358(option without a)3.858 F F1(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 482.4 S(lue is 0 unless a).25 E F1 (jobspec)4.24 E F0(does not specify a v)2.81 E(alid job)-.25 E(.)-.4 E -F1(echo)108 290.4 Q F0([)2.5 E F1(\255neE)A F0 2.5(][)C F2(ar)-2.5 E(g) --.37 E F0(...])2.5 E .424(Output the)144 302.4 R F2(ar)2.924 E(g)-.37 E +F2(echo)108 499.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 511.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 -(wline. The)-.25 F .424(return status is 0 unless a write)2.924 F .308 -(error occurs.)144 314.4 R(If)5.308 E F12.808 E F0 .308 -(is speci\214ed, the trailing ne)2.808 F .308(wline is suppressed.)-.25 -F .307(If the)5.308 F F12.807 E F0 .307(option is gi)2.807 F -.15 -(ve)-.25 G .307(n, inter).15 F(-)-.2 E 1.348(pretation of the follo)144 -326.4 R 1.348(wing backslash-escaped characters is enabled.)-.25 F(The) -6.348 E F13.849 E F0 1.349(option disables the)3.849 F 1.055 -(interpretation of these escape characters, e)144 338.4 R -.15(ve)-.25 G -3.555(no).15 G 3.555(ns)-3.555 G 1.055(ystems where the)-3.555 F 3.554 -(ya)-.15 G 1.054(re interpreted by def)-3.554 F(ault.)-.1 E(The)144 -350.4 Q F1(xpg_echo)3.458 E F0 .959 -(shell option may be used to dynamically determine whether or not)3.458 -F F1(echo)3.459 E F0 -.15(ex)3.459 G(pands).15 E .716 -(these escape characters by def)144 362.4 R(ault.)-.1 E F1(echo)5.716 E -F0 .716(does not interpret)3.216 F F13.216 E F0 .715 -(to mean the end of options.)3.216 F F1(echo)5.715 E F0 -(interprets the follo)144 374.4 Q(wing escape sequences:)-.25 E F1(\\a) -144 386.4 Q F0(alert \(bell\))180 386.4 Q F1(\\b)144 398.4 Q F0 -(backspace)180 398.4 Q F1(\\c)144 410.4 Q F0(suppress further output)180 -410.4 Q F1(\\e)144 422.4 Q(\\E)144 434.4 Q F0(an escape character)180 -434.4 Q F1(\\f)144 446.4 Q F0(form feed)180 446.4 Q F1(\\n)144 458.4 Q -F0(ne)180 458.4 Q 2.5(wl)-.25 G(ine)-2.5 E F1(\\r)144 470.4 Q F0 -(carriage return)180 470.4 Q F1(\\t)144 482.4 Q F0(horizontal tab)180 -482.4 Q F1(\\v)144 494.4 Q F0 -.15(ve)180 494.4 S(rtical tab).15 E F1 -(\\\\)144 506.4 Q F0(backslash)180 506.4 Q F1(\\0)144 518.4 Q F2(nnn)A -F0(the eight-bit character whose v)180 518.4 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 530.4 Q F2(HH)A F0(the eight-bit character whose v)180 530.4 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 542.4 Q F2(HHHH)A F0 1.506 -(the Unicode \(ISO/IEC 10646\) character whose v)180 554.4 R 1.507 -(alue is the he)-.25 F 1.507(xadecimal v)-.15 F(alue)-.25 E F2(HHHH) -4.007 E F0(\(one to four he)180 566.4 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 -(\\U)144 578.4 Q F2(HHHHHHHH)A F0 .548 -(the Unicode \(ISO/IEC 10646\) character whose v)180 590.4 R .547 -(alue is the he)-.25 F .547(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-) -3.047 E(HHH)180 602.4 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G -(igits\))-2.5 E F1(enable)108 619.2 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 .277(Enable and disable b)144 631.2 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 .834 -(the same name as a shell b)144 643.2 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.333(nt).15 G(hough)-3.333 E .989 -(the shell normally searches for b)144 655.2 R .989 -(uiltins before disk commands.)-.2 F(If)5.989 E F13.489 E F0 .99 -(is used, each)3.49 F F2(name)3.49 E F0 .99(is dis-)3.49 F 1.582 -(abled; otherwise,)144 667.2 R F2(names)4.082 E F0 1.582(are enabled.) -4.082 F -.15(Fo)6.582 G 4.082(re).15 G 1.582(xample, to use the)-4.232 F -F1(test)4.082 E F0 1.582(binary found via the)4.082 F F3 -.666(PA)4.081 -G(TH)-.189 E F0 .08(instead of the shell b)144 679.2 R .08(uiltin v)-.2 -F .08(ersion, run)-.15 F/F5 10/Courier@0 SF .081(enable -n test)2.58 F -F0 5.081(.T)C(he)-5.081 E F12.581 E F0 .081 -(option means to load the ne)2.581 F(w)-.25 E -.2(bu)144 691.2 S 1.525 -(iltin command).2 F F2(name)4.385 E F0 1.524(from shared object)4.204 F -F2(\214lename)4.024 E F0 4.024(,o).18 G 4.024(ns)-4.024 G 1.524 -(ystems that support dynamic loading.)-4.024 F(The)144 703.2 Q F1 -2.866 E F0 .366(option will delete a b)2.866 F .366(uiltin pre)-.2 F -.366(viously loaded with)-.25 F F12.867 E F0 5.367(.I)C 2.867(fn) --5.367 G(o)-2.867 E F2(name)2.867 E F0(ar)2.867 E .367(guments are gi) --.18 F -.15(ve)-.25 G .367(n, or).15 F .399(if the)144 715.2 R F1 -2.899 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 .398(guments, the)-.18 F .098(list consists of all enabled shell b)144 -727.2 R 2.598(uiltins. If)-.2 F F12.598 E F0 .098 -(is supplied, only disabled b)2.598 F .099(uiltins are printed.)-.2 F -(If)5.099 E F12.599 E F0(GNU Bash 4.4)72 768 Q(2017 October 7) -143.735 E(61)192.895 E 0 Cg EP +(wline. The)-.25 F .424(return status is 0 unless a write)2.924 F .307 +(error occurs.)144 523.2 R(If)5.307 E F22.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 +(ve)-.25 G .308(n, inter).15 F(-)-.2 E 1.349(pretation of the follo)144 +535.2 R 1.348(wing backslash-escaped characters is enabled.)-.25 F(The) +6.348 E F23.848 E F0 1.348(option disables the)3.848 F 1.054 +(interpretation of these escape characters, e)144 547.2 R -.15(ve)-.25 G +3.555(no).15 G 3.555(ns)-3.555 G 1.055(ystems where the)-3.555 F 3.555 +(ya)-.15 G 1.055(re interpreted by def)-3.555 F(ault.)-.1 E(The)144 +559.2 Q F2(xpg_echo)3.459 E F0 .959 +(shell option may be used to dynamically determine whether or not)3.459 +F F2(echo)3.458 E F0 -.15(ex)3.458 G(pands).15 E .715 +(these escape characters by def)144 571.2 R(ault.)-.1 E F2(echo)5.715 E +F0 .716(does not interpret)3.215 F F23.216 E F0 .716 +(to mean the end of options.)3.216 F F2(echo)5.716 E F0 +(interprets the follo)144 583.2 Q(wing escape sequences:)-.25 E F2(\\a) +144 595.2 Q F0(alert \(bell\))180 595.2 Q F2(\\b)144 607.2 Q F0 +(backspace)180 607.2 Q F2(\\c)144 619.2 Q F0(suppress further output)180 +619.2 Q F2(\\e)144 631.2 Q(\\E)144 643.2 Q F0(an escape character)180 +643.2 Q F2(\\f)144 655.2 Q F0(form feed)180 655.2 Q F2(\\n)144 667.2 Q +F0(ne)180 667.2 Q 2.5(wl)-.25 G(ine)-2.5 E F2(\\r)144 679.2 Q F0 +(carriage return)180 679.2 Q F2(\\t)144 691.2 Q F0(horizontal tab)180 +691.2 Q F2(\\v)144 703.2 Q F0 -.15(ve)180 703.2 S(rtical tab).15 E F2 +(\\\\)144 715.2 Q F0(backslash)180 715.2 Q(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(61)185.955 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 1.917 -(is supplied, the list printed includes all b)144 84 R 1.916 -(uiltins, with an indication of whether or not each is)-.2 F 2.878 -(enabled. If)144 96 R/F1 10/Times-Bold@0 SF2.878 E F0 .379 -(is supplied, the output is restricted to the POSIX)2.878 F/F2 10 -/Times-Italic@0 SF(special)2.879 E F0 -.2(bu)2.879 G 2.879(iltins. The) -.2 F .379(return v)2.879 F(alue)-.25 E .995(is 0 unless a)144 108 R F2 -(name)3.855 E F0 .994(is not a shell b)3.675 F .994 -(uiltin or there is an error loading a ne)-.2 F 3.494(wb)-.25 G .994 -(uiltin from a shared)-3.694 F(object.)144 120 Q F1 -2.3 -.15(ev a)108 -136.8 T(l).15 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(The)144 148.8 -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 .495(and e)144 160.8 R -.15(xe)-.15 G -.495(cuted by the shell, and its e).15 F .495 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(\\0)144 84 Q/F2 10/Times-Italic@0 SF(nnn)A F0 +(the eight-bit character whose v)180 84 Q(alue is the octal v)-.25 E +(alue)-.25 E F2(nnn)2.5 E F0(\(zero to three octal digits\))2.5 E F1 +(\\x)144 96 Q F2(HH)A F0(the eight-bit character whose v)180 96 Q +(alue is the he)-.25 E(xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0 +(\(one or tw)2.5 E 2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E F1 +(\\u)144 108 Q F2(HHHH)A F0 1.507 +(the Unicode \(ISO/IEC 10646\) character whose v)180 120 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 132 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 +(\\U)144 144 Q F2(HHHHHHHH)A F0 .547 +(the Unicode \(ISO/IEC 10646\) character whose v)180 156 R .547 +(alue is the he)-.25 F .548(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-) +3.048 E(HHH)180 168 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G(igits\)) +-2.5 E F1(enable)108 184.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 196.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 208.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 220.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 1.581 +(abled; otherwise,)144 232.8 R F2(names)4.082 E F0 1.582(are enabled.) +4.082 F -.15(Fo)6.582 G 4.082(re).15 G 1.582(xample, to use the)-4.232 F +F1(test)4.082 E F0 1.582(binary found via the)4.082 F/F3 9/Times-Bold@0 +SF -.666(PA)4.082 G(TH)-.189 E F0 .081(instead of the shell b)144 244.8 +R .081(uiltin v)-.2 F .081(ersion, run)-.15 F/F4 10/Courier@0 SF .081 +(enable -n test)2.581 F F0 5.081(.T)C(he)-5.081 E F12.58 E F0 .08 +(option means to load the ne)2.58 F(w)-.25 E -.2(bu)144 256.8 S 1.524 +(iltin command).2 F F2(name)4.384 E F0 1.524(from shared object)4.204 F +F2(\214lename)4.024 E F0 4.024(,o).18 G 4.024(ns)-4.024 G 1.524 +(ystems that support dynamic loading.)-4.024 F(The)144 268.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 280.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 +292.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 1.916 +(is supplied, the list printed includes all b)144 304.8 R 1.916 +(uiltins, with an indication of whether or not each is)-.2 F 2.879 +(enabled. If)144 316.8 R F12.879 E F0 .379 +(is supplied, the output is restricted to the POSIX)2.879 F F2(special) +2.879 E F0 -.2(bu)2.878 G 2.878(iltins. The).2 F .378(return v)2.878 F +(alue)-.25 E .994(is 0 unless a)144 328.8 R F2(name)3.854 E F0 .994 +(is not a shell b)3.674 F .994(uiltin or there is an error loading a ne) +-.2 F 3.495(wb)-.25 G .995(uiltin from a shared)-3.695 F(object.)144 +340.8 Q F1 -2.3 -.15(ev a)108 357.6 T(l).15 E F0([)2.5 E F2(ar)A(g)-.37 +E F0(...])2.5 E(The)144 369.6 Q F2(ar)3.171 E(g)-.37 E F0 3.171(sa)C +.671(re read and concatenated together into a single command.)-3.171 F +.67(This command is then read)5.67 F .495(and e)144 381.6 R -.15(xe)-.15 +G .495(cuted by the shell, and its e).15 F .495 (xit status is returned as the v)-.15 F .495(alue of)-.25 F F1 -2.3 -.15 (ev a)2.995 H(l).15 E F0 5.495(.I)C 2.995(ft)-5.495 G .495(here are no) --2.995 F F2(ar)2.995 E(gs)-.37 E F0(,).27 E(or only null ar)144 172.8 Q +-2.995 F F2(ar)2.995 E(gs)-.37 E F0(,).27 E(or only null ar)144 393.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 189.6 Q F0([)2.5 E F1(\255cl)A F0 2.5(][)C F1-2.5 E F2 +(exec)108 410.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 201.6 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 213.6 R .177 +-.37 E F0(]])A(If)144 422.4 Q F2(command)3.006 E F0 .306 +(is speci\214ed, it replaces the shell.)3.576 F .305(No ne)5.305 F 2.805 +(wp)-.25 G .305(rocess is created.)-2.805 F(The)5.305 E F2(ar)3.135 E +(guments)-.37 E F0(become)3.075 E .176(the ar)144 434.4 R .176 (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 .499(the zeroth ar)144 225.6 R .499(gument passed to) --.18 F F2(command)2.999 E F0 5.499(.T).77 G .499(his is what)-5.499 F F2 -(lo)2.999 E(gin)-.1 E F0 .499(\(1\) does.).24 F(The)5.5 E F13 E F0 -.5(option causes)3 F F2(com-)3.2 E(mand)144 237.6 Q F0 .639(to be e) -3.909 F -.15(xe)-.15 G .638(cuted with an empty en).15 F 3.138 +(option is supplied, the shell places a dash at the be)2.676 F .177 +(ginning of)-.15 F .5(the zeroth ar)144 446.4 R .5(gument passed to)-.18 +F F2(command)3 E F0 5.499(.T).77 G .499(his is what)-5.499 F F2(lo)2.999 +E(gin)-.1 E F0 .499(\(1\) does.).24 F(The)5.499 E F12.999 E F0 +.499(option causes)2.999 F F2(com-)3.199 E(mand)144 458.4 Q F0 .638 +(to be e)3.908 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 249.6 R 1.077(gument to the e)-.18 F -.15 +(is supplied, the shell passes)3.138 F F2(name)3.499 E F0 .639(as the) +3.319 F 1.078(zeroth ar)144 470.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 261.6 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 273.6 R(interacti)3.32 E 1.12 -.15(ve s) +.15 F(non-interacti)144 482.4 Q .876 -.15(ve s)-.25 H .576(hell e).15 F +.576(xits, unless the)-.15 F F1(execfail)3.076 E F0 .577 +(shell option is enabled.)3.077 F .577(In that case, it returns f)5.577 +F(ail-)-.1 E 3.32(ure. An)144 494.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 285.6 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 297.6 Q +(xits uncondi-)-.15 F .287(tionally if)144 506.4 R F1(exec)2.787 E F0 +-.1(fa)2.787 G 2.787(ils. If).1 F F2(command)2.987 E F0 .287 +(is not speci\214ed, an)3.557 F 2.788(yr)-.15 G .288(edirections tak) +-2.788 F 2.788(ee)-.1 G -.25(ff)-2.788 G .288(ect in the current shell,) +.25 F(and the return status is 0.)144 518.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 314.4 Q F0([)2.5 E F2(n)A F0 -(])A .095(Cause the shell to e)144 314.4 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 326.4 S 2.5(cuted. A).15 F(trap on)2.5 E/F3 9 -/Times-Bold@0 SF(EXIT)2.5 E F0(is e)2.25 E -.15(xe)-.15 G -(cuted before the shell terminates.).15 E F1(export)108 343.2 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 355.2 Q F0 .257(The supplied)144 367.2 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 379.2 R(the)2.626 E F1 -2.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 F1144 391.2 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 F12.547 E F0 -.047(option causes the)2.547 F -.15(ex)144 403.2 S 1.446 +(he return status is 1.)-2.5 E F1(exit)108 535.2 Q F0([)2.5 E F2(n)A F0 +(])A .096(Cause the shell to e)144 535.2 R .096(xit with a status of) +-.15 F F2(n)2.596 E F0 5.096(.I)C(f)-5.096 E F2(n)2.955 E F0 .095 +(is omitted, the e)2.835 F .095(xit status is that of the last command) +-.15 F -.15(exe)144 547.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 564 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 576 Q F0 +.256(The supplied)144 588 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.627 +(commands. If)144 600 R(the)2.627 E F12.627 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 .126(n, or if the).15 F F1 +144 612 Q F0 .048(option is supplied, a list of names of all e)2.547 F +.048(xported v)-.15 F .048(ariables is printed.)-.25 F(The)5.048 E F1 +2.548 E F0 .048(option causes the)2.548 F -.15(ex)144 624 S 1.447 (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 415.2 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 427.2 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 439.2 Q F1(fc)108 456 Q F0([)2.5 E +-.37 E F0 3.946(,t)C(he)-3.946 E -.25(va)144 636 S .741(lue of the v).25 +F .741(ariable is set to)-.25 F F2(wor)3.241 E(d)-.37 E F0(.)A F1 +(export)5.741 E F0 .742(returns an e)3.242 F .742 +(xit status of 0 unless an in)-.15 F -.25(va)-.4 G .742(lid option is) +.25 F .032(encountered, one of the)144 648 R F2(names)2.532 E F0 .032 +(is not a v)2.532 F .032(alid shell v)-.25 F .032(ariable name, or)-.25 +F F12.531 E F0 .031(is supplied with a)2.531 F F2(name)2.891 E F0 +(that)2.711 E(is not a function.)144 660 Q F1(fc)108 676.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 -468 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 480 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 -492 R -.15(xe)-.15 G .141(cutes them.).15 F F2 -.45(Fi)5.141 G -.1(rs) +688.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 .431 +(The \214rst form selects a range of commands from)144 700.8 R F2<8c72> +4.842 E(st)-.1 E F0(to)3.612 E F2(last)3.022 E F0 .432 +(from the history list and displays or)3.612 F .142(edits and re-e)144 +712.8 R -.15(xe)-.15 G .142(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 504 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 .314(is used as an of) -144 516 R .314(fset from the current command number\).)-.25 F(If)5.314 E -F2(last)2.905 E F0 .315(is not speci\214ed it is set to the cur)3.495 F -(-)-.2 E .949(rent command for listing \(so that)144 528 R/F4 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 540 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 564 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 576 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 -.334(the editor gi)144 588 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 600 R .631(alue of the)-.25 F F3(FCEDIT)3.131 E -F0 -.25(va)2.881 G .631(riable is used, and the v).25 F .631(alue of) --.25 F F3(EDIT)3.131 E(OR)-.162 E F0(if)2.881 E F3(FCEDIT)3.13 E F0 .63 -(is not set.)2.88 F .63(If nei-)5.63 F .95(ther v)144 612 R .95 -(ariable is set,)-.25 F F2(vi)5.116 E F0 .95(is used.)5.116 F .951 -(When editing is complete, the edited commands are echoed and)5.95 F --.15(exe)144 624 S(cuted.).15 E .789(In the second form,)144 648 R F2 -(command)3.288 E F0 .788(is re-e)3.288 F -.15(xe)-.15 G .788 -(cuted after each instance of).15 F F2(pat)3.288 E F0 .788 -(is replaced by)3.288 F F2 -.37(re)3.288 G(p).37 E F0(.)A F2(Com-)5.788 -E(mand)144 660 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 F4 .172(r='fc \255s')2.672 F -F0 2.672(,s)C 2.672(ot)-2.672 G(hat)-2.672 E(typing)144 672 Q F4 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 F4(cc)3.666 E F0 1.165(and typing)3.666 F F4(r) -3.665 E F0(re-e)3.665 E -.15(xe)-.15 G 1.165(cutes the last com-).15 F -(mand.)144 684 Q .142(If the \214rst form is used, the return v)144 708 -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 720 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(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(62) -192.895 E 0 Cg EP +144 724.8 Q .31(ginning with that string\) or as a number \(an inde)-.15 +F 2.811(xi)-.15 G .311(nto the history list, where a ne)-2.811 F -.05 +(ga)-.15 G(ti).05 E .611 -.15(ve n)-.25 H(umber).15 E(GNU Bash 4.4)72 +768 Q(2017 December 28)136.795 E(62)185.955 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 .787 -(last command e)144 84 R -.15(xe)-.15 G .787(cuted or f).15 F .788 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .315 +(is used as an of)144 84 R .315(fset from the current command number\).) +-.25 F(If)5.315 E/F1 10/Times-Italic@0 SF(last)2.904 E F0 .314 +(is not speci\214ed it is set to the cur)3.494 F(-)-.2 E .948 +(rent command for listing \(so that)144 96 R/F2 10/Courier@0 SF .948 +(fc \255l \25510)3.448 F F0 .948(prints the last 10 commands\) and to) +3.448 F F1<8c72>5.359 E(st)-.1 E F0(other)4.129 E(-)-.2 E 2.5(wise. If) +144 108 R F1<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 132 Q +/F3 10/Times-Bold@0 SF2.522 E F0 .022 +(option suppresses the command numbers when listing.)2.522 F(The)5.022 E +F32.522 E F0 .022(option re)2.522 F -.15(ve)-.25 G .022 +(rses the order of).15 F .438(the commands.)144 144 R .438(If the)5.438 +F F32.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 +.335(the editor gi)144 156 R -.15(ve)-.25 G 2.835(nb).15 G(y)-2.835 E F1 +(ename)3.025 E F0 .335(is in)3.015 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.334 E F1(ename)3.024 E F0 .334(is not gi)3.014 F -.15(ve)-.25 G +(n,).15 E .63(the v)144 168 R .63(alue of the)-.25 F/F4 9/Times-Bold@0 +SF(FCEDIT)3.13 E F0 -.25(va)2.88 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.131 E F0 .631(is not set.)2.881 F .631(If nei-)5.631 F .951(ther v)144 +180 R .951(ariable is set,)-.25 F F1(vi)5.117 E F0 .951(is used.)5.117 F +.95(When editing is complete, the edited commands are echoed and)5.951 F +-.15(exe)144 192 S(cuted.).15 E .788(In the second form,)144 216 R F1 +(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.289 G(p).37 E F0(.)A F1(Com-)5.789 +E(mand)144 228 Q F0 .172(is interpreted the same as)2.672 F F1<8c72> +2.672 E(st)-.1 E F0(abo)2.672 E -.15(ve)-.15 G 5.172(.A).15 G .171 +(useful alias to use with this is)-2.5 F F2 .171(r='fc \255s')2.671 F F0 +2.671(,s)C 2.671(ot)-2.671 G(hat)-2.671 E(typing)144 240 Q F2 7.165(rc) +3.665 G(c)-7.165 E F0 1.165(runs the last command be)3.665 F 1.166 +(ginning with)-.15 F F2(cc)3.666 E F0 1.166(and typing)3.666 F F2(r) +3.666 E F0(re-e)3.666 E -.15(xe)-.15 G 1.166(cutes the last com-).15 F +(mand.)144 252 Q .142(If the \214rst form is used, the return v)144 276 +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 .454(specify history lines out of range.)144 288 R +.454(If the)5.454 F F32.954 E F0 .454 +(option is supplied, the return v)2.954 F .455(alue is the v)-.25 F .455 +(alue of the)-.25 F .788(last command e)144 300 R -.15(xe)-.15 G .788 +(cuted or f).15 F .787 (ailure if an error occurs with the temporary \214le of commands.)-.1 F -.788(If the)5.788 F 1.136 +.787(If the)5.787 F 1.135 (second form is used, the return status is that of the command re-e)144 -96 R -.15(xe)-.15 G 1.135(cuted, unless).15 F/F1 10/Times-Italic@0 SF -(cmd)3.835 E F0 1.135(does not)4.405 F(specify a v)144 108 Q -(alid history line, in which case)-.25 E/F2 10/Times-Bold@0 SF(fc)2.5 E -F0(returns f)2.5 E(ailure.)-.1 E F2(fg)108 124.8 Q F0([)2.5 E F1 -(jobspec)A F0(])A(Resume)144 136.8 Q F1(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 148.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(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 160.8 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 172.8 Q +312 R -.15(xe)-.15 G 1.136(cuted, unless).15 F F1(cmd)3.836 E F0 1.136 +(does not)4.406 F(specify a v)144 324 Q +(alid history line, in which case)-.25 E F3(fc)2.5 E F0(returns f)2.5 E +(ailure.)-.1 E F3(fg)108 340.8 Q F0([)2.5 E F1(jobspec)A F0(])A(Resume) +144 352.8 Q F1(jobspec)5.654 E F0 1.413(in the fore)4.224 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.413(is not present, the)4.223 F(shell')144 364.8 Q 3.116(sn)-.55 G +.616(otion of the)-3.116 F F1(curr)3.116 E .616(ent job)-.37 F F0 .617 +(is used.)3.116 F .617(The return v)5.617 F .617 +(alue is that of the command placed into the)-.25 F(fore)144 376.8 Q +.363(ground, or f)-.15 F .363 +(ailure if run when job control is disabled or)-.1 F 2.862(,w)-.4 G .362 +(hen run with job control enabled, if)-2.862 F F1(jobspec)145.74 388.8 Q F0(does not specify a v)2.81 E(alid job or)-.25 E F1(jobspec)4.24 E F0 (speci\214es a job that w)2.81 E(as started without job control.)-.1 E -F2(getopts)108 189.6 Q F1(optstring name)2.5 E F0([)2.5 E F1(ar)A(gs) --.37 E F0(])A F2(getopts)144 201.6 Q F0 .793 -(is used by shell procedures to parse positional parameters.)3.294 F F1 -(optstring)6.023 E F0 .793(contains the option)3.513 F .149 -(characters to be recognized; if a character is follo)144 213.6 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 225.6 Q .579 -(gument, which should be separated from it by white space.)-.18 F .578 +F3(getopts)108 405.6 Q F1(optstring name)2.5 E F0([)2.5 E F1(ar)A(gs) +-.37 E F0(])A F3(getopts)144 417.6 Q F0 .793 +(is used by shell procedures to parse positional parameters.)3.293 F F1 +(optstring)6.023 E F0 .793(contains the option)3.513 F .15 +(characters to be recognized; if a character is follo)144 429.6 R .149 +(wed by a colon, the option is e)-.25 F .149(xpected to ha)-.15 F .449 +-.15(ve a)-.2 H(n).15 E(ar)144 441.6 Q .578 +(gument, which should be separated from it by white space.)-.18 F .579 (The colon and question mark char)5.579 F(-)-.2 E 1.665 -(acters may not be used as option characters.)144 237.6 R 1.665 -(Each time it is in)6.665 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F2(getopts) -4.165 E F0 1.665(places the ne)4.165 F(xt)-.15 E .797 -(option in the shell v)144 249.6 R(ariable)-.25 E F1(name)3.297 E F0 -3.297(,i).18 G(nitializing)-3.297 E F1(name)3.657 E F0 .797 -(if it does not e)3.477 F .796(xist, and the inde)-.15 F 3.296(xo)-.15 G -3.296(ft)-3.296 G .796(he ne)-3.296 F(xt)-.15 E(ar)144 261.6 Q .085 -(gument to be processed into the v)-.18 F(ariable)-.25 E/F3 9 -/Times-Bold@0 SF(OPTIND)2.585 E/F4 9/Times-Roman@0 SF(.)A F3(OPTIND) -4.585 E F0 .085(is initialized to 1 each time the shell)2.335 F .846 -(or a shell script is in)144 273.6 R -.2(vo)-.4 G -.1(ke).2 G 3.345 -(d. When).1 F .845(an option requires an ar)3.345 F(gument,)-.18 E F2 -(getopts)3.345 E F0 .845(places that ar)3.345 F(gument)-.18 E .803 -(into the v)144 285.6 R(ariable)-.25 E F3(OPT)3.303 E(ARG)-.81 E F4(.)A -F0 .803(The shell does not reset)5.303 F F3(OPTIND)3.303 E F0 .804 -(automatically; it must be manually)3.054 F .294 -(reset between multiple calls to)144 297.6 R F2(getopts)2.793 E F0 .293 +(acters may not be used as option characters.)144 453.6 R 1.665 +(Each time it is in)6.665 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F3(getopts) +4.165 E F0 1.665(places the ne)4.165 F(xt)-.15 E .796 +(option in the shell v)144 465.6 R(ariable)-.25 E F1(name)3.296 E F0 +3.296(,i).18 G(nitializing)-3.296 E F1(name)3.657 E F0 .797 +(if it does not e)3.477 F .797(xist, and the inde)-.15 F 3.297(xo)-.15 G +3.297(ft)-3.297 G .797(he ne)-3.297 F(xt)-.15 E(ar)144 477.6 Q .085 +(gument to be processed into the v)-.18 F(ariable)-.25 E F4(OPTIND)2.585 +E/F5 9/Times-Roman@0 SF(.)A F4(OPTIND)4.585 E F0 .085 +(is initialized to 1 each time the shell)2.335 F .845 +(or a shell script is in)144 489.6 R -.2(vo)-.4 G -.1(ke).2 G 3.345 +(d. When).1 F .845(an option requires an ar)3.345 F(gument,)-.18 E F3 +(getopts)3.346 E F0 .846(places that ar)3.346 F(gument)-.18 E .804 +(into the v)144 501.6 R(ariable)-.25 E F4(OPT)3.304 E(ARG)-.81 E F5(.)A +F0 .803(The shell does not reset)5.304 F F4(OPTIND)3.303 E F0 .803 +(automatically; it must be manually)3.053 F .293 +(reset between multiple calls to)144 513.6 R F3(getopts)2.793 E F0 .293 (within the same shell in)2.793 F -.2(vo)-.4 G .293(cation if a ne).2 F -2.793(ws)-.25 G .293(et of parameters)-2.793 F(is to be used.)144 309.6 -Q 2.043(When the end of options is encountered,)144 333.6 R F2(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 F3(OPTIND)144 345.6 Q F0 +2.793(ws)-.25 G .294(et of parameters)-2.793 F(is to be used.)144 525.6 +Q 2.044(When the end of options is encountered,)144 549.6 R F3(getopts) +4.543 E F0 -.15(ex)4.543 G 2.043(its with a return v).15 F 2.043 +(alue greater than zero.)-.25 F F4(OPTIND)144 561.6 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 F2(getopts)144 369.6 Q F0 2.393 -(normally parses the positional parameters, b)4.893 F 2.392 -(ut if more ar)-.2 F 2.392(guments are gi)-.18 F -.15(ve)-.25 G 4.892 -(ni).15 G(n)-4.892 E F1(ar)4.892 E(gs)-.37 E F0(,).27 E F2(getopts)144 -381.6 Q F0(parses those instead.)2.5 E F2(getopts)144 405.6 Q F0 1.165 -(can report errors in tw)3.665 F 3.665(ow)-.1 G 3.665(ays. If)-3.765 F -1.165(the \214rst character of)3.665 F F1(optstring)3.895 E F0 1.166 -(is a colon,)3.886 F F1(silent)4.006 E F0(error)4.346 E 1.071 -(reporting is used.)144 417.6 R 1.071 -(In normal operation, diagnostic messages are printed when in)6.071 F --.25(va)-.4 G 1.07(lid options or).25 F .393(missing option ar)144 429.6 -R .393(guments are encountered.)-.18 F .394(If the v)5.394 F(ariable) --.25 E F3(OPTERR)2.894 E F0 .394(is set to 0, no error messages)2.644 F -(will be displayed, e)144 441.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 465.6 R -.25(va)-.4 G .667 -(lid option is seen,).25 F F2(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 -477.6 R F3(OPT)2.899 E(ARG)-.81 E F4(.)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 489.6 Q 1.242(If a required ar)144 -513.6 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 525.6 -Q F0(,).18 E F3(OPT)2.734 E(ARG)-.81 E F0 .234 -(is unset, and a diagnostic message is printed.)2.484 F(If)5.234 E F2 -(getopts)2.734 E F0 .235(is silent, then a colon \()2.734 F F2(:).833 E -F0(\)).833 E(is placed in)144 537.6 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 561.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 573.6 Q F2(hash)108 -590.4 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 602.4 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 614.4 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 626.4 -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 1.712 -(of the command.)144 638.4 R(The)6.712 E F24.212 E F0 1.711 -(option causes the shell to for)4.212 F 1.711 -(get all remembered locations.)-.18 F(The)6.711 E F24.211 E F0 -.833(option causes the shell to for)144 650.4 R .833 -(get the remembered location of each)-.18 F F1(name)3.333 E F0 5.833(.I) -C 3.333(ft)-5.833 G(he)-3.333 E F23.333 E F0 .833(option is sup-) -3.333 F .704(plied, the full pathname to which each)144 662.4 R F1(name) -3.204 E F0 .703(corresponds is printed.)3.204 F .703(If multiple)5.703 F -F1(name)3.203 E F0(ar)3.203 E(guments)-.18 E .795(are supplied with)144 -674.4 R F23.295 E F0 3.295(,t)C(he)-3.295 E F1(name)3.295 E F0 -.795(is printed before the hashed full pathname.)3.295 F(The)5.795 E F2 -3.295 E F0 .795(option causes)3.295 F .934 -(output to be displayed in a format that may be reused as input.)144 -686.4 R .934(If no ar)5.934 F .934(guments are gi)-.18 F -.15(ve)-.25 G -.934(n, or if).15 F(only)144 698.4 Q F22.821 E F0 .321 -(is supplied, information about remembered commands is printed.)2.821 F -.322(The return status is true)5.322 F(unless a)144 710.4 Q F1(name)2.86 -E F0(is not found or an in)2.68 E -.25(va)-.4 G(lid option is supplied.) -.25 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(63)192.895 E 0 Cg -EP +(is set to ?.)2.5 E F3(getopts)144 585.6 Q F0 2.392 +(normally parses the positional parameters, b)4.892 F 2.392 +(ut if more ar)-.2 F 2.393(guments are gi)-.18 F -.15(ve)-.25 G 4.893 +(ni).15 G(n)-4.893 E F1(ar)4.893 E(gs)-.37 E F0(,).27 E F3(getopts)144 +597.6 Q F0(parses those instead.)2.5 E F3(getopts)144 621.6 Q F0 1.166 +(can report errors in tw)3.666 F 3.665(ow)-.1 G 3.665(ays. If)-3.765 F +1.165(the \214rst character of)3.665 F F1(optstring)3.895 E F0 1.165 +(is a colon,)3.885 F F1(silent)4.005 E F0(error)4.345 E 1.07 +(reporting is used.)144 633.6 R 1.071 +(In normal operation, diagnostic messages are printed when in)6.07 F +-.25(va)-.4 G 1.071(lid options or).25 F .394(missing option ar)144 +645.6 R .394(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(will be displayed, e)144 657.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 .666(If an in)144 681.6 R +-.25(va)-.4 G .666(lid option is seen,).25 F F3(getopts)3.166 E F0 .667 +(places ? into)3.167 F F1(name)3.527 E F0 .667 +(and, if not silent, prints an error message)3.347 F .4(and unsets)144 +693.6 R F4(OPT)2.9 E(ARG)-.81 E F5(.)A F0(If)4.899 E F3(getopts)2.899 E +F0 .399(is silent, the option character found is placed in)2.899 F F4 +(OPT)2.899 E(ARG)-.81 E F0 .399(and no)2.649 F +(diagnostic message is printed.)144 705.6 Q 1.241(If a required ar)144 +729.6 R 1.241(gument is not found, and)-.18 F F3(getopts)3.741 E F0 +1.241(is not silent, a question mark \()3.741 F F3(?).833 E F0 3.742 +(\)i).833 G 3.742(sp)-3.742 G 1.242(laced in)-3.742 F(GNU Bash 4.4)72 +768 Q(2017 December 28)136.795 E(63)185.955 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/F1 10/Times-Bold@0 -SF(help)108 84 Q F0([)2.5 E F1(\255dms)A F0 2.5(][)C/F2 10 -/Times-Italic@0 SF(pattern)-2.5 E F0(])A .867 -(Display helpful information about b)144 96 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 -.306(help on all commands matching)144 108 R F2(pattern)2.806 E F0 2.807 -(;o).24 G .307(therwise help for all the b)-2.807 F .307 -(uiltins and shell control struc-)-.2 F(tures is printed.)144 120 Q F1 -144 132 Q F0(Display a short description of each)180 132 Q F2 -(pattern)2.5 E F1144 144 Q F0(Display the description of each)180 -144 Q F2(pattern)2.5 E F0(in a manpage-lik)2.5 E 2.5(ef)-.1 G(ormat)-2.5 -E F1144 156 Q F0(Display only a short usage synopsis for each)180 -156 Q F2(pattern)2.5 E F0 -(The return status is 0 unless no command matches)144 172.8 Q F2 -(pattern)2.5 E F0(.).24 E F1(history [)108 189.6 Q F2(n)A F1(])A -(history \255c)108 201.6 Q(history \255d)108 213.6 Q F2(of)2.5 E(fset) --.18 E F1(history \255anrw)108 225.6 Q F0([)2.5 E F2(\214lename)A F0(])A -F1(history \255p)108 237.6 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 249.6 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 -261.6 S .752 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10 +/Times-Italic@0 SF(name)144 84 Q F0(,).18 E/F2 9/Times-Bold@0 SF(OPT) +2.735 E(ARG)-.81 E F0 .234 +(is unset, and a diagnostic message is printed.)2.485 F(If)5.234 E/F3 10 +/Times-Bold@0 SF(getopts)2.734 E F0 .234(is silent, then a colon \() +2.734 F F3(:).833 E F0(\)).833 E(is placed in)144 96 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 F3(getopts)144 120 Q F0 +.902(returns true if an option, speci\214ed or unspeci\214ed, is found.) +3.401 F .902(It returns f)5.902 F .902(alse if the end of)-.1 F +(options is encountered or an error occurs.)144 132 Q F3(hash)108 148.8 +Q F0([)2.5 E F3(\255lr)A F0 2.5(][)C F3-2.5 E F1(\214lename)2.5 E +F0 2.5(][)C F3(\255dt)-2.5 E F0 2.5(][)C F1(name)-2.5 E F0(])A .858 +(Each time)144 160.8 R F3(hash)3.358 E F0 .858(is in)3.358 F -.2(vo)-.4 +G -.1(ke).2 G .858(d, the full pathname of the command).1 F F1(name) +3.718 E F0 .858(is determined by searching)3.538 F .956 +(the directories in)144 172.8 R F3($P)3.456 E -.95(AT)-.74 G(H).95 E F0 +.956(and remembered.)3.456 F(An)5.956 E 3.456(yp)-.15 G(re)-3.456 E .956 +(viously-remembered pathname is discarded.)-.25 F .243(If the)144 184.8 +R F32.743 E F0 .243 +(option is supplied, no path search is performed, and)2.743 F F1 +(\214lename)4.653 E F0 .242(is used as the full \214lename)2.923 F 1.711 +(of the command.)144 196.8 R(The)6.711 E F34.211 E F0 1.711 +(option causes the shell to for)4.211 F 1.712 +(get all remembered locations.)-.18 F(The)6.712 E F34.212 E F0 +.833(option causes the shell to for)144 208.8 R .833 +(get the remembered location of each)-.18 F F1(name)3.333 E F0 5.833(.I) +C 3.333(ft)-5.833 G(he)-3.333 E F33.333 E F0 .833(option is sup-) +3.333 F .703(plied, the full pathname to which each)144 220.8 R F1(name) +3.204 E F0 .704(corresponds is printed.)3.204 F .704(If multiple)5.704 F +F1(name)3.204 E F0(ar)3.204 E(guments)-.18 E .795(are supplied with)144 +232.8 R F33.295 E F0 3.295(,t)C(he)-3.295 E F1(name)3.295 E F0 +.795(is printed before the hashed full pathname.)3.295 F(The)5.795 E F3 +3.295 E F0 .795(option causes)3.295 F .934 +(output to be displayed in a format that may be reused as input.)144 +244.8 R .934(If no ar)5.934 F .935(guments are gi)-.18 F -.15(ve)-.25 G +.935(n, or if).15 F(only)144 256.8 Q F32.822 E F0 .322 +(is supplied, information about remembered commands is printed.)2.822 F +.321(The return status is true)5.321 F(unless a)144 268.8 Q F1(name)2.86 +E F0(is not found or an in)2.68 E -.25(va)-.4 G(lid option is supplied.) +.25 E F3(help)108 285.6 Q F0([)2.5 E F3(\255dms)A F0 2.5(][)C F1 +(pattern)-2.5 E F0(])A .866(Display helpful information about b)144 +297.6 R .867(uiltin commands.)-.2 F(If)5.867 E F1(pattern)4.617 E F0 +.867(is speci\214ed,)3.607 F F3(help)3.367 E F0(gi)3.367 E -.15(ve)-.25 +G 3.367(sd).15 G(etailed)-3.367 E .307(help on all commands matching)144 +309.6 R F1(pattern)2.807 E F0 2.807(;o).24 G .307 +(therwise help for all the b)-2.807 F .306 +(uiltins and shell control struc-)-.2 F(tures is printed.)144 321.6 Q F3 +144 333.6 Q F0(Display a short description of each)180 333.6 Q F1 +(pattern)2.5 E F3144 345.6 Q F0(Display the description of each) +180 345.6 Q F1(pattern)2.5 E F0(in a manpage-lik)2.5 E 2.5(ef)-.1 G +(ormat)-2.5 E F3144 357.6 Q F0 +(Display only a short usage synopsis for each)180 357.6 Q F1(pattern)2.5 +E F0(The return status is 0 unless no command matches)144 374.4 Q F1 +(pattern)2.5 E F0(.).24 E F3(history [)108 391.2 Q F1(n)A F3(])A +(history \255c)108 403.2 Q(history \255d)108 415.2 Q F1(of)2.5 E(fset) +-.18 E F3(history \255anrw)108 427.2 Q F0([)2.5 E F1(\214lename)A F0(])A +F3(history \255p)108 439.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 F3(history \255s)108 451.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 +463.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 273.6 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 285.6 Q(T)-.855 E F0 .265 -(is set and not null, it is used as a format string for)2.515 F F2 -(strftime)2.764 E F0 .264(\(3\) to display the time stamp asso-)B 1.019 -(ciated with each displayed history entry)144 297.6 R 6.019(.N)-.65 G +.752(Lines listed with a)5.752 F F3(*)3.252 E F0(ha)3.252 E -.15(ve)-.2 +G .381(been modi\214ed.)144 475.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 F2(HISTTIMEFOR-) +2.88 E(MA)144 487.2 Q(T)-.855 E F0 .264 +(is set and not null, it is used as a format string for)2.514 F F1 +(strftime)2.765 E F0 .265(\(3\) to display the time stamp asso-)B 1.02 +(ciated with each displayed history entry)144 499.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 309.6 R(If)5.176 E F2(\214lename) +(time stamp and the history line.)144 511.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 321.6 Q(alue of)-.25 E F3(HISTFILE)2.5 E F0(is used.) +(not, the v)144 523.2 Q(alue of)-.25 E F2(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 333.6 Q F0 -(Clear the history list by deleting all the entries.)180 333.6 Q F1 -144 345.6 Q F2(of)2.5 E(fset)-.18 E F0 .389 -(Delete the history entry at position)180 357.6 R F2(of)2.889 E(fset) --.18 E F0 5.389(.I)C(f)-5.389 E F2(of)2.889 E(fset)-.18 E F0 .389(is ne) -2.889 F -.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G 2.89(,i).15 G 2.89(ti) --2.89 G 2.89(si)-2.89 G .39(nterpreted as relati)-2.89 F -.15(ve)-.25 G -.599(to one greater than the last history position, so ne)180 369.6 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 381.6 Q 2.5(,a) +(wing meanings:)-.25 E F3144 535.2 Q F0 +(Clear the history list by deleting all the entries.)180 535.2 Q F3 +144 547.2 Q F1(of)2.5 E(fset)-.18 E F0 .39 +(Delete the history entry at position)180 559.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.889(,i).15 G 2.889(ti) +-2.889 G 2.889(si)-2.889 G .389(nterpreted as relati)-2.889 F -.15(ve) +-.25 G .598(to one greater than the last history position, so ne)180 +571.2 R -.05(ga)-.15 G(ti).05 E .899 -.15(ve i)-.25 H .599 +(ndices count back from the end).15 F(of the history)180 583.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 393.6 Q F0 .564(Append the `)180 393.6 R(`ne)-.74 E(w')-.25 E -3.064('h)-.74 G .564(istory lines to the history \214le.)-3.064 F .565 -(These are history lines entered since)5.564 F(the be)180 405.6 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 417.6 +(efers to the current)-2.5 E F3(history -d)2.5 E F0(command.)2.5 E F3 +144 595.2 Q F0 .565(Append the `)180 595.2 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 607.2 Q +(ginning of the current)-.15 E F3(bash)2.5 E F0(session, b)2.5 E +(ut not already appended to the history \214le.)-.2 E F3144 619.2 Q F0 .854(Read the history lines not already read from the history \214\ -le into the current history list.)180 417.6 R .772 -(These are lines appended to the history \214le since the be)180 429.6 R -.773(ginning of the current)-.15 F F1(bash)3.273 E F0(ses-)3.273 E -(sion.)180 441.6 Q F1144 453.6 Q F0(Read the contents of the hist\ -ory \214le and append them to the current history list.)180 453.6 Q F1 -144 465.6 Q F0 -(Write the current history list to the history \214le, o)180 465.6 Q +le into the current history list.)180 619.2 R .773 +(These are lines appended to the history \214le since the be)180 631.2 R +.772(ginning of the current)-.15 F F3(bash)3.272 E F0(ses-)3.272 E +(sion.)180 643.2 Q F3144 655.2 Q F0(Read the contents of the hist\ +ory \214le and append them to the current history list.)180 655.2 Q F3 +144 667.2 Q F0 +(Write the current history list to the history \214le, o)180 667.2 Q -.15(ve)-.15 G(rwriting the history \214le').15 E 2.5(sc)-.55 G -(ontents.)-2.5 E F1144 477.6 Q F0 .626 -(Perform history substitution on the follo)180 477.6 R(wing)-.25 E F2 -(ar)3.125 E(gs)-.37 E F0 .625(and display the result on the standard) -3.125 F 2.975(output. Does)180 489.6 R .475 -(not store the results in the history list.)2.975 F(Each)5.475 E F2(ar) +(ontents.)-2.5 E F3144 679.2 Q F0 .625 +(Perform history substitution on the follo)180 679.2 R(wing)-.25 E F1 +(ar)3.125 E(gs)-.37 E F0 .626(and display the result on the standard) +3.125 F 2.975(output. Does)180 691.2 R .475 +(not store the results in the history list.)2.975 F(Each)5.475 E F1(ar) 2.975 E(g)-.37 E F0 .475(must be quoted to disable)2.975 F -(normal history e)180 501.6 Q(xpansion.)-.15 E F1144 513.6 Q F0 -.363(Store the)180 513.6 R F2(ar)3.193 E(gs)-.37 E F0 .363 -(in the history list as a single entry)3.133 F 5.363(.T)-.65 G .362 -(he last command in the history list is)-5.363 F(remo)180 525.6 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 .145(If the)144 542.4 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 .669(entry is written to the history \214le, mark)144 554.4 R .669 -(ed with the history comment character)-.1 F 5.668(.W)-.55 G .668 -(hen the history)-5.668 F .955(\214le is read, lines be)144 566.4 R .956 -(ginning with the history comment character follo)-.15 F .956 -(wed immediately by a digit)-.25 F 1.796 -(are interpreted as timestamps for the follo)144 578.4 R 1.795 -(wing history entry)-.25 F 6.795(.T)-.65 G 1.795(he return v)-6.795 F -1.795(alue is 0 unless an)-.25 F(in)144 590.4 Q -.25(va)-.4 G .768(lid \ -option is encountered, an error occurs while reading or writing the his\ -tory \214le, an in).25 F -.25(va)-.4 G(lid).25 E F2(of)144 602.4 Q(fset) --.18 E F0 1.032(is supplied as an ar)3.532 F 1.031(gument to)-.18 F F1 -3.531 E F0 3.531(,o)C 3.531(rt)-3.531 G 1.031(he history e)-3.531 -F 1.031(xpansion supplied as an ar)-.15 F 1.031(gument to)-.18 F F1 -3.531 E F0 -.1(fa)144 614.4 S(ils.).1 E F1(jobs)108 631.2 Q F0([) -2.5 E F1(\255lnprs)A F0 2.5(][)C F2(jobspec)A F0(... ])2.5 E F1 -(jobs \255x)108 643.2 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 655.2 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 F1144 667.2 Q F0 -(List process IDs in addition to the normal information.)180 667.2 Q F1 -144 679.2 Q F0 .193(Display information only about jobs that ha) -180 679.2 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 691.2 Q F1 -144 703.2 Q F0(List only the process ID of the job')180 703.2 Q 2.5(sp) --.55 G(rocess group leader)-2.5 E(.)-.55 E F1144 715.2 Q F0 -(Display only running jobs.)180 715.2 Q(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(64)192.895 E 0 Cg EP +(normal history e)180 703.2 Q(xpansion.)-.15 E F3144 715.2 Q F0 +.362(Store the)180 715.2 R F1(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 727.2 Q -.15 +(ve)-.15 G 2.5(db).15 G(efore the)-2.5 E F1(ar)2.83 E(gs)-.37 E F0 +(are added.)2.77 E(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(64) +185.955 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 -SF144 84 Q F0(Display only stopped jobs.)180 84 Q(If)144 100.8 Q -/F2 10/Times-Italic@0 SF(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 -112.8 Q -.25(va)-.4 G(lid option is encountered or an in).25 E -.25(va) --.4 G(lid).25 E F2(jobspec)4.24 E F0(is supplied.)2.81 E .394(If the)144 -129.6 R F12.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 -141.6 Q -.15(xe)-.15 G(cutes).15 E F2(command)2.7 E F0(passing it)3.27 E -F2(ar)2.5 E(gs)-.37 E F0 2.5(,r).27 G(eturning its e)-2.5 E(xit status.) --.15 E F1(kill)108 158.4 Q F0([)2.5 E F1A F2(sigspec)2.5 E F0(|) -2.5 E F12.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 170.4 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 .12 -(Send the signal named by)144 182.4 R F2(sigspec)2.96 E F0(or)2.93 E F2 -(signum)2.96 E F0 .119(to the processes named by)2.939 F F2(pid)3.869 E -F0(or)3.389 E F2(jobspec)2.619 E F0(.).31 E F2(sigspec)5.459 E F0(is) -2.929 E .318(either a case-insensiti)144 194.4 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 206.4 Q F2(signum)4.189 E F0 -1.349(is a signal number)4.169 F 6.349(.I)-.55 G(f)-6.349 E F2(sigspec) -4.189 E F0 1.349(is not present, then)4.159 F F3(SIGTERM)3.849 E F0 -1.348(is assumed.)3.599 F(An)6.348 E(ar)144 218.4 Q .522(gument of)-.18 -F F13.023 E F0 .523(lists the signal names.)3.023 F .523(If an) +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .146(If the)144 84 +R/F1 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 96 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 108 R .956 +(ginning with the history comment character follo)-.15 F .955 +(wed immediately by a digit)-.25 F 1.795 +(are interpreted as timestamps for the follo)144 120 R 1.795 +(wing history entry)-.25 F 6.795(.T)-.65 G 1.795(he return v)-6.795 F +1.796(alue is 0 unless an)-.25 F(in)144 132 Q -.25(va)-.4 G .768(lid op\ +tion is encountered, an error occurs while reading or writing the histo\ +ry \214le, an in).25 F -.25(va)-.4 G(lid).25 E/F2 10/Times-Italic@0 SF +(of)144 144 Q(fset)-.18 E F0 1.031(is supplied as an ar)3.531 F 1.031 +(gument to)-.18 F/F3 10/Times-Bold@0 SF3.531 E F0 3.531(,o)C 3.531 +(rt)-3.531 G 1.031(he history e)-3.531 F 1.031 +(xpansion supplied as an ar)-.15 F 1.032(gument to)-.18 F F33.532 +E F0 -.1(fa)144 156 S(ils.).1 E F3(jobs)108 172.8 Q F0([)2.5 E F3 +(\255lnprs)A F0 2.5(][)C F2(jobspec)A F0(... ])2.5 E F3(jobs \255x)108 +184.8 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 196.8 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 F3144 208.8 Q F0 +(List process IDs in addition to the normal information.)180 208.8 Q F3 +144 220.8 Q F0 .194(Display information only about jobs that ha) +180 220.8 R .494 -.15(ve c)-.2 H .193(hanged status since the user w).15 +F .193(as last noti-)-.1 F(\214ed of their status.)180 232.8 Q F3 +144 244.8 Q F0(List only the process ID of the job')180 244.8 Q 2.5(sp) +-.55 G(rocess group leader)-2.5 E(.)-.55 E F3144 256.8 Q F0 +(Display only running jobs.)180 256.8 Q F3144 268.8 Q F0 +(Display only stopped jobs.)180 268.8 Q(If)144 285.6 Q F2(jobspec)4.553 +E F0 .313(is gi)3.123 F -.15(ve)-.25 G .313 +(n, output is restricted to information about that job).15 F 5.314(.T) +-.4 G .314(he return status is 0 unless)-5.314 F(an in)144 297.6 Q -.25 +(va)-.4 G(lid option is encountered or an in).25 E -.25(va)-.4 G(lid).25 +E F2(jobspec)4.24 E F0(is supplied.)2.81 E .395(If the)144 314.4 R F3 +2.895 E F0 .394(option is supplied,)2.894 F F3(jobs)2.894 E F0 +.394(replaces an)2.894 F(y)-.15 E F2(jobspec)4.634 E F0 .394(found in) +3.204 F F2(command)3.094 E F0(or)3.664 E F2(ar)3.224 E(gs)-.37 E F0 .394 +(with the corre-)3.164 F(sponding process group ID, and e)144 326.4 Q +-.15(xe)-.15 G(cutes).15 E F2(command)2.7 E F0(passing it)3.27 E F2(ar) +2.5 E(gs)-.37 E F0 2.5(,r).27 G(eturning its e)-2.5 E(xit status.)-.15 E +F3(kill)108 343.2 Q F0([)2.5 E F3A F2(sigspec)2.5 E F0(|)2.5 E F3 +2.5 E F2(signum)2.5 E F0(|)2.5 E F32.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 F3 +(kill \255l)108 355.2 Q F0(|)A F3A F0([)2.5 E F2(sigspec)A F0(|) +2.5 E F2 -.2(ex)2.5 G(it_status).2 E F0(])A .119 +(Send the signal named by)144 367.2 R F2(sigspec)2.959 E F0(or)2.929 E +F2(signum)2.959 E F0 .119(to the processes named by)2.939 F F2(pid)3.87 +E F0(or)3.39 E F2(jobspec)2.62 E F0(.).31 E F2(sigspec)5.46 E F0(is)2.93 +E .319(either a case-insensiti)144 379.2 R .619 -.15(ve s)-.25 H .319 +(ignal name such as).15 F F1(SIGKILL)2.819 E F0 .318 +(\(with or without the)2.569 F F1(SIG)2.818 E F0 .318 +(pre\214x\) or a signal)2.568 F(number;)144 391.2 Q F2(signum)4.188 E F0 +1.349(is a signal number)4.168 F 6.349(.I)-.55 G(f)-6.349 E F2(sigspec) +4.189 E F0 1.349(is not present, then)4.159 F F1(SIGTERM)3.849 E F0 +1.349(is assumed.)3.599 F(An)6.349 E(ar)144 403.2 Q .523(gument of)-.18 +F F33.023 E F0 .523(lists the signal names.)3.023 F .523(If an) 5.523 F 3.023(ya)-.15 G -.18(rg)-3.023 G .523(uments are supplied when) -.18 F F13.023 E F0 .523(is gi)3.023 F -.15(ve)-.25 G .523 -(n, the names).15 F .28(of the signals corresponding to the ar)144 230.4 +.18 F F33.023 E F0 .523(is gi)3.023 F -.15(ve)-.25 G .523 +(n, the names).15 F .28(of the signals corresponding to the ar)144 415.2 R .28(guments are listed, and the return status is 0.)-.18 F(The)5.28 E -F2 -.2(ex)2.78 G(it_status).2 E F0(ar)144 242.4 Q .377(gument to)-.18 F -F12.877 E F0 .378 -(is a number specifying either a signal number or the e)2.877 F .378 -(xit status of a process termi-)-.15 F .963(nated by a signal.)144 254.4 -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 +F2 -.2(ex)2.78 G(it_status).2 E F0(ar)144 427.2 Q .378(gument to)-.18 F +F32.878 E F0 .378 +(is a number specifying either a signal number or the e)2.878 F .377 +(xit status of a process termi-)-.15 F .962(nated by a signal.)144 439.2 +R(The)5.962 E F33.462 E F0 .962(option is equi)3.462 F -.25(va) +-.25 G .962(lent to).25 F F33.462 E F0(.)A F3(kill)5.962 E F0 .962 (returns true if at least one signal w)3.462 F(as)-.1 E -(successfully sent, or f)144 266.4 Q(alse if an error occurs or an in) --.1 E -.25(va)-.4 G(lid option is encountered.).25 E F1(let)108 283.2 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 -295.2 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 307.2 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 324 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 336 S 2.56(re).15 G .06(ach ar)-2.56 F +(successfully sent, or f)144 451.2 Q(alse if an error occurs or an in) +-.1 E -.25(va)-.4 G(lid option is encountered.).25 E F3(let)108 468 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 +480 Q F2(ar)3.027 E(g)-.37 E F0 .197(is an arithmetic e)2.917 F .197 +(xpression to be e)-.15 F -.25(va)-.25 G .196(luated \(see).25 F F1 .196 +(ARITHMETIC EV)2.696 F(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E F0(abo) +2.446 E -.15(ve)-.15 G 2.696(\). If).15 F(the last)144 492 Q F2(ar)2.83 +E(g)-.37 E F0 -.25(eva)2.72 G(luates to 0,).25 E F3(let)2.5 E F0 +(returns 1; 0 is returned otherwise.)2.5 E F3(local)108 508.8 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 520.8 S 2.56(re).15 G .06(ach ar)-2.56 F .06(gument, a local v)-.18 F .06(ariable named)-.25 F F2(name)2.92 E F0 .06(is created, and assigned)2.74 F F2(value)2.56 E F0 5.06(.T).18 G(he) --5.06 E F2(option)2.56 E F0 .06(can be)2.56 F(an)144 348 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 +-5.06 E F2(option)2.56 E F0 .06(can be)2.56 F(an)144 532.8 Q 3.153(yo) +-.15 G 3.153(ft)-3.153 G .653(he options accepted by)-3.153 F F3(declar) +3.153 E(e)-.18 E F0 5.652(.W)C(hen)-5.652 E F3(local)3.152 E F0 .652 (is used within a function, it causes the v)3.152 F(ari-)-.25 E(able)144 -360 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 F2(name)2.921 E F0 .421(is \255, the set)2.921 F 1.461 -(of shell options is made local to the function in which)144 372 R F1 -(local)3.961 E F0 1.462(is in)3.961 F -.2(vo)-.4 G -.1(ke).2 G 1.462 -(d: shell options changed).1 F 1.563(using the)144 384 R F1(set)4.063 E -F0 -.2(bu)4.063 G 1.563 -(iltin inside the function are restored to their original v).2 F 1.562 -(alues when the function)-.25 F 3.743(returns. W)144 396 R 1.243 -(ith no operands,)-.4 F F1(local)3.743 E F0 1.243 -(writes a list of local v)3.743 F 1.244 -(ariables to the standard output.)-.25 F 1.244(It is an)6.244 F .42 -(error to use)144 408 R F1(local)2.92 E F0 .42 +544.8 Q F2(name)3.281 E F0 .421(to ha)3.101 F .721 -.15(ve a v)-.2 H +.422(isible scope restricted to that function and its children.).15 F +(If)5.422 E F2(name)2.922 E F0 .422(is \255, the set)2.922 F 1.461 +(of shell options is made local to the function in which)144 556.8 R F3 +(local)3.961 E F0 1.461(is in)3.961 F -.2(vo)-.4 G -.1(ke).2 G 1.461 +(d: shell options changed).1 F 1.562(using the)144 568.8 R F3(set)4.062 +E F0 -.2(bu)4.062 G 1.563 +(iltin inside the function are restored to their original v).2 F 1.563 +(alues when the function)-.25 F 3.744(returns. W)144 580.8 R 1.244 +(ith no operands,)-.4 F F3(local)3.744 E F0 1.244 +(writes a list of local v)3.744 F 1.243 +(ariables to the standard output.)-.25 F 1.243(It is an)6.243 F .42 +(error to use)144 592.8 R F3(local)2.92 E F0 .42 (when not within a function.)2.92 F .42(The return status is 0 unless) -5.42 F F1(local)2.92 E F0 .42(is used outside a)2.92 F(function, an in) -144 420 Q -.25(va)-.4 G(lid).25 E F2(name)2.86 E F0(is supplied, or)2.68 -E F2(name)2.5 E F0(is a readonly v)2.5 E(ariable.)-.25 E F1(logout)108 -436.8 Q F0(Exit a login shell.)144 436.8 Q F1(map\214le)108 453.6 Q F0 -([)2.5 E F1A F2(delim)2.5 E F0 2.5(][)C F1-2.5 E F2(count) -2.5 E F0 2.5(][)C F1-2.5 E F2(origin)2.5 E F0 2.5(][)C F1 --2.5 E F2(count)2.5 E F0 2.5(][)C F1-2.5 E F0 2.5(][)C F1 --2.5 E F2(fd)2.5 E F0 2.5(][)C F1-2.5 E F2(callbac)2.5 E(k)-.2 E -F0 2.5(][)C F1-2.5 E F2(quantum)2.5 E F0 2.5(][)C F2(arr)-2.5 E -(ay)-.15 E F0(])A F1 -.18(re)108 465.6 S(adarray).18 E F0([)2.5 E F1 -A F2(delim)2.5 E F0 2.5(][)C F1-2.5 E F2(count)2.5 E F0 2.5 -(][)C F1-2.5 E F2(origin)2.5 E F0 2.5(][)C F1-2.5 E F2 -(count)2.5 E F0 2.5(][)C F1-2.5 E F0 2.5(][)C F1-2.5 E F2 -(fd)2.5 E F0 2.5(][)C F1-2.5 E F2(callbac)2.5 E(k)-.2 E F0 2.5(][) -C F1-2.5 E F2(quantum)2.5 E F0 2.5(][)C F2(arr)-2.5 E(ay)-.15 E F0 -(])A .35(Read lines from the standard input into the inde)144 477.6 R +5.42 F F3(local)2.92 E F0 .42(is used outside a)2.92 F(function, an in) +144 604.8 Q -.25(va)-.4 G(lid).25 E F2(name)2.86 E F0(is supplied, or) +2.68 E F2(name)2.5 E F0(is a readonly v)2.5 E(ariable.)-.25 E F3(logout) +108 621.6 Q F0(Exit a login shell.)144 621.6 Q F3(map\214le)108 638.4 Q +F0([)2.5 E F3A F2(delim)2.5 E F0 2.5(][)C F3-2.5 E F2(count) +2.5 E F0 2.5(][)C F3-2.5 E F2(origin)2.5 E F0 2.5(][)C F3 +-2.5 E F2(count)2.5 E F0 2.5(][)C F3-2.5 E F0 2.5(][)C F3 +-2.5 E F2(fd)2.5 E F0 2.5(][)C F3-2.5 E F2(callbac)2.5 E(k)-.2 E +F0 2.5(][)C F3-2.5 E F2(quantum)2.5 E F0 2.5(][)C F2(arr)-2.5 E +(ay)-.15 E F0(])A F3 -.18(re)108 650.4 S(adarray).18 E F0([)2.5 E F3 +A F2(delim)2.5 E F0 2.5(][)C F3-2.5 E F2(count)2.5 E F0 2.5 +(][)C F3-2.5 E F2(origin)2.5 E F0 2.5(][)C F3-2.5 E F2 +(count)2.5 E F0 2.5(][)C F3-2.5 E F0 2.5(][)C F3-2.5 E F2 +(fd)2.5 E F0 2.5(][)C F3-2.5 E F2(callbac)2.5 E(k)-.2 E F0 2.5(][) +C F3-2.5 E F2(quantum)2.5 E F0 2.5(][)C F2(arr)-2.5 E(ay)-.15 E F0 +(])A .351(Read lines from the standard input into the inde)144 662.4 R -.15(xe)-.15 G 2.851(da).15 G .351(rray v)-2.851 F(ariable)-.25 E F2 -(arr)2.851 E(ay)-.15 E F0 2.851(,o).32 G 2.851(rf)-2.851 G .351 -(rom \214le descriptor)-2.851 F F2(fd)2.851 E F0 1.249(if the)144 489.6 -R F13.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 F2(arr)3.748 E(ay)-.15 E F0 6.248(.O)C 1.248(ptions, if supplied,) --6.248 F(ha)144 501.6 Q .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F1144 513.6 Q F0 .91 -(The \214rst character of)180 513.6 R F2(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 F2(delim)180 525.6 Q F0(is the empty string,)2.5 E F1 +(arr)2.85 E(ay)-.15 E F0 2.85(,o).32 G 2.85(rf)-2.85 G .35 +(rom \214le descriptor)-2.85 F F2(fd)2.85 E F0 1.248(if the)144 674.4 R +F33.748 E F0 1.248(option is supplied.)3.748 F 1.249(The v)6.249 F +(ariable)-.25 E F1(MAPFILE)3.749 E F0 1.249(is the def)3.499 F(ault)-.1 +E F2(arr)3.749 E(ay)-.15 E F0 6.249(.O)C 1.249(ptions, if supplied,) +-6.249 F(ha)144 686.4 Q .3 -.15(ve t)-.2 H(he follo).15 E +(wing meanings:)-.25 E F3144 698.4 Q F0 .911 +(The \214rst character of)180 698.4 R F2(delim)3.411 E F0 .911 +(is used to terminate each input line, rather than ne)3.411 F 3.41 +(wline. If)-.25 F F2(delim)180 710.4 Q F0(is the empty string,)2.5 E F3 (map\214le)2.5 E F0(will terminate a line when it reads a NUL character) -2.5 E(.)-.55 E F1144 537.6 Q F0(Cop)180 537.6 Q 2.5(ya)-.1 G 2.5 -(tm)-2.5 G(ost)-2.5 E F2(count)2.7 E F0 2.5(lines. If)3.18 F F2(count) -2.5 E F0(is 0, all lines are copied.)2.5 E F1144 549.6 Q F0(Be)180 -549.6 Q(gin assigning to)-.15 E F2(arr)2.83 E(ay)-.15 E F0(at inde)2.82 -E(x)-.15 E F2(origin)2.5 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 F1144 561.6 Q F0 -(Discard the \214rst)180 561.6 Q F2(count)2.5 E F0(lines read.)2.5 E F1 -144 573.6 Q F0(Remo)180 573.6 Q .3 -.15(ve a t)-.15 H(railing).15 -E F2(delim)2.5 E F0(\(def)2.5 E(ault ne)-.1 E -(wline\) from each line read.)-.25 E F1144 585.6 Q F0 -(Read lines from \214le descriptor)180 585.6 Q F2(fd)2.5 E F0 -(instead of the standard input.)2.5 E F1144 597.6 Q F0(Ev)180 -597.6 Q(aluate)-.25 E F2(callbac)2.7 E(k)-.2 E F0(each time)3.17 E F2 -(quantum)2.5 E F0(lines are read.)2.5 E(The)5 E F12.5 E F0 -(option speci\214es)2.5 E F2(quantum)2.5 E F0(.).32 E F1144 609.6 -Q F0(Specify the number of lines read between each call to)180 609.6 Q -F2(callbac)2.5 E(k)-.2 E F0(.).67 E(If)144 626.4 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 -(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 638.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 650.4 R(guments.)-.18 E F2(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 662.4 Q -(If not supplied with an e)144 679.2 Q(xplicit origin,)-.15 E F1 -(map\214le)2.5 E F0(will clear)2.5 E F2(arr)2.5 E(ay)-.15 E F0 -(before assigning to it.)2.5 E F1(map\214le)144 696 Q F0 1.905 -(returns successfully unless an in)4.405 F -.25(va)-.4 G 1.905 -(lid option or option ar).25 F 1.906(gument is supplied,)-.18 F F2(arr) -4.406 E(ay)-.15 E F0(is)4.406 E(in)144 708 Q -.25(va)-.4 G -(lid or unassignable, or if).25 E F2(arr)2.5 E(ay)-.15 E F0 -(is not an inde)2.5 E -.15(xe)-.15 G 2.5(da).15 G(rray)-2.5 E(.)-.65 E -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(65)192.895 E 0 Cg EP +2.5 E(.)-.55 E(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(65) +185.955 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/F1 10/Times-Bold@0 -SF(popd)108 84 Q F0<5bad>2.5 E F1(n)A 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(Remo)144 96 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 108 R F1(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 120 Q F1144 132 Q F0 -.551(Suppresses the normal change of directory when remo)180 132 R .551 +SF144 84 Q F0(Cop)180 84 Q 2.5(ya)-.1 G 2.5(tm)-2.5 G(ost)-2.5 E +/F2 10/Times-Italic@0 SF(count)2.7 E F0 2.5(lines. If)3.18 F F2(count) +2.5 E F0(is 0, all lines are copied.)2.5 E F1144 96 Q F0(Be)180 96 +Q(gin assigning to)-.15 E F2(arr)2.83 E(ay)-.15 E F0(at inde)2.82 E(x) +-.15 E F2(origin)2.5 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 F1144 108 Q F0(Discard the \214rst) +180 108 Q F2(count)2.5 E F0(lines read.)2.5 E F1144 120 Q F0(Remo) +180 120 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 132 +Q F0(Read lines from \214le descriptor)180 132 Q F2(fd)2.5 E F0 +(instead of the standard input.)2.5 E F1144 144 Q F0(Ev)180 144 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.5 E F0(.).32 E F1144 156 Q +F0(Specify the number of lines read between each call to)180 156 Q F2 +(callbac)2.5 E(k)-.2 E F0(.).67 E(If)144 172.8 Q F12.967 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 +(callbac)2.967 E(k)-.2 E F0 .467(is e)2.967 F -.25(va)-.25 G .467 +(luated, it is sup-).25 F .262(plied the inde)144 184.8 R 2.762(xo)-.15 +G 2.762(ft)-2.762 G .262(he ne)-2.762 F .261(xt array element to be ass\ +igned and the line to be assigned to that element)-.15 F .274 +(as additional ar)144 196.8 R(guments.)-.18 E F2(callbac)5.274 E(k)-.2 E +F0 .274(is e)2.774 F -.25(va)-.25 G .274 +(luated after the line is read b).25 F .275 +(ut before the array element is)-.2 F(assigned.)144 208.8 Q +(If not supplied with an e)144 225.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 242.4 Q F0 1.906 +(returns successfully unless an in)4.406 F -.25(va)-.4 G 1.905 +(lid option or option ar).25 F 1.905(gument is supplied,)-.18 F F2(arr) +4.405 E(ay)-.15 E F0(is)4.405 E(in)144 254.4 Q -.25(va)-.4 G +(lid or unassignable, or if).25 E F2(arr)2.5 E(ay)-.15 E F0 +(is not an inde)2.5 E -.15(xe)-.15 G 2.5(da).15 G(rray)-2.5 E(.)-.65 E +F1(popd)108 271.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 283.2 Q -.15(ve)-.15 G 2.799 +(se).15 G .299(ntries from the directory stack.)-2.799 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 .3(he top directory from the)-2.799 F 1.479(stack, and performs a)144 +295.2 R F1(cd)3.979 E F0 1.479(to the ne)3.979 F 3.979(wt)-.25 G 1.479 +(op directory)-3.979 F 6.479(.A)-.65 G -.18(rg)-6.479 G 1.478 +(uments, if supplied, ha).18 F 1.778 -.15(ve t)-.2 H 1.478(he follo).15 +F(wing)-.25 E(meanings:)144 307.2 Q F1144 319.2 Q F0 .551 +(Suppresses the normal change of directory when remo)180 319.2 R .551 (ving directories from the stack, so)-.15 F -(that only the stack is manipulated.)180 144 Q F1(+)144 156 Q F2(n)A F0 -(Remo)180 156 Q -.15(ve)-.15 G 2.64(st).15 G(he)-2.64 E F2(n)2.64 E F0 -.14(th entry counting from the left of the list sho)B .14(wn by)-.25 F -F1(dirs)2.64 E F0 2.64(,s)C .14(tarting with zero.)-2.64 F -.15(Fo)180 -168 S 2.5(re).15 G(xample:)-2.65 E/F3 10/Courier@0 SF(popd +0)2.5 E F0 +(that only the stack is manipulated.)180 331.2 Q F1(+)144 343.2 Q F2(n)A +F0(Remo)180 343.2 Q -.15(ve)-.15 G 2.64(st).15 G(he)-2.64 E F2(n)2.64 E +F0 .14(th entry counting from the left of the list sho)B .14(wn by)-.25 +F F1(dirs)2.64 E F0 2.64(,s)C .14(tarting with zero.)-2.64 F -.15(Fo)180 +355.2 S 2.5(re).15 G(xample:)-2.65 E/F3 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 180 Q F2(n)A F0 -(Remo)180 180 Q -.15(ve)-.15 G 3.76(st).15 G(he)-3.76 E F2(n)3.76 E F0 -1.259(th entry counting from the right of the list sho)B 1.259(wn by) --.25 F F1(dirs)3.759 E F0 3.759(,s)C 1.259(tarting with)-3.759 F 2.5 -(zero. F)180 192 R(or e)-.15 E(xample:)-.15 E F3(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 208.8 -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 220.8 R .416(alse if an in)-.1 F +-.65 E F3(popd +1)2.5 E F0(the second.)2.5 E F1144 367.2 Q F2(n)A F0 +(Remo)180 367.2 Q -.15(ve)-.15 G 3.759(st).15 G(he)-3.759 E F2(n)3.759 E +F0 1.259(th entry counting from the right of the list sho)B 1.26(wn by) +-.25 F F1(dirs)3.76 E F0 3.76(,s)C 1.26(tarting with)-3.76 F 2.5 +(zero. F)180 379.2 R(or e)-.15 E(xample:)-.15 E F3(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 .644(If the)144 +396 R F1(popd)3.144 E F0 .644(command is successful, a)3.144 F F1(dirs) +3.143 E F0 .643(is performed as well, and the return status is 0.)3.143 +F F1(popd)5.643 E F0 .415(returns f)144 408 R .415(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 232.8 Q -(ails.)-.1 E F1(printf)108 249.6 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 1.436 -(Write the formatted)144 261.6 R F2(ar)3.936 E(guments)-.37 E F0 1.437 -(to the standard output under the control of the)3.936 F F2(format)3.937 -E F0 6.437(.T)C(he)-6.437 E F13.937 E F0 .126 -(option causes the output to be assigned to the v)144 273.6 R(ariable) +(lid option is encountered, the directory stack is empty).25 F 2.916 +(,an)-.65 G(on-e)-2.916 E .416(xistent direc-)-.15 F +(tory stack entry is speci\214ed, or the directory change f)144 420 Q +(ails.)-.1 E F1(printf)108 436.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 1.437 +(Write the formatted)144 448.8 R F2(ar)3.937 E(guments)-.37 E F0 1.437 +(to the standard output under the control of the)3.937 F F2(format)3.936 +E F0 6.436(.T)C(he)-6.436 E F13.936 E F0 .126 +(option causes the output to be assigned to the v)144 460.8 R(ariable) -.25 E F2(var)2.626 E F0 .126(rather than being printed to the standard) -2.626 F(output.)144 285.6 Q(The)144 309.6 Q F2(format)3.017 E F0 .517(i\ +2.626 F(output.)144 472.8 Q(The)144 496.8 Q F2(format)3.018 E F0 .517(i\ s a character string which contains three types of objects: plain chara\ -cters, which are)3.017 F .704(simply copied to standard output, charact\ -er escape sequences, which are con)144 321.6 R -.15(ve)-.4 G .703 +cters, which are)3.018 F .704(simply copied to standard output, charact\ +er escape sequences, which are con)144 508.8 R -.15(ve)-.4 G .704 (rted and copied to).15 F .036(the standard output, and format speci\ -\214cations, each of which causes printing of the ne)144 333.6 R .037 -(xt successi)-.15 F -.15(ve)-.25 G F2(ar)144 345.6 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 357.6 Q -(xtensions:)-.15 E F1(%b)144 369.6 Q F0(causes)180 369.6 Q F1(printf) -2.595 E F0 .096(to e)2.595 F .096 +\214cations, each of which causes printing of the ne)144 520.8 R .036 +(xt successi)-.15 F -.15(ve)-.25 G F2(ar)144 532.8 Q(gument)-.37 E F0 +5.531(.I)C 3.031(na)-5.531 G .531(ddition to the standard)-3.031 F F2 +(printf)3.032 E F0 .532(\(1\) format speci\214cations,)B F1(printf)3.032 +E F0 .532(interprets the follo)3.032 F(w-)-.25 E(ing e)144 544.8 Q +(xtensions:)-.15 E F1(%b)144 556.8 Q F0(causes)180 556.8 Q F1(printf) +2.596 E F0 .096(to e)2.596 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 381.6 Q(ay as) --.1 E F1(echo \255e)2.5 E F0(.)A F1(%q)144 393.6 Q F0(causes)180 393.6 Q +2.596 E(gument)-.37 E F0 .095(in the)2.595 F(same w)180 568.8 Q(ay as) +-.1 E F1(echo \255e)2.5 E F0(.)A F1(%q)144 580.8 Q F0(causes)180 580.8 Q F1(printf)2.51 E F0 .01(to output the corresponding)2.51 F F2(ar)2.51 E (gument)-.37 E F0 .01(in a format that can be reused as shell)2.51 F -(input.)180 405.6 Q F1(%\()144 417.6 Q F2(datefmt)A F1(\)T)A F0(causes) -180 429.6 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 441.6 R F2 +(input.)180 592.8 Q F1(%\()144 604.8 Q F2(datefmt)A F1(\)T)A F0(causes) +180 616.8 Q F1(printf)4.404 E F0 1.904 +(to output the date-time string resulting from using)4.404 F F2(datefmt) +4.404 E F0 1.903(as a format)4.404 F .38(string for)180 628.8 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 .457(of seconds since the epoch.)180 -453.6 R -1 -.8(Tw o)5.458 H .458(special ar)3.758 F .458(gument v)-.18 F -.458(alues may be used: -1 represents the)-.25 F .848 -(current time, and -2 represents the time the shell w)180 465.6 R .847 -(as in)-.1 F -.2(vo)-.4 G -.1(ke).2 G 3.347(d. If).1 F .847(no ar)3.347 -F .847(gument is speci-)-.18 F .354(\214ed, con)180 477.6 R -.15(ve)-.4 -G .354(rsion beha).15 F -.15(ve)-.2 G 2.854(sa).15 G 2.854(si)-2.854 G -2.854(f-)-2.854 G 2.854(1h)-2.854 G .354(ad been gi)-2.854 F -.15(ve) --.25 G 2.854(n. This).15 F .355(is an e)2.854 F .355 -(xception to the usual)-.15 F F1(printf)2.855 E F0(beha)180 489.6 Q -(vior)-.2 E(.)-.55 E(Ar)144 506.4 Q .464(guments to non-string format s\ -peci\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 518.4 +(ger representing the number)-.15 F .458(of seconds since the epoch.)180 +640.8 R -1 -.8(Tw o)5.458 H .458(special ar)3.758 F .458(gument v)-.18 F +.458(alues may be used: -1 represents the)-.25 F .847 +(current time, and -2 represents the time the shell w)180 652.8 R .847 +(as in)-.1 F -.2(vo)-.4 G -.1(ke).2 G 3.348(d. If).1 F .848(no ar)3.348 +F .848(gument is speci-)-.18 F .355(\214ed, con)180 664.8 R -.15(ve)-.4 +G .355(rsion beha).15 F -.15(ve)-.2 G 2.855(sa).15 G 2.855(si)-2.855 G +2.855(f-)-2.855 G 2.855(1h)-2.855 G .354(ad been gi)-2.855 F -.15(ve) +-.25 G 2.854(n. This).15 F .354(is an e)2.854 F .354 +(xception to the usual)-.15 F F1(printf)2.854 E F0(beha)180 676.8 Q +(vior)-.2 E(.)-.55 E(Ar)144 693.6 Q .463(guments to non-string format s\ +peci\214ers are treated as C constants, e)-.18 F .464 +(xcept that a leading plus or)-.15 F 1.259(minus sign is allo)144 705.6 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 530.4 Q(alue of the follo) --.25 E(wing character)-.25 E(.)-.55 E(The)144 547.2 Q F2(format)3.424 E -F0 .923(is reused as necessary to consume all of the)3.424 F F2(ar)3.423 -E(guments)-.37 E F0 5.923(.I)C 3.423(ft)-5.923 G(he)-3.423 E F2(format) -3.423 E F0 .923(requires more)3.423 F F2(ar)144 559.2 Q(guments)-.37 E -F0 .033(than are supplied, the e)2.533 F .033 -(xtra format speci\214cations beha)-.15 F .333 -.15(ve a)-.2 H 2.533(si) -.15 G 2.533(faz)-2.533 G .033(ero v)-2.533 F .034(alue or null string,) --.25 F(as appropriate, had been supplied.)144 571.2 Q(The return v)5 E -(alue is zero on success, non-zero on f)-.25 E(ailure.)-.1 E F1(pushd) -108 588 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 600 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 direc\ -tory stack, or rotates the stack, making the ne)144 612 R 3.139(wt)-.25 -G .639(op of the)-3.139 F .416(stack the current w)144 624 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 636 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 648 Q F1 -144 660 Q F0 1.811(Suppresses the normal change of directory when\ - rotating or adding directories to the)180 660 R -(stack, so that only the stack is manipulated.)180 672 Q F1(+)144 684 Q -F2(n)A F0 1.268(Rotates the stack so that the)180 684 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 696 Q F0 2.5(,s)C -(tarting with zero\) is at the top.)-2.5 E F1144 708 Q F2(n)A F0 .92 -(Rotates the stack so that the)180 708 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 720 Q F0 2.5(,s)C(tarting with zero\) is at the top.)-2.5 -E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(66)192.895 E 0 Cg EP +-.25 F 1.258(alue is the)-.25 F(ASCII v)144 717.6 Q(alue of the follo) +-.25 E(wing character)-.25 E(.)-.55 E(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(66)185.955 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-Italic@0 SF(dir)144.35 84 Q F0(Adds)180 84 Q F1(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 96 Q(gument to the)-.18 E/F2 10 -/Times-Bold@0 SF(cd)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .488(If the)144 -112.8 R F2(pushd)2.988 E F0 .488(command is successful, a)2.988 F F2 -(dirs)2.988 E F0 .488(is performed as well.)2.988 F .489 -(If the \214rst form is used,)5.488 F F2(pushd)2.989 E F0 1.04 -(returns 0 unless the cd to)144 124.8 R F1(dir)3.89 E F0 -.1(fa)4.27 G -3.539(ils. W).1 F 1.039(ith the second form,)-.4 F F2(pushd)3.539 E F0 -1.039(returns 0 unless the directory)3.539 F .846(stack is empty)144 -136.8 R 3.346(,an)-.65 G(on-e)-3.346 E .847(xistent directory stack ele\ -ment is speci\214ed, or the directory change to the)-.15 F -(speci\214ed ne)144 148.8 Q 2.5(wc)-.25 G(urrent directory f)-2.5 E -(ails.)-.1 E F2(pwd)108 165.6 Q F0([)2.5 E F2(\255LP)A F0(])A .845 -(Print the absolute pathname of the current w)144 177.6 R .845 -(orking directory)-.1 F 5.844(.T)-.65 G .844 -(he pathname printed contains no)-5.844 F .181(symbolic links if the)144 -189.6 R F22.681 E F0 .181(option is supplied or the)2.681 F F2 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(The)144 84 Q/F1 10 +/Times-Italic@0 SF(format)3.423 E F0 .923 +(is reused as necessary to consume all of the)3.423 F F1(ar)3.423 E +(guments)-.37 E F0 5.923(.I)C 3.423(ft)-5.923 G(he)-3.423 E F1(format) +3.423 E F0 .924(requires more)3.424 F F1(ar)144 96 Q(guments)-.37 E F0 +.033(than are supplied, the e)2.534 F .033 +(xtra format speci\214cations beha)-.15 F .333 -.15(ve a)-.2 H 2.533(si) +.15 G 2.533(faz)-2.533 G .033(ero v)-2.533 F .033(alue or null string,) +-.25 F(as appropriate, had been supplied.)144 108 Q(The return v)5 E +(alue is zero on success, non-zero on f)-.25 E(ailure.)-.1 E/F2 10 +/Times-Bold@0 SF(pushd)108 124.8 Q F0([)2.5 E F2A F0 2.5(][)C(+) +-2.5 E F1(n)A F0 2.5(][)C-2.5 E F1(n)A F0(])A F2(pushd)108 136.8 Q +F0([)2.5 E F2A F0 2.5(][)C F1(dir)-2.5 E F0(])A .639(Adds a direc\ +tory to the top of the directory stack, or rotates the stack, making th\ +e ne)144 148.8 R 3.14(wt)-.25 G .64(op of the)-3.14 F .417 +(stack the current w)144 160.8 R .416(orking directory)-.1 F 5.416(.W) +-.65 G .416(ith no ar)-5.816 F(guments,)-.18 E F2(pushd)2.916 E F0 -.15 +(ex)2.916 G .416(changes the top tw).15 F 2.916(od)-.1 G(irectories) +-2.916 E 1.625(and returns 0, unless the directory stack is empty)144 +172.8 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 184.8 Q F2144 196.8 Q F0 1.811(Suppresses the normal change o\ +f directory when rotating or adding directories to the)180 196.8 R +(stack, so that only the stack is manipulated.)180 208.8 Q F2(+)144 +220.8 Q F1(n)A F0 1.267(Rotates the stack so that the)180 220.8 R F1(n) +3.767 E F0 1.268(th directory \(counting from the left of the list sho)B +1.268(wn by)-.25 F F2(dirs)180 232.8 Q F0 2.5(,s)C +(tarting with zero\) is at the top.)-2.5 E F2144 244.8 Q F1(n)A F0 +.92(Rotates the stack so that the)180 244.8 R F1(n)3.42 E F0 .92 +(th directory \(counting from the right of the list sho)B .92(wn by)-.25 +F F2(dirs)180 256.8 Q F0 2.5(,s)C(tarting with zero\) is at the top.) +-2.5 E F1(dir)144.35 268.8 Q F0(Adds)180 268.8 Q F1(dir)3.137 E F0 .287 +(to the directory stack at the top, making it the ne)3.517 F 2.788(wc) +-.25 G .288(urrent w)-2.788 F .288(orking directory as)-.1 F +(if it had been supplied as the ar)180 280.8 Q(gument to the)-.18 E F2 +(cd)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .489(If the)144 297.6 R F2(pushd) +2.989 E F0 .489(command is successful, a)2.989 F F2(dirs)2.988 E F0 .488 +(is performed as well.)2.988 F .488(If the \214rst form is used,)5.488 F +F2(pushd)2.988 E F0 1.039(returns 0 unless the cd to)144 309.6 R F1(dir) +3.889 E F0 -.1(fa)4.269 G 3.539(ils. W).1 F 1.039(ith the second form,) +-.4 F F2(pushd)3.54 E F0 1.04(returns 0 unless the directory)3.54 F .847 +(stack is empty)144 321.6 R 3.347(,an)-.65 G(on-e)-3.347 E .847(xistent\ + directory stack element is speci\214ed, or the directory change to the) +-.15 F(speci\214ed ne)144 333.6 Q 2.5(wc)-.25 G(urrent directory f)-2.5 +E(ails.)-.1 E F2(pwd)108 350.4 Q F0([)2.5 E F2(\255LP)A F0(])A .844 +(Print the absolute pathname of the current w)144 362.4 R .845 +(orking directory)-.1 F 5.845(.T)-.65 G .845 +(he pathname printed contains no)-5.845 F .182(symbolic links if the)144 +374.4 R F22.681 E F0 .181(option is supplied or the)2.681 F F2 .181(\255o ph)2.681 F(ysical)-.15 E F0 .181(option to the)2.681 F F2 -(set)2.681 E F0 -.2(bu)2.681 G .182(iltin command is).2 F 3.264 -(enabled. If)144 201.6 R(the)3.264 E F23.264 E F0 .763 -(option is used, the pathname printed may contain symbolic links.)3.264 -F .763(The return)5.763 F 1.36(status is 0 unless an error occurs while\ - reading the name of the current directory or an in)144 213.6 R -.25(va) --.4 G(lid).25 E(option is supplied.)144 225.6 Q F2 -.18(re)108 242.4 S -(ad).18 E F0([)3.817 E F2(\255ers)A F0 3.817(][)C F2-3.817 E F1 -(aname)3.817 E F0 3.817(][)C F2-3.817 E F1(delim)3.817 E F0 3.817 -(][)C F2-3.817 E F1(te)3.817 E(xt)-.2 E F0 3.817(][)C F2 --3.817 E F1(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F2-3.816 E -F1(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F2-3.816 E F1(pr) -3.816 E(ompt)-.45 E F0 3.816(][)C F2-3.816 E F1(timeout)3.816 E F0 -3.816(][)C F2-3.816 E F1(fd)3.816 E F0(])A([)108 254.4 Q F1(name)A +(set)2.681 E F0 -.2(bu)2.681 G .181(iltin command is).2 F 3.263 +(enabled. If)144 386.4 R(the)3.263 E F23.263 E F0 .763 +(option is used, the pathname printed may contain symbolic links.)3.263 +F .764(The return)5.764 F 1.36(status is 0 unless an error occurs while\ + reading the name of the current directory or an in)144 398.4 R -.25(va) +-.4 G(lid).25 E(option is supplied.)144 410.4 Q F2 -.18(re)108 427.2 S +(ad).18 E F0([)3.816 E F2(\255ers)A F0 3.816(][)C F2-3.816 E F1 +(aname)3.816 E F0 3.816(][)C F2-3.816 E F1(delim)3.816 E F0 3.816 +(][)C F2-3.816 E F1(te)3.816 E(xt)-.2 E F0 3.816(][)C F2 +-3.816 E F1(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.817(][)C F2-3.817 E +F1(nc)3.817 E(har)-.15 E(s)-.1 E F0 3.817(][)C F2-3.817 E F1(pr) +3.817 E(ompt)-.45 E F0 3.817(][)C F2-3.817 E F1(timeout)3.817 E F0 +3.817(][)C F2-3.817 E F1(fd)3.817 E F0(])A([)108 439.2 Q F1(name)A F0(...])2.5 E .516(One line is read from the standard input, or from th\ -e \214le descriptor)144 266.4 R F1(fd)3.016 E F0 .516(supplied as an ar) -3.016 F .517(gument to)-.18 F(the)144 278.4 Q F23.848 E F0 1.348 -(option, split into w)3.848 F 1.348(ords as described abo)-.1 F 1.647 --.15(ve u)-.15 H(nder).15 E F2 -.75(Wo)3.847 G 1.347(rd Splitting).75 F -F0 3.847(,a)C 1.347(nd the \214rst w)-3.847 F 1.347(ord is)-.1 F 1.465 -(assigned to the \214rst)144 290.4 R F1(name)3.965 E F0 3.965(,t).18 G +e \214le descriptor)144 451.2 R F1(fd)3.016 E F0 .516(supplied as an ar) +3.016 F .516(gument to)-.18 F(the)144 463.2 Q F23.847 E F0 1.347 +(option, split into w)3.847 F 1.347(ords as described abo)-.1 F 1.648 +-.15(ve u)-.15 H(nder).15 E F2 -.75(Wo)3.848 G 1.348(rd Splitting).75 F +F0 3.848(,a)C 1.348(nd the \214rst w)-3.848 F 1.348(ord is)-.1 F 1.465 +(assigned to the \214rst)144 475.2 R F1(name)3.965 E F0 3.965(,t).18 G 1.465(he second w)-3.965 F 1.465(ord to the second)-.1 F F1(name)3.965 E F0 3.965(,a).18 G 1.465(nd so on.)-3.965 F 1.465(If there are more)6.465 -F -.1(wo)144 302.4 S 1.112(rds than names, the remaining w).1 F 1.112 +F -.1(wo)144 487.2 S 1.112(rds than names, the remaining w).1 F 1.112 (ords and their interv)-.1 F 1.112 -(ening delimiters are assigned to the last)-.15 F F1(name)144 314.4 Q F0 -5.722(.I).18 G 3.222(ft)-5.722 G .722(here are fe)-3.222 F .722(wer w) --.25 F .723 +(ening delimiters are assigned to the last)-.15 F F1(name)144 499.2 Q F0 +5.723(.I).18 G 3.223(ft)-5.723 G .723(here are fe)-3.223 F .723(wer w) +-.25 F .722 (ords read from the input stream than names, the remaining names are)-.1 -F .532(assigned empty v)144 326.4 R 3.032(alues. The)-.25 F .532 -(characters in)3.032 F/F3 9/Times-Bold@0 SF(IFS)3.032 E F0 .531 -(are used to split the line into w)2.782 F .531(ords using the same)-.1 -F .197(rules the shell uses for e)144 338.4 R .197 +F .531(assigned empty v)144 511.2 R 3.031(alues. The)-.25 F .531 +(characters in)3.031 F/F3 9/Times-Bold@0 SF(IFS)3.031 E F0 .532 +(are used to split the line into w)2.781 F .532(ords using the same)-.1 +F .197(rules the shell uses for e)144 523.2 R .197 (xpansion \(described abo)-.15 F .497 -.15(ve u)-.15 H(nder).15 E F2 --.75(Wo)2.697 G .197(rd Splitting).75 F F0 2.697(\). The)B .197 -(backslash charac-)2.697 F .157(ter \()144 350.4 R F2(\\)A F0 2.657(\)m) -C .157(ay be used to remo)-2.657 F .457 -.15(ve a)-.15 H .457 -.15(ny s) -.15 H .157(pecial meaning for the ne).15 F .156 +-.75(Wo)2.697 G .197(rd Splitting).75 F F0 2.697(\). The)B .196 +(backslash charac-)2.697 F .156(ter \()144 535.2 R F2(\\)A F0 2.656(\)m) +C .156(ay be used to remo)-2.656 F .457 -.15(ve a)-.15 H .457 -.15(ny s) +.15 H .157(pecial meaning for the ne).15 F .157 (xt character read and for line continu-)-.15 F 2.5(ation. Options,)144 -362.4 R(if supplied, ha)2.5 E .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F2144 374.4 Q F1(aname)2.5 E F0 1.049 -(The w)180 386.4 R 1.049 +547.2 R(if supplied, ha)2.5 E .3 -.15(ve t)-.2 H(he follo).15 E +(wing meanings:)-.25 E F2144 559.2 Q F1(aname)2.5 E F0 1.05(The w) +180 571.2 R 1.049 (ords are assigned to sequential indices of the array v)-.1 F(ariable) --.25 E F1(aname)3.55 E F0 3.55(,s).18 G 1.05(tarting at 0.)-3.55 F F1 -(aname)180.33 398.4 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5 -.25 -(ew va)-2.5 H(lues are assigned.).25 E(Other)5 E F1(name)2.5 E F0(ar)2.5 -E(guments are ignored.)-.18 E F2144 410.4 Q F1(delim)2.5 E F0 -1.318(The \214rst character of)180 422.4 R F1(delim)3.818 E F0 1.317 -(is used to terminate the input line, rather than ne)3.818 F 3.817 -(wline. If)-.25 F F1(delim)180 434.4 Q F0(is the empty string,)2.5 E F2 +-.25 E F1(aname)3.549 E F0 3.549(,s).18 G 1.049(tarting at 0.)-3.549 F +F1(aname)180.33 583.2 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 F1(name)2.5 E F0 +(ar)2.5 E(guments are ignored.)-.18 E F2144 595.2 Q F1(delim)2.5 E +F0 1.317(The \214rst character of)180 607.2 R F1(delim)3.817 E F0 1.317 +(is used to terminate the input line, rather than ne)3.817 F 3.818 +(wline. If)-.25 F F1(delim)180 619.2 Q F0(is the empty string,)2.5 E F2 -.18(re)2.5 G(ad).18 E F0 (will terminate a line when it reads a NUL character)2.5 E(.)-.55 E F2 -144 446.4 Q F0 .372 -(If the standard input is coming from a terminal,)180 446.4 R F2 -.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 458.4 R .218 +144 631.2 Q F0 .373 +(If the standard input is coming from a terminal,)180 631.2 R F2 -.18 +(re)2.873 G(adline).18 E F0(\(see)2.873 E F3(READLINE)2.872 E F0(abo) +2.622 E -.15(ve)-.15 G 2.872(\)i).15 G 2.872(su)-2.872 G(sed)-2.872 E +.218(to obtain the line.)180 643.2 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 470.4 Q -.15(ve)-.25 G 2.5(\)e).15 G(diting settings, b)-2.5 E +(acti)180 655.2 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 F2144 482.4 Q F1(te)2.5 E(xt) --.2 E F0(If)180 482.4 Q F2 -.18(re)2.715 G(adline).18 E F0 .216 -(is being used to read the line,)2.715 F F1(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 494.4 Q(gins.)-.15 E F2144 506.4 Q F1(nc)2.5 E -(har)-.15 E(s)-.1 E F2 -.18(re)180 518.4 S(ad).18 E F0 1.395 -(returns after reading)3.895 F F1(nc)3.895 E(har)-.15 E(s)-.1 E F0 1.395 -(characters rather than w)3.895 F 1.394(aiting for a complete line of) --.1 F(input, b)180 530.4 Q(ut honors a delimiter if fe)-.2 E(wer than) +(ault \214lename completion.)-.1 E F2144 667.2 Q F1(te)2.5 E(xt) +-.2 E F0(If)180 667.2 Q F2 -.18(re)2.716 G(adline).18 E F0 .216 +(is being used to read the line,)2.716 F F1(te)2.716 E(xt)-.2 E F0 .216 +(is placed into the editing b)2.716 F(uf)-.2 E .215(fer before edit-) +-.25 F(ing be)180 679.2 Q(gins.)-.15 E F2144 691.2 Q F1(nc)2.5 E +(har)-.15 E(s)-.1 E F2 -.18(re)180 703.2 S(ad).18 E F0 1.394 +(returns after reading)3.894 F F1(nc)3.894 E(har)-.15 E(s)-.1 E F0 1.395 +(characters rather than w)3.894 F 1.395(aiting for a complete line of) +-.1 F(input, b)180 715.2 Q(ut honors a delimiter if fe)-.2 E(wer than) -.25 E F1(nc)2.5 E(har)-.15 E(s)-.1 E F0 -(characters are read before the delimiter)2.5 E(.)-.55 E F2144 -542.4 Q F1(nc)2.5 E(har)-.15 E(s)-.1 E F2 -.18(re)180 554.4 S(ad).18 E -F0 1.269(returns after reading e)3.769 F(xactly)-.15 E F1(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 566.4 R F2 -.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 578.4 -R F2 -.18(re)3.503 G(ad).18 E F0 1.003(to return until)3.503 F F1(nc) -3.503 E(har)-.15 E(s)-.1 E F0 .609(characters are read.)180 590.4 R .608 -(The result is not split on the characters in)5.609 F F2(IFS)3.108 E F0 -3.108(;t)C .608(he intent is that the)-3.108 F -.25(va)180 602.4 S .669 -(riable is assigned e).25 F .669 -(xactly the characters read \(with the e)-.15 F .67 -(xception of backslash; see the)-.15 F F2180 614.4 Q F0 -(option belo)2.5 E(w\).)-.25 E F2144 626.4 Q F1(pr)2.5 E(ompt)-.45 -E F0(Display)180 638.4 Q F1(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 650.4 Q -2.5(yi)-.15 G 2.5(nput. The)-2.5 F -(prompt is displayed only if input is coming from a terminal.)2.5 E F2 -144 662.4 Q F0 .543(Backslash does not act as an escape character) -180 662.4 R 5.543(.T)-.55 G .544 -(he backslash is considered to be part of)-5.543 F(the line.)180 674.4 Q -(In particular)5 E 2.5(,ab)-.4 G(ackslash-ne)-2.5 E -(wline pair may not be used as a line continuation.)-.25 E F2144 -686.4 Q F0(Silent mode.)180 686.4 Q -(If input is coming from a terminal, characters are not echoed.)5 E F2 -144 698.4 Q F1(timeout)2.5 E F0(Cause)180 710.4 Q F2 -.18(re)2.929 -G(ad).18 E F0 .428(to time out and return f)2.929 F .428 -(ailure if a complete line of input \(or a speci\214ed num-)-.1 F .56 -(ber of characters\) is not read within)180 722.4 R F1(timeout)3.061 E -F0(seconds.)3.061 E F1(timeout)5.561 E F0 .561(may be a decimal number) -3.061 F(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(67)192.895 E 0 Cg -EP +(characters are read before the delimiter)2.5 E(.)-.55 E(GNU Bash 4.4)72 +768 Q(2017 December 28)136.795 E(67)185.955 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 -(with a fractional portion follo)180 84 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 -10/Times-Bold@0 SF -.18(re)2.5 G(ad).18 E F0 .506(is reading input from\ - a terminal, pipe, or other special \214le; it has no ef)180 96 R .506 -(fect when reading)-.25 F .59(from re)180 108 R .59(gular \214les.)-.15 -F(If)5.59 E F1 -.18(re)3.09 G(ad).18 E F0 .589(times out,)3.09 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 .589(artial input read into the speci\214ed).15 F --.25(va)180 120 S(riable).25 E/F2 10/Times-Italic@0 SF(name)2.77 E F0 -5.27(.I)C(f)-5.27 E F2(timeout)2.77 E F0 .27(is 0,)2.77 F F1 -.18(re) -2.77 G(ad).18 E F0 .27(returns immediately)2.77 F 2.77(,w)-.65 G .27 -(ithout trying to read an)-2.77 F 2.77(yd)-.15 G(ata.)-2.77 E 1.12 -(The e)180 132 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 144 R -.15(ex)2.5 G -(it status is greater than 128 if the timeout is e).15 E(xceeded.)-.15 E -F1144 156 Q F2(fd)2.5 E F0(Read input from \214le descriptor)180 -156 Q F2(fd)2.5 E F0(.)A .476(If no)144 172.8 R F2(names)3.336 E F0 .476 -(are supplied, the line read is assigned to the v)3.246 F(ariable)-.25 E -/F3 9/Times-Bold@0 SF(REPL)2.977 E(Y)-.828 E/F4 9/Times-Roman@0 SF(.)A -F0 .477(The e)4.977 F .477(xit status is zero,)-.15 F .773 -(unless end-of-\214le is encountered,)144 184.8 R F1 -.18(re)3.273 G(ad) -.18 E F0 .772 -(times out \(in which case the status is greater than 128\), a)3.273 F --.25(va)144 196.8 S 2.004 -(riable assignment error \(such as assigning to a readonly v).25 F 2.005 -(ariable\) occurs, or an in)-.25 F -.25(va)-.4 G 2.005(lid \214le).25 F -(descriptor is supplied as the ar)144 208.8 Q(gument to)-.18 E F1 -2.5 E F0(.)A F1 -.18(re)108 225.6 S(adonly).18 E F0([)2.5 E F1(\255aAf)A +(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(nc)2.5 E(har)-.15 E(s)-.1 E F1 +-.18(re)180 96 S(ad).18 E F0 1.269(returns after reading e)3.77 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.269(aiting for a complete)-.1 F .274 +(line of input, unless EOF is encountered or)180 108 R F1 -.18(re)2.775 +G(ad).18 E F0 .275(times out.)2.775 F .275(Delimiter characters encoun-) +5.275 F 1.003 +(tered in the input are not treated specially and do not cause)180 120 R +F1 -.18(re)3.502 G(ad).18 E F0 1.002(to return until)3.502 F F2(nc)3.502 +E(har)-.15 E(s)-.1 E F0 .608(characters are read.)180 132 R .608 +(The result is not split on the characters in)5.608 F F1(IFS)3.108 E F0 +3.108(;t)C .609(he intent is that the)-3.108 F -.25(va)180 144 S .67 +(riable is assigned e).25 F .669 +(xactly the characters read \(with the e)-.15 F .669 +(xception of backslash; see the)-.15 F F1180 156 Q F0(option belo) +2.5 E(w\).)-.25 E F1144 168 Q F2(pr)2.5 E(ompt)-.45 E F0(Display) +180 180 Q F2(pr)3.66 E(ompt)-.45 E F0 1.161(on standard error)3.66 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 192 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 204 Q F0 .544(Backslash does not act as an escape character) +180 204 R 5.543(.T)-.55 G .543(he backslash is considered to be part of) +-5.543 F(the line.)180 216 Q(In particular)5 E 2.5(,ab)-.4 G +(ackslash-ne)-2.5 E(wline pair may not be used as a line continuation.) +-.25 E F1144 228 Q F0(Silent mode.)180 228 Q +(If input is coming from a terminal, characters are not echoed.)5 E F1 +144 240 Q F2(timeout)2.5 E F0(Cause)180 252 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 264 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 276 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 +288 R .505(fect when reading)-.25 F .589(from re)180 300 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 312 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 324 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 +336 R -.15(ex)2.5 G(it status is greater than 128 if the timeout is e) +.15 E(xceeded.)-.15 E F1144 348 Q F2(fd)2.5 E F0 +(Read input from \214le descriptor)180 348 Q F2(fd)2.5 E F0(.)A .477 +(If no)144 364.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 376.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 388.8 S 2.004 +(riable assignment error \(such as assigning to a readonly v).25 F 2.004 +(ariable\) occurs, or an in)-.25 F -.25(va)-.4 G 2.004(lid \214le).25 F +(descriptor is supplied as the ar)144 400.8 Q(gument to)-.18 E F1 +2.5 E F0(.)A F1 -.18(re)108 417.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 237.6 R -.15(ve)-.25 G +(d)-.37 E F0 2.5(].)C(..])-2.5 E .77(The gi)144 429.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.096(quent assignment.)144 249.6 R -1.096(If the)6.096 F F13.596 E F0 1.097 -(option is supplied, the functions corresponding to the)3.596 F F2 -(names)3.597 E F0 1.097(are so)3.597 F(mark)144 261.6 Q 3.334(ed. The) +(may not be changed by subse-)3.54 F 1.097(quent assignment.)144 441.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 453.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 .776(ables to associati)144 273.6 R 1.076 -.15(ve a)-.25 H 3.276 -(rrays. If).15 F .777(both options are supplied,)3.276 F F13.277 E -F0(tak)3.277 E .777(es precedence.)-.1 F .777(If no)5.777 F F2(name) -3.637 E F0(ar)3.457 E(gu-)-.18 E .522(ments are gi)144 285.6 R -.15(ve) +-.25 E .777(ables to associati)144 465.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 477.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 -.521(The other)5.521 F .295(options may be used to restrict the output \ -to a subset of the set of readonly names.)144 297.6 R(The)5.296 E F1 -2.796 E F0(option)2.796 E .786 +.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 489.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 309.6 R .786(If a v)5.786 F .785(ariable name is fol-)-.25 F(lo)144 -321.6 Q .717(wed by =)-.25 F F2(wor)A(d)-.37 E F0 3.218(,t)C .718(he v) +144 501.6 R .786(If a v)5.786 F .786(ariable name is fol-)-.25 F(lo)144 +513.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 333.6 R F2(names)3.12 E F0 .26(is not a v)3.03 F .26(alid shell v) +144 525.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 345.6 Q F0 -(that is not a function.)2.68 E F1 -.18(re)108 362.4 S(tur).18 E(n)-.15 -E F0([)2.5 E F2(n)A F0(])A .02(Causes a function to stop e)144 374.4 R --.15(xe)-.15 G .02(cuting and return the v).15 F .021 -(alue speci\214ed by)-.25 F F2(n)2.881 E F0 .021(to its caller)2.761 F -5.021(.I)-.55 G(f)-5.021 E F2(n)2.881 E F0 .021(is omitted,)2.761 F .597 -(the return status is that of the last command e)144 386.4 R -.15(xe) --.15 G .596(cuted in the function body).15 F 5.596(.I)-.65 G(f)-5.596 E -F1 -.18(re)3.096 G(tur).18 E(n)-.15 E F0 .596(is e)3.096 F -.15(xe)-.15 -G(cuted).15 E 1.238(by a trap handler)144 398.4 R 3.738(,t)-.4 G 1.238 +(is supplied with a)2.76 F F2(name)144.36 537.6 Q F0 +(that is not a function.)2.68 E F1 -.18(re)108 554.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 566.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 578.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 1.239(by a trap handler)144 590.4 R 3.738(,t)-.4 G 1.238 (he last command used to determine the status is the last command e) --3.738 F -.15(xe)-.15 G(cuted).15 E 1.067(before the trap handler)144 -410.4 R 6.067(.i)-.55 G(f)-6.067 E F1 -.18(re)3.567 G(tur).18 E(n)-.15 E -F0 1.067(is e)3.567 F -.15(xe)-.15 G 1.067(cuted during a).15 F F1(DEB) -3.567 E(UG)-.1 E F0 1.067(trap, the last command used to)3.567 F .389 -(determine the status is the last command e)144 422.4 R -.15(xe)-.15 G -.389(cuted by the trap handler before).15 F F1 -.18(re)2.89 G(tur).18 E -(n)-.15 E F0 -.1(wa)2.89 G 2.89(si).1 G -1.9 -.4(nv o)-2.89 H -.1(ke).4 -G(d.).1 E(If)144 434.4 Q F1 -.18(re)2.584 G(tur).18 E(n)-.15 E F0 .084 -(is used outside a function, b)2.584 F .084(ut during e)-.2 F -.15(xe) --.15 G .084(cution of a script by the).15 F F1(.)2.584 E F0(\()5.084 E -F1(sour)A(ce)-.18 E F0 2.583(\)c)C .083(ommand, it)-2.583 F .588 -(causes the shell to stop e)144 446.4 R -.15(xe)-.15 G .588 -(cuting that script and return either).15 F F2(n)3.448 E F0 .589 -(or the e)3.329 F .589(xit status of the last com-)-.15 F .326(mand e) -144 458.4 R -.15(xe)-.15 G .326(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 .325 -(is supplied, the return v)2.826 F .325(alue is)-.25 F .444 -(its least signi\214cant 8 bits.)144 470.4 R .444 -(The return status is non-zero if)5.444 F F1 -.18(re)2.945 G(tur).18 E -(n)-.15 E F0 .445(is supplied a non-numeric ar)2.945 F(gu-)-.18 E .381 -(ment, or is used outside a function and not during e)144 482.4 R -.15 +-3.738 F -.15(xe)-.15 G(cuted).15 E 1.032(before the trap handler)144 +602.4 R 6.032(.I)-.55 G(f)-6.032 E F1 -.18(re)3.532 G(tur).18 E(n)-.15 E +F0 1.032(is e)3.532 F -.15(xe)-.15 G 1.032(cuted during a).15 F F1(DEB) +3.533 E(UG)-.1 E F0 1.033(trap, the last command used to)3.533 F .39 +(determine the status is the last command e)144 614.4 R -.15(xe)-.15 G +.389(cuted by the trap handler before).15 F F1 -.18(re)2.889 G(tur).18 E +(n)-.15 E F0 -.1(wa)2.889 G 2.889(si).1 G -1.9 -.4(nv o)-2.889 H -.1(ke) +.4 G(d.).1 E(If)144 626.4 Q F1 -.18(re)2.583 G(tur).18 E(n)-.15 E F0 +.084(is used outside a function, b)2.583 F .084(ut during e)-.2 F -.15 +(xe)-.15 G .084(cution of a script by the).15 F F1(.)2.584 E F0(\()5.084 +E F1(sour)A(ce)-.18 E F0 2.584(\)c)C .084(ommand, it)-2.584 F .589 +(causes the shell to stop e)144 638.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 650.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 662.4 R .444 +(The return status is non-zero if)5.445 F F1 -.18(re)2.944 G(tur).18 E +(n)-.15 E F0 .444(is supplied a non-numeric ar)2.944 F(gu-)-.18 E .381 +(ment, or is used outside a function and not during e)144 674.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.38(.A)C .68 -.15(ny c)-5.38 H(om-).15 E -.749(mand associated with the)144 494.4 R F1(RETURN)3.249 E F0 .749 +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 686.4 R F1(RETURN)3.249 E F0 .749 (trap is e)3.249 F -.15(xe)-.15 G .749(cuted before e).15 F -.15(xe)-.15 -G .75(cution resumes after the function).15 F(or script.)144 506.4 Q F1 -(set)108 523.2 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 535.2 Q F0([)2.5 E F1(+abefhkmnptuvxBCEHPT)A F0 -2.5(][)C F1(+o)-2.5 E F2(option\255name)2.5 E F0 2.5(][)C F2(ar)-2.5 E -(g)-.37 E F0(...])2.5 E -.4(Wi)144 547.2 S .836 -(thout options, the name and v).4 F .835(alue of each shell v)-.25 F -.835(ariable are displayed in a format that can be)-.25 F .784 -(reused as input for setting or resetting the currently-set v)144 559.2 -R 3.284(ariables. Read-only)-.25 F -.25(va)3.284 G .784 -(riables cannot be).25 F 2.912(reset. In)144 571.2 R F2(posix)2.912 E F0 -.412(mode, only shell v)2.912 F .412(ariables are listed.)-.25 F .412 -(The output is sorted according to the current)5.412 F 3.53 -(locale. When)144 583.2 R 1.031(options are speci\214ed, the)3.53 F -3.531(ys)-.15 G 1.031(et or unset shell attrib)-3.531 F 3.531(utes. An) --.2 F 3.531(ya)-.15 G -.18(rg)-3.531 G 1.031(uments remaining).18 F -1.624(after option processing are treated as v)144 595.2 R 1.623 -(alues for the positional parameters and are assigned, in)-.25 F(order) -144 607.2 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 619.2 Q -F0 1.377(Each v)184 619.2 R 1.377 -(ariable or function that is created or modi\214ed is gi)-.25 F -.15(ve) --.25 G 3.877(nt).15 G 1.377(he e)-3.877 F 1.378(xport attrib)-.15 F -1.378(ute and)-.2 F(mark)184 631.2 Q(ed for e)-.1 E(xport to the en)-.15 -E(vironment of subsequent commands.)-.4 E F1144 643.2 Q F0 .132 -(Report the status of terminated background jobs immediately)184 643.2 R -2.632(,r)-.65 G .131(ather than before the ne)-2.632 F(xt)-.15 E -(primary prompt.)184 655.2 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o) --.25 H(nly when job control is enabled.).15 E F1144 667.2 Q F0 -.087(Exit immediately if a)184 667.2 R F2(pipeline)2.587 E F0 .087 -(\(which may consist of a single)2.587 F F2 .088(simple command)2.588 F -F0 .088(\), a)B F2(list)2.588 E F0 2.588(,o)C(r)-2.588 E(a)184 679.2 Q -F2 1.521(compound command)4.021 F F0(\(see)4.021 E F3 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 .079(The shell does not e)184 -691.2 R .079(xit if the command that f)-.15 F .08 -(ails is part of the command list immediately)-.1 F(follo)184 703.2 Q -1.655(wing a)-.25 F F1(while)4.155 E F0(or)4.155 E F1(until)4.155 E F0 --.1(ke)4.155 G(yw)-.05 E 1.655(ord, part of the test follo)-.1 F 1.654 -(wing the)-.25 F F1(if)4.154 E F0(or)4.154 E F1(elif)4.154 E F0(reserv) -4.154 E(ed)-.15 E -.1(wo)184 715.2 S .581(rds, part of an).1 F 3.081(yc) --.15 G .581(ommand e)-3.081 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 .582(list e)3.082 F .582 -(xcept the command follo)-.15 F(wing)-.25 E .918(the \214nal)184 727.2 R -F1(&&)3.418 E F0(or)3.418 E F1(||)3.418 E F0 3.418(,a)C 1.218 -.15(ny c) --3.418 H .918(ommand in a pipeline b).15 F .917 -(ut the last, or if the command')-.2 F 3.417(sr)-.55 G(eturn)-3.417 E -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(68)192.895 E 0 Cg EP +G .749(cution resumes after the function).15 F(or script.)144 698.4 Q +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(68)185.955 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 -.25(va)184 84 S -.66(lue is being in).25 F -.15(ve)-.4 G .66(rted with).15 F/F1 10 -/Times-Bold@0 SF(!)3.16 E F0 5.661(.I)C 3.161(fac)-5.661 G .661 -(ompound command other than a subshell returns a)-3.161 F 1.113 -(non-zero status because a command f)184 96 R 1.112(ailed while)-.1 F F1 -3.612 E F0 -.1(wa)3.612 G 3.612(sb).1 G 1.112 -(eing ignored, the shell does)-3.612 F .177(not e)184 108 R 2.677 -(xit. A)-.15 F .177(trap on)2.677 F F1(ERR)2.677 E F0 2.677(,i)C 2.678 -(fs)-2.677 G .178(et, is e)-2.678 F -.15(xe)-.15 G .178 -(cuted before the shell e).15 F 2.678(xits. This)-.15 F .178 -(option applies to)2.678 F .618(the shell en)184 120 R .617 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(set)108 84 Q F0([)2.5 E F1(\255\255abefhkmnptuvxBCEHPT)A F0 2.5(][)C +F1-2.5 E/F2 10/Times-Italic@0 SF(option\255name)2.5 E F0 2.5(][)C +F2(ar)-2.5 E(g)-.37 E F0(...])2.5 E F1(set)108 96 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 108 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 120 R +3.284(ariables. Read-only)-.25 F -.25(va)3.284 G .783(riables cannot be) +.25 F 2.911(reset. In)144 132 R F2(posix)2.911 E F0 .412 +(mode, only shell v)2.912 F .412(ariables are listed.)-.25 F .412 +(The output is sorted according to the current)5.412 F 3.531 +(locale. When)144 144 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 1.623 +(after option processing are treated as v)144 156 R 1.624 +(alues for the positional parameters and are assigned, in)-.25 F(order) +144 168 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 180 Q F0 +1.378(Each v)184 180 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 192 Q(ed for e)-.1 E(xport to the en)-.15 E +(vironment of subsequent commands.)-.4 E F1144 204 Q F0 .131 +(Report the status of terminated background jobs immediately)184 204 R +2.632(,r)-.65 G .132(ather than before the ne)-2.632 F(xt)-.15 E +(primary prompt.)184 216 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o)-.25 +H(nly when job control is enabled.).15 E F1144 228 Q F0 .088 +(Exit immediately if a)184 228 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 240 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 +252 R .079(xit if the command that f)-.15 F .079 +(ails is part of the command list immediately)-.1 F(follo)184 264 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 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 276 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 288 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 300 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 312 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 324 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 336 R .617 (vironment and each subshell en)-.4 F .617(vironment separately \(see) --.4 F/F2 9/Times-Bold@0 SF .617(COMMAND EXE-)3.117 F .642(CUTION ENVIR) -184 132 R(ONMENT)-.27 E F0(abo)2.893 E -.15(ve)-.15 G .643 +-.4 F F3 .618(COMMAND EXE-)3.118 F .643(CUTION ENVIR)184 348 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 .643(cuting all).15 F(the commands in the subshell.)184 144 Q -2.042(If a compound command or shell function e)184 162 R -.15(xe)-.15 G +(xe)-.15 G .642(cuting all).15 F(the commands in the subshell.)184 360 Q +2.042(If a compound command or shell function e)184 378 R -.15(xe)-.15 G 2.042(cutes in a conte).15 F 2.042(xt where)-.15 F F14.542 E F0 -2.042(is being)4.542 F 1.435(ignored, none of the commands e)184 174 R --.15(xe)-.15 G 1.436(cuted within the compound command or function).15 F -.194(body will be af)184 186 R .194(fected by the)-.25 F F12.694 E +2.043(is being)4.543 F 1.436(ignored, none of the commands e)184 390 R +-.15(xe)-.15 G 1.435(cuted within the compound command or function).15 F +.193(body will be af)184 402 R .193(fected by the)-.25 F F12.693 E F0 .193(setting, e)2.693 F -.15(ve)-.25 G 2.693(ni).15 G(f)-2.693 E F1 -2.693 E F0 .193(is set and a command returns a f)2.693 F(ailure) --.1 E 3.39(status. If)184 198 R 3.39(ac)3.39 G .89 +2.693 E F0 .194(is set and a command returns a f)2.693 F(ailure) +-.1 E 3.39(status. If)184 414 R 3.39(ac)3.39 G .89 (ompound command or shell function sets)-3.39 F F13.39 E F0 .89 (while e)3.39 F -.15(xe)-.15 G .89(cuting in a conte).15 F(xt)-.15 E -(where)184 210 Q F13.154 E F0 .654 -(is ignored, that setting will not ha)3.154 F .953 -.15(ve a)-.2 H .953 --.15(ny e).15 H -.25(ff).15 G .653(ect until the compound command).25 F -(or the command containing the function call completes.)184 222 Q F1 -144 234 Q F0(Disable pathname e)184 234 Q(xpansion.)-.15 E F1 -144 246 Q F0 2.238(Remember the location of commands as the)184 -246 R 4.738(ya)-.15 G 2.239(re look)-4.738 F 2.239(ed up for e)-.1 F --.15(xe)-.15 G 4.739(cution. This).15 F(is)4.739 E(enabled by def)184 -258 Q(ault.)-.1 E F1144 270 Q F0 .514(All ar)184 270 R .514 +(where)184 426 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 438 Q F1 +144 450 Q F0(Disable pathname e)184 450 Q(xpansion.)-.15 E F1 +144 462 Q F0 2.239(Remember the location of commands as the)184 +462 R 4.738(ya)-.15 G 2.238(re look)-4.738 F 2.238(ed up for e)-.1 F +-.15(xe)-.15 G 4.738(cution. This).15 F(is)4.738 E(enabled by def)184 +474 Q(ault.)-.1 E F1144 486 Q F0 .513(All ar)184 486 R .514 (guments in the form of assignment statements are placed in the en)-.18 -F .513(vironment for a)-.4 F -(command, not just those that precede the command name.)184 282 Q F1 -144 294 Q F0 .148(Monitor mode.)184 294 R .148 -(Job control is enabled.)5.148 F .149(This option is on by def)5.148 F -.149(ault for interacti)-.1 F .449 -.15(ve s)-.25 H(hells).15 E .651 -(on systems that support it \(see)184 306 R F2 .651(JOB CONTR)3.151 F -(OL)-.27 E F0(abo)2.901 E -.15(ve)-.15 G 3.151(\). All).15 F .65 -(processes run in a separate)3.151 F .678(process group.)184 318 R .679 +F .514(vironment for a)-.4 F +(command, not just those that precede the command name.)184 498 Q F1 +144 510 Q F0 .149(Monitor mode.)184 510 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 522 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 534 R .678 (When a background job completes, the shell prints a line containing it\ -s)5.678 F -.15(ex)184 330 S(it status.).15 E F1144 342 Q F0 .653 -(Read commands b)184 342 R .653(ut do not e)-.2 F -.15(xe)-.15 G .653 -(cute them.).15 F .652(This may be used to check a shell script for) -5.653 F(syntax errors.)184 354 Q(This is ignored by interacti)5 E .3 --.15(ve s)-.25 H(hells.).15 E F1144 366 Q/F3 10/Times-Italic@0 SF -(option\255name)2.5 E F0(The)184 378 Q F3(option\255name)2.5 E F0 -(can be one of the follo)2.5 E(wing:)-.25 E F1(allexport)184 390 Q F0 -(Same as)224 402 Q F12.5 E F0(.)A F1(braceexpand)184 414 Q F0 -(Same as)224 426 Q F12.5 E F0(.)A F1(emacs)184 438 Q F0 .089 -(Use an emacs-style command line editing interf)224 438 R 2.589 +s)5.679 F -.15(ex)184 546 S(it status.).15 E F1144 558 Q F0 .652 +(Read commands b)184 558 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 570 Q(This is ignored by interacti)5 E .3 +-.15(ve s)-.25 H(hells.).15 E F1144 582 Q F2(option\255name)2.5 E +F0(The)184 594 Q F2(option\255name)2.5 E F0(can be one of the follo)2.5 +E(wing:)-.25 E F1(allexport)184 606 Q F0(Same as)224 618 Q F12.5 E +F0(.)A F1(braceexpand)184 630 Q F0(Same as)224 642 Q F12.5 E F0(.) +A F1(emacs)184 654 Q F0 .089 +(Use an emacs-style command line editing interf)224 654 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 450 R -.15(ve)-.25 G 3.45(,u).15 G .95 +(when the shell is interacti)224 666 R -.15(ve)-.25 G 3.45(,u).15 G .95 (nless the shell is started with the)-3.45 F F1(\255\255noediting)3.45 E -F0 2.5(option. This)224 462 R(also af)2.5 E(fects the editing interf) +F0 2.5(option. This)224 678 R(also af)2.5 E(fects the editing interf) -.25 E(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1(err) -184 474 Q(exit)-.18 E F0(Same as)224 474 Q F12.5 E F0(.)A F1 -(errtrace)184 486 Q F0(Same as)224 486 Q F12.5 E F0(.)A F1 -(functrace)184 498 Q F0(Same as)224 510 Q F12.5 E F0(.)A F1 -(hashall)184 522 Q F0(Same as)224 522 Q F12.5 E F0(.)A F1 -(histexpand)184 534 Q F0(Same as)224 546 Q F12.5 E F0(.)A F1 -(history)184 558 Q F0 .586(Enable command history)224 558 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(HIST)3.087 E(OR)-.162 E(Y)-.315 E/F4 9/Times-Roman@0 SF -(.)A F0 .587(This option is)5.087 F(on by def)224 570 Q -(ault in interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(ignor)184 -582 Q(eeof)-.18 E F0 1.657(The ef)224 594 R 1.657 -(fect is as if the shell command)-.25 F/F5 10/Courier@0 SF(IGNOREEOF=10) -4.156 E F0 1.656(had been e)4.156 F -.15(xe)-.15 G(cuted).15 E(\(see)224 -606 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 618 S(yw).1 E(ord)-.1 E F0(Same as)224 630 Q F1 -2.5 E F0(.)A F1(monitor)184 642 Q F0(Same as)224 642 Q F12.5 -E F0(.)A F1(noclob)184 654 Q(ber)-.1 E F0(Same as)224 666 Q F12.5 -E F0(.)A F1(noexec)184 678 Q F0(Same as)224 678 Q F12.5 E F0(.)A -F1(noglob)184 690 Q F0(Same as)224 690 Q F12.5 E F0(.)A F1(nolog) -184 702 Q F0(Currently ignored.)224 702 Q F1(notify)184 714 Q F0 -(Same as)224 714 Q F12.5 E F0(.)A(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(69)192.895 E 0 Cg EP +184 690 Q(exit)-.18 E F0(Same as)224 690 Q F12.5 E F0(.)A F1 +(errtrace)184 702 Q F0(Same as)224 702 Q F12.5 E F0(.)A +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(69)185.955 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/F1 10/Times-Bold@0 -SF(nounset)184 84 Q F0(Same as)224 84 Q F12.5 E F0(.)A F1(onecmd) -184 96 Q F0(Same as)224 96 Q F12.5 E F0(.)A F1(ph)184 108 Q -(ysical)-.15 E F0(Same as)224 108 Q F12.5 E F0(.)A F1(pipefail)184 -120 Q F0 1.029(If set, the return v)224 120 R 1.029 -(alue of a pipeline is the v)-.25 F 1.03 -(alue of the last \(rightmost\) com-)-.25 F 1.137(mand to e)224 132 R +SF(functrace)184 84 Q F0(Same as)224 96 Q F12.5 E F0(.)A F1 +(hashall)184 108 Q F0(Same as)224 108 Q F12.5 E F0(.)A F1 +(histexpand)184 120 Q F0(Same as)224 132 Q F12.5 E F0(.)A F1 +(history)184 144 Q F0 .587(Enable command history)224 144 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 156 Q +(ault in interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(ignor)184 +168 Q(eeof)-.18 E F0 1.656(The ef)224 180 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 +192 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 204 S(yw).1 E(ord)-.1 E F0(Same as)224 216 Q F1 +2.5 E F0(.)A F1(monitor)184 228 Q F0(Same as)224 228 Q F12.5 +E F0(.)A F1(noclob)184 240 Q(ber)-.1 E F0(Same as)224 252 Q F12.5 +E F0(.)A F1(noexec)184 264 Q F0(Same as)224 264 Q F12.5 E F0(.)A +F1(noglob)184 276 Q F0(Same as)224 276 Q F12.5 E F0(.)A F1(nolog) +184 288 Q F0(Currently ignored.)224 288 Q F1(notify)184 300 Q F0 +(Same as)224 300 Q F12.5 E F0(.)A F1(nounset)184 312 Q F0(Same as) +224 312 Q F12.5 E F0(.)A F1(onecmd)184 324 Q F0(Same as)224 324 Q +F12.5 E F0(.)A F1(ph)184 336 Q(ysical)-.15 E F0(Same as)224 336 Q +F12.5 E F0(.)A F1(pipefail)184 348 Q F0 1.03(If set, the return v) +224 348 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 360 R 1.136 (xit with a non-zero status, or zero if all commands in the pipeline) --.15 F -.15(ex)224 144 S(it successfully).15 E 5(.T)-.65 G -(his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 156 Q F0 -2.09(Change the beha)224 156 R 2.091(vior of)-.2 F F1(bash)4.591 E F0 +-.15 F -.15(ex)224 372 S(it successfully).15 E 5(.T)-.65 G +(his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 384 Q F0 +2.091(Change the beha)224 384 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 -168 R/F2 10/Times-Italic@0 SF 1.212(posix mode)B F0 3.712(\). See)B/F3 9 -/Times-Bold@0 SF 1.212(SEE ALSO)3.712 F F0(belo)3.462 E(w)-.25 E 2.306 -(for a reference to a document that details ho)224 180 R 4.807(wp)-.25 G -2.307(osix mode af)-4.807 F 2.307(fects bash')-.25 F(s)-.55 E(beha)224 -192 Q(vior)-.2 E(.)-.55 E F1(pri)184 204 Q(vileged)-.1 E F0(Same as)224 -216 Q F12.5 E F0(.)A F1 -.1(ve)184 228 S(rbose).1 E F0(Same as)224 -228 Q F12.5 E F0(.)A F1(vi)184 240 Q F0 1.466 -(Use a vi-style command line editing interf)224 240 R 3.965(ace. This) --.1 F 1.465(also af)3.965 F 1.465(fects the editing)-.25 F(interf)224 -252 Q(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1 -(xtrace)184 264 Q F0(Same as)224 264 Q F12.5 E F0(.)A(If)184 282 Q -F13.052 E F0 .552(is supplied with no)3.052 F F2(option\255name) -3.053 E F0 3.053(,t)C .553(he v)-3.053 F .553 -(alues of the current options are printed.)-.25 F(If)5.553 E F1(+o)184 -294 Q F0 1.072(is supplied with no)3.572 F F2(option\255name)3.572 E F0 -3.572(,a)C 1.071(series of)-.001 F F1(set)3.571 E F0 1.071 -(commands to recreate the current)3.571 F -(option settings is displayed on the standard output.)184 306 Q F1 -144 318 Q F0 -.45(Tu)184 318 S 1.071(rn on).45 F F2(privile)4.821 E -.1 -(ge)-.4 G(d).1 E F0 3.572(mode. In)4.341 F 1.072(this mode, the)3.572 F -F3($ENV)3.572 E F0(and)3.322 E F3($B)3.572 E(ASH_ENV)-.27 E F0 1.072 -(\214les are not pro-)3.322 F 1.501 -(cessed, shell functions are not inherited from the en)184 330 R 1.5 -(vironment, and the)-.4 F F3(SHELLOPTS)4 E/F4 9/Times-Roman@0 SF(,)A F3 --.27(BA)184 342 S(SHOPTS).27 E F4(,)A F3(CDP)2.774 E -.855(AT)-.666 G(H) -.855 E F4(,)A F0(and)2.774 E F3(GLOBIGNORE)3.024 E F0 -.25(va)2.774 G -.524(riables, if the).25 F 3.025(ya)-.15 G .525(ppear in the en)-3.025 F -(vironment,)-.4 E .38(are ignored.)184 354 R .38 -(If the shell is started with the ef)5.38 F(fecti)-.25 E .679 -.15(ve u) --.25 H .379(ser \(group\) id not equal to the real).15 F .461 -(user \(group\) id, and the)184 366 R F12.961 E F0 .461 -(option is not supplied, these actions are tak)2.961 F .462 -(en and the ef)-.1 F(fec-)-.25 E(ti)184 378 Q .695 -.15(ve u)-.25 H .395 +396 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 2.307 +(for a reference to a document that details ho)224 408 R 4.806(wp)-.25 G +2.306(osix mode af)-4.806 F 2.306(fects bash')-.25 F(s)-.55 E(beha)224 +420 Q(vior)-.2 E(.)-.55 E F1(pri)184 432 Q(vileged)-.1 E F0(Same as)224 +444 Q F12.5 E F0(.)A F1 -.1(ve)184 456 S(rbose).1 E F0(Same as)224 +456 Q F12.5 E F0(.)A F1(vi)184 468 Q F0 1.465 +(Use a vi-style command line editing interf)224 468 R 3.966(ace. This) +-.1 F 1.466(also af)3.966 F 1.466(fects the editing)-.25 F(interf)224 +480 Q(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1 +(xtrace)184 492 Q F0(Same as)224 492 Q F12.5 E F0(.)A(If)184 510 Q +F13.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 +522 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 534 Q F1 +144 546 Q F0 -.45(Tu)184 546 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 558 R 1.501 +(vironment, and the)-.4 F F2(SHELLOPTS)4.001 E F3(,)A F2 -.27(BA)184 570 +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 582 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 594 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 606 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 .394(option is supplied at startup, the ef)2.895 F(fecti)-.25 -E -.15(ve)-.25 G .386(user id is not reset.)184 390 R -.45(Tu)5.386 G -.386(rning this option of).45 F 2.886(fc)-.25 G .387(auses the ef)-2.886 -F(fecti)-.25 E .687 -.15(ve u)-.25 H .387(ser and group ids to be).15 F -(set to the real user and group ids.)184 402 Q F1144 414 Q F0 -(Exit after reading and e)184 414 Q -.15(xe)-.15 G(cuting one command.) -.15 E F1144 426 Q F0 -.35(Tr)184 426 S .044(eat unset v).35 F .044 +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 618 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 630 Q F1144 642 Q F0 +(Exit after reading and e)184 642 Q -.15(xe)-.15 G(cuting one command.) +.15 E F1144 654 Q F0 -.35(Tr)184 654 S .043(eat unset v).35 F .044 (ariables and parameters other than the special parameters "@" and "*" \ -as an)-.25 F .182(error when performing parameter e)184 438 R 2.682 -(xpansion. If)-.15 F -.15(ex)2.682 G .183 +as an)-.25 F .183(error when performing parameter e)184 666 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 450 R 3.246(,t)-.4 G .746 +(able or parameter)184 678 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 -462 Q F1144 474 Q F0(Print shell input lines as the)184 474 Q 2.5 -(ya)-.15 G(re read.)-2.5 E F1144 486 Q F0 .315(After e)184 486 R -.315(xpanding each)-.15 F F2 .315(simple command)2.815 F F0(,)A F1 -.25 +690 Q F1144 702 Q F0(Print shell input lines as the)184 702 Q 2.5 +(ya)-.15 G(re read.)-2.5 E F1144 714 Q F0 .315(After e)184 714 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.236(or arithmetic)184 -498 R F1 -.25(fo)3.736 G(r).25 E F0 1.236(command, display the e)3.736 F -1.236(xpanded v)-.15 F 1.236(alue of)-.25 F F3(PS4)3.736 E F4(,)A F0 -(follo)3.486 E 1.236(wed by the com-)-.25 F(mand and its e)184 510 Q -(xpanded ar)-.15 E(guments or associated w)-.18 E(ord list.)-.1 E F1 -144 522 Q F0 2.578(The shell performs brace e)184 522 R 2.578 -(xpansion \(see)-.15 F F1 2.578(Brace Expansion)5.078 F F0(abo)5.078 E --.15(ve)-.15 G 5.079(\). This).15 F 2.579(is on by)5.079 F(def)184 534 Q -(ault.)-.1 E F1144 546 Q F0 .214(If set,)184 546 R F1(bash)2.714 E -F0 .214(does not o)2.714 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.713(,a)C(nd)-2.713 E F1(<>)2.713 E F0 .213(redirection opera-)2.713 F -3.053(tors. This)184 558 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 570 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1 -144 582 Q F0 .104(If set, an)184 582 R 2.604(yt)-.15 G .104 -(rap on)-2.604 F F1(ERR)2.604 E F0 .103 -(is inherited by shell functions, command substitutions, and com-)2.604 -F .838(mands e)184 594 R -.15(xe)-.15 G .838(cuted in a subshell en).15 -F 3.338(vironment. The)-.4 F F1(ERR)3.338 E F0 .839 -(trap is normally not inherited in)3.339 F(such cases.)184 606 Q F1 -144 618 Q F0(Enable)184 618 Q F1(!)3.032 E F0 .532 -(style history substitution.)5.532 F .531(This option is on by def)5.532 -F .531(ault when the shell is inter)-.1 F(-)-.2 E(acti)184 630 Q -.15 -(ve)-.25 G(.).15 E F1144 642 Q F0 .959 -(If set, the shell does not resolv)184 642 R 3.459(es)-.15 G .959 -(ymbolic links when e)-3.459 F -.15(xe)-.15 G .96 -(cuting commands such as).15 F F1(cd)3.46 E F0 2.822 -(that change the current w)184 654 R 2.822(orking directory)-.1 F 7.822 -(.I)-.65 G 5.322(tu)-7.822 G 2.822(ses the ph)-5.322 F 2.821 -(ysical directory structure)-.05 F 2.685(instead. By)184 666 R(def)2.685 -E(ault,)-.1 E F1(bash)2.686 E F0(follo)2.686 E .186 -(ws the logical chain of directories when performing com-)-.25 F -(mands which change the current directory)184 678 Q(.)-.65 E F1144 -690 Q F0 .89(If set, an)184 690 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 702 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 714 Q F0 -(traps are normally not inherited in such cases.)2.5 E(GNU Bash 4.4)72 -768 Q(2017 October 7)143.735 E(70)192.895 E 0 Cg EP +2.815 E F1(select)2.815 E F0(command,)2.815 E 3.259(or arithmetic)184 +726 R F1 -.25(fo)5.759 G(r).25 E F0 3.26(command, display the e)5.759 F +3.26(xpanded v)-.15 F 3.26(alue of)-.25 F F2(PS4)5.76 E F3(,)A F0(follo) +5.51 E 3.26(wed by the)-.25 F(GNU Bash 4.4)72 768 Q(2017 December 28) +136.795 E(70)185.955 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 -SF144 84 Q F0 .401(If no ar)184 84 R .401(guments follo)-.18 F -2.901(wt)-.25 G .401 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(command and its e) +184 84 Q(xpanded ar)-.15 E(guments or associated w)-.18 E(ord list.)-.1 +E/F1 10/Times-Bold@0 SF144 96 Q F0 2.579 +(The shell performs brace e)184 96 R 2.578(xpansion \(see)-.15 F F1 +2.578(Brace Expansion)5.078 F F0(abo)5.078 E -.15(ve)-.15 G 5.078 +(\). This).15 F 2.578(is on by)5.078 F(def)184 108 Q(ault.)-.1 E F1 +144 120 Q F0 .213(If set,)184 120 R F1(bash)2.713 E F0 .213 +(does not o)2.713 F -.15(ve)-.15 G .214(rwrite an e).15 F .214 +(xisting \214le with the)-.15 F F1(>)2.714 E F0(,)A F1(>&)2.714 E F0 +2.714(,a)C(nd)-2.714 E F1(<>)2.714 E F0 .214(redirection opera-)2.714 F +3.054(tors. This)184 132 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 144 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1 +144 156 Q F0 .103(If set, an)184 156 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 168 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 180 Q F1 +144 192 Q F0(Enable)184 192 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 204 Q -.15 +(ve)-.25 G(.).15 E F1144 216 Q F0 .96 +(If set, the shell does not resolv)184 216 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 2.821 +(that change the current w)184 228 R 2.822(orking directory)-.1 F 7.822 +(.I)-.65 G 5.322(tu)-7.822 G 2.822(ses the ph)-5.322 F 2.822 +(ysical directory structure)-.05 F 2.686(instead. By)184 240 R(def)2.686 +E(ault,)-.1 E F1(bash)2.686 E F0(follo)2.686 E .186 +(ws the logical chain of directories when performing com-)-.25 F +(mands which change the current directory)184 252 Q(.)-.65 E F1144 +264 Q F0 .89(If set, an)184 264 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 276 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 288 Q F0 +(traps are normally not inherited in such cases.)2.5 E F1144 300 Q +F0 .4(If no ar)184 300 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.4 E(the positional parameters are set to the)184 96 Q/F2 -10/Times-Italic@0 SF(ar)2.5 E(g)-.37 E F0(s, e)A -.15(ve)-.25 G 2.5(ni) -.15 G 2.5(fs)-2.5 G(ome of them be)-2.5 E(gin with a)-.15 E F12.5 E -F0(.)A F1144 108 Q F0 1.944 -(Signal the end of options, cause all remaining)184 108 R F2(ar)4.444 E -(g)-.37 E F0 4.444(st)C 4.444(ob)-4.444 G 4.445(ea)-4.444 G 1.945 -(ssigned to the positional)-4.445 F 3.446(parameters. The)184 120 R F1 -3.446 E F0(and)3.446 E F13.446 E F0 .945 -(options are turned of)3.446 F 3.445(f. If)-.25 F .945(there are no) -3.445 F F2(ar)3.445 E(g)-.37 E F0 .945(s, the positional)B -(parameters remain unchanged.)184 132 Q .425(The options are of)144 -148.8 R 2.925(fb)-.25 G 2.925(yd)-2.925 G(ef)-2.925 E .425 +(Otherwise,)5.401 E(the positional parameters are set to the)184 312 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 324 Q F0 1.945 +(Signal the end of options, cause all remaining)184 324 R F2(ar)4.444 E +(g)-.37 E F0 4.444(st)C 4.444(ob)-4.444 G 4.444(ea)-4.444 G 1.944 +(ssigned to the positional)-4.444 F 3.445(parameters. The)184 336 R F1 +3.445 E F0(and)3.445 E F13.445 E F0 .945 +(options are turned of)3.445 F 3.445(f. If)-.25 F .946(there are no) +3.445 F F2(ar)3.446 E(g)-.37 E F0 .946(s, the positional)B +(parameters remain unchanged.)184 348 Q .425(The options are of)144 +364.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 .178 -(to be turned of)144 160.8 R 2.678(f. The)-.25 F .178 +(Using + rather than \255 causes these options)5.425 F .177 +(to be turned of)144 376.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 .177(cation of the shell.).2 F(The)5.177 E .066 -(current set of options may be found in)144 172.8 R F1<24ad>2.566 E F0 +-.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 388.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 .067(lid option).25 F -(is encountered.)144 184.8 Q F1(shift)108 201.6 Q F0([)2.5 E F2(n)A F0 -(])A .429(The positional parameters from)144 213.6 R F2(n)2.929 E F0 -.429(+1 ... are renamed to)B F1 .429($1 ....)2.929 F F0 -.15(Pa)5.428 G -.428(rameters represented by the num-).15 F(bers)144 225.6 Q F1($#)2.582 -E F0(do)2.582 E .082(wn to)-.25 F F1($#)2.582 E F0A F2(n)A F0 .082 -(+1 are unset.)B F2(n)5.442 E F0 .082(must be a non-ne)2.822 F -.05(ga) --.15 G(ti).05 E .383 -.15(ve n)-.25 H .083(umber less than or equal to) -.15 F F1($#)2.583 E F0 5.083(.I)C(f)-5.083 E F2(n)2.943 E F0 .06 -(is 0, no parameters are changed.)144 237.6 R(If)5.06 E F2(n)2.92 E F0 +(ys true unless an in).1 F -.25(va)-.4 G .066(lid option).25 F +(is encountered.)144 400.8 Q F1(shift)108 417.6 Q F0([)2.5 E F2(n)A F0 +(])A .428(The positional parameters from)144 429.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 441.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 453.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 .143(positional parameters are not changed.)144 249.6 R -.144(The return status is greater than zero if)5.143 F F2(n)3.004 E F0 -.144(is greater than)2.884 F F1($#)2.644 E F0 -(or less than zero; otherwise 0.)144 261.6 Q F1(shopt)108 278.4 Q F0([) +(,t)C(he)-2.56 E .144(positional parameters are not changed.)144 465.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 477.6 Q F1(shopt)108 494.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 290.4 S .64(ggle the v).8 F .639 +-2.5 E F0(...])2.5 E -.8(To)144 506.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 .639(he settings can be either those)-5.639 F .374 -(listed belo)144 302.4 R 1.674 -.65(w, o)-.25 H 1.174 -.4(r, i).65 H -2.874(ft).4 G(he)-2.874 E F12.874 E F0 .375 +5.639(.T)-.55 G .64(he settings can be either those)-5.639 F .375 +(listed belo)144 518.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 .375(option to the)2.875 F F1(set)2.875 E F0 -.2 -(bu)2.875 G .375(iltin com-).2 F 3.326(mand. W)144 314.4 R .826 -(ith no options, or with the)-.4 F F13.326 E F0 .825 -(option, a list of all settable options is displayed, with an)3.326 F -.945(indication of whether or not each is set.)144 326.4 R(The)5.945 E -F13.445 E F0 .945(option causes output to be displayed in a form) -3.445 F(that may be reused as input.)144 338.4 Q(Other options ha)5 E .3 --.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 350.4 Q -F0(Enable \(set\) each)180 350.4 Q F2(optname)2.5 E F0(.)A F1144 -362.4 Q F0(Disable \(unset\) each)180 362.4 Q F2(optname)2.5 E F0(.)A F1 -144 374.4 Q F0 .003(Suppresses normal output \(quiet mode\); the \ -return status indicates whether the)180 374.4 R F2(optname)2.503 E F0 -(is)2.503 E .255(set or unset.)180 386.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 398.4 Q F2(optnames)2.5 E -F0(are enabled; non-zero otherwise.)2.5 E F1144 410.4 Q F0 -(Restricts the v)180 410.4 Q(alues of)-.25 E F2(optname)2.5 E F0 +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 3.325(mand. W)144 530.4 R .825 +(ith no options, or with the)-.4 F F13.325 E F0 .826 +(option, a list of all settable options is displayed, with an)3.325 F +.552(indication of whether or not each is set; if)144 542.4 R F2 +(optnames)3.052 E F0 .551 +(are supplied, the output is restricted to those)3.052 F 2.549 +(options. The)144 554.4 R F12.549 E F0 .049(option causes output \ +to be displayed in a form that may be reused as input.)2.549 F(Other) +5.05 E(options ha)144 566.4 Q .3 -.15(ve t)-.2 H(he follo).15 E +(wing meanings:)-.25 E F1144 578.4 Q F0(Enable \(set\) each)180 +578.4 Q F2(optname)2.5 E F0(.)A F1144 590.4 Q F0 +(Disable \(unset\) each)180 590.4 Q F2(optname)2.5 E F0(.)A F1144 +602.4 Q F0 .003(Suppresses normal output \(quiet mode\); the return sta\ +tus indicates whether the)180 602.4 R F2(optname)2.503 E F0(is)2.503 E +.255(set or unset.)180 614.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 626.4 Q F2(optnames)2.5 E +F0(are enabled; non-zero otherwise.)2.5 E F1144 638.4 Q F0 +(Restricts the v)180 638.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 427.2 R F1 +E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .625(If either)144 655.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 2.233 -(set or unset, respecti)144 439.2 R -.15(ve)-.25 G(ly).15 E 7.234(.U) +(set or unset, respecti)144 667.2 R -.15(ve)-.25 G(ly).15 E 7.234(.U) -.65 G 2.234(nless otherwise noted, the)-7.234 F F1(shopt)4.734 E F0 -2.234(options are disabled \(unset\) by)4.734 F(def)144 451.2 Q(ault.) +2.234(options are disabled \(unset\) by)4.734 F(def)144 679.2 Q(ault.) -.1 E 1.544(The return status when listing options is zero if all)144 -468 R F2(optnames)4.044 E F0 1.544(are enabled, non-zero otherwise.) +696 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 480 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .696(alid shell) --.25 F(option.)144 492 Q(The list of)144 508.8 Q F1(shopt)2.5 E F0 -(options is:)2.5 E F1(autocd)144 526.8 Q F0 .2 -(If set, a command name that is the name of a directory is e)184 526.8 R --.15(xe)-.15 G .199(cuted as if it were the ar).15 F(gu-)-.18 E -(ment to the)184 538.8 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F -(option is only used by interacti)2.5 E .3 -.15(ve s)-.25 H(hells.).15 E -F1(cdable_v)144 550.8 Q(ars)-.1 E F0 .155(If set, an ar)184 562.8 R .155 -(gument to the)-.18 F F1(cd)2.655 E F0 -.2(bu)2.655 G .156 -(iltin command that is not a directory is assumed to be the).2 F -(name of a v)184 574.8 Q(ariable whose v)-.25 E -(alue is the directory to change to.)-.25 E F1(cdspell)144 586.8 Q F0 -1.055 -(If set, minor errors in the spelling of a directory component in a)184 -586.8 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.987 -(corrected. The)184 598.8 R 1.487(errors check)3.987 F 1.487 -(ed for are transposed characters, a missing character)-.1 F 3.988(,a) --.4 G(nd)-3.988 E .77(one character too man)184 610.8 R 4.57 -.65(y. I) --.15 H 3.27(fac).65 G .77 -(orrection is found, the corrected \214lename is printed, and)-3.27 F -(the command proceeds.)184 622.8 Q -(This option is only used by interacti)5 E .3 -.15(ve s)-.25 H(hells.) -.15 E F1(checkhash)144 634.8 Q F0 .736(If set,)184 646.8 R F1(bash)3.236 -E F0 .736(checks that a command found in the hash table e)3.236 F .737 -(xists before trying to e)-.15 F -.15(xe)-.15 G(-).15 E(cute it.)184 -658.8 Q(If a hashed command no longer e)5 E -(xists, a normal path search is performed.)-.15 E F1(checkjobs)144 670.8 -Q F0 .449(If set,)184 682.8 R F1(bash)2.949 E F0 .449 -(lists the status of an)2.949 F 2.949(ys)-.15 G .448 -(topped and running jobs before e)-2.949 F .448(xiting an interacti)-.15 -F -.15(ve)-.25 G 3.438(shell. If)184 694.8 R(an)3.438 E 3.438(yj)-.15 G -.938(obs are running, this causes the e)-3.438 F .938 -(xit to be deferred until a second e)-.15 F .939(xit is)-.15 F 2.203 -(attempted without an interv)184 706.8 R 2.203(ening command \(see)-.15 -F/F3 9/Times-Bold@0 SF 2.203(JOB CONTR)4.703 F(OL)-.27 E F0(abo)4.453 E --.15(ve)-.15 G 4.703(\). The).15 F(shell)4.703 E(al)184 718.8 Q -.1(wa) --.1 G(ys postpones e).1 E(xiting if an)-.15 E 2.5(yj)-.15 G -(obs are stopped.)-2.5 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E -(71)192.895 E 0 Cg EP +144 708 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .696(alid shell) +-.25 F(option.)144 720 Q(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 +E(71)185.955 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/F1 10/Times-Bold@0 -SF(checkwinsize)144 84 Q F0 1.09(If set,)184 96 R F1(bash)3.59 E F0 1.09 -(checks the windo)3.59 F 3.59(ws)-.25 G 1.09(ize after each e)-3.59 F -1.09(xternal \(non-b)-.15 F 1.09(uiltin\) command and, if)-.2 F -(necessary)184 108 Q 2.5(,u)-.65 G(pdates the v)-2.5 E(alues of)-.25 E -/F2 9/Times-Bold@0 SF(LINES)2.5 E F0(and)2.25 E F2(COLUMNS)2.5 E/F3 9 -/Times-Roman@0 SF(.)A F1(cmdhist)144 120 Q F0 1.202(If set,)184 120 R F1 -(bash)3.702 E F0 1.202(attempts to sa)3.702 F 1.502 -.15(ve a)-.2 H -1.202(ll lines of a multiple-line command in the same history).15 F -(entry)184 132 Q 6.132(.T)-.65 G 1.132(his allo)-6.132 F 1.132 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(The list of)144 84 +Q/F1 10/Times-Bold@0 SF(shopt)2.5 E F0(options is:)2.5 E F1(autocd)144 +102 Q F0 .2(If set, a command name that is the name of a directory is e) +184 102 R -.15(xe)-.15 G .199(cuted as if it were the ar).15 F(gu-)-.18 +E(ment to the)184 114 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F +(option is only used by interacti)2.5 E .3 -.15(ve s)-.25 H(hells.).15 E +F1(cdable_v)144 126 Q(ars)-.1 E F0 .155(If set, an ar)184 138 R .155 +(gument to the)-.18 F F1(cd)2.655 E F0 -.2(bu)2.655 G .156 +(iltin command that is not a directory is assumed to be the).2 F +(name of a v)184 150 Q(ariable whose v)-.25 E +(alue is the directory to change to.)-.25 E F1(cdspell)144 162 Q F0 +1.055 +(If set, minor errors in the spelling of a directory component in a)184 +162 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.987 +(corrected. The)184 174 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 186 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 198 Q(This option is only used by interacti)5 +E .3 -.15(ve s)-.25 H(hells.).15 E F1(checkhash)144 210 Q F0 .736 +(If set,)184 222 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 234 +Q(If a hashed command no longer e)5 E +(xists, a normal path search is performed.)-.15 E F1(checkjobs)144 246 Q +F0 .449(If set,)184 258 R F1(bash)2.949 E F0 .449 +(lists the status of an)2.949 F 2.949(ys)-.15 G .448 +(topped and running jobs before e)-2.949 F .448(xiting an interacti)-.15 +F -.15(ve)-.25 G 3.438(shell. If)184 270 R(an)3.438 E 3.438(yj)-.15 G +.938(obs are running, this causes the e)-3.438 F .938 +(xit to be deferred until a second e)-.15 F .939(xit is)-.15 F 2.203 +(attempted without an interv)184 282 R 2.203(ening command \(see)-.15 F +/F2 9/Times-Bold@0 SF 2.203(JOB CONTR)4.703 F(OL)-.27 E F0(abo)4.453 E +-.15(ve)-.15 G 4.703(\). The).15 F(shell)4.703 E(al)184 294 Q -.1(wa)-.1 +G(ys postpones e).1 E(xiting if an)-.15 E 2.5(yj)-.15 G +(obs are stopped.)-2.5 E F1(checkwinsize)144 306 Q F0 1.09(If set,)184 +318 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 330 Q 2.5(,u)-.65 G +(pdates the v)-2.5 E(alues of)-.25 E F2(LINES)2.5 E F0(and)2.25 E F2 +(COLUMNS)2.5 E/F3 9/Times-Roman@0 SF(.)A F1(cmdhist)144 342 Q F0 1.202 +(If set,)184 342 R F1(bash)3.702 E F0 1.202(attempts to sa)3.702 F 1.502 +-.15(ve a)-.2 H 1.202 +(ll lines of a multiple-line command in the same history).15 F(entry)184 +354 Q 6.132(.T)-.65 G 1.132(his allo)-6.132 F 1.132 (ws easy re-editing of multi-line commands.)-.25 F 1.133 -(This option is enabled by)6.133 F(def)184 144 Q .614(ault, b)-.1 F .614 +(This option is enabled by)6.133 F(def)184 366 Q .614(ault, b)-.1 F .614 (ut only has an ef)-.2 F .613 (fect if command history is enabled, as described abo)-.25 F .913 -.15 -(ve u)-.15 H(nder).15 E F2(HIST)184 156 Q(OR)-.162 E(Y)-.315 E F3(.)A F1 -(compat31)144 168 Q F0 .419(If set,)184 180 R F1(bash)2.919 E F0 .419 +(ve u)-.15 H(nder).15 E F2(HIST)184 378 Q(OR)-.162 E(Y)-.315 E F3(.)A F1 +(compat31)144 390 Q F0 .419(If set,)184 402 R F1(bash)2.919 E F0 .419 (changes its beha)2.919 F .419(vior to that of v)-.2 F .42 (ersion 3.1 with respect to quoted ar)-.15 F(guments)-.18 E .462(to the) -184 192 R F1([[)2.962 E F0 .462(conditional command')2.962 F(s)-.55 E F1 +184 414 R F1([[)2.962 E F0 .462(conditional command')2.962 F(s)-.55 E F1 (=~)2.962 E F0 .462 (operator and locale-speci\214c string comparison when)2.962 F .71 -(using the)184 204 R F1([[)3.21 E F0 .71(conditional command')3.21 F(s) +(using the)184 426 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) 3.21 F -.15(ve)3.21 G .71(rsions prior to bash-4.1).15 F .821 -(use ASCII collation and)184 216 R/F4 10/Times-Italic@0 SF(str)3.321 E +(use ASCII collation and)184 438 R/F4 10/Times-Italic@0 SF(str)3.321 E (cmp)-.37 E F0 .821(\(3\); bash-4.1 and later use the current locale') -.19 F 3.32(sc)-.55 G(ollation)-3.32 E(sequence and)184 228 Q F4(str)2.5 -E(coll)-.37 E F0(\(3\).).51 E F1(compat32)144 240 Q F0 1.409(If set,)184 -252 R F1(bash)3.909 E F0 1.409(changes its beha)3.909 F 1.409 +.19 F 3.32(sc)-.55 G(ollation)-3.32 E(sequence and)184 450 Q F4(str)2.5 +E(coll)-.37 E F0(\(3\).).51 E F1(compat32)144 462 Q F0 1.409(If set,)184 +474 R F1(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 3.2 with respect to locale-speci\214c)-.15 F .423 -(string comparison when using the)184 264 R F1([[)2.922 E F0 .422 +(string comparison when using the)184 486 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(>) 2.922 E F0 .422(operators \(see pre-)2.922 F .48 -(vious item\) and the ef)184 276 R .481 +(vious item\) and the ef)184 498 R .481 (fect of interrupting a command list.)-.25 F .481(Bash v)5.481 F .481 -(ersions 3.2 and earlier)-.15 F(continue with the ne)184 288 Q +(ersions 3.2 and earlier)-.15 F(continue with the ne)184 510 Q (xt command in the list after one terminates due to an interrupt.)-.15 E -F1(compat40)144 300 Q F0 1.41(If set,)184 312 R F1(bash)3.91 E F0 1.41 +F1(compat40)144 522 Q F0 1.41(If set,)184 534 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 4.0 with respect to locale-speci\214c)-.15 F 2.007 -(string comparison when using the)184 324 R F1([[)4.507 E F0 2.008 +(string comparison when using the)184 546 R F1([[)4.507 E F0 2.008 (conditional command')4.507 F(s)-.55 E F1(<)4.508 E F0(and)4.508 E F1(>) -4.508 E F0 2.008(operators \(see)4.508 F .77(description of)184 336 R F1 +4.508 E F0 2.008(operators \(see)4.508 F .77(description of)184 558 R F1 (compat31)3.27 E F0 3.269(\)a)C .769(nd the ef)-3.269 F .769 (fect of interrupting a command list.)-.25 F .769(Bash v)5.769 F (ersions)-.15 E .086 -(4.0 and later interrupt the list as if the shell recei)184 348 R -.15 +(4.0 and later interrupt the list as if the shell recei)184 570 R -.15 (ve)-.25 G 2.587(dt).15 G .087(he interrupt; pre)-2.587 F .087(vious v) --.25 F .087(ersions con-)-.15 F(tinue with the ne)184 360 Q -(xt command in the list.)-.15 E F1(compat41)144 372 Q F0 1.484(If set,) -184 384 R F1(bash)3.984 E F0 3.984(,w)C 1.484(hen in)-3.984 F F4(posix) +-.25 F .087(ersions con-)-.15 F(tinue with the ne)184 582 Q +(xt command in the list.)-.15 E F1(compat41)144 594 Q F0 1.484(If set,) +184 606 R F1(bash)3.984 E F0 3.984(,w)C 1.484(hen in)-3.984 F F4(posix) 3.984 E F0 1.483 (mode, treats a single quote in a double-quoted parameter)3.984 F -.15 -(ex)184 396 S .958(pansion as a special character).15 F 5.958(.T)-.55 G +(ex)184 618 S .958(pansion as a special character).15 F 5.958(.T)-.55 G .959(he single quotes must match \(an e)-5.958 F -.15(ve)-.25 G 3.459 (nn).15 G .959(umber\) and)-3.459 F .59 -(the characters between the single quotes are considered quoted.)184 408 +(the characters between the single quotes are considered quoted.)184 630 R .59(This is the beha)5.59 F .59(vior of)-.2 F .589 -(posix mode through v)184 420 R .589(ersion 4.1.)-.15 F .589(The def) +(posix mode through v)184 642 R .589(ersion 4.1.)-.15 F .589(The def) 5.589 F .589(ault bash beha)-.1 F .589(vior remains as in pre)-.2 F .59 -(vious v)-.25 F(er)-.15 E(-)-.2 E(sions.)184 432 Q F1(compat42)144 444 Q -F0 1.797(If set,)184 456 R F1(bash)4.297 E F0 1.796 +(vious v)-.25 F(er)-.15 E(-)-.2 E(sions.)184 654 Q F1(compat42)144 666 Q +F0 1.797(If set,)184 678 R F1(bash)4.297 E F0 1.796 (does not process the replacement string in the pattern substitution w) -4.296 F(ord)-.1 E -.15(ex)184 468 S(pansion using quote remo).15 E -.25 -(va)-.15 G(l.).25 E F1(compat43)144 480 Q F0 .14(If set,)184 492 R F1 +4.296 F(ord)-.1 E -.15(ex)184 690 S(pansion using quote remo).15 E -.25 +(va)-.15 G(l.).25 E F1(compat43)144 702 Q F0 .14(If set,)184 714 R F1 (bash)2.64 E F0 .14(does not print a w)2.64 F .141 (arning message if an attempt is made to use a quoted com-)-.1 F .913 -(pound array assignment as an ar)184 504 R .913(gument to)-.18 F F1 +(pound array assignment as an ar)184 726 R .913(gument to)-.18 F F1 (declar)3.412 E(e)-.18 E F0 3.412(,m)C(ak)-3.412 E .912(es w)-.1 F .912 -(ord e)-.1 F .912(xpansion errors non-)-.15 F -.1(fa)184 516 S .352 -(tal errors that cause the current command to f).1 F .353(ail \(the def) --.1 F .353(ault beha)-.1 F .353(vior is to mak)-.2 F 2.853(et)-.1 G(hem) --2.853 E -.1(fa)184 528 S 1.058(tal errors that cause the shell to e).1 -F 1.057(xit\), and does not reset the loop state when a shell)-.15 F -.374(function is e)184 540 R -.15(xe)-.15 G .374(cuted \(this allo).15 F -(ws)-.25 E F1(br)2.874 E(eak)-.18 E F0(or)2.875 E F1(continue)2.875 E F0 -.375(in a shell function to af)2.875 F .375(fect loops in)-.25 F -(the caller')184 552 Q 2.5(sc)-.55 G(onte)-2.5 E(xt\).)-.15 E F1 -(complete_fullquote)144 564 Q F0 .654(If set,)184 576 R F1(bash)3.153 E -F0 .653(quotes all shell metacharacters in \214lenames and directory na\ -mes when per)3.153 F(-)-.2 E 1.524(forming completion.)184 588 R 1.524 -(If not set,)6.524 F F1(bash)4.024 E F0(remo)4.024 E -.15(ve)-.15 G -4.024(sm).15 G 1.524(etacharacters such as the dollar sign)-4.024 F -2.667(from the set of characters that will be quoted in completed \214l\ -enames when these)184 600 R .028(metacharacters appear in shell v)184 -612 R .028(ariable references in w)-.25 F .029(ords to be completed.)-.1 -F .029(This means)5.029 F 1.073(that dollar signs in v)184 624 R 1.073 -(ariable names that e)-.25 F 1.073 -(xpand to directories will not be quoted; ho)-.15 F(w-)-.25 E -2.15 -.25 -(ev e)184 636 T 1.922 -.4(r, a).25 H 1.422 -.15(ny d).4 H 1.123 -(ollar signs appearing in \214lenames will not be quoted, either).15 F -6.123(.T)-.55 G 1.123(his is acti)-6.123 F -.15(ve)-.25 G .59 -(only when bash is using backslashes to quote completed \214lenames.)184 -648 R .59(This v)5.59 F .59(ariable is set)-.25 F(by def)184 660 Q -(ault, which is the def)-.1 E(ault bash beha)-.1 E(vior in v)-.2 E -(ersions through 4.2.)-.15 E F1(dir)144 672 Q(expand)-.18 E F0 .486 -(If set,)184 684 R F1(bash)2.986 E F0 .486 -(replaces directory names with the results of w)2.986 F .486(ord e)-.1 F -.487(xpansion when perform-)-.15 F .18(ing \214lename completion.)184 -696 R .179(This changes the contents of the readline editing b)5.18 F -(uf)-.2 E(fer)-.25 E 5.179(.I)-.55 G 2.679(fn)-5.179 G(ot)-2.679 E(set,) -184 708 Q F1(bash)2.5 E F0(attempts to preserv)2.5 E 2.5(ew)-.15 G -(hat the user typed.)-2.5 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 -E(72)192.895 E 0 Cg EP +(ord e)-.1 F .912(xpansion errors non-)-.15 F(GNU Bash 4.4)72 768 Q +(2017 December 28)136.795 E(72)185.955 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(dirspell)144 84 Q F0 .858(If set,)184 84 R F1(bash)3.358 E F0 .858 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E -.1(fa)184 84 S +.352(tal errors that cause the current command to f).1 F .353 +(ail \(the def)-.1 F .353(ault beha)-.1 F .353(vior is to mak)-.2 F +2.853(et)-.1 G(hem)-2.853 E -.1(fa)184 96 S 1.058 +(tal errors that cause the shell to e).1 F 1.057 +(xit\), and does not reset the loop state when a shell)-.15 F .374 +(function is e)184 108 R -.15(xe)-.15 G .374(cuted \(this allo).15 F(ws) +-.25 E/F1 10/Times-Bold@0 SF(br)2.874 E(eak)-.18 E F0(or)2.875 E F1 +(continue)2.875 E F0 .375(in a shell function to af)2.875 F .375 +(fect loops in)-.25 F(the caller')184 120 Q 2.5(sc)-.55 G(onte)-2.5 E +(xt\).)-.15 E F1(complete_fullquote)144 132 Q F0 .654(If set,)184 144 R +F1(bash)3.153 E F0 .653(quotes all shell metacharacters in \214lenames \ +and directory names when per)3.153 F(-)-.2 E 1.524(forming completion.) +184 156 R 1.524(If not set,)6.524 F F1(bash)4.024 E F0(remo)4.024 E -.15 +(ve)-.15 G 4.024(sm).15 G 1.524(etacharacters such as the dollar sign) +-4.024 F 2.667(from the set of characters that will be quoted in comple\ +ted \214lenames when these)184 168 R .028 +(metacharacters appear in shell v)184 180 R .028 +(ariable references in w)-.25 F .029(ords to be completed.)-.1 F .029 +(This means)5.029 F 1.073(that dollar signs in v)184 192 R 1.073 +(ariable names that e)-.25 F 1.073 +(xpand to directories will not be quoted; ho)-.15 F(w-)-.25 E -2.15 -.25 +(ev e)184 204 T 1.922 -.4(r, a).25 H 1.422 -.15(ny d).4 H 1.123 +(ollar signs appearing in \214lenames will not be quoted, either).15 F +6.123(.T)-.55 G 1.123(his is acti)-6.123 F -.15(ve)-.25 G .59 +(only when bash is using backslashes to quote completed \214lenames.)184 +216 R .59(This v)5.59 F .59(ariable is set)-.25 F(by def)184 228 Q +(ault, which is the def)-.1 E(ault bash beha)-.1 E(vior in v)-.2 E +(ersions through 4.2.)-.15 E F1(dir)144 240 Q(expand)-.18 E F0 .486 +(If set,)184 252 R F1(bash)2.986 E F0 .486 +(replaces directory names with the results of w)2.986 F .486(ord e)-.1 F +.487(xpansion when perform-)-.15 F .18(ing \214lename completion.)184 +264 R .179(This changes the contents of the readline editing b)5.18 F +(uf)-.2 E(fer)-.25 E 5.179(.I)-.55 G 2.679(fn)-5.179 G(ot)-2.679 E(set,) +184 276 Q F1(bash)2.5 E F0(attempts to preserv)2.5 E 2.5(ew)-.15 G +(hat the user typed.)-2.5 E F1(dirspell)144 288 Q F0 .858(If set,)184 +288 R F1(bash)3.358 E F0 .858 (attempts spelling correction on directory names during w)3.358 F .859 (ord completion if)-.1 F -(the directory name initially supplied does not e)184 96 Q(xist.)-.15 E -F1(dotglob)144 108 Q F0 .165(If set,)184 108 R F1(bash)2.665 E F0 .165 +(the directory name initially supplied does not e)184 300 Q(xist.)-.15 E +F1(dotglob)144 312 Q F0 .165(If set,)184 312 R F1(bash)2.665 E F0 .165 (includes \214lenames be)2.665 F .165(ginning with a `.)-.15 F 2.665('i) -.7 G 2.665(nt)-2.665 G .165(he results of pathname e)-2.665 F -(xpansion.)-.15 E(The \214lenames)184 120 Q F1 -.63(``)2.5 G -.55(.').63 +(xpansion.)-.15 E(The \214lenames)184 324 Q F1 -.63(``)2.5 G -.55(.').63 G(')-.08 E F0(and)5 E F1 -.63(``)2.5 G(..).63 E -.63('')-.55 G F0 (must al)5.63 E -.1(wa)-.1 G(ys be matched e).1 E(xplicitly)-.15 E 2.5 (,e)-.65 G -.15(ve)-2.75 G 2.5(ni).15 G(f)-2.5 E F1(dotglob)2.5 E F0 -(is set.)2.5 E F1(execfail)144 132 Q F0 1.386(If set, a non-interacti) -184 132 R 1.686 -.15(ve s)-.25 H 1.386(hell will not e).15 F 1.386 +(is set.)2.5 E F1(execfail)144 336 Q F0 1.386(If set, a non-interacti) +184 336 R 1.686 -.15(ve s)-.25 H 1.386(hell will not e).15 F 1.386 (xit if it cannot e)-.15 F -.15(xe)-.15 G 1.387 -(cute the \214le speci\214ed as an).15 F(ar)184 144 Q(gument to the)-.18 +(cute the \214le speci\214ed as an).15 F(ar)184 348 Q(gument to the)-.18 E F1(exec)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 E(An interacti)5 E .3 -.15(ve s)-.25 H(hell does not e).15 E(xit if)-.15 E F1(exec)2.5 E F0 --.1(fa)2.5 G(ils.).1 E F1(expand_aliases)144 156 Q F0 .717 -(If set, aliases are e)184 168 R .717(xpanded as described abo)-.15 F +-.1(fa)2.5 G(ils.).1 E F1(expand_aliases)144 360 Q F0 .717 +(If set, aliases are e)184 372 R .717(xpanded as described abo)-.15 F 1.017 -.15(ve u)-.15 H(nder).15 E/F2 9/Times-Bold@0 SF(ALIASES)3.217 E /F3 9/Times-Roman@0 SF(.)A F0 .716(This option is enabled)5.217 F -(by def)184 180 Q(ault for interacti)-.1 E .3 -.15(ve s)-.25 H(hells.) -.15 E F1(extdeb)144 192 Q(ug)-.2 E F0 .671(If set at shell in)184 204 R +(by def)184 384 Q(ault for interacti)-.1 E .3 -.15(ve s)-.25 H(hells.) +.15 E F1(extdeb)144 396 Q(ug)-.2 E F0 .671(If set at shell in)184 408 R -.2(vo)-.4 G .671(cation, arrange to e).2 F -.15(xe)-.15 G .671 (cute the deb).15 F .672(ugger pro\214le before the shell starts,)-.2 F -.221(identical to the)184 216 R F12.721 E(ugger)-.2 E F0 +.221(identical to the)184 420 R F12.721 E(ugger)-.2 E F0 2.721(option. If)2.721 F .221(set after in)2.721 F -.2(vo)-.4 G .221 -(cation, beha).2 F .22(vior intended for use by)-.2 F(deb)184 228 Q -(uggers is enabled:)-.2 E F1(1.)184 240 Q F0(The)220 240 Q F14.25 +(cation, beha).2 F .22(vior intended for use by)-.2 F(deb)184 432 Q +(uggers is enabled:)-.2 E F1(1.)184 444 Q F0(The)220 444 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 252 Q -(gument.)-.18 E F1(2.)184 264 Q F0 1.667(If the command run by the)220 -264 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 276 -Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 288 Q F0 .84 -(If the command run by the)220 288 R F1(DEB)3.34 E(UG)-.1 E F0 .841 +(number corresponding to each function name supplied as an ar)220 456 Q +(gument.)-.18 E F1(2.)184 468 Q F0 1.667(If the command run by the)220 +468 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 480 +Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 492 Q F0 .84 +(If the command run by the)220 492 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 300 S .488 +(exe)220 504 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 312 Q(ce)-.18 E F0 -.2(bu)2.5 G +(sour)220 516 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 324 Q F2 -.27(BA)220 324 S(SH_ARGC).27 E F0 +(n)-.15 E F0(.)A F1(4.)184 528 Q F2 -.27(BA)220 528 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 336 Q --.15(ve)-.15 G(.).15 E F1(5.)184 348 Q F0 1.637(Function tracing is ena\ -bled: command substitution, shell functions, and sub-)220 348 R -(shells in)220 360 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1 +(are updated as described in their descriptions)3.154 F(abo)220 540 Q +-.15(ve)-.15 G(.).15 E F1(5.)184 552 Q F0 1.637(Function tracing is ena\ +bled: command substitution, shell functions, and sub-)220 552 R +(shells in)220 564 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 372 Q F0 1.082(Error tracing is enabled: comman\ -d substitution, shell functions, and subshells)220 372 R(in)220 384 Q +(traps.)2.5 E F1(6.)184 576 Q F0 1.082(Error tracing is enabled: comman\ +d substitution, shell functions, and subshells)220 576 R(in)220 588 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 396 Q F0 .4(If set, the e)184 396 R .4 +(extglob)144 600 Q F0 .4(If set, the e)184 600 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 408 Q -F0(are enabled.)2.5 E F1(extquote)144 420 Q F0 2.473(If set,)184 432 R +-.15 H(nder).15 E F1 -.1(Pa)2.9 G .4(thname Expan-).1 F(sion)184 612 Q +F0(are enabled.)2.5 E F1(extquote)144 624 Q F0 2.473(If set,)184 636 R F1($)4.973 E F0<08>A F4(string)A F0 4.973<0861>C(nd)-4.973 E F1($)4.973 E F0(")A F4(string)A F0 4.973("q)C 2.473(uoting is performed within) -4.973 F F1(${)4.973 E F4(par)A(ameter)-.15 E F1(})A F0 -.15(ex)4.973 G -(pansions).15 E(enclosed in double quotes.)184 444 Q -(This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 456 Q F0 -1.425(If set, patterns which f)184 456 R 1.425 +(pansions).15 E(enclosed in double quotes.)184 648 Q +(This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 660 Q F0 +1.425(If set, patterns which f)184 660 R 1.425 (ail to match \214lenames during pathname e)-.1 F 1.424 -(xpansion result in an)-.15 F -.15(ex)184 468 S(pansion error).15 E(.) --.55 E F1 -.25(fo)144 480 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0 -.936(If set, the suf)184 492 R<8c78>-.25 E .936(es speci\214ed by the) +(xpansion result in an)-.15 F -.15(ex)184 672 S(pansion error).15 E(.) +-.55 E F1 -.25(fo)144 684 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0 +.936(If set, the suf)184 696 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 504 R .32 +-.25 F .937(ords to be ignored)-.1 F .32(when performing w)184 708 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 516 R F2 .447(SHELL V)2.947 F(ARIABLES)-1.215 E F0 +(pletions. See)184 720 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(.)A F0 .448(This option is)4.948 F(enabled by def) -184 528 Q(ault.)-.1 E F1(globasciiranges)144 540 Q F0 2.519 -(If set, range e)184 552 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 564 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 576 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 588 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 600 Q(.)-.55 E -F1(globstar)144 612 Q F0 .519(If set, the pattern)184 612 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 624 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 -636 Q F1(gnu_errfmt)144 648 Q F0(If set, shell error messages are writt\ -en in the standard GNU error message format.)184 660 Q F1(histappend)144 -672 Q F0 .676 -(If set, the history list is appended to the \214le named by the v)184 -684 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 696 Q(xits, rather than o)-.15 E --.15(ve)-.15 G(rwriting the \214le.).15 E(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(73)192.895 E 0 Cg EP +(FIGNORE)2.948 E F3(.)A F0 .448(This option is)4.948 F(GNU Bash 4.4)72 +768 Q(2017 December 28)136.795 E(73)185.955 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/F1 10/Times-Bold@0 -SF(histr)144 84 Q(eedit)-.18 E F0 .575(If set, and)184 96 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 108 Q F1(histv)144 120 Q -(erify)-.1 E F0 .403(If set, and)184 132 R F1 -.18(re)2.903 G(adline).18 -E F0 .403 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(enabled by def)184 +84 Q(ault.)-.1 E/F1 10/Times-Bold@0 SF(globasciiranges)144 96 Q F0 2.519 +(If set, range e)184 108 R 2.519 +(xpressions used in pattern matching brack)-.15 F 2.518(et e)-.1 F 2.518 +(xpressions \(see)-.15 F/F2 9/Times-Bold@0 SF -.09(Pa)5.018 G(tter).09 E +(n)-.135 E(Matching)184 120 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 132 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 144 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 156 Q(.)-.55 E +F1(globstar)144 168 Q F0 .519(If set, the pattern)184 168 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 180 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 +192 Q F1(gnu_errfmt)144 204 Q F0(If set, shell error messages are writt\ +en in the standard GNU error message format.)184 216 Q F1(histappend)144 +228 Q F0 .676 +(If set, the history list is appended to the \214le named by the v)184 +240 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 252 Q(xits, rather than o)-.15 E +-.15(ve)-.15 G(rwriting the \214le.).15 E F1(histr)144 264 Q(eedit)-.18 +E F0 .575(If set, and)184 276 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 288 Q F1(histv)144 300 Q(erify)-.1 E F0 .403 +(If set, and)184 312 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 144 R 5.661(.I)-.55 G .662 +2.903 F .661(passed to the shell parser)184 324 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 156 S -.25(ff).2 G(er).25 E +G(adline).18 E F0(editing)3.162 E -.2(bu)184 336 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 168 Q F0 1.182(If set, and)184 180 R F1 -.18(re)3.682 +(hostcomplete)144 348 Q F0 1.182(If set, and)184 360 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 -192 R 1.38(ord containing a)-.1 F F1(@)3.881 E F0 1.381 +372 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 9/Times-Bold@0 SF(READLINE)3.881 E F0(abo)184 204 Q -.15(ve)-.15 G -2.5(\). This).15 F(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 -216 Q F0(If set,)184 228 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 240 Q(exit)-.18 E F0 -.22(If set, command substitution inherits the v)184 252 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 264 Q -2.5(vironment. This)-.4 F(option is enabled when)2.5 E/F3 10 -/Times-Italic@0 SF(posix mode)2.5 E F0(is enabled.)2.5 E F1(interacti) -144 276 Q -.1(ve)-.1 G(_comments).1 E F0 .33(If set, allo)184 288 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 300 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 -312 Q(ault.)-.1 E F1(lastpipe)144 324 Q F0 .066 -(If set, and job control is not acti)184 324 R -.15(ve)-.25 G 2.566(,t) +F2(READLINE)3.881 E F0(abo)184 384 Q -.15(ve)-.15 G 2.5(\). This).15 F +(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 396 Q F0(If set,) +184 408 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 420 Q(exit)-.18 E F0 .22 +(If set, command substitution inherits the v)184 432 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 444 Q 2.5(vironment. This)-.4 F +(option is enabled when)2.5 E/F3 10/Times-Italic@0 SF(posix mode)2.5 E +F0(is enabled.)2.5 E F1(interacti)144 456 Q -.1(ve)-.1 G(_comments).1 E +F0 .33(If set, allo)184 468 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 480 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 492 Q +(ault.)-.1 E F1(lastpipe)144 504 Q F0 .066 +(If set, and job control is not acti)184 504 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 336 Q(vironment.)-.4 E F1(lithist)144 348 Q F0 .655(If set, and the) -184 348 R F1(cmdhist)3.155 E F0 .654 +184 516 Q(vironment.)-.4 E F1(lithist)144 528 Q F0 .655(If set, and the) +184 528 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 360 Q +(with embedded ne)184 540 Q (wlines rather than using semicolon separators where possible.)-.25 E F1 -(localv)144 372 Q(ar_inherit)-.1 E F0 .421(If set, local v)184 384 R +(localv)144 552 Q(ar_inherit)-.1 E F0 .421(If set, local v)184 564 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 -396 S .174(ists at a pre).15 F .174(vious scope before an)-.25 F 2.673 +576 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 408 Q -F1(login_shell)144 420 Q F0 .486 +(The nameref attrib)5.173 F .173(ute is not)-.2 F(inherited.)184 588 Q +F1(login_shell)144 600 Q F0 .486 (The shell sets this option if it is started as a login shell \(see)184 -432 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 444 S(lue may not be changed.).25 -E F1(mailwar)144 456 Q(n)-.15 E F0 .815(If set, and a \214le that)184 -468 R F1(bash)3.315 E F0 .814 +612 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 624 S(lue may not be changed.).25 +E F1(mailwar)144 636 Q(n)-.15 E F0 .815(If set, and a \214le that)184 +648 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 480 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E +-.1(wa)184 660 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E (`The mail in)-.74 E F3(mail\214le)2.5 E F0(has been read')2.5 E 2.5('i) --.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E F1(no_empty_cmd_completion)144 492 -Q F0 .324(If set, and)184 504 R F1 -.18(re)2.824 G(adline).18 E F0 .324 +-.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E F1(no_empty_cmd_completion)144 672 +Q F0 .324(If set, and)184 684 R F1 -.18(re)2.824 G(adline).18 E F0 .324 (is being used,)2.824 F F1(bash)2.824 E F0 .324 (will not attempt to search the)2.824 F F2 -.666(PA)2.825 G(TH)-.189 E F0 .325(for possible)2.575 F -(completions when completion is attempted on an empty line.)184 516 Q F1 -(nocaseglob)144 528 Q F0 .437(If set,)184 540 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 552 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 564 Q F0 1.193(If set,)184 -576 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 588 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 600 S .622(rd e).1 F .623(xpansions, or when \214ltering possib\ -le completions as part of programmable com-)-.15 F(pletion.)184 612 Q F1 -(nullglob)144 624 Q F0 .855(If set,)184 636 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 648 S -(pand to a null string, rather than themselv).15 E(es.)-.15 E F1(pr)144 -660 Q(ogcomp)-.18 E F0 .676(If set, the programmable completion f)184 -672 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 684 Q(This option is enabled by def)5 E(ault.)-.1 E F1 -(pr)144 696 Q(omptv)-.18 E(ars)-.1 E F0 1.448 -(If set, prompt strings under)184 708 R 1.448(go parameter e)-.18 F -1.447(xpansion, command substitution, arithmetic)-.15 F -.15(ex)184 720 -S .17(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 F2(PR)2.671 E -(OMPTING)-.27 E F0(abo)2.421 E -.15(ve)-.15 G(.).15 E(GNU Bash 4.4)72 -768 Q(2017 October 7)143.735 E(74)192.895 E 0 Cg EP +(completions when completion is attempted on an empty line.)184 696 Q +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(74)185.955 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 -(This option is enabled by def)184 84 Q(ault.)-.1 E/F1 10/Times-Bold@0 -SF -.18(re)144 96 S(stricted_shell).18 E F0 1.069 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0 +SF(nocaseglob)144 84 Q F0 .437(If set,)184 96 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 108 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 120 Q F0 1.193(If set,)184 +132 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 144 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 156 S .622(rd e).1 F .623(xpansions, or when \214ltering possib\ +le completions as part of programmable com-)-.15 F(pletion.)184 168 Q F1 +(nullglob)144 180 Q F0 .855(If set,)184 192 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 204 S +(pand to a null string, rather than themselv).15 E(es.)-.15 E F1(pr)144 +216 Q(ogcomp)-.18 E F0 .676(If set, the programmable completion f)184 +228 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 240 Q(This option is enabled by def)5 E(ault.)-.1 E F1 +(pr)144 252 Q(omptv)-.18 E(ars)-.1 E F0 1.448 +(If set, prompt strings under)184 264 R 1.448(go parameter e)-.18 F +1.447(xpansion, command substitution, arithmetic)-.15 F -.15(ex)184 276 +S .17(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/F2 9 +/Times-Bold@0 SF(PR)2.671 E(OMPTING)-.27 E F0(abo)2.421 E -.15(ve)-.15 G +(.).15 E(This option is enabled by def)184 288 Q(ault.)-.1 E F1 -.18(re) +144 300 S(stricted_shell).18 E F0 1.069 (The shell sets this option if it is started in restricted mode \(see) -184 108 R/F2 9/Times-Bold@0 SF 1.069(RESTRICTED SHELL)3.569 F F0(belo) -184 120 Q 2.86(w\). The)-.25 F -.25(va)2.86 G .36 -(lue may not be changed.).25 F .36 +184 312 R F2 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 324 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 132 Q(wing the startup \214les to disco)-.25 E +(-).15 E(cuted, allo)184 336 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 144 Q(erbose)-.1 E F0 .502(If set, the)184 156 R F1 +F1(shift_v)144 348 Q(erbose)-.1 E F0 .502(If set, the)184 360 R F1 (shift)3.002 E F0 -.2(bu)3.002 G .501 (iltin prints an error message when the shift count e).2 F .501 -(xceeds the number)-.15 F(of positional parameters.)184 168 Q F1(sour) -144 180 Q(cepath)-.18 E F0 .77(If set, the)184 192 R F1(sour)3.27 E(ce) +(xceeds the number)-.15 F(of positional parameters.)184 372 Q F1(sour) +144 384 Q(cepath)-.18 E F0 .77(If set, the)184 396 R F1(sour)3.27 E(ce) -.18 E F0(\()3.27 E F1(.)A F0 3.27(\)b)C .77(uiltin uses the v)-3.47 F .771(alue of)-.25 F F2 -.666(PA)3.271 G(TH)-.189 E F0 .771 (to \214nd the directory containing the)3.021 F -(\214le supplied as an ar)184 204 Q 2.5(gument. This)-.18 F -(option is enabled by def)2.5 E(ault.)-.1 E F1(xpg_echo)144 216 Q F0 -(If set, the)184 228 Q F1(echo)2.5 E F0 -.2(bu)2.5 G(iltin e).2 E +(\214le supplied as an ar)184 408 Q 2.5(gument. This)-.18 F +(option is enabled by def)2.5 E(ault.)-.1 E F1(xpg_echo)144 420 Q F0 +(If set, the)184 432 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 244.8 Q F0([)2.5 E F1A F0(])A 1.002(Suspend the e)144 256.8 R +108 448.8 Q F0([)2.5 E F1A F0(])A 1.002(Suspend the e)144 460.8 R -.15(xe)-.15 G 1.002(cution of this shell until it recei).15 F -.15(ve) -.25 G 3.501(sa).15 G F2(SIGCONT)A F0 3.501(signal. A)3.251 F 1.001 -(login shell cannot be)3.501 F .022(suspended; the)144 268.8 R F1 +(login shell cannot be)3.501 F .022(suspended; the)144 472.8 R F1 2.522 E F0 .022(option can be used to o)2.522 F -.15(ve)-.15 G .022 (rride this and force the suspension.).15 F .023(The return status is) -5.023 F 2.5(0u)144 280.8 S(nless the shell is a login shell and)-2.5 E +5.023 F 2.5(0u)144 484.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 297.6 Q/F3 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F1([) -108 309.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 .878 -(Return a status of 0 \(true\) or 1 \(f)144 309.6 R .877 +E F1(test)108 501.6 Q/F3 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F1([) +108 513.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 .878 +(Return a status of 0 \(true\) or 1 \(f)144 513.6 R .877 (alse\) depending on the e)-.1 F -.25(va)-.25 G .877 -(luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)144 321.6 +(luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)144 525.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 3.08 -(primaries described abo)144 333.6 R 3.38 -.15(ve u)-.15 H(nder).15 E F2 +(primaries described abo)144 537.6 R 3.38 -.15(ve u)-.15 H(nder).15 E F2 (CONDITION)5.58 E 3.079(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(.)A F1(test)7.579 E F0 3.079(does not accept an)5.579 F(y)-.15 E -(options, nor does it accept and ignore an ar)144 345.6 Q(gument of)-.18 +(options, nor does it accept and ignore an ar)144 549.6 Q(gument of)-.18 E F12.5 E F0(as signifying the end of options.)2.5 E .785 -(Expressions may be combined using the follo)144 363.6 R .786 +(Expressions may be combined using the follo)144 567.6 R .786 (wing operators, listed in decreasing order of prece-)-.25 F 3.412 -(dence. The)144 375.6 R -.25(eva)3.412 G .912 +(dence. The)144 579.6 R -.25(eva)3.412 G .912 (luation depends on the number of ar).25 F .911(guments; see belo)-.18 F 4.711 -.65(w. O)-.25 H .911(perator precedence is).65 F -(used when there are \214v)144 387.6 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G -(ore ar)-2.5 E(guments.)-.18 E F1(!)144 399.6 Q F3 -.2(ex)2.5 G(pr).2 E -F0 -.35(Tr)180 399.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 411.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0 -.26(Returns the v)180 411.6 R .26(alue of)-.25 F F3 -.2(ex)2.76 G(pr).2 +(used when there are \214v)144 591.6 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G +(ore ar)-2.5 E(guments.)-.18 E F1(!)144 603.6 Q F3 -.2(ex)2.5 G(pr).2 E +F0 -.35(Tr)180 603.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 615.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0 +.26(Returns the v)180 615.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 423.6 Q F3 -.2 -(ex)144 435.6 S(pr1).2 E F02.5 E F1(a)A F3 -.2(ex)2.5 G(pr2).2 E F0 --.35(Tr)180 447.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 459.6 S +(rride the normal precedence of opera-).15 F(tors.)180 627.6 Q F3 -.2 +(ex)144 639.6 S(pr1).2 E F02.5 E F1(a)A F3 -.2(ex)2.5 G(pr2).2 E F0 +-.35(Tr)180 651.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 663.6 S (pr1).2 E F02.5 E F1(o)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180 -471.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 488.4 Q F0(and)2.5 E +675.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 692.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 506.4 S -.18(rg)-2.5 G(uments).18 E(The e) -180 518.4 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 530.4 S -.18 -(rg)-2.5 G(ument).18 E(The e)180 542.4 Q -(xpression is true if and only if the ar)-.15 E(gument is not null.)-.18 -E 2.5(2a)144 554.4 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar) -180 566.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 .379(If the \214rst ar)180 578.4 R .38 -(gument is one of the unary conditional operators listed abo)-.18 F .68 --.15(ve u)-.15 H(nder).15 E F2(CONDI-)2.88 E(TION)180 590.4 Q .553 -(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 602.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 614.4 S -.18(rg)-2.5 G -(uments).18 E .236(The follo)180 626.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 638.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.104 E .578(result of the e)180 650.4 R .578(xpression i\ -s the result of the binary test using the \214rst and third ar)-.15 F -(guments)-.18 E 1.333(as operands.)180 662.4 R(The)6.333 E F13.833 -E F0(and)3.833 E F13.832 E F0 1.332 -(operators are considered binary operators when there are)3.832 F .558 -(three ar)180 674.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 .521(test using the second and third ar)180 -686.4 R 3.021(guments. If)-.18 F .521(the \214rst ar)3.021 F .52 -(gument is e)-.18 F(xactly)-.15 E F1(\()3.02 E F0 .52(and the third)3.02 -F(ar)180 698.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 710.4 Q(xpression is f)-.15 E(alse.)-.1 E(GNU Bash 4.4) -72 768 Q(2017 October 7)143.735 E(75)192.895 E 0 Cg EP +(guments.)-.18 E(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(75) +185.955 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 2.5(4a)144 84 S --.18(rg)-2.5 G(uments).18 E .385(If the \214rst ar)180 96 R .385 -(gument is)-.18 F/F1 10/Times-Bold@0 SF(!)2.885 E F0 2.885(,t)C .385 -(he result is the ne)-2.885 F -.05(ga)-.15 G .384(tion of the three-ar) -.05 F .384(gument e)-.18 F .384(xpression com-)-.15 F 1.647 -(posed of the remaining ar)180 108 R 4.147(guments. Otherwise,)-.18 F -1.647(the e)4.147 F 1.648(xpression is parsed and e)-.15 F -.25(va)-.25 -G(luated).25 E(according to precedence using the rules listed abo)180 -120 Q -.15(ve)-.15 G(.).15 E 2.5(5o)144 132 S 2.5(rm)-2.5 G(ore ar)-2.5 -E(guments)-.18 E 1.635(The e)180 144 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 156 -Q -.15(ve)-.15 G(.).15 E(When used with)144 174 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 190.8 Q F0 1.229(Print the accumulated user and system t\ -imes for the shell and for processes run from the shell.)144 190.8 R -(The return status is 0.)144 202.8 Q F1(trap)108 219.6 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 .703(The command)144 231.6 R F2(ar) -3.533 E(g)-.37 E F0 .703(is to be read and e)3.423 F -.15(xe)-.15 G .702 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 2.5(0a)144 84 S +-.18(rg)-2.5 G(uments).18 E(The e)180 96 Q(xpression is f)-.15 E(alse.) +-.1 E 2.5(1a)144 108 S -.18(rg)-2.5 G(ument).18 E(The e)180 120 Q +(xpression is true if and only if the ar)-.15 E(gument is not null.)-.18 +E 2.5(2a)144 132 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar)180 +144 R .37(gument is)-.18 F/F1 10/Times-Bold@0 SF(!)2.87 E F0 2.87(,t)C +.37(he e)-2.87 F .37(xpression is true if and only if the second ar)-.15 +F .37(gument is null.)-.18 F .379(If the \214rst ar)180 156 R .38 +(gument is one of the unary conditional operators listed abo)-.18 F .68 +-.15(ve u)-.15 H(nder).15 E/F2 9/Times-Bold@0 SF(CONDI-)2.88 E(TION)180 +168 Q .553(AL EXPRESSIONS)-.18 F/F3 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 180 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 192 S -.18(rg)-2.5 G +(uments).18 E .236(The follo)180 204 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 216 R 1.155 -.15(ve u) +-.15 H(nder).15 E F2(CONDITION)3.355 E .855(AL EXPRESSIONS)-.18 F F3(,)A +F0(the)3.104 E .578(result of the e)180 228 R .578(xpression is the res\ +ult of the binary test using the \214rst and third ar)-.15 F(guments) +-.18 E 1.333(as operands.)180 240 R(The)6.333 E F13.833 E F0(and) +3.833 E F13.832 E F0 1.332 +(operators are considered binary operators when there are)3.832 F .558 +(three ar)180 252 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 .521(test using the second and third ar)180 264 R 3.021 +(guments. If)-.18 F .521(the \214rst ar)3.021 F .52(gument is e)-.18 F +(xactly)-.15 E F1(\()3.02 E F0 .52(and the third)3.02 F(ar)180 276 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 288 Q +(xpression is f)-.15 E(alse.)-.1 E 2.5(4a)144 300 S -.18(rg)-2.5 G +(uments).18 E .385(If the \214rst ar)180 312 R .385(gument is)-.18 F F1 +(!)2.885 E F0 2.885(,t)C .385(he result is the ne)-2.885 F -.05(ga)-.15 +G .384(tion of the three-ar).05 F .384(gument e)-.18 F .384 +(xpression com-)-.15 F 1.647(posed of the remaining ar)180 324 R 4.147 +(guments. Otherwise,)-.18 F 1.647(the e)4.147 F 1.648 +(xpression is parsed and e)-.15 F -.25(va)-.25 G(luated).25 E +(according to precedence using the rules listed abo)180 336 Q -.15(ve) +-.15 G(.).15 E 2.5(5o)144 348 S 2.5(rm)-2.5 G(ore ar)-2.5 E(guments)-.18 +E 1.635(The e)180 360 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 372 Q -.15(ve)-.15 G(.).15 E(When used with)144 390 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 406.8 Q F0 +1.229(Print the accumulated user and system times for the shell and for\ + processes run from the shell.)144 406.8 R(The return status is 0.)144 +418.8 Q F1(trap)108 435.6 Q F0([)2.5 E F1(\255lp)A F0 2.5(][)C([)-2.5 E +/F4 10/Times-Italic@0 SF(ar)A(g)-.37 E F0(])A F4(sigspec)2.5 E F0(...]) +2.5 E .703(The command)144 447.6 R F4(ar)3.533 E(g)-.37 E F0 .703 +(is to be read and e)3.423 F -.15(xe)-.15 G .702 (cuted when the shell recei).15 F -.15(ve)-.25 G 3.202(ss).15 G -(ignal\(s\))-3.202 E F2(sigspec)3.202 E F0 5.702(.I).31 G(f)-5.702 E F2 +(ignal\(s\))-3.202 E F4(sigspec)3.202 E F0 5.702(.I).31 G(f)-5.702 E F4 (ar)3.532 E(g)-.37 E F0(is)3.422 E .608(absent \(and there is a single) -144 243.6 R F2(sigspec)3.108 E F0 3.108(\)o)C(r)-3.108 E F13.108 E +144 459.6 R F4(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 -.659(\(the v)144 255.6 R .659(alue it had upon entrance to the shell\).) --.25 F(If)5.658 E F2(ar)3.488 E(g)-.37 E F0 .658 -(is the null string the signal speci\214ed by each)3.378 F F2(sigspec) -144.34 267.6 Q F0 .58(is ignored by the shell and by the commands it in) -3.39 F -.2(vo)-.4 G -.1(ke).2 G 3.081(s. If).1 F F2(ar)3.411 E(g)-.37 E +.659(\(the v)144 471.6 R .659(alue it had upon entrance to the shell\).) +-.25 F(If)5.658 E F4(ar)3.488 E(g)-.37 E F0 .658 +(is the null string the signal speci\214ed by each)3.378 F F4(sigspec) +144.34 483.6 Q F0 .58(is ignored by the shell and by the commands it in) +3.39 F -.2(vo)-.4 G -.1(ke).2 G 3.081(s. If).1 F F4(ar)3.411 E(g)-.37 E F0 .581(is not present and)3.301 F F13.081 E F0(has)3.081 E 1.215 -(been supplied, then the trap commands associated with each)144 279.6 R -F2(sigspec)4.054 E F0 1.214(are displayed.)4.024 F 1.214(If no ar)6.214 -F(gu-)-.18 E .86(ments are supplied or if only)144 291.6 R F13.36 +(been supplied, then the trap commands associated with each)144 495.6 R +F4(sigspec)4.054 E F0 1.214(are displayed.)4.024 F 1.214(If no ar)6.214 +F(gu-)-.18 E .86(ments are supplied or if only)144 507.6 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 303.6 R F12.83 E F0 .33(option causes the shell \ +(signal. The)144 519.6 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.31 -(bers. Each)144 315.6 R F2(sigspec)4.65 E F0 1.811 -(is either a signal name de\214ned in <)4.62 F F2(signal.h)A F0 1.811 +(bers. Each)144 531.6 R F4(sigspec)4.65 E F0 1.811 +(is either a signal name de\214ned in <)4.62 F F4(signal.h)A F0 1.811 (>, or a signal number)B 6.811(.S)-.55 G(ignal)-6.811 E -(names are case insensiti)144 327.6 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 1.649 -(If a)144 345.6 R F2(sigspec)4.489 E F0(is)4.459 E F3(EXIT)4.149 E F0 -1.649(\(0\) the command)3.899 F F2(ar)4.479 E(g)-.37 E F0 1.649(is e) -4.369 F -.15(xe)-.15 G 1.649(cuted on e).15 F 1.648(xit from the shell.) --.15 F 1.648(If a)6.648 F F2(sigspec)4.488 E F0(is)4.458 E F3(DEB)144 -357.6 Q(UG)-.09 E/F4 9/Times-Roman@0 SF(,)A F0 1.167(the command)3.417 F -F2(ar)3.997 E(g)-.37 E F0 1.167(is e)3.887 F -.15(xe)-.15 G 1.167 -(cuted before e).15 F -.15(ve)-.25 G(ry).15 E F2 1.168(simple command) -3.667 F F0(,)A F2(for)3.668 E F0(command,)3.668 E F2(case)3.668 E F0 -(com-)3.668 E(mand,)144 369.6 Q F2(select)2.647 E F0 .147(command, e) -2.647 F -.15(ve)-.25 G .147(ry arithmetic).15 F F2(for)2.647 E F0 .146 +(names are case insensiti)144 543.6 Q .3 -.15(ve a)-.25 H(nd the).15 E +F2(SIG)2.5 E F0(pre\214x is optional.)2.25 E 1.649(If a)144 561.6 R F4 +(sigspec)4.489 E F0(is)4.459 E F2(EXIT)4.149 E F0 1.649 +(\(0\) the command)3.899 F F4(ar)4.479 E(g)-.37 E F0 1.649(is e)4.369 F +-.15(xe)-.15 G 1.649(cuted on e).15 F 1.648(xit from the shell.)-.15 F +1.648(If a)6.648 F F4(sigspec)4.488 E F0(is)4.458 E F2(DEB)144 573.6 Q +(UG)-.09 E F3(,)A F0 1.167(the command)3.417 F F4(ar)3.997 E(g)-.37 E F0 +1.167(is e)3.887 F -.15(xe)-.15 G 1.167(cuted before e).15 F -.15(ve) +-.25 G(ry).15 E F4 1.168(simple command)3.667 F F0(,)A F4(for)3.668 E F0 +(command,)3.668 E F4(case)3.668 E F0(com-)3.668 E(mand,)144 585.6 Q F4 +(select)2.647 E F0 .147(command, e)2.647 F -.15(ve)-.25 G .147 +(ry arithmetic).15 F F4(for)2.647 E F0 .146 (command, and before the \214rst command e)2.647 F -.15(xe)-.15 G .146 -(cutes in a).15 F .145(shell function \(see)144 381.6 R F3 .145 +(cutes in a).15 F .145(shell function \(see)144 597.6 R F2 .145 (SHELL GRAMMAR)2.645 F F0(abo)2.395 E -.15(ve)-.15 G 2.646(\). Refer).15 F .146(to the description of the)2.646 F F1(extdeb)2.646 E(ug)-.2 E F0 -.146(option to)2.646 F(the)144 393.6 Q F1(shopt)3.201 E F0 -.2(bu)3.201 +.146(option to)2.646 F(the)144 609.6 Q F1(shopt)3.201 E F0 -.2(bu)3.201 G .7(iltin for details of its ef).2 F .7(fect on the)-.25 F F1(DEB)3.2 E -(UG)-.1 E F0 3.2(trap. If)3.2 F(a)3.2 E F2(sigspec)3.54 E F0(is)3.51 E -F3(RETURN)3.2 E F4(,)A F0 .7(the com-)2.95 F(mand)144 405.6 Q F2(ar) +(UG)-.1 E F0 3.2(trap. If)3.2 F(a)3.2 E F4(sigspec)3.54 E F0(is)3.51 E +F2(RETURN)3.2 E F3(,)A F0 .7(the com-)2.95 F(mand)144 621.6 Q F4(ar) 3.473 E(g)-.37 E F0 .643(is e)3.363 F -.15(xe)-.15 G .643 (cuted each time a shell function or a script e).15 F -.15(xe)-.15 G .644(cuted with the).15 F F1(.)3.144 E F0(or)3.144 E F1(sour)3.144 E(ce) --.18 E F0 -.2(bu)3.144 G(iltins).2 E(\214nishes e)144 417.6 Q -.15(xe) --.15 G(cuting.).15 E .961(If a)144 435.6 R F2(sigspec)3.801 E F0(is) -3.771 E F3(ERR)3.461 E F4(,)A F0 .961(the command)3.211 F F2(ar)3.791 E +-.18 E F0 -.2(bu)3.144 G(iltins).2 E(\214nishes e)144 633.6 Q -.15(xe) +-.15 G(cuting.).15 E .961(If a)144 651.6 R F4(sigspec)3.801 E F0(is) +3.771 E F2(ERR)3.461 E F3(,)A F0 .961(the command)3.211 F F4(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(ra).15 G .96(pipeline \(which may consist of a) -.001 F .185(single simple command\), a list, or a compound command ret\ -urns a non\255zero e)144 447.6 R .185(xit status, subject to)-.15 F .452 -(the follo)144 459.6 R .452(wing conditions.)-.25 F(The)5.452 E F3(ERR) +urns a non\255zero e)144 663.6 R .185(xit status, subject to)-.15 F .452 +(the follo)144 675.6 R .452(wing conditions.)-.25 F(The)5.452 E F2(ERR) 2.952 E F0 .451(trap is not e)2.701 F -.15(xe)-.15 G .451 (cuted if the f).15 F .451(ailed command is part of the com-)-.1 F .387 -(mand list immediately follo)144 471.6 R .387(wing a)-.25 F F1(while) +(mand list immediately follo)144 687.6 R .387(wing a)-.25 F F1(while) 2.887 E F0(or)2.887 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.898 E F0 .388 -(statement, part)4.848 F .778(of a command e)144 483.6 R -.15(xe)-.15 G +(ord, part of the test in an)-.1 F F4(if)2.898 E F0 .388 +(statement, part)4.848 F .778(of a command e)144 699.6 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.277 E F0 -3.277(,a)C -.15(ny)-3.277 G 1.28(command in a pipeline b)144 495.6 R +3.277(,a)C -.15(ny)-3.277 G 1.28(command in a pipeline b)144 711.6 R 1.28(ut the last, or if the command')-.2 F 3.78(sr)-.55 G 1.28(eturn v) -3.78 F 1.28(alue is being in)-.25 F -.15(ve)-.4 G 1.28(rted using).15 F -F1(!)3.78 E F0(.)A(These are the same conditions obe)144 507.6 Q +F1(!)3.78 E F0(.)A(These are the same conditions obe)144 723.6 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 1.095 -(Signals ignored upon entry to the shell cannot be trapped or reset.)144 -525.6 R -.35(Tr)6.095 G 1.095(apped signals that are not).35 F .662 -(being ignored are reset to their original v)144 537.6 R .662 -(alues in a subshell or subshell en)-.25 F .662(vironment when one is) --.4 F 2.5(created. The)144 549.6 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 -566.4 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 578.4 S .174 -(th no options, indicate ho).4 F 2.674(we)-.25 G(ach)-2.674 E F2(name) -3.034 E F0 -.1(wo)2.854 G .173 -(uld be interpreted if used as a command name.).1 F .173(If the)5.173 F -F1144 590.4 Q F0 .842(option is used,)3.342 F F1(type)3.342 E F0 -.843(prints a string which is one of)3.343 F F2(alias)3.343 E F0(,).27 E -F2 -.1(ke)3.343 G(ywor)-.2 E(d)-.37 E F0(,).77 E F2(function)3.343 E F0 -(,).24 E F2 -.2(bu)3.343 G(iltin).2 E F0 3.343(,o).24 G(r)-3.343 E F2 -(\214le)5.253 E F0(if)3.523 E F2(name)144.36 602.4 Q F0 .087 -(is an alias, shell reserv)2.767 F .087(ed w)-.15 F .087 -(ord, function, b)-.1 F .086(uiltin, or disk \214le, respecti)-.2 F -.15 -(ve)-.25 G(ly).15 E 5.086(.I)-.65 G 2.586(ft)-5.086 G(he)-2.586 E F2 -(name)2.946 E F0 .086(is not)2.766 F .118 -(found, then nothing is printed, and an e)144 614.4 R .118 -(xit status of f)-.15 F .118(alse is returned.)-.1 F .119(If the)5.119 F -F12.619 E F0 .119(option is used,)2.619 F F1(type)2.619 E F0 .855 -(either returns the name of the disk \214le that w)144 626.4 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 .64(mand name, or nothing if)144 -638.4 R/F5 10/Courier@0 SF .64(type -t name)3.14 F F0 -.1(wo)3.14 G .641 -(uld not return).1 F F2(\214le)3.141 E F0 5.641(.T).18 G(he)-5.641 E F1 -3.141 E F0 .641(option forces a)3.141 F F3 -.666(PA)3.141 G(TH) --.189 E F0 .113(search for each)144 650.4 R F2(name)2.613 E F0 2.613(,e) -C -.15(ve)-2.863 G 2.613(ni).15 G(f)-2.613 E F5 .113(type -t name)2.613 -F F0 -.1(wo)2.613 G .113(uld not return).1 F F2(\214le)2.613 E F0 5.113 -(.I).18 G 2.613(fa)-5.113 G .112(command is hashed,)-.001 F F1 -2.612 E F0(and)144 662.4 Q F13.23 E F0 .73(print the hashed v)3.23 -F .731 -(alue, which is not necessarily the \214le that appears \214rst in)-.25 -F F3 -.666(PA)3.231 G(TH)-.189 E F4(.)A F0 .731(If the)5.231 F F1 -144 674.4 Q F0 1.749(option is used,)4.249 F F1(type)4.248 E F0 1.748 -(prints all of the places that contain an e)4.248 F -.15(xe)-.15 G 1.748 -(cutable named).15 F F2(name)4.248 E F0 6.748(.T).18 G(his)-6.748 E .744 -(includes aliases and functions, if and only if the)144 686.4 R F1 -3.244 E F0 .744(option is not also used.)3.244 F .744 -(The table of hashed)5.744 F 1.223(commands is not consulted when using) -144 698.4 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 .325(with the) -144 710.4 R F1(command)2.825 E F0 -.2(bu)2.825 G(iltin.).2 E F1(type) -5.325 E F0 .325(returns true if all of the ar)2.825 F .326 -(guments are found, f)-.18 F .326(alse if an)-.1 F 2.826(ya)-.15 G .326 -(re not)-2.826 F(found.)144 722.4 Q(GNU Bash 4.4)72 768 Q -(2017 October 7)143.735 E(76)192.895 E 0 Cg EP +(\)o)C(ption.)-2.5 E(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E +(76)185.955 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(ulimit)108 84 Q F0([)2.5 E F1(\255HSabcde\214klmnpqrstuvxPT)A F0([) -2.5 E/F2 10/Times-Italic@0 SF(limit)A F0(]])A(Pro)144 96 Q .244 -(vides control o)-.15 F -.15(ve)-.15 G 2.744(rt).15 G .244 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.095 +(Signals ignored upon entry to the shell cannot be trapped or reset.)144 +84 R -.35(Tr)6.095 G 1.095(apped signals that are not).35 F .662 +(being ignored are reset to their original v)144 96 R .662 +(alues in a subshell or subshell en)-.25 F .662(vironment when one is) +-.4 F 2.5(created. The)144 108 R(return status is f)2.5 E(alse if an)-.1 +E(y)-.15 E/F1 10/Times-Italic@0 SF(sigspec)2.84 E F0(is in)2.81 E -.25 +(va)-.4 G(lid; otherwise).25 E/F2 10/Times-Bold@0 SF(trap)2.5 E F0 +(returns true.)2.5 E F2(type)108 124.8 Q F0([)2.5 E F2(\255aftpP)A F0(]) +A F1(name)2.5 E F0([)2.5 E F1(name)A F0(...])2.5 E -.4(Wi)144 136.8 S +.174(th no options, indicate ho).4 F 2.674(we)-.25 G(ach)-2.674 E F1 +(name)3.034 E F0 -.1(wo)2.854 G .173 +(uld be interpreted if used as a command name.).1 F .173(If the)5.173 F +F2144 148.8 Q F0 .842(option is used,)3.342 F F2(type)3.342 E F0 +.843(prints a string which is one of)3.343 F F1(alias)3.343 E F0(,).27 E +F1 -.1(ke)3.343 G(ywor)-.2 E(d)-.37 E F0(,).77 E F1(function)3.343 E F0 +(,).24 E F1 -.2(bu)3.343 G(iltin).2 E F0 3.343(,o).24 G(r)-3.343 E F1 +(\214le)5.253 E F0(if)3.523 E F1(name)144.36 160.8 Q F0 .087 +(is an alias, shell reserv)2.767 F .087(ed w)-.15 F .087 +(ord, function, b)-.1 F .086(uiltin, or disk \214le, respecti)-.2 F -.15 +(ve)-.25 G(ly).15 E 5.086(.I)-.65 G 2.586(ft)-5.086 G(he)-2.586 E F1 +(name)2.946 E F0 .086(is not)2.766 F .118 +(found, then nothing is printed, and an e)144 172.8 R .118 +(xit status of f)-.15 F .118(alse is returned.)-.1 F .119(If the)5.119 F +F22.619 E F0 .119(option is used,)2.619 F F2(type)2.619 E F0 .855 +(either returns the name of the disk \214le that w)144 184.8 R .855 +(ould be e)-.1 F -.15(xe)-.15 G .855(cuted if).15 F F1(name)3.715 E F0 +.855(were speci\214ed as a com-)3.535 F .64(mand name, or nothing if)144 +196.8 R/F3 10/Courier@0 SF .64(type -t name)3.14 F F0 -.1(wo)3.14 G .641 +(uld not return).1 F F1(\214le)3.141 E F0 5.641(.T).18 G(he)-5.641 E F2 +3.141 E F0 .641(option forces a)3.141 F/F4 9/Times-Bold@0 SF -.666 +(PA)3.141 G(TH)-.189 E F0 .113(search for each)144 208.8 R F1(name)2.613 +E F0 2.613(,e)C -.15(ve)-2.863 G 2.613(ni).15 G(f)-2.613 E F3 .113 +(type -t name)2.613 F F0 -.1(wo)2.613 G .113(uld not return).1 F F1 +(\214le)2.613 E F0 5.113(.I).18 G 2.613(fa)-5.113 G .112 +(command is hashed,)-.001 F F22.612 E F0(and)144 220.8 Q F2 +3.23 E F0 .73(print the hashed v)3.23 F .731 +(alue, which is not necessarily the \214le that appears \214rst in)-.25 +F F4 -.666(PA)3.231 G(TH)-.189 E/F5 9/Times-Roman@0 SF(.)A F0 .731 +(If the)5.231 F F2144 232.8 Q F0 1.749(option is used,)4.249 F F2 +(type)4.248 E F0 1.748(prints all of the places that contain an e)4.248 +F -.15(xe)-.15 G 1.748(cutable named).15 F F1(name)4.248 E F0 6.748(.T) +.18 G(his)-6.748 E .744 +(includes aliases and functions, if and only if the)144 244.8 R F2 +3.244 E F0 .744(option is not also used.)3.244 F .744 +(The table of hashed)5.744 F 1.223(commands is not consulted when using) +144 256.8 R F23.723 E F0 6.223(.T)C(he)-6.223 E F23.723 E F0 +1.223(option suppresses shell function lookup, as)3.723 F .325(with the) +144 268.8 R F2(command)2.825 E F0 -.2(bu)2.825 G(iltin.).2 E F2(type) +5.325 E F0 .325(returns true if all of the ar)2.825 F .326 +(guments are found, f)-.18 F .326(alse if an)-.1 F 2.826(ya)-.15 G .326 +(re not)-2.826 F(found.)144 280.8 Q F2(ulimit)108 297.6 Q F0([)2.5 E F2 +(\255HSabcde\214klmnpqrstuvxPT)A F0([)2.5 E F1(limit)A F0(]])A(Pro)144 +309.6 Q .244(vides control o)-.15 F -.15(ve)-.15 G 2.744(rt).15 G .244 (he resources a)-2.744 F -.25(va)-.2 G .244 (ilable to the shell and to processes started by it, on systems).25 F -.943(that allo)144 108 R 3.443(ws)-.25 G .943(uch control.)-3.443 F(The) -5.943 E F13.443 E F0(and)3.443 E F13.444 E F0 .944 +.943(that allo)144 321.6 R 3.443(ws)-.25 G .943(uch control.)-3.443 F +(The)5.943 E F23.443 E F0(and)3.443 E F23.444 E F0 .944 (options specify that the hard or soft limit is set for the)3.444 F(gi) -144 120 Q -.15(ve)-.25 G 2.709(nr).15 G 2.709(esource. A)-2.709 F .208(\ -hard limit cannot be increased by a non-root user once it is set; a sof\ -t limit may)2.709 F .425(be increased up to the v)144 132 R .425 -(alue of the hard limit.)-.25 F .426(If neither)5.425 F F12.926 E -F0(nor)2.926 E F12.926 E F0 .426 +144 333.6 Q -.15(ve)-.25 G 2.709(nr).15 G 2.709(esource. A)-2.709 F .208 +(hard limit cannot be increased by a non-root user once it is set; a so\ +ft limit may)2.709 F .425(be increased up to the v)144 345.6 R .425 +(alue of the hard limit.)-.25 F .426(If neither)5.425 F F22.926 E +F0(nor)2.926 E F22.926 E F0 .426 (is speci\214ed, both the soft and)2.926 F .139(hard limits are set.)144 -144 R .139(The v)5.139 F .139(alue of)-.25 F F2(limit)2.729 E F0 .139 +357.6 R .139(The v)5.139 F .139(alue of)-.25 F F1(limit)2.729 E F0 .139 (can be a number in the unit speci\214ed for the resource or one)3.319 F -.741(of the special v)144 156 R(alues)-.25 E F1(hard)3.241 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) +.741(of the special v)144 369.6 R(alues)-.25 E F2(hard)3.241 E F0(,)A F2 +(soft)3.241 E F0 3.241(,o)C(r)-3.241 E F2(unlimited)3.241 E F0 3.241(,w) C .741(hich stand for the current hard limit, the current)-3.241 F .78 -(soft limit, and no limit, respecti)144 168 R -.15(ve)-.25 G(ly).15 E -5.78(.I)-.65 G(f)-5.78 E F2(limit)3.37 E F0 .78 +(soft limit, and no limit, respecti)144 381.6 R -.15(ve)-.25 G(ly).15 E +5.78(.I)-.65 G(f)-5.78 E F1(limit)3.37 E F0 .78 (is omitted, the current v)3.96 F .78(alue of the soft limit of the)-.25 -F .498(resource is printed, unless the)144 180 R F12.999 E F0 .499 -(option is gi)2.999 F -.15(ve)-.25 G 2.999(n. When).15 F .499 +F .498(resource is printed, unless the)144 393.6 R F22.999 E F0 +.499(option is gi)2.999 F -.15(ve)-.25 G 2.999(n. When).15 F .499 (more than one resource is speci\214ed, the)2.999 F -(limit name and unit are printed before the v)144 192 Q 2.5(alue. Other) --.25 F(options are interpreted as follo)2.5 E(ws:)-.25 E F1144 204 -Q F0(All current limits are reported)180 204 Q F1144 216 Q F0 -(The maximum sock)180 216 Q(et b)-.1 E(uf)-.2 E(fer size)-.25 E F1 -144 228 Q F0(The maximum size of core \214les created)180 228 Q F1 -144 240 Q F0(The maximum size of a process')180 240 Q 2.5(sd)-.55 G -(ata se)-2.5 E(gment)-.15 E F1144 252 Q F0 -(The maximum scheduling priority \("nice"\))180 252 Q F1144 264 Q -F0(The maximum size of \214les written by the shell and its children)180 -264 Q F1144 276 Q F0(The maximum number of pending signals)180 276 -Q F1144 288 Q F0 -(The maximum number of kqueues that may be allocated)180 288 Q F1 -144 300 Q F0(The maximum size that may be lock)180 300 Q(ed into memory) --.1 E F1144 312 Q F0(The maximum resident set size \(man)180 312 Q -2.5(ys)-.15 G(ystems do not honor this limit\))-2.5 E F1144 324 Q -F0 .791(The maximum number of open \214le descriptors \(most systems do\ - not allo)180 324 R 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F -(be set\))180 336 Q F1144 348 Q F0 -(The pipe size in 512-byte blocks \(this may not be set\))180 348 Q F1 -144 360 Q F0(The maximum number of bytes in POSIX message queues) -180 360 Q F1144 372 Q F0 -(The maximum real-time scheduling priority)180 372 Q F1144 384 Q -F0(The maximum stack size)180 384 Q F1144 396 Q F0 -(The maximum amount of cpu time in seconds)180 396 Q F1144 408 Q -F0(The maximum number of processes a)180 408 Q -.25(va)-.2 G -(ilable to a single user).25 E F1144 420 Q F0 .47 -(The maximum amount of virtual memory a)180 420 R -.25(va)-.2 G .47 -(ilable to the shell and, on some systems, to).25 F(its children)180 432 -Q F1144 444 Q F0(The maximum number of \214le locks)180 444 Q F1 -144 456 Q F0(The maximum number of pseudoterminals)180 456 Q F1 -144 468 Q F0(The maximum number of threads)180 468 Q(If)144 484.8 -Q F2(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 +(limit name and unit are printed before the v)144 405.6 Q 2.5 +(alue. Other)-.25 F(options are interpreted as follo)2.5 E(ws:)-.25 E F2 +144 417.6 Q F0(All current limits are reported)180 417.6 Q F2 +144 429.6 Q F0(The maximum sock)180 429.6 Q(et b)-.1 E(uf)-.2 E +(fer size)-.25 E F2144 441.6 Q F0 +(The maximum size of core \214les created)180 441.6 Q F2144 453.6 +Q F0(The maximum size of a process')180 453.6 Q 2.5(sd)-.55 G(ata se) +-2.5 E(gment)-.15 E F2144 465.6 Q F0 +(The maximum scheduling priority \("nice"\))180 465.6 Q F2144 +477.6 Q F0 +(The maximum size of \214les written by the shell and its children)180 +477.6 Q F2144 489.6 Q F0(The maximum number of pending signals)180 +489.6 Q F2144 501.6 Q F0 +(The maximum number of kqueues that may be allocated)180 501.6 Q F2 +144 513.6 Q F0(The maximum size that may be lock)180 513.6 Q +(ed into memory)-.1 E F2144 525.6 Q F0 +(The maximum resident set size \(man)180 525.6 Q 2.5(ys)-.15 G +(ystems do not honor this limit\))-2.5 E F2144 537.6 Q F0 .791(Th\ +e maximum number of open \214le descriptors \(most systems do not allo) +180 537.6 R 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F +(be set\))180 549.6 Q F2144 561.6 Q F0 +(The pipe size in 512-byte blocks \(this may not be set\))180 561.6 Q F2 +144 573.6 Q F0 +(The maximum number of bytes in POSIX message queues)180 573.6 Q F2 +144 585.6 Q F0(The maximum real-time scheduling priority)180 585.6 +Q F2144 597.6 Q F0(The maximum stack size)180 597.6 Q F2144 +609.6 Q F0(The maximum amount of cpu time in seconds)180 609.6 Q F2 +144 621.6 Q F0(The maximum number of processes a)180 621.6 Q -.25 +(va)-.2 G(ilable to a single user).25 E F2144 633.6 Q F0 .47 +(The maximum amount of virtual memory a)180 633.6 R -.25(va)-.2 G .47 +(ilable to the shell and, on some systems, to).25 F(its children)180 +645.6 Q F2144 657.6 Q F0(The maximum number of \214le locks)180 +657.6 Q F2144 669.6 Q F0(The maximum number of pseudoterminals)180 +669.6 Q F2144 681.6 Q F0(The maximum number of threads)180 681.6 Q +(If)144 698.4 Q F1(limit)3.058 E F0 .468(is gi)3.648 F -.15(ve)-.25 G +.468(n, and the).15 F F22.968 E F0 .468(option is not used,)2.968 +F F1(limit)2.968 E F0 .468(is the ne)2.968 F 2.968(wv)-.25 G .468 (alue of the speci\214ed resource.)-3.218 F(If)5.468 E .044 -(no option is gi)144 496.8 R -.15(ve)-.25 G .044(n, then).15 F F1 +(no option is gi)144 710.4 R -.15(ve)-.25 G .044(n, then).15 F F2 2.544 E F0 .045(is assumed.)2.545 F -1.11(Va)5.045 G .045 -(lues are in 1024-byte increments, e)1.11 F .045(xcept for)-.15 F F1 +(lues are in 1024-byte increments, e)1.11 F .045(xcept for)-.15 F F2 2.545 E F0 2.545(,w)C .045(hich is)-2.545 F 1.589(in seconds;)144 -508.8 R F14.089 E F0 4.089(,w)C 1.589 -(hich is in units of 512-byte blocks;)-4.089 F F14.089 E F0(,)A F1 -4.089 E F0(,)A F14.089 E F0(,)A F14.089 E F0(,)A F1 -4.089 E F0 4.089(,a)C(nd)-4.089 E F14.089 E F0 4.088(,w)C -1.588(hich are)-4.088 F 1.438(unscaled v)144 520.8 R 1.438 -(alues; and, when in Posix mode,)-.25 F F13.939 E F0(and)3.939 E -F13.939 E F0 3.939(,w)C 1.439(hich are in 512-byte increments.) --3.939 F(The)6.439 E .404(return status is 0 unless an in)144 532.8 R --.25(va)-.4 G .404(lid option or ar).25 F .404 -(gument is supplied, or an error occurs while setting)-.18 F 2.5(an)144 -544.8 S .5 -.25(ew l)-2.5 H(imit.).25 E F1(umask)108 561.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 -.2(The user \214le-creation mask is set to)144 573.6 R F2(mode)2.7 E F0 -5.2(.I).18 G(f)-5.2 E F2(mode)3.08 E F0(be)2.88 E .2 -(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 585.6 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 -597.6 Q F2(mode)3.262 E F0 .382(is omitted, the current v)3.062 F .382 -(alue of the mask is printed.)-.25 F(The)5.382 E F12.882 E F0 .382 -(option causes the mask to be)2.882 F .547 -(printed in symbolic form; the def)144 609.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 621.6 Q F0 .551 -(is omitted, the output is in a form that may be reused as input.)3.231 -F .552(The return status is 0 if the)5.552 F(mode w)144 633.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 650.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 662.4 Q 1.955 -.15(ve e)-.15 H(ach).15 E F2(name) -4.155 E F0 1.655(from the list of de\214ned aliases.)4.155 F(If)6.655 E -F14.155 E F0 1.655(is supplied, all alias de\214nitions are)4.155 -F(remo)144 674.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 691.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 703.2 S 3.827(re).15 G(ach)-3.827 E F2(name)3.827 E F0 -3.827(,r).18 G(emo)-3.827 E 1.627 -.15(ve t)-.15 H 1.327 -(he corresponding v).15 F 1.327(ariable or function.)-.25 F 1.327 -(If the)6.327 F F13.828 E F0 1.328(option is gi)3.828 F -.15(ve) --.25 G 1.328(n, each).15 F F2(name)144.36 715.2 Q F0 1.551 -(refers to a shell v)4.231 F 1.551(ariable, and that v)-.25 F 1.551 -(ariable is remo)-.25 F -.15(ve)-.15 G 4.05(d. Read-only).15 F -.25(va) -4.05 G 1.55(riables may not be).25 F 4.641(unset. If)144 727.2 R F1 -4.641 E F0 2.141(is speci\214ed, each)4.641 F F2(name)5.001 E F0 -2.141(refers to a shell function, and the function de\214nition is)4.821 -F(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(77)192.895 E 0 Cg EP +722.4 R F24.089 E F0 4.089(,w)C 1.589 +(hich is in units of 512-byte blocks;)-4.089 F F24.089 E F0(,)A F2 +4.089 E F0(,)A F24.089 E F0(,)A F24.089 E F0(,)A F2 +4.089 E F0 4.089(,a)C(nd)-4.089 E F24.089 E F0 4.088(,w)C +1.588(hich are)-4.088 F(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E +(77)185.955 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(remo)144 84 Q -.15 -(ve)-.15 G 2.538(d. If).15 F(the)2.537 E/F1 10/Times-Bold@0 SF -2.537 E F0 .037(option is supplied, and)2.537 F/F2 10/Times-Italic@0 SF -(name)2.537 E F0 .037(is a v)2.537 F .037(ariable with the)-.25 F F2 -(namer)2.537 E(ef)-.37 E F0(attrib)2.537 E(ute,)-.2 E F2(name)2.537 E F0 -(will)2.537 E .492(be unset rather than the v)144 96 R .492 -(ariable it references.)-.25 F F15.492 E F0 .492(has no ef)2.992 F -.492(fect if the)-.25 F F12.992 E F0 .492(option is supplied.) -2.992 F .493(If no)5.493 F .221(options are supplied, each)144 108 R F2 -(name)2.721 E F0 .221(refers to a v)2.721 F .22 -(ariable; if there is no v)-.25 F .22(ariable by that name, an)-.25 F -2.72(yf)-.15 G(unc-)-2.72 E 1.188(tion with that name is unset.)144 120 -R 1.189(Each unset v)6.189 F 1.189(ariable or function is remo)-.25 F --.15(ve)-.15 G 3.689(df).15 G 1.189(rom the en)-3.689 F(vironment)-.4 E -3.206(passed to subsequent commands.)144 132 R 3.206(If an)8.206 F 5.706 +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E 1.438(unscaled v) +144 84 R 1.438(alues; and, when in Posix mode,)-.25 F/F1 10/Times-Bold@0 +SF3.939 E F0(and)3.939 E F13.939 E F0 3.939(,w)C 1.439 +(hich are in 512-byte increments.)-3.939 F(The)6.439 E .404 +(return status is 0 unless an in)144 96 R -.25(va)-.4 G .404 +(lid option or ar).25 F .404 +(gument is supplied, or an error occurs while setting)-.18 F 2.5(an)144 +108 S .5 -.25(ew l)-2.5 H(imit.).25 E F1(umask)108 124.8 Q F0([)2.5 E F1 +A F0 2.5(][)C F1-2.5 E F0 2.5(][)C/F2 10/Times-Italic@0 SF +(mode)-2.5 E F0(])A .2(The user \214le-creation mask is set to)144 136.8 +R F2(mode)2.7 E F0 5.2(.I).18 G(f)-5.2 E F2(mode)3.08 E F0(be)2.88 E .2 +(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 148.8 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 +160.8 Q F2(mode)3.262 E F0 .382(is omitted, the current v)3.062 F .382 +(alue of the mask is printed.)-.25 F(The)5.382 E F12.882 E F0 .382 +(option causes the mask to be)2.882 F .547 +(printed in symbolic form; the def)144 172.8 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 184.8 Q F0 .551 +(is omitted, the output is in a form that may be reused as input.)3.231 +F .552(The return status is 0 if the)5.552 F(mode w)144 196.8 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 213.6 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0 +(...])2.5 E(Remo)144 225.6 Q 1.955 -.15(ve e)-.15 H(ach).15 E F2(name) +4.155 E F0 1.655(from the list of de\214ned aliases.)4.155 F(If)6.655 E +F14.155 E F0 1.655(is supplied, all alias de\214nitions are)4.155 +F(remo)144 237.6 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 254.4 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 266.4 S 3.827(re).15 G(ach)-3.827 E F2(name)3.827 E F0 +3.827(,r).18 G(emo)-3.827 E 1.627 -.15(ve t)-.15 H 1.327 +(he corresponding v).15 F 1.327(ariable or function.)-.25 F 1.327 +(If the)6.327 F F13.828 E F0 1.328(option is gi)3.828 F -.15(ve) +-.25 G 1.328(n, each).15 F F2(name)144.36 278.4 Q F0 1.551 +(refers to a shell v)4.231 F 1.551(ariable, and that v)-.25 F 1.551 +(ariable is remo)-.25 F -.15(ve)-.15 G 4.05(d. Read-only).15 F -.25(va) +4.05 G 1.55(riables may not be).25 F 4.641(unset. If)144 290.4 R F1 +4.641 E F0 2.141(is speci\214ed, each)4.641 F F2(name)5.001 E F0 +2.141(refers to a shell function, and the function de\214nition is)4.821 +F(remo)144 302.4 Q -.15(ve)-.15 G 2.538(d. If).15 F(the)2.537 E F1 +2.537 E F0 .037(option is supplied, and)2.537 F F2(name)2.537 E F0 .037 +(is a v)2.537 F .037(ariable with the)-.25 F F2(namer)2.537 E(ef)-.37 E +F0(attrib)2.537 E(ute,)-.2 E F2(name)2.537 E F0(will)2.537 E .492 +(be unset rather than the v)144 314.4 R .492(ariable it references.)-.25 +F F15.492 E F0 .492(has no ef)2.992 F .492(fect if the)-.25 F F1 +2.992 E F0 .492(option is supplied.)2.992 F .493(If no)5.493 F +.221(options are supplied, each)144 326.4 R F2(name)2.721 E F0 .221 +(refers to a v)2.721 F .22(ariable; if there is no v)-.25 F .22 +(ariable by that name, an)-.25 F 2.72(yf)-.15 G(unc-)-2.72 E 1.188 +(tion with that name is unset.)144 338.4 R 1.189(Each unset v)6.189 F +1.189(ariable or function is remo)-.25 F -.15(ve)-.15 G 3.689(df).15 G +1.189(rom the en)-3.689 F(vironment)-.4 E 3.206 +(passed to subsequent commands.)144 350.4 R 3.206(If an)8.206 F 5.706 (yo)-.15 G(f)-5.706 E/F3 9/Times-Bold@0 SF(COMP_W)5.706 E(ORDBREAKS)-.09 E/F4 9/Times-Roman@0 SF(,)A F3(RANDOM)5.455 E F4(,)A F3(SECONDS)5.455 E -F4(,)A F3(LINENO)144 144 Q F4(,)A F3(HISTCMD)4.347 E F4(,)A F3(FUNCN) +F4(,)A F3(LINENO)144 362.4 Q F4(,)A F3(HISTCMD)4.347 E F4(,)A F3(FUNCN) 4.347 E(AME)-.18 E F4(,)A F3(GR)4.347 E(OUPS)-.27 E F4(,)A F0(or)4.348 E F3(DIRST)4.598 E -.495(AC)-.81 G(K).495 E F0 2.098(are unset, the)4.348 -F 4.598(yl)-.15 G 2.098(ose their special)-4.598 F(properties, e)144 156 -Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he)-2.5 E 2.5(ya)-.15 G -(re subsequently reset.)-2.5 E(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 172.8 Q +F 4.598(yl)-.15 G 2.098(ose their special)-4.598 F(properties, e)144 +374.4 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he)-2.5 E 2.5(ya)-.15 +G(re subsequently reset.)-2.5 E(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 391.2 Q F0([)2.5 E F1(\255fn)A F0 2.5(][)C F2(id ...)-2.5 E F0(])A -.8(Wa)144 -184.8 S .659(it for each speci\214ed child process and return its termi\ +403.2 S .659(it for each speci\214ed child process and return its termi\ nation status.).8 F(Each)5.659 E F2(id)3.169 E F0 .658(may be a process) -3.928 F .008(ID or a job speci\214cation; if a job spec is gi)144 196.8 +3.928 F .008(ID or a job speci\214cation; if a job spec is gi)144 415.2 R -.15(ve)-.25 G .009(n, all processes in that job').15 F 2.509(sp)-.55 G .009(ipeline are w)-2.509 F .009(aited for)-.1 F 5.009(.I)-.55 G(f) --5.009 E F2(id)144.01 208.8 Q F0 .522(is not gi)3.792 F -.15(ve)-.25 G +-5.009 E F2(id)144.01 427.2 Q F0 .522(is not gi)3.792 F -.15(ve)-.25 G .521(n, all currently acti).15 F .821 -.15(ve c)-.25 H .521 (hild processes are w).15 F .521(aited for)-.1 F 3.021(,a)-.4 G .521 -(nd the return status is zero.)-3.021 F(If)5.521 E(the)144 220.8 Q F1 +(nd the return status is zero.)-3.021 F(If)5.521 E(the)144 439.2 Q F1 3.056 E F0 .556(option is supplied,)3.056 F F1(wait)3.057 E F0 -.1 (wa)3.057 G .557(its for an).1 F 3.057(yj)-.15 G .557 (ob to terminate and returns its e)-3.057 F .557(xit status.)-.15 F .557 (If the)5.557 F F13.057 E F0 .587 -(option is supplied, and job control is enabled,)144 232.8 R F1(wait) +(option is supplied, and job control is enabled,)144 451.2 R F1(wait) 3.086 E F0(forces)3.086 E F2(id)3.086 E F0 .586 (to terminate before returning its sta-)3.086 F .755 -(tus, instead of returning when it changes status.)144 244.8 R(If)5.756 +(tus, instead of returning when it changes status.)144 463.2 R(If)5.756 E F2(id)3.266 E F0 .756(speci\214es a non-e)4.026 F .756 -(xistent process or job, the)-.15 F .365(return status is 127.)144 256.8 +(xistent process or job, the)-.15 F .365(return status is 127.)144 475.2 R .365(Otherwise, the return status is the e)5.365 F .365 (xit status of the last process or job w)-.15 F(aited)-.1 E(for)144 -268.8 Q(.)-.55 E/F5 10.95/Times-Bold@0 SF(RESTRICTED SHELL)72 285.6 Q F0 -(If)108 297.6 Q F1(bash)4.396 E F0 1.896(is started with the name)4.396 -F F1(rbash)4.397 E F0 4.397(,o)C 4.397(rt)-4.397 G(he)-4.397 E F1 +487.2 Q(.)-.55 E/F5 10.95/Times-Bold@0 SF(RESTRICTED SHELL)72 504 Q F0 +(If)108 516 Q F1(bash)4.396 E F0 1.896(is started with the name)4.396 F +F1(rbash)4.397 E F0 4.397(,o)C 4.397(rt)-4.397 G(he)-4.397 E F1 4.397 E F0 1.897(option is supplied at in)4.397 F -.2(vo)-.4 G 1.897 -(cation, the shell becomes).2 F 3.446(restricted. A)108 309.6 R .945 +(cation, the shell becomes).2 F 3.446(restricted. A)108 528 R .945 (restricted shell is used to set up an en)3.446 F .945 (vironment more controlled than the standard shell.)-.4 F(It)5.945 E -(beha)108 321.6 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<83>108 338.4 Q -(changing directories with)144 338.4 Q F1(cd)2.5 E F0<83>108 355.2 Q -(setting or unsetting the v)144 355.2 Q(alues of)-.25 E F3(SHELL)2.5 E +(beha)108 540 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<83>108 556.8 Q +(changing directories with)144 556.8 Q F1(cd)2.5 E F0<83>108 573.6 Q +(setting or unsetting the v)144 573.6 Q(alues of)-.25 E F3(SHELL)2.5 E F4(,)A F3 -.666(PA)2.25 G(TH)-.189 E F4(,)A F3(ENV)2.25 E F4(,)A F0(or) -2.25 E F3 -.27(BA)2.5 G(SH_ENV).27 E F0<83>108 372 Q -(specifying command names containing)144 372 Q F1(/)2.5 E F0<83>108 -388.8 Q(specifying a \214lename containing a)144 388.8 Q F1(/)2.5 E F0 +2.25 E F3 -.27(BA)2.5 G(SH_ENV).27 E F0<83>108 590.4 Q +(specifying command names containing)144 590.4 Q F1(/)2.5 E F0<83>108 +607.2 Q(specifying a \214lename containing a)144 607.2 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 405.6 Q .449 -(specifying a \214lename containing a slash as an ar)144 405.6 R .449 +(iltin command).2 E<83>108 624 Q .449 +(specifying a \214lename containing a slash as an ar)144 624 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 417.6 Q<83> -108 434.4 Q(importing function de\214nitions from the shell en)144 434.4 -Q(vironment at startup)-.4 E<83>108 451.2 Q(parsing the v)144 451.2 Q +(hash)2.95 E F0 -.2(bu)2.95 G .45(iltin com-).2 F(mand)144 636 Q<83>108 +652.8 Q(importing function de\214nitions from the shell en)144 652.8 Q +(vironment at startup)-.4 E<83>108 669.6 Q(parsing the v)144 669.6 Q (alue of)-.25 E F3(SHELLOPTS)2.5 E F0(from the shell en)2.25 E -(vironment at startup)-.4 E<83>108 468 Q(redirecting output using the >\ -, >|, <>, >&, &>, and >> redirection operators)144 468 Q<83>108 484.8 Q -(using the)144 484.8 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 -501.6 Q(adding or deleting b)144 501.6 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 518.4 Q -(using the)144 518.4 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 -535.2 Q(specifying the)144 535.2 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 552 Q -(turning of)144 552 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 568.8 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 585.6 R -.15 -(xe)-.15 G 1.566(cuted \(see).15 F F3 1.566(COMMAND EXECUTION)4.066 F F0 -(abo)3.816 E -.15(ve)-.15 G(\),).15 E F1(rbash)108 597.6 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 F5(SEE ALSO)72 -614.4 Q F2(Bash Refer)108 626.4 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 -638.4 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 650.4 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 662.4 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 674.4 Q(g/onlinepubs/9699919799/)-.18 E -(http://tiswww)108 686.4 Q -(.case.edu/~chet/bash/POSIX -- a description of posix mode)-.65 E F2(sh) -108 698.4 Q F0(\(1\),)A F2(ksh)2.5 E F0(\(1\),)A F2(csh)2.5 E F0(\(1\))A -(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 E(78)192.895 E 0 Cg EP +(vironment at startup)-.4 E<83>108 686.4 Q(redirecting output using the\ + >, >|, <>, >&, &>, and >> redirection operators)144 686.4 Q<83>108 +703.2 Q(using the)144 703.2 Q F1(exec)2.5 E F0 -.2(bu)2.5 G +(iltin command to replace the shell with another command).2 E +(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(78)185.955 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-Italic@0 SF(emacs)108 84 Q F0(\(1\),)A F1(vi)2.5 E F0(\(1\))A F1 --.37(re)108 96 S(adline).37 E F0(\(3\))A/F2 10.95/Times-Bold@0 SF(FILES) -72 112.8 Q F1(/bin/bash)109.666 124.8 Q F0(The)144 136.8 Q/F3 10 -/Times-Bold@0 SF(bash)2.5 E F0 -.15(exe)2.5 G(cutable).15 E F1(/etc/pr) -109.666 148.8 Q(o\214le)-.45 E F0 -(The systemwide initialization \214le, e)144 160.8 Q -.15(xe)-.15 G -(cuted for login shells).15 E F1(~/.bash_pr)109.666 172.8 Q(o\214le)-.45 -E F0(The personal initialization \214le, e)144 184.8 Q -.15(xe)-.15 G -(cuted for login shells).15 E F1(~/.bashr)109.666 196.8 Q(c)-.37 E F0 -(The indi)144 208.8 Q(vidual per)-.25 E(-interacti)-.2 E -.15(ve)-.25 G -(-shell startup \214le).15 E F1(~/.bash_lo)109.666 220.8 Q(gout)-.1 E F0 -(The indi)144 232.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 F1(~/.inputr) -109.666 244.8 Q(c)-.37 E F0(Indi)144 256.8 Q(vidual)-.25 E F1 -.37(re) -2.5 G(adline).37 E F0(initialization \214le)2.5 E F2 -.548(AU)72 273.6 S -(THORS).548 E F0(Brian F)108 285.6 Q(ox, Free Softw)-.15 E(are F)-.1 E -(oundation)-.15 E(bfox@gnu.or)108 297.6 Q(g)-.18 E(Chet Rame)108 314.4 Q +(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E<83>108 84 Q +(adding or deleting b)144 84 Q(uiltin commands with the)-.2 E/F1 10 +/Times-Bold@0 SF2.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 100.8 Q(using the)144 100.8 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 +117.6 Q(specifying the)144 117.6 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 134.4 Q +(turning of)144 134.4 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 151.2 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 168 R -.15 +(xe)-.15 G 1.566(cuted \(see).15 F/F2 9/Times-Bold@0 SF 1.566 +(COMMAND EXECUTION)4.066 F F0(abo)3.816 E -.15(ve)-.15 G(\),).15 E F1 +(rbash)108 180 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/F3 10.95/Times-Bold@0 SF(SEE ALSO)72 196.8 Q/F4 +10/Times-Italic@0 SF(Bash Refer)108 208.8 Q(ence Manual)-.37 E F0 2.5 +(,B)C(rian F)-2.5 E(ox and Chet Rame)-.15 E(y)-.15 E F4 +(The Gnu Readline Libr)108 220.8 Q(ary)-.15 E F0 2.5(,B)C(rian F)-2.5 E +(ox and Chet Rame)-.15 E(y)-.15 E F4(The Gnu History Libr)108 232.8 Q +(ary)-.15 E F0 2.5(,B)C(rian F)-2.5 E(ox and Chet Rame)-.15 E(y)-.15 E +F4 -.8(Po)108 244.8 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 256.8 Q +(g/onlinepubs/9699919799/)-.18 E(http://tiswww)108 268.8 Q +(.case.edu/~chet/bash/POSIX -- a description of posix mode)-.65 E F4(sh) +108 280.8 Q F0(\(1\),)A F4(ksh)2.5 E F0(\(1\),)A F4(csh)2.5 E F0(\(1\))A +F4(emacs)108 292.8 Q F0(\(1\),)A F4(vi)2.5 E F0(\(1\))A F4 -.37(re)108 +304.8 S(adline).37 E F0(\(3\))A F3(FILES)72 321.6 Q F4(/bin/bash)109.666 +333.6 Q F0(The)144 345.6 Q F1(bash)2.5 E F0 -.15(exe)2.5 G(cutable).15 E +F4(/etc/pr)109.666 357.6 Q(o\214le)-.45 E F0 +(The systemwide initialization \214le, e)144 369.6 Q -.15(xe)-.15 G +(cuted for login shells).15 E F4(~/.bash_pr)109.666 381.6 Q(o\214le)-.45 +E F0(The personal initialization \214le, e)144 393.6 Q -.15(xe)-.15 G +(cuted for login shells).15 E F4(~/.bashr)109.666 405.6 Q(c)-.37 E F0 +(The indi)144 417.6 Q(vidual per)-.25 E(-interacti)-.2 E -.15(ve)-.25 G +(-shell startup \214le).15 E F4(~/.bash_lo)109.666 429.6 Q(gout)-.1 E F0 +(The indi)144 441.6 Q(vidual login shell cleanup \214le, e)-.25 E -.15 +(xe)-.15 G(cuted when a login shell e).15 E(xits)-.15 E F4(~/.inputr) +109.666 453.6 Q(c)-.37 E F0(Indi)144 465.6 Q(vidual)-.25 E F4 -.37(re) +2.5 G(adline).37 E F0(initialization \214le)2.5 E F3 -.548(AU)72 482.4 S +(THORS).548 E F0(Brian F)108 494.4 Q(ox, Free Softw)-.15 E(are F)-.1 E +(oundation)-.15 E(bfox@gnu.or)108 506.4 Q(g)-.18 E(Chet Rame)108 523.2 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 326.4 Q(y@case.edu)-.15 -E F2 -.11(BU)72 343.2 S 2.738(GR).11 G(EPOR)-2.738 E(TS)-.438 E F0 .567 -(If you \214nd a b)108 355.2 R .568(ug in)-.2 F F3(bash,)3.068 E F0 .568 +-2.5 E -.15(ve)-.25 G(rsity).15 E(chet.rame)108 535.2 Q(y@case.edu)-.15 +E F3 -.11(BU)72 552 S 2.738(GR).11 G(EPOR)-2.738 E(TS)-.438 E F0 .567 +(If you \214nd a b)108 564 R .568(ug in)-.2 F F1(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 367.2 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 +F 5.626(that it appears in the latest v)108 576 R 5.625(ersion of)-.15 F +F1(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 F1(ftp://ftp.gnu.or)108 379.2 Q(g/pub/gnu/bash/)-.37 -E F0(.)A .41(Once you ha)108 396 R .71 -.15(ve d)-.2 H .41 +(ilable from).25 F F4(ftp://ftp.gnu.or)108 588 Q(g/pub/gnu/bash/)-.37 E +F0(.)A .41(Once you ha)108 604.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 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 408 R .895 -.15 +-.15 F F4(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 616.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 420 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 436.8 Q(ug reports should include:)-.2 E(The v) -108 453.6 Q(ersion number of)-.15 E F3(bash)2.5 E F0(The hardw)108 465.6 -Q(are and operating system)-.1 E(The compiler used to compile)108 477.6 -Q 2.5(Ad)108 489.6 S(escription of the b)-2.5 E(ug beha)-.2 E(viour)-.2 -E 2.5(As)108 501.6 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 518.4 Q(ug)-.2 E F0 +(be mailed to)108 628.8 Q F4 -.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 F1(gnu.bash.b)2.5 E(ug) +-.2 E F0(.)A(ALL b)108 645.6 Q(ug reports should include:)-.2 E(The v) +108 662.4 Q(ersion number of)-.15 E F1(bash)2.5 E F0(The hardw)108 674.4 +Q(are and operating system)-.1 E(The compiler used to compile)108 686.4 +Q 2.5(Ad)108 698.4 S(escription of the b)-2.5 E(ug beha)-.2 E(viour)-.2 +E(GNU Bash 4.4)72 768 Q(2017 December 28)136.795 E(79)185.955 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 2.5(As)108 84 S +(hort script or `recipe' which e)-2.5 E -.15(xe)-.15 G(rcises the b).15 +E(ug)-.2 E/F1 10/Times-Italic@0 SF(bashb)108.27 100.8 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 -535.2 Q(ug reports concerning this manual page should be directed to)-.2 +117.6 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 552 S(GS).11 E F0(It')108 564 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 580.8 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 -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 592.8 Q F0(speci\214cation.)2.25 E -(Aliases are confusing in some uses.)108 609.6 Q(Shell b)108 626.4 Q +.25 E/F2 10.95/Times-Bold@0 SF -.11(BU)72 134.4 S(GS).11 E F0(It')108 +146.4 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 163.2 R 1.868(ferences between)-.25 F/F3 +10/Times-Bold@0 SF(bash)4.369 E F0 1.869(and traditional v)4.369 F 1.869 +(ersions of)-.15 F 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 175.2 Q F0 +(speci\214cation.)2.25 E(Aliases are confusing in some uses.)108 192 Q +(Shell b)108 208.8 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 643.2 R .389 -(process suspension is attempted.)108 655.2 R .389 +re not handled gracefully when)108 225.6 R .389 +(process suspension is attempted.)108 237.6 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 667.2 R .192(It suf)5.193 F .192(\214ces to place the sequence of c\ +108 249.6 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 679.2 Q(Array v)108 696 Q -(ariables may not \(yet\) be e)-.25 E(xported.)-.15 E -(There may be only one acti)108 712.8 Q .3 -.15(ve c)-.25 H -(oprocess at a time.).15 E(GNU Bash 4.4)72 768 Q(2017 October 7)143.735 -E(79)192.895 E 0 Cg EP +(subshell, which may be stopped as a unit.)108 261.6 Q(Array v)108 278.4 +Q(ariables may not \(yet\) be e)-.25 E(xported.)-.15 E +(There may be only one acti)108 295.2 Q .3 -.15(ve c)-.25 H +(oprocess at a time.).15 E(GNU Bash 4.4)72 768 Q(2017 December 28) +136.795 E(80)185.955 E 0 Cg EP %%Trailer end %%EOF diff --git a/doc/bashref.aux b/doc/bashref.aux index a1acd571..1d58ec18 100644 --- a/doc/bashref.aux +++ b/doc/bashref.aux @@ -78,12 +78,12 @@ @xrdef{Shell Parameters-pg}{19} @xrdef{Positional Parameters-title}{Positional Parameters} @xrdef{Positional Parameters-snt}{Section@tie 3.4.1} -@xrdef{Positional Parameters-pg}{20} @xrdef{Special Parameters-title}{Special Parameters} @xrdef{Special Parameters-snt}{Section@tie 3.4.2} -@xrdef{Special Parameters-pg}{21} +@xrdef{Positional Parameters-pg}{20} @xrdef{Shell Expansions-title}{Shell Expansions} @xrdef{Shell Expansions-snt}{Section@tie 3.5} +@xrdef{Special Parameters-pg}{21} @xrdef{Brace Expansion-title}{Brace Expansion} @xrdef{Brace Expansion-snt}{Section@tie 3.5.1} @xrdef{Shell Expansions-pg}{22} @@ -102,11 +102,11 @@ @xrdef{Process Substitution-snt}{Section@tie 3.5.6} @xrdef{Command Substitution-pg}{30} @xrdef{Arithmetic Expansion-pg}{30} +@xrdef{Process Substitution-pg}{30} @xrdef{Word Splitting-title}{Word Splitting} @xrdef{Word Splitting-snt}{Section@tie 3.5.7} @xrdef{Filename Expansion-title}{Filename Expansion} @xrdef{Filename Expansion-snt}{Section@tie 3.5.8} -@xrdef{Process Substitution-pg}{31} @xrdef{Word Splitting-pg}{31} @xrdef{Filename Expansion-pg}{31} @xrdef{Pattern Matching-title}{Pattern Matching} diff --git a/doc/bashref.cp b/doc/bashref.cp index 6a58414f..398cd939 100644 --- a/doc/bashref.cp +++ b/doc/bashref.cp @@ -54,7 +54,7 @@ \entry{command substitution}{30}{command substitution} \entry{expansion, arithmetic}{30}{expansion, arithmetic} \entry{arithmetic expansion}{30}{arithmetic expansion} -\entry{process substitution}{31}{process substitution} +\entry{process substitution}{30}{process substitution} \entry{word splitting}{31}{word splitting} \entry{expansion, filename}{31}{expansion, filename} \entry{expansion, pathname}{31}{expansion, pathname} diff --git a/doc/bashref.cps b/doc/bashref.cps index 20b4cd51..8c37c161 100644 --- a/doc/bashref.cps +++ b/doc/bashref.cps @@ -99,7 +99,7 @@ \entry {POSIX Mode}{98} \entry {process group}{3} \entry {process group ID}{3} -\entry {process substitution}{31} +\entry {process substitution}{30} \entry {programmable completion}{131} \entry {prompting}{96} \initial {Q} diff --git a/doc/bashref.dvi b/doc/bashref.dvi index 1c979a410216b2446bf498f7a04a8910bf3fcc58..81d51764671a2d095727f39e3888d9979a8fa1d3 100644 GIT binary patch delta 13106 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 delta 11036 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 MAn=`2a7q08KbtxCVE_OC diff --git a/doc/bashref.html b/doc/bashref.html index aa138f43..68ec29bd 100644 --- a/doc/bashref.html +++ b/doc/bashref.html @@ -1,9 +1,9 @@ - + + Bash Reference Manual @@ -24,7 +25,6 @@ A copy of the license is included in the section entitled - @@ -284,10 +284,10 @@ Next: , Previou

    Bash Features

    This text is a brief description of the features that are present in -the Bash shell (version 4.4, 7 October 2017). +the Bash shell (version 4.4, 19 December 2017). The Bash home page is http://www.gnu.org/software/bash/.

    -

    This is Edition 4.4, last updated 7 October 2017, +

    This is Edition 4.4, last updated 19 December 2017, of The GNU Bash Reference Manual, for Bash, Version 4.4.

    @@ -1946,10 +1946,6 @@ Functions may be exported so that subshells automatically have them defined with the -f option to the export builtin (see Bourne Shell Builtins). -Note that shell functions and variables with the same name may result -in multiple identically-named entries in the environment passed to the -shell’s children. -Care should be taken in cases where this may cause a problem.

    Functions may be recursive. The FUNCNEST variable may be used to limit the depth of the @@ -2340,9 +2336,6 @@ and any characters special to other expansions are preserved in the result. It is strictly textual. Bash does not apply any syntactic interpretation to the context of the expansion or the text between the braces. -To avoid conflicts with parameter expansion, the string ‘${’ -is not considered eligible for brace expansion, -and inhibits brace expansion until the closing ‘}’..

    A correctly-formed brace expansion must contain unquoted opening and closing braces, and at least one unquoted comma or a valid @@ -2352,7 +2345,8 @@ Any incorrectly formed brace expansion is left unchanged.

    A { or ‘,’ may be quoted with a backslash to prevent its being considered part of a brace expression. To avoid conflicts with parameter expansion, the string ‘${’ -is not considered eligible for brace expansion. +is not considered eligible for brace expansion, +and inhibits brace expansion until the closing ‘}’..

    This construct is typically used as shorthand when the common prefix of the strings to be generated is longer than in the @@ -2489,6 +2483,8 @@ Bash uses the value of the variable formed from the rest of expanded and that value is used in the rest of the substitution, rather than the value of parameter itself. This is known as indirect expansion. +The value is subject to tilde expansion, +parameter expansion, command substitution, and arithmetic expansion. If parameter is a nameref, this expands to the name of the variable referenced by parameter instead of performing the complete indirect expansion. @@ -4321,7 +4317,7 @@ If n is not supplied, the return value is the exit status of the last command executed in the function. If return is executed by a trap handler, the last command used to determine the status is the last command executed before the trap handler. -if return is executed during a DEBUG trap, the last command +If return is executed during a DEBUG trap, the last command used to determine the status is the last command executed by the trap handler before return was invoked. return may also be used to terminate execution of a script @@ -5903,7 +5899,8 @@ The settings can be either those listed below, or, if the -o option is used, those available with the -o option to the set builtin command (see The Set Builtin). With no options, or with the -p option, a list of all settable -options is displayed, with an indication of whether or not each is set. +options is displayed, with an indication of whether or not each is set; +if optnames are supplied, the output is restricted to those options. The -p option causes output to be displayed in a form that may be reused as input. Other options have the following meanings: @@ -8542,13 +8539,16 @@ special parameters ‘@’ and ‘*unset name[subscript] destroys the array element at index subscript. Negative subscripts to indexed arrays are interpreted as described above. -Care must be taken to avoid unwanted side effects caused by filename -expansion. Unsetting the last element of an array variable does not unset the variable. unset name, where name is an array, removes the entire array. A subscript of ‘*’ or ‘@’ also removes the entire array.

    +

    When using a variable name with a subscript as an argument to a command, +such as with unset, without using the word expansion syntax +described above, the argument is subject to the shell’s filename expansion. +If filename expansion is not desired, the argument should be quoted. +

    The declare, local, and readonly builtins each accept a -a option to specify an indexed array and a -A option to specify an associative array. @@ -10035,7 +10035,8 @@ set to either ‘emacs’ or ‘vi’.

emacs-mode-string
-

This string is displayed immediately before the last line of the primary +

If the show-mode-in-prompt 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. @@ -10248,9 +10249,9 @@ The default value is ‘off’.

show-mode-in-prompt
-

If set to ‘on’, add a character to the beginning of the prompt +

If set to ‘on’, add a string to the beginning of the prompt indicating the editing mode: emacs, vi command, or vi insertion. -The mode strings are user-settable. +The mode strings are user-settable (e.g., emacs-mode-string). The default value is ‘off’.

@@ -10271,7 +10272,8 @@ The default value is ‘off’.
vi-cmd-mode-string
-

This string is displayed immediately before the last line of the primary +

If the show-mode-in-prompt 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 is expanded like a key binding, so the standard set of meta- and control prefixes and @@ -10284,7 +10286,8 @@ The default is ‘(cmd)’.

vi-ins-mode-string
-

This string is displayed immediately before the last line of the primary +

If the show-mode-in-prompt 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 @@ -10477,8 +10480,9 @@ of tests. There are four parser directives used.

$if

The $if construct allows bindings to be made based on the editing mode, the terminal being used, or the application using -Readline. The text of the test extends to the end of the line; -no characters are required to isolate it. +Readline. The text of the test, after any comparison operator, +extends to the end of the line; +unless otherwise noted, no characters are required to isolate it.

mode
@@ -10499,6 +10503,28 @@ the portion of the terminal name before the first ‘-’. allows sun to match both sun and sun-cmd, for instance.

+
+
version
+

The version test may be used to perform comparisons against +specific Readline versions. +The version expands to the current Readline version. +The set of comparison operators includes +‘=’ (and ‘==’), ‘!=’, ‘<=’, ‘>=’, ‘<’, +and ‘>’. +The version number supplied on the right side of the operator consists +of a major version number, an optional decimal point, and an optional +minor version (e.g., ‘7.1’). If the minor version is omitted, it +is assumed to be ‘0’. +The operator may be separated from the string version and +from the version number argument by whitespace. +The following example sets a variable if the Readline version being used +is 7.0 or newer: +

+
$if version >= 7.0
+set show-mode-in-prompt on
+$endif
+
+
application

The application construct is used to include @@ -10514,6 +10540,24 @@ key sequence that quotes the current or previous word in Bash: "\C-xq": "\eb\"\ef\"" $endif + +

+
variable
+

The variable construct provides simple equality tests for 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 variables may be tested. Boolean variables must be +tested against the values on and off. +The following example is equivalent to the mode=emacs test described +above: +

+
$if editing-mode == emacs
+set show-mode-in-prompt on
+$endif
+
diff --git a/doc/bashref.info b/doc/bashref.info index d07bc7c8..69bfeaeb 100644 --- a/doc/bashref.info +++ b/doc/bashref.info @@ -1,10 +1,10 @@ -This is bashref.info, produced by makeinfo version 6.4 from +This is bashref.info, produced by makeinfo version 6.5 from bashref.texi. This text is a brief description of the features that are present in the -Bash shell (version 4.4, 7 October 2017). +Bash shell (version 4.4, 19 December 2017). - This is Edition 4.4, last updated 7 October 2017, of 'The GNU Bash + This is Edition 4.4, last updated 19 December 2017, of 'The GNU Bash Reference Manual', for 'Bash', Version 4.4. Copyright (C) 1988-2017 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 4.4, 7 October 2017). The Bash home page is +Bash shell (version 4.4, 19 December 2017). The Bash home page is . - This is Edition 4.4, last updated 7 October 2017, of 'The GNU Bash + This is Edition 4.4, last updated 19 December 2017, of 'The GNU Bash Reference Manual', for 'Bash', Version 4.4. Bash contains features that appear in other popular shells, and some @@ -1274,10 +1274,7 @@ the 'declare' ('typeset') builtin command (*note Bash Builtins::). The (and optionally the source file and line number, if the 'extdebug' shell option is enabled). Functions may be exported so that subshells automatically have them defined with the '-f' option to the 'export' -builtin (*note Bourne Shell Builtins::). Note that shell functions and -variables with the same name may result in multiple identically-named -entries in the environment passed to the shell's children. Care should -be taken in cases where this may cause a problem. +builtin (*note Bourne Shell Builtins::). Functions may be recursive. The 'FUNCNEST' variable may be used to limit the depth of the function call stack and restrict the number of @@ -1548,10 +1545,7 @@ each term. The default increment is 1 or -1 as appropriate. Brace expansion is performed before any other expansions, and any characters special to other expansions are preserved in the result. It is strictly textual. Bash does not apply any syntactic interpretation -to the context of the expansion or the text between the braces. To -avoid conflicts with parameter expansion, the string '${' is not -considered eligible for brace expansion, and inhibits brace expansion -until the closing '}'.. +to the context of the expansion or the text between the braces. A correctly-formed brace expansion must contain unquoted opening and closing braces, and at least one unquoted comma or a valid sequence @@ -1560,7 +1554,7 @@ expression. Any incorrectly formed brace expansion is left unchanged. A { or ',' may be quoted with a backslash to prevent its being considered part of a brace expression. To avoid conflicts with parameter expansion, the string '${' is not considered eligible for -brace expansion. +brace expansion, and inhibits brace expansion until the closing '}'.. This construct is typically used as shorthand when the common prefix of the strings to be generated is longer than in the above example: @@ -1660,12 +1654,14 @@ PARAMETER is not a NAMEREF, it introduces a level of variable indirection. Bash uses the value of the variable formed from the rest of PARAMETER as the name of the variable; this variable is then expanded and that value is used in the rest of the substitution, rather than the -value of PARAMETER itself. This is known as 'indirect expansion'. If -PARAMETER is a nameref, this expands to the name of the variable -referenced by PARAMETER instead of performing the complete indirect -expansion. The exceptions to this are the expansions of ${!PREFIX*} and -${!NAME[@]} described below. The exclamation point must immediately -follow the left brace in order to introduce indirection. +value of PARAMETER itself. This is known as 'indirect expansion'. The +value is subject to tilde expansion, parameter expansion, command +substitution, and arithmetic expansion. If PARAMETER is a nameref, this +expands to the name of the variable referenced by PARAMETER instead of +performing the complete indirect expansion. The exceptions to this are +the expansions of ${!PREFIX*} and ${!NAME[@]} described below. The +exclamation point must immediately follow the left brace in order to +introduce indirection. In each of the cases below, WORD is subject to tilde expansion, parameter expansion, command substitution, and arithmetic expansion. @@ -3098,7 +3094,7 @@ standard. status of the last command executed in the function. If 'return' is executed by a trap handler, the last command used to determine the status is the last command executed before the trap handler. - if 'return' is executed during a 'DEBUG' trap, the last command + If 'return' is executed during a 'DEBUG' trap, the last command used to determine the status is the last command executed by the trap handler before 'return' was invoked. 'return' may also be used to terminate execution of a script being executed with the '.' @@ -4305,9 +4301,10 @@ This builtin allows you to change additional shell optional behavior. option is used, those available with the '-o' option to the 'set' builtin command (*note The Set Builtin::). With no options, or with the '-p' option, a list of all settable options is displayed, - with an indication of whether or not each is set. The '-p' option - causes output to be displayed in a form that may be reused as - input. Other options have the following meanings: + with an indication of whether or not each is set; if OPTNAMES are + supplied, the output is restricted to those options. The '-p' + option causes output to be displayed in a form that may be reused + as input. Other options have the following meanings: '-s' Enable (set) each OPTNAME. @@ -6233,11 +6230,15 @@ quotes. The 'unset' builtin is used to destroy arrays. 'unset NAME[SUBSCRIPT]' destroys the array element at index SUBSCRIPT. Negative subscripts to indexed arrays are interpreted as described -above. Care must be taken to avoid unwanted side effects caused by -filename expansion. Unsetting the last element of an array variable -does not unset the variable. 'unset NAME', where NAME is an array, -removes the entire array. A subscript of '*' or '@' also removes the -entire array. +above. Unsetting the last element of an array variable does not unset +the variable. 'unset NAME', where NAME is an array, removes the entire +array. A subscript of '*' or '@' also removes the entire array. + + When using a variable name with a subscript as an argument to a +command, such as with 'unset', without using the word expansion syntax +described above, the argument is subject to the shell's filename +expansion. If filename expansion is not desired, the argument should be +quoted. The 'declare', 'local', and 'readonly' builtins each accept a '-a' option to specify an indexed array and a '-A' option to specify an @@ -7393,14 +7394,14 @@ Variable Settings This variable can be set to either 'emacs' or 'vi'. 'emacs-mode-string' - 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 mode string. The - default is '@'. + If the SHOW-MODE-IN-PROMPT 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 mode string. The default is '@'. 'enable-bracketed-paste' When set to 'On', Readline will configure the terminal in a @@ -7552,10 +7553,10 @@ Variable Settings default value is 'off'. 'show-mode-in-prompt' - If set to 'on', add a character to the beginning of the prompt + If set to 'on', add a string to the beginning of the prompt indicating the editing mode: emacs, vi command, or vi - insertion. The mode strings are user-settable. The default - value is 'off'. + insertion. The mode strings are user-settable (e.g., + EMACS-MODE-STRING). The default value is 'off'. 'skip-completed-text' If set to 'on', this alters the default completion behavior @@ -7571,24 +7572,26 @@ Variable Settings 'off'. 'vi-cmd-mode-string' - 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 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 mode - string. The default is '(cmd)'. + If the SHOW-MODE-IN-PROMPT 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 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 mode string. The + default is '(cmd)'. 'vi-ins-mode-string' - 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 control sequence into the mode - string. The default is '(ins)'. + If the SHOW-MODE-IN-PROMPT 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 control sequence into the mode string. The + default is '(ins)'. 'visible-stats' If set to 'on', a character denoting a file's type is appended @@ -7715,8 +7718,9 @@ four parser directives used. '$if' The '$if' construct allows bindings to be made based on the editing mode, the terminal being used, or the application using Readline. - The text of the test extends to the end of the line; no characters - are required to isolate it. + The text of the test, after any comparison operator, extends to the + end of the line; unless otherwise noted, no characters are required + to isolate it. 'mode' The 'mode=' form of the '$if' directive is used to test @@ -7733,6 +7737,22 @@ four parser directives used. the portion of the terminal name before the first '-'. This allows 'sun' to match both 'sun' and 'sun-cmd', for instance. + 'version' + The 'version' test may be used to perform comparisons against + specific Readline versions. The 'version' expands to the + current Readline version. The set of comparison operators + includes '=' (and '=='), '!=', '<=', '>=', '<', and '>'. The + version number supplied on the right side of the operator + consists of a major version number, an optional decimal point, + and an optional minor version (e.g., '7.1'). If the minor + version is omitted, it is assumed to be '0'. The operator may + be separated from the string 'version' and from the version + number argument by whitespace. The following example sets a + variable if the Readline version being used is 7.0 or newer: + $if version >= 7.0 + set show-mode-in-prompt on + $endif + 'application' The APPLICATION construct is used to include application-specific settings. Each program using the @@ -7746,6 +7766,20 @@ four parser directives used. "\C-xq": "\eb\"\ef\"" $endif + 'variable' + The VARIABLE construct provides simple equality tests for + 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 variables may be + tested. Boolean variables must be tested against the values + ON and OFF. The following example is equivalent to the + 'mode=emacs' test described above: + $if editing-mode == emacs + set show-mode-in-prompt on + $endif + '$endif' This command, as seen in the previous example, terminates an '$if' command. @@ -11139,9 +11173,9 @@ D.3 Parameter and Variable Index * vi-cmd-mode-string: Readline Init File Syntax. (line 310) * vi-ins-mode-string: Readline Init File Syntax. - (line 320) + (line 321) * visible-stats: Readline Init File Syntax. - (line 330) + (line 332)  File: bashref.info, Node: Function Index, Next: Concept Index, Prev: Variable Index, Up: Indexes @@ -11504,134 +11538,134 @@ D.5 Concept Index  Tag Table: -Node: Top893 -Node: Introduction2809 -Node: What is Bash?3025 -Node: What is a shell?4139 -Node: Definitions6677 -Node: Basic Shell Features9628 -Node: Shell Syntax10847 -Node: Shell Operation11873 -Node: Quoting13166 -Node: Escape Character14466 -Node: Single Quotes14951 -Node: Double Quotes15299 -Node: ANSI-C Quoting16577 -Node: Locale Translation17836 -Node: Comments18732 -Node: Shell Commands19350 -Node: Simple Commands20222 -Node: Pipelines20853 -Node: Lists23785 -Node: Compound Commands25524 -Node: Looping Constructs26536 -Node: Conditional Constructs29031 -Node: Command Grouping40086 -Node: Coprocesses41565 -Node: GNU Parallel43397 -Node: Shell Functions47371 -Node: Shell Parameters54570 -Node: Positional Parameters58983 -Node: Special Parameters59883 -Node: Shell Expansions63220 -Node: Brace Expansion65343 -Node: Tilde Expansion68177 -Node: Shell Parameter Expansion70525 -Node: Command Substitution84702 -Node: Arithmetic Expansion86057 -Node: Process Substitution86989 -Node: Word Splitting88109 -Node: Filename Expansion90053 -Node: Pattern Matching92427 -Node: Quote Removal96413 -Node: Redirections96708 -Node: Executing Commands106266 -Node: Simple Command Expansion106936 -Node: Command Search and Execution108866 -Node: Command Execution Environment111242 -Node: Environment114226 -Node: Exit Status115885 -Node: Signals117555 -Node: Shell Scripts119522 -Node: Shell Builtin Commands122037 -Node: Bourne Shell Builtins124075 -Node: Bash Builtins144730 -Node: Modifying Shell Behavior173639 -Node: The Set Builtin173984 -Node: The Shopt Builtin184397 -Node: Special Builtins200732 -Node: Shell Variables201711 -Node: Bourne Shell Variables202148 -Node: Bash Variables204252 -Node: Bash Features234045 -Node: Invoking Bash234944 -Node: Bash Startup Files240930 -Node: Interactive Shells246033 -Node: What is an Interactive Shell?246443 -Node: Is this Shell Interactive?247092 -Node: Interactive Shell Behavior247907 -Node: Bash Conditional Expressions251395 -Node: Shell Arithmetic255761 -Node: Aliases258578 -Node: Arrays261126 -Node: The Directory Stack266288 -Node: Directory Stack Builtins267072 -Node: Controlling the Prompt270040 -Node: The Restricted Shell272802 -Node: Bash POSIX Mode274627 -Node: Job Control284978 -Node: Job Control Basics285438 -Node: Job Control Builtins290406 -Node: Job Control Variables295133 -Node: Command Line Editing296289 -Node: Introduction and Notation297960 -Node: Readline Interaction299583 -Node: Readline Bare Essentials300774 -Node: Readline Movement Commands302557 -Node: Readline Killing Commands303517 -Node: Readline Arguments305435 -Node: Searching306479 -Node: Readline Init File308665 -Node: Readline Init File Syntax309812 -Node: Conditional Init Constructs329999 -Node: Sample Init File332524 -Node: Bindable Readline Commands335641 -Node: Commands For Moving336845 -Node: Commands For History338694 -Node: Commands For Text342989 -Node: Commands For Killing346378 -Node: Numeric Arguments348859 -Node: Commands For Completion349998 -Node: Keyboard Macros354189 -Node: Miscellaneous Commands354876 -Node: Readline vi Mode360829 -Node: Programmable Completion361736 -Node: Programmable Completion Builtins369197 -Node: A Programmable Completion Example379083 -Node: Using History Interactively384334 -Node: Bash History Facilities385018 -Node: Bash History Builtins388019 -Node: History Interaction392311 -Node: Event Designators395373 -Node: Word Designators396592 -Node: Modifiers398229 -Node: Installing Bash399631 -Node: Basic Installation400768 -Node: Compilers and Options403459 -Node: Compiling For Multiple Architectures404200 -Node: Installation Names405863 -Node: Specifying the System Type406681 -Node: Sharing Defaults407397 -Node: Operation Controls408070 -Node: Optional Features409028 -Node: Reporting Bugs419554 -Node: Major Differences From The Bourne Shell420748 -Node: GNU Free Documentation License437600 -Node: Indexes462777 -Node: Builtin Index463231 -Node: Reserved Word Index470058 -Node: Variable Index472506 -Node: Function Index488184 -Node: Concept Index501487 +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 Commands25532 +Node: Looping Constructs26544 +Node: Conditional Constructs29039 +Node: Command Grouping40094 +Node: Coprocesses41573 +Node: GNU Parallel43405 +Node: Shell Functions47379 +Node: Shell Parameters54355 +Node: Positional Parameters58768 +Node: Special Parameters59668 +Node: Shell Expansions63005 +Node: Brace Expansion65128 +Node: Tilde Expansion67852 +Node: Shell Parameter Expansion70200 +Node: Command Substitution84488 +Node: Arithmetic Expansion85843 +Node: Process Substitution86775 +Node: Word Splitting87895 +Node: Filename Expansion89839 +Node: Pattern Matching92213 +Node: Quote Removal96199 +Node: Redirections96494 +Node: Executing Commands106052 +Node: Simple Command Expansion106722 +Node: Command Search and Execution108652 +Node: Command Execution Environment111028 +Node: Environment114012 +Node: Exit Status115671 +Node: Signals117341 +Node: Shell Scripts119308 +Node: Shell Builtin Commands121823 +Node: Bourne Shell Builtins123861 +Node: Bash Builtins144516 +Node: Modifying Shell Behavior173425 +Node: The Set Builtin173770 +Node: The Shopt Builtin184183 +Node: Special Builtins200592 +Node: Shell Variables201571 +Node: Bourne Shell Variables202008 +Node: Bash Variables204112 +Node: Bash Features233905 +Node: Invoking Bash234804 +Node: Bash Startup Files240790 +Node: Interactive Shells245893 +Node: What is an Interactive Shell?246303 +Node: Is this Shell Interactive?246952 +Node: Interactive Shell Behavior247767 +Node: Bash Conditional Expressions251255 +Node: Shell Arithmetic255621 +Node: Aliases258438 +Node: Arrays260986 +Node: The Directory Stack266352 +Node: Directory Stack Builtins267136 +Node: Controlling the Prompt270104 +Node: The Restricted Shell272866 +Node: Bash POSIX Mode274691 +Node: Job Control285042 +Node: Job Control Basics285502 +Node: Job Control Builtins290470 +Node: Job Control Variables295197 +Node: Command Line Editing296353 +Node: Introduction and Notation298024 +Node: Readline Interaction299647 +Node: Readline Bare Essentials300838 +Node: Readline Movement Commands302621 +Node: Readline Killing Commands303581 +Node: Readline Arguments305499 +Node: Searching306543 +Node: Readline Init File308729 +Node: Readline Init File Syntax309876 +Node: Conditional Init Constructs330247 +Node: Sample Init File334443 +Node: Bindable Readline Commands337560 +Node: Commands For Moving338764 +Node: Commands For History340613 +Node: Commands For Text344908 +Node: Commands For Killing348297 +Node: Numeric Arguments350778 +Node: Commands For Completion351917 +Node: Keyboard Macros356108 +Node: Miscellaneous Commands356795 +Node: Readline vi Mode362748 +Node: Programmable Completion363655 +Node: Programmable Completion Builtins371116 +Node: A Programmable Completion Example381002 +Node: Using History Interactively386253 +Node: Bash History Facilities386937 +Node: Bash History Builtins389938 +Node: History Interaction394230 +Node: Event Designators397292 +Node: Word Designators398511 +Node: Modifiers400148 +Node: Installing Bash401550 +Node: Basic Installation402687 +Node: Compilers and Options405378 +Node: Compiling For Multiple Architectures406119 +Node: Installation Names407782 +Node: Specifying the System Type408600 +Node: Sharing Defaults409316 +Node: Operation Controls409989 +Node: Optional Features410947 +Node: Reporting Bugs421473 +Node: Major Differences From The Bourne Shell422667 +Node: GNU Free Documentation License439519 +Node: Indexes464696 +Node: Builtin Index465150 +Node: Reserved Word Index471977 +Node: Variable Index474425 +Node: Function Index490103 +Node: Concept Index503406  End Tag Table diff --git a/doc/bashref.log b/doc/bashref.log index d4716bca..196dc577 100644 --- a/doc/bashref.log +++ b/doc/bashref.log @@ -1,4 +1,4 @@ -This is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/MacPorts 2017_0) (preloaded format=pdfetex 2017.7.5) 9 OCT 2017 15:38 +This is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/MacPorts 2017_2) (preloaded format=pdfetex 2017.7.5) 2 JAN 2018 10:55 entering extended mode restricted \write18 enabled. file:line:error style messages enabled. @@ -243,7 +243,7 @@ arallel -k traceroute[] [43] [44] [45] [46] [47] [48] [49] [50] [51] [52] [53] [54] [55] -Overfull \hbox (26.76846pt too wide) in paragraph at lines 4351--4351 +Overfull \hbox (26.76846pt too wide) in paragraph at lines 4347--4347 []@texttt mapfile [-d @textttsl de-lim@texttt ] [-n @textttsl count@texttt ] [ -O @textttsl ori-gin@texttt ] [-s @textttsl count@texttt ] [-t] [-u @textttsl f d@texttt ][] @@ -257,7 +257,7 @@ d@texttt ][] .etc. [56] [57] -Overfull \hbox (38.26584pt too wide) in paragraph at lines 4559--4559 +Overfull \hbox (38.26584pt too wide) in paragraph at lines 4555--4555 []@texttt readarray [-d @textttsl de-lim@texttt ] [-n @textttsl count@texttt ] [-O @textttsl ori-gin@texttt ] [-s @textttsl count@texttt ] [-t] [-u @textttsl fd@texttt ][] @@ -272,7 +272,7 @@ Overfull \hbox (38.26584pt too wide) in paragraph at lines 4559--4559 [58] [59] [60] [61] [62] [63] [64] [65] [66] [67] [68] [69] [70] Chapter 5 [71] [72] [73] [74] [75] [76] [77] [78] [79] [80] [81] [82] Chapter 6 [83] -Overfull \hbox (49.43388pt too wide) in paragraph at lines 6313--6313 +Overfull \hbox (49.43388pt too wide) in paragraph at lines 6310--6310 []@texttt bash [long-opt] [-ir] [-abefhkmnptuvxdBCDHP] [-o @textttsl op-tion@t exttt ] [-O @textttsl shopt_option@texttt ] [@textttsl ar- @@ -285,7 +285,7 @@ exttt ] [-O @textttsl shopt_option@texttt ] [@textttsl ar- .etc. -Overfull \hbox (72.42863pt too wide) in paragraph at lines 6314--6314 +Overfull \hbox (72.42863pt too wide) in paragraph at lines 6311--6311 []@texttt bash [long-opt] [-abefhkmnptuvxdBCDHP] [-o @textttsl op-tion@texttt ] [-O @textttsl shopt_option@texttt ] -c @textttsl string @texttt [@textttsl ar - @@ -299,7 +299,7 @@ Overfull \hbox (72.42863pt too wide) in paragraph at lines 6314--6314 .etc. -Overfull \hbox (32.18782pt too wide) in paragraph at lines 6315--6315 +Overfull \hbox (32.18782pt too wide) in paragraph at lines 6312--6312 []@texttt bash [long-opt] -s [-abefhkmnptuvxdBCDHP] [-o @textttsl op-tion@text tt ] [-O @textttsl shopt_option@texttt ] [@textttsl ar- @@ -318,7 +318,7 @@ texinfo.tex: doing @include of rluser.texi (/usr/homes/chet/src/bash/src/lib/readline/doc/rluser.texi Chapter 8 [105] [106] [107] [108] [109] [110] [111] [112] [113] [114] [115] -Underfull \hbox (badness 7540) in paragraph at lines 802--808 +Underfull \hbox (badness 7540) in paragraph at lines 805--811 []@textrm In the above ex-am-ple, @textttsl C-u[] @textrm is bound to the func -tion @@ -331,7 +331,7 @@ Underfull \hbox (badness 7540) in paragraph at lines 802--808 .etc. -Underfull \hbox (badness 10000) in paragraph at lines 802--808 +Underfull \hbox (badness 10000) in paragraph at lines 805--811 @texttt universal-argument[]@textrm , @textttsl M-DEL[] @textrm is bound to th e func-tion @@ -344,7 +344,7 @@ e func-tion .etc. [116] [117] [118] -Overfull \hbox (26.43913pt too wide) in paragraph at lines 997--997 +Overfull \hbox (26.43913pt too wide) in paragraph at lines 1039--1039 []@texttt Meta-Control-h: backward-kill-word Text after the function name is i gnored[] @@ -362,7 +362,7 @@ gnored[] [121] [122] [123] [124] [125] [126] [127] [128] [129] [130] [131] [132] [133] [134] [135] [136] -Overfull \hbox (26.43913pt too wide) in paragraph at lines 2248--2248 +Overfull \hbox (26.43913pt too wide) in paragraph at lines 2290--2290 [] @texttt # Tilde expansion, with side effect of expanding tilde to full p athname[] @@ -389,7 +389,7 @@ texinfo.tex: doing @include of fdl.texi Here is how much of TeX's memory you used: 4064 strings out of 497104 47069 string characters out of 6206767 - 136555 words of memory out of 5000000 + 136559 words of memory out of 5000000 4846 multiletter control sequences out of 15000+600000 34315 words of font info for 116 fonts, out of 8000000 for 9000 51 hyphenation exceptions out of 8191 @@ -411,7 +411,7 @@ e/fonts/type1/public/amsfonts/cm/cmtt12.pfb> -Output written on bashref.pdf (182 pages, 743678 bytes). +Output written on bashref.pdf (182 pages, 745404 bytes). PDF statistics: 2608 PDF objects out of 2984 (max. 8388607) 2381 compressed objects within 24 object streams diff --git a/doc/bashref.pdf b/doc/bashref.pdf index ee75385416cb924f867677a3f9272ee21d968a89..924e867ca009ecb0d9e9fc44336317ecda62492b 100644 GIT binary patch delta 129910 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 cFcbd#T=+cCIJo(IM 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 diff --git a/doc/bashref.ps b/doc/bashref.ps index 5d8a822b..7f432865 100644 --- a/doc/bashref.ps +++ b/doc/bashref.ps @@ -1,7 +1,7 @@ %!PS-Adobe-2.0 %%Creator: dvips(k) 5.997 Copyright 2017 Radical Eye Software %%Title: bashref.dvi -%%CreationDate: Mon Oct 9 19:38:37 2017 +%%CreationDate: Tue Jan 2 15:55:14 2018 %%Pages: 182 %%PageOrder: Ascend %%BoundingBox: 0 0 612 792 @@ -12,7 +12,7 @@ %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -D 600 -t letter -o bashref.ps bashref.dvi %DVIPSParameters: dpi=600 -%DVIPSSource: TeX output 2017.10.09:1538 +%DVIPSSource: TeX output 2018.01.02:1055 %%BeginProcSet: tex.pro 0 0 %! /TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S @@ -7596,23 +7596,24 @@ ifelse TeXDict begin 1 0 bop 150 1318 a Fv(Bash)64 b(Reference)j(Man)-5 b(ual)p 150 1385 3600 34 v 2361 1481 a Fu(Reference)31 b(Do)s(cumen)m(tation)i(for)d(Bash)2428 1589 y(Edition)h(4.4,)g(for)f -Ft(Bash)g Fu(V)-8 b(ersion)31 b(4.4.)3217 1697 y(Octob)s(er)f(2017)150 -4927 y Fs(Chet)45 b(Ramey)-11 b(,)46 b(Case)g(W)-11 b(estern)46 -b(Reserv)l(e)g(Univ)l(ersit)l(y)150 5068 y(Brian)f(F)-11 -b(o)l(x,)45 b(F)-11 b(ree)45 b(Soft)l(w)l(are)h(F)-11 +Ft(Bash)g Fu(V)-8 b(ersion)31 b(4.4.)3145 1697 y(Decem)m(b)s(er)g(2017) +150 4927 y Fs(Chet)45 b(Ramey)-11 b(,)46 b(Case)g(W)-11 +b(estern)46 b(Reserv)l(e)g(Univ)l(ersit)l(y)150 5068 +y(Brian)f(F)-11 b(o)l(x,)45 b(F)-11 b(ree)45 b(Soft)l(w)l(are)h(F)-11 b(oundation)p 150 5141 3600 17 v eop end %%Page: 2 2 TeXDict begin 2 1 bop 150 4279 a Fu(This)35 b(text)h(is)g(a)g(brief)f (description)h(of)f(the)h(features)g(that)g(are)g(presen)m(t)g(in)f -(the)h(Bash)f(shell)h(\(v)m(ersion)150 4389 y(4.4,)c(7)e(Octob)s(er)h -(2017\).)150 4523 y(This)d(is)h(Edition)h(4.4,)g(last)g(up)s(dated)e(7) -i(Octob)s(er)f(2017,)i(of)e Fr(The)g(GNU)h(Bash)f(Reference)h(Man)m -(ual)p Fu(,)g(for)150 4633 y Ft(Bash)p Fu(,)f(V)-8 b(ersion)31 -b(4.4.)150 4767 y(Cop)m(yrigh)m(t)602 4764 y(c)577 4767 -y Fq(\015)f Fu(1988{2017)35 b(F)-8 b(ree)31 b(Soft)m(w)m(are)h(F)-8 -b(oundation,)31 b(Inc.)390 4902 y(P)m(ermission)21 b(is)f(gran)m(ted)h -(to)g(cop)m(y)-8 b(,)24 b(distribute)c(and/or)h(mo)s(dify)e(this)i(do)s -(cumen)m(t)f(under)f(the)390 5011 y(terms)25 b(of)h(the)f(GNU)h(F)-8 +(the)h(Bash)f(shell)h(\(v)m(ersion)150 4389 y(4.4,)c(19)f(Decem)m(b)s +(er)g(2017\).)150 4523 y(This)f(is)g(Edition)h(4.4,)h(last)g(up)s +(dated)d(19)i(Decem)m(b)s(er)h(2017,)h(of)d Fr(The)g(GNU)i(Bash)e +(Reference)i(Man)m(ual)p Fu(,)150 4633 y(for)e Ft(Bash)p +Fu(,)g(V)-8 b(ersion)31 b(4.4.)150 4767 y(Cop)m(yrigh)m(t)602 +4764 y(c)577 4767 y Fq(\015)f Fu(1988{2017)35 b(F)-8 +b(ree)31 b(Soft)m(w)m(are)h(F)-8 b(oundation,)31 b(Inc.)390 +4902 y(P)m(ermission)21 b(is)f(gran)m(ted)h(to)g(cop)m(y)-8 +b(,)24 b(distribute)c(and/or)h(mo)s(dify)e(this)i(do)s(cumen)m(t)f +(under)f(the)390 5011 y(terms)25 b(of)h(the)f(GNU)h(F)-8 b(ree)27 b(Do)s(cumen)m(tation)g(License,)g(V)-8 b(ersion)26 b(1.3)g(or)f(an)m(y)h(later)g(v)m(ersion)390 5121 y(published)43 b(b)m(y)h(the)h(F)-8 b(ree)46 b(Soft)m(w)m(are)g(F)-8 @@ -7744,7 +7745,7 @@ g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)40 b Fu(30)399 4740 y(3.5.6)93 b(Pro)s(cess)30 b(Substitution)15 b Fn(:)g(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:) h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h -(:)f(:)g(:)h(:)28 b Fu(31)399 4849 y(3.5.7)93 b(W)-8 +(:)f(:)g(:)h(:)28 b Fu(30)399 4849 y(3.5.7)93 b(W)-8 b(ord)31 b(Splitting)d Fn(:)15 b(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:) g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g (:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)41 @@ -7778,7 +7779,7 @@ g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f (and)f(Standard)h(Error)16 b Fn(:)e(:)i(:)f(:)g(:)h(:)f(:)h(:)f(:)29 b Fu(35)399 521 y(3.6.5)93 b(App)s(ending)28 b(Standard)i(Output)f(and) h(Standard)f(Error)d Fn(:)15 b(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)40 -b Fu(36)399 631 y(3.6.6)93 b(Here)31 b(Do)s(cumen)m(ts)15 +b Fu(35)399 631 y(3.6.6)93 b(Here)31 b(Do)s(cumen)m(ts)15 b Fn(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:) h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h (:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)27 b Fu(36)399 741 y(3.6.7)93 @@ -9403,1669 +9404,1666 @@ Fu(shell)i(option)g(is)g(enabled\).)49 b(F)-8 b(unctions)33 b(ma)m(y)h(b)s(e)e(exp)s(orted)g(so)h(that)150 2644 y(subshells)j (automatically)k(ha)m(v)m(e)f(them)e(de\014ned)f(with)h(the)h Ft(-f)e Fu(option)i(to)g(the)g Ft(export)d Fu(builtin)i(\(see)150 -2754 y(Section)c(4.1)g([Bourne)f(Shell)g(Builtins],)i(page)f(43\).)47 -b(Note)33 b(that)g(shell)f(functions)g(and)f(v)-5 b(ariables)33 -b(with)150 2863 y(the)d(same)g(name)g(ma)m(y)g(result)g(in)g(m)m -(ultiple)g(iden)m(tically-named)i(en)m(tries)f(in)e(the)h(en)m -(vironmen)m(t)g(passed)150 2973 y(to)h(the)g(shell's)f(c)m(hildren.)41 -b(Care)30 b(should)g(b)s(e)f(tak)m(en)j(in)e(cases)h(where)f(this)g(ma) -m(y)h(cause)g(a)g(problem.)275 3104 y(F)-8 b(unctions)33 -b(ma)m(y)g(b)s(e)g(recursiv)m(e.)48 b(The)32 b Ft(FUNCNEST)f -Fu(v)-5 b(ariable)34 b(ma)m(y)f(b)s(e)f(used)g(to)i(limit)g(the)f -(depth)f(of)150 3214 y(the)27 b(function)f(call)i(stac)m(k)h(and)d -(restrict)h(the)g(n)m(um)m(b)s(er)f(of)h(function)f(in)m(v)m(o)s -(cations.)42 b(By)27 b(default,)g(no)g(limit)150 3324 -y(is)j(placed)h(on)g(the)f(n)m(um)m(b)s(er)f(of)i(recursiv)m(e)f -(calls.)150 3559 y Fs(3.4)68 b(Shell)45 b(P)l(arameters)150 -3718 y Fu(A)23 b Fr(parameter)31 b Fu(is)23 b(an)g(en)m(tit)m(y)i(that) +2754 y(Section)31 b(4.1)h([Bourne)e(Shell)g(Builtins],)h(page)h(43\).) +275 2885 y(F)-8 b(unctions)33 b(ma)m(y)g(b)s(e)g(recursiv)m(e.)48 +b(The)32 b Ft(FUNCNEST)f Fu(v)-5 b(ariable)34 b(ma)m(y)f(b)s(e)f(used)g +(to)i(limit)g(the)f(depth)f(of)150 2995 y(the)27 b(function)f(call)i +(stac)m(k)h(and)d(restrict)h(the)g(n)m(um)m(b)s(er)f(of)h(function)f +(in)m(v)m(o)s(cations.)42 b(By)27 b(default,)g(no)g(limit)150 +3104 y(is)j(placed)h(on)g(the)f(n)m(um)m(b)s(er)f(of)i(recursiv)m(e)f +(calls.)150 3339 y Fs(3.4)68 b(Shell)45 b(P)l(arameters)150 +3499 y Fu(A)23 b Fr(parameter)31 b Fu(is)23 b(an)g(en)m(tit)m(y)i(that) f(stores)g(v)-5 b(alues.)39 b(It)23 b(can)h(b)s(e)f(a)g Ft(name)p Fu(,)h(a)g(n)m(um)m(b)s(er,)f(or)h(one)f(of)h(the)f(sp)s -(ecial)150 3827 y(c)m(haracters)i(listed)e(b)s(elo)m(w.)39 +(ecial)150 3608 y(c)m(haracters)i(listed)e(b)s(elo)m(w.)39 b(A)23 b Fr(v)-5 b(ariable)30 b Fu(is)23 b(a)g(parameter)h(denoted)f(b) m(y)h(a)f Ft(name)p Fu(.)37 b(A)24 b(v)-5 b(ariable)24 -b(has)f(a)g Fr(v)-5 b(alue)150 3937 y Fu(and)33 b(zero)i(or)f(more)g +b(has)f(a)g Fr(v)-5 b(alue)150 3718 y Fu(and)33 b(zero)i(or)f(more)g Fr(attributes)p Fu(.)52 b(A)m(ttributes)35 b(are)f(assigned)g(using)g -(the)g Ft(declare)e Fu(builtin)h(command)150 4047 y(\(see)e(the)g +(the)g Ft(declare)e Fu(builtin)h(command)150 3827 y(\(see)e(the)g (description)f(of)h(the)f Ft(declare)f Fu(builtin)h(in)g(Section)h(4.2) -g([Bash)g(Builtins],)g(page)g(50\).)275 4178 y(A)d(parameter)h(is)g +g([Bash)g(Builtins],)g(page)g(50\).)275 3959 y(A)d(parameter)h(is)g (set)g(if)f(it)h(has)f(b)s(een)g(assigned)h(a)g(v)-5 b(alue.)40 b(The)28 b(n)m(ull)h(string)f(is)h(a)g(v)-5 -b(alid)28 b(v)-5 b(alue.)41 b(Once)150 4288 y(a)31 b(v)-5 +b(alid)28 b(v)-5 b(alue.)41 b(Once)150 4069 y(a)31 b(v)-5 b(ariable)31 b(is)f(set,)i(it)e(ma)m(y)h(b)s(e)f(unset)g(only)h(b)m(y)f -(using)g(the)g Ft(unset)f Fu(builtin)h(command.)275 4419 +(using)g(the)g Ft(unset)f Fu(builtin)h(command.)275 4200 y(A)g(v)-5 b(ariable)31 b(ma)m(y)g(b)s(e)f(assigned)g(to)i(b)m(y)e(a)h -(statemen)m(t)h(of)e(the)h(form)390 4551 y Fj(name)p -Ft(=[)p Fj(value)p Ft(])150 4682 y Fu(If)j Fr(v)-5 b(alue)40 +(statemen)m(t)h(of)e(the)h(form)390 4332 y Fj(name)p +Ft(=[)p Fj(value)p Ft(])150 4463 y Fu(If)j Fr(v)-5 b(alue)40 b Fu(is)35 b(not)g(giv)m(en,)h(the)f(v)-5 b(ariable)35 b(is)g(assigned)g(the)f(n)m(ull)h(string.)53 b(All)35 b Fr(v)-5 b(alue)5 b Fu(s)35 b(undergo)f(tilde)h(ex-)150 -4792 y(pansion,)h(parameter)f(and)f(v)-5 b(ariable)36 +4573 y(pansion,)h(parameter)f(and)f(v)-5 b(ariable)36 b(expansion,)f(command)g(substitution,)h(arithmetic)g(expansion,)150 -4902 y(and)k(quote)h(remo)m(v)-5 b(al)42 b(\(detailed)h(b)s(elo)m(w\).) +4682 y(and)k(quote)h(remo)m(v)-5 b(al)42 b(\(detailed)h(b)s(elo)m(w\).) 72 b(If)40 b(the)h(v)-5 b(ariable)41 b(has)g(its)g Ft(integer)e -Fu(attribute)i(set,)j(then)150 5011 y Fr(v)-5 b(alue)38 +Fu(attribute)i(set,)j(then)150 4792 y Fr(v)-5 b(alue)38 b Fu(is)33 b(ev)-5 b(aluated)34 b(as)f(an)g(arithmetic)h(expression)f (ev)m(en)h(if)e(the)h Ft($\(\(...)o(\)\))f Fu(expansion)h(is)g(not)g -(used)150 5121 y(\(see)e(Section)g(3.5.5)i([Arithmetic)e(Expansion],)f +(used)150 4902 y(\(see)e(Section)g(3.5.5)i([Arithmetic)e(Expansion],)f (page)h(30\).)42 b(W)-8 b(ord)31 b(splitting)g(is)g(not)f(p)s -(erformed,)f(with)150 5230 y(the)35 b(exception)h(of)f +(erformed,)f(with)150 5011 y(the)35 b(exception)h(of)f Ft("$@")f Fu(as)h(explained)g(b)s(elo)m(w.)54 b(Filename)36 b(expansion)f(is)g(not)g(p)s(erformed.)53 b(Assign-)150 -5340 y(men)m(t)33 b(statemen)m(ts)h(ma)m(y)f(also)g(app)s(ear)f(as)g +5121 y(men)m(t)33 b(statemen)m(ts)h(ma)m(y)f(also)g(app)s(ear)f(as)g (argumen)m(ts)h(to)g(the)g Ft(alias)p Fu(,)e Ft(declare)p -Fu(,)g Ft(typeset)p Fu(,)g Ft(export)p Fu(,)p eop end +Fu(,)g Ft(typeset)p Fu(,)g Ft(export)p Fu(,)150 5230 +y Ft(readonly)p Fu(,)38 b(and)g Ft(local)f Fu(builtin)h(commands)g(\()p +Fr(declaration)j Fu(commands\).)64 b(When)39 b(in)f Fm(posix)f +Fu(mo)s(de)150 5340 y(\(see)c(Section)f(6.11)h([Bash)g(POSIX)d(Mo)s +(de],)j(page)f(98\),)i(these)e(builtins)f(ma)m(y)i(app)s(ear)e(in)g(a)h +(command)p eop end %%Page: 20 26 TeXDict begin 20 25 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(20)150 299 -y Ft(readonly)p Fu(,)38 b(and)g Ft(local)f Fu(builtin)h(commands)g(\()p -Fr(declaration)j Fu(commands\).)64 b(When)39 b(in)f Fm(posix)f -Fu(mo)s(de)150 408 y(\(see)c(Section)f(6.11)h([Bash)g(POSIX)d(Mo)s -(de],)j(page)f(98\),)i(these)e(builtins)f(ma)m(y)i(app)s(ear)e(in)g(a)h -(command)150 518 y(after)i(one)g(or)f(more)h(instances)g(of)f(the)h +y(after)34 b(one)g(or)f(more)h(instances)g(of)f(the)h Ft(command)d Fu(builtin)i(and)g(retain)h(these)g(assignmen)m(t)g -(statemen)m(t)150 628 y(prop)s(erties.)275 775 y(In)29 +(statemen)m(t)150 408 y(prop)s(erties.)275 550 y(In)29 b(the)h(con)m(text)i(where)d(an)h(assignmen)m(t)h(statemen)m(t)h(is)e (assigning)g(a)h(v)-5 b(alue)30 b(to)h(a)f(shell)g(v)-5 -b(ariable)31 b(or)150 885 y(arra)m(y)24 b(index)f(\(see)h(Section)g +b(ariable)31 b(or)150 660 y(arra)m(y)24 b(index)f(\(see)h(Section)g (6.7)g([Arra)m(ys],)i(page)e(93\),)i(the)e(`)p Ft(+=)p Fu(')f(op)s(erator)g(can)h(b)s(e)f(used)f(to)i(app)s(end)e(to)i(or)150 -994 y(add)k(to)i(the)f(v)-5 b(ariable's)30 b(previous)e(v)-5 +770 y(add)k(to)i(the)f(v)-5 b(ariable's)30 b(previous)e(v)-5 b(alue.)41 b(This)28 b(includes)g(argumen)m(ts)i(to)f(builtin)g -(commands)f(suc)m(h)h(as)150 1104 y Ft(declare)e Fu(that)i(accept)h +(commands)f(suc)m(h)h(as)150 879 y Ft(declare)e Fu(that)i(accept)h (assignmen)m(t)f(statemen)m(ts)h(\()p Fr(declaration)h Fu(commands\).)40 b(When)28 b(`)p Ft(+=)p Fu(')h(is)f(applied)150 -1213 y(to)d(a)f(v)-5 b(ariable)24 b(for)g(whic)m(h)f(the)h +989 y(to)d(a)f(v)-5 b(ariable)24 b(for)g(whic)m(h)f(the)h Fr(in)m(teger)32 b Fu(attribute)24 b(has)g(b)s(een)f(set,)j Fr(v)-5 b(alue)29 b Fu(is)24 b(ev)-5 b(aluated)25 b(as)f(an)g -(arithmetic)150 1323 y(expression)30 b(and)f(added)g(to)i(the)f(v)-5 +(arithmetic)150 1098 y(expression)30 b(and)f(added)g(to)i(the)f(v)-5 b(ariable's)30 b(curren)m(t)g(v)-5 b(alue,)31 b(whic)m(h)e(is)h(also)h (ev)-5 b(aluated.)42 b(When)29 b(`)p Ft(+=)p Fu(')h(is)150 -1433 y(applied)25 b(to)h(an)f(arra)m(y)h(v)-5 b(ariable)26 +1208 y(applied)25 b(to)h(an)f(arra)m(y)h(v)-5 b(ariable)26 b(using)f(comp)s(ound)f(assignmen)m(t)i(\(see)g(Section)g(6.7)g([Arra)m -(ys],)h(page)f(93\),)150 1542 y(the)33 b(v)-5 b(ariable's)33 +(ys],)h(page)f(93\),)150 1318 y(the)33 b(v)-5 b(ariable's)33 b(v)-5 b(alue)33 b(is)g(not)g(unset)f(\(as)h(it)g(is)g(when)e(using)i (`)p Ft(=)p Fu('\),)g(and)f(new)g(v)-5 b(alues)33 b(are)g(app)s(ended)e -(to)150 1652 y(the)26 b(arra)m(y)h(b)s(eginning)e(at)i(one)f(greater)h +(to)150 1427 y(the)26 b(arra)m(y)h(b)s(eginning)e(at)i(one)f(greater)h (than)f(the)g(arra)m(y's)h(maxim)m(um)f(index)f(\(for)i(indexed)e(arra) -m(ys\),)j(or)150 1761 y(added)c(as)i(additional)g(k)m(ey-v)-5 +m(ys\),)j(or)150 1537 y(added)c(as)i(additional)g(k)m(ey-v)-5 b(alue)26 b(pairs)f(in)g(an)g(asso)s(ciativ)m(e)j(arra)m(y)-8 b(.)40 b(When)24 b(applied)h(to)h(a)g(string-v)-5 b(alued)150 -1871 y(v)g(ariable,)31 b Fr(v)-5 b(alue)36 b Fu(is)31 +1646 y(v)g(ariable,)31 b Fr(v)-5 b(alue)36 b Fu(is)31 b(expanded)e(and)h(app)s(ended)f(to)i(the)f(v)-5 b(ariable's)32 -b(v)-5 b(alue.)275 2018 y(A)28 b(v)-5 b(ariable)29 b(can)f(b)s(e)f +b(v)-5 b(alue.)275 1788 y(A)28 b(v)-5 b(ariable)29 b(can)f(b)s(e)f (assigned)i(the)f Fr(nameref)45 b Fu(attribute)29 b(using)f(the)g Ft(-n)f Fu(option)i(to)g(the)f Ft(declare)e Fu(or)150 -2128 y Ft(local)f Fu(builtin)h(commands)g(\(see)i(Section)f(4.2)h +1898 y Ft(local)f Fu(builtin)h(commands)g(\(see)i(Section)f(4.2)h ([Bash)f(Builtins],)h(page)f(50\))h(to)f(create)i(a)e -Fr(nameref)p Fu(,)g(or)g(a)150 2237 y(reference)f(to)g(another)f(v)-5 +Fr(nameref)p Fu(,)g(or)g(a)150 2007 y(reference)f(to)g(another)f(v)-5 b(ariable.)40 b(This)24 b(allo)m(ws)j(v)-5 b(ariables)26 b(to)g(b)s(e)e(manipulated)h(indirectly)-8 b(.)40 b(Whenev)m(er)150 -2347 y(the)31 b(nameref)g(v)-5 b(ariable)32 b(is)f(referenced,)g +2117 y(the)31 b(nameref)g(v)-5 b(ariable)32 b(is)f(referenced,)g (assigned)h(to,)g(unset,)f(or)g(has)f(its)i(attributes)f(mo)s(di\014ed) -f(\(other)150 2457 y(than)c(using)g(or)h(c)m(hanging)g(the)g(nameref)f +f(\(other)150 2227 y(than)c(using)g(or)h(c)m(hanging)g(the)g(nameref)f (attribute)i(itself)7 b(\),)29 b(the)d(op)s(eration)h(is)g(actually)h -(p)s(erformed)d(on)150 2566 y(the)31 b(v)-5 b(ariable)31 +(p)s(erformed)d(on)150 2336 y(the)31 b(v)-5 b(ariable)31 b(sp)s(eci\014ed)f(b)m(y)g(the)h(nameref)f(v)-5 b(ariable's)31 b(v)-5 b(alue.)42 b(A)30 b(nameref)g(is)h(commonly)g(used)e(within)150 -2676 y(shell)h(functions)g(to)h(refer)f(to)h(a)f(v)-5 +2446 y(shell)h(functions)g(to)h(refer)f(to)h(a)f(v)-5 b(ariable)31 b(whose)f(name)h(is)f(passed)g(as)g(an)g(argumen)m(t)h(to) -g(the)f(function.)150 2785 y(F)-8 b(or)31 b(instance,)g(if)g(a)g(v)-5 +g(the)f(function.)150 2555 y(F)-8 b(or)31 b(instance,)g(if)g(a)g(v)-5 b(ariable)31 b(name)f(is)h(passed)e(to)j(a)e(shell)h(function)f(as)h -(its)f(\014rst)g(argumen)m(t,)h(running)390 2933 y Ft(declare)46 -b(-n)h(ref=$1)150 3080 y Fu(inside)31 b(the)h(function)f(creates)i(a)g +(its)f(\014rst)g(argumen)m(t,)h(running)390 2697 y Ft(declare)46 +b(-n)h(ref=$1)150 2839 y Fu(inside)31 b(the)h(function)f(creates)i(a)g (nameref)e(v)-5 b(ariable)32 b Fr(ref)49 b Fu(whose)32 b(v)-5 b(alue)32 b(is)g(the)f(v)-5 b(ariable)33 b(name)e(passed)150 -3190 y(as)e(the)h(\014rst)e(argumen)m(t.)41 b(References)30 +2949 y(as)e(the)h(\014rst)e(argumen)m(t.)41 b(References)30 b(and)e(assignmen)m(ts)i(to)g Fr(ref)p Fu(,)f(and)g(c)m(hanges)h(to)g -(its)f(attributes,)i(are)150 3299 y(treated)g(as)f(references,)g +(its)f(attributes,)i(are)150 3059 y(treated)g(as)f(references,)g (assignmen)m(ts,)h(and)e(attribute)i(mo)s(di\014cations)f(to)h(the)f(v) --5 b(ariable)30 b(whose)g(name)150 3409 y(w)m(as)h(passed)f(as)g -Ft($1)p Fu(.)275 3556 y(If)h(the)g(con)m(trol)i(v)-5 +-5 b(ariable)30 b(whose)g(name)150 3168 y(w)m(as)h(passed)f(as)g +Ft($1)p Fu(.)275 3310 y(If)h(the)g(con)m(trol)i(v)-5 b(ariable)32 b(in)g(a)f Ft(for)g Fu(lo)s(op)h(has)f(the)g(nameref)h (attribute,)g(the)g(list)g(of)g(w)m(ords)f(can)h(b)s(e)150 -3666 y(a)h(list)h(of)f(shell)g(v)-5 b(ariables,)34 b(and)e(a)i(name)f +3420 y(a)h(list)h(of)f(shell)g(v)-5 b(ariables,)34 b(and)e(a)i(name)f (reference)g(will)g(b)s(e)f(established)h(for)g(eac)m(h)h(w)m(ord)e(in) -h(the)g(list,)150 3775 y(in)c(turn,)g(when)g(the)h(lo)s(op)g(is)g +h(the)g(list,)150 3529 y(in)c(turn,)g(when)g(the)h(lo)s(op)g(is)g (executed.)41 b(Arra)m(y)30 b(v)-5 b(ariables)30 b(cannot)h(b)s(e)e -(giv)m(en)h(the)g(nameref)g(attribute.)150 3885 y(Ho)m(w)m(ev)m(er,)39 +(giv)m(en)h(the)g(nameref)g(attribute.)150 3639 y(Ho)m(w)m(ev)m(er,)39 b(nameref)d(v)-5 b(ariables)36 b(can)g(reference)g(arra)m(y)g(v)-5 b(ariables)37 b(and)e(subscripted)f(arra)m(y)i(v)-5 b(ariables.)150 -3995 y(Namerefs)36 b(can)f(b)s(e)g(unset)g(using)g(the)h +3748 y(Namerefs)36 b(can)f(b)s(e)g(unset)g(using)g(the)h Ft(-n)e Fu(option)i(to)g(the)g Ft(unset)e Fu(builtin)h(\(see)h(Section) -g(4.1)h([Bourne)150 4104 y(Shell)43 b(Builtins],)j(page)e(43\).)79 +g(4.1)h([Bourne)150 3858 y(Shell)43 b(Builtins],)j(page)e(43\).)79 b(Otherwise,)45 b(if)e Ft(unset)e Fu(is)i(executed)h(with)e(the)h(name) -g(of)g(a)g(nameref)150 4214 y(v)-5 b(ariable)31 b(as)g(an)f(argumen)m +g(of)g(a)g(nameref)150 3968 y(v)-5 b(ariable)31 b(as)g(an)f(argumen)m (t,)h(the)g(v)-5 b(ariable)31 b(referenced)f(b)m(y)g(the)h(nameref)f(v) --5 b(ariable)31 b(will)g(b)s(e)f(unset.)150 4426 y Fk(3.4.1)63 -b(P)m(ositional)41 b(P)m(arameters)150 4573 y Fu(A)28 +-5 b(ariable)31 b(will)g(b)s(e)f(unset.)150 4174 y Fk(3.4.1)63 +b(P)m(ositional)41 b(P)m(arameters)150 4321 y Fu(A)28 b Fr(p)s(ositional)h(parameter)35 b Fu(is)28 b(a)g(parameter)g(denoted) g(b)m(y)g(one)g(or)g(more)g(digits,)h(other)g(than)e(the)h(single)150 -4682 y(digit)34 b Ft(0)p Fu(.)48 b(P)m(ositional)36 b(parameters)d(are) +4431 y(digit)34 b Ft(0)p Fu(.)48 b(P)m(ositional)36 b(parameters)d(are) g(assigned)h(from)e(the)i(shell's)f(argumen)m(ts)g(when)f(it)i(is)f(in) -m(v)m(ok)m(ed,)150 4792 y(and)38 b(ma)m(y)i(b)s(e)e(reassigned)i(using) +m(v)m(ok)m(ed,)150 4540 y(and)38 b(ma)m(y)i(b)s(e)e(reassigned)i(using) e(the)h Ft(set)g Fu(builtin)f(command.)67 b(P)m(ositional)41 -b(parameter)e Ft(N)g Fu(ma)m(y)h(b)s(e)150 4902 y(referenced)34 +b(parameter)e Ft(N)g Fu(ma)m(y)h(b)s(e)150 4650 y(referenced)34 b(as)h Ft(${N})p Fu(,)g(or)f(as)h Ft($N)e Fu(when)h Ft(N)g Fu(consists)h(of)f(a)h(single)g(digit.)54 b(P)m(ositional)37 -b(parameters)d(ma)m(y)150 5011 y(not)j(b)s(e)f(assigned)h(to)g(with)f +b(parameters)d(ma)m(y)150 4760 y(not)j(b)s(e)f(assigned)h(to)g(with)f (assignmen)m(t)i(statemen)m(ts.)61 b(The)36 b Ft(set)g Fu(and)g Ft(shift)f Fu(builtins)h(are)h(used)f(to)150 -5121 y(set)k(and)f(unset)f(them)i(\(see)g(Chapter)f(4)g([Shell)h +4869 y(set)k(and)f(unset)f(them)i(\(see)g(Chapter)f(4)g([Shell)h (Builtin)g(Commands],)h(page)f(43\).)68 b(The)39 b(p)s(ositional)150 -5230 y(parameters)44 b(are)g(temp)s(orarily)g(replaced)h(when)e(a)h +4979 y(parameters)44 b(are)g(temp)s(orarily)g(replaced)h(when)e(a)h (shell)g(function)g(is)g(executed)g(\(see)h(Section)g(3.3)150 -5340 y([Shell)30 b(F)-8 b(unctions],)32 b(page)f(17\).)p -eop end +5088 y([Shell)30 b(F)-8 b(unctions],)32 b(page)f(17\).)275 +5230 y(When)c(a)i(p)s(ositional)g(parameter)g(consisting)f(of)h(more)f +(than)g(a)g(single)h(digit)g(is)f(expanded,)g(it)h(m)m(ust)150 +5340 y(b)s(e)h(enclosed)h(in)f(braces.)p eop end %%Page: 21 27 TeXDict begin 21 26 bop 150 -116 a Fu(Chapter)30 b(3:)41 -b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(21)275 299 -y(When)27 b(a)i(p)s(ositional)g(parameter)g(consisting)f(of)h(more)f -(than)g(a)g(single)h(digit)g(is)f(expanded,)g(it)h(m)m(ust)150 -408 y(b)s(e)h(enclosed)h(in)f(braces.)150 605 y Fk(3.4.2)63 -b(Sp)s(ecial)41 b(P)m(arameters)150 752 y Fu(The)d(shell)g(treats)h -(sev)m(eral)g(parameters)f(sp)s(ecially)-8 b(.)65 b(These)38 -b(parameters)h(ma)m(y)f(only)g(b)s(e)g(referenced;)150 -862 y(assignmen)m(t)31 b(to)g(them)g(is)f(not)h(allo)m(w)m(ed.)150 -1018 y Ft(*)432 b Fu(\($*\))38 b(Expands)d(to)i(the)f(p)s(ositional)h +b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(21)150 299 +y Fk(3.4.2)63 b(Sp)s(ecial)41 b(P)m(arameters)150 446 +y Fu(The)d(shell)g(treats)h(sev)m(eral)g(parameters)f(sp)s(ecially)-8 +b(.)65 b(These)38 b(parameters)h(ma)m(y)f(only)g(b)s(e)g(referenced;) +150 555 y(assignmen)m(t)31 b(to)g(them)g(is)f(not)h(allo)m(w)m(ed.)150 +722 y Ft(*)432 b Fu(\($*\))38 b(Expands)d(to)i(the)f(p)s(ositional)h (parameters,)h(starting)f(from)f(one.)59 b(When)36 b(the)g(ex-)630 -1128 y(pansion)h(is)h(not)g(within)f(double)g(quotes,)j(eac)m(h)f(p)s -(ositional)f(parameter)g(expands)f(to)i(a)630 1237 y(separate)e(w)m +831 y(pansion)h(is)h(not)g(within)f(double)g(quotes,)j(eac)m(h)f(p)s +(ositional)f(parameter)g(expands)f(to)i(a)630 941 y(separate)e(w)m (ord.)56 b(In)35 b(con)m(texts)i(where)e(it)h(is)g(p)s(erformed,)g -(those)g(w)m(ords)f(are)h(sub)5 b(ject)35 b(to)630 1347 +(those)g(w)m(ords)f(are)h(sub)5 b(ject)35 b(to)630 1051 y(further)h(w)m(ord)h(splitting)h(and)f(pathname)g(expansion.)61 -b(When)38 b(the)f(expansion)g(o)s(ccurs)630 1457 y(within)25 +b(When)38 b(the)f(expansion)g(o)s(ccurs)630 1160 y(within)25 b(double)h(quotes,)h(it)f(expands)f(to)i(a)f(single)g(w)m(ord)f(with)h -(the)g(v)-5 b(alue)26 b(of)g(eac)m(h)h(param-)630 1566 +(the)g(v)-5 b(alue)26 b(of)g(eac)m(h)h(param-)630 1270 y(eter)32 b(separated)h(b)m(y)e(the)h(\014rst)f(c)m(haracter)i(of)f (the)g Ft(IFS)f Fu(sp)s(ecial)h(v)-5 b(ariable.)45 b(That)32 -b(is,)g Ft("$*")630 1676 y Fu(is)f(equiv)-5 b(alen)m(t)32 +b(is,)g Ft("$*")630 1379 y Fu(is)f(equiv)-5 b(alen)m(t)32 b(to)g Ft("$1)p Fj(c)p Ft($2)p Fj(c)p Ft(...)m(")p Fu(,)f(where)g Fr(c)37 b Fu(is)31 b(the)g(\014rst)f(c)m(haracter)j(of)e(the)g(v)-5 -b(alue)32 b(of)f(the)630 1785 y Ft(IFS)e Fu(v)-5 b(ariable.)41 +b(alue)32 b(of)f(the)630 1489 y Ft(IFS)e Fu(v)-5 b(ariable.)41 b(If)29 b Ft(IFS)g Fu(is)h(unset,)f(the)h(parameters)g(are)g(separated) -g(b)m(y)g(spaces.)41 b(If)29 b Ft(IFS)g Fu(is)630 1895 +g(b)m(y)g(spaces.)41 b(If)29 b Ft(IFS)g Fu(is)630 1599 y(n)m(ull,)i(the)f(parameters)h(are)g(joined)f(without)g(in)m(terv)m -(ening)i(separators.)150 2052 y Ft(@)432 b Fu(\($@\))35 +(ening)i(separators.)150 1763 y Ft(@)432 b Fu(\($@\))35 b(Expands)e(to)i(the)g(p)s(ositional)g(parameters,)h(starting)f(from)f -(one.)53 b(When)34 b(the)g(ex-)630 2161 y(pansion)41 +(one.)53 b(When)34 b(the)g(ex-)630 1872 y(pansion)41 b(o)s(ccurs)g(within)f(double)h(quotes,)k(eac)m(h)d(parameter)g -(expands)e(to)i(a)g(separate)630 2271 y(w)m(ord.)50 b(That)34 +(expands)e(to)i(a)g(separate)630 1982 y(w)m(ord.)50 b(That)34 b(is,)g Ft("$@")f Fu(is)g(equiv)-5 b(alen)m(t)35 b(to)g Ft("$1")29 b("$2")g(...)o Fu(.)51 b(If)33 b(the)h(double-quoted)f(ex-) -630 2380 y(pansion)38 b(o)s(ccurs)h(within)f(a)h(w)m(ord,)i(the)e +630 2091 y(pansion)38 b(o)s(ccurs)h(within)f(a)h(w)m(ord,)i(the)e (expansion)g(of)g(the)g(\014rst)f(parameter)h(is)g(joined)630 -2490 y(with)i(the)h(b)s(eginning)e(part)i(of)f(the)h(original)g(w)m -(ord,)i(and)d(the)h(expansion)f(of)g(the)h(last)630 2600 +2201 y(with)i(the)h(b)s(eginning)e(part)i(of)f(the)h(original)g(w)m +(ord,)i(and)d(the)h(expansion)f(of)g(the)h(last)630 2311 y(parameter)31 b(is)f(joined)g(with)f(the)i(last)g(part)e(of)i(the)f (original)h(w)m(ord.)40 b(When)30 b(there)h(are)f(no)630 -2709 y(p)s(ositional)e(parameters,)h Ft("$@")d Fu(and)h +2420 y(p)s(ositional)e(parameters,)h Ft("$@")d Fu(and)h Ft($@)f Fu(expand)h(to)h(nothing)f(\(i.e.,)j(they)e(are)f(remo)m(v)m -(ed\).)150 2866 y Ft(#)432 b Fu(\($#\))31 b(Expands)e(to)i(the)g(n)m +(ed\).)150 2584 y Ft(#)432 b Fu(\($#\))31 b(Expands)e(to)i(the)g(n)m (um)m(b)s(er)e(of)h(p)s(ositional)i(parameters)e(in)g(decimal.)150 -3022 y Ft(?)432 b Fu(\($?\))88 b(Expands)45 b(to)h(the)g(exit)h(status) +2748 y Ft(?)432 b Fu(\($?\))88 b(Expands)45 b(to)h(the)g(exit)h(status) f(of)g(the)g(most)h(recen)m(tly)g(executed)g(foreground)630 -3132 y(pip)s(eline.)150 3289 y Ft(-)432 b Fu(\($-,)24 +2858 y(pip)s(eline.)150 3022 y Ft(-)432 b Fu(\($-,)24 b(a)e(h)m(yphen.\))37 b(Expands)20 b(to)i(the)f(curren)m(t)h(option)f (\015ags)h(as)f(sp)s(eci\014ed)g(up)s(on)f(in)m(v)m(o)s(cation,)630 -3398 y(b)m(y)38 b(the)h Ft(set)f Fu(builtin)g(command,)j(or)d(those)i +3132 y(b)m(y)38 b(the)h Ft(set)f Fu(builtin)g(command,)j(or)d(those)i (set)f(b)m(y)f(the)h(shell)g(itself)g(\(suc)m(h)g(as)g(the)g -Ft(-i)630 3508 y Fu(option\).)150 3665 y Ft($)432 b Fu(\($$\))31 +Ft(-i)630 3241 y Fu(option\).)150 3405 y Ft($)432 b Fu(\($$\))31 b(Expands)d(to)j(the)e(pro)s(cess)h Fm(id)f Fu(of)h(the)g(shell.)41 b(In)28 b(a)i Ft(\(\))f Fu(subshell,)h(it)g(expands)e(to)j(the)630 -3774 y(pro)s(cess)f Fm(id)g Fu(of)h(the)g(in)m(v)m(oking)g(shell,)g -(not)g(the)f(subshell.)150 3931 y Ft(!)432 b Fu(\($!\))51 +3515 y(pro)s(cess)f Fm(id)g Fu(of)h(the)g(in)m(v)m(oking)g(shell,)g +(not)g(the)f(subshell.)150 3679 y Ft(!)432 b Fu(\($!\))51 b(Expands)32 b(to)i(the)g(pro)s(cess)f Fm(id)h Fu(of)f(the)h(job)f (most)h(recen)m(tly)h(placed)f(in)m(to)g(the)g(bac)m(k-)630 -4040 y(ground,)26 b(whether)g(executed)g(as)h(an)f(async)m(hronous)f +3789 y(ground,)26 b(whether)g(executed)g(as)h(an)f(async)m(hronous)f (command)h(or)g(using)g(the)g Ft(bg)f Fu(builtin)630 -4150 y(\(see)31 b(Section)h(7.2)f([Job)f(Con)m(trol)h(Builtins],)g -(page)h(103\).)150 4307 y Ft(0)432 b Fu(\($0\))46 b(Expands)d(to)i(the) +3898 y(\(see)31 b(Section)h(7.2)f([Job)f(Con)m(trol)h(Builtins],)g +(page)h(103\).)150 4062 y Ft(0)432 b Fu(\($0\))46 b(Expands)d(to)i(the) g(name)g(of)f(the)h(shell)g(or)f(shell)h(script.)83 b(This)44 -b(is)g(set)h(at)h(shell)630 4416 y(initialization.)d(If)27 +b(is)g(set)h(at)h(shell)630 4172 y(initialization.)d(If)27 b(Bash)h(is)g(in)m(v)m(ok)m(ed)h(with)e(a)i(\014le)e(of)h(commands)g -(\(see)g(Section)h(3.8)g([Shell)630 4526 y(Scripts],)g(page)g(41\),)h +(\(see)g(Section)h(3.8)g([Shell)630 4281 y(Scripts],)g(page)g(41\),)h Ft($0)e Fu(is)h(set)g(to)g(the)f(name)h(of)f(that)h(\014le.)41 -b(If)28 b(Bash)g(is)h(started)g(with)f(the)630 4635 y +b(If)28 b(Bash)g(is)h(started)g(with)f(the)630 4391 y Ft(-c)i Fu(option)h(\(see)h(Section)g(6.1)f([In)m(v)m(oking)h(Bash],)g (page)f(84\),)i(then)d Ft($0)g Fu(is)h(set)g(to)h(the)f(\014rst)630 -4745 y(argumen)m(t)g(after)g(the)g(string)g(to)g(b)s(e)f(executed,)i +4501 y(argumen)m(t)g(after)g(the)g(string)g(to)g(b)s(e)f(executed,)i (if)f(one)g(is)f(presen)m(t.)42 b(Otherwise,)31 b(it)g(is)f(set)630 -4855 y(to)h(the)g(\014lename)f(used)g(to)h(in)m(v)m(ok)m(e)h(Bash,)f -(as)g(giv)m(en)g(b)m(y)f(argumen)m(t)h(zero.)150 5011 -y Ft(_)432 b Fu(\($)p 716 5011 28 4 v 41 w(,)41 b(an)e(underscore.\))67 +4610 y(to)h(the)g(\014lename)f(used)g(to)h(in)m(v)m(ok)m(e)h(Bash,)f +(as)g(giv)m(en)g(b)m(y)f(argumen)m(t)h(zero.)150 4774 +y Ft(_)432 b Fu(\($)p 716 4774 28 4 v 41 w(,)41 b(an)e(underscore.\))67 b(A)m(t)40 b(shell)f(startup,)i(set)f(to)g(the)f(absolute)h(pathname)f -(used)f(to)630 5121 y(in)m(v)m(ok)m(e)43 b(the)e(shell)g(or)g(shell)g +(used)f(to)630 4884 y(in)m(v)m(ok)m(e)43 b(the)e(shell)g(or)g(shell)g (script)g(b)s(eing)f(executed)i(as)f(passed)g(in)f(the)h(en)m(vironmen) -m(t)630 5230 y(or)34 b(argumen)m(t)g(list.)52 b(Subsequen)m(tly)-8 +m(t)630 4994 y(or)34 b(argumen)m(t)g(list.)52 b(Subsequen)m(tly)-8 b(,)34 b(expands)f(to)i(the)f(last)h(argumen)m(t)f(to)g(the)g(previous) -630 5340 y(command,)g(after)f(expansion.)48 b(Also)34 +630 5103 y(command,)g(after)f(expansion.)48 b(Also)34 b(set)g(to)f(the)g(full)g(pathname)g(used)f(to)i(in)m(v)m(ok)m(e)h(eac) -m(h)p eop end +m(h)630 5213 y(command)29 b(executed)h(and)f(placed)g(in)g(the)h(en)m +(vironmen)m(t)f(exp)s(orted)g(to)h(that)g(command.)630 +5322 y(When)g(c)m(hec)m(king)i(mail,)g(this)e(parameter)h(holds)f(the)g +(name)h(of)f(the)h(mail)g(\014le.)p eop end %%Page: 22 28 TeXDict begin 22 27 bop 150 -116 a Fu(Chapter)30 b(3:)41 -b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(22)630 299 -y(command)29 b(executed)h(and)f(placed)g(in)g(the)h(en)m(vironmen)m(t)f -(exp)s(orted)g(to)h(that)g(command.)630 408 y(When)g(c)m(hec)m(king)i -(mail,)g(this)e(parameter)h(holds)f(the)g(name)h(of)f(the)h(mail)g -(\014le.)150 655 y Fs(3.5)68 b(Shell)45 b(Expansions)150 -815 y Fu(Expansion)27 b(is)i(p)s(erformed)d(on)i(the)g(command)g(line)h -(after)f(it)h(has)f(b)s(een)f(split)h(in)m(to)i Ft(token)p -Fu(s.)38 b(There)28 b(are)150 924 y(sev)m(en)j(kinds)e(of)i(expansion)f -(p)s(erformed:)225 1063 y Fq(\017)60 b Fu(brace)31 b(expansion)225 -1199 y Fq(\017)60 b Fu(tilde)31 b(expansion)225 1336 -y Fq(\017)60 b Fu(parameter)31 b(and)f(v)-5 b(ariable)31 -b(expansion)225 1472 y Fq(\017)60 b Fu(command)30 b(substitution)225 -1609 y Fq(\017)60 b Fu(arithmetic)32 b(expansion)225 -1745 y Fq(\017)60 b Fu(w)m(ord)30 b(splitting)225 1882 -y Fq(\017)60 b Fu(\014lename)31 b(expansion)275 2047 +b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(22)150 299 +y Fs(3.5)68 b(Shell)45 b(Expansions)150 458 y Fu(Expansion)27 +b(is)i(p)s(erformed)d(on)i(the)g(command)g(line)h(after)f(it)h(has)f(b) +s(een)f(split)h(in)m(to)i Ft(token)p Fu(s.)38 b(There)28 +b(are)150 568 y(sev)m(en)j(kinds)e(of)i(expansion)f(p)s(erformed:)225 +701 y Fq(\017)60 b Fu(brace)31 b(expansion)225 834 y +Fq(\017)60 b Fu(tilde)31 b(expansion)225 967 y Fq(\017)60 +b Fu(parameter)31 b(and)f(v)-5 b(ariable)31 b(expansion)225 +1100 y Fq(\017)60 b Fu(command)30 b(substitution)225 +1233 y Fq(\017)60 b Fu(arithmetic)32 b(expansion)225 +1366 y Fq(\017)60 b Fu(w)m(ord)30 b(splitting)225 1499 +y Fq(\017)60 b Fu(\014lename)31 b(expansion)275 1655 y(The)24 b(order)h(of)h(expansions)f(is:)39 b(brace)25 b(expansion;)j(tilde)e(expansion,)g(parameter)g(and)f(v)-5 -b(ariable)26 b(ex-)150 2157 y(pansion,)j(arithmetic)i(expansion,)f(and) +b(ariable)26 b(ex-)150 1765 y(pansion,)j(arithmetic)i(expansion,)f(and) f(command)g(substitution)g(\(done)g(in)h(a)f(left-to-righ)m(t)k -(fashion\);)150 2267 y(w)m(ord)d(splitting;)h(and)f(\014lename)h -(expansion.)275 2405 y(On)42 b(systems)h(that)h(can)g(supp)s(ort)e(it,) +(fashion\);)150 1874 y(w)m(ord)d(splitting;)h(and)f(\014lename)h +(expansion.)275 2007 y(On)42 b(systems)h(that)h(can)g(supp)s(ort)e(it,) 47 b(there)d(is)f(an)h(additional)g(expansion)f(a)m(v)-5 -b(ailable:)69 b Fr(pro)s(cess)150 2515 y(substitution)p +b(ailable:)69 b Fr(pro)s(cess)150 2117 y(substitution)p Fu(.)50 b(This)33 b(is)h(p)s(erformed)e(at)j(the)f(same)g(time)g(as)g (tilde,)i(parameter,)f(v)-5 b(ariable,)35 b(and)f(arith-)150 -2624 y(metic)d(expansion)g(and)e(command)i(substitution.)275 -2763 y(After)f(these)h(expansions)f(are)g(p)s(erformed,)f(quote)i(c)m +2226 y(metic)d(expansion)g(and)e(command)i(substitution.)275 +2359 y(After)f(these)h(expansions)f(are)g(p)s(erformed,)f(quote)i(c)m (haracters)h(presen)m(t)e(in)g(the)g(original)i(w)m(ord)e(are)150 -2872 y(remo)m(v)m(ed)h(unless)f(they)h(ha)m(v)m(e)g(b)s(een)f(quoted)g +2469 y(remo)m(v)m(ed)h(unless)f(they)h(ha)m(v)m(e)g(b)s(een)f(quoted)g (themselv)m(es)i(\()p Fr(quote)f(remo)m(v)-5 b(al)t Fu(\).)275 -3011 y(Only)31 b(brace)i(expansion,)h(w)m(ord)e(splitting,)i(and)e +2602 y(Only)31 b(brace)i(expansion,)h(w)m(ord)e(splitting,)i(and)e (\014lename)h(expansion)f(can)h(increase)g(the)g(n)m(um)m(b)s(er)150 -3121 y(of)24 b(w)m(ords)g(of)g(the)h(expansion;)h(other)e(expansions)g +2711 y(of)24 b(w)m(ords)g(of)g(the)h(expansion;)h(other)e(expansions)g (expand)g(a)g(single)h(w)m(ord)f(to)h(a)f(single)h(w)m(ord.)38 -b(The)24 b(only)150 3230 y(exceptions)i(to)f(this)g(are)g(the)g +b(The)24 b(only)150 2821 y(exceptions)i(to)f(this)g(are)g(the)g (expansions)g(of)g Ft("$@")f Fu(and)g Ft($*)g Fu(\(see)i(Section)f -(3.4.2)i([Sp)s(ecial)e(P)m(arameters],)150 3340 y(page)31 +(3.4.2)i([Sp)s(ecial)e(P)m(arameters],)150 2931 y(page)31 b(21\),)h(and)e Ft("${)p Fj(name)p Ft([@]}")d Fu(and)i Ft(${)p Fj(name)p Ft([*]})f Fu(\(see)j(Section)h(6.7)f([Arra)m(ys],)g -(page)g(93\).)275 3478 y(After)41 b(all)i(expansions,)h +(page)g(93\).)275 3064 y(After)41 b(all)i(expansions,)h Ft(quote)29 b(removal)40 b Fu(\(see)i(Section)h(3.5.9)g([Quote)f(Remo)m -(v)-5 b(al],)47 b(page)42 b(33\))h(is)150 3588 y(p)s(erformed.)150 -3791 y Fk(3.5.1)63 b(Brace)40 b(Expansion)150 3938 y +(v)-5 b(al],)47 b(page)42 b(33\))h(is)150 3173 y(p)s(erformed.)150 +3369 y Fk(3.5.1)63 b(Brace)40 b(Expansion)150 3516 y Fu(Brace)32 b(expansion)f(is)f(a)i(mec)m(hanism)f(b)m(y)f(whic)m(h)h (arbitrary)f(strings)h(ma)m(y)g(b)s(e)f(generated.)43 -b(This)30 b(mec)m(h-)150 4048 y(anism)35 b(is)h(similar)f(to)h +b(This)30 b(mec)m(h-)150 3626 y(anism)35 b(is)h(similar)f(to)h Fr(\014lename)g(expansion)f Fu(\(see)i(Section)f(3.5.8)h([Filename)g -(Expansion],)f(page)g(31\),)150 4157 y(but)26 b(the)h(\014lenames)g +(Expansion],)f(page)g(31\),)150 3736 y(but)26 b(the)h(\014lenames)g (generated)h(need)f(not)g(exist.)40 b(P)m(atterns)28 b(to)f(b)s(e)g(brace)g(expanded)f(tak)m(e)i(the)f(form)g(of)150 -4267 y(an)j(optional)h Fr(pream)m(ble)p Fu(,)g(follo)m(w)m(ed)g(b)m(y)f +3845 y(an)j(optional)h Fr(pream)m(ble)p Fu(,)g(follo)m(w)m(ed)g(b)m(y)f (either)g(a)h(series)f(of)g(comma-separated)i(strings)d(or)h(a)h -(sequence)150 4376 y(expression)36 b(b)s(et)m(w)m(een)g(a)h(pair)e(of)i +(sequence)150 3955 y(expression)36 b(b)s(et)m(w)m(een)g(a)h(pair)e(of)i (braces,)g(follo)m(w)m(ed)h(b)m(y)e(an)g(optional)h Fr(p)s(ostscript)p -Fu(.)57 b(The)36 b(pream)m(ble)g(is)150 4486 y(pre\014xed)28 +Fu(.)57 b(The)36 b(pream)m(ble)g(is)150 4064 y(pre\014xed)28 b(to)h(eac)m(h)h(string)f(con)m(tained)h(within)e(the)h(braces,)g(and)g (the)g(p)s(ostscript)f(is)h(then)f(app)s(ended)f(to)150 -4596 y(eac)m(h)32 b(resulting)e(string,)h(expanding)e(left)j(to)f(righ) -m(t.)275 4734 y(Brace)37 b(expansions)f(ma)m(y)h(b)s(e)f(nested.)59 +4174 y(eac)m(h)32 b(resulting)e(string,)h(expanding)e(left)j(to)f(righ) +m(t.)275 4307 y(Brace)37 b(expansions)f(ma)m(y)h(b)s(e)f(nested.)59 b(The)36 b(results)g(of)h(eac)m(h)g(expanded)f(string)g(are)h(not)g -(sorted;)150 4844 y(left)31 b(to)g(righ)m(t)g(order)f(is)g(preserv)m -(ed.)41 b(F)-8 b(or)31 b(example,)390 4982 y Ft(bash$)46 -b(echo)h(a{d,c,b}e)390 5092 y(ade)g(ace)g(abe)275 5230 +(sorted;)150 4416 y(left)31 b(to)g(righ)m(t)g(order)f(is)g(preserv)m +(ed.)41 b(F)-8 b(or)31 b(example,)390 4549 y Ft(bash$)46 +b(echo)h(a{d,c,b}e)390 4659 y(ade)g(ace)g(abe)275 4792 y Fu(A)23 b(sequence)g(expression)g(tak)m(es)i(the)e(form)g Ft({)p Fj(x)p Ft(..)p Fj(y)p Ft([..)p Fj(incr)p Ft(]})p Fu(,)e(where)i Fr(x)29 b Fu(and)23 b Fr(y)30 b Fu(are)24 -b(either)g(in)m(tegers)150 5340 y(or)42 b(single)h(c)m(haracters,)48 +b(either)g(in)m(tegers)150 4902 y(or)42 b(single)h(c)m(haracters,)48 b(and)41 b Fr(incr)p Fu(,)46 b(an)c(optional)i(incremen)m(t,)i(is)c(an) -h(in)m(teger.)78 b(When)42 b(in)m(tegers)i(are)p eop -end +h(in)m(teger.)78 b(When)42 b(in)m(tegers)i(are)150 5011 +y(supplied,)f(the)f(expression)f(expands)f(to)i(eac)m(h)h(n)m(um)m(b)s +(er)d(b)s(et)m(w)m(een)i Fr(x)47 b Fu(and)41 b Fr(y)p +Fu(,)j(inclusiv)m(e.)75 b(Supplied)150 5121 y(in)m(tegers)33 +b(ma)m(y)e(b)s(e)g(pre\014xed)f(with)h(`)p Ft(0)p Fu(')h(to)g(force)g +(eac)m(h)g(term)g(to)g(ha)m(v)m(e)g(the)g(same)g(width.)42 +b(When)31 b(either)150 5230 y Fr(x)43 b Fu(or)36 b Fr(y)44 +b Fu(b)s(egins)36 b(with)g(a)h(zero,)i(the)e(shell)g(attempts)g(to)g +(force)g(all)h(generated)f(terms)g(to)g(con)m(tain)h(the)150 +5340 y(same)e(n)m(um)m(b)s(er)e(of)i(digits,)i(zero-padding)d(where)h +(necessary)-8 b(.)57 b(When)35 b(c)m(haracters)i(are)f(supplied,)g(the) +p eop end %%Page: 23 29 TeXDict begin 23 28 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(23)150 299 -y(supplied,)43 b(the)f(expression)f(expands)f(to)i(eac)m(h)h(n)m(um)m -(b)s(er)d(b)s(et)m(w)m(een)i Fr(x)47 b Fu(and)41 b Fr(y)p -Fu(,)j(inclusiv)m(e.)75 b(Supplied)150 408 y(in)m(tegers)33 -b(ma)m(y)e(b)s(e)g(pre\014xed)f(with)h(`)p Ft(0)p Fu(')h(to)g(force)g -(eac)m(h)g(term)g(to)g(ha)m(v)m(e)g(the)g(same)g(width.)42 -b(When)31 b(either)150 518 y Fr(x)43 b Fu(or)36 b Fr(y)44 -b Fu(b)s(egins)36 b(with)g(a)h(zero,)i(the)e(shell)g(attempts)g(to)g -(force)g(all)h(generated)f(terms)g(to)g(con)m(tain)h(the)150 -628 y(same)e(n)m(um)m(b)s(er)e(of)i(digits,)i(zero-padding)d(where)h -(necessary)-8 b(.)57 b(When)35 b(c)m(haracters)i(are)f(supplied,)g(the) -150 737 y(expression)24 b(expands)g(to)h(eac)m(h)h(c)m(haracter)g +y(expression)24 b(expands)g(to)h(eac)m(h)h(c)m(haracter)g (lexicographically)h(b)s(et)m(w)m(een)e Fr(x)30 b Fu(and)24 -b Fr(y)p Fu(,)i(inclusiv)m(e,)h(using)d(the)150 847 y(default)32 +b Fr(y)p Fu(,)i(inclusiv)m(e,)h(using)d(the)150 408 y(default)32 b(C)g(lo)s(cale.)48 b(Note)34 b(that)f(b)s(oth)e Fr(x)39 b Fu(and)31 b Fr(y)40 b Fu(m)m(ust)32 b(b)s(e)g(of)g(the)h(same)f(t)m -(yp)s(e.)47 b(When)32 b(the)g(incremen)m(t)150 956 y(is)d(supplied,)g +(yp)s(e.)47 b(When)32 b(the)g(incremen)m(t)150 518 y(is)d(supplied,)g (it)h(is)f(used)f(as)i(the)f(di\013erence)h(b)s(et)m(w)m(een)g(eac)m(h) g(term.)41 b(The)29 b(default)g(incremen)m(t)h(is)f(1)h(or)f(-1)150 -1066 y(as)i(appropriate.)275 1204 y(Brace)36 b(expansion)g(is)f(p)s +628 y(as)i(appropriate.)275 764 y(Brace)36 b(expansion)g(is)f(p)s (erformed)f(b)s(efore)h(an)m(y)h(other)g(expansions,)h(and)e(an)m(y)g -(c)m(haracters)i(sp)s(ecial)150 1313 y(to)32 b(other)g(expansions)g -(are)g(preserv)m(ed)f(in)h(the)f(result.)45 b(It)32 b(is)g(strictly)g -(textual.)46 b(Bash)32 b(do)s(es)f(not)h(apply)150 1423 +(c)m(haracters)i(sp)s(ecial)150 873 y(to)32 b(other)g(expansions)g(are) +g(preserv)m(ed)f(in)h(the)f(result.)45 b(It)32 b(is)g(strictly)g +(textual.)46 b(Bash)32 b(do)s(es)f(not)h(apply)150 983 y(an)m(y)27 b(syn)m(tactic)i(in)m(terpretation)g(to)f(the)f(con)m(text) i(of)e(the)g(expansion)g(or)g(the)h(text)g(b)s(et)m(w)m(een)f(the)h -(braces.)150 1532 y(T)-8 b(o)37 b(a)m(v)m(oid)g(con\015icts)g(with)f -(parameter)h(expansion,)g(the)g(string)f(`)p Ft(${)p -Fu(')g(is)g(not)g(considered)g(eligible)i(for)150 1642 -y(brace)31 b(expansion,)f(and)g(inhibits)g(brace)g(expansion)h(un)m -(til)f(the)h(closing)g(`)p Ft(})p Fu('..)275 1780 y(A)e -(correctly-formed)i(brace)f(expansion)f(m)m(ust)h(con)m(tain)h -(unquoted)e(op)s(ening)g(and)g(closing)i(braces,)150 -1889 y(and)h(at)i(least)g(one)f(unquoted)g(comma)g(or)g(a)h(v)-5 +(braces.)275 1119 y(A)h(correctly-formed)i(brace)f(expansion)f(m)m(ust) +h(con)m(tain)h(unquoted)e(op)s(ening)g(and)g(closing)i(braces,)150 +1228 y(and)h(at)i(least)g(one)f(unquoted)g(comma)g(or)g(a)h(v)-5 b(alid)33 b(sequence)g(expression.)48 b(An)m(y)33 b(incorrectly)h -(formed)150 1999 y(brace)d(expansion)f(is)g(left)h(unc)m(hanged.)275 -2136 y(A)25 b Fi({)h Fu(or)f(`)p Ft(,)p Fu(')g(ma)m(y)h(b)s(e)f(quoted) +(formed)150 1338 y(brace)d(expansion)f(is)g(left)h(unc)m(hanged.)275 +1474 y(A)25 b Fi({)h Fu(or)f(`)p Ft(,)p Fu(')g(ma)m(y)h(b)s(e)f(quoted) h(with)f(a)g(bac)m(kslash)h(to)g(prev)m(en)m(t)g(its)g(b)s(eing)f -(considered)g(part)g(of)h(a)g(brace)150 2246 y(expression.)51 +(considered)g(part)g(of)h(a)g(brace)150 1583 y(expression.)51 b(T)-8 b(o)34 b(a)m(v)m(oid)i(con\015icts)e(with)g(parameter)g (expansion,)h(the)f(string)g(`)p Ft(${)p Fu(')g(is)g(not)g(considered) -150 2356 y(eligible)e(for)e(brace)h(expansion.)275 2493 -y(This)f(construct)h(is)g(t)m(ypically)i(used)d(as)h(shorthand)f(when)g -(the)h(common)g(pre\014x)f(of)h(the)g(strings)g(to)150 -2603 y(b)s(e)f(generated)h(is)g(longer)g(than)f(in)g(the)g(ab)s(o)m(v)m -(e)i(example:)390 2740 y Ft(mkdir)46 b(/usr/local/src/bash/{old,n)o -(ew,)o(dist)o(,bug)o(s})275 2878 y Fu(or)390 3016 y Ft(chown)g(root)h +150 1693 y(eligible)e(for)e(brace)h(expansion,)f(and)g(inhibits)g +(brace)h(expansion)f(un)m(til)g(the)h(closing)h(`)p Ft(})p +Fu('..)275 1829 y(This)e(construct)h(is)g(t)m(ypically)i(used)d(as)h +(shorthand)f(when)g(the)h(common)g(pre\014x)f(of)h(the)g(strings)g(to) +150 1939 y(b)s(e)f(generated)h(is)g(longer)g(than)f(in)g(the)g(ab)s(o)m +(v)m(e)i(example:)390 2074 y Ft(mkdir)46 b(/usr/local/src/bash/{old,n)o +(ew,)o(dist)o(,bug)o(s})275 2210 y Fu(or)390 2346 y Ft(chown)g(root)h (/usr/{ucb/{ex,edit},lib/)o({ex?)o(.?*,)o(how)o(_ex})o(})150 -3218 y Fk(3.5.2)63 b(Tilde)41 b(Expansion)150 3365 y +2547 y Fk(3.5.2)63 b(Tilde)41 b(Expansion)150 2694 y Fu(If)29 b(a)h(w)m(ord)g(b)s(egins)f(with)g(an)h(unquoted)f(tilde)h(c)m (haracter)h(\(`)p Ft(~)p Fu('\),)g(all)g(of)f(the)g(c)m(haracters)h(up) -d(to)j(the)f(\014rst)150 3474 y(unquoted)24 b(slash)g(\(or)h(all)h(c)m +d(to)j(the)f(\014rst)150 2804 y(unquoted)24 b(slash)g(\(or)h(all)h(c)m (haracters,)h(if)e(there)g(is)f(no)h(unquoted)e(slash\))i(are)g -(considered)g(a)g Fr(tilde-pre\014x)p Fu(.)150 3584 y(If)38 +(considered)g(a)g Fr(tilde-pre\014x)p Fu(.)150 2913 y(If)38 b(none)g(of)g(the)h(c)m(haracters)g(in)f(the)h(tilde-pre\014x)f(are)h (quoted,)h(the)f(c)m(haracters)h(in)d(the)i(tilde-pre\014x)150 -3694 y(follo)m(wing)28 b(the)g(tilde)f(are)h(treated)g(as)f(a)g(p)s +3023 y(follo)m(wing)28 b(the)g(tilde)f(are)h(treated)g(as)f(a)g(p)s (ossible)g Fr(login)h(name)p Fu(.)39 b(If)27 b(this)g(login)h(name)f -(is)g(the)g(n)m(ull)g(string,)150 3803 y(the)35 b(tilde)g(is)g +(is)g(the)g(n)m(ull)g(string,)150 3132 y(the)35 b(tilde)g(is)g (replaced)g(with)f(the)h(v)-5 b(alue)35 b(of)g(the)g Ft(HOME)e Fu(shell)i(v)-5 b(ariable.)54 b(If)34 b Ft(HOME)g -Fu(is)h(unset,)g(the)g(home)150 3913 y(directory)e(of)g(the)f(user)g +Fu(is)h(unset,)g(the)g(home)150 3242 y(directory)e(of)g(the)f(user)g (executing)i(the)e(shell)h(is)f(substituted)g(instead.)47 -b(Otherwise,)33 b(the)g(tilde-pre\014x)150 4022 y(is)d(replaced)h(with) +b(Otherwise,)33 b(the)g(tilde-pre\014x)150 3352 y(is)d(replaced)h(with) f(the)h(home)f(directory)h(asso)s(ciated)h(with)e(the)h(sp)s(eci\014ed) -e(login)j(name.)275 4160 y(If)g(the)h(tilde-pre\014x)f(is)h(`)p +e(login)j(name.)275 3487 y(If)g(the)h(tilde-pre\014x)f(is)h(`)p Ft(~+)p Fu(',)g(the)g(v)-5 b(alue)33 b(of)g(the)g(shell)g(v)-5 b(ariable)34 b Ft(PWD)d Fu(replaces)j(the)f(tilde-pre\014x.)47 -b(If)150 4270 y(the)31 b(tilde-pre\014x)f(is)g(`)p Ft(~-)p +b(If)150 3597 y(the)31 b(tilde-pre\014x)f(is)g(`)p Ft(~-)p Fu(',)h(the)f(v)-5 b(alue)31 b(of)g(the)f(shell)h(v)-5 b(ariable)31 b Ft(OLDPWD)p Fu(,)e(if)h(it)h(is)g(set,)g(is)f -(substituted.)275 4407 y(If)f(the)h(c)m(haracters)h(follo)m(wing)h(the) +(substituted.)275 3733 y(If)f(the)h(c)m(haracters)h(follo)m(wing)h(the) e(tilde)g(in)g(the)g(tilde-pre\014x)g(consist)g(of)g(a)h(n)m(um)m(b)s -(er)d Fr(N)p Fu(,)j(optionally)150 4517 y(pre\014xed)22 +(er)d Fr(N)p Fu(,)j(optionally)150 3843 y(pre\014xed)22 b(b)m(y)h(a)h(`)p Ft(+)p Fu(')f(or)h(a)f(`)p Ft(-)p Fu(',)j(the)d (tilde-pre\014x)g(is)h(replaced)f(with)g(the)h(corresp)s(onding)e -(elemen)m(t)j(from)e(the)150 4626 y(directory)36 b(stac)m(k,)i(as)e(it) +(elemen)m(t)j(from)e(the)150 3952 y(directory)36 b(stac)m(k,)i(as)e(it) g(w)m(ould)f(b)s(e)g(displa)m(y)m(ed)h(b)m(y)g(the)f Ft(dirs)g Fu(builtin)g(in)m(v)m(ok)m(ed)i(with)e(the)g(c)m(haracters) -150 4736 y(follo)m(wing)40 b(tilde)f(in)g(the)f(tilde-pre\014x)h(as)g +150 4062 y(follo)m(wing)40 b(tilde)f(in)g(the)f(tilde-pre\014x)h(as)g (an)f(argumen)m(t)h(\(see)h(Section)f(6.8)h([The)e(Directory)i(Stac)m -(k],)150 4846 y(page)c(95\).)57 b(If)35 b(the)g(tilde-pre\014x,)i(sans) +(k],)150 4171 y(page)c(95\).)57 b(If)35 b(the)g(tilde-pre\014x,)i(sans) e(the)h(tilde,)h(consists)f(of)g(a)f(n)m(um)m(b)s(er)f(without)i(a)f -(leading)h(`)p Ft(+)p Fu(')g(or)150 4955 y(`)p Ft(-)p -Fu(',)31 b(`)p Ft(+)p Fu(')f(is)h(assumed.)275 5093 y(If)e(the)i(login) +(leading)h(`)p Ft(+)p Fu(')g(or)150 4281 y(`)p Ft(-)p +Fu(',)31 b(`)p Ft(+)p Fu(')f(is)h(assumed.)275 4417 y(If)e(the)i(login) g(name)g(is)f(in)m(v)-5 b(alid,)31 b(or)g(the)f(tilde)h(expansion)f (fails,)i(the)e(w)m(ord)g(is)h(left)g(unc)m(hanged.)275 -5230 y(Eac)m(h)38 b(v)-5 b(ariable)38 b(assignmen)m(t)h(is)e(c)m(hec)m +4553 y(Eac)m(h)38 b(v)-5 b(ariable)38 b(assignmen)m(t)h(is)e(c)m(hec)m (k)m(ed)j(for)d(unquoted)g(tilde-pre\014xes)h(immediately)g(follo)m -(wing)150 5340 y(a)d(`)p Ft(:)p Fu(')g(or)g(the)g(\014rst)f(`)p +(wing)150 4662 y(a)d(`)p Ft(:)p Fu(')g(or)g(the)g(\014rst)f(`)p Ft(=)p Fu('.)54 b(In)34 b(these)h(cases,)i(tilde)e(expansion)g(is)g (also)h(p)s(erformed.)52 b(Consequen)m(tly)-8 b(,)37 -b(one)p eop end +b(one)150 4772 y(ma)m(y)29 b(use)e(\014lenames)h(with)g(tildes)g(in)g +(assignmen)m(ts)g(to)h Ft(PATH)p Fu(,)f Ft(MAILPATH)p +Fu(,)e(and)h Ft(CDPATH)p Fu(,)g(and)h(the)g(shell)150 +4882 y(assigns)j(the)f(expanded)g(v)-5 b(alue.)275 5018 +y(The)29 b(follo)m(wing)j(table)g(sho)m(ws)e(ho)m(w)g(Bash)h(treats)g +(unquoted)e(tilde-pre\014xes:)150 5179 y Ft(~)432 b Fu(The)30 +b(v)-5 b(alue)31 b(of)f Ft($HOME)150 5340 y(~/foo)240 +b($HOME/foo)p eop end %%Page: 24 30 TeXDict begin 24 29 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(24)150 299 -y(ma)m(y)29 b(use)e(\014lenames)h(with)g(tildes)g(in)g(assignmen)m(ts)g -(to)h Ft(PATH)p Fu(,)f Ft(MAILPATH)p Fu(,)e(and)h Ft(CDPATH)p -Fu(,)g(and)h(the)g(shell)150 408 y(assigns)j(the)f(expanded)g(v)-5 -b(alue.)275 556 y(The)29 b(follo)m(wing)j(table)g(sho)m(ws)e(ho)m(w)g -(Bash)h(treats)g(unquoted)e(tilde-pre\014xes:)150 735 -y Ft(~)432 b Fu(The)30 b(v)-5 b(alue)31 b(of)f Ft($HOME)150 -907 y(~/foo)240 b($HOME/foo)150 1080 y(~fred/foo)630 -1189 y Fu(The)30 b(sub)s(directory)f Ft(foo)h Fu(of)g(the)h(home)f -(directory)h(of)g(the)f(user)g Ft(fred)150 1362 y(~+/foo)192 -b($PWD/foo)150 1534 y(~-/foo)g(${OLDPWD-'~-'}/foo)150 -1707 y(~)p Fj(N)384 b Fu(The)30 b(string)g(that)h(w)m(ould)f(b)s(e)g -(displa)m(y)m(ed)h(b)m(y)f(`)p Ft(dirs)g(+)p Fj(N)p Fu(')150 -1879 y Ft(~+)p Fj(N)336 b Fu(The)30 b(string)g(that)h(w)m(ould)f(b)s(e) -g(displa)m(y)m(ed)h(b)m(y)f(`)p Ft(dirs)g(+)p Fj(N)p -Fu(')150 2051 y Ft(~-)p Fj(N)336 b Fu(The)30 b(string)g(that)h(w)m -(ould)f(b)s(e)g(displa)m(y)m(ed)h(b)m(y)f(`)p Ft(dirs)g(-)p -Fj(N)p Fu(')150 2264 y Fk(3.5.3)63 b(Shell)41 b(P)m(arameter)f -(Expansion)150 2411 y Fu(The)g(`)p Ft($)p Fu(')h(c)m(haracter)i(in)m -(tro)s(duces)d(parameter)h(expansion,)j(command)d(substitution,)i(or)e -(arithmetic)150 2520 y(expansion.)d(The)22 b(parameter)h(name)f(or)g -(sym)m(b)s(ol)h(to)g(b)s(e)e(expanded)h(ma)m(y)h(b)s(e)f(enclosed)h(in) -f(braces,)i(whic)m(h)150 2630 y(are)31 b(optional)g(but)f(serv)m(e)h -(to)h(protect)f(the)g(v)-5 b(ariable)31 b(to)g(b)s(e)f(expanded)g(from) -g(c)m(haracters)i(immediately)150 2739 y(follo)m(wing)g(it)f(whic)m(h)f -(could)g(b)s(e)g(in)m(terpreted)h(as)f(part)h(of)f(the)h(name.)275 -2887 y(When)44 b(braces)i(are)f(used,)j(the)e(matc)m(hing)g(ending)f -(brace)g(is)g(the)g(\014rst)g(`)p Ft(})p Fu(')g(not)g(escap)s(ed)h(b)m -(y)f(a)150 2997 y(bac)m(kslash)40 b(or)f(within)g(a)g(quoted)g(string,) -j(and)c(not)i(within)e(an)h(em)m(b)s(edded)f(arithmetic)j(expansion,) -150 3106 y(command)30 b(substitution,)g(or)h(parameter)g(expansion.)275 -3254 y(The)40 b(basic)i(form)f(of)g(parameter)h(expansion)f(is)h($)p +y Ft(~fred/foo)630 408 y Fu(The)30 b(sub)s(directory)f +Ft(foo)h Fu(of)g(the)h(home)f(directory)h(of)g(the)f(user)g +Ft(fred)150 585 y(~+/foo)192 b($PWD/foo)150 762 y(~-/foo)g +(${OLDPWD-'~-'}/foo)150 939 y(~)p Fj(N)384 b Fu(The)30 +b(string)g(that)h(w)m(ould)f(b)s(e)g(displa)m(y)m(ed)h(b)m(y)f(`)p +Ft(dirs)g(+)p Fj(N)p Fu(')150 1115 y Ft(~+)p Fj(N)336 +b Fu(The)30 b(string)g(that)h(w)m(ould)f(b)s(e)g(displa)m(y)m(ed)h(b)m +(y)f(`)p Ft(dirs)g(+)p Fj(N)p Fu(')150 1292 y Ft(~-)p +Fj(N)336 b Fu(The)30 b(string)g(that)h(w)m(ould)f(b)s(e)g(displa)m(y)m +(ed)h(b)m(y)f(`)p Ft(dirs)g(-)p Fj(N)p Fu(')150 1509 +y Fk(3.5.3)63 b(Shell)41 b(P)m(arameter)f(Expansion)150 +1656 y Fu(The)g(`)p Ft($)p Fu(')h(c)m(haracter)i(in)m(tro)s(duces)d +(parameter)h(expansion,)j(command)d(substitution,)i(or)e(arithmetic)150 +1765 y(expansion.)d(The)22 b(parameter)h(name)f(or)g(sym)m(b)s(ol)h(to) +g(b)s(e)e(expanded)h(ma)m(y)h(b)s(e)f(enclosed)h(in)f(braces,)i(whic)m +(h)150 1875 y(are)31 b(optional)g(but)f(serv)m(e)h(to)h(protect)f(the)g +(v)-5 b(ariable)31 b(to)g(b)s(e)f(expanded)g(from)g(c)m(haracters)i +(immediately)150 1984 y(follo)m(wing)g(it)f(whic)m(h)f(could)g(b)s(e)g +(in)m(terpreted)h(as)f(part)h(of)f(the)h(name.)275 2136 +y(When)44 b(braces)i(are)f(used,)j(the)e(matc)m(hing)g(ending)f(brace)g +(is)g(the)g(\014rst)g(`)p Ft(})p Fu(')g(not)g(escap)s(ed)h(b)m(y)f(a) +150 2246 y(bac)m(kslash)40 b(or)f(within)g(a)g(quoted)g(string,)j(and)c +(not)i(within)e(an)h(em)m(b)s(edded)f(arithmetic)j(expansion,)150 +2355 y(command)30 b(substitution,)g(or)h(parameter)g(expansion.)275 +2507 y(The)40 b(basic)i(form)f(of)g(parameter)h(expansion)f(is)h($)p Fi({)p Fr(parameter)7 b Fi(})p Fu(.)74 b(The)41 b(v)-5 -b(alue)42 b(of)g Fr(parameter)48 b Fu(is)150 3363 y(substituted.)43 +b(alue)42 b(of)g Fr(parameter)48 b Fu(is)150 2617 y(substituted.)43 b(The)31 b Fr(parameter)39 b Fu(is)31 b(a)h(shell)f(parameter)h(as)g (describ)s(ed)e(ab)s(o)m(v)m(e)j(\(see)f(Section)g(3.4)h([Shell)150 -3473 y(P)m(arameters],)e(page)f(19\))h(or)e(an)g(arra)m(y)h(reference)f +2726 y(P)m(arameters],)e(page)f(19\))h(or)e(an)g(arra)m(y)h(reference)f (\(see)i(Section)f(6.7)g([Arra)m(ys],)g(page)g(93\).)42 -b(The)29 b(braces)150 3582 y(are)j(required)g(when)f +b(The)29 b(braces)150 2836 y(are)j(required)g(when)f Fr(parameter)39 b Fu(is)32 b(a)h(p)s(ositional)f(parameter)h(with)f -(more)g(than)g(one)g(digit,)i(or)e(when)150 3692 y Fr(parameter)37 +(more)g(than)g(one)g(digit,)i(or)e(when)150 2946 y Fr(parameter)37 b Fu(is)31 b(follo)m(w)m(ed)h(b)m(y)e(a)h(c)m(haracter)h(that)f(is)f (not)h(to)g(b)s(e)f(in)m(terpreted)g(as)h(part)f(of)h(its)f(name.)275 -3839 y(If)k(the)h(\014rst)f(c)m(haracter)i(of)f Fr(parameter)42 +3097 y(If)k(the)h(\014rst)f(c)m(haracter)i(of)f Fr(parameter)42 b Fu(is)35 b(an)g(exclamation)i(p)s(oin)m(t)e(\(!\),)i(and)d -Fr(parameter)42 b Fu(is)34 b(not)i(a)150 3949 y Fr(nameref)p +Fr(parameter)42 b Fu(is)34 b(not)i(a)150 3207 y Fr(nameref)p Fu(,)i(it)f(in)m(tro)s(duces)f(a)h(lev)m(el)h(of)f(v)-5 b(ariable)37 b(indirection.)59 b(Bash)37 b(uses)f(the)g(v)-5 -b(alue)37 b(of)g(the)f(v)-5 b(ariable)150 4059 y(formed)22 +b(alue)37 b(of)g(the)f(v)-5 b(ariable)150 3317 y(formed)22 b(from)f(the)h(rest)h(of)f Fr(parameter)29 b Fu(as)22 b(the)g(name)h(of)f(the)g(v)-5 b(ariable;)26 b(this)c(v)-5 -b(ariable)23 b(is)f(then)g(expanded)150 4168 y(and)34 +b(ariable)23 b(is)f(then)g(expanded)150 3426 y(and)34 b(that)h(v)-5 b(alue)35 b(is)g(used)f(in)g(the)h(rest)g(of)g(the)g (substitution,)g(rather)g(than)f(the)h(v)-5 b(alue)35 -b(of)g Fr(parameter)150 4278 y Fu(itself.)52 b(This)33 -b(is)g(kno)m(wn)h(as)g Ft(indirect)28 b(expansion)p Fu(.)48 -b(If)33 b Fr(parameter)41 b Fu(is)34 b(a)g(nameref,)h(this)e(expands)g -(to)150 4387 y(the)d(name)g(of)g(the)h(v)-5 b(ariable)30 -b(referenced)g(b)m(y)g Fr(parameter)37 b Fu(instead)31 -b(of)f(p)s(erforming)f(the)h(complete)h(indi-)150 4497 -y(rect)i(expansion.)46 b(The)32 b(exceptions)i(to)f(this)f(are)h(the)f -(expansions)g(of)h($)p Fi({)p Fu(!)p Fr(pre\014x)6 b -Fu(*)p Fi(})33 b Fu(and)f($)p Fi({)p Fu(!)p Fr(name)5 -b Fu([@])p Fi(})150 4607 y Fu(describ)s(ed)28 b(b)s(elo)m(w.)41 -b(The)28 b(exclamation)j(p)s(oin)m(t)f(m)m(ust)f(immediately)h(follo)m -(w)g(the)g(left)f(brace)h(in)f(order)f(to)150 4716 y(in)m(tro)s(duce)i -(indirection.)275 4864 y(In)39 b(eac)m(h)i(of)g(the)f(cases)h(b)s(elo)m -(w,)i Fr(w)m(ord)h Fu(is)c(sub)5 b(ject)40 b(to)h(tilde)f(expansion,)j -(parameter)e(expansion,)150 4973 y(command)30 b(substitution,)g(and)g -(arithmetic)i(expansion.)275 5121 y(When)h(not)h(p)s(erforming)e +b(of)g Fr(parameter)150 3536 y Fu(itself.)74 b(This)41 +b(is)g(kno)m(wn)g(as)g Ft(indirect)28 b(expansion)p Fu(.)71 +b(The)41 b(v)-5 b(alue)42 b(is)f(sub)5 b(ject)41 b(to)h(tilde)g +(expansion,)150 3645 y(parameter)e(expansion,)i(command)d +(substitution,)j(and)d(arithmetic)h(expansion.)68 b(If)39 +b Fr(parameter)47 b Fu(is)150 3755 y(a)40 b(nameref,)h(this)e(expands)g +(to)g(the)h(name)f(of)g(the)h(v)-5 b(ariable)40 b(referenced)f(b)m(y)g +Fr(parameter)46 b Fu(instead)40 b(of)150 3865 y(p)s(erforming)32 +b(the)i(complete)h(indirect)f(expansion.)51 b(The)33 +b(exceptions)i(to)f(this)g(are)g(the)f(expansions)h(of)150 +3974 y($)p Fi({)p Fu(!)p Fr(pre\014x)6 b Fu(*)p Fi(})39 +b Fu(and)f($)p Fi({)p Fu(!)p Fr(name)5 b Fu([@])p Fi(})40 +b Fu(describ)s(ed)d(b)s(elo)m(w.)64 b(The)37 b(exclamation)k(p)s(oin)m +(t)d(m)m(ust)g(immediately)150 4084 y(follo)m(w)32 b(the)e(left)h +(brace)g(in)f(order)g(to)h(in)m(tro)s(duce)f(indirection.)275 +4236 y(In)39 b(eac)m(h)i(of)g(the)f(cases)h(b)s(elo)m(w,)i +Fr(w)m(ord)h Fu(is)c(sub)5 b(ject)40 b(to)h(tilde)f(expansion,)j +(parameter)e(expansion,)150 4345 y(command)30 b(substitution,)g(and)g +(arithmetic)i(expansion.)275 4497 y(When)h(not)h(p)s(erforming)e (substring)h(expansion,)h(using)g(the)f(form)h(describ)s(ed)e(b)s(elo)m -(w)i(\(e.g.,)i(`)p Ft(:-)p Fu('\),)150 5230 y(Bash)d(tests)h(for)e(a)i +(w)i(\(e.g.,)i(`)p Ft(:-)p Fu('\),)150 4607 y(Bash)d(tests)h(for)e(a)i (parameter)f(that)h(is)e(unset)h(or)g(n)m(ull.)48 b(Omitting)33 -b(the)h(colon)f(results)g(in)g(a)g(test)h(only)150 5340 +b(the)h(colon)f(results)g(in)g(a)g(test)h(only)150 4716 y(for)c(a)i(parameter)f(that)g(is)g(unset.)41 b(Put)31 b(another)f(w)m(a)m(y)-8 b(,)33 b(if)e(the)f(colon)i(is)f(included,)f -(the)h(op)s(erator)g(tests)p eop end +(the)h(op)s(erator)g(tests)150 4826 y(for)36 b(b)s(oth)g +Fr(parameter)7 b Fu('s)37 b(existence)h(and)e(that)i(its)f(v)-5 +b(alue)37 b(is)g(not)f(n)m(ull;)k(if)d(the)g(colon)h(is)e(omitted,)k +(the)150 4935 y(op)s(erator)31 b(tests)g(only)f(for)g(existence.)150 +5121 y Ft(${)p Fj(parameter)p Ft(:)p Fq(\000)p Fj(word)p +Ft(})630 5230 y Fu(If)g Fr(parameter)37 b Fu(is)30 b(unset)g(or)h(n)m +(ull,)f(the)h(expansion)f(of)g Fr(w)m(ord)k Fu(is)c(substituted.)40 +b(Otherwise,)630 5340 y(the)31 b(v)-5 b(alue)30 b(of)h +Fr(parameter)37 b Fu(is)31 b(substituted.)p eop end %%Page: 25 31 TeXDict begin 25 30 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(25)150 299 -y(for)36 b(b)s(oth)g Fr(parameter)7 b Fu('s)37 b(existence)h(and)e -(that)i(its)f(v)-5 b(alue)37 b(is)g(not)f(n)m(ull;)k(if)d(the)g(colon)h -(is)e(omitted,)k(the)150 408 y(op)s(erator)31 b(tests)g(only)f(for)g -(existence.)150 569 y Ft(${)p Fj(parameter)p Ft(:)p Fq(\000)p -Fj(word)p Ft(})630 679 y Fu(If)g Fr(parameter)37 b Fu(is)30 -b(unset)g(or)h(n)m(ull,)f(the)h(expansion)f(of)g Fr(w)m(ord)k -Fu(is)c(substituted.)40 b(Otherwise,)630 788 y(the)31 -b(v)-5 b(alue)30 b(of)h Fr(parameter)37 b Fu(is)31 b(substituted.)150 -948 y Ft(${)p Fj(parameter)p Ft(:=)p Fj(word)p Ft(})630 -1058 y Fu(If)i Fr(parameter)40 b Fu(is)33 b(unset)f(or)h(n)m(ull,)h -(the)f(expansion)g(of)g Fr(w)m(ord)j Fu(is)d(assigned)g(to)h -Fr(parameter)p Fu(.)630 1167 y(The)c(v)-5 b(alue)32 b(of)f +y Ft(${)p Fj(parameter)p Ft(:=)p Fj(word)p Ft(})630 408 +y Fu(If)33 b Fr(parameter)40 b Fu(is)33 b(unset)f(or)h(n)m(ull,)h(the)f +(expansion)g(of)g Fr(w)m(ord)j Fu(is)d(assigned)g(to)h +Fr(parameter)p Fu(.)630 518 y(The)c(v)-5 b(alue)32 b(of)f Fr(parameter)38 b Fu(is)31 b(then)g(substituted.)42 b(P)m(ositional)33 -b(parameters)e(and)f(sp)s(ecial)630 1277 y(parameters)h(ma)m(y)g(not)f +b(parameters)e(and)f(sp)s(ecial)630 628 y(parameters)h(ma)m(y)g(not)f (b)s(e)g(assigned)h(to)g(in)f(this)g(w)m(a)m(y)-8 b(.)150 -1437 y Ft(${)p Fj(parameter)p Ft(:?)p Fj(word)p Ft(})630 -1547 y Fu(If)26 b Fr(parameter)33 b Fu(is)26 b(n)m(ull)g(or)g(unset,)h +786 y Ft(${)p Fj(parameter)p Ft(:?)p Fj(word)p Ft(})630 +896 y Fu(If)26 b Fr(parameter)33 b Fu(is)26 b(n)m(ull)g(or)g(unset,)h (the)f(expansion)g(of)g Fr(w)m(ord)k Fu(\(or)c(a)h(message)g(to)g(that) -f(e\013ect)630 1656 y(if)i Fr(w)m(ord)j Fu(is)d(not)g(presen)m(t\))h +f(e\013ect)630 1005 y(if)i Fr(w)m(ord)j Fu(is)d(not)g(presen)m(t\))h (is)f(written)g(to)h(the)f(standard)f(error)h(and)f(the)h(shell,)h(if)f -(it)h(is)f(not)630 1766 y(in)m(teractiv)m(e,)33 b(exits.)42 +(it)h(is)f(not)630 1115 y(in)m(teractiv)m(e,)33 b(exits.)42 b(Otherwise,)30 b(the)h(v)-5 b(alue)31 b(of)f Fr(parameter)38 -b Fu(is)30 b(substituted.)150 1926 y Ft(${)p Fj(parameter)p -Ft(:+)p Fj(word)p Ft(})630 2036 y Fu(If)35 b Fr(parameter)42 +b Fu(is)30 b(substituted.)150 1273 y Ft(${)p Fj(parameter)p +Ft(:+)p Fj(word)p Ft(})630 1383 y Fu(If)35 b Fr(parameter)42 b Fu(is)36 b(n)m(ull)f(or)h(unset,)g(nothing)g(is)f(substituted,)i -(otherwise)e(the)h(expansion)630 2145 y(of)31 b Fr(w)m(ord)i -Fu(is)e(substituted.)150 2305 y Ft(${)p Fj(parameter)p -Ft(:)p Fj(offset)p Ft(})150 2415 y(${)p Fj(parameter)p -Ft(:)p Fj(offset)p Ft(:)p Fj(lengt)o(h)p Ft(})630 2524 +(otherwise)e(the)h(expansion)630 1492 y(of)31 b Fr(w)m(ord)i +Fu(is)e(substituted.)150 1650 y Ft(${)p Fj(parameter)p +Ft(:)p Fj(offset)p Ft(})150 1760 y(${)p Fj(parameter)p +Ft(:)p Fj(offset)p Ft(:)p Fj(lengt)o(h)p Ft(})630 1870 y Fu(This)f(is)h(referred)f(to)h(as)g(Substring)f(Expansion.)41 b(It)31 b(expands)f(to)h(up)f(to)h Fr(length)g Fu(c)m(harac-)630 -2634 y(ters)k(of)g(the)h(v)-5 b(alue)35 b(of)g Fr(parameter)42 +1979 y(ters)k(of)g(the)h(v)-5 b(alue)35 b(of)g Fr(parameter)42 b Fu(starting)36 b(at)g(the)f(c)m(haracter)i(sp)s(eci\014ed)d(b)m(y)h -Fr(o\013set)p Fu(.)55 b(If)630 2744 y Fr(parameter)32 +Fr(o\013set)p Fu(.)55 b(If)630 2089 y Fr(parameter)32 b Fu(is)26 b(`)p Ft(@)p Fu(',)g(an)f(indexed)g(arra)m(y)h(subscripted)e (b)m(y)h(`)p Ft(@)p Fu(')g(or)h(`)p Ft(*)p Fu(',)g(or)g(an)f(asso)s -(ciativ)m(e)j(ar-)630 2853 y(ra)m(y)g(name,)h(the)f(results)g(di\013er) +(ciativ)m(e)j(ar-)630 2198 y(ra)m(y)g(name,)h(the)f(results)g(di\013er) g(as)g(describ)s(ed)f(b)s(elo)m(w.)40 b(If)28 b Fr(length)g -Fu(is)g(omitted,)i(it)f(expands)630 2963 y(to)e(the)g(substring)f(of)g +Fu(is)g(omitted,)i(it)f(expands)630 2308 y(to)e(the)g(substring)f(of)g (the)h(v)-5 b(alue)27 b(of)g Fr(parameter)33 b Fu(starting)28 b(at)f(the)g(c)m(haracter)h(sp)s(eci\014ed)e(b)m(y)630 -3072 y Fr(o\013set)37 b Fu(and)d(extending)g(to)h(the)f(end)g(of)g(the) +2418 y Fr(o\013set)37 b Fu(and)d(extending)g(to)h(the)f(end)g(of)g(the) g(v)-5 b(alue.)53 b Fr(length)34 b Fu(and)g Fr(o\013set)j -Fu(are)e(arithmetic)630 3182 y(expressions)30 b(\(see)h(Section)g(6.5)h -([Shell)e(Arithmetic],)i(page)f(91\).)630 3317 y(If)39 +Fu(are)e(arithmetic)630 2527 y(expressions)30 b(\(see)h(Section)g(6.5)h +([Shell)e(Arithmetic],)i(page)f(91\).)630 2661 y(If)39 b Fr(o\013set)k Fu(ev)-5 b(aluates)41 b(to)f(a)g(n)m(um)m(b)s(er)f (less)h(than)f(zero,)k(the)d(v)-5 b(alue)40 b(is)g(used)e(as)i(an)g -(o\013set)630 3426 y(in)33 b(c)m(haracters)i(from)f(the)f(end)g(of)h +(o\013set)630 2771 y(in)33 b(c)m(haracters)i(from)f(the)f(end)g(of)h (the)g(v)-5 b(alue)34 b(of)g Fr(parameter)p Fu(.)51 b(If)33 -b Fr(length)h Fu(ev)-5 b(aluates)35 b(to)g(a)630 3536 +b Fr(length)h Fu(ev)-5 b(aluates)35 b(to)g(a)630 2880 y(n)m(um)m(b)s(er)23 b(less)h(than)g(zero,)j(it)d(is)h(in)m(terpreted)f (as)g(an)h(o\013set)g(in)f(c)m(haracters)h(from)f(the)g(end)g(of)630 -3646 y(the)31 b(v)-5 b(alue)31 b(of)g Fr(parameter)38 +2990 y(the)31 b(v)-5 b(alue)31 b(of)g Fr(parameter)38 b Fu(rather)30 b(than)h(a)g(n)m(um)m(b)s(er)f(of)g(c)m(haracters,)j -(and)d(the)h(expansion)630 3755 y(is)39 b(the)g(c)m(haracters)i(b)s(et) +(and)d(the)h(expansion)630 3099 y(is)39 b(the)g(c)m(haracters)i(b)s(et) m(w)m(een)f Fr(o\013set)i Fu(and)c(that)i(result.)67 -b(Note)40 b(that)g(a)g(negativ)m(e)h(o\013set)630 3865 +b(Note)40 b(that)g(a)g(negativ)m(e)h(o\013set)630 3209 y(m)m(ust)27 b(b)s(e)g(separated)g(from)g(the)g(colon)i(b)m(y)e(at)h (least)g(one)f(space)h(to)g(a)m(v)m(oid)h(b)s(eing)e(confused)630 -3974 y(with)j(the)h(`)p Ft(:-)p Fu(')f(expansion.)630 -4109 y(Here)43 b(are)g(some)f(examples)h(illustrating)g(substring)f -(expansion)g(on)g(parameters)h(and)630 4219 y(subscripted)29 -b(arra)m(ys:)630 4354 y Ft($)47 b(string=01234567890abcdefgh)630 -4463 y($)g(echo)g(${string:7})630 4573 y(7890abcdefgh)630 -4682 y($)g(echo)g(${string:7:0})630 4902 y($)g(echo)g(${string:7:2})630 -5011 y(78)630 5121 y($)g(echo)g(${string:7:-2})630 5230 -y(7890abcdef)630 5340 y($)g(echo)g(${string:)e(-7})p -eop end +3319 y(with)j(the)h(`)p Ft(:-)p Fu(')f(expansion.)630 +3453 y(Here)43 b(are)g(some)f(examples)h(illustrating)g(substring)f +(expansion)g(on)g(parameters)h(and)630 3562 y(subscripted)29 +b(arra)m(ys:)630 3696 y Ft($)47 b(string=01234567890abcdefgh)630 +3806 y($)g(echo)g(${string:7})630 3915 y(7890abcdefgh)630 +4025 y($)g(echo)g(${string:7:0})630 4244 y($)g(echo)g(${string:7:2})630 +4354 y(78)630 4463 y($)g(echo)g(${string:7:-2})630 4573 +y(7890abcdef)630 4682 y($)g(echo)g(${string:)e(-7})630 +4792 y(bcdefgh)630 4902 y($)i(echo)g(${string:)e(-7:0})630 +5121 y($)i(echo)g(${string:)e(-7:2})630 5230 y(bc)630 +5340 y($)i(echo)g(${string:)e(-7:-2})p eop end %%Page: 26 32 TeXDict begin 26 31 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(26)630 299 -y Ft(bcdefgh)630 408 y($)47 b(echo)g(${string:)e(-7:0})630 -628 y($)i(echo)g(${string:)e(-7:2})630 737 y(bc)630 847 -y($)i(echo)g(${string:)e(-7:-2})630 956 y(bcdef)630 1066 -y($)i(set)g(--)h(01234567890abcdefgh)630 1176 y($)f(echo)g(${1:7})630 -1285 y(7890abcdefgh)630 1395 y($)g(echo)g(${1:7:0})630 -1614 y($)g(echo)g(${1:7:2})630 1724 y(78)630 1833 y($)g(echo)g -(${1:7:-2})630 1943 y(7890abcdef)630 2052 y($)g(echo)g(${1:)g(-7})630 -2162 y(bcdefgh)630 2271 y($)g(echo)g(${1:)g(-7:0})630 -2491 y($)g(echo)g(${1:)g(-7:2})630 2600 y(bc)630 2710 -y($)g(echo)g(${1:)g(-7:-2})630 2819 y(bcdef)630 2929 -y($)g(array[0]=01234567890abcdef)o(gh)630 3039 y($)g(echo)g -(${array[0]:7})630 3148 y(7890abcdefgh)630 3258 y($)g(echo)g -(${array[0]:7:0})630 3477 y($)g(echo)g(${array[0]:7:2})630 -3587 y(78)630 3696 y($)g(echo)g(${array[0]:7:-2})630 -3806 y(7890abcdef)630 3915 y($)g(echo)g(${array[0]:)e(-7})630 -4025 y(bcdefgh)630 4134 y($)i(echo)g(${array[0]:)e(-7:0})630 -4354 y($)i(echo)g(${array[0]:)e(-7:2})630 4463 y(bc)630 -4573 y($)i(echo)g(${array[0]:)e(-7:-2})630 4682 y(bcdef)630 -5011 y Fu(If)22 b Fr(parameter)30 b Fu(is)23 b(`)p Ft(@)p +y Ft(bcdef)630 408 y($)47 b(set)g(--)h(01234567890abcdefgh)630 +518 y($)f(echo)g(${1:7})630 628 y(7890abcdefgh)630 737 +y($)g(echo)g(${1:7:0})630 956 y($)g(echo)g(${1:7:2})630 +1066 y(78)630 1176 y($)g(echo)g(${1:7:-2})630 1285 y(7890abcdef)630 +1395 y($)g(echo)g(${1:)g(-7})630 1504 y(bcdefgh)630 1614 +y($)g(echo)g(${1:)g(-7:0})630 1833 y($)g(echo)g(${1:)g(-7:2})630 +1943 y(bc)630 2052 y($)g(echo)g(${1:)g(-7:-2})630 2162 +y(bcdef)630 2271 y($)g(array[0]=01234567890abcdef)o(gh)630 +2381 y($)g(echo)g(${array[0]:7})630 2491 y(7890abcdefgh)630 +2600 y($)g(echo)g(${array[0]:7:0})630 2819 y($)g(echo)g +(${array[0]:7:2})630 2929 y(78)630 3039 y($)g(echo)g(${array[0]:7:-2}) +630 3148 y(7890abcdef)630 3258 y($)g(echo)g(${array[0]:)e(-7})630 +3367 y(bcdefgh)630 3477 y($)i(echo)g(${array[0]:)e(-7:0})630 +3696 y($)i(echo)g(${array[0]:)e(-7:2})630 3806 y(bc)630 +3915 y($)i(echo)g(${array[0]:)e(-7:-2})630 4025 y(bcdef)630 +4171 y Fu(If)22 b Fr(parameter)30 b Fu(is)23 b(`)p Ft(@)p Fu(',)i(the)e(result)g(is)g Fr(length)h Fu(p)s(ositional)f(parameters)h -(b)s(eginning)e(at)i Fr(o\013set)p Fu(.)630 5121 y(A)36 +(b)s(eginning)e(at)i Fr(o\013set)p Fu(.)630 4281 y(A)36 b(negativ)m(e)j Fr(o\013set)g Fu(is)e(tak)m(en)g(relativ)m(e)i(to)e (one)g(greater)g(than)f(the)h(greatest)h(p)s(ositional)630 -5230 y(parameter,)29 b(so)f(an)g(o\013set)h(of)f(-1)g(ev)-5 +4390 y(parameter,)29 b(so)f(an)g(o\013set)h(of)f(-1)g(ev)-5 b(aluates)30 b(to)e(the)g(last)h(p)s(ositional)g(parameter.)40 -b(It)28 b(is)g(an)630 5340 y(expansion)i(error)g(if)h +b(It)28 b(is)g(an)630 4500 y(expansion)i(error)g(if)h Fr(length)f Fu(ev)-5 b(aluates)32 b(to)f(a)g(n)m(um)m(b)s(er)e(less)i -(than)f(zero.)p eop end +(than)f(zero.)630 4646 y(The)i(follo)m(wing)i(examples)f(illustrate)h +(substring)d(expansion)i(using)f(p)s(ositional)h(param-)630 +4755 y(eters:)630 4902 y Ft($)47 b(set)g(--)h(1)f(2)g(3)h(4)f(5)h(6)f +(7)h(8)f(9)h(0)f(a)h(b)f(c)g(d)h(e)f(f)h(g)f(h)630 5011 +y($)g(echo)g(${@:7})630 5121 y(7)g(8)h(9)f(0)h(a)f(b)h(c)f(d)h(e)f(f)h +(g)f(h)630 5230 y($)g(echo)g(${@:7:0})p eop end %%Page: 27 33 TeXDict begin 27 32 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(27)630 299 -y(The)32 b(follo)m(wing)i(examples)f(illustrate)h(substring)d -(expansion)i(using)f(p)s(ositional)h(param-)630 408 y(eters:)630 -573 y Ft($)47 b(set)g(--)h(1)f(2)g(3)h(4)f(5)h(6)f(7)h(8)f(9)h(0)f(a)h -(b)f(c)g(d)h(e)f(f)h(g)f(h)630 682 y($)g(echo)g(${@:7})630 -792 y(7)g(8)h(9)f(0)h(a)f(b)h(c)f(d)h(e)f(f)h(g)f(h)630 -902 y($)g(echo)g(${@:7:0})630 1121 y($)g(echo)g(${@:7:2})630 -1230 y(7)g(8)630 1340 y($)g(echo)g(${@:7:-2})630 1450 -y(bash:)f(-2:)h(substring)f(expression)f(<)i(0)630 1559 -y($)g(echo)g(${@:)g(-7:2})630 1669 y(b)g(c)630 1778 y($)g(echo)g -(${@:0})630 1888 y(./bash)f(1)i(2)f(3)g(4)h(5)f(6)h(7)f(8)h(9)f(0)h(a)f -(b)h(c)f(d)g(e)h(f)f(g)h(h)630 1998 y($)f(echo)g(${@:0:2})630 -2107 y(./bash)f(1)630 2217 y($)h(echo)g(${@:)g(-7:0})630 -2491 y Fu(If)36 b Fr(parameter)43 b Fu(is)36 b(an)g(indexed)g(arra)m(y) +y Ft($)47 b(echo)g(${@:7:2})630 408 y(7)g(8)630 518 y($)g(echo)g +(${@:7:-2})630 628 y(bash:)f(-2:)h(substring)f(expression)f(<)i(0)630 +737 y($)g(echo)g(${@:)g(-7:2})630 847 y(b)g(c)630 956 +y($)g(echo)g(${@:0})630 1066 y(./bash)f(1)i(2)f(3)g(4)h(5)f(6)h(7)f(8)h +(9)f(0)h(a)f(b)h(c)f(d)g(e)h(f)f(g)h(h)630 1176 y($)f(echo)g(${@:0:2}) +630 1285 y(./bash)f(1)630 1395 y($)h(echo)g(${@:)g(-7:0})630 +1677 y Fu(If)36 b Fr(parameter)43 b Fu(is)36 b(an)g(indexed)g(arra)m(y) g(name)g(subscripted)f(b)m(y)h(`)p Ft(@)p Fu(')g(or)h(`)p -Ft(*)p Fu(',)h(the)e(result)g(is)630 2600 y(the)j Fr(length)g +Ft(*)p Fu(',)h(the)e(result)g(is)630 1786 y(the)j Fr(length)g Fu(mem)m(b)s(ers)f(of)h(the)f(arra)m(y)i(b)s(eginning)d(with)i Ft(${)p Fj(parameter)p Ft([)p Fj(offset)p Ft(]})p Fu(.)60 -b(A)630 2710 y(negativ)m(e)33 b Fr(o\013set)g Fu(is)e(tak)m(en)h +b(A)630 1896 y(negativ)m(e)33 b Fr(o\013set)g Fu(is)e(tak)m(en)h (relativ)m(e)g(to)g(one)f(greater)g(than)g(the)f(maxim)m(um)h(index)f -(of)h(the)630 2819 y(sp)s(eci\014ed)38 b(arra)m(y)-8 +(of)h(the)630 2005 y(sp)s(eci\014ed)38 b(arra)m(y)-8 b(.)65 b(It)38 b(is)g(an)h(expansion)f(error)f(if)i Fr(length)f Fu(ev)-5 b(aluates)40 b(to)f(a)g(n)m(um)m(b)s(er)e(less)630 -2929 y(than)30 b(zero.)630 3093 y(These)23 b(examples)i(sho)m(w)e(ho)m +2115 y(than)30 b(zero.)630 2287 y(These)23 b(examples)i(sho)m(w)e(ho)m (w)h(y)m(ou)g(can)g(use)f(substring)f(expansion)i(with)f(indexed)g -(arra)m(ys:)630 3258 y Ft($)47 b(array=\(0)f(1)h(2)h(3)f(4)h(5)f(6)h(7) -f(8)h(9)f(0)h(a)f(b)g(c)h(d)f(e)h(f)f(g)h(h\))630 3367 -y($)f(echo)g(${array[@]:7})630 3477 y(7)g(8)h(9)f(0)h(a)f(b)h(c)f(d)h -(e)f(f)h(g)f(h)630 3587 y($)g(echo)g(${array[@]:7:2})630 -3696 y(7)g(8)630 3806 y($)g(echo)g(${array[@]:)e(-7:2})630 -3915 y(b)i(c)630 4025 y($)g(echo)g(${array[@]:)e(-7:-2})630 -4134 y(bash:)h(-2:)h(substring)f(expression)f(<)i(0)630 -4244 y($)g(echo)g(${array[@]:0})630 4354 y(0)g(1)h(2)f(3)h(4)f(5)h(6)f -(7)h(8)f(9)h(0)f(a)g(b)h(c)f(d)h(e)f(f)h(g)f(h)630 4463 -y($)g(echo)g(${array[@]:0:2})630 4573 y(0)g(1)630 4682 -y($)g(echo)g(${array[@]:)e(-7:0})630 4956 y Fu(Substring)25 +(arra)m(ys:)630 2459 y Ft($)47 b(array=\(0)f(1)h(2)h(3)f(4)h(5)f(6)h(7) +f(8)h(9)f(0)h(a)f(b)g(c)h(d)f(e)h(f)f(g)h(h\))630 2569 +y($)f(echo)g(${array[@]:7})630 2679 y(7)g(8)h(9)f(0)h(a)f(b)h(c)f(d)h +(e)f(f)h(g)f(h)630 2788 y($)g(echo)g(${array[@]:7:2})630 +2898 y(7)g(8)630 3007 y($)g(echo)g(${array[@]:)e(-7:2})630 +3117 y(b)i(c)630 3226 y($)g(echo)g(${array[@]:)e(-7:-2})630 +3336 y(bash:)h(-2:)h(substring)f(expression)f(<)i(0)630 +3446 y($)g(echo)g(${array[@]:0})630 3555 y(0)g(1)h(2)f(3)h(4)f(5)h(6)f +(7)h(8)f(9)h(0)f(a)g(b)h(c)f(d)h(e)f(f)h(g)f(h)630 3665 +y($)g(echo)g(${array[@]:0:2})630 3774 y(0)g(1)630 3884 +y($)g(echo)g(${array[@]:)e(-7:0})630 4166 y Fu(Substring)25 b(expansion)g(applied)h(to)h(an)f(asso)s(ciativ)m(e)j(arra)m(y)d(pro)s -(duces)f(unde\014ned)f(results.)630 5121 y(Substring)32 +(duces)f(unde\014ned)f(results.)630 4338 y(Substring)32 b(indexing)i(is)f(zero-based)i(unless)e(the)h(p)s(ositional)g -(parameters)g(are)g(used,)g(in)630 5230 y(whic)m(h)29 +(parameters)g(are)g(used,)g(in)630 4448 y(whic)m(h)29 b(case)i(the)f(indexing)g(starts)g(at)g(1)g(b)m(y)g(default.)41 b(If)29 b Fr(o\013set)k Fu(is)d(0,)g(and)f(the)h(p)s(ositional)630 -5340 y(parameters)h(are)f(used,)g Ft($@)g Fu(is)g(pre\014xed)g(to)h -(the)f(list.)p eop end +4557 y(parameters)h(are)f(used,)g Ft($@)g Fu(is)g(pre\014xed)g(to)h +(the)f(list.)150 4792 y Ft(${!)p Fj(prefix)p Ft(*})150 +4902 y(${!)p Fj(prefix)p Ft(@})630 5011 y Fu(Expands)24 +b(to)h(the)g(names)g(of)g(v)-5 b(ariables)26 b(whose)f(names)f(b)s +(egin)h(with)f Fr(pre\014x)p Fu(,)i(separated)f(b)m(y)630 +5121 y(the)k(\014rst)f(c)m(haracter)j(of)e(the)g Ft(IFS)f +Fu(sp)s(ecial)i(v)-5 b(ariable.)41 b(When)29 b(`)p Ft(@)p +Fu(')g(is)g(used)f(and)h(the)g(expan-)630 5230 y(sion)35 +b(app)s(ears)g(within)f(double)h(quotes,)i(eac)m(h)f(v)-5 +b(ariable)36 b(name)f(expands)g(to)g(a)h(separate)630 +5340 y(w)m(ord.)p eop end %%Page: 28 34 TeXDict begin 28 33 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(28)150 299 -y Ft(${!)p Fj(prefix)p Ft(*})150 408 y(${!)p Fj(prefix)p -Ft(@})630 518 y Fu(Expands)24 b(to)h(the)g(names)g(of)g(v)-5 -b(ariables)26 b(whose)f(names)f(b)s(egin)h(with)f Fr(pre\014x)p -Fu(,)i(separated)f(b)m(y)630 628 y(the)k(\014rst)f(c)m(haracter)j(of)e -(the)g Ft(IFS)f Fu(sp)s(ecial)i(v)-5 b(ariable.)41 b(When)29 -b(`)p Ft(@)p Fu(')g(is)g(used)f(and)h(the)g(expan-)630 -737 y(sion)35 b(app)s(ears)g(within)f(double)h(quotes,)i(eac)m(h)f(v)-5 -b(ariable)36 b(name)f(expands)g(to)g(a)h(separate)630 -847 y(w)m(ord.)150 1066 y Ft(${!)p Fj(name)p Ft([@]})150 -1176 y(${!)p Fj(name)p Ft([*]})630 1285 y Fu(If)26 b -Fr(name)32 b Fu(is)27 b(an)f(arra)m(y)h(v)-5 b(ariable,)29 -b(expands)d(to)h(the)g(list)g(of)g(arra)m(y)g(indices)g(\(k)m(eys\))h -(assigned)630 1395 y(in)c Fr(name)p Fu(.)39 b(If)24 b -Fr(name)30 b Fu(is)24 b(not)h(an)f(arra)m(y)-8 b(,)27 -b(expands)c(to)j(0)f(if)f Fr(name)30 b Fu(is)24 b(set)h(and)f(n)m(ull)g -(otherwise.)630 1504 y(When)39 b(`)p Ft(@)p Fu(')h(is)f(used)g(and)f -(the)i(expansion)f(app)s(ears)g(within)f(double)h(quotes,)k(eac)m(h)d -(k)m(ey)630 1614 y(expands)30 b(to)h(a)f(separate)i(w)m(ord.)150 -1833 y Ft(${#)p Fj(parameter)p Ft(})630 1943 y Fu(The)40 -b(length)g(in)g(c)m(haracters)i(of)e(the)h(expanded)e(v)-5 -b(alue)41 b(of)f Fr(parameter)47 b Fu(is)40 b(substituted.)630 -2052 y(If)i Fr(parameter)50 b Fu(is)43 b(`)p Ft(*)p Fu(')g(or)g(`)p +y Ft(${!)p Fj(name)p Ft([@]})150 408 y(${!)p Fj(name)p +Ft([*]})630 518 y Fu(If)26 b Fr(name)32 b Fu(is)27 b(an)f(arra)m(y)h(v) +-5 b(ariable,)29 b(expands)d(to)h(the)g(list)g(of)g(arra)m(y)g(indices) +g(\(k)m(eys\))h(assigned)630 628 y(in)c Fr(name)p Fu(.)39 +b(If)24 b Fr(name)30 b Fu(is)24 b(not)h(an)f(arra)m(y)-8 +b(,)27 b(expands)c(to)j(0)f(if)f Fr(name)30 b Fu(is)24 +b(set)h(and)f(n)m(ull)g(otherwise.)630 737 y(When)39 +b(`)p Ft(@)p Fu(')h(is)f(used)g(and)f(the)i(expansion)f(app)s(ears)g +(within)f(double)h(quotes,)k(eac)m(h)d(k)m(ey)630 847 +y(expands)30 b(to)h(a)f(separate)i(w)m(ord.)150 1011 +y Ft(${#)p Fj(parameter)p Ft(})630 1121 y Fu(The)40 b(length)g(in)g(c)m +(haracters)i(of)e(the)h(expanded)e(v)-5 b(alue)41 b(of)f +Fr(parameter)47 b Fu(is)40 b(substituted.)630 1230 y(If)i +Fr(parameter)50 b Fu(is)43 b(`)p Ft(*)p Fu(')g(or)g(`)p Ft(@)p Fu(',)k(the)c(v)-5 b(alue)43 b(substituted)f(is)h(the)g(n)m(um)m -(b)s(er)f(of)h(p)s(ositional)630 2162 y(parameters.)i(If)32 +(b)s(er)f(of)h(p)s(ositional)630 1340 y(parameters.)i(If)32 b Fr(parameter)38 b Fu(is)32 b(an)g(arra)m(y)g(name)g(subscripted)f(b)m (y)g(`)p Ft(*)p Fu(')h(or)g(`)p Ft(@)p Fu(',)g(the)g(v)-5 -b(alue)630 2271 y(substituted)30 b(is)h(the)g(n)m(um)m(b)s(er)e(of)i +b(alue)630 1450 y(substituted)30 b(is)h(the)g(n)m(um)m(b)s(er)e(of)i (elemen)m(ts)i(in)d(the)h(arra)m(y)-8 b(.)43 b(If)30 -b Fr(parameter)38 b Fu(is)31 b(an)f(indexed)630 2381 +b Fr(parameter)38 b Fu(is)31 b(an)f(indexed)630 1559 y(arra)m(y)37 b(name)g(subscripted)f(b)m(y)h(a)g(negativ)m(e)i(n)m(um)m (b)s(er,)f(that)f(n)m(um)m(b)s(er)f(is)g(in)m(terpreted)i(as)630 -2491 y(relativ)m(e)47 b(to)g(one)e(greater)i(than)e(the)h(maxim)m(um)f +1669 y(relativ)m(e)47 b(to)g(one)e(greater)i(than)e(the)h(maxim)m(um)f (index)g(of)g Fr(parameter)p Fu(,)50 b(so)c(negativ)m(e)630 -2600 y(indices)30 b(coun)m(t)h(bac)m(k)g(from)f(the)h(end)e(of)i(the)f +1778 y(indices)30 b(coun)m(t)h(bac)m(k)g(from)f(the)h(end)e(of)i(the)f (arra)m(y)-8 b(,)32 b(and)e(an)g(index)g(of)g(-1)h(references)g(the)630 -2710 y(last)g(elemen)m(t.)150 2929 y Ft(${)p Fj(parameter)p -Ft(#)p Fj(word)p Ft(})150 3039 y(${)p Fj(parameter)p -Ft(##)p Fj(word)p Ft(})630 3148 y Fu(The)g Fr(w)m(ord)k +1888 y(last)g(elemen)m(t.)150 2052 y Ft(${)p Fj(parameter)p +Ft(#)p Fj(word)p Ft(})150 2162 y(${)p Fj(parameter)p +Ft(##)p Fj(word)p Ft(})630 2271 y Fu(The)g Fr(w)m(ord)k Fu(is)d(expanded)f(to)i(pro)s(duce)e(a)h(pattern)g(just)f(as)i(in)e -(\014lename)h(expansion)g(\(see)630 3258 y(Section)k(3.5.8)h([Filename) +(\014lename)h(expansion)g(\(see)630 2381 y(Section)k(3.5.8)h([Filename) g(Expansion],)g(page)f(31\).)56 b(If)35 b(the)h(pattern)f(matc)m(hes)i -(the)e(b)s(e-)630 3367 y(ginning)28 b(of)g(the)h(expanded)e(v)-5 +(the)e(b)s(e-)630 2491 y(ginning)28 b(of)g(the)h(expanded)e(v)-5 b(alue)29 b(of)f Fr(parameter)p Fu(,)h(then)f(the)g(result)g(of)h(the)f -(expansion)g(is)630 3477 y(the)36 b(expanded)f(v)-5 b(alue)36 +(expansion)g(is)630 2600 y(the)36 b(expanded)f(v)-5 b(alue)36 b(of)g Fr(parameter)43 b Fu(with)35 b(the)h(shortest)g(matc)m(hing)h -(pattern)f(\(the)g(`)p Ft(#)p Fu(')630 3587 y(case\))26 +(pattern)f(\(the)g(`)p Ft(#)p Fu(')630 2710 y(case\))26 b(or)f(the)g(longest)g(matc)m(hing)h(pattern)f(\(the)g(`)p Ft(##)p Fu(')g(case\))h(deleted.)39 b(If)24 b Fr(parameter)32 -b Fu(is)25 b(`)p Ft(@)p Fu(')630 3696 y(or)j(`)p Ft(*)p +b Fu(is)25 b(`)p Ft(@)p Fu(')630 2819 y(or)j(`)p Ft(*)p Fu(',)i(the)e(pattern)h(remo)m(v)-5 b(al)29 b(op)s(eration)g(is)f (applied)h(to)g(eac)m(h)g(p)s(ositional)g(parameter)g(in)630 -3806 y(turn,)i(and)g(the)h(expansion)g(is)g(the)g(resultan)m(t)g(list.) +2929 y(turn,)i(and)g(the)h(expansion)g(is)g(the)g(resultan)m(t)g(list.) 45 b(If)32 b Fr(parameter)38 b Fu(is)32 b(an)g(arra)m(y)g(v)-5 -b(ariable)630 3915 y(subscripted)39 b(with)g(`)p Ft(@)p +b(ariable)630 3039 y(subscripted)39 b(with)g(`)p Ft(@)p Fu(')h(or)g(`)p Ft(*)p Fu(',)j(the)d(pattern)h(remo)m(v)-5 b(al)41 b(op)s(eration)f(is)g(applied)g(to)h(eac)m(h)630 -4025 y(mem)m(b)s(er)30 b(of)g(the)h(arra)m(y)g(in)f(turn,)f(and)h(the)h -(expansion)f(is)g(the)h(resultan)m(t)g(list.)150 4244 +3148 y(mem)m(b)s(er)30 b(of)g(the)h(arra)m(y)g(in)f(turn,)f(and)h(the)h +(expansion)f(is)g(the)h(resultan)m(t)g(list.)150 3313 y Ft(${)p Fj(parameter)p Ft(\045)p Fj(word)p Ft(})150 -4354 y(${)p Fj(parameter)p Ft(\045\045)p Fj(word)p Ft(})630 -4463 y Fu(The)k Fr(w)m(ord)k Fu(is)c(expanded)g(to)h(pro)s(duce)e(a)i +3422 y(${)p Fj(parameter)p Ft(\045\045)p Fj(word)p Ft(})630 +3532 y Fu(The)k Fr(w)m(ord)k Fu(is)c(expanded)g(to)h(pro)s(duce)e(a)i (pattern)f(just)g(as)h(in)f(\014lename)h(expansion.)55 -b(If)630 4573 y(the)43 b(pattern)g(matc)m(hes)h(a)g(trailing)g(p)s +b(If)630 3641 y(the)43 b(pattern)g(matc)m(hes)h(a)g(trailing)g(p)s (ortion)e(of)h(the)g(expanded)g(v)-5 b(alue)43 b(of)g -Fr(parameter)p Fu(,)630 4682 y(then)c(the)g(result)g(of)h(the)f +Fr(parameter)p Fu(,)630 3751 y(then)c(the)g(result)g(of)h(the)f (expansion)g(is)h(the)f(v)-5 b(alue)40 b(of)f Fr(parameter)46 -b Fu(with)39 b(the)h(shortest)630 4792 y(matc)m(hing)31 +b Fu(with)39 b(the)h(shortest)630 3861 y(matc)m(hing)31 b(pattern)e(\(the)h(`)p Ft(\045)p Fu(')g(case\))h(or)e(the)h(longest)h (matc)m(hing)f(pattern)g(\(the)g(`)p Ft(\045\045)p Fu(')g(case\))630 -4902 y(deleted.)49 b(If)32 b Fr(parameter)40 b Fu(is)33 +3970 y(deleted.)49 b(If)32 b Fr(parameter)40 b Fu(is)33 b(`)p Ft(@)p Fu(')g(or)g(`)p Ft(*)p Fu(',)h(the)f(pattern)g(remo)m(v)-5 -b(al)34 b(op)s(eration)g(is)f(applied)f(to)630 5011 y(eac)m(h)38 +b(al)34 b(op)s(eration)g(is)f(applied)f(to)630 4080 y(eac)m(h)38 b(p)s(ositional)g(parameter)g(in)f(turn,)h(and)e(the)h(expansion)g(is)h -(the)f(resultan)m(t)h(list.)61 b(If)630 5121 y Fr(parameter)38 +(the)f(resultan)m(t)h(list.)61 b(If)630 4189 y Fr(parameter)38 b Fu(is)32 b(an)f(arra)m(y)h(v)-5 b(ariable)32 b(subscripted)e(with)h (`)p Ft(@)p Fu(')g(or)h(`)p Ft(*)p Fu(',)g(the)f(pattern)h(remo)m(v)-5 -b(al)630 5230 y(op)s(eration)30 b(is)g(applied)f(to)i(eac)m(h)g(mem)m +b(al)630 4299 y(op)s(eration)30 b(is)g(applied)f(to)i(eac)m(h)g(mem)m (b)s(er)e(of)h(the)g(arra)m(y)g(in)f(turn,)g(and)g(the)h(expansion)g -(is)630 5340 y(the)h(resultan)m(t)g(list.)p eop end -%%Page: 29 35 -TeXDict begin 29 34 bop 150 -116 a Fu(Chapter)30 b(3:)41 -b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(29)150 299 -y Ft(${)p Fj(parameter)p Ft(/)p Fj(pattern)p Ft(/)p Fj(stri)o(ng)p -Ft(})630 408 y Fu(The)37 b Fr(pattern)g Fu(is)g(expanded)g(to)h(pro)s +(is)630 4408 y(the)h(resultan)m(t)g(list.)150 4573 y +Ft(${)p Fj(parameter)p Ft(/)p Fj(pattern)p Ft(/)p Fj(stri)o(ng)p +Ft(})630 4682 y Fu(The)37 b Fr(pattern)g Fu(is)g(expanded)g(to)h(pro)s (duce)e(a)h(pattern)g(just)g(as)h(in)e(\014lename)i(expansion.)630 -518 y Fr(P)m(arameter)46 b Fu(is)38 b(expanded)f(and)g(the)i(longest)g +4792 y Fr(P)m(arameter)46 b Fu(is)38 b(expanded)f(and)g(the)i(longest)g (matc)m(h)g(of)f Fr(pattern)g Fu(against)h(its)f(v)-5 -b(alue)39 b(is)630 628 y(replaced)34 b(with)e Fr(string)p +b(alue)39 b(is)630 4902 y(replaced)34 b(with)e Fr(string)p Fu(.)49 b(If)33 b Fr(pattern)g Fu(b)s(egins)g(with)f(`)p Ft(/)p Fu(',)j(all)f(matc)m(hes)g(of)f Fr(pattern)g Fu(are)h(re-)630 -737 y(placed)28 b(with)f Fr(string)p Fu(.)40 b(Normally)28 +5011 y(placed)28 b(with)f Fr(string)p Fu(.)40 b(Normally)28 b(only)f(the)h(\014rst)e(matc)m(h)j(is)e(replaced.)40 -b(If)27 b Fr(pattern)g Fu(b)s(egins)630 847 y(with)34 +b(If)27 b Fr(pattern)g Fu(b)s(egins)630 5121 y(with)34 b(`)p Ft(#)p Fu(',)h(it)g(m)m(ust)f(matc)m(h)h(at)f(the)h(b)s(eginning) e(of)h(the)g(expanded)f(v)-5 b(alue)35 b(of)f Fr(parameter)p -Fu(.)630 956 y(If)g Fr(pattern)g Fu(b)s(egins)g(with)g(`)p +Fu(.)630 5230 y(If)g Fr(pattern)g Fu(b)s(egins)g(with)g(`)p Ft(\045)p Fu(',)h(it)g(m)m(ust)f(matc)m(h)h(at)g(the)f(end)g(of)g(the)h -(expanded)e(v)-5 b(alue)35 b(of)630 1066 y Fr(parameter)p +(expanded)e(v)-5 b(alue)35 b(of)630 5340 y Fr(parameter)p Fu(.)41 b(If)29 b Fr(string)37 b Fu(is)29 b(n)m(ull,)h(matc)m(hes)h(of) e Fr(pattern)h Fu(are)g(deleted)g(and)f(the)g Ft(/)g -Fu(follo)m(wing)630 1176 y Fr(pattern)k Fu(ma)m(y)h(b)s(e)e(omitted.)50 -b(If)33 b(the)g Ft(nocasematch)d Fu(shell)j(option)h(\(see)g(the)f -(description)630 1285 y(of)28 b Ft(shopt)e Fu(in)h(Section)i(4.3.2)g -([The)e(Shopt)g(Builtin],)i(page)g(65\))g(is)e(enabled,)i(the)e(matc)m -(h)i(is)630 1395 y(p)s(erformed)f(without)j(regard)e(to)i(the)f(case)i -(of)e(alphab)s(etic)g(c)m(haracters.)42 b(If)30 b Fr(parameter)37 -b Fu(is)630 1504 y(`)p Ft(@)p Fu(')31 b(or)g(`)p Ft(*)p +Fu(follo)m(wing)p eop end +%%Page: 29 35 +TeXDict begin 29 34 bop 150 -116 a Fu(Chapter)30 b(3:)41 +b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(29)630 299 +y Fr(pattern)33 b Fu(ma)m(y)h(b)s(e)e(omitted.)50 b(If)33 +b(the)g Ft(nocasematch)d Fu(shell)j(option)h(\(see)g(the)f(description) +630 408 y(of)28 b Ft(shopt)e Fu(in)h(Section)i(4.3.2)g([The)e(Shopt)g +(Builtin],)i(page)g(65\))g(is)e(enabled,)i(the)e(matc)m(h)i(is)630 +518 y(p)s(erformed)f(without)j(regard)e(to)i(the)f(case)i(of)e(alphab)s +(etic)g(c)m(haracters.)42 b(If)30 b Fr(parameter)37 b +Fu(is)630 628 y(`)p Ft(@)p Fu(')31 b(or)g(`)p Ft(*)p Fu(',)g(the)g(substitution)f(op)s(eration)h(is)g(applied)f(to)i(eac)m -(h)g(p)s(ositional)f(parameter)g(in)630 1614 y(turn,)g(and)g(the)h +(h)g(p)s(ositional)f(parameter)g(in)630 737 y(turn,)g(and)g(the)h (expansion)g(is)g(the)g(resultan)m(t)g(list.)45 b(If)32 b Fr(parameter)38 b Fu(is)32 b(an)g(arra)m(y)g(v)-5 b(ariable)630 -1724 y(subscripted)23 b(with)g(`)p Ft(@)p Fu(')i(or)f(`)p +847 y(subscripted)23 b(with)g(`)p Ft(@)p Fu(')i(or)f(`)p Ft(*)p Fu(',)h(the)g(substitution)e(op)s(eration)i(is)f(applied)g(to)g -(eac)m(h)i(mem)m(b)s(er)630 1833 y(of)31 b(the)f(arra)m(y)h(in)f(turn,) -g(and)f(the)i(expansion)f(is)h(the)f(resultan)m(t)h(list.)150 -1987 y Ft(${)p Fj(parameter)p Ft(^)p Fj(pattern)p Ft(})150 -2096 y(${)p Fj(parameter)p Ft(^^)p Fj(pattern)p Ft(})150 -2206 y(${)p Fj(parameter)p Ft(,)p Fj(pattern)p Ft(})150 -2315 y(${)p Fj(parameter)p Ft(,,)p Fj(pattern)p Ft(})630 -2425 y Fu(This)36 b(expansion)g(mo)s(di\014es)g(the)g(case)i(of)f +(eac)m(h)i(mem)m(b)s(er)630 956 y(of)31 b(the)f(arra)m(y)h(in)f(turn,)g +(and)f(the)i(expansion)f(is)h(the)f(resultan)m(t)h(list.)150 +1107 y Ft(${)p Fj(parameter)p Ft(^)p Fj(pattern)p Ft(})150 +1217 y(${)p Fj(parameter)p Ft(^^)p Fj(pattern)p Ft(})150 +1326 y(${)p Fj(parameter)p Ft(,)p Fj(pattern)p Ft(})150 +1436 y(${)p Fj(parameter)p Ft(,,)p Fj(pattern)p Ft(})630 +1545 y Fu(This)36 b(expansion)g(mo)s(di\014es)g(the)g(case)i(of)f (alphab)s(etic)g(c)m(haracters)h(in)e Fr(parameter)p -Fu(.)59 b(The)630 2534 y Fr(pattern)33 b Fu(is)g(expanded)e(to)j(pro)s +Fu(.)59 b(The)630 1655 y Fr(pattern)33 b Fu(is)g(expanded)e(to)j(pro)s (duce)d(a)j(pattern)e(just)g(as)h(in)g(\014lename)g(expansion.)47 -b(Eac)m(h)630 2644 y(c)m(haracter)32 b(in)e(the)g(expanded)f(v)-5 +b(Eac)m(h)630 1765 y(c)m(haracter)32 b(in)e(the)g(expanded)f(v)-5 b(alue)31 b(of)f Fr(parameter)37 b Fu(is)30 b(tested)h(against)h -Fr(pattern)p Fu(,)e(and,)g(if)630 2754 y(it)j(matc)m(hes)h(the)g +Fr(pattern)p Fu(,)e(and,)g(if)630 1874 y(it)j(matc)m(hes)h(the)g (pattern,)f(its)h(case)g(is)f(con)m(v)m(erted.)49 b(The)33 -b(pattern)g(should)f(not)h(attempt)630 2863 y(to)f(matc)m(h)g(more)f +b(pattern)g(should)f(not)h(attempt)630 1984 y(to)f(matc)m(h)g(more)f (than)g(one)g(c)m(haracter.)44 b(The)30 b(`)p Ft(^)p Fu(')i(op)s(erator)f(con)m(v)m(erts)h(lo)m(w)m(ercase)i(letters)630 -2973 y(matc)m(hing)i Fr(pattern)f Fu(to)h(upp)s(ercase;)h(the)e(`)p +2093 y(matc)m(hing)i Fr(pattern)f Fu(to)h(upp)s(ercase;)h(the)e(`)p Ft(,)p Fu(')g(op)s(erator)g(con)m(v)m(erts)i(matc)m(hing)f(upp)s -(ercase)630 3082 y(letters)e(to)f(lo)m(w)m(ercase.)50 +(ercase)630 2203 y(letters)e(to)f(lo)m(w)m(ercase.)50 b(The)32 b(`)p Ft(^^)p Fu(')h(and)f(`)p Ft(,,)p Fu(')g(expansions)h (con)m(v)m(ert)h(eac)m(h)g(matc)m(hed)f(c)m(har-)630 -3192 y(acter)c(in)f(the)h(expanded)e(v)-5 b(alue;)30 +2313 y(acter)c(in)f(the)h(expanded)e(v)-5 b(alue;)30 b(the)e(`)p Ft(^)p Fu(')g(and)g(`)p Ft(,)p Fu(')g(expansions)g(matc)m -(h)h(and)f(con)m(v)m(ert)i(only)630 3302 y(the)37 b(\014rst)g(c)m +(h)h(and)f(con)m(v)m(ert)i(only)630 2422 y(the)37 b(\014rst)g(c)m (haracter)i(in)e(the)g(expanded)g(v)-5 b(alue.)61 b(If)37 b Fr(pattern)g Fu(is)h(omitted,)i(it)e(is)f(treated)630 -3411 y(lik)m(e)h(a)f(`)p Ft(?)p Fu(',)i(whic)m(h)d(matc)m(hes)i(ev)m +2532 y(lik)m(e)h(a)f(`)p Ft(?)p Fu(',)i(whic)m(h)d(matc)m(hes)i(ev)m (ery)f(c)m(haracter.)61 b(If)37 b Fr(parameter)43 b Fu(is)37 b(`)p Ft(@)p Fu(')g(or)f(`)p Ft(*)p Fu(',)j(the)e(case)630 -3521 y(mo)s(di\014cation)29 b(op)s(eration)f(is)g(applied)g(to)h(eac)m +2641 y(mo)s(di\014cation)29 b(op)s(eration)f(is)g(applied)g(to)h(eac)m (h)h(p)s(ositional)f(parameter)f(in)g(turn,)g(and)g(the)630 -3630 y(expansion)38 b(is)g(the)g(resultan)m(t)h(list.)65 +2751 y(expansion)38 b(is)g(the)g(resultan)m(t)h(list.)65 b(If)37 b Fr(parameter)46 b Fu(is)38 b(an)g(arra)m(y)g(v)-5 -b(ariable)39 b(subscripted)630 3740 y(with)26 b(`)p Ft(@)p +b(ariable)39 b(subscripted)630 2861 y(with)26 b(`)p Ft(@)p Fu(')f(or)h(`)p Ft(*)p Fu(',)h(the)f(case)h(mo)s(di\014cation)f(op)s (eration)h(is)e(applied)h(to)h(eac)m(h)g(mem)m(b)s(er)e(of)h(the)630 -3850 y(arra)m(y)31 b(in)f(turn,)f(and)h(the)h(expansion)f(is)g(the)h -(resultan)m(t)g(list.)150 4003 y Ft(${)p Fj(parameter)p -Ft(@)p Fj(operator)p Ft(})630 4113 y Fu(The)d(expansion)h(is)f(either)h +2970 y(arra)m(y)31 b(in)f(turn,)f(and)h(the)h(expansion)f(is)g(the)h +(resultan)m(t)g(list.)150 3121 y Ft(${)p Fj(parameter)p +Ft(@)p Fj(operator)p Ft(})630 3230 y Fu(The)d(expansion)h(is)f(either)h (a)g(transformation)g(of)g(the)g(v)-5 b(alue)29 b(of)g -Fr(parameter)35 b Fu(or)29 b(informa-)630 4222 y(tion)e(ab)s(out)f +Fr(parameter)35 b Fu(or)29 b(informa-)630 3340 y(tion)e(ab)s(out)f Fr(parameter)33 b Fu(itself,)28 b(dep)s(ending)c(on)i(the)h(v)-5 b(alue)26 b(of)h Fr(op)s(erator)p Fu(.)39 b(Eac)m(h)27 -b Fr(op)s(erator)630 4332 y Fu(is)j(a)h(single)g(letter:)630 -4485 y Ft(Q)432 b Fu(The)30 b(expansion)h(is)g(a)g(string)f(that)i(is)f +b Fr(op)s(erator)630 3450 y Fu(is)j(a)h(single)g(letter:)630 +3600 y Ft(Q)432 b Fu(The)30 b(expansion)h(is)g(a)g(string)f(that)i(is)f (the)g(v)-5 b(alue)31 b(of)g Fr(parameter)37 b Fu(quoted)31 -b(in)1110 4595 y(a)g(format)f(that)h(can)g(b)s(e)f(reused)f(as)i -(input.)630 4748 y Ft(E)432 b Fu(The)27 b(expansion)g(is)g(a)g(string)h +b(in)1110 3710 y(a)g(format)f(that)h(can)g(b)s(e)f(reused)f(as)i +(input.)630 3861 y Ft(E)432 b Fu(The)27 b(expansion)g(is)g(a)g(string)h (that)f(is)h(the)f(v)-5 b(alue)28 b(of)f Fr(parameter)34 -b Fu(with)27 b(bac)m(k-)1110 4858 y(slash)e(escap)s(e)h(sequences)f +b Fu(with)27 b(bac)m(k-)1110 3970 y(slash)e(escap)s(e)h(sequences)f (expanded)g(as)g(with)g(the)h Ft($'...)o(')e Fu(quoting)i(mec)m(h-)1110 -4967 y(anism.)630 5121 y Ft(P)432 b Fu(The)22 b(expansion)h(is)g(a)g +4080 y(anism.)630 4230 y Ft(P)432 b Fu(The)22 b(expansion)h(is)g(a)g (string)g(that)g(is)g(the)g(result)g(of)g(expanding)f(the)h(v)-5 -b(alue)24 b(of)1110 5230 y Fr(parameter)31 b Fu(as)24 +b(alue)24 b(of)1110 4340 y Fr(parameter)31 b Fu(as)24 b(if)f(it)h(w)m(ere)g(a)g(prompt)f(string)h(\(see)g(Section)h(6.9)g -([Con)m(trolling)1110 5340 y(the)31 b(Prompt],)f(page)h(96\).)p +([Con)m(trolling)1110 4450 y(the)31 b(Prompt],)f(page)h(96\).)630 +4600 y Ft(A)432 b Fu(The)24 b(expansion)g(is)g(a)h(string)f(in)g(the)g +(form)g(of)h(an)f(assignmen)m(t)h(statemen)m(t)h(or)1110 +4710 y Ft(declare)h Fu(command)i(that,)h(if)f(ev)-5 b(aluated,)31 +b(will)e(recreate)i Fr(parameter)36 b Fu(with)1110 4819 +y(its)31 b(attributes)g(and)e(v)-5 b(alue.)630 4970 y +Ft(a)432 b Fu(The)30 b(expansion)g(is)g(a)h(string)f(consisting)h(of)g +(\015ag)g(v)-5 b(alues)30 b(represen)m(ting)h Fr(pa-)1110 +5080 y(rameter)7 b Fu('s)31 b(attributes.)630 5230 y(If)e +Fr(parameter)37 b Fu(is)30 b(`)p Ft(@)p Fu(')g(or)g(`)p +Ft(*)p Fu(',)g(the)g(op)s(eration)g(is)g(applied)f(to)i(eac)m(h)g(p)s +(ositional)f(parameter)630 5340 y(in)24 b(turn,)g(and)f(the)h +(expansion)g(is)g(the)g(resultan)m(t)h(list.)39 b(If)23 +b Fr(parameter)31 b Fu(is)24 b(an)g(arra)m(y)g(v)-5 b(ariable)p eop end %%Page: 30 36 TeXDict begin 30 35 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(30)630 299 -y Ft(A)432 b Fu(The)24 b(expansion)g(is)g(a)h(string)f(in)g(the)g(form) -g(of)h(an)f(assignmen)m(t)h(statemen)m(t)h(or)1110 408 -y Ft(declare)h Fu(command)i(that,)h(if)f(ev)-5 b(aluated,)31 -b(will)e(recreate)i Fr(parameter)36 b Fu(with)1110 518 -y(its)31 b(attributes)g(and)e(v)-5 b(alue.)630 680 y -Ft(a)432 b Fu(The)30 b(expansion)g(is)g(a)h(string)f(consisting)h(of)g -(\015ag)g(v)-5 b(alues)30 b(represen)m(ting)h Fr(pa-)1110 -789 y(rameter)7 b Fu('s)31 b(attributes.)630 951 y(If)e -Fr(parameter)37 b Fu(is)30 b(`)p Ft(@)p Fu(')g(or)g(`)p -Ft(*)p Fu(',)g(the)g(op)s(eration)g(is)g(applied)f(to)i(eac)m(h)g(p)s -(ositional)f(parameter)630 1060 y(in)24 b(turn,)g(and)f(the)h -(expansion)g(is)g(the)g(resultan)m(t)h(list.)39 b(If)23 -b Fr(parameter)31 b Fu(is)24 b(an)g(arra)m(y)g(v)-5 b(ariable)630 -1170 y(subscripted)24 b(with)h(`)p Ft(@)p Fu(')h(or)g(`)p +y(subscripted)24 b(with)h(`)p Ft(@)p Fu(')h(or)g(`)p Ft(*)p Fu(',)h(the)e(op)s(eration)h(is)g(applied)f(to)h(eac)m(h)h(mem)m -(b)s(er)e(of)h(the)f(arra)m(y)630 1279 y(in)30 b(turn,)g(and)f(the)i -(expansion)f(is)h(the)f(resultan)m(t)h(list.)630 1415 +(b)s(er)e(of)h(the)f(arra)m(y)630 408 y(in)30 b(turn,)g(and)f(the)i +(expansion)f(is)h(the)f(resultan)m(t)h(list.)630 544 y(The)22 b(result)g(of)g(the)h(expansion)f(is)g(sub)5 b(ject)22 b(to)h(w)m(ord)f(splitting)g(and)g(pathname)g(expansion)630 -1524 y(as)31 b(describ)s(ed)e(b)s(elo)m(w.)150 1726 y -Fk(3.5.4)63 b(Command)41 b(Substitution)150 1873 y Fu(Command)f -(substitution)h(allo)m(ws)i(the)e(output)g(of)h(a)f(command)g(to)h -(replace)g(the)g(command)f(itself.)150 1982 y(Command)29 -b(substitution)h(o)s(ccurs)h(when)e(a)i(command)f(is)g(enclosed)h(as)g -(follo)m(ws:)390 2119 y Ft($\()p Fj(command)p Ft(\))150 -2255 y Fu(or)390 2392 y Ft(`)p Fj(command)p Ft(`)150 -2529 y Fu(Bash)20 b(p)s(erforms)f(the)i(expansion)f(b)m(y)g(executing)i +654 y(as)31 b(describ)s(ed)e(b)s(elo)m(w.)150 855 y Fk(3.5.4)63 +b(Command)41 b(Substitution)150 1002 y Fu(Command)f(substitution)h +(allo)m(ws)i(the)e(output)g(of)h(a)f(command)g(to)h(replace)g(the)g +(command)f(itself.)150 1112 y(Command)29 b(substitution)h(o)s(ccurs)h +(when)e(a)i(command)f(is)g(enclosed)h(as)g(follo)m(ws:)390 +1248 y Ft($\()p Fj(command)p Ft(\))150 1385 y Fu(or)390 +1522 y Ft(`)p Fj(command)p Ft(`)150 1659 y Fu(Bash)20 +b(p)s(erforms)f(the)i(expansion)f(b)m(y)g(executing)i Fr(command)h Fu(in)d(a)h(subshell)e(en)m(vironmen)m(t)i(and)f -(replacing)150 2638 y(the)40 b(command)g(substitution)f(with)h(the)g +(replacing)150 1768 y(the)40 b(command)g(substitution)f(with)h(the)g (standard)f(output)g(of)h(the)g(command,)i(with)e(an)m(y)g(trailing)150 -2748 y(newlines)e(deleted.)64 b(Em)m(b)s(edded)37 b(newlines)h(are)g +1878 y(newlines)e(deleted.)64 b(Em)m(b)s(edded)37 b(newlines)h(are)g (not)g(deleted,)j(but)d(they)g(ma)m(y)h(b)s(e)e(remo)m(v)m(ed)i(during) -150 2857 y(w)m(ord)30 b(splitting.)42 b(The)30 b(command)g +150 1988 y(w)m(ord)30 b(splitting.)42 b(The)30 b(command)g (substitution)h Ft($\(cat)e Fj(file)p Ft(\))g Fu(can)h(b)s(e)g -(replaced)h(b)m(y)g(the)f(equiv)-5 b(alen)m(t)150 2967 +(replaced)h(b)m(y)g(the)f(equiv)-5 b(alen)m(t)150 2097 y(but)30 b(faster)g Ft($\(<)g Fj(file)p Ft(\))p Fu(.)275 -3103 y(When)j(the)i(old-st)m(yle)h(bac)m(kquote)f(form)f(of)g +2234 y(When)j(the)i(old-st)m(yle)h(bac)m(kquote)f(form)f(of)g (substitution)g(is)g(used,)h(bac)m(kslash)f(retains)h(its)f(literal)150 -3213 y(meaning)k(except)h(when)e(follo)m(w)m(ed)j(b)m(y)e(`)p +2343 y(meaning)k(except)h(when)e(follo)m(w)m(ed)j(b)m(y)e(`)p Ft($)p Fu(',)j(`)p Ft(`)p Fu(',)f(or)e(`)p Ft(\\)p Fu('.)64 b(The)38 b(\014rst)f(bac)m(kquote)j(not)e(preceded)g(b)m(y)g(a)150 -3323 y(bac)m(kslash)k(terminates)f(the)h(command)e(substitution.)72 +2453 y(bac)m(kslash)k(terminates)f(the)h(command)e(substitution.)72 b(When)41 b(using)f(the)i Ft($\()p Fj(command)p Ft(\))c -Fu(form,)43 b(all)150 3432 y(c)m(haracters)32 b(b)s(et)m(w)m(een)f(the) +Fu(form,)43 b(all)150 2563 y(c)m(haracters)32 b(b)s(et)m(w)m(een)f(the) f(paren)m(theses)h(mak)m(e)g(up)f(the)g(command;)h(none)f(are)h -(treated)g(sp)s(ecially)-8 b(.)275 3569 y(Command)22 +(treated)g(sp)s(ecially)-8 b(.)275 2699 y(Command)22 b(substitutions)g(ma)m(y)i(b)s(e)e(nested.)39 b(T)-8 b(o)23 b(nest)g(when)f(using)h(the)g(bac)m(kquoted)h(form,)g(escap)s(e) -150 3678 y(the)31 b(inner)e(bac)m(kquotes)j(with)e(bac)m(kslashes.)275 -3815 y(If)e(the)i(substitution)e(app)s(ears)h(within)g(double)f +150 2809 y(the)31 b(inner)e(bac)m(kquotes)j(with)e(bac)m(kslashes.)275 +2946 y(If)e(the)i(substitution)e(app)s(ears)h(within)g(double)f (quotes,)i(w)m(ord)f(splitting)h(and)f(\014lename)g(expansion)150 -3925 y(are)i(not)f(p)s(erformed)f(on)h(the)h(results.)150 -4126 y Fk(3.5.5)63 b(Arithmetic)40 b(Expansion)150 4273 +3055 y(are)i(not)f(p)s(erformed)f(on)h(the)h(results.)150 +3257 y Fk(3.5.5)63 b(Arithmetic)40 b(Expansion)150 3404 y Fu(Arithmetic)25 b(expansion)g(allo)m(ws)g(the)g(ev)-5 b(aluation)26 b(of)f(an)f(arithmetic)i(expression)e(and)g(the)g -(substitution)150 4382 y(of)31 b(the)f(result.)41 b(The)30 -b(format)g(for)g(arithmetic)i(expansion)e(is:)390 4519 -y Ft($\(\()47 b Fj(expression)e Ft(\)\))275 4655 y Fu(The)33 +(substitution)150 3513 y(of)31 b(the)f(result.)41 b(The)30 +b(format)g(for)g(arithmetic)i(expansion)e(is:)390 3650 +y Ft($\(\()47 b Fj(expression)e Ft(\)\))275 3787 y Fu(The)33 b(expression)g(is)h(treated)g(as)g(if)g(it)g(w)m(ere)g(within)f(double) -h(quotes,)h(but)e(a)h(double)f(quote)h(inside)150 4765 +h(quotes,)h(but)e(a)h(double)f(quote)h(inside)150 3897 y(the)k(paren)m(theses)g(is)g(not)g(treated)h(sp)s(ecially)-8 b(.)65 b(All)38 b(tok)m(ens)h(in)f(the)g(expression)f(undergo)g -(parameter)150 4875 y(and)26 b(v)-5 b(ariable)28 b(expansion,)g +(parameter)150 4006 y(and)26 b(v)-5 b(ariable)28 b(expansion,)g (command)e(substitution,)i(and)e(quote)i(remo)m(v)-5 -b(al.)41 b(The)26 b(result)h(is)g(treated)h(as)150 4984 +b(al.)41 b(The)26 b(result)h(is)g(treated)h(as)150 4116 y(the)j(arithmetic)g(expression)f(to)h(b)s(e)f(ev)-5 b(aluated.)42 b(Arithmetic)31 b(expansions)g(ma)m(y)g(b)s(e)e(nested.) -275 5121 y(The)34 b(ev)-5 b(aluation)37 b(is)f(p)s(erformed)e +275 4252 y(The)34 b(ev)-5 b(aluation)37 b(is)f(p)s(erformed)e (according)i(to)g(the)g(rules)f(listed)h(b)s(elo)m(w)g(\(see)g(Section) -g(6.5)h([Shell)150 5230 y(Arithmetic],)32 b(page)f(91\).)42 +g(6.5)h([Shell)150 4362 y(Arithmetic],)32 b(page)f(91\).)42 b(If)30 b(the)h(expression)f(is)g(in)m(v)-5 b(alid,)32 b(Bash)e(prin)m(ts)g(a)h(message)g(indicating)h(failure)150 -5340 y(to)f(the)g(standard)e(error)h(and)g(no)g(substitution)g(o)s -(ccurs.)p eop end +4472 y(to)f(the)g(standard)e(error)h(and)g(no)g(substitution)g(o)s +(ccurs.)150 4673 y Fk(3.5.6)63 b(Pro)s(cess)42 b(Substitution)150 +4820 y Fu(Pro)s(cess)33 b(substitution)g(allo)m(ws)i(a)e(pro)s(cess's)g +(input)f(or)h(output)g(to)h(b)s(e)f(referred)f(to)i(using)f(a)g +(\014lename.)150 4930 y(It)d(tak)m(es)i(the)f(form)f(of)390 +5066 y Ft(<\()p Fj(list)p Ft(\))150 5203 y Fu(or)390 +5340 y Ft(>\()p Fj(list)p Ft(\))p eop end %%Page: 31 37 TeXDict begin 31 36 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(31)150 299 -y Fk(3.5.6)63 b(Pro)s(cess)42 b(Substitution)150 446 -y Fu(Pro)s(cess)33 b(substitution)g(allo)m(ws)i(a)e(pro)s(cess's)g -(input)f(or)h(output)g(to)h(b)s(e)f(referred)f(to)i(using)f(a)g -(\014lename.)150 555 y(It)d(tak)m(es)i(the)f(form)f(of)390 -696 y Ft(<\()p Fj(list)p Ft(\))150 836 y Fu(or)390 976 -y Ft(>\()p Fj(list)p Ft(\))150 1116 y Fu(The)e(pro)s(cess)h -Fr(list)j Fu(is)d(run)e(async)m(hronously)-8 b(,)30 b(and)e(its)i -(input)e(or)h(output)f(app)s(ears)h(as)g(a)g(\014lename.)41 -b(This)150 1226 y(\014lename)25 b(is)g(passed)g(as)g(an)g(argumen)m(t)h -(to)g(the)f(curren)m(t)g(command)g(as)g(the)g(result)g(of)g(the)h -(expansion.)38 b(If)150 1335 y(the)28 b Ft(>\()p Fj(list)p -Ft(\))d Fu(form)i(is)g(used,)h(writing)f(to)h(the)g(\014le)f(will)h -(pro)m(vide)g(input)e(for)h Fr(list)p Fu(.)41 b(If)26 -b(the)i Ft(<\()p Fj(list)p Ft(\))d Fu(form)150 1445 y(is)g(used,)g(the) -f(\014le)h(passed)f(as)h(an)f(argumen)m(t)h(should)e(b)s(e)h(read)h(to) -g(obtain)g(the)f(output)g(of)h Fr(list)p Fu(.)40 b(Note)25 -b(that)150 1555 y(no)33 b(space)g(ma)m(y)g(app)s(ear)f(b)s(et)m(w)m -(een)i(the)f Ft(<)f Fu(or)h Ft(>)f Fu(and)g(the)h(left)h(paren)m -(thesis,)f(otherwise)h(the)f(construct)150 1664 y(w)m(ould)j(b)s(e)g -(in)m(terpreted)g(as)h(a)f(redirection.)59 b(Pro)s(cess)36 -b(substitution)g(is)h(supp)s(orted)d(on)i(systems)g(that)150 -1774 y(supp)s(ort)29 b(named)h(pip)s(es)f(\()p Fm(fif)n(o)p -Fu(s\))h(or)h(the)f Ft(/dev/fd)f Fu(metho)s(d)h(of)g(naming)g(op)s(en)g -(\014les.)275 1914 y(When)36 b(a)m(v)-5 b(ailable,)40 -b(pro)s(cess)c(substitution)h(is)f(p)s(erformed)f(sim)m(ultaneously)i -(with)g(parameter)g(and)150 2024 y(v)-5 b(ariable)31 -b(expansion,)g(command)f(substitution,)g(and)g(arithmetic)i(expansion.) -150 2229 y Fk(3.5.7)63 b(W)-10 b(ord)41 b(Splitting)150 -2376 y Fu(The)30 b(shell)h(scans)g(the)g(results)f(of)h(parameter)g -(expansion,)g(command)g(substitution,)g(and)f(arithmetic)150 -2485 y(expansion)g(that)h(did)f(not)g(o)s(ccur)h(within)e(double)h -(quotes)h(for)f(w)m(ord)g(splitting.)275 2625 y(The)e(shell)g(treats)i +y(The)28 b(pro)s(cess)h Fr(list)j Fu(is)d(run)e(async)m(hronously)-8 +b(,)30 b(and)e(its)i(input)e(or)h(output)f(app)s(ears)h(as)g(a)g +(\014lename.)41 b(This)150 408 y(\014lename)25 b(is)g(passed)g(as)g(an) +g(argumen)m(t)h(to)g(the)f(curren)m(t)g(command)g(as)g(the)g(result)g +(of)g(the)h(expansion.)38 b(If)150 518 y(the)28 b Ft(>\()p +Fj(list)p Ft(\))d Fu(form)i(is)g(used,)h(writing)f(to)h(the)g(\014le)f +(will)h(pro)m(vide)g(input)e(for)h Fr(list)p Fu(.)41 +b(If)26 b(the)i Ft(<\()p Fj(list)p Ft(\))d Fu(form)150 +628 y(is)g(used,)g(the)f(\014le)h(passed)f(as)h(an)f(argumen)m(t)h +(should)e(b)s(e)h(read)h(to)g(obtain)g(the)f(output)g(of)h +Fr(list)p Fu(.)40 b(Note)25 b(that)150 737 y(no)33 b(space)g(ma)m(y)g +(app)s(ear)f(b)s(et)m(w)m(een)i(the)f Ft(<)f Fu(or)h +Ft(>)f Fu(and)g(the)h(left)h(paren)m(thesis,)f(otherwise)h(the)f +(construct)150 847 y(w)m(ould)j(b)s(e)g(in)m(terpreted)g(as)h(a)f +(redirection.)59 b(Pro)s(cess)36 b(substitution)g(is)h(supp)s(orted)d +(on)i(systems)g(that)150 956 y(supp)s(ort)29 b(named)h(pip)s(es)f(\()p +Fm(fif)n(o)p Fu(s\))h(or)h(the)f Ft(/dev/fd)f Fu(metho)s(d)h(of)g +(naming)g(op)s(en)g(\014les.)275 1099 y(When)36 b(a)m(v)-5 +b(ailable,)40 b(pro)s(cess)c(substitution)h(is)f(p)s(erformed)f(sim)m +(ultaneously)i(with)g(parameter)g(and)150 1209 y(v)-5 +b(ariable)31 b(expansion,)g(command)f(substitution,)g(and)g(arithmetic) +i(expansion.)150 1417 y Fk(3.5.7)63 b(W)-10 b(ord)41 +b(Splitting)150 1564 y Fu(The)30 b(shell)h(scans)g(the)g(results)f(of)h +(parameter)g(expansion,)g(command)g(substitution,)g(and)f(arithmetic) +150 1673 y(expansion)g(that)h(did)f(not)g(o)s(ccur)h(within)e(double)h +(quotes)h(for)f(w)m(ord)g(splitting.)275 1816 y(The)e(shell)g(treats)i (eac)m(h)g(c)m(haracter)g(of)f Ft($IFS)e Fu(as)i(a)g(delimiter,)h(and)e -(splits)g(the)h(results)f(of)h(the)g(other)150 2735 y(expansions)22 +(splits)g(the)h(results)f(of)h(the)g(other)150 1926 y(expansions)22 b(in)m(to)i(w)m(ords)e(using)h(these)g(c)m(haracters)h(as)f(\014eld)f (terminators.)39 b(If)22 b Ft(IFS)g Fu(is)h(unset,)h(or)e(its)h(v)-5 -b(alue)150 2845 y(is)36 b(exactly)j Ft()p +b(alue)150 2036 y(is)36 b(exactly)j Ft()p Fu(,)32 b(the)37 b(default,)h(then)e(sequences)h(of)67 -b Ft()p Fu(,)36 b Ft()p Fu(,)h(and)150 2954 +b Ft()p Fu(,)36 b Ft()p Fu(,)h(and)150 2145 y Ft()28 b Fu(at)k(the)f(b)s(eginning)f(and)h(end)f(of)h(the)g (results)g(of)g(the)g(previous)g(expansions)f(are)i(ignored,)150 -3064 y(and)k(an)m(y)h(sequence)h(of)f Ft(IFS)f Fu(c)m(haracters)i(not)f +2255 y(and)k(an)m(y)h(sequence)h(of)f Ft(IFS)f Fu(c)m(haracters)i(not)f (at)h(the)f(b)s(eginning)f(or)h(end)f(serv)m(es)h(to)h(delimit)f(w)m -(ords.)150 3173 y(If)43 b Ft(IFS)f Fu(has)h(a)h(v)-5 +(ords.)150 2364 y(If)43 b Ft(IFS)f Fu(has)h(a)h(v)-5 b(alue)43 b(other)h(than)f(the)g(default,)k(then)c(sequences)h(of)f -(the)h(whitespace)f(c)m(haracters)150 3283 y Ft(space)p +(the)h(whitespace)f(c)m(haracters)150 2474 y Ft(space)p Fu(,)29 b Ft(tab)p Fu(,)h(and)g Ft(newline)e Fu(are)j(ignored)g(at)g (the)f(b)s(eginning)g(and)g(end)g(of)g(the)h(w)m(ord,)f(as)h(long)g(as) -g(the)150 3393 y(whitespace)c(c)m(haracter)h(is)f(in)f(the)g(v)-5 +g(the)150 2584 y(whitespace)c(c)m(haracter)h(is)f(in)f(the)g(v)-5 b(alue)27 b(of)g Ft(IFS)e Fu(\(an)i Ft(IFS)e Fu(whitespace)i(c)m -(haracter\).)42 b(An)m(y)26 b(c)m(haracter)i(in)150 3502 +(haracter\).)42 b(An)m(y)26 b(c)m(haracter)i(in)150 2693 y Ft(IFS)c Fu(that)h(is)g(not)f Ft(IFS)g Fu(whitespace,)j(along)f(with) e(an)m(y)h(adjacen)m(t)h Ft(IFS)e Fu(whitespace)h(c)m(haracters,)i -(delimits)150 3612 y(a)k(\014eld.)40 b(A)31 b(sequence)g(of)f +(delimits)150 2803 y(a)k(\014eld.)40 b(A)31 b(sequence)g(of)f Ft(IFS)g Fu(whitespace)h(c)m(haracters)h(is)e(also)h(treated)h(as)f(a)f -(delimiter.)42 b(If)30 b(the)g(v)-5 b(alue)150 3721 y(of)31 +(delimiter.)42 b(If)30 b(the)g(v)-5 b(alue)150 2912 y(of)31 b Ft(IFS)e Fu(is)h(n)m(ull,)h(no)f(w)m(ord)g(splitting)h(o)s(ccurs.)275 -3862 y(Explicit)21 b(n)m(ull)g(argumen)m(ts)g(\()p Ft("")g +3055 y(Explicit)21 b(n)m(ull)g(argumen)m(ts)g(\()p Ft("")g Fu(or)g Ft('')p Fu(\))f(are)h(retained)h(and)e(passed)g(to)i(commands)e -(as)i(empt)m(y)f(strings.)150 3971 y(Unquoted)37 b(implicit)i(n)m(ull)f +(as)i(empt)m(y)f(strings.)150 3165 y(Unquoted)37 b(implicit)i(n)m(ull)f (argumen)m(ts,)i(resulting)d(from)g(the)h(expansion)g(of)g(parameters)f -(that)i(ha)m(v)m(e)150 4081 y(no)32 b(v)-5 b(alues,)33 +(that)i(ha)m(v)m(e)150 3275 y(no)32 b(v)-5 b(alues,)33 b(are)f(remo)m(v)m(ed.)47 b(If)32 b(a)g(parameter)h(with)e(no)h(v)-5 b(alue)33 b(is)f(expanded)f(within)h(double)f(quotes,)j(a)150 -4190 y(n)m(ull)c(argumen)m(t)g(results)g(and)f(is)h(retained)g(and)f +3384 y(n)m(ull)c(argumen)m(t)g(results)g(and)f(is)h(retained)g(and)f (passed)g(to)i(a)f(command)g(as)g(an)f(empt)m(y)i(string.)40 -b(When)150 4300 y(a)f(quoted)f(n)m(ull)g(argumen)m(t)h(app)s(ears)e(as) +b(When)150 3494 y(a)f(quoted)f(n)m(ull)g(argumen)m(t)h(app)s(ears)e(as) i(part)f(of)g(a)g(w)m(ord)g(whose)g(expansion)g(is)h(non-n)m(ull,)h -(the)e(n)m(ull)150 4409 y(argumen)m(t)i(is)f(remo)m(v)m(ed.)69 +(the)e(n)m(ull)150 3603 y(argumen)m(t)i(is)f(remo)m(v)m(ed.)69 b(That)39 b(is,)j(the)e(w)m(ord)f Ft(-d'')f Fu(b)s(ecomes)i Ft(-d)e Fu(after)i(w)m(ord)f(splitting)h(and)f(n)m(ull)150 -4519 y(argumen)m(t)31 b(remo)m(v)-5 b(al.)275 4659 y(Note)31 +3713 y(argumen)m(t)31 b(remo)m(v)-5 b(al.)275 3856 y(Note)31 b(that)g(if)g(no)f(expansion)g(o)s(ccurs,)g(no)h(splitting)g(is)f(p)s -(erformed.)150 4864 y Fk(3.5.8)63 b(Filename)41 b(Expansion)150 -5011 y Fu(After)30 b(w)m(ord)f(splitting,)i(unless)d(the)i +(erformed.)150 4064 y Fk(3.5.8)63 b(Filename)41 b(Expansion)150 +4211 y Fu(After)30 b(w)m(ord)f(splitting,)i(unless)d(the)i Ft(-f)f Fu(option)h(has)f(b)s(een)g(set)h(\(see)g(Section)h(4.3.1)g -([The)e(Set)h(Builtin],)150 5121 y(page)d(61\),)i(Bash)d(scans)h(eac)m +([The)e(Set)h(Builtin],)150 4320 y(page)d(61\),)i(Bash)d(scans)h(eac)m (h)h(w)m(ord)e(for)g(the)h(c)m(haracters)g(`)p Ft(*)p Fu(',)h(`)p Ft(?)p Fu(',)g(and)e(`)p Ft([)p Fu('.)39 -b(If)26 b(one)h(of)g(these)f(c)m(haracters)150 5230 y(app)s(ears,)h +b(If)26 b(one)h(of)g(these)f(c)m(haracters)150 4430 y(app)s(ears,)h (then)f(the)h(w)m(ord)f(is)h(regarded)g(as)g(a)g Fr(pattern)p Fu(,)g(and)g(replaced)g(with)f(an)h(alphab)s(etically)h(sorted)150 -5340 y(list)k(of)f(\014lenames)g(matc)m(hing)h(the)f(pattern)g(\(see)h +4539 y(list)k(of)f(\014lenames)g(matc)m(hing)h(the)f(pattern)g(\(see)h (Section)f(3.5.8.1)j([P)m(attern)e(Matc)m(hing],)h(page)f(32\).)43 -b(If)p eop end +b(If)150 4649 y(no)26 b(matc)m(hing)i(\014lenames)e(are)h(found,)f(and) +g(the)h(shell)f(option)h Ft(nullglob)d Fu(is)j(disabled,)g(the)g(w)m +(ord)f(is)g(left)150 4759 y(unc)m(hanged.)40 b(If)30 +b(the)g Ft(nullglob)e Fu(option)i(is)h(set,)f(and)g(no)g(matc)m(hes)h +(are)g(found,)e(the)h(w)m(ord)g(is)g(remo)m(v)m(ed.)150 +4868 y(If)i(the)g Ft(failglob)e Fu(shell)i(option)h(is)f(set,)h(and)f +(no)g(matc)m(hes)h(are)g(found,)e(an)h(error)g(message)h(is)f(prin)m +(ted)150 4978 y(and)e(the)g(command)g(is)h(not)f(executed.)42 +b(If)30 b(the)g(shell)h(option)g Ft(nocaseglob)c Fu(is)k(enabled,)f +(the)h(matc)m(h)g(is)150 5087 y(p)s(erformed)e(without)h(regard)h(to)g +(the)f(case)i(of)e(alphab)s(etic)h(c)m(haracters.)275 +5230 y(When)23 b(a)h(pattern)f(is)h(used)f(for)g(\014lename)h +(expansion,)h(the)e(c)m(haracter)i(`)p Ft(.)p Fu(')f(at)g(the)g(start)g +(of)g(a)g(\014lename)150 5340 y(or)f(immediately)i(follo)m(wing)g(a)f +(slash)f(m)m(ust)h(b)s(e)f(matc)m(hed)h(explicitly)-8 +b(,)27 b(unless)c(the)g(shell)h(option)g Ft(dotglob)p +eop end %%Page: 32 38 TeXDict begin 32 37 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(32)150 299 -y(no)26 b(matc)m(hing)i(\014lenames)e(are)h(found,)f(and)g(the)h(shell) -f(option)h Ft(nullglob)d Fu(is)j(disabled,)g(the)g(w)m(ord)f(is)g(left) -150 408 y(unc)m(hanged.)40 b(If)30 b(the)g Ft(nullglob)e -Fu(option)i(is)h(set,)f(and)g(no)g(matc)m(hes)h(are)g(found,)e(the)h(w) -m(ord)g(is)g(remo)m(v)m(ed.)150 518 y(If)i(the)g Ft(failglob)e -Fu(shell)i(option)h(is)f(set,)h(and)f(no)g(matc)m(hes)h(are)g(found,)e -(an)h(error)g(message)h(is)f(prin)m(ted)150 628 y(and)e(the)g(command)g -(is)h(not)f(executed.)42 b(If)30 b(the)g(shell)h(option)g -Ft(nocaseglob)c Fu(is)k(enabled,)f(the)h(matc)m(h)g(is)150 -737 y(p)s(erformed)e(without)h(regard)h(to)g(the)f(case)i(of)e(alphab)s -(etic)h(c)m(haracters.)275 866 y(When)23 b(a)h(pattern)f(is)h(used)f -(for)g(\014lename)h(expansion,)h(the)e(c)m(haracter)i(`)p -Ft(.)p Fu(')f(at)g(the)g(start)g(of)g(a)g(\014lename)150 -976 y(or)f(immediately)i(follo)m(wing)g(a)f(slash)f(m)m(ust)h(b)s(e)f -(matc)m(hed)h(explicitly)-8 b(,)27 b(unless)c(the)g(shell)h(option)g -Ft(dotglob)150 1085 y Fu(is)k(set.)41 b(The)28 b(\014lenames)g(`)p -Ft(.)p Fu(')g(and)g(`)p Ft(..)p Fu(')g(m)m(ust)g(alw)m(a)m(ys)i(b)s(e)e -(matc)m(hed)h(explicitly)-8 b(,)30 b(ev)m(en)f(if)g Ft(dotglob)d -Fu(is)i(set.)150 1195 y(When)e(matc)m(hing)i(a)f(\014lename,)h(the)e +y(is)28 b(set.)41 b(The)28 b(\014lenames)g(`)p Ft(.)p +Fu(')g(and)g(`)p Ft(..)p Fu(')g(m)m(ust)g(alw)m(a)m(ys)i(b)s(e)e(matc)m +(hed)h(explicitly)-8 b(,)30 b(ev)m(en)f(if)g Ft(dotglob)d +Fu(is)i(set.)150 408 y(When)e(matc)m(hing)i(a)f(\014lename,)h(the)e (slash)h(c)m(haracter)h(m)m(ust)e(alw)m(a)m(ys)i(b)s(e)e(matc)m(hed)h -(explicitly)-8 b(.)42 b(In)26 b(other)150 1305 y(cases,)32 +(explicitly)-8 b(.)42 b(In)26 b(other)150 518 y(cases,)32 b(the)e(`)p Ft(.)p Fu(')h(c)m(haracter)h(is)e(not)h(treated)g(sp)s -(ecially)-8 b(.)275 1433 y(See)28 b(the)g(description)g(of)g +(ecially)-8 b(.)275 647 y(See)28 b(the)g(description)g(of)g Ft(shopt)e Fu(in)i(Section)g(4.3.2)i([The)e(Shopt)f(Builtin],)i(page)g -(65,)g(for)f(a)g(descrip-)150 1543 y(tion)j(of)f(the)h +(65,)g(for)f(a)g(descrip-)150 757 y(tion)j(of)f(the)h Ft(nocaseglob)p Fu(,)d Ft(nullglob)p Fu(,)g Ft(failglob)p -Fu(,)h(and)g Ft(dotglob)g Fu(options.)275 1672 y(The)36 +Fu(,)h(and)g Ft(dotglob)g Fu(options.)275 886 y(The)36 b Ft(GLOBIGNORE)d Fu(shell)k(v)-5 b(ariable)37 b(ma)m(y)g(b)s(e)f(used) g(to)h(restrict)g(the)g(set)g(of)g(\014le)f(names)h(matc)m(hing)150 -1782 y(a)42 b(pattern.)74 b(If)41 b Ft(GLOBIGNORE)e Fu(is)i(set,)k(eac) -m(h)e(matc)m(hing)f(\014le)g(name)f(that)h(also)h(matc)m(hes)f(one)g -(of)g(the)150 1891 y(patterns)34 b(in)g Ft(GLOBIGNORE)d -Fu(is)k(remo)m(v)m(ed)g(from)f(the)g(list)h(of)f(matc)m(hes.)54 -b(If)33 b(the)i Ft(nocaseglob)c Fu(option)k(is)150 2001 -y(set,)c(the)e(matc)m(hing)i(against)g(the)f(patterns)f(in)h -Ft(GLOBIGNORE)c Fu(is)k(p)s(erformed)e(without)i(regard)f(to)i(case.) -150 2110 y(The)d(\014lenames)h Ft(.)g Fu(and)f Ft(..)h -Fu(are)g(alw)m(a)m(ys)h(ignored)f(when)f Ft(GLOBIGNORE)f -Fu(is)i(set)g(and)f(not)h(n)m(ull.)41 b(Ho)m(w)m(ev)m(er,)150 -2220 y(setting)30 b Ft(GLOBIGNORE)d Fu(to)j(a)f(non-n)m(ull)g(v)-5 -b(alue)30 b(has)f(the)g(e\013ect)i(of)f(enabling)f(the)h -Ft(dotglob)d Fu(shell)i(option,)150 2330 y(so)j(all)h(other)f -(\014lenames)g(b)s(eginning)f(with)h(a)g(`)p Ft(.)p Fu(')g(will)h(matc) -m(h.)46 b(T)-8 b(o)32 b(get)h(the)f(old)g(b)s(eha)m(vior)g(of)h -(ignoring)150 2439 y(\014lenames)c(b)s(eginning)f(with)h(a)h(`)p -Ft(.)p Fu(',)f(mak)m(e)h(`)p Ft(.*)p Fu(')f(one)h(of)f(the)g(patterns)g -(in)g Ft(GLOBIGNORE)p Fu(.)37 b(The)29 b Ft(dotglob)150 -2549 y Fu(option)i(is)f(disabled)g(when)g Ft(GLOBIGNORE)d -Fu(is)k(unset.)150 2737 y Fk(3.5.8.1)63 b(P)m(attern)40 -b(Matc)m(hing)150 2884 y Fu(An)m(y)24 b(c)m(haracter)h(that)f(app)s +995 y(a)42 b(pattern.)74 b(If)41 b Ft(GLOBIGNORE)e Fu(is)i(set,)k(eac)m +(h)e(matc)m(hing)f(\014le)g(name)f(that)h(also)h(matc)m(hes)f(one)g(of) +g(the)150 1105 y(patterns)34 b(in)g Ft(GLOBIGNORE)d Fu(is)k(remo)m(v)m +(ed)g(from)f(the)g(list)h(of)f(matc)m(hes.)54 b(If)33 +b(the)i Ft(nocaseglob)c Fu(option)k(is)150 1214 y(set,)c(the)e(matc)m +(hing)i(against)g(the)f(patterns)f(in)h Ft(GLOBIGNORE)c +Fu(is)k(p)s(erformed)e(without)i(regard)f(to)i(case.)150 +1324 y(The)d(\014lenames)h Ft(.)g Fu(and)f Ft(..)h Fu(are)g(alw)m(a)m +(ys)h(ignored)f(when)f Ft(GLOBIGNORE)f Fu(is)i(set)g(and)f(not)h(n)m +(ull.)41 b(Ho)m(w)m(ev)m(er,)150 1433 y(setting)30 b +Ft(GLOBIGNORE)d Fu(to)j(a)f(non-n)m(ull)g(v)-5 b(alue)30 +b(has)f(the)g(e\013ect)i(of)f(enabling)f(the)h Ft(dotglob)d +Fu(shell)i(option,)150 1543 y(so)j(all)h(other)f(\014lenames)g(b)s +(eginning)f(with)h(a)g(`)p Ft(.)p Fu(')g(will)h(matc)m(h.)46 +b(T)-8 b(o)32 b(get)h(the)f(old)g(b)s(eha)m(vior)g(of)h(ignoring)150 +1653 y(\014lenames)c(b)s(eginning)f(with)h(a)h(`)p Ft(.)p +Fu(',)f(mak)m(e)h(`)p Ft(.*)p Fu(')f(one)h(of)f(the)g(patterns)g(in)g +Ft(GLOBIGNORE)p Fu(.)37 b(The)29 b Ft(dotglob)150 1762 +y Fu(option)i(is)f(disabled)g(when)g Ft(GLOBIGNORE)d +Fu(is)k(unset.)150 1950 y Fk(3.5.8.1)63 b(P)m(attern)40 +b(Matc)m(hing)150 2097 y Fu(An)m(y)24 b(c)m(haracter)h(that)f(app)s (ears)f(in)g(a)h(pattern,)i(other)e(than)f(the)h(sp)s(ecial)g(pattern)g -(c)m(haracters)h(describ)s(ed)150 2993 y(b)s(elo)m(w,)31 +(c)m(haracters)h(describ)s(ed)150 2207 y(b)s(elo)m(w,)31 b(matc)m(hes)g(itself.)42 b(The)29 b Fm(nul)h Fu(c)m(haracter)i(ma)m(y) e(not)h(o)s(ccur)f(in)g(a)h(pattern.)40 b(A)31 b(bac)m(kslash)g(escap)s -(es)150 3103 y(the)38 b(follo)m(wing)g(c)m(haracter;)43 +(es)150 2317 y(the)38 b(follo)m(wing)g(c)m(haracter;)43 b(the)37 b(escaping)i(bac)m(kslash)e(is)h(discarded)f(when)f(matc)m -(hing.)63 b(The)36 b(sp)s(ecial)150 3213 y(pattern)30 +(hing.)63 b(The)36 b(sp)s(ecial)150 2426 y(pattern)30 b(c)m(haracters)i(m)m(ust)f(b)s(e)e(quoted)i(if)f(they)h(are)f(to)i(b)s -(e)d(matc)m(hed)i(literally)-8 b(.)275 3342 y(The)29 +(e)d(matc)m(hed)i(literally)-8 b(.)275 2555 y(The)29 b(sp)s(ecial)i(pattern)g(c)m(haracters)h(ha)m(v)m(e)f(the)g(follo)m -(wing)h(meanings:)150 3490 y Ft(*)432 b Fu(Matc)m(hes)31 +(wing)h(meanings:)150 2703 y Ft(*)432 b Fu(Matc)m(hes)31 b(an)m(y)e(string,)h(including)f(the)g(n)m(ull)g(string.)41 b(When)29 b(the)g Ft(globstar)e Fu(shell)i(option)630 -3599 y(is)37 b(enabled,)h(and)e(`)p Ft(*)p Fu(')h(is)g(used)f(in)g(a)h +2813 y(is)37 b(enabled,)h(and)e(`)p Ft(*)p Fu(')h(is)g(used)f(in)g(a)h (\014lename)g(expansion)g(con)m(text,)j(t)m(w)m(o)e(adjacen)m(t)g(`)p -Ft(*)p Fu('s)630 3709 y(used)f(as)g(a)h(single)g(pattern)g(will)f(matc) +Ft(*)p Fu('s)630 2923 y(used)f(as)g(a)h(single)g(pattern)g(will)f(matc) m(h)i(all)f(\014les)f(and)g(zero)h(or)g(more)f(directories)i(and)630 -3819 y(sub)s(directories.)g(If)25 b(follo)m(w)m(ed)j(b)m(y)e(a)g(`)p +3032 y(sub)s(directories.)g(If)25 b(follo)m(w)m(ed)j(b)m(y)e(a)g(`)p Ft(/)p Fu(',)h(t)m(w)m(o)g(adjacen)m(t)h(`)p Ft(*)p Fu('s)e(will)g -(matc)m(h)h(only)f(directories)630 3928 y(and)k(sub)s(directories.)150 -4076 y Ft(?)432 b Fu(Matc)m(hes)32 b(an)m(y)f(single)g(c)m(haracter.) -150 4225 y Ft([...)o(])241 b Fu(Matc)m(hes)27 b(an)m(y)e(one)g(of)g +(matc)m(h)h(only)f(directories)630 3142 y(and)k(sub)s(directories.)150 +3290 y Ft(?)432 b Fu(Matc)m(hes)32 b(an)m(y)f(single)g(c)m(haracter.) +150 3438 y Ft([...)o(])241 b Fu(Matc)m(hes)27 b(an)m(y)e(one)g(of)g (the)g(enclosed)g(c)m(haracters.)41 b(A)25 b(pair)f(of)h(c)m(haracters) -i(separated)e(b)m(y)g(a)630 4334 y(h)m(yphen)k(denotes)i(a)g +i(separated)e(b)m(y)g(a)630 3548 y(h)m(yphen)k(denotes)i(a)g Fr(range)g(expression)p Fu(;)f(an)m(y)h(c)m(haracter)h(that)f(falls)g -(b)s(et)m(w)m(een)g(those)g(t)m(w)m(o)630 4444 y(c)m(haracters,)d +(b)s(et)m(w)m(een)g(those)g(t)m(w)m(o)630 3657 y(c)m(haracters,)d (inclusiv)m(e,)f(using)d(the)h(curren)m(t)f(lo)s(cale's)j(collating)g -(sequence)e(and)f(c)m(haracter)630 4554 y(set,)31 b(is)f(matc)m(hed.)42 +(sequence)e(and)f(c)m(haracter)630 3767 y(set,)31 b(is)f(matc)m(hed.)42 b(If)30 b(the)g(\014rst)g(c)m(haracter)i(follo)m(wing)g(the)e(`)p Ft([)p Fu(')h(is)f(a)h(`)p Ft(!)p Fu(')f(or)g(a)h(`)p -Ft(^)p Fu(')g(then)f(an)m(y)630 4663 y(c)m(haracter)c(not)f(enclosed)g +Ft(^)p Fu(')g(then)f(an)m(y)630 3877 y(c)m(haracter)c(not)f(enclosed)g (is)g(matc)m(hed.)40 b(A)25 b(`)p Fq(\000)p Fu(')f(ma)m(y)i(b)s(e)e -(matc)m(hed)h(b)m(y)f(including)h(it)g(as)g(the)630 4773 +(matc)m(hed)h(b)m(y)f(including)h(it)g(as)g(the)630 3986 y(\014rst)32 b(or)h(last)h(c)m(haracter)h(in)e(the)g(set.)50 b(A)33 b(`)p Ft(])p Fu(')g(ma)m(y)h(b)s(e)e(matc)m(hed)i(b)m(y)f -(including)g(it)g(as)h(the)630 4882 y(\014rst)25 b(c)m(haracter)i(in)e +(including)g(it)g(as)h(the)630 4096 y(\014rst)25 b(c)m(haracter)i(in)e (the)h(set.)40 b(The)25 b(sorting)h(order)f(of)h(c)m(haracters)h(in)f -(range)g(expressions)f(is)630 4992 y(determined)h(b)m(y)h(the)g(curren) +(range)g(expressions)f(is)630 4205 y(determined)h(b)m(y)h(the)g(curren) m(t)f(lo)s(cale)j(and)d(the)h(v)-5 b(alues)27 b(of)g(the)g -Ft(LC_COLLATE)d Fu(and)i Ft(LC_ALL)630 5101 y Fu(shell)31 -b(v)-5 b(ariables,)31 b(if)f(set.)630 5230 y(F)-8 b(or)34 +Ft(LC_COLLATE)d Fu(and)i Ft(LC_ALL)630 4315 y Fu(shell)31 +b(v)-5 b(ariables,)31 b(if)f(set.)630 4444 y(F)-8 b(or)34 b(example,)g(in)f(the)g(default)g(C)f(lo)s(cale,)k(`)p Ft([a-dx-z])p Fu(')31 b(is)i(equiv)-5 b(alen)m(t)34 b(to)g(`)p -Ft([abcdxyz])p Fu('.)630 5340 y(Man)m(y)68 b(lo)s(cales)h(sort)f(c)m +Ft([abcdxyz])p Fu('.)630 4554 y(Man)m(y)68 b(lo)s(cales)h(sort)f(c)m (haracters)h(in)e(dictionary)i(order,)76 b(and)67 b(in)g(these)h(lo)s -(cales)p eop end +(cales)630 4663 y(`)p Ft([a-dx-z])p Fu(')36 b(is)i(t)m(ypically)i(not)e +(equiv)-5 b(alen)m(t)39 b(to)g(`)p Ft([abcdxyz])p Fu(';)g(it)g(migh)m +(t)f(b)s(e)f(equiv)-5 b(alen)m(t)630 4773 y(to)34 b(`)p +Ft([aBbCcDdxXyYz])p Fu(',)c(for)j(example.)49 b(T)-8 +b(o)33 b(obtain)h(the)f(traditional)h(in)m(terpretation)h(of)630 +4882 y(ranges)e(in)f(brac)m(k)m(et)i(expressions,)g(y)m(ou)f(can)g +(force)g(the)g(use)f(of)h(the)g(C)f(lo)s(cale)i(b)m(y)f(setting)630 +4992 y(the)c Ft(LC_COLLATE)e Fu(or)i Ft(LC_ALL)f Fu(en)m(vironmen)m(t)i +(v)-5 b(ariable)30 b(to)g(the)f(v)-5 b(alue)30 b(`)p +Ft(C)p Fu(',)g(or)f(enable)h(the)630 5101 y Ft(globasciiranges)c +Fu(shell)31 b(option.)630 5230 y(Within)23 b(`)p Ft([)p +Fu(')h(and)e(`)p Ft(])p Fu(',)j Fr(c)m(haracter)g(classes)j +Fu(can)c(b)s(e)e(sp)s(eci\014ed)h(using)f(the)i(syn)m(tax)f +Ft([:)p Fr(class)t Ft(:])p Fu(,)630 5340 y(where)30 b +Fr(class)35 b Fu(is)30 b(one)h(of)f(the)h(follo)m(wing)h(classes)f +(de\014ned)e(in)h(the)h Fm(posix)f Fu(standard:)p eop +end %%Page: 33 39 TeXDict begin 33 38 bop 150 -116 a Fu(Chapter)30 b(3:)41 -b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(33)630 299 -y(`)p Ft([a-dx-z])p Fu(')36 b(is)i(t)m(ypically)i(not)e(equiv)-5 -b(alen)m(t)39 b(to)g(`)p Ft([abcdxyz])p Fu(';)g(it)g(migh)m(t)f(b)s(e)f -(equiv)-5 b(alen)m(t)630 408 y(to)34 b(`)p Ft([aBbCcDdxXyYz])p -Fu(',)c(for)j(example.)49 b(T)-8 b(o)33 b(obtain)h(the)f(traditional)h -(in)m(terpretation)h(of)630 518 y(ranges)e(in)f(brac)m(k)m(et)i -(expressions,)g(y)m(ou)f(can)g(force)g(the)g(use)f(of)h(the)g(C)f(lo)s -(cale)i(b)m(y)f(setting)630 628 y(the)c Ft(LC_COLLATE)e -Fu(or)i Ft(LC_ALL)f Fu(en)m(vironmen)m(t)i(v)-5 b(ariable)30 -b(to)g(the)f(v)-5 b(alue)30 b(`)p Ft(C)p Fu(',)g(or)f(enable)h(the)630 -737 y Ft(globasciiranges)c Fu(shell)31 b(option.)630 -871 y(Within)23 b(`)p Ft([)p Fu(')h(and)e(`)p Ft(])p -Fu(',)j Fr(c)m(haracter)g(classes)j Fu(can)c(b)s(e)e(sp)s(eci\014ed)h -(using)f(the)i(syn)m(tax)f Ft([:)p Fr(class)t Ft(:])p -Fu(,)630 981 y(where)30 b Fr(class)35 b Fu(is)30 b(one)h(of)f(the)h -(follo)m(wing)h(classes)f(de\014ned)e(in)h(the)h Fm(posix)f -Fu(standard:)870 1115 y Ft(alnum)142 b(alpha)g(ascii)f(blank)h(cntrl)g -(digit)g(graph)g(lower)870 1224 y(print)g(punct)g(space)f(upper)h(word) -190 b(xdigit)630 1358 y Fu(A)42 b(c)m(haracter)h(class)f(matc)m(hes)h -(an)m(y)f(c)m(haracter)h(b)s(elonging)f(to)g(that)g(class.)75 -b(The)41 b Ft(word)630 1468 y Fu(c)m(haracter)32 b(class)f(matc)m(hes)h -(letters,)f(digits,)h(and)d(the)i(c)m(haracter)h(`)p -Ft(_)p Fu('.)630 1602 y(Within)25 b(`)p Ft([)p Fu(')f(and)g(`)p -Ft(])p Fu(',)i(an)e Fr(equiv)-5 b(alence)26 b(class)j -Fu(can)24 b(b)s(e)g(sp)s(eci\014ed)g(using)g(the)g(syn)m(tax)h -Ft([=)p Fr(c)6 b Ft(=])p Fu(,)630 1711 y(whic)m(h)29 -b(matc)m(hes)i(all)f(c)m(haracters)h(with)e(the)h(same)g(collation)h(w) -m(eigh)m(t)g(\(as)f(de\014ned)e(b)m(y)i(the)630 1821 -y(curren)m(t)g(lo)s(cale\))j(as)d(the)h(c)m(haracter)h -Fr(c)p Fu(.)630 1955 y(Within)22 b(`)p Ft([)p Fu(')f(and)g(`)p -Ft(])p Fu(',)j(the)d(syn)m(tax)h Ft([.)p Fr(sym)m(b)s(ol)t -Ft(.])e Fu(matc)m(hes)i(the)g(collating)i(sym)m(b)s(ol)d -Fr(sym)m(b)s(ol)p Fu(.)275 2113 y(If)29 b(the)g Ft(extglob)f -Fu(shell)h(option)h(is)g(enabled)f(using)g(the)h Ft(shopt)e -Fu(builtin,)h(sev)m(eral)i(extended)f(pattern)150 2222 -y(matc)m(hing)37 b(op)s(erators)e(are)h(recognized.)58 +b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(33)870 299 +y Ft(alnum)142 b(alpha)g(ascii)f(blank)h(cntrl)g(digit)g(graph)g(lower) +870 408 y(print)g(punct)g(space)f(upper)h(word)190 b(xdigit)630 +543 y Fu(A)42 b(c)m(haracter)h(class)f(matc)m(hes)h(an)m(y)f(c)m +(haracter)h(b)s(elonging)f(to)g(that)g(class.)75 b(The)41 +b Ft(word)630 653 y Fu(c)m(haracter)32 b(class)f(matc)m(hes)h(letters,) +f(digits,)h(and)d(the)i(c)m(haracter)h(`)p Ft(_)p Fu('.)630 +788 y(Within)25 b(`)p Ft([)p Fu(')f(and)g(`)p Ft(])p +Fu(',)i(an)e Fr(equiv)-5 b(alence)26 b(class)j Fu(can)24 +b(b)s(e)g(sp)s(eci\014ed)g(using)g(the)g(syn)m(tax)h +Ft([=)p Fr(c)6 b Ft(=])p Fu(,)630 897 y(whic)m(h)29 b(matc)m(hes)i(all) +f(c)m(haracters)h(with)e(the)h(same)g(collation)h(w)m(eigh)m(t)g(\(as)f +(de\014ned)e(b)m(y)i(the)630 1007 y(curren)m(t)g(lo)s(cale\))j(as)d +(the)h(c)m(haracter)h Fr(c)p Fu(.)630 1142 y(Within)22 +b(`)p Ft([)p Fu(')f(and)g(`)p Ft(])p Fu(',)j(the)d(syn)m(tax)h +Ft([.)p Fr(sym)m(b)s(ol)t Ft(.])e Fu(matc)m(hes)i(the)g(collating)i +(sym)m(b)s(ol)d Fr(sym)m(b)s(ol)p Fu(.)275 1303 y(If)29 +b(the)g Ft(extglob)f Fu(shell)h(option)h(is)g(enabled)f(using)g(the)h +Ft(shopt)e Fu(builtin,)h(sev)m(eral)i(extended)f(pattern)150 +1412 y(matc)m(hing)37 b(op)s(erators)e(are)h(recognized.)58 b(In)35 b(the)g(follo)m(wing)i(description,)g(a)f Fr(pattern-list)j -Fu(is)d(a)g(list)g(of)150 2332 y(one)d(or)f(more)h(patterns)f +Fu(is)d(a)g(list)g(of)150 1522 y(one)d(or)f(more)h(patterns)f (separated)h(b)m(y)f(a)h(`)p Ft(|)p Fu('.)47 b(Comp)s(osite)33 b(patterns)f(ma)m(y)i(b)s(e)d(formed)h(using)g(one)h(or)150 -2442 y(more)e(of)f(the)h(follo)m(wing)g(sub-patterns:)150 -2600 y Ft(?\()p Fj(pattern-list)p Ft(\))630 2709 y Fu(Matc)m(hes)h +1631 y(more)e(of)f(the)h(follo)m(wing)g(sub-patterns:)150 +1792 y Ft(?\()p Fj(pattern-list)p Ft(\))630 1901 y Fu(Matc)m(hes)h (zero)f(or)g(one)f(o)s(ccurrence)h(of)f(the)h(giv)m(en)g(patterns.)150 -2867 y Ft(*\()p Fj(pattern-list)p Ft(\))630 2977 y Fu(Matc)m(hes)h +2062 y Ft(*\()p Fj(pattern-list)p Ft(\))630 2171 y Fu(Matc)m(hes)h (zero)f(or)g(more)f(o)s(ccurrences)h(of)f(the)h(giv)m(en)g(patterns.) -150 3135 y Ft(+\()p Fj(pattern-list)p Ft(\))630 3245 +150 2331 y Ft(+\()p Fj(pattern-list)p Ft(\))630 2441 y Fu(Matc)m(hes)h(one)f(or)f(more)h(o)s(ccurrences)f(of)h(the)f(giv)m -(en)i(patterns.)150 3403 y Ft(@\()p Fj(pattern-list)p -Ft(\))630 3513 y Fu(Matc)m(hes)g(one)f(of)f(the)h(giv)m(en)g(patterns.) -150 3671 y Ft(!\()p Fj(pattern-list)p Ft(\))630 3780 +(en)i(patterns.)150 2601 y Ft(@\()p Fj(pattern-list)p +Ft(\))630 2711 y Fu(Matc)m(hes)g(one)f(of)f(the)h(giv)m(en)g(patterns.) +150 2871 y Ft(!\()p Fj(pattern-list)p Ft(\))630 2981 y Fu(Matc)m(hes)h(an)m(ything)f(except)g(one)g(of)f(the)h(giv)m(en)g -(patterns.)275 3939 y(Complicated)41 b(extended)f(pattern)g(matc)m +(patterns.)275 3141 y(Complicated)41 b(extended)f(pattern)g(matc)m (hing)h(against)h(long)f(strings)f(is)g(slo)m(w,)k(esp)s(ecially)d -(when)150 4048 y(the)29 b(patterns)g(con)m(tain)i(alternations)f(and)f +(when)150 3251 y(the)29 b(patterns)g(con)m(tain)i(alternations)f(and)f (the)g(strings)g(con)m(tain)h(m)m(ultiple)g(matc)m(hes.)42 -b(Using)29 b(separate)150 4158 y(matc)m(hes)38 b(against)g(shorter)e +b(Using)29 b(separate)150 3360 y(matc)m(hes)38 b(against)g(shorter)e (strings,)i(or)f(using)f(arra)m(ys)h(of)g(strings)f(instead)h(of)g(a)g -(single)g(long)h(string,)150 4267 y(ma)m(y)31 b(b)s(e)f(faster.)150 -4465 y Fk(3.5.9)63 b(Quote)41 b(Remo)m(v)-7 b(al)150 -4612 y Fu(After)32 b(the)g(preceding)g(expansions,)h(all)f(unquoted)f +(single)g(long)h(string,)150 3470 y(ma)m(y)31 b(b)s(e)f(faster.)150 +3670 y Fk(3.5.9)63 b(Quote)41 b(Remo)m(v)-7 b(al)150 +3817 y Fu(After)32 b(the)g(preceding)g(expansions,)h(all)f(unquoted)f (o)s(ccurrences)h(of)g(the)h(c)m(haracters)g(`)p Ft(\\)p Fu(',)g(`)p Ft(')p Fu(',)f(and)g(`)p Ft(")p Fu(')150 -4722 y(that)f(did)f(not)g(result)g(from)g(one)h(of)g(the)f(ab)s(o)m(v)m -(e)i(expansions)e(are)h(remo)m(v)m(ed.)150 4961 y Fs(3.6)68 -b(Redirections)150 5121 y Fu(Before)32 b(a)f(command)f(is)h(executed,)h +3927 y(that)f(did)f(not)g(result)g(from)g(one)h(of)g(the)f(ab)s(o)m(v)m +(e)i(expansions)e(are)h(remo)m(v)m(ed.)150 4169 y Fs(3.6)68 +b(Redirections)150 4328 y Fu(Before)32 b(a)f(command)f(is)h(executed,)h (its)f(input)e(and)h(output)h(ma)m(y)g(b)s(e)f Fr(redirected)k -Fu(using)c(a)i(sp)s(ecial)f(no-)150 5230 y(tation)d(in)m(terpreted)f(b) +Fu(using)c(a)i(sp)s(ecial)f(no-)150 4438 y(tation)d(in)m(terpreted)f(b) m(y)f(the)h(shell.)40 b(Redirection)27 b(allo)m(ws)h(commands')f -(\014le)f(handles)g(to)i(b)s(e)e(duplicated,)150 5340 +(\014le)f(handles)g(to)i(b)s(e)e(duplicated,)150 4547 y(op)s(ened,)i(closed,)i(made)e(to)h(refer)f(to)h(di\013eren)m(t)f (\014les,)h(and)f(can)g(c)m(hange)h(the)g(\014les)f(the)g(command)g -(reads)p eop end +(reads)150 4657 y(from)39 b(and)g(writes)h(to.)69 b(Redirection)40 +b(ma)m(y)g(also)h(b)s(e)e(used)g(to)h(mo)s(dify)f(\014le)g(handles)g +(in)g(the)h(curren)m(t)150 4766 y(shell)e(execution)h(en)m(vironmen)m +(t.)65 b(The)37 b(follo)m(wing)j(redirection)f(op)s(erators)f(ma)m(y)g +(precede)h(or)f(app)s(ear)150 4876 y(an)m(ywhere)30 b(within)f(a)h +(simple)f(command)h(or)f(ma)m(y)i(follo)m(w)g(a)f(command.)40 +b(Redirections)30 b(are)g(pro)s(cessed)150 4986 y(in)g(the)h(order)f +(they)g(app)s(ear,)g(from)g(left)h(to)g(righ)m(t.)275 +5121 y(Eac)m(h)45 b(redirection)h(that)f(ma)m(y)h(b)s(e)e(preceded)g(b) +m(y)h(a)h(\014le)f(descriptor)f(n)m(um)m(b)s(er)g(ma)m(y)h(instead)h(b) +s(e)150 5230 y(preceded)41 b(b)m(y)g(a)h(w)m(ord)f(of)g(the)h(form)f +Fi({)p Fr(v)-5 b(arname)5 b Fi(})p Fu(.)74 b(In)41 b(this)g(case,)k +(for)c(eac)m(h)i(redirection)f(op)s(erator)150 5340 y(except)30 +b Ft(>)p Fu(&-)f(and)f Ft(<)p Fu(&-,)h(the)g(shell)g(will)h(allo)s +(cate)h(a)e(\014le)h(descriptor)e(greater)j(than)d(10)i(and)e(assign)i +(it)f(to)p eop end %%Page: 34 40 TeXDict begin 34 39 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(34)150 299 -y(from)39 b(and)g(writes)h(to.)69 b(Redirection)40 b(ma)m(y)g(also)h(b) -s(e)e(used)g(to)h(mo)s(dify)f(\014le)g(handles)g(in)g(the)h(curren)m(t) -150 408 y(shell)e(execution)h(en)m(vironmen)m(t.)65 b(The)37 -b(follo)m(wing)j(redirection)f(op)s(erators)f(ma)m(y)g(precede)h(or)f -(app)s(ear)150 518 y(an)m(ywhere)30 b(within)f(a)h(simple)f(command)h -(or)f(ma)m(y)i(follo)m(w)g(a)f(command.)40 b(Redirections)30 -b(are)g(pro)s(cessed)150 628 y(in)g(the)h(order)f(they)g(app)s(ear,)g -(from)g(left)h(to)g(righ)m(t.)275 758 y(Eac)m(h)45 b(redirection)h -(that)f(ma)m(y)h(b)s(e)e(preceded)g(b)m(y)h(a)h(\014le)f(descriptor)f -(n)m(um)m(b)s(er)g(ma)m(y)h(instead)h(b)s(e)150 868 y(preceded)41 -b(b)m(y)g(a)h(w)m(ord)f(of)g(the)h(form)f Fi({)p Fr(v)-5 -b(arname)5 b Fi(})p Fu(.)74 b(In)41 b(this)g(case,)k(for)c(eac)m(h)i -(redirection)f(op)s(erator)150 977 y(except)30 b Ft(>)p -Fu(&-)f(and)f Ft(<)p Fu(&-,)h(the)g(shell)g(will)h(allo)s(cate)h(a)e -(\014le)h(descriptor)e(greater)j(than)d(10)i(and)e(assign)i(it)f(to)150 -1087 y Fi({)p Fr(v)-5 b(arname)5 b Fi(})p Fu(.)45 b(If)31 +y Fi({)p Fr(v)-5 b(arname)5 b Fi(})p Fu(.)45 b(If)31 b Ft(>)p Fu(&-)g(or)h Ft(<)p Fu(&-)f(is)h(preceded)f(b)m(y)g Fi({)p Fr(v)-5 b(arname)5 b Fi(})p Fu(,)33 b(the)f(v)-5 b(alue)32 b(of)g Fr(v)-5 b(arname)36 b Fu(de\014nes)31 -b(the)h(\014le)150 1196 y(descriptor)i(to)g(close.)52 +b(the)h(\014le)150 408 y(descriptor)i(to)g(close.)52 b(If)34 b Fi({)p Fr(v)-5 b(arname)5 b Fi(})34 b Fu(is)g(supplied,)g (the)g(redirection)g(p)s(ersists)f(b)s(ey)m(ond)g(the)h(scop)s(e)g(of) -150 1306 y(the)d(command,)f(allo)m(wing)i(the)f(shell)f(programmer)g -(to)h(manage)h(the)e(\014le)h(descriptor)f(himself.)275 -1437 y(In)d(the)i(follo)m(wing)h(descriptions,)g(if)e(the)h(\014le)g +150 518 y(the)d(command,)f(allo)m(wing)i(the)f(shell)f(programmer)g(to) +h(manage)h(the)e(\014le)h(descriptor)f(himself.)275 670 +y(In)d(the)i(follo)m(wing)h(descriptions,)g(if)e(the)h(\014le)g (descriptor)f(n)m(um)m(b)s(er)g(is)g(omitted,)i(and)f(the)f(\014rst)g -(c)m(har-)150 1546 y(acter)42 b(of)f(the)g(redirection)g(op)s(erator)g +(c)m(har-)150 780 y(acter)42 b(of)f(the)g(redirection)g(op)s(erator)g (is)g(`)p Ft(<)p Fu(',)i(the)e(redirection)g(refers)g(to)g(the)g -(standard)f(input)f(\(\014le)150 1656 y(descriptor)33 +(standard)f(input)f(\(\014le)150 890 y(descriptor)33 b(0\).)49 b(If)33 b(the)g(\014rst)f(c)m(haracter)i(of)g(the)f (redirection)g(op)s(erator)h(is)f(`)p Ft(>)p Fu(',)h(the)f(redirection) -g(refers)150 1765 y(to)e(the)g(standard)e(output)h(\(\014le)h -(descriptor)f(1\).)275 1896 y(The)h(w)m(ord)h(follo)m(wing)i(the)f +g(refers)150 999 y(to)e(the)g(standard)e(output)h(\(\014le)h +(descriptor)f(1\).)275 1152 y(The)h(w)m(ord)h(follo)m(wing)i(the)f (redirection)g(op)s(erator)f(in)g(the)h(follo)m(wing)h(descriptions,)f -(unless)e(other-)150 2005 y(wise)21 b(noted,)i(is)e(sub)5 +(unless)e(other-)150 1261 y(wise)21 b(noted,)i(is)e(sub)5 b(jected)21 b(to)h(brace)f(expansion,)i(tilde)f(expansion,)h(parameter) -e(expansion,)i(command)150 2115 y(substitution,)31 b(arithmetic)h +e(expansion,)i(command)150 1371 y(substitution,)31 b(arithmetic)h (expansion,)f(quote)h(remo)m(v)-5 b(al,)33 b(\014lename)e(expansion,)g -(and)f(w)m(ord)h(splitting.)150 2225 y(If)f(it)h(expands)e(to)i(more)g +(and)f(w)m(ord)h(splitting.)150 1480 y(If)f(it)h(expands)e(to)i(more)g (than)f(one)h(w)m(ord,)f(Bash)h(rep)s(orts)e(an)h(error.)275 -2355 y(Note)h(that)g(the)g(order)f(of)g(redirections)h(is)g +1633 y(Note)h(that)g(the)g(order)f(of)g(redirections)h(is)g (signi\014can)m(t.)41 b(F)-8 b(or)31 b(example,)h(the)e(command)390 -2485 y Ft(ls)47 b(>)h Fj(dirlist)d Ft(2>&1)150 2616 y +1785 y Ft(ls)47 b(>)h Fj(dirlist)d Ft(2>&1)150 1937 y Fu(directs)28 b(b)s(oth)f(standard)g(output)g(\(\014le)h(descriptor)f (1\))i(and)e(standard)f(error)i(\(\014le)g(descriptor)f(2\))h(to)h(the) -150 2725 y(\014le)h Fr(dirlist)p Fu(,)h(while)f(the)h(command)390 -2856 y Ft(ls)47 b(2>&1)g(>)g Fj(dirlist)150 2986 y Fu(directs)28 +150 2047 y(\014le)h Fr(dirlist)p Fu(,)h(while)f(the)h(command)390 +2199 y Ft(ls)47 b(2>&1)g(>)g Fj(dirlist)150 2352 y Fu(directs)28 b(only)f(the)h(standard)e(output)i(to)g(\014le)f Fr(dirlist)p Fu(,)h(b)s(ecause)g(the)f(standard)g(error)g(w)m(as)h(made)f(a)h(cop)m -(y)150 3096 y(of)j(the)f(standard)g(output)g(b)s(efore)g(the)g +(y)150 2461 y(of)j(the)f(standard)g(output)g(b)s(efore)g(the)g (standard)g(output)g(w)m(as)g(redirected)h(to)g Fr(dirlist)p -Fu(.)275 3226 y(Bash)26 b(handles)f(sev)m(eral)j(\014lenames)e(sp)s +Fu(.)275 2614 y(Bash)26 b(handles)f(sev)m(eral)j(\014lenames)e(sp)s (ecially)h(when)f(they)g(are)g(used)g(in)g(redirections,)i(as)e -(describ)s(ed)150 3336 y(in)38 b(the)h(follo)m(wing)h(table.)66 +(describ)s(ed)150 2723 y(in)38 b(the)h(follo)m(wing)h(table.)66 b(If)38 b(the)h(op)s(erating)g(system)f(on)h(whic)m(h)f(Bash)h(is)f -(running)f(pro)m(vides)h(these)150 3446 y(sp)s(ecial)27 +(running)f(pro)m(vides)h(these)150 2833 y(sp)s(ecial)27 b(\014les,)g(bash)e(will)i(use)f(them;)h(otherwise)g(it)f(will)h(em)m (ulate)h(them)e(in)m(ternally)h(with)f(the)g(b)s(eha)m(vior)150 -3555 y(describ)s(ed)j(b)s(elo)m(w.)150 3707 y Ft(/dev/fd/)p -Fj(fd)630 3816 y Fu(If)h Fr(fd)j Fu(is)d(a)h(v)-5 b(alid)31 +2942 y(describ)s(ed)j(b)s(elo)m(w.)150 3129 y Ft(/dev/fd/)p +Fj(fd)630 3238 y Fu(If)h Fr(fd)j Fu(is)d(a)h(v)-5 b(alid)31 b(in)m(teger,)h(\014le)e(descriptor)h Fr(fd)i Fu(is)d(duplicated.)150 -3968 y Ft(/dev/stdin)630 4077 y Fu(File)i(descriptor)e(0)h(is)f -(duplicated.)150 4228 y Ft(/dev/stdout)630 4338 y Fu(File)i(descriptor) -e(1)h(is)f(duplicated.)150 4489 y Ft(/dev/stderr)630 -4599 y Fu(File)i(descriptor)e(2)h(is)f(duplicated.)150 -4750 y Ft(/dev/tcp/)p Fj(host)p Ft(/)p Fj(port)630 4860 +3416 y Ft(/dev/stdin)630 3525 y Fu(File)i(descriptor)e(0)h(is)f +(duplicated.)150 3702 y Ft(/dev/stdout)630 3812 y Fu(File)i(descriptor) +e(1)h(is)f(duplicated.)150 3989 y Ft(/dev/stderr)630 +4099 y Fu(File)i(descriptor)e(2)h(is)f(duplicated.)150 +4276 y Ft(/dev/tcp/)p Fj(host)p Ft(/)p Fj(port)630 4386 y Fu(If)41 b Fr(host)i Fu(is)f(a)g(v)-5 b(alid)41 b(hostname)h(or)f(In) m(ternet)h(address,)i(and)c Fr(p)s(ort)j Fu(is)f(an)f(in)m(teger)i(p)s -(ort)630 4969 y(n)m(um)m(b)s(er)23 b(or)i(service)h(name,)g(Bash)f +(ort)630 4495 y(n)m(um)m(b)s(er)23 b(or)i(service)h(name,)g(Bash)f (attempts)h(to)f(op)s(en)f(the)h(corresp)s(onding)f(TCP)g(so)s(c)m(k)m -(et.)150 5121 y Ft(/dev/udp/)p Fj(host)p Ft(/)p Fj(port)630 -5230 y Fu(If)41 b Fr(host)i Fu(is)f(a)g(v)-5 b(alid)41 +(et.)150 4673 y Ft(/dev/udp/)p Fj(host)p Ft(/)p Fj(port)630 +4782 y Fu(If)41 b Fr(host)i Fu(is)f(a)g(v)-5 b(alid)41 b(hostname)h(or)f(In)m(ternet)h(address,)i(and)c Fr(p)s(ort)j -Fu(is)f(an)f(in)m(teger)i(p)s(ort)630 5340 y(n)m(um)m(b)s(er)23 +Fu(is)f(an)f(in)m(teger)i(p)s(ort)630 4892 y(n)m(um)m(b)s(er)23 b(or)h(service)h(name,)h(Bash)e(attempts)h(to)g(op)s(en)f(the)g -(corresp)s(onding)f(UDP)i(so)s(c)m(k)m(et.)p eop end +(corresp)s(onding)f(UDP)i(so)s(c)m(k)m(et.)275 5078 y(A)30 +b(failure)h(to)g(op)s(en)e(or)i(create)h(a)e(\014le)h(causes)g(the)f +(redirection)h(to)g(fail.)275 5230 y(Redirections)f(using)e(\014le)i +(descriptors)f(greater)h(than)f(9)h(should)e(b)s(e)h(used)f(with)h +(care,)h(as)g(they)f(ma)m(y)150 5340 y(con\015ict)i(with)f(\014le)h +(descriptors)f(the)g(shell)h(uses)f(in)m(ternally)-8 +b(.)p eop end %%Page: 35 41 TeXDict begin 35 40 bop 150 -116 a Fu(Chapter)30 b(3:)41 -b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(35)275 299 -y(A)30 b(failure)h(to)g(op)s(en)e(or)i(create)h(a)e(\014le)h(causes)g -(the)f(redirection)h(to)g(fail.)275 439 y(Redirections)f(using)e -(\014le)i(descriptors)f(greater)h(than)f(9)h(should)e(b)s(e)h(used)f -(with)h(care,)h(as)g(they)f(ma)m(y)150 548 y(con\015ict)i(with)f -(\014le)h(descriptors)f(the)g(shell)h(uses)f(in)m(ternally)-8 -b(.)150 753 y Fk(3.6.1)63 b(Redirecting)40 b(Input)150 -900 y Fu(Redirection)35 b(of)f(input)f(causes)i(the)f(\014le)g(whose)g -(name)g(results)g(from)g(the)g(expansion)g(of)g Fr(w)m(ord)k -Fu(to)d(b)s(e)150 1010 y(op)s(ened)d(for)g(reading)g(on)g(\014le)h -(descriptor)f Ft(n)p Fu(,)h(or)f(the)g(standard)g(input)f(\(\014le)i -(descriptor)f(0\))h(if)f Ft(n)g Fu(is)h(not)150 1119 -y(sp)s(eci\014ed.)275 1259 y(The)c(general)j(format)e(for)h -(redirecting)g(input)e(is:)390 1399 y Ft([)p Fj(n)p Ft(]<)p -Fj(word)150 1604 y Fk(3.6.2)63 b(Redirecting)40 b(Output)150 -1751 y Fu(Redirection)31 b(of)g(output)f(causes)h(the)f(\014le)h(whose) -f(name)g(results)h(from)e(the)i(expansion)f(of)h Fr(w)m(ord)i -Fu(to)f(b)s(e)150 1861 y(op)s(ened)d(for)g(writing)g(on)g(\014le)h -(descriptor)f Fr(n)p Fu(,)g(or)g(the)h(standard)e(output)h(\(\014le)h -(descriptor)f(1\))h(if)g Fr(n)e Fu(is)i(not)150 1970 -y(sp)s(eci\014ed.)40 b(If)30 b(the)g(\014le)h(do)s(es)f(not)h(exist)g -(it)g(is)f(created;)i(if)e(it)h(do)s(es)f(exist)h(it)g(is)g(truncated)f -(to)h(zero)g(size.)275 2110 y(The)e(general)j(format)e(for)h -(redirecting)g(output)f(is:)390 2250 y Ft([)p Fj(n)p -Ft(]>[|])p Fj(word)275 2390 y Fu(If)g(the)h(redirection)g(op)s(erator)g -(is)g(`)p Ft(>)p Fu(',)g(and)f(the)h Ft(noclobber)d Fu(option)j(to)g -(the)g Ft(set)f Fu(builtin)g(has)h(b)s(een)150 2500 y(enabled,)h(the)g +b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(35)150 299 +y Fk(3.6.1)63 b(Redirecting)40 b(Input)150 446 y Fu(Redirection)35 +b(of)f(input)f(causes)i(the)f(\014le)g(whose)g(name)g(results)g(from)g +(the)g(expansion)g(of)g Fr(w)m(ord)k Fu(to)d(b)s(e)150 +555 y(op)s(ened)d(for)g(reading)g(on)g(\014le)h(descriptor)f +Ft(n)p Fu(,)h(or)f(the)g(standard)g(input)f(\(\014le)i(descriptor)f +(0\))h(if)f Ft(n)g Fu(is)h(not)150 665 y(sp)s(eci\014ed.)275 +805 y(The)c(general)j(format)e(for)h(redirecting)g(input)e(is:)390 +944 y Ft([)p Fj(n)p Ft(]<)p Fj(word)150 1149 y Fk(3.6.2)63 +b(Redirecting)40 b(Output)150 1296 y Fu(Redirection)31 +b(of)g(output)f(causes)h(the)f(\014le)h(whose)f(name)g(results)h(from)e +(the)i(expansion)f(of)h Fr(w)m(ord)i Fu(to)f(b)s(e)150 +1405 y(op)s(ened)d(for)g(writing)g(on)g(\014le)h(descriptor)f +Fr(n)p Fu(,)g(or)g(the)h(standard)e(output)h(\(\014le)h(descriptor)f +(1\))h(if)g Fr(n)e Fu(is)i(not)150 1515 y(sp)s(eci\014ed.)40 +b(If)30 b(the)g(\014le)h(do)s(es)f(not)h(exist)g(it)g(is)f(created;)i +(if)e(it)h(do)s(es)f(exist)h(it)g(is)g(truncated)f(to)h(zero)g(size.) +275 1654 y(The)e(general)j(format)e(for)h(redirecting)g(output)f(is:) +390 1794 y Ft([)p Fj(n)p Ft(]>[|])p Fj(word)275 1934 +y Fu(If)g(the)h(redirection)g(op)s(erator)g(is)g(`)p +Ft(>)p Fu(',)g(and)f(the)h Ft(noclobber)d Fu(option)j(to)g(the)g +Ft(set)f Fu(builtin)g(has)h(b)s(een)150 2043 y(enabled,)h(the)g (redirection)h(will)f(fail)h(if)e(the)i(\014le)e(whose)h(name)g (results)g(from)f(the)h(expansion)g(of)g Fr(w)m(ord)150 -2609 y Fu(exists)f(and)f(is)g(a)h(regular)g(\014le.)41 +2153 y Fu(exists)f(and)f(is)g(a)h(regular)g(\014le.)41 b(If)30 b(the)h(redirection)g(op)s(erator)g(is)f(`)p Ft(>|)p Fu(',)h(or)f(the)h(redirection)g(op)s(erator)g(is)150 -2719 y(`)p Ft(>)p Fu(')36 b(and)f(the)g Ft(noclobber)e +2262 y(`)p Ft(>)p Fu(')36 b(and)f(the)g Ft(noclobber)e Fu(option)j(is)g(not)g(enabled,)h(the)e(redirection)h(is)g(attempted)g -(ev)m(en)h(if)e(the)h(\014le)150 2829 y(named)30 b(b)m(y)g -Fr(w)m(ord)k Fu(exists.)150 3033 y Fk(3.6.3)63 b(App)s(ending)42 -b(Redirected)e(Output)150 3180 y Fu(Redirection)23 b(of)e(output)h(in)f +(ev)m(en)h(if)e(the)h(\014le)150 2372 y(named)30 b(b)m(y)g +Fr(w)m(ord)k Fu(exists.)150 2576 y Fk(3.6.3)63 b(App)s(ending)42 +b(Redirected)e(Output)150 2723 y Fu(Redirection)23 b(of)e(output)h(in)f (this)h(fashion)f(causes)h(the)g(\014le)g(whose)f(name)h(results)f -(from)g(the)h(expansion)g(of)150 3290 y Fr(w)m(ord)28 +(from)g(the)h(expansion)g(of)150 2833 y Fr(w)m(ord)28 b Fu(to)e(b)s(e)e(op)s(ened)g(for)h(app)s(ending)e(on)i(\014le)g (descriptor)g Fr(n)p Fu(,)g(or)g(the)g(standard)f(output)h(\(\014le)g -(descriptor)150 3399 y(1\))31 b(if)f Fr(n)g Fu(is)h(not)f(sp)s +(descriptor)150 2942 y(1\))31 b(if)f Fr(n)g Fu(is)h(not)f(sp)s (eci\014ed.)40 b(If)30 b(the)h(\014le)f(do)s(es)g(not)h(exist)g(it)g -(is)f(created.)275 3539 y(The)f(general)j(format)e(for)h(app)s(ending)e -(output)h(is:)390 3679 y Ft([)p Fj(n)p Ft(]>>)p Fj(word)150 -3884 y Fk(3.6.4)63 b(Redirecting)40 b(Standard)h(Output)g(and)g -(Standard)g(Error)150 4031 y Fu(This)33 b(construct)i(allo)m(ws)g(b)s +(is)f(created.)275 3082 y(The)f(general)j(format)e(for)h(app)s(ending)e +(output)h(is:)390 3222 y Ft([)p Fj(n)p Ft(]>>)p Fj(word)150 +3426 y Fk(3.6.4)63 b(Redirecting)40 b(Standard)h(Output)g(and)g +(Standard)g(Error)150 3573 y Fu(This)33 b(construct)i(allo)m(ws)g(b)s (oth)f(the)g(standard)g(output)f(\(\014le)i(descriptor)f(1\))h(and)f -(the)g(standard)f(error)150 4141 y(output)d(\(\014le)h(descriptor)f +(the)g(standard)f(error)150 3683 y(output)d(\(\014le)h(descriptor)f (2\))h(to)g(b)s(e)f(redirected)h(to)g(the)f(\014le)h(whose)f(name)h(is) -f(the)g(expansion)h(of)f Fr(w)m(ord)p Fu(.)275 4281 y(There)f(are)i(t)m +f(the)g(expansion)h(of)f Fr(w)m(ord)p Fu(.)275 3822 y(There)f(are)i(t)m (w)m(o)h(formats)e(for)h(redirecting)g(standard)e(output)h(and)g -(standard)f(error:)390 4421 y Ft(&>)p Fj(word)150 4561 -y Fu(and)390 4701 y Ft(>&)p Fj(word)150 4841 y Fu(Of)h(the)g(t)m(w)m(o) +(standard)f(error:)390 3962 y Ft(&>)p Fj(word)150 4101 +y Fu(and)390 4241 y Ft(>&)p Fj(word)150 4381 y Fu(Of)h(the)g(t)m(w)m(o) i(forms,)e(the)h(\014rst)e(is)i(preferred.)39 b(This)30 b(is)g(seman)m(tically)j(equiv)-5 b(alen)m(t)32 b(to)390 -4981 y Ft(>)p Fj(word)46 b Ft(2>&1)275 5121 y Fu(When)41 +4520 y Ft(>)p Fj(word)46 b Ft(2>&1)275 4660 y Fu(When)41 b(using)g(the)h(second)f(form,)k Fr(w)m(ord)f Fu(ma)m(y)e(not)g(expand) f(to)h(a)g(n)m(um)m(b)s(er)f(or)g(`)p Ft(-)p Fu('.)75 -b(If)41 b(it)h(do)s(es,)150 5230 y(other)27 b(redirection)g(op)s +b(If)41 b(it)h(do)s(es,)150 4769 y(other)27 b(redirection)g(op)s (erators)f(apply)h(\(see)g(Duplicating)h(File)f(Descriptors)h(b)s(elo)m -(w\))f(for)f(compatibilit)m(y)150 5340 y(reasons.)p eop +(w\))f(for)f(compatibilit)m(y)150 4879 y(reasons.)150 +5083 y Fk(3.6.5)63 b(App)s(ending)42 b(Standard)f(Output)g(and)g +(Standard)g(Error)150 5230 y Fu(This)33 b(construct)i(allo)m(ws)g(b)s +(oth)f(the)g(standard)g(output)f(\(\014le)i(descriptor)f(1\))h(and)f +(the)g(standard)f(error)150 5340 y(output)d(\(\014le)h(descriptor)f +(2\))h(to)g(b)s(e)f(app)s(ended)f(to)i(the)f(\014le)h(whose)f(name)g +(is)h(the)f(expansion)h(of)f Fr(w)m(ord)p Fu(.)p eop end %%Page: 36 42 TeXDict begin 36 41 bop 150 -116 a Fu(Chapter)30 b(3:)41 -b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(36)150 299 -y Fk(3.6.5)63 b(App)s(ending)42 b(Standard)f(Output)g(and)g(Standard)g -(Error)150 446 y Fu(This)33 b(construct)i(allo)m(ws)g(b)s(oth)f(the)g -(standard)g(output)f(\(\014le)i(descriptor)f(1\))h(and)f(the)g -(standard)f(error)150 555 y(output)d(\(\014le)h(descriptor)f(2\))h(to)g -(b)s(e)f(app)s(ended)f(to)i(the)f(\014le)h(whose)f(name)g(is)h(the)f -(expansion)h(of)f Fr(w)m(ord)p Fu(.)275 691 y(The)f(format)i(for)f(app) -s(ending)f(standard)h(output)g(and)f(standard)h(error)g(is:)390 -828 y Ft(&>>)p Fj(word)150 964 y Fu(This)g(is)g(seman)m(tically)j -(equiv)-5 b(alen)m(t)32 b(to)390 1100 y Ft(>>)p Fj(word)46 -b Ft(2>&1)275 1236 y Fu(\(see)31 b(Duplicating)h(File)f(Descriptors)g -(b)s(elo)m(w\).)150 1436 y Fk(3.6.6)63 b(Here)41 b(Do)s(cumen)m(ts)150 -1583 y Fu(This)26 b(t)m(yp)s(e)g(of)h(redirection)g(instructs)f(the)g -(shell)h(to)g(read)f(input)g(from)g(the)g(curren)m(t)h(source)f(un)m -(til)h(a)g(line)150 1693 y(con)m(taining)h(only)e Fr(w)m(ord)k +b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(36)275 299 +y(The)29 b(format)i(for)f(app)s(ending)f(standard)h(output)g(and)f +(standard)h(error)g(is:)390 442 y Ft(&>>)p Fj(word)150 +585 y Fu(This)g(is)g(seman)m(tically)j(equiv)-5 b(alen)m(t)32 +b(to)390 728 y Ft(>>)p Fj(word)46 b Ft(2>&1)275 871 y +Fu(\(see)31 b(Duplicating)h(File)f(Descriptors)g(b)s(elo)m(w\).)150 +1079 y Fk(3.6.6)63 b(Here)41 b(Do)s(cumen)m(ts)150 1226 +y Fu(This)26 b(t)m(yp)s(e)g(of)h(redirection)g(instructs)f(the)g(shell) +h(to)g(read)f(input)g(from)g(the)g(curren)m(t)h(source)f(un)m(til)h(a)g +(line)150 1336 y(con)m(taining)h(only)e Fr(w)m(ord)k Fu(\(with)c(no)g(trailing)h(blanks\))f(is)g(seen.)40 b(All)27 b(of)f(the)g(lines)h(read)f(up)f(to)i(that)g(p)s(oin)m(t)150 -1803 y(are)k(then)f(used)f(as)i(the)g(standard)e(input)h(\(or)g(\014le) +1445 y(are)k(then)f(used)f(as)i(the)g(standard)e(input)h(\(or)g(\014le) h(descriptor)f Fr(n)g Fu(if)g Fr(n)g Fu(is)g(sp)s(eci\014ed\))g(for)h -(a)f(command.)275 1939 y(The)f(format)i(of)g(here-do)s(cumen)m(ts)f -(is:)390 2075 y Ft([)p Fj(n)p Ft(]<<[)p Fq(\000)p Ft(])p -Fj(word)772 2184 y(here-document)390 2294 y(delimiter)275 -2430 y Fu(No)i(parameter)h(and)f(v)-5 b(ariable)32 b(expansion,)h +(a)f(command.)275 1589 y(The)f(format)i(of)g(here-do)s(cumen)m(ts)f +(is:)390 1732 y Ft([)p Fj(n)p Ft(]<<[)p Fq(\000)p Ft(])p +Fj(word)772 1841 y(here-document)390 1951 y(delimiter)275 +2094 y Fu(No)i(parameter)h(and)f(v)-5 b(ariable)32 b(expansion,)h (command)f(substitution,)h(arithmetic)g(expansion,)g(or)150 -2540 y(\014lename)26 b(expansion)g(is)g(p)s(erformed)e(on)i +2204 y(\014lename)26 b(expansion)g(is)g(p)s(erformed)e(on)i Fr(w)m(ord)p Fu(.)39 b(If)25 b(an)m(y)i(part)e(of)h Fr(w)m(ord)j Fu(is)d(quoted,)i(the)e Fr(delimiter)33 b Fu(is)26 b(the)150 -2649 y(result)33 b(of)g(quote)g(remo)m(v)-5 b(al)34 b(on)f +2313 y(result)33 b(of)g(quote)g(remo)m(v)-5 b(al)34 b(on)f Fr(w)m(ord)p Fu(,)g(and)f(the)h(lines)g(in)g(the)g(here-do)s(cumen)m(t) -g(are)g(not)g(expanded.)47 b(If)150 2759 y Fr(w)m(ord)26 +g(are)g(not)g(expanded.)47 b(If)150 2423 y Fr(w)m(ord)26 b Fu(is)c(unquoted,)h(all)g(lines)g(of)g(the)f(here-do)s(cumen)m(t)g (are)h(sub)5 b(jected)22 b(to)h(parameter)g(expansion,)h(com-)150 -2868 y(mand)30 b(substitution,)g(and)g(arithmetic)h(expansion,)g(the)f +2532 y(mand)30 b(substitution,)g(and)g(arithmetic)h(expansion,)g(the)f (c)m(haracter)i(sequence)f Ft(\\newline)d Fu(is)j(ignored,)150 -2978 y(and)f(`)p Ft(\\)p Fu(')g(m)m(ust)h(b)s(e)e(used)h(to)h(quote)g +2642 y(and)f(`)p Ft(\\)p Fu(')g(m)m(ust)h(b)s(e)e(used)h(to)h(quote)g (the)g(c)m(haracters)g(`)p Ft(\\)p Fu(',)g(`)p Ft($)p -Fu(',)g(and)f(`)p Ft(`)p Fu('.)275 3114 y(If)21 b(the)i(redirection)g +Fu(',)g(and)f(`)p Ft(`)p Fu('.)275 2785 y(If)21 b(the)i(redirection)g (op)s(erator)g(is)f(`)p Ft(<<-)p Fu(',)i(then)e(all)h(leading)g(tab)g (c)m(haracters)h(are)e(stripp)s(ed)f(from)h(input)150 -3224 y(lines)33 b(and)f(the)h(line)h(con)m(taining)g +2895 y(lines)33 b(and)f(the)h(line)h(con)m(taining)g Fr(delimiter)p Fu(.)49 b(This)32 b(allo)m(ws)i(here-do)s(cumen)m(ts)f -(within)f(shell)i(scripts)e(to)150 3333 y(b)s(e)e(inden)m(ted)g(in)g(a) -h(natural)f(fashion.)150 3534 y Fk(3.6.7)63 b(Here)41 -b(Strings)150 3681 y Fu(A)30 b(v)-5 b(arian)m(t)32 b(of)e(here)h(do)s -(cumen)m(ts,)f(the)g(format)h(is:)390 3817 y Ft([)p Fj(n)p -Ft(]<<<)46 b Fj(word)275 3953 y Fu(The)29 b Fr(w)m(ord)k +(within)f(shell)i(scripts)e(to)150 3004 y(b)s(e)e(inden)m(ted)g(in)g(a) +h(natural)f(fashion.)150 3212 y Fk(3.6.7)63 b(Here)41 +b(Strings)150 3359 y Fu(A)30 b(v)-5 b(arian)m(t)32 b(of)e(here)h(do)s +(cumen)m(ts,)f(the)g(format)h(is:)390 3502 y Ft([)p Fj(n)p +Ft(]<<<)46 b Fj(word)275 3645 y Fu(The)29 b Fr(w)m(ord)k Fu(undergo)s(es)c(tilde)i(expansion,)f(parameter)h(and)e(v)-5 -b(ariable)31 b(expansion,)f(command)g(sub-)150 4063 y(stitution,)25 +b(ariable)31 b(expansion,)f(command)g(sub-)150 3755 y(stitution,)25 b(arithmetic)f(expansion,)h(and)d(quote)h(remo)m(v)-5 b(al.)40 b(P)m(athname)23 b(expansion)g(and)f(w)m(ord)g(splitting)150 -4172 y(are)35 b(not)g(p)s(erformed.)51 b(The)34 b(result)h(is)g +3865 y(are)35 b(not)g(p)s(erformed.)51 b(The)34 b(result)h(is)g (supplied)e(as)i(a)f(single)i(string,)f(with)g(a)g(newline)f(app)s -(ended,)g(to)150 4282 y(the)d(command)f(on)g(its)h(standard)e(input)h +(ended,)g(to)150 3974 y(the)d(command)f(on)g(its)h(standard)e(input)h (\(or)g(\014le)h(descriptor)f Fr(n)g Fu(if)g Fr(n)g Fu(is)h(sp)s -(eci\014ed\).)150 4483 y Fk(3.6.8)63 b(Duplicating)41 -b(File)g(Descriptors)150 4630 y Fu(The)30 b(redirection)h(op)s(erator) -390 4766 y Ft([)p Fj(n)p Ft(]<&)p Fj(word)150 4902 y +(eci\014ed\).)150 4182 y Fk(3.6.8)63 b(Duplicating)41 +b(File)g(Descriptors)150 4329 y Fu(The)30 b(redirection)h(op)s(erator) +390 4472 y Ft([)p Fj(n)p Ft(]<&)p Fj(word)150 4615 y Fu(is)k(used)e(to)j(duplicate)f(input)f(\014le)g(descriptors.)53 b(If)34 b Fr(w)m(ord)k Fu(expands)c(to)h(one)g(or)g(more)g(digits,)h -(the)f(\014le)150 5011 y(descriptor)e(denoted)h(b)m(y)f +(the)f(\014le)150 4725 y(descriptor)e(denoted)h(b)m(y)f Fr(n)g Fu(is)g(made)h(to)g(b)s(e)f(a)g(cop)m(y)h(of)g(that)g(\014le)f (descriptor.)50 b(If)33 b(the)h(digits)g(in)f Fr(w)m(ord)150 -5121 y Fu(do)c(not)h(sp)s(ecify)f(a)h(\014le)f(descriptor)g(op)s(en)g +4835 y Fu(do)c(not)h(sp)s(ecify)f(a)h(\014le)f(descriptor)g(op)s(en)g (for)g(input,)g(a)h(redirection)g(error)f(o)s(ccurs.)40 -b(If)29 b Fr(w)m(ord)j Fu(ev)-5 b(aluates)150 5230 y(to)31 +b(If)29 b Fr(w)m(ord)j Fu(ev)-5 b(aluates)150 4944 y(to)31 b(`)p Ft(-)p Fu(',)g(\014le)g(descriptor)g Fr(n)f Fu(is)g(closed.)43 b(If)30 b Fr(n)g Fu(is)g(not)h(sp)s(eci\014ed,)f(the)h(standard)f -(input)g(\(\014le)h(descriptor)f(0\))150 5340 y(is)g(used.)p -eop end +(input)g(\(\014le)h(descriptor)f(0\))150 5054 y(is)g(used.)275 +5197 y(The)f(op)s(erator)390 5340 y Ft([)p Fj(n)p Ft(]>&)p +Fj(word)p eop end %%Page: 37 43 TeXDict begin 37 42 bop 150 -116 a Fu(Chapter)30 b(3:)41 -b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(37)275 299 -y(The)29 b(op)s(erator)390 432 y Ft([)p Fj(n)p Ft(]>&)p -Fj(word)150 565 y Fu(is)40 b(used)g(similarly)h(to)g(duplicate)f -(output)g(\014le)h(descriptors.)70 b(If)40 b Fr(n)f Fu(is)i(not)f(sp)s -(eci\014ed,)i(the)f(standard)150 674 y(output)30 b(\(\014le)g -(descriptor)g(1\))h(is)f(used.)39 b(If)30 b(the)g(digits)h(in)e -Fr(w)m(ord)34 b Fu(do)29 b(not)i(sp)s(ecify)e(a)i(\014le)f(descriptor)g -(op)s(en)150 784 y(for)35 b(output,)h(a)g(redirection)g(error)e(o)s -(ccurs.)55 b(If)35 b Fr(w)m(ord)j Fu(ev)-5 b(aluates)37 -b(to)f(`)p Ft(-)p Fu(',)h(\014le)e(descriptor)g Fr(n)g -Fu(is)g(closed.)150 894 y(As)f(a)g(sp)s(ecial)h(case,)h(if)e -Fr(n)f Fu(is)h(omitted,)i(and)e Fr(w)m(ord)j Fu(do)s(es)d(not)g(expand) -f(to)i(one)f(or)g(more)g(digits)h(or)f(`)p Ft(-)p Fu(',)150 -1003 y(the)d(standard)e(output)h(and)g(standard)f(error)h(are)h -(redirected)g(as)g(describ)s(ed)e(previously)-8 b(.)150 -1199 y Fk(3.6.9)63 b(Mo)m(ving)41 b(File)h(Descriptors)150 -1346 y Fu(The)30 b(redirection)h(op)s(erator)390 1479 -y Ft([)p Fj(n)p Ft(]<&)p Fj(digit)p Ft(-)150 1612 y Fu(mo)m(v)m(es)i -(the)f(\014le)g(descriptor)f Fr(digit)k Fu(to)d(\014le)g(descriptor)g -Fr(n)p Fu(,)f(or)h(the)g(standard)f(input)f(\(\014le)j(descriptor)e -(0\))150 1722 y(if)f Fr(n)g Fu(is)h(not)f(sp)s(eci\014ed.)40 -b Fr(digit)33 b Fu(is)e(closed)g(after)g(b)s(eing)f(duplicated)g(to)h -Fr(n)p Fu(.)275 1855 y(Similarly)-8 b(,)31 b(the)f(redirection)h(op)s -(erator)390 1988 y Ft([)p Fj(n)p Ft(]>&)p Fj(digit)p -Ft(-)150 2121 y Fu(mo)m(v)m(es)e(the)g(\014le)f(descriptor)f +b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(37)150 299 +y(is)40 b(used)g(similarly)h(to)g(duplicate)f(output)g(\014le)h +(descriptors.)70 b(If)40 b Fr(n)f Fu(is)i(not)f(sp)s(eci\014ed,)i(the)f +(standard)150 408 y(output)30 b(\(\014le)g(descriptor)g(1\))h(is)f +(used.)39 b(If)30 b(the)g(digits)h(in)e Fr(w)m(ord)34 +b Fu(do)29 b(not)i(sp)s(ecify)e(a)i(\014le)f(descriptor)g(op)s(en)150 +518 y(for)35 b(output,)h(a)g(redirection)g(error)e(o)s(ccurs.)55 +b(If)35 b Fr(w)m(ord)j Fu(ev)-5 b(aluates)37 b(to)f(`)p +Ft(-)p Fu(',)h(\014le)e(descriptor)g Fr(n)g Fu(is)g(closed.)150 +628 y(As)f(a)g(sp)s(ecial)h(case,)h(if)e Fr(n)f Fu(is)h(omitted,)i(and) +e Fr(w)m(ord)j Fu(do)s(es)d(not)g(expand)f(to)i(one)f(or)g(more)g +(digits)h(or)f(`)p Ft(-)p Fu(',)150 737 y(the)d(standard)e(output)h +(and)g(standard)f(error)h(are)h(redirected)g(as)g(describ)s(ed)e +(previously)-8 b(.)150 938 y Fk(3.6.9)63 b(Mo)m(ving)41 +b(File)h(Descriptors)150 1085 y Fu(The)30 b(redirection)h(op)s(erator) +390 1220 y Ft([)p Fj(n)p Ft(]<&)p Fj(digit)p Ft(-)150 +1356 y Fu(mo)m(v)m(es)i(the)f(\014le)g(descriptor)f Fr(digit)k +Fu(to)d(\014le)g(descriptor)g Fr(n)p Fu(,)f(or)h(the)g(standard)f +(input)f(\(\014le)j(descriptor)e(0\))150 1465 y(if)f +Fr(n)g Fu(is)h(not)f(sp)s(eci\014ed.)40 b Fr(digit)33 +b Fu(is)e(closed)g(after)g(b)s(eing)f(duplicated)g(to)h +Fr(n)p Fu(.)275 1601 y(Similarly)-8 b(,)31 b(the)f(redirection)h(op)s +(erator)390 1736 y Ft([)p Fj(n)p Ft(]>&)p Fj(digit)p +Ft(-)150 1872 y Fu(mo)m(v)m(es)e(the)g(\014le)f(descriptor)f Fr(digit)k Fu(to)e(\014le)f(descriptor)g Fr(n)p Fu(,)g(or)g(the)g (standard)f(output)h(\(\014le)g(descriptor)g(1\))150 -2230 y(if)i Fr(n)g Fu(is)h(not)f(sp)s(eci\014ed.)150 -2426 y Fk(3.6.10)63 b(Op)s(ening)42 b(File)g(Descriptors)g(for)g -(Reading)e(and)h(W)-10 b(riting)150 2573 y Fu(The)30 -b(redirection)h(op)s(erator)390 2706 y Ft([)p Fj(n)p -Ft(]<>)p Fj(word)150 2839 y Fu(causes)39 b(the)g(\014le)g(whose)g(name) +1982 y(if)i Fr(n)g Fu(is)h(not)f(sp)s(eci\014ed.)150 +2182 y Fk(3.6.10)63 b(Op)s(ening)42 b(File)g(Descriptors)g(for)g +(Reading)e(and)h(W)-10 b(riting)150 2329 y Fu(The)30 +b(redirection)h(op)s(erator)390 2464 y Ft([)p Fj(n)p +Ft(]<>)p Fj(word)150 2600 y Fu(causes)39 b(the)g(\014le)g(whose)g(name) g(is)g(the)g(expansion)g(of)g Fr(w)m(ord)j Fu(to)d(b)s(e)g(op)s(ened)f -(for)g(b)s(oth)h(reading)g(and)150 2949 y(writing)33 +(for)g(b)s(oth)h(reading)g(and)150 2710 y(writing)33 b(on)f(\014le)h(descriptor)f Fr(n)p Fu(,)h(or)g(on)f(\014le)h (descriptor)g(0)g(if)f Fr(n)g Fu(is)h(not)g(sp)s(eci\014ed.)47 -b(If)32 b(the)h(\014le)f(do)s(es)h(not)150 3058 y(exist,)e(it)g(is)g -(created.)150 3296 y Fs(3.7)68 b(Executing)46 b(Commands)150 -3519 y Fk(3.7.1)63 b(Simple)41 b(Command)h(Expansion)150 -3666 y Fu(When)33 b(a)g(simple)g(command)g(is)g(executed,)h(the)g +b(If)32 b(the)h(\014le)f(do)s(es)h(not)150 2819 y(exist,)e(it)g(is)g +(created.)150 3062 y Fs(3.7)68 b(Executing)46 b(Commands)150 +3286 y Fk(3.7.1)63 b(Simple)41 b(Command)h(Expansion)150 +3433 y Fu(When)33 b(a)g(simple)g(command)g(is)g(executed,)h(the)g (shell)f(p)s(erforms)e(the)i(follo)m(wing)i(expansions,)e(assign-)150 -3775 y(men)m(ts,)e(and)f(redirections,)h(from)f(left)h(to)g(righ)m(t.) -199 3908 y(1.)61 b(The)38 b(w)m(ords)f(that)i(the)g(parser)e(has)h +3542 y(men)m(ts,)e(and)f(redirections,)h(from)f(left)h(to)g(righ)m(t.) +199 3678 y(1.)61 b(The)38 b(w)m(ords)f(that)i(the)g(parser)e(has)h (mark)m(ed)g(as)h(v)-5 b(ariable)39 b(assignmen)m(ts)g(\(those)g -(preceding)f(the)330 4018 y(command)30 b(name\))h(and)f(redirections)h +(preceding)f(the)330 3788 y(command)30 b(name\))h(and)f(redirections)h (are)f(sa)m(v)m(ed)i(for)e(later)h(pro)s(cessing.)199 -4151 y(2.)61 b(The)39 b(w)m(ords)g(that)i(are)f(not)g(v)-5 +3923 y(2.)61 b(The)39 b(w)m(ords)g(that)i(are)f(not)g(v)-5 b(ariable)40 b(assignmen)m(ts)h(or)e(redirections)i(are)f(expanded)f -(\(see)h(Sec-)330 4260 y(tion)d(3.5)i([Shell)e(Expansions],)h(page)g +(\(see)h(Sec-)330 4032 y(tion)d(3.5)i([Shell)e(Expansions],)h(page)g (22\).)61 b(If)37 b(an)m(y)g(w)m(ords)f(remain)h(after)h(expansion,)h -(the)e(\014rst)330 4370 y(w)m(ord)31 b(is)g(tak)m(en)h(to)g(b)s(e)f +(the)e(\014rst)330 4142 y(w)m(ord)31 b(is)g(tak)m(en)h(to)g(b)s(e)f (the)g(name)h(of)f(the)h(command)f(and)f(the)i(remaining)f(w)m(ords)g -(are)g(the)h(argu-)330 4479 y(men)m(ts.)199 4612 y(3.)61 +(are)g(the)h(argu-)330 4251 y(men)m(ts.)199 4386 y(3.)61 b(Redirections)25 b(are)f(p)s(erformed)f(as)h(describ)s(ed)f(ab)s(o)m (v)m(e)i(\(see)g(Section)g(3.6)g([Redirections],)i(page)d(33\).)199 -4745 y(4.)61 b(The)25 b(text)h(after)f(the)g(`)p Ft(=)p +4521 y(4.)61 b(The)25 b(text)h(after)f(the)g(`)p Ft(=)p Fu(')h(in)e(eac)m(h)j(v)-5 b(ariable)25 b(assignmen)m(t)h(undergo)s(es) -e(tilde)i(expansion,)g(parameter)330 4855 y(expansion,)49 +e(tilde)i(expansion,)g(parameter)330 4631 y(expansion,)49 b(command)d(substitution,)j(arithmetic)d(expansion,)k(and)45 -b(quote)h(remo)m(v)-5 b(al)46 b(b)s(efore)330 4964 y(b)s(eing)30 -b(assigned)h(to)g(the)f(v)-5 b(ariable.)275 5121 y(If)32 +b(quote)h(remo)m(v)-5 b(al)46 b(b)s(efore)330 4741 y(b)s(eing)30 +b(assigned)h(to)g(the)f(v)-5 b(ariable.)275 4902 y(If)32 b(no)i(command)f(name)g(results,)h(the)g(v)-5 b(ariable)34 b(assignmen)m(ts)g(a\013ect)h(the)f(curren)m(t)f(shell)h(en)m(viron-) -150 5230 y(men)m(t.)39 b(Otherwise,)27 b(the)e(v)-5 b(ariables)26 +150 5011 y(men)m(t.)39 b(Otherwise,)27 b(the)e(v)-5 b(ariables)26 b(are)g(added)f(to)h(the)f(en)m(vironmen)m(t)h(of)g(the)f(executed)h -(command)g(and)150 5340 y(do)35 b(not)f(a\013ect)j(the)d(curren)m(t)h +(command)g(and)150 5121 y(do)35 b(not)f(a\013ect)j(the)d(curren)m(t)h (shell)g(en)m(vironmen)m(t.)54 b(If)34 b(an)m(y)h(of)g(the)f(assignmen) -m(ts)i(attempts)f(to)h(assign)p eop end +m(ts)i(attempts)f(to)h(assign)150 5230 y(a)j(v)-5 b(alue)39 +b(to)g(a)g(readonly)f(v)-5 b(ariable,)42 b(an)c(error)g(o)s(ccurs,)j +(and)c(the)i(command)f(exits)h(with)g(a)f(non-zero)150 +5340 y(status.)p eop end %%Page: 38 44 TeXDict begin 38 43 bop 150 -116 a Fu(Chapter)30 b(3:)41 -b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(38)150 299 -y(a)39 b(v)-5 b(alue)39 b(to)g(a)g(readonly)f(v)-5 b(ariable,)42 -b(an)c(error)g(o)s(ccurs,)j(and)c(the)i(command)f(exits)h(with)g(a)f -(non-zero)150 408 y(status.)275 538 y(If)33 b(no)g(command)g(name)h -(results,)g(redirections)g(are)g(p)s(erformed,)f(but)g(do)h(not)f -(a\013ect)i(the)f(curren)m(t)150 648 y(shell)d(en)m(vironmen)m(t.)41 -b(A)30 b(redirection)h(error)f(causes)h(the)g(command)f(to)h(exit)g -(with)f(a)h(non-zero)g(status.)275 778 y(If)26 b(there)i(is)f(a)h -(command)f(name)h(left)g(after)g(expansion,)g(execution)h(pro)s(ceeds)e -(as)g(describ)s(ed)f(b)s(elo)m(w.)150 887 y(Otherwise,)39 -b(the)e(command)g(exits.)62 b(If)37 b(one)g(of)g(the)h(expansions)f -(con)m(tained)h(a)g(command)f(substitu-)150 997 y(tion,)i(the)d(exit)h -(status)g(of)f(the)h(command)f(is)h(the)f(exit)h(status)g(of)f(the)h -(last)g(command)f(substitution)150 1107 y(p)s(erformed.)55 -b(If)35 b(there)g(w)m(ere)h(no)g(command)f(substitutions,)i(the)e -(command)h(exits)g(with)f(a)h(status)g(of)150 1216 y(zero.)150 -1406 y Fk(3.7.2)63 b(Command)41 b(Searc)m(h)f(and)h(Execution)150 -1553 y Fu(After)i(a)h(command)f(has)g(b)s(een)f(split)h(in)m(to)h(w)m -(ords,)j(if)c(it)g(results)g(in)g(a)h(simple)f(command)g(and)f(an)150 -1663 y(optional)32 b(list)f(of)f(argumen)m(ts,)h(the)g(follo)m(wing)g -(actions)h(are)f(tak)m(en.)199 1793 y(1.)61 b(If)24 b(the)g(command)g -(name)g(con)m(tains)i(no)e(slashes,)i(the)e(shell)h(attempts)g(to)g(lo) -s(cate)h(it.)39 b(If)24 b(there)g(exists)330 1902 y(a)h(shell)g -(function)f(b)m(y)g(that)h(name,)h(that)f(function)f(is)h(in)m(v)m(ok)m -(ed)h(as)e(describ)s(ed)g(in)g(Section)h(3.3)h([Shell)330 -2012 y(F)-8 b(unctions],)31 b(page)h(17.)199 2142 y(2.)61 -b(If)41 b(the)g(name)h(do)s(es)f(not)g(matc)m(h)i(a)e(function,)j(the)e -(shell)f(searc)m(hes)i(for)e(it)h(in)f(the)g(list)h(of)g(shell)330 -2251 y(builtins.)e(If)30 b(a)h(matc)m(h)g(is)f(found,)g(that)h(builtin) -f(is)g(in)m(v)m(ok)m(ed.)199 2381 y(3.)61 b(If)40 b(the)g(name)h(is)f -(neither)h(a)f(shell)h(function)f(nor)g(a)g(builtin,)j(and)d(con)m -(tains)h(no)g(slashes,)i(Bash)330 2491 y(searc)m(hes)c(eac)m(h)g -(elemen)m(t)g(of)g Ft($PATH)d Fu(for)i(a)g(directory)h(con)m(taining)g -(an)f(executable)h(\014le)f(b)m(y)g(that)330 2600 y(name.)56 -b(Bash)36 b(uses)f(a)h(hash)e(table)j(to)f(remem)m(b)s(er)f(the)h(full) -f(pathnames)g(of)h(executable)h(\014les)e(to)330 2710 -y(a)m(v)m(oid)e(m)m(ultiple)f Ft(PATH)f Fu(searc)m(hes)i(\(see)f(the)g -(description)g(of)f Ft(hash)g Fu(in)g(Section)i(4.1)f([Bourne)g(Shell) -330 2819 y(Builtins],)37 b(page)f(43\).)55 b(A)35 b(full)g(searc)m(h)g -(of)g(the)g(directories)h(in)f Ft($PATH)e Fu(is)i(p)s(erformed)f(only)h -(if)g(the)330 2929 y(command)24 b(is)h(not)g(found)e(in)i(the)g(hash)f -(table.)39 b(If)25 b(the)f(searc)m(h)i(is)e(unsuccessful,)h(the)g -(shell)g(searc)m(hes)330 3039 y(for)e(a)h(de\014ned)e(shell)h(function) -h(named)e Ft(command_not_found_handle)p Fu(.)32 b(If)23 -b(that)h(function)f(exists,)330 3148 y(it)33 b(is)f(in)m(v)m(ok)m(ed)i -(in)e(a)h(separate)h(execution)f(en)m(vironmen)m(t)g(with)f(the)h -(original)h(command)e(and)g(the)330 3258 y(original)26 -b(command's)e(argumen)m(ts)h(as)g(its)g(argumen)m(ts,)h(and)e(the)h -(function's)f(exit)i(status)f(b)s(ecomes)330 3367 y(the)j(exit)g -(status)g(of)f(that)h(subshell.)39 b(If)27 b(that)h(function)f(is)h -(not)g(de\014ned,)f(the)g(shell)h(prin)m(ts)f(an)g(error)330 -3477 y(message)k(and)f(returns)f(an)i(exit)g(status)g(of)f(127.)199 -3607 y(4.)61 b(If)33 b(the)g(searc)m(h)h(is)g(successful,)g(or)f(if)g -(the)h(command)f(name)g(con)m(tains)i(one)f(or)f(more)g(slashes,)i(the) -330 3716 y(shell)g(executes)h(the)f(named)f(program)g(in)h(a)g -(separate)h(execution)f(en)m(vironmen)m(t.)55 b(Argumen)m(t)35 -b(0)330 3826 y(is)30 b(set)h(to)h(the)e(name)h(giv)m(en,)g(and)f(the)h -(remaining)f(argumen)m(ts)h(to)g(the)g(command)f(are)h(set)g(to)g(the) -330 3936 y(argumen)m(ts)g(supplied,)e(if)h(an)m(y)-8 -b(.)199 4065 y(5.)61 b(If)35 b(this)h(execution)h(fails)f(b)s(ecause)g +b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(38)275 299 +y(If)33 b(no)g(command)g(name)h(results,)g(redirections)g(are)g(p)s +(erformed,)f(but)g(do)h(not)f(a\013ect)i(the)f(curren)m(t)150 +408 y(shell)d(en)m(vironmen)m(t.)41 b(A)30 b(redirection)h(error)f +(causes)h(the)g(command)f(to)h(exit)g(with)f(a)h(non-zero)g(status.)275 +548 y(If)26 b(there)i(is)f(a)h(command)f(name)h(left)g(after)g +(expansion,)g(execution)h(pro)s(ceeds)e(as)g(describ)s(ed)f(b)s(elo)m +(w.)150 658 y(Otherwise,)39 b(the)e(command)g(exits.)62 +b(If)37 b(one)g(of)g(the)h(expansions)f(con)m(tained)h(a)g(command)f +(substitu-)150 767 y(tion,)i(the)d(exit)h(status)g(of)f(the)h(command)f +(is)h(the)f(exit)h(status)g(of)f(the)h(last)g(command)f(substitution) +150 877 y(p)s(erformed.)55 b(If)35 b(there)g(w)m(ere)h(no)g(command)f +(substitutions,)i(the)e(command)h(exits)g(with)f(a)h(status)g(of)150 +987 y(zero.)150 1191 y Fk(3.7.2)63 b(Command)41 b(Searc)m(h)f(and)h +(Execution)150 1338 y Fu(After)i(a)h(command)f(has)g(b)s(een)f(split)h +(in)m(to)h(w)m(ords,)j(if)c(it)g(results)g(in)g(a)h(simple)f(command)g +(and)f(an)150 1448 y(optional)32 b(list)f(of)f(argumen)m(ts,)h(the)g +(follo)m(wing)g(actions)h(are)f(tak)m(en.)199 1587 y(1.)61 +b(If)24 b(the)g(command)g(name)g(con)m(tains)i(no)e(slashes,)i(the)e +(shell)h(attempts)g(to)g(lo)s(cate)h(it.)39 b(If)24 b(there)g(exists) +330 1697 y(a)h(shell)g(function)f(b)m(y)g(that)h(name,)h(that)f +(function)f(is)h(in)m(v)m(ok)m(ed)h(as)e(describ)s(ed)g(in)g(Section)h +(3.3)h([Shell)330 1807 y(F)-8 b(unctions],)31 b(page)h(17.)199 +1944 y(2.)61 b(If)41 b(the)g(name)h(do)s(es)f(not)g(matc)m(h)i(a)e +(function,)j(the)e(shell)f(searc)m(hes)i(for)e(it)h(in)f(the)g(list)h +(of)g(shell)330 2053 y(builtins.)e(If)30 b(a)h(matc)m(h)g(is)f(found,)g +(that)h(builtin)f(is)g(in)m(v)m(ok)m(ed.)199 2190 y(3.)61 +b(If)40 b(the)g(name)h(is)f(neither)h(a)f(shell)h(function)f(nor)g(a)g +(builtin,)j(and)d(con)m(tains)h(no)g(slashes,)i(Bash)330 +2300 y(searc)m(hes)c(eac)m(h)g(elemen)m(t)g(of)g Ft($PATH)d +Fu(for)i(a)g(directory)h(con)m(taining)g(an)f(executable)h(\014le)f(b)m +(y)g(that)330 2410 y(name.)56 b(Bash)36 b(uses)f(a)h(hash)e(table)j(to) +f(remem)m(b)s(er)f(the)h(full)f(pathnames)g(of)h(executable)h(\014les)e +(to)330 2519 y(a)m(v)m(oid)e(m)m(ultiple)f Ft(PATH)f +Fu(searc)m(hes)i(\(see)f(the)g(description)g(of)f Ft(hash)g +Fu(in)g(Section)i(4.1)f([Bourne)g(Shell)330 2629 y(Builtins],)37 +b(page)f(43\).)55 b(A)35 b(full)g(searc)m(h)g(of)g(the)g(directories)h +(in)f Ft($PATH)e Fu(is)i(p)s(erformed)f(only)h(if)g(the)330 +2738 y(command)24 b(is)h(not)g(found)e(in)i(the)g(hash)f(table.)39 +b(If)25 b(the)f(searc)m(h)i(is)e(unsuccessful,)h(the)g(shell)g(searc)m +(hes)330 2848 y(for)e(a)h(de\014ned)e(shell)h(function)h(named)e +Ft(command_not_found_handle)p Fu(.)32 b(If)23 b(that)h(function)f +(exists,)330 2958 y(it)33 b(is)f(in)m(v)m(ok)m(ed)i(in)e(a)h(separate)h +(execution)f(en)m(vironmen)m(t)g(with)f(the)h(original)h(command)e(and) +g(the)330 3067 y(original)26 b(command's)e(argumen)m(ts)h(as)g(its)g +(argumen)m(ts,)h(and)e(the)h(function's)f(exit)i(status)f(b)s(ecomes) +330 3177 y(the)j(exit)g(status)g(of)f(that)h(subshell.)39 +b(If)27 b(that)h(function)f(is)h(not)g(de\014ned,)f(the)g(shell)h(prin) +m(ts)f(an)g(error)330 3286 y(message)k(and)f(returns)f(an)i(exit)g +(status)g(of)f(127.)199 3423 y(4.)61 b(If)33 b(the)g(searc)m(h)h(is)g +(successful,)g(or)f(if)g(the)h(command)f(name)g(con)m(tains)i(one)f(or) +f(more)g(slashes,)i(the)330 3533 y(shell)g(executes)h(the)f(named)f +(program)g(in)h(a)g(separate)h(execution)f(en)m(vironmen)m(t.)55 +b(Argumen)m(t)35 b(0)330 3643 y(is)30 b(set)h(to)h(the)e(name)h(giv)m +(en,)g(and)f(the)h(remaining)f(argumen)m(ts)h(to)g(the)g(command)f(are) +h(set)g(to)g(the)330 3752 y(argumen)m(ts)g(supplied,)e(if)h(an)m(y)-8 +b(.)199 3889 y(5.)61 b(If)35 b(this)h(execution)h(fails)f(b)s(ecause)g (the)f(\014le)h(is)g(not)g(in)f(executable)j(format,)f(and)e(the)h -(\014le)g(is)g(not)330 4175 y(a)d(directory)-8 b(,)34 +(\014le)g(is)g(not)330 3999 y(a)d(directory)-8 b(,)34 b(it)f(is)g(assumed)e(to)j(b)s(e)d(a)i Fr(shell)g(script)h Fu(and)e(the)h(shell)f(executes)i(it)f(as)g(describ)s(ed)e(in)330 -4285 y(Section)g(3.8)h([Shell)e(Scripts],)g(page)i(41.)199 -4415 y(6.)61 b(If)38 b(the)h(command)f(w)m(as)h(not)g(b)s(egun)e(async) +4109 y(Section)g(3.8)h([Shell)e(Scripts],)g(page)i(41.)199 +4246 y(6.)61 b(If)38 b(the)h(command)f(w)m(as)h(not)g(b)s(egun)e(async) m(hronously)-8 b(,)42 b(the)c(shell)h(w)m(aits)h(for)e(the)h(command)f -(to)330 4524 y(complete)32 b(and)e(collects)i(its)f(exit)g(status.)150 -4714 y Fk(3.7.3)63 b(Command)41 b(Execution)f(En)m(vironmen)m(t)150 -4861 y Fu(The)30 b(shell)g(has)h(an)f Fr(execution)h(en)m(vironmen)m(t) +(to)330 4355 y(complete)32 b(and)e(collects)i(its)f(exit)g(status.)150 +4560 y Fk(3.7.3)63 b(Command)41 b(Execution)f(En)m(vironmen)m(t)150 +4707 y Fu(The)30 b(shell)g(has)h(an)f Fr(execution)h(en)m(vironmen)m(t) p Fu(,)h(whic)m(h)e(consists)h(of)f(the)h(follo)m(wing:)225 -4991 y Fq(\017)60 b Fu(op)s(en)32 b(\014les)g(inherited)g(b)m(y)h(the)f +4847 y Fq(\017)60 b Fu(op)s(en)32 b(\014les)g(inherited)g(b)m(y)h(the)f (shell)h(at)g(in)m(v)m(o)s(cation,)j(as)c(mo)s(di\014ed)g(b)m(y)g -(redirections)h(supplied)e(to)330 5101 y(the)g Ft(exec)e -Fu(builtin)225 5230 y Fq(\017)60 b Fu(the)28 b(curren)m(t)g(w)m(orking) +(redirections)h(supplied)e(to)330 4956 y(the)g Ft(exec)e +Fu(builtin)225 5093 y Fq(\017)60 b Fu(the)28 b(curren)m(t)g(w)m(orking) h(directory)g(as)f(set)h(b)m(y)f Ft(cd)p Fu(,)g Ft(pushd)p Fu(,)g(or)g Ft(popd)p Fu(,)g(or)g(inherited)g(b)m(y)g(the)h(shell)f(at) -330 5340 y(in)m(v)m(o)s(cation)p eop end +330 5203 y(in)m(v)m(o)s(cation)225 5340 y Fq(\017)60 +b Fu(the)31 b(\014le)f(creation)i(mo)s(de)e(mask)g(as)h(set)g(b)m(y)f +Ft(umask)f Fu(or)h(inherited)g(from)g(the)h(shell's)f(paren)m(t)p +eop end %%Page: 39 45 TeXDict begin 39 44 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(39)225 299 -y Fq(\017)60 b Fu(the)31 b(\014le)f(creation)i(mo)s(de)e(mask)g(as)h -(set)g(b)m(y)f Ft(umask)f Fu(or)h(inherited)g(from)g(the)h(shell's)f -(paren)m(t)225 434 y Fq(\017)60 b Fu(curren)m(t)30 b(traps)g(set)h(b)m -(y)f Ft(trap)225 570 y Fq(\017)60 b Fu(shell)30 b(parameters)f(that)h -(are)g(set)g(b)m(y)g(v)-5 b(ariable)30 b(assignmen)m(t)g(or)g(with)f -Ft(set)f Fu(or)i(inherited)f(from)g(the)330 680 y(shell's)i(paren)m(t)f -(in)g(the)h(en)m(vironmen)m(t)225 815 y Fq(\017)60 b +y Fq(\017)60 b Fu(curren)m(t)30 b(traps)g(set)h(b)m(y)f +Ft(trap)225 435 y Fq(\017)60 b Fu(shell)30 b(parameters)f(that)h(are)g +(set)g(b)m(y)g(v)-5 b(ariable)30 b(assignmen)m(t)g(or)g(with)f +Ft(set)f Fu(or)i(inherited)f(from)g(the)330 545 y(shell's)i(paren)m(t)f +(in)g(the)h(en)m(vironmen)m(t)225 682 y Fq(\017)60 b Fu(shell)44 b(functions)f(de\014ned)f(during)h(execution)i(or)e (inherited)h(from)f(the)h(shell's)g(paren)m(t)f(in)h(the)330 -925 y(en)m(vironmen)m(t)225 1061 y Fq(\017)60 b Fu(options)33 +791 y(en)m(vironmen)m(t)225 928 y Fq(\017)60 b Fu(options)33 b(enabled)g(at)h(in)m(v)m(o)s(cation)h(\(either)f(b)m(y)f(default)g(or) -g(with)g(command-line)g(argumen)m(ts\))h(or)330 1170 -y(b)m(y)c Ft(set)225 1306 y Fq(\017)60 b Fu(options)31 +g(with)g(command-line)g(argumen)m(ts\))h(or)330 1037 +y(b)m(y)c Ft(set)225 1174 y Fq(\017)60 b Fu(options)31 b(enabled)f(b)m(y)g Ft(shopt)f Fu(\(see)j(Section)f(4.3.2)h([The)e -(Shopt)g(Builtin],)h(page)g(65\))225 1441 y Fq(\017)60 +(Shopt)g(Builtin],)h(page)g(65\))225 1310 y Fq(\017)60 b Fu(shell)31 b(aliases)g(de\014ned)f(with)g Ft(alias)f Fu(\(see)i(Section)g(6.6)h([Aliases],)g(page)f(92\))225 -1577 y Fq(\017)60 b Fu(v)-5 b(arious)50 b(pro)s(cess)f +1447 y Fq(\017)60 b Fu(v)-5 b(arious)50 b(pro)s(cess)f Fm(id)p Fu(s,)55 b(including)49 b(those)i(of)e(bac)m(kground)h(jobs)f -(\(see)i(Section)g(3.2.3)g([Lists],)330 1687 y(page)31 +(\(see)i(Section)g(3.2.3)g([Lists],)330 1556 y(page)31 b(9\),)g(the)g(v)-5 b(alue)31 b(of)f Ft($$)p Fu(,)g(and)g(the)h(v)-5 -b(alue)31 b(of)f Ft($PPID)275 1849 y Fu(When)k(a)g(simple)h(command)f +b(alue)31 b(of)f Ft($PPID)275 1722 y Fu(When)k(a)g(simple)h(command)f (other)g(than)g(a)h(builtin)f(or)g(shell)h(function)f(is)g(to)h(b)s(e)f -(executed,)i(it)f(is)150 1959 y(in)m(v)m(ok)m(ed)25 b(in)f(a)g +(executed,)i(it)f(is)150 1832 y(in)m(v)m(ok)m(ed)25 b(in)f(a)g (separate)h(execution)g(en)m(vironmen)m(t)g(that)f(consists)g(of)h(the) -f(follo)m(wing.)40 b(Unless)24 b(otherwise)150 2068 y(noted,)31 +f(follo)m(wing.)40 b(Unless)24 b(otherwise)150 1941 y(noted,)31 b(the)f(v)-5 b(alues)31 b(are)g(inherited)f(from)g(the)g(shell.)225 -2205 y Fq(\017)60 b Fu(the)31 b(shell's)h(op)s(en)e(\014les,)i(plus)e +2080 y Fq(\017)60 b Fu(the)31 b(shell's)h(op)s(en)e(\014les,)i(plus)e (an)m(y)h(mo)s(di\014cations)h(and)e(additions)h(sp)s(eci\014ed)g(b)m -(y)g(redirections)g(to)330 2315 y(the)g(command)225 2450 +(y)g(redirections)g(to)330 2189 y(the)g(command)225 2326 y Fq(\017)60 b Fu(the)31 b(curren)m(t)f(w)m(orking)g(directory)225 -2586 y Fq(\017)60 b Fu(the)31 b(\014le)f(creation)i(mo)s(de)e(mask)225 -2722 y Fq(\017)60 b Fu(shell)32 b(v)-5 b(ariables)33 +2462 y Fq(\017)60 b Fu(the)31 b(\014le)f(creation)i(mo)s(de)e(mask)225 +2599 y Fq(\017)60 b Fu(shell)32 b(v)-5 b(ariables)33 b(and)e(functions)h(mark)m(ed)g(for)g(exp)s(ort,)g(along)h(with)f(v)-5 -b(ariables)32 b(exp)s(orted)g(for)g(the)330 2831 y(command,)e(passed)g +b(ariables)32 b(exp)s(orted)g(for)g(the)330 2709 y(command,)e(passed)g (in)g(the)h(en)m(vironmen)m(t)g(\(see)g(Section)g(3.7.4)i([En)m -(vironmen)m(t],)e(page)g(39\))225 2967 y Fq(\017)60 b +(vironmen)m(t],)e(page)g(39\))225 2845 y Fq(\017)60 b Fu(traps)31 b(caugh)m(t)h(b)m(y)f(the)g(shell)h(are)f(reset)h(to)g(the) f(v)-5 b(alues)32 b(inherited)e(from)h(the)g(shell's)h(paren)m(t,)g -(and)330 3076 y(traps)e(ignored)h(b)m(y)f(the)g(shell)h(are)g(ignored) -275 3239 y(A)41 b(command)g(in)m(v)m(ok)m(ed)i(in)e(this)h(separate)g +(and)330 2955 y(traps)e(ignored)h(b)m(y)f(the)g(shell)h(are)g(ignored) +275 3120 y(A)41 b(command)g(in)m(v)m(ok)m(ed)i(in)e(this)h(separate)g (en)m(vironmen)m(t)g(cannot)g(a\013ect)h(the)f(shell's)g(execution)150 -3349 y(en)m(vironmen)m(t.)275 3485 y(Command)35 b(substitution,)j +3230 y(en)m(vironmen)m(t.)275 3368 y(Command)35 b(substitution,)j (commands)e(group)s(ed)f(with)i(paren)m(theses,)h(and)e(async)m -(hronous)g(com-)150 3595 y(mands)c(are)h(in)m(v)m(ok)m(ed)i(in)d(a)i +(hronous)g(com-)150 3478 y(mands)c(are)h(in)m(v)m(ok)m(ed)i(in)d(a)i (subshell)e(en)m(vironmen)m(t)h(that)h(is)f(a)g(duplicate)h(of)f(the)g -(shell)g(en)m(vironmen)m(t,)150 3705 y(except)i(that)g(traps)f(caugh)m +(shell)g(en)m(vironmen)m(t,)150 3588 y(except)i(that)g(traps)f(caugh)m (t)h(b)m(y)f(the)h(shell)f(are)g(reset)h(to)g(the)f(v)-5 b(alues)35 b(that)g(the)f(shell)h(inherited)e(from)150 -3814 y(its)g(paren)m(t)f(at)h(in)m(v)m(o)s(cation.)49 +3697 y(its)g(paren)m(t)f(at)h(in)m(v)m(o)s(cation.)49 b(Builtin)32 b(commands)g(that)h(are)g(in)m(v)m(ok)m(ed)h(as)e(part)g -(of)h(a)f(pip)s(eline)g(are)h(also)150 3924 y(executed)41 +(of)h(a)f(pip)s(eline)g(are)h(also)150 3807 y(executed)41 b(in)f(a)h(subshell)e(en)m(vironmen)m(t.)72 b(Changes)40 b(made)g(to)h(the)g(subshell)e(en)m(vironmen)m(t)i(cannot)150 -4033 y(a\013ect)32 b(the)f(shell's)f(execution)i(en)m(vironmen)m(t.)275 -4170 y(Subshells)c(spa)m(wned)i(to)h(execute)g(command)f(substitutions) +3916 y(a\013ect)32 b(the)f(shell's)f(execution)i(en)m(vironmen)m(t.)275 +4055 y(Subshells)c(spa)m(wned)i(to)h(execute)g(command)f(substitutions) g(inherit)g(the)g(v)-5 b(alue)31 b(of)f(the)h Ft(-e)e -Fu(option)150 4280 y(from)23 b(the)i(paren)m(t)f(shell.)38 +Fu(option)150 4165 y(from)23 b(the)i(paren)m(t)f(shell.)38 b(When)24 b(not)g(in)g Fm(posix)f Fu(mo)s(de,)i(Bash)f(clears)h(the)f -Ft(-e)f Fu(option)i(in)e(suc)m(h)h(subshells.)275 4416 +Ft(-e)f Fu(option)i(in)e(suc)m(h)h(subshells.)275 4303 y(If)f(a)h(command)g(is)g(follo)m(w)m(ed)h(b)m(y)f(a)g(`)p Ft(&)p Fu(')g(and)f(job)h(con)m(trol)h(is)f(not)g(activ)m(e,)k(the)c -(default)g(standard)f(input)150 4526 y(for)35 b(the)g(command)g(is)g +(default)g(standard)f(input)150 4413 y(for)35 b(the)g(command)g(is)g (the)g(empt)m(y)h(\014le)f Ft(/dev/null)p Fu(.)52 b(Otherwise,)37 -b(the)e(in)m(v)m(ok)m(ed)h(command)f(inherits)150 4636 +b(the)e(in)m(v)m(ok)m(ed)h(command)f(inherits)150 4522 y(the)c(\014le)f(descriptors)g(of)h(the)f(calling)i(shell)f(as)f(mo)s -(di\014ed)g(b)m(y)g(redirections.)150 4837 y Fk(3.7.4)63 -b(En)m(vironmen)m(t)150 4984 y Fu(When)29 b(a)g(program)f(is)h(in)m(v)m +(di\014ed)g(b)m(y)g(redirections.)150 4726 y Fk(3.7.4)63 +b(En)m(vironmen)m(t)150 4873 y Fu(When)29 b(a)g(program)f(is)h(in)m(v)m (ok)m(ed)h(it)g(is)f(giv)m(en)g(an)g(arra)m(y)g(of)g(strings)g(called)h (the)f Fr(en)m(vironmen)m(t)p Fu(.)41 b(This)28 b(is)h(a)150 -5094 y(list)i(of)g(name-v)-5 b(alue)31 b(pairs,)f(of)h(the)f(form)g -Ft(name=value)p Fu(.)275 5230 y(Bash)39 b(pro)m(vides)g(sev)m(eral)i(w) +4982 y(list)i(of)g(name-v)-5 b(alue)31 b(pairs,)f(of)h(the)f(form)g +Ft(name=value)p Fu(.)275 5121 y(Bash)39 b(pro)m(vides)g(sev)m(eral)i(w) m(a)m(ys)g(to)f(manipulate)f(the)h(en)m(vironmen)m(t.)69 -b(On)38 b(in)m(v)m(o)s(cation,)44 b(the)c(shell)150 5340 +b(On)38 b(in)m(v)m(o)s(cation,)44 b(the)c(shell)150 5230 y(scans)g(its)h(o)m(wn)f(en)m(vironmen)m(t)h(and)f(creates)i(a)f -(parameter)f(for)g(eac)m(h)i(name)e(found,)i(automatically)p -eop end +(parameter)f(for)g(eac)m(h)i(name)e(found,)i(automatically)150 +5340 y(marking)26 b(it)g(for)g Fr(exp)s(ort)h Fu(to)g(c)m(hild)f(pro)s +(cesses.)39 b(Executed)26 b(commands)g(inherit)g(the)g(en)m(vironmen)m +(t.)39 b(The)p eop end %%Page: 40 46 TeXDict begin 40 45 bop 150 -116 a Fu(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(40)150 299 -y(marking)26 b(it)g(for)g Fr(exp)s(ort)h Fu(to)g(c)m(hild)f(pro)s -(cesses.)39 b(Executed)26 b(commands)g(inherit)g(the)g(en)m(vironmen)m -(t.)39 b(The)150 408 y Ft(export)c Fu(and)i(`)p Ft(declare)29 -b(-x)p Fu(')36 b(commands)h(allo)m(w)i(parameters)e(and)g(functions)g -(to)h(b)s(e)e(added)h(to)h(and)150 518 y(deleted)21 b(from)f(the)h(en)m -(vironmen)m(t.)38 b(If)20 b(the)h(v)-5 b(alue)21 b(of)g(a)g(parameter)g -(in)f(the)g(en)m(vironmen)m(t)i(is)e(mo)s(di\014ed,)i(the)150 -628 y(new)31 b(v)-5 b(alue)32 b(b)s(ecomes)f(part)h(of)f(the)h(en)m +y Ft(export)35 b Fu(and)i(`)p Ft(declare)29 b(-x)p Fu(')36 +b(commands)h(allo)m(w)i(parameters)e(and)g(functions)g(to)h(b)s(e)e +(added)h(to)h(and)150 408 y(deleted)21 b(from)f(the)h(en)m(vironmen)m +(t.)38 b(If)20 b(the)h(v)-5 b(alue)21 b(of)g(a)g(parameter)g(in)f(the)g +(en)m(vironmen)m(t)i(is)e(mo)s(di\014ed,)i(the)150 518 +y(new)31 b(v)-5 b(alue)32 b(b)s(ecomes)f(part)h(of)f(the)h(en)m (vironmen)m(t,)g(replacing)h(the)e(old.)44 b(The)31 b(en)m(vironmen)m -(t)h(inherited)150 737 y(b)m(y)f(an)m(y)g(executed)h(command)f +(t)h(inherited)150 628 y(b)m(y)f(an)m(y)g(executed)h(command)f (consists)g(of)g(the)g(shell's)h(initial)g(en)m(vironmen)m(t,)g(whose)f -(v)-5 b(alues)31 b(ma)m(y)h(b)s(e)150 847 y(mo)s(di\014ed)26 +(v)-5 b(alues)31 b(ma)m(y)h(b)s(e)150 737 y(mo)s(di\014ed)26 b(in)g(the)h(shell,)h(less)f(an)m(y)g(pairs)f(remo)m(v)m(ed)i(b)m(y)f (the)g Ft(unset)e Fu(and)h(`)p Ft(export)j(-n)p Fu(')e(commands,)g -(plus)150 956 y(an)m(y)k(additions)f(via)h(the)g Ft(export)d -Fu(and)i(`)p Ft(declare)f(-x)p Fu(')h(commands.)275 1090 +(plus)150 847 y(an)m(y)k(additions)f(via)h(the)g Ft(export)d +Fu(and)i(`)p Ft(declare)f(-x)p Fu(')h(commands.)275 991 y(The)j(en)m(vironmen)m(t)i(for)f(an)m(y)g(simple)h(command)f(or)g (function)g(ma)m(y)g(b)s(e)g(augmen)m(ted)h(temp)s(orarily)150 -1199 y(b)m(y)c(pre\014xing)e(it)i(with)g(parameter)g(assignmen)m(ts,)h +1100 y(b)m(y)c(pre\014xing)e(it)i(with)g(parameter)g(assignmen)m(ts,)h (as)e(describ)s(ed)g(in)g(Section)i(3.4)g([Shell)e(P)m(arameters],)150 -1309 y(page)g(19.)41 b(These)29 b(assignmen)m(t)i(statemen)m(ts)g +1210 y(page)g(19.)41 b(These)29 b(assignmen)m(t)i(statemen)m(ts)g (a\013ect)f(only)g(the)f(en)m(vironmen)m(t)h(seen)g(b)m(y)f(that)h -(command.)275 1442 y(If)g(the)h Ft(-k)g Fu(option)g(is)g(set)h(\(see)g +(command.)275 1354 y(If)g(the)h Ft(-k)g Fu(option)g(is)g(set)h(\(see)g (Section)g(4.3.1)g([The)f(Set)g(Builtin],)h(page)g(61\),)h(then)e(all)g -(parameter)150 1552 y(assignmen)m(ts)f(are)g(placed)h(in)e(the)h(en)m +(parameter)150 1464 y(assignmen)m(ts)f(are)g(placed)h(in)e(the)h(en)m (vironmen)m(t)g(for)g(a)g(command,)f(not)h(just)f(those)i(that)f -(precede)g(the)150 1661 y(command)g(name.)275 1795 y(When)h(Bash)h(in)m +(precede)g(the)150 1573 y(command)g(name.)275 1717 y(When)h(Bash)h(in)m (v)m(ok)m(es)i(an)e(external)h(command,)f(the)g(v)-5 b(ariable)33 b(`)p Ft($_)p Fu(')f(is)g(set)h(to)f(the)g(full)g -(pathname)150 1904 y(of)f(the)f(command)g(and)g(passed)g(to)h(that)g -(command)f(in)g(its)h(en)m(vironmen)m(t.)150 2101 y Fk(3.7.5)63 -b(Exit)40 b(Status)150 2248 y Fu(The)26 b(exit)h(status)f(of)g(an)g +(pathname)150 1827 y(of)f(the)f(command)g(and)g(passed)g(to)h(that)g +(command)f(in)g(its)h(en)m(vironmen)m(t.)150 2035 y Fk(3.7.5)63 +b(Exit)40 b(Status)150 2182 y Fu(The)26 b(exit)h(status)f(of)g(an)g (executed)h(command)f(is)g(the)h(v)-5 b(alue)26 b(returned)f(b)m(y)h -(the)g Fr(w)m(aitpid)k Fu(system)d(call)g(or)150 2357 +(the)g Fr(w)m(aitpid)k Fu(system)d(call)g(or)150 2292 y(equiv)-5 b(alen)m(t)33 b(function.)45 b(Exit)32 b(statuses)g(fall)g (b)s(et)m(w)m(een)h(0)f(and)f(255,)i(though,)f(as)g(explained)g(b)s -(elo)m(w,)h(the)150 2467 y(shell)i(ma)m(y)g(use)f(v)-5 +(elo)m(w,)h(the)150 2401 y(shell)i(ma)m(y)g(use)f(v)-5 b(alues)35 b(ab)s(o)m(v)m(e)g(125)h(sp)s(ecially)-8 b(.)54 b(Exit)35 b(statuses)g(from)f(shell)h(builtins)f(and)f(comp)s(ound)150 -2577 y(commands)j(are)g(also)h(limited)g(to)g(this)f(range.)58 +2511 y(commands)j(are)g(also)h(limited)g(to)g(this)f(range.)58 b(Under)36 b(certain)h(circumstances,)h(the)e(shell)h(will)f(use)150 -2686 y(sp)s(ecial)31 b(v)-5 b(alues)31 b(to)g(indicate)g(sp)s(eci\014c) -f(failure)h(mo)s(des.)275 2819 y(F)-8 b(or)32 b(the)g(shell's)g(purp)s +2621 y(sp)s(ecial)31 b(v)-5 b(alues)31 b(to)g(indicate)g(sp)s(eci\014c) +f(failure)h(mo)s(des.)275 2765 y(F)-8 b(or)32 b(the)g(shell's)g(purp)s (oses,)e(a)j(command)e(whic)m(h)h(exits)g(with)g(a)g(zero)g(exit)h -(status)f(has)f(succeeded.)150 2929 y(A)e(non-zero)h(exit)g(status)g +(status)f(has)f(succeeded.)150 2874 y(A)e(non-zero)h(exit)g(status)g (indicates)g(failure.)40 b(This)28 b(seemingly)i(coun)m(ter-in)m -(tuitiv)m(e)i(sc)m(heme)e(is)f(used)g(so)150 3039 y(there)34 +(tuitiv)m(e)i(sc)m(heme)e(is)f(used)g(so)150 2984 y(there)34 b(is)g(one)g(w)m(ell-de\014ned)g(w)m(a)m(y)g(to)h(indicate)g(success)f (and)f(a)h(v)-5 b(ariet)m(y)35 b(of)f(w)m(a)m(ys)h(to)f(indicate)h(v)-5 -b(arious)150 3148 y(failure)38 b(mo)s(des.)62 b(When)37 +b(arious)150 3093 y(failure)38 b(mo)s(des.)62 b(When)37 b(a)h(command)f(terminates)i(on)e(a)h(fatal)h(signal)g(whose)e(n)m(um)m -(b)s(er)f(is)i Fr(N)p Fu(,)i(Bash)150 3258 y(uses)30 +(b)s(er)f(is)i Fr(N)p Fu(,)i(Bash)150 3203 y(uses)30 b(the)g(v)-5 b(alue)31 b(128)p Ft(+)p Fr(N)42 b Fu(as)30 -b(the)h(exit)g(status.)275 3391 y(If)k(a)h(command)g(is)g(not)g(found,) +b(the)h(exit)g(status.)275 3347 y(If)k(a)h(command)g(is)g(not)g(found,) g(the)g(c)m(hild)h(pro)s(cess)e(created)i(to)g(execute)g(it)g(returns)d -(a)j(status)f(of)150 3501 y(127.)42 b(If)30 b(a)h(command)f(is)g(found) +(a)j(status)f(of)150 3457 y(127.)42 b(If)30 b(a)h(command)f(is)g(found) f(but)h(is)g(not)h(executable,)h(the)f(return)e(status)i(is)f(126.)275 -3634 y(If)i(a)i(command)f(fails)g(b)s(ecause)g(of)h(an)f(error)f +3600 y(If)i(a)i(command)f(fails)g(b)s(ecause)g(of)h(an)f(error)f (during)g(expansion)h(or)g(redirection,)i(the)f(exit)g(status)150 -3743 y(is)c(greater)i(than)e(zero.)275 3877 y(The)38 +3710 y(is)c(greater)i(than)e(zero.)275 3854 y(The)38 b(exit)h(status)g(is)g(used)f(b)m(y)g(the)h(Bash)g(conditional)h -(commands)e(\(see)h(Section)h(3.2.4.2)h([Con-)150 3986 +(commands)e(\(see)h(Section)h(3.2.4.2)h([Con-)150 3964 y(ditional)i(Constructs],)h(page)f(11\))g(and)e(some)i(of)f(the)g(list) g(constructs)g(\(see)h(Section)f(3.2.3)i([Lists],)150 -4096 y(page)31 b(9\).)275 4229 y(All)40 b(of)g(the)h(Bash)f(builtins)f +4073 y(page)31 b(9\).)275 4217 y(All)40 b(of)g(the)h(Bash)f(builtins)f (return)g(an)h(exit)h(status)g(of)f(zero)h(if)f(they)g(succeed)g(and)g -(a)g(non-zero)150 4339 y(status)34 b(on)f(failure,)i(so)f(they)g(ma)m +(a)g(non-zero)150 4327 y(status)34 b(on)f(failure,)i(so)f(they)g(ma)m (y)g(b)s(e)f(used)g(b)m(y)g(the)h(conditional)h(and)e(list)h -(constructs.)50 b(All)35 b(builtins)150 4448 y(return)e(an)i(exit)g +(constructs.)50 b(All)35 b(builtins)150 4436 y(return)e(an)i(exit)g (status)g(of)f(2)h(to)g(indicate)h(incorrect)f(usage,)h(generally)g(in) -m(v)-5 b(alid)35 b(options)g(or)f(missing)150 4558 y(argumen)m(ts.)150 +m(v)-5 b(alid)35 b(options)g(or)f(missing)150 4546 y(argumen)m(ts.)150 4755 y Fk(3.7.6)63 b(Signals)150 4902 y Fu(When)36 b(Bash)g(is)h(in)m (teractiv)m(e,)j(in)c(the)h(absence)f(of)h(an)m(y)f(traps,)i(it)e (ignores)h Ft(SIGTERM)d Fu(\(so)j(that)g(`)p Ft(kill)150 @@ -11543,9 +11541,9 @@ b(is)f(the)g(exit)g(status)g(of)g(the)g(last)h(command)630 1968 y(executed)i(in)f(the)g(function.)72 b(If)41 b Ft(return)e Fu(is)i(executed)h(b)m(y)f(a)h(trap)f(handler,)i(the)e(last)630 2078 y(command)d(used)f(to)i(determine)f(the)g(status)g(is)h(the)f -(last)h(command)e(executed)i(b)s(efore)630 2187 y(the)28 -b(trap)f(handler.)39 b(if)28 b Ft(return)e Fu(is)h(executed)i(during)d -(a)i Ft(DEBUG)f Fu(trap,)h(the)g(last)g(command)630 2297 +(last)h(command)e(executed)i(b)s(efore)630 2187 y(the)27 +b(trap)g(handler.)39 b(If)26 b Ft(return)g Fu(is)h(executed)h(during)d +(a)j Ft(DEBUG)d Fu(trap,)j(the)f(last)h(command)630 2297 y(used)f(to)h(determine)g(the)f(status)h(is)g(the)f(last)i(command)e (executed)h(b)m(y)g(the)f(trap)h(handler)630 2406 y(b)s(efore)e Ft(return)f Fu(w)m(as)i(in)m(v)m(ok)m(ed.)41 b Ft(return)25 @@ -12803,61 +12801,63 @@ b(to)h(the)g(p)s(ositional)g(parameters.)49 b(The)33 b Ft(-x)g Fu(and)f Ft(-v)h Fu(options)h(are)1110 518 y(turned)k(o\013.)68 b(If)38 b(there)i(are)f(no)g(argumen)m(ts,)j(the)e (p)s(ositional)g(parameters)1110 628 y(remain)30 b(unc)m(hanged.)630 -801 y(Using)d(`)p Ft(+)p Fu(')h(rather)f(than)g(`)p Ft(-)p +792 y(Using)d(`)p Ft(+)p Fu(')h(rather)f(than)g(`)p Ft(-)p Fu(')g(causes)h(these)f(options)h(to)g(b)s(e)e(turned)g(o\013.)40 -b(The)27 b(options)h(can)630 910 y(also)36 b(b)s(e)f(used)f(up)s(on)g +b(The)27 b(options)h(can)630 902 y(also)36 b(b)s(e)f(used)f(up)s(on)g (in)m(v)m(o)s(cation)j(of)e(the)g(shell.)56 b(The)34 b(curren)m(t)h(set)h(of)f(options)h(ma)m(y)g(b)s(e)630 -1020 y(found)29 b(in)h Ft($-)p Fu(.)630 1161 y(The)43 +1011 y(found)29 b(in)h Ft($-)p Fu(.)630 1148 y(The)43 b(remaining)h(N)f Fr(argumen)m(ts)48 b Fu(are)c(p)s(ositional)g -(parameters)g(and)f(are)h(assigned,)j(in)630 1271 y(order,)30 +(parameters)g(and)f(are)h(assigned,)j(in)630 1258 y(order,)30 b(to)h Ft($1)p Fu(,)f Ft($2)p Fu(,)36 b(.)22 b(.)g(.)42 b Ft($N)p Fu(.)e(The)30 b(sp)s(ecial)h(parameter)g Ft(#)f -Fu(is)g(set)h(to)g(N.)630 1412 y(The)f(return)f(status)i(is)f(alw)m(a)m +Fu(is)g(set)h(to)g(N.)630 1395 y(The)f(return)f(status)i(is)f(alw)m(a)m (ys)i(zero)f(unless)f(an)g(in)m(v)-5 b(alid)31 b(option)g(is)f -(supplied.)150 1625 y Fk(4.3.2)63 b(The)41 b(Shopt)h(Builtin)150 -1772 y Fu(This)30 b(builtin)g(allo)m(ws)h(y)m(ou)g(to)g(c)m(hange)h +(supplied.)150 1600 y Fk(4.3.2)63 b(The)41 b(Shopt)h(Builtin)150 +1747 y Fu(This)30 b(builtin)g(allo)m(ws)h(y)m(ou)g(to)g(c)m(hange)h (additional)f(shell)f(optional)i(b)s(eha)m(vior.)150 -1952 y Ft(shopt)870 2093 y(shopt)46 b([-pqsu])g([-o])h([)p -Fj(optname)e Ft(...])630 2234 y Fu(T)-8 b(oggle)37 b(the)e(v)-5 +1914 y Ft(shopt)870 2051 y(shopt)46 b([-pqsu])g([-o])h([)p +Fj(optname)e Ft(...])630 2188 y Fu(T)-8 b(oggle)37 b(the)e(v)-5 b(alues)35 b(of)g(settings)h(con)m(trolling)g(optional)g(shell)f(b)s -(eha)m(vior.)55 b(The)34 b(settings)630 2344 y(can)24 +(eha)m(vior.)55 b(The)34 b(settings)630 2297 y(can)24 b(b)s(e)g(either)h(those)f(listed)h(b)s(elo)m(w,)h(or,)f(if)g(the)f Ft(-o)f Fu(option)i(is)f(used,)h(those)g(a)m(v)-5 b(ailable)26 -b(with)630 2453 y(the)k Ft(-o)f Fu(option)i(to)f(the)g +b(with)630 2407 y(the)k Ft(-o)f Fu(option)i(to)f(the)g Ft(set)f Fu(builtin)h(command)f(\(see)i(Section)g(4.3.1)g([The)f(Set)g -(Builtin],)630 2563 y(page)i(61\).)45 b(With)32 b(no)f(options,)h(or)g +(Builtin],)630 2517 y(page)i(61\).)45 b(With)32 b(no)f(options,)h(or)g (with)f(the)g Ft(-p)g Fu(option,)h(a)g(list)g(of)f(all)i(settable)g -(options)630 2673 y(is)j(displa)m(y)m(ed,)h(with)f(an)f(indication)i -(of)e(whether)g(or)h(not)g(eac)m(h)h(is)e(set.)57 b(The)35 -b Ft(-p)g Fu(option)630 2782 y(causes)i(output)e(to)i(b)s(e)e(displa)m -(y)m(ed)i(in)f(a)g(form)g(that)h(ma)m(y)f(b)s(e)g(reused)f(as)h(input.) -57 b(Other)630 2892 y(options)31 b(ha)m(v)m(e)g(the)g(follo)m(wing)h -(meanings:)630 3065 y Ft(-s)384 b Fu(Enable)30 b(\(set\))i(eac)m(h)f -Fr(optname)p Fu(.)630 3238 y Ft(-u)384 b Fu(Disable)31 -b(\(unset\))g(eac)m(h)h Fr(optname)p Fu(.)630 3411 y +(options)630 2626 y(is)g(displa)m(y)m(ed,)i(with)e(an)g(indication)h +(of)g(whether)e(or)h(not)h(eac)m(h)g(is)g(set;)h(if)e +Fr(optnames)38 b Fu(are)630 2736 y(supplied,)25 b(the)g(output)g(is)g +(restricted)g(to)h(those)g(options.)39 b(The)24 b Ft(-p)h +Fu(option)g(causes)g(output)630 2845 y(to)30 b(b)s(e)f(displa)m(y)m(ed) +g(in)g(a)h(form)f(that)g(ma)m(y)h(b)s(e)f(reused)f(as)i(input.)39 +b(Other)29 b(options)g(ha)m(v)m(e)i(the)630 2955 y(follo)m(wing)h +(meanings:)630 3120 y Ft(-s)384 b Fu(Enable)30 b(\(set\))i(eac)m(h)f +Fr(optname)p Fu(.)630 3284 y Ft(-u)384 b Fu(Disable)31 +b(\(unset\))g(eac)m(h)h Fr(optname)p Fu(.)630 3449 y Ft(-q)384 b Fu(Suppresses)28 b(normal)h(output;)h(the)g(return)e -(status)i(indicates)h(whether)e(the)1110 3520 y Fr(optname)37 +(status)i(indicates)h(whether)e(the)1110 3558 y Fr(optname)37 b Fu(is)31 b(set)h(or)f(unset.)43 b(If)31 b(m)m(ultiple)h Fr(optname)37 b Fu(argumen)m(ts)31 b(are)h(giv)m(en)1110 -3630 y(with)d Ft(-q)p Fu(,)g(the)g(return)f(status)h(is)g(zero)h(if)f -(all)h Fr(optnames)j Fu(are)d(enabled;)f(non-)1110 3740 -y(zero)i(otherwise.)630 3913 y Ft(-o)384 b Fu(Restricts)22 +3668 y(with)d Ft(-q)p Fu(,)g(the)g(return)f(status)h(is)g(zero)h(if)f +(all)h Fr(optnames)j Fu(are)d(enabled;)f(non-)1110 3777 +y(zero)i(otherwise.)630 3942 y Ft(-o)384 b Fu(Restricts)22 b(the)f(v)-5 b(alues)22 b(of)f Fr(optname)27 b Fu(to)22 b(b)s(e)e(those)i(de\014ned)e(for)h(the)g Ft(-o)f Fu(option)1110 -4022 y(to)31 b(the)g Ft(set)e Fu(builtin)h(\(see)h(Section)h(4.3.1)g -([The)e(Set)g(Builtin],)i(page)f(61\).)630 4195 y(If)e(either)i +4052 y(to)31 b(the)g Ft(set)e Fu(builtin)h(\(see)h(Section)h(4.3.1)g +([The)e(Set)g(Builtin],)i(page)f(61\).)630 4216 y(If)e(either)i Ft(-s)e Fu(or)h Ft(-u)f Fu(is)h(used)f(with)g(no)h Fr(optname)35 b Fu(argumen)m(ts,)c Ft(shopt)d Fu(sho)m(ws)h(only)h(those)630 -4305 y(options)h(whic)m(h)f(are)h(set)f(or)h(unset,)f(resp)s(ectiv)m -(ely)-8 b(.)630 4446 y(Unless)30 b(otherwise)h(noted,)g(the)g +4326 y(options)h(whic)m(h)f(are)h(set)f(or)h(unset,)f(resp)s(ectiv)m +(ely)-8 b(.)630 4463 y(Unless)30 b(otherwise)h(noted,)g(the)g Ft(shopt)d Fu(options)j(are)g(disabled)f(\(o\013)7 b(\))32 -b(b)m(y)e(default.)630 4587 y(The)d(return)f(status)i(when)f(listing)h +b(b)m(y)e(default.)630 4600 y(The)d(return)f(status)i(when)f(listing)h (options)g(is)f(zero)i(if)e(all)i Fr(optnames)i Fu(are)d(enabled,)g -(non-)630 4697 y(zero)40 b(otherwise.)66 b(When)39 b(setting)h(or)f +(non-)630 4710 y(zero)40 b(otherwise.)66 b(When)39 b(setting)h(or)f (unsetting)g(options,)i(the)e(return)f(status)h(is)g(zero)630 -4806 y(unless)30 b(an)g Fr(optname)36 b Fu(is)30 b(not)h(a)g(v)-5 -b(alid)30 b(shell)h(option.)630 4948 y(The)f(list)h(of)f +4819 y(unless)30 b(an)g Fr(optname)36 b Fu(is)30 b(not)h(a)g(v)-5 +b(alid)30 b(shell)h(option.)630 4956 y(The)f(list)h(of)f Ft(shopt)f Fu(options)i(is:)630 5121 y Ft(autocd)192 b Fu(If)27 b(set,)h(a)g(command)f(name)g(that)h(is)f(the)g(name)g(of)h (a)f(directory)h(is)f(executed)1110 5230 y(as)j(if)f(it)h(w)m(ere)f @@ -14849,562 +14849,568 @@ b(.)p eop end TeXDict begin 94 99 bop 150 -116 a Fu(Chapter)30 b(6:)41 b(Bash)30 b(F)-8 b(eatures)2484 b(94)275 299 y(Arra)m(ys)30 b(are)h(assigned)f(to)h(using)f(comp)s(ound)f(assignmen)m(ts)i(of)g -(the)f(form)390 428 y Fj(name)p Ft(=\()p Fj(value1)44 -b(value2)j Ft(...)f(\))150 558 y Fu(where)38 b(eac)m(h)i +(the)f(form)390 438 y Fj(name)p Ft(=\()p Fj(value1)44 +b(value2)j Ft(...)f(\))150 578 y Fu(where)38 b(eac)m(h)i Fr(v)-5 b(alue)44 b Fu(is)39 b(of)g(the)g(form)f Ft([)p Fj(subscript)p Ft(]=)p Fr(string)p Fu(.)63 b(Indexed)37 -b(arra)m(y)j(assignmen)m(ts)f(do)g(not)150 667 y(require)31 +b(arra)m(y)j(assignmen)m(ts)f(do)g(not)150 687 y(require)31 b(an)m(ything)g(but)f Fr(string)p Fu(.)43 b(When)31 b(assigning)g(to)h (indexed)e(arra)m(ys,)i(if)f(the)g(optional)h(subscript)e(is)150 -777 y(supplied,)i(that)h(index)f(is)h(assigned)g(to;)h(otherwise)f(the) +797 y(supplied,)i(that)h(index)f(is)h(assigned)g(to;)h(otherwise)f(the) g(index)f(of)h(the)g(elemen)m(t)h(assigned)f(is)f(the)h(last)150 -887 y(index)d(assigned)h(to)g(b)m(y)f(the)g(statemen)m(t)j(plus)c(one.) -41 b(Indexing)30 b(starts)h(at)g(zero.)275 1016 y(When)f(assigning)h +907 y(index)d(assigned)h(to)g(b)m(y)f(the)g(statemen)m(t)j(plus)c(one.) +41 b(Indexing)30 b(starts)h(at)g(zero.)275 1046 y(When)f(assigning)h (to)g(an)f(asso)s(ciativ)m(e)j(arra)m(y)-8 b(,)32 b(the)e(subscript)f -(is)i(required.)275 1146 y(This)f(syn)m(tax)j(is)e(also)i(accepted)g(b) +(is)i(required.)275 1186 y(This)f(syn)m(tax)j(is)e(also)i(accepted)g(b) m(y)f(the)f Ft(declare)f Fu(builtin.)44 b(Individual)31 -b(arra)m(y)h(elemen)m(ts)h(ma)m(y)g(b)s(e)150 1255 y(assigned)e(to)g +b(arra)m(y)h(elemen)m(ts)h(ma)m(y)g(b)s(e)150 1295 y(assigned)e(to)g (using)f(the)g Fj(name)p Ft([)p Fj(subscript)p Ft(]=)p Fj(value)25 b Fu(syn)m(tax)31 b(in)m(tro)s(duced)e(ab)s(o)m(v)m(e.)275 -1385 y(When)h(assigning)h(to)h(an)e(indexed)g(arra)m(y)-8 +1435 y(When)h(assigning)h(to)h(an)e(indexed)g(arra)m(y)-8 b(,)32 b(if)f Fr(name)36 b Fu(is)31 b(subscripted)e(b)m(y)i(a)g -(negativ)m(e)i(n)m(um)m(b)s(er,)c(that)150 1494 y(n)m(um)m(b)s(er)43 +(negativ)m(e)i(n)m(um)m(b)s(er,)c(that)150 1544 y(n)m(um)m(b)s(er)43 b(is)h(in)m(terpreted)h(as)f(relativ)m(e)j(to)e(one)f(greater)i(than)e (the)g(maxim)m(um)g(index)g(of)h Fr(name)p Fu(,)j(so)150 -1604 y(negativ)m(e)30 b(indices)d(coun)m(t)h(bac)m(k)g(from)f(the)g +1654 y(negativ)m(e)30 b(indices)d(coun)m(t)h(bac)m(k)g(from)f(the)g (end)g(of)g(the)h(arra)m(y)-8 b(,)29 b(and)e(an)g(index)g(of)g(-1)h -(references)g(the)f(last)150 1714 y(elemen)m(t.)275 1843 +(references)g(the)f(last)150 1763 y(elemen)m(t.)275 1903 y(An)m(y)h(elemen)m(t)h(of)g(an)f(arra)m(y)g(ma)m(y)h(b)s(e)f (referenced)g(using)g Ft(${)p Fj(name)p Ft([)p Fj(subscript)p -Ft(]})p Fu(.)35 b(The)27 b(braces)i(are)150 1953 y(required)f(to)j(a)m +Ft(]})p Fu(.)35 b(The)27 b(braces)i(are)150 2012 y(required)f(to)j(a)m (v)m(oid)f(con\015icts)g(with)f(the)h(shell's)f(\014lename)h(expansion) f(op)s(erators.)41 b(If)28 b(the)i Fr(subscript)g Fu(is)150 -2062 y(`)p Ft(@)p Fu(')f(or)h(`)p Ft(*)p Fu(',)f(the)h(w)m(ord)f +2122 y(`)p Ft(@)p Fu(')f(or)h(`)p Ft(*)p Fu(',)f(the)h(w)m(ord)f (expands)f(to)i(all)g(mem)m(b)s(ers)e(of)i(the)f(arra)m(y)h Fr(name)p Fu(.)40 b(These)29 b(subscripts)f(di\013er)h(only)150 -2172 y(when)36 b(the)g(w)m(ord)g(app)s(ears)g(within)g(double)g +2232 y(when)36 b(the)g(w)m(ord)g(app)s(ears)g(within)g(double)g (quotes.)60 b(If)36 b(the)h(w)m(ord)f(is)g(double-quoted,)j -Ft(${)p Fj(name)p Ft([*]})150 2281 y Fu(expands)25 b(to)h(a)g(single)h +Ft(${)p Fj(name)p Ft([*]})150 2341 y Fu(expands)25 b(to)h(a)g(single)h (w)m(ord)e(with)g(the)h(v)-5 b(alue)26 b(of)g(eac)m(h)h(arra)m(y)f(mem) m(b)s(er)f(separated)h(b)m(y)g(the)f(\014rst)g(c)m(harac-)150 -2391 y(ter)j(of)g(the)h Ft(IFS)e Fu(v)-5 b(ariable,)29 +2451 y(ter)j(of)g(the)h Ft(IFS)e Fu(v)-5 b(ariable,)29 b(and)f Ft(${)p Fj(name)p Ft([@]})d Fu(expands)i(eac)m(h)i(elemen)m(t)h (of)e Fr(name)33 b Fu(to)c(a)f(separate)h(w)m(ord.)150 -2501 y(When)j(there)h(are)f(no)g(arra)m(y)h(mem)m(b)s(ers,)f +2560 y(When)j(there)h(are)f(no)g(arra)m(y)h(mem)m(b)s(ers,)f Ft(${)p Fj(name)p Ft([@]})e Fu(expands)h(to)i(nothing.)47 -b(If)31 b(the)i(double-quoted)150 2610 y(expansion)39 +b(If)31 b(the)i(double-quoted)150 2670 y(expansion)39 b(o)s(ccurs)h(within)f(a)h(w)m(ord,)i(the)d(expansion)h(of)g(the)f -(\014rst)g(parameter)h(is)g(joined)f(with)h(the)150 2720 +(\014rst)g(parameter)h(is)g(joined)f(with)h(the)150 2780 y(b)s(eginning)29 b(part)g(of)h(the)f(original)i(w)m(ord,)e(and)g(the)h (expansion)f(of)h(the)f(last)i(parameter)e(is)h(joined)f(with)150 -2829 y(the)g(last)h(part)f(of)g(the)g(original)h(w)m(ord.)40 +2889 y(the)g(last)h(part)f(of)g(the)g(original)h(w)m(ord.)40 b(This)28 b(is)h(analogous)h(to)f(the)h(expansion)e(of)h(the)g(sp)s -(ecial)h(param-)150 2939 y(eters)g(`)p Ft(@)p Fu(')f(and)g(`)p +(ecial)h(param-)150 2999 y(eters)g(`)p Ft(@)p Fu(')f(and)g(`)p Ft(*)p Fu('.)41 b Ft(${#)p Fj(name)p Ft([)p Fj(subscript)p Ft(]})24 b Fu(expands)k(to)i(the)g(length)g(of)f Ft(${)p Fj(name)p Ft([)p Fj(subscript)p Ft(]})p Fu(.)35 b(If)150 -3049 y Fr(subscript)28 b Fu(is)g(`)p Ft(@)p Fu(')f(or)h(`)p +3108 y Fr(subscript)28 b Fu(is)g(`)p Ft(@)p Fu(')f(or)h(`)p Ft(*)p Fu(',)g(the)g(expansion)f(is)g(the)h(n)m(um)m(b)s(er)e(of)i (elemen)m(ts)g(in)f(the)h(arra)m(y)-8 b(.)41 b(If)27 -b(the)g Fr(subscript)150 3158 y Fu(used)34 b(to)h(reference)g(an)f +b(the)g Fr(subscript)150 3218 y Fu(used)34 b(to)h(reference)g(an)f (elemen)m(t)i(of)f(an)f(indexed)g(arra)m(y)h(ev)-5 b(aluates)36 b(to)f(a)g(n)m(um)m(b)s(er)e(less)i(than)f(zero,)i(it)150 -3268 y(is)c(in)m(terpreted)h(as)f(relativ)m(e)i(to)f(one)f(greater)h +3328 y(is)c(in)m(terpreted)h(as)f(relativ)m(e)i(to)f(one)f(greater)h (than)f(the)h(maxim)m(um)f(index)f(of)h(the)h(arra)m(y)-8 -b(,)33 b(so)g(negativ)m(e)150 3377 y(indices)d(coun)m(t)h(bac)m(k)h +b(,)33 b(so)g(negativ)m(e)150 3437 y(indices)d(coun)m(t)h(bac)m(k)h (from)e(the)g(end)g(of)g(the)h(arra)m(y)-8 b(,)31 b(and)f(an)g(index)g (of)h(-1)g(refers)f(to)h(the)g(last)g(elemen)m(t.)275 -3507 y(Referencing)41 b(an)f(arra)m(y)h(v)-5 b(ariable)42 +3577 y(Referencing)41 b(an)f(arra)m(y)h(v)-5 b(ariable)42 b(without)e(a)h(subscript)e(is)i(equiv)-5 b(alen)m(t)42 -b(to)f(referencing)g(with)g(a)150 3616 y(subscript)35 +b(to)f(referencing)g(with)g(a)150 3686 y(subscript)35 b(of)h(0.)57 b(An)m(y)36 b(reference)g(to)h(a)f(v)-5 b(ariable)36 b(using)g(a)g(v)-5 b(alid)36 b(subscript)f(is)h(legal,)j -(and)c Ft(bash)g Fu(will)150 3726 y(create)d(an)e(arra)m(y)h(if)f -(necessary)-8 b(.)275 3856 y(An)35 b(arra)m(y)i(v)-5 +(and)c Ft(bash)g Fu(will)150 3796 y(create)d(an)e(arra)m(y)h(if)f +(necessary)-8 b(.)275 3935 y(An)35 b(arra)m(y)i(v)-5 b(ariable)37 b(is)g(considered)f(set)h(if)f(a)h(subscript)e(has)h(b)s (een)g(assigned)g(a)h(v)-5 b(alue.)59 b(The)36 b(n)m(ull)150 -3965 y(string)30 b(is)h(a)g(v)-5 b(alid)30 b(v)-5 b(alue.)275 -4095 y(It)29 b(is)h(p)s(ossible)f(to)h(obtain)g(the)f(k)m(eys)i +4045 y(string)30 b(is)h(a)g(v)-5 b(alid)30 b(v)-5 b(alue.)275 +4184 y(It)29 b(is)h(p)s(ossible)f(to)h(obtain)g(the)f(k)m(eys)i (\(indices\))f(of)f(an)h(arra)m(y)g(as)f(w)m(ell)i(as)f(the)f(v)-5 b(alues.)41 b($)p Fi({)p Fu(!)p Fr(name)5 b Fu([@])p -Fi(})150 4204 y Fu(and)39 b($)p Fi({)p Fu(!)p Fr(name)5 +Fi(})150 4294 y Fu(and)39 b($)p Fi({)p Fu(!)p Fr(name)5 b Fu([*])p Fi(})43 b Fu(expand)c(to)i(the)f(indices)h(assigned)f(in)g (arra)m(y)g(v)-5 b(ariable)41 b Fr(name)p Fu(.)70 b(The)39 -b(treatmen)m(t)150 4314 y(when)i(in)g(double)g(quotes)h(is)f(similar)h +b(treatmen)m(t)150 4403 y(when)i(in)g(double)g(quotes)h(is)f(similar)h (to)h(the)e(expansion)h(of)f(the)h(sp)s(ecial)g(parameters)g(`)p -Ft(@)p Fu(')g(and)f(`)p Ft(*)p Fu(')150 4423 y(within)30 -b(double)g(quotes.)275 4553 y(The)j Ft(unset)g Fu(builtin)h(is)g(used)g -(to)h(destro)m(y)g(arra)m(ys.)52 b Ft(unset)29 b Fj(name)p -Ft([)p Fj(subscript)p Ft(])h Fu(destro)m(ys)35 b(the)g(ar-)150 -4663 y(ra)m(y)j(elemen)m(t)h(at)g(index)e Fr(subscript)p -Fu(.)61 b(Negativ)m(e)41 b(subscripts)36 b(to)i(indexed)g(arra)m(ys)g -(are)g(in)m(terpreted)g(as)150 4772 y(describ)s(ed)f(ab)s(o)m(v)m(e.)67 -b(Care)38 b(m)m(ust)h(b)s(e)f(tak)m(en)h(to)h(a)m(v)m(oid)g(un)m(w)m -(an)m(ted)e(side)h(e\013ects)h(caused)e(b)m(y)h(\014lename)150 -4882 y(expansion.)70 b(Unsetting)42 b(the)e(last)h(elemen)m(t)h(of)f -(an)f(arra)m(y)h(v)-5 b(ariable)41 b(do)s(es)f(not)g(unset)g(the)h(v)-5 -b(ariable.)150 4991 y Ft(unset)29 b Fj(name)p Fu(,)e(where)h +Ft(@)p Fu(')g(and)f(`)p Ft(*)p Fu(')150 4513 y(within)30 +b(double)g(quotes.)275 4653 y(The)25 b Ft(unset)g Fu(builtin)g(is)h +(used)f(to)i(destro)m(y)f(arra)m(ys.)40 b Ft(unset)29 +b Fj(name)p Ft([)p Fj(subscript)p Ft(])22 b Fu(destro)m(ys)k(the)g +(arra)m(y)150 4762 y(elemen)m(t)40 b(at)e(index)g Fr(subscript)p +Fu(.)62 b(Negativ)m(e)41 b(subscripts)c(to)i(indexed)e(arra)m(ys)i(are) +f(in)m(terpreted)h(as)f(de-)150 4872 y(scrib)s(ed)30 +b(ab)s(o)m(v)m(e.)42 b(Unsetting)31 b(the)g(last)g(elemen)m(t)h(of)f +(an)g(arra)m(y)g(v)-5 b(ariable)31 b(do)s(es)f(not)h(unset)f(the)h(v)-5 +b(ariable.)150 4981 y Ft(unset)29 b Fj(name)p Fu(,)e(where)h Fr(name)33 b Fu(is)28 b(an)g(arra)m(y)-8 b(,)30 b(remo)m(v)m(es)f(the)f (en)m(tire)h(arra)m(y)-8 b(.)41 b(A)28 b(subscript)f(of)h(`)p -Ft(*)p Fu(')g(or)g(`)p Ft(@)p Fu(')g(also)150 5101 y(remo)m(v)m(es)k -(the)e(en)m(tire)i(arra)m(y)-8 b(.)275 5230 y(The)20 -b Ft(declare)p Fu(,)h Ft(local)p Fu(,)h(and)e Ft(readonly)f -Fu(builtins)h(eac)m(h)i(accept)g(a)g Ft(-a)e Fu(option)h(to)h(sp)s -(ecify)f(an)f(indexed)150 5340 y(arra)m(y)28 b(and)f(a)h -Ft(-A)e Fu(option)i(to)g(sp)s(ecify)f(an)h(asso)s(ciativ)m(e)i(arra)m -(y)-8 b(.)40 b(If)27 b(b)s(oth)g(options)h(are)g(supplied,)f -Ft(-A)f Fu(tak)m(es)p eop end +Ft(*)p Fu(')g(or)g(`)p Ft(@)p Fu(')g(also)150 5091 y(remo)m(v)m(es)k +(the)e(en)m(tire)i(arra)m(y)-8 b(.)275 5230 y(When)35 +b(using)g(a)i(v)-5 b(ariable)36 b(name)g(with)g(a)g(subscript)e(as)i +(an)g(argumen)m(t)g(to)h(a)f(command,)h(suc)m(h)f(as)150 +5340 y(with)k Ft(unset)p Fu(,)h(without)e(using)h(the)g(w)m(ord)f +(expansion)h(syn)m(tax)g(describ)s(ed)f(ab)s(o)m(v)m(e,)44 +b(the)c(argumen)m(t)g(is)p eop end %%Page: 95 101 TeXDict begin 95 100 bop 150 -116 a Fu(Chapter)30 b(6:)41 -b(Bash)30 b(F)-8 b(eatures)2484 b(95)150 299 y(precedence.)55 -b(The)35 b Ft(read)f Fu(builtin)h(accepts)h(a)g Ft(-a)e -Fu(option)i(to)g(assign)f(a)g(list)h(of)f(w)m(ords)g(read)g(from)g(the) -150 408 y(standard)h(input)g(to)i(an)f(arra)m(y)-8 b(,)40 -b(and)c(can)h(read)g(v)-5 b(alues)38 b(from)e(the)h(standard)g(input)f -(in)m(to)i(individual)150 518 y(arra)m(y)f(elemen)m(ts.)62 -b(The)36 b Ft(set)g Fu(and)h Ft(declare)d Fu(builtins)j(displa)m(y)g -(arra)m(y)g(v)-5 b(alues)37 b(in)g(a)g(w)m(a)m(y)h(that)g(allo)m(ws)150 -628 y(them)30 b(to)h(b)s(e)f(reused)g(as)g(input.)150 -876 y Fs(6.8)68 b(The)45 b(Directory)g(Stac)l(k)150 1036 -y Fu(The)21 b(directory)h(stac)m(k)h(is)e(a)h(list)g(of)f(recen)m +b(Bash)30 b(F)-8 b(eatures)2484 b(95)150 299 y(sub)5 +b(ject)25 b(to)h(the)g(shell's)g(\014lename)f(expansion.)39 +b(If)25 b(\014lename)h(expansion)f(is)g(not)h(desired,)g(the)f(argumen) +m(t)150 408 y(should)k(b)s(e)h(quoted.)275 539 y(The)20 +b Ft(declare)p Fu(,)h Ft(local)p Fu(,)h(and)e Ft(readonly)f +Fu(builtins)h(eac)m(h)i(accept)g(a)g Ft(-a)e Fu(option)h(to)h(sp)s +(ecify)f(an)f(indexed)150 648 y(arra)m(y)28 b(and)f(a)h +Ft(-A)e Fu(option)i(to)g(sp)s(ecify)f(an)h(asso)s(ciativ)m(e)i(arra)m +(y)-8 b(.)40 b(If)27 b(b)s(oth)g(options)h(are)g(supplied,)f +Ft(-A)f Fu(tak)m(es)150 758 y(precedence.)55 b(The)35 +b Ft(read)f Fu(builtin)h(accepts)h(a)g Ft(-a)e Fu(option)i(to)g(assign) +f(a)g(list)h(of)f(w)m(ords)g(read)g(from)g(the)150 868 +y(standard)h(input)g(to)i(an)f(arra)m(y)-8 b(,)40 b(and)c(can)h(read)g +(v)-5 b(alues)38 b(from)e(the)h(standard)g(input)f(in)m(to)i +(individual)150 977 y(arra)m(y)f(elemen)m(ts.)62 b(The)36 +b Ft(set)g Fu(and)h Ft(declare)d Fu(builtins)j(displa)m(y)g(arra)m(y)g +(v)-5 b(alues)37 b(in)g(a)g(w)m(a)m(y)h(that)g(allo)m(ws)150 +1087 y(them)30 b(to)h(b)s(e)f(reused)g(as)g(input.)150 +1319 y Fs(6.8)68 b(The)45 b(Directory)g(Stac)l(k)150 +1478 y Fu(The)21 b(directory)h(stac)m(k)h(is)e(a)h(list)g(of)f(recen)m (tly-visited)j(directories.)39 b(The)20 b Ft(pushd)g -Fu(builtin)h(adds)g(directories)150 1145 y(to)42 b(the)f(stac)m(k)i(as) +Fu(builtin)h(adds)g(directories)150 1588 y(to)42 b(the)f(stac)m(k)i(as) e(it)h(c)m(hanges)g(the)f(curren)m(t)g(directory)-8 b(,)45 b(and)40 b(the)i Ft(popd)e Fu(builtin)g(remo)m(v)m(es)j(sp)s(eci\014ed) -150 1255 y(directories)29 b(from)f(the)h(stac)m(k)h(and)d(c)m(hanges)j +150 1698 y(directories)29 b(from)f(the)h(stac)m(k)h(and)d(c)m(hanges)j (the)e(curren)m(t)g(directory)h(to)g(the)g(directory)f(remo)m(v)m(ed.) -41 b(The)150 1365 y Ft(dirs)34 b Fu(builtin)g(displa)m(ys)h(the)g(con)m +41 b(The)150 1807 y Ft(dirs)34 b Fu(builtin)g(displa)m(ys)h(the)g(con)m (ten)m(ts)i(of)e(the)g(directory)h(stac)m(k.)56 b(The)34 -b(curren)m(t)h(directory)g(is)g(alw)m(a)m(ys)150 1474 +b(curren)m(t)h(directory)g(is)g(alw)m(a)m(ys)150 1917 y(the)c Ft(")p Fu(top)p Ft(")f Fu(of)g(the)h(directory)g(stac)m(k.)275 -1614 y(The)k(con)m(ten)m(ts)i(of)f(the)h(directory)f(stac)m(k)h(are)f +2047 y(The)k(con)m(ten)m(ts)i(of)f(the)h(directory)f(stac)m(k)h(are)f (also)h(visible)g(as)f(the)g(v)-5 b(alue)36 b(of)g(the)g -Ft(DIRSTACK)e Fu(shell)150 1724 y(v)-5 b(ariable.)150 -1928 y Fk(6.8.1)63 b(Directory)40 b(Stac)m(k)g(Builtins)150 -2103 y Ft(dirs)870 2240 y(dirs)47 b([-clpv])e([+)p Fj(N)i -Ft(|)h(-)p Fj(N)p Ft(])630 2377 y Fu(Displa)m(y)35 b(the)f(list)g(of)g +Ft(DIRSTACK)e Fu(shell)150 2157 y(v)-5 b(ariable.)150 +2347 y Fk(6.8.1)63 b(Directory)40 b(Stac)m(k)g(Builtins)150 +2515 y Ft(dirs)870 2645 y(dirs)47 b([-clpv])e([+)p Fj(N)i +Ft(|)h(-)p Fj(N)p Ft(])630 2776 y Fu(Displa)m(y)35 b(the)f(list)g(of)g (curren)m(tly)g(remem)m(b)s(ered)f(directories.)51 b(Directories)36 -b(are)e(added)f(to)630 2487 y(the)28 b(list)h(with)f(the)g +b(are)e(added)f(to)630 2885 y(the)28 b(list)h(with)f(the)g Ft(pushd)f Fu(command;)i(the)f Ft(popd)f Fu(command)h(remo)m(v)m(es)h -(directories)g(from)630 2596 y(the)i(list.)41 b(The)30 +(directories)g(from)630 2995 y(the)i(list.)41 b(The)30 b(curren)m(t)g(directory)h(is)f(alw)m(a)m(ys)i(the)f(\014rst)e -(directory)i(in)f(the)h(stac)m(k.)630 2761 y Ft(-c)384 +(directory)i(in)f(the)h(stac)m(k.)630 3146 y Ft(-c)384 b Fu(Clears)31 b(the)f(directory)h(stac)m(k)h(b)m(y)e(deleting)h(all)h -(of)e(the)h(elemen)m(ts.)630 2926 y Ft(-l)384 b Fu(Pro)s(duces)31 +(of)e(the)h(elemen)m(ts.)630 3297 y Ft(-l)384 b Fu(Pro)s(duces)31 b(a)h(listing)h(using)e(full)h(pathnames;)h(the)f(default)g(listing)h -(format)1110 3036 y(uses)d(a)h(tilde)g(to)g(denote)g(the)f(home)h -(directory)-8 b(.)630 3200 y Ft(-p)384 b Fu(Causes)30 +(format)1110 3406 y(uses)d(a)h(tilde)g(to)g(denote)g(the)f(home)h +(directory)-8 b(.)630 3557 y Ft(-p)384 b Fu(Causes)30 b Ft(dirs)f Fu(to)i(prin)m(t)f(the)h(directory)g(stac)m(k)h(with)e(one) -g(en)m(try)h(p)s(er)e(line.)630 3365 y Ft(-v)384 b Fu(Causes)36 +g(en)m(try)h(p)s(er)e(line.)630 3708 y Ft(-v)384 b Fu(Causes)36 b Ft(dirs)f Fu(to)i(prin)m(t)f(the)g(directory)h(stac)m(k)h(with)e(one) -h(en)m(try)f(p)s(er)f(line,)1110 3475 y(pre\014xing)30 +h(en)m(try)f(p)s(er)f(line,)1110 3818 y(pre\014xing)30 b(eac)m(h)h(en)m(try)g(with)f(its)h(index)e(in)i(the)f(stac)m(k.)630 -3639 y Ft(+)p Fj(N)384 b Fu(Displa)m(ys)23 b(the)f Fr(N)10 +3969 y Ft(+)p Fj(N)384 b Fu(Displa)m(ys)23 b(the)f Fr(N)10 b Fu(th)21 b(directory)h(\(coun)m(ting)h(from)e(the)h(left)g(of)g(the)g -(list)g(prin)m(ted)1110 3749 y(b)m(y)30 b Ft(dirs)f Fu(when)h(in)m(v)m +(list)g(prin)m(ted)1110 4079 y(b)m(y)30 b Ft(dirs)f Fu(when)h(in)m(v)m (ok)m(ed)i(without)e(options\),)h(starting)g(with)g(zero.)630 -3914 y Ft(-)p Fj(N)384 b Fu(Displa)m(ys)47 b(the)g Fr(N)10 +4230 y Ft(-)p Fj(N)384 b Fu(Displa)m(ys)47 b(the)g Fr(N)10 b Fu(th)46 b(directory)h(\(coun)m(ting)g(from)f(the)g(righ)m(t)h(of)g -(the)f(list)1110 4023 y(prin)m(ted)25 b(b)m(y)g Ft(dirs)g +(the)f(list)1110 4339 y(prin)m(ted)25 b(b)m(y)g Ft(dirs)g Fu(when)f(in)m(v)m(ok)m(ed)j(without)f(options\),)h(starting)g(with)e -(zero.)150 4188 y Ft(popd)870 4325 y(popd)47 b([-n])f([+)p -Fj(N)h Ft(|)h(-)p Fj(N)p Ft(])630 4462 y Fu(When)32 b(no)g(argumen)m +(zero.)150 4490 y Ft(popd)870 4620 y(popd)47 b([-n])f([+)p +Fj(N)h Ft(|)h(-)p Fj(N)p Ft(])630 4751 y Fu(When)32 b(no)g(argumen)m (ts)h(are)g(giv)m(en,)h Ft(popd)d Fu(remo)m(v)m(es)j(the)f(top)f -(directory)h(from)f(the)g(stac)m(k)630 4572 y(and)f(p)s(erforms)e(a)j +(directory)h(from)f(the)g(stac)m(k)630 4860 y(and)f(p)s(erforms)e(a)j Ft(cd)f Fu(to)h(the)f(new)g(top)h(directory)-8 b(.)44 b(The)31 b(elemen)m(ts)i(are)e(n)m(um)m(b)s(ered)f(from)630 -4682 y(0)j(starting)g(at)g(the)f(\014rst)g(directory)g(listed)h(with)f +4970 y(0)j(starting)g(at)g(the)f(\014rst)g(directory)g(listed)h(with)f Ft(dirs)p Fu(;)g(that)h(is,)g Ft(popd)e Fu(is)i(equiv)-5 -b(alen)m(t)33 b(to)630 4791 y Ft(popd)c(+0)p Fu(.)630 -4956 y Ft(-n)384 b Fu(Suppresses)27 b(the)j(normal)g(c)m(hange)g(of)g -(directory)g(when)e(remo)m(ving)j(directo-)1110 5066 +b(alen)m(t)33 b(to)630 5079 y Ft(popd)c(+0)p Fu(.)630 +5230 y Ft(-n)384 b Fu(Suppresses)27 b(the)j(normal)g(c)m(hange)g(of)g +(directory)g(when)e(remo)m(ving)j(directo-)1110 5340 y(ries)f(from)g(the)h(stac)m(k,)h(so)f(that)g(only)f(the)h(stac)m(k)g -(is)g(manipulated.)630 5230 y Ft(+)p Fj(N)384 b Fu(Remo)m(v)m(es)22 -b(the)f Fr(N)10 b Fu(th)20 b(directory)g(\(coun)m(ting)i(from)e(the)g -(left)h(of)g(the)f(list)h(prin)m(ted)1110 5340 y(b)m(y)30 -b Ft(dirs)p Fu(\),)g(starting)h(with)f(zero.)p eop end +(is)g(manipulated.)p eop end %%Page: 96 102 TeXDict begin 96 101 bop 150 -116 a Fu(Chapter)30 b(6:)41 -b(Bash)30 b(F)-8 b(eatures)2484 b(96)630 299 y Ft(-)p -Fj(N)384 b Fu(Remo)m(v)m(es)46 b(the)g Fr(N)10 b Fu(th)44 -b(directory)h(\(coun)m(ting)h(from)f(the)g(righ)m(t)g(of)g(the)g(list) -1110 408 y(prin)m(ted)30 b(b)m(y)g Ft(dirs)p Fu(\),)g(starting)h(with)f -(zero.)150 570 y Ft(pushd)870 706 y(pushd)46 b([-n])h([+)p -Fj(N)g Ft(|)g Fj(-N)h Ft(|)f Fj(dir)p Ft(])630 841 y -Fu(Sa)m(v)m(e)30 b(the)e(curren)m(t)g(directory)h(on)f(the)h(top)f(of)h -(the)f(directory)h(stac)m(k)h(and)e(then)g Ft(cd)f Fu(to)i -Fr(dir)p Fu(.)630 951 y(With)39 b(no)f(argumen)m(ts,)j -Ft(pushd)c Fu(exc)m(hanges)j(the)f(top)f(t)m(w)m(o)i(directories)g(and) -d(mak)m(es)j(the)630 1060 y(new)30 b(top)g(the)h(curren)m(t)f -(directory)-8 b(.)630 1222 y Ft(-n)384 b Fu(Suppresses)24 -b(the)j(normal)f(c)m(hange)h(of)g(directory)f(when)g(rotating)h(or)f -(adding)1110 1332 y(directories)31 b(to)h(the)e(stac)m(k,)i(so)f(that)g -(only)f(the)h(stac)m(k)h(is)e(manipulated.)630 1493 y -Ft(+)p Fj(N)384 b Fu(Brings)29 b(the)f Fr(N)10 b Fu(th)29 -b(directory)g(\(coun)m(ting)h(from)e(the)g(left)i(of)e(the)h(list)g -(prin)m(ted)1110 1603 y(b)m(y)34 b Ft(dirs)p Fu(,)g(starting)h(with)f -(zero\))i(to)f(the)f(top)g(of)h(the)f(list)h(b)m(y)f(rotating)i(the) -1110 1712 y(stac)m(k.)630 1874 y Ft(-)p Fj(N)384 b Fu(Brings)23 +b(Bash)30 b(F)-8 b(eatures)2484 b(96)630 299 y Ft(+)p +Fj(N)384 b Fu(Remo)m(v)m(es)22 b(the)f Fr(N)10 b Fu(th)20 +b(directory)g(\(coun)m(ting)i(from)e(the)g(left)h(of)g(the)f(list)h +(prin)m(ted)1110 408 y(b)m(y)30 b Ft(dirs)p Fu(\),)g(starting)h(with)f +(zero.)630 564 y Ft(-)p Fj(N)384 b Fu(Remo)m(v)m(es)46 +b(the)g Fr(N)10 b Fu(th)44 b(directory)h(\(coun)m(ting)h(from)f(the)g +(righ)m(t)g(of)g(the)g(list)1110 674 y(prin)m(ted)30 +b(b)m(y)g Ft(dirs)p Fu(\),)g(starting)h(with)f(zero.)150 +830 y Ft(pushd)870 962 y(pushd)46 b([-n])h([+)p Fj(N)g +Ft(|)g Fj(-N)h Ft(|)f Fj(dir)p Ft(])630 1095 y Fu(Sa)m(v)m(e)30 +b(the)e(curren)m(t)g(directory)h(on)f(the)h(top)f(of)h(the)f(directory) +h(stac)m(k)h(and)e(then)g Ft(cd)f Fu(to)i Fr(dir)p Fu(.)630 +1205 y(With)39 b(no)f(argumen)m(ts,)j Ft(pushd)c Fu(exc)m(hanges)j(the) +f(top)f(t)m(w)m(o)i(directories)g(and)d(mak)m(es)j(the)630 +1314 y(new)30 b(top)g(the)h(curren)m(t)f(directory)-8 +b(.)630 1470 y Ft(-n)384 b Fu(Suppresses)24 b(the)j(normal)f(c)m(hange) +h(of)g(directory)f(when)g(rotating)h(or)f(adding)1110 +1580 y(directories)31 b(to)h(the)e(stac)m(k,)i(so)f(that)g(only)f(the)h +(stac)m(k)h(is)e(manipulated.)630 1735 y Ft(+)p Fj(N)384 +b Fu(Brings)29 b(the)f Fr(N)10 b Fu(th)29 b(directory)g(\(coun)m(ting)h +(from)e(the)g(left)i(of)e(the)h(list)g(prin)m(ted)1110 +1845 y(b)m(y)34 b Ft(dirs)p Fu(,)g(starting)h(with)f(zero\))i(to)f(the) +f(top)g(of)h(the)f(list)h(b)m(y)f(rotating)i(the)1110 +1955 y(stac)m(k.)630 2110 y Ft(-)p Fj(N)384 b Fu(Brings)23 b(the)g Fr(N)10 b Fu(th)23 b(directory)h(\(coun)m(ting)g(from)e(the)i -(righ)m(t)f(of)g(the)h(list)f(prin)m(ted)1110 1983 y(b)m(y)34 +(righ)m(t)f(of)g(the)h(list)f(prin)m(ted)1110 2220 y(b)m(y)34 b Ft(dirs)p Fu(,)g(starting)h(with)f(zero\))i(to)f(the)f(top)g(of)h -(the)f(list)h(b)m(y)f(rotating)i(the)1110 2093 y(stac)m(k.)630 -2255 y Fj(dir)336 b Fu(Mak)m(es)28 b Fr(dir)33 b Fu(b)s(e)27 +(the)f(list)h(b)m(y)f(rotating)i(the)1110 2330 y(stac)m(k.)630 +2485 y Fj(dir)336 b Fu(Mak)m(es)28 b Fr(dir)33 b Fu(b)s(e)27 b(the)g(top)g(of)g(the)h(stac)m(k,)h(making)e(it)h(the)f(new)g(curren)m -(t)g(direc-)1110 2364 y(tory)k(as)f(if)h(it)g(had)e(b)s(een)h(supplied) +(t)g(direc-)1110 2595 y(tory)k(as)f(if)h(it)g(had)e(b)s(een)h(supplied) f(as)i(an)f(argumen)m(t)h(to)g(the)f Ft(cd)g Fu(builtin.)150 -2608 y Fs(6.9)68 b(Con)l(trolling)47 b(the)e(Prompt)150 -2768 y Fu(The)24 b(v)-5 b(alue)24 b(of)h(the)f(v)-5 b(ariable)25 +2832 y Fs(6.9)68 b(Con)l(trolling)47 b(the)e(Prompt)150 +2992 y Fu(The)24 b(v)-5 b(alue)24 b(of)h(the)f(v)-5 b(ariable)25 b Ft(PROMPT_COMMAND)20 b Fu(is)25 b(examined)f(just)g(b)s(efore)f(Bash) -i(prin)m(ts)e(eac)m(h)j(primary)150 2877 y(prompt.)39 +i(prin)m(ts)e(eac)m(h)j(primary)150 3101 y(prompt.)39 b(If)28 b Ft(PROMPT_COMMAND)d Fu(is)j(set)h(and)f(has)g(a)h(non-n)m (ull)f(v)-5 b(alue,)29 b(then)f(the)h(v)-5 b(alue)29 -b(is)f(executed)i(just)150 2987 y(as)h(if)f(it)h(had)f(b)s(een)f(t)m -(yp)s(ed)h(on)h(the)f(command)g(line.)275 3123 y(In)d(addition,)j(the)f +b(is)f(executed)i(just)150 3211 y(as)h(if)f(it)h(had)f(b)s(een)f(t)m +(yp)s(ed)h(on)h(the)f(command)g(line.)275 3343 y(In)d(addition,)j(the)f (follo)m(wing)h(table)f(describ)s(es)f(the)h(sp)s(ecial)g(c)m (haracters)h(whic)m(h)f(can)f(app)s(ear)g(in)h(the)150 -3233 y(prompt)g(v)-5 b(ariables)32 b Ft(PS0)p Fu(,)d +3453 y(prompt)g(v)-5 b(ariables)32 b Ft(PS0)p Fu(,)d Ft(PS1)p Fu(,)h Ft(PS2)p Fu(,)g(and)f Ft(PS4)p Fu(:)150 -3396 y Ft(\\a)384 b Fu(A)30 b(b)s(ell)h(c)m(haracter.)150 -3557 y Ft(\\d)384 b Fu(The)30 b(date,)h(in)f Ft(")p Fu(W)-8 +3609 y Ft(\\a)384 b Fu(A)30 b(b)s(ell)h(c)m(haracter.)150 +3765 y Ft(\\d)384 b Fu(The)30 b(date,)h(in)f Ft(")p Fu(W)-8 b(eekda)m(y)32 b(Mon)m(th)f(Date)p Ft(")h Fu(format)f(\(e.g.,)h Ft(")p Fu(T)-8 b(ue)30 b(Ma)m(y)h(26)p Ft(")p Fu(\).)150 -3719 y Ft(\\D{)p Fj(format)p Ft(})630 3828 y Fu(The)c +3921 y Ft(\\D{)p Fj(format)p Ft(})630 4030 y Fu(The)c Fr(format)i Fu(is)f(passed)e(to)i Ft(strftime)p Fu(\(3\))f(and)f(the)i (result)f(is)g(inserted)g(in)m(to)h(the)g(prompt)630 -3938 y(string;)42 b(an)d(empt)m(y)f Fr(format)j Fu(results)d(in)g(a)h +4140 y(string;)42 b(an)d(empt)m(y)f Fr(format)j Fu(results)d(in)g(a)h (lo)s(cale-sp)s(eci\014c)h(time)f(represen)m(tation.)65 -b(The)630 4047 y(braces)31 b(are)f(required.)150 4209 +b(The)630 4249 y(braces)31 b(are)f(required.)150 4405 y Ft(\\e)384 b Fu(An)30 b(escap)s(e)h(c)m(haracter.)150 -4371 y Ft(\\h)384 b Fu(The)30 b(hostname,)h(up)e(to)i(the)g(\014rst)e -(`.'.)150 4532 y Ft(\\H)384 b Fu(The)30 b(hostname.)150 -4694 y Ft(\\j)384 b Fu(The)30 b(n)m(um)m(b)s(er)f(of)h(jobs)g(curren)m -(tly)h(managed)g(b)m(y)f(the)g(shell.)150 4855 y Ft(\\l)384 +4561 y Ft(\\h)384 b Fu(The)30 b(hostname,)h(up)e(to)i(the)g(\014rst)e +(`.'.)150 4717 y Ft(\\H)384 b Fu(The)30 b(hostname.)150 +4873 y Ft(\\j)384 b Fu(The)30 b(n)m(um)m(b)s(er)f(of)h(jobs)g(curren)m +(tly)h(managed)g(b)m(y)f(the)g(shell.)150 5028 y Ft(\\l)384 b Fu(The)30 b(basename)h(of)f(the)h(shell's)f(terminal)h(device)g -(name.)150 5017 y Ft(\\n)384 b Fu(A)30 b(newline.)150 -5178 y Ft(\\r)384 b Fu(A)30 b(carriage)i(return.)150 -5340 y Ft(\\s)384 b Fu(The)22 b(name)g(of)h(the)f(shell,)i(the)f -(basename)f(of)h Ft($0)f Fu(\(the)g(p)s(ortion)g(follo)m(wing)i(the)f -(\014nal)e(slash\).)p eop end +(name.)150 5184 y Ft(\\n)384 b Fu(A)30 b(newline.)150 +5340 y Ft(\\r)384 b Fu(A)30 b(carriage)i(return.)p eop +end %%Page: 97 103 TeXDict begin 97 102 bop 150 -116 a Fu(Chapter)30 b(6:)41 -b(Bash)30 b(F)-8 b(eatures)2484 b(97)150 299 y Ft(\\t)384 -b Fu(The)30 b(time,)h(in)f(24-hour)h(HH:MM:SS)g(format.)150 -457 y Ft(\\T)384 b Fu(The)30 b(time,)h(in)f(12-hour)h(HH:MM:SS)g -(format.)150 615 y Ft(\\@)384 b Fu(The)30 b(time,)h(in)f(12-hour)h -(am/pm)f(format.)150 772 y Ft(\\A)384 b Fu(The)30 b(time,)h(in)f -(24-hour)h(HH:MM)g(format.)150 930 y Ft(\\u)384 b Fu(The)30 -b(username)g(of)g(the)h(curren)m(t)f(user.)150 1088 y -Ft(\\v)384 b Fu(The)30 b(v)m(ersion)h(of)f(Bash)h(\(e.g.,)h(2.00\))150 -1246 y Ft(\\V)384 b Fu(The)30 b(release)i(of)e(Bash,)h(v)m(ersion)g -Ft(+)f Fu(patc)m(hlev)m(el)i(\(e.g.,)h(2.00.0\))150 1404 -y Ft(\\w)384 b Fu(The)34 b(curren)m(t)h(w)m(orking)g(directory)-8 -b(,)37 b(with)e Ft($HOME)e Fu(abbreviated)j(with)e(a)h(tilde)h(\(uses)f -(the)630 1513 y Ft($PROMPT_DIRTRIM)26 b Fu(v)-5 b(ariable\).)150 -1671 y Ft(\\W)384 b Fu(The)30 b(basename)h(of)f Ft($PWD)p -Fu(,)g(with)g Ft($HOME)f Fu(abbreviated)h(with)g(a)h(tilde.)150 -1829 y Ft(\\!)384 b Fu(The)30 b(history)g(n)m(um)m(b)s(er)f(of)i(this)f -(command.)150 1987 y Ft(\\#)384 b Fu(The)30 b(command)g(n)m(um)m(b)s -(er)f(of)i(this)f(command.)150 2145 y Ft(\\$)384 b Fu(If)30 -b(the)g(e\013ectiv)m(e)j(uid)d(is)g(0,)h Ft(#)p Fu(,)g(otherwise)g -Ft($)p Fu(.)150 2302 y Ft(\\)p Fj(nnn)288 b Fu(The)30 -b(c)m(haracter)i(whose)e(ASCI)s(I)f(co)s(de)h(is)h(the)f(o)s(ctal)i(v) --5 b(alue)31 b Fr(nnn)p Fu(.)150 2460 y Ft(\\\\)384 b -Fu(A)30 b(bac)m(kslash.)150 2618 y Ft(\\[)384 b Fu(Begin)38 -b(a)f(sequence)g(of)g(non-prin)m(ting)g(c)m(haracters.)61 -b(This)36 b(could)h(b)s(e)g(used)f(to)h(em)m(b)s(ed)g(a)630 -2728 y(terminal)31 b(con)m(trol)h(sequence)e(in)m(to)i(the)e(prompt.) -150 2885 y Ft(\\])384 b Fu(End)29 b(a)i(sequence)g(of)f(non-prin)m -(ting)g(c)m(haracters.)275 3043 y(The)25 b(command)h(n)m(um)m(b)s(er)f -(and)h(the)g(history)g(n)m(um)m(b)s(er)f(are)i(usually)f(di\013eren)m -(t:)39 b(the)26 b(history)g(n)m(um)m(b)s(er)150 3153 -y(of)h(a)f(command)h(is)f(its)h(p)s(osition)f(in)g(the)h(history)f +b(Bash)30 b(F)-8 b(eatures)2484 b(97)150 299 y Ft(\\s)384 +b Fu(The)22 b(name)g(of)h(the)f(shell,)i(the)f(basename)f(of)h +Ft($0)f Fu(\(the)g(p)s(ortion)g(follo)m(wing)i(the)f(\014nal)e +(slash\).)150 461 y Ft(\\t)384 b Fu(The)30 b(time,)h(in)f(24-hour)h +(HH:MM:SS)g(format.)150 622 y Ft(\\T)384 b Fu(The)30 +b(time,)h(in)f(12-hour)h(HH:MM:SS)g(format.)150 784 y +Ft(\\@)384 b Fu(The)30 b(time,)h(in)f(12-hour)h(am/pm)f(format.)150 +946 y Ft(\\A)384 b Fu(The)30 b(time,)h(in)f(24-hour)h(HH:MM)g(format.) +150 1108 y Ft(\\u)384 b Fu(The)30 b(username)g(of)g(the)h(curren)m(t)f +(user.)150 1269 y Ft(\\v)384 b Fu(The)30 b(v)m(ersion)h(of)f(Bash)h +(\(e.g.,)h(2.00\))150 1431 y Ft(\\V)384 b Fu(The)30 b(release)i(of)e +(Bash,)h(v)m(ersion)g Ft(+)f Fu(patc)m(hlev)m(el)i(\(e.g.,)h(2.00.0\)) +150 1593 y Ft(\\w)384 b Fu(The)34 b(curren)m(t)h(w)m(orking)g +(directory)-8 b(,)37 b(with)e Ft($HOME)e Fu(abbreviated)j(with)e(a)h +(tilde)h(\(uses)f(the)630 1703 y Ft($PROMPT_DIRTRIM)26 +b Fu(v)-5 b(ariable\).)150 1864 y Ft(\\W)384 b Fu(The)30 +b(basename)h(of)f Ft($PWD)p Fu(,)g(with)g Ft($HOME)f +Fu(abbreviated)h(with)g(a)h(tilde.)150 2026 y Ft(\\!)384 +b Fu(The)30 b(history)g(n)m(um)m(b)s(er)f(of)i(this)f(command.)150 +2188 y Ft(\\#)384 b Fu(The)30 b(command)g(n)m(um)m(b)s(er)f(of)i(this)f +(command.)150 2350 y Ft(\\$)384 b Fu(If)30 b(the)g(e\013ectiv)m(e)j +(uid)d(is)g(0,)h Ft(#)p Fu(,)g(otherwise)g Ft($)p Fu(.)150 +2511 y Ft(\\)p Fj(nnn)288 b Fu(The)30 b(c)m(haracter)i(whose)e(ASCI)s +(I)f(co)s(de)h(is)h(the)f(o)s(ctal)i(v)-5 b(alue)31 b +Fr(nnn)p Fu(.)150 2673 y Ft(\\\\)384 b Fu(A)30 b(bac)m(kslash.)150 +2835 y Ft(\\[)384 b Fu(Begin)38 b(a)f(sequence)g(of)g(non-prin)m(ting)g +(c)m(haracters.)61 b(This)36 b(could)h(b)s(e)g(used)f(to)h(em)m(b)s(ed) +g(a)630 2945 y(terminal)31 b(con)m(trol)h(sequence)e(in)m(to)i(the)e +(prompt.)150 3106 y Ft(\\])384 b Fu(End)29 b(a)i(sequence)g(of)f +(non-prin)m(ting)g(c)m(haracters.)275 3269 y(The)25 b(command)h(n)m(um) +m(b)s(er)f(and)h(the)g(history)g(n)m(um)m(b)s(er)f(are)i(usually)f +(di\013eren)m(t:)39 b(the)26 b(history)g(n)m(um)m(b)s(er)150 +3379 y(of)h(a)f(command)h(is)f(its)h(p)s(osition)f(in)g(the)h(history)f (list,)i(whic)m(h)f(ma)m(y)g(include)f(commands)g(restored)g(from)150 -3262 y(the)39 b(history)h(\014le)f(\(see)h(Section)g(9.1)h([Bash)e +3488 y(the)39 b(history)h(\014le)f(\(see)h(Section)g(9.1)h([Bash)e (History)h(F)-8 b(acilities],)45 b(page)40 b(140\),)j(while)d(the)f -(command)150 3372 y(n)m(um)m(b)s(er)j(is)h(the)h(p)s(osition)f(in)g +(command)150 3598 y(n)m(um)m(b)s(er)j(is)h(the)h(p)s(osition)f(in)g (the)g(sequence)h(of)f(commands)g(executed)h(during)e(the)i(curren)m(t) -f(shell)150 3482 y(session.)275 3615 y(After)35 b(the)g(string)g(is)g +f(shell)150 3708 y(session.)275 3844 y(After)35 b(the)g(string)g(is)g (deco)s(ded,)h(it)f(is)g(expanded)f(via)i(parameter)f(expansion,)i -(command)d(substi-)150 3725 y(tution,)k(arithmetic)f(expansion,)g(and)e +(command)d(substi-)150 3954 y(tution,)k(arithmetic)f(expansion,)g(and)e (quote)h(remo)m(v)-5 b(al,)39 b(sub)5 b(ject)35 b(to)i(the)f(v)-5 -b(alue)36 b(of)g(the)g Ft(promptvars)150 3834 y Fu(shell)31 +b(alue)36 b(of)g(the)g Ft(promptvars)150 4064 y Fu(shell)31 b(option)f(\(see)i(Section)f(4.2)g([Bash)g(Builtins],)g(page)g(50\).) -150 4074 y Fs(6.10)68 b(The)45 b(Restricted)h(Shell)150 -4233 y Fu(If)34 b(Bash)g(is)g(started)g(with)g(the)g(name)h +150 4308 y Fs(6.10)68 b(The)45 b(Restricted)h(Shell)150 +4467 y Fu(If)34 b(Bash)g(is)g(started)g(with)g(the)g(name)h Ft(rbash)p Fu(,)e(or)h(the)h Ft(--restricted)30 b Fu(or)k -Ft(-r)g Fu(option)g(is)g(supplied)f(at)150 4343 y(in)m(v)m(o)s(cation,) +Ft(-r)g Fu(option)g(is)g(supplied)f(at)150 4577 y(in)m(v)m(o)s(cation,) d(the)d(shell)g(b)s(ecomes)h(restricted.)40 b(A)27 b(restricted)h (shell)f(is)g(used)f(to)i(set)f(up)f(an)h(en)m(vironmen)m(t)150 -4452 y(more)g(con)m(trolled)i(than)e(the)g(standard)g(shell.)40 +4686 y(more)g(con)m(trolled)i(than)e(the)g(standard)g(shell.)40 b(A)27 b(restricted)h(shell)f(b)s(eha)m(v)m(es)h(iden)m(tically)h(to)f -Ft(bash)e Fu(with)150 4562 y(the)31 b(exception)g(that)g(the)g(follo)m +Ft(bash)e Fu(with)150 4796 y(the)31 b(exception)g(that)g(the)g(follo)m (wing)h(are)e(disallo)m(w)m(ed)i(or)e(not)h(p)s(erformed:)225 -4696 y Fq(\017)60 b Fu(Changing)30 b(directories)h(with)g(the)f -Ft(cd)g Fu(builtin.)225 4829 y Fq(\017)60 b Fu(Setting)31 +4933 y Fq(\017)60 b Fu(Changing)30 b(directories)h(with)g(the)f +Ft(cd)g Fu(builtin.)225 5069 y Fq(\017)60 b Fu(Setting)31 b(or)f(unsetting)h(the)g(v)-5 b(alues)30 b(of)h(the)f Ft(SHELL)p Fu(,)g Ft(PATH)p Fu(,)f Ft(ENV)p Fu(,)h(or)g -Ft(BASH_ENV)e Fu(v)-5 b(ariables.)225 4963 y Fq(\017)60 +Ft(BASH_ENV)e Fu(v)-5 b(ariables.)225 5204 y Fq(\017)60 b Fu(Sp)s(ecifying)30 b(command)g(names)g(con)m(taining)i(slashes.)225 -5097 y Fq(\017)60 b Fu(Sp)s(ecifying)30 b(a)h(\014lename)f(con)m +5340 y Fq(\017)60 b Fu(Sp)s(ecifying)30 b(a)h(\014lename)f(con)m (taining)i(a)f(slash)f(as)h(an)f(argumen)m(t)h(to)g(the)f -Ft(.)h Fu(builtin)e(command.)225 5230 y Fq(\017)60 b -Fu(Sp)s(ecifying)32 b(a)g(\014lename)h(con)m(taining)h(a)e(slash)g(as)h -(an)f(argumen)m(t)h(to)g(the)f Ft(-p)g Fu(option)h(to)g(the)f -Ft(hash)330 5340 y Fu(builtin)e(command.)p eop end +Ft(.)h Fu(builtin)e(command.)p eop end %%Page: 98 104 TeXDict begin 98 103 bop 150 -116 a Fu(Chapter)30 b(6:)41 b(Bash)30 b(F)-8 b(eatures)2484 b(98)225 299 y Fq(\017)60 +b Fu(Sp)s(ecifying)32 b(a)g(\014lename)h(con)m(taining)h(a)e(slash)g +(as)h(an)f(argumen)m(t)h(to)g(the)f Ft(-p)g Fu(option)h(to)g(the)f +Ft(hash)330 408 y Fu(builtin)e(command.)225 538 y Fq(\017)60 b Fu(Imp)s(orting)30 b(function)g(de\014nitions)g(from)f(the)i(shell)g -(en)m(vironmen)m(t)g(at)g(startup.)225 432 y Fq(\017)60 +(en)m(vironmen)m(t)g(at)g(startup.)225 667 y Fq(\017)60 b Fu(P)m(arsing)31 b(the)f(v)-5 b(alue)31 b(of)g Ft(SHELLOPTS)d Fu(from)h(the)i(shell)g(en)m(vironmen)m(t)g(at)g(startup.)225 -565 y Fq(\017)60 b Fu(Redirecting)31 b(output)f(using)g(the)h(`)p +796 y Fq(\017)60 b Fu(Redirecting)31 b(output)f(using)g(the)h(`)p Ft(>)p Fu(',)g(`)p Ft(>|)p Fu(',)f(`)p Ft(<>)p Fu(',)h(`)p Ft(>&)p Fu(',)f(`)p Ft(&>)p Fu(',)h(and)e(`)p Ft(>>)p -Fu(')i(redirection)g(op)s(erators.)225 698 y Fq(\017)60 +Fu(')i(redirection)g(op)s(erators.)225 925 y Fq(\017)60 b Fu(Using)31 b(the)f Ft(exec)f Fu(builtin)h(to)h(replace)h(the)e -(shell)h(with)f(another)h(command.)225 831 y Fq(\017)60 +(shell)h(with)f(another)h(command.)225 1054 y Fq(\017)60 b Fu(Adding)24 b(or)g(deleting)i(builtin)e(commands)g(with)h(the)f Ft(-f)g Fu(and)g Ft(-d)g Fu(options)h(to)h(the)e Ft(enable)f -Fu(builtin.)225 965 y Fq(\017)60 b Fu(Using)31 b(the)f +Fu(builtin.)225 1183 y Fq(\017)60 b Fu(Using)31 b(the)f Ft(enable)f Fu(builtin)h(command)g(to)h(enable)g(disabled)f(shell)g -(builtins.)225 1098 y Fq(\017)60 b Fu(Sp)s(ecifying)30 +(builtins.)225 1312 y Fq(\017)60 b Fu(Sp)s(ecifying)30 b(the)g Ft(-p)g Fu(option)h(to)g(the)g Ft(command)d Fu(builtin.)225 -1231 y Fq(\017)60 b Fu(T)-8 b(urning)29 b(o\013)i(restricted)g(mo)s(de) +1441 y Fq(\017)60 b Fu(T)-8 b(urning)29 b(o\013)i(restricted)g(mo)s(de) f(with)g(`)p Ft(set)g(+r)p Fu(')g(or)g(`)p Ft(set)g(+o)g(restricted)p -Fu('.)275 1388 y(These)g(restrictions)h(are)g(enforced)f(after)h(an)m -(y)g(startup)f(\014les)g(are)h(read.)275 1521 y(When)j(a)i(command)e +Fu('.)275 1590 y(These)g(restrictions)h(are)g(enforced)f(after)h(an)m +(y)g(startup)f(\014les)g(are)h(read.)275 1719 y(When)j(a)i(command)e (that)i(is)f(found)f(to)h(b)s(e)g(a)g(shell)g(script)g(is)g(executed)h -(\(see)g(Section)g(3.8)g([Shell)150 1630 y(Scripts],)25 +(\(see)g(Section)g(3.8)g([Shell)150 1828 y(Scripts],)25 b(page)e(41\),)j Ft(rbash)c Fu(turns)g(o\013)i(an)m(y)f(restrictions)h (in)f(the)g(shell)h(spa)m(wned)e(to)i(execute)g(the)g(script.)150 -1868 y Fs(6.11)68 b(Bash)45 b(POSIX)f(Mo)t(de)150 2028 +2058 y Fs(6.11)68 b(Bash)45 b(POSIX)f(Mo)t(de)150 2218 y Fu(Starting)39 b(Bash)f(with)g(the)h Ft(--posix)d Fu(command-line)j (option)g(or)f(executing)h(`)p Ft(set)30 b(-o)g(posix)p -Fu(')37 b(while)150 2137 y(Bash)26 b(is)g(running)e(will)j(cause)f +Fu(')37 b(while)150 2327 y(Bash)26 b(is)g(running)e(will)j(cause)f (Bash)g(to)h(conform)f(more)g(closely)h(to)g(the)f Fm(posix)f -Fu(standard)g(b)m(y)h(c)m(hanging)150 2247 y(the)31 b(b)s(eha)m(vior)f +Fu(standard)g(b)m(y)h(c)m(hanging)150 2437 y(the)31 b(b)s(eha)m(vior)f (to)h(matc)m(h)g(that)g(sp)s(eci\014ed)f(b)m(y)g Fm(posix)g Fu(in)g(areas)h(where)f(the)h(Bash)f(default)h(di\013ers.)275 -2380 y(When)f(in)m(v)m(ok)m(ed)h(as)g Ft(sh)p Fu(,)f(Bash)h(en)m(ters)g +2566 y(When)f(in)m(v)m(ok)m(ed)h(as)g Ft(sh)p Fu(,)f(Bash)h(en)m(ters)g Fm(posix)e Fu(mo)s(de)h(after)h(reading)g(the)f(startup)g(\014les.)275 -2513 y(The)f(follo)m(wing)j(list)f(is)g(what's)f(c)m(hanged)h(when)e(`) -p Fm(posix)h Fu(mo)s(de')h(is)f(in)g(e\013ect:)199 2646 +2695 y(The)f(follo)m(wing)j(list)f(is)g(what's)f(c)m(hanged)h(when)e(`) +p Fm(posix)h Fu(mo)s(de')h(is)f(in)g(e\013ect:)199 2824 y(1.)61 b(When)28 b(a)i(command)e(in)g(the)h(hash)f(table)i(no)e (longer)h(exists,)h(Bash)f(will)g(re-searc)m(h)h Ft($PATH)d -Fu(to)i(\014nd)330 2756 y(the)i(new)e(lo)s(cation.)43 +Fu(to)i(\014nd)330 2934 y(the)i(new)e(lo)s(cation.)43 b(This)29 b(is)i(also)g(a)m(v)-5 b(ailable)33 b(with)d(`)p -Ft(shopt)f(-s)h(checkhash)p Fu('.)199 2889 y(2.)61 b(The)42 +Ft(shopt)f(-s)h(checkhash)p Fu('.)199 3063 y(2.)61 b(The)42 b(message)h(prin)m(ted)e(b)m(y)h(the)g(job)g(con)m(trol)i(co)s(de)e (and)f(builtins)h(when)f(a)h(job)g(exits)h(with)f(a)330 -2999 y(non-zero)31 b(status)g(is)f(`Done\(status\)'.)199 -3132 y(3.)61 b(The)40 b(message)h(prin)m(ted)f(b)m(y)g(the)h(job)f(con) +3172 y(non-zero)31 b(status)g(is)f(`Done\(status\)'.)199 +3302 y(3.)61 b(The)40 b(message)h(prin)m(ted)f(b)m(y)g(the)h(job)f(con) m(trol)h(co)s(de)g(and)f(builtins)f(when)h(a)g(job)g(is)h(stopp)s(ed)e -(is)330 3241 y(`Stopp)s(ed\()p Fr(signame)5 b Fu(\)',)31 +(is)330 3411 y(`Stopp)s(ed\()p Fr(signame)5 b Fu(\)',)31 b(where)f Fr(signame)36 b Fu(is,)31 b(for)f(example,)h -Ft(SIGTSTP)p Fu(.)199 3375 y(4.)61 b(Alias)31 b(expansion)g(is)f(alw)m +Ft(SIGTSTP)p Fu(.)199 3540 y(4.)61 b(Alias)31 b(expansion)g(is)f(alw)m (a)m(ys)i(enabled,)e(ev)m(en)i(in)e(non-in)m(teractiv)m(e)j(shells.)199 -3508 y(5.)61 b(Reserv)m(ed)40 b(w)m(ords)g(app)s(earing)f(in)h(a)g(con) +3669 y(5.)61 b(Reserv)m(ed)40 b(w)m(ords)g(app)s(earing)f(in)h(a)g(con) m(text)i(where)d(reserv)m(ed)h(w)m(ords)f(are)i(recognized)g(do)f(not) -330 3617 y(undergo)30 b(alias)h(expansion.)199 3750 y(6.)61 +330 3779 y(undergo)30 b(alias)h(expansion.)199 3908 y(6.)61 b(The)38 b Fm(posix)h Ft(PS1)f Fu(and)g Ft(PS2)g Fu(expansions)g(of)i (`)p Ft(!)p Fu(')f(to)g(the)g(history)g(n)m(um)m(b)s(er)f(and)g(`)p -Ft(!!)p Fu(')h(to)g(`)p Ft(!)p Fu(')h(are)330 3860 y(enabled,)26 +Ft(!!)p Fu(')h(to)g(`)p Ft(!)p Fu(')h(are)330 4018 y(enabled,)26 b(and)f(parameter)g(expansion)g(is)g(p)s(erformed)e(on)i(the)g(v)-5 b(alues)25 b(of)g Ft(PS1)f Fu(and)h Ft(PS2)f Fu(regardless)330 -3970 y(of)31 b(the)f(setting)i(of)e(the)h Ft(promptvars)c -Fu(option.)199 4103 y(7.)61 b(The)30 b Fm(posix)g Fu(startup)f(\014les) +4127 y(of)31 b(the)f(setting)i(of)e(the)h Ft(promptvars)c +Fu(option.)199 4256 y(7.)61 b(The)30 b Fm(posix)g Fu(startup)f(\014les) i(are)g(executed)g(\()p Ft($ENV)p Fu(\))f(rather)g(than)g(the)h(normal) -f(Bash)g(\014les.)199 4236 y(8.)61 b(Tilde)30 b(expansion)g(is)f(only)h +f(Bash)g(\014les.)199 4385 y(8.)61 b(Tilde)30 b(expansion)g(is)f(only)h (p)s(erformed)f(on)h(assignmen)m(ts)g(preceding)g(a)g(command)g(name,)g -(rather)330 4345 y(than)g(on)g(all)i(assignmen)m(t)f(statemen)m(ts)h -(on)e(the)h(line.)199 4479 y(9.)61 b(The)30 b(default)g(history)h +(rather)330 4495 y(than)g(on)g(all)i(assignmen)m(t)f(statemen)m(ts)h +(on)e(the)h(line.)199 4624 y(9.)61 b(The)30 b(default)g(history)h (\014le)f(is)h Ft(~/.sh_history)26 b Fu(\(this)31 b(is)f(the)h(default) -g(v)-5 b(alue)30 b(of)h Ft($HISTFILE)p Fu(\).)154 4612 +g(v)-5 b(alue)30 b(of)h Ft($HISTFILE)p Fu(\).)154 4753 y(10.)61 b(Redirection)25 b(op)s(erators)f(do)g(not)g(p)s(erform)f (\014lename)h(expansion)g(on)g(the)g(w)m(ord)f(in)h(the)g(redirection) -330 4721 y(unless)30 b(the)g(shell)h(is)f(in)m(teractiv)m(e.)154 -4855 y(11.)61 b(Redirection)31 b(op)s(erators)g(do)f(not)h(p)s(erform)e +330 4863 y(unless)30 b(the)g(shell)h(is)f(in)m(teractiv)m(e.)154 +4992 y(11.)61 b(Redirection)31 b(op)s(erators)g(do)f(not)h(p)s(erform)e (w)m(ord)h(splitting)h(on)f(the)h(w)m(ord)f(in)g(the)g(redirection.)154 -4988 y(12.)61 b(F)-8 b(unction)35 b(names)g(m)m(ust)f(b)s(e)g(v)-5 +5121 y(12.)61 b(F)-8 b(unction)35 b(names)g(m)m(ust)f(b)s(e)g(v)-5 b(alid)35 b(shell)f Ft(name)p Fu(s.)52 b(That)34 b(is,)i(they)f(ma)m(y) -g(not)g(con)m(tain)g(c)m(haracters)330 5097 y(other)e(than)g(letters,)h +g(not)g(con)m(tain)g(c)m(haracters)330 5230 y(other)e(than)g(letters,)h (digits,)h(and)d(underscores,)h(and)f(ma)m(y)h(not)g(start)h(with)e(a)h -(digit.)49 b(Declaring)330 5207 y(a)31 b(function)f(with)g(an)g(in)m(v) +(digit.)49 b(Declaring)330 5340 y(a)31 b(function)f(with)g(an)g(in)m(v) -5 b(alid)31 b(name)g(causes)f(a)h(fatal)h(syn)m(tax)f(error)f(in)g -(non-in)m(teractiv)m(e)j(shells.)154 5340 y(13.)61 b(F)-8 -b(unction)31 b(names)f(ma)m(y)h(not)g(b)s(e)f(the)g(same)h(as)g(one)f -(of)h(the)f Fm(posix)g Fu(sp)s(ecial)h(builtins.)p eop -end +(non-in)m(teractiv)m(e)j(shells.)p eop end %%Page: 99 105 TeXDict begin 99 104 bop 150 -116 a Fu(Chapter)30 b(6:)41 -b(Bash)30 b(F)-8 b(eatures)2484 b(99)154 299 y(14.)61 -b Fm(posix)30 b Fu(sp)s(ecial)h(builtins)e(are)i(found)e(b)s(efore)h -(shell)h(functions)f(during)f(command)h(lo)s(okup.)154 -432 y(15.)61 b(When)48 b(prin)m(ting)g(shell)h(function)f +b(Bash)30 b(F)-8 b(eatures)2484 b(99)154 299 y(13.)61 +b(F)-8 b(unction)31 b(names)f(ma)m(y)h(not)g(b)s(e)f(the)g(same)h(as)g +(one)f(of)h(the)f Fm(posix)g Fu(sp)s(ecial)h(builtins.)154 +437 y(14.)61 b Fm(posix)30 b Fu(sp)s(ecial)h(builtins)e(are)i(found)e +(b)s(efore)h(shell)h(functions)f(during)f(command)h(lo)s(okup.)154 +576 y(15.)61 b(When)48 b(prin)m(ting)g(shell)h(function)f (de\014nitions)g(\(e.g.,)55 b(b)m(y)48 b Ft(type)p Fu(\),)k(Bash)d(do)s -(es)f(not)h(prin)m(t)f(the)330 541 y Ft(function)28 b -Fu(k)m(eyw)m(ord.)154 674 y(16.)61 b(Literal)28 b(tildes)g(that)f(app)s +(es)f(not)h(prin)m(t)f(the)330 685 y Ft(function)28 b +Fu(k)m(eyw)m(ord.)154 824 y(16.)61 b(Literal)28 b(tildes)g(that)f(app)s (ear)f(as)i(the)f(\014rst)f(c)m(haracter)j(in)d(elemen)m(ts)j(of)e(the) -g Ft(PATH)f Fu(v)-5 b(ariable)27 b(are)h(not)330 783 +g Ft(PATH)f Fu(v)-5 b(ariable)27 b(are)h(not)330 933 y(expanded)i(as)g(describ)s(ed)f(ab)s(o)m(v)m(e)j(under)d(Section)i -(3.5.2)h([Tilde)f(Expansion],)f(page)h(23.)154 916 y(17.)61 +(3.5.2)h([Tilde)f(Expansion],)f(page)h(23.)154 1072 y(17.)61 b(The)29 b Ft(time)g Fu(reserv)m(ed)h(w)m(ord)g(ma)m(y)g(b)s(e)g(used)f (b)m(y)h(itself)g(as)g(a)h(command.)40 b(When)30 b(used)f(in)g(this)h -(w)m(a)m(y)-8 b(,)330 1026 y(it)33 b(displa)m(ys)g(timing)g(statistics) +(w)m(a)m(y)-8 b(,)330 1181 y(it)33 b(displa)m(ys)g(timing)g(statistics) h(for)e(the)h(shell)g(and)f(its)g(completed)i(c)m(hildren.)47 -b(The)32 b Ft(TIMEFORMAT)330 1135 y Fu(v)-5 b(ariable)31 +b(The)32 b Ft(TIMEFORMAT)330 1291 y Fu(v)-5 b(ariable)31 b(con)m(trols)h(the)e(format)h(of)g(the)f(timing)h(information.)154 -1268 y(18.)61 b(When)33 b(parsing)g(and)f(expanding)h(a)h($)p +1429 y(18.)61 b(When)33 b(parsing)g(and)f(expanding)h(a)h($)p Fi({)6 b Fu(.)22 b(.)h(.)11 b Fi(})33 b Fu(expansion)g(that)h(app)s -(ears)f(within)f(double)h(quotes,)330 1377 y(single)42 +(ears)f(within)f(double)h(quotes,)330 1539 y(single)42 b(quotes)g(are)g(no)g(longer)g(sp)s(ecial)g(and)f(cannot)i(b)s(e)e -(used)g(to)h(quote)g(a)g(closing)h(brace)f(or)330 1487 +(used)g(to)h(quote)g(a)g(closing)h(brace)f(or)330 1649 y(other)31 b(sp)s(ecial)h(c)m(haracter,)i(unless)c(the)i(op)s(erator)f (is)g(one)h(of)f(those)h(de\014ned)e(to)i(p)s(erform)e(pattern)330 -1597 y(remo)m(v)-5 b(al.)42 b(In)30 b(this)g(case,)i(they)e(do)g(not)h +1758 y(remo)m(v)-5 b(al.)42 b(In)30 b(this)g(case,)i(they)e(do)g(not)h (ha)m(v)m(e)h(to)f(app)s(ear)e(as)i(matc)m(hed)g(pairs.)154 -1729 y(19.)61 b(The)29 b(parser)g(do)s(es)g(not)h(recognize)h +1897 y(19.)61 b(The)29 b(parser)g(do)s(es)g(not)h(recognize)h Ft(time)d Fu(as)i(a)g(reserv)m(ed)f(w)m(ord)g(if)h(the)f(next)h(tok)m -(en)h(b)s(egins)d(with)i(a)330 1839 y(`)p Ft(-)p Fu('.)154 -1972 y(20.)61 b(The)30 b(`)p Ft(!)p Fu(')h(c)m(haracter)h(do)s(es)e +(en)h(b)s(egins)d(with)i(a)330 2006 y(`)p Ft(-)p Fu('.)154 +2145 y(20.)61 b(The)30 b(`)p Ft(!)p Fu(')h(c)m(haracter)h(do)s(es)e (not)h(in)m(tro)s(duce)g(history)f(expansion)h(within)f(a)h -(double-quoted)g(string,)330 2081 y(ev)m(en)g(if)f(the)h -Ft(histexpand)d Fu(option)i(is)h(enabled.)154 2214 y(21.)61 +(double-quoted)g(string,)330 2254 y(ev)m(en)g(if)f(the)h +Ft(histexpand)d Fu(option)i(is)h(enabled.)154 2393 y(21.)61 b(If)24 b(a)g Fm(posix)g Fu(sp)s(ecial)h(builtin)f(returns)f(an)h (error)g(status,)i(a)e(non-in)m(teractiv)m(e)j(shell)e(exits.)39 -b(The)24 b(fatal)330 2323 y(errors)30 b(are)h(those)f(listed)h(in)f +b(The)24 b(fatal)330 2502 y(errors)30 b(are)h(those)f(listed)h(in)f (the)h Fm(posix)e Fu(standard,)h(and)g(include)g(things)g(lik)m(e)i -(passing)e(incorrect)330 2433 y(options,)43 b(redirection)d(errors,)i +(passing)e(incorrect)330 2612 y(options,)43 b(redirection)d(errors,)i (v)-5 b(ariable)41 b(assignmen)m(t)g(errors)e(for)g(assignmen)m(ts)i -(preceding)f(the)330 2543 y(command)30 b(name,)h(and)f(so)g(on.)154 -2675 y(22.)61 b(A)31 b(non-in)m(teractiv)m(e)j(shell)d(exits)h(with)e +(preceding)f(the)330 2721 y(command)30 b(name,)h(and)f(so)g(on.)154 +2860 y(22.)61 b(A)31 b(non-in)m(teractiv)m(e)j(shell)d(exits)h(with)e (an)h(error)g(status)g(if)g(a)g(v)-5 b(ariable)32 b(assignmen)m(t)g -(error)e(o)s(ccurs)330 2785 y(when)38 b(no)h(command)g(name)g(follo)m +(error)e(o)s(ccurs)330 2969 y(when)38 b(no)h(command)g(name)g(follo)m (ws)i(the)e(assignmen)m(t)h(statemen)m(ts.)69 b(A)39 -b(v)-5 b(ariable)40 b(assignmen)m(t)330 2894 y(error)30 +b(v)-5 b(ariable)40 b(assignmen)m(t)330 3079 y(error)30 b(o)s(ccurs,)g(for)g(example,)i(when)d(trying)i(to)g(assign)f(a)h(v)-5 -b(alue)31 b(to)g(a)g(readonly)f(v)-5 b(ariable.)154 3027 +b(alue)31 b(to)g(a)g(readonly)f(v)-5 b(ariable.)154 3217 y(23.)61 b(A)31 b(non-in)m(teractiv)m(e)j(shell)d(exits)h(with)e(an)h (error)g(status)g(if)g(a)g(v)-5 b(ariable)32 b(assignmen)m(t)g(error)e -(o)s(ccurs)330 3137 y(in)g(an)g(assignmen)m(t)i(statemen)m(t)g +(o)s(ccurs)330 3327 y(in)g(an)g(assignmen)m(t)i(statemen)m(t)g (preceding)e(a)h(sp)s(ecial)g(builtin,)f(but)g(not)g(with)h(an)m(y)f -(other)h(simple)330 3246 y(command.)154 3379 y(24.)61 +(other)h(simple)330 3437 y(command.)154 3575 y(24.)61 b(A)43 b(non-in)m(teractiv)m(e)i(shell)e(exits)h(with)f(an)f(error)h (status)g(if)g(the)g(iteration)h(v)-5 b(ariable)44 b(in)f(a)g -Ft(for)330 3488 y Fu(statemen)m(t)32 b(or)f(the)f(selection)i(v)-5 +Ft(for)330 3685 y Fu(statemen)m(t)32 b(or)f(the)f(selection)i(v)-5 b(ariable)32 b(in)e(a)g Ft(select)f Fu(statemen)m(t)j(is)f(a)f -(readonly)h(v)-5 b(ariable.)154 3621 y(25.)61 b(Non-in)m(teractiv)m(e) +(readonly)h(v)-5 b(ariable.)154 3823 y(25.)61 b(Non-in)m(teractiv)m(e) 34 b(shells)c(exit)h(if)g Fr(\014lename)k Fu(in)30 b Ft(.)g Fr(\014lename)36 b Fu(is)31 b(not)f(found.)154 -3754 y(26.)61 b(Non-in)m(teractiv)m(e)41 b(shells)d(exit)h(if)f(a)g +3961 y(26.)61 b(Non-in)m(teractiv)m(e)41 b(shells)d(exit)h(if)f(a)g (syn)m(tax)g(error)g(in)f(an)h(arithmetic)h(expansion)f(results)f(in)h -(an)330 3863 y(in)m(v)-5 b(alid)31 b(expression.)154 -3996 y(27.)61 b(Non-in)m(teractiv)m(e)34 b(shells)c(exit)h(if)g(a)f -(parameter)h(expansion)g(error)f(o)s(ccurs.)154 4129 +(an)330 4071 y(in)m(v)-5 b(alid)31 b(expression.)154 +4209 y(27.)61 b(Non-in)m(teractiv)m(e)34 b(shells)c(exit)h(if)g(a)f +(parameter)h(expansion)g(error)f(o)s(ccurs.)154 4348 y(28.)61 b(Non-in)m(teractiv)m(e)27 b(shells)c(exit)i(if)e(there)h(is)f (a)h(syn)m(tax)g(error)f(in)g(a)h(script)f(read)g(with)h(the)f -Ft(.)g Fu(or)h Ft(source)330 4238 y Fu(builtins,)30 b(or)g(in)g(a)h +Ft(.)g Fu(or)h Ft(source)330 4457 y Fu(builtins,)30 b(or)g(in)g(a)h (string)g(pro)s(cessed)e(b)m(y)i(the)f Ft(eval)f Fu(builtin.)154 -4371 y(29.)61 b(Pro)s(cess)30 b(substitution)g(is)h(not)f(a)m(v)-5 -b(ailable.)154 4504 y(30.)61 b(While)32 b(v)-5 b(ariable)32 +4596 y(29.)61 b(Pro)s(cess)30 b(substitution)g(is)h(not)f(a)m(v)-5 +b(ailable.)154 4734 y(30.)61 b(While)32 b(v)-5 b(ariable)32 b(indirection)f(is)g(a)m(v)-5 b(ailable,)34 b(it)d(ma)m(y)h(not)f(b)s (e)g(applied)g(to)g(the)h(`)p Ft(#)p Fu(')f(and)f(`)p -Ft(?)p Fu(')h(sp)s(ecial)330 4613 y(parameters.)154 4746 +Ft(?)p Fu(')h(sp)s(ecial)330 4844 y(parameters.)154 4982 y(31.)61 b(When)28 b(expanding)g(the)g(`)p Ft(*)p Fu(')g(sp)s(ecial)h (parameter)f(in)g(a)h(pattern)f(con)m(text)i(where)e(the)g(expansion)g -(is)330 4855 y(double-quoted)i(do)s(es)g(not)h(treat)h(the)e +(is)330 5092 y(double-quoted)i(do)s(es)g(not)h(treat)h(the)e Ft($*)g Fu(as)h(if)f(it)h(w)m(ere)g(double-quoted.)154 -4988 y(32.)61 b(Assignmen)m(t)23 b(statemen)m(ts)h(preceding)e +5230 y(32.)61 b(Assignmen)m(t)23 b(statemen)m(ts)h(preceding)e Fm(posix)f Fu(sp)s(ecial)i(builtins)f(p)s(ersist)g(in)f(the)i(shell)f -(en)m(vironmen)m(t)330 5098 y(after)31 b(the)f(builtin)g(completes.)154 -5230 y(33.)61 b(Assignmen)m(t)35 b(statemen)m(ts)h(preceding)f(shell)f -(function)g(calls)i(p)s(ersist)e(in)g(the)h(shell)f(en)m(vironmen)m(t) -330 5340 y(after)d(the)f(function)h(returns,)e(as)i(if)f(a)h -Fm(posix)e Fu(sp)s(ecial)i(builtin)f(command)g(had)g(b)s(een)g -(executed.)p eop end +(en)m(vironmen)m(t)330 5340 y(after)31 b(the)f(builtin)g(completes.)p +eop end %%Page: 100 106 TeXDict begin 100 105 bop 150 -116 a Fu(Chapter)30 b(6:)41 -b(Bash)30 b(F)-8 b(eatures)2439 b(100)154 299 y(34.)61 -b(The)31 b Ft(command)e Fu(builtin)i(do)s(es)g(not)h(prev)m(en)m(t)f -(builtins)g(that)h(tak)m(e)h(assignmen)m(t)f(statemen)m(ts)h(as)f(ar-) -330 408 y(gumen)m(ts)40 b(from)e(expanding)h(them)g(as)h(assignmen)m(t) -g(statemen)m(ts;)46 b(when)38 b(not)i(in)f Fm(posix)f -Fu(mo)s(de,)330 518 y(assignmen)m(t)k(builtins)e(lose)h(their)g -(assignmen)m(t)h(statemen)m(t)h(expansion)d(prop)s(erties)g(when)g -(pre-)330 628 y(ceded)31 b(b)m(y)f Ft(command)p Fu(.)154 -769 y(35.)61 b(The)27 b Ft(bg)g Fu(builtin)g(uses)g(the)h(required)f -(format)h(to)g(describ)s(e)f(eac)m(h)i(job)e(placed)h(in)f(the)h(bac)m -(kground,)330 879 y(whic)m(h)h(do)s(es)g(not)g(include)g(an)g -(indication)h(of)f(whether)f(the)h(job)g(is)g(the)h(curren)m(t)e(or)h -(previous)g(job.)154 1021 y(36.)61 b(The)23 b(output)f(of)i(`)p +b(Bash)30 b(F)-8 b(eatures)2439 b(100)154 299 y(33.)61 +b(Assignmen)m(t)35 b(statemen)m(ts)h(preceding)f(shell)f(function)g +(calls)i(p)s(ersist)e(in)g(the)h(shell)f(en)m(vironmen)m(t)330 +408 y(after)d(the)f(function)h(returns,)e(as)i(if)f(a)h +Fm(posix)e Fu(sp)s(ecial)i(builtin)f(command)g(had)g(b)s(een)g +(executed.)154 536 y(34.)61 b(The)31 b Ft(command)e Fu(builtin)i(do)s +(es)g(not)h(prev)m(en)m(t)f(builtins)g(that)h(tak)m(e)h(assignmen)m(t)f +(statemen)m(ts)h(as)f(ar-)330 646 y(gumen)m(ts)40 b(from)e(expanding)h +(them)g(as)h(assignmen)m(t)g(statemen)m(ts;)46 b(when)38 +b(not)i(in)f Fm(posix)f Fu(mo)s(de,)330 756 y(assignmen)m(t)k(builtins) +e(lose)h(their)g(assignmen)m(t)h(statemen)m(t)h(expansion)d(prop)s +(erties)g(when)g(pre-)330 865 y(ceded)31 b(b)m(y)f Ft(command)p +Fu(.)154 993 y(35.)61 b(The)27 b Ft(bg)g Fu(builtin)g(uses)g(the)h +(required)f(format)h(to)g(describ)s(e)f(eac)m(h)i(job)e(placed)h(in)f +(the)h(bac)m(kground,)330 1103 y(whic)m(h)h(do)s(es)g(not)g(include)g +(an)g(indication)h(of)f(whether)f(the)h(job)g(is)g(the)h(curren)m(t)e +(or)h(previous)g(job.)154 1230 y(36.)61 b(The)23 b(output)f(of)i(`)p Ft(kill)29 b(-l)p Fu(')23 b(prin)m(ts)f(all)i(the)g(signal)f(names)g (on)g(a)h(single)g(line,)h(separated)e(b)m(y)g(spaces,)330 -1130 y(without)30 b(the)h(`)p Ft(SIG)p Fu(')f(pre\014x.)154 -1272 y(37.)61 b(The)30 b Ft(kill)f Fu(builtin)h(do)s(es)g(not)h(accept) +1340 y(without)30 b(the)h(`)p Ft(SIG)p Fu(')f(pre\014x.)154 +1468 y(37.)61 b(The)30 b Ft(kill)f Fu(builtin)h(do)s(es)g(not)h(accept) h(signal)f(names)f(with)g(a)h(`)p Ft(SIG)p Fu(')f(pre\014x.)154 -1414 y(38.)61 b(The)38 b Ft(export)f Fu(and)g Ft(readonly)f +1596 y(38.)61 b(The)38 b Ft(export)f Fu(and)g Ft(readonly)f Fu(builtin)i(commands)g(displa)m(y)h(their)f(output)g(in)g(the)h -(format)g(re-)330 1524 y(quired)30 b(b)m(y)g Fm(posix)p -Fu(.)154 1666 y(39.)61 b(The)30 b Ft(trap)f Fu(builtin)h(displa)m(ys)g +(format)g(re-)330 1705 y(quired)30 b(b)m(y)g Fm(posix)p +Fu(.)154 1833 y(39.)61 b(The)30 b Ft(trap)f Fu(builtin)h(displa)m(ys)g (signal)i(names)e(without)g(the)h(leading)g Ft(SIG)p -Fu(.)154 1807 y(40.)61 b(The)39 b Ft(trap)e Fu(builtin)i(do)s(esn't)g +Fu(.)154 1961 y(40.)61 b(The)39 b Ft(trap)e Fu(builtin)i(do)s(esn't)g (c)m(hec)m(k)h(the)g(\014rst)e(argumen)m(t)i(for)e(a)i(p)s(ossible)e -(signal)i(sp)s(eci\014cation)330 1917 y(and)30 b(rev)m(ert)i(the)e +(signal)i(sp)s(eci\014cation)330 2071 y(and)30 b(rev)m(ert)i(the)e (signal)i(handling)e(to)h(the)g(original)h(disp)s(osition)e(if)h(it)g -(is,)g(unless)f(that)h(argumen)m(t)330 2027 y(consists)e(solely)g(of)g +(is,)g(unless)f(that)h(argumen)m(t)330 2180 y(consists)e(solely)g(of)g (digits)g(and)f(is)g(a)h(v)-5 b(alid)29 b(signal)g(n)m(um)m(b)s(er.)38 b(If)28 b(users)g(w)m(an)m(t)h(to)g(reset)g(the)g(handler)330 -2136 y(for)h(a)g(giv)m(en)h(signal)g(to)f(the)h(original)g(disp)s +2290 y(for)h(a)g(giv)m(en)h(signal)g(to)f(the)h(original)g(disp)s (osition,)f(they)g(should)f(use)h(`)p Ft(-)p Fu(')g(as)g(the)g(\014rst) -f(argumen)m(t.)154 2278 y(41.)61 b(The)21 b Ft(.)h Fu(and)f +f(argumen)m(t.)154 2418 y(41.)61 b(The)21 b Ft(.)h Fu(and)f Ft(source)f Fu(builtins)h(do)g(not)h(searc)m(h)h(the)f(curren)m(t)f (directory)h(for)g(the)g(\014lename)f(argumen)m(t)330 -2388 y(if)30 b(it)h(is)g(not)f(found)f(b)m(y)i(searc)m(hing)g -Ft(PATH)p Fu(.)154 2529 y(42.)61 b(Enabling)21 b Fm(posix)g +2527 y(if)30 b(it)h(is)g(not)f(found)f(b)m(y)i(searc)m(hing)g +Ft(PATH)p Fu(.)154 2655 y(42.)61 b(Enabling)21 b Fm(posix)g Fu(mo)s(de)g(has)g(the)g(e\013ect)i(of)e(setting)i(the)e Ft(inherit_errexit)d Fu(option,)23 b(so)f(subshells)330 -2639 y(spa)m(wned)27 b(to)i(execute)g(command)e(substitutions)h +2765 y(spa)m(wned)27 b(to)i(execute)g(command)e(substitutions)h (inherit)f(the)h(v)-5 b(alue)28 b(of)g(the)g Ft(-e)f -Fu(option)h(from)g(the)330 2749 y(paren)m(t)37 b(shell.)62 +Fu(option)h(from)g(the)330 2874 y(paren)m(t)37 b(shell.)62 b(When)37 b(the)g Ft(inherit_errexit)c Fu(option)38 b(is)f(not)h -(enabled,)h(Bash)e(clears)h(the)g Ft(-e)330 2858 y Fu(option)31 -b(in)f(suc)m(h)g(subshells.)154 3000 y(43.)61 b(When)43 +(enabled,)h(Bash)e(clears)h(the)g Ft(-e)330 2984 y Fu(option)31 +b(in)f(suc)m(h)g(subshells.)154 3112 y(43.)61 b(When)43 b(the)g Ft(alias)f Fu(builtin)g(displa)m(ys)i(alias)g(de\014nitions,)i (it)d(do)s(es)g(not)g(displa)m(y)h(them)f(with)g(a)330 -3110 y(leading)31 b(`)p Ft(alias)e Fu(')i(unless)f(the)g -Ft(-p)g Fu(option)h(is)f(supplied.)154 3251 y(44.)61 +3221 y(leading)31 b(`)p Ft(alias)e Fu(')i(unless)f(the)g +Ft(-p)g Fu(option)h(is)f(supplied.)154 3349 y(44.)61 b(When)40 b(the)g Ft(set)f Fu(builtin)h(is)g(in)m(v)m(ok)m(ed)h (without)f(options,)j(it)e(do)s(es)f(not)g(displa)m(y)g(shell)g -(function)330 3361 y(names)30 b(and)g(de\014nitions.)154 -3503 y(45.)61 b(When)36 b(the)g Ft(set)g Fu(builtin)g(is)g(in)m(v)m(ok) +(function)330 3459 y(names)30 b(and)g(de\014nitions.)154 +3587 y(45.)61 b(When)36 b(the)g Ft(set)g Fu(builtin)g(is)g(in)m(v)m(ok) m(ed)i(without)e(options,)i(it)f(displa)m(ys)f(v)-5 b(ariable)37 -b(v)-5 b(alues)37 b(without)330 3612 y(quotes,)26 b(unless)d(they)i +b(v)-5 b(alues)37 b(without)330 3696 y(quotes,)26 b(unless)d(they)i (con)m(tain)g(shell)f(metac)m(haracters,)k(ev)m(en)d(if)f(the)g(result) -g(con)m(tains)i(nonprin)m(ting)330 3722 y(c)m(haracters.)154 -3864 y(46.)61 b(When)35 b(the)g Ft(cd)f Fu(builtin)h(is)g(in)m(v)m(ok)m +g(con)m(tains)i(nonprin)m(ting)330 3806 y(c)m(haracters.)154 +3934 y(46.)61 b(When)35 b(the)g Ft(cd)f Fu(builtin)h(is)g(in)m(v)m(ok)m (ed)i(in)d Fr(logical)41 b Fu(mo)s(de,)36 b(and)f(the)g(pathname)g -(constructed)g(from)330 3973 y Ft($PWD)i Fu(and)h(the)h(directory)f +(constructed)g(from)330 4043 y Ft($PWD)i Fu(and)h(the)h(directory)f (name)h(supplied)e(as)i(an)f(argumen)m(t)h(do)s(es)f(not)g(refer)h(to)g -(an)f(existing)330 4083 y(directory)-8 b(,)32 b Ft(cd)d +(an)f(existing)330 4153 y(directory)-8 b(,)32 b Ft(cd)d Fu(will)i(fail)g(instead)g(of)f(falling)h(bac)m(k)h(to)f -Fr(ph)m(ysical)j Fu(mo)s(de.)154 4225 y(47.)61 b(The)36 +Fr(ph)m(ysical)j Fu(mo)s(de.)154 4281 y(47.)61 b(The)36 b Ft(pwd)f Fu(builtin)h(v)m(eri\014es)h(that)g(the)f(v)-5 b(alue)37 b(it)g(prin)m(ts)e(is)i(the)f(same)h(as)f(the)h(curren)m(t)f -(directory)-8 b(,)330 4334 y(ev)m(en)31 b(if)f(it)h(is)g(not)f(ask)m +(directory)-8 b(,)330 4390 y(ev)m(en)31 b(if)f(it)h(is)g(not)f(ask)m (ed)h(to)g(c)m(hec)m(k)h(the)f(\014le)f(system)h(with)f(the)h -Ft(-P)e Fu(option.)154 4476 y(48.)61 b(When)35 b(listing)g(the)g +Ft(-P)e Fu(option.)154 4518 y(48.)61 b(When)35 b(listing)g(the)g (history)-8 b(,)36 b(the)f Ft(fc)g Fu(builtin)f(do)s(es)g(not)h -(include)g(an)f(indication)i(of)f(whether)f(or)330 4586 +(include)g(an)f(indication)i(of)f(whether)f(or)330 4628 y(not)d(a)f(history)h(en)m(try)f(has)g(b)s(een)g(mo)s(di\014ed.)154 -4728 y(49.)61 b(The)30 b(default)g(editor)h(used)f(b)m(y)g -Ft(fc)g Fu(is)g Ft(ed)p Fu(.)154 4869 y(50.)61 b(The)37 +4756 y(49.)61 b(The)30 b(default)g(editor)h(used)f(b)m(y)g +Ft(fc)g Fu(is)g Ft(ed)p Fu(.)154 4883 y(50.)61 b(The)37 b Ft(type)g Fu(and)g Ft(command)f Fu(builtins)i(will)g(not)g(rep)s(ort) f(a)i(non-executable)g(\014le)f(as)g(ha)m(ving)h(b)s(een)330 -4979 y(found,)26 b(though)h(the)g(shell)g(will)g(attempt)h(to)g +4993 y(found,)26 b(though)h(the)g(shell)g(will)g(attempt)h(to)g (execute)g(suc)m(h)f(a)g(\014le)g(if)g(it)g(is)g(the)g(only)g(so-named) -g(\014le)330 5089 y(found)i(in)h Ft($PATH)p Fu(.)154 +g(\014le)330 5103 y(found)i(in)h Ft($PATH)p Fu(.)154 5230 y(51.)61 b(The)33 b Ft(vi)f Fu(editing)i(mo)s(de)f(will)g(in)m(v)m (ok)m(e)i(the)e Ft(vi)g Fu(editor)h(directly)f(when)f(the)i(`)p Ft(v)p Fu(')f(command)g(is)g(run,)330 5340 y(instead)e(of)f(c)m(hec)m @@ -16202,76 +16208,77 @@ b(default,)g(Readline)g(starts)f(up)f(in)h(Emacs)g(editing)h(mo)s(de,) h(Emacs.)40 b(This)29 b(v)-5 b(ariable)30 b(can)1110 4751 y(b)s(e)g(set)h(to)g(either)g(`)p Ft(emacs)p Fu(')e(or)h(`)p Ft(vi)p Fu('.)630 4902 y Ft(emacs-mode-string)1110 5011 -y Fu(This)f(string)h(is)f(displa)m(y)m(ed)i(immediately)g(b)s(efore)e -(the)h(last)g(line)h(of)e(the)h(pri-)1110 5121 y(mary)43 -b(prompt)g(when)f(emacs)i(editing)g(mo)s(de)f(is)g(activ)m(e.)82 -b(The)43 b(v)-5 b(alue)44 b(is)1110 5230 y(expanded)28 -b(lik)m(e)i(a)f(k)m(ey)g(binding,)f(so)h(the)g(standard)f(set)h(of)g -(meta-)g(and)f(con-)1110 5340 y(trol)36 b(pre\014xes)e(and)h(bac)m -(kslash)h(escap)s(e)g(sequences)g(is)f(a)m(v)-5 b(ailable.)58 -b(Use)36 b(the)p eop end +y Fu(If)j(the)h Fr(sho)m(w-mo)s(de-in-prompt)h Fu(v)-5 +b(ariable)35 b(is)e(enabled,)i(this)f(string)f(is)h(dis-)1110 +5121 y(pla)m(y)m(ed)24 b(immediately)g(b)s(efore)f(the)g(last)h(line)f +(of)h(the)f(primary)f(prompt)g(when)1110 5230 y(emacs)g(editing)h(mo)s +(de)e(is)h(activ)m(e.)40 b(The)21 b(v)-5 b(alue)22 b(is)g(expanded)f +(lik)m(e)h(a)h(k)m(ey)f(bind-)1110 5340 y(ing,)27 b(so)f(the)f +(standard)g(set)h(of)f(meta-)i(and)e(con)m(trol)i(pre\014xes)d(and)h +(bac)m(kslash)p eop end %%Page: 112 118 TeXDict begin 112 117 bop 150 -116 a Fu(Chapter)30 b(8:)41 -b(Command)29 b(Line)i(Editing)2062 b(112)1110 299 y(`)p -Ft(\\1)p Fu(')38 b(and)f(`)p Ft(\\2)p Fu(')h(escap)s(es)g(to)h(b)s -(egin)e(and)h(end)f(sequences)h(of)g(non-prin)m(ting)1110 -408 y(c)m(haracters,)27 b(whic)m(h)c(can)h(b)s(e)f(used)f(to)j(em)m(b)s -(ed)e(a)h(terminal)g(con)m(trol)h(sequence)1110 518 y(in)m(to)31 -b(the)g(mo)s(de)f(string.)41 b(The)29 b(default)i(is)f(`)p -Ft(@)p Fu('.)630 682 y Ft(enable-bracketed-paste)1110 -792 y Fu(When)24 b(set)h(to)h(`)p Ft(On)p Fu(',)g(Readline)f(will)g +b(Command)29 b(Line)i(Editing)2062 b(112)1110 299 y(escap)s(e)24 +b(sequences)h(is)e(a)m(v)-5 b(ailable.)41 b(Use)25 b(the)f(`)p +Ft(\\1)p Fu(')f(and)h(`)p Ft(\\2)p Fu(')g(escap)s(es)g(to)g(b)s(egin) +1110 408 y(and)37 b(end)g(sequences)h(of)f(non-prin)m(ting)h(c)m +(haracters,)j(whic)m(h)c(can)h(b)s(e)f(used)1110 518 +y(to)h(em)m(b)s(ed)f(a)g(terminal)h(con)m(trol)h(sequence)f(in)m(to)g +(the)f(mo)s(de)g(string.)61 b(The)1110 628 y(default)31 +b(is)f(`)p Ft(@)p Fu('.)630 778 y Ft(enable-bracketed-paste)1110 +888 y Fu(When)24 b(set)h(to)h(`)p Ft(On)p Fu(',)g(Readline)f(will)g (con\014gure)f(the)h(terminal)g(in)f(a)h(w)m(a)m(y)g(that)1110 -902 y(will)k(enable)f(it)h(to)g(insert)g(eac)m(h)g(paste)g(in)m(to)g -(the)g(editing)g(bu\013er)e(as)i(a)f(single)1110 1011 +998 y(will)k(enable)f(it)h(to)g(insert)g(eac)m(h)g(paste)g(in)m(to)g +(the)g(editing)g(bu\013er)e(as)i(a)f(single)1110 1107 y(string)33 b(of)f(c)m(haracters,)j(instead)e(of)g(treating)h(eac)m(h)g -(c)m(haracter)g(as)f(if)f(it)i(had)1110 1121 y(b)s(een)e(read)i(from)e +(c)m(haracter)g(as)f(if)f(it)i(had)1110 1217 y(b)s(een)e(read)i(from)e (the)i(k)m(eyb)s(oard.)49 b(This)32 b(can)h(prev)m(en)m(t)h(pasted)f(c) -m(haracters)1110 1230 y(from)d(b)s(eing)g(in)m(terpreted)h(as)f +m(haracters)1110 1326 y(from)d(b)s(eing)g(in)m(terpreted)h(as)f (editing)h(commands.)41 b(The)29 b(default)i(is)f(`)p -Ft(off)p Fu('.)630 1395 y Ft(enable-keypad)1110 1504 +Ft(off)p Fu('.)630 1477 y Ft(enable-keypad)1110 1587 y Fu(When)23 b(set)h(to)g(`)p Ft(on)p Fu(',)h(Readline)f(will)g(try)f -(to)h(enable)g(the)f(application)i(k)m(eypad)1110 1614 +(to)h(enable)g(the)f(application)i(k)m(eypad)1110 1696 y(when)h(it)h(is)f(called.)41 b(Some)27 b(systems)f(need)h(this)f(to)h -(enable)g(the)g(arro)m(w)g(k)m(eys.)1110 1724 y(The)j(default)g(is)h(`) -p Ft(off)p Fu('.)630 1888 y Ft(enable-meta-key)1110 1998 +(enable)g(the)g(arro)m(w)g(k)m(eys.)1110 1806 y(The)j(default)g(is)h(`) +p Ft(off)p Fu('.)630 1956 y Ft(enable-meta-key)1110 2066 y Fu(When)40 b(set)g(to)g(`)p Ft(on)p Fu(',)j(Readline)d(will)g(try)g -(to)g(enable)g(an)m(y)g(meta)h(mo)s(di\014er)1110 2107 +(to)g(enable)g(an)m(y)g(meta)h(mo)s(di\014er)1110 2176 y(k)m(ey)i(the)e(terminal)i(claims)f(to)h(supp)s(ort)d(when)h(it)h(is)g -(called.)76 b(On)41 b(man)m(y)1110 2217 y(terminals,)c(the)e(meta)h(k)m +(called.)76 b(On)41 b(man)m(y)1110 2285 y(terminals,)c(the)e(meta)h(k)m (ey)g(is)f(used)g(to)h(send)e(eigh)m(t-bit)j(c)m(haracters.)56 -b(The)1110 2326 y(default)31 b(is)f(`)p Ft(on)p Fu('.)630 -2491 y Ft(expand-tilde)1110 2600 y Fu(If)d(set)h(to)h(`)p +b(The)1110 2395 y(default)31 b(is)f(`)p Ft(on)p Fu('.)630 +2545 y Ft(expand-tilde)1110 2655 y Fu(If)d(set)h(to)h(`)p Ft(on)p Fu(',)f(tilde)g(expansion)g(is)f(p)s(erformed)f(when)h -(Readline)h(attempts)1110 2710 y(w)m(ord)i(completion.)42 -b(The)30 b(default)g(is)h(`)p Ft(off)p Fu('.)630 2874 -y Ft(history-preserve-point)1110 2984 y Fu(If)41 b(set)h(to)h(`)p +(Readline)h(attempts)1110 2765 y(w)m(ord)i(completion.)42 +b(The)30 b(default)g(is)h(`)p Ft(off)p Fu('.)630 2915 +y Ft(history-preserve-point)1110 3025 y Fu(If)41 b(set)h(to)h(`)p Ft(on)p Fu(',)i(the)c(history)h(co)s(de)g(attempts)h(to)f(place)h(the)f -(p)s(oin)m(t)f(\(the)1110 3093 y(curren)m(t)35 b(cursor)g(p)s +(p)s(oin)m(t)f(\(the)1110 3134 y(curren)m(t)35 b(cursor)g(p)s (osition\))g(at)h(the)g(same)f(lo)s(cation)i(on)e(eac)m(h)h(history)g -(line)1110 3203 y(retriev)m(ed)h(with)f Ft(previous-history)c +(line)1110 3244 y(retriev)m(ed)h(with)f Ft(previous-history)c Fu(or)37 b Ft(next-history)p Fu(.)55 b(The)36 b(default)1110 -3313 y(is)30 b(`)p Ft(off)p Fu('.)630 3477 y Ft(history-size)1110 -3587 y Fu(Set)39 b(the)g(maxim)m(um)g(n)m(um)m(b)s(er)f(of)h(history)g -(en)m(tries)h(sa)m(v)m(ed)g(in)f(the)g(history)1110 3696 +3354 y(is)30 b(`)p Ft(off)p Fu('.)630 3504 y Ft(history-size)1110 +3614 y Fu(Set)39 b(the)g(maxim)m(um)g(n)m(um)m(b)s(er)f(of)h(history)g +(en)m(tries)h(sa)m(v)m(ed)g(in)f(the)g(history)1110 3724 y(list.)51 b(If)34 b(set)g(to)h(zero,)g(an)m(y)f(existing)h(history)f -(en)m(tries)g(are)g(deleted)h(and)e(no)1110 3806 y(new)e(en)m(tries)i +(en)m(tries)g(are)g(deleted)h(and)e(no)1110 3833 y(new)e(en)m(tries)i (are)f(sa)m(v)m(ed.)46 b(If)31 b(set)h(to)h(a)f(v)-5 b(alue)32 b(less)g(than)f(zero,)i(the)f(n)m(um)m(b)s(er)1110 -3915 y(of)f(history)f(en)m(tries)h(is)g(not)g(limited.)42 +3943 y(of)f(history)f(en)m(tries)h(is)g(not)g(limited.)42 b(By)30 b(default,)h(the)g(n)m(um)m(b)s(er)e(of)i(history)1110 -4025 y(en)m(tries)j(is)f(not)g(limited.)49 b(If)32 b(an)h(attempt)h(is) -f(made)g(to)h(set)f Fr(history-size)39 b Fu(to)1110 4134 +4052 y(en)m(tries)j(is)f(not)g(limited.)49 b(If)32 b(an)h(attempt)h(is) +f(made)g(to)h(set)f Fr(history-size)39 b Fu(to)1110 4162 y(a)34 b(non-n)m(umeric)f(v)-5 b(alue,)34 b(the)g(maxim)m(um)f(n)m(um)m -(b)s(er)f(of)h(history)h(en)m(tries)g(will)1110 4244 -y(b)s(e)c(set)h(to)g(500.)630 4408 y Ft(horizontal-scroll-mode)1110 -4518 y Fu(This)k(v)-5 b(ariable)37 b(can)f(b)s(e)f(set)h(to)h(either)f +(b)s(er)f(of)h(history)h(en)m(tries)g(will)1110 4271 +y(b)s(e)c(set)h(to)g(500.)630 4422 y Ft(horizontal-scroll-mode)1110 +4532 y Fu(This)k(v)-5 b(ariable)37 b(can)f(b)s(e)f(set)h(to)h(either)f (`)p Ft(on)p Fu(')g(or)g(`)p Ft(off)p Fu('.)57 b(Setting)36 -b(it)g(to)h(`)p Ft(on)p Fu(')1110 4628 y(means)26 b(that)h(the)f(text)h +b(it)g(to)h(`)p Ft(on)p Fu(')1110 4641 y(means)26 b(that)h(the)f(text)h (of)g(the)f(lines)g(b)s(eing)g(edited)h(will)f(scroll)h(horizon)m -(tally)1110 4737 y(on)32 b(a)g(single)g(screen)g(line)g(when)e(they)i -(are)g(longer)h(than)e(the)h(width)f(of)h(the)1110 4847 +(tally)1110 4751 y(on)32 b(a)g(single)g(screen)g(line)g(when)e(they)i +(are)g(longer)h(than)e(the)h(width)f(of)h(the)1110 4861 y(screen,)27 b(instead)g(of)f(wrapping)f(on)m(to)i(a)f(new)g(screen)g -(line.)39 b(By)27 b(default,)g(this)1110 4956 y(v)-5 +(line.)39 b(By)27 b(default,)g(this)1110 4970 y(v)-5 b(ariable)31 b(is)g(set)f(to)i(`)p Ft(off)p Fu('.)630 5121 y Ft(input-meta)1110 5230 y Fu(If)f(set)g(to)h(`)p Ft(on)p Fu(',)g(Readline)g(will)f(enable)h(eigh)m(t-bit)h(input)d(\(it) @@ -16408,235 +16415,282 @@ f(completions)h(don't)f(share)g(a)h(common)1110 4281 y(pre\014x\))30 b(cause)g(the)h(matc)m(hes)g(to)g(b)s(e)f(listed)g (immediately)i(instead)e(of)h(ring-)1110 4390 y(ing)g(the)f(b)s(ell.)41 b(The)30 b(default)g(v)-5 b(alue)31 b(is)f(`)p Ft(off)p -Fu('.)630 4536 y Ft(show-mode-in-prompt)1110 4646 y Fu(If)g(set)g(to)h -(`)p Ft(on)p Fu(',)f(add)f(a)i(c)m(haracter)g(to)g(the)f(b)s(eginning)g -(of)g(the)g(prompt)f(indi-)1110 4756 y(cating)j(the)g(editing)f(mo)s -(de:)42 b(emacs,)33 b(vi)e(command,)g(or)g(vi)g(insertion.)43 -b(The)1110 4865 y(mo)s(de)30 b(strings)g(are)h(user-settable.)42 -b(The)30 b(default)g(v)-5 b(alue)31 b(is)g(`)p Ft(off)p -Fu('.)630 5011 y Ft(skip-completed-text)1110 5121 y Fu(If)h(set)i(to)f -(`)p Ft(on)p Fu(',)h(this)f(alters)g(the)g(default)g(completion)h(b)s -(eha)m(vior)f(when)f(in-)1110 5230 y(serting)d(a)h(single)g(matc)m(h)f -(in)m(to)h(the)g(line.)40 b(It's)30 b(only)f(activ)m(e)i(when)d(p)s -(erform-)1110 5340 y(ing)35 b(completion)h(in)e(the)h(middle)f(of)h(a)f -(w)m(ord.)53 b(If)35 b(enabled,)g(readline)g(do)s(es)p -eop end +Fu('.)630 4536 y Ft(show-mode-in-prompt)1110 4646 y Fu(If)24 +b(set)h(to)g(`)p Ft(on)p Fu(',)g(add)f(a)h(string)f(to)h(the)f(b)s +(eginning)g(of)g(the)h(prompt)e(indicating)1110 4756 +y(the)33 b(editing)h(mo)s(de:)46 b(emacs,)35 b(vi)e(command,)h(or)f(vi) +h(insertion.)49 b(The)32 b(mo)s(de)1110 4865 y(strings)45 +b(are)h(user-settable)g(\(e.g.,)51 b Fr(emacs-mo)s(de-string)8 +b Fu(\).)87 b(The)45 b(default)1110 4975 y(v)-5 b(alue)31 +b(is)f(`)p Ft(off)p Fu('.)630 5121 y Ft(skip-completed-text)1110 +5230 y Fu(If)i(set)i(to)f(`)p Ft(on)p Fu(',)h(this)f(alters)g(the)g +(default)g(completion)h(b)s(eha)m(vior)f(when)f(in-)1110 +5340 y(serting)d(a)h(single)g(matc)m(h)f(in)m(to)h(the)g(line.)40 +b(It's)30 b(only)f(activ)m(e)i(when)d(p)s(erform-)p eop +end %%Page: 115 121 TeXDict begin 115 120 bop 150 -116 a Fu(Chapter)30 b(8:)41 -b(Command)29 b(Line)i(Editing)2062 b(115)1110 299 y(not)41 +b(Command)29 b(Line)i(Editing)2062 b(115)1110 299 y(ing)35 +b(completion)h(in)e(the)h(middle)f(of)h(a)f(w)m(ord.)53 +b(If)35 b(enabled,)g(readline)g(do)s(es)1110 408 y(not)41 b(insert)f(c)m(haracters)i(from)e(the)h(completion)h(that)f(matc)m(h)g -(c)m(haracters)1110 408 y(after)c(p)s(oin)m(t)g(in)g(the)g(w)m(ord)f(b) +(c)m(haracters)1110 518 y(after)c(p)s(oin)m(t)g(in)g(the)g(w)m(ord)f(b) s(eing)g(completed,)k(so)d(p)s(ortions)f(of)h(the)g(w)m(ord)1110 -518 y(follo)m(wing)c(the)f(cursor)f(are)h(not)g(duplicated.)45 +628 y(follo)m(wing)c(the)f(cursor)f(are)h(not)g(duplicated.)45 b(F)-8 b(or)32 b(instance,)h(if)f(this)f(is)h(en-)1110 -628 y(abled,)43 b(attempting)f(completion)g(when)d(the)i(cursor)f(is)g -(after)h(the)g(`)p Ft(e)p Fu(')f(in)1110 737 y(`)p Ft(Makefile)p +737 y(abled,)43 b(attempting)f(completion)g(when)d(the)i(cursor)f(is)g +(after)h(the)g(`)p Ft(e)p Fu(')f(in)1110 847 y(`)p Ft(Makefile)p Fu(')c(will)i(result)f(in)g(`)p Ft(Makefile)p Fu(')f(rather)h(than)h(`) -p Ft(Makefilefile)p Fu(',)1110 847 y(assuming)d(there)g(is)h(a)f +p Ft(Makefilefile)p Fu(',)1110 956 y(assuming)d(there)g(is)h(a)f (single)h(p)s(ossible)f(completion.)56 b(The)35 b(default)g(v)-5 -b(alue)1110 956 y(is)30 b(`)p Ft(off)p Fu('.)630 1117 -y Ft(vi-cmd-mode-string)1110 1226 y Fu(This)f(string)h(is)f(displa)m(y) -m(ed)i(immediately)g(b)s(efore)e(the)h(last)g(line)h(of)e(the)h(pri-) -1110 1336 y(mary)21 b(prompt)g(when)f(vi)i(editing)g(mo)s(de)f(is)g -(activ)m(e)j(and)d(in)g(command)g(mo)s(de.)1110 1445 -y(The)38 b(v)-5 b(alue)39 b(is)f(expanded)f(lik)m(e)j(a)f(k)m(ey)g -(binding,)g(so)g(the)f(standard)g(set)h(of)1110 1555 -y(meta-)30 b(and)e(con)m(trol)i(pre\014xes)e(and)g(bac)m(kslash)h -(escap)s(e)g(sequences)g(is)g(a)m(v)-5 b(ail-)1110 1665 -y(able.)50 b(Use)33 b(the)h(`)p Ft(\\1)p Fu(')f(and)g(`)p -Ft(\\2)p Fu(')g(escap)s(es)g(to)h(b)s(egin)f(and)g(end)f(sequences)i -(of)1110 1774 y(non-prin)m(ting)40 b(c)m(haracters,)45 -b(whic)m(h)40 b(can)g(b)s(e)g(used)g(to)h(em)m(b)s(ed)f(a)g(terminal) -1110 1884 y(con)m(trol)32 b(sequence)f(in)m(to)g(the)f(mo)s(de)g -(string.)41 b(The)30 b(default)h(is)f(`)p Ft(\(cmd\))p -Fu('.)630 2044 y Ft(vi-ins-mode-string)1110 2153 y Fu(This)f(string)h -(is)f(displa)m(y)m(ed)i(immediately)g(b)s(efore)e(the)h(last)g(line)h -(of)e(the)h(pri-)1110 2263 y(mary)25 b(prompt)f(when)g(vi)h(editing)h -(mo)s(de)e(is)i(activ)m(e)h(and)d(in)h(insertion)g(mo)s(de.)1110 -2373 y(The)38 b(v)-5 b(alue)39 b(is)f(expanded)f(lik)m(e)j(a)f(k)m(ey)g -(binding,)g(so)g(the)f(standard)g(set)h(of)1110 2482 -y(meta-)30 b(and)e(con)m(trol)i(pre\014xes)e(and)g(bac)m(kslash)h -(escap)s(e)g(sequences)g(is)g(a)m(v)-5 b(ail-)1110 2592 -y(able.)50 b(Use)33 b(the)h(`)p Ft(\\1)p Fu(')f(and)g(`)p -Ft(\\2)p Fu(')g(escap)s(es)g(to)h(b)s(egin)f(and)g(end)f(sequences)i -(of)1110 2701 y(non-prin)m(ting)40 b(c)m(haracters,)45 -b(whic)m(h)40 b(can)g(b)s(e)g(used)g(to)h(em)m(b)s(ed)f(a)g(terminal) -1110 2811 y(con)m(trol)32 b(sequence)f(in)m(to)g(the)f(mo)s(de)g -(string.)41 b(The)30 b(default)h(is)f(`)p Ft(\(ins\))p -Fu('.)630 2971 y Ft(visible-stats)1110 3081 y Fu(If)h(set)i(to)f(`)p -Ft(on)p Fu(',)h(a)f(c)m(haracter)i(denoting)e(a)g(\014le's)g(t)m(yp)s -(e)g(is)g(app)s(ended)e(to)j(the)1110 3190 y(\014lename)e(when)e -(listing)i(p)s(ossible)f(completions.)42 b(The)30 b(default)g(is)h(`)p -Ft(off)p Fu('.)150 3351 y(Key)f(Bindings)630 3460 y(The)41 -b(syn)m(tax)i(for)f(con)m(trolling)h(k)m(ey)g(bindings)e(in)h(the)g -(init)g(\014le)g(is)g(simple.)75 b(First)43 b(y)m(ou)630 -3570 y(need)27 b(to)i(\014nd)d(the)i(name)f(of)h(the)g(command)f(that)i -(y)m(ou)f(w)m(an)m(t)g(to)g(c)m(hange.)41 b(The)27 b(follo)m(wing)630 -3679 y(sections)37 b(con)m(tain)g(tables)g(of)f(the)g(command)f(name,)j -(the)e(default)g(k)m(eybinding,)h(if)f(an)m(y)-8 b(,)630 -3789 y(and)30 b(a)h(short)f(description)g(of)h(what)f(the)g(command)h -(do)s(es.)630 3924 y(Once)36 b(y)m(ou)g(kno)m(w)g(the)g(name)g(of)g -(the)g(command,)h(simply)f(place)h(on)e(a)i(line)f(in)g(the)g(init)630 -4033 y(\014le)e(the)g(name)f(of)h(the)g(k)m(ey)g(y)m(ou)g(wish)f(to)h -(bind)f(the)h(command)f(to,)i(a)f(colon,)i(and)d(then)630 -4143 y(the)f(name)h(of)f(the)g(command.)46 b(There)32 +b(alue)1110 1066 y(is)30 b(`)p Ft(off)p Fu('.)630 1215 +y Ft(vi-cmd-mode-string)1110 1325 y Fu(If)j(the)h Fr(sho)m(w-mo)s +(de-in-prompt)h Fu(v)-5 b(ariable)35 b(is)e(enabled,)i(this)f(string)f +(is)h(dis-)1110 1435 y(pla)m(y)m(ed)24 b(immediately)g(b)s(efore)f(the) +g(last)h(line)f(of)h(the)f(primary)f(prompt)g(when)1110 +1544 y(vi)32 b(editing)h(mo)s(de)f(is)g(activ)m(e)j(and)c(in)h(command) +g(mo)s(de.)46 b(The)31 b(v)-5 b(alue)33 b(is)f(ex-)1110 +1654 y(panded)26 b(lik)m(e)i(a)f(k)m(ey)h(binding,)e(so)i(the)f +(standard)f(set)h(of)g(meta-)h(and)e(con)m(trol)1110 +1763 y(pre\014xes)34 b(and)g(bac)m(kslash)i(escap)s(e)g(sequences)f(is) +g(a)m(v)-5 b(ailable.)57 b(Use)35 b(the)g(`)p Ft(\\1)p +Fu(')1110 1873 y(and)23 b(`)p Ft(\\2)p Fu(')h(escap)s(es)h(to)f(b)s +(egin)g(and)f(end)g(sequences)i(of)f(non-prin)m(ting)f(c)m(harac-)1110 +1983 y(ters,)31 b(whic)m(h)g(can)g(b)s(e)f(used)g(to)h(em)m(b)s(ed)f(a) +h(terminal)h(con)m(trol)g(sequence)f(in)m(to)1110 2092 +y(the)g(mo)s(de)f(string.)40 b(The)30 b(default)h(is)f(`)p +Ft(\(cmd\))p Fu('.)630 2242 y Ft(vi-ins-mode-string)1110 +2351 y Fu(If)j(the)h Fr(sho)m(w-mo)s(de-in-prompt)h Fu(v)-5 +b(ariable)35 b(is)e(enabled,)i(this)f(string)f(is)h(dis-)1110 +2461 y(pla)m(y)m(ed)24 b(immediately)g(b)s(efore)f(the)g(last)h(line)f +(of)h(the)f(primary)f(prompt)g(when)1110 2570 y(vi)35 +b(editing)h(mo)s(de)e(is)i(activ)m(e)h(and)d(in)h(insertion)g(mo)s(de.) +54 b(The)35 b(v)-5 b(alue)35 b(is)g(ex-)1110 2680 y(panded)26 +b(lik)m(e)i(a)f(k)m(ey)h(binding,)e(so)i(the)f(standard)f(set)h(of)g +(meta-)h(and)e(con)m(trol)1110 2790 y(pre\014xes)34 b(and)g(bac)m +(kslash)i(escap)s(e)g(sequences)f(is)g(a)m(v)-5 b(ailable.)57 +b(Use)35 b(the)g(`)p Ft(\\1)p Fu(')1110 2899 y(and)23 +b(`)p Ft(\\2)p Fu(')h(escap)s(es)h(to)f(b)s(egin)g(and)f(end)g +(sequences)i(of)f(non-prin)m(ting)f(c)m(harac-)1110 3009 +y(ters,)31 b(whic)m(h)g(can)g(b)s(e)f(used)g(to)h(em)m(b)s(ed)f(a)h +(terminal)h(con)m(trol)g(sequence)f(in)m(to)1110 3118 +y(the)g(mo)s(de)f(string.)40 b(The)30 b(default)h(is)f(`)p +Ft(\(ins\))p Fu('.)630 3268 y Ft(visible-stats)1110 3377 +y Fu(If)h(set)i(to)f(`)p Ft(on)p Fu(',)h(a)f(c)m(haracter)i(denoting)e +(a)g(\014le's)g(t)m(yp)s(e)g(is)g(app)s(ended)e(to)j(the)1110 +3487 y(\014lename)e(when)e(listing)i(p)s(ossible)f(completions.)42 +b(The)30 b(default)g(is)h(`)p Ft(off)p Fu('.)150 3636 +y(Key)f(Bindings)630 3746 y(The)41 b(syn)m(tax)i(for)f(con)m(trolling)h +(k)m(ey)g(bindings)e(in)h(the)g(init)g(\014le)g(is)g(simple.)75 +b(First)43 b(y)m(ou)630 3856 y(need)27 b(to)i(\014nd)d(the)i(name)f(of) +h(the)g(command)f(that)i(y)m(ou)f(w)m(an)m(t)g(to)g(c)m(hange.)41 +b(The)27 b(follo)m(wing)630 3965 y(sections)37 b(con)m(tain)g(tables)g +(of)f(the)g(command)f(name,)j(the)e(default)g(k)m(eybinding,)h(if)f(an) +m(y)-8 b(,)630 4075 y(and)30 b(a)h(short)f(description)g(of)h(what)f +(the)g(command)h(do)s(es.)630 4204 y(Once)36 b(y)m(ou)g(kno)m(w)g(the)g +(name)g(of)g(the)g(command,)h(simply)f(place)h(on)e(a)i(line)f(in)g +(the)g(init)630 4314 y(\014le)e(the)g(name)f(of)h(the)g(k)m(ey)g(y)m +(ou)g(wish)f(to)h(bind)f(the)h(command)f(to,)i(a)f(colon,)i(and)d(then) +630 4423 y(the)f(name)h(of)f(the)g(command.)46 b(There)32 b(can)g(b)s(e)g(no)g(space)g(b)s(et)m(w)m(een)h(the)f(k)m(ey)h(name)g -(and)630 4253 y(the)41 b(colon)h({)f(that)g(will)g(b)s(e)g(in)m +(and)630 4533 y(the)41 b(colon)h({)f(that)g(will)g(b)s(e)g(in)m (terpreted)g(as)g(part)f(of)h(the)g(k)m(ey)h(name.)72 -b(The)40 b(name)h(of)630 4362 y(the)35 b(k)m(ey)g(can)g(b)s(e)f +b(The)40 b(name)h(of)630 4643 y(the)35 b(k)m(ey)g(can)g(b)s(e)f (expressed)f(in)i(di\013eren)m(t)g(w)m(a)m(ys,)h(dep)s(ending)d(on)h -(what)h(y)m(ou)g(\014nd)e(most)630 4472 y(comfortable.)630 -4607 y(In)i(addition)h(to)h(command)f(names,)i(readline)e(allo)m(ws)h +(what)h(y)m(ou)g(\014nd)e(most)630 4752 y(comfortable.)630 +4882 y(In)i(addition)h(to)h(command)f(names,)i(readline)e(allo)m(ws)h (k)m(eys)g(to)g(b)s(e)e(b)s(ound)f(to)j(a)f(string)630 -4716 y(that)31 b(is)f(inserted)h(when)e(the)i(k)m(ey)g(is)f(pressed)g -(\(a)h Fr(macro)5 b Fu(\).)630 4851 y(The)42 b Ft(bind)30 +4991 y(that)31 b(is)f(inserted)h(when)e(the)i(k)m(ey)g(is)f(pressed)g +(\(a)h Fr(macro)5 b Fu(\).)630 5121 y(The)42 b Ft(bind)30 b(-p)42 b Fu(command)h(displa)m(ys)g(Readline)g(function)g(names)g(and) -f(bindings)g(in)h(a)630 4961 y(format)37 b(that)h(can)f(put)f(directly) +f(bindings)g(in)h(a)630 5230 y(format)37 b(that)h(can)f(put)f(directly) i(in)m(to)g(an)f(initialization)j(\014le.)60 b(See)38 -b(Section)f(4.2)i([Bash)630 5070 y(Builtins],)31 b(page)g(50.)630 -5230 y Fr(k)m(eyname)5 b Fu(:)42 b Fr(function-name)35 -b Fu(or)c Fr(macro)1110 5340 y(k)m(eyname)k Fu(is)29 -b(the)f(name)h(of)g(a)g(k)m(ey)h(sp)s(elled)e(out)h(in)g(English.)39 -b(F)-8 b(or)30 b(example:)p eop end +b(Section)f(4.2)i([Bash)630 5340 y(Builtins],)31 b(page)g(50.)p +eop end %%Page: 116 122 TeXDict begin 116 121 bop 150 -116 a Fu(Chapter)30 b(8:)41 -b(Command)29 b(Line)i(Editing)2062 b(116)1350 299 y Ft(Control-u:)45 -b(universal-argument)1350 408 y(Meta-Rubout:)f(backward-kill-word)1350 -518 y(Control-o:)h(">)i(output")1110 650 y Fu(In)94 b(the)g(ab)s(o)m(v) -m(e)i(example,)111 b Fj(C-u)94 b Fu(is)g(b)s(ound)f(to)i(the)f -(function)1110 760 y Ft(universal-argument)p Fu(,)124 -b Fj(M-DEL)107 b Fu(is)i(b)s(ound)e(to)j(the)f(function)1110 -869 y Ft(backward-kill-word)p Fu(,)75 b(and)69 b Fj(C-o)g -Fu(is)h(b)s(ound)e(to)j(run)d(the)i(macro)1110 979 y(expressed)45 -b(on)h(the)g(righ)m(t)g(hand)e(side)i(\(that)h(is,)i(to)e(insert)e(the) -h(text)h(`)p Ft(>)1110 1089 y(output)p Fu(')29 b(in)m(to)i(the)g -(line\).)1110 1221 y(A)62 b(n)m(um)m(b)s(er)e(of)i(sym)m(b)s(olic)h(c)m -(haracter)g(names)f(are)g(recognized)h(while)1110 1330 -y(pro)s(cessing)40 b(this)f(k)m(ey)i(binding)e(syn)m(tax:)60 -b Fr(DEL)p Fu(,)42 b Fr(ESC)p Fu(,)g Fr(ESCAPE)p Fu(,)f -Fr(LFD)p Fu(,)1110 1440 y Fr(NEWLINE)p Fu(,)31 b Fr(RET)p -Fu(,)f Fr(RETURN)p Fu(,)g Fr(R)m(UBOUT)p Fu(,)h Fr(SP)-8 -b(A)m(CE)p Fu(,)31 b Fr(SPC)p Fu(,)e(and)h Fr(T)-8 b(AB)p -Fu(.)630 1595 y Ft(")p Fr(k)m(eyseq)r Ft(")p Fu(:)41 -b Fr(function-name)36 b Fu(or)30 b Fr(macro)1110 1704 -y(k)m(eyseq)k Fu(di\013ers)d(from)f Fr(k)m(eyname)37 -b Fu(ab)s(o)m(v)m(e)32 b(in)f(that)h(strings)f(denoting)g(an)g(en-)1110 -1814 y(tire)j(k)m(ey)h(sequence)f(can)g(b)s(e)f(sp)s(eci\014ed,)h(b)m -(y)f(placing)i(the)f(k)m(ey)g(sequence)g(in)1110 1923 -y(double)29 b(quotes.)41 b(Some)29 b Fm(gnu)h Fu(Emacs)f(st)m(yle)i(k)m -(ey)f(escap)s(es)g(can)g(b)s(e)f(used,)g(as)1110 2033 -y(in)k(the)h(follo)m(wing)i(example,)f(but)e(the)h(sp)s(ecial)h(c)m -(haracter)g(names)f(are)g(not)1110 2143 y(recognized.)1350 -2275 y Ft("\\C-u":)46 b(universal-argument)1350 2384 -y("\\C-x\\C-r":)f(re-read-init-file)1350 2494 y("\\e[11~":)g("Function) -h(Key)g(1")1110 2626 y Fu(In)64 b(the)g(ab)s(o)m(v)m(e)i(example,)74 +b(Command)29 b(Line)i(Editing)2062 b(116)630 299 y Fr(k)m(eyname)5 +b Fu(:)42 b Fr(function-name)35 b Fu(or)c Fr(macro)1110 +408 y(k)m(eyname)k Fu(is)29 b(the)f(name)h(of)g(a)g(k)m(ey)h(sp)s +(elled)e(out)h(in)g(English.)39 b(F)-8 b(or)30 b(example:)1350 +543 y Ft(Control-u:)45 b(universal-argument)1350 652 +y(Meta-Rubout:)f(backward-kill-word)1350 762 y(Control-o:)h(">)i +(output")1110 896 y Fu(In)94 b(the)g(ab)s(o)m(v)m(e)i(example,)111 +b Fj(C-u)94 b Fu(is)g(b)s(ound)f(to)i(the)f(function)1110 +1006 y Ft(universal-argument)p Fu(,)124 b Fj(M-DEL)107 +b Fu(is)i(b)s(ound)e(to)j(the)f(function)1110 1115 y +Ft(backward-kill-word)p Fu(,)75 b(and)69 b Fj(C-o)g Fu(is)h(b)s(ound)e +(to)j(run)d(the)i(macro)1110 1225 y(expressed)45 b(on)h(the)g(righ)m(t) +g(hand)e(side)i(\(that)h(is,)i(to)e(insert)e(the)h(text)h(`)p +Ft(>)1110 1335 y(output)p Fu(')29 b(in)m(to)i(the)g(line\).)1110 +1469 y(A)62 b(n)m(um)m(b)s(er)e(of)i(sym)m(b)s(olic)h(c)m(haracter)g +(names)f(are)g(recognized)h(while)1110 1579 y(pro)s(cessing)40 +b(this)f(k)m(ey)i(binding)e(syn)m(tax:)60 b Fr(DEL)p +Fu(,)42 b Fr(ESC)p Fu(,)g Fr(ESCAPE)p Fu(,)f Fr(LFD)p +Fu(,)1110 1688 y Fr(NEWLINE)p Fu(,)31 b Fr(RET)p Fu(,)f +Fr(RETURN)p Fu(,)g Fr(R)m(UBOUT)p Fu(,)h Fr(SP)-8 b(A)m(CE)p +Fu(,)31 b Fr(SPC)p Fu(,)e(and)h Fr(T)-8 b(AB)p Fu(.)630 +1847 y Ft(")p Fr(k)m(eyseq)r Ft(")p Fu(:)41 b Fr(function-name)36 +b Fu(or)30 b Fr(macro)1110 1957 y(k)m(eyseq)k Fu(di\013ers)d(from)f +Fr(k)m(eyname)37 b Fu(ab)s(o)m(v)m(e)32 b(in)f(that)h(strings)f +(denoting)g(an)g(en-)1110 2066 y(tire)j(k)m(ey)h(sequence)f(can)g(b)s +(e)f(sp)s(eci\014ed,)h(b)m(y)f(placing)i(the)f(k)m(ey)g(sequence)g(in) +1110 2176 y(double)29 b(quotes.)41 b(Some)29 b Fm(gnu)h +Fu(Emacs)f(st)m(yle)i(k)m(ey)f(escap)s(es)g(can)g(b)s(e)f(used,)g(as) +1110 2286 y(in)k(the)h(follo)m(wing)i(example,)f(but)e(the)h(sp)s +(ecial)h(c)m(haracter)g(names)f(are)g(not)1110 2395 y(recognized.)1350 +2530 y Ft("\\C-u":)46 b(universal-argument)1350 2639 +y("\\C-x\\C-r":)f(re-read-init-file)1350 2749 y("\\e[11~":)g("Function) +h(Key)g(1")1110 2883 y Fu(In)64 b(the)g(ab)s(o)m(v)m(e)i(example,)74 b Fj(C-u)64 b Fu(is)g(again)i(b)s(ound)c(to)k(the)e(function)1110 -2736 y Ft(universal-argument)39 b Fu(\(just)k(as)h(it)g(w)m(as)g(in)g -(the)f(\014rst)g(example\),)49 b(`)p Fj(C-x)1110 2845 +2993 y Ft(universal-argument)39 b Fu(\(just)k(as)h(it)g(w)m(as)g(in)g +(the)f(\014rst)g(example\),)49 b(`)p Fj(C-x)1110 3102 y(C-r)p Fu(')30 b(is)g(b)s(ound)e(to)j(the)g(function)f Ft(re-read-init-file)p Fu(,)c(and)j(`)p Ft(ESC)h([)g(1)g(1)1110 -2955 y(~)p Fu(')g(is)h(b)s(ound)d(to)j(insert)f(the)h(text)g(`)p -Ft(Function)e(Key)g(1)p Fu('.)630 3110 y(The)g(follo)m(wing)i +3212 y(~)p Fu(')g(is)h(b)s(ound)d(to)j(insert)f(the)h(text)g(`)p +Ft(Function)e(Key)g(1)p Fu('.)630 3371 y(The)g(follo)m(wing)i Fm(gnu)f Fu(Emacs)g(st)m(yle)h(escap)s(e)f(sequences)g(are)g(a)m(v)-5 -b(ailable)32 b(when)d(sp)s(ecifying)630 3219 y(k)m(ey)i(sequences:)630 -3374 y Fj(\\C-)336 b Fu(con)m(trol)32 b(pre\014x)630 -3529 y Fj(\\M-)336 b Fu(meta)31 b(pre\014x)630 3683 y +b(ailable)32 b(when)d(sp)s(ecifying)630 3480 y(k)m(ey)i(sequences:)630 +3640 y Fj(\\C-)336 b Fu(con)m(trol)32 b(pre\014x)630 +3799 y Fj(\\M-)336 b Fu(meta)31 b(pre\014x)630 3958 y Fj(\\e)384 b Fu(an)30 b(escap)s(e)h(c)m(haracter)630 -3838 y Fj(\\\\)384 b Fu(bac)m(kslash)630 3993 y Fj(\\)p +4117 y Fj(\\\\)384 b Fu(bac)m(kslash)630 4276 y Fj(\\)p Ft(")g(")p Fu(,)30 b(a)h(double)f(quotation)i(mark)630 -4147 y Fj(\\')384 b Ft(')p Fu(,)30 b(a)h(single)g(quote)g(or)f(ap)s -(ostrophe)630 4302 y(In)d(addition)h(to)g(the)g Fm(gnu)f +4435 y Fj(\\')384 b Ft(')p Fu(,)30 b(a)h(single)g(quote)g(or)f(ap)s +(ostrophe)630 4594 y(In)d(addition)h(to)g(the)g Fm(gnu)f Fu(Emacs)h(st)m(yle)h(escap)s(e)f(sequences,)h(a)f(second)f(set)h(of)g -(bac)m(kslash)630 4412 y(escap)s(es)j(is)f(a)m(v)-5 b(ailable:)630 -4566 y Ft(\\a)384 b Fu(alert)31 b(\(b)s(ell\))630 4721 -y Ft(\\b)384 b Fu(bac)m(kspace)630 4876 y Ft(\\d)g Fu(delete)630 -5031 y Ft(\\f)g Fu(form)30 b(feed)630 5185 y Ft(\\n)384 -b Fu(newline)630 5340 y Ft(\\r)g Fu(carriage)32 b(return)p -eop end +(bac)m(kslash)630 4704 y(escap)s(es)j(is)f(a)m(v)-5 b(ailable:)630 +4863 y Ft(\\a)384 b Fu(alert)31 b(\(b)s(ell\))630 5022 +y Ft(\\b)384 b Fu(bac)m(kspace)630 5181 y Ft(\\d)g Fu(delete)630 +5340 y Ft(\\f)g Fu(form)30 b(feed)p eop end %%Page: 117 123 TeXDict begin 117 122 bop 150 -116 a Fu(Chapter)30 b(8:)41 -b(Command)29 b(Line)i(Editing)2062 b(117)630 299 y Ft(\\t)384 -b Fu(horizon)m(tal)32 b(tab)630 451 y Ft(\\v)384 b Fu(v)m(ertical)32 -b(tab)630 604 y Ft(\\)p Fj(nnn)288 b Fu(the)35 b(eigh)m(t-bit)h(c)m -(haracter)g(whose)e(v)-5 b(alue)35 b(is)g(the)f(o)s(ctal)i(v)-5 -b(alue)35 b Fr(nnn)e Fu(\(one)i(to)1110 713 y(three)c(digits\))630 -866 y Ft(\\x)p Fj(HH)288 b Fu(the)38 b(eigh)m(t-bit)i(c)m(haracter)g -(whose)e(v)-5 b(alue)39 b(is)f(the)h(hexadecimal)g(v)-5 -b(alue)39 b Fr(HH)1110 975 y Fu(\(one)31 b(or)f(t)m(w)m(o)i(hex)e -(digits\))630 1128 y(When)37 b(en)m(tering)h(the)g(text)g(of)g(a)g -(macro,)i(single)e(or)f(double)g(quotes)h(m)m(ust)f(b)s(e)g(used)f(to) -630 1237 y(indicate)23 b(a)e(macro)h(de\014nition.)38 -b(Unquoted)21 b(text)i(is)e(assumed)g(to)h(b)s(e)f(a)h(function)f -(name.)38 b(In)630 1347 y(the)22 b(macro)f(b)s(o)s(dy)-8 -b(,)23 b(the)e(bac)m(kslash)h(escap)s(es)g(describ)s(ed)e(ab)s(o)m(v)m -(e)j(are)e(expanded.)37 b(Bac)m(kslash)630 1456 y(will)j(quote)h(an)m -(y)f(other)g(c)m(haracter)i(in)d(the)i(macro)f(text,)k(including)39 +b(Command)29 b(Line)i(Editing)2062 b(117)630 299 y Ft(\\n)384 +b Fu(newline)630 459 y Ft(\\r)g Fu(carriage)32 b(return)630 +619 y Ft(\\t)384 b Fu(horizon)m(tal)32 b(tab)630 779 +y Ft(\\v)384 b Fu(v)m(ertical)32 b(tab)630 939 y Ft(\\)p +Fj(nnn)288 b Fu(the)35 b(eigh)m(t-bit)h(c)m(haracter)g(whose)e(v)-5 +b(alue)35 b(is)g(the)f(o)s(ctal)i(v)-5 b(alue)35 b Fr(nnn)e +Fu(\(one)i(to)1110 1049 y(three)c(digits\))630 1209 y +Ft(\\x)p Fj(HH)288 b Fu(the)38 b(eigh)m(t-bit)i(c)m(haracter)g(whose)e +(v)-5 b(alue)39 b(is)f(the)h(hexadecimal)g(v)-5 b(alue)39 +b Fr(HH)1110 1318 y Fu(\(one)31 b(or)f(t)m(w)m(o)i(hex)e(digits\))630 +1478 y(When)37 b(en)m(tering)h(the)g(text)g(of)g(a)g(macro,)i(single)e +(or)f(double)g(quotes)h(m)m(ust)f(b)s(e)g(used)f(to)630 +1588 y(indicate)23 b(a)e(macro)h(de\014nition.)38 b(Unquoted)21 +b(text)i(is)e(assumed)g(to)h(b)s(e)f(a)h(function)f(name.)38 +b(In)630 1697 y(the)22 b(macro)f(b)s(o)s(dy)-8 b(,)23 +b(the)e(bac)m(kslash)h(escap)s(es)g(describ)s(ed)e(ab)s(o)m(v)m(e)j +(are)e(expanded.)37 b(Bac)m(kslash)630 1807 y(will)j(quote)h(an)m(y)f +(other)g(c)m(haracter)i(in)d(the)i(macro)f(text,)k(including)39 b(`)p Ft(")p Fu(')h(and)g(`)p Ft(')p Fu('.)69 b(F)-8 -b(or)630 1566 y(example,)28 b(the)e(follo)m(wing)h(binding)d(will)i +b(or)630 1917 y(example,)28 b(the)e(follo)m(wing)h(binding)d(will)i (mak)m(e)h(`)p Fj(C-x)j Ft(\\)p Fu(')c(insert)f(a)h(single)h(`)p -Ft(\\)p Fu(')f(in)m(to)g(the)g(line:)870 1697 y Ft("\\C-x\\\\":)45 -b("\\\\")150 1889 y Fk(8.3.2)63 b(Conditional)41 b(Init)g(Constructs) -150 2036 y Fu(Readline)c(implemen)m(ts)g(a)h(facilit)m(y)g(similar)f +Ft(\\)p Fu(')f(in)m(to)g(the)g(line:)870 2051 y Ft("\\C-x\\\\":)45 +b("\\\\")150 2251 y Fk(8.3.2)63 b(Conditional)41 b(Init)g(Constructs) +150 2398 y Fu(Readline)c(implemen)m(ts)g(a)h(facilit)m(y)g(similar)f (in)g(spirit)f(to)i(the)f(conditional)h(compilation)g(features)f(of)150 -2146 y(the)31 b(C)f(prepro)s(cessor)g(whic)m(h)g(allo)m(ws)i(k)m(ey)g +2508 y(the)31 b(C)f(prepro)s(cessor)g(whic)m(h)g(allo)m(ws)i(k)m(ey)g (bindings)d(and)h(v)-5 b(ariable)32 b(settings)f(to)h(b)s(e)e(p)s -(erformed)f(as)i(the)150 2255 y(result)f(of)h(tests.)41 +(erformed)f(as)i(the)150 2617 y(result)f(of)h(tests.)41 b(There)30 b(are)h(four)f(parser)f(directiv)m(es)j(used.)150 -2408 y Ft($if)336 b Fu(The)31 b Ft($if)f Fu(construct)i(allo)m(ws)h +2778 y Ft($if)336 b Fu(The)31 b Ft($if)f Fu(construct)i(allo)m(ws)h (bindings)d(to)i(b)s(e)e(made)i(based)f(on)g(the)g(editing)h(mo)s(de,)g -(the)630 2517 y(terminal)39 b(b)s(eing)e(used,)j(or)e(the)g -(application)h(using)f(Readline.)64 b(The)38 b(text)h(of)f(the)g(test) -630 2627 y(extends)30 b(to)h(the)g(end)f(of)g(the)h(line;)g(no)f(c)m -(haracters)i(are)f(required)e(to)i(isolate)i(it.)630 -2779 y Ft(mode)288 b Fu(The)30 b Ft(mode=)e Fu(form)i(of)g(the)h -Ft($if)e Fu(directiv)m(e)j(is)e(used)f(to)i(test)g(whether)e(Read-)1110 -2889 y(line)44 b(is)f(in)g Ft(emacs)f Fu(or)h Ft(vi)g -Fu(mo)s(de.)79 b(This)42 b(ma)m(y)i(b)s(e)e(used)h(in)g(conjunction) -1110 2998 y(with)c(the)h(`)p Ft(set)29 b(keymap)p Fu(')38 -b(command,)k(for)d(instance,)j(to)e(set)g(bindings)e(in)1110 -3108 y(the)32 b Ft(emacs-standard)c Fu(and)j Ft(emacs-ctlx)d -Fu(k)m(eymaps)k(only)g(if)g(Readline)g(is)1110 3218 y(starting)f(out)g -(in)f Ft(emacs)f Fu(mo)s(de.)630 3370 y Ft(term)288 b +(the)630 2887 y(terminal)37 b(b)s(eing)f(used,)h(or)f(the)h +(application)g(using)f(Readline.)59 b(The)36 b(text)h(of)f(the)h(test,) +630 2997 y(after)30 b(an)m(y)g(comparison)g(op)s(erator,)g(extends)f +(to)h(the)g(end)f(of)h(the)f(line;)i(unless)e(otherwise)630 +3106 y(noted,)i(no)f(c)m(haracters)i(are)f(required)e(to)i(isolate)i +(it.)630 3267 y Ft(mode)288 b Fu(The)30 b Ft(mode=)e +Fu(form)i(of)g(the)h Ft($if)e Fu(directiv)m(e)j(is)e(used)f(to)i(test)g +(whether)e(Read-)1110 3376 y(line)44 b(is)f(in)g Ft(emacs)f +Fu(or)h Ft(vi)g Fu(mo)s(de.)79 b(This)42 b(ma)m(y)i(b)s(e)e(used)h(in)g +(conjunction)1110 3486 y(with)c(the)h(`)p Ft(set)29 b(keymap)p +Fu(')38 b(command,)k(for)d(instance,)j(to)e(set)g(bindings)e(in)1110 +3595 y(the)32 b Ft(emacs-standard)c Fu(and)j Ft(emacs-ctlx)d +Fu(k)m(eymaps)k(only)g(if)g(Readline)g(is)1110 3705 y(starting)f(out)g +(in)f Ft(emacs)f Fu(mo)s(de.)630 3865 y Ft(term)288 b Fu(The)26 b Ft(term=)g Fu(form)g(ma)m(y)i(b)s(e)e(used)g(to)i(include)f -(terminal-sp)s(eci\014c)g(k)m(ey)h(bind-)1110 3480 y(ings,)38 +(terminal-sp)s(eci\014c)g(k)m(ey)h(bind-)1110 3974 y(ings,)38 b(p)s(erhaps)c(to)j(bind)e(the)h(k)m(ey)h(sequences)f(output)g(b)m(y)g -(the)g(terminal's)1110 3589 y(function)24 b(k)m(eys.)39 +(the)g(terminal's)1110 4084 y(function)24 b(k)m(eys.)39 b(The)23 b(w)m(ord)h(on)f(the)i(righ)m(t)f(side)g(of)g(the)g(`)p -Ft(=)p Fu(')g(is)g(tested)h(against)1110 3699 y(b)s(oth)k(the)h(full)g +Ft(=)p Fu(')g(is)g(tested)h(against)1110 4194 y(b)s(oth)k(the)h(full)g (name)g(of)g(the)g(terminal)h(and)e(the)i(p)s(ortion)e(of)h(the)g -(terminal)1110 3808 y(name)k(b)s(efore)f(the)g(\014rst)g(`)p +(terminal)1110 4303 y(name)k(b)s(efore)f(the)g(\014rst)g(`)p Ft(-)p Fu('.)50 b(This)33 b(allo)m(ws)i Ft(sun)e Fu(to)h(matc)m(h)g(b)s -(oth)f Ft(sun)g Fu(and)1110 3918 y Ft(sun-cmd)p Fu(,)c(for)h(instance.) -630 4070 y Ft(application)1110 4180 y Fu(The)21 b Fr(application)j -Fu(construct)e(is)g(used)f(to)i(include)f(application-sp)s(eci\014c)h -(set-)1110 4289 y(tings.)39 b(Eac)m(h)26 b(program)e(using)g(the)h -(Readline)g(library)g(sets)g(the)g Fr(application)1110 -4399 y(name)p Fu(,)g(and)e(y)m(ou)g(can)h(test)g(for)f(a)g(particular)h -(v)-5 b(alue.)39 b(This)22 b(could)h(b)s(e)g(used)f(to)1110 -4509 y(bind)32 b(k)m(ey)h(sequences)g(to)h(functions)e(useful)g(for)h -(a)g(sp)s(eci\014c)f(program.)48 b(F)-8 b(or)1110 4618 -y(instance,)35 b(the)e(follo)m(wing)h(command)f(adds)f(a)i(k)m(ey)f -(sequence)h(that)f(quotes)1110 4728 y(the)e(curren)m(t)f(or)g(previous) -g(w)m(ord)g(in)g(Bash:)1350 4859 y Ft($if)47 b(Bash)1350 -4968 y(#)g(Quote)g(the)g(current)f(or)h(previous)e(word)1350 -5078 y("\\C-xq":)h("\\eb\\"\\ef\\"")1350 5188 y($endif)150 -5340 y($endif)192 b Fu(This)29 b(command,)i(as)f(seen)h(in)f(the)g -(previous)g(example,)h(terminates)g(an)g Ft($if)e Fu(command.)p +(oth)f Ft(sun)g Fu(and)1110 4413 y Ft(sun-cmd)p Fu(,)c(for)h(instance.) +630 4573 y Ft(version)144 b Fu(The)44 b Ft(version)f +Fu(test)i(ma)m(y)h(b)s(e)e(used)f(to)j(p)s(erform)d(comparisons)i +(against)1110 4682 y(sp)s(eci\014c)c(Readline)i(v)m(ersions.)74 +b(The)42 b Ft(version)d Fu(expands)i(to)h(the)g(curren)m(t)1110 +4792 y(Readline)25 b(v)m(ersion.)39 b(The)23 b(set)h(of)g(comparison)h +(op)s(erators)f(includes)f(`)p Ft(=)p Fu(')h(\(and)1110 +4902 y(`)p Ft(==)p Fu('\),)33 b(`)p Ft(!=)p Fu(',)f(`)p +Ft(<=)p Fu(',)h(`)p Ft(>=)p Fu(',)f(`)p Ft(<)p Fu(',)h(and)e(`)p +Ft(>)p Fu('.)46 b(The)31 b(v)m(ersion)i(n)m(um)m(b)s(er)d(supplied)h +(on)1110 5011 y(the)j(righ)m(t)h(side)f(of)g(the)g(op)s(erator)g +(consists)h(of)f(a)g(ma)5 b(jor)35 b(v)m(ersion)f(n)m(um)m(b)s(er,)1110 +5121 y(an)45 b(optional)i(decimal)f(p)s(oin)m(t,)k(and)44 +b(an)i(optional)g(minor)f(v)m(ersion)h(\(e.g.,)1110 5230 +y(`)p Ft(7.1)p Fu('\).)40 b(If)27 b(the)h(minor)f(v)m(ersion)h(is)g +(omitted,)h(it)f(is)g(assumed)f(to)h(b)s(e)f(`)p Ft(0)p +Fu('.)40 b(The)1110 5340 y(op)s(erator)34 b(ma)m(y)g(b)s(e)f(separated) +g(from)g(the)h(string)f Ft(version)f Fu(and)h(from)g(the)p eop end %%Page: 118 124 TeXDict begin 118 123 bop 150 -116 a Fu(Chapter)30 b(8:)41 -b(Command)29 b(Line)i(Editing)2062 b(118)150 299 y Ft($else)240 -b Fu(Commands)29 b(in)h(this)h(branc)m(h)e(of)i(the)f -Ft($if)g Fu(directiv)m(e)i(are)f(executed)g(if)f(the)h(test)g(fails.) -150 458 y Ft($include)96 b Fu(This)43 b(directiv)m(e)i(tak)m(es)g(a)e -(single)i(\014lename)e(as)h(an)f(argumen)m(t)h(and)f(reads)g(commands) -630 568 y(and)38 b(bindings)f(from)h(that)i(\014le.)65 +b(Command)29 b(Line)i(Editing)2062 b(118)1110 299 y(v)m(ersion)39 +b(n)m(um)m(b)s(er)f(argumen)m(t)h(b)m(y)f(whitespace.)67 +b(The)38 b(follo)m(wing)i(example)1110 408 y(sets)31 +b(a)g(v)-5 b(ariable)31 b(if)f(the)h(Readline)g(v)m(ersion)f(b)s(eing)g +(used)g(is)g(7.0)i(or)e(new)m(er:)1350 543 y Ft($if)47 +b(version)f(>=)h(7.0)1350 653 y(set)g(show-mode-in-prompt)42 +b(on)1350 762 y($endif)630 922 y(application)1110 1031 +y Fu(The)21 b Fr(application)j Fu(construct)e(is)g(used)f(to)i(include) +f(application-sp)s(eci\014c)h(set-)1110 1141 y(tings.)39 +b(Eac)m(h)26 b(program)e(using)g(the)h(Readline)g(library)g(sets)g(the) +g Fr(application)1110 1250 y(name)p Fu(,)g(and)e(y)m(ou)g(can)h(test)g +(for)f(a)g(particular)h(v)-5 b(alue.)39 b(This)22 b(could)h(b)s(e)g +(used)f(to)1110 1360 y(bind)32 b(k)m(ey)h(sequences)g(to)h(functions)e +(useful)g(for)h(a)g(sp)s(eci\014c)f(program.)48 b(F)-8 +b(or)1110 1469 y(instance,)35 b(the)e(follo)m(wing)h(command)f(adds)f +(a)i(k)m(ey)f(sequence)h(that)f(quotes)1110 1579 y(the)e(curren)m(t)f +(or)g(previous)g(w)m(ord)g(in)g(Bash:)1350 1714 y Ft($if)47 +b(Bash)1350 1823 y(#)g(Quote)g(the)g(current)f(or)h(previous)e(word) +1350 1933 y("\\C-xq":)h("\\eb\\"\\ef\\"")1350 2042 y($endif)630 +2202 y(variable)96 b Fu(The)33 b Fr(v)-5 b(ariable)39 +b Fu(construct)33 b(pro)m(vides)g(simple)g(equalit)m(y)i(tests)e(for)g +(Readline)1110 2311 y(v)-5 b(ariables)32 b(and)f(v)-5 +b(alues.)45 b(The)32 b(p)s(ermitted)f(comparison)h(op)s(erators)f(are)i +(`)p Ft(=)p Fu(',)1110 2421 y(`)p Ft(==)p Fu(',)49 b(and)44 +b(`)p Ft(!=)p Fu('.)85 b(The)44 b(v)-5 b(ariable)46 b(name)f(m)m(ust)g +(b)s(e)g(separated)g(from)g(the)1110 2531 y(comparison)25 +b(op)s(erator)g(b)m(y)g(whitespace;)j(the)d(op)s(erator)g(ma)m(y)g(b)s +(e)f(separated)1110 2640 y(from)33 b(the)h(v)-5 b(alue)35 +b(on)f(the)g(righ)m(t)g(hand)f(side)h(b)m(y)f(whitespace.)52 +b(Both)35 b(string)1110 2750 y(and)i(b)s(o)s(olean)g(v)-5 +b(ariables)38 b(ma)m(y)h(b)s(e)d(tested.)63 b(Bo)s(olean)39 +b(v)-5 b(ariables)38 b(m)m(ust)g(b)s(e)1110 2859 y(tested)46 +b(against)g(the)f(v)-5 b(alues)46 b Fr(on)f Fu(and)f +Fr(o\013)p Fu(.)85 b(The)45 b(follo)m(wing)h(example)g(is)1110 +2969 y(equiv)-5 b(alen)m(t)32 b(to)f(the)f Ft(mode=emacs)e +Fu(test)j(describ)s(ed)f(ab)s(o)m(v)m(e:)1350 3103 y +Ft($if)47 b(editing-mode)d(==)k(emacs)1350 3213 y(set)f +(show-mode-in-prompt)42 b(on)1350 3323 y($endif)150 3482 +y($endif)192 b Fu(This)29 b(command,)i(as)f(seen)h(in)f(the)g(previous) +g(example,)h(terminates)g(an)g Ft($if)e Fu(command.)150 +3641 y Ft($else)240 b Fu(Commands)29 b(in)h(this)h(branc)m(h)e(of)i +(the)f Ft($if)g Fu(directiv)m(e)i(are)f(executed)g(if)f(the)h(test)g +(fails.)150 3801 y Ft($include)96 b Fu(This)43 b(directiv)m(e)i(tak)m +(es)g(a)e(single)i(\014lename)e(as)h(an)f(argumen)m(t)h(and)f(reads)g +(commands)630 3910 y(and)38 b(bindings)f(from)h(that)i(\014le.)65 b(F)-8 b(or)39 b(example,)j(the)d(follo)m(wing)h(directiv)m(e)g(reads)e -(from)630 677 y Ft(/etc/inputrc)p Fu(:)870 812 y Ft($include)46 -b(/etc/inputrc)150 1011 y Fk(8.3.3)63 b(Sample)41 b(Init)g(File)150 -1158 y Fu(Here)27 b(is)f(an)h(example)g(of)f(an)h Fr(inputrc)k +(from)630 4020 y Ft(/etc/inputrc)p Fu(:)870 4154 y Ft($include)46 +b(/etc/inputrc)150 4354 y Fk(8.3.3)63 b(Sample)41 b(Init)g(File)150 +4501 y Fu(Here)27 b(is)f(an)h(example)g(of)f(an)h Fr(inputrc)k Fu(\014le.)39 b(This)26 b(illustrates)h(k)m(ey)h(binding,)e(v)-5 -b(ariable)27 b(assignmen)m(t,)i(and)150 1268 y(conditional)j(syn)m +b(ariable)27 b(assignmen)m(t,)i(and)150 4610 y(conditional)j(syn)m (tax.)p eop end %%Page: 119 125 TeXDict begin 119 124 bop 150 -116 a Fu(Chapter)30 b(8:)41 @@ -18743,7 +18797,7 @@ b(used)g(in)g(redirections)h(\(see)g(Section)g(3.6)h([Redirec-)630 628 y(tions],)e(page)g(33\).)150 787 y Ft(--enable-process-substit)o (utio)o(n)630 897 y Fu(This)49 b(enables)i(pro)s(cess)f(substitution)g (\(see)h(Section)g(3.5.6)h([Pro)s(cess)e(Substitution],)630 -1006 y(page)31 b(31\))h(if)e(the)h(op)s(erating)f(system)h(pro)m(vides) +1006 y(page)31 b(30\))h(if)e(the)h(op)s(erating)f(system)h(pro)m(vides) f(the)h(necessary)g(supp)s(ort.)150 1166 y Ft(--enable-progcomp)630 1275 y Fu(Enable)d(the)g(programmable)g(completion)i(facilities)g (\(see)f(Section)g(8.6)g([Programmable)630 1385 y(Completion],)i(page)h @@ -19001,7 +19055,7 @@ b(preferred)g(to)i(the)g(Bourne)f(shell's)h Ft(``)e Fu(\(whic)m(h)i(is) f(also)330 4495 y(implemen)m(ted)31 b(for)f(bac)m(kw)m(ards)h (compatibilit)m(y\).)225 4631 y Fq(\017)60 b Fu(Bash)31 b(has)f(pro)s(cess)g(substitution)g(\(see)h(Section)g(3.5.6)h([Pro)s -(cess)f(Substitution],)f(page)h(31\).)225 4766 y Fq(\017)60 +(cess)f(Substitution],)f(page)h(30\).)225 4766 y Fq(\017)60 b Fu(Bash)55 b(automatically)j(assigns)e(v)-5 b(ariables)55 b(that)h(pro)m(vide)f(information)h(ab)s(out)f(the)g(curren)m(t)330 4876 y(user)40 b(\()p Ft(UID)p Fu(,)i Ft(EUID)p Fu(,)g(and)e @@ -21209,7 +21263,7 @@ g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)30 b Fb(3)150 2172 y(pro)r(cess)d (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:) g(:)26 b Fb(3)150 2259 y(pro)r(cess)h(substitution)11 b Fc(:)h(:)i(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:) -h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)25 b Fb(31)150 +h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)25 b Fb(30)150 2347 y(programmable)i(completion)8 b Fc(:)14 b(:)g(:)f(:)g(:)g(:)g(:)g (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)23 b Fb(131)150 2434 y(prompting)17 b Fc(:)c(:)g(:)g(:)h(:)f(:)g(:)g(:)g diff --git a/doc/bashref.texi b/doc/bashref.texi index 8272389a..55a47c27 100644 --- a/doc/bashref.texi +++ b/doc/bashref.texi @@ -14,7 +14,7 @@ This is Edition @value{EDITION}, last updated @value{UPDATED}, of @cite{The GNU Bash Reference Manual}, for @code{Bash}, Version @value{VERSION}. -Copyright @copyright{} 1988--2017 Free Software Foundation, Inc. +Copyright @copyright{} 1988--2018 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/doc/bashref.toc b/doc/bashref.toc index 2974aeb2..59131ee8 100644 --- a/doc/bashref.toc +++ b/doc/bashref.toc @@ -32,7 +32,7 @@ @numsubsecentry{Shell Parameter Expansion}{3.5.3}{Shell Parameter Expansion}{24} @numsubsecentry{Command Substitution}{3.5.4}{Command Substitution}{30} @numsubsecentry{Arithmetic Expansion}{3.5.5}{Arithmetic Expansion}{30} -@numsubsecentry{Process Substitution}{3.5.6}{Process Substitution}{31} +@numsubsecentry{Process Substitution}{3.5.6}{Process Substitution}{30} @numsubsecentry{Word Splitting}{3.5.7}{Word Splitting}{31} @numsubsecentry{Filename Expansion}{3.5.8}{Filename Expansion}{31} @numsubsubsecentry{Pattern Matching}{3.5.8.1}{Pattern Matching}{32} @@ -42,7 +42,7 @@ @numsubsecentry{Redirecting Output}{3.6.2}{}{35} @numsubsecentry{Appending Redirected Output}{3.6.3}{}{35} @numsubsecentry{Redirecting Standard Output and Standard Error}{3.6.4}{}{35} -@numsubsecentry{Appending Standard Output and Standard Error}{3.6.5}{}{36} +@numsubsecentry{Appending Standard Output and Standard Error}{3.6.5}{}{35} @numsubsecentry{Here Documents}{3.6.6}{}{36} @numsubsecentry{Here Strings}{3.6.7}{}{36} @numsubsecentry{Duplicating File Descriptors}{3.6.8}{}{36} diff --git a/doc/builtins.0 b/doc/builtins.0 index 9ee28b78..d309bcc5 100644 --- a/doc/builtins.0 +++ b/doc/builtins.0 @@ -1049,7 +1049,7 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS that of the last command executed in the function body. If rreettuurrnn is executed by a trap handler, the last command used to determine the status is the last command executed before the - trap handler. if rreettuurrnn is executed during a DDEEBBUUGG trap, the + trap handler. If rreettuurrnn is executed during a DDEEBBUUGG trap, the last command used to determine the status is the last command executed by the trap handler before rreettuurrnn was invoked. If rreettuurrnn is used outside a function, but during execution of a @@ -1262,275 +1262,276 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS --oo option is used, those available with the --oo option to the sseett builtin command. With no options, or with the --pp option, a list of all settable options is displayed, with an indication of - whether or not each is set. The --pp option causes output to be - displayed in a form that may be reused as input. Other options - have the following meanings: + whether or not each is set; if _o_p_t_n_a_m_e_s are supplied, the output + is restricted to those options. The --pp option causes output to + be displayed in a form that may be reused as input. Other + options have the following meanings: --ss Enable (set) each _o_p_t_n_a_m_e. --uu Disable (unset) each _o_p_t_n_a_m_e. - --qq Suppresses normal output (quiet mode); the return status + --qq Suppresses normal output (quiet mode); the return status indicates whether the _o_p_t_n_a_m_e is set or unset. If multi- - ple _o_p_t_n_a_m_e arguments are given with --qq, the return sta- - tus is zero if all _o_p_t_n_a_m_e_s are enabled; non-zero other- + ple _o_p_t_n_a_m_e arguments are given with --qq, the return sta- + tus is zero if all _o_p_t_n_a_m_e_s are enabled; non-zero other- wise. - --oo Restricts the values of _o_p_t_n_a_m_e to be those defined for + --oo Restricts the values of _o_p_t_n_a_m_e to be those defined for the --oo option to the sseett builtin. - If either --ss or --uu is used with no _o_p_t_n_a_m_e arguments, sshhoopptt - shows only those options which are set or unset, respectively. - Unless otherwise noted, the sshhoopptt options are disabled (unset) + If either --ss or --uu is used with no _o_p_t_n_a_m_e arguments, sshhoopptt + shows only those options which are set or unset, respectively. + Unless otherwise noted, the sshhoopptt options are disabled (unset) by default. - The return status when listing options is zero if all _o_p_t_n_a_m_e_s - are enabled, non-zero otherwise. When setting or unsetting - options, the return status is zero unless an _o_p_t_n_a_m_e is not a + The return status when listing options is zero if all _o_p_t_n_a_m_e_s + are enabled, non-zero otherwise. When setting or unsetting + options, the return status is zero unless an _o_p_t_n_a_m_e is not a valid shell option. The list of sshhoopptt options is: - aauuttooccdd If set, a command name that is the name of a directory - is executed as if it were the argument to the ccdd com- + aauuttooccdd If set, a command name that is the name of a directory + is executed as if it were the argument to the ccdd com- mand. This option is only used by interactive shells. ccddaabbllee__vvaarrss - If set, an argument to the ccdd builtin command that is - not a directory is assumed to be the name of a variable + If set, an argument to the ccdd builtin command that is + not a directory is assumed to be the name of a variable whose value is the directory to change to. ccddssppeellll If set, minor errors in the spelling of a directory com- - ponent in a ccdd command will be corrected. The errors + ponent in a ccdd command will be corrected. The errors checked for are transposed characters, a missing charac- - ter, and one character too many. If a correction is - found, the corrected filename is printed, and the com- - mand proceeds. This option is only used by interactive + ter, and one character too many. If a correction is + found, the corrected filename is printed, and the com- + mand proceeds. This option is only used by interactive shells. cchheecckkhhaasshh If set, bbaasshh checks that a command found in the hash ta- - ble exists before trying to execute it. If a hashed - command no longer exists, a normal path search is per- + ble exists before trying to execute it. If a hashed + command no longer exists, a normal path search is per- formed. cchheecckkjjoobbss If set, bbaasshh lists the status of any stopped and running - jobs before exiting an interactive shell. If any jobs + jobs before exiting an interactive shell. If any jobs are running, this causes the exit to be deferred until a - second exit is attempted without an intervening command - (see JJOOBB CCOONNTTRROOLL above). The shell always postpones + second exit is attempted without an intervening command + (see JJOOBB CCOONNTTRROOLL above). The shell always postpones exiting if any jobs are stopped. cchheecckkwwiinnssiizzee - If set, bbaasshh checks the window size after each external - (non-builtin) command and, if necessary, updates the + If set, bbaasshh checks the window size after each external + (non-builtin) command and, if necessary, updates the values of LLIINNEESS and CCOOLLUUMMNNSS. - ccmmddhhiisstt If set, bbaasshh attempts to save all lines of a multiple- - line command in the same history entry. This allows - easy re-editing of multi-line commands. This option is - enabled by default, but only has an effect if command + ccmmddhhiisstt If set, bbaasshh attempts to save all lines of a multiple- + line command in the same history entry. This allows + easy re-editing of multi-line commands. This option is + enabled by default, but only has an effect if command history is enabled, as described above under HHIISSTTOORRYY. ccoommppaatt3311 If set, bbaasshh changes its behavior to that of version 3.1 - with respect to quoted arguments to the [[[[ conditional + with respect to quoted arguments to the [[[[ conditional command's ==~~ operator and locale-specific string compar- - ison when using the [[[[ conditional command's << and >> - operators. Bash versions prior to bash-4.1 use ASCII + ison when using the [[[[ conditional command's << and >> + operators. Bash versions prior to bash-4.1 use ASCII collation and _s_t_r_c_m_p(3); bash-4.1 and later use the cur- rent locale's collation sequence and _s_t_r_c_o_l_l(3). ccoommppaatt3322 If set, bbaasshh changes its behavior to that of version 3.2 - with respect to locale-specific string comparison when - using the [[[[ conditional command's << and >> operators - (see previous item) and the effect of interrupting a - command list. Bash versions 3.2 and earlier continue - with the next command in the list after one terminates + with respect to locale-specific string comparison when + using the [[[[ conditional command's << and >> operators + (see previous item) and the effect of interrupting a + command list. Bash versions 3.2 and earlier continue + with the next command in the list after one terminates due to an interrupt. ccoommppaatt4400 If set, bbaasshh changes its behavior to that of version 4.0 - with respect to locale-specific string comparison when - using the [[[[ conditional command's << and >> operators - (see description of ccoommppaatt3311) and the effect of inter- - rupting a command list. Bash versions 4.0 and later - interrupt the list as if the shell received the inter- - rupt; previous versions continue with the next command + with respect to locale-specific string comparison when + using the [[[[ conditional command's << and >> operators + (see description of ccoommppaatt3311) and the effect of inter- + rupting a command list. Bash versions 4.0 and later + interrupt the list as if the shell received the inter- + rupt; previous versions continue with the next command in the list. ccoommppaatt4411 - If set, bbaasshh, when in _p_o_s_i_x mode, treats a single quote - in a double-quoted parameter expansion as a special - character. The single quotes must match (an even num- - ber) and the characters between the single quotes are - considered quoted. This is the behavior of posix mode - through version 4.1. The default bash behavior remains + If set, bbaasshh, when in _p_o_s_i_x mode, treats a single quote + in a double-quoted parameter expansion as a special + character. The single quotes must match (an even num- + ber) and the characters between the single quotes are + considered quoted. This is the behavior of posix mode + through version 4.1. The default bash behavior remains as in previous versions. ccoommppaatt4422 - If set, bbaasshh does not process the replacement string in - the pattern substitution word expansion using quote + If set, bbaasshh does not process the replacement string in + the pattern substitution word expansion using quote removal. ccoommppaatt4433 - If set, bbaasshh does not print a warning message if an - attempt is made to use a quoted compound array assign- - ment as an argument to ddeeccllaarree, makes word expansion - errors non-fatal errors that cause the current command - to fail (the default behavior is to make them fatal + If set, bbaasshh does not print a warning message if an + attempt is made to use a quoted compound array assign- + ment as an argument to ddeeccllaarree, makes word expansion + errors non-fatal errors that cause the current command + to fail (the default behavior is to make them fatal errors that cause the shell to exit), and does not reset - the loop state when a shell function is executed (this - allows bbrreeaakk or ccoonnttiinnuuee in a shell function to affect + the loop state when a shell function is executed (this + allows bbrreeaakk or ccoonnttiinnuuee in a shell function to affect loops in the caller's context). ccoommpplleettee__ffuullllqquuoottee - If set, bbaasshh quotes all shell metacharacters in file- - names and directory names when performing completion. + If set, bbaasshh quotes all shell metacharacters in file- + names and directory names when performing completion. If not set, bbaasshh removes metacharacters such as the dol- - lar sign from the set of characters that will be quoted - in completed filenames when these metacharacters appear - in shell variable references in words to be completed. - This means that dollar signs in variable names that - expand to directories will not be quoted; however, any - dollar signs appearing in filenames will not be quoted, - either. This is active only when bash is using back- - slashes to quote completed filenames. This variable is - set by default, which is the default bash behavior in + lar sign from the set of characters that will be quoted + in completed filenames when these metacharacters appear + in shell variable references in words to be completed. + This means that dollar signs in variable names that + expand to directories will not be quoted; however, any + dollar signs appearing in filenames will not be quoted, + either. This is active only when bash is using back- + slashes to quote completed filenames. This variable is + set by default, which is the default bash behavior in versions through 4.2. ddiirreexxppaanndd - If set, bbaasshh replaces directory names with the results - of word expansion when performing filename completion. - This changes the contents of the readline editing buf- - fer. If not set, bbaasshh attempts to preserve what the + If set, bbaasshh replaces directory names with the results + of word expansion when performing filename completion. + This changes the contents of the readline editing buf- + fer. If not set, bbaasshh attempts to preserve what the user typed. ddiirrssppeellll - If set, bbaasshh attempts spelling correction on directory - names during word completion if the directory name ini- + If set, bbaasshh attempts spelling correction on directory + names during word completion if the directory name ini- tially supplied does not exist. - ddoottgglloobb If set, bbaasshh includes filenames beginning with a `.' in - the results of pathname expansion. The filenames ````..'''' - and ````....'''' must always be matched explicitly, even if + ddoottgglloobb If set, bbaasshh includes filenames beginning with a `.' in + the results of pathname expansion. The filenames ````..'''' + and ````....'''' must always be matched explicitly, even if ddoottgglloobb is set. eexxeeccffaaiill If set, a non-interactive shell will not exit if it can- - not execute the file specified as an argument to the - eexxeecc builtin command. An interactive shell does not + not execute the file specified as an argument to the + eexxeecc builtin command. An interactive shell does not exit if eexxeecc fails. eexxppaanndd__aalliiaasseess - If set, aliases are expanded as described above under + If set, aliases are expanded as described above under AALLIIAASSEESS. This option is enabled by default for interac- tive shells. eexxttddeebbuugg - If set at shell invocation, arrange to execute the - debugger profile before the shell starts, identical to - the ----ddeebbuuggggeerr option. If set after invocation, behav- + If set at shell invocation, arrange to execute the + debugger profile before the shell starts, identical to + the ----ddeebbuuggggeerr option. If set after invocation, behav- ior intended for use by debuggers is enabled: 11.. The --FF option to the ddeeccllaarree builtin displays the source file name and line number corresponding to each function name supplied as an argument. - 22.. If the command run by the DDEEBBUUGG trap returns a - non-zero value, the next command is skipped and + 22.. If the command run by the DDEEBBUUGG trap returns a + non-zero value, the next command is skipped and not executed. - 33.. If the command run by the DDEEBBUUGG trap returns a - value of 2, and the shell is executing in a sub- - routine (a shell function or a shell script exe- - cuted by the .. or ssoouurrccee builtins), the shell + 33.. If the command run by the DDEEBBUUGG trap returns a + value of 2, and the shell is executing in a sub- + routine (a shell function or a shell script exe- + cuted by the .. or ssoouurrccee builtins), the shell simulates a call to rreettuurrnn. - 44.. BBAASSHH__AARRGGCC and BBAASSHH__AARRGGVV are updated as described + 44.. BBAASSHH__AARRGGCC and BBAASSHH__AARRGGVV are updated as described in their descriptions above. - 55.. Function tracing is enabled: command substitu- + 55.. Function tracing is enabled: command substitu- tion, shell functions, and subshells invoked with (( _c_o_m_m_a_n_d )) inherit the DDEEBBUUGG and RREETTUURRNN traps. - 66.. Error tracing is enabled: command substitution, - shell functions, and subshells invoked with (( + 66.. Error tracing is enabled: command substitution, + shell functions, and subshells invoked with (( _c_o_m_m_a_n_d )) inherit the EERRRR trap. eexxttgglloobb If set, the extended pattern matching features described above under PPaatthhnnaammee EExxppaannssiioonn are enabled. eexxttqquuoottee - If set, $$'_s_t_r_i_n_g' and $$"_s_t_r_i_n_g" quoting is performed - within $${{_p_a_r_a_m_e_t_e_r}} expansions enclosed in double + If set, $$'_s_t_r_i_n_g' and $$"_s_t_r_i_n_g" quoting is performed + within $${{_p_a_r_a_m_e_t_e_r}} expansions enclosed in double quotes. This option is enabled by default. ffaaiillgglloobb - If set, patterns which fail to match filenames during + If set, patterns which fail to match filenames during pathname expansion result in an expansion error. ffoorrccee__ffiiggnnoorree - If set, the suffixes specified by the FFIIGGNNOORREE shell - variable cause words to be ignored when performing word + If set, the suffixes specified by the FFIIGGNNOORREE shell + variable cause words to be ignored when performing word completion even if the ignored words are the only possi- ble completions. See SSHHEELLLL VVAARRIIAABBLLEESS above for a - description of FFIIGGNNOORREE. This option is enabled by + description of FFIIGGNNOORREE. This option is enabled by default. gglloobbaasscciiiirraannggeess - If set, range expressions used in pattern matching - bracket expressions (see PPaatttteerrnn MMaattcchhiinngg above) behave - as if in the traditional C locale when performing com- + If set, range expressions used in pattern matching + bracket expressions (see PPaatttteerrnn MMaattcchhiinngg above) behave + as if in the traditional C locale when performing com- parisons. That is, the current locale's collating - sequence is not taken into account, so bb will not col- - late between AA and BB, and upper-case and lower-case + sequence is not taken into account, so bb will not col- + late between AA and BB, and upper-case and lower-case ASCII characters will collate together. gglloobbssttaarr If set, the pattern **** used in a pathname expansion con- - text will match all files and zero or more directories - and subdirectories. If the pattern is followed by a //, + text will match all files and zero or more directories + and subdirectories. If the pattern is followed by a //, only directories and subdirectories match. ggnnuu__eerrrrffmmtt If set, shell error messages are written in the standard GNU error message format. hhiissttaappppeenndd - If set, the history list is appended to the file named - by the value of the HHIISSTTFFIILLEE variable when the shell + If set, the history list is appended to the file named + by the value of the HHIISSTTFFIILLEE variable when the shell exits, rather than overwriting the file. hhiissttrreeeeddiitt - If set, and rreeaaddlliinnee is being used, a user is given the + If set, and rreeaaddlliinnee is being used, a user is given the opportunity to re-edit a failed history substitution. hhiissttvveerriiffyy - If set, and rreeaaddlliinnee is being used, the results of his- - tory substitution are not immediately passed to the - shell parser. Instead, the resulting line is loaded + If set, and rreeaaddlliinnee is being used, the results of his- + tory substitution are not immediately passed to the + shell parser. Instead, the resulting line is loaded into the rreeaaddlliinnee editing buffer, allowing further modi- fication. hhoossttccoommpplleettee If set, and rreeaaddlliinnee is being used, bbaasshh will attempt to - perform hostname completion when a word containing a @@ - is being completed (see CCoommpplleettiinngg under RREEAADDLLIINNEE + perform hostname completion when a word containing a @@ + is being completed (see CCoommpplleettiinngg under RREEAADDLLIINNEE above). This is enabled by default. hhuuppoonneexxiitt If set, bbaasshh will send SSIIGGHHUUPP to all jobs when an inter- active login shell exits. iinnhheerriitt__eerrrreexxiitt - If set, command substitution inherits the value of the - eerrrreexxiitt option, instead of unsetting it in the subshell - environment. This option is enabled when _p_o_s_i_x _m_o_d_e is + If set, command substitution inherits the value of the + eerrrreexxiitt option, instead of unsetting it in the subshell + environment. This option is enabled when _p_o_s_i_x _m_o_d_e is enabled. iinntteerraaccttiivvee__ccoommmmeennttss If set, allow a word beginning with ## to cause that word - and all remaining characters on that line to be ignored - in an interactive shell (see CCOOMMMMEENNTTSS above). This + and all remaining characters on that line to be ignored + in an interactive shell (see CCOOMMMMEENNTTSS above). This option is enabled by default. llaassttppiippee - If set, and job control is not active, the shell runs + If set, and job control is not active, the shell runs the last command of a pipeline not executed in the back- ground in the current shell environment. - lliitthhiisstt If set, and the ccmmddhhiisstt option is enabled, multi-line + lliitthhiisstt If set, and the ccmmddhhiisstt option is enabled, multi-line commands are saved to the history with embedded newlines rather than using semicolon separators where possible. llooccaallvvaarr__iinnhheerriitt If set, local variables inherit the value and attributes of a variable of the same name that exists at a previous - scope before any new value is assigned. The nameref + scope before any new value is assigned. The nameref attribute is not inherited. llooggiinn__sshheellll - The shell sets this option if it is started as a login - shell (see IINNVVOOCCAATTIIOONN above). The value may not be + The shell sets this option if it is started as a login + shell (see IINNVVOOCCAATTIIOONN above). The value may not be changed. mmaaiillwwaarrnn - If set, and a file that bbaasshh is checking for mail has - been accessed since the last time it was checked, the - message ``The mail in _m_a_i_l_f_i_l_e has been read'' is dis- + If set, and a file that bbaasshh is checking for mail has + been accessed since the last time it was checked, the + message ``The mail in _m_a_i_l_f_i_l_e has been read'' is dis- played. nnoo__eemmppttyy__ccmmdd__ccoommpplleettiioonn - If set, and rreeaaddlliinnee is being used, bbaasshh will not + If set, and rreeaaddlliinnee is being used, bbaasshh will not attempt to search the PPAATTHH for possible completions when completion is attempted on an empty line. nnooccaasseegglloobb - If set, bbaasshh matches filenames in a case-insensitive + If set, bbaasshh matches filenames in a case-insensitive fashion when performing pathname expansion (see PPaatthhnnaammee EExxppaannssiioonn above). nnooccaasseemmaattcchh - If set, bbaasshh matches patterns in a case-insensitive + If set, bbaasshh matches patterns in a case-insensitive fashion when performing matching while executing ccaassee or [[[[ conditional commands, when performing pattern substi- - tution word expansions, or when filtering possible com- + tution word expansions, or when filtering possible com- pletions as part of programmable completion. nnuullllgglloobb - If set, bbaasshh allows patterns which match no files (see - PPaatthhnnaammee EExxppaannssiioonn above) to expand to a null string, + If set, bbaasshh allows patterns which match no files (see + PPaatthhnnaammee EExxppaannssiioonn above) to expand to a null string, rather than themselves. pprrooggccoommpp If set, the programmable completion facilities (see PPrroo-- @@ -1538,50 +1539,50 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS enabled by default. pprroommppttvvaarrss If set, prompt strings undergo parameter expansion, com- - mand substitution, arithmetic expansion, and quote - removal after being expanded as described in PPRROOMMPPTTIINNGG + mand substitution, arithmetic expansion, and quote + removal after being expanded as described in PPRROOMMPPTTIINNGG above. This option is enabled by default. rreessttrriicctteedd__sshheellll - The shell sets this option if it is started in + The shell sets this option if it is started in restricted mode (see RREESSTTRRIICCTTEEDD SSHHEELLLL below). The value - may not be changed. This is not reset when the startup - files are executed, allowing the startup files to dis- + may not be changed. This is not reset when the startup + files are executed, allowing the startup files to dis- cover whether or not a shell is restricted. sshhiifftt__vveerrbboossee - If set, the sshhiifftt builtin prints an error message when + If set, the sshhiifftt builtin prints an error message when the shift count exceeds the number of positional parame- ters. ssoouurrcceeppaatthh If set, the ssoouurrccee (..) builtin uses the value of PPAATTHH to - find the directory containing the file supplied as an + find the directory containing the file supplied as an argument. This option is enabled by default. xxppgg__eecchhoo - If set, the eecchhoo builtin expands backslash-escape + If set, the eecchhoo builtin expands backslash-escape sequences by default. ssuussppeenndd [--ff] - Suspend the execution of this shell until it receives a SSIIGGCCOONNTT + Suspend the execution of this shell until it receives a SSIIGGCCOONNTT signal. A login shell cannot be suspended; the --ff option can be used to override this and force the suspension. The return sta- - tus is 0 unless the shell is a login shell and --ff is not sup- + tus is 0 unless the shell is a login shell and --ff is not sup- plied, or if job control is not enabled. tteesstt _e_x_p_r [[ _e_x_p_r ]] Return a status of 0 (true) or 1 (false) depending on the evalu- ation of the conditional expression _e_x_p_r. Each operator and op- - erand must be a separate argument. Expressions are composed of - the primaries described above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS. - tteesstt does not accept any options, nor does it accept and ignore + erand must be a separate argument. Expressions are composed of + the primaries described above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS. + tteesstt does not accept any options, nor does it accept and ignore an argument of ---- as signifying the end of options. - Expressions may be combined using the following operators, + Expressions may be combined using the following operators, listed in decreasing order of precedence. The evaluation - depends on the number of arguments; see below. Operator prece- + depends on the number of arguments; see below. Operator prece- dence is used when there are five or more arguments. !! _e_x_p_r True if _e_x_p_r is false. (( _e_x_p_r )) - Returns the value of _e_x_p_r. This may be used to override + Returns the value of _e_x_p_r. This may be used to override the normal precedence of operators. _e_x_p_r_1 -aa _e_x_p_r_2 True if both _e_x_p_r_1 and _e_x_p_r_2 are true. @@ -1598,120 +1599,120 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS null. 2 arguments If the first argument is !!, the expression is true if and - only if the second argument is null. If the first argu- - ment is one of the unary conditional operators listed - above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the expression is + only if the second argument is null. If the first argu- + ment is one of the unary conditional operators listed + above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the expression is true if the unary test is true. If the first argument is not a valid unary conditional operator, the expression is false. 3 arguments The following conditions are applied in the order listed. - If the second argument is one of the binary conditional + If the second argument is one of the binary conditional operators listed above under CCOONNDDIITTIIOONNAALL EEXXPPRREESSSSIIOONNSS, the result of the expression is the result of the binary test - using the first and third arguments as operands. The --aa - and --oo operators are considered binary operators when - there are three arguments. If the first argument is !!, - the value is the negation of the two-argument test using + using the first and third arguments as operands. The --aa + and --oo operators are considered binary operators when + there are three arguments. If the first argument is !!, + the value is the negation of the two-argument test using the second and third arguments. If the first argument is exactly (( and the third argument is exactly )), the result - is the one-argument test of the second argument. Other- + is the one-argument test of the second argument. Other- wise, the expression is false. 4 arguments If the first argument is !!, the result is the negation of - the three-argument expression composed of the remaining + the three-argument expression composed of the remaining arguments. Otherwise, the expression is parsed and eval- - uated according to precedence using the rules listed + uated according to precedence using the rules listed above. 5 or more arguments - The expression is parsed and evaluated according to + The expression is parsed and evaluated according to precedence using the rules listed above. - When used with tteesstt or [[, the << and >> operators sort lexico- + When used with tteesstt or [[, the << and >> operators sort lexico- graphically using ASCII ordering. - ttiimmeess Print the accumulated user and system times for the shell and + ttiimmeess Print the accumulated user and system times for the shell and for processes run from the shell. The return status is 0. ttrraapp [--llpp] [[_a_r_g] _s_i_g_s_p_e_c ...] - The command _a_r_g is to be read and executed when the shell - receives signal(s) _s_i_g_s_p_e_c. If _a_r_g is absent (and there is a - single _s_i_g_s_p_e_c) or --, each specified signal is reset to its - original disposition (the value it had upon entrance to the - shell). If _a_r_g is the null string the signal specified by each - _s_i_g_s_p_e_c is ignored by the shell and by the commands it invokes. - If _a_r_g is not present and --pp has been supplied, then the trap - commands associated with each _s_i_g_s_p_e_c are displayed. If no - arguments are supplied or if only --pp is given, ttrraapp prints the - list of commands associated with each signal. The --ll option - causes the shell to print a list of signal names and their cor- - responding numbers. Each _s_i_g_s_p_e_c is either a signal name - defined in <_s_i_g_n_a_l_._h>, or a signal number. Signal names are + The command _a_r_g is to be read and executed when the shell + receives signal(s) _s_i_g_s_p_e_c. If _a_r_g is absent (and there is a + single _s_i_g_s_p_e_c) or --, each specified signal is reset to its + original disposition (the value it had upon entrance to the + shell). If _a_r_g is the null string the signal specified by each + _s_i_g_s_p_e_c is ignored by the shell and by the commands it invokes. + If _a_r_g is not present and --pp has been supplied, then the trap + commands associated with each _s_i_g_s_p_e_c are displayed. If no + arguments are supplied or if only --pp is given, ttrraapp prints the + list of commands associated with each signal. The --ll option + causes the shell to print a list of signal names and their cor- + responding numbers. Each _s_i_g_s_p_e_c is either a signal name + defined in <_s_i_g_n_a_l_._h>, or a signal number. Signal names are case insensitive and the SSIIGG prefix is optional. - If a _s_i_g_s_p_e_c is EEXXIITT (0) the command _a_r_g is executed on exit - from the shell. If a _s_i_g_s_p_e_c is DDEEBBUUGG, the command _a_r_g is exe- - cuted before every _s_i_m_p_l_e _c_o_m_m_a_n_d, _f_o_r command, _c_a_s_e command, - _s_e_l_e_c_t command, every arithmetic _f_o_r command, and before the - first command executes in a shell function (see SSHHEELLLL GGRRAAMMMMAARR - above). Refer to the description of the eexxttddeebbuugg option to the + If a _s_i_g_s_p_e_c is EEXXIITT (0) the command _a_r_g is executed on exit + from the shell. If a _s_i_g_s_p_e_c is DDEEBBUUGG, the command _a_r_g is exe- + cuted before every _s_i_m_p_l_e _c_o_m_m_a_n_d, _f_o_r command, _c_a_s_e command, + _s_e_l_e_c_t command, every arithmetic _f_o_r command, and before the + first command executes in a shell function (see SSHHEELLLL GGRRAAMMMMAARR + above). Refer to the description of the eexxttddeebbuugg option to the sshhoopptt builtin for details of its effect on the DDEEBBUUGG trap. If a _s_i_g_s_p_e_c is RREETTUURRNN, the command _a_r_g is executed each time a shell function or a script executed with the .. or ssoouurrccee builtins fin- ishes executing. - If a _s_i_g_s_p_e_c is EERRRR, the command _a_r_g is executed whenever a + If a _s_i_g_s_p_e_c is EERRRR, the command _a_r_g is executed whenever a pipeline (which may consist of a single simple command), a list, or a compound command returns a non-zero exit status, subject to - the following conditions. The EERRRR trap is not executed if the + the following conditions. The EERRRR trap is not executed if the failed command is part of the command list immediately following - a wwhhiillee or uunnttiill keyword, part of the test in an _i_f statement, + a wwhhiillee or uunnttiill keyword, part of the test in an _i_f statement, part of a command executed in a &&&& or |||| list except the command - following the final &&&& or ||||, any command in a pipeline but the - last, or if the command's return value is being inverted using - !!. These are the same conditions obeyed by the eerrrreexxiitt (--ee) + following the final &&&& or ||||, any command in a pipeline but the + last, or if the command's return value is being inverted using + !!. These are the same conditions obeyed by the eerrrreexxiitt (--ee) option. - Signals ignored upon entry to the shell cannot be trapped or - reset. Trapped signals that are not being ignored are reset to + Signals ignored upon entry to the shell cannot be trapped or + reset. Trapped signals that are not being ignored are reset to their original values in a subshell or subshell environment when - one is created. The return status is false if any _s_i_g_s_p_e_c is + one is created. The return status is false if any _s_i_g_s_p_e_c is invalid; otherwise ttrraapp returns true. ttyyppee [--aaffttppPP] _n_a_m_e [_n_a_m_e ...] - With no options, indicate how each _n_a_m_e would be interpreted if + With no options, indicate how each _n_a_m_e would be interpreted if used as a command name. If the --tt option is used, ttyyppee prints a - string which is one of _a_l_i_a_s, _k_e_y_w_o_r_d, _f_u_n_c_t_i_o_n, _b_u_i_l_t_i_n, or - _f_i_l_e if _n_a_m_e is an alias, shell reserved word, function, - builtin, or disk file, respectively. If the _n_a_m_e is not found, - then nothing is printed, and an exit status of false is - returned. If the --pp option is used, ttyyppee either returns the + string which is one of _a_l_i_a_s, _k_e_y_w_o_r_d, _f_u_n_c_t_i_o_n, _b_u_i_l_t_i_n, or + _f_i_l_e if _n_a_m_e is an alias, shell reserved word, function, + builtin, or disk file, respectively. If the _n_a_m_e is not found, + then nothing is printed, and an exit status of false is + returned. If the --pp option is used, ttyyppee either returns the name of the disk file that would be executed if _n_a_m_e were speci- fied as a command name, or nothing if ``type -t name'' would not - return _f_i_l_e. The --PP option forces a PPAATTHH search for each _n_a_m_e, + return _f_i_l_e. The --PP option forces a PPAATTHH search for each _n_a_m_e, even if ``type -t name'' would not return _f_i_l_e. If a command is hashed, --pp and --PP print the hashed value, which is not necessar- - ily the file that appears first in PPAATTHH. If the --aa option is - used, ttyyppee prints all of the places that contain an executable + ily the file that appears first in PPAATTHH. If the --aa option is + used, ttyyppee prints all of the places that contain an executable named _n_a_m_e. This includes aliases and functions, if and only if the --pp option is not also used. The table of hashed commands is - not consulted when using --aa. The --ff option suppresses shell + not consulted when using --aa. The --ff option suppresses shell function lookup, as with the ccoommmmaanndd builtin. ttyyppee returns true if all of the arguments are found, false if any are not found. uulliimmiitt [--HHSSaabbccddeeffiikkllmmnnppqqrrssttuuvvxxPPTT [_l_i_m_i_t]] - Provides control over the resources available to the shell and - to processes started by it, on systems that allow such control. + Provides control over the resources available to the shell and + to processes started by it, on systems that allow such control. The --HH and --SS options specify that the hard or soft limit is set - for the given resource. A hard limit cannot be increased by a - non-root user once it is set; a soft limit may be increased up - to the value of the hard limit. If neither --HH nor --SS is speci- + for the given resource. A hard limit cannot be increased by a + non-root user once it is set; a soft limit may be increased up + to the value of the hard limit. If neither --HH nor --SS is speci- fied, both the soft and hard limits are set. The value of _l_i_m_i_t can be a number in the unit specified for the resource or one of the special values hhaarrdd, ssoofftt, or uunnlliimmiitteedd, which stand for the - current hard limit, the current soft limit, and no limit, - respectively. If _l_i_m_i_t is omitted, the current value of the - soft limit of the resource is printed, unless the --HH option is + current hard limit, the current soft limit, and no limit, + respectively. If _l_i_m_i_t is omitted, the current value of the + soft limit of the resource is printed, unless the --HH option is given. When more than one resource is specified, the limit name and unit are printed before the value. Other options are inter- preted as follows: @@ -1720,12 +1721,12 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS --cc The maximum size of core files created --dd The maximum size of a process's data segment --ee The maximum scheduling priority ("nice") - --ff The maximum size of files written by the shell and its + --ff The maximum size of files written by the shell and its children --ii The maximum number of pending signals --kk The maximum number of kqueues that may be allocated --ll The maximum size that may be locked into memory - --mm The maximum resident set size (many systems do not honor + --mm The maximum resident set size (many systems do not honor this limit) --nn The maximum number of open file descriptors (most systems do not allow this value to be set) @@ -1734,53 +1735,53 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS --rr The maximum real-time scheduling priority --ss The maximum stack size --tt The maximum amount of cpu time in seconds - --uu The maximum number of processes available to a single + --uu The maximum number of processes available to a single user - --vv The maximum amount of virtual memory available to the + --vv The maximum amount of virtual memory available to the shell and, on some systems, to its children --xx The maximum number of file locks --PP The maximum number of pseudoterminals --TT The maximum number of threads - If _l_i_m_i_t is given, and the --aa option is not used, _l_i_m_i_t is the - new value of the specified resource. If no option is given, - then --ff is assumed. Values are in 1024-byte increments, except - for --tt, which is in seconds; --pp, which is in units of 512-byte - blocks; --PP, --TT, --bb, --kk, --nn, and --uu, which are unscaled values; + If _l_i_m_i_t is given, and the --aa option is not used, _l_i_m_i_t is the + new value of the specified resource. If no option is given, + then --ff is assumed. Values are in 1024-byte increments, except + for --tt, which is in seconds; --pp, which is in units of 512-byte + blocks; --PP, --TT, --bb, --kk, --nn, and --uu, which are unscaled values; and, when in Posix mode, --cc and --ff, which are in 512-byte incre- ments. The return status is 0 unless an invalid option or argu- ment is supplied, or an error occurs while setting a new limit. uummaasskk [--pp] [--SS] [_m_o_d_e] The user file-creation mask is set to _m_o_d_e. If _m_o_d_e begins with - a digit, it is interpreted as an octal number; otherwise it is - interpreted as a symbolic mode mask similar to that accepted by - _c_h_m_o_d(1). If _m_o_d_e is omitted, the current value of the mask is - printed. The --SS option causes the mask to be printed in sym- - bolic form; the default output is an octal number. If the --pp + a digit, it is interpreted as an octal number; otherwise it is + interpreted as a symbolic mode mask similar to that accepted by + _c_h_m_o_d(1). If _m_o_d_e is omitted, the current value of the mask is + printed. The --SS option causes the mask to be printed in sym- + bolic form; the default output is an octal number. If the --pp option is supplied, and _m_o_d_e is omitted, the output is in a form that may be reused as input. The return status is 0 if the mode - was successfully changed or if no _m_o_d_e argument was supplied, + was successfully changed or if no _m_o_d_e argument was supplied, and false otherwise. uunnaalliiaass [-aa] [_n_a_m_e ...] - Remove each _n_a_m_e from the list of defined aliases. If --aa is - supplied, all alias definitions are removed. The return value + Remove each _n_a_m_e from the list of defined aliases. If --aa is + supplied, all alias definitions are removed. The return value is true unless a supplied _n_a_m_e is not a defined alias. uunnsseett [-ffvv] [-nn] [_n_a_m_e ...] - For each _n_a_m_e, remove the corresponding variable or function. + For each _n_a_m_e, remove the corresponding variable or function. If the --vv option is given, each _n_a_m_e refers to a shell variable, - and that variable is removed. Read-only variables may not be - unset. If --ff is specified, each _n_a_m_e refers to a shell func- - tion, and the function definition is removed. If the --nn option - is supplied, and _n_a_m_e is a variable with the _n_a_m_e_r_e_f attribute, - _n_a_m_e will be unset rather than the variable it references. --nn - has no effect if the --ff option is supplied. If no options are - supplied, each _n_a_m_e refers to a variable; if there is no vari- - able by that name, any function with that name is unset. Each - unset variable or function is removed from the environment - passed to subsequent commands. If any of CCOOMMPP__WWOORRDDBBRREEAAKKSS, RRAANN-- + and that variable is removed. Read-only variables may not be + unset. If --ff is specified, each _n_a_m_e refers to a shell func- + tion, and the function definition is removed. If the --nn option + is supplied, and _n_a_m_e is a variable with the _n_a_m_e_r_e_f attribute, + _n_a_m_e will be unset rather than the variable it references. --nn + has no effect if the --ff option is supplied. If no options are + supplied, each _n_a_m_e refers to a variable; if there is no vari- + able by that name, any function with that name is unset. Each + unset variable or function is removed from the environment + passed to subsequent commands. If any of CCOOMMPP__WWOORRDDBBRREEAAKKSS, RRAANN-- DDOOMM, SSEECCOONNDDSS, LLIINNEENNOO, HHIISSTTCCMMDD, FFUUNNCCNNAAMMEE, GGRROOUUPPSS, or DDIIRRSSTTAACCKK are unset, they lose their special properties, even if they are sub- sequently reset. The exit status is true unless a _n_a_m_e is read- @@ -1788,16 +1789,16 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS wwaaiitt [--ffnn] [_i_d _._._.] Wait for each specified child process and return its termination - status. Each _i_d may be a process ID or a job specification; if - a job spec is given, all processes in that job's pipeline are + status. Each _i_d may be a process ID or a job specification; if + a job spec is given, all processes in that job's pipeline are waited for. If _i_d is not given, all currently active child pro- cesses are waited for, and the return status is zero. If the --nn - option is supplied, wwaaiitt waits for any job to terminate and - returns its exit status. If the --ff option is supplied, and job + option is supplied, wwaaiitt waits for any job to terminate and + returns its exit status. If the --ff option is supplied, and job control is enabled, wwaaiitt forces _i_d to terminate before returning - its status, instead of returning when it changes status. If _i_d - specifies a non-existent process or job, the return status is - 127. Otherwise, the return status is the exit status of the + its status, instead of returning when it changes status. If _i_d + specifies a non-existent process or job, the return status is + 127. Otherwise, the return status is the exit status of the last process or job waited for. SSEEEE AALLSSOO diff --git a/doc/builtins.ps b/doc/builtins.ps index fba031e6..46f2ffe2 100644 --- a/doc/builtins.ps +++ b/doc/builtins.ps @@ -1,6 +1,6 @@ %!PS-Adobe-3.0 %%Creator: groff version 1.22.3 -%%CreationDate: Mon Oct 9 15:38:30 2017 +%%CreationDate: Tue Jan 2 10:55:05 2018 %%DocumentNeededResources: font Times-Roman %%+ font Times-Bold %%+ font Times-Italic @@ -1921,10 +1921,10 @@ E F0([)2.5 E F2(n)A F0(])A .021(Causes a function to stop e)144 302.4 R 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 1.239(by a trap handler)144 326.4 R 3.738(,t)-.4 G 1.238 (he last command used to determine the status is the last command e) --3.738 F -.15(xe)-.15 G(cuted).15 E 1.066(before the trap handler)144 -338.4 R 6.067(.i)-.55 G(f)-6.067 E F1 -.18(re)3.567 G(tur).18 E(n)-.15 E -F0 1.067(is e)3.567 F -.15(xe)-.15 G 1.067(cuted during a).15 F F1(DEB) -3.567 E(UG)-.1 E F0 1.067(trap, the last command used to)3.567 F .39 +-3.738 F -.15(xe)-.15 G(cuted).15 E 1.032(before the trap handler)144 +338.4 R 6.032(.I)-.55 G(f)-6.032 E F1 -.18(re)3.532 G(tur).18 E(n)-.15 E +F0 1.032(is e)3.532 F -.15(xe)-.15 G 1.032(cuted during a).15 F F1(DEB) +3.533 E(UG)-.1 E F0 1.033(trap, the last command used to)3.533 F .39 (determine the status is the last command e)144 350.4 R -.15(xe)-.15 G .389(cuted by the trap handler before).15 F F1 -.18(re)2.889 G(tur).18 E (n)-.15 E F0 -.1(wa)2.889 G 2.889(si).1 G -1.9 -.4(nv o)-2.889 H -.1(ke) @@ -2253,84 +2253,87 @@ 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 3.325(mand. W)144 225.6 R .825 (ith no options, or with the)-.4 F F13.325 E F0 .826 (option, a list of all settable options is displayed, with an)3.325 F -.945(indication of whether or not each is set.)144 237.6 R(The)5.945 E -F13.445 E F0 .945(option causes output to be displayed in a form) -3.445 F(that may be reused as input.)144 249.6 Q(Other options ha)5 E .3 --.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 261.6 Q -F0(Enable \(set\) each)180 261.6 Q F2(optname)2.5 E F0(.)A F1144 -273.6 Q F0(Disable \(unset\) each)180 273.6 Q F2(optname)2.5 E F0(.)A F1 -144 285.6 Q F0 .003(Suppresses normal output \(quiet mode\); the \ -return status indicates whether the)180 285.6 R F2(optname)2.504 E F0 -(is)2.504 E .256(set or unset.)180 297.6 R .256(If multiple)5.256 F F2 -(optname)2.756 E F0(ar)2.756 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.755(,t)C .255 -(he return status is zero if)-2.755 F(all)180 309.6 Q F2(optnames)2.5 E -F0(are enabled; non-zero otherwise.)2.5 E F1144 321.6 Q F0 -(Restricts the v)180 321.6 Q(alues of)-.25 E F2(optname)2.5 E F0 +.552(indication of whether or not each is set; if)144 237.6 R F2 +(optnames)3.052 E F0 .551 +(are supplied, the output is restricted to those)3.052 F 2.549 +(options. The)144 249.6 R F12.549 E F0 .049(option causes output \ +to be displayed in a form that may be reused as input.)2.549 F(Other) +5.05 E(options ha)144 261.6 Q .3 -.15(ve t)-.2 H(he follo).15 E +(wing meanings:)-.25 E F1144 273.6 Q F0(Enable \(set\) each)180 +273.6 Q F2(optname)2.5 E F0(.)A F1144 285.6 Q F0 +(Disable \(unset\) each)180 285.6 Q F2(optname)2.5 E F0(.)A F1144 +297.6 Q F0 .003(Suppresses normal output \(quiet mode\); the return sta\ +tus indicates whether the)180 297.6 R F2(optname)2.503 E F0(is)2.503 E +.255(set or unset.)180 309.6 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 321.6 Q F2(optnames)2.5 E +F0(are enabled; non-zero otherwise.)2.5 E F1144 333.6 Q F0 +(Restricts the v)180 333.6 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 .624(If either)144 338.4 R F1 -3.124 E F0(or)3.124 E F13.124 E F0 .624(is used with no) +E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .625(If either)144 350.4 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 2.234 -(set or unset, respecti)144 350.4 R -.15(ve)-.25 G(ly).15 E 7.234(.U) +E F0(sho)3.124 E .624(ws only those options which are)-.25 F 2.233 +(set or unset, respecti)144 362.4 R -.15(ve)-.25 G(ly).15 E 7.234(.U) -.65 G 2.234(nless otherwise noted, the)-7.234 F F1(shopt)4.734 E F0 -2.234(options are disabled \(unset\) by)4.734 F(def)144 362.4 Q(ault.) +2.234(options are disabled \(unset\) by)4.734 F(def)144 374.4 Q(ault.) -.1 E 1.544(The return status when listing options is zero if all)144 -379.2 R F2(optnames)4.044 E F0 1.545(are enabled, non-zero otherwise.) -4.045 F .696 +391.2 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 391.2 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .695 -(alid shell)-.25 F(option.)144 403.2 Q(The list of)144 420 Q F1(shopt) -2.5 E F0(options is:)2.5 E F1(autocd)144 438 Q F0 .199 -(If set, a command name that is the name of a directory is e)184 438 R --.15(xe)-.15 G .2(cuted as if it were the ar).15 F(gu-)-.18 E -(ment to the)184 450 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F +144 403.2 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .696 +(alid shell)-.25 F(option.)144 415.2 Q(The list of)144 432 Q F1(shopt) +2.5 E F0(options is:)2.5 E F1(autocd)144 450 Q F0 .2 +(If set, a command name that is the name of a directory is e)184 450 R +-.15(xe)-.15 G .199(cuted as if it were the ar).15 F(gu-)-.18 E +(ment to the)184 462 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F (option is only used by interacti)2.5 E .3 -.15(ve s)-.25 H(hells.).15 E -F1(cdable_v)144 462 Q(ars)-.1 E F0 .156(If set, an ar)184 474 R .156 -(gument to the)-.18 F F1(cd)2.656 E F0 -.2(bu)2.656 G .155 +F1(cdable_v)144 474 Q(ars)-.1 E F0 .155(If set, an ar)184 486 R .155 +(gument to the)-.18 F F1(cd)2.655 E F0 -.2(bu)2.655 G .156 (iltin command that is not a directory is assumed to be the).2 F -(name of a v)184 486 Q(ariable whose v)-.25 E -(alue is the directory to change to.)-.25 E F1(cdspell)144 498 Q F0 +(name of a v)184 498 Q(ariable whose v)-.25 E +(alue is the directory to change to.)-.25 E F1(cdspell)144 510 Q F0 1.055 (If set, minor errors in the spelling of a directory component in a)184 -498 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.988 -(corrected. The)184 510 R 1.488(errors check)3.988 F 1.487 -(ed for are transposed characters, a missing character)-.1 F 3.987(,a) --.4 G(nd)-3.987 E .77(one character too man)184 522 R 4.57 -.65(y. I) +510 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.987 +(corrected. The)184 522 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 534 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 534 Q(This option is only used by interacti)5 -E .3 -.15(ve s)-.25 H(hells.).15 E F1(checkhash)144 546 Q F0 .737 -(If set,)184 558 R F1(bash)3.237 E F0 .736 -(checks that a command found in the hash table e)3.237 F .736 -(xists before trying to e)-.15 F -.15(xe)-.15 G(-).15 E(cute it.)184 570 +(the command proceeds.)184 546 Q(This option is only used by interacti)5 +E .3 -.15(ve s)-.25 H(hells.).15 E F1(checkhash)144 558 Q F0 .736 +(If set,)184 570 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 582 Q(If a hashed command no longer e)5 E -(xists, a normal path search is performed.)-.15 E F1(checkjobs)144 582 Q -F0 .448(If set,)184 594 R F1(bash)2.948 E F0 .448 -(lists the status of an)2.948 F 2.949(ys)-.15 G .449 -(topped and running jobs before e)-2.949 F .449(xiting an interacti)-.15 -F -.15(ve)-.25 G 3.439(shell. If)184 606 R(an)3.439 E 3.439(yj)-.15 G -.938(obs are running, this causes the e)-3.439 F .938 -(xit to be deferred until a second e)-.15 F .938(xit is)-.15 F 2.203 -(attempted without an interv)184 618 R 2.203(ening command \(see)-.15 F +(xists, a normal path search is performed.)-.15 E F1(checkjobs)144 594 Q +F0 .449(If set,)184 606 R F1(bash)2.949 E F0 .449 +(lists the status of an)2.949 F 2.949(ys)-.15 G .448 +(topped and running jobs before e)-2.949 F .448(xiting an interacti)-.15 +F -.15(ve)-.25 G 3.438(shell. If)184 618 R(an)3.438 E 3.438(yj)-.15 G +.938(obs are running, this causes the e)-3.438 F .938 +(xit to be deferred until a second e)-.15 F .939(xit is)-.15 F 2.203 +(attempted without an interv)184 630 R 2.203(ening command \(see)-.15 F /F3 9/Times-Bold@0 SF 2.203(JOB CONTR)4.703 F(OL)-.27 E F0(abo)4.453 E --.15(ve)-.15 G 4.703(\). The).15 F(shell)4.704 E(al)184 630 Q -.1(wa)-.1 +-.15(ve)-.15 G 4.703(\). The).15 F(shell)4.703 E(al)184 642 Q -.1(wa)-.1 G(ys postpones e).1 E(xiting if an)-.15 E 2.5(yj)-.15 G -(obs are stopped.)-2.5 E F1(checkwinsize)144 642 Q F0 1.09(If set,)184 -654 R F1(bash)3.59 E F0 1.09(checks the windo)3.59 F 3.59(ws)-.25 G 1.09 +(obs are stopped.)-2.5 E F1(checkwinsize)144 654 Q F0 1.09(If set,)184 +666 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 666 Q 2.5(,u)-.65 G +(uiltin\) command and, if)-.2 F(necessary)184 678 Q 2.5(,u)-.65 G (pdates the v)-2.5 E(alues of)-.25 E F3(LINES)2.5 E F0(and)2.25 E F3 -(COLUMNS)2.5 E/F4 9/Times-Roman@0 SF(.)A F1(cmdhist)144 678 Q F0 1.202 -(If set,)184 678 R F1(bash)3.702 E F0 1.202(attempts to sa)3.702 F 1.502 +(COLUMNS)2.5 E/F4 9/Times-Roman@0 SF(.)A F1(cmdhist)144 690 Q F0 1.202 +(If set,)184 690 R F1(bash)3.702 E F0 1.202(attempts to sa)3.702 F 1.502 -.15(ve a)-.2 H 1.202 (ll lines of a multiple-line command in the same history).15 F(entry)184 -690 Q 6.133(.T)-.65 G 1.133(his allo)-6.133 F 1.133 -(ws easy re-editing of multi-line commands.)-.25 F 1.132 -(This option is enabled by)6.132 F(def)184 702 Q .613(ault, b)-.1 F .613 -(ut only has an ef)-.2 F .614 -(fect if command history is enabled, as described abo)-.25 F .914 -.15 -(ve u)-.15 H(nder).15 E F3(HIST)184 714 Q(OR)-.162 E(Y)-.315 E F4(.)A F0 +702 Q 6.132(.T)-.65 G 1.132(his allo)-6.132 F 1.132 +(ws easy re-editing of multi-line commands.)-.25 F 1.133 +(This option is enabled by)6.133 F(def)184 714 Q .614(ault, b)-.1 F .614 +(ut only has an ef)-.2 F .613 +(fect if command history is enabled, as described abo)-.25 F .913 -.15 +(ve u)-.15 H(nder).15 E F3(HIST)184 726 Q(OR)-.162 E(Y)-.315 E F4(.)A F0 (GNU Bash-4.2)72 768 Q(2004 Apr 20)148.735 E(17)198.725 E 0 Cg EP %%Page: 18 18 %%BeginPageSetup @@ -2339,95 +2342,96 @@ BP /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35 E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(compat31)144 84 Q F0 -.42(If set,)184 96 R F1(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 108 R F1([[)2.961 E F0 .462 +.419(If set,)184 96 R F1(bash)2.919 E F0 .419(changes its beha)2.919 F +.419(vior to that of v)-.2 F .42(ersion 3.1 with respect to quoted ar) +-.15 F(guments)-.18 E .462(to the)184 108 R F1([[)2.962 E F0 .462 (conditional command')2.962 F(s)-.55 E F1(=~)2.962 E F0 .462 (operator and locale-speci\214c string comparison when)2.962 F .71 (using the)184 120 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) -3.21 F -.15(ve)3.21 G .71(rsions prior to bash-4.1).15 F .82 +3.21 F -.15(ve)3.21 G .71(rsions prior to bash-4.1).15 F .821 (use ASCII collation and)184 132 R/F2 10/Times-Italic@0 SF(str)3.321 E (cmp)-.37 E F0 .821(\(3\); bash-4.1 and later use the current locale') -.19 F 3.321(sc)-.55 G(ollation)-3.321 E(sequence and)184 144 Q F2(str) -2.5 E(coll)-.37 E F0(\(3\).).51 E F1(compat32)144 156 Q F0 1.41(If set,) -184 168 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 +.19 F 3.32(sc)-.55 G(ollation)-3.32 E(sequence and)184 144 Q F2(str)2.5 +E(coll)-.37 E F0(\(3\).).51 E F1(compat32)144 156 Q F0 1.409(If set,)184 +168 R F1(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 3.2 with respect to locale-speci\214c)-.15 F .423 (string comparison when using the)184 180 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(>) -2.923 E F0 .423(operators \(see pre-)2.923 F .481 +2.922 E F0 .422(operators \(see pre-)2.922 F .48 (vious item\) and the ef)184 192 R .481 -(fect of interrupting a command list.)-.25 F .48(Bash v)5.481 F .48 +(fect of interrupting a command list.)-.25 F .481(Bash v)5.481 F .481 (ersions 3.2 and earlier)-.15 F(continue with the ne)184 204 Q (xt command in the list after one terminates due to an interrupt.)-.15 E -F1(compat40)144 216 Q F0 1.409(If set,)184 228 R F1(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 2.008 -(string comparison when using the)184 240 R F1([[)4.508 E F0 2.007 -(conditional command')4.508 F(s)-.55 E F1(<)4.507 E F0(and)4.507 E F1(>) -4.507 E F0 2.007(operators \(see)4.507 F .769(description of)184 252 R -F1(compat31)3.269 E F0 3.269(\)a)C .769(nd the ef)-3.269 F .769 -(fect of interrupting a command list.)-.25 F .77(Bash v)5.77 F(ersions) --.15 E .087(4.0 and later interrupt the list as if the shell recei)184 -264 R -.15(ve)-.25 G 2.586(dt).15 G .086(he interrupt; pre)-2.586 F .086 -(vious v)-.25 F .086(ersions con-)-.15 F(tinue with the ne)184 276 Q -(xt command in the list.)-.15 E F1(compat41)144 288 Q F0 1.483(If set,) -184 300 R F1(bash)3.983 E F0 3.983(,w)C 1.483(hen in)-3.983 F F2(posix) -3.983 E F0 1.484 -(mode, treats a single quote in a double-quoted parameter)3.983 F -.15 -(ex)184 312 S .959(pansion as a special character).15 F 5.959(.T)-.55 G -.958(he single quotes must match \(an e)-5.959 F -.15(ve)-.25 G 3.458 -(nn).15 G .958(umber\) and)-3.458 F .59 +F1(compat40)144 216 Q F0 1.41(If set,)184 228 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 4.0 with respect to locale-speci\214c)-.15 F 2.007 +(string comparison when using the)184 240 R F1([[)4.507 E F0 2.008 +(conditional command')4.507 F(s)-.55 E F1(<)4.508 E F0(and)4.508 E F1(>) +4.508 E F0 2.008(operators \(see)4.508 F .77(description of)184 252 R F1 +(compat31)3.27 E F0 3.269(\)a)C .769(nd the ef)-3.269 F .769 +(fect of interrupting a command list.)-.25 F .769(Bash v)5.769 F +(ersions)-.15 E .086 +(4.0 and later interrupt the list as if the shell recei)184 264 R -.15 +(ve)-.25 G 2.587(dt).15 G .087(he interrupt; pre)-2.587 F .087(vious v) +-.25 F .087(ersions con-)-.15 F(tinue with the ne)184 276 Q +(xt command in the list.)-.15 E F1(compat41)144 288 Q F0 1.484(If set,) +184 300 R F1(bash)3.984 E F0 3.984(,w)C 1.484(hen in)-3.984 F F2(posix) +3.984 E F0 1.483 +(mode, treats a single quote in a double-quoted parameter)3.984 F -.15 +(ex)184 312 S .958(pansion as a special character).15 F 5.958(.T)-.55 G +.959(he single quotes must match \(an e)-5.958 F -.15(ve)-.25 G 3.459 +(nn).15 G .959(umber\) and)-3.459 F .59 (the characters between the single quotes are considered quoted.)184 324 -R .59(This is the beha)5.59 F .59(vior of)-.2 F .59 +R .59(This is the beha)5.59 F .59(vior of)-.2 F .589 (posix mode through v)184 336 R .589(ersion 4.1.)-.15 F .589(The def) -5.589 F .589(ault bash beha)-.1 F .589(vior remains as in pre)-.2 F .589 +5.589 F .589(ault bash beha)-.1 F .589(vior remains as in pre)-.2 F .59 (vious v)-.25 F(er)-.15 E(-)-.2 E(sions.)184 348 Q F1(compat42)144 360 Q -F0 1.796(If set,)184 372 R F1(bash)4.296 E F0 1.796 +F0 1.797(If set,)184 372 R F1(bash)4.297 E F0 1.796 (does not process the replacement string in the pattern substitution w) 4.296 F(ord)-.1 E -.15(ex)184 384 S(pansion using quote remo).15 E -.25 -(va)-.15 G(l.).25 E F1(compat43)144 396 Q F0 .141(If set,)184 408 R F1 -(bash)2.641 E F0 .141(does not print a w)2.641 F .14 -(arning message if an attempt is made to use a quoted com-)-.1 F .912 -(pound array assignment as an ar)184 420 R .912(gument to)-.18 F F1 -(declar)3.413 E(e)-.18 E F0 3.413(,m)C(ak)-3.413 E .913(es w)-.1 F .913 -(ord e)-.1 F .913(xpansion errors non-)-.15 F -.1(fa)184 432 S .353 +(va)-.15 G(l.).25 E F1(compat43)144 396 Q F0 .14(If set,)184 408 R F1 +(bash)2.64 E F0 .14(does not print a w)2.64 F .141 +(arning message if an attempt is made to use a quoted com-)-.1 F .913 +(pound array assignment as an ar)184 420 R .913(gument to)-.18 F F1 +(declar)3.412 E(e)-.18 E F0 3.412(,m)C(ak)-3.412 E .912(es w)-.1 F .912 +(ord e)-.1 F .912(xpansion errors non-)-.15 F -.1(fa)184 432 S .352 (tal errors that cause the current command to f).1 F .353(ail \(the def) --.1 F .352(ault beha)-.1 F .352(vior is to mak)-.2 F 2.852(et)-.1 G(hem) --2.852 E -.1(fa)184 444 S 1.057(tal errors that cause the shell to e).1 -F 1.058(xit\), and does not reset the loop state when a shell)-.15 F -.375(function is e)184 456 R -.15(xe)-.15 G .375(cuted \(this allo).15 F -(ws)-.25 E F1(br)2.875 E(eak)-.18 E F0(or)2.875 E F1(continue)2.875 E F0 -.374(in a shell function to af)2.875 F .374(fect loops in)-.25 F +-.1 F .353(ault beha)-.1 F .353(vior is to mak)-.2 F 2.853(et)-.1 G(hem) +-2.853 E -.1(fa)184 444 S 1.058(tal errors that cause the shell to e).1 +F 1.057(xit\), and does not reset the loop state when a shell)-.15 F +.374(function is e)184 456 R -.15(xe)-.15 G .374(cuted \(this allo).15 F +(ws)-.25 E F1(br)2.874 E(eak)-.18 E F0(or)2.875 E F1(continue)2.875 E F0 +.375(in a shell function to af)2.875 F .375(fect loops in)-.25 F (the caller')184 468 Q 2.5(sc)-.55 G(onte)-2.5 E(xt\).)-.15 E F1 -(complete_fullquote)144 480 Q F0 .653(If set,)184 492 R F1(bash)3.153 E +(complete_fullquote)144 480 Q F0 .654(If set,)184 492 R F1(bash)3.153 E F0 .653(quotes all shell metacharacters in \214lenames and directory na\ -mes when per)3.153 F(-)-.2 E 1.525(forming completion.)184 504 R 1.524 -(If not set,)6.525 F F1(bash)4.024 E F0(remo)4.024 E -.15(ve)-.15 G +mes when per)3.153 F(-)-.2 E 1.524(forming completion.)184 504 R 1.524 +(If not set,)6.524 F F1(bash)4.024 E F0(remo)4.024 E -.15(ve)-.15 G 4.024(sm).15 G 1.524(etacharacters such as the dollar sign)-4.024 F 2.667(from the set of characters that will be quoted in completed \214l\ -enames when these)184 516 R .029(metacharacters appear in shell v)184 -528 R .028(ariable references in w)-.25 F .028(ords to be completed.)-.1 -F .028(This means)5.028 F 1.072(that dollar signs in v)184 540 R 1.073 +enames when these)184 516 R .028(metacharacters appear in shell v)184 +528 R .028(ariable references in w)-.25 F .029(ords to be completed.)-.1 +F .029(This means)5.029 F 1.073(that dollar signs in v)184 540 R 1.073 (ariable names that e)-.25 F 1.073 (xpand to directories will not be quoted; ho)-.15 F(w-)-.25 E -2.15 -.25 -(ev e)184 552 T 1.923 -.4(r, a).25 H 1.423 -.15(ny d).4 H 1.123 +(ev e)184 552 T 1.922 -.4(r, a).25 H 1.422 -.15(ny d).4 H 1.123 (ollar signs appearing in \214lenames will not be quoted, either).15 F -6.123(.T)-.55 G 1.122(his is acti)-6.123 F -.15(ve)-.25 G .59 +6.123(.T)-.55 G 1.123(his is acti)-6.123 F -.15(ve)-.25 G .59 (only when bash is using backslashes to quote completed \214lenames.)184 564 R .59(This v)5.59 F .59(ariable is set)-.25 F(by def)184 576 Q (ault, which is the def)-.1 E(ault bash beha)-.1 E(vior in v)-.2 E -(ersions through 4.2.)-.15 E F1(dir)144 588 Q(expand)-.18 E F0 .487 -(If set,)184 600 R F1(bash)2.987 E F0 .486 +(ersions through 4.2.)-.15 E F1(dir)144 588 Q(expand)-.18 E F0 .486 +(If set,)184 600 R F1(bash)2.986 E F0 .486 (replaces directory names with the results of w)2.986 F .486(ord e)-.1 F -.486(xpansion when perform-)-.15 F .179(ing \214lename completion.)184 -612 R .179(This changes the contents of the readline editing b)5.179 F -(uf)-.2 E(fer)-.25 E 5.18(.I)-.55 G 2.68(fn)-5.18 G(ot)-2.68 E(set,)184 -624 Q F1(bash)2.5 E F0(attempts to preserv)2.5 E 2.5(ew)-.15 G -(hat the user typed.)-2.5 E F1(dirspell)144 636 Q F0 .859(If set,)184 -636 R F1(bash)3.359 E F0 .858 -(attempts spelling correction on directory names during w)3.359 F .858 +.487(xpansion when perform-)-.15 F .18(ing \214lename completion.)184 +612 R .179(This changes the contents of the readline editing b)5.18 F +(uf)-.2 E(fer)-.25 E 5.179(.I)-.55 G 2.679(fn)-5.179 G(ot)-2.679 E(set,) +184 624 Q F1(bash)2.5 E F0(attempts to preserv)2.5 E 2.5(ew)-.15 G +(hat the user typed.)-2.5 E F1(dirspell)144 636 Q F0 .858(If set,)184 +636 R F1(bash)3.358 E F0 .858 +(attempts spelling correction on directory names during w)3.358 F .859 (ord completion if)-.1 F (the directory name initially supplied does not e)184 648 Q(xist.)-.15 E F1(dotglob)144 660 Q F0 .165(If set,)184 660 R F1(bash)2.665 E F0 .165 @@ -2437,9 +2441,9 @@ F1(dotglob)144 660 Q F0 .165(If set,)184 660 R F1(bash)2.665 E F0 .165 G(')-.08 E F0(and)5 E F1 -.63(``)2.5 G(..).63 E -.63('')-.55 G F0 (must al)5.63 E -.1(wa)-.1 G(ys be matched e).1 E(xplicitly)-.15 E 2.5 (,e)-.65 G -.15(ve)-2.75 G 2.5(ni).15 G(f)-2.5 E F1(dotglob)2.5 E F0 -(is set.)2.5 E F1(execfail)144 684 Q F0 1.387(If set, a non-interacti) -184 684 R 1.687 -.15(ve s)-.25 H 1.386(hell will not e).15 F 1.386 -(xit if it cannot e)-.15 F -.15(xe)-.15 G 1.386 +(is set.)2.5 E F1(execfail)144 684 Q F0 1.386(If set, a non-interacti) +184 684 R 1.686 -.15(ve s)-.25 H 1.386(hell will not e).15 F 1.386 +(xit if it cannot e)-.15 F -.15(xe)-.15 G 1.387 (cute the \214le speci\214ed as an).15 F(ar)184 696 Q(gument to the)-.18 E F1(exec)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 E(An interacti)5 E .3 -.15(ve s)-.25 H(hell does not e).15 E(xit if)-.15 E F1(exec)2.5 E F0 @@ -2452,33 +2456,33 @@ BP /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35 E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(expand_aliases)144 84 -Q F0 .716(If set, aliases are e)184 96 R .717(xpanded as described abo) +Q F0 .717(If set, aliases are e)184 96 R .717(xpanded as described abo) -.15 F 1.017 -.15(ve u)-.15 H(nder).15 E/F2 9/Times-Bold@0 SF(ALIASES) -3.217 E/F3 9/Times-Roman@0 SF(.)A F0 .717(This option is enabled)5.217 F +3.217 E/F3 9/Times-Roman@0 SF(.)A F0 .716(This option is enabled)5.217 F (by def)184 108 Q(ault for interacti)-.1 E .3 -.15(ve s)-.25 H(hells.) -.15 E F1(extdeb)144 120 Q(ug)-.2 E F0 .672(If set at shell in)184 132 R --.2(vo)-.4 G .672(cation, arrange to e).2 F -.15(xe)-.15 G .671 -(cute the deb).15 F .671(ugger pro\214le before the shell starts,)-.2 F -.22(identical to the)184 144 R F12.72 E(ugger)-.2 E F0 2.721 -(option. If)2.721 F .221(set after in)2.721 F -.2(vo)-.4 G .221 -(cation, beha).2 F .221(vior intended for use by)-.2 F(deb)184 156 Q -(uggers is enabled:)-.2 E F1(1.)184 168 Q F0(The)220 168 Q F14.251 -E F0 1.751(option to the)4.251 F F1(declar)4.251 E(e)-.18 E F0 -.2(bu) +.15 E F1(extdeb)144 120 Q(ug)-.2 E F0 .671(If set at shell in)184 132 R +-.2(vo)-.4 G .671(cation, arrange to e).2 F -.15(xe)-.15 G .671 +(cute the deb).15 F .672(ugger pro\214le before the shell starts,)-.2 F +.221(identical to the)184 144 R F12.721 E(ugger)-.2 E F0 +2.721(option. If)2.721 F .221(set after in)2.721 F -.2(vo)-.4 G .221 +(cation, beha).2 F .22(vior intended for use by)-.2 F(deb)184 156 Q +(uggers is enabled:)-.2 E F1(1.)184 168 Q F0(The)220 168 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 180 Q (gument.)-.18 E F1(2.)184 192 Q F0 1.667(If the command run by the)220 192 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 204 -Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 216 Q F0 .841 -(If the command run by the)220 216 R F1(DEB)3.341 E(UG)-.1 E F0 .841 -(trap returns a v)3.341 F .84(alue of 2, and the shell is)-.25 F -.15 +Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 216 Q F0 .84 +(If the command run by the)220 216 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 228 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 240 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 252 Q F2 -.27(BA)220 252 S(SH_ARGC).27 E F0 -(and)3.154 E F2 -.27(BA)3.404 G(SH_ARGV).27 E F0 .904 +(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 264 Q -.15(ve)-.15 G(.).15 E F1(5.)184 276 Q F0 1.637(Function tracing is ena\ bled: command substitution, shell functions, and sub-)220 276 R @@ -2498,53 +2502,53 @@ E F0(")A F4(string)A F0 4.973("q)C 2.473(uoting is performed within) -4.973 F F1(${)4.973 E F4(par)A(ameter)-.15 E F1(})A F0 -.15(ex)4.973 G (pansions).15 E(enclosed in double quotes.)184 372 Q (This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 384 Q F0 -1.424(If set, patterns which f)184 384 R 1.425 -(ail to match \214lenames during pathname e)-.1 F 1.425 +1.425(If set, patterns which f)184 384 R 1.425 +(ail to match \214lenames during pathname e)-.1 F 1.424 (xpansion result in an)-.15 F -.15(ex)184 396 S(pansion error).15 E(.) -.55 E F1 -.25(fo)144 408 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0 -.937(If set, the suf)184 420 R<8c78>-.25 E .936(es speci\214ed by the) +.936(If set, the suf)184 420 R<8c78>-.25 E .936(es speci\214ed by the) -.15 F F2(FIGNORE)3.436 E F0 .936(shell v)3.186 F .936(ariable cause w) --.25 F .936(ords to be ignored)-.1 F .32(when performing w)184 432 R .32 +-.25 F .937(ords to be ignored)-.1 F .32(when performing w)184 432 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.948 -(pletions. See)184 444 R F2 .448(SHELL V)2.948 F(ARIABLES)-1.215 E F0 -(abo)2.698 E .748 -.15(ve f)-.15 H .448(or a description of).15 F F2 -(FIGNORE)2.947 E F3(.)A F0 .447(This option is)4.947 F(enabled by def) -184 456 Q(ault.)-.1 E F1(globasciiranges)144 468 Q F0 2.518 +(he ignored w)-2.82 F .32(ords are the only possible com-)-.1 F 2.947 +(pletions. See)184 444 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(.)A F0 .448(This option is)4.948 F(enabled by def) +184 456 Q(ault.)-.1 E F1(globasciiranges)144 468 Q F0 2.519 (If set, range e)184 480 R 2.519 -(xpressions used in pattern matching brack)-.15 F 2.519(et e)-.1 F 2.519 -(xpressions \(see)-.15 F F2 -.09(Pa)5.019 G(tter).09 E(n)-.135 E -(Matching)184 492 Q F0(abo)2.965 E -.15(ve)-.15 G 3.215(\)b).15 G(eha) --3.215 E 1.015 -.15(ve a)-.2 H 3.214(si).15 G 3.214(fi)-3.214 G 3.214 +(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 492 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 504 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 .957(collate between)184 516 R F1(A) -3.457 E F0(and)3.457 E F1(B)3.457 E F0 3.457(,a)C .957(nd upper)-3.457 F -.957(-case and lo)-.2 F(wer)-.25 E .956 +(b)3.52 E F0 1.02(will not)3.52 F .956(collate between)184 516 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 528 Q(.)-.55 E -F1(globstar)144 540 Q F0 .518(If set, the pattern)184 540 R F1(**)3.018 -E F0 .519(used in a pathname e)3.019 F .519(xpansion conte)-.15 F .519 -(xt will match all \214les and zero)-.15 F .432 +F1(globstar)144 540 Q F0 .519(If set, the pattern)184 540 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 552 R .431 -(If the pattern is follo)5.432 F .431(wed by a)-.25 F F1(/)2.931 E F0 -2.931(,o)C .431(nly directories)-2.931 F(and subdirectories match.)184 +(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 564 Q F1(gnu_errfmt)144 576 Q F0(If set, shell error messages are writt\ en in the standard GNU error message format.)184 588 Q F1(histappend)144 600 Q F0 .676 (If set, the history list is appended to the \214le named by the v)184 -612 R .676(alue of the)-.25 F F2(HISTFILE)3.177 E F0 -.25(va)2.927 G +612 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 624 Q(xits, rather than o)-.15 E -.15(ve)-.15 G(rwriting the \214le.).15 E F1(histr)144 636 Q(eedit)-.18 -E F0 .576(If set, and)184 648 R F1 -.18(re)3.076 G(adline).18 E F0 .575 -(is being used, a user is gi)3.076 F -.15(ve)-.25 G 3.075(nt).15 G .575 -(he opportunity to re-edit a f)-3.075 F .575(ailed his-)-.1 F -(tory substitution.)184 660 Q F1(histv)144 672 Q(erify)-.1 E F0 .402 +E F0 .575(If set, and)184 648 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 660 Q F1(histv)144 672 Q(erify)-.1 E F0 .403 (If set, and)184 684 R F1 -.18(re)2.903 G(adline).18 E F0 .403 (is being used, the results of history substitution are not immediately) -2.903 F .662(passed to the shell parser)184 696 R 5.662(.I)-.55 G .661 -(nstead, the resulting line is loaded into the)-5.662 F F1 -.18(re)3.161 -G(adline).18 E F0(editing)3.161 E -.2(bu)184 708 S -.25(ff).2 G(er).25 E +2.903 F .661(passed to the shell parser)184 696 R 5.661(.I)-.55 G .662 +(nstead, the resulting line is loaded into the)-5.661 F F1 -.18(re)3.162 +G(adline).18 E F0(editing)3.162 E -.2(bu)184 708 S -.25(ff).2 G(er).25 E 2.5(,a)-.4 G(llo)-2.5 E(wing further modi\214cation.)-.25 E (GNU Bash-4.2)72 768 Q(2004 Apr 20)148.735 E(19)198.725 E 0 Cg EP %%Page: 20 20 @@ -2554,18 +2558,18 @@ BP /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35 E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(hostcomplete)144 84 Q -F0 1.181(If set, and)184 96 R F1 -.18(re)3.681 G(adline).18 E F0 1.181 -(is being used,)3.681 F F1(bash)3.682 E F0 1.182 -(will attempt to perform hostname completion)3.682 F 1.381(when a w)184 -108 R 1.381(ord containing a)-.1 F F1(@)3.881 E F0 1.381 -(is being completed \(see)3.881 F F1(Completing)3.88 E F0(under)3.88 E -/F2 9/Times-Bold@0 SF(READLINE)3.88 E F0(abo)184 120 Q -.15(ve)-.15 G +F0 1.182(If set, and)184 96 R F1 -.18(re)3.682 G(adline).18 E F0 1.182 +(is being used,)3.682 F F1(bash)3.682 E F0 1.181 +(will attempt to perform hostname completion)3.681 F 1.38(when a w)184 +108 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 9/Times-Bold@0 SF(READLINE)3.881 E F0(abo)184 120 Q -.15(ve)-.15 G 2.5(\). This).15 F(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 132 Q F0(If set,)184 144 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 156 Q(exit)-.18 E F0 -.219(If set, command substitution inherits the v)184 168 R .219 -(alue of the)-.25 F F1(err)2.719 E(exit)-.18 E F0 .22 +.22(If set, command substitution inherits the v)184 168 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 180 Q 2.5(vironment. This)-.4 F(option is enabled when)2.5 E/F3 10 /Times-Italic@0 SF(posix mode)2.5 E F0(is enabled.)2.5 E F1(interacti) @@ -2574,65 +2578,65 @@ F0 1.181(If set, and)184 96 R F1 -.18(re)3.681 G(adline).18 E F0 1.181 .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 216 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 .968(option is)3.468 F(enabled by def)184 +-.15 G 3.467(\). This).15 F .967(option is)3.467 F(enabled by def)184 228 Q(ault.)-.1 E F1(lastpipe)144 240 Q F0 .066 (If set, and job control is not acti)184 240 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 252 Q(vironment.)-.4 E F1(lithist)144 264 Q F0 .654(If set, and the) -184 264 R F1(cmdhist)3.154 E F0 .654 +184 252 Q(vironment.)-.4 E F1(lithist)144 264 Q F0 .655(If set, and the) +184 264 R F1(cmdhist)3.155 E F0 .654 (option is enabled, multi-line commands are sa)3.154 F -.15(ve)-.2 G -3.155(dt).15 G 3.155(ot)-3.155 G .655(he history)-3.155 F +3.154(dt).15 G 3.154(ot)-3.154 G .654(he history)-3.154 F (with embedded ne)184 276 Q (wlines rather than using semicolon separators where possible.)-.25 E F1 -(localv)144 288 Q(ar_inherit)-.1 E F0 .422(If set, local v)184 300 R +(localv)144 288 Q(ar_inherit)-.1 E F0 .421(If set, local v)184 300 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 -312 S .173(ists at a pre).15 F .173(vious scope before an)-.25 F 2.673 -(yn)-.15 G .673 -.25(ew va)-2.673 H .173(lue is assigned.).25 F .174 -(The nameref attrib)5.174 F .174(ute is not)-.2 F(inherited.)184 324 Q +312 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 324 Q F1(login_shell)144 336 Q F0 .486 (The shell sets this option if it is started as a login shell \(see)184 -348 R F2(INV)2.986 E(OCA)-.405 E(TION)-.855 E F0(abo)2.736 E -.15(ve) --.15 G 2.986(\). The).15 F -.25(va)184 360 S(lue may not be changed.).25 -E F1(mailwar)144 372 Q(n)-.15 E F0 .814(If set, and a \214le that)184 -384 R F1(bash)3.314 E F0 .815 -(is checking for mail has been accessed since the last time it)3.314 F +348 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 360 S(lue may not be changed.).25 +E F1(mailwar)144 372 Q(n)-.15 E F0 .815(If set, and a \214le that)184 +384 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 396 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E (`The mail in)-.74 E F3(mail\214le)2.5 E F0(has been read')2.5 E 2.5('i) -.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E F1(no_empty_cmd_completion)144 408 -Q F0 .325(If set, and)184 420 R F1 -.18(re)2.825 G(adline).18 E F0 .325 -(is being used,)2.825 F F1(bash)2.824 E F0 .324 -(will not attempt to search the)2.824 F F2 -.666(PA)2.824 G(TH)-.189 E -F0 .324(for possible)2.574 F +Q F0 .324(If set, and)184 420 R F1 -.18(re)2.824 G(adline).18 E F0 .324 +(is being used,)2.824 F F1(bash)2.824 E F0 .324 +(will not attempt to search the)2.824 F F2 -.666(PA)2.825 G(TH)-.189 E +F0 .325(for possible)2.575 F (completions when completion is attempted on an empty line.)184 432 Q F1 -(nocaseglob)144 444 Q F0 .436(If set,)184 456 R F1(bash)2.936 E F0 .436 -(matches \214lenames in a case\255insensiti)2.936 F .737 -.15(ve f)-.25 -H .437(ashion when performing pathname).05 F -.15(ex)184 468 S +(nocaseglob)144 444 Q F0 .437(If set,)184 456 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 468 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 480 Q F0 1.194(If set,)184 -492 R F1(bash)3.694 E F0 1.194(matches patterns in a case\255insensiti) -3.694 F 1.493 -.15(ve f)-.25 H 1.193(ashion when performing matching).05 +-.15(ve)-.15 G(\).).15 E F1(nocasematch)144 480 Q F0 1.193(If set,)184 +492 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 504 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 516 S .623(rd e).1 F .623(xpansions, or when \214ltering possib\ +(wo)184 516 S .622(rd e).1 F .623(xpansions, or when \214ltering possib\ le completions as part of programmable com-)-.15 F(pletion.)184 528 Q F1 -(nullglob)144 540 Q F0 .854(If set,)184 552 R F1(bash)3.354 E F0(allo) -3.354 E .855(ws patterns which match no \214les \(see)-.25 F F1 -.1(Pa) -3.355 G .855(thname Expansion).1 F F0(abo)3.355 E -.15(ve)-.15 G 3.355 -(\)t).15 G(o)-3.355 E -.15(ex)184 564 S +(nullglob)144 540 Q F0 .855(If set,)184 552 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 564 S (pand to a null string, rather than themselv).15 E(es.)-.15 E F1(pr)144 -576 Q(ogcomp)-.18 E F0 .677(If set, the programmable completion f)184 -588 R .677(acilities \(see)-.1 F F1(Pr)3.176 E .676 -(ogrammable Completion)-.18 F F0(abo)3.176 E -.15(ve)-.15 G(\)).15 E +576 Q(ogcomp)-.18 E F0 .676(If set, the programmable completion f)184 +588 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 600 Q(This option is enabled by def)5 E(ault.)-.1 E F1 -(pr)144 612 Q(omptv)-.18 E(ars)-.1 E F0 1.447 +(pr)144 612 Q(omptv)-.18 E(ars)-.1 E F0 1.448 (If set, prompt strings under)184 624 R 1.448(go parameter e)-.18 F -1.448(xpansion, command substitution, arithmetic)-.15 F -.15(ex)184 636 -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 F2(PR)2.67 E -(OMPTING)-.27 E F0(abo)2.42 E -.15(ve)-.15 G(.).15 E +1.447(xpansion, command substitution, arithmetic)-.15 F -.15(ex)184 636 +S .17(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 F2(PR)2.671 E +(OMPTING)-.27 E F0(abo)2.421 E -.15(ve)-.15 G(.).15 E (This option is enabled by def)184 648 Q(ault.)-.1 E F1 -.18(re)144 660 S(stricted_shell).18 E F0 1.069 (The shell sets this option if it is started in restricted mode \(see) @@ -2649,44 +2653,43 @@ BP /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35 E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(shift_v)144 84 Q -(erbose)-.1 E F0 .501(If set, the)184 96 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 108 Q F1 -(sour)144 120 Q(cepath)-.18 E F0 .771(If set, the)184 132 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/F2 9/Times-Bold@0 SF --.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 144 Q 2.5(gument. This)-.18 F(option is enabled by def)2.5 E(ault.) --.1 E F1(xpg_echo)144 156 Q F0(If set, the)184 168 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 184.8 Q F0([)2.5 E F1A F0(])A 1.001 -(Suspend the e)144 196.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 -F2(SIGCONT)A F0 3.502(signal. A)3.252 F 1.002(login shell cannot be) -3.502 F .023(suspended; the)144 208.8 R F12.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 220.8 S(nless the shell is a login shell and)-2.5 E +(erbose)-.1 E F0 .502(If set, the)184 96 R F1(shift)3.002 E F0 -.2(bu) +3.002 G .501(iltin prints an error message when the shift count e).2 F +.501(xceeds the number)-.15 F(of positional parameters.)184 108 Q F1 +(sour)144 120 Q(cepath)-.18 E F0 .77(If set, the)184 132 R F1(sour)3.27 +E(ce)-.18 E F0(\()3.27 E F1(.)A F0 3.27(\)b)C .77(uiltin uses the v) +-3.47 F .771(alue of)-.25 F/F2 9/Times-Bold@0 SF -.666(PA)3.271 G(TH) +-.189 E F0 .771(to \214nd the directory containing the)3.021 F +(\214le supplied as an ar)184 144 Q 2.5(gument. This)-.18 F +(option is enabled by def)2.5 E(ault.)-.1 E F1(xpg_echo)144 156 Q F0 +(If set, the)184 168 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 184.8 Q F0([)2.5 E F1A F0(])A 1.002(Suspend the e)144 196.8 R +-.15(xe)-.15 G 1.002(cution of this shell until it recei).15 F -.15(ve) +-.25 G 3.501(sa).15 G F2(SIGCONT)A F0 3.501(signal. A)3.251 F 1.001 +(login shell cannot be)3.501 F .022(suspended; the)144 208.8 R F1 +2.522 E F0 .022(option can be used to o)2.522 F -.15(ve)-.15 G .022 +(rride this and force the suspension.).15 F .023(The return status is) +5.023 F 2.5(0u)144 220.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 237.6 Q/F3 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F1([) -108 249.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 249.6 R .878 -(alse\) depending on the e)-.1 F -.25(va)-.25 G .878 +108 249.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 .878 +(Return a status of 0 \(true\) or 1 \(f)144 249.6 R .877 +(alse\) depending on the e)-.1 F -.25(va)-.25 G .877 (luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)144 261.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 3.079 -(primaries described abo)144 273.6 R 3.379 -.15(ve u)-.15 H(nder).15 E -F2(CONDITION)5.579 E 3.079(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF -(.)A F1(test)7.579 E F0 3.08(does not accept an)5.58 F(y)-.15 E +(gument. Expressions)-.18 F .53(are composed of the)3.03 F 3.08 +(primaries described abo)144 273.6 R 3.38 -.15(ve u)-.15 H(nder).15 E F2 +(CONDITION)5.58 E 3.079(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(.)A +F1(test)7.579 E F0 3.079(does not accept an)5.579 F(y)-.15 E (options, nor does it accept and ignore an ar)144 285.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 303.6 R .785 -(wing operators, listed in decreasing order of prece-)-.25 F 3.411 -(dence. The)144 315.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 +E F12.5 E F0(as signifying the end of options.)2.5 E .785 +(Expressions may be combined using the follo)144 303.6 R .786 +(wing operators, listed in decreasing order of prece-)-.25 F 3.412 +(dence. The)144 315.6 R -.25(eva)3.412 G .912 +(luation depends on the number of ar).25 F .911(guments; see belo)-.18 F +4.711 -.65(w. O)-.25 H .911(perator precedence is).65 F (used when there are \214v)144 327.6 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G (ore ar)-2.5 E(guments.)-.18 E F1(!)144 339.6 Q F3 -.2(ex)2.5 G(pr).2 E F0 -.35(Tr)180 339.6 S(ue if).35 E F3 -.2(ex)2.5 G(pr).2 E F0(is f)3.23 @@ -2709,9 +2712,9 @@ F1([)2.5 E F0 -.25(eva)2.5 G(luate conditional e).25 E E 2.5(2a)144 494.4 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar) 180 506.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 518.4 R .38 -(gument is one of the unary conditional operators listed abo)-.18 F .679 --.15(ve u)-.15 H(nder).15 E F2(CONDI-)2.879 E(TION)180 530.4 Q .552 +(gument is null.)-.18 F .379(If the \214rst ar)180 518.4 R .38 +(gument is one of the unary conditional operators listed abo)-.18 F .68 +-.15(ve u)-.15 H(nder).15 E F2(CONDI-)2.88 E(TION)180 530.4 Q .553 (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 542.4 Q @@ -2722,27 +2725,27 @@ F .37(xpression is true if and only if the second ar)-.15 F .37 (If the second ar)5.236 F .236(gument is one of)-.18 F .855 (the binary conditional operators listed abo)180 578.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 590.4 R .578(xpression i\ +F4(,)A F0(the)3.104 E .578(result of the e)180 590.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 602.4 R(The)6.332 E F13.832 -E F0(and)3.832 E F13.832 E F0 1.333 +(guments)-.18 E 1.333(as operands.)180 602.4 R(The)6.333 E F13.833 +E F0(and)3.833 E F13.832 E F0 1.332 (operators are considered binary operators when there are)3.832 F .558 (three ar)180 614.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 -626.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 638.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 +(o-ar)-.1 E(gument)-.18 E .521(test using the second and third ar)180 +626.4 R 3.021(guments. If)-.18 F .521(the \214rst ar)3.021 F .52 +(gument is e)-.18 F(xactly)-.15 E F1(\()3.02 E F0 .52(and the third)3.02 +F(ar)180 638.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 650.4 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(4a)144 -662.4 S -.18(rg)-2.5 G(uments).18 E .384(If the \214rst ar)180 674.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 1.648 +662.4 S -.18(rg)-2.5 G(uments).18 E .385(If the \214rst ar)180 674.4 R +.385(gument is)-.18 F F1(!)2.885 E F0 2.885(,t)C .385 +(he result is the ne)-2.885 F -.05(ga)-.15 G .384(tion of the three-ar) +.05 F .384(gument e)-.18 F .384(xpression com-)-.15 F 1.647 (posed of the remaining ar)180 686.4 R 4.147(guments. Otherwise,)-.18 F -1.647(the e)4.147 F 1.647(xpression is parsed and e)-.15 F -.25(va)-.25 +1.647(the e)4.147 F 1.648(xpression is parsed and e)-.15 F -.25(va)-.25 G(luated).25 E(according to precedence using the rules listed abo)180 698.4 Q -.15(ve)-.15 G(.).15 E(GNU Bash-4.2)72 768 Q(2004 Apr 20)148.735 E(21)198.725 E 0 Cg EP @@ -2764,72 +2767,71 @@ Q -.15(ve)-.15 G(.).15 E(When used with)144 126 Q/F1 10/Times-Bold@0 SF processes run from the shell.)144 142.8 R(The return status is 0.)144 154.8 Q F1(trap)108 171.6 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 .702(The command)144 183.6 R F2(ar)3.532 E(g)-.37 E F0 .702 -(is to be read and e)3.422 F -.15(xe)-.15 G .702 -(cuted when the shell recei).15 F -.15(ve)-.25 G 3.203(ss).15 G -(ignal\(s\))-3.203 E F2(sigspec)3.203 E F0 5.703(.I).31 G(f)-5.703 E F2 -(ar)3.533 E(g)-.37 E F0(is)3.423 E .609(absent \(and there is a single) +2.5 E .703(The command)144 183.6 R F2(ar)3.533 E(g)-.37 E F0 .703 +(is to be read and e)3.423 F -.15(xe)-.15 G .702 +(cuted when the shell recei).15 F -.15(ve)-.25 G 3.202(ss).15 G +(ignal\(s\))-3.202 E F2(sigspec)3.202 E F0 5.702(.I).31 G(f)-5.702 E F2 +(ar)3.532 E(g)-.37 E F0(is)3.422 E .608(absent \(and there is a single) 144 195.6 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 207.6 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 +.659(\(the v)144 207.6 R .659(alue it had upon entrance to the shell\).) +-.25 F(If)5.658 E F2(ar)3.488 E(g)-.37 E F0 .658 (is the null string the signal speci\214ed by each)3.378 F F2(sigspec) -144.34 219.6 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 +144.34 219.6 Q F0 .58(is ignored by the shell and by the commands it in) +3.39 F -.2(vo)-.4 G -.1(ke).2 G 3.081(s. If).1 F F2(ar)3.411 E(g)-.37 E +F0 .581(is not present and)3.301 F F13.081 E F0(has)3.081 E 1.215 (been supplied, then the trap commands associated with each)144 231.6 R -F2(sigspec)4.054 E F0 1.215(are displayed.)4.024 F 1.215(If no ar)6.215 +F2(sigspec)4.054 E F0 1.214(are displayed.)4.024 F 1.214(If no ar)6.214 F(gu-)-.18 E .86(ments are supplied or if only)144 243.6 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 255.6 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 267.6 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 +to print a list of signal names and their corresponding num-)2.83 F 4.31 +(bers. Each)144 267.6 R F2(sigspec)4.65 E F0 1.811 +(is either a signal name de\214ned in <)4.62 F F2(signal.h)A F0 1.811 +(>, or a signal number)B 6.811(.S)-.55 G(ignal)-6.811 E (names are case insensiti)144 279.6 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 1.648 -(If a)144 297.6 R F2(sigspec)4.488 E F0(is)4.458 E F3(EXIT)4.148 E F0 -1.648(\(0\) the command)3.898 F F2(ar)4.479 E(g)-.37 E F0 1.649(is e) -4.369 F -.15(xe)-.15 G 1.649(cuted on e).15 F 1.649(xit from the shell.) --.15 F 1.649(If a)6.649 F F2(sigspec)4.489 E F0(is)4.459 E F3(DEB)144 -309.6 Q(UG)-.09 E/F4 9/Times-Roman@0 SF(,)A F0 1.168(the command)3.418 F -F2(ar)3.998 E(g)-.37 E F0 1.168(is e)3.888 F -.15(xe)-.15 G 1.167 -(cuted before e).15 F -.15(ve)-.25 G(ry).15 E F2 1.167(simple command) -3.667 F F0(,)A F2(for)3.667 E F0(command,)3.667 E F2(case)3.667 E F0 -(com-)3.667 E(mand,)144 321.6 Q F2(select)2.646 E F0 .146(command, e) -2.646 F -.15(ve)-.25 G .146(ry arithmetic).15 F F2(for)2.646 E F0 .147 -(command, and before the \214rst command e)2.646 F -.15(xe)-.15 G .147 -(cutes in a).15 F .146(shell function \(see)144 333.6 R F3 .146 -(SHELL GRAMMAR)2.646 F F0(abo)2.396 E -.15(ve)-.15 G 2.646(\). Refer).15 -F .146(to the description of the)2.646 F F1(extdeb)2.645 E(ug)-.2 E F0 -.145(option to)2.645 F(the)144 345.6 Q F1(shopt)3.2 E F0 -.2(bu)3.2 G .7 -(iltin for details of its ef).2 F .7(fect on the)-.25 F F1(DEB)3.2 E(UG) --.1 E F0 3.2(trap. If)3.2 F(a)3.2 E F2(sigspec)3.54 E F0(is)3.51 E F3 -(RETURN)3.2 E F4(,)A F0 .701(the com-)2.951 F(mand)144 357.6 Q F2(ar) -3.474 E(g)-.37 E F0 .644(is e)3.364 F -.15(xe)-.15 G .643 +/F3 9/Times-Bold@0 SF(SIG)2.5 E F0(pre\214x is optional.)2.25 E 1.649 +(If a)144 297.6 R F2(sigspec)4.489 E F0(is)4.459 E F3(EXIT)4.149 E F0 +1.649(\(0\) the command)3.899 F F2(ar)4.479 E(g)-.37 E F0 1.649(is e) +4.369 F -.15(xe)-.15 G 1.649(cuted on e).15 F 1.648(xit from the shell.) +-.15 F 1.648(If a)6.648 F F2(sigspec)4.488 E F0(is)4.458 E F3(DEB)144 +309.6 Q(UG)-.09 E/F4 9/Times-Roman@0 SF(,)A F0 1.167(the command)3.417 F +F2(ar)3.997 E(g)-.37 E F0 1.167(is e)3.887 F -.15(xe)-.15 G 1.167 +(cuted before e).15 F -.15(ve)-.25 G(ry).15 E F2 1.168(simple command) +3.667 F F0(,)A F2(for)3.668 E F0(command,)3.668 E F2(case)3.668 E F0 +(com-)3.668 E(mand,)144 321.6 Q F2(select)2.647 E F0 .147(command, e) +2.647 F -.15(ve)-.25 G .147(ry arithmetic).15 F F2(for)2.647 E F0 .146 +(command, and before the \214rst command e)2.647 F -.15(xe)-.15 G .146 +(cutes in a).15 F .145(shell function \(see)144 333.6 R F3 .145 +(SHELL GRAMMAR)2.645 F F0(abo)2.395 E -.15(ve)-.15 G 2.646(\). Refer).15 +F .146(to the description of the)2.646 F F1(extdeb)2.646 E(ug)-.2 E F0 +.146(option to)2.646 F(the)144 345.6 Q F1(shopt)3.201 E F0 -.2(bu)3.201 +G .7(iltin for details of its ef).2 F .7(fect on the)-.25 F F1(DEB)3.2 E +(UG)-.1 E F0 3.2(trap. If)3.2 F(a)3.2 E F2(sigspec)3.54 E F0(is)3.51 E +F3(RETURN)3.2 E F4(,)A F0 .7(the com-)2.95 F(mand)144 357.6 Q F2(ar) +3.473 E(g)-.37 E F0 .643(is e)3.363 F -.15(xe)-.15 G .643 (cuted each time a shell function or a script e).15 F -.15(xe)-.15 G -.643(cuted with the).15 F F1(.)3.143 E F0(or)3.143 E F1(sour)3.143 E(ce) --.18 E F0 -.2(bu)3.143 G(iltins).2 E(\214nishes e)144 369.6 Q -.15(xe) --.15 G(cuting.).15 E .96(If a)144 387.6 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(sin\ -gle simple command\), a list, or a compound command returns a non\255ze\ -ro e)144 399.6 R .184(xit status, subject to)-.15 F .451(the follo)144 -411.6 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 423.6 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 435.6 R -.15(xe)-.15 G +.644(cuted with the).15 F F1(.)3.144 E F0(or)3.144 E F1(sour)3.144 E(ce) +-.18 E F0 -.2(bu)3.144 G(iltins).2 E(\214nishes e)144 369.6 Q -.15(xe) +-.15 G(cuting.).15 E .961(If a)144 387.6 R F2(sigspec)3.801 E F0(is) +3.771 E F3(ERR)3.461 E F4(,)A F0 .961(the command)3.211 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(ra).15 G .96(pipeline \(which may consist of a) +-.001 F .185(single simple command\), a list, or a compound command ret\ +urns a non\255zero e)144 399.6 R .185(xit status, subject to)-.15 F .452 +(the follo)144 411.6 R .452(wing conditions.)-.25 F(The)5.452 E F3(ERR) +2.952 E F0 .451(trap is not e)2.701 F -.15(xe)-.15 G .451 +(cuted if the f).15 F .451(ailed command is part of the com-)-.1 F .387 +(mand list immediately follo)144 423.6 R .387(wing a)-.25 F F1(while) +2.887 E F0(or)2.887 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.898 E F0 .388 +(statement, part)4.848 F .778(of a command e)144 435.6 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 447.6 R +(wing the \214nal)-.25 F F1(&&)3.278 E F0(or)3.278 E F1(||)3.277 E F0 +3.277(,a)C -.15(ny)-3.277 G 1.28(command in a pipeline b)144 447.6 R 1.28(ut the last, or if the command')-.2 F 3.78(sr)-.55 G 1.28(eturn v) -3.78 F 1.28(alue is being in)-.25 F -.15(ve)-.4 G 1.28(rted using).15 F F1(!)3.78 E F0(.)A(These are the same conditions obe)144 459.6 Q @@ -2838,62 +2840,63 @@ F1(!)3.78 E F0(.)A(These are the same conditions obe)144 459.6 Q (Signals ignored upon entry to the shell cannot be trapped or reset.)144 477.6 R -.35(Tr)6.095 G 1.095(apped signals that are not).35 F .662 (being ignored are reset to their original v)144 489.6 R .662 -(alues in a subshell or subshell en)-.25 F .661(vironment when one is) +(alues in a subshell or subshell en)-.25 F .662(vironment when one is) -.4 F 2.5(created. The)144 501.6 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 518.4 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 530.4 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 -F1144 542.4 Q F0 .843(option is used,)3.343 F F1(type)3.343 E F0 +(name)A F0(...])2.5 E -.4(Wi)144 530.4 S .174 +(th no options, indicate ho).4 F 2.674(we)-.25 G(ach)-2.674 E F2(name) +3.034 E F0 -.1(wo)2.854 G .173 +(uld be interpreted if used as a command name.).1 F .173(If the)5.173 F +F1144 542.4 Q F0 .842(option is used,)3.342 F F1(type)3.342 E F0 .843(prints a string which is one of)3.343 F F2(alias)3.343 E F0(,).27 E F2 -.1(ke)3.343 G(ywor)-.2 E(d)-.37 E F0(,).77 E F2(function)3.343 E F0 -(,).24 E F2 -.2(bu)3.342 G(iltin).2 E F0 3.342(,o).24 G(r)-3.342 E F2 -(\214le)5.252 E F0(if)3.522 E F2(name)144.36 554.4 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 F2 -(name)2.947 E F0 .087(is not)2.767 F .119 +(,).24 E F2 -.2(bu)3.343 G(iltin).2 E F0 3.343(,o).24 G(r)-3.343 E F2 +(\214le)5.253 E F0(if)3.523 E F2(name)144.36 554.4 Q F0 .087 +(is an alias, shell reserv)2.767 F .087(ed w)-.15 F .087 +(ord, function, b)-.1 F .086(uiltin, or disk \214le, respecti)-.2 F -.15 +(ve)-.25 G(ly).15 E 5.086(.I)-.65 G 2.586(ft)-5.086 G(he)-2.586 E F2 +(name)2.946 E F0 .086(is not)2.766 F .118 (found, then nothing is printed, and an e)144 566.4 R .118 -(xit status of f)-.15 F .118(alse is returned.)-.1 F .118(If the)5.118 F -F12.618 E F0 .118(option is used,)2.618 F F1(type)2.618 E F0 .855 +(xit status of f)-.15 F .118(alse is returned.)-.1 F .119(If the)5.119 F +F12.619 E F0 .119(option is used,)2.619 F F1(type)2.619 E F0 .855 (either returns the name of the disk \214le that w)144 578.4 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 .641(mand name, or nothing if) -144 590.4 R/F5 10/Courier@0 SF .641(type -t name)3.141 F F0 -.1(wo)3.141 -G .641(uld not return).1 F F2(\214le)3.14 E F0 5.64(.T).18 G(he)-5.64 E -F13.14 E F0 .64(option forces a)3.14 F F3 -.666(PA)3.14 G(TH)-.189 -E F0 .112(search for each)144 602.4 R F2(name)2.612 E F0 2.612(,e)C -.15 -(ve)-2.862 G 2.613(ni).15 G(f)-2.613 E F5 .113(type -t name)2.613 F F0 --.1(wo)2.613 G .113(uld not return).1 F F2(\214le)2.613 E F0 5.113(.I) -.18 G 2.613(fac)-5.113 G .113(ommand is hashed,)-2.613 F F12.613 E -F0(and)144 614.4 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 F3 -.666(PA)3.23 G(TH)-.189 E F4(.)A F0 .73(If the)5.23 F F1 -144 626.4 Q F0 1.748(option is used,)4.248 F F1(type)4.248 E F0 -1.748(prints all of the places that contain an e)4.248 F -.15(xe)-.15 G -1.748(cutable named).15 F F2(name)4.249 E F0 6.749(.T).18 G(his)-6.749 E -.744(includes aliases and functions, if and only if the)144 638.4 R F1 -3.244 E F0 .744(option is not also used.)3.244 F .743 +.855(were speci\214ed as a com-)3.535 F .64(mand name, or nothing if)144 +590.4 R/F5 10/Courier@0 SF .64(type -t name)3.14 F F0 -.1(wo)3.14 G .641 +(uld not return).1 F F2(\214le)3.141 E F0 5.641(.T).18 G(he)-5.641 E F1 +3.141 E F0 .641(option forces a)3.141 F F3 -.666(PA)3.141 G(TH) +-.189 E F0 .113(search for each)144 602.4 R F2(name)2.613 E F0 2.613(,e) +C -.15(ve)-2.863 G 2.613(ni).15 G(f)-2.613 E F5 .113(type -t name)2.613 +F F0 -.1(wo)2.613 G .113(uld not return).1 F F2(\214le)2.613 E F0 5.113 +(.I).18 G 2.613(fa)-5.113 G .112(command is hashed,)-.001 F F1 +2.612 E F0(and)144 614.4 Q F13.23 E F0 .73(print the hashed v)3.23 +F .731 +(alue, which is not necessarily the \214le that appears \214rst in)-.25 +F F3 -.666(PA)3.231 G(TH)-.189 E F4(.)A F0 .731(If the)5.231 F F1 +144 626.4 Q F0 1.749(option is used,)4.249 F F1(type)4.248 E F0 1.748 +(prints all of the places that contain an e)4.248 F -.15(xe)-.15 G 1.748 +(cutable named).15 F F2(name)4.248 E F0 6.748(.T).18 G(his)-6.748 E .744 +(includes aliases and functions, if and only if the)144 638.4 R F1 +3.244 E F0 .744(option is not also used.)3.244 F .744 (The table of hashed)5.744 F 1.223(commands is not consulted when using) 144 650.4 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 662.4 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 674.4 Q F1(ulimit)108 691.2 Q F0([)2.5 E F1 +1.223(option suppresses shell function lookup, as)3.723 F .325(with the) +144 662.4 R F1(command)2.825 E F0 -.2(bu)2.825 G(iltin.).2 E F1(type) +5.325 E F0 .325(returns true if all of the ar)2.825 F .326 +(guments are found, f)-.18 F .326(alse if an)-.1 F 2.826(ya)-.15 G .326 +(re not)-2.826 F(found.)144 674.4 Q F1(ulimit)108 691.2 Q F0([)2.5 E F1 (\255HSabcde\214klmnpqrstuvxPT)A F0([)2.5 E F2(limit)A F0(]])A(Pro)144 -703.2 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 +703.2 Q .244(vides control o)-.15 F -.15(ve)-.15 G 2.744(rt).15 G .244 +(he resources a)-2.744 F -.25(va)-.2 G .244 (ilable to the shell and to processes started by it, on systems).25 F -.944(that allo)144 715.2 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 +.943(that allo)144 715.2 R 3.443(ws)-.25 G .943(uch control.)-3.443 F +(The)5.943 E F13.443 E F0(and)3.443 E F13.444 E F0 .944 (options specify that the hard or soft limit is set for the)3.444 F(gi) -144 727.2 Q -.15(ve)-.25 G 2.708(nr).15 G 2.708(esource. A)-2.708 F .208 +144 727.2 Q -.15(ve)-.25 G 2.709(nr).15 G 2.709(esource. A)-2.709 F .208 (hard limit cannot be increased by a non-root user once it is set; a so\ -ft limit may)2.708 F(GNU Bash-4.2)72 768 Q(2004 Apr 20)148.735 E(22) +ft limit may)2.709 F(GNU Bash-4.2)72 768 Q(2004 Apr 20)148.735 E(22) 198.725 E 0 Cg EP %%Page: 23 23 %%BeginPageSetup @@ -2901,21 +2904,21 @@ BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35 -E(UIL)-.1 E(TINS\(1\))-.92 E .426(be increased up to the v)144 84 R .426 -(alue of the hard limit.)-.25 F .425(If neither)5.426 F/F1 10 -/Times-Bold@0 SF2.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 +E(UIL)-.1 E(TINS\(1\))-.92 E .425(be increased up to the v)144 84 R .425 +(alue of the hard limit.)-.25 F .426(If neither)5.425 F/F1 10 +/Times-Bold@0 SF2.926 E F0(nor)2.926 E F12.926 E F0 .426 +(is speci\214ed, both the soft and)2.926 F .139(hard limits are set.)144 96 R .139(The v)5.139 F .139(alue of)-.25 F/F2 10/Times-Italic@0 SF (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 108 R(alues)-.25 E F1(hard)3.242 E F0(,)A F1 +.741(of the special v)144 108 R(alues)-.25 E F1(hard)3.241 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 .78 (soft limit, and no limit, respecti)144 120 R -.15(ve)-.25 G(ly).15 E 5.78(.I)-.65 G(f)-5.78 E F2(limit)3.37 E F0 .78 (is omitted, the current v)3.96 F .78(alue of the soft limit of the)-.25 -F .499(resource is printed, unless the)144 132 R F12.999 E F0 .499 -(option is gi)2.999 F -.15(ve)-.25 G 2.999(n. When).15 F .498 +F .498(resource is printed, unless the)144 132 R F12.999 E F0 .499 +(option is gi)2.999 F -.15(ve)-.25 G 2.999(n. When).15 F .499 (more than one resource is speci\214ed, the)2.999 F (limit name and unit are printed before the v)144 144 Q 2.5(alue. Other) -.25 F(options are interpreted as follo)2.5 E(ws:)-.25 E F1144 156 @@ -2933,8 +2936,8 @@ Q F1144 240 Q F0 -.1 E F1144 264 Q F0(The maximum resident set size \(man)180 264 Q 2.5(ys)-.15 G(ystems do not honor this limit\))-2.5 E F1144 276 Q F0 .791(The maximum number of open \214le descriptors \(most systems do\ - not allo)180 276 R 3.291(wt)-.25 G .791(his v)-3.291 F .791(alue to) --.25 F(be set\))180 288 Q F1144 300 Q F0 + not allo)180 276 R 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F +(be set\))180 288 Q F1144 300 Q F0 (The pipe size in 512-byte blocks \(this may not be set\))180 300 Q F1 144 312 Q F0(The maximum number of bytes in POSIX message queues) 180 312 Q F1144 324 Q F0 @@ -2951,19 +2954,19 @@ Q F1144 396 Q F0(The maximum number of \214le locks)180 396 Q F1 Q F2(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 448.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 1.588(in seconds;)144 -460.8 R F14.088 E F0 4.089(,w)C 1.589 +(alue of the speci\214ed resource.)-3.218 F(If)5.468 E .044 +(no option is gi)144 448.8 R -.15(ve)-.25 G .044(n, then).15 F F1 +2.544 E F0 .045(is assumed.)2.545 F -1.11(Va)5.045 G .045 +(lues are in 1024-byte increments, e)1.11 F .045(xcept for)-.15 F F1 +2.545 E F0 2.545(,w)C .045(hich is)-2.545 F 1.589(in seconds;)144 +460.8 R F14.089 E F0 4.089(,w)C 1.589 (hich is in units of 512-byte blocks;)-4.089 F F14.089 E F0(,)A F1 4.089 E F0(,)A F14.089 E F0(,)A F14.089 E F0(,)A F1 -4.089 E F0 4.089(,a)C(nd)-4.089 E F14.089 E F0 4.089(,w)C -1.589(hich are)-4.089 F 1.439(unscaled v)144 472.8 R 1.439 +4.089 E F0 4.089(,a)C(nd)-4.089 E F14.089 E F0 4.088(,w)C +1.588(hich are)-4.088 F 1.438(unscaled v)144 472.8 R 1.438 (alues; and, when in Posix mode,)-.25 F F13.939 E F0(and)3.939 E -F13.939 E F0 3.939(,w)C 1.438(hich are in 512-byte increments.) --3.939 F(The)6.438 E .404(return status is 0 unless an in)144 484.8 R +F13.939 E F0 3.939(,w)C 1.439(hich are in 512-byte increments.) +-3.939 F(The)6.439 E .404(return status is 0 unless an in)144 484.8 R -.25(va)-.4 G .404(lid option or ar).25 F .404 (gument is supplied, or an error occurs while setting)-.18 F 2.5(an)144 496.8 S .5 -.25(ew l)-2.5 H(imit.).25 E F1(umask)108 513.6 Q F0([)2.5 E @@ -2973,15 +2976,15 @@ F1A F0 2.5(][)C F1-2.5 E F0 2.5(][)C F2(mode)-2.5 E F0(])A (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 537.6 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 -549.6 Q F2(mode)3.263 E F0 .382(is omitted, the current v)3.063 F .382 +549.6 Q F2(mode)3.262 E F0 .382(is omitted, the current v)3.062 F .382 (alue of the mask is printed.)-.25 F(The)5.382 E F12.882 E F0 .382 (option causes the mask to be)2.882 F .547 (printed in symbolic form; the def)144 561.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 573.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 585.6 Q +(mode)144.38 573.6 Q F0 .551 +(is omitted, the output is in a form that may be reused as input.)3.231 +F .552(The return status is 0 if the)5.552 F(mode w)144 585.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 602.4 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0 @@ -2992,29 +2995,29 @@ F(remo)144 626.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 643.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 655.2 S 3.828(re).15 G(ach)-3.828 E F2(name)3.828 E F0 -3.828(,r).18 G(emo)-3.828 E 1.628 -.15(ve t)-.15 H 1.328 +2.5 E -.15(Fo)144 655.2 S 3.827(re).15 G(ach)-3.827 E F2(name)3.827 E F0 +3.827(,r).18 G(emo)-3.827 E 1.627 -.15(ve t)-.15 H 1.327 (he corresponding v).15 F 1.327(ariable or function.)-.25 F 1.327 -(If the)6.327 F F13.827 E F0 1.327(option is gi)3.827 F -.15(ve) --.25 G 1.327(n, each).15 F F2(name)144.36 667.2 Q F0 1.55 -(refers to a shell v)4.23 F 1.551(ariable, and that v)-.25 F 1.551 -(ariable is remo)-.25 F -.15(ve)-.15 G 4.051(d. Read-only).15 F -.25(va) -4.051 G 1.551(riables may not be).25 F 4.642(unset. If)144 679.2 R F1 -4.642 E F0 2.142(is speci\214ed, each)4.642 F F2(name)5.001 E F0 +(If the)6.327 F F13.828 E F0 1.328(option is gi)3.828 F -.15(ve) +-.25 G 1.328(n, each).15 F F2(name)144.36 667.2 Q F0 1.551 +(refers to a shell v)4.231 F 1.551(ariable, and that v)-.25 F 1.551 +(ariable is remo)-.25 F -.15(ve)-.15 G 4.05(d. Read-only).15 F -.25(va) +4.05 G 1.55(riables may not be).25 F 4.641(unset. If)144 679.2 R F1 +4.641 E F0 2.141(is speci\214ed, each)4.641 F F2(name)5.001 E F0 2.141(refers to a shell function, and the function de\214nition is)4.821 -F(remo)144 691.2 Q -.15(ve)-.15 G 2.537(d. If).15 F(the)2.537 E F1 +F(remo)144 691.2 Q -.15(ve)-.15 G 2.538(d. If).15 F(the)2.537 E F1 2.537 E F0 .037(option is supplied, and)2.537 F F2(name)2.537 E F0 .037 (is a v)2.537 F .037(ariable with the)-.25 F F2(namer)2.537 E(ef)-.37 E -F0(attrib)2.537 E(ute,)-.2 E F2(name)2.537 E F0(will)2.538 E .492 +F0(attrib)2.537 E(ute,)-.2 E F2(name)2.537 E F0(will)2.537 E .492 (be unset rather than the v)144 703.2 R .492(ariable it references.)-.25 F F15.492 E F0 .492(has no ef)2.992 F .492(fect if the)-.25 F F1 -2.992 E F0 .492(option is supplied.)2.992 F .492(If no)5.492 F .22 -(options are supplied, each)144 715.2 R F2(name)2.72 E F0 .22 -(refers to a v)2.72 F .221(ariable; if there is no v)-.25 F .221 -(ariable by that name, an)-.25 F 2.721(yf)-.15 G(unc-)-2.721 E 1.189 +2.992 E F0 .492(option is supplied.)2.992 F .493(If no)5.493 F +.221(options are supplied, each)144 715.2 R F2(name)2.721 E F0 .221 +(refers to a v)2.721 F .22(ariable; if there is no v)-.25 F .22 +(ariable by that name, an)-.25 F 2.72(yf)-.15 G(unc-)-2.72 E 1.188 (tion with that name is unset.)144 727.2 R 1.189(Each unset v)6.189 F -1.189(ariable or function is remo)-.25 F -.15(ve)-.15 G 3.688(df).15 G -1.188(rom the en)-3.688 F(vironment)-.4 E(GNU Bash-4.2)72 768 Q +1.189(ariable or function is remo)-.25 F -.15(ve)-.15 G 3.689(df).15 G +1.189(rom the en)-3.689 F(vironment)-.4 E(GNU Bash-4.2)72 768 Q (2004 Apr 20)148.735 E(23)198.725 E 0 Cg EP %%Page: 24 24 %%BeginPageSetup @@ -3022,37 +3025,37 @@ BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35 -E(UIL)-.1 E(TINS\(1\))-.92 E 3.205(passed to subsequent commands.)144 84 +E(UIL)-.1 E(TINS\(1\))-.92 E 3.206(passed to subsequent commands.)144 84 R 3.206(If an)8.206 F 5.706(yo)-.15 G(f)-5.706 E/F1 9/Times-Bold@0 SF (COMP_W)5.706 E(ORDBREAKS)-.09 E/F2 9/Times-Roman@0 SF(,)A F1(RANDOM) -5.456 E F2(,)A F1(SECONDS)5.456 E F2(,)A F1(LINENO)144 96 Q F2(,)A F1 -(HISTCMD)4.348 E F2(,)A F1(FUNCN)4.348 E(AME)-.18 E F2(,)A F1(GR)4.348 E +5.455 E F2(,)A F1(SECONDS)5.455 E F2(,)A F1(LINENO)144 96 Q F2(,)A F1 +(HISTCMD)4.347 E F2(,)A F1(FUNCN)4.347 E(AME)-.18 E F2(,)A F1(GR)4.347 E (OUPS)-.27 E F2(,)A F0(or)4.348 E F1(DIRST)4.598 E -.495(AC)-.81 G(K) -.495 E F0 2.098(are unset, the)4.348 F 4.597(yl)-.15 G 2.097 -(ose their special)-4.597 F(properties, e)144 108 Q -.15(ve)-.25 G 2.5 +.495 E F0 2.098(are unset, the)4.348 F 4.598(yl)-.15 G 2.098 +(ose their special)-4.598 F(properties, e)144 108 Q -.15(ve)-.25 G 2.5 (ni).15 G 2.5(ft)-2.5 G(he)-2.5 E 2.5(ya)-.15 G(re subsequently reset.) -2.5 E(The e)5 E(xit status is true unless a)-.15 E/F3 10/Times-Italic@0 SF(name)2.86 E F0(is readonly)2.68 E(.)-.65 E/F4 10/Times-Bold@0 SF (wait)108 124.8 Q F0([)2.5 E F4(\255fn)A F0 2.5(][)C F3(id ...)-2.5 E F0 (])A -.8(Wa)144 136.8 S .659(it for each speci\214ed child process and \ -return its termination status.).8 F(Each)5.659 E F3(id)3.169 E F0 .659 -(may be a process)3.929 F .009 +return its termination status.).8 F(Each)5.659 E F3(id)3.169 E F0 .658 +(may be a process)3.928 F .008 (ID or a job speci\214cation; if a job spec is gi)144 148.8 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 -F3(id)144.01 160.8 Q F0 .521(is not gi)3.791 F -.15(ve)-.25 G .521 +-.25 G .009(n, all processes in that job').15 F 2.509(sp)-.55 G .009 +(ipeline are w)-2.509 F .009(aited for)-.1 F 5.009(.I)-.55 G(f)-5.009 E +F3(id)144.01 160.8 Q F0 .522(is not gi)3.792 F -.15(ve)-.25 G .521 (n, all currently acti).15 F .821 -.15(ve c)-.25 H .521 (hild processes are w).15 F .521(aited for)-.1 F 3.021(,a)-.4 G .521 -(nd the return status is zero.)-3.021 F(If)5.522 E(the)144 172.8 Q F4 -3.057 E F0 .557(option is supplied,)3.057 F F4(wait)3.057 E F0 -.1 +(nd the return status is zero.)-3.021 F(If)5.521 E(the)144 172.8 Q F4 +3.056 E F0 .556(option is supplied,)3.056 F F4(wait)3.057 E F0 -.1 (wa)3.057 G .557(its for an).1 F 3.057(yj)-.15 G .557 -(ob to terminate and returns its e)-3.057 F .557(xit status.)-.15 F .556 -(If the)5.556 F F43.056 E F0 .586 +(ob to terminate and returns its e)-3.057 F .557(xit status.)-.15 F .557 +(If the)5.557 F F43.057 E F0 .587 (option is supplied, and job control is enabled,)144 184.8 R F4(wait) -3.086 E F0(forces)3.086 E F3(id)3.086 E F0 .587 -(to terminate before returning its sta-)3.086 F .756 +3.086 E F0(forces)3.086 E F3(id)3.086 E F0 .586 +(to terminate before returning its sta-)3.086 F .755 (tus, instead of returning when it changes status.)144 196.8 R(If)5.756 -E F3(id)3.266 E F0 .755(speci\214es a non-e)4.026 F .755 +E F3(id)3.266 E F0 .756(speci\214es a non-e)4.026 F .756 (xistent process or job, the)-.15 F .365(return status is 127.)144 208.8 R .365(Otherwise, the return status is the e)5.365 F .365 (xit status of the last process or job w)-.15 F(aited)-.1 E(for)144 diff --git a/doc/rbash.ps b/doc/rbash.ps index b5cff8d3..4bcbdcb2 100644 --- a/doc/rbash.ps +++ b/doc/rbash.ps @@ -1,6 +1,6 @@ %!PS-Adobe-3.0 %%Creator: groff version 1.22.3 -%%CreationDate: Mon Oct 9 15:38:31 2017 +%%CreationDate: Tue Jan 2 10:55:05 2018 %%DocumentNeededResources: font Times-Roman %%+ font Times-Bold %%DocumentSuppliedResources: procset grops 1.22 3 diff --git a/doc/version.texi b/doc/version.texi index 5d06d199..f44aa102 100644 --- a/doc/version.texi +++ b/doc/version.texi @@ -1,11 +1,11 @@ @ignore -Copyright (C) 1988-2017 Free Software Foundation, Inc. +Copyright (C) 1988-2018 Free Software Foundation, Inc. @end ignore -@set LASTCHANGE Tue Dec 19 09:57:23 EST 2017 +@set LASTCHANGE Thu Jan 4 15:30:21 EST 2018 @set EDITION 4.4 @set VERSION 4.4 -@set UPDATED 19 December 2017 -@set UPDATED-MONTH December 2017 +@set UPDATED 4 January 2018 +@set UPDATED-MONTH January 2018 diff --git a/execute_cmd.c b/execute_cmd.c index 9a073a3f..9170aab2 100644 --- a/execute_cmd.c +++ b/execute_cmd.c @@ -1,6 +1,6 @@ /* execute_cmd.c -- Execute a COMMAND structure. */ -/* Copyright (C) 1987-2017 Free Software Foundation, Inc. +/* Copyright (C) 1987-2018 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. @@ -5778,7 +5778,7 @@ execute_intern_function (name, funcdef) } #if defined (DEBUGGER) - bind_function_def (name->word, funcdef); + bind_function_def (name->word, funcdef, 1); #endif bind_function (name->word, funcdef->command); diff --git a/lib/glob/sm_loop.c b/lib/glob/sm_loop.c index 29dff518..3cbc84aa 100644 --- a/lib/glob/sm_loop.c +++ b/lib/glob/sm_loop.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2017 Free Software Foundation, Inc. +/* Copyright (C) 1991-2018 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. @@ -863,14 +863,11 @@ fprintf(stderr, "extmatch: flags = %d\n", flags); break; } -#if 0 /* NOTYET */ - /* Report from Eric Cook 12/29/2017 */ /* If nothing matched, but the string starts with a period and we need to match periods explicitly, don't return this as a match, - even for negation. */ + even for negation. Might need to do this only if srest == s. */ if (m1 == 0 && *s == '.' && (flags & FNM_PERIOD)) return (FNM_NOMATCH); -#endif /* if srest > s, we are not at start of string */ xflags = (srest > s) ? (flags & ~FNM_PERIOD) : flags; diff --git a/lib/readline/doc/history.dvi b/lib/readline/doc/history.dvi index d2cbc7b998696dbf4b848b7f55269041aa812cbb..32f44e09da9a8ec803c9552e74c5145cc09053d4 100644 GIT binary patch delta 383 zcmdlmpJmH@mI-o#7J3GTdIm;Th6bjl-3$y2jFSV|R5k`*W~`shyxcJ*f2!}jq4uRN!G; z4ivH5tgE-0oACsgDQ>lshjG*9i*Bd*8CQWtZiTt=GnQ^vOiSQl{54sz%6{{~qIh=3 z=*@~%Wh{)pHqWT57GNx#yzqX6q3tK}HcU z^VQWtLB>ijbJ_D>JdCEB7k)8jXRO+M_4gY##&z2dF)`Y5GtS<|$GD7MxXgiVSi zlT%WQlZ!HwW~3HRF3Cup?Cuvjk%jNKM`m$Jeo^J*oXn)6L?EqEHfxh&YEf}!e%@qr zJp-MIESiqylU-7iQ*&n|P4K;!S~S_nz|dS1B;k}exu7Utw{Horv2pK2Awl=_qQuy;~ruF8-Mak@pp+}w|`4-f6T - + + +