From 9ec5ed66405529e0d4d7edc5636c692e75edfccd Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Mon, 12 Dec 2011 22:03:26 -0500 Subject: [PATCH] commit bash-20100722 snapshot --- CWRU/CWRU.chlog | 29 + CWRU/CWRU.chlog~ | 43 + MANIFEST | 1 + MANIFEST~ | 1 + bashhist.c | 3 + bashhist.c~ | 2 +- doc/bash.0 | 67 +- doc/bash.1 | 17 +- doc/bash.html | 59 +- doc/bash.pdf | Bin 293147 -> 293540 bytes doc/bash.ps | 12561 ++++++++++++++++++----------------- doc/bashref.aux | 18 +- doc/bashref.bt | 4 +- doc/bashref.bts | 4 +- doc/bashref.cp | 4 +- doc/bashref.cps | 4 +- doc/bashref.dvi | Bin 677000 -> 678492 bytes doc/bashref.html | 64 +- doc/bashref.info | 527 +- doc/bashref.log | 28 +- doc/bashref.pdf | Bin 567273 -> 568505 bytes doc/bashref.ps | 4771 ++++++------- doc/bashref.texi | 9 +- doc/bashref.toc | 10 +- doc/bashref.vr | 6 +- doc/bashref.vrs | 6 +- doc/builtins.0 | 7 +- doc/builtins.ps | 690 +- doc/rbash.ps | 2 +- doc/version.texi | 9 +- lib/readline/Makefile.in | 11 +- lib/readline/Makefile.in~ | 367 + lib/readline/complete.c | 46 +- lib/readline/complete.c~ | 8 + lib/readline/histexpand.c | 64 +- lib/readline/histexpand.c~ | 2 +- lib/readline/histfile.c | 4 +- lib/readline/histfile.c~ | 2 +- lib/readline/history.c | 2 +- lib/readline/history.c~ | 519 ++ lib/readline/keymaps.c | 6 +- lib/readline/keymaps.c~ | 162 + lib/readline/kill.c | 4 +- lib/readline/kill.c~ | 694 ++ lib/readline/misc.c | 8 +- lib/readline/misc.c~ | 655 ++ lib/readline/nls.c | 2 +- lib/readline/nls.c~ | 252 + lib/readline/readline.c | 6 +- lib/readline/readline.c~ | 1257 ++++ lib/readline/search.c | 2 +- lib/readline/search.c~ | 570 ++ lib/readline/shell.c | 4 +- lib/readline/shell.c~ | 208 + lib/readline/terminal.c | 2 +- lib/readline/terminal.c~ | 731 ++ lib/readline/text.c | 12 +- lib/readline/text.c~ | 2 +- lib/readline/vi_mode.c | 2 +- lib/readline/vi_mode.c~ | 2 + lib/readline/xfree.c | 50 + lib/readline/xfree.c~ | 89 + lib/readline/xmalloc.c | 10 - lib/readline/xmalloc.c~ | 89 + lib/tilde/tilde.c | 4 +- lib/tilde/tilde.c~ | 502 ++ parse.y | 2 + tests/histexp.tests | 2 +- tests/histexp.tests~ | 126 + 69 files changed, 15989 insertions(+), 9437 deletions(-) create mode 100644 lib/readline/Makefile.in~ create mode 100644 lib/readline/history.c~ create mode 100644 lib/readline/keymaps.c~ create mode 100644 lib/readline/kill.c~ create mode 100644 lib/readline/misc.c~ create mode 100644 lib/readline/nls.c~ create mode 100644 lib/readline/readline.c~ create mode 100644 lib/readline/search.c~ create mode 100644 lib/readline/shell.c~ create mode 100644 lib/readline/terminal.c~ create mode 100644 lib/readline/xfree.c create mode 100644 lib/readline/xfree.c~ create mode 100644 lib/readline/xmalloc.c~ create mode 100644 lib/tilde/tilde.c~ create mode 100644 tests/histexp.tests~ diff --git a/CWRU/CWRU.chlog b/CWRU/CWRU.chlog index a8960999..ac3acbd2 100644 --- a/CWRU/CWRU.chlog +++ b/CWRU/CWRU.chlog @@ -10219,3 +10219,32 @@ parse.y - fix problem in parse_comsub where extra space was added to here-doc delimiter if the first word in the comsub contained a `/'. Fixes bug reported by Alex Khesin + + 7/20 + ---- +parse.y + - change reserved_word_acceptable to return success if the last two + tokens read were `function WORD'. Allows function definitions like + function good [[ -x foo ]];. Fixes bug reported by Linda Walsh + + +doc/{bash.1,bashref.texi} + - change function definition meta-syntax to make it clearer, rather + than let the text note the optional portions + + 7/24 + ---- +bashhist.c + - change bash_history_inhibit_expansion() to suppress history expansion + for $! parameter expansion. Fixes debian bug #589745 submitted by + Frank Heckenbach + +lib/readline/terminal.c + - change rl_resize_terminal to always fetch the new terminal size and + only force the redisplay if _rl_echoing_p is non-zero. Fixes bug + reported by Balazs Kezes + + 7/25 + ---- +lib/readline/xfree.c + - new file, contains definition of xfree moved from xmalloc.c diff --git a/CWRU/CWRU.chlog~ b/CWRU/CWRU.chlog~ index 11095486..fb2bdb6b 100644 --- a/CWRU/CWRU.chlog~ +++ b/CWRU/CWRU.chlog~ @@ -10200,3 +10200,46 @@ jobs.[ch] execute_cmd.c - changes to lastpipe code to make `pipefail' option, $PIPESTATUS, and $? work correctly. Uses append_process and job_exit_status + + 7/10 + ---- +subst.c + - when performing pattern substitution word expansions, a `&' in the + replacement string is replaced by the text matched by the pattern. + The `&' can be quoted with a backslash to inhibit the expansion + + 7/13 + ---- +pcomplib.[ch] + - new member for struct compspec: lcommand. for future use + + 7/15 + ---- +parse.y + - fix problem in parse_comsub where extra space was added to here-doc + delimiter if the first word in the comsub contained a `/'. Fixes + bug reported by Alex Khesin + + 7/20 + ---- +parse.y + - change reserved_word_acceptable to return success if the last two + tokens read were `function WORD'. Allows function definitions like + function good [[ -x foo ]];. Fixes bug reported by Linda Walsh + + +doc/{bash.1,bashref.texi} + - change function definition meta-syntax to make it clearer, rather + than let the text note the optional portions + + 7/24 + ---- +bashhist.c + - change bash_history_inhibit_expansion() to suppress history expansion + for $! parameter expansion. Fixes debian bug #589745 submitted by + Frank Heckenbach + +lib/readline/terminal.c + - change rl_resize_terminal to always fetch the new terminal size and + only force the redisplay if _rl_echoing_p is non-zero. Fixes bug + reported by Balazs Kezes diff --git a/MANIFEST b/MANIFEST index 2e9dfb77..efcdbb0c 100644 --- a/MANIFEST +++ b/MANIFEST @@ -315,6 +315,7 @@ lib/readline/funmap.c f lib/readline/keymaps.c f lib/readline/util.c f lib/readline/terminal.c f +lib/readline/xfree.c f lib/readline/xmalloc.c f lib/readline/search.c f lib/readline/isearch.c f diff --git a/MANIFEST~ b/MANIFEST~ index 3b2b747a..2e9dfb77 100644 --- a/MANIFEST~ +++ b/MANIFEST~ @@ -804,6 +804,7 @@ tests/comsub-posix.tests f tests/comsub-posix.right f tests/comsub-posix1.sub f tests/comsub-posix2.sub f +tests/comsub-posix3.sub f tests/cond.tests f tests/cond.right f tests/cond-regexp.sub f diff --git a/bashhist.c b/bashhist.c index d39dea27..91dcdabe 100644 --- a/bashhist.c +++ b/bashhist.c @@ -213,6 +213,9 @@ bash_history_inhibit_expansion (string, i) else if (i > 1 && string[i - 1] == '{' && string[i - 2] == '$' && member ('}', string + i + 1)) return (1); + /* The shell uses $! as a defined parameter expansion. */ + else if (i > 1 && string[i - 1] == '$' && string[i] == '!') + return (1); #if defined (EXTENDED_GLOB) else if (extended_glob && i > 1 && string[i+1] == '(' && member (')', string + i + 2)) return (1); diff --git a/bashhist.c~ b/bashhist.c~ index aad8e23b..d39dea27 100644 --- a/bashhist.c~ +++ b/bashhist.c~ @@ -1,6 +1,6 @@ /* bashhist.c -- bash interface to the GNU history library. */ -/* Copyright (C) 1993-2009 Free Software Foundation, Inc. +/* Copyright (C) 1993-2010 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. diff --git a/doc/bash.0 b/doc/bash.0 index 1f6b9034..cc83e8a8 100644 --- a/doc/bash.0 +++ b/doc/bash.0 @@ -265,9 +265,11 @@ SSHHEELLLL GGRRAAMMMMAARR If the ttiimmee reserved word precedes a pipeline, the elapsed as well as user and system time consumed by its execution are reported when the pipeline terminates. The --pp option changes the output format to that - specified by POSIX. The TTIIMMEEFFOORRMMAATT variable may be set to a format - string that specifies how the timing information should be displayed; - see the description of TTIIMMEEFFOORRMMAATT under SShheellll VVaarriiaabblleess below. + specified by POSIX. When the shell is in _p_o_s_i_x _m_o_d_e, it does not rec- + ognize ttiimmee as a reserved word if the next token begins with a `-'. + The TTIIMMEEFFOORRMMAATT variable may be set to a format string that specifies + how the timing information should be displayed; see the description of + TTIIMMEEFFOORRMMAATT under SShheellll VVaarriiaabblleess below. When the shell is in _p_o_s_i_x _m_o_d_e, ttiimmee may be followed by a newline. In this case, the shell displays the total user and system time consumed @@ -506,7 +508,8 @@ SSHHEELLLL GGRRAAMMMMAARR executes a compound command with a new set of positional parameters. Shell functions are declared as follows: - [ ffuunnccttiioonn ] _n_a_m_e () _c_o_m_p_o_u_n_d_-_c_o_m_m_a_n_d [_r_e_d_i_r_e_c_t_i_o_n] + _n_a_m_e () _c_o_m_p_o_u_n_d_-_c_o_m_m_a_n_d [_r_e_d_i_r_e_c_t_i_o_n] + ffuunnccttiioonn _n_a_m_e [()] _c_o_m_p_o_u_n_d_-_c_o_m_m_a_n_d [_r_e_d_i_r_e_c_t_i_o_n] This defines a function named _n_a_m_e. The reserved word ffuunnccttiioonn is optional. If the ffuunnccttiioonn reserved word is supplied, the parentheses are optional. The _b_o_d_y of the function is the com- @@ -757,22 +760,24 @@ PPAARRAAMMEETTEERRSS The command argument to the --cc invocation option. BBAASSHH__LLIINNEENNOO An array variable whose members are the line numbers in source - files corresponding to each member of FFUUNNCCNNAAMMEE. - $${{BBAASSHH__LLIINNEENNOO[[_$_i]]}} is the line number in the source file where - $${{FFUUNNCCNNAAMMEE[[_$_i]]}} was called (or $${{BBAASSHH__LLIINNEENNOO[[_$_i_-_1]]}} if refer- - enced within another shell function). The corresponding source - file name is $${{BBAASSHH__SSOOUURRCCEE[[_$_i]]}}. Use LLIINNEENNOO to obtain the cur- - rent line number. + files where each corresponding member of FFUUNNCCNNAAMMEE was invoked. + $${{BBAASSHH__LLIINNEENNOO[[_$_i]]}} is the line number in the source file + ($${{BBAASSHH__SSOOUURRCCEE[[_$_i_+_1]]}}) where $${{FFUUNNCCNNAAMMEE[[_$_i]]}} was called (or + $${{BBAASSHH__LLIINNEENNOO[[_$_i_-_1]]}} if referenced within another shell func- + tion). Use LLIINNEENNOO to obtain the current line number. BBAASSHH__RREEMMAATTCCHH - An array variable whose members are assigned by the ==~~ binary - operator to the [[[[ conditional command. The element with index - 0 is the portion of the string matching the entire regular - expression. The element with index _n is the portion of the + An array variable whose members are assigned by the ==~~ binary + operator to the [[[[ conditional command. The element with index + 0 is the portion of the string matching the entire regular + expression. The element with index _n is the portion of the string matching the _nth parenthesized subexpression. This vari- able is read-only. BBAASSHH__SSOOUURRCCEE - An array variable whose members are the source filenames corre- - sponding to the elements in the FFUUNNCCNNAAMMEE array variable. + An array variable whose members are the source filenames where + the corresponding shell function names in the FFUUNNCCNNAAMMEE array + variable are defined. The shell function $${{FFUUNNCCNNAAMMEE[[_$_i]]}} is + defined in the file $${{BBAASSHH__SSOOUURRCCEE[[_$_i]]}} and called from + $${{BBAASSHH__SSOOUURRCCEE[[_$_i_+_1]]}}. BBAASSHH__SSUUBBSSHHEELLLL Incremented by one each time a subshell or subshell environment is spawned. The initial value is 0. @@ -863,10 +868,19 @@ PPAARRAAMMEETTEERRSS An array variable containing the names of all shell functions currently in the execution call stack. The element with index 0 is the name of any currently-executing shell function. The bot- - tom-most element is "main". This variable exists only when a - shell function is executing. Assignments to FFUUNNCCNNAAMMEE have no - effect and return an error status. If FFUUNNCCNNAAMMEE is unset, it - loses its special properties, even if it is subsequently reset. + tom-most element (the one with the highest index) is "main". + This variable exists only when a shell function is executing. + Assignments to FFUUNNCCNNAAMMEE have no effect and return an error sta- + tus. If FFUUNNCCNNAAMMEE is unset, it loses its special properties, + even if it is subsequently reset. + + This variable can be used with BBAASSHH__LLIINNEENNOO and BBAASSHH__SSOOUURRCCEE. + Each element of FFUUNNCCNNAAMMEE has corresponding elements in + BBAASSHH__LLIINNEENNOO and BBAASSHH__SSOOUURRCCEE to describe the call stack. For + instance, $${{FFUUNNCCNNAAMMEE[[_$_i]]}} was called from the file + $${{BBAASSHH__SSOOUURRCCEE[[_$_i_+_1]]}} at line number $${{BBAASSHH__LLIINNEENNOO[[_$_i]]}}. The + ccaalllleerr builtin displays the current call stack using this infor- + mation. GGRROOUUPPSS An array variable containing the list of groups of which the current user is a member. Assignments to GGRROOUUPPSS have no effect @@ -2087,7 +2101,9 @@ FFUUNNCCTTIIOONNSS tically-named entries in the environment passed to the shell's chil- dren. Care should be taken in cases where this may cause a problem. - Functions may be recursive. No limit is imposed on the number of + Functions may be recursive. The FFUUNNCCNNEESSTT variable may be used to limit + the depth of the function call stack and restrict the number of func- + tion invocations. By default, no limit is imposed on the number of recursive calls. AARRIITTHHMMEETTIICC EEVVAALLUUAATTIIOONN @@ -4157,7 +4173,8 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS \\aa alert (bell) \\bb backspace \\cc suppress further output - \\ee an escape character + \\ee + \\EE an escape character \\ff form feed \\nn new line \\rr carriage return @@ -5032,6 +5049,10 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS 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 + 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 commands are saved to the history with embedded newlines rather than using semicolon separators where possible. @@ -5433,4 +5454,4 @@ BBUUGGSS -GNU Bash-4.1 2010 June 12 BASH(1) +GNU Bash-4.2 2010 July 21 BASH(1) diff --git a/doc/bash.1 b/doc/bash.1 index 626aed70..c0019229 100644 --- a/doc/bash.1 +++ b/doc/bash.1 @@ -5,12 +5,12 @@ .\" Case Western Reserve University .\" chet@po.cwru.edu .\" -.\" Last Change: Fri Jul 2 17:31:49 EDT 2010 +.\" Last Change: Wed Jul 21 08:47:30 EDT 2010 .\" .\" bash_builtins, strip all but Built-Ins section .if \n(zZ=1 .ig zZ .if \n(zY=1 .ig zY -.TH BASH 1 "2010 July 2" "GNU Bash-4.2" +.TH BASH 1 "2010 July 21" "GNU Bash-4.2" .\" .\" There's some problem with having a `@' .\" in a tagged paragraph with the BSD man macros. @@ -950,7 +950,11 @@ A shell function is an object that is called like a simple command and executes a compound command with a new set of positional parameters. Shell functions are declared as follows: .TP -[ \fBfunction\fP ] \fIname\fP () \fIcompound\-command\fP [\fIredirection\fP] +\fIname\fP () \fIcompound\-command\fP [\fIredirection\fP] +.PD 0 +.TP +\fBfunction\fP \fIname\fP [()] \fIcompound\-command\fP [\fIredirection\fP] +.PD This defines a function named \fIname\fP. The reserved word \fBfunction\fP is optional. If the \fBfunction\fP reserved word is supplied, the parentheses are optional. @@ -2102,12 +2106,13 @@ for printing selection lists. Automatically set upon receipt of a .BR SIGWINCH . .TP .B MAIL -If this parameter is set to a file name and the +If this parameter is set to a file or directory name and the .SM .B MAILPATH variable is not set, .B bash -informs the user of the arrival of mail in the specified file. +informs the user of the arrival of mail in the specified file or +Maildir-format directory. .TP .B MAILCHECK Specifies how @@ -7338,6 +7343,8 @@ backspace suppress further output .TP .B \ee +.TP +.B \eE an escape character .TP .B \ef diff --git a/doc/bash.html b/doc/bash.html index 16259301..7b12f5c0 100644 --- a/doc/bash.html +++ b/doc/bash.html @@ -3,7 +3,7 @@ -
BASH(1)2010 June 12BASH(1) +BASH(1)2010 July 21BASH(1)

Index @@ -736,6 +736,8 @@ reserved word precedes a pipeline, the elapsed as well as user and system time consumed by its execution are reported when the pipeline terminates. The -p option changes the output format to that specified by POSIX. +When the shell is in posix mode, it does not recognize +time as a reserved word if the next token begins with a `-'. The TIMEFORMAT @@ -1214,7 +1216,10 @@ A shell function is an object that is called like a simple command and executes a compound command with a new set of positional parameters. Shell functions are declared as follows:
-
[ function ] name () compound-command [redirection]
+
name () compound-command [redirection]
+ +
function name [()] compound-command [redirection]
+ This defines a function named name. The reserved word function is optional. If the function reserved word is supplied, the parentheses are optional. @@ -1856,15 +1861,16 @@ The command argument to the -c invocation option.
An array variable whose members are the line numbers in source files -corresponding to each member of -FUNCNAME. +where each corresponding member of +FUNCNAME +was invoked. ${BASH_LINENO[$i]} is the line number in the source -file where ${FUNCNAME[$i]} was called +file (${BASH_SOURCE[$i+1]}) where +${FUNCNAME[$i]} was called (or ${BASH_LINENO[$i-1]} if referenced within another shell function). -The corresponding source file name is ${BASH_SOURCE[$i]}. Use LINENO @@ -1883,12 +1889,16 @@ This variable is read-only.
BASH_SOURCE
-An array variable whose members are the source filenames corresponding -to the elements in the +An array variable whose members are the source filenames +where the corresponding shell function names in the FUNCNAME -array variable. +array variable are defined. +The shell function +${FUNCNAME[$i]} is defined in the file +${BASH_SOURCE[$i]} and called from +${BASH_SOURCE[$i+1]}.
BASH_SUBSHELL
@@ -2057,7 +2067,7 @@ An array variable containing the names of all shell functions currently in the execution call stack. The element with index 0 is the name of any currently-executing shell function. -The bottom-most element is +The bottom-most element (the one with the highest index) is "main". This variable exists only when a shell function is executing. @@ -2072,6 +2082,17 @@ If is unset, it loses its special properties, even if it is subsequently reset. +

+ + +This variable can be used with BASH_LINENO and BASH_SOURCE. +Each element of FUNCNAME has corresponding elements in +BASH_LINENO and BASH_SOURCE to describe the call stack. +For instance, ${FUNCNAME[$i]} was called from the file +${BASH_SOURCE[$i+1]} at line number +${BASH_LINENO[$i]}. +The caller builtin displays the current call stack using this +information.

GROUPS
@@ -4976,8 +4997,10 @@ shell's children. Care should be taken in cases where this may cause a problem.

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

ARITHMETIC EVALUATION

@@ -9402,6 +9425,9 @@ backspace suppress further output
\e +
+
\E +
an escape character
\f @@ -11585,6 +11611,11 @@ line to be ignored in an interactive shell (see above). This option is enabled by default. +
lastpipe + +
+If set, and job control is not active, the shell runs the last command of +a pipeline not executed in the background in the current shell environment.
lithist
@@ -12629,7 +12660,7 @@ There may be only one active coprocess at a time.
-
GNU Bash-4.12010 June 12BASH(1) +GNU Bash-4.22010 July 21BASH(1)

@@ -12735,6 +12766,6 @@ There may be only one active coprocess at a time.

This document was created by man2html from bash.1.
-Time: 29 June 2010 14:02:49 EDT +Time: 21 July 2010 08:54:57 EDT diff --git a/doc/bash.pdf b/doc/bash.pdf index 1e206e9ee6702c79f61e0a7f4e2a9ba69900edac..362c3d76a9c0692fffe50124254e573a81e61c23 100644 GIT binary patch delta 261126 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%0D;hR|r4i=+Gyqq7}nKi2C`KcJX`$;Q0EKc1}5T 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 delta 261090 zcmV)3K+C_R^%0x$5s*=Tkp-ABG3W*wk7OmwiboS$ax6NPDaw@sL6E{21ZX@gdlvZu z|40`6$K2a508L7EO-)rwCCd_k?%Vfq&bb%-NIaJk55LsUYPNOC&lhKN&-FQ3WN>$kR~DNyxd0^*BT?eJaY7cmGw1n#`E2nkECjbw-{pQ1 z!%d6znI9)E56I%-%(?yP&Y^cR@*M9B7<1Jv&bhjRe}@ejP2`RV?C2&OH=PH5==uSf z`=NN`dbAyPdE%?3USHzh2V^78r}d0zKTmCw(&Gwym` zh_oGn>V*tw{pWoZ76OLn~7~KYnaQa$CRzh zdfydw)xIaouVwyzSVwQiV|n|q=f%yNU*2B5{An>=ci434JjcToExD-oGg!)_JaN7> z#rD1<|0OhulR5L?snr+K-RI}~ zi_6=Kw^wf#S2x#>y5#w>O9F^qK&4Ay;m8-c0tZN|=`zfBJoe&A!RuUvNO$kz8dR6=@E>aYL$C`kb3AOI#KwaiA__ zeV4a-@s>1ydAcT>rrrskwjKO2ZPsF87RKOBKFL6*sP=tF>P9}35(vLLJ#37JRhyk~ znh!=M+7)Tp)^M(@ZuWJPqG5fTZ~BsK^0ez4_+6W(jvC1FqMoj3u#xH2{$3B2MO_w} zZJKIo1YCvU)-?=AmX}AXx`}}S=fVybg_W5JCe&MhOYR&i;xQc4l*3XcQ_`nrYe(nl0_%}2)sgjwes0V{pk zoq`Vrt_5xwJbWY26F==hZImQblRfYmiaupPn$Hu@)lV|6v&cw zo%QH+Fc=UX-MP-&tSR;*507jVJ5#87lcRZmr}@d^!@!M(Dp~a-$k5qUlpXA;u}C^l zEanHk8<_|~xy6zyp@7#UZH@5{_qnuLo=GIw*cuuD{!zW%r&?p$)Qk^fIP-l2XJA9j z#lCA7pdN2x+%@pBUKfG|EL2ZiFAVh3C%6tz7N|w=WL$>M0B|b~w5iLoo-yt`K=`JA z=PjUAS`m^t5(&-=Znch-NgN}oYmV!{uJdB|*V3tZnD$f#?;dMjD~g!c+ifwvgD*aN%koB_wl0Ot$$6 zxFC*?%;$3XY#K)%8kBXf@HQXlB2)~25wcKU+;k%k2Of_@jT!ej7?X5iL({u z2zG8DAyk-S5QPafVK$x``#l<%Z!jE$)l+6a8!U?;*@tA28>pwJ9RDR96X8H55@+!& zZCh+B34oZ&`??i{l9pr-7_>u;(LO^t04NU0{ZMrGR^UNu#VWGSpFAt>p7yzam7WM1 zgO3iy^f9giq>1%v*# z56FVR9VC-;C{Leo>AX%q%n}!LL>N0ZctcUq5iEa0i-U=Xx5Wlg=N^h?l_LU8U?v8f z8B*$Lm@yeO0-B|>P66qJCU@F@R5lnQzd-01wO4O}Dx{O|fOJd%6Er&XMv83dTwVWj z2EIySpud}o^I3w*-S-`#!KdzqCj%@k_2eoSs0+6zvGah6VCucO&l#+n3_)mqf0|j3 zQs#z(Fnco1Ryn{~-YQS~ku6*UgafTl^HGf_AxMG|N`N3(Tlnmc#qF_ws{y9;0&g#G z7jLgF7MCxeGrWBD%964m)tN@`@9}I5*&PRiXWP@B1+@do_5^2m2CD2O(8GyVF3VFc zhTa2my{Zi$^S}Udlkczz7Pzb!86K>&yhVv+(ToIcA5b+4*;uGWlI|xgG-;2B=z?4+ z;KDd^7Wai#JS0U`fJ-xfP^>%%jZ3IxzlZj5$W?+A1e?$iQY))vzF$C0C7cBP4+!IF zC7Vb@wMp+7LNX34;mSt#6BsfcRfI!bV20b!M}x>6tUSDsY)fN*%5J9m&dc%Gg~rTm zAI7?q?oi!=LqP)f&=b!;_BE8? zun;o4uBP#>`%VWu26+%ez#$t^7AW?I-aFw#KLZ_oERG;ok=BZy9h0ie{wWaKRjAYLGrh&XBWu2vEj#W_Aouy@21PV-_^x}vWX=GTsZY(FEw2d^3nC5JR zGu}i$N!cHPK1$+$Y3C-=AA3XW{Eq5946$ocO@^0et3UFmX;>)p{@srZSTRde@pA8s{z$8-;~9BYn3@5^}s{N ztC*SqEoHPQw1kOi#_KBAE%dY}OtUQCcOvzVJx(D=Jo3kX)}L+w84el@4L#8S9+QlZ zZJTZq96>H}JPH?B#5I7wyLvTC80dxsx&2yUE+~nZ4KnHC=Jo6I>laq{42@G_rlW$J z;4+RzOkjWqxr7R2D{{55{14(J8o2Z+_Xi{RiMSc$Y0{ax7pR*LUQzdjG^9t@wk(gy^1OTg35V|YAN*ZF%Xg5;)j!4sEd7tTgc+%W?l?5%49=cbf-MS zpa$Y^dnRyW?wctQ)k_K>0vy|8$*-mCser>;F$MZ00tL?JK`=Zj+jKm8`^}WLhdd0L zJ8q}*U?vTw!WCOPKPr9Qv>6U+Q1km5+<#|K6wzNhjr2J%k+yJ6s1x=M8NIbn&OH2oV=;7C(eM^A~_6Emq5hcdOWFHK8XF*)QCWQxfT z_!SO+n1T>!$)<1MmJ=dR7|tSasP@o#B|Yqifus(&Wa1}VW#pAuU5q{7%#F7rr<>9G zr1=+R2W%1e$E|-dI_l8*A34I;^D57zYzMltlhOEE=0jzrjVvuOPV{7*%T!eg*d_9` zJanmP5k0MEg$Yg0x{X3k2wgu``A1oj@=}Bde9B-H9ZbUTQ5*JB;GujfnG|gez(Ge+K^ojoHv@r zssxmo1sURp(XgDa6cFk`ovFJXlxw=*=V_x+$GpucDyd|cAG&N97|GbLa;VH)!jwIK z6V{8%76FuRy{(Ghj`WRm#jCT$pO@gtb-tPbm4N@L({HzGT6KCt9Yjh9pEn>zw>aQz z)U9$EGgpW-GCsLr1u=V)KF9Yya%r4u z8zNW?as{9!G%|AOG!-f*FpMJOLVx&wS-sN0lc2FNb$#DJaKD|)I*x%gLrdFkv2ohf z>s)G}$Hwm#VR>dawsi8(oeo37BG}CyCsCIsmIhXXIZJFJsCmPir^jU-=*giLPszHa z(sicg$6?pWmLIjo2>RFkZhzR<2i4SA4Z|R-FKv9lp~N4A4=+xRO`$MH*!66Gb%K}s zPK0mZOZ7VC<@LMqL~Jq}q-HkgY#$lJFP*N-p+X?dY#EoxalCwfUmqd=D4ur?zB5C1 zBem!c?`8=8L~`|U7ZagB?a2J!!}3@>j-~}3h-iOgJ{0}_$ZX}_7gE*$NcSx^%RqCiWy zcy*Eh`$y4ZyFsBtV;>L8#_ENC+u;yQOLpz=ecrTUdWFs^(z5tXir!;?w=oaIQ)q(u zpC4TuX*V-Jf*^&lli8dE1#5bf!ocg?2T{kTABb^AFBMPDwV=X`gGX~M`MTaygDpCG zEn|;T`N^qu6vw}NY7J?53TUC))CkGExjU3NQU9ZBSvu}}3fg*k5o15%P2POWDX16^ zjOI)ly>!G!lOVqHz@;-H918kS=#Kc{&d+_76UxNNgHU(&6c@T&oc#m7{s;Qi#G{j1 z4I2V9IkR^S!w)3@-r|BKIZ}8U@))Lkvxm}WT1uiQPyG2WfY_nNlVBYj z0x&tVejQ>FB@Dh;vLvS-b;x7b^5+A-Vq6Aal9^}|G{~#VlfUB6e*i4fWBii^FJph> zL=t`PuP9y^d81vZO81=&A_nMXhhS!QXADb34-aZvZfmh6Bgx$~EPueS?6>g?n_2fN z+uZ{}5CdbWsxtHB$&*?7k;Igd82?d!E_WB7ye-J>coCB?;osYfA1|1AfT%x~JM!7$ zVjj~ZBa0?00{=x?ABB zoCcms{li=v57{GCl;ttY)g%9v8*#2TqUt!&@4h7|t-!;ne(mGHk{AMD_6<*;(bDmP zIzRVUNOSk(lv3$~Iftkv1tW8oL-f#3l&6XC)ne0-ae}4lVMY4Gv_DLwUk7_vDNQTR zkA3HC4LekciUO=IvD1!Z*>`_kvz(e0xoc}ulYP5y$kda`-MH;e?#n6&#R-cuxq%n7 zgjU+_g^TGDK&^h*nB&YPX3Go%0&d~**tv4b)b<^Lhxg5}?uQ+m{icEcXh_}RiwR}; zAS{pIE45!92D>k#X<@vPr(7)Ctl9xw0gI1h+&9biH(dEaxI&pn-ba69(`eLG!U;uA z<5X|*_Uen5Z?8UIynOT84?tc(08(x0O|$LscL;cuSL$!^-0~#%?`M>}T>I$cB}6%8 z=g^tZykL6$b`%~=c}5dnY7c_d(t(GuSzY=eZib;BPK1~V-gq2YCDRFxJFsJDO?|Lz zp3|b_r?Lg8F$)tOP-1`52IxTT@C>44BZ?`&!bAA@oi;;%xZMc55$4ZHI}zn6fC)|F z)Ow0lg;-+T^ux5l&;!E!fMi}k_@^H;BB&;pFS{o2idMWhkpL+zE@`=QQTIhO7g7m3Ad%+_-;2a`u^gpbEsmT3N*=5^y4IUnsX=W^=aa<(PPhhis5`Wv) zjN+x)_lvLG^22q}z{S^fyY=yz02>*6M*UusN7L0e+eTUdWf4e`X_KQc^(x4LyeuEz z2dW1vbfKfHEOdV!sGTki@X!O#WNph!fs`r()H8j^(S{0e6Blt}SIu$N>&SDha^~HP z!x;c)QN2Aho*UmsLwmcKcKtYkRM2DwG!Fs5cVaFAaNkZFQVR#qSz6Hoii%}lnNwZg z&3|r&UTuC!0E*)OTL|!Ws}~2e1vUys%iJ(6lWT}zAC`Yhi0JyT-9E^oA%0z6Yu@!&IG4IvkZfj?o#BOsPxrBn*=O$h~5-?~vv^U5oH@yUcwuOP`G!mn`M#fBX zwP#AeZ_KDa5teb&07&jp9eIFiJ1>KTN@<2&+tpK}6@cWN zw!4L}Kt8D8V?I!^4WxM`ND6XXMC+MbVWEf=nlFD(s^GjRwTl(LFpE<#U)Lwxpi()y z5_ST=F^)(h=O9CxZM`4S=OejC_rRY}qLI&6WPBK>W=HTiSW(BrPO>mK&yUZ%00K_3 z%E4OWbq~%Nnbd#FgMdRV9Jhx;hezHtp`W#rM?sc6X0$L!TWp#jgP?kpx)dL`1K8SV zCWU`3V&i9lIoDB1(;h{ekuyNmM&BOeDm(*cjCmr zL7Azt&Veg+UQi;2ITkNpUH$#d+gC4U6%u1nMhop`9_SJfF|05N;bt6jvSDbE{mHI= z0F08c5w_IYu5lU=tj0Dt{75#viSsh5r5DF=StM886B|(tp~@8{I_f&Qr^a>Q7l>V&x*dO4 zDf#!`8vc@~P?B|lcr9}gU|k3LvHgkc`c=Rd(Cjg0Hopv{BW`z=XTY_l(Y%fna@PG8 z%;Q;fFX3Hd0YG;^Niq^W5pxCXATV>Ghv?)~fNGIs?3_fmRga2+q_qkIqp4#ciD~8Z z51`cK+x-L;=t+*UE8|m0_sdPYT@8OtCz+&#NF`?z6Y_{B<)2GTkZVsQCK@AI(92M1 zc9GGP1!;p#6Xvc+)3r2CWwENK!hR>agptuzz1$ed1vSi9!B~N8iG@C))QsY=w_jg@ zwPmfSAyfDDfaPyL^r)sl=(V(=mvW!+a3j1A-J}mcfIV! z_uo%0Twxzl#6Gp9aK><C^X2u(^<(cTDqBjCtBgkq%v4vP*2lQuo zp89cj0uF&O(?&BOF|lO@&8nPvvGo*DjH*rkx~aYX0TSO0Y^4r;*ARb4+JQ}FW|B=A zb{+kA0E$+U6Y}j+R}f_MSeKEYnPyOXa&{)tz^brM8roT%H1lKCwq^OFF~4_*5@lhA z5}OuCGjIlwW6pBxi{gwg3TAyFpRumclf_&N6E(jH2T=#3(TfpyS<9@Pc>`=v_NOTf z3NqGb$zoVe>ixc{2SI zYsMr}pwBsYih1HD=9O-GYFmrOAob;7r<;a;Yce6=+Bg?&x}Vj!_#-j4lC_{^Y?YG{ z2Y%0-6xe3zJsz!sqc@wC{b4x31O-!Orv1ICmopyAuJDK3VU~ZY=|>NmG!U05z%4CJ z2&AoLA$zS9n?5rfiE3vO$taIAGp!Uapn8y{m=Yy(vdj^YF-_!S*O3xpJ=oUulWri3 z1iNLF8=l30fZw`y+*}HMH66{|Ai}ZidpQW+IM3~Nl1M(+y*1Wcl^Zz+^~7vnRi+X< zrX<(Ft%=(;A5nh>cFa1K*k}5&M&?Y-VC`J2@eHMOkJLU=Lrg7}ujh`+yq{G_ZfRj= z3#4(?mp3s$xPY(dY@U^X5ocs6b!CaId>T$9{E?d+pOq)s46}L;%Yz% zSb+w~D`1JdD|qqx3laS{Z$$|kMK`ZS)@Ued{iw>C!Y+S40obJm{U-`uVHDTtf@d1z zQ}qsXuA%5eb`&A+$ODi=0 zI^|s-!zHkqCAD+G)X)_p)@`$%K){dvvV}%LmgFpr?%GKfWQmcuqNX{Lhg8+cJ7(0K zIX@mSr%s~GZ8Vhe;zq)$82-1IoQ|OZnLy4&;UUbA&DLx!fd_?7i8C1~B z8R13W+Nl8(mrk)7hUKXQyqbnVb!u;gHKR!5n;ENQ<9KMd6ZpVf%ZS-^y_T1cAf?w( zpRFc)CXSN;4~Z{Ac!q;sbJ3~ekSgU|+97dw=Y&D~&3Jg#3wb;=yBf|S)%l!5DNcXl zJjmc?E!_heS{zMYmAf(;aldWE{l+|t;}bODT~}l8;3fW1Z&wxO#7|*b-9M)|+Hf-E zmjLO7`Oro$cr;D%*M0u0ai3c&a57pwGPui78ks_n+QHq3UnV>RiGyGD*bk3BjM0{d zVZaEQ^g+zS*;8gDoQ^ULoB$nJ{OEt!F+4q&2-qEflW!Wg+m$!nqGMOE6>U4ww~-th zLsJV9%9(8AO!tkAocwmAfOg7?Mj%wx$$`^;=z1gW?mIEE4Y87etIP#|bSwJpQm~r# zUVqrTgq+D8+{kAIjqSHZ{`ITF@WspkPuHjq96*C{X59A6QSY4DzT)v+ ze|_}TL1%4JgnWRXJetr9Hi3VkSlKTqV;prz^bdEKJaQ}qDH7Z7AwtywY;NafLPm)+ z?3X|Qc*%^P>k)g2j*~~z#5F5TGqQx0pyupIBD!}b#oW1N!<(Q&Rk4-&K5Exa@(VO1 zfT3CTw_W=)cGYvxhk&8zU5k@E{aq2jDl24%o?uB;2YOJSq84(T$>e`y3b>tnnj*`b z)2LA_RH|it7|~)i(BY~0BH(6d>K`t>-Q@-`q=v@D!_Li^%npkct(i_<=1+o-w*`Ma z^kLHh-9Yt}Y%-`&RrKZog4RNf+}BGn@vNc#LKGE`d$~2sRK3+&Bra(VWSYjZx?M+K zzW#=MR*#!GG!(NrXrn#^I+ch6oXA%Ppkcu%iE5&o~IVDcm80$S!=d8wNM za;nA-;v|(fO##U$s9j28vAdK>t|jM3pP;YOXUi*e=G;jwCE0RO7=eu?dCr`9e0`Edm)!x0zJvcR58fS6^+II+T5h5ji-S2yxQrG{css`@i;Dxj z0Dp}#7G(ub@*-Mn4&oO_v&BDQA$XPYMDiksmlmr7o)?J}(ca5 zOUx_rk$Hl@&jo=kMKtHBdUghX)bAu=S`JE#AZe1Ogr;VZ>edO6CuvTIS^YG=Zf878 z;0GF4T~{~T+1thU!GSo)ON+v+b2c-AP=63GB`kt}s0WLyYC;g2CzQZjPZlIiNJgoC zog_q3rMJ3^+|JS{SWsdGeqXx%iiGAxF3f}VuI#H-R4$iIyQ;UBQQt)URTZ_nb=5_y zs#~`8IlORQts7i|B~q%R(Tpbrv5LLfdCQ6<%c$LWyQ*4z^z}&*6(~Og%Q5>H<$q^N z{-cvuiDCivCp&~vxKIk5LOOBl^##yR~PF1?`KTnc12vScU9ErU#l5~UuhxZ+v`@FCj!lH zo9+C!s%;Ln>Z*R%ZlkU*`(1~R$$#^xfd}nP-BowrFo%JlOGR!EL$omPF->N3NeFmW ztrjyP$RfTim;L%fRK45PdJSv(qDZ*+)oIgL+aAnqt)tb#vLwq1b+7c%m(vdY_^?Xz zp*I(M!|KbSi6r>i(0KND#wMQGe$&8vp@K z7`%&)eWGn$T7LjfB2m)+7 z>s2WNl?5N?yAvuCETP=_z{eYRKV~Wu&N*ZQX|==>mTA~Ob~1HQ+2R2<*G&hwV-9rP z)|;}e_d*il4M*{q0F0&i9)CzmlcM00hy<7>?9*?5`ti@NERsl6n#EcaRxA7Hhv@k4 zKc5`Gnd>77fRD@_Dt-fBzZn7%YH6qkf_}Rk;8C74V#WBi2{UEtG9?AeaE%S^D(bG+ zb>E{0mD^QxUG`Voa-&d6z<~(^OP5;(QmE5y(?{1;d(pHTRIK*7n|~QaSS|7x@V^6{ z_BU0f9*zAUPMNzy=x_`CA5%E@SPb$EBNpOAcr4c8!;%7Gc%X%0x_;gVt|uYpxr6Ie z7=&D}EG*+8?12wK8!hOfuUe%W4d;}x7`&)FU*k7;KAQ4`7k*WvTfYpv-e18w_0p&{ zCo*^pe!9W+yWM%$*MBB4L4HVzEcaLdprRb7-}PFywpoI=o3HGzxX!y>(_?Kjt zf13F2G!B&9w0*QT;mWf3wg#QF<@Hs)EZ30Qcb#Hn2LvZpOk=&gCe6*{SAx3;I2dotiZ3`k?>9R#kHV&e`L>KVM3gf@o^#B@1^~6ym zChfkLA%92W0VK97>jWqmI$OEEzADcV)zx||7XWLSrzM%Gs+L!fMV4T&E{RNOm!^Qb z&e@qXWrLygCeMgemkmh%qxvHBd+nfI1QqKDTVzmPr6J z35Qhc5$(#r9BF2jYN}4pHUq06pixrFq~|G$1?pj-gxH8ExT|L`U0T5een34UG@id%oAnr)(X#7->KaA29#; zWCT981XJ}UF*yY36lq7JY08%6i4xkNEfaHp`3D2K!|3SFbVR4pn4n_eAChBz#$| zsx9aPa{n*|2ykpRbk9NhppHZDOCK~J`IyuSoc6KgS8vt9_n6(lT6O2}Dfi9L=~`EA_K~ES%uc;-ukyg>p|}K55fD4Y-cgYMwf#= zr~p8@4!_M2LhLhT$3xiHkH8_KhR|df)h@krg%XNOcocZ0NT&qgcO@!O4xmKQ-G3El z32PZ#U4qs!!u=Mhs=BBDRsUsN;5+%&Vwb_+ez$(Q2>%L6gs znq3>RbD6rn1Zr?V`R5#fU4SoJl$;7>0-4_!!l<2L%LwvR2Bt9WES1kAleS3lTFGwoS6sAa>;c0-&?|&=p-=s*j z-B^%TR<(VY*$OmEt@CgD(E0N$b0tHOStRpb+B3 zI%jyxzz`-1n>OFP{Kv`h>!VqL@K9v&;@g+5WmOn5l!EG~I>r#vx!q-f4ZC%MCc~kbnld<{9wx)NXc5>adO|GN(wBHVZ5V3-63X z6dppap)d{Fi6MO3iWJUWw+?L4n?kT9+Or}vcjzV~Q#X@AcJ((MBR6X#yd zhJ65mDm-(|a(SoeYJhCnY=FVSdcO5=(X4f)O!G8JUCd^=2Iw2rz_zviVYIG0ghBwH zRkduZQmq5jrfN|IieTze-YjR+n_``R81Y8k2ZEC2*}gut#OQLk^toF5`erX|?TbVr z*KnaC84p_fow+YUR(}F4n5DiG!gMKQZjdIr?NGWCE*^b|VY6N8O$M!iVb?wAdI_xb zEQzk2%~gjD(v@vF8qgQE&NPTm?xKC$0$*0g-$K#{S`^d|=DdtcyhfiegtkF+4)ws) z-4#J6`GmVGIYtYL*rGsIR|jR9|s;ZJmjPc(Qr_ z+{qM}vQVt2X*Q=GPTgb&l0oJsJEo8|rBI=<&jTe+41d&P;f6c9-Gy$NNE-ipS(||j zJrII?K4&9dy22aH4KTEDj%3tywzDdlpbxti>Yg;?cNn6z-Z&v!zq@FH(-VLCxE--q zjfU3BcpV)yZG+4!!W^RS@5oR9idP!$m3qX4RrL7_z>yR~rf{QU*a(458-LxhN`jiy za;9Xj%zvKRzkU1s?H-BIZ+#nK)r^TflxqG!$dm8%P%{rG&+qh!1Ff%`Z8c`8467$k zQUx=;N-R`yGxQ5{+b;@z+pnoTIzXYS0xSBBxo8?3EvUus7y~0kIHVAaI}Z;hrb_IY z9!8hd77;{^EjY>QzS?xy{1A|3h*VO)*DVQPqJMZ*Wb>kH1B4u!gqIlB>jv&7eFGT- zuj*Z23958iaId-4G?1%uc@>oS5LED?k{3HGyWnCYG_s^>C~eZnc-a?9;@Y>;a&*dE z5kEn^Pvhkdi!3E!UvDba@Pn11Sk(=`5wk0B`oi4+TJr@Rb^H!z(E=aE|_3(*8_P7M?5nqfD#7%^3*g2?7+oPZ6d`!-9u_qTI)t< zhZChmp5JS*APeF(r^ zh7$TJo%o1)Ei|3Lx6A%E~8 zs~A1@FpBPsC6DvcmA)6*KTeuVMB1EXxKr^Fc{|^mw(psze%v@Ea3VU=Vj2!PJfE!a z!z_2t>g<2II=^pqyb_B>*_rAawEtJ;2ZT+7nHa7+bAPGZ&Rks$rr6-?9Lz{uVep7~ zP?COv$+IMN-7pkOPE4v}{S!>6mI~L=A5X4RtS9L7Jp^?F7Yf10=EWHm>MEB9%?oL! zc&N-Km-KQuAa`OHs$K4jvyx~}jaH~|MmjG04%EGfL3fJhYBb?m_3Y9^e7L>-vmR3zwhInPl@`w6;R%HQFJKf+5z%@4yB~jvUX~o zG<-G?Wo~41baG{3Z3<;>WN%_>3NtbwFd%PYY6>(lFf@~-PCMOKlSr}1L4@nUy9v9$;S%{)-u)QCxo-6q-A$jDFdkIr}MPWD9_!+~LpJtV8n z{e0)rKPP#{lAQjrf3Bad{^duNd>OCusBCG1;_US79?)~-cf8!v$%0yO*y24Ahn=4V(Sy?2v&sXVB|Nbdu zpRSYd=*@!j%)XMow@>KrS3(wwaj* zvD@|fj6CCpW|mu`3zl(KGy8V?)e~D~vdVKu$$k*@Bw~M7W=i>6y3yQC7nGJ&RaEZl zUmAaGow2H}3iAM*S|+xKW@(94;3BrF6bta3Pzak7HgVE?(@l47pSut*zk;KbgI_(mcU9U)CN(k$UdpTzPO;l= zoED15!Id)@asnge>9LuT$PA1`1CJ(#qcBlERArR(O_T2Sf=J$jBTJVK9 ztH3x{taj4W#td%iDlcI|@D?)BFKyor&4hoGlg882P3_Z|X$qKRhDnT-V%LTw#HQWg44B5*%+Jv=8ta3hn4qxYL;*d*;Rz!vbe zK+51IIKoODUFl5}HQ@&pcl1^TH%Vpvh{M};OXS_ZfY<);bl>VTOY;_eswfHAGqZp1 z=NFReJ87m5Q{+}f$!bT*V>{Ong1D-d8VbgTL*3KJ-leqm9vM32T7OOy_(@Lt-Po;+ zaG~HFali|g!*q2#L%3+R$-Wuju~R#YNi(!w-k;#>F49RUodeazL690fe;=dt&oUu$ zCy^iD|Lw!=haZ2M+h8dm9Upz~+pT|gKSY>Xx)=fhSsI@|U1!N{kf6REx0l{MKmN2# z+bTLgaJwINPy5Mck3QLS<9^$`fKkd3CP{Lnq%w~s#SD7cc0DDcW|KVNl(`*t{r)iN zu*r}F%ewFvGh@Tw+nhvatP!B$P&!dLd&6H22;Tc$zaf`H`a{fcnG9qaExLchEo}^{ zSH|ru8zx{dS!=htF|TPYS~(xVA)5KR zWZXncsKz8f0ja6H2pY|$jIDox3_h|19ZG9h7pt5hmiB|D>m4&3ponn~4{}-RH$MFE zZ^Q?giE%*(K=9{&3kMsGm6QtNbm-UOzEYMJ-sRp2(wAL~`${jrJCfU=5fKO}q|vK3 z&vkPcfv*+{UWvSdP`zQF*0G3qsulNO?7npx?+@E8Av0t!o-3QKoM(TKVKfeQSg=_l zJNV#fz$Tnui4*W>(_IU|dce%IpY$=BaZVm7MWD<0ls0P;rb2AuPGBe#n)~e{R^${; zz2tuU@bRzLfJ1eyWcpt|pz2qlSE+;x^>g`9!69-N@q9oEJ_IDi_ytG_80E=Gk3b|s zG*Ezhd=5k!44E_!lgWQlD^Wr`g^bMG=q+t2xf!fRRl%X3x~&OvAq`cCxI!@}nfu|I zRRpLjeEmPmRHHHx0CBENNc9MN$xc~C#o-8MTVkQ0{y zb5@HYmVS(3;}}4!-kh!;&wR$=jp8Ym@^~+O#^>Wenrhk$Uu;hcwp;n z>~v4~H$tZKzZn zfa#}4O7cdOtgN!SknX;+E^XJS>2=d6hWcz?DdS70%8!w-pucW?9VYz%-mo$m#!=;AKbHnNYj2r<1x&kc$8q+z znwp;vyNOWR({9$l=r)_yTyK7G)jBgmz;a$8ag8qGn=gn-brwH+qAsrQTHaM!iLPF)AdA{z^3u(^b*! zKLb?T*Xh+$N(080CCg;3T=6(Qw%cv8+tbr!I;47+Ib_=JDB|j%u&BDJlj~$h)JWH0 zX?uTS)YdFE){V*DKuiWl(Ua{6Zp_&@^=5&+-qU4AEB%@bt+6HCBZotjwO^2nvDOX!nX;WJnRm= zugFko8!k8mOjVbQ1g`#GT6c|LE-$x=bLD?aex6A1coFhSOU#I^Vk6V`r^Fnz}{^^9MebTIo+9gd?@9Tf| z81v(>Qk{{CX~27oLPhhktxp=OU(*;VilXd9;2A|$k3yX6KbejzMA$$r%S)D2hG|nX zj=Ob710!4LLCJBMSDEPM?n?S7woR@JYgORdwkYqUH=|SHmsuezFR`Wg75pWj?sHNH z5kpNNv8sM0H#H z1f#yOqZZrKG*L-HCV2>p_PdvxBtkm{Qn~W|V|VsZb;nfn-sKu8aRWa^hanY1HNM66 z5?zh7CjF5!o0tbFQK^fdzb<{dj6eZgeNAcS;jncMx+t`- zVwSR>?zp&OwtHBd4^^^ILB4kW#px0CaF>PhtTv?6m!YkShgTP?({_7AJkxJnFr`13 z_;VeM_>!mqMhumq@IV2);BS9k{LZe zZivlu##uxr@mkB9`Z2B_0@zu`GaZ)Cdr0$nON|#?$f0-503pgoM}S&_=r9jE9Yk0u zF6P@Rbn{PHYZ-pRt0I|z>*W~%J+b%`Vb&mN%^3%7k zeSFK=X6<98kdR~;DW`f8bL>tf`=jpt|K}+VX>j2>mlyM#44!`yDKwtD_{j{CrghKY z%DSl99meg;kvTHFF5hC0!dM`?%j;siC@vaHnftp>rh`D*Yl-liOs%BFr&s6- z)p%_eFs;$ig37L6=`e2XtBmnp=9EBPWEr&sa~1Z%Y=M8r`I!-F5Hbu@`4xwgmLjt< zRJpX`v9w?wP}3<37JwzbmiDtwpD+mmQiC~k14M2bo2P5j`SlgD)+HM$kOwZ*gp&3% z7Tz_pl9edIe_2PPi)g_OCgihXZhh!PBJOEZM)$syps2N|s##83G;cD*qvT!H0PrDs z-=%-r?ahBi0RsrpJ#N345=Mc`8DfxE9<~@M9^kCPcINe2i<1hPFmtCj&bSK$jcq77 zABh+Kj)PT6O}}z>D}zZ?qQI?-D|Jv1!UyWH9rQ{HFCv7({1%wr(4xoGgSB7bHv3es zN@*Dg9wnymIniPU1;@)43YPb#JV@c=rMF%D3gUl^*RM-uV(0pC*!3picBWHwuSIx6 zF{gW&Z8kkN5M)bxX6^9Q_0*bLv_E|a%?pjw4Kd5sB14V{^UzW`Jl{{lj>aCQSFOd9 z6ZfBcQbFER2xEf8bj0xKsDDkGCeGsr2o>xS$ znZhoOVvsIr6x<}S?fmOPEi;!524Bb%1`lhDyGk@iREwWlh}nX|-`~$96~g1+J{%QH zQA=*Qk}+>uMZq!he`+jw80*Lrm&qG~*uj5u*!rMlG#W6cW_xNGYv`vA0WyC!N~p_B zG8Tl1@Wo9Kx_yMlu7{R>_%Krj4b3;_1c}I!u{X-GGDE=hl?N6z<{N?Gi7A z{pGi-5s^qnON89cUGh7Jx!=tqkf7~xZ^plz3qhZ*-zB?c>z+2m z2c%MqNJ*VE^P5Ffu5#LQ^#OIZ%*uZ}qj+6fGZ{7xUd?&aZ4YX$)n>LEf}lx;a|}~g zdO~wKvU+$FMo!*Ek@SY4d9gbj`e!C{%bULKaOc#M>Jad(+a^ZLO7M->X)uT9Ntr| zM#b7BzilZPjq9P?>w);mbX@|Ly*6;78~i@2XZ*${ZlvSoO|-5xc3)`4W!jz7Hg)X6 zZykSMN=4qYl-=c@!=A0E0YZP`pWP_4qms^l+~9}2o+kR~Ug#E_(@iDA&{Tze6R)J? z_h^FWWu}U^z}+(%Fq{imIrnf6E?k>+f^Sxj-i!5S`uo&VWR<=Cj%oFnwKWtxVI3ln zsO3e0Zw530_1sjMRs}QxK*Ii~o-adOEry;Ssu)|Jbc4k^$+&OV-ETd!A_?UuIeoG! z0Cb`%^Ur_(NAg_&TtK70Gd`{W@2{zaOD(~a=iu@$2b7zPYrihs3V$l;v=6se|ABx0 z59O9PDwDur8v{2sGLzn6L4UPcYmehbcKsUkuiz#DLIthbVili85M&;0yBBubo@v7g zx)%$!#2#^1qGXX8O>eOOz@PSin#w@Z3*`+s<$2S}nqL`5Z8 zSw**-i}>}c+3lY(5ME6r%VbsJrQ79&EGw3!(e3dfe*g7-oZQc%*Ysv81T(M1ugnwr zeV%emnMQM&)3bzSWum@bY&V;_TSoVB-!$~*@84BXMGML$E4VOYy}NpQ{qE|`?e%vz z`X#&UykrvN>bD-6^?#NgCpoL~s?xuvjGMWR_cIpVuGBQLVj>rbeub7pZ`{Sdtea@r z^oxDF8@BsCTGUsG*1N0z!}dgJq2wSqhQbbX4&qW#n5iMK05Sm_kSVk2Rx|v%jh^uc)Z0w z8Z};0N|xqkpMqt2u=vxi?t1#%?JLh%UKVESn6=Q8?)KY7)Av!kjJA)_uxiYL`&~Ut zGRBiMkB=QTh^^=u0g*&OBuNEJjG^LBjl%;BSXQMq{o*h*G_G@YmI=T4w3No%ZXqy% zdY3byrpa<9d4FaW9)GNZc@jU*UEHqg2RI3ipj~{NiIi1kmd5q^(Ad3w)HdSID5J7=NMpKyaCiS1U>yn7R%9>z`_48Oe^qc2HW>S97*A$psC`u_T@^9TW2znvB= z2k6XL$GRQtYQ~``5+)O2P4RFDOi^0LT8p;pq3t3YMSq+6Nx`*Oo;0H;^yyskk`-BQ zeS+!z9)bVd?vd+Zhv;#;SH|={12%?cziGRAXqXz@emO_PmD)epHGn-F_8ozFIP~O{ zIvRPNhHV_~K4CKVs`6am7r}E@*ObZ)KO&!csGCVX7+Rbj=IB(M*3uqmyU}c`BzbaUJ<&@2Cd%!4m z#A7?G^t#k=b5X(irME!cjbaw=uN?e2eFGyj$A2hTec>RhiKrO}54&xzj9#y!UA?b2 z4RF=7**xRiILKO&_?9SnvBuwue;>DNusnr*C5rgif1&A0RIH%2cu(Jrp^&jsa&GCs zj(>tB?jj-nqkibHI3A(Hvd3RzO^N^dKGvx(7@(r(Nq}Z${r@=&Yq+u~t!?#QC~Kea z7Jt&8U(?=u94X4rbr&Pk%w!SkY-57V?K;z@3wAxHgj43u^9f72CY;+9P`pIcCx5jT`FXy)EJv> zP|T%>QOjePB{zF*v>4FaBt?J~^@rVV-8RchMWqNK$dDCA($V7AOA8cSvV>dExuoR1 z1fk+=96xNAPZLxl{X5^71RHXk&Jh~Q3OXV$Sm8D}0=JtKnnDO!{;Ei*I2hcK+J8tW zx*g=!)2fkYh!iwwCezBYRta5VU{NO1 z^;nK=N$VYu2A;G63ap}%bjh7+jMr^HoG6Z>kdAV}_8KK{jG3T^0vL`>(?$QSGQ{65 zqlcNmt6ZepGy@KB*^1$b$kT0u16Gdt#ssTBdcYP#{~8HO(1 z=g;nBKiNsaGM*&G^C?H=Bs(lI!>(DhzvxU!kx8Fu1=cI^pd%FFSD^qjW`CEAGDv_? z7QIruMGq>qdQ^Lfb;Hv>#DMaPi<$|+nG z)C2~k4nvp$%|Ob4m#(<9aqTQ5=Brl-dORMKi<5VEAz-40>~?N3as}N zfkX1$)x|clu%}$(dmLgc*c8X_PTtNu@skaR&JzJGG1A~~zWesutDD>D3UUv~s#H2B zzNX;qw%xq#Pz==Y%zwz+1y{M&u(U8AeQd&71C^d*3_mcH6PF6x@bvkyv1*xBzjbi( z>~YmDRu-axB!oQAt))*Ur*UO|E+v3e9eVym*rPVn*oH_brI%$&@u>oRx&#CX_kERq zg;&pa9p)*-NA7d+`MyJyiJ~6-429{{7ci-+z3gdxQ|!iAVg8*WV~& zM|yR-2B^J>2s*EB-cF!X6iin6i)rDG^1>z1bevUGB<7`(%@2($7Cy9HN8L76?v6!# zk_f0bYp#Eq)MPBpTs9_K7>2J8B)wIMe^jxJ%?QWsrU;p*q*DVb&bbzbs+0$e_RXel z)w&j|nt;*}Cx3T(+;!VEMu%)U^jI^Zpd- zqRhl}Oa*na*!D1-!VKw}S84Tshx*)f5FuFsUw|hbQQOM?!m<$tjD1PsY*g3CO%7^hlQjrXXRia&wzsZ$}VUL3q7+#B$`OV zOi)6&2WjAkAI-a|H0>@X6IXnFH!Aq0ugb1(zM9sJOmZ$Ox1ApjTkz0_NqWgxk+~>M zjp9*tmw)bXBhtooMoukm?)G1pPhf#z)Qd>-YBH?qMJNqgucJ*py{vB(l>u1MlDWeW!NjSPtrHGklkq)dZGhQ+Ab|KonU!G36Gs28>$ zI&;QiJ9<3OcU;TX!(w%*%GxuF&81Q(pIPi3t=4rNjp{S!DB210LNMroK*u0imf90n zHS)YxhEr&ku#|K;2&31FSz_9hD>^lz?2}coGB+LX^piducqDTP)0EiLiddE~uJ5>- zReu4fK3gYLg4_N>9G2*n?x?fO%fGi*UtZr_pHYbj3BcWD7Q6pd-Jifcgt79?<^aiT za4Irt5{t1Le+HgO5WZtF+!2J}n|A1%^&>NR9n*e8#FuJx|6~g^tH@Wd({@j# z$iG}5x3kJ~rR|Ma??#U<{OU!!M%iQpJf&EOn2IGHSg-O-t$GiAHzn>K;;84b|Zr)SvJ4OPP6(XBT^poQE@(c`- zI-y{KD%Y@-Gm~ls71CK{GBqS?pw1jUD6yeW1tj!=Zx>$%z~feBs`l16NeWQDZ-3?d zE*LK$?ol)Qa^pu9s4(54G`b=KqBBGQL7)3QyhsGzE~hj=)m>2qX$+YkXd%Q5t9_$a zK*-rNuv6FeoBoS49!c_ySvdt3>=*S8@TK`2E2Oz$1=Ernn*~hIU3QKyeNv{AFHgc) z$=X<@*BrUr9v<9JS}(GyNcGW9Du0~eoUnlun^Dc-RHNhv0Azo@wcm>vcn+B?-2svwv&M#?xwa zcHNl+|3pvgT%hUi)8I3uICj_@4 zGOYkVEgCH|v9^Ef?EQkmm6KpF^X8H2lYeK?^&`DBKIpC|2!XnWuSW=Z1{krK6j`)% z@$8qUCq*uAQQYr#O}#g`SATsL2hmm+06MMcoJ5DJvhasnNE|_4x;!m!(n{%=-@0bI zR7!Ou!^}+*UDYkN9a!X0D@)(U=A`)2q{b7iD(HZ!6eDtzu(vpsWy{B~nN(R4qWx+M zlKvuNwcYMOeJ`wS6PXq{Du+UKeT|iX-$#vDB#%dG?@oGQcqBjDtAE$|fBj^u*!!6- zBM`8XP!US5D$}{^s#~nL{iHC4w(dj5i+16OAmaRNv?&5G(bkZZ^U*{RVS03yFf|(& zl`frmPTJM%Z+sU35;<`!Y${mf*|HkT9=BR`2t%M$omY2Y(~l{9(s!d~>RdFe|{E%-o`FC@(PGPu0M)jcz-Xh2@-3?tArrUY>+*nc!k&Z=slwCjsG zZgTulhv&9yf`3ADZeM;m$pZ|gU3VNu>lc%jRT(nFuf;gV=Fgb^MU12Nkws}|`^Tx% zq(3fyc}^=Q3!c3g9otcKcy8XGE-Q1_ageulme#Nr(>Xv3NpR0BxFT2t)dtO{RaS@@ zd+2WD^Ep(J%R!(zdB8OcOACN$4-=au`4!SY(cqNA6Mv+6A##VP(%d1resm!}VTMvv zo*9lU*cZ$6=b`p6v70c3kRk}f-<`C{6XC9mYGtNYZMSTK59*yy>r`V5;wUBOm*!&Z zXs7C)*f{odVpH9SlZ!cm3b5yv8p75n#S_T|*O#B|fi0O+O`(oa>$Gg(FT0JASfwoY z#qqyRj(s7x}ENmog!j)>BtRjICZTQN}Tli?~; z64yK7r+^aVm@gA8{iz>mZ#Mz^6Q+=;bX;P5hJP;qVOpI!^FvshCN-ianO=UA>Kwoh z;xl_m2TWDw7n+!C=4uE7tF<{$7P=E(WGGY5U8a-Bh>5cyHmVQExRB95 z?esQoiPFK{wjb{*d1+UdfhHAn-t7*GKw>V4=QiXiZ7Di~175e7qL(?rtfwqs4=~Z6Z z+o{`SV=lizQqXYo6cH5g+E+I}Mz3j)$Re|Ok`~k{j0K0a{%}C1PlU2{n%g_*1r2v~ zd+`JQ`(IAR-#%q-WOHA5eMJHe~%ZxUl931p#NHJgEw~<^EhHjaJPcD1wOfZ zxKIX2kkKH^S$`z*;BI>nzPXy+{TmFytAs@f%LTl2x4vK^j}ji-Jzs>kZx7+2nhMISu0b=}Tr62)=G!sq_)vtRFi0Jn1O7Q86uGN0dz7yag(i+?+@xUZVWx(t5bx5HVKy*jae z-R_rvX1#hwV*QXtnTTVPlT995!W8R*#!uzN`j^;NW@F_GRz{i3-WK zFN3NN@YQyOclIRnm+(|R(+TVxASB9@Q~Q(5f`4!kwoMrfEm-c#GFVrS)zBZLGfk6- zC*FBqCI`+&2Y&l@ydM?+&v`fHjOe4j6zg(TZT0bwpPbVuKj8;SqujEoK6={)!?TyU zoao2xW(0eexWK8BgUgp-?eaQ>2w2m{qsY=UBFu~8eiB6yG3Juz?c0Mm0zafNH5N#e z#DAG|1;g~IsaEZ}1V+BO{qXJ0^>?r+{QX$mhu@@)&Wj z9c6^uTCgvtDG-CN>B*za86y#)_AIhEIW#`B`wq8v_mY@PeOVtR)1wh5F(Tas{L{oq zS)YxAN8)W$Jch!XsQ~@2v8FuA^DLbP7Jq|C6Ufq(8CWG;$SC-+#_}#AhpZ!!CV7;_ zneb0Cm(XQ!2T7XS^BuLkR7P8>+LwA5MUUS zo5jlQO(NzVKt1c)dOpQs=J8MXG7f^`1cT&}ewY(vN)S+x-9mBK9deh-iX;zTc7H{) zF4s_n`+Ys&?W%$^mjz>e8GzWT9^{p;L30%yJb!G0O|cG|b_kYb*#tXSTsA|b5D}$Z z(}|Fh=V}d#M;(+$!d+HGln|8lNpBbQLkHWV#Z`%JEk6gvXyZjVz8E4h6rJkmUyb8p zZuHe8m^_L-s#jZ1V8wi#yn?KFu7Bz}SQUFn2#kgH6HvBzj0sP}pA4guG}4FZ55C)oq1k8@k~1XVG;)n0v+d*r}N#sYXLFI~Ess0DsBIe0{D zl0^=R<045Ct0A5W=$-)PQ`HZ*Lal}a@B}-vcd#xS$+5_(2WZVe%81FeA8~Yi?aEQe zE}H0@7gjJm6<$Z>w||n#Z>S*sfg5usphOUEv+Bu-1+U^K)G$6=H>d-Nd0>S<%C1E< zyoC&z7HAs9abnZ47=Uz^GYBbE?JV36rJ~kE*&FenfI@ZbYA~HeZm^>aBH5)8Pi>_} z%R$jWqV>p(5dD2G3&*CM@-fg-&W(d0pK7Fx41UOHsKgcqdVk^^^V4;?_d+gQgp?+$ z>Y-|aRlD6{tQKKkPFxURJ~df)!Ua$M@)(l9^}i;!wC=%1#f9OyI;OO2)1NC1Wx5kp zBX8eczk3(FnZX^2G$Y}sn|HIEqLydj-Oc;pyAMD9c=i6Dx7IIdh0rugOdP|-EK)vY z2_Hueh@U}W^M904c(rp*g5u4X4I$MtE1OCvlga^w5ww4ZWT}Jf9T$q83G|$Cq7y>< zpy@dZ?i2!`*UQMkM$I17hAWKP9+;yfb?+wHT(#B>5rj5Qh}$pm_WRJRN)rp!CPD#s zH&i_NdNk)eKiEent~&cAoLq5k25pky<4V0PK4W#+H-8wVwy8fO>6}77+?c&Exx$dj zgnDq`VrB9%te=Cpf>`c#3uA;OEcr6RjKjcl+@`7ozMMqnB78=~$y~*_#B_wOgVqhU zvdnUl(7ktbSS`*_exg9`2T(>*{^E@X2MVb;w6fy~fSGzj%~4c9 zMSsF=K(QQD!?ab)GUQ!@%BmU4$8tIvhs|9vFRY>fQJWL5ZO&Ca2Wg>*7~E(kh)YPs z89$#-%x(qvF2_O+N@HT@F{hN=eOT{RM<$z;19*rSVG7L(;v=vUMh_!F^2T4BzRPpX zIrVzz97=$UzMe{awFnns6h(^}bm7o+ zdM=(3E4hw=h(#zEEr@>B7)o+#FEQ6Iv>jyGuC9hbmwNPdS9VC?(B7&F8$(Bxc{5Xz zX#hThvoZ)e9}^P3tjZmxD^!BXL30viS!!73)mQ(Rd@%qL1duz4+#6~D?ezi;c7N5F z4hroua7ilV45wEXO5+v^ZqoJ?$9gDk#uIoZao9s4ui6R5sE10`f-^nTM_6v}hc?6n`2emf2}yT@{m>0=*44+<7@!i@pi=Cxt#k`ms9k zoT+g5yeqYS8{sN<)8Dh}%a>i-O_u|4rsM6AM1&jXsBQ$daopZHLJ?7Bg0w~@dTKUn zcktPcdvn!h@=euiWaNDAglctf9c|AJTeDt`ta9CHTiFDiT&4&3H;oz(wtrAY6p9&? z?;&{Jl-O#TPDCm~rwy%)L8>YAR}jh_PH+eR8w%hKwB@F(?YFu-v1JbW?4s)c&=sV% z;(I89FG^K?^I9d5wrJETq;6|&JqWH?cYtRmX76|H7mXOmm zdyCX61lydVRG6rQG{;fO7i2dx0Xn7uX~H6&bnX@4$$tRm+WK**>+ z9y&W?(%29}=(%HJ#pLMg3v~@R6G8=FPu>;oQBYuXF7aSF)vO;%HXjp3mhd4o1$?GzSiPO=#T&=Oy3*!+tGO1x_^jH=#acr+x=ECvh1+5 znFKS{HkdD7hefFWkq8;bEcW~9)V=aDwmg>WYlnHlyzfgAK_Ji7M<^LYo_b}0=mEM) zePoLDx^G?-^Z@m z;@Yz({i!6@vwuyNFyb9fP0NXzmXpLOujpsDDuafH+KNHcr-}Ozkvb|EYO*lbtvcva z^n7i8Yk@-S#5j$nyw30|_n9fpoMU8IKAPFxD}tAWoD=(9STgbi+TJhjm^@Zre)Z%x zi)`;X&SJtwx1od%;15qEe|1b%jPKun3f>g`X3irrn<5jQF{nc!jlugL_K-S+%Kfn@di|`lYoI612s7`lb(S?e{FNy#u5ImUxB)w378QtxWnPC`OwI* zk|^WYZp5^mkvbWW1VzLkKm(*? z|3W{(pTmNJ*30yIQz%c6+u z-OySj%B&P}{G9iqVkN5Vyc~tlC*HECn_aQ==8s-e7hcnPo2D(iWqDWbx^u7Dt>LBJ zIS{GII1X%UN5~({^-pMuPyA}_GmsO zEDR*;F#y{o*BSWnh(%FojM^2ue<4aOmL!197-YV8)Je^j(=a5jSG%(I7R_b@swuz4 z2@@g~{flIqw*#aZ7vWw2C%7NGn_c5Ql)JV50h-k7cKNPQ#wBP3DNBvHX0%BFM$BX+ zdSHZl|Ulzt)ibDj@e?@F`_~5!s zq}FAq1leh^$6&Yxn_HJ;XlfZUX|3gd_si>VXIF1tUk@WL0=F5FH~ze+nu&;55M-(U za64g&38pdtbfNEK@DjWTVG_{V|DYWmvjcdp?#d2)c;_`M3Q-l5`7k8S_C*GkPhwI9 zS0EFA*n;;9z$d)A*>}pHe?`5hnhrLtW59fB{G&dcw_x+`m|bEPTi(6#FaP;=l1SJx zPyCD5*I=R%{Y4T?6p2F{C1GzPhle>(wh&Qot{eY)TP#Y&waBIT;VG^a-0Xr#6?ZZ- z)Z*=C@8L>`5mkK-`hCR~r(P%wK251#Z6^}zkQA8lZkY#BvF(w5S;89pH;fMj5DTH?R*)b0NUT+&L4=POuBJ`Vf zNi2qH+)o64lf-^r?F$UFB44bXDC`RSw@#P%#UCvM(P9lL8I=n&0lqXOL3z;ptXEh^ zd%i%4u!h6_6jBM3X=V_3_1%bMAP_{9nAD(S;a<@#*ih(ne;`<7)@jQeY{R_SI#+oF zSxUyXE-?C(V7F%nX(;K_(DN@T87skqG!&R{epUj;fJ`~?gtCZ2yMWlrtjh2ArO9S0 zNH|Cg0~>I;6L8!KxQfs|RuPJvG>(mid|XUv&HTmiE6Jpjub+$m>NCdJ&@&0sm4^T9 z9Me-xryW%nNoFtzBtB2Be6#2GpeVm;y65t#8FW=Wh;T(~&X2v0K$a0H*B zgN*jhq4tnN^jT*)PEUHUo%CAB1gYU05MHf@SchV|kC;QO<059KxTn+@WnV*8bWTh( zEEWba+HEm!5eEffpPl`Y9#d=?u-?}d+3~0gjV5GSf27uZRUOshx2D7z38|&oLtd`o z$vv?gB&?!Fiqx7mZFi9NB0%AZ};mH!W1v7(@@Y)>K+ydq_YJ@6<`ip;g9mE&*NP7(N^~R>0xi_^QIrik8i+Tji`VG!TfbxlJ2!+1R_XHX3pb34)&1Qmd9_gG~YA>Rl~ro`%m@|OYCsmrGUc9*~!OK$udpFv1AFP)FK5p zTQx%XcYX&sT=#T;;Miu1gN4C_NC>FG3}@*HQ7|68q?|?yIf^~kEyK_O5mX()XAF8E z|4Q@Lu|dypzH<)rK*+~|r!#BOArI|7mmK!$(KY zJYT%iL38Wp-DAC2w@uybJ1~noe*+xE5D2o_#}AHgfwMR}8bdX3&A=r%Nv3~vi?-bE zsM194>?LtMk--6Mrx2O%3>s_TvAimOSHYt`=2EcG%(R>W-r_HfO#kH1^KL!d0rWj0 zu+Phm;sdLG(U;l7AWvAB2BRQ9H3klW+L9xq;D^D?CyQ+_6D5?R)dbc1f1^^?)4u7> zhkMIF6JdJG=Ofo}TH1=WEfU)Ez&l`ISc~i_BF2-$hDfi;k}yfL)AodAQ=5cwIqWTp zews2A2iY{1!kGW#sQCp)U`6iKmZ9z&iAYp#u1C}f*@UO3i~_tDn;FW@$Qr6@gjSlT z{+&7s@bcA8opJzncP*9#fAHqKI80#R2itc)9fCkQD|Mg(OK;nvgH@E#vkV$6(?{O; zZ?OKFh=7K~x`_%C1lfSIAIh#c*Jl;(PAcu&eMbZNA%J<5F#cKa9d`}TN%bX;alS5$ z91MWo_9*PeKhM?lC*YCa-5JwSCj@V%wwag;QzV!7o?CL^vOKfKf2rpv4@)oO232DU z8pAw!)YBjHc)u5Ib3k_BhAi#l{?}7^DA31<7lxM<%J<&8Vu_%|A(Cui;@V<_{s_ZBzo%7jF) zJX5BE*F^9Bb9W<9fTXr;9p)$1K&hAqd?vA3oSy301w>2GpIG`^n%`j)Z$XI!tCYVl zA)EH~77>VgKZ^jKrVv7I9<+nZyQn(l`Z#7>@?I<%#evmoe_vIff)o!^AiCsJm`b$t zcZJv63r|#{-YrH09M0%{4e&FCyawFW2TkFC2#?=w^#`e)fI`IxHp}|VuE&c+o{+JF z7o0MInHrTulnEeL*2 zJs#DV&-GMuSg!xYaAG)OZl%pDbvNP*$2T@$u74QialxeJ@NreAAo$576EpE?Ry)pV zeP9uxsiSz{*m{B98M1a9;57M(ip0%EKGTYf>;u#venxWDP}K}+K6VEsSqz(WPEe6_`;yF1 z=ddPAf1D{f^iA;U@rG8wi~R`a(;e-Rljk&KVZYY(50|fA(JddKsmP9s{a>zLDHg|C z*WM4AUA^|cee=^#7q4HA=KM(t>9AJ}kEii##EgL+UOysB;DNQL?=>J1XYsKA)lEi> z<0t1LOhOlN^6j?BRkhg%RASJowg{8rhZc&bQyx%gPQr{!Qd`SlCj$%5hlsV@1bgsOpIPpd}Z_+4hQXkXti@N z0i6c7sZvtsbfehfo`@4NiKa`s&12FGB0iJq27x9hlW)j1kz`I8_;AoSm9-DC-z{`awS z(GXZPpc<6OsZvGy?)2~;k7na>cARN5>hXwUM$}`9_YWp<e_99$)oQ9MMI%4BBS)Mcqs5RMk? zB$!NyAFptbCdnNu|?L;=Oz-q7LTFM9tT8nJ%ugh>-W6&}48>!u`}R1Y4bk`EqHBZLB1e zc_=Lzo>D5QeSb}7?&|oM-Ylwu(8?uXAd^G1(jCi14ppPImjTx3yaX?K*?WTb?nGd8 zV6y5Rj5ikTxY^tp?X@Mi3XngAfYb&0_pg8PUI6x|lJN;>orID_zJRLH8vAiy7akYN zkuo+#QHD}3XJ>zdU;hCR3%v}JU6CCDHB~m3RJ898x{b#oFo=;B30f}O7GK19upG@vf)CSb! zp?}BIh=|mitWNyrr=!VFun{b!5s9Nzz@o|gBoZl!nKyYn@vmRq`t)|>J;#+S42fRi zpXw+0JszmeOZ9nU7QlDR8%K#;Jvd32lVJakr&lk}@M$M49K&c3dSe>mqJX5R&*RCB ze_DE3U1y)Yhf&B#nugrZ>LQyibMJ9cHGesL|KsF)u!q_NR+wrPv1^k&&|={0RO`$Vyo#tqP*%bMLWe7kvXUMtB$* z1ChRmV|<;a`e9Y~U!~wPZl2!wO|_{kP zh9pRswwUjjG9|E~VETcy;In>E%6%dV`9`_%2Iw5gqaB~Gv!(&_!_n&v_;~JBWm{<> zLT-{Wl~!efq&g{j2^o?w3ew#PDc@uf35;Qfo=iz3g231iV^f7%lef)oIe)+rqC4+c zL3B`YB8160w1@IVRW3gR0Dwb^vgd(u6bTYjH~DruAy9eO=H(oWIM1h}Fz`3`_eFW{ zt*W_9p$SEMTcI@E{RlFtA0~>3_!2SQx2_C4{Uu&6m{(mIst2{v&|7MuQ=mM;zRoS|c7n z^ACs6Tu7%mSdO)Y5tgJj%Tk^y%+}~WgSgI$65WBAsFSph-21UQ1mqO-FjmWTsad!e z{C2@JECifq5bHJ*R1S-PFvdIWLoPAi|D(*7odQOqW!ChNTOI+~oqx6R@erWCl^_48 z;iavuz*=pQEl~bC@OL&lc0lqm7 zYc}ikvVdg6f_xCX#x%tQN_NKJ4&3-~G=KppvP4)&p(&T{ISR>;G#!g%AGVN;F=6x3 zMKCZk1#%<8)c@22B!88sJ5fnFh6?WFsl+sY2VC`%gNGRN;{OS*fObGtIts4N-oCg# z09Q%U;Z@UAvm$GY9)2)j%UoDulx4iKUmyIz#*?`NgawG!{U>{&w zv#!dyp?F0JDTMg304(!b`40GYR;^Z9Id7C*l7ujxIEsMP6n~~R-U_f3@f1R9`gz-T zA_k2tcUyFTIdmPA;5bg7a2@hAb*gkB@y?g|3IJMW6y#45g&ncd;>|JQrKX5a(nQ&M zooBTH`A+L^y-f-E2|M3Q2`P}Z#L-#T5Zofy2Lq&Tn%vq751Qs)ov*5%Qz?fc9&61W zqzR3Avrb=*%XR`Hr*EIWl?-+CzR1?AD)35mwD5u!X{C7i%io1Ac-9z zq2vgv_9n=mlYTT9gJkM7$gIt>#q7zvw$9eiFvuPk1%EVwvkc;-Xi=2bv1DJYFo_|= zj}=Q-@uF)k@yvaJ5n&?~9Tgbo|2jW=KY4w5@$q_c_4?xFlM!;$i;PS)S7{Xb_Zv(R z1Lu8KOA(~ZiT|DT51`1!tvr^5OSs^@4&kBN1_>Y|syxYRvd{f{Q&kY$gXwWJ9V`le`oA(;2WZh+qe+(cfT5IZl8b#?qX!gO_2b+q}PY zY$Ae!DQx@t-TRBP3t97n#6Nv|Zp*M-8;2wc_@KFV+UJnj{^Oh9o{vIE9T77e+Gyk4 z=>2G5ARn;Uz}+{+fFcm?c<{&H2fmL;m{_u-lYhmrkwNXwOh|O%i948$1xW3U{ErekA`(%#j6(D8u$WmFbWmuRt@(mdJz`n{ zK;CXmG$Ifs>?Rst<&!ZTxH%z|TG6(=($lKA1E9MDqn9&1tO2KFWd(kz72rzSfFFTe z#ec>JG8?2`W^i;nBA)JS5>BYWH>8kUqpKVLj>}6Ns1?mX1)xq*%=Ve(`ttqN*|yVx zod_O8U*L4$+9K(DokP$k%~#&n}o@PVV`-nTdoTVMu#r z2pInq30QAp=OoQ2)-;#w?a6odLM|5GAb%KMoxeRDrMO$1`jfL)13tfvi@}arEAmqw zJ%NkBjEj4RP7Wp_6bLypcKgSF2BAuE@M&9r06c||MVZx~p(x~a)&l3))ntHWMQZJR zb2FSx(WFb>83rW=G4N)nePiVtoB^`18?nWK3S=yeHr5#i73&04OEjaD=>#A*H-98C zkX<6jv0-FA@hK?4j6nTG;y3OLGQnA=(EwZIs&;xcX!C2??Pcw3AxjE;2Zt6lQWx3V z<9w1OL+jmdmOz-5NF0rC$B=7C(8ku;2m+0A>P%;x26(52!0_UjT85`g-X$kgxI~yK zNIC4a-G{nV99DR61Wg2(cFz&9ZGXe`mg)l%>pYu}vF9HpOyS+$JQt~=R>u$@ z1(*kjk4Sfq-$JKB6{0_W+f9Tzct>>KL4MjUhRlSn2d86mtS$Nu?E$=Td4G>~FN5GS z#7CReMJa?#E%aWC0*{n?9A(k>&#zydzj<@OrYxXJme=L1mij6vtN_p@1C*3sj?+|o zgBLL7b6$=Z)?H5hhoY`ZnQ{;$%{o(e9XMt)`5O}CJLsE7fZGnC1nO@22vcird_4p- z+%|~iEf^MJX&fAnb8ZX1AAjs^MGjXRG}njotLxVn-(4ysOxSR~+P9m3TDx1(lsUI7 zD(N6k$Z)dYuYU8qvVOc?Bn)kU?O!+U0+245l86y;r2uTVrH{?u_ojqCW=zG=J{}ZX4%Db?0fWIX(9p3#9zoRFp}*=%SJ_YC59Kfv zT02a)61Tpcb;_BE)S@d4P)xb03w76v1JEadrESYRGpx?>TWmxGio0)4!(%|JFUo@_ zZA8D?Mn$P?qycZAjemNkfe4PwCJ#U`sm54*b;t=*SInmjl8_`ht|vdrBH@=?L>gp` zWWihZCo>F#+K%HM_Kjwid*=-t=*n?pxucYezSiC9F0$xw4CsP#`Q8#o!{E;ooPDKN z>RhH8-c+@l2I4X&_vG1t%%uq+tA)&I-ez>G)3{tbvoro$cOel`Ro1B^ zW@^Ko<_!8W+2sl5pS_y=``z}8XK-n?OKa%Zd5ZKsAxA>@<;8*F;Q6PunT%(Kj;mXw zsp&uz_8@#{?2+XC=^Dx+V%=zJ=-$#f7!E~2(5ZOipIyFv_wnopi(!{nF9s0S@fDm9 zC5G{KU7AScKz|?#0VKL6pm2xz3ErOQCPTII&g3F?9^>Rfilih$NCt_ne;>#MOg^xa zg&SY@JC7rrZv|oGSM}Vz=XNIp@V5cTUsp}h+Pn_~K)8-FMYeGRKS-t&x);(wk92z@ zKxgN+02)Ze^>uHO^~gyCfMf1x_7W4nSgJcHq-r=3?SK8ZQRDRo!W8OD!fnrF?_K&c z;h%Fgh)aZifVpW$Mf2$>f;N!S*#GQy(@4swFqaHeU$bF}sH^)rTdnke6Rg(DT(LiE z{%lq(!Mb^)ZdC{2JH{DCz|+AL=N%MMfk7yIXa6(1{~!b?P3^7Hjc@NWF@_%z+SDy> zN^uc3M=?w-e0lNSdk!fxW`vH$lyUG%?1zvr-uD}5F=!~?WcGiVsN`SglaqhK&;I~W zY(NZ?h@Kn@GB^rlZe(v_Y6_QO)&dig!Ja06y;^H;+sGCD?q9)fTYv&AF6TkcOuw{F z;@x_;o1~6{V&N18CDAs!5~(FAKU(x3?2qof^Wu<}Y;QjlK@dk8a^^nHx#!;T&rzC? zD8)ba-_`cy>q`;cbSG)_E&RPX`T2zC1(E${wT<2^PUdOCvS_h_)e^s1T%VX1kVw#f zNGO&_6)mR;-By$SV~xuF(qNqVtvA-N-`cT?oZ-RfBq7aFSFNtB&AQ@)!-_c=rtrygmlKo*Twh^ zL?n6cw!%ld@D#aBNqCC#=Y3hPN^se}E7wuqL{)8HNAVFMlGHyE-!*P4{7yOV>b3B) zpUS8oHseV?F&X@}+P7_4_tC1^?lxs#HFb2ouUGg(GKme%NdgHl2Xo~Roxfavygxq{ z9+J>h_z(qKZHsyxZK}G|dk`WM!tBZL8Hvwa!9!IS-OXs0q^Xi|(N@KBQ%3M%G5h=C zJM9zgVgUye%mv`C@HVT2Kw!A};wr8-`UOqBc?7pc-EFzqcyr;caHw)da67KzhrVnv zAKZm}r`@BV4rGd$?(ObXKI05EV0wM%)j=GAM<)$%l6fC~~GD{}=&vnj!jPmN^hl}@% zqqql17I6L~kW7@hlf+GcMtF$l4*Jd<9n2-qYk>YJ#! zj{2tvGF~JA%S?&kO$Kp)7y1!>XeJoYAsw8TA-}_#V+JF_dc9)_kT|^gss8Xz)1ZKy zcfF-Ya6{n0bW)*!7v;c< z$zsH@giDvk`a$hz%Pr5)N-mQ$%g76~g737!do{lho`?LR`NML5445vsH+@3>36p6m zU&Sf5Ha%q&nx$hlp#YXq5qg1AAa%6?FHnjA5V~!FQGnwC{qhKZm}kA*APPf}PRRoR ze2_e(j@X1i7C(MGTA08BPK~Lb${wq10a;)726>XI_@-UeXcG1&ix_|q_ zc1Z$DR^+IY=};MPF#@GXg=GJM-I%pVoT8DWxv7d%j@*~eTL8KwZAi0bc50m0D`XAq z2TO08`C{{6d5%CIhl%h_zieA7I|=mouD~4uoe*H++x{&yUG^fgIg~k`>?y3=MHc1Z zY8TsTbY17?Zu)_Pd{}^DaoZ#s9*zLv90*Mab0OtYF&Ro*7V+E#*B3P0X^`X#5<}D( z{`-_-KVY1~vhyr##lVD=h)cZy>piLdN*(oPKk&lNSMLI=)#5&EDX&fFGe=@wl&^C@ z#J(e1TfbF(yfAcRw!9-;f=iATK}7$VG8nC@)=lh|&?Tq=@?|wUi;JDiX^vSRD3UxQ zQ`6L&tARtd+p{dRTcs6c;1n@-ipS|~E%W*imKR@?%0ddaEV1`y;|^pPS(6vSDGAGK z68dG^Sbilv*=$nG9H#XoEzJa#(+L{@6jFw-S_q6;p^&CF_{MQMS6;cC8Y^pjf{@4OPa8 z^~_yJ1CHf6LbthU9XV0n3!;0p!!*$twyiSLX^vOkO%q4tUcuf-5TSw}t=sA!|A0Vn z2k5NK*V)z=q7db7+n@$MqGYMg?odc(maIYXW($+3l4gMtiDRzTovYz=WN@Uk6KUpK zBLp`PxYSTEa#I<1AqF@a1iJtfi>u-}nI8uTz09p zI`o6hAD-PTdaourmM;T%6h=f5a$ukOKnge~ z{5P_~uNTRl<1Fw!DNHDiEQpjhT0LEt$iwYFkrvQoxmJY#p< zPtyKCz}cGuz;j@Z^}ISLc3r^oddI*XziMAQeXXu5S>$L+szhTWm*;cHv0t$yaafyh z`Q0KgAmoTpD;yA@q);!2lx!Am-1|7G;Ihwm#82P8pmCs2ApG!g@Y5mcWKr`v%5SrU z>*frN(Qi3zJh;YA{U8BxxWJI3VjX+|xDc6Mc${Fr+C|+lT0z9N5?GTm2mUa0sq4@y zk1%8->lUC@MS6};nV>euY_L_#Z-MfkVF^bIE*3f=OO7Bq$^*Gnsi4~l+JqM+bJ$bfYcpOCgW#KrbijWpnU**<-eZ&))G;qSfR_} zGS3c=V=j`T-Uc@?bxpCLs&g~jcQ~?J%+m}E zRg+J7^==BL#HV|9uRqT^?OHnv>#g7F6ZIR_J9H3a_jP6>B29n$I@mXqC#l+WeXl=0kKHISfk@Pm=-(xIj`Hp$K|0m z9Misf!qkd>;GVcUpkqdhx0Eizf$^W`)YFKPcq+&15uk5D-H75j#hpIPd-B_usRZ@0 z)l%Doy}8w*msRw?kiJJNE~A$fBca_OawX?NOD4wJJlp}yMZedsCyLy}WdyH&K+(Z? ze$k#4C;$u1dnjqJt~&E$6e_BY=*7yUc4%4MTPlG>Nsd(?7yE4PQKsmCvh>9;khKXx z3{ZAZ79R^-`CR$MaTlH_Qq4=dLVUl-+u0~E5EC#Q_?bjQPzlLELOSWNw;sDkMy+RWrj7-RwTLDxIa#fb4QZxBp>{P8-z*tBONth^7qk>^oYoIgA5 z4cl(*S5ZshC}0>Z?H1AFItw;Dqt@BGo{<$nuMs=n63X|H^APiHimnN?Px>y5yH{!! z(>AF$*5?#KchoAl=s5t*^upNZ-p_n&Kv;jrPP+^WVrSx5=*ld^~OiIXvs}@`D1EdSHmmnU(=_r z4!g6K))@KUjz2LZ2Lo{Q!4DDmu+92jH$>y1*az*w3f4GL2-7X#+PuhJE2X%z>4$Ws zb0IJWOoVac;mi7y^Xf)l=P+c&nwOCDDN4+`VCmT?*c6@hA36Z9@W>L#L9StJ(>Z`B zj2@9ID~XxYYWzvINLf#235f^ihGlbWhkN}prxSKU{^irbsCtCwMfvs&`QvX!tc|OV zlMKeXX4bxE6Gc&PGe_;QUv^)O=bz@hyBsSxq-_gCcS}g6k1A%%@OTSk&?Nz;KWqke z#CrzV10~6_%#a7l#ls-)Y`VeN>bHOgD2K`eNXs$aMcQ+2MP_EX-Mx2)wLZN-Lv+Ts z$RZxr)%dfzhBHgm!hN_p>X@RtCHvB0pnhN#%RW`9Kq(D>G$);y1DH``;q;8jso%-d z_|*8($n{jX>A3C*vZyECC2!stIH%Brb;?Ag*Ij|ccEGoU>#cJdK<oJau%Vv^c+v=zDN?1r_>U@uo+?hAh|!eOil9Nl zE`E9cd)?dTqtWm;M8q5|Q;q?QIL-WpfytsEEgVI|i%~s{&}=l@6Ny46uqvqk+;axu z_@qKh^*ON+mQn9+5acw7&g@ye;fl|aif!oOixjXb50HdN3&)9&nfy#1VmWbi!;tp5 z>zDHbM~)3S8a>)f2_nFwLc)Nh%agCddNa-rj&J`($9Ey|N)mNQ<~3ma^B1q1x^t6T zam-esJwTs3+6t!U&E6m#xzHQ*hT*_i>p%MPz0HZ}4AP`d0Ul|G1L0kcYeS|pIEY61&5agv$#hrmUL!$oM2ALSd6rKm zEVd+jDc9ecZWl|`AFTJ(q&*+Mdo8l7^96=XwG7^m@PFw48L*kV1J(?h;Jx@ea6Z&R zOj!mm#JV%->SBN;j1>;l=E%sCrva(2-fS6Puwe};&^S?S{r|!z88T{kP!_MA2ZCL| z!&*78SFHv_j%wEs?mFkiyCR`V*DTZBZ!e)Rl7;G>ctT1C``s+@8SFo}EOk4ylA_(S zrsU%^_1TTy#Nu6<6Ec1fo1q_MPBK~tTRso^si1iwY*L}Wj)Qk81UE%X)Bp`^Ed&@Y z=eA-Wc0yjWBdfZb5npq(S-J2tRPmWDgqz=XiCWw!rUGFk59Xzx+DYvd zP32^7S_`jMip{F6iK=n4Z$Q+U5DeWxprQVj9T*sZLO>6GTgG+Q@je!*TK0kjSv@9u(V-7J$(Ubk{Eg_``Xc-;k6z;aZ z&1SjMVeCfPmZ`kJQoaeIa>B{}Pwu3*#<41yIQQZo+ZK~-+tvx#FRg@Abpf60PjWG#!-RD#g(mNo zThs|gj4k10m%45cA%q87%M`8U*mImZs5VO(pYaa&ju!76~#n zs9l~i;Mb$+W8*&G3&7{^yGHkIq&MZ>rPwXFQ)gObKkx&4=QVHvgqT9TCx;P_Rgc$G z<5|l+%8gtbu{bvFhs^?{agOSQO9>6@O&JC zAwOL;K07$sE5E#0MMc@=l0r-7d}-0PT21TbXJ zjc&9)lsVN*R4$Vkfz&vWlzk^^NwHHfZ*7*V6xc+ZS?*Z8B;`aGW4Er>C>N4BZck^U z2*LQ$iE+_ze*j7g!i}>UyC+mg{zyOTc<97xPWi?5lEF+&V9zJrCowK~$EwTLJ;`hd zIiw>@rKXXGY&r!Wo@hB1uz?5XZHb_1Leyc~m$GcYf{CjG9QheAJ^Aw2_Q5yl>MjpA zH^olD?4n^fJ*(1U;%ysF^MIlnq=C3N5e04+n;$|R6(VV| z_*i>M#J^a(y4K*8OrNnzZR)ArYe{l`H)iU2@~bMpgHj-MN&{3T^pGSjlArq-h+adw zeC3Wi*|dYolqs$9`Wc&K%wwr<)jRUCUy25kC;~j%FA*yf9Sv~%c(aqwqe(k+b%-PQ zp>yBmTLIs<8-*dav{KDwL@=E@OD}s1!nW`gK$ThRIq0!1g-~3vVyk_rQfIr5vwz^)NJEgc`o88@@|Y_=MR9wsh! zt0+#r$St%l%vu;UaXY?aSemCbxzuJ~J*X5oyy4(r1;4?#rW`^B0LUuxC z2*UE@5Kgbib9LlOH&l8@#i7k}nb%}XPYCxl_ypOn$-_7YhE=xb}A8Lp^Kf3Jzz5BG} zDOS{0I)5|kZb@6LoO>=!cF?JLH=otRx>ip+1#H($GG2Dw^pU*eNHMOV0|eK6U&9*0 z?+2d`hdQ&Ye}#fbh5w!}$^U8Ys=gBtxPder!+IXn6CrW$Gnllc5XC+od7Vn zT~aRAO%{zillLe3xw#c!;Vf61nqqkx6s8yE;ye*oU*9Vsd&y&{cg&ADitErKm;J$O z6f%tC(J;cD>J(*Tq_+--jN-YOcC=uvmmnx*C}?+AV5n{shj)0aU0R%_R0Ks`yo%-} zoP)^#-Q}Vpv7Y=<69+CpzP0!<@&!!gjf{`q+?jr@v~cimf7f!N0Fh@@URhjRBT&K} zjO-6dkIPNFz|4A$+HOEO;@^g>hzC9#p+yn!H+ArQ5H)7-tYi>bw?aOnq73gsqj5TG zYoU}0QpqwIQ!)eq#L|GY{2T-W#BUvDAN8=r1=;c~z#h->#%5suq4gIi6acR@J`{?w zzOFRc7SQbHsLLW?@x_{%IujzwrLJvuTxf_M3Fms&S2AFUY?Z96yK=DPmyy^fHt?sF z)(agtPmg~y7&4dLdYYfBo6{1t51^n2O zS@)9i+3ap%`_GLe-(KF%kpaRvSaZFnjZA$*w`e>0?2#t)@Sl2bgU@HRoq2D1-yZrt zp~72MjN)o*MXhWH2$@)Vhpj4{15>4y8;PbOdT@;$2Ytc(MpRLHacq(bZY5yyK^2#f z*F`q`R8Yn174^PiIlo00<{zuY4U_{jbSoyJnp>9A<=m&@wy44nDgHSayi}#+S-!l1 zQm~Y-%-c<*N1S42^w7J<{2_sy%zJ>5sAD_Mv~M+SIK&;DUgxS9ecGVv+wZOsmG1YSMq@d2fyF!orSZQ=L?N=RyqjcY*ojV@lyR8==8CrLB&Lkh5r{5!WxF-zvfyNHa3oA=5}E~srIJx=07;Z>aT*YM#EGn z6LUxTJX0-&lq9oyaf>E1hf*S>l!OGJ;ApdJ(Vo8E#=q_5r(v+v^=&G3DOM<0PsdN^ zi?Lt(Zv-yBAH{!XJSb;(hiCMB4tNFkdb^SZ6*B(x%>#~kPlqo|&wWT-HMr{(&eE4p z#PIuaGI*T;G=Iq4G`dhp=Iea@+Ks4~7D2L;Q4Pf9F(+TTA4_UUk9Ib942 z&zm(qG2iSd=xS=EzjbU|T#g3R`X>oXn_VF%K?T0Xi;L+aJ2F0*`1PN&X%>!RTgZLC z^^^Yv++X#{E^?{Na+vde6ZkiO+v$AGW2$ow)slaPjY&VI(MjA1Q9x^M(K^Be{30XweM3XD+NgK3? zdt9XCHr47l*98}Tk}x*aPT?t{=n`np9{GI&%62g2e_>o#s#=CHX^{(G{2sD^AbpS| z6Dtg%v_i?)`$bNYPx3UdeHJf$<~}&unp!6t61jE=qETUDr_mZe27C2t9y$p2Xq zxN?sMR8LgCszKMbX@)r+K?^FWzc&!2i;iq}Y8C%6y*P#r@eUqIpefYl)oL4 z3{j}`*(5Xyao+5o{Ihf2XnpNFq&y4;_yesRm5-1HEuT7;K_ZhF6qw0;{C$k>7YWIF znb6hw$9-n^kH4Qg&==PW3Uc|#fH5s7s9}k6Rd4Bp3Zmaz`&~|IR0z;j@EDMmg{qTQ z$Q&GaV3z#x_PW1;sl3*<)k-r%*w$g$OPLZLvntff$;fyOah?!A$j)acaf(?jpfm9O zBM!_IL-Hi9GmAXO$H{WrKj#EPFpSPj)EPfCUFn@gfoU&eD3W`uYw5X$!K5c0Eb`uV zas7!>KSY}ov4G%7I*k8b#i&POuRTgfRb^iZ_{^KCgjFiaJh8EoT&wCX9Joa{_$mCe zD9c-t;*)}*P0L3x77nw3#@;pp0AeP#X$GHBzZ*PPp)e}WN4*%1vb&4Xy5RtuLUv58 zqk7RKqYMX&1s+s>w&zq5>tzdRzn{nW<;oN+%{mt4f9t!BQEQ(=j1aLF;xE`vi>@+` z&PO1baHYAj{NjWhTE|%qJ?@f)Ciu@}7meoLz~l(%Sy&|~9GawYfQb?WbbOvIsTUfP zp-V{Y3qMt~EN5fSpq#wVFJ=-Et;_X$W`faUOK7+-32~J@zNRxGiY4$I9XtvYYgA)R zpX*3vPo@veJk9=bz#&oo@LtNmg5lwy5}>z>Gxojw9G`38VH99i0o5Q3p|S^AA;ESf*VQe1z_9>0ezA=3^7yxvpFa(3T>AV zMrtfb-I@)Ixmht}W|l2|C#sg$Cid`&E(+%EhXAAN`jR`%we?8J8>XlgzO*oKzx2PXmL~9!mNFax%hsP%oI~4BxM^q3raK-f! zYZmiL*s6)(xT-#nr^ZWek}%O%Fz7T7J;__9LfM?h`ql!GD|1yhDC9d=#DQkL{m*-a zFm;x(xPh9(QbVu+{uQBZcP*`XQrG-+aLtV%Y$Q*a)2tUu9qjOm@DXOukH-#4WGf6M zzaBzzdj|M`B`AyJ458I#zpZDDL%K53Zd!*DDa~AZWEuP5rV@_?j^BZiS)@uo!iF;h zq#;p*O0UWxLc9&szn|NB(YXhzxbO!>t{_Q)oa_jSI0DK6nhkU00ygu(3bi3cnI*Jc zJ;}QZoK$%?1g|OF+r^jDTb4LWc7-XC(+zbZ7H*}oQ>I&mDL&D?<5eJ2Bf^n;pL^?@ z%1TUXaMq^JhjOt()gi>VAVCl6Phjyn6%?+hwYJi8!Q3o!Pll7IW-&C=wA%v^Uq#ksR?LR;zen^;2QAI= zO9s$dsL^=o02!5FR837#fKgTZaRe(8mXx$&O7k*+iA@?<+dnThClK?|G{vPj!_;A> zlhjCRN!99s#LTOtX1=0B{oB#e8^TFb!Q{&D-bjzpYwYaKqyqcb3mQ8f>L&7%7~4zq zT1jT4Da$Y3hVeQUmhy!|N3rz4Iuj}0Nqxlpkzk7>T=62t^u2S~SuaIM)On9KrXap(Sp*zo@a?Xcnwrl)fqe7AWU%Y8CSyoDvTTlkpvDNde~i zpg`Q|JoWKPJH5XR4cgJH++kB+}nV@ z`N8$zGSmJ_NmT}Da&H1fV{$r*7WWm8X9TO+rt25wD)0_|2p||Vwtd=cx)99(e+Qn! z>0`vd?SBN?$V-MSKnjgtIUzxrB~J}GDhQFDR~>fs{**fHe4i!<^F6Dn!&;yN#7vU; zt6JcA*xL?sbkF5pShCA@Dx)&8fH#Z=Z*JG1NJV%x7J+Is0S3iha~)$a|76V8GTEly z{e~wg@&@B?)g)q4MaXky4irf7Mry0|6qdSKMfvi`4r^l^gld79D>$dRjFm{Yyn{-&EJPKR$g{LobS`654 zYi#X^*4b8J*c*BTH9iM@CjCIk|HgXS-WIO@kEx-vw(-f{bg@@MF20E-9;Fe1b8t`M z3PIk~B0RzIX(aB;m}BVHTs7}%_#2t?^IaW~a@^XwE)h0HrzQt2nLK6y)5g*;g>t_i z5=NFpK6)cU2?&f1Jq{osXOd=+*sq1=-4|YJBO)5PcqEXdkm&V)3wJS_+_L%<-73o{ zDtE0N>r)_J19%?Yo2`WdHgRef_sMo>oMx8qVHczQI&NL5_9r1AUD1van>1D3BH>OP zA*2}#3(d5UL(~JkmQ1aS9w)>~a=5Tf-b8`l*I-DQG!b8aS1+ggPv@VWj1x(F%^jl`01V^&i&gqxx1L?B}+5msVSxe?R&S^vDTJrMx z`i^++@gkp;jPWf19-QCe)en(h@w`a%r*+9&j>9KA3b9YKmt-Lnv>UA$A39Bg0(KWi zzeeK-S`yHxmNJ0DTPLu5lg!_-wgIoVK>#f+k<2}K-$MU;JAXFMuzWC8u=6{i_t$Ox zY(1lW9-XMf=jVHCnEo85eCBNWoW~qVvjHgJR~#Vf;#&nUuYq0ou6y&5yNsW)s#6Kp z7P^jH^Hwte!&TqX|;X1QuLz;yB%t&Ua|Ma&1g9+ z!v9Krnc0_sq);RH61KA~5aT0csbx`Z{x*)Anm90He<{(OVBp*V>YSE1GL5);n~SN0 zC_9z}j;2Q(Q-Cnvm!Uz1ouKm)gPBt3G1!d!4``5S? z1=z%Ij-Y?{^akZyS82}YU?YqR2Lrhq^5SwaTRSK>yDO`rcnoWhpeH?ee-`%k33i^& zL?c?QDkxzE;yZE0e{#L%@P4sJkYWryjsA4+81VUJgSTyqzR4VDOWi$%|S3s`NmQr0M6*Tw~Pa)vly#?2gI-@#K=M?n9sajh@H{L z$=Z9mpmx9Ch)oGG`dx4`9SPQn_gOzf`~e>t>uzb%F~iA*)GGWJ%a@$9_4?lrC)cnz zlq4e$=Oaw^JN^yHnX|ZkM(ptEzHkG*bfTLRADzAPI`U4?L{3OZ?qI|8?p4Vs z4B7F!q=~_5+*{!9m!xVsfN>_LJ0AH&mPEF&gi{W*O<0xwZCrL^6Y-d_&7+*egwMNQ zg{l*AW5X4~aA)(0iuFYWS^UD*zKUnZqx&Rj-oVR?u)4{9mtD&a$)r_GitQ@wp z(?vDReN~a>ePuls(V9u5Q)*}lTfAu%gn^XRp3{+ZtjzBvLt3x-MbWcmgoK0SNCPR1ci>B%OJ-jQuRB;*eo4Lz_wSG$8YwX+sgiOTRR!9>X;|@r1YF57p zMRk`eU){8^3ZDUc0L#M#870n#6?BGX04M^ zKPda;gHWyj$d~>pNMg|KkSg{TbI`)l&_boEXw{XWEKKdn&YNulg=I0ScACx^nNtB@ z4RZ1pbs_QHkM;I=t~L`Oj)x>^3<+gqLd^S8eMmA9SO^XGlN9djdz!&)`VjKCwm4#; z+_`mT7y>BM4{3bitPoFB6eBqIf5?9G)vu}JPGUF%%-06Ygov#N>gi$Sf7tA{)6hD_ zH`gyf6fa?};3gvtXU|h*W;8GwfKm$@E4X2$R0V`|2c{S-etTlOjxP63xG72t=`=w` zlu8a#j~+#WEqMO3k~oE#1X+%Pj>eR^rCpfk=t!BFGF<1_$e;Dsa{v=laIB>E66mG5 zi;YA93;|ou%PJPro$G{Iq!M-Th0bo;;Z$?%q^@oSM%EVVfg5@d_Kv^T1J2izd7H3= z0%?tdL7?I6UvYNgjFe)w=j`3hR=MK@$YUurrc{@7N_(htQftw*SUAfm$3eugWBd=2 z(|^?)$khro7>TWq9chQJ`H4y?*Wtz;PhG$PM4xS=q;mRhLTXORjd1J*LQFzpw663o zC!CWmVqnk@O*ZM2w$U1heIMP4sd&6_ey*Ec$pm%=)jJlYh8LttXXe~(xL&ry#nJYz zaOM~9qq9{&5mor)A&t+c)QR3e;KAm`BJV7SD0PS<8;~+zLx5kDg~jgikT?Dc#A=8G z+P=$M8YKFyBE!D+-<68$B}8nh%I)J$L(`yrgS|TMa(SNNTFjuK*BlZ&JW$zhO>me% zfptjJ`tpT~sw>BUGo8ww$%}DWSJ?8e@(p1FpnuarYb@NkEQ``~<~UmcP2@x;(|LM4 zze2JCJIA`@Lw_E)vK$p`?|yxcB0ZMsII8GJ;i^P?*exd$R}pZ1XyP#C zsm9;@&4+@!NnQsf&+3HU-N-`)Ordg8^w#o1&eUDEP_HhR<*1`1Dz9^>;XU29qC6ke&_YYu#zuam&qhUXLS7%2@ z$iqCRLPMqXr~gLmqnpvA6nUk=U9|?bBNn}iXUfJPLr6jFYUBicqS*EYh*}2(&&3dm zm@0+tFXI5eI8A_&c@~(I?Gx7O7h;a?yhQ$#XhYGsI$>!4Sjkl&-ee7(_|f@trLeD| zs4Fx=%jd;)Rt_RajbkmuA*}( z?@mhewLa32nQjm1Xu;WcORFmZ8LY<4N$!erIW%u07R=CWRvee!19j5_^cZs4G^X;w zaB|Kep|tBw3CPK*&#h0ciy4{M|AH5=3_8pXQq3We7S&to?n!%q9^PJuiR1`%kUDVq zjgaS$smkbg{bDbi`)uay)SXx&Dch;Du9SaRTFr>O7xR!MgPjo*OwL!E;FGz>Mor3l z2id@D*Kq_j64`O`K3$p6REW%-&l8j+v3cFWj|9I+YG90SKB$P&Yw6(mau*W*MZBx3Nw?hDc$Gl0n`}GBd6j!_tc9`x6pPb91rFfhg7u- zu?5L=p|L48_T!3&+hCN8aFK$)p6Z6qWw9O1I#=$QhKeK(T5}(F3jKZ%1^_)}S2J%- z_8Jw?CtITLa+Eu&qp`%o;(HHCN+y5RzN5a+^Q*HT`&T$}VH6 z{}deExrW52%jrgMg2NF#_un=A(C8}M(8319hwIxf*v5i=Vwpj>E|($&c9&G1@xWMmwfFsMAm zg?L$v6f*+v;NCft#a+zj?w8RZW@9u$6t!`}NS!u@CWd&E72Eg(cmLp$lOzEg%ly|T zh#NQ=SL9HWhhFALU~jX=;WzHK!}2=Cooz5yKRb_mNFMVYDxAVQ@NWc_<#X8y7|QPZ zxM$H9UmvZjL?@rI2+bb}F|~p$ya@ci6b!ZifAtJ%dj8f?=n?EB+Vuc}nD>(xIq)IB z@q#32>o6Vk1$=EtP4;CCH?IJ2I4U~G1cfAThQ*0DTp6Erv=fIe-6JVIi+2T=X$z&G zi@|WI%Y~eia!O2;YaaQ`A(Wrt+Rv{IhliN}|uSF9cO;7F3v9Cmyo3~z8nj!bJ$|DXqr`)TH9AnPyX zH!p>{udk4#B~R))o3ZUT6~IZcSRqWYR}H`IOtB`K$EPU4RQXh(QQX4rei+&`tU+6K^7!V}=AJS*yMvt(??X>&JzTGH^Jp3uU8+XcN>3Rq9zr|Z8fN`q!1yN1esp(uDV z)71t)D171Y>2nUzsFBZDDSv`0x?xxVwF9#n7vu}@r<_qz3|0kv8 z{BKIj#>B$$-@OzUGZ9nr-4Z9@(tc|M{Rj7qT60jSBfx!V|IWGq%GAt;HkDjmn-sca zpwyk39+jbkqNDRjGOw>b$>Yl7WFWg)LA!tnPV30=ME8HN54PMfItbtMf|!@x!O?S_ z)vtJ$_&+<>emjTGfu#Vtm6gr+oh74zwiDQzxU=amcSXCt+PRhiO+W)x>&Yem=k>nn z4=cxj3PT3t0aWzKBtP=-)N9TAV4mOm&&J6r>Lq>clWzJs`Aea{=xjO3UB(^VSBVFL zpO+bCshgmaAMbeEdCziQ3>Re})ShwQxIPcO- zOS6Fa=65h~!rpd$o192E9aUofa#uH-tZBE|Mr-0i_!fGv`m>yN8YdtqLG*UAxr>m| zY{rgE?Ba>E2HU+8aoItK7MFOiQMb7CuM9Hd9CCZ{irF-Hs}QGXA(~n~5SQwF1uNK@N5Ckt3&Ex zNt-MdM)C&yMNf-gdX^%TPfe&-^F;ZmX$)QapBhfE{~wP6bxz+i80w|tur;V6Cpla7 zZ8h69@n1&$o~&N()oDqzE4ors1NJVu`w69#oG6`2&I$0ULPfbp?UL}zOr((;8*d(F zTJqzfa+br&!}G)0h?1m>g5y~`WZPF53u<6}o-ZFvPS%q?XyAHE={Th=`RRTz#KV3^ z?lYa|2m)P`3IU+?vjn*L%Px8X!;(B=ak>eVt}UFOdFu3GcggauC3`-d62H5ZUt{y1wFt~WODzCD%W@AtqO2~rz$=`?IiynQnoQTJHPLqkmqCBu`A?2Q zpf5Tm(pa6K-rY-p_KtRH)$(;$J6c_ZJfOQO?V;6P_+%*Yw#D9R6}y-kj`{R&Z!Br@ z;o#N7gX4i}=$*;u_LZ|mleNhadtC_Mr2zJslL^) zL%ee+IGd6d8(KDT7Cxk#;A3t#@NzHsNuCi%LC`-#5AT*t=x?e1EN#_N%7pcAz1_ad zH_DpbFJ;ppTHPDE8(jRPTj z4~{$NdNUx5Oj$j<%4#MF&j^kl#LSgNd{v~}sF={gy^WD1K0_y=eqDexX|fjA zN@%vJMTJJZy=oldaqdLgyBU`v$WHE6Ni zIDylH=Fp~Ymz~mAy%EQnpEAazc1te*;b3;|q(N&Bs>DdSVRjV?oyPe=x;Dig4o8AK zRb!@4W3cKqjq|{>8X?#zWE>z-m=S?=_a|^nnqrr8T{|(DT9O>8sCaLPxRf60^I_{{ z?YjeJj-WPW zjZ%`R(&dEIMv2GpQ3yG+GZMA8 zQDml%vB*PCRa_){CP!o=R70Wepi&xdo9}nC(V3IE2f~i7Oce}kumoLE@*y+OTiDU8 zJ(`d<9I-wKyo^`a4+Rhl2d%W1-NNMg;>m`3+9#rPPqgJBBgzbFw@HEHlr&pEktRpi zrBoy{i-zY^b1Wg3Gi}xMkDg0Wj0vhTNLBgFLmRIE9p$Q0`1;)JWr=Q-a<>xTRN<`lk9`Ks5?kDx5W*WuJTfSnMn4&IA04vLK=M+nV?(<<2wG54T5-Q)Z=kN;K zlFJMBiZ4Yet7O(2)yH2YI_YsM-r#rEr|T3|YoCWxcF|sJ$>^*@x{+nDViYzPjkggh zf8tTfRE8&Tr+il3F0mQwl8z<^pKHl&T0{1rO;7&#V)*njQ2A}P8jSa{UvGdm;9-P|s zctBHe{NrKM;=E@@RWK7onzD4&{M~Q?e1JHioRhV5QztU4mjfME)o6^Tn)!-_7j2Jx-lAh?DT(LfooggzoB&nsoZDc5^ zW2Or?@5z`EyypOv<_Rf`;-SJQc;XFMdcX=VlS;F6H&JlRwD1?*x-F6=hPCBmfn@<{ ziNqFVQbjKVZ*c(e)05^;4joZ;87Z+N@l_B7jNG8uz2+@yuc9THg<}u_8@de2y>Lgw znLSzn_K+Q;_})>`w&NCuVv*2sWX%|hsHG4Q?Ot>k^RhQQ z&s^88QhM$Q4ZUSG15_n$v-KL}W+zWOZ7U?F*1g0J$*I|P{pRp=_Dvfuc>i~ou*IrS zyD!dy(x;zk~L#1;KS9`9pJ>wn+33Is8{ja(tBZaFqNKbtBGRgPLaIf8ozC- zqFYIUL(F=4?erP|f2{^1j?3vkw%B%HQpF*)QS{(UP!+Eu(^^`t(kFKg_NE5+1jJT9?;LJ{sFrP@z(5d&XNZIU= zy|YGJ64(HZ&mEact|V*h3`pXc{FkJ;m6iTO$cw~d|FOU3BO^ciw}!hF6qflo#~G;Z z{=9jNj>N5o*t;5h|4Oc#Fz7H>8uHzpbM|95`dJm{u|0|qd4jypRB!3^^g0QhC;~a|pf8W|0Qh!ct*`WOnvLP^eHWy6I5N+&l#5|%x zb8VES|LE4}Ymdb_vWY#wa)%-Dt>zA)7q^OP7}+g8vbVHY~tcYtT(`?@@@gZXR38m>rVOe>oj_~ z-V@pWm^gZnZ&1GaS~}yHF7D6rU?kvsd*k#n^c8&@8@hjr{->iu1n~EOhVzoH7${nD zhehtJuI=ZtI&@4cFM8?k{loLcX|I7Uy~tzuKQ!a$RPw8M9_ zPJMFsDyRPba`-kN*0#G#1B2iHpzTR`S^TV#k1O6&-8S=ig`6rZQ#IZ8o~ zeU_t5e;30{eZ^y^)%Li|VMEek@#%J;Bi10(%-+O?9tg3R~l^vVGk`r=s zYn}i4nom6m+yxqSK@w}!tsI_soNGK0a_#}DJ+`%zgg^WO6hs=&3I#AmyWGM+`#j@} zXLFYWInTO0h%73U!(lC=ohP{k13ZrnZzllXx8<$?mNgQTyMINTFrJ5Y=gPx~j0Oqw zut}BJ84JU}04dP>-^$wsSHKAU;!yR<87{AWS)>uJWtsoW4DdK1kI!`(*e)0N3#*%glZXP@K`)av?qe4 zLlk1KQFIidC}v{Fy}vyZnT&})8kIa|FprPI54NbjEs#9M!J=*y-iDY21kv5X;e zM35@yerUVi+t}g<56`?73FMz}Zi|lG7DrJ&7_Qvrmz^qi<)$DH?U3ZqV97M@cmZ)g*LO zc6+EQq*8xhBbi7rDw4m4E}@hEY?%e88qk#0vh{Ydr~wK94n-8WyKO4!*-S-$ z=)P3Rc0-j5bx?v2V9TCXFOZW>OP@M6M?gkhv448Hcwy6W)UX70EHES|r@QoDOL)7e zW-Jmir^@E>3ZCI*WNSQ-)9G7%nFm9hhc?FFPan2x{q(l_X{OAe+>$}qDSx+D#h#K@ zMU7ZR$@HVP65Ias#=QBIF~i*A>(_6rDMTK%Di}nT-mclo|BH3kf6}_{vFqjTllHxy zF5~b-E6{uQvfbc~#hpA;qnbmnDRu3izVSZyPOs4pf8m{8sWtSQ6P6i*9_ZVmeCCZ9 zSvl-#KeYwD@uJ{~c;NiO<+sFSI&YOtFz%L^4JKlpU16$vfI=xoGXPVu_6-=2dFMtr2`vv( zmW6IEGYnsHCGH|OClO{&Vya%?Z3-Zf)P-H!Q|~91vt|+%g4vrxkADCv)kjjnKktE$ zj&wmQ(acqfm-I$#C0a&s->A(ASRAId_Z_dcD;{YH6`K!o`=y-;lAeUA-Jr&YP(d^Y z&qqHP`gngbcMKK3qMX!sn&m@XsX{6v<^iq7MvLWCryTJ;wOHn)e;j63`YX+5_H<_Y zO~I(0oECx66x8e(W`7z9q8VN1#Ve%>v*W~gG3Eh?5La@mS%$Ja8unpKqui((xT7^n z=L{6EsSav33Y~(iMXzGS9^El>j)3ce$b#?k@@U*S8X3-?O<9_`F{OWf{qd4AEa{5W zx8Kel5u-kdgtn%U&P~mRltIx?!|W3|Lz!YGI3a9x+}F$@f`9%eJL2ZdZ8IJV>n&-_ zosx2p^GZx0-v}+r#WwGN038UUrk31H{2WcHF}sqkW=0lq+f$5shO@aS2sqiToFuaVKOd=nbqlwe7^j11UV!;DiqN&y6v8IOJNW+YmR; z)I0&7=zp}UQGvZ}BXw#QZCg&qkx34`xSl4_?|O%JVgO|_Ix_UBT2GIez}CYw=t+#Q zI2q<3pQEDNI4FUnp8L?ss}#qCpjUZ5_7K{TZv>w({cPL7D#{Cjp*espG(ASP4d zdVfvl(a$oMNJC5fs`gF$*O+DYyy7WW(J8wvEJ_%YI#)0WlcB`XBBRn_VPR%s#pr-q zojRAB`&q=mPr3Mn8Mbox8%2s(L+;S#6AV67vKyb9EJYftg6AfHgz@n#PE0z$?l8t< zI3#>`)b4>%f><39JIPTT`sQbpZ*)c7VSgt-GJ}glcX**C3RRC}kSKso-!@f8gEZY) z(ZM)bg+45Ev%~2mEpT+{4^vvh5uKZa=?0r9^w;LbE~J%yo{*X!LIcr5QMnnui*Z-hH2fM) ztCo4hQV}?zL&tPF<<#t3i=F-vdwUao{BdG3Vk+OQ0oyav;R=AqHt2roT{>Z;)_FTY>brZFy%}_$5{`v$T&D}|t8$7Tkfo=`6n1PMVONi|*E$d5v#OxSZNC(Q@lGqhB6Xn$oh4saR` zF-9F)q4f*Oc{mqNP`gi!Kyof@BTl;$rUbib`eDDXN_95YnJ+)&^gX6%GyoUotOYW6 zb3dcnk;Cm*djP)ou(Ntp_|qPlPY*wEL_r)3191^Q zx4BwMr4l^7g+gx>I86DGDt{WRu|4;byVdENWx5B6GjyNv6X_dKm%|-j9uE{zi}+J+ zaDDRNhKO2RTc@8NGAWzvkO_)KM@2;byK+mMcBswtOK}E%Hh0aTvq4&h0n{Hy;=}9X zA<4@h-gs0hmyk1yC67{?*!UuVZQmb|7+k35qu64VCuHF_tCN4=-v)mHRC8V9lN<6I z12#D`lR5H1f4y7(ZsbOC{$EeQ;4U!7(Dbpp*(4jrA*a1_?qv9OFS~O{0__H&W+;jF z%upsd(#i+Ff%7PN$5eG!{~%|i-NZ>?7`q;l-PQHutFNlsKO`CBNrwN>pX=S(Z{C*4 z?QoVQe}sQ;&we=L=7og*SnrZotFvXsq)Jw6c)P+Uf2*4_y8us0k(64pN++w`S^DZ? zvHA`cf>*g@O6m$;T5Zl`rJ2f;)#F+E?oaPi{(h0X!Z&jv7`>8S&=dT9DT|!RJb^#W zv+=IMpMUdKyX_TIN^<)2@BhI*b;5~^RZ`Hx_;+cx{;s=D+D)?`+n<|0d7loAUsdC0 zWzKY^f1}T=#NWJmmHhtA>(yI)S%JXZiTvi<>At*RS*4v+*Uh%W=kTj8v?fh3Ny|RI zU$Erz2Hy}BtICScHy)ZX8M~z3<2&@>`b_4m%AEvHU950?!~A}Q8tapXg-~g|Jv8SD z{C6@O?(es4vq^@rZ}+#0536s^mI6*KxlEQ^f7sn6FU;<{!!Rb-O;RWKee?6jq`QH? z4r6zJ4=aEwzc7-6HVV7Dg1-t9YuE>|I4d(nr%&r$^A*U_4zOrP`YbcyPA<7Jdq04g zhUDh3Uyp6Kuea^^1Zt?a-EDUmP$$O@kr$vARf@Os^r(J<<#zzwm zOqIsQ8OykHq^q>+7P%@}mQ`s#nq7@*g<^tE42zYx)>V4fH%)>Y*XyzAhvf0DUEd|^ zZa?}bwAr^m)~J4p6n9t?Dne^k zI`RH=`EIq~C9J1(`sVFIqJl(`{;Tyci3)?GdR2b?FMnBp*JT+m(~H;dF5kSS#hsEA z_)_Mb>6thx$xlrjt*k%D3P6Xx<4n*SKlk9tUL^@QpLZYcA(dj<0}6g>9Wm$&e^*zm zl*)i4t(Tyg`VvS7j^V|qUNP^mzJxpwQ{MP{^Cw0_AemVvkWcr9Tm zWBH-Ig%BBRsE>6&+K`=@TyZb?d9v^NUA^5tCI3G2Wswyu*MuhN-_6blKm)$$3?Zxl z=@-Ea8OzJUM>R6UFk}>nt6Q%mzx8r;G;Zl%KHKW7t)&ya)gWFHsm`)WP`<1E6I+B*R_Tk9Qbj zH(j6f&9Xo2_W(u4S^%&MfyT)MKp#Tfy4&sWWx$-KZ#L(E-S$A^(gsyge+CawrLvpi zdfmPud^bDQ`_80-c5il~b=hL608sKu8SvROH#Y1`nbwExh=Lz^L@pVCJZa$HUi65} z3N-bIOlI1tNtHG-yL*f8m=gNao&gC89ij-w6~daaIv!goAe7{Rq*Md`eX+=+f8i2yCMv<9%^n6P^^ z8s#NVyMFURq;Vul%IWo2Q@tt=c6NtYqZ}Ns3|Oc031GS71tqO(@WsKyfp;iGc*v;N zR@+>G)FJOdN_Ob-eQPp5I#p0Dy4mAGV=5^sJn4{hd#`DmAvs_xf0y3&vb0(6a!fWI z2m}tA?3;Bn40Ydvf{dIN#O|8yHo1o!3gTnZ@0)tGQqq!6O0%GqY8WTBt|MEsDP>ry zGRoH%eP2HrG!X$PUe&|hj4VKk<}Th-A~9e>4hhTiHyx1}h{xroh3yCH>FAE;3_!w_ z#VrIbmsA?!dKw>Teg#PYu;jw=RD7~NQ=F;7?U_D3#6*?nNBht^$qu#y z*6DE5lHa8Su7jxJ40Ei-66utls8ImU1W}KLU4OwqX^iA|MyN!NGk83jf&d4m${!T|2ty9oiooh$8}E&U6_8 zFqT%vWYPZMe~`lDXDPrUrO%X6Az(gqiZH2Z@*xy$d8ljpIIo8VaSa>gLhS%GnmY`;oF2wm=Sa-li1Ha?&U{!DzUVY4f0m$k^v#XsFsfiGDBh;997@hW zAvmBsl@HB+4F@|62<$D84@(-QPH$1U?;-Hk+rtK*Lcor9yJl?HNkcf#SylOzRoNxM zZvm7M{06A{fqUToC4@~k8*n`^Ji%j?Br>3e|k0hdO{ylU?yY-6cHldf&Q@W+xv00 zFfeqVdeaZTotJf{WOVyJU@yc5Dn#=Xr>7FezzLPA^bGK*T;bTjD1+#ygv`NV9e4oB ziGt|*U@48ubkmUH$`W!PKZJAGmI=wmMg-JMRZ;m<@^RP8Ftu ze*+fGk(-^uETKGT-OSDp;G#pCpV>~Iu$`BB(t#4r=^1D^YAn1@W8LfUWWe)+ij6Lj<}SHK zGS?GJwl#Xk*5*ax!R9#c7mSo|lP$K(vfKrKnOWkq>MR4Xdsj?kGLS}k=Ohm~O1VHo zd?$u*E<1s7gttBurJhhg0^=W!0gsq$cP++v2qXeYB3-}c16{`Onj5tpF1%r_(ddTBb$00q31 zP6eyW*U9hS{Q1upumA9Fx_emxvo5rwGNy6nd>-3mv(gjztn`d)s-x=DI;vh!QRoB* z73u$3Dv0qk61)gx|HDiPhAuj(f7^jv47iz`X7qZC@w8qy_al;x<4#lwm3i>IXRsX% z#)B*XIgm2DzS-Dt9tme`#!&&2q^GLVuzzS=1tUXk z^s)Ym+c|!E(vK`~g9pe+t6kzFD_F zQvyD@O zrrX=<;6!aGz$v|wPt}GJRffhkH6j$*U)Qz|ta!BZRa#qJBD_>8N5xU^UE^qJ;`i{f z83Wn$2{osyoUm=>D!PKEe*@IP0gh~u>LNJZF*{s$yL)P+;UmmJgG)kSwH@%_$cIF! zm@kn&nwK&(_yQ-MfAqMZ1a{E~!DT&g zV#{O>+y(ahJ?uUQmQ&zkh`P^0|Mm{_g%8=X4l4FN~ zcKX;ZL{VU&pAKGoQ;e($L?t zUn}N^?9t@1#3I~*Q$_$3c?_tNqQmi`0v42k4EV`ey28r=w#Q(45HU$370#G`4hPER zf4?nT_?q@qf95s3DWqPOfF)XD=%t^{!@9X^_8%a0EGr>*^4#TQBV`WE0=SrnW)Hu( ziSmm9_;hOEVccmwoNR>`3^oUBlGWGU1goklrpOP^6@%m%ke`H#X(Ejk%*>F$*e~|f z#L<_9mS08_#!w1-&PYZvg>&51`}N=E2^&FHeJ(}$f93X&ZjzgR_$kc!R5a@0ezb}h z-MC(+jVu%OG11f|0Itt=58bhor>(2NAu)ZXxHG$kL`Gu+}GnBs=+o1 z08~wn(X5n1407rZ*xLo}a#N%dyw?$$8PE30N}h#!Y8LF1r@xziiujv{0mD&4K$dR2 zm40bif0mIshJ_Q@rhzW;FgsJOI01k&lg~>y#D;MY`T1P4=K^5SzHjFG7{ zX8vHROi}9|9A=0>7kEiaEiYZAH#nDuLd4FyMxA@q?{xfTy_eJ1$DoNI*UW4P?*`HjEjQp}DX7IwYfHdb@}) ztYBGmKR{B@TK+s~2#Ij<f93d_m|~F}Mfafp8k4mVZ?(6{h2c-*6r4_n&YcScbF-|5Dm z!*wLOJ7+Ew-cho^4p-F4S9CRRF0&!rFUsuRI3*?S1NtxW+<8$(`xq}mYH4sEf2trq z^9!;d+jMtK$=Nt7i^4m9q1vH|UHx>ezYcO>Uuh}jBH7lPo^^jyT#usPG4*4NK5J%|vBTD-dX>%aYK z7M=oWLiw3l@qdE`|1>!Sq*xg>f6db7dPy<+~9lggo4rC0Vo`Xc7u0U6CAd- zHTSEB9jY?MD6=r-F~O>MKCwFLG-y^h(s0#Chl}_%StDYSV!D z9n~hdJTZK zLx&g225q}BPebtG(6P_D}H7e*q&rxQ~~g0|6TYHa0hxy#oP3f2~_k?ifAEc6eYpW^@MbL&k` z&ssqOL62>c^|*EJx#!+n`YB2nj}rRJ{Cj)2dGlQvJ&iX>^n3jMbo0{J8Z=<*LW|pSRyb|A;C-nQ9?|5P+T4xDn&!V*`)NA8;Gj50WG|_uG zOUr7$Fj26gsB1GQ`zODkjAfabEYaUxZXV)hkkR2hPSHk2Q}g33e@|GF)Kx5x(bPxH z?GN{Vr2VHfL{+iekNu%{W7jMgxYh%=yXbtpxbd3fBzMu+?qnn%Z_|v`b+bIe#L!c6$_)EvjQKQe8i+Uz)k`Ky|nm(IsgP752RIm>gq zY#Lrawtv)cmUkfIJ@n>jz4P-y8qHE?6 zScjkIwUKJr$c@yF^Udmqc8IU$pO!G5e$X#$1k6?bV15@^f7*XtGYhNL;EZ0)HZKqA zIDmexKISD$0{F{d+!`jYtIY0o3Opm&!9%pVJs9@|bBC6Ispb9C$0>OEk#+ zUM_Zpu~Jdlp>}fHHN!0yRoA?ZwZjC4O&ETzLs0vn3YL_jvIgk-ZPU>UpsX^Rn<=$0 zTr~kSSL%Z>-^AtX!HOn_YkGp3V2^g2+;q`Oi1!mt@0f7uv15 zsXdO7Y_|KT*>2@&ikkV3tCV>x{;ioK3DlUD)*Ah30>=>fjVHNnAD_u%+v85ov5*Ls zq;|lM(wa}aM8hty96sWyJrqI!2H!2$n&qshE4%Z*f8EU&yUqZF1oUmFDPd*Kl@+e8 zycx%S+cr}>Up}u`m1oY5W`qwi3Kk1`tCDcBI^?M7@Hl6gbwG9>h8a<~ulDjaaNs-~ zXTO4t>$rdoEAA$^h6}Pt>TzKZF)q!V*R0G6{u(9(+|l{1H!bYhK4HwLYY{a2$4G}b zo)w^>f87`j5(`%zomMbKR`_$u6TPa(p+7_us9>CM`pvKdyiVsyjUEJtTz^0&}cKwlK@<3_u2@O2q{J!cz{8n(IOw6I#5iq9O*gLT$jJDxgn z0ObZBv?NH(l6ITkBvTpmq&=w83WUb?mA!`MJ98@?0_p?DE zQU#pJsU`U_IQU>xDA`gi%v#5p=GP1HP;ru|&dXJZ1~-UssG`=J+>%_RSd0VoLeQST z3*{p0_E(EJa~hIc159nVvjb6*U1&GZBD)w^$KRt=N2se}f!_ z6F;Tpt6RiZ-fD_y5EVeIo?a4&9ED~q}nX;hQQ+i>$V-4c1eb58K7^t&2pnRf3|WQXJ%XA zudFE@FK74@CB7E5M<8ceRqE6D24Z{$s9MwkY_ye=to#L54xy-wxZO9$C#k~U@qE~5 zoL|&}MO7fca4SZ$%11bQY1+>t*xJ7TkD?7n?v?4CnU(w|>gfQjQ&b{wCUb!Y;ud?p17NQuU(XA`~;(G2(8sEI}t0tu3#B(bw zxELCM%Y9wqi%-jl&+3qYUD?8Zz9?J#?uVbRuMHTrzJkT2In|#^f5=~DF||;PR62(0 z8i+8Q_GX^z=QtnX$yeC)=zZ+>n}@Mvloq8$QP^CkRx6@9hC zzx(cc8+g^XSVrRc^!@Fk^tBclB|Bj}Q44*meE8j5EqFTN`XDS=-l`}Ig>K_GQsrVH zttbO2(kr|^E9GRaf6VrvN?p-GlHa%Efr@*VeM|ZIuxY2E8J>~;3~-t;IzZh+oj=K= z9GXe)*zGzmkS7`e@PEFRg8Naw^P!881Ahs&Tsk0eZ(W6>*N--wQ>>5K0>e%hQ6j_Ho zs8c^qVbx#F85%C5$ULvriEmeNRM${3g#B`86k@kCP_P3oPC0)Yk5nA}IaYubd{tFEGvNBsDtCY%uMaY64GY-jzN9QItq) z3dc!#rG102O)rxyjI_tE?You;lvGq?34Y{NK#KDAOR9}lY30bhZn8%jFL(eM$N zrmAzLf711G6`s`cO|(vH=XQDx6Sr>)mx z@O%&{!-(gjsy5fC3myO2AXlODX*TjpX37$oe?s}1XBpKGeQEq|4Dl^;;g2#i&ggwv zSwfWBg_V!GHW&O*Do{qmXbTJR3<-LY&&?FHNy06DToiC;$s}X1q_@wX`|9DvXY=Mn zd)zL&9<#`#<&iUD*fvRnp33UtO^GN`q`q?dvfqXHll$au4xEw|Rq9%G&C3j0y)fVT zf7Ng45L4fqG%OB~NXJx9a!{OYG&j@%TpRIlTv^J>Sdu$my1E#o(|ln{T?v`1$$7MI z>}#o3)<~S4eme%eJN=5;PA+uRG&~>CbdpMsE0ag6y-_&BcfuC>Xp@HQ^=vpEpH#%` zFMc+)nc8!_8PVqb%37)th&;Aye~~w*_YC7LS#5pOP_#BHW@m-Sd?ZM86FD{s zor!%5TNlWC1L?Rt`Gorn_3A+(O$$*2vRSsg=Z>>#on=Z$+Ol$us%>{3=WUP_$(biJ zT@KClwwCo!_I-G~T$J`Cj8WYwW;l)@xFn@XuGKM^xMBjY$>U7~T?znBIh`Y*e`IO6 zyeyoM!!d!ui0&vL!4p))d*949TO)z>N>b=`QBE_3Y+CqYW2gf2IyiQ2vg(l}^rhWR zdkT>WmEqF(F9bmCwJ&!>wTI$56be@7!WCIo4YtJWH=|#n)kxAaz}~M88g@ph@cb;--h=FXRE#&Swbo ze`|!-zO|QrOe;rJ6;kCe*{c>Xo}N!qX_A7%TkZD5D-*7j=hN#h!l{Ja0kKtowkl2ARBd7}j&>nD7e_H`1LP#jJs~jPi z$xXSQ&kTt}D!eMQ=}8d6OaiF0BNGp>koXT81xSgu6Fh%1H@lEt*M92h+;ofD78Si6 z6})Z6{T$579rJog@4Fs~o{}z{ZAbaF(G1#$%Y;h8PEX8QNEuy%Fb}})Tk2_0Odqh< zsj=;U-M&5QQb1b6e`my^r7;D`*JSF~*ZKoMAw99Ombyrj1HVtDnSnr|RbYI#MFQ)n zrA~bbS)?}q8zh-}Z6O*0IcQetYkww`Md#yB=bnOGkL+A!uhg39deYdltRAG*$%gJe z98DG4F2vYDu*^mVH>fJS=rW7$^iy%W>Dpabb!2u}-clmnC%3K5ReAJx| zk?2Gh6$lpq58db-B=vs=h4yA<(6H(CY7LF5llpY@3E$h& ztL{qH%=g}VD`{;?#B**9bNxPQ#<{zXisk-KOBYU+JzN*`ifw|z4l3*6qrkPkb+c(0}5vrL;6sK7hbKwe{c%Icj@gdSkRWa>Y*y-G{H2S zx4PK&d@^dwhTL)A4^SO&;)@N{XyPA+HSE>Hzy2R;bNxJN99DdxjL-gi64sX=O#W&-y zeX{|mf8TuSyWQ&O+AyZzO^r4)_+=F!Bnj_j?%Hu$ZRobb`Dy&w&{|ml`OfCrEB#%c zhj_c!^<1Dlz8s^W#}TV_eL8P9Z$1T_zmmIl`gzs0`ezHa-?HC+wW2}H510Q4I)6W# zWrUZJuq$rvZNGh`?@uvn=yzxEHPy5`RcnL*f9ek>1hGxqwbQf4KL9iJ13@JE;Fb!p zU^;^f*bBN_WyA3@7}vp7z&Uq8w*?9Q@;lNkg}c#VL-#aD1R07$=8j69z&?RAP0gJN zq9C}>JW5%u(>*(sYd$IIE0Si27_OxA9P}@Nx2m*QIh|xPkkfc#)4koAl{~mdpH(*M zf9^~p+)5*(>2!thU>&4CPp9+5mZXxGtSDbsJJ7XswawSJmv@t?HaDYg`ri+(+)Unt z+s#}(2|j2Fr`m?K81n294;q_7Yolz$@m4U?2igQATUJVjF0--+%pY5gC1r)a!N)4i<=o zahhPHKc0^=;;EWBbHzDc(QxnXZ~lzG{tjfz329|+WOH-C>dJ!lKCGaOQcQ8Tt)j zloN(O=6AI{`{w72T=!>;`~d&1&)%GIHGr63)s{S5oXr`H6SAmabdFCJ>oYw8Cz&9B zSrOB`AdBr;^zgxK@h_MNhVqyuagoEI#p*213z|r>xIK%0`SB{^S2OYuM@k{684^7( zPw?|^e&)<9G?xrkmt-ENYS@QO{Rh7g@AWWiPMpvT2C11CO}JjG-0kXe-;-ulw?k8v zo6Q|*S~A?!q&p0|!$5Hs9_KVJxPLi+!Iv+i1q|!UZB1@xoJHM!MVj8cN6LQo`{Jk2 zPR=vR%_L|fC-9#bTPYcpx%J6qRIZ15PwE*@qIbKp?VGM8%R4i1Vcy9ynx)b@X<7C+ z<2ePRj5A@Ls}0Si0C$r)7kWoB&XhZztVuuYn`$6cx80RPvurlaa7S*N!Axp@7v&5l z5Sf{Dx+E7g&XdAAOybGF^x&OU-8cJsbph*?`(Zq1Dk;lye*Z=UEo5q+qfK~F<2m4% z^NgF7qpu%M>`G|NtX-E;w;Rx--JYzPzFclhzoJ7Aqc{(cu1Vs@?izm;?_b;A3d+_|xFJ^E45ObPKX=hp1n{Fo1FIgPjUd^Z) z4vEimo%r4-FuBYiA$bb9i>59bm-Ph|;19cp&8jAkt&=C4<&dz9ThDTT%JNjF9Ykpf zDTmwPX`%9NsgI1yG`eouULRN4l0*CE&<*v93=J+--IQ>^m{V8LtI1Ic6&z-}(Vr9a zpmEHY@hF<2^X2?%c0m9%NVis);pXqjZeLgRs%fv)gAe^`EnvZkmmLFd{du-FF&;dvj=C(t}DV9+dCxy+wC+pGN z1(hVO6&N_lEl zdsm0x1?+5XtPX>XAMF=du0JgMp&1SsLI6ZVU9Pl*NK(pwGhuV@1?KS#nHgDTuAx*i z7z0UW)4+siUtb)>^~pn=?62(mu4+^;yCMCqu9^?N zshxB-Pe7f2KqQ~ugmQLFB~vLj7YR_I!{MlW6~Y(KV!OA3#hQNp{L48&NZ=q*oZK(2 z!a?J*_+vYc8AO`2De>azqhQyCQG^DzqKmOR65N81`GQGpAFxC-s940nAIBv6rT{@^ zJrkg(hDzK~!GuFb9hrh5W)_}{Q>hQyK*}-jDjEWR&g+n?+rxHg!NSYoJOvE3N%mZc zeadm(5FS&S26Ew|3l9g3un&}^QtDkTkE2o~J7F0+1s|iq5cwed@it+1By@h&$toPkkJ@!cnvbTDDf$RcjbgRIgWgrnV zYp8^Oa8WAput8aa$`ls6({>*TM$V8vj1yp$-r(58i*t$M2IRVp^5r4GG)Gx7F|@k@ zV1rW)Clh#Di4D}ZodwL%6w&KiD}y3Q^aDs(hnK5ce|n%XG8@;{i6fftQNEQbXmFEp zVn*ZKx^}xhppz-lR3S5(q`^*1GTa~J37^t`|8W?b=m*s+0TxHNd?LVAICNP1kqzKJ zPHw_X1sVR05Zd=(xMl^LhGX&u$Db>|D<9@6294XxPyu)211UPC&ABsa%siZpeM zC(NE=;P#)fJfYkj_li4a*i#HwL441I4wx;IJ zyut-7?gF%j5H0%}4^?M|Slde6_WQ!wXu_oK{4%HC0B~&b$GD;bx)U`gvxyHr>Ds6~^QBvRm10P#(NHI>T zfb2AyTYi5KS|YR5nzHzD#DK`5%puRkh(4tw$7c_oJbh`_%{BT6gdcZ)4;Ev8?r@ES z@oFGLp)kIOa{Y2pc#jN$1H|?v@c_Hx9dP%%Gz;O+i1b(cf*C-3EI@OWTIxP?_5!#0Mk35Ls%ao9PafWkzEs&=eFtZw*~Dm8gJ!;&A#-VAsP; zfLKg&9(6l4m-4tkP3uCSn;US$9<1j`HADj(C?6}AaXT4ztl+j8z#VQ=>87x-KZ1TV zMx>~K9p$q)_BB0N>L`eadJm*xYWtn(KF;kdBOEhQ-j_$<7xmz`o7%cu`5NHT z^dYw8P~9l;r!}DNB$`rxT(y5*0jmcAp8$hf6x%kfl=b$J$EYv=n3NZPPLrxM)0vb&rRG-- zu#{7%81wKj=BgW5+j(r?=AhjL#!(h5vK?RC9n8dfx>#ktCGuV+#%$~~kh z?Xc~zr3QMEVE1o-)m%4&iUDQiv>wFnw)h+)8PvaaeA5T25JBeFCV_AIYDiGc(*aeA zQTK%sv?BmG4Hzi)8xS}S7x2m{(8a0lP+L{6vfi)Wt*0THsPgF3cPwdINGGz>JaI9C zdFjORyJ}Mc9HDO9b+8R`6-~r3XHaNb+4{vtTHTRqaFfk{xIYFAka`vHw$|unn#QBF zy~N&V%yXLXG+Mt6NJLO@yfwiRLeuI>*+^c;;ww5<3v*F`xJZ51=Hc;WQH)();VKel zE)M{)`+$y^9CvR_PbbTrOw`G`oWtbY4KI5~IDsYheQn9#;A3!# z=`6)yrWD?Pe};y^)jUYcI58}&-K$n9?Kr@0Xlx8AH# zmg(+}1WC@ldeEa(GQDn1iy$td+xEmwt_<%!Rm>`Xkx)>UGb`m$^=QGFQ|YKW3YBuA zR~-?4iY2GJX9?FICp>N7`m7ev;`oy^caEc-AS+>$aa4X zdil|RxBosZNnB88sn(0XzsF1IYTqo8FzSsfUKN_9MR4Z~HJ5qm7UIaA4KOm$dbt}|2(w8645 zzd2+LA$M{U0557b1HiyWkG;FYR)u!dx%U%);IZ`e@9l*%b@T-YY@$2HzU_2S0r^I& zX-KInFc*GW1^r7^5}ogoSiWhFe5E=PkR6u?^PqN9N+J$+u1};eWTdI-mjsg!|O(M^}?bT+h%ZA zV^z0-pa+&XYzEy$B7>rgRt5cNJu;eAdl!M@{BxCkaZ=fT``1yCz&ut25ebFNQA9G; za1CpOK#u^MCn#rv8*F_+@@rp{NAX zYS|rEXbBV%dG=|Hg?SWbY@K6srd_mdZ}%Tqb+2o#d5y6Jy%{q29%1wLh*FUi5dP%}4ho@?B;WNP_|Db7EiJO6DfK)9 z4!WTeM@ful90&-X^r0ym4Hgi|K>!_nUStHjgzU6CF4i3TYmN<-=i<5SOJQ5Kh9F%U z%4*5PA#U{z{UV5Xn*Mxdv5guu-R4tgd6Sl{ok`YqXWBhZVgG|5>szYECj%T~@<`hx z2Qp5Aaphb-q={U+q#0o7IswOeb-Q;#@Dp4oSFLvcH>M}IQh=gBuy8SRB~MX+iU5CP za{EJ#KQcL|F-b@%5eRSaw)?nyq>#zhEy8kdNu8Pj5tY%G?-x@Ocl)+)b1yrQ{klLMr z4^y@;`~hAVq^J7gq}Yr^FyD9dy%uuaweLNTfB7u>kXAP%H&QjCI@hko9kRK%YgIyj zy)Cv~L$#+nWk)(q)+WXHtl!DbG10lx`SUEt2e28-2BCU-^c|7#23ZHv{v+u>AJ3}j zwBsh(fW)@pp378Lw9u*D1KxJ&JdaPNSyg@hwKp2G93gvV)m(o6DOMQm07 zSP1NcG6zuY%dH@y^0Bd9=&CgnTpG!04yyx2O(H>`|+Vnj(#6 zVev1UryA{pjj|kYf zm;P2iwHO&j-BGhrH{@~OfaqN)l&Sor3KpmptZ>AbeeG-$Y+zRFj$pD-mw7`K5G^@v zjCYEF6B7~@l5;w+Na1NE(?k}bMN;lz8%>!2?S51>OtrZS+h&vIHswyDr{}(MR;j0l zF9`)}-#Rk86H&4duewxql=U7&ccmGl6Lf2n_lp|=G^z$&UeZjhTo^EEs}<0`*|hB{ z8TumOzK>R*3`|@ga%W|%aDL9+L_BhnP$Spfi=r3kaVkS2ln7b#cHW*$=68Z~c(kWR zXM6FQh?}cqHipC9om+?Dk65*G&;>+a+IB{_vsg;d%zsirftbl06kFxs)Hw zKhxBOsx%nLX$VC@bh9yq6Z~&;$a`C*l`oq}=r||noZ2&fnJh2VV3|dQ_GNW2yj6vR z=y~5B-9-c4yo%yx}XMKtPK86g&`rq&4I#SzMiS?Eu@Mp0C0r8~p zi;K>e%@=$P?#}&2E>Q9h>s2lz4@;|B2XpN-ZnLm$tRl{`U)Ae2c;R0=q#;aT329_J z-Zc$ywGHRH9@a?Y=7xhx+66)+bgf%9R~aLOz>C5JY;pD?rnr>>c*M3=IqoI+1|Ay; znyZY>`HoI284?M61hG@KQC0RSA+8mbR*q}I%UCl`02&%QdhztXLo_42|EOTP^7Ir~ zbM*yaqg4iWVNZTVr|7y(WjhdMu!{k1*F%%*mEgW3l2qJCdJ~Gk{0_z+^Kj8&*fLo2 zfG_#pLnsnn)mU!owCu-}Skk(ohU;tb8lBif4Ew0w-Kh-gl4N}XC4d+yw^BY3!MHmX zR_dnpr+o=z3ng>peM9p>->mT7Z&kLOpi~h;IPLiYs3ZS=6-nP>12i0FQAq6fPtGb+ zc;r4+W|^bEYYyHh{`q^6NGIU6pw5dCKz{j&J6MSY!Or!i8q?#TStcSIVq(l%kA|Uw zNNPnTidpTfaLAWBg88s4ZRdXB{zL8$sHU8>b%b-(418I&5(AZ( zwB#AOc2@b5k(!qh1zD^|Kz@p(&nTW5Q=1$=HY{fyQ6BtsZ+m#g;WC-b!U{ zV{m@bq0?o;xQ$J~Z!tDBZ2;0HN4#O0-T~(l9F+nj6KABJ7>DPG^_Qv2z{#f>{~3b)+a113V?66EK(ofM7tIpJAK)96)Aq&|Kv886;gl8-oE$&ZI5K zU8~DGWJ819;Iy2|c?n*nk#J1D3Am&henzNgp6i_xGf$kEtwPe*f?(SUeCfjl=$y_A z8zvZTdxv?TO^mA3=mGUm*9VQASO0^CI@j+PHfbBRPcTIymmGN5C02TI0jeElu#@RS z)utKYS<6iBd8Xb)Hm=)FH(n~;tUYE{^* zK%;;!g7DA9U*?iK)L*Xkf_FUso*_jahcDS=Vc5@iz1+XEamCCJOrL3Zfk^u8`13PE zN!220Kucf(xT9W+2c^AH0~ctmM|v995#fl-RAufClTRs2kSs7Jp-E*+i#ogY z=xW<`RbIMB(8SsbOF#|V(}@2Y5Uh&{t0kni08gPi4K3n)v_YhA4oLFR5C*|q z^LFP8I4CTTy>(%6sv?Rg!1)b4Bohie{T}#-VlRi~7$K>vBB8*<0K^*)U#OGH#vI+O zA^<@yxR$YCoIxKQ_p0~L^8?Vs_|_95swQ*)Wj| zy;lGsQ392P=WMi~nVC$lUiDo~&LN`IBvaLx)RDw3 z>{hyiN_5s=C)^P~_mAl+&5J89(3gSKkub+I_!=!wjP2NdswK3hBVN~skjO{r0 zbI(LU47K?Y@yR*jP{a3Mou~K;M!}+{bY&{ob&w9V!0sR<{5(#KJ|{#2KCS5tJ%>RV zQgM8X8Eb6_UyfnocG%Gdsezl+c=<7e79i~?Q1fyT_jTeI@Zc>(ydb+zv~|_8@gig{ zIeo*f6kA&<@+~nm8Z!U;;IzW&I;}l1FKE?v&Oh+$gSi_Ej{A&mDiFI?)v4O^Enkv_ zY7w?{1pX6OlhDeuT4qirN2Iz zjg1jkzsssFkVtIjJ)N(^{*Vx5p#s2j#0#QMn8kijY!SCwLtI*_rYI}cVD6sv;5;k7 zpja3s4Ckwhg-EHdwbZGPzm7*v{5F9CTmd^abdG1LS%}{w%&C>XKLU1Tw75mWD;A37 zS}BE~g91EBHsJZwk#{12gXMLk-!0CEDq94FMF_b-q;{yno@SG}d<4dy8Q$ZcNAFCY zL6^&>=UZ|%UxBD0ifdRSDlDtoRYCT<%^%Ybo6$1Z3EzNNEaqnH!7U%$HX6)o2#-eF zfd2BN%dYU|6!~{QC&R?iZ`0tVvlTwCxb~|Mt(OZ+f^P(7k+aP2nzdpo zY^m+Y9(J=ivsH|b zHpEhE2NRwhSENL4%;@UF#+)}7zs1(AfXD#w?|Y931d_R=C~o)7v<>U}Myw z`dX|^%&=2{5$mA3l$c32nr`YlLi`dH;~sXZzuZJg11{}Hi=r*of#!D}x)m#@hGDObE|qc3`sZW=A%%4ii1bubV_31yWcvy2!4 zi%@xBp7_$&b{TbO3(dTS8q!ggM^k!4jr@6J zX+-v~XSLH#8VRt2QyB~>kStefKHBh!SXX9uA;2r_0ORa`X6j4Cy# zOo>b(^n$fW061`&+Y7>c8W^0{Ca7$Kzsn#=y9Q!VVW@A&k~w+ug>4j_yteasmnzdO zxcQIl4F$x_{it2@wMV{UGeiz|wRhw077 zd9K~$lDN7j?KoddC|trQs3oOV$w96voDe1i+bI>+7mYon!E&-o8#Rn~X0a?5Y0i04 zb9x~$U4Qj{wqeC2!MEIPa16x&S27|j?;=lW8<*&A=PQRr${?Gj(j<=l7F?>go%KLO zQj?GwVo(iz{t3YXiKUL>++)5v(ns!9YtDpADR)94W$jhAxqU{6I>fLRxaE?#%ZnnP z>G^hxwZgkyTY^(`I}_(S_tM@O@@7%+N@<&FYdS6XQt-b**nO%zm>x|7?sK6zuoaUq zfUsxMKb^j-QPd$0w;Jz zNr=RxediZ3wd&inUdD_kA2XBN&7T!(2oX?BEr)(JuC`My(n0D14x1x_4G#1U2!cti zhF>7shTBn5d(_N5L1SyOb4k|ewAx1%f_aH8h;Ig|Cj4>594fxbD_7nKDwA6Dyb^lS z&OdTTx#}Rfvftp=&pbHnrO04e^5pn06O3YNkGz4XGtgu}P!F4J!$EJSo8_NGOxc?AtHE;xu-P|DA zb`xhee_qNYJa|EE?-PDNG7E}+HE6j8GPiff2*yrCf$HgHeIk5+@ZWwznf&i0;^)iO zF!`7R6ak!xgDd%&15_B;sHqiA+KBFxt*59YupU{|d1$$cOl3eKA^=S`qloYFTX9~e zetxF8vTVx${gB`$K`+D6tNN^}l@Qq<#X8yBt7`kloggY{rntxdb#3ALc-LO$wyu*n zn0#}+Uhb;CAV>L;y;$Ye*rAyaIBwYLzltNC)U0j;s;N>@0#5;4LmS^*yjVQGKa8$H zmMP4Tuwj+atg3Ed7YQ?T2eQ3?Roj|8Om?^hu|OIP$ftT=iQl-c)S$ME`O^rtQ0`P` zKJ+8m2PAJ}GlY`{Qo)SD92;XJe%vM$Tr5ks z*)+*+SHQ?6#U)57bg!#7%VB7Wc_R~jGFO`pw`D57_`()GeLSn;#BW20TGX;jTcT=Nxd{JSxT+5K=x#z>nkXd{ zOLlm=uiXN=`p{w3HfgA!U4Y{b?=v+&R#>;qH&s7-*KRs>viOLa)m(|L(@16;dm)bp zzPj~zD>hqy=DP8lGMbTQE?yROt+I={wwWWV~tW`qF9P!Ois{x zalr1Bv7H|r8c@xoi?xr@d08puMb0VcXCCQ(blCNb6UDdh-yYy|2KE{%c&hmEeHXUQ z%veAu6?k9*atNnlVO>8e9$QuS_1&796!r)5M(6ee1uHQ&EHrk?DW~meoC<#Mj+A+( zUsNAz28sb10;FFa;5o$?t{p2ympW05hC3{(#>L0U3h8_vHiP2rEt-PTz&Ruef`9X} zx5ABe!Vw`*c5m!nxTQBO6^F z<8zW+9Py?Jc~3!U_TO3qbE-WrKjhs-oq}x+E_0Uz$gK z$RBp^kWi+Ah0D_36sz?8CS8Pj!wv6VY6(7SWyc3M$r2o*K)>Vo>N_+*+<25cLzo~?|e(_B$CGDKXQRAUPCLr4?KuEA{@n% z=xf2<;5R67W2UgJ<1JA~aWzB^BdaWTjDvLQ;8_4wf=i?}Qh!{^Fc~DIj0mt$N?5sR zyllbI>Q{)&=#G&o_g_@58DiGVYyllP#PR^5`o7{k&wSX^A7{Em>#Rdbn^H-~NI0xm2CFYvet5AaNCOr+JG&sH5mgq0Awr6wTM47gor3RE@#T}pUvbc# z`5p&?T3acjlzg60IA=>U6$Iew??*lm*}rXZ2Qu?J&CMZnJ@X2|SGNizvT#sj*SlzG z(#_x?9{cktaUy3aL;7lkm2!yfve9S_oa4$MA8g9gMt@kb4l^7aKe5+IF&pKFYvS3L+ninfu~( zkR13CGI?2C!SbTdaRaUg;-1-{UGMPD!8SDIHbSOzUl^V`xOdF zKPrcWu-oJG`%riU<2?m>!#sjqOZ@^avJ75;GNxBIQt11$S)oDynV}C>9H)36>o3pL z6kH!=m|9HW#zu>_<*eh=l05 z{sk|n&#Wl%<`9_snTW63=DTw-nMYmDZYL{U+LKZUdPCf^_WP>d;SOp`>g zbrZT>CFyrMydkPsH4)t1N!ZenXiqZT8}NUt=Lw2ki%hqSM0+}LoJS>C;4&r-F&2Bf z^Tg<3D2^`o_X+rY1|9P*$8QBaf(ImTUI<|ii)(og&SOBdCN6H2z{d`z9TJu|=#{6*!#BzB5&lo(>beZ`||^?TllT-b?hK@fIgFO|n_ ze*bEvXYT|CDOxL&JZ#wb+#%>n`^!SU@*O>qJHs+-Q3)wCeo%eCfi-nZhdL|~wyldC z-xt!ai6|1!K`D#nMkN}_y~JGjIjZiQ`{pQHV7uVUSomemDwpsls7(ugYl?3Fab(s+ zHSvc(#@b?h10fqP_#i!by|olT;NrvAKk^eKEkOs)kN#BltJ+L@4qgF28EPouVz2Vg z)fd8*?pe62GecFus4WaVN<&yyey1dy;2yGS!wDBd{^ES~8L95u8BBmfhiytnnGpnY zAU2Ll@|$7+7~E1KyKumf#vC?ggAfg0o5VX^Nm?UWd6q~e3#C=8u08Y&o_lzBl z2M$z9!&AnNPWv?7Ts5tI6KbJQFKzA`2uK7-ppB`>VL!`V^_TKzdB7#+61E@+kacxl z)HHl!_mZSCBrxyT!(W$cs-VfVH4h)!^(YM@Hw7ch7|;-_wXX}epY#2B1FKW**}j4t z7PmDq<)WlW)lI3FD?+n3eHJ4vZ|R}k{&2^h7m_)^|rG#Kf@;>OF>SCiYlF zR{e*CTV?SD-JAL+%o<(s?tK?gcpO;0%yp;Fy57sZ38S?(_?eMZ1%}sy`iFD`UuWnn z#6NjGr`zn935;GEI-`bnfc4<0b{_^n-h1n_%5Dlt?AKo(19e5)fT-aNNp?Zr-rhcH zGk-G_TckCAv}wMdctRgYC?Lx`c;Fl}KiA~<;lpA|w$j>?iF<=2_*!u_)efY7=^^Lq z7ee^3*KV%G*83W}N1Bhbd{Yej3{7wV!F)-k{qC^DW9GM74zKzKN&GC*{d~A`I!Om} zL=amiw8$;V{CmF7SiLTE1$O!5=5Bpm)yt3*XOnBP^n^M!Mt}2_HB8%J5ygk`am}>x zv-vHBJa))H#5isb-tl{q<0lP5{*o@kV>&0=m9zcQPgXjVOl@r%uuzIz4k-S6jQ{`gBZYE%-g{TZ?Z8Vd9fGKq!7bwr(#L;?2dxSo6j(WazMw4ye01W zvgmx}S$=>^`X@dk!_GY?~wxdp_hgo?bg&=;wwV!pg=B$XT?GV3q9~Kkne&;V=LF;{+%?9 zsD4@t+1gZVKrawMOo9%4|I2#z{DXxdXExQBsPrEQN==5ib=RGM{!9u(G4-^S=bg;M z5>um<`oL2mVca05ZsC3n;V--mn7!2TAMOIXa#T6Kj1c^2?Y>c~IOH<#7xtCU?!VpQ z`~lvM5Dykda|j?CqX#CGuWYIGCT%1V?3jq{I#;#8V%pTk>k#hUMJU-p8Vj`mwhLug z(9S^jpO?FJAR6=(rvJ>Ve^^+6m}!jo*xvbX2p(e>BqCvQQ?%s|L-$A5m*el{5h&OH zCwW@HGBGg|G7{PvTEMcfvoZdkUG-#RaZmxE)_UCf&y%?9q`K3gDAsaKs1H(_@)9YpDq^fEKnR1>keVF=x@>wkHRpJX_JAp z4Co9}O&fZm)w;S2-=J{4`9ilUiI6-E+IppV2j+cA^6Ini1biZU{cN5=^5jYm_Yx0t zUIEz*aag*kH9=z!uH)8~{86n1*8i^5FXJnW>Gvb}8Dqp%}&rC&h>FO9$VWndc+z>)gO^=Ic5L~!eU3|GC;L-w()kK`( z7;GPX&Maeln)X@W+)hUMFIK9~zcdfbT23wWqMf6oi+7|`d-hes<+p1LF4CVs zyM%=G-AAB*qc;e7vbcFHUOua~FEOc71>$5eiVeTb?z-_uOuFGc?%$Ny8|qzir^Eau zfjszUV-2jxxFo|AHP0mGvepLmYO3a| zeNStA1gYKi;8jG^rm7(e=vW#m?^x*8wBQfXN)9v4L(^N~u2Pt}ibih(XE{=MPOsWF zQmaza=@wg#&Wth!ZV0Mf;%xlBuqobzgbWMs;WqALG5&mXdT0e(1(XBX=5j-9yS`ch zWJw`tJkr{^UtaAWyTi-l>-_c0-{H}RF+9Z0Q=YF!m_{bCO8>!T6%>BDoa%*!n=E~; zyV{;6LUt01H!BD^2w~W(I?7F4 zAu{^r%(*d^exIwA8}Zv2NN9O>b2{zth4T6HBx(G?bq zI+t*7uIlzN4Wuc;_~GTzgjb$!^j>@AFNoEei$2+512s{zJ_iP#J8hv0j7IqF6{7R_ z7bJQ$9BD|w6pJ}<6H{7H=fVYGR2bVGLq^^r1}lQ>HO-3PFtWtj*#3Gn5Kk7JSe_1T zZ(`EEXHRb3s?7b|R0IMmba1p@mHmmq)W7)A+&$i|>>!L~cv9EP%p*W505IOiFv!1h z9-3;3B~4*J9A(Gjkjjb5z>ewotX&KQT>&>70v!=tuD=3u?g1;?Tyl-*q(@>oVGJ`- zZ<-%re-nUorCpN-Rn+~_Eq;XO0{H@=%xqtsxwM?X4A9@a(q1H^VHGwCS<|^2M6VDDDEu z7^1|gnk%0QcpCP{Q{=fzTq#()r|!EHYS05`>+~ZWOaF+h_jL@yjUM)DRP-Q@uuKS3H+&=rEql;lJ(+o5&sU+*NS61w}fK2wne;iIKI~ z8QdAl+sCW+>I z&|O~W6HYNH9!)$fag4El-|EVMcNnpvN=>V2&EHi0L}Tx-%?fgiQR_Lu&soV%R3A#r zX0NGRZQEjdH>s%fe%V47a>Z!x-6yBbXH|3YXbERjGdq$zVT11BzZeMDc$<|43iJWF zpG59$@a`LKDuO#&C1Rk_`iix66{P29gHN~LeP3|lqmB2%&Rvc$cKRjlSLp;6ejDF2 zGr&^lxzNxS;eyTcO9CkX(eR1cOY$o&1iH@nXR%Q~kW; zFmnFBJvP4j=<5Z93}HM#Jvp8nI11aEXk?^C5)|ab3ufNAE&25y}MaE{(7}odlGpC76G_M zXwZ>)!$mR7R)URLs0{6K3drx232oA81EJjkF*B~J3RZv|Z*W`UBh~`MU#pUL@jKb7 zj!QG5Q!!3PXAI+Lb`=hZQ^xYslU3Uh)EZEIDEO8<@ z1&8-)%fMjuN5puOf6q-wx)bD;Wd`b`Qy9l!91GcI68Cs6a86sl_BT#7pl+R{uS+Xi znwN1CkQ!vPK7E)UTFUx|x)|QenH@J`VA`Bc+px{SM#R=oSc0_w*IgsBJ1J{&By{6+ z!m3=EVGjcegVx?(EWZd`;N*a>{suj7nAf2i{Y~MMbpe|PF%MefkR2qY8_{oP1PU5{ zulE>*rjI3-NJ@tsWQ&^(a+O0tb|-BYqN1wvq!&E%!wXX~ap7&3jgV`^ZM(typ?H&U zQ)0C%Q!t4pi5CtPw-W5WSW6HZ;q_do<8Ch*aH9Iyupz7AexL%)-E(`GuSR?R#TVZH zSHyN{-`p-}eGlV{M3beFkrgZ)+y-=QxB#vyeRieq>|KP63I$+ z-T>mB(FNsepCI#-rR;3X_vE=Xk+4~3>uVQDBu|BpL~#bx_^6;BX*qrXGt|`YF@g=-t0;SQZR#_hp_ z7%%g2C=#h27(=HgjDB=Cx|tO5T~ecECfH?yV`ga=a!vsTQpY%%f$liD3@!Nn;^MV@ zN-GQ@8NnfzWFb7{1V8~~m~lHzi{lfg9rDj`u?Lt%FN!JE+a7W^ddl1#8$ZtIJ;F`x z0$*`AidNAU8gPwDADj%{Jm43hIX1(m5uW)WPa}8jhDr9-#zU(w;ffjkAV5eCh&Jp> zl5sC}Cu4zj-M>3p{IJbKP+?7;65wC}{p>N{TN45>CFQa$0ZBSBWt+=sZjto{dA>_G zLCRTq|M8X_i*-<_3Pn$d*zJ)num5t5BlQR!4ux>{C8N`uJgAo@LF!l$T*{V_PA7w_y*EeSBd-C0S54FdnL6GrR*j`I;>5DyXNpr@f#Oi1ZdoxR>F9 z7#Drb`u$y$Jsc+O5OkbM+#D4)%Y;p6_OX6D(T)mn?nn%=2#mzOBZe+4LX~24gF3}0 zxlf*otr_k|^mtpVBQiSq-Dym6OCQ(CTS>Fa+S~uSC!`42>7y=2~PNOQZKg4LBkvkc~SGNR$9P(%(LZ*Ec zk=kw8*(g(R<~ADrG~B(x#XH(WL+7Bo=b8N|TpmpVQ9}Uc1WxKQMvyv8^<|G0R%3mc z7Cc5QO%Jy*sLmLUdu5*@Q%s6NiX0+EoQ**LE|<*pR=zIhSD4Pxy+S!f!Y}tz{R0O_ zYO~iIu3o^;AYwiq9*x^d$F}S!WAz4_dC<*JKxA$UvvWr|aM2rS#WR&Fjv;0 z0LOvj&BUMT-YXO`yn%`%oI(juYrq+tB4jZZhS-H*#FgR=_M;W*jAD}W@wh1>G8no* z3VgZ~mytd@$*ei*R0r_8-94fz2LOzZC;#euCGzV`k=K(UfqE_ZAc}}32(CS23sXB% z_#J%A`_k<<3Y+6He|gdsIRbn2xAnhCw{kK#_KTdy`cIUdm#qPOJkhRLt^peRu33>x zfJRPIEk4j7coMAemh%+1R(>Fpt9dC-1@Bjzx#Gd}_<0|JS5^BhEk2-2SrK@s4BlH# zFvgWb$du+V@EAQt2Bix6Iw;MuCcHS6#4&q@+7{d1$(s9LFG8BU@XqRLK^zVKyRN&v zQmD|jsWw35{C?({6=DCMtBLc(oQ|nQKtGkofRl13ntS*1p;*MBkeX>6jVs#SdOXgC zx(R*BZ*2J5hdwr8Z(P(%0Vv@46?WG%6gfUhU?(^BVj~K9i0Zb2W6JrxDCok3eU1T~ zJLiw1h-}<{P^X}}ezo_%C|wN63`gJ)>L2;*szM%D!$JbW?eCknN!+%eG7zoL#AH32 zZDct?7Q30&4)5`=kE>w;@>r10f4sq8 zLWmdcEAdDI9~(m!%IAp{kVldh{8ng=SbFm))}?o1@|vO5m+<=ElBn!QB4i*$HU#m3&lGtoEW52lO&o4*W)vQCF z-BgHJsNUMFBB7p={mUw~2IcOoFVsRyJpz)G4@0SYASThxTbqFs3oX3 z()O!7gqO&S8%ovxwm;4oKz+rhVmcmlgIeVHNd8w8xU>VYg7;N@#DPzDY43b0e=RXp z6P0~jCqkzC8AYZ-9%{FMQay5N*xZJ&e8>jxP2pj8n|Bm$js7R#itXDl!a36%0dT~WswL{y(xqMYVm_9b~|5hwaMC=0elb*qB{S7 zW>^20v%ta3luV=nDh<>+p(6i`wVU6B32`Nt)mmp$g0z{V#4Yf>fI@REFzzE;CRL{) zo5X!leT(8Xy%Mh6BV<#6Zi3LA%HT@A_Bw{wi;rPO-HU$Hxt`){8yTH+!-$*S*`8cI zXCcQYJX7x^kzY0~j~Sx+w|wK|=eo3PssuvfE^^0QBr3VoUJu+kjURmTM23j2ODVGd z*CTvB`A<86Rd(df4a4iRIT_Tml~De6lr*fwgVZhWYUfcEwJ#3l-(YIT^6p|vT?=v@ z3660jaDwbzL=i%PgHFzx5&b zpO4|umSbn-#y22eX=6mJ)r$twB>Hv?&DN8Uj)v3<#S}5laj16otWqUVJ1%pvw!k>n z^02&g>rU~KtC)y{1_LI3mKK$PV}4}aQff(yUM6Y2W5&feVKk)cR{g@q%`@B_e05eZrmY0fiC%loERn+ zaZPH}d>JoaAnrrx5>+F8LI|Z<=1a;5Yq#-9W94&6J6)*gUew6w5VSZ+Cd^Q>pGhwk z<0m7x^#XCM!D-a3J-bIxS1kI#s4)Q8B2RCFtLrLTYT-zXz8ci^$PY+-kJCD-eV+%H*q++p>V|{b8ZZXnLu{R+^*&)?Qf{1cQ2lJg4-v+JF3#%DKJU z#tCs!1qLGHDwJ?t#<5Y^@3UtkX0fD&QQ77oY``SsU}w*j91|@5&0OnIN}F6)!9rGA zf7{vfHDfj7B$k^<-P5AW>Y-8`6V2n2B&kpR4TqTR>*Ato#u_(uokp+vKsu`fPce27 zRr5N16Idda1?a^Q9#O_{YlWEs4#^#Cat>Ezk&*gS4?W?d$5B|Gh1G za{zB40XkS>l6D+)qfTfTAa(;G=PVKnq;oA854tmAAoXWMNAG1vn+LXxKeN5xM>aDf zjogb+SV&d4_cJ3yld8yI0EpzqjljEFP~mU@VGQJfZ21grm=uV)H5o`5and>zQVhZC zOgz4C838BhXU};l0S<}*E;D{rhBWdYY#@!9%24lXBOJFe4jxLtwImx{GNn8fjZxu? zIP9IBx9c#6hp@cpgCUR1^QvZQ@Rx zW7Khy{>V>x#`Qy@FNzc5ufu=61r4yeTk zXu%rLDkw9V;i3nPgjUv~^_P}9Eg#OIlDdzdN!WMJ#RJJ*s&u`F%#K;+mh(^~0>M9P z8isD}k>PcRhZ8inINWkpO||q>WyulwwJF{e(oKP0EaDb5C;;dixe`ej*zt+pY2H<6 zvFHDbhkk9Cdy7fxl%mOkz)lL61{B_0YOHLJMG5hP=kRkW!OdvzqOOlK*W0`d5sg6S zrpgr};Vj)N1-#g$pUOgHznn2sKID#OA#VpExI7OSSa313=?urrW$0TN@yn2)t)GsF z>VRMpv9`7QOZfYj{+ahwVdS8)I*2MmjEpR{3kFd(qis2~fHCGkHi~F-0^Tq=rC@!~ zxiX%?{#uZ}Y4i^cmVu;6Z8HvR-A_RNCkW+>Jon_hc!z{0cdi0gSv$PuOu$k|24Yn~ zuI+PBjf6a>4d^ZmA_Vvu)9*qduWx3-~dOarV;F~24GRZI>YA> zSZe9KjnXt{awq<@j;h$Hfm@qlNF6kbTb|RHDgx~&iGNRXA|~{Pelc4o0$&+SYjp0J z%Lr?o`wq%g(osyn@^k$Q-79oBELmiXI~oMTGu8z{EzNSOYiwdAn4uLTkIwy0rf$Jb z`W2ix!g$YbM9gHQ1c)>5Kc-Ihf+!T4Xp<2)keL0%d&{{bw%IZVfJEq-at)yZz2nV! zO~J+}Dwl%&`SuP}XC_dkxPu<|3|ZdK7vq==S+r85+3qM6+2zNPgG3RIYMKaSTasZe zGJm(7x-!JkkkJd?pysSrh)CEb|ckzz=peWsim#y9cMPfc+e}nUcpCH}D&c zK0bzro|-=nPZ~^tV!>ok>10eEDd>I|=pAR!xM~eLI0aA)z^J&kzYFkgDWwa7I?h<= zdC8vONqkr(1lR4QZRyrXXC*`m$pqu+V)oE4w5*#&8XG`f*u~Chz0xepsTFUO@%(VP z)ZQJsT+dEQmwpFU!b&*KhoX2{ zRKAyJhHk!ZAO))*GS1Ay^t(#JI~Xq>Q$pt#vSvsV_eIX+iY?85=WXUAs#?zcF>UF= z7-rW91Miaxm(3uSaCr5BFs%JMo4gOHzgG#`a3lutOa5|QJlp9s{j=|_d1QVBZ~0{@LbGnf2G>8QDw@e8q>D9n>=?zmy&nf%3y!dEt7zYmEdAU4!cTHzhzQup?VpUWVEmGPdj zcqNrgt+{Mrbsmv=y8=R#ptdwIZGZ<-(|%-&l+;P^Iz^eM0a(Z{gcIk}1E!uHZIXf@ zr5q$2fW+fCjLkX14ccFIp*k9Lvf# zMkzmv6{!8h`CNXSe3y(APvIDG;$L7CY;0Lm5r>u>Th~=@E^1@2+B%qT?$Ua0WvBYc zSGAuJB#X50CnE6&18sw+&c=3woB>Vs@+Ahj1)z1ispeU*IJxUb?J(leEO~J|0@GIC zz=xGtlcNlhf(4Z`d${XTw=k3ZGI$4BB$WV~b^oM=rtDmNRKL-ro(rBS2(;FQ`VOrt z3A_L1j2TtvcH!_W(5Rw_-9!4_c+cnW-BySQ%1Q~u*bb*r&N7DR;{uFIR=_F1tKZYB zUKQDe^pyn$cRKE)P)KECC}{dTq*)g0frt#krb^{bnvIj3lS*hF!!yXz7j!Uufs+wC z3>Ft95EG`X_XB}%u@-TU*Z+KHN8qX;Dl!sQBT#wIUEh7I$W28T^|YV+ryxSg)6%3? z4NOyp=Y;lmEeZ!GV16Us<%uBP=|UmxWUhuD!R)7M56471@r=)N76*xUWphTB0P(v| z{i;?(=|G#=aa(VT>1e@u?t~OUlcv|WO~-|v4QU-MXlhgt%OCQpeZCjp2 z+AW_pNprzV-RD=ETGEvJk-FQPH2sSl!Blt>MPy`#mh{}Eiq{Z6$Yihi(@R+CemTXm z0}p~7Vo;>*!_wh`O!lb(4Yon8;47r0zgP}J%sz~c9+iFo(^idRWHS@J6qy)>8FsUY2i1S%h#0I8Cc(_V9j zb)ooWS-9Jgq`2*@lXMI&jm1={a(XE9A0-B;=NvWu%okx?=!FS038VbU@V>AnnpFl1 zi&?+%f}raO^61XqtKKvNFpFO+8~8dHL1Z%3!yOB_r|K5VsPNsta#^`2R)1inx$OrR z*1g7`ui%q$D?{jHF>m`cKt*r@rrgMz8bTk9ndY-V-69B7y?eI%a<0re7LM!B!-sPs zaf+Oou&+e2;QYIyF_$s!at6sBAF4Pd93lFr074D^rab(L#%&i1)GX8aO^Q=$NG?|u z07oy+pono*Y9W3L8O&*$?LnHK$#dG%+s^4HW^vf)6PGeQbY>r%tJyU;RFZQs*}GB# zo?HyUCBd}$Y0dJG$+OWr?RKNm>oxrQFfR340Ogq_YsLv9?qqkODCge=9@XKQGHCB7 z)G%VOFI>0;De9v-&}V~m2V2rh7vfnw12n7&n_n)a{;Wj89D}JHP!?6|;>pvLc*}(= zBrZuTS(8|tEx`SmhUmy;y>Deo3+3q*D0Y3==stPvfO4wo!)x$> z$l0hcNp+IRRL%8cO7cBc?R*3i5GX$*NqAqxW*O)%WrnMqP5+A1I&fSC2B$ zfGz3)t$y*9oY2cnreRANj|%!|c$jdSGs ziU3`^ob|y5o*OXt80tiNQQf6ZTj%@_Tj$iB3AAn7*mhDu#kOtRwo$S5#kOtRwr#7D zif!v;-`4JaIp*lBSOdunMmoq}oLB4}EP zve$RY9hf&&RrfSHkW~7t_WPirWC-^H(g1*{fHLJDJo5M{j~GG)9k+R)&W(CWXx__D z?*dWnN8U%=Hv~+)E%(w$-$N*0>ChSQpaT>TsSxPE=R zpniF!UuHrn``@cC(|>Cl?ChNXMGP{f{xJvU2584_wV?a{)$cD=1HG^pl|mb5V=!oy zZ4iuaxjM4UhMW#-tW+VEC7F)Fdmy*@cA6zDKiA>0o$F(;iIT|KbVKNMdSQm9Bqsd2 z{jO3mBM4W(HPF%s_ z0a)7syWXM0_YDX%po}aFYYGrWT$e3kLH`jxZ-IS(JPG&l(Ts8HU^~fuChS&!2lNIC z*n-pTBbkhvV3WGeOK-r=B~exzwQ@I^V|oc!z}K{S%?j00VyZyV?~_(fI$Li=%p^%H zXt-oRq%j^$Emoa-ud1Tu2h17fm#Yz>2!fY#cHLqDBJesk((wb=jl&9hIn-6e zx+2pD9=N0DeKgY`@}S<&g?F%&)G!i&X3csX%{h4{9e!w%xBX(PYX$K(UP`|XWOW&Y0;iSpR2OG2e|&-&|l=T z%iYWJmbIZZkWwJ)SlhGB<;));A(&FApTu>0nf0o}{phSFW2IJPNrAqWo;i(p#6q)> ze~$u(jz(vJGi6!8d*q|hfYQVyXB(KV@%spkGa#ez3rR?W_BhWj7Pfsh$FSP0U_&}Y z8_*+Cn=?cXGpv`F<+*o-0RSMlCd%%IsQ%=XHalW7LkP|%PI(3`ZK%3z`b`Wixv0{E zX$%G-lqH|-zOQEPdO2g2EonXYyQel0hp}OZzbdEq)+{y@NB%7|PIsYMgqH1k52&qF zv<*o7M`&%$yd_kZdOEWcd+Ms5rcJ#?JXoA=WbhPcCdgO|lSHZ|52zT}MWt}t-i}`t zML-XicM}K7`l5o{`LON41Hlx_AGPnR62h4o!V46e5ro$i+`&UfioCgE|K(S+Bw(1X zAF2~rTLP0?bHKfc%IECsP6X4CInc5#Z`eiI6ggrOvxa&F;NZ)498bWHd2kWm{`aU9~YOnZk zS}PjIMzSgVR;x^to7u4;x6;WSYbn<(VK#nRt(hK84K*6F;U#h}lAlJ0{U^EQIA$Id zrsA;v_SmLmaZJ+y=+`g5+pDsnKH#kK93BA-gSsELjQw@o2;fEQTuNxF?4Tm?$w;g@ z1+kf}Y!O5_yci>9E!`yt1L!%J=eC(zlNwa z(M!f7N`50JCP`xC3fWNDV&ZpRTYUk1y#6{CoWpDhtkt+J4y~jPyG34o9=bSf35`_{ z88(_*Tka6-3A_KQ-qhTg#^fN@O;aU*^RJ}Ifjzs?5?Rc>z!?klr=Q%d+^$RbX+wr} zww#bc;s9daX3GrV;FpjJjH#fiJ5Nxr871-=x39D&dGe~Fu3GxWI)l zt8Cu6k%zf@K&>H{YfDYRcp%U9%b7xf1)E~YrI90H_8ecBtYoADj!S|H60dF}N%h?Q zrP3TlI!8c%LL56Bw1(Us-O4e(RVMx9R?ca-MN0e0ouopIr=r2`JV&}r6^GJLqaDn?fBl>TzpJx6A7F8?y{I5J zkr%?WnXW>WpII;60|2>1eWrvu?eMC0DaK+&1(fystu-r;5%0z9TEPB~Sd}?e<>y!s z9h?VnKKZPGyc$GW5~V{^{PqmqDIMrA1;LTVS{3I5zGEK7FZ18W64fJiW~r4qhX6wf zQ#%0B(sAX^jk8QGPIo$kdWaVaZx?fYaQgU5L>94i?DuD$Smb9E6i zkX~h%5GURu!NoUTR8AWOpC`z>IP(GiqKm&Y5AECKBfMbx{Q8p2>(9r3PCg}?6s@MwF5{CK7B)Ua## zKZec!pR+KrF|hr2*kn!x<^V=bm3R69T5D{^Y>Hucuc|)`5=qmF;XMVn_AwX?t`GGS z3ECW5k|E+&untyyT_s1H_1=9Tr_%Q7pxXC0h_HcRzoA)^=(puD;2QbK==T>%pr(JpaP} zmz-cDQdJv#G~Pg}x{a)Q*b3R)NwnQf6uprgP1Vs*166aZTN+a;cNxYs`CFmUE@eo? zWH8c~eU*b%ooQl`Ci!W>MIqUm4#1pYO0?#7uHVWJ*IyLIa4-nsetjHB^rJV4wB<|mVjOs%NN;rNeHSd9oqL&C&ETk zkIYk|6bBy}uar2qr~xNJJ;Ix<(o9{+eJ5vb7ri^cAPHK8eEYHFR=N|y2e_gyW}0D& z8E!9!j3#Af^nlQS-q@&ofoD=j&r`?38 z-L_4Q)isPpd1inR`_8IBKR4p4N#;uI-%n60M{ zX-)W1t6Dc~>?YxvNZ`B?>(M&(1=RMG`S@2IDH8c}H8Kwzod|AmQV{V3&bL|L95dJB z)iGUM>=1i~=+xn;JUxUZ%D)M|3~BQn@{ANsHJ0_!ndMrSlNK79FZ!>~=Gr^+4`s#% z_>gfgX>uvarjk-)381>k>f=9*5UK?kCt)Fb01Ma7?8e`8&~kMJKc53m-QB)EU14c| zxsAC8~Z&r}m+d&X*Vnxzlq{&Auq;Ee zQW&jojUr*c)ho?84vOS<183=7(OEb{j?Utt1)`_NGXG#w1#n(9^P>^MP5gBe`HSH- z+Q$V#MpD=zA6&NXl<2R)`_WE56|i3SZ^4V&?vFEikNC}Jc`xNjO}1P2D7AYLwptf1 zZEIjY_G-mA<-#Y4v=yW->ZY5~UNyY?3ToKhZ&XEsw*^+iO+ikK7$bA|JIQ0y#2GII zRY(y!X~H%=Q$Uo3W>^^6?D%xo=l!d87F+v4X{sYZ-KY&PENL?8sYeK{yH>Oryv`FUWF^fAJ6!E8>Q#pddb+kB5v$)%13qXn=K9@0S&S!1)ORd>Pk^vGD zTk`(3Dl;;RH|-|}QW-n(>n`69Yv8qr)&7uS&yMJlYm)h$;}s`F|ciG^XR zpruP6EY!DSd(&kiH@Gy+8%Kdc{D1phVo)5 zpC={T3UH*2nO0B`=CN5Tj!z55-Y*Q@p#EDsF%|MNWK&r0vvXNabx=Z8tIrsXWxt== zrnlvf&~;_A{{y+STHU@%DpWtqp_eN16bg4js~$ehH=~>qvY3-H4%P%5=RB_PoVdZ7 z=Vm%MURqeR1#I1VyAgcPJ#tC6d%fQeQkJ8Ok72bS06~Kt(#f+F+acYK>E9PTl{bnpH=KCWVR2Y#-m=VR>1J9qe$t z9U%IEEpnH5SjD$`-RddY89~O{VRNEDaB=@i309b&6bSY2J3L=R!G~zL490@EUPd=; zoWXO4xZ8dh{&y=Ja1Yh3@LnP)Jtjh61~b81$FCTrlv1n&n3*gC{s73i2*%R_Jg#EA zO;*jRvls6w^KQT3a=x;(7LaUyk9@o(V}M>uFbcwhcZ!EI!lK(uB|t-F!&Pk@RAhY-YMEOL9ef{CHwIXhg#Cp z21z7Nx`T3lpQp|gqu49swND}xRRl=zHnUQY@lr!JJ)Vok?L_S4D&I7WNWHhHFGfPx zi1^XUJwrN^9&?2MTwl+3I|%@UwZKL2Z+kf2l0ij^eZp0*!m+o34rq@@aM^NODDn-O;B5!2xY^TWsO_8fc>5$s949kHjYy)CAY1m0GPCwuWHJA!Ql z0Kqchn^1*2qHkT$576uD?0lfY?kT2-SQa?)I5)OSIHDI5wQ=eO*?qmSnb^?>(w|E9 zdzcVF>#y0J+@Fg?P#^>Qo?Y9X4$cBh>bH5r6G&pVGa>J*nQ5B|zHRu_%>TYF5@1R* zArDJVO|7=>m0!{&(nM%d4NM=-vj3F@u(hSoBv2jovnDbS%ns)BERI&b@2;t58dwBQ z-}aPG8kGgS*#mF`Vr9{7Dta!?-t#Zt!r%-vafgL83-xR<#mXfd%NLRrm9z?xuv^05 zLie50*GVf8`G~0gwNC`U2GFEz{CodbcRIfFqyYX0^I{Xhb>;djzZWJ%x4G^Ypcj85 zf8&I~VWg0SRNTIMb9->1@`ejkYzBfVHZ8&93J#^*ZLeod#biMj9Zhh3XVHsC=|R9F zzC4UEp1YK%DOIN!Dh#eQ&^3aOHV)ls&vge~`g<{vI9r4JP|9s=d{9#v1B*0G24W=)l?r@X9b#P`Wlm+U`1D0>Ar^*IPT``3{szW3;fN4v8Aa z6P;v0_ZtFF!yq!01*Z1KQT@+Z4OM6dFPQ4;{JW`#b68M)1TXMd>HOHLMN)mCf1Rhk z3^dWW?m+M~a<~wK4oP(sSfnl*fY~8lB5j?_@?h8Z(Lsklra{A_X_4C=Fa!gdI9U9f z_!X+$L@}pQV}l-ezQHp7INq?H!iAChoT)s`{iuO&ilA~jxmbwA_QHu~Wi+qr0@B2G z{tr!e7d&QOSbsxGjEo7ZW_Jga-3=4cBKkqV?CyU2m@j0>=Rf|bCLt2$lFM_SZ8Y6` zhU2X#4j!?NEMNvD9()E;Kyd7MMx&$t${5yORJtf#8u-`-Q{-Ip_-fGIHe{-Qi1Wzb z5Hvxy=-p-+1J|5>gYGv8wh{9}0B6J>qMTtiq6s`l%j=7En;(Esnp1W$nh#eHTIAaz zp=?q)XNp|_X7{+or-uh&gT#vo{hK8fHC?-tr;R${djuIpWKRbS;LH?DnI^^jtiEe7 zB?gbe^RfpY0tQ#8MFR>;gmf(TP(B8#c!IaXk~%Q*3?)z9BP)cUY>Q9zPibB|Th)Yd z9$hjsL>oM`Vp9sBU%|uwQHLcCPt=asEflcjwoEE-*b%q)-og7cJyVTNI&tG zX5YH^d`Sx8_o3nrIK82JX@S7)!FRGc1=aUqnU{&*lY~V0%GNx#^ue@>o&9UhiE)#B z*7};W>S3ct@Mq^-=@1+%DGqlPpnuBz53fBz&yYVENfWO5C@z}}Vx4-qnL{STsz#gv)XMO0+BY!q?UuD%i zWtbwg#yMPH@{dDuy?w*7jddIuC3ZNr1x8Lyyro3`g&~Ga=2~MX=`(K)K^4+N>UGz8 zW@Iuo{A;>Ee5rPmi%A7~F9g9dX!V!+3XO1rQ+~*TB9m@3!-N1g@l)wbSBZrUv8OWM4M~-h~@%RXT$u+B?ytVsK{t$oGF^Ro?iuY(w z5Hg|ifV)(rYeB=DAZkChk9{#&jwjw{7b(a&8(=;eMQg<`pp{k0*pCrR9hA?nHXMSV zH}U*jgMah>ZT|UcbSi^UO}frGo~fkGncTJOxY)G?2r&hwU3;(jXadCs4>i({mno7b zWGU;RCT97u-CrvGzQgj2;H||A7ICg{;1#9yZn56~s{?RXcu z6V59II9v?1%hd+I3D@y2@g6wxDzr&)*ycTp-GXPA6ZWA&IcdS^b$P!2n`XC5p}?!$ zj4TO(xjKd*$Cda;=PA0_RMON)Gw)1TFlG44qPV$Rt0O5-%!JxPd`i&-0rq)YLvXgo zp+SPyf0`iFXBtBTj^t{AJjLmfsHQRJ`sqgwXwC|PC??;e)e}Q>LyY}dpb@dKQ+0^3 zmipcm#R_C%vMnOMaEBv)InC12B zOj!_|9;jfoj>iUve6Bmd^!u5L_}y-J@jpOVP}2*s`p}Fuu3{1c4k8r`Y!Wwr=Vs{x zJoyphP9>`B27B(z71i1WW++!z%4OEa&)IAB*4wF7<=B~DPYaCnBUSB)z>n>t#nk);6t7*SFHofRLV%Hk*vB_9vsCgJO|GG==WS_m&&z-hz% zej!X)coqX-rVfAgu;H>F92B0wmtxOoIHN^egb^ob&L^Z;e)@ zG2RqwO+!gFh4f3q^)2<`Maw-jZ)rr3WcI))Pc8fk2272q_ef@zELhkZqv(FCps>gE zFFA{JxwWcPNH|`R(+$+z_P{&=h`&dSVOecK$qKcUw*IPvPdoD3z*EjmjjC(9&vuC{ z7|8T9I!NZ9LDJYhFB|@zT9Cnol|@Nr6viijOHZjL+mcLrpkPC_kogGv*!#2@qfUP2 zg4@x!YFRvaQ(zOXCZH)+*6I3Xc{W^zd#Xd&aMOz4#05i&JgWgAf7!+iAm8K#Et+ET zGfWet9$a5{`QR)~Oh~Kn)Zdg5ZHKv{Yp2y=@vI-}`w5E^9S9gv0*?@B)a>dYwT42* zMu(?eW5sX<%F^Z)nz7sAAGwdmHGtaFy|zON%M?7W{t9DPBN5nW6QAW_4}f{Z(5X}mt_5S!w zId)tbrP~>(oH4<%;?v4#${sn{>Qlz2^!!Huv{h}nukXLhusOlE$s{5wA;TmqXGr&# z$p6FP>ccC&8}x>6-f_yZubS%diw#lkk&^vRn^ENeO3p7%&%-~q)wT>91cYPvG5FO&!R(^qD zkReLBA(7*K#BTx*ozROM3jY=IPo%{*EbM-mVsXX&M;0dS{A8o8RJD~dpNNtBlP6G!uyc-FYUnn}k!pTj(j?d6Z*nO)5cDsYq{U8;$g&5PZdoHlxInPnr32w*@mwi9+s;!1(Xw<6vPNx+jI~q^l$QGwkIM#H;5J;D6Sl@Ldb8&XoT;<^O;gpqlpm5d0(0sE0SHF z=B5_e&U8KJrdsV$ATQ>a)=%&NWyMU0I##3`!r}f6I7jA&b|=k=37U6VI|t@nA>#%iux7t8PU3hb~(;zRlopob&l>rd>_>s19QAIl7ZOHM{y*TQc zfk!=>wpid^r=PM=GD7AnGlK7yu?~jn%_bO}AhD>VWA|y3557~lsYVZ7Q0hM`=grSq?O~@9trj`*+_WAW0=|O zB-SqQ?TR_aLgI%>7A$0f1K5i}EA*H#=3vR=!-CbivyRA(RJtup$SP7}#TD!K zq_y>|_jjqMi4&ox2js&=z7BJ55}QX}$~R5`WQB{itDlA`V&T2sc<{FyZXhb#b8Gqe zX52XDXYLz2Ay;GRsr?p`MdujWJbyV?WA0n>>$t?EY_kH$m|Vd$+V>sZ+cKca!mk0 zO8RB$SLVNQ%tWK})$I%~1MXCgH7#6IO*22Kw+|UJn79DzlZ!>|>~Bk$7ol8kk5IDeBL|(zpo~KG8E1 zH7XC1lERroxkdOB>rGgBSm(XzTrgAVY|8`h?_H{6cZ48crsFB#iw{vhb_LwIy7BOY zugUXV5Tax2r8((53h5uy01t#Dzzs|QYxTDDTiq<>AR*=b=;)u_%e`HZ*@@_Xwo6=4 zHfHA3n{eR&r?B|XVtK6oJ6Q_5shz>hUOtB+*fpu)6sB1Uzl_JPbC48;rVgU6tLp&v zLVlkA=s^eg!m-@3og}_b#%=a=vDE9P5))zy_LTqg*vjkaQ}*c3TjSh2^0(cLFR$?( zu>5!ZhUayPc_c#^ie3A_BIl=>2cQJQKyReGDhv?Nb(6Bm{JnknddIH;727}|Q9v{* zJo%`Zgei#PHCf91z5kc*{o=m;IVLBH6Y+ugtN084(;GQ-jp+$PQK}aUUk#m`c_+cyjQhb9lpEl`u1G4bG!N7Oct=7GR>7|>M;<=5xX4HRK|4L zkP4t@>3(sc&q!{&ndqSMnxAYQ-l)Xs-V?$xPtjzk!GLjUj%zBo2wH6lRG%;(^qU;p zO9tDq(kGDqRZ3*wVQ6z#+0j)Q+-et6@ig%+=)7~IfH0%|Lh&#_qv#M5z`}gZA2~m; zMH{u<99{YOd&R#s=~jVXH(S&pZntTvu@&I!4>DK%W47^9}>P8Qx*=qfctOf1y z=}X?BSLMIaiCGIka{1F==&is=XukJY5Eh6#8H4xg{OS9;mwF!iz#zvnU78-7v;^rl zD?ygDIpyF{B4&?}G+Ak<3NIYE}(W19@18Fwbh zXg-P359X7^HzihPlI2n7|2+6~cY3{_O=Um2IE3{;vp36gUnL*0$#xZjR_u!J&Qt1!Xu$OU;WYqw!$NXo z>(ysu>x2a4?&d%#%C=w{YP0(kPL;3`%k?mr@VB!w$>P*k}2{!2-)QsG!(Qk9_YY z*6L3Wc0A>X#`y5~gpzmc1rC*aY$3>|m$on7_*wJ`3E-1F zLYv5ofcTH{k&T1^;e-QvO&v>Ivpg9#ZSFN!go-qEt>Z6r(U`?w&G3JMDn(|E{Bj;) z6PSp^%6V~voz4CNb|)tpSCl`!O>y6j7Kpf@8H^Xsues>zY%OM2bF1 zsY1YcnaHwHz92sE!D$ni@|261Oc+PVe7HYKa`L$o0!ygof&Q0w@e1>s#ZX(3C{y6H zda{zbWHH#J*FX=Ky|8EEAi%TCit%$E7{((Dd|q3IWVU_14B!-_gd&knoh9QbgjJW#(Az9$)GRuvb% z4!!>30$&-1qH?1dB!m-9rJ9xbHg7%R=b@N`-hyySo}+F=&iOJ6S(8Zv^~$Q@1=I*Evv&k z+e%(r!>0SCS@kSf5ftx_+x@5M9W6rvqaB^|YundZ>*%loLL^S+=YzdY?k~lHrm!8* z$KY83Nb^XAq>eq*hyRFTigzeGYUUj)_?=#es%$(6!Jya1+Zj(G7e1; zfsKlrVpVZxtRfQOTGQl^fBCNLywdYX`C6}R{19c1S87Ouw{V(6VP0sO=*~;x27Jm6 zYCXOsA+R*voh8X_;>0Kxcc4pJCRqfJ=JHif@D2V z{~cB8ef@zVz>e4xv*XILdwve80-%F7xAM}L`;0_X9!F-L`Z2Z$5pI1+`A>1huiT_U zQ5#LWk(&Uuslhp^r6;H|XH-opgv9MStKX8JLcHP4wvDZMYyj59 zBwZX8o#Qu$h;`jfc>gENXgtg*3NgM~39%FJBOI<=C{GqqUMiF_)A# zF3dunF}OwqFEqC3GBdF%7MptA5P%66cAo4<280!lnd)Exbe|=@dZBjw=}#YN5$T*3 zS++hxTo|oMmUpg9%Op7tx{dRY7{EK#CM#vNa|q<;gaed@%EY`;Up^+7?T(~N$$t3S zpx6{ou@h7WjkniRHR6aEz8AtJqYBly*PnMNz(7dXQtU3vBCaN%F~J;di8j9SXgwpF zOiBg9=p+@vlk+}2yQIgY4cA~pox}Z_F7#b2WzFSxpGLU z$lndR!;}SZXWX7U%HNNy0wQ@$8n+)NKUp$vxLak3E-Qk1R_Lfe8VAQgoV`bryoP)j z)ngQVYmTiuJsSKK|AcaNT?|z&U|}bZmKOCc62Les_RqDfX-cD=5Trq41SqpN;H-Ish3&82 z5NG>a-qbKijNa{1V0WDQGED4IaxZJL)cB7Zbajj{DFY;K17MyZt+*no795?r$%Yp` z8!>C#;0AmA0GxXiGPc>_(2EWfgVM~(_MHLvsO3* zd$)U1c~`XG|7f=f^OVDqr=25lApSxw_$(w%~Y_m zN>XC-7nhHJApo*eMP+-}8ItyJqK4)5S37^2mJ2^Jm;L1Dr$_;#mtbKoS(W-@2Wr^d zd&45q7*G~V`lI`&aA$3K;(f?nuOrvQ;#O!8;ajSDyF6k6>KR0+4jTdQMF)n%CY6iF z7;v`6WoM62EPKVlNuMl8IR*tM%|ZX81oqrz;{HVoKH#}=i?R7a=Oi(bc3Y_Sv_Wse zWW1`VHi{M1FrJ8X%QVw4UeRRHualb*_oQC>oPusHD|+KM`pRS`;$-iqck{>1PUqV( zC%j8!)@v%i&%zMoks3$@Vfr*is&uOx9MWbi5Z?z=;&dd4p2B7+Vxl&V#>O5WT*@+w z;Cs@q9>8u0oZTn6)giE_gqU-`@eD+T*D`fW#0>c=F^w2o=}410z37<_W$pOE$GUd7 zEd{iaYU_sGd%lgD5er6cGM&5m>96dEDyhKjLXPIfs8=xfH-d^4tK@Pk1M;JMWSpV{ zu-Dya2F|RRHOdHP;9)MfONo;O(bqE%b+&HXbHMfrQs0=IlTi8&IO|Gh0x>Sm6Q%nJS<>NLbeZV{iMOb@+ zWhG?&8@-R-t}K62*yDq7)~2|K=X0kAEi0{u)pQWgVkeJolyy5=_llb_w1xHkZZ)+o zGGO22A!s6Kv?BGnnm(sXrD(@d{4b8*7l5Aq*XO#RFtY?HI_e{p4_qH8dlfX9Cbrm$ ztcg}9s&079_>-k7q!AkRcBLqZ$lVe;;;y{9?&F_S+q_~-OPTjgEVV$~%XyiiIWNq@ z`JDq{GHOU$AJr{qs!soGTASi(;p^@W8vxsT!j*+;tklEQlp&hujzEy(-<5r8ASIZi zLO4wS3iiMFbEQnfO@iCbm%il3RJ%#9Hc@NOERMFHT2JHuR(&+-O@d6Jwx8~Z{S>sc zH{skwW_O0nszHh~`G?9bS1R27__-9Nd=6Y!iv5B^TsWrn#AQqMrzHqM;X5U_-2i{5 zF$Czae#!T~9!^p#&#U+zS~NaQzgsO$7%H;b%WZFiaNUV7=)cWpsiU?>=zhmm2m>^zUI z;`x+6g??viHQ2J>U1g@j7yoC*{Vr|3(cWMGr8nF&S4ISgdW4c79*B zCi3tYMZ5cwYP(Xf$F&!)A6SsQawPoq{VqlI6_%q0)-C6J1XtviX9?FA==(!Ra6;zA z;>(5q_qr!5!meFU-3s)f!1>vPM?=7#M(NK~>}qb8o9TC*9~`%S9Yrgl+c+NbI`s5Fcp!XY8L~)oq6*&tS_dg*teb&#ZU|I7#W^)Ant5=>;bUtWP z%6P`!-MZWM&!{9G*v^Vt9ME}DevxK4t0)yo^Evn(ly7pE@oYM^Xmu6K=R6IZFxxmM zPpVzdefC}~Nl{eL%jgFkn|Z8WsmXG7@B!>gC)fLJR5@hWtESCZ+8hDc83|AuuCV-GHF*izv1?U(c?~p-~7{mb3=x-)=OzgdLgCK zMgGVXp#4)=IKS(-7Hct_PjYC!xCQrc6zse5*L)uW6s+4swp?VqwIxTw-gQP2$BYxW ziK;%iO|&<(eDm5~Boc?%NXYB^xO(3{KhyU(RvvPqvdntmbm^;f*6@7WK9OQ%lnae= zMr-7piz)ymKmC%V^YL-QX^8uks~5{-XuuPZ#m>Kd9bHrMc;aYdk``$^UY4QSPEip{ zzF$fVxOS_2tR(cTQJfj@sv3Kydx;{`#L_yj-TYKHXPLZ{N$Ujg8gaF>y||ctdk@)w zc|5bp;mqm`qtJ9idUeyhH z^f{D&J2wBk*YKD1BDF{ho^lWFL~7Y1$2@okz}_udkjsjer6!Fn6t^O|&>N0pqJ^(~jFK>ww#>G*pbilfXS`WR9G!#Geieyx08sLPO8v%_9Eq#8xec0XUOIZ6S?=&o*|q`PQ>&DuF7`$n>s-Q zzT=AYx%r?tc{V0y_^4^=?N#0Tv1Dca*n=Z^N^O9qt=Lulq4AB38IXnfp_H5VBK7Df zUmf$<)=%4T&p`E{t;DorBqj8Vjbd@ z6A~U^OtE$50BtT)qc=@1@x9ANYd;$R$V<1xVenx~gc{Z_ug-eh4bc~dAi!-gcrglg`Y%gJJ3A6T+h}C$GlEKC0<6* znkwnkst(>?WE#XSkUrvrAh1^Z(M;Vd5Kf(RnAQytxko4~RZ@d&IH5E$7IZd^9q~A7 z*c(`cjB~hU4#O4+2PsOcN{w*gY>cF%6)6N1Y|$^>!j^CCaxJOg8$^U=Xd#4$!tYMYi)Ta~0pdKj>b@qIm>!F+ z-QeBF*j0EmX_9gQoQIVgu&vV9j$-Fa&fGr`Ysx)6$>O#rv1B$}*Oxx5DcDoe`TuGo zgmV{y=))l)8O4L2tk0*LRE56LZ*J(DfwTQ#=@$W5;Ye@$|nkCzxMXhe{+dr?HwnD=br$=DpznKB~=lexf$$tUjDSuV51j zC6+l`e_3SXMJ7f~1Gv!YrP?iN5HWY8PL$l7%H0K! zi&_#S`U7>%>;@LlheqC*`!ScyEf9i&K6TN0D%J<2z(;B3xKm955cPJ5M1~1GD|yO% zl)+G`yaf;dfk1a&(0p3RiXkC(*ZOp6#vU=l{!1S+Lkkd^AJQNWQN3+?yCgNXMuzz~ z^eDs78ub$C>zwNw17t#HX;ewxGeu-j=u)&g^&DZ^W+&PBpZ2A$Lr~I7xoPElGkxd! zt!&9{IMO)@%GBy*Tc$Ly%{}#UJsW!2mC#a`y0B)?Ipinulqej zO^>3_c~2wRREFZ(EM#EYsSgi93BFS`LuqS${i*pnRM^y2Rb}NTd;+LlxZs^}wl~kI zm1~>}YvBO>*JX8_a|t2EDo@_x<9iGCm=GaN5bo>I7u)3aW#uQ~=6M@KWIFfr2K;8G z=@AS7>n~RYNurA=WyDafrGPP0;|OG&kXW37p@PgsovLw~85_SeuH*lP^tU4EQVQDP=5v81~*BmNBLLtpM2() z;-OWt{5-=P;Zoq|rl;_{iSp{Z?JzQCT#;-5Lg=n|aD-(>P>n)Fs`3eCsPVp4s5x!g zeu>(C`i}ev^M&*g4w=E0wUgX7_CaBB`uROgn}>6^chO+j680?;P+k-Bua%+7U%$;E z!rjhF$jB5baXp-?*zR}RSer>d2Z~X2X)}l)SiL@sH zG{ySS-b3NrSb+C2d-wI^@#7AnM15N*hPYi(z1V3 z&VQA!=}|)f28h8SoZJ)gq_fW2XMT-H!NIW)9?gF0aMJyra#}Z_BIsg{e&9B(jCI*c zKirKDWMg~X{R>4!QqL{Qj*tfvONb%|fKo=~%k>L7YjK>9C3CIm3C=pfU*6uOK@XcF zSknVfT)@k5g$2mL1dupnVnOow zEiPI6uyd}N0B>`@e5Zh!=X=bU7{ntL!axca9B1@M^Sn%5s+*%SU<2*q$W=;*9FRm3 z?ZlwL4&=REQh5a6@u}RO$r=ge(vMdM*(9A1uSbmw>L(F?nK0=*AB=TW<~bPES#RJk zm3`MJ(`Be?+pNBXgNl^#S7~1Ww9u@7yY9sl5l=IK^AMrRw<}zKwR7+Y;Ch#PV zGasnl#dt|b5s8jJnXqqPVhkHF)XT&ldmnT6PI(;|2YA0Oe(7G(_4uF`%KGdTmfm!> zy8{H5K$gBVujclLhqp!rgD|8uvd8Q&&SATO1sO#d0f_bk^G0rayuK{jAHUcFib?tu z`%pESG<3nBM-{^`+%R{R|L%AmT*C3DPzy^rbPjnf`4Z;>-a}fCr-TU*5a)Retd@_p z0P-JlND-e!+@tSFu&G@!Vx>r!DM+J1 z_paG50E29yX-Yjcc2=oK^o^1m%;j})f3{?aUyAu=nHVR9Wl|Tvfw3Cmm|4hGgy-87 zko>mDFR{;;8A*h28}vquB`lDT$|BSX^widSD5;P8hSas-5t{0Luf=)>E4E_>FSMgr zD=wE&3OXscr=nY4ok@X&4EB|I+N;9bPkCDB0P47go6PsHb^nK~bKuSdimqtviEZ1q zZQD*Jw!hf6ZQHh!iETR*yVG`cwQKcPym#+CXYZdNh(31oxjlQj%(nvcxQ1`!QsJ3^EuD2EvD z@JNt|7N17+DRLG3g**|$_M}wU{Orj6Hbf;kW@FA9(3IGFHP5von`2>VD$~mGz{d_) zt8kQOL=BR3uphHph>R0Ica@WMH5c4q9B^mDJQrR>P6!b-xF!MBMmtYyiPT#Yt zD`k|3)DZXf#9wC!G8%=#`L3CME3|*6VdQeoE4%z;ToD<6l>Tg{M!=#l0DlnQ2pv;2 zGJ=^$QXEDuA3n~Qv3_oD5S|t~QKbg5C_1-UaCk;u_lER59LAqM&;teK7GBZ!vSi9k ztESPI1WCQYA%k5@DNOJh~iTmzZA6Clr3Qu6qAb()PVsD?RG##{7OMuny~(7nir_HM@?>@#X)^feEPy-GPApgChYoN1davNe zkO(W!KK7R}l>5?^{KpwF%zCn*ah?R~Gf{v$Sui&fq^MGd-CXsbg85*kCNL~#X|h}u zt3Oa@gWOXtmQSV#|LiNyz;c$pl3C2S1hDn?(omK)I+o{@11L>bCx$|s3A9sL)&9uL z44ZW6jq->>C4fzoZ}=B`_)b zL6Fhtu?sHnqom$i`AhE2aS-N|Q!)Ka0>ZrLNlRqVrBoIlT!n{pXhK&Np-OK4dD!%n zqdB-nR64N+tJZ#=(-iJD|_s&FUK<|f4sPat3O+- zn&0?}UGk8N@nM82_V@)ASDutDfeMfCdwKqEF92o?b3~rtJs&D9)>I1}0+)-yywviZ zs5_RX4FGlK^`9h2ber>ya#E?msq%PdH8z(0K;+;$ z)e&cQ@b|d>D*h4h8G)MnJCROm7WKA$lUe5J3xH+iBr0MQ#u8b=0OH!&a`&DGT1U9p&2n;9V0<_t)sQ zzOQTqBQ!C~U4Wm&if$t`rD&e2*APWKgfL6JhrkA{U0;_=7SURUi`1(#k>7q)2M#i{ zJRtghw)+xanu&uj&(D4FOq@b$w25T*_1Mhn#1v*)zR|k9tGaY3cPEcSx>2&I&!uM3 z8Ixi9CSE3nsI?Fsk(H?8N;HY?kDPk(a!+?c)k0~twQ9tPq7by6oM+>Zg z5z~B{DBoH={Fk)tB=e$e7jii;IgV6(#%jTPs|!OWJCw8HP9~Bx!VvF*X$XkMjOb?i z<>l=2#d_50TweaIL667%*)hV|ghHJ~qq@1$6`z;q)77#JbnnnEK79EjxAC6opp9x5^JG{Uf)WXXBp z+08+P_;Y$P7K$nzEQGh4FZiX-#DSiPlD;p-fP8s;EU0b}3ZUmb694Z)+sa)zK zlN`VGYG?fRE|yw8;aM)uzI25&nVVJVkOJZ;Cu0)_!5Gt`sZxmkDN*zzexcr_irQ3^ zkgF%?4d|xys_lY%Br%wqoCiVFLHjRrYcSU$NW(J^+PaKQc(QK_}Z7Sd3Y;WY1wc)NHcJ}y%S&@Cer@17&H71@4=6s%)>TwG(E~c ze#NIQ9Dj%8&WEcJ<5UI`URkPSnP|O7v96U`4noSLV)PCBxAy^*Lac#G`A|kND(Iktf zYBGHTv@ALIDZOA|+#cASRJTmuq$y#vuYx=vr~hoJj!5GMGPp!OUb2c18@dD9z@$== z*rl3-s}ML`li0$Yc6jK;G1e4`4K?P}24q zfXM(k+A>L-qe#8Cb%NB80rWSREJ0(kc8Nu6mx&q?VkOEg(j9_M?V_R}tU&ZFy(g6f zIX9j`x>jmbX|!le>E~ms+XgRtFQg=_6L$h1FV=vkuR1j+0bR3+xVzKuix-+o4ASSi zWq!|=_Rd)-hQtvVby%OqHQkI~mdXvqiP-?C4BBUn^QyF_5r83yrZg8-J8HdUL+^ob zBC!H`S=HmV0)g_oQEK;K3YW<+y_CTQ#VZf)_+!9o_cZhz%Bv28SNRukq9T!)-R@16 zSBHvdUpB_Ol9Qaw8eVSTYxe%R`}qvHRhQ{MJ(O#g{DxOuqW-V3ZO-W=$Ew6ItSLZ5 zvRcN9`BX7}=t=K(l^brN7mEq_1aoQ`P7C%EPL;{-(2(g`hTyc;1cF12V zzgy%-<)dIhPP7n7&)H8b=-9I*pCSON4$2b?lMhm2rwtA}dY#;{^(`zE-&*efh!2_< zSR_o;l2RRfM+F`1J0@62{uEWT6wTBv_uc1q?CtgWKyW9r>TR!CdOk!aCLD*$g< z=1Ug8&47G8C(2p$wX_ax=eqf0tpWZ3f9RQ8sTe^a(j(>?cZm`L;KU2p)f)glU8HCN z59-VSd&I>@twJXnrb$1+%IJyVh3v@^RW=q@^K!M`ay0sR83ZXO+aWr6|slI z1EW9&FU&J6iO@H~1*|$F1^IxaQMSE2)9AbmqQu1wdo=<`AU7KVM*eiD!&EiPvbwAY z(-L{Hs9P8Aeoj@XfAz{t>oWH8<8rSy&(Q^iuueR|)Hl!mdN|@{FM2~peZ?e^-I`?W zp$w5m^`T1pR77!^mP?zhG;){@Lavsq6H&~LMHEwnJ^{mYkwUiL-FASAIr<10^6td= zFll=OP3wQ`?@+7`QdyY&ZnZTwD1Ho&Y~)l}$X{JkdK)d&q)E=+zYI6ssBZ(57-UGaSVWbf--h|SyfE{Use{2A z5*-hsV<=SV=iwsdU;6-*CkHj5doW#7sOL)ckfa~s2!Dz5V;FaTs0*-Bvd-6^tF3>N1cXV;0@)E#~?GXEd@EZ`p=Xo+cM+28P=DEQ1a}v zHv_3M+XoYKoOfKV<{LLj88*nV+#yHqTp{qVQ6a~}b%A1+?2rMv%;(k0ZycS~h5sDJ zqHGb^%JoYFkLGI2T37^S$+ZQo1w=YqZ+sNT{@u_7WJ^ttbW5uJhJ*CUPh3Q0jPZqC z0ruqr;%uGFHDT7#MReP)#3uqoo4V=UMM`4t8R}^%Ivo3l4EOeNwUQUn5y(j!liRcW zo^;fS(?;Y){XPe*a#$*l&yK^n1m=SqrO@QldnzWmXCnz%&oe0>x3W6nr;NJtnW)K6 zR!fJus$vH$GFj(jzoV)#d=YVrppC;t!P4^j3xS{nPah|0ZeSBmiW0-qpi(=ReO`ZE zBZM!z!&iI#8kSB~(m0(!9Vbg)wMT@r^sV&mxLL}lS?LAfYhX%S%7N05Qzf@jRWHOx zM>j#Jz0d#w8CEN}5T+*^8U045b2XF{XTDG=+qqu55(i40%6UIsR+9&wT{zdfHPKO9 z;;Uy|HRka6ZqU;arL|DS4m5(VAFn5yFa~WW`XRS5#b}pY4V89QLdJ6skh1tYIPBn2 zg+2U9HoOUd2e3XPDOP1yamHK~tAa{#ujsxGdRmtb_oq%xUyl zrG!wUE#3=vOf$3M#)DM~XQWSWTHP&zfcy){zlzE$E$siD_)e^q+W95Pv4I)-$K|VN zQS-E#T`6h45HWC$*?|bpalj9)kq7SGEymvEY)B;`LQ)-4`W>o zdU}>w#yK=o1P*+nEWgl#^uXT&l#kIx7SODyGC(K3Cf|#VI4Gb9C4`Fn1@5jatrYr; z%I=B)%Rmo1F^iP`Y^~Y+ zO;YMTRucClAA}s$z?qdKxQ$jzS$s5_YTOhp{5C;-igYHMBLU{pp8{o8gWSp#Ga)$K zn4mZ9>exvOs)e8ZO)JLel#>#uqMKWcDnvVkn@~_l0Oa@bOSv=sg70ZBgr{af71S1R zgfghegG7STK{V%UN_1hO{UC@!i$%dIte}S08XBk<@BhRCRR(7RzqGI*K~dav3Cq$C zd@YL|%1hWZxSDJTEB$wnjmq6or9m~n?5|u{$h_I=zYSKFaxpyprbTDcqu6sa5D23j z@+?sZ>M<4tdwtyD!90go`2M>^yiGaaHf5ztYM_6g2k}Y(zcuI5RPTHu&@t$GV`QvmuU_FeTU%q+p?6?G(sn;P%7I zUI*2++`ITbjVyiQ0B3gj-cnqVtit11%aCehq+J9fA7s*y%qLFfnj2K+6>SDkA<%+gY4aH4irarGc^V9;$|LKqEhE*%k`L6vTQA(I;ve1N5~!)0JsZ;`B9 z>e{pj93w(eLyJtOvyu61Y@-bT0lcIt+pWM!R-{-v_5abvw%2=oIPxx{1>kA>r6$NvqaG|tWQH!68lR&g|2)3 zts`79r=ehVr9S+8ctI4A<0$85Q^3L-Rm(h5nwzD?QY0y(jmm6xC7+s<0sQCuijX&QM(B0p(tdactX&*YsPG*v!vCZM! zn$KkjJO&f$=Dq-oXf+?y1plu_fXC!qD73P8`5-}*ptn_-zph{9L z%mZNm*`kCsRulQ($Y9J2m8X%)du;McPolH%VHGfEQS$k5L*>sw&?w$&O|JLuTBuad zNxR&pP^eiU9wmuge@1siPwuI2oi=5Y=}ls2>@95rskZCq4LQpfNR79W0q(-?%Hl9M0mjg* zJeM0Rx~@rz>6*)q;4AdlXun>1QOL$-2!AJsyJ?uVOC zZ&b5g({bnpNcQ=M4gC*ax?m)n$VQJCA58vS5VQb@VgvD2)}QN7U@lkxahAnTynNlu z0*ysGwcTi7{2TOx>dZx5VJqV#>s&c$E<3w2>y`}Xpq`g)?Nih>A14~#e>PFQ!#><} zc{$9H$5Xumb(K6WZ~ceLOj+sFF_{WwKG2o7el2Q-@bGI?WnPRwf@BXbPd68D#SuKL zkXC?Iz_1|v(8`93>hmlaJ-6qXocd+cxyDI7B=6$5$zG5u)y_^!8b386yGBDwJxtMJ&uC zbtokIOo2!K@u-`SD{5Icq<_W%{br|y5%=T$u31|ReyT^!LC;4Sl?(NDrt)=K@QJ7f z8tKBcNZ#o-fJgx8Iyt{^C%56w-j4$hy*^rq97NwH=538 zHpip8^ce!u_Om>m^2tA+Q}~-?a4vwxq-^Sakvv;uoY9U69KLh(asgsGuI(138@MBM z#{y!c`hbf{IW<67fS|xerF3_~*Px$;_xLG2W|38actXyeV{r~PR zQ;Gjrz1wpd4*QYoYKw?M@q``Y!i{RNx(!$3*QQL;CG*?qSlTv?a`mSTv+8|?faxBO zq?$kDQOVLJkQ1`352_klY=q)60+ac9#&0#hOQ!$ z#OqrI#eLt`zS6sOi5jow38%xoiM`DVcRyP4k6xF=K_yY9Gwpt-eUqCOzbbxP2rQP` zo2`Q0~j9_3bwrW2KdzM3w44dl_+$fp>$#5nM z&uvaN6pZeC@L{H%DG`Imy(0|Q=2SG2V%KFCn7l&J4?I26Ba|P|aMmP^1_MHwg&MJdlf$9q)QK?6GUThQ>FBLXM1}2TZU_W|whW4(2iAmM$PUtTO1cjt+2hMQ6zMBnwa%0^;nWkE5WgHY+ zy@7l1mV$YQBVD8Bva?1k(;X7>j@csmHClQo`ac~HgW7k}nw7?+&SPqAL-!Relyr9^ zmNgWAr;1b0vwo60pncJkk-c@LtGF8>O|LSp?iB~e4%J5_ZRGo0ca#X23 zA9^~2*KRr&@sqqd@sedjFHLFO2<%4pmu{1G!|1w$CS2PlWfK1c4ynt(ZZH$83Bh0_ z*!M;#b5%Y}^Y@`DZJ%I$N$8ogF`Scst-E6Au90f1(UK7R4 zr+Fc8otT-;rB4=NjNLbaPd-G^^>^VgX!O@ zRgs6Rhwk^{ciPQw7NUXCHkAe9v4B3l#OIT~)!Y)=JH9m%hwO6J>ZYf-V&3YEANtM1 z^C{?oQ<7j{R;THoiiurBb`@pv@BPUbUba}cxK*@XywK4(R1Dt1Le2NzRNN-*d#@(+e;{48mOLkOtxJ^f;F<;Tbiu+>$(~j{$%0eVO zRHpP&<81>S-{8s}O@J6UjURgN_@}k{-_cy~lAxhl!pdtNV6--MM7R|8<~R3?UkpO> z8WeiDHh?WGa(t4!TQMUExZ4<($qs&LpKug`CNl$WI2iOQp2qtAdY?0Tk*qlgc(#tm zIJtH<-xKdgrq3>B4bzB~-WI}{w#_7KnDJrIIpNU&wt}D#&a|0MB+h9L~|}#LCdQ6p;Q% zzM19ckGpz4?GNcRd*bTX`gImH=XH8aU#*8Y$r5(oS~M-xO?hDVjT@P!VCWI>G^mWj z2D*<$^|hg>H_x98?u24ptU?R2mvaV;gW`C-c!g~ZpnvAraN`Wq8}j!4v)&)IFR9?# z+Kz+T3iW9oE~OJ%-5Qz7VkPKs$V|l z=MF1Fbbh~!`50$1lzCBg03upnIY%56a37KXr{8xu%TPV!y10}3cU+`BrOYf2AoAKXXuv01G&|=X#YbgDRV1RD0lg+w__mW!p7#LM2r1 z+;h^()5!+r_m96;G9T#o$`bIf3-iTxaL8%V{lM-)2b@s+`)HrV0)o;yFd{M%Xa*%M zmbexLb)p;E`C0f_g1ghVwu6^;sqA)GIL+9NJZ*Eqjy`|)|O8v!aI zY+A_M{eFDE9xW|+SfwNs2y)6=nQnRT5t@!KYIUQ`rib1ea+JP%?{V}7$CZf7R9sOWj91I$UsDe;*I ztp_Kn7laZ%fEf7gsc2Ok1Yom@ek$udupfI$OD*)O z>i@whK!idM=s{4fMvMa7xym#0Df#K(lCk0R1i2ef691(nhN% zvrfCuowh!%3iOacISD!h0hSb>^C1t}VFNf6d+te*8rRBq8v`VTumXEC+}E*(sSr>a zDL%d_J1vh0@t^WRD|`5Ixr^u3@h+KAJ?b4y3_>d!ilqc_v?n66Jn2J^f|s?}$11t> zMuz@|*XoN8YXVa!XCho8Bs_ZT?qs>bz}(>}k1sG7(jnm$hu%p{0)PwT=ENPO18ngJ zc_;o%lY%`eNArAMF5L==GnN-ER5`pMveDtcfrep5 ziC3oBuC-Iyh0oozUO%UUg-SGXQ+TR@O;<5LP|G)$5KsK>F&}_p$bfv=>LvZf^js}) zqB^^k7L%FgpkFs;5dXcXdX4fRVyqd#&KK8u901RJI5K zs)o2;`;E%Zu;u5@sMj>aVA03(n=mlpbxntVdU`7oHv&T@9$q2WgO@pRG z%G~-MbJ2CEXZhP!fQ9 zxU`;d$hkO!Iz5Z$???3e%NXh2>{m-~URL7uwSzx;X@*gpgC86Q6Od7IC|AtRhPtqz zDPo`>Z<``nT0eGd&RT{JHm7nMMV0FW?9vK0b?9uKt>987GFF~*@Bpfd^ zV@MNC229)?&&mHF_zI?+idLc^M8?{)j%oyvcI<43<@p0gmqYIe zWc4aFP=LYOq%)k@B&cWu5jY&T2dq=Ucnrmh!x_hr4{lZ&VB`@kfBKRT^#$x+ITRuS z-CtHR3Ba@?kP8%<>K%|HoDKBD5ocB%ERC(9^dfc}uR)G+8V?i#SQu)gtay$!*obG&+mH5FGDR@adC0F0gmy@(!wWJ%x z1IXW%=F^nA-K}#;x~j2`S;Azr;Bdnb=buA2Er=G#it$p7lv8@IO6`Wo>~`>dbY^lD zN;A8tn|t&)c}dE=QV=@J7o72T#fp<>6<}9dp!UYkf+?>cAv;$u-vqy4UP7IXnY#=r zyCu?e_M6J1-p5yO)g(0Aw)5f&8svuK2Uznwdjdhe%&Ygve75A|8bheErzJj!g6y4S zz@7q5#%dkA?BL=zf}0NyFHy?zaO*6$_fM!-R?#6>xteE)`?Y)RQAR4;0Rr1di1+8)iY5}}Y%mp3am6SOzSR>cnJG!5skbYkX z-T@LgX&JNsrb0G$jGz~zkp6?$8a@VHy zr(awXn}SwGG(v21NK6?fwPfIVpZN1JZIiKg8_eFyY?6ybW{~5AzY=2@&MQS+`#9%SfQSy;{Yk@ z-=VP9xc1q?5q%MhV;}HL3EDAmDx7Tg>dgl+q#3h_=;AK4e4qi?{T7{!NO77>EFnfa zN#8BuF<{h>WM=DIQz+sE`?ztb+z?Sj7zkJCT`*4A&$OyuJ=b$wtjsW-pK`p=@oDoe zetL&+G_6&f)%GdBxYs2})sW?!dI--V8#-j1RH?7aBtLr>{06WuOUED`Uf_$3F6gd# z`_y!M5AX0{ug4B-FWuBFtwJmIJ9-z1NhYI9e>dD{qjv{AH;-iONm<>dpNVl4s8{0# zcEuPLqAKAg`tWe^ORgJpQAJs-lhy9Zy^KxeV^`aHAbtDURcfD0u;;MJ)Yc9qp-Rd= zMlemqXdlIN z?C#`S`mkpG{oMlTCy1-0N@}FWfkMjb3dvPpQZ>qjYyR;~{8?xBuq`%-JdgRsX>4`% zSxmrpR0bf6L$1nAO!aL#;P*`_Ie?xlFI)_TbEdA1-4C1YyQBy~cj-vHh%&al~G#fD1rs0ZC zI+~F6=TzQSz%ygBdB)F|*$NMu3sL?hIn@Cl`xl_3c{Hf|LVmSDL&K#fP5bJ?FA{~C zq);3>IiqxBGFeFbda2Y3OVpT+R#DP#Eii@Hgu3-x4d3b|h*5i{=t{x0YW7;YT-^i` zGHe;D{nyi1$_ipLR2H`r>}I8w65}?zTk)IGMBh9E)Uxn_Q>??I3{INcvV*Q)=w3P( zCpMr=X{U+=f+EUX7!pdfI6dvBV)%(9$nZGI7#b!@y*jIY0SBjC5V|QK`eWE?AQ?UR zBVK$_GHL25CrqDFaFd7~QO6RnLvVS5nEerZhjQhuh1D4k+j<0T?3ewW0EI2cj)yuR zqOTe2S#XCX!gD-*W|hoGQ5LJ)FYszSA`g)EiZ`KUJ(Ml#S*5-@4Fs8K6RUNLS=yL) z;<-XV2KqEtmF!n9l&ng*)b;3csdPci1l9G7G-~VKMa`nE|xz}w0HD(-n*T=um zzo8;E@EX)ikYxy1EEw=?)dX8U^l2h?nC*DNMK>W7#`syv)8q7j~$>Z z!a7>g5mUCmrm)b?p3^MJ<&4hb-VSZg!KRyUO8U8-Kcd2~V1;=)d+Iv8yyVKkmPVc4 zk{U}mH!eDP+d%=rM2<7l0+WLiuT<`SQ1>54K5R3X8s(dh*h@nN>&}r-dt-SfnFI_m6ATs7IpTGN3r{BFPEE0FS?(^)$2#Giyi#l2QyA z^UtdVeCA6+h-tr`d{KbnXaKf2w?o(&(itEZ#kepS!q$RE29I4mD;9S$nUUuWz)N)n zftO{JNn4o{xv!(ntI)9R2B*A|1kI#y!>-R7P<-Hcjaq^3Dz^y}UajE`Y|?`;SWd6? z8$k4C+%KwF_F?{<_g;H(t$o0zc#u|yUrC=ie%!3)rNKzD%$-VsZUBVrM8H$5eF9Ua zfxlr(PX9>fVL9pQ42FiuU&L3WUR(woNT<%Mo49AGH(C z*etKGw&9FCz?#MLaPAjGUm|R(Wn@z;xNN4N!-Y4#j46S`4-bh1ZH-W!Rfvr2{h1Cy zq#n<6r&RUWS`MA-Oa>Tj^dB_j&6>op9=M6D^T}!y%JxEligbxm4jpGIcL?f7W)4w* z;7FOj;)Wx(i84!YTi#%(6_xFuUe-8^_nojXLzHFu#3nRC0Z=6&fRsjB<+GYxV*o^{o?dHq9F(e}M1SuN zPfN&^Q9ahoIwG98yJXr&DG7TLZx)~X(iW6r69nq^X?!M~;&_J;!m%p*!{n2up9Kqf zA11vSOtLl%U)qIPQ1MIZkSxt-u<@%x5Q30U#=@CorYn9E&?|4UW|0LQEBaemhy=2Z zD{)}R!ji`t76G=p6fT|&FP1;~=@5cd@LXlqfKo#5VXgJ7{&H&c*o<`y zPm_%Ey&S=8)@cK$N!md$kO{+d3x&`c0DnV0l;alv^N+g3-W>0Gca{(El;3){BxIvFgwliW!$)NV* z2E8u@YD(H*fb7hK!JK~*2`i51C(a7n7VG5oUfRoQ(fsIGx}~E-SgW<#s`sECp;6If zI_0W6{Z=Rr(pvjLAz-@+)TLkt*6*KaN=^qnG<_-s`P>;j`)lT?W@;=>aK0L{PY)pj>mtZr2c@o|p8gCc?LI|j$IK() z9v5moumGvuT~z9Y>k`z^TF%^3J4v97D&AQyE1(IbN7%QrvkuWtcU;o6=Rb5KG4ko1U}XP?VL~yb)=yxq5X!$uB-p|6o^@b9?J97MxCNo`O|D2!;+um zIKXv(KK9aIK~StBLAitn?%$!Ol>=XpN?m6 zD966Q82>$`GsS*JHCyCZ|B7vTM)uYgFk>c;u$^QF&)Ks}D7V|cyy5hw8T zc`}4hH9^3ZTR2R%S87OR?y8rXb+_*(GV59S&Jg)l*bL=*n`qo?+>3Th$l<8f6P8Za z8TIOVk#D+Q;EfGbpk`EMp4rO3Fx2quBtvAY!Wu*EKu2O#uU zi8+GWmwdF>ftV_EO4aukaaX_3F-PUeJX4aEAk;C-qKsq?bMYAVY+)<23yJc+ROgPk zA^fp%jmPM~nV~eV%TEh2hDiAN3=gow-`M9#N;i8G~ z^z3+T{)cTj*U{-$9%;`c29Sa4ox~9)%w#$um=dZ{f99Sm5bQ!EzkhW~#h*DR1QYCb z-Pz>+ZBGbW75b7o2S*}e$nAYy^9))}W_G|KsR-XFCa1d1R9o5yDG}daxYSKjV7M)B zjW_Of{%O^2tjY-E{mhFPCC!x z8I$XblWppgm@#on1OugVp$315K@FBmDM`RzPIIEwrjYI?MmZCrk zlDksXOh;uX^{frx^oMVZKy8a7jgcHtN4yW$pxu!FWa@;T``B5l4GMvT+iI(BXJjG| z-<-IvV7Q~Lw>7@W+ghLc2X-#56!w;Md-|2{va=2p7|bvt16~KI`Lklu+%9Mc-hAY7 zPt}9vHr8n3FeQI(IL!@X4%X*5qm|9q5fwR|fH(>NCMs!U01h%Pl`dR@RHZ=~WA z5b0q6j*x(~0Gb%z+{E)kjX79f$~0=z{zg)j1FK7*WQ21Xrk<<_^{QXbq8}a3`d&$8 zZLH^mTPN8ZwBhRpas{Vu%d{lIMgobo$!{i z;UEhSlpnr5tz2|-9)gZ7%6_;G*NQr9DnkP0(6^!-d7eA9YR;Wj?X9TvO9FIf%MX(p z4#=%_s$|dw*Bun?q+!xd7{Z4RY4cEF;4^x?q#XWv)bG&AMjiviWj>8JZSUPz$VDD* zDGmovz(WD|L_a5i>td42@^2SDP*J-Vx0{X#{@xkdy))0G+37POwS*c2;n&xR{YLl- z1uH@wfn1oXZAR+ZTUCZkJ79m6{8pmgM$~% zZ(A|?_VNIrMCe{J|2HR&XZkM^4#UL$Ki)G|R+j&j>~j3K_iTR;mi5RlaZlV;QeQ2|6+Cbc&D}xribITtLyzdasoW}+ur$3zpggb2(fI(I%pZ3 zPm52t;#Yc_g#PSd{vKfG!r{2@+oj^m#6 z`Nx@(JR!|Ys5&n^$CHq4Gzd|fvCg$-SpkW3Hb|u@M|yUFaPIX=TRojP+;iCZ>2VgI zXNRtI*0<{#MGDOs=hRn%_tW{lu+D5IG(aqYm7qGR`fI2+#2Wv&?>(Yh0gR-K>ml_K zy=V5!FOJh^wFOXC)MF|`%g;HnwM`& z5TS3qW+^Q+^XQj-=KIw^t}#`KjySj*{Z^Lwp;*?nY%id(c2g`Ff~a<10OnjchqCSB z?;Y|63k)F@v|fF`?&oY@1-eq|{>(H0^N1UbQ!74<+`-54b}4H1Qm0NJQtpXm*0(ye z$1Qxi9d?k^>^;X1b2h$+V1tB?r7SMjUquUD-0N-T5VKhc5u;$etO}yS(^gm;oM3X4 zBW;0HN)-U6W%q~%Nd!g|B%K6_pZ(CIj8{WX{OUR!eXr8vrh0MM8;FuTL$a%vhPA)G>pK$zXuP|4n*E-!#zOKAIL^^EU-HAq;QLB8fI1>jvl2-g`< z^s^y&8|1;A;}^;fjHPC;UD-bxX*j|mUY{NK)o~0DJ-xm_fYY*M-`e^pU5NWLoTBCl z7cGjeX!l}^Mhgail^h)#AeJ*){^DiF-{%SqP(W&i`*5m{GpkI4AB_alZu2J~BB26| zAbQ{epOY!}p$t_7Q8jDbzi-w1ubY~$>DnIe{91vo`SoeYrjMAx!qz7sV1g3ax0c7acoL;w-~fVF96yrJ@ESZEfGXV-JAjhH z9d3j;fVK&PpAW(WpC}6AnFL*biyAfy4nY)m)Rv%SE{ zPmi~MK83UtZaJhx<{Nr%ApTA(qhju%k}{yi?e~4~Xx{1(mgr!E9oD^&7&5O{Iyia zW!d!$>8DevpPVDz-wPX1OwxsrZM=h)y(D2#7;SwDNpo9BO6&Js&L~$P7yOwXtppr z-7Z`!LWu?3jbdkWd>9mWyssIB6$E+;ZK6Z0XFnW0z(g(FzO4;FA2dbE0S-`T4Q2#0 zaT7dnD1LiZ%_qCJgt8r{?XBJk)QO>ZC#uiL;vkqT`n`#SDDuxH=FYrVfXnVZJYA4d z6VM3kjLs}JvyKq9o4MwZxJv#kpQA{N)iq$RN;0xT6jedUuJO7t-aXKlr+dWb_YB?vNDMWh5`#kf<&oF>NU7@__i)WIClHNAN^ z9j9GXJcz7F8Flbpc%>$(2Vt|dsmT5bmLT-K$G`>Is3!w3{HYM;*;c6~$`iKVvru|Q zy^d5$*?7;map14s^a>4tK8t;-zPyz2Oh;<7F(-VN$uAYdtXsA9r(?~g87m;Inps%7g`h=J)nDtZL^QT8v;J_37* z{9J zofsq`x4}R?)E<#rpDC9@j`~Re4`t)_c@O7B&Yleqc$Do5sk=P$E@`LGHDBYcfu%$s zO!{|Xr?eiNs#mDE0@T?Cyi!MKRbedC=$2#-$8&mhk>*O8?;b^GfwiTRdKAPW*abJL zU!+#K;b-s4QGaDwz0;dBAOW+9Q(KHgY33Fq_X~9ZMXiofvQAkWhgE?{?OA=oW9i=0 zVQ1jb|0;Joinj`CENAY;h(s8r%*;7D)s5B`mv!qH-%N$KEDK~+E>KDMA53JJBd2Vf zQGH~bM0<2HYwbAx?6Av14oPerGJU-E)@y3~(t!<9>3;^AJR+eoJ!m+S4d;aZexbi#y@?owTD5O<3c6r9+Fw?0_gHDG;MJnx}bBPCgRdv~^QadLm7)>JKQaKqBSKEAe zPB~1{TRQ2QdB0G-cS?QMcCTjLxgZW{{$@Bse}6g%6u1uD_VYl}P`I}1OZOm99) z_1ws*JU)!Lf!b~C%uCPqYjSMW!hGV+#1O_h;<-ED`D^778LVF*o4=aP8_9e5SWU{q zIDVH&sF95WIbMsI8Okccs9_XpfK!5Tytpqm^_S12&#ZH#0tPMlQiA`GL{F}*B zE$Fkfu#~dX30Mwk$zG{0PG*YFLCK=XK*_&ngpJyvmKL-}NvO5U#~k%0AA3EQSw3@H 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 diff --git a/doc/bash.ps b/doc/bash.ps index 5a8302a8..213b5f18 100644 --- a/doc/bash.ps +++ b/doc/bash.ps @@ -1,6 +1,6 @@ %!PS-Adobe-3.0 %%Creator: groff version 1.19.2 -%%CreationDate: Tue Jun 29 14:02:43 2010 +%%CreationDate: Wed Jul 21 08:54:49 2010 %%DocumentNeededResources: font Times-Roman %%+ font Times-Bold %%+ font Times-Italic @@ -330,7 +330,7 @@ F .475(xtended deb)-.15 F(ug-)-.2 E 144 686.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 F2(\255\255login)108 703.2 Q F0 (Equi)144 715.2 Q -.25(va)-.25 G(lent to).25 E F22.5 E F0(.)A -(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(1)202.335 E 0 Cg EP +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(1)203.165 E 0 Cg EP %%Page: 2 2 %%BeginPageSetup BP @@ -451,8 +451,8 @@ F(ariable)-.25 E F3 -.27(BA)108 679.2 S(SH_ENV).27 E F0 1.01(in the en) (if [ \255n "$BASH_ENV" ]; then . "$BASH_ENV"; fi)144 709.2 Q F0 -.2(bu) 108 727.2 S 2.5(tt).2 G(he v)-2.5 E(alue of the)-.25 E F3 -.666(PA)2.5 G (TH)-.189 E F0 -.25(va)2.25 G -(riable is not used to search for the \214le name.).25 E(GNU Bash-4.1)72 -768 Q(2010 June 12)147.345 E(2)202.335 E 0 Cg EP +(riable is not used to search for the \214le name.).25 E(GNU Bash-4.2)72 +768 Q(2010 July 21)148.175 E(2)203.165 E 0 Cg EP %%Page: 3 3 %%BeginPageSetup BP @@ -579,8 +579,8 @@ F .175(xit status, or 128+)-.15 F F2(n)A F0 .176 F1(Pipelines)87 691.2 Q F0(A)108 703.2 Q F2(pipeline)2.996 E F0 .496(is\ a sequence of one or more commands separated by one of the control ope\ rators)2.996 F F1(|)2.996 E F0(or)2.996 E F1(|&)2.996 E F0 5.496(.T)C -(he)-5.496 E(format for a pipeline is:)108 715.2 Q(GNU Bash-4.1)72 768 Q -(2010 June 12)147.345 E(3)202.335 E 0 Cg EP +(he)-5.496 E(format for a pipeline is:)108 715.2 Q(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(3)203.165 E 0 Cg EP %%Page: 4 4 %%BeginPageSetup BP @@ -621,7703 +621,7740 @@ G 5.55(.T).15 G .55(he shell w)-5.55 F .55(aits for)-.1 F ell as user and system time consumed by its)-.1 F -.15(exe)108 242.4 S .14(cution are reported when the pipeline terminates.).15 F(The)5.139 E F12.639 E F0 .139(option changes the output format to that spec-) -2.639 F .779(i\214ed by POSIX.)108 254.4 R(The)5.779 E F4(TIMEFORMA) -3.279 E(T)-.855 E F0 -.25(va)3.029 G .779 -(riable may be set to a format string that speci\214es ho).25 F 3.28(wt) --.25 G .78(he timing)-3.28 F -(information should be displayed; see the description of)108 266.4 Q F4 -(TIMEFORMA)2.5 E(T)-.855 E F0(under)2.25 E F1(Shell V)2.5 E(ariables) --.92 E F0(belo)2.5 E -.65(w.)-.25 G .85(When the shell is in)108 283.2 R -F2 .85(posix mode)3.35 F F0(,)A F1(time)3.35 E F0 .85(may be follo)3.35 -F .85(wed by a ne)-.25 F 3.35(wline. In)-.25 F .85 -(this case, the shell displays the)3.35 F 1.073 +2.639 F .302(i\214ed by POSIX.)108 254.4 R .303(When the shell is in) +5.302 F F2 .303(posix mode)2.803 F F0 2.803(,i)C 2.803(td)-2.803 G .303 +(oes not recognize)-2.803 F F1(time)2.803 E F0 .303(as a reserv)2.803 F +.303(ed w)-.15 F .303(ord if the ne)-.1 F(xt)-.15 E(tok)108 266.4 Q .736 +(en be)-.1 F .736(gins with a `-'.)-.15 F(The)5.736 E F4(TIMEFORMA)3.236 +E(T)-.855 E F0 -.25(va)2.986 G .736 +(riable may be set to a format string that speci\214es ho).25 F 3.235 +(wt)-.25 G(he)-3.235 E 2.225 +(timing information should be displayed; see the description of)108 +278.4 R F4(TIMEFORMA)4.726 E(T)-.855 E F0(under)4.476 E F1 2.226 +(Shell V)4.726 F(ariables)-.92 E F0(belo)108 290.4 Q -.65(w.)-.25 G .85 +(When the shell is in)108 307.2 R F2 .85(posix mode)3.35 F F0(,)A F1 +(time)3.35 E F0 .85(may be follo)3.35 F .85(wed by a ne)-.25 F 3.35 +(wline. In)-.25 F .85(this case, the shell displays the)3.35 F 1.073 (total user and system time consumed by the shell and its children.)108 -295.2 R(The)6.074 E F4(TIMEFORMA)3.574 E(T)-.855 E F0 -.25(va)3.324 G +319.2 R(The)6.074 E F4(TIMEFORMA)3.574 E(T)-.855 E F0 -.25(va)3.324 G 1.074(riable may be).25 F -(used to specify the format of the time information.)108 307.2 Q -(Each command in a pipeline is e)108 324 Q -.15(xe)-.15 G +(used to specify the format of the time information.)108 331.2 Q +(Each command in a pipeline is e)108 348 Q -.15(xe)-.15 G (cuted as a separate process \(i.e., in a subshell\).).15 E F1(Lists)87 -340.8 Q F0(A)108 352.8 Q F2(list)2.601 E F0 .101(is a sequence of one o\ +364.8 Q F0(A)108 376.8 Q F2(list)2.601 E F0 .101(is a sequence of one o\ r more pipelines separated by one of the operators)2.601 F F1(;)2.6 E F0 (,)A F1(&)2.6 E F0(,)A F1(&&)2.6 E F0 2.6(,o)C(r)-2.6 E F32.6 E F0 -2.6(,a)C .1(nd option-)-2.6 F(ally terminated by one of)108 364.8 Q F1 +2.6(,a)C .1(nd option-)-2.6 F(ally terminated by one of)108 388.8 Q F1 (;)2.5 E F0(,)A F1(&)2.5 E F0 2.5(,o)C(r)-2.5 E F1()2.5 E F0(.) -A .656(Of these list operators,)108 381.6 R F1(&&)3.156 E F0(and)3.156 E +A .656(Of these list operators,)108 405.6 R F1(&&)3.156 E F0(and)3.156 E F33.156 E F0(ha)3.156 E .956 -.15(ve e)-.2 H .656 (qual precedence, follo).15 F .656(wed by)-.25 F F1(;)3.156 E F0(and) 3.156 E F1(&)3.156 E F0 3.156(,w)C .656(hich ha)-3.156 F .957 -.15(ve e) --.2 H .657(qual prece-).15 F(dence.)108 393.6 Q 2.5(As)108 410.4 S +-.2 H .657(qual prece-).15 F(dence.)108 417.6 Q 2.5(As)108 434.4 S (equence of one or more ne)-2.5 E(wlines may appear in a)-.25 E F2(list) 2.5 E F0(instead of a semicolon to delimit commands.)2.5 E .029 -(If a command is terminated by the control operator)108 427.2 R F1(&) +(If a command is terminated by the control operator)108 451.2 R F1(&) 2.529 E F0 2.529(,t)C .029(he shell e)-2.529 F -.15(xe)-.15 G .029 (cutes the command in the).15 F F2(bac)2.528 E(kgr)-.2 E(ound)-.45 E F0 -(in)2.528 E 2.875(as)108 439.2 S 2.875(ubshell. The)-2.875 F .375 +(in)2.528 E 2.875(as)108 463.2 S 2.875(ubshell. The)-2.875 F .375 (shell does not w)2.875 F .375 (ait for the command to \214nish, and the return status is 0.)-.1 F .376 -(Commands sepa-)5.376 F .849(rated by a)108 451.2 R F1(;)3.349 E F0 .849 +(Commands sepa-)5.376 F .849(rated by a)108 475.2 R F1(;)3.349 E F0 .849 (are e)3.349 F -.15(xe)-.15 G .848(cuted sequentially; the shell w).15 F .848(aits for each command to terminate in turn.)-.1 F .848(The return) -5.848 F(status is the e)108 463.2 Q(xit status of the last command e) +5.848 F(status is the e)108 487.2 Q(xit status of the last command e) -.15 E -.15(xe)-.15 G(cuted.).15 E .632(AND and OR lists are sequences \ -of one of more pipelines separated by the)108 480 R F1(&&)3.132 E F0 +of one of more pipelines separated by the)108 504 R F1(&&)3.132 E F0 (and)3.133 E F33.133 E F0 .633(control operators,)3.133 F -(respecti)108 492 Q -.15(ve)-.25 G(ly).15 E 5(.A)-.65 G +(respecti)108 516 Q -.15(ve)-.25 G(ly).15 E 5(.A)-.65 G (ND and OR lists are e)-5 E -.15(xe)-.15 G(cuted with left associati).15 E(vity)-.25 E 5(.A)-.65 G 2.5(nA)-5 G(ND list has the form)-2.5 E F2 -(command1)144 508.8 Q F1(&&)2.5 E F2(command2)2.5 E(command2)108.2 525.6 +(command1)144 532.8 Q F1(&&)2.5 E F2(command2)2.5 E(command2)108.2 549.6 Q F0(is e)2.52 E -.15(xe)-.15 G(cuted if, and only if,).15 E F2 (command1)2.7 E F0(returns an e)2.5 E(xit status of zero.)-.15 E -(An OR list has the form)108 542.4 Q F2(command1)144 559.2 Q F32.5 -E F2(command2)2.5 E(command2)108.2 580.8 Q F0 .729(is e)3.249 F -.15(xe) +(An OR list has the form)108 566.4 Q F2(command1)144 583.2 Q F32.5 +E F2(command2)2.5 E(command2)108.2 604.8 Q F0 .729(is e)3.249 F -.15(xe) -.15 G .729(cuted if and only if).15 F F2(command1)3.429 E F0 .729 (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 592.8 Q +(The return status of AND)5.729 F(and OR lists is the e)108 616.8 Q (xit status of the last command e)-.15 E -.15(xe)-.15 G -(cuted in the list.).15 E F1(Compound Commands)87 609.6 Q F0(A)108 621.6 +(cuted in the list.).15 E F1(Compound Commands)87 633.6 Q F0(A)108 645.6 Q F2(compound command)2.5 E F0(is one of the follo)2.5 E(wing:)-.25 E -(\()108 638.4 Q F2(list)A F0(\))A F2(list)17.11 E F0 .011(is e)2.511 F +(\()108 662.4 Q F2(list)A F0(\))A F2(list)17.11 E F0 .011(is e)2.511 F -.15(xe)-.15 G .011(cuted in a subshell en).15 F .011(vironment \(see) -.4 F F4 .011(COMMAND EXECUTION ENVIR)2.511 F(ONMENT)-.27 E F0(belo) -2.262 E(w\).)-.25 E -1.11(Va)144 650.4 S 1.064(riable assignments and b) +2.262 E(w\).)-.25 E -1.11(Va)144 674.4 S 1.064(riable assignments and b) 1.11 F 1.064(uiltin commands that af)-.2 F 1.064(fect the shell')-.25 F 3.564(se)-.55 G -.4(nv)-3.564 G 1.064(ironment do not remain in).4 F(ef) -144 662.4 Q(fect after the command completes.)-.25 E +144 686.4 Q(fect after the command completes.)-.25 E (The return status is the e)5 E(xit status of)-.15 E F2(list)2.5 E F0(.) -A({)108 679.2 Q F2(list)2.5 E F0 2.5(;})C F2(list)3.89 E F0 .401 +A({)108 703.2 Q F2(list)2.5 E F0 2.5(;})C F2(list)3.89 E F0 .401 (is simply e)2.901 F -.15(xe)-.15 G .401(cuted in the current shell en) .15 F(vironment.)-.4 E F2(list)5.401 E F0 .402 (must be terminated with a ne)2.901 F .402(wline or)-.25 F 3.215 -(semicolon. This)144 691.2 R .715(is kno)3.215 F .715(wn as a)-.25 F F2 +(semicolon. This)144 715.2 R .715(is kno)3.215 F .715(wn as a)-.25 F F2 (gr)3.215 E .715(oup command)-.45 F F0 5.715(.T)C .715 (he return status is the e)-5.715 F .714(xit status of)-.15 F F2(list) -3.214 E F0 5.714(.N)C(ote)-5.714 E .219(that unlik)144 703.2 R 2.719(et) +3.214 E F0 5.714(.N)C(ote)-5.714 E .219(that unlik)144 727.2 R 2.719(et) -.1 G .219(he metacharacters)-2.719 F F1(\()2.719 E F0(and)2.719 E F1 (\))2.719 E F0(,)A F1({)2.719 E F0(and)2.719 E F1(})2.719 E F0(are)2.719 E F2 -.37(re)2.72 G .22(served wor).37 F(ds)-.37 E F0 .22 -(and must occur where a reserv)2.72 F(ed)-.15 E -.1(wo)144 715.2 S .257 -(rd is permitted to be recognized.).1 F .257(Since the)5.257 F 2.757(yd) --.15 G 2.756(on)-2.757 G .256(ot cause a w)-2.756 F .256(ord break, the) --.1 F 2.756(ym)-.15 G .256(ust be separated)-2.756 F(from)144 727.2 Q F2 -(list)2.5 E F0(by whitespace or another shell metacharacter)2.5 E(.)-.55 -E(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(4)202.335 E 0 Cg EP +(and must occur where a reserv)2.72 F(ed)-.15 E(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(4)203.165 E 0 Cg EP %%Page: 5 5 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E(\(\()108 84 Q/F1 10/Times-Italic@0 SF -.2(ex)C(pr).2 E(ession) --.37 E F0(\)\))A(The)144 96 Q F1 -.2(ex)2.551 G(pr).2 E(ession)-.37 E F0 -.051(is e)2.551 F -.25(va)-.25 G .051 -(luated according to the rules described belo).25 F 2.552(wu)-.25 G -(nder)-2.552 E/F2 9/Times-Bold@0 SF .052(ARITHMETIC EV)2.552 F(ALU) --1.215 E(A-)-.54 E(TION)144 108 Q/F3 9/Times-Roman@0 SF(.)A F0 .411 -(If the v)4.911 F .411(alue of the e)-.25 F .411(xpression is non-zero,\ - the return status is 0; otherwise the return status)-.15 F(is 1.)144 -120 Q(This is e)5 E(xactly equi)-.15 E -.25(va)-.25 G(lent to).25 E/F4 -10/Times-Bold@0 SF(let ")2.5 E F1 -.2(ex)C(pr).2 E(ession)-.37 E F4(")A -F0(.)A F4([[)108 136.8 Q F1 -.2(ex)2.5 G(pr).2 E(ession)-.37 E F4(]])2.5 -E F0 1.299(Return a status of 0 or 1 depending on the e)144 148.8 R -.25 -(va)-.25 G 1.3(luation of the conditional e).25 F(xpression)-.15 E F1 --.2(ex)3.8 G(pr).2 E(ession)-.37 E F0(.)A 2.274 -(Expressions are composed of the primaries described belo)144 160.8 R +-.35 E -.1(wo)144 84 S .257(rd is permitted to be recognized.).1 F .257 +(Since the)5.257 F 2.757(yd)-.15 G 2.756(on)-2.757 G .256(ot cause a w) +-2.756 F .256(ord break, the)-.1 F 2.756(ym)-.15 G .256 +(ust be separated)-2.756 F(from)144 96 Q/F1 10/Times-Italic@0 SF(list) +2.5 E F0(by whitespace or another shell metacharacter)2.5 E(.)-.55 E +(\(\()108 112.8 Q F1 -.2(ex)C(pr).2 E(ession)-.37 E F0(\)\))A(The)144 +124.8 Q F1 -.2(ex)2.551 G(pr).2 E(ession)-.37 E F0 .051(is e)2.551 F +-.25(va)-.25 G .051(luated according to the rules described belo).25 F +2.552(wu)-.25 G(nder)-2.552 E/F2 9/Times-Bold@0 SF .052(ARITHMETIC EV) +2.552 F(ALU)-1.215 E(A-)-.54 E(TION)144 136.8 Q/F3 9/Times-Roman@0 SF(.) +A F0 .411(If the v)4.911 F .411(alue of the e)-.25 F .411(xpression is \ +non-zero, the return status is 0; otherwise the return status)-.15 F +(is 1.)144 148.8 Q(This is e)5 E(xactly equi)-.15 E -.25(va)-.25 G +(lent to).25 E/F4 10/Times-Bold@0 SF(let ")2.5 E F1 -.2(ex)C(pr).2 E +(ession)-.37 E F4(")A F0(.)A F4([[)108 165.6 Q F1 -.2(ex)2.5 G(pr).2 E +(ession)-.37 E F4(]])2.5 E F0 1.299 +(Return a status of 0 or 1 depending on the e)144 177.6 R -.25(va)-.25 G +1.3(luation of the conditional e).25 F(xpression)-.15 E F1 -.2(ex)3.8 G +(pr).2 E(ession)-.37 E F0(.)A 2.274 +(Expressions are composed of the primaries described belo)144 189.6 R 4.773(wu)-.25 G(nder)-4.773 E F2(CONDITION)4.773 E 2.273(AL EXPRES-)-.18 -F(SIONS)144 172.8 Q F3(.)A F0 -.8(Wo)5.632 G 1.133 +F(SIONS)144 201.6 Q F3(.)A F0 -.8(Wo)5.632 G 1.133 (rd splitting and pathname e).8 F 1.133 (xpansion are not performed on the w)-.15 F 1.133(ords between the)-.1 F -F4([[)3.633 E F0(and)144 184.8 Q F4(]])2.964 E F0 2.964(;t)C .464 +F4([[)3.633 E F0(and)144 213.6 Q F4(]])2.964 E F0 2.964(;t)C .464 (ilde e)-2.964 F .464(xpansion, parameter and v)-.15 F .464(ariable e) -.25 F .463(xpansion, arithmetic e)-.15 F .463 (xpansion, command substi-)-.15 F 1.081 -(tution, process substitution, and quote remo)144 196.8 R -.25(va)-.15 G +(tution, process substitution, and quote remo)144 225.6 R -.25(va)-.15 G 3.581(la).25 G 1.081(re performed.)-3.581 F 1.081 (Conditional operators such as)6.081 F F43.581 E F0 -(must be unquoted to be recognized as primaries.)144 208.8 Q -(When used with)144 226.8 Q F4([[)2.5 E F0 2.5(,T)C(he)-2.5 E F4(<)2.5 E +(must be unquoted to be recognized as primaries.)144 237.6 Q +(When used with)144 255.6 Q F4([[)2.5 E F0 2.5(,T)C(he)-2.5 E F4(<)2.5 E F0(and)2.5 E F4(>)2.5 E F0(operators sort le)2.5 E (xicographically using the current locale.)-.15 E .503(When the)144 -244.8 R F4(==)3.003 E F0(and)3.002 E F4(!=)3.002 E F0 .502(operators ar\ +273.6 R F4(==)3.003 E F0(and)3.002 E F4(!=)3.002 E F0 .502(operators ar\ e used, the string to the right of the operator is considered a pat-) 3.002 F 1.224(tern and matched according to the rules described belo)144 -256.8 R 3.724(wu)-.25 G(nder)-3.724 E F4 -.1(Pa)3.724 G(tter).1 E 3.725 +285.6 R 3.724(wu)-.25 G(nder)-3.724 E F4 -.1(Pa)3.724 G(tter).1 E 3.725 (nM)-.15 G(atching)-3.725 E F0 6.225(.I)C 3.725(ft)-6.225 G 1.225 -(he shell)-3.725 F(option)144 268.8 Q F4(nocasematch)3.405 E F0 .904 +(he shell)-3.725 F(option)144 297.6 Q F4(nocasematch)3.405 E F0 .904 (is enabled, the match is performed without re)3.405 F -.05(ga)-.15 G -.904(rd to the case of alphabetic).05 F 2.751(characters. The)144 280.8 +.904(rd to the case of alphabetic).05 F 2.751(characters. The)144 309.6 R .251(return v)2.751 F .251(alue is 0 if the string matches \()-.25 F F4(==)A F0 2.751(\)o)C 2.751(rd)-2.751 G .251(oes not match \()-2.751 F -F4(!=)A F0 2.751(\)t)C .252(he pattern, and)-2.751 F 2.5(1o)144 292.8 S +F4(!=)A F0 2.751(\)t)C .252(he pattern, and)-2.751 F 2.5(1o)144 321.6 S 2.5(therwise. An)-2.5 F 2.5(yp)-.15 G(art of the pattern may be quoted \ to force it to be matched as a string.)-2.5 E .243 -(An additional binary operator)144 310.8 R(,)-.4 E F4(=~)2.743 E F0 +(An additional binary operator)144 339.6 R(,)-.4 E F4(=~)2.743 E F0 2.743(,i)C 2.743(sa)-2.743 G -.25(va)-2.943 G .243 (ilable, with the same precedence as).25 F F4(==)2.743 E F0(and)2.743 E F4(!=)2.743 E F0 5.243(.W)C .243(hen it is)-5.243 F 1.953 (used, the string to the right of the operator is considered an e)144 -322.8 R 1.954(xtended re)-.15 F 1.954(gular e)-.15 F 1.954 -(xpression and)-.15 F .207(matched accordingly \(as in)144 334.8 R F1 +351.6 R 1.954(xtended re)-.15 F 1.954(gular e)-.15 F 1.954 +(xpression and)-.15 F .207(matched accordingly \(as in)144 363.6 R F1 -.37(re)2.707 G -.1(ge)-.03 G(x)-.1 E F0 2.707(\(3\)\). The)B .207 (return v)2.707 F .207 (alue is 0 if the string matches the pattern, and 1)-.25 F 3.345 -(otherwise. If)144 346.8 R .845(the re)3.345 F .845(gular e)-.15 F .846 +(otherwise. If)144 375.6 R .845(the re)3.345 F .845(gular e)-.15 F .846 (xpression is syntactically incorrect, the conditional e)-.15 F -(xpression')-.15 E 3.346(sr)-.55 G(eturn)-3.346 E -.25(va)144 358.8 S +(xpression')-.15 E 3.346(sr)-.55 G(eturn)-3.346 E -.25(va)144 387.6 S .667(lue is 2.).25 F .667(If the shell option)5.667 F F4(nocasematch) 3.167 E F0 .667(is enabled, the match is performed without re)3.167 F -.05(ga)-.15 G .666(rd to).05 F .378(the case of alphabetic characters.) -144 370.8 R(An)5.378 E 2.878(yp)-.15 G .378 +144 399.6 R(An)5.378 E 2.878(yp)-.15 G .378 (art of the pattern may be quoted to force it to be matched)-2.878 F -.265(as a string.)144 382.8 R .265 +.265(as a string.)144 411.6 R .265 (Substrings matched by parenthesized sube)5.265 F .265 (xpressions within the re)-.15 F .265(gular e)-.15 F .265(xpression are) --.15 F(sa)144 394.8 Q -.15(ve)-.2 G 3.096(di).15 G 3.097(nt)-3.096 G +-.15 F(sa)144 423.6 Q -.15(ve)-.2 G 3.096(di).15 G 3.097(nt)-3.096 G .597(he array v)-3.097 F(ariable)-.25 E F2 -.27(BA)3.097 G(SH_REMA).27 E (TCH)-.855 E F3(.)A F0 .597(The element of)5.097 F F2 -.27(BA)3.097 G (SH_REMA).27 E(TCH)-.855 E F0 .597(with inde)2.847 F 3.097(x0i)-.15 G(s) --3.097 E .049(the portion of the string matching the entire re)144 406.8 +-3.097 E .049(the portion of the string matching the entire re)144 435.6 R .049(gular e)-.15 F 2.549(xpression. The)-.15 F .049(element of)2.549 -F F2 -.27(BA)2.549 G(SH_REMA).27 E(TCH)-.855 E F0(with inde)144 418.8 Q +F F2 -.27(BA)2.549 G(SH_REMA).27 E(TCH)-.855 E F0(with inde)144 447.6 Q (x)-.15 E F1(n)2.5 E F0(is the portion of the string matching the)2.5 E F1(n)2.5 E F0(th parenthesized sube)A(xpression.)-.15 E .785 -(Expressions may be combined using the follo)144 436.8 R .786 +(Expressions may be combined using the follo)144 465.6 R .786 (wing operators, listed in decreasing order of prece-)-.25 F(dence:)144 -448.8 Q F4(\()144 466.8 Q F1 -.2(ex)2.5 G(pr).2 E(ession)-.37 E F4(\)) -2.5 E F0 .523(Returns the v)180 478.8 R .522(alue of)-.25 F F1 -.2(ex) +477.6 Q F4(\()144 495.6 Q F1 -.2(ex)2.5 G(pr).2 E(ession)-.37 E F4(\)) +2.5 E F0 .523(Returns the v)180 507.6 R .522(alue of)-.25 F F1 -.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 490.8 Q F4(!)144 502.8 Q F1 -.2(ex)2.5 G(pr).2 E(ession) --.37 E F0 -.35(Tr)180 514.8 S(ue if).35 E F1 -.2(ex)2.5 G(pr).2 E -(ession)-.37 E F0(is f)2.74 E(alse.)-.1 E F1 -.2(ex)144 526.8 S(pr).2 E +(operators.)180 519.6 Q F4(!)144 531.6 Q F1 -.2(ex)2.5 G(pr).2 E(ession) +-.37 E F0 -.35(Tr)180 543.6 S(ue if).35 E F1 -.2(ex)2.5 G(pr).2 E +(ession)-.37 E F0(is f)2.74 E(alse.)-.1 E F1 -.2(ex)144 555.6 S(pr).2 E (ession1)-.37 E F4(&&)2.5 E F1 -.2(ex)2.5 G(pr).2 E(ession2)-.37 E F0 --.35(Tr)180 538.8 S(ue if both).35 E F1 -.2(ex)2.5 G(pr).2 E(ession1) +-.35(Tr)180 567.6 S(ue if both).35 E F1 -.2(ex)2.5 G(pr).2 E(ession1) -.37 E F0(and)2.5 E F1 -.2(ex)2.5 G(pr).2 E(ession2)-.37 E F0(are true.) -2.52 E F1 -.2(ex)144 550.8 S(pr).2 E(ession1)-.37 E/F5 10/Symbol SF -2.5 E F1 -.2(ex)2.5 G(pr).2 E(ession2)-.37 E F0 -.35(Tr)180 562.8 +2.52 E F1 -.2(ex)144 579.6 S(pr).2 E(ession1)-.37 E/F5 10/Symbol SF +2.5 E F1 -.2(ex)2.5 G(pr).2 E(ession2)-.37 E F0 -.35(Tr)180 591.6 S(ue if either).35 E F1 -.2(ex)2.5 G(pr).2 E(ession1)-.37 E F0(or)2.5 E -F1 -.2(ex)2.5 G(pr).2 E(ession2)-.37 E F0(is true.)2.52 E(The)144 579.6 +F1 -.2(ex)2.5 G(pr).2 E(ession2)-.37 E F0(is true.)2.52 E(The)144 608.4 Q F4(&&)3.298 E F0(and)3.298 E F53.298 E F0 .798 (operators do not e)3.298 F -.25(va)-.25 G(luate).25 E F1 -.2(ex)3.298 G (pr).2 E(ession2)-.37 E F0 .798(if the v)3.298 F .798(alue of)-.25 F F1 -.2(ex)3.298 G(pr).2 E(ession1)-.37 E F0 .799(is suf)3.298 F .799 -(\214cient to)-.25 F(determine the return v)144 591.6 Q +(\214cient to)-.25 F(determine the return v)144 620.4 Q (alue of the entire conditional e)-.25 E(xpression.)-.15 E F4 -.25(fo) -108 608.4 S(r).25 E F1(name)2.5 E F0 2.5([[)2.5 G F4(in)A F0([)2.5 E F1 +108 637.2 S(r).25 E F1(name)2.5 E F0 2.5([[)2.5 G F4(in)A F0([)2.5 E F1 (wor)2.5 E 2.5(d.)-.37 G(..)-2.5 E F0 2.5(]];])2.5 G F4(do)A F1(list)2.5 -E F0(;)2.5 E F4(done)2.5 E F0 .424(The list of w)144 620.4 R .424 +E F0(;)2.5 E F4(done)2.5 E F0 .424(The list of w)144 649.2 R .424 (ords follo)-.1 F(wing)-.25 E F4(in)2.924 E F0 .423(is e)2.924 F .423 (xpanded, generating a list of items.)-.15 F .423(The v)5.423 F(ariable) -.25 E F1(name)2.923 E F0 .423(is set to)2.923 F .653 -(each element of this list in turn, and)144 632.4 R F1(list)3.153 E F0 +(each element of this list in turn, and)144 661.2 R F1(list)3.153 E F0 .653(is e)3.153 F -.15(xe)-.15 G .653(cuted each time.).15 F .653 (If the)5.653 F F4(in)3.153 E F1(wor)3.153 E(d)-.37 E F0 .653 (is omitted, the)3.153 F F4 -.25(fo)3.153 G(r).25 E F0 .649(command e) -144 644.4 R -.15(xe)-.15 G(cutes).15 E F1(list)3.149 E F0 .648 +144 673.2 R -.15(xe)-.15 G(cutes).15 E F1(list)3.149 E F0 .648 (once for each positional parameter that is set \(see)3.148 F F2 -.666 (PA)3.148 G(RAMETERS).666 E F0(belo)2.898 E(w\).)-.25 E .153 -(The return status is the e)144 656.4 R .153 +(The return status is the e)144 685.2 R .153 (xit status of the last command that e)-.15 F -.15(xe)-.15 G 2.654 (cutes. If).15 F .154(the e)2.654 F .154(xpansion of the items)-.15 F -(follo)144 668.4 Q(wing)-.25 E F4(in)2.5 E F0 +(follo)144 697.2 Q(wing)-.25 E F4(in)2.5 E F0 (results in an empty list, no commands are e)2.5 E -.15(xe)-.15 G -(cuted, and the return status is 0.).15 E F4 -.25(fo)108 685.2 S(r).25 E -F0(\(\()2.5 E F1 -.2(ex)2.5 G(pr1).2 E F0(;)2.5 E F1 -.2(ex)2.5 G(pr2).2 -E F0(;)2.5 E F1 -.2(ex)2.5 G(pr3).2 E F0(\)\) ;)2.5 E F4(do)2.5 E F1 -(list)2.5 E F0(;)2.5 E F4(done)2.5 E F0 1.236(First, the arithmetic e) -144 697.2 R(xpression)-.15 E F1 -.2(ex)3.736 G(pr1).2 E F0 1.235(is e) -3.736 F -.25(va)-.25 G 1.235 -(luated according to the rules described belo).25 F 3.735(wu)-.25 G -(nder)-3.735 E F2 .561(ARITHMETIC EV)144 709.2 R(ALU)-1.215 E -.855(AT) --.54 G(ION).855 E F3(.)A F0 .561(The arithmetic e)5.061 F(xpression)-.15 -E F1 -.2(ex)3.061 G(pr2).2 E F0 .562(is then e)3.062 F -.25(va)-.25 G -.562(luated repeatedly until).25 F 2.139(it e)144 721.2 R -.25(va)-.25 G -2.139(luates to zero.).25 F 2.139(Each time)7.139 F F1 -.2(ex)4.639 G -(pr2).2 E F0 -.25(eva)4.639 G 2.139(luates to a non-zero v).25 F(alue,) --.25 E F1(list)4.639 E F0 2.138(is e)4.638 F -.15(xe)-.15 G 2.138 -(cuted and the).15 F(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(5) -202.335 E 0 Cg EP +(cuted, and the return status is 0.).15 E(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(5)203.165 E 0 Cg EP %%Page: 6 6 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E .389(arithmetic e)144 84 R(xpression)-.15 E/F1 10/Times-Italic@0 -SF -.2(ex)2.889 G(pr3).2 E F0 .389(is e)2.889 F -.25(va)-.25 G 2.889 -(luated. If).25 F(an)2.889 E 2.889(ye)-.15 G .389 -(xpression is omitted, it beha)-3.039 F -.15(ve)-.2 G 2.89(sa).15 G 2.89 -(si)-2.89 G 2.89(fi)-2.89 G 2.89(te)-2.89 G -.25(va)-3.14 G(luates).25 E -.36(to 1.)144 96 R .36(The return v)5.36 F .36(alue is the e)-.25 F .36 -(xit status of the last command in)-.15 F F1(list)2.859 E F0 .359 -(that is e)2.859 F -.15(xe)-.15 G .359(cuted, or f).15 F .359 -(alse if an)-.1 F(y)-.15 E(of the e)144 108 Q(xpressions is in)-.15 E --.25(va)-.4 G(lid.).25 E/F2 10/Times-Bold@0 SF(select)108 124.8 Q F1 -(name)2.5 E F0([)2.5 E F2(in)2.5 E F1(wor)2.5 E(d)-.37 E F0 2.5(];)2.5 G -F2(do)A F1(list)2.5 E F0(;)2.5 E F2(done)2.5 E F0 .432(The list of w)144 -136.8 R .432(ords follo)-.1 F(wing)-.25 E F2(in)2.932 E F0 .432(is e) -2.932 F .432(xpanded, generating a list of items.)-.15 F .433 -(The set of e)5.433 F .433(xpanded w)-.15 F(ords)-.1 E .843 -(is printed on the standard error)144 148.8 R 3.342(,e)-.4 G .842 +-.35 E/F1 10/Times-Bold@0 SF -.25(fo)108 84 S(r).25 E F0(\(\()2.5 E/F2 +10/Times-Italic@0 SF -.2(ex)2.5 G(pr1).2 E F0(;)2.5 E F2 -.2(ex)2.5 G +(pr2).2 E F0(;)2.5 E F2 -.2(ex)2.5 G(pr3).2 E F0(\)\) ;)2.5 E F1(do)2.5 +E F2(list)2.5 E F0(;)2.5 E F1(done)2.5 E F0 1.236 +(First, the arithmetic e)144 96 R(xpression)-.15 E F2 -.2(ex)3.736 G +(pr1).2 E F0 1.235(is e)3.736 F -.25(va)-.25 G 1.235 +(luated according to the rules described belo).25 F 3.735(wu)-.25 G +(nder)-3.735 E/F3 9/Times-Bold@0 SF .561(ARITHMETIC EV)144 108 R(ALU) +-1.215 E -.855(AT)-.54 G(ION).855 E/F4 9/Times-Roman@0 SF(.)A F0 .561 +(The arithmetic e)5.061 F(xpression)-.15 E F2 -.2(ex)3.061 G(pr2).2 E F0 +.562(is then e)3.062 F -.25(va)-.25 G .562(luated repeatedly until).25 F +.592(it e)144 120 R -.25(va)-.25 G .592(luates to zero.).25 F .592 +(Each time)5.592 F F2 -.2(ex)3.092 G(pr2).2 E F0 -.25(eva)3.092 G .592 +(luates to a non-zero v).25 F(alue,)-.25 E F2(list)3.092 E F0 .591(is e) +3.092 F -.15(xe)-.15 G .591(cuted and the arith-).15 F .228(metic e)144 +132 R(xpression)-.15 E F2 -.2(ex)2.728 G(pr3).2 E F0 .229(is e)2.728 F +-.25(va)-.25 G 2.729(luated. If).25 F(an)2.729 E 2.729(ye)-.15 G .229 +(xpression is omitted, it beha)-2.879 F -.15(ve)-.2 G 2.729(sa).15 G +2.729(si)-2.729 G 2.729(fi)-2.729 G 2.729(te)-2.729 G -.25(va)-2.979 G +.229(luates to 1.).25 F .228(The return v)144 144 R .228(alue is the e) +-.25 F .228(xit status of the last command in)-.15 F F2(list)2.728 E F0 +.227(that is e)2.728 F -.15(xe)-.15 G .227(cuted, or f).15 F .227 +(alse if an)-.1 F 2.727(yo)-.15 G 2.727(ft)-2.727 G(he)-2.727 E -.15(ex) +144 156 S(pressions is in).15 E -.25(va)-.4 G(lid.).25 E F1(select)108 +172.8 Q F2(name)2.5 E F0([)2.5 E F1(in)2.5 E F2(wor)2.5 E(d)-.37 E F0 +2.5(];)2.5 G F1(do)A F2(list)2.5 E F0(;)2.5 E F1(done)2.5 E F0 .432 +(The list of w)144 184.8 R .432(ords follo)-.1 F(wing)-.25 E F1(in)2.932 +E F0 .432(is e)2.932 F .432(xpanded, generating a list of items.)-.15 F +.433(The set of e)5.433 F .433(xpanded w)-.15 F(ords)-.1 E .843 +(is printed on the standard error)144 196.8 R 3.342(,e)-.4 G .842 (ach preceded by a number)-3.342 F 5.842(.I)-.55 G 3.342(ft)-5.842 G(he) --3.342 E F2(in)3.342 E F1(wor)3.342 E(d)-.37 E F0 .842 +-3.342 E F1(in)3.342 E F2(wor)3.342 E(d)-.37 E F0 .842 (is omitted, the posi-)3.342 F .201(tional parameters are printed \(see) -144 160.8 R/F3 9/Times-Bold@0 SF -.666(PA)2.701 G(RAMETERS).666 E F0 -(belo)2.451 E 2.701(w\). The)-.25 F F3(PS3)2.701 E F0 .201 -(prompt is then displayed and a)2.451 F .214 -(line read from the standard input.)144 172.8 R .213 +144 208.8 R F3 -.666(PA)2.701 G(RAMETERS).666 E F0(belo)2.451 E 2.701 +(w\). The)-.25 F F3(PS3)2.701 E F0 .201(prompt is then displayed and a) +2.451 F .214(line read from the standard input.)144 220.8 R .213 (If the line consists of a number corresponding to one of the dis-)5.214 -F 1.537(played w)144 184.8 R 1.537(ords, then the v)-.1 F 1.537(alue of) --.25 F F1(name)4.397 E F0 1.537(is set to that w)4.217 F 4.037(ord. If) +F 1.537(played w)144 232.8 R 1.537(ords, then the v)-.1 F 1.537(alue of) +-.25 F F2(name)4.397 E F0 1.537(is set to that w)4.217 F 4.037(ord. If) -.1 F 1.538(the line is empty)4.038 F 4.038(,t)-.65 G 1.538(he w)-4.038 -F 1.538(ords and)-.1 F .066(prompt are displayed ag)144 196.8 R 2.566 +F 1.538(ords and)-.1 F .066(prompt are displayed ag)144 244.8 R 2.566 (ain. If)-.05 F .065(EOF is read, the command completes.)2.566 F(An) 5.065 E 2.565(yo)-.15 G .065(ther v)-2.565 F .065(alue read causes)-.25 -F F1(name)144 208.8 Q F0 .972(to be set to null.)3.652 F .972 +F F2(name)144 256.8 Q F0 .972(to be set to null.)3.652 F .972 (The line read is sa)5.972 F -.15(ve)-.2 G 3.473(di).15 G 3.473(nt) --3.473 G .973(he v)-3.473 F(ariable)-.25 E F3(REPL)3.473 E(Y)-.828 E/F4 -9/Times-Roman@0 SF(.)A F0(The)5.473 E F1(list)3.563 E F0 .973(is e)4.153 -F -.15(xe)-.15 G .973(cuted after).15 F .072(each selection until a)144 -220.8 R F2(br)2.571 E(eak)-.18 E F0 .071(command is e)2.571 F -.15(xe) --.15 G 2.571(cuted. The).15 F -.15(ex)2.571 G .071(it status of).15 F F2 -(select)2.571 E F0 .071(is the e)2.571 F .071(xit status of the)-.15 F -(last command e)144 232.8 Q -.15(xe)-.15 G(cuted in).15 E F1(list)2.5 E +-3.473 G .973(he v)-3.473 F(ariable)-.25 E F3(REPL)3.473 E(Y)-.828 E F4 +(.)A F0(The)5.473 E F2(list)3.563 E F0 .973(is e)4.153 F -.15(xe)-.15 G +.973(cuted after).15 F .072(each selection until a)144 268.8 R F1(br) +2.571 E(eak)-.18 E F0 .071(command is e)2.571 F -.15(xe)-.15 G 2.571 +(cuted. The).15 F -.15(ex)2.571 G .071(it status of).15 F F1(select) +2.571 E F0 .071(is the e)2.571 F .071(xit status of the)-.15 F +(last command e)144 280.8 Q -.15(xe)-.15 G(cuted in).15 E F2(list)2.5 E F0 2.5(,o).68 G 2.5(rz)-2.5 G(ero if no commands were e)-2.5 E -.15(xe) --.15 G(cuted.).15 E F2(case)108 249.6 Q F1(wor)2.5 E(d)-.37 E F2(in)2.5 -E F0 2.5([[)2.5 G(\(])-2.5 E F1(pattern)2.5 E F0([)2.5 E F2(|)2.5 E F1 -(pattern)2.5 E F0 2.5(].)2.5 G(.. \))-2.5 E F1(list)2.5 E F0(;; ] ...) -2.5 E F2(esac)2.5 E F0(A)144 261.6 Q F2(case)3.264 E F0 .764 -(command \214rst e)3.264 F(xpands)-.15 E F1(wor)3.264 E(d)-.37 E F0 +-.15 G(cuted.).15 E F1(case)108 297.6 Q F2(wor)2.5 E(d)-.37 E F1(in)2.5 +E F0 2.5([[)2.5 G(\(])-2.5 E F2(pattern)2.5 E F0([)2.5 E F1(|)2.5 E F2 +(pattern)2.5 E F0 2.5(].)2.5 G(.. \))-2.5 E F2(list)2.5 E F0(;; ] ...) +2.5 E F1(esac)2.5 E F0(A)144 309.6 Q F1(case)3.264 E F0 .764 +(command \214rst e)3.264 F(xpands)-.15 E F2(wor)3.264 E(d)-.37 E F0 3.264(,a)C .764(nd tries to match it ag)-3.264 F .764(ainst each)-.05 F -F1(pattern)3.264 E F0 .765(in turn, using the)3.264 F .596 -(same matching rules as for pathname e)144 273.6 R .595(xpansion \(see) --.15 F F2 -.1(Pa)3.095 G .595(thname Expansion).1 F F0(belo)3.095 E -3.095(w\). The)-.25 F F1(wor)3.095 E(d)-.37 E F0(is)3.095 E -.15(ex)144 -285.6 S 1.092(panded using tilde e).15 F 1.092 +F2(pattern)3.264 E F0 .765(in turn, using the)3.264 F .596 +(same matching rules as for pathname e)144 321.6 R .595(xpansion \(see) +-.15 F F1 -.1(Pa)3.095 G .595(thname Expansion).1 F F0(belo)3.095 E +3.095(w\). The)-.25 F F2(wor)3.095 E(d)-.37 E F0(is)3.095 E -.15(ex)144 +333.6 S 1.092(panded using tilde e).15 F 1.092 (xpansion, parameter and v)-.15 F 1.092(ariable e)-.25 F 1.092 (xpansion, arithmetic substitution, com-)-.15 F 1.268 -(mand substitution, process substitution and quote remo)144 297.6 R -.25 -(va)-.15 G 3.768(l. Each).25 F F1(pattern)3.768 E F0 -.15(ex)3.768 G -1.268(amined is e).15 F(xpanded)-.15 E .353(using tilde e)144 309.6 R +(mand substitution, process substitution and quote remo)144 345.6 R -.25 +(va)-.15 G 3.768(l. Each).25 F F2(pattern)3.768 E F0 -.15(ex)3.768 G +1.268(amined is e).15 F(xpanded)-.15 E .353(using tilde e)144 357.6 R .353(xpansion, parameter and v)-.15 F .353(ariable e)-.25 F .353 (xpansion, arithmetic substitution, command substi-)-.15 F 1.517 -(tution, and process substitution.)144 321.6 R 1.517 -(If the shell option)6.517 F F2(nocasematch)4.016 E F0 1.516 +(tution, and process substitution.)144 369.6 R 1.517 +(If the shell option)6.517 F F1(nocasematch)4.016 E F0 1.516 (is enabled, the match is per)4.016 F(-)-.2 E 1.346(formed without re) -144 333.6 R -.05(ga)-.15 G 1.346 +144 381.6 R -.05(ga)-.15 G 1.346 (rd to the case of alphabetic characters.).05 F 1.347 -(When a match is found, the corre-)6.347 F(sponding)144 345.6 Q F1(list) +(When a match is found, the corre-)6.347 F(sponding)144 393.6 Q F2(list) 2.777 E F0 .277(is e)2.777 F -.15(xe)-.15 G 2.777(cuted. If).15 F(the) -2.777 E F2(;;)2.777 E F0 .277 +2.777 E F1(;;)2.777 E F0 .277 (operator is used, no subsequent matches are attempted after the)2.777 F -.848(\214rst pattern match.)144 357.6 R(Using)5.848 E F2(;&)3.348 E F0 -.849(in place of)3.349 F F2(;;)3.349 E F0 .849(causes e)3.349 F -.15(xe) --.15 G .849(cution to continue with the).15 F F1(list)3.349 E F0 -(associated)3.349 E .078(with the ne)144 369.6 R .078 -(xt set of patterns.)-.15 F(Using)5.078 E F2(;;&)2.578 E F0 .078 -(in place of)2.578 F F2(;;)2.578 E F0 .077 +.848(\214rst pattern match.)144 405.6 R(Using)5.848 E F1(;&)3.348 E F0 +.849(in place of)3.349 F F1(;;)3.349 E F0 .849(causes e)3.349 F -.15(xe) +-.15 G .849(cution to continue with the).15 F F2(list)3.349 E F0 +(associated)3.349 E .078(with the ne)144 417.6 R .078 +(xt set of patterns.)-.15 F(Using)5.078 E F1(;;&)2.578 E F0 .078 +(in place of)2.578 F F1(;;)2.578 E F0 .077 (causes the shell to test the ne)2.578 F .077(xt pattern list in)-.15 F -.227(the statement, if an)144 381.6 R 1.527 -.65(y, a)-.15 H .227(nd e) +.227(the statement, if an)144 429.6 R 1.527 -.65(y, a)-.15 H .227(nd e) .65 F -.15(xe)-.15 G .227(cute an).15 F 2.727(ya)-.15 G(ssociated)-2.727 -E F1(list)2.727 E F0 .227(on a successful match.)2.727 F .227(The e) -5.227 F .227(xit status is zero)-.15 F(if no pattern matches.)144 393.6 +E F2(list)2.727 E F0 .227(on a successful match.)2.727 F .227(The e) +5.227 F .227(xit status is zero)-.15 F(if no pattern matches.)144 441.6 Q(Otherwise, it is the e)5 E(xit status of the last command e)-.15 E --.15(xe)-.15 G(cuted in).15 E F1(list)2.5 E F0(.)A F2(if)108 410.4 Q F1 -(list)2.5 E F0(;)A F2(then)2.5 E F1(list;)2.5 E F0([)2.5 E F2(elif)2.5 E -F1(list)2.5 E F0(;)A F2(then)2.5 E F1(list)2.5 E F0 2.5(;].)C(.. [)-2.5 -E F2(else)2.5 E F1(list)2.5 E F0 2.5(;])C F2<8c>A F0(The)144 422.4 Q F2 -(if)2.978 E F1(list)3.068 E F0 .478(is e)3.658 F -.15(xe)-.15 G 2.978 +-.15(xe)-.15 G(cuted in).15 E F2(list)2.5 E F0(.)A F1(if)108 458.4 Q F2 +(list)2.5 E F0(;)A F1(then)2.5 E F2(list;)2.5 E F0([)2.5 E F1(elif)2.5 E +F2(list)2.5 E F0(;)A F1(then)2.5 E F2(list)2.5 E F0 2.5(;].)C(.. [)-2.5 +E F1(else)2.5 E F2(list)2.5 E F0 2.5(;])C F1<8c>A F0(The)144 470.4 Q F1 +(if)2.978 E F2(list)3.068 E F0 .478(is e)3.658 F -.15(xe)-.15 G 2.978 (cuted. If).15 F .478(its e)2.978 F .478(xit status is zero, the)-.15 F -F2(then)2.978 E F1(list)2.978 E F0 .478(is e)2.978 F -.15(xe)-.15 G -2.978(cuted. Otherwise,).15 F(each)2.978 E F2(elif)2.977 E F1(list)2.977 -E F0 1.087(is e)144 434.4 R -.15(xe)-.15 G 1.087 +F1(then)2.978 E F2(list)2.978 E F0 .478(is e)2.978 F -.15(xe)-.15 G +2.978(cuted. Otherwise,).15 F(each)2.978 E F1(elif)2.977 E F2(list)2.977 +E F0 1.087(is e)144 482.4 R -.15(xe)-.15 G 1.087 (cuted in turn, and if its e).15 F 1.087 -(xit status is zero, the corresponding)-.15 F F2(then)3.587 E F1(list) +(xit status is zero, the corresponding)-.15 F F1(then)3.587 E F2(list) 3.587 E F0 1.088(is e)3.588 F -.15(xe)-.15 G 1.088(cuted and the).15 F -.104(command completes.)144 446.4 R .103(Otherwise, the)5.104 F F2(else) -2.603 E F1(list)2.603 E F0 .103(is e)2.603 F -.15(xe)-.15 G .103 +.104(command completes.)144 494.4 R .103(Otherwise, the)5.104 F F1(else) +2.603 E F2(list)2.603 E F0 .103(is e)2.603 F -.15(xe)-.15 G .103 (cuted, if present.).15 F .103(The e)5.103 F .103(xit status is the e) --.15 F .103(xit sta-)-.15 F(tus of the last command e)144 458.4 Q -.15 -(xe)-.15 G(cuted, or zero if no condition tested true.).15 E F2(while) -108 475.2 Q F1(list)2.5 E F0(;)A F2(do)2.5 E F1(list)2.5 E F0(;)A F2 -(done)2.5 E(until)108 487.2 Q F1(list)2.5 E F0(;)A F2(do)2.5 E F1(list) -2.5 E F0(;)A F2(done)2.5 E F0(The)144 499.2 Q F2(while)3.103 E F0 .603 -(command continuously e)3.103 F -.15(xe)-.15 G .603(cutes the).15 F F2 -(do)3.103 E F1(list)3.103 E F0 .603(as long as the last command in)3.103 -F F1(list)3.104 E F0(returns)3.104 E .471(an e)144 511.2 R .471 -(xit status of zero.)-.15 F(The)5.471 E F2(until)2.971 E F0 .471 -(command is identical to the)2.971 F F2(while)2.97 E F0 .47(command, e) -2.97 F .47(xcept that the test)-.15 F .095(is ne)144 523.2 R -.05(ga) --.15 G .095(ted; the).05 F F2(do)2.595 E F1(list)2.685 E F0 .095(is e) +-.15 F .103(xit sta-)-.15 F(tus of the last command e)144 506.4 Q -.15 +(xe)-.15 G(cuted, or zero if no condition tested true.).15 E F1(while) +108 523.2 Q F2(list)2.5 E F0(;)A F1(do)2.5 E F2(list)2.5 E F0(;)A F1 +(done)2.5 E(until)108 535.2 Q F2(list)2.5 E F0(;)A F1(do)2.5 E F2(list) +2.5 E F0(;)A F1(done)2.5 E F0(The)144 547.2 Q F1(while)3.103 E F0 .603 +(command continuously e)3.103 F -.15(xe)-.15 G .603(cutes the).15 F F1 +(do)3.103 E F2(list)3.103 E F0 .603(as long as the last command in)3.103 +F F2(list)3.104 E F0(returns)3.104 E .471(an e)144 559.2 R .471 +(xit status of zero.)-.15 F(The)5.471 E F1(until)2.971 E F0 .471 +(command is identical to the)2.971 F F1(while)2.97 E F0 .47(command, e) +2.97 F .47(xcept that the test)-.15 F .095(is ne)144 571.2 R -.05(ga) +-.15 G .095(ted; the).05 F F1(do)2.595 E F2(list)2.685 E F0 .095(is e) 3.275 F -.15(xe)-.15 G .095(cuted as long as the last command in).15 F -F1(list)2.685 E F0 .096(returns a non-zero e)3.276 F .096(xit status.) --.15 F 1.307(The e)144 535.2 R 1.307(xit status of the)-.15 F F2(while) -3.807 E F0(and)3.807 E F2(until)3.807 E F0 1.307(commands is the e)3.807 -F 1.306(xit status of the last)-.15 F F2(do)3.806 E F1(list)3.806 E F0 -(command)3.806 E -.15(exe)144 547.2 S(cuted, or zero if none w).15 E -(as e)-.1 E -.15(xe)-.15 G(cuted.).15 E F2(Copr)87 564 Q(ocesses)-.18 E -F0(A)108 576 Q F1(copr)3.712 E(ocess)-.45 E F0 1.212 -(is a shell command preceded by the)3.712 F F2(copr)3.713 E(oc)-.18 E F0 +F2(list)2.685 E F0 .096(returns a non-zero e)3.276 F .096(xit status.) +-.15 F 1.307(The e)144 583.2 R 1.307(xit status of the)-.15 F F1(while) +3.807 E F0(and)3.807 E F1(until)3.807 E F0 1.307(commands is the e)3.807 +F 1.306(xit status of the last)-.15 F F1(do)3.806 E F2(list)3.806 E F0 +(command)3.806 E -.15(exe)144 595.2 S(cuted, or zero if none w).15 E +(as e)-.1 E -.15(xe)-.15 G(cuted.).15 E F1(Copr)87 612 Q(ocesses)-.18 E +F0(A)108 624 Q F2(copr)3.712 E(ocess)-.45 E F0 1.212 +(is a shell command preceded by the)3.712 F F1(copr)3.713 E(oc)-.18 E F0 (reserv)3.713 E 1.213(ed w)-.15 F 3.713(ord. A)-.1 F 1.213 (coprocess is e)3.713 F -.15(xe)-.15 G 1.213(cuted asyn-).15 F .575(chr\ onously in a subshell, as if the command had been terminated with the) -108 588 R F2(&)3.074 E F0 .574(control operator)3.074 F 3.074(,w)-.4 G -.574(ith a tw)-3.074 F(o-)-.1 E -.1(wa)108 600 S 2.5(yp).1 G +108 636 R F1(&)3.074 E F0 .574(control operator)3.074 F 3.074(,w)-.4 G +.574(ith a tw)-3.074 F(o-)-.1 E -.1(wa)108 648 S 2.5(yp).1 G (ipe established between the e)-2.5 E -.15(xe)-.15 G (cuting shell and the coprocess.).15 E(The format for a coprocess is:) -108 616.8 Q F2(copr)144 633.6 Q(oc)-.18 E F0([)2.5 E F1 -.27(NA)C(ME).27 -E F0(])A F1(command)2.5 E F0([)2.5 E F1 -.37(re)C(dir).37 E(ections)-.37 -E F0(])A .922(This creates a coprocess named)108 650.4 R F1 -.27(NA) -3.422 G(ME).27 E F0 5.922(.I)C(f)-5.922 E F1 -.27(NA)3.422 G(ME).27 E F0 -.923(is not supplied, the def)3.422 F .923(ault name is)-.1 F F1(COPR) -3.423 E(OC)-.4 E F0(.)A F1 -.27(NA)5.923 G(ME).27 E F0 .64 -(must not be supplied if)108 662.4 R F1(command)3.14 E F0 .64(is a)3.14 -F F1 .64(simple command)3.14 F F0 .64(\(see abo)3.14 F -.15(ve)-.15 G +108 664.8 Q F1(copr)144 681.6 Q(oc)-.18 E F0([)2.5 E F2 -.27(NA)C(ME).27 +E F0(])A F2(command)2.5 E F0([)2.5 E F2 -.37(re)C(dir).37 E(ections)-.37 +E F0(])A .922(This creates a coprocess named)108 698.4 R F2 -.27(NA) +3.422 G(ME).27 E F0 5.922(.I)C(f)-5.922 E F2 -.27(NA)3.422 G(ME).27 E F0 +.923(is not supplied, the def)3.422 F .923(ault name is)-.1 F F2(COPR) +3.423 E(OC)-.4 E F0(.)A F2 -.27(NA)5.923 G(ME).27 E F0 .64 +(must not be supplied if)108 710.4 R F2(command)3.14 E F0 .64(is a)3.14 +F F2 .64(simple command)3.14 F F0 .64(\(see abo)3.14 F -.15(ve)-.15 G .64(\); otherwise, it is interpreted as the \214rst).15 F -.1(wo)108 -674.4 S .163(rd of the simple command.).1 F .163(When the coproc is e) +722.4 S .163(rd of the simple command.).1 F .163(When the coproc is e) 5.163 F -.15(xe)-.15 G .163(cuted, the shell creates an array v).15 F -.163(ariable \(see)-.25 F F2(Arrays)2.663 E F0(belo)108 686.4 Q .512 -(w\) named)-.25 F F1 -.27(NA)3.012 G(ME).27 E F0 .512(in the conte)3.012 -F .511(xt of the e)-.15 F -.15(xe)-.15 G .511(cuting shell.).15 F .511 -(The standard output of)5.511 F F1(command)3.211 E F0 .511(is connected) -3.781 F .81(via a pipe to a \214le descriptor in the e)108 698.4 R -.15 -(xe)-.15 G .811(cuting shell, and that \214le descriptor is assigned to) -.15 F F1 -.27(NA)3.311 G(ME).27 E F0 3.311([0]. The)B .717 -(standard input of)108 710.4 R F1(command)3.417 E F0 .716 -(is connected via a pipe to a \214le descriptor in the e)3.987 F -.15 -(xe)-.15 G .716(cuting shell, and that \214le).15 F 2.399 -(descriptor is assigned to)108 722.4 R F1 -.27(NA)4.899 G(ME).27 E F0 -4.899([1]. This)B 2.399(pipe is established before an)4.899 F 4.9(yr) --.15 G 2.4(edirections speci\214ed by the)-4.9 F(GNU Bash-4.1)72 768 Q -(2010 June 12)147.345 E(6)202.335 E 0 Cg EP +.163(ariable \(see)-.25 F F1(Arrays)2.663 E F0(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(6)203.165 E 0 Cg EP %%Page: 7 7 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E 1.581(command \(see)108 84 R/F1 9/Times-Bold@0 SF(REDIRECTION) -4.081 E F0(belo)3.831 E 4.081(w\). The)-.25 F 1.58 -(\214le descriptors can be utilized as ar)4.081 F 1.58 -(guments to shell com-)-.18 F .069 -(mands and redirections using standard w)108 96 R .069(ord e)-.1 F 2.569 -(xpansions. The)-.15 F .07(process id of the shell spa)2.569 F .07 -(wned to e)-.15 F -.15(xe)-.15 G .07(cute the).15 F .483(coprocess is a) -108 108 R -.25(va)-.2 G .483(ilable as the v).25 F .483(alue of the v) --.25 F(ariable)-.25 E/F2 10/Times-Italic@0 SF -.27(NA)2.983 G(ME).27 E -F0 2.983(_PID. The)B/F3 10/Times-Bold@0 SF(wait)2.983 E F0 -.2(bu)2.983 -G .483(iltin command may be used to).2 F -.1(wa)108 120 S -(it for the coprocess to terminate.).1 E -(The return status of a coprocess is the e)108 136.8 Q(xit status of) --.15 E F2(command)2.5 E F0(.)A F3(Shell Function De\214nitions)87 153.6 -Q F0 2.697(As)108 165.6 S .198 +-.35 E(belo)108 84 Q .512(w\) named)-.25 F/F1 10/Times-Italic@0 SF -.27 +(NA)3.012 G(ME).27 E F0 .512(in the conte)3.012 F .511(xt of the e)-.15 +F -.15(xe)-.15 G .511(cuting shell.).15 F .511(The standard output of) +5.511 F F1(command)3.211 E F0 .511(is connected)3.781 F .81 +(via a pipe to a \214le descriptor in the e)108 96 R -.15(xe)-.15 G .811 +(cuting shell, and that \214le descriptor is assigned to).15 F F1 -.27 +(NA)3.311 G(ME).27 E F0 3.311([0]. The)B .717(standard input of)108 108 +R F1(command)3.417 E F0 .716 +(is connected via a pipe to a \214le descriptor in the e)3.987 F -.15 +(xe)-.15 G .716(cuting shell, and that \214le).15 F .702 +(descriptor is assigned to)108 120 R F1 -.27(NA)3.202 G(ME).27 E F0 +3.202([1]. This)B .703(pipe is established before an)3.203 F 3.203(yr) +-.15 G .703(edirections speci\214ed by the com-)-3.203 F 1.184 +(mand \(see)108 132 R/F2 9/Times-Bold@0 SF(REDIRECTION)3.684 E F0(belo) +3.434 E 3.684(w\). The)-.25 F 1.183 +(\214le descriptors can be utilized as ar)3.684 F 1.183 +(guments to shell commands)-.18 F .07(and redirections using standard w) +108 144 R .07(ord e)-.1 F 2.57(xpansions. The)-.15 F .07 +(process id of the shell spa)2.57 F .07(wned to e)-.15 F -.15(xe)-.15 G +.07(cute the copro-).15 F .632(cess is a)108 156 R -.25(va)-.2 G .631 +(ilable as the v).25 F .631(alue of the v)-.25 F(ariable)-.25 E F1 -.27 +(NA)3.131 G(ME).27 E F0 3.131(_PID. The)B/F3 10/Times-Bold@0 SF(wait) +3.131 E F0 -.2(bu)3.131 G .631(iltin command may be used to w).2 F(ait) +-.1 E(for the coprocess to terminate.)108 168 Q +(The return status of a coprocess is the e)108 184.8 Q(xit status of) +-.15 E F1(command)2.5 E F0(.)A F3(Shell Function De\214nitions)87 201.6 +Q F0 2.697(As)108 213.6 S .198 (hell function is an object that is called lik)-2.697 F 2.698(eas)-.1 G .198(imple command and e)-2.698 F -.15(xe)-.15 G .198 -(cutes a compound command with).15 F 2.5(an)108 177.6 S .5 -.25(ew s) +(cutes a compound command with).15 F 2.5(an)108 225.6 S .5 -.25(ew s) -2.5 H(et of positional parameters.).25 E -(Shell functions are declared as follo)5 E(ws:)-.25 E([)108 194.4 Q F3 -(function)2.5 E F0(])2.5 E F2(name)2.5 E F0(\(\))2.5 E F2 -(compound\255command)2.5 E F0([)2.5 E F2 -.37(re)C(dir).37 E(ection)-.37 -E F0(])A 1.403(This de\214nes a function named)144 206.4 R F2(name)3.902 -E F0 6.402(.T)C 1.402(he reserv)-6.402 F 1.402(ed w)-.15 F(ord)-.1 E F3 -(function)3.902 E F0 1.402(is optional.)3.902 F 1.402(If the)6.402 F F3 -(function)3.902 E F0(reserv)144 218.4 Q .162(ed w)-.15 F .162 -(ord is supplied, the parentheses are optional.)-.1 F(The)5.162 E F2 -(body)2.662 E F0 .162(of the function is the compound)2.662 F(command) -144 230.4 Q F2(compound\255command)2.784 E F0(\(see)3.354 E F3 .084 -(Compound Commands)2.584 F F0(abo)2.584 E -.15(ve)-.15 G 2.584(\). That) -.15 F .084(command is usually a)2.584 F F2(list)144 242.4 Q F0 .044 -(of commands between { and }, b)2.544 F .044(ut may be an)-.2 F 2.544 -(yc)-.15 G .044(ommand listed under)-2.544 F F3 .044(Compound Commands) -2.544 F F0(abo)144 254.4 Q -.15(ve)-.15 G(.).15 E F2 +(Shell functions are declared as follo)5 E(ws:)-.25 E F1(name)108 242.4 +Q F0(\(\))2.5 E F1(compound\255command)2.5 E F0([)2.5 E F1 -.37(re)C +(dir).37 E(ection)-.37 E F0(])A F3(function)108 254.4 Q F1(name)2.5 E F0 +([\(\)])2.5 E F1(compound\255command)2.5 E F0([)2.5 E F1 -.37(re)C(dir) +.37 E(ection)-.37 E F0(])A 1.403(This de\214nes a function named)144 +266.4 R F1(name)3.902 E F0 6.402(.T)C 1.402(he reserv)-6.402 F 1.402 +(ed w)-.15 F(ord)-.1 E F3(function)3.902 E F0 1.402(is optional.)3.902 F +1.402(If the)6.402 F F3(function)3.902 E F0(reserv)144 278.4 Q .162 +(ed w)-.15 F .162(ord is supplied, the parentheses are optional.)-.1 F +(The)5.162 E F1(body)2.662 E F0 .162(of the function is the compound) +2.662 F(command)144 290.4 Q F1(compound\255command)2.784 E F0(\(see) +3.354 E F3 .084(Compound Commands)2.584 F F0(abo)2.584 E -.15(ve)-.15 G +2.584(\). That).15 F .084(command is usually a)2.584 F F1(list)144 302.4 +Q F0 .044(of commands between { and }, b)2.544 F .044(ut may be an)-.2 F +2.544(yc)-.15 G .044(ommand listed under)-2.544 F F3 .044 +(Compound Commands)2.544 F F0(abo)144 314.4 Q -.15(ve)-.15 G(.).15 E F1 (compound\255command)6.671 E F0 1.671(is e)4.171 F -.15(xe)-.15 G 1.671 -(cuted whene).15 F -.15(ve)-.25 G(r).15 E F2(name)4.171 E F0 1.671 +(cuted whene).15 F -.15(ve)-.25 G(r).15 E F1(name)4.171 E F0 1.671 (is speci\214ed as the name of a simple)4.171 F 3.008(command. An)144 -266.4 R 3.009(yr)-.15 G .509(edirections \(see)-3.009 F F1(REDIRECTION) +326.4 R 3.009(yr)-.15 G .509(edirections \(see)-3.009 F F2(REDIRECTION) 3.009 E F0(belo)2.759 E .509 (w\) speci\214ed when a function is de\214ned are)-.25 F .581 -(performed when the function is e)144 278.4 R -.15(xe)-.15 G 3.081 +(performed when the function is e)144 338.4 R -.15(xe)-.15 G 3.081 (cuted. The).15 F -.15(ex)3.081 G .58 (it status of a function de\214nition is zero unless a).15 F .177(synta\ x error occurs or a readonly function with the same name already e)144 -290.4 R 2.678(xists. When)-.15 F -.15(exe)2.678 G .178(cuted, the).15 F --.15(ex)144 302.4 S .64(it status of a function is the e).15 F .64 +350.4 R 2.678(xists. When)-.15 F -.15(exe)2.678 G .178(cuted, the).15 F +-.15(ex)144 362.4 S .64(it status of a function is the e).15 F .64 (xit status of the last command e)-.15 F -.15(xe)-.15 G .64 -(cuted in the body).15 F 5.64(.\()-.65 G(See)-5.64 E F1(FUNC-)3.14 E -(TIONS)144 314.4 Q F0(belo)2.25 E -.65(w.)-.25 G(\)).65 E/F4 10.95 -/Times-Bold@0 SF(COMMENTS)72 331.2 Q F0 .982(In a non-interacti)108 -343.2 R 1.282 -.15(ve s)-.25 H .982(hell, or an interacti).15 F 1.282 +(cuted in the body).15 F 5.64(.\()-.65 G(See)-5.64 E F2(FUNC-)3.14 E +(TIONS)144 374.4 Q F0(belo)2.25 E -.65(w.)-.25 G(\)).65 E/F4 10.95 +/Times-Bold@0 SF(COMMENTS)72 391.2 Q F0 .982(In a non-interacti)108 +403.2 R 1.282 -.15(ve s)-.25 H .982(hell, or an interacti).15 F 1.282 -.15(ve s)-.25 H .982(hell in which the).15 F F3(interacti)3.482 E -.1 (ve)-.1 G(_comments).1 E F0 .982(option to the)3.482 F F3(shopt)3.482 E -F0 -.2(bu)108 355.2 S .952(iltin is enabled \(see).2 F F1 .952(SHELL B) +F0 -.2(bu)108 415.2 S .952(iltin is enabled \(see).2 F F2 .952(SHELL B) 3.452 F(UIL)-.09 E .952(TIN COMMANDS)-.828 F F0(belo)3.202 E .952 (w\), a w)-.25 F .952(ord be)-.1 F .952(ginning with)-.15 F F3(#)3.451 E F0 .951(causes that w)3.451 F(ord)-.1 E .604 -(and all remaining characters on that line to be ignored.)108 367.2 R +(and all remaining characters on that line to be ignored.)108 427.2 R .605(An interacti)5.605 F .905 -.15(ve s)-.25 H .605(hell without the) -.15 F F3(interacti)3.105 E -.1(ve)-.1 G(_com-).1 E(ments)108 379.2 Q F0 +.15 F F3(interacti)3.105 E -.1(ve)-.1 G(_com-).1 E(ments)108 439.2 Q F0 1.337(option enabled does not allo)3.837 F 3.837(wc)-.25 G 3.836 (omments. The)-3.837 F F3(interacti)3.836 E -.1(ve)-.1 G(_comments).1 E F0 1.336(option is on by def)3.836 F 1.336(ault in)-.1 F(interacti)108 -391.2 Q .3 -.15(ve s)-.25 H(hells.).15 E F4 -.11(QU)72 408 S -.438(OT) -.11 G(ING).438 E F2(Quoting)108 420 Q F0 .477(is used to remo)2.977 F +451.2 Q .3 -.15(ve s)-.25 H(hells.).15 E F4 -.11(QU)72 468 S -.438(OT) +.11 G(ING).438 E F1(Quoting)108 480 Q F0 .477(is used to remo)2.977 F .777 -.15(ve t)-.15 H .477 (he special meaning of certain characters or w).15 F .477 (ords to the shell.)-.1 F .478(Quoting can be)5.478 F .185 (used to disable special treatment for special characters, to pre)108 -432 R -.15(ve)-.25 G .185(nt reserv).15 F .184(ed w)-.15 F .184 -(ords from being recognized as)-.1 F(such, and to pre)108 444 Q -.15(ve) --.25 G(nt parameter e).15 E(xpansion.)-.15 E .288(Each of the)108 460.8 -R F2(metac)2.788 E(har)-.15 E(acter)-.15 E(s)-.1 E F0 .288(listed abo) -2.788 F .588 -.15(ve u)-.15 H(nder).15 E F1(DEFINITIONS)2.788 E F0 .288 +492 R -.15(ve)-.25 G .185(nt reserv).15 F .184(ed w)-.15 F .184 +(ords from being recognized as)-.1 F(such, and to pre)108 504 Q -.15(ve) +-.25 G(nt parameter e).15 E(xpansion.)-.15 E .288(Each of the)108 520.8 +R F1(metac)2.788 E(har)-.15 E(acter)-.15 E(s)-.1 E F0 .288(listed abo) +2.788 F .588 -.15(ve u)-.15 H(nder).15 E F2(DEFINITIONS)2.788 E F0 .288 (has special meaning to the shell and must be)2.538 F -(quoted if it is to represent itself.)108 472.8 Q 1.345 -(When the command history e)108 489.6 R 1.344(xpansion f)-.15 F 1.344 -(acilities are being used \(see)-.1 F F1(HIST)3.844 E(OR)-.162 E 3.594 +(quoted if it is to represent itself.)108 532.8 Q 1.345 +(When the command history e)108 549.6 R 1.344(xpansion f)-.15 F 1.344 +(acilities are being used \(see)-.1 F F2(HIST)3.844 E(OR)-.162 E 3.594 (YE)-.315 G(XP)-3.594 E(ANSION)-.666 E F0(belo)3.594 E 1.344(w\), the) --.25 F F2(history e)108 501.6 Q(xpansion)-.2 E F0(character)2.5 E 2.5 +-.25 F F1(history e)108 561.6 Q(xpansion)-.2 E F0(character)2.5 E 2.5 (,u)-.4 G(sually)-2.5 E F3(!)2.5 E F0 2.5(,m)C(ust be quoted to pre)-2.5 E -.15(ve)-.25 G(nt history e).15 E(xpansion.)-.15 E -(There are three quoting mechanisms: the)108 518.4 Q F2(escape c)2.5 E +(There are three quoting mechanisms: the)108 578.4 Q F1(escape c)2.5 E (har)-.15 E(acter)-.15 E F0 2.5(,s).73 G -(ingle quotes, and double quotes.)-2.5 E 2.974(An)108 535.2 S .474 +(ingle quotes, and double quotes.)-2.5 E 2.974(An)108 595.2 S .474 (on-quoted backslash \()-2.974 F F3(\\)A F0 2.974(\)i)C 2.974(st)-2.974 -G(he)-2.974 E F2 .474(escape c)2.974 F(har)-.15 E(acter)-.15 E F0 5.474 +G(he)-2.974 E F1 .474(escape c)2.974 F(har)-.15 E(acter)-.15 E F0 5.474 (.I).73 G 2.974(tp)-5.474 G(reserv)-2.974 E .474(es the literal v)-.15 F -.474(alue of the ne)-.25 F .475(xt character that)-.15 F(follo)108 547.2 +.474(alue of the ne)-.25 F .475(xt character that)-.15 F(follo)108 607.2 Q 1.554(ws, with the e)-.25 F 1.553(xception of . If)-.25 F(a)4.053 E F3(\\)4.053 E F0( pair appears, and the backslash is not itself)-.25 F 1.122 -(quoted, the)108 559.2 R F3(\\)3.622 E F0( is treated as a line continuation \(that is, it is remo)-.25 F -.15(ve)-.15 G 3.622(df).15 G 1.123(rom the input stream and)-3.622 F -(ef)108 571.2 Q(fecti)-.25 E -.15(ve)-.25 G(ly ignored\).).15 E .295 -(Enclosing characters in single quotes preserv)108 588 R .295 +(ef)108 631.2 Q(fecti)-.25 E -.15(ve)-.25 G(ly ignored\).).15 E .295 +(Enclosing characters in single quotes preserv)108 648 R .295 (es the literal v)-.15 F .295(alue of each character within the quotes.) -.25 F 2.795(As)5.295 G(in-)-2.795 E -(gle quote may not occur between single quotes, e)108 600 Q -.15(ve)-.25 +(gle quote may not occur between single quotes, e)108 660 Q -.15(ve)-.25 G 2.5(nw).15 G(hen preceded by a backslash.)-2.5 E .033 -(Enclosing characters in double quotes preserv)108 616.8 R .034 +(Enclosing characters in double quotes preserv)108 676.8 R .034 (es the literal v)-.15 F .034 (alue of all characters within the quotes, with the)-.25 F -.15(ex)108 -628.8 S .828(ception of).15 F F3($)3.328 E F0(,)A F3<92>3.328 E F0(,)A +688.8 S .828(ception of).15 F F3($)3.328 E F0(,)A F3<92>3.328 E F0(,)A F3(\\)3.328 E F0 3.328(,a)C .828(nd, when history e)-3.328 F .828 (xpansion is enabled,)-.15 F F3(!)3.328 E F0 5.828(.T)C .828 (he characters)-5.828 F F3($)3.328 E F0(and)3.328 E F3<92>3.328 E F0 .827(retain their special)3.328 F .074(meaning within double quotes.)108 -640.8 R .074(The backslash retains its special meaning only when follo) -5.074 F .075(wed by one of the)-.25 F(follo)108 652.8 Q .205 +700.8 R .074(The backslash retains its special meaning only when follo) +5.074 F .075(wed by one of the)-.25 F(follo)108 712.8 Q .205 (wing characters:)-.25 F F3($)2.705 E F0(,)A F3<92>2.705 E F0(,)A F3(") 3.538 E F0(,).833 E F3(\\)2.705 E F0 2.705(,o)C(r)-2.705 E F3() 2.705 E F0 5.205(.A)C .204 (double quote may be quoted within double quotes by pre-)-2.5 F .081 -(ceding it with a backslash.)108 664.8 R .082(If enabled, history e) +(ceding it with a backslash.)108 724.8 R .082(If enabled, history e) 5.082 F .082(xpansion will be performed unless an)-.15 F F3(!)2.582 E F0 -.082(appearing in double)5.082 F(quotes is escaped using a backslash.) -108 676.8 Q(The backslash preceding the)5 E F3(!)2.5 E F0(is not remo)5 -E -.15(ve)-.15 G(d.).15 E(The special parameters)108 693.6 Q F3(*)2.5 E -F0(and)2.5 E F3(@)2.5 E F0(ha)2.5 E .3 -.15(ve s)-.2 H -(pecial meaning when in double quotes \(see).15 E F1 -.666(PA)2.5 G -(RAMETERS).666 E F0(belo)2.25 E(w\).)-.25 E -.8(Wo)108 710.4 S .212 -(rds of the form).8 F F3($)2.712 E F0<08>A F2(string)A F0 2.712<0861>C -.211(re treated specially)-2.712 F 5.211(.T)-.65 G .211(he w)-5.211 F -.211(ord e)-.1 F .211(xpands to)-.15 F F2(string)2.711 E F0 2.711(,w)C -.211(ith backslash-escaped char)-2.711 F(-)-.2 E .604 -(acters replaced as speci\214ed by the ANSI C standard.)108 722.4 R .605 -(Backslash escape sequences, if present, are decoded)5.605 F -(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(7)202.335 E 0 Cg EP +.082(appearing in double)5.082 F(GNU Bash-4.2)72 768 Q(2010 July 21) +148.175 E(7)203.165 E 0 Cg EP %%Page: 8 8 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E(as follo)108 84 Q(ws:)-.25 E/F1 10/Times-Bold@0 SF(\\a)144 96 Q -F0(alert \(bell\))28.22 E F1(\\b)144 108 Q F0(backspace)27.66 E F1(\\e) -144 120 Q(\\E)144 132 Q F0(an escape character)26.55 E F1(\\f)144 144 Q -F0(form feed)29.89 E F1(\\n)144 156 Q F0(ne)27.66 E 2.5(wl)-.25 G(ine) --2.5 E F1(\\r)144 168 Q F0(carriage return)28.78 E F1(\\t)144 180 Q F0 -(horizontal tab)29.89 E F1(\\v)144 192 Q F0 -.15(ve)28.22 G(rtical tab) -.15 E F1(\\\\)144 204 Q F0(backslash)30.44 E F1<5c08>144 216 Q F0 -(single quote)30.44 E F1(\\")144 228 Q F0(double quote)27.67 E F1(\\)144 -240 Q/F2 10/Times-Italic@0 SF(nnn)A F0(the eight-bit character whose v) -18.22 E(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 252 Q F2(HH)A F0 -(the eight-bit character whose v)13.78 E(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 264 Q F2(HHHH)A F0 -1.507(the Unicode \(ISO/IEC 10646\) character whose v)180 276 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 288 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 -(\\U)144 300 Q F2(HHHHHHHH)A F0 .547 -(the Unicode \(ISO/IEC 10646\) character whose v)180 312 R .547 -(alue is the he)-.25 F .548(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-) -3.048 E(HHH)180 324 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G(igits\)) --2.5 E F1(\\c)144 336 Q F2(x)A F0 2.5(ac)24.34 G(ontrol-)-2.5 E F2(x)A -F0(character)2.5 E(The e)108 352.8 Q(xpanded result is single-quoted, a\ -s if the dollar sign had not been present.)-.15 E 2.64(Ad)108 369.6 S -.14(ouble-quoted string preceded by a dollar sign \()-2.64 F F1($)A F0 -(")A F2(string)A F0 .14 +-.35 E(quotes is escaped using a backslash.)108 84 Q +(The backslash preceding the)5 E/F1 10/Times-Bold@0 SF(!)2.5 E F0 +(is not remo)5 E -.15(ve)-.15 G(d.).15 E(The special parameters)108 +100.8 Q F1(*)2.5 E F0(and)2.5 E F1(@)2.5 E F0(ha)2.5 E .3 -.15(ve s)-.2 +H(pecial meaning when in double quotes \(see).15 E/F2 9/Times-Bold@0 SF +-.666(PA)2.5 G(RAMETERS).666 E F0(belo)2.25 E(w\).)-.25 E -.8(Wo)108 +117.6 S .212(rds of the form).8 F F1($)2.712 E F0<08>A/F3 10 +/Times-Italic@0 SF(string)A F0 2.712<0861>C .211(re treated specially) +-2.712 F 5.211(.T)-.65 G .211(he w)-5.211 F .211(ord e)-.1 F .211 +(xpands to)-.15 F F3(string)2.711 E F0 2.711(,w)C .211 +(ith backslash-escaped char)-2.711 F(-)-.2 E .604 +(acters replaced as speci\214ed by the ANSI C standard.)108 129.6 R .605 +(Backslash escape sequences, if present, are decoded)5.605 F(as follo) +108 141.6 Q(ws:)-.25 E F1(\\a)144 153.6 Q F0(alert \(bell\))28.22 E F1 +(\\b)144 165.6 Q F0(backspace)27.66 E F1(\\e)144 177.6 Q(\\E)144 189.6 Q +F0(an escape character)26.55 E F1(\\f)144 201.6 Q F0(form feed)29.89 E +F1(\\n)144 213.6 Q F0(ne)27.66 E 2.5(wl)-.25 G(ine)-2.5 E F1(\\r)144 +225.6 Q F0(carriage return)28.78 E F1(\\t)144 237.6 Q F0(horizontal tab) +29.89 E F1(\\v)144 249.6 Q F0 -.15(ve)28.22 G(rtical tab).15 E F1(\\\\) +144 261.6 Q F0(backslash)30.44 E F1<5c08>144 273.6 Q F0(single quote) +30.44 E F1(\\")144 285.6 Q F0(double quote)27.67 E F1(\\)144 297.6 Q F3 +(nnn)A F0(the eight-bit character whose v)18.22 E(alue is the octal v) +-.25 E(alue)-.25 E F3(nnn)2.5 E F0(\(one to three digits\))2.5 E F1(\\x) +144 309.6 Q F3(HH)A F0(the eight-bit character whose v)13.78 E +(alue is the he)-.25 E(xadecimal v)-.15 E(alue)-.25 E F3(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 321.6 Q F3(HHHH)A F0 1.507 +(the Unicode \(ISO/IEC 10646\) character whose v)180 333.6 R 1.506 +(alue is the he)-.25 F 1.506(xadecimal v)-.15 F(alue)-.25 E F3(HHHH) +4.006 E F0(\(one to four he)180 345.6 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 +(\\U)144 357.6 Q F3(HHHHHHHH)A F0 .547 +(the Unicode \(ISO/IEC 10646\) character whose v)180 369.6 R .547 +(alue is the he)-.25 F .548(xadecimal v)-.15 F(alue)-.25 E F3(HHHHH-) +3.048 E(HHH)180 381.6 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G +(igits\))-2.5 E F1(\\c)144 393.6 Q F3(x)A F0 2.5(ac)24.34 G(ontrol-)-2.5 +E F3(x)A F0(character)2.5 E(The e)108 410.4 Q(xpanded result is single-\ +quoted, as if the dollar sign had not been present.)-.15 E 2.64(Ad)108 +427.2 S .14(ouble-quoted string preceded by a dollar sign \()-2.64 F F1 +($)A F0(")A F3(string)A F0 .14 ("\) will cause the string to be translated according)B .495 -(to the current locale.)108 381.6 R .495(If the current locale is)5.495 +(to the current locale.)108 439.2 R .495(If the current locale is)5.495 F F1(C)2.995 E F0(or)2.995 E F1(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 393.6 Q/F3 -10.95/Times-Bold@0 SF -.81(PA)72 410.4 S(RAMETERS).81 E F0(A)108 422.4 Q -F2(par)4.593 E(ameter)-.15 E F0 .843(is an entity that stores v)4.073 F -3.343(alues. It)-.25 F .843(can be a)3.343 F F2(name)3.342 E F0 3.342 +F(lated and replaced, the replacement is double-quoted.)108 451.2 Q/F4 +10.95/Times-Bold@0 SF -.81(PA)72 468 S(RAMETERS).81 E F0(A)108 480 Q F3 +(par)4.593 E(ameter)-.15 E F0 .843(is an entity that stores v)4.073 F +3.343(alues. It)-.25 F .843(can be a)3.343 F F3(name)3.342 E F0 3.342 (,an).18 G(umber)-3.342 E 3.342(,o)-.4 G 3.342(ro)-3.342 G .842 -(ne of the special characters)-3.342 F .822(listed belo)108 434.4 R -3.323(wu)-.25 G(nder)-3.323 E F1 .823(Special P)3.323 F(arameters)-.1 E -F0 5.823(.A)C F2(variable)-2.21 E F0 .823(is a parameter denoted by a) -3.503 F F2(name)3.323 E F0 5.823(.A).18 G -.25(va)-2.5 G .823 -(riable has a).25 F F2(value)108 446.4 Q F0 .369(and zero or more)2.869 -F F2(attrib)2.869 E(utes)-.2 E F0 5.369(.A)C(ttrib)-5.369 E .369 +(ne of the special characters)-3.342 F .822(listed belo)108 492 R 3.323 +(wu)-.25 G(nder)-3.323 E F1 .823(Special P)3.323 F(arameters)-.1 E F0 +5.823(.A)C F3(variable)-2.21 E F0 .823(is a parameter denoted by a)3.503 +F F3(name)3.323 E F0 5.823(.A).18 G -.25(va)-2.5 G .823(riable has a).25 +F F3(value)108 504 Q F0 .369(and zero or more)2.869 F F3(attrib)2.869 E +(utes)-.2 E F0 5.369(.A)C(ttrib)-5.369 E .369 (utes are assigned using the)-.2 F F1(declar)2.868 E(e)-.18 E F0 -.2(bu) 2.868 G .368(iltin command \(see).2 F F1(declar)2.868 E(e)-.18 E F0 -(belo)108 458.4 Q 2.5(wi)-.25 G(n)-2.5 E/F4 9/Times-Bold@0 SF(SHELL B) -2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E/F5 9/Times-Roman@0 SF(\).)A F0 -2.754(Ap)108 475.2 S .254(arameter is set if it has been assigned a v) --2.754 F 2.754(alue. The)-.25 F .254(null string is a v)2.754 F .255 -(alid v)-.25 F 2.755(alue. Once)-.25 F 2.755(av)2.755 G .255 -(ariable is set, it)-3.005 F(may be unset only by using the)108 487.2 Q -F1(unset)2.5 E F0 -.2(bu)2.5 G(iltin command \(see).2 E F4(SHELL B)2.5 E -(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E(A)108 504 Q -F2(variable)2.79 E F0(may be assigned to by a statement of the form)2.68 -E F2(name)144 520.8 Q F0(=[)A F2(value)A F0(])A(If)108 537.6 Q F2(value) -3.023 E F0 .233(is not gi)2.913 F -.15(ve)-.25 G .233(n, the v).15 F -.232(ariable is assigned the null string.)-.25 F(All)5.232 E F2(values) -3.022 E F0(under)3.002 E .232(go tilde e)-.18 F .232 -(xpansion, parameter)-.15 F .515(and v)108 549.6 R .515(ariable e)-.25 F -.515(xpansion, command substitution, arithmetic e)-.15 F .515 +(belo)108 516 Q 2.5(wi)-.25 G(n)-2.5 E F2(SHELL B)2.5 E(UIL)-.09 E +(TIN COMMANDS)-.828 E/F5 9/Times-Roman@0 SF(\).)A F0 2.754(Ap)108 532.8 +S .254(arameter is set if it has been assigned a v)-2.754 F 2.754 +(alue. The)-.25 F .254(null string is a v)2.754 F .255(alid v)-.25 F +2.755(alue. Once)-.25 F 2.755(av)2.755 G .255(ariable is set, it)-3.005 +F(may be unset only by using the)108 544.8 Q F1(unset)2.5 E F0 -.2(bu) +2.5 G(iltin command \(see).2 E F2(SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS) +-.828 E F0(belo)2.25 E(w\).)-.25 E(A)108 561.6 Q F3(variable)2.79 E F0 +(may be assigned to by a statement of the form)2.68 E F3(name)144 578.4 +Q F0(=[)A F3(value)A F0(])A(If)108 595.2 Q F3(value)3.023 E F0 .233 +(is not gi)2.913 F -.15(ve)-.25 G .233(n, the v).15 F .232 +(ariable is assigned the null string.)-.25 F(All)5.232 E F3(values)3.022 +E F0(under)3.002 E .232(go tilde e)-.18 F .232(xpansion, parameter)-.15 +F .515(and v)108 607.2 R .515(ariable e)-.25 F .515 +(xpansion, command substitution, arithmetic e)-.15 F .515 (xpansion, and quote remo)-.15 F -.25(va)-.15 G 3.015(l\().25 G(see) --3.015 E F4(EXP)3.015 E(ANSION)-.666 E F0(belo)108 561.6 Q 2.699 +-3.015 E F2(EXP)3.015 E(ANSION)-.666 E F0(belo)108 619.2 Q 2.699 (w\). If)-.25 F .199(the v)2.699 F .199(ariable has its)-.25 F F1 -(integer)2.698 E F0(attrib)2.698 E .198(ute set, then)-.2 F F2(value) +(integer)2.698 E F0(attrib)2.698 E .198(ute set, then)-.2 F F3(value) 2.988 E F0 .198(is e)2.878 F -.25(va)-.25 G .198 (luated as an arithmetic e).25 F .198(xpression e)-.15 F -.15(ve)-.25 G -(n).15 E .901(if the $\(\(...\)\) e)108 573.6 R .901 +(n).15 E .901(if the $\(\(...\)\) e)108 631.2 R .901 (xpansion is not used \(see)-.15 F F1 .901(Arithmetic Expansion)3.401 F F0(belo)3.401 E 3.402(w\). W)-.25 F .902 -(ord splitting is not performed,)-.8 F 1.179(with the e)108 585.6 R +(ord splitting is not performed,)-.8 F 1.179(with the e)108 643.2 R 1.179(xception of)-.15 F F1("$@")3.679 E F0 1.179(as e)3.679 F 1.179 (xplained belo)-.15 F 3.679(wu)-.25 G(nder)-3.679 E F1 1.178(Special P) 3.678 F(arameters)-.1 E F0 6.178(.P)C 1.178(athname e)-6.328 F 1.178 -(xpansion is not)-.15 F 3.648(performed. Assignment)108 597.6 R 1.148 +(xpansion is not)-.15 F 3.648(performed. Assignment)108 655.2 R 1.148 (statements may also appear as ar)3.648 F 1.149(guments to the)-.18 F F1 (alias)3.649 E F0(,)A F1(declar)3.649 E(e)-.18 E F0(,)A F1(typeset)3.649 -E F0(,)A F1(export)3.649 E F0(,)A F1 -.18(re)108 609.6 S(adonly).18 E F0 +E F0(,)A F1(export)3.649 E F0(,)A F1 -.18(re)108 667.2 S(adonly).18 E F0 2.5(,a)C(nd)-2.5 E F1(local)2.5 E F0 -.2(bu)2.5 G(iltin commands.).2 E -.377(In the conte)108 626.4 R .377 +.377(In the conte)108 684 R .377 (xt where an assignment statement is assigning a v)-.15 F .376 (alue to a shell v)-.25 F .376(ariable or array inde)-.25 F .376 (x, the +=)-.15 F .257 -(operator can be used to append to or add to the v)108 638.4 R(ariable') +(operator can be used to append to or add to the v)108 696 R(ariable') -.25 E 2.757(sp)-.55 G(re)-2.757 E .257(vious v)-.25 F 2.757(alue. When) -.25 F .257(+= is applied to a v)2.757 F(ariable)-.25 E .373 -(for which the inte)108 650.4 R .373(ger attrib)-.15 F .372 -(ute has been set,)-.2 F F2(value)2.872 E F0 .372(is e)2.872 F -.25(va) +(for which the inte)108 708 R .373(ger attrib)-.15 F .372 +(ute has been set,)-.2 F F3(value)2.872 E F0 .372(is e)2.872 F -.25(va) -.25 G .372(luated as an arithmetic e).25 F .372 -(xpression and added to the)-.15 F -.25(va)108 662.4 S(riable').25 E -2.888(sc)-.55 G .388(urrent v)-2.888 F .388(alue, which is also e)-.25 F --.25(va)-.25 G 2.889(luated. When).25 F .389 -(+= is applied to an array v)2.889 F .389(ariable using compound)-.25 F -.186(assignment \(see)108 674.4 R F1(Arrays)2.686 E F0(belo)2.686 E .186 -(w\), the v)-.25 F(ariable')-.25 E 2.685(sv)-.55 G .185 -(alue is not unset \(as it is when using =\), and ne)-2.935 F 2.685(wv) --.25 G .185(alues are)-2.935 F 1.384(appended to the array be)108 686.4 -R 1.384(ginning at one greater than the array')-.15 F 3.885(sm)-.55 G -1.385(aximum inde)-3.885 F 3.885(x\()-.15 G 1.385(for inde)-3.885 F -.15 -(xe)-.15 G 3.885(da).15 G 1.385(rrays\) or)-3.885 F .123 -(added as additional k)108 698.4 R -.15(ey)-.1 G.15 E .123 -(alue pairs in an associati)-.25 F .423 -.15(ve a)-.25 H(rray).15 E -5.123(.W)-.65 G .122(hen applied to a string-v)-5.123 F .122(alued v) --.25 F(ariable,)-.25 E F2(value)2.622 E F0(is e)108 710.4 Q -(xpanded and appended to the v)-.15 E(ariable')-.25 E 2.5(sv)-.55 G -(alue.)-2.75 E(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(8)202.335 E -0 Cg EP +(xpression and added to the)-.15 F -.25(va)108 720 S(riable').25 E 2.888 +(sc)-.55 G .388(urrent v)-2.888 F .388(alue, which is also e)-.25 F -.25 +(va)-.25 G 2.889(luated. When).25 F .389(+= is applied to an array v) +2.889 F .389(ariable using compound)-.25 F(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(8)203.165 E 0 Cg EP %%Page: 9 9 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF -.2(Po)87 84 S(sitional P).2 E(arameters) --.1 E F0(A)108 96 Q/F2 10/Times-Italic@0 SF .705(positional par)4.455 F -(ameter)-.15 E F0 .706(is a parameter denoted by one or more digits, ot\ -her than the single digit 0.)3.935 F(Posi-)5.706 E .445 -(tional parameters are assigned from the shell')108 108 R 2.944(sa)-.55 -G -.18(rg)-2.944 G .444(uments when it is in).18 F -.2(vo)-.4 G -.1(ke) -.2 G .444(d, and may be reassigned using).1 F(the)108 120 Q F1(set)3.333 -E F0 -.2(bu)3.333 G .833(iltin command.).2 F .834(Positional parameters\ - may not be assigned to with assignment statements.)5.833 F(The)5.834 E -.334(positional parameters are temporarily replaced when a shell functi\ -on is e)108 132 R -.15(xe)-.15 G .333(cuted \(see).15 F/F3 9 -/Times-Bold@0 SF(FUNCTIONS)2.833 E F0(belo)2.583 E(w\).)-.25 E 1.403(Wh\ -en a positional parameter consisting of more than a single digit is e) -108 148.8 R 1.404(xpanded, it must be enclosed in)-.15 F(braces \(see) -108 160.8 Q F3(EXP)2.5 E(ANSION)-.666 E F0(belo)2.25 E(w\).)-.25 E F1 -(Special P)87 177.6 Q(arameters)-.1 E F0 1.675(The shell treats se)108 -189.6 R -.15(ve)-.25 G 1.675(ral parameters specially).15 F 6.675(.T) --.65 G 1.674(hese parameters may only be referenced; assignment to) --6.675 F(them is not allo)108 201.6 Q(wed.)-.25 E F1(*)108 213.6 Q F0 -.605(Expands to the positional parameters, starting from one.)31 F .606 +-.35 E .186(assignment \(see)108 84 R/F1 10/Times-Bold@0 SF(Arrays)2.686 +E F0(belo)2.686 E .186(w\), the v)-.25 F(ariable')-.25 E 2.685(sv)-.55 G +.185(alue is not unset \(as it is when using =\), and ne)-2.935 F 2.685 +(wv)-.25 G .185(alues are)-2.935 F 1.384(appended to the array be)108 96 +R 1.384(ginning at one greater than the array')-.15 F 3.885(sm)-.55 G +1.385(aximum inde)-3.885 F 3.885(x\()-.15 G 1.385(for inde)-3.885 F -.15 +(xe)-.15 G 3.885(da).15 G 1.385(rrays\) or)-3.885 F .123 +(added as additional k)108 108 R -.15(ey)-.1 G.15 E .123 +(alue pairs in an associati)-.25 F .423 -.15(ve a)-.25 H(rray).15 E +5.123(.W)-.65 G .122(hen applied to a string-v)-5.123 F .122(alued v) +-.25 F(ariable,)-.25 E/F2 10/Times-Italic@0 SF(value)2.622 E F0(is e)108 +120 Q(xpanded and appended to the v)-.15 E(ariable')-.25 E 2.5(sv)-.55 G +(alue.)-2.75 E F1 -.2(Po)87 136.8 S(sitional P).2 E(arameters)-.1 E F0 +(A)108 148.8 Q F2 .705(positional par)4.455 F(ameter)-.15 E F0 .706(is \ +a parameter denoted by one or more digits, other than the single digit \ +0.)3.935 F(Posi-)5.706 E .445 +(tional parameters are assigned from the shell')108 160.8 R 2.944(sa) +-.55 G -.18(rg)-2.944 G .444(uments when it is in).18 F -.2(vo)-.4 G -.1 +(ke).2 G .444(d, and may be reassigned using).1 F(the)108 172.8 Q F1 +(set)3.333 E F0 -.2(bu)3.333 G .833(iltin command.).2 F .834(Positional\ + parameters may not be assigned to with assignment statements.)5.833 F +(The)5.834 E .334(positional parameters are temporarily replaced when a\ + shell function is e)108 184.8 R -.15(xe)-.15 G .333(cuted \(see).15 F +/F3 9/Times-Bold@0 SF(FUNCTIONS)2.833 E F0(belo)2.583 E(w\).)-.25 E +1.403(When a positional parameter consisting of more than a single digi\ +t is e)108 201.6 R 1.404(xpanded, it must be enclosed in)-.15 F +(braces \(see)108 213.6 Q F3(EXP)2.5 E(ANSION)-.666 E F0(belo)2.25 E +(w\).)-.25 E F1(Special P)87 230.4 Q(arameters)-.1 E F0 1.675 +(The shell treats se)108 242.4 R -.15(ve)-.25 G 1.675 +(ral parameters specially).15 F 6.675(.T)-.65 G 1.674 +(hese parameters may only be referenced; assignment to)-6.675 F +(them is not allo)108 254.4 Q(wed.)-.25 E F1(*)108 266.4 Q F0 .605 +(Expands to the positional parameters, starting from one.)31 F .606 (When the e)5.605 F .606(xpansion occurs within dou-)-.15 F .084 -(ble quotes, it e)144 225.6 R .084(xpands to a single w)-.15 F .084 +(ble quotes, it e)144 278.4 R .084(xpands to a single w)-.15 F .084 (ord with the v)-.1 F .084 (alue of each parameter separated by the \214rst char)-.25 F(-)-.2 E -.003(acter of the)144 237.6 R F3(IFS)2.503 E F0 .003(special v)2.253 F +.003(acter of the)144 290.4 R F3(IFS)2.503 E F0 .003(special v)2.253 F 2.503(ariable. That)-.25 F .003(is, ")2.503 F F1($*)A F0 2.503("i)C 2.503(se)-2.503 G(qui)-2.503 E -.25(va)-.25 G .003(lent to ").25 F F1 ($1)A F2(c)A F1($2)A F2(c)A F1(...)A F0 .003(", where)B F2(c)2.703 E F0 -.004(is the \214rst char)2.813 F(-)-.2 E .769(acter of the v)144 249.6 R +.004(is the \214rst char)2.813 F(-)-.2 E .769(acter of the v)144 302.4 R .769(alue of the)-.25 F F3(IFS)3.269 E F0 -.25(va)3.019 G 3.269 (riable. If).25 F F3(IFS)3.268 E F0 .768 (is unset, the parameters are separated by spaces.)3.018 F(If)5.768 E F3 -(IFS)144 261.6 Q F0(is null, the parameters are joined without interv) -2.25 E(ening separators.)-.15 E F1(@)108 273.6 Q F0 .605 +(IFS)144 314.4 Q F0(is null, the parameters are joined without interv) +2.25 E(ening separators.)-.15 E F1(@)108 326.4 Q F0 .605 (Expands to the positional parameters, starting from one.)26.7 F .606 (When the e)5.605 F .606(xpansion occurs within dou-)-.15 F .114 -(ble quotes, each parameter e)144 285.6 R .114(xpands to a separate w) +(ble quotes, each parameter e)144 338.4 R .114(xpands to a separate w) -.15 F 2.614(ord. That)-.1 F .113(is, ")2.613 F F1($@)A F0 2.613("i)C 2.613(se)-2.613 G(qui)-2.613 E -.25(va)-.25 G .113(lent to ").25 F F1 ($1)A F0 2.613("")C F1($2)-2.613 E F0 2.613(".)C(..)-2.613 E .134 -(If the double-quoted e)144 297.6 R .134(xpansion occurs within a w)-.15 +(If the double-quoted e)144 350.4 R .134(xpansion occurs within a w)-.15 F .135(ord, the e)-.1 F .135 (xpansion of the \214rst parameter is joined)-.15 F .151(with the be)144 -309.6 R .151(ginning part of the original w)-.15 F .151(ord, and the e) +362.4 R .151(ginning part of the original w)-.15 F .151(ord, and the e) -.1 F .15(xpansion of the last parameter is joined with)-.15 F .337 -(the last part of the original w)144 321.6 R 2.837(ord. When)-.1 F .338 +(the last part of the original w)144 374.4 R 2.837(ord. When)-.1 F .338 (there are no positional parameters, ")2.837 F F1($@)A F0 2.838("a)C(nd) -2.838 E F1($@)2.838 E F0 -.15(ex)2.838 G(pand).15 E -(to nothing \(i.e., the)144 333.6 Q 2.5(ya)-.15 G(re remo)-2.5 E -.15 -(ve)-.15 G(d\).).15 E F1(#)108 345.6 Q F0 +(to nothing \(i.e., the)144 386.4 Q 2.5(ya)-.15 G(re remo)-2.5 E -.15 +(ve)-.15 G(d\).).15 E F1(#)108 398.4 Q F0 (Expands to the number of positional parameters in decimal.)31 E F1(?) -108 357.6 Q F0(Expands to the e)31 E(xit status of the most recently e) +108 410.4 Q F0(Expands to the e)31 E(xit status of the most recently e) -.15 E -.15(xe)-.15 G(cuted fore).15 E(ground pipeline.)-.15 E F1108 -369.6 Q F0 .882 +422.4 Q F0 .882 (Expands to the current option \215ags as speci\214ed upon in)30.3 F -.2 (vo)-.4 G .881(cation, by the).2 F F1(set)3.381 E F0 -.2(bu)3.381 G .881 (iltin command, or).2 F(those set by the shell itself \(such as the)144 -381.6 Q F12.5 E F0(option\).)2.5 E F1($)108 393.6 Q F0 .214 +434.4 Q F12.5 E F0(option\).)2.5 E F1($)108 446.4 Q F0 .214 (Expands to the process ID of the shell.)31 F .214 (In a \(\) subshell, it e)5.214 F .214 (xpands to the process ID of the current)-.15 F -(shell, not the subshell.)144 405.6 Q F1(!)108 417.6 Q F0 +(shell, not the subshell.)144 458.4 Q F1(!)108 470.4 Q F0 (Expands to the process ID of the most recently e)32.67 E -.15(xe)-.15 G -(cuted background \(asynchronous\) command.).15 E F1(0)108 429.6 Q F0 +(cuted background \(asynchronous\) command.).15 E F1(0)108 482.4 Q F0 1.692(Expands to the name of the shell or shell script.)31 F 1.691 (This is set at shell initialization.)6.692 F(If)6.691 E F1(bash)4.191 E -F0(is)4.191 E(in)144 441.6 Q -.2(vo)-.4 G -.1(ke).2 G 3.077(dw).1 G .577 +F0(is)4.191 E(in)144 494.4 Q -.2(vo)-.4 G -.1(ke).2 G 3.077(dw).1 G .577 (ith a \214le of commands,)-3.077 F F1($0)3.077 E F0 .578 (is set to the name of that \214le.)3.077 F(If)5.578 E F1(bash)3.078 E F0 .578(is started with the)3.078 F F13.078 E F0 .369 -(option, then)144 453.6 R F1($0)2.869 E F0 .369 +(option, then)144 506.4 R F1($0)2.869 E F0 .369 (is set to the \214rst ar)2.869 F .369(gument after the string to be e) -.18 F -.15(xe)-.15 G .369(cuted, if one is present.).15 F(Other)5.368 E -(-)-.2 E(wise, it is set to the \214le name used to in)144 465.6 Q -.2 +(-)-.2 E(wise, it is set to the \214le name used to in)144 518.4 Q -.2 (vo)-.4 G -.1(ke).2 G F1(bash)2.6 E F0 2.5(,a)C 2.5(sg)-2.5 G -2.15 -.25 (iv e)-2.5 H 2.5(nb).25 G 2.5(ya)-2.5 G -.18(rg)-2.5 G(ument zero.).18 E -F1(_)108 477.6 Q F0 .054 +F1(_)108 530.4 Q F0 .054 (At shell startup, set to the absolute pathname used to in)31 F -.2(vo) -.4 G .255 -.1(ke t).2 H .055(he shell or shell script being e).1 F -.15 -(xe)-.15 G(cuted).15 E .692(as passed in the en)144 489.6 R .692 +(xe)-.15 G(cuted).15 E .692(as passed in the en)144 542.4 R .692 (vironment or ar)-.4 F .691(gument list.)-.18 F(Subsequently)5.691 E 3.191(,e)-.65 G .691(xpands to the last ar)-3.341 F .691(gument to the) --.18 F(pre)144 501.6 Q .57(vious command, after e)-.25 F 3.07 +-.18 F(pre)144 554.4 Q .57(vious command, after e)-.25 F 3.07 (xpansion. Also)-.15 F .571(set to the full pathname used to in)3.071 F --.2(vo)-.4 G .771 -.1(ke e).2 H .571(ach command).1 F -.15(exe)144 513.6 +-.2(vo)-.4 G .771 -.1(ke e).2 H .571(ach command).1 F -.15(exe)144 566.4 S 1.6(cuted and placed in the en).15 F 1.6(vironment e)-.4 F 1.6 (xported to that command.)-.15 F 1.6(When checking mail, this)6.6 F (parameter holds the name of the mail \214le currently being check)144 -525.6 Q(ed.)-.1 E F1(Shell V)87 542.4 Q(ariables)-.92 E F0(The follo)108 -554.4 Q(wing v)-.25 E(ariables are set by the shell:)-.25 E F1 -.3(BA) -108 571.2 S(SH).3 E F0(Expands to the full \214le name used to in)9.07 E +578.4 Q(ed.)-.1 E F1(Shell V)87 595.2 Q(ariables)-.92 E F0(The follo)108 +607.2 Q(wing v)-.25 E(ariables are set by the shell:)-.25 E F1 -.3(BA) +108 624 S(SH).3 E F0(Expands to the full \214le name used to in)9.07 E -.2(vo)-.4 G .2 -.1(ke t).2 H(his instance of).1 E F1(bash)2.5 E F0(.)A -F1 -.3(BA)108 583.2 S(SHOPTS).3 E F0 2.548(Ac)144 595.2 S .049 +F1 -.3(BA)108 636 S(SHOPTS).3 E F0 2.548(Ac)144 648 S .049 (olon-separated list of enabled shell options.)-2.548 F .049(Each w) 5.049 F .049(ord in the list is a v)-.1 F .049(alid ar)-.25 F .049 -(gument for the)-.18 F F12.549 E F0 1.398(option to the)144 607.2 -R F1(shopt)3.898 E F0 -.2(bu)3.898 G 1.398(iltin command \(see).2 F F3 +(gument for the)-.18 F F12.549 E F0 1.398(option to the)144 660 R +F1(shopt)3.898 E F0 -.2(bu)3.898 G 1.398(iltin command \(see).2 F F3 1.398(SHELL B)3.898 F(UIL)-.09 E 1.398(TIN COMMANDS)-.828 F F0(belo) -3.648 E 3.898(w\). The)-.25 F(options)3.898 E .476(appearing in)144 -619.2 R F3 -.27(BA)2.976 G(SHOPTS).27 E F0 .476(are those reported as) -2.726 F F2(on)3.206 E F0(by)3.217 E F1(shopt)2.977 E F0 5.477(.I)C 2.977 -(ft)-5.477 G .477(his v)-2.977 F .477(ariable is in the en)-.25 F -(vironment)-.4 E(when)144 631.2 Q F1(bash)3.142 E F0 .642(starts up, ea\ -ch shell option in the list will be enabled before reading an)3.142 F -3.141(ys)-.15 G .641(tartup \214les.)-3.141 F(This v)144 643.2 Q -(ariable is read-only)-.25 E(.)-.65 E F1 -.3(BA)108 655.2 S(SHPID).3 E -F0 .36(Expands to the process id of the current)144 667.2 R F1(bash) -2.861 E F0 2.861(process. This)2.861 F(dif)2.861 E .361(fers from)-.25 F -F1($$)2.861 E F0 .361(under certain circum-)2.861 F -(stances, such as subshells that do not require)144 679.2 Q F1(bash)2.5 -E F0(to be re-initialized.)2.5 E F1 -.3(BA)108 691.2 S(SH_ALIASES).3 E -F0 1.195(An associati)144 703.2 R 1.495 -.15(ve a)-.25 H 1.195(rray v) -.15 F 1.195(ariable whose members correspond to the internal list of al\ -iases as main-)-.25 F .024(tained by the)144 715.2 R F1(alias)2.524 E F0 --.2(bu)2.524 G 2.524(iltin. Elements).2 F .024 -(added to this array appear in the alias list; unsetting array ele-) -2.524 F(ments cause aliases to be remo)144 727.2 Q -.15(ve)-.15 G 2.5 -(df).15 G(rom the alias list.)-2.5 E(GNU Bash-4.1)72 768 Q(2010 June 12) -147.345 E(9)202.335 E 0 Cg EP +3.648 E 3.898(w\). The)-.25 F(options)3.898 E .476(appearing in)144 672 +R F3 -.27(BA)2.976 G(SHOPTS).27 E F0 .476(are those reported as)2.726 F +F2(on)3.206 E F0(by)3.217 E F1(shopt)2.977 E F0 5.477(.I)C 2.977(ft) +-5.477 G .477(his v)-2.977 F .477(ariable is in the en)-.25 F(vironment) +-.4 E(when)144 684 Q F1(bash)3.142 E F0 .642(starts up, each shell opti\ +on in the list will be enabled before reading an)3.142 F 3.141(ys)-.15 G +.641(tartup \214les.)-3.141 F(This v)144 696 Q(ariable is read-only)-.25 +E(.)-.65 E(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(9)203.165 E 0 Cg +EP %%Page: 10 10 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF -.3(BA)108 84 S(SH_ARGC).3 E F0 .935 -(An array v)144 96 R .935(ariable whose v)-.25 F .934 +-.35 E/F1 10/Times-Bold@0 SF -.3(BA)108 84 S(SHPID).3 E F0 .36 +(Expands to the process id of the current)144 96 R F1(bash)2.861 E F0 +2.861(process. This)2.861 F(dif)2.861 E .361(fers from)-.25 F F1($$) +2.861 E F0 .361(under certain circum-)2.861 F +(stances, such as subshells that do not require)144 108 Q F1(bash)2.5 E +F0(to be re-initialized.)2.5 E F1 -.3(BA)108 120 S(SH_ALIASES).3 E F0 +1.195(An associati)144 132 R 1.495 -.15(ve a)-.25 H 1.195(rray v).15 F +1.195(ariable whose members correspond to the internal list of aliases \ +as main-)-.25 F .024(tained by the)144 144 R F1(alias)2.524 E F0 -.2(bu) +2.524 G 2.524(iltin. Elements).2 F .024 +(added to this array appear in the alias list; unsetting array ele-) +2.524 F(ments cause aliases to be remo)144 156 Q -.15(ve)-.15 G 2.5(df) +.15 G(rom the alias list.)-2.5 E F1 -.3(BA)108 168 S(SH_ARGC).3 E F0 +.935(An array v)144 180 R .935(ariable whose v)-.25 F .934 (alues are the number of parameters in each frame of the current)-.25 F -F1(bash)3.434 E F0 -.15(exe)144 108 S .535(cution call stack.).15 F .535 +F1(bash)3.434 E F0 -.15(exe)144 192 S .535(cution call stack.).15 F .535 (The number of parameters to the current subroutine \(shell function or\ - script)5.535 F -.15(exe)144 120 S .142(cuted with).15 F F1(.)2.642 E F0 + script)5.535 F -.15(exe)144 204 S .142(cuted with).15 F F1(.)2.642 E F0 (or)2.642 E F1(sour)2.642 E(ce)-.18 E F0 2.642(\)i)C 2.642(sa)-2.642 G 2.642(tt)-2.642 G .142(he top of the stack.)-2.642 F .141 (When a subroutine is e)5.141 F -.15(xe)-.15 G .141 (cuted, the number of).15 F 2.63(parameters passed is pushed onto)144 -132 R/F2 9/Times-Bold@0 SF -.27(BA)5.13 G(SH_ARGC).27 E/F3 9 +216 R/F2 9/Times-Bold@0 SF -.27(BA)5.13 G(SH_ARGC).27 E/F3 9 /Times-Roman@0 SF(.)A F0 2.63(The shell sets)7.13 F F2 -.27(BA)5.131 G -(SH_ARGC).27 E F0 2.631(only when in)4.881 F -.15(ex)144 144 S +(SH_ARGC).27 E F0 2.631(only when in)4.881 F -.15(ex)144 228 S (tended deb).15 E(ugging mode \(see the description of the)-.2 E F1 (extdeb)2.5 E(ug)-.2 E F0(option to the)2.5 E F1(shopt)2.5 E F0 -.2(bu) -2.5 G(iltin belo).2 E(w\))-.25 E F1 -.3(BA)108 156 S(SH_ARGV).3 E F0 .98 -(An array v)144 168 R .979 +2.5 G(iltin belo).2 E(w\))-.25 E F1 -.3(BA)108 240 S(SH_ARGV).3 E F0 .98 +(An array v)144 252 R .979 (ariable containing all of the parameters in the current)-.25 F F1(bash) 3.479 E F0 -.15(exe)3.479 G .979(cution call stack.).15 F(The)5.979 E .275(\214nal parameter of the last subroutine call is at the top of the\ - stack; the \214rst parameter of the initial)144 180 R 1.424 -(call is at the bottom.)144 192 R 1.424(When a subroutine is e)6.424 F + stack; the \214rst parameter of the initial)144 264 R 1.424 +(call is at the bottom.)144 276 R 1.424(When a subroutine is e)6.424 F -.15(xe)-.15 G 1.424(cuted, the parameters supplied are pushed onto).15 -F F2 -.27(BA)144 204 S(SH_ARGV).27 E F3(.)A F0 2.197(The shell sets) +F F2 -.27(BA)144 288 S(SH_ARGV).27 E F3(.)A F0 2.197(The shell sets) 6.697 F F2 -.27(BA)4.697 G(SH_ARGV).27 E F0 2.197(only when in e)4.447 F 2.197(xtended deb)-.15 F 2.197(ugging mode \(see the)-.2 F -(description of the)144 216 Q F1(extdeb)2.5 E(ug)-.2 E F0(option to the) +(description of the)144 300 Q F1(extdeb)2.5 E(ug)-.2 E F0(option to the) 2.5 E F1(shopt)2.5 E F0 -.2(bu)2.5 G(iltin belo).2 E(w\))-.25 E F1 -.3 -(BA)108 228 S(SH_CMDS).3 E F0 .668(An associati)144 240 R .968 -.15 +(BA)108 312 S(SH_CMDS).3 E F0 .668(An associati)144 324 R .968 -.15 (ve a)-.25 H .668(rray v).15 F .668(ariable whose members correspond to\ the internal hash table of commands)-.25 F .146(as maintained by the) -144 252 R F1(hash)2.646 E F0 -.2(bu)2.646 G 2.646(iltin. Elements).2 F +144 336 R F1(hash)2.646 E F0 -.2(bu)2.646 G 2.646(iltin. Elements).2 F .146(added to this array appear in the hash table; unsetting)2.646 F -(array elements cause commands to be remo)144 264 Q -.15(ve)-.15 G 2.5 -(df).15 G(rom the hash table.)-2.5 E F1 -.3(BA)108 276 S(SH_COMMAND).3 E -F0 1.243(The command currently being e)144 288 R -.15(xe)-.15 G 1.243 +(array elements cause commands to be remo)144 348 Q -.15(ve)-.15 G 2.5 +(df).15 G(rom the hash table.)-2.5 E F1 -.3(BA)108 360 S(SH_COMMAND).3 E +F0 1.243(The command currently being e)144 372 R -.15(xe)-.15 G 1.243 (cuted or about to be e).15 F -.15(xe)-.15 G 1.242 (cuted, unless the shell is e).15 F -.15(xe)-.15 G 1.242(cuting a).15 F (command as the result of a trap, in which case it is the command e)144 -300 Q -.15(xe)-.15 G(cuting at the time of the trap.).15 E F1 -.3(BA)108 -312 S(SH_EXECUTION_STRING).3 E F0(The command ar)144 324 Q +384 Q -.15(xe)-.15 G(cuting at the time of the trap.).15 E F1 -.3(BA)108 +396 S(SH_EXECUTION_STRING).3 E F0(The command ar)144 408 Q (gument to the)-.18 E F12.5 E F0(in)2.5 E -.2(vo)-.4 G -(cation option.).2 E F1 -.3(BA)108 336 S(SH_LINENO).3 E F0 .034 -(An array v)144 348 R .034(ariable whose members are the line numbers i\ -n source \214les corresponding to each mem-)-.25 F 3.491(ber of)144 360 -R F2(FUNCN)5.991 E(AME)-.18 E F3(.)A F1(${B)7.991 E(ASH_LINENO[)-.3 E/F4 -10/Times-Italic@0 SF($i)A F1(]})A F0 3.491 -(is the line number in the source \214le where)5.991 F F1(${FUNCN)144 -372 Q(AME[)-.2 E F4($i)A F1(]})A F0 -.1(wa)3.311 G 3.311(sc).1 G .811 -(alled \(or)-3.311 F F1(${B)3.311 E(ASH_LINENO[)-.3 E F4($i-1)A F1(]})A -F0 .811(if referenced within another shell)3.311 F 4.987 -(function\). The)144 384 R 2.487(corresponding source \214le name is) -4.987 F F1(${B)4.986 E(ASH_SOURCE[)-.3 E F4($i)A F1(]})A F0 7.486(.U)C -(se)-7.486 E F2(LINENO)4.986 E F0(to)4.736 E -(obtain the current line number)144 396 Q(.)-.55 E F1 -.3(BA)108 408 S -(SH_REMA).3 E(TCH)-.95 E F0 .005(An array v)144 420 R .005 -(ariable whose members are assigned by the)-.25 F F1(=~)2.506 E F0 .006 -(binary operator to the)2.506 F F1([[)2.506 E F0 .006(conditional com-) -2.506 F 2.507(mand. The)144 432 R .007(element with inde)2.507 F 2.507 -(x0i)-.15 G 2.507(st)-2.507 G .007 +(cation option.).2 E F1 -.3(BA)108 420 S(SH_LINENO).3 E F0 .692 +(An array v)144 432 R .692(ariable whose members are the line numbers i\ +n source \214les where each corresponding)-.25 F .97(member of)144 444 R +F2(FUNCN)3.47 E(AME)-.18 E F0 -.1(wa)3.22 G 3.47(si).1 G -1.9 -.4(nv o) +-3.47 H -.1(ke).4 G(d.).1 E F1(${B)5.969 E(ASH_LINENO[)-.3 E/F4 10 +/Times-Italic@0 SF($i)A F1(]})A F0 .969 +(is the line number in the source)3.469 F 14.671(\214le \()144 456 R F1 +(${B)A(ASH_SOURCE[)-.3 E F4($i+1)A F1(]})A F0 17.171(\)w)C(here)-17.171 +E F1(${FUNCN)17.172 E(AME[)-.2 E F4($i)A F1(]})A F0 -.1(wa)17.172 G +17.172(sc).1 G 14.672(alled \(or)-17.172 F F1(${B)144 468 Q(ASH_LINENO[) +-.3 E F4($i-1)A F1(]})A F0 .115 +(if referenced within another shell function\).)2.615 F(Use)5.115 E F2 +(LINENO)2.615 E F0 .115(to obtain the)2.365 F(current line number)144 +480 Q(.)-.55 E F1 -.3(BA)108 492 S(SH_REMA).3 E(TCH)-.95 E F0 .005 +(An array v)144 504 R .005(ariable whose members are assigned by the) +-.25 F F1(=~)2.506 E F0 .006(binary operator to the)2.506 F F1([[)2.506 +E F0 .006(conditional com-)2.506 F 2.507(mand. The)144 516 R .007 +(element with inde)2.507 F 2.507(x0i)-.15 G 2.507(st)-2.507 G .007 (he portion of the string matching the entire re)-2.507 F .006(gular e) --.15 F(xpression.)-.15 E .997(The element with inde)144 444 R(x)-.15 E +-.15 F(xpression.)-.15 E .997(The element with inde)144 528 R(x)-.15 E F4(n)3.497 E F0 .997(is the portion of the string matching the)3.497 F F4(n)3.498 E F0 .998(th parenthesized sube)B(xpres-)-.15 E 2.5 -(sion. This)144 456 R -.25(va)2.5 G(riable is read-only).25 E(.)-.65 E -F1 -.3(BA)108 468 S(SH_SOURCE).3 E F0 .89(An array v)144 480 R .889(ari\ -able whose members are the source \214lenames corresponding to the elem\ -ents in the)-.25 F F2(FUNCN)144 492 Q(AME)-.18 E F0(array v)2.25 E -(ariable.)-.25 E F1 -.3(BA)108 504 S(SH_SUBSHELL).3 E F0 .401 -(Incremented by one each time a subshell or subshell en)144 516 R .401 -(vironment is spa)-.4 F 2.902(wned. The)-.15 F .402(initial v)2.902 F -.402(alue is)-.25 F(0.)144 528 Q F1 -.3(BA)108 540 S(SH_VERSINFO).3 E F0 -2.645(Ar)144 552 S .145(eadonly array v)-2.645 F .144 +(sion. This)144 540 R -.25(va)2.5 G(riable is read-only).25 E(.)-.65 E +F1 -.3(BA)108 552 S(SH_SOURCE).3 E F0 .126(An array v)144 564 R .125(ar\ +iable whose members are the source \214lenames where the corresponding \ +shell function)-.25 F .78(names in the)144 576 R F2(FUNCN)3.28 E(AME) +-.18 E F0 .78(array v)3.03 F .78(ariable are de\214ned.)-.25 F .78 +(The shell function)5.78 F F1(${FUNCN)3.281 E(AME[)-.2 E F4($i)A F1(]})A +F0(is)3.281 E(de\214ned in the \214le)144 588 Q F1(${B)2.5 E +(ASH_SOURCE[)-.3 E F4($i)A F1(]})A F0(and called from)2.5 E F1(${B)2.5 E +(ASH_SOURCE[)-.3 E F4($i+1)A F1(]})A F0(.)A F1 -.3(BA)108 600 S +(SH_SUBSHELL).3 E F0 .402 +(Incremented by one each time a subshell or subshell en)144 612 R .401 +(vironment is spa)-.4 F 2.901(wned. The)-.15 F .401(initial v)2.901 F +.401(alue is)-.25 F(0.)144 624 Q F1 -.3(BA)108 636 S(SH_VERSINFO).3 E F0 +2.644(Ar)144 648 S .144(eadonly array v)-2.644 F .144 (ariable whose members hold v)-.25 F .144 -(ersion information for this instance of)-.15 F F1(bash)2.644 E F0 5.144 -(.T)C(he)-5.144 E -.25(va)144 564 S +(ersion information for this instance of)-.15 F F1(bash)2.645 E F0 5.145 +(.T)C(he)-5.145 E -.25(va)144 660 S (lues assigned to the array members are as follo).25 E(ws:)-.25 E F1 -.3 -(BA)144 582 S(SH_VERSINFO[).3 E F0(0)A F1(])A F0(The major v)24.74 E +(BA)144 678 S(SH_VERSINFO[).3 E F0(0)A F1(])A F0(The major v)24.74 E (ersion number \(the)-.15 E F4 -.37(re)2.5 G(lease).37 E F0(\).)A F1 -.3 -(BA)144 594 S(SH_VERSINFO[).3 E F0(1)A F1(])A F0(The minor v)24.74 E +(BA)144 690 S(SH_VERSINFO[).3 E F0(1)A F1(])A F0(The minor v)24.74 E (ersion number \(the)-.15 E F4(ver)2.5 E(sion)-.1 E F0(\).)A F1 -.3(BA) -144 606 S(SH_VERSINFO[).3 E F0(2)A F1(])A F0(The patch le)24.74 E -.15 -(ve)-.25 G(l.).15 E F1 -.3(BA)144 618 S(SH_VERSINFO[).3 E F0(3)A F1(])A -F0(The b)24.74 E(uild v)-.2 E(ersion.)-.15 E F1 -.3(BA)144 630 S -(SH_VERSINFO[).3 E F0(4)A F1(])A F0(The release status \(e.g.,)24.74 E -F4(beta1)2.5 E F0(\).)A F1 -.3(BA)144 642 S(SH_VERSINFO[).3 E F0(5)A F1 -(])A F0(The v)24.74 E(alue of)-.25 E F2(MA)2.5 E(CHTYPE)-.495 E F3(.)A -F1 -.3(BA)108 658.8 S(SH_VERSION).3 E F0 -(Expands to a string describing the v)144 670.8 Q -(ersion of this instance of)-.15 E F1(bash)2.5 E F0(.)A F1(COMP_CW)108 -687.6 Q(ORD)-.1 E F0 .396(An inde)144 699.6 R 2.896(xi)-.15 G(nto)-2.896 -E F1(${COMP_W)2.896 E(ORDS})-.1 E F0 .396(of the w)2.896 F .396 -(ord containing the current cursor position.)-.1 F .397(This v)5.397 F -(ari-)-.25 E 1.181(able is a)144 711.6 R -.25(va)-.2 G 1.181 -(ilable only in shell functions in).25 F -.2(vo)-.4 G -.1(ke).2 G 3.681 -(db).1 G 3.681(yt)-3.681 G 1.18(he programmable completion f)-3.681 F -1.18(acilities \(see)-.1 F F1(Pr)144 723.6 Q(ogrammable Completion)-.18 -E F0(belo)2.5 E(w\).)-.25 E(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E -(10)197.335 E 0 Cg EP +144 702 S(SH_VERSINFO[).3 E F0(2)A F1(])A F0(The patch le)24.74 E -.15 +(ve)-.25 G(l.).15 E F1 -.3(BA)144 714 S(SH_VERSINFO[).3 E F0(3)A F1(])A +F0(The b)24.74 E(uild v)-.2 E(ersion.)-.15 E(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(10)198.165 E 0 Cg EP %%Page: 11 11 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(COMP_KEY)108 84 Q F0(The k)144 96 Q .3 -.15 -(ey \()-.1 H(or \214nal k).15 E .3 -.15(ey o)-.1 H 2.5(fak).15 G .3 -.15 -(ey s)-2.6 H(equence\) used to in).15 E -.2(vo)-.4 G .2 -.1(ke t).2 H -(he current completion function.).1 E F1(COMP_LINE)108 112.8 Q F0 1.207 -(The current command line.)144 124.8 R 1.208(This v)6.208 F 1.208 +-.35 E/F1 10/Times-Bold@0 SF -.3(BA)144 84 S(SH_VERSINFO[).3 E F0(4)A F1 +(])A F0(The release status \(e.g.,)24.74 E/F2 10/Times-Italic@0 SF +(beta1)2.5 E F0(\).)A F1 -.3(BA)144 96 S(SH_VERSINFO[).3 E F0(5)A F1(])A +F0(The v)24.74 E(alue of)-.25 E/F3 9/Times-Bold@0 SF(MA)2.5 E(CHTYPE) +-.495 E/F4 9/Times-Roman@0 SF(.)A F1 -.3(BA)108 112.8 S(SH_VERSION).3 E +F0(Expands to a string describing the v)144 124.8 Q +(ersion of this instance of)-.15 E F1(bash)2.5 E F0(.)A F1(COMP_CW)108 +141.6 Q(ORD)-.1 E F0 .397(An inde)144 153.6 R 2.897(xi)-.15 G(nto)-2.897 +E F1(${COMP_W)2.896 E(ORDS})-.1 E F0 .396(of the w)2.896 F .396 +(ord containing the current cursor position.)-.1 F .396(This v)5.396 F +(ari-)-.25 E 1.18(able is a)144 165.6 R -.25(va)-.2 G 1.181 +(ilable only in shell functions in).25 F -.2(vo)-.4 G -.1(ke).2 G 3.681 +(db).1 G 3.681(yt)-3.681 G 1.181(he programmable completion f)-3.681 F +1.181(acilities \(see)-.1 F F1(Pr)144 177.6 Q(ogrammable Completion)-.18 +E F0(belo)2.5 E(w\).)-.25 E F1(COMP_KEY)108 194.4 Q F0(The k)144 206.4 Q +.3 -.15(ey \()-.1 H(or \214nal k).15 E .3 -.15(ey o)-.1 H 2.5(fak).15 G +.3 -.15(ey s)-2.6 H(equence\) used to in).15 E -.2(vo)-.4 G .2 -.1(ke t) +.2 H(he current completion function.).1 E F1(COMP_LINE)108 223.2 Q F0 +1.208(The current command line.)144 235.2 R 1.208(This v)6.208 F 1.208 (ariable is a)-.25 F -.25(va)-.2 G 1.208 -(ilable only in shell functions and e).25 F 1.208(xternal com-)-.15 F -2.849(mands in)144 136.8 R -.2(vo)-.4 G -.1(ke).2 G 5.349(db).1 G 5.349 +(ilable only in shell functions and e).25 F 1.207(xternal com-)-.15 F +2.848(mands in)144 247.2 R -.2(vo)-.4 G -.1(ke).2 G 5.349(db).1 G 5.349 (yt)-5.349 G 2.849(he programmable completion f)-5.349 F 2.849 -(acilities \(see)-.1 F F1(Pr)5.349 E 2.848(ogrammable Completion)-.18 F -F0(belo)144 148.8 Q(w\).)-.25 E F1(COMP_POINT)108 165.6 Q F0 .666 -(The inde)144 177.6 R 3.166(xo)-.15 G 3.166(ft)-3.166 G .666 -(he current cursor position relati)-3.166 F .966 -.15(ve t)-.25 H 3.166 +(acilities \(see)-.1 F F1(Pr)5.349 E 2.849(ogrammable Completion)-.18 F +F0(belo)144 259.2 Q(w\).)-.25 E F1(COMP_POINT)108 276 Q F0 .667 +(The inde)144 288 R 3.167(xo)-.15 G 3.167(ft)-3.167 G .666 +(he current cursor position relati)-3.167 F .966 -.15(ve t)-.25 H 3.166 (ot).15 G .666(he be)-3.166 F .666(ginning of the current command.)-.15 -F .667(If the)5.667 F .535 +F .666(If the)5.666 F .534 (current cursor position is at the end of the current command, the v)144 -189.6 R .534(alue of this v)-.25 F .534(ariable is equal to)-.25 F F1 -(${#COMP_LINE})144 201.6 Q F0 7.005(.T)C 2.005(his v)-7.005 F 2.005 -(ariable is a)-.25 F -.25(va)-.2 G 2.006 -(ilable only in shell functions and e).25 F 2.006(xternal commands)-.15 -F(in)144 213.6 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(db).1 G 2.5(yt)-2.5 G +300 R .535(alue of this v)-.25 F .535(ariable is equal to)-.25 F F1 +(${#COMP_LINE})144 312 Q F0 7.006(.T)C 2.006(his v)-7.006 F 2.006 +(ariable is a)-.25 F -.25(va)-.2 G 2.005 +(ilable only in shell functions and e).25 F 2.005(xternal commands)-.15 +F(in)144 324 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(db).1 G 2.5(yt)-2.5 G (he programmable completion f)-2.5 E(acilities \(see)-.1 E F1(Pr)2.5 E (ogrammable Completion)-.18 E F0(belo)2.5 E(w\).)-.25 E F1(COMP_TYPE)108 -230.4 Q F0 .042(Set to an inte)144 242.4 R .042(ger v)-.15 F .041(alue \ +340.8 Q F0 .041(Set to an inte)144 352.8 R .041(ger v)-.15 F .041(alue \ corresponding to the type of completion attempted that caused a complet\ -ion)-.25 F .337(function to be called:)144 254.4 R/F2 10/Times-Italic@0 -SF -.5(TA)2.837 G(B).5 E F0 2.837(,f)C .337(or normal completion,)-2.837 -F F2(?)2.837 E F0 2.837(,f)C .337(or listing completions after successi) --2.837 F .638 -.15(ve t)-.25 H(abs,).15 E F2(!)144 266.4 Q F0 4.092(,f)C -1.592(or listing alternati)-4.092 F -.15(ve)-.25 G 4.092(so).15 G 4.092 -(np)-4.092 G 1.592(artial w)-4.092 F 1.592(ord completion,)-.1 F F2(@) -4.092 E F0 4.092(,t)C 4.092(ol)-4.092 G 1.592(ist completions if the w) --4.092 F 1.591(ord is not)-.1 F 1.552(unmodi\214ed, or)144 278.4 R F2(%) -4.052 E F0 4.052(,f)C 1.552(or menu completion.)-4.052 F 1.552(This v) -6.552 F 1.552(ariable is a)-.25 F -.25(va)-.2 G 1.552 -(ilable only in shell functions and).25 F -.15(ex)144 290.4 S 2.929 +ion)-.25 F .338(function to be called:)144 364.8 R F2 -.5(TA)2.837 G(B) +.5 E F0 2.837(,f)C .337(or normal completion,)-2.837 F F2(?)2.837 E F0 +2.837(,f)C .337(or listing completions after successi)-2.837 F .637 -.15 +(ve t)-.25 H(abs,).15 E F2(!)144 376.8 Q F0 4.091(,f)C 1.591 +(or listing alternati)-4.091 F -.15(ve)-.25 G 4.092(so).15 G 4.092(np) +-4.092 G 1.592(artial w)-4.092 F 1.592(ord completion,)-.1 F F2(@)4.092 +E F0 4.092(,t)C 4.092(ol)-4.092 G 1.592(ist completions if the w)-4.092 +F 1.592(ord is not)-.1 F 1.553(unmodi\214ed, or)144 388.8 R F2(%)4.053 E +F0 4.052(,f)C 1.552(or menu completion.)-4.052 F 1.552(This v)6.552 F +1.552(ariable is a)-.25 F -.25(va)-.2 G 1.552 +(ilable only in shell functions and).25 F -.15(ex)144 400.8 S 2.928 (ternal commands in).15 F -.2(vo)-.4 G -.1(ke).2 G 5.429(db).1 G 5.429 (yt)-5.429 G 2.929(he programmable completion f)-5.429 F 2.929 -(acilities \(see)-.1 F F1(Pr)5.428 E(ogrammable)-.18 E(Completion)144 -302.4 Q F0(belo)2.5 E(w\).)-.25 E F1(COMP_W)108 319.2 Q(ORDBREAKS)-.1 E -F0 1.335(The set of characters that the)144 331.2 R F1 -.18(re)3.836 G -(adline).18 E F0 1.336(library treats as w)3.836 F 1.336 -(ord separators when performing w)-.1 F(ord)-.1 E 3.126(completion. If) -144 343.2 R/F3 9/Times-Bold@0 SF(COMP_W)3.126 E(ORDBREAKS)-.09 E F0 .626 -(is unset, it loses its special properties, e)2.876 F -.15(ve)-.25 G -3.125(ni).15 G 3.125(fi)-3.125 G 3.125(ti)-3.125 G 3.125(ss)-3.125 G -(ubse-)-3.125 E(quently reset.)144 355.2 Q F1(COMP_W)108 372 Q(ORDS)-.1 -E F0 .653(An array v)144 384 R .653(ariable \(see)-.25 F F1(Arrays)3.153 -E F0(belo)3.153 E .654(w\) consisting of the indi)-.25 F .654(vidual w) --.25 F .654(ords in the current command)-.1 F 4.333(line. The)144 396 R -1.832(line is split into w)4.332 F 1.832(ords as)-.1 F F1 -.18(re)4.332 -G(adline).18 E F0 -.1(wo)4.332 G 1.832(uld split it, using).1 F F3 -(COMP_W)4.332 E(ORDBREAKS)-.09 E F0(as)4.082 E .831(described abo)144 -408 R -.15(ve)-.15 G 5.831(.T).15 G .831(his v)-5.831 F .831 -(ariable is a)-.25 F -.25(va)-.2 G .832 -(ilable only in shell functions in).25 F -.2(vo)-.4 G -.1(ke).2 G 3.332 -(db).1 G 3.332(yt)-3.332 G .832(he programmable)-3.332 F(completion f) -144 420 Q(acilities \(see)-.1 E F1(Pr)2.5 E(ogrammable Completion)-.18 E -F0(belo)2.5 E(w\).)-.25 E F1(COPR)108 436.8 Q(OC)-.3 E F0 .169 -(An array v)144 448.8 R .169(ariable \(see)-.25 F F1(Arrays)2.669 E F0 +(acilities \(see)-.1 F F1(Pr)5.429 E(ogrammable)-.18 E(Completion)144 +412.8 Q F0(belo)2.5 E(w\).)-.25 E F1(COMP_W)108 429.6 Q(ORDBREAKS)-.1 E +F0 1.336(The set of characters that the)144 441.6 R F1 -.18(re)3.836 G +(adline).18 E F0 1.336(library treats as w)3.836 F 1.335 +(ord separators when performing w)-.1 F(ord)-.1 E 3.125(completion. If) +144 453.6 R F3(COMP_W)3.125 E(ORDBREAKS)-.09 E F0 .626 +(is unset, it loses its special properties, e)2.875 F -.15(ve)-.25 G +3.126(ni).15 G 3.126(fi)-3.126 G 3.126(ti)-3.126 G 3.126(ss)-3.126 G +(ubse-)-3.126 E(quently reset.)144 465.6 Q F1(COMP_W)108 482.4 Q(ORDS) +-.1 E F0 .654(An array v)144 494.4 R .654(ariable \(see)-.25 F F1 +(Arrays)3.154 E F0(belo)3.154 E .654(w\) consisting of the indi)-.25 F +.653(vidual w)-.25 F .653(ords in the current command)-.1 F 4.332 +(line. The)144 506.4 R 1.832(line is split into w)4.332 F 1.832(ords as) +-.1 F F1 -.18(re)4.332 G(adline).18 E F0 -.1(wo)4.332 G 1.832 +(uld split it, using).1 F F3(COMP_W)4.332 E(ORDBREAKS)-.09 E F0(as)4.083 +E .832(described abo)144 518.4 R -.15(ve)-.15 G 5.832(.T).15 G .832 +(his v)-5.832 F .832(ariable is a)-.25 F -.25(va)-.2 G .831 +(ilable only in shell functions in).25 F -.2(vo)-.4 G -.1(ke).2 G 3.331 +(db).1 G 3.331(yt)-3.331 G .831(he programmable)-3.331 F(completion f) +144 530.4 Q(acilities \(see)-.1 E F1(Pr)2.5 E(ogrammable Completion)-.18 +E F0(belo)2.5 E(w\).)-.25 E F1(COPR)108 547.2 Q(OC)-.3 E F0 .168 +(An array v)144 559.2 R .168(ariable \(see)-.25 F F1(Arrays)2.668 E F0 (belo)2.669 E .169 (w\) created to hold the \214le descriptors for output from and input) --.25 F(to an unnamed coprocess \(see)144 460.8 Q F1(Copr)2.5 E(ocesses) --.18 E F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E F1(DIRST)108 477.6 Q -.55 -(AC)-.9 G(K).55 E F0 2.26(An array v)144 489.6 R 2.26(ariable \(see)-.25 -F F1(Arrays)4.76 E F0(belo)4.76 E 2.26 +-.25 F(to an unnamed coprocess \(see)144 571.2 Q F1(Copr)2.5 E(ocesses) +-.18 E F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E F1(DIRST)108 588 Q -.55(AC) +-.9 G(K).55 E F0 2.26(An array v)144 600 R 2.26(ariable \(see)-.25 F F1 +(Arrays)4.76 E F0(belo)4.76 E 2.26 (w\) containing the current contents of the directory stack.)-.25 F -1.095(Directories appear in the stack in the order the)144 501.6 R 3.594 -(ya)-.15 G 1.094(re displayed by the)-3.594 F F1(dirs)3.594 E F0 -.2(bu) -3.594 G 3.594(iltin. Assigning).2 F(to)3.594 E 1.431 -(members of this array v)144 513.6 R 1.432 +1.094(Directories appear in the stack in the order the)144 612 R 3.594 +(ya)-.15 G 1.095(re displayed by the)-3.594 F F1(dirs)3.595 E F0 -.2(bu) +3.595 G 3.595(iltin. Assigning).2 F(to)3.595 E 1.432 +(members of this array v)144 624 R 1.432 (ariable may be used to modify directories already in the stack, b)-.25 -F 1.432(ut the)-.2 F F1(pushd)144 525.6 Q F0(and)2.746 E F1(popd)2.746 E +F 1.431(ut the)-.2 F F1(pushd)144 636 Q F0(and)2.746 E F1(popd)2.746 E F0 -.2(bu)2.746 G .246(iltins must be used to add and remo).2 F .546 -.15(ve d)-.15 H 2.746(irectories. Assignment).15 F .246(to this v)2.746 -F(ariable)-.25 E .35(will not change the current directory)144 537.6 R +F(ariable)-.25 E .351(will not change the current directory)144 648 R 5.35(.I)-.65 G(f)-5.35 E F3(DIRST)2.85 E -.495(AC)-.81 G(K).495 E F0 .35 -(is unset, it loses its special properties, e)2.6 F -.15(ve)-.25 G 2.851 -(ni).15 G(f)-2.851 E(it is subsequently reset.)144 549.6 Q F1(EUID)108 -566.4 Q F0 1.104(Expands to the ef)11 F(fecti)-.25 E 1.403 -.15(ve u) +(is unset, it loses its special properties, e)2.6 F -.15(ve)-.25 G 2.85 +(ni).15 G(f)-2.85 E(it is subsequently reset.)144 660 Q F1(EUID)108 +676.8 Q F0 1.103(Expands to the ef)11 F(fecti)-.25 E 1.403 -.15(ve u) -.25 H 1.103(ser ID of the current user).15 F 3.603(,i)-.4 G 1.103 -(nitialized at shell startup.)-3.603 F 1.103(This v)6.103 F 1.103 -(ariable is)-.25 F(readonly)144 578.4 Q(.)-.65 E F1(FUNCN)108 595.2 Q -(AME)-.2 E F0 .478(An array v)144 607.2 R .479 +(nitialized at shell startup.)-3.603 F 1.104(This v)6.103 F 1.104 +(ariable is)-.25 F(readonly)144 688.8 Q(.)-.65 E F1(FUNCN)108 705.6 Q +(AME)-.2 E F0 .479(An array v)144 717.6 R .479 (ariable containing the names of all shell functions currently in the e) --.25 F -.15(xe)-.15 G .479(cution call stack.).15 F .277 -(The element with inde)144 619.2 R 2.777(x0i)-.15 G 2.777(st)-2.777 G -.276(he name of an)-2.777 F 2.776(yc)-.15 G(urrently-e)-2.776 E -.15(xe) --.15 G .276(cuting shell function.).15 F .276(The bottom-most)5.276 F -.25(element is)144 631.2 R/F4 10/Courier@0 SF("main")2.75 E F0 5.25(.T)C -.25(his v)-5.25 F .25(ariable e)-.25 F .25 -(xists only when a shell function is e)-.15 F -.15(xe)-.15 G 2.75 -(cuting. Assignments).15 F(to)2.75 E F3(FUNCN)144 643.2 Q(AME)-.18 E F0 -(ha)2.635 E .685 -.15(ve n)-.2 H 2.885(oe).15 G -.25(ff)-2.885 G .385 -(ect and return an error status.).25 F(If)5.385 E F3(FUNCN)2.885 E(AME) --.18 E F0 .384(is unset, it loses its special)2.634 F(properties, e)144 -655.2 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss) --2.5 G(ubsequently reset.)-2.5 E F1(GR)108 672 Q(OUPS)-.3 E F0 1.228 -(An array v)144 684 R 1.228(ariable containing the list of groups of wh\ -ich the current user is a member)-.25 F 6.229(.A)-.55 G(ssign-)-6.229 E -.597(ments to)144 696 R F3(GR)3.097 E(OUPS)-.27 E F0(ha)2.847 E .897 --.15(ve n)-.2 H 3.097(oe).15 G -.25(ff)-3.097 G .597 -(ect and return an error status.).25 F(If)5.597 E F3(GR)3.097 E(OUPS) --.27 E F0 .597(is unset, it loses its spe-)2.847 F(cial properties, e) -144 708 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5 -(ss)-2.5 G(ubsequently reset.)-2.5 E(GNU Bash-4.1)72 768 Q(2010 June 12) -147.345 E(11)197.335 E 0 Cg EP +-.25 F -.15(xe)-.15 G .478(cution call stack.).15 F .276 +(The element with inde)144 729.6 R 2.776(x0i)-.15 G 2.776(st)-2.776 G +.276(he name of an)-2.776 F 2.777(yc)-.15 G(urrently-e)-2.777 E -.15(xe) +-.15 G .277(cuting shell function.).15 F .277(The bottom-most)5.277 F +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(11)198.165 E 0 Cg EP %%Page: 12 12 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(HISTCMD)108 84 Q F0 .355 -(The history number)144 96 R 2.855(,o)-.4 G 2.855(ri)-2.855 G(nde)-2.855 -E 2.856(xi)-.15 G 2.856(nt)-2.856 G .356 -(he history list, of the current command.)-2.856 F(If)5.356 E/F2 9 -/Times-Bold@0 SF(HISTCMD)2.856 E F0 .356(is unset, it)2.606 F -(loses its special properties, e)144 108 Q -.15(ve)-.25 G 2.5(ni).15 G -2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.)-2.5 E F1 -(HOSTN)108 124.8 Q(AME)-.2 E F0 -(Automatically set to the name of the current host.)144 136.8 Q F1 -(HOSTTYPE)108 153.6 Q F0 .223(Automatically set to a string that unique\ -ly describes the type of machine on which)144 165.6 R F1(bash)2.722 E F0 -.222(is e)2.722 F -.15(xe)-.15 G(cut-).15 E 2.5(ing. The)144 177.6 R -(def)2.5 E(ault is system-dependent.)-.1 E F1(LINENO)108 194.4 Q F0 -1.408(Each time this parameter is referenced, the shell substitutes a d\ -ecimal number representing the)144 206.4 R .078(current sequential line\ - number \(starting with 1\) within a script or function.)144 218.4 R -.078(When not in a script or)5.078 F .306(function, the v)144 230.4 R -.306(alue substituted is not guaranteed to be meaningful.)-.25 F(If) -5.307 E F2(LINENO)2.807 E F0 .307(is unset, it loses its)2.557 F -(special properties, e)144 242.4 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(fi) --2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.)-2.5 E F1(MA)108 -259.2 Q(CHTYPE)-.55 E F0 .898(Automatically set to a string that fully \ -describes the system type on which)144 271.2 R F1(bash)3.398 E F0 .898 -(is e)3.398 F -.15(xe)-.15 G .898(cuting, in).15 F(the standard GNU)144 -283.2 Q/F3 10/Times-Italic@0 SF(cpu-company-system)2.5 E F0 2.5 -(format. The)2.5 F(def)2.5 E(ault is system-dependent.)-.1 E F1(MAPFILE) -108 300 Q F0 .293(An array v)144 312 R .293(ariable \(see)-.25 F F1 -(Arrays)2.793 E F0(belo)2.793 E .293(w\) created to hold the te)-.25 F -.294(xt read by the)-.15 F F1(map\214le)2.794 E F0 -.2(bu)2.794 G .294 -(iltin when no).2 F -.25(va)144 324 S(riable name is supplied.).25 E F1 -(OLDPWD)108 340.8 Q F0(The pre)144 352.8 Q(vious w)-.25 E -(orking directory as set by the)-.1 E F1(cd)2.5 E F0(command.)2.5 E F1 -(OPT)108 369.6 Q(ARG)-.9 E F0 1.627(The v)144 381.6 R 1.627 +-.35 E .385(element \(the one with the highest inde)144 84 R .384 +(x\) is)-.15 F/F1 10/Courier@0 SF("main")2.884 E F0 5.384(.T)C .384 +(his v)-5.384 F .384(ariable e)-.25 F .384 +(xists only when a shell func-)-.15 F .034(tion is e)144 96 R -.15(xe) +-.15 G 2.534(cuting. Assignments).15 F(to)2.535 E/F2 9/Times-Bold@0 SF +(FUNCN)2.535 E(AME)-.18 E F0(ha)2.285 E .335 -.15(ve n)-.2 H 2.535(oe) +.15 G -.25(ff)-2.535 G .035(ect and return an error status.).25 F(If) +5.035 E F2(FUNC-)2.535 E -.18(NA)144 108 S(ME).18 E F0 +(is unset, it loses its special properties, e)2.25 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 .111(This v)144 126 R .111(ariable can be used with)-.25 F/F3 10 +/Times-Bold@0 SF -.3(BA)2.611 G(SH_LINENO).3 E F0(and)2.611 E F3 -.3(BA) +2.611 G(SH_SOURCE).3 E F0 5.111(.E)C .111(ach element of)-5.111 F F3 +(FUNC-)2.61 E -.2(NA)144 138 S(ME).2 E F0 1.404 +(has corresponding elements in)3.904 F F3 -.3(BA)3.904 G(SH_LINENO).3 E +F0(and)3.904 E F3 -.3(BA)3.904 G(SH_SOURCE).3 E F0 1.404 +(to describe the)3.904 F .012(call stack.)144 150 R -.15(Fo)5.012 G +2.512(ri).15 G(nstance,)-2.512 E F3(${FUNCN)2.512 E(AME[)-.2 E/F4 10 +/Times-Italic@0 SF($i)A F3(]})A F0 -.1(wa)2.512 G 2.512(sc).1 G .012 +(alled from the \214le)-2.512 F F3(${B)2.512 E(ASH_SOURCE[)-.3 E F4 +($i+1)A F3(]})A F0 1.183(at line number)144 162 R F3(${B)3.683 E +(ASH_LINENO[)-.3 E F4($i)A F3(]})A F0 6.183(.T)C(he)-6.183 E F3(caller) +3.683 E F0 -.2(bu)3.683 G 1.184 +(iltin displays the current call stack using).2 F(this information.)144 +174 Q F3(GR)108 190.8 Q(OUPS)-.3 E F0 1.229(An array v)144 202.8 R 1.228 +(ariable containing the list of groups of which the current user is a m\ +ember)-.25 F 6.228(.A)-.55 G(ssign-)-6.228 E .596(ments to)144 214.8 R +F2(GR)3.096 E(OUPS)-.27 E F0(ha)2.847 E .897 -.15(ve n)-.2 H 3.097(oe) +.15 G -.25(ff)-3.097 G .597(ect and return an error status.).25 F(If) +5.597 E F2(GR)3.097 E(OUPS)-.27 E F0 .597(is unset, it loses its spe-) +2.847 F(cial properties, e)144 226.8 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5 +(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.)-2.5 E F3 +(HISTCMD)108 243.6 Q F0 .356(The history number)144 255.6 R 2.856(,o)-.4 +G 2.856(ri)-2.856 G(nde)-2.856 E 2.856(xi)-.15 G 2.856(nt)-2.856 G .356 +(he history list, of the current command.)-2.856 F(If)5.356 E F2 +(HISTCMD)2.855 E F0 .355(is unset, it)2.605 F +(loses its special properties, e)144 267.6 Q -.15(ve)-.25 G 2.5(ni).15 G +2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.)-2.5 E F3 +(HOSTN)108 284.4 Q(AME)-.2 E F0 +(Automatically set to the name of the current host.)144 296.4 Q F3 +(HOSTTYPE)108 313.2 Q F0 .222(Automatically set to a string that unique\ +ly describes the type of machine on which)144 325.2 R F3(bash)2.723 E F0 +.223(is e)2.723 F -.15(xe)-.15 G(cut-).15 E 2.5(ing. The)144 337.2 R +(def)2.5 E(ault is system-dependent.)-.1 E F3(LINENO)108 354 Q F0 1.408 +(Each time this parameter is referenced, the shell substitutes a decima\ +l number representing the)144 366 R .078(current sequential line number\ + \(starting with 1\) within a script or function.)144 378 R .079 +(When not in a script or)5.078 F .307(function, the v)144 390 R .307 +(alue substituted is not guaranteed to be meaningful.)-.25 F(If)5.306 E +F2(LINENO)2.806 E F0 .306(is unset, it loses its)2.556 F +(special properties, e)144 402 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(fi)-2.5 +G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.)-2.5 E F3(MA)108 418.8 +Q(CHTYPE)-.55 E F0 .898(Automatically set to a string that fully descri\ +bes the system type on which)144 430.8 R F3(bash)3.398 E F0 .899(is e) +3.398 F -.15(xe)-.15 G .899(cuting, in).15 F(the standard GNU)144 442.8 +Q F4(cpu-company-system)2.5 E F0 2.5(format. The)2.5 F(def)2.5 E +(ault is system-dependent.)-.1 E F3(MAPFILE)108 459.6 Q F0 .294 +(An array v)144 471.6 R .294(ariable \(see)-.25 F F3(Arrays)2.794 E F0 +(belo)2.794 E .294(w\) created to hold the te)-.25 F .293 +(xt read by the)-.15 F F3(map\214le)2.793 E F0 -.2(bu)2.793 G .293 +(iltin when no).2 F -.25(va)144 483.6 S(riable name is supplied.).25 E +F3(OLDPWD)108 500.4 Q F0(The pre)144 512.4 Q(vious w)-.25 E +(orking directory as set by the)-.1 E F3(cd)2.5 E F0(command.)2.5 E F3 +(OPT)108 529.2 Q(ARG)-.9 E F0 1.626(The v)144 541.2 R 1.627 (alue of the last option ar)-.25 F 1.627(gument processed by the)-.18 F -F1(getopts)4.127 E F0 -.2(bu)4.127 G 1.626(iltin command \(see).2 F F2 -(SHELL)4.126 E -.09(BU)144 393.6 S(IL).09 E(TIN COMMANDS)-.828 E F0 -(belo)2.25 E(w\).)-.25 E F1(OPTIND)108 410.4 Q F0 1.651(The inde)144 -422.4 R 4.151(xo)-.15 G 4.151(ft)-4.151 G 1.651(he ne)-4.151 F 1.651 -(xt ar)-.15 F 1.652(gument to be processed by the)-.18 F F1(getopts) -4.152 E F0 -.2(bu)4.152 G 1.652(iltin command \(see).2 F F2(SHELL)4.152 -E -.09(BU)144 434.4 S(IL).09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).) --.25 E F1(OSTYPE)108 451.2 Q F0 .329(Automatically set to a string that\ - describes the operating system on which)144 463.2 R F1(bash)2.829 E F0 -.329(is e)2.829 F -.15(xe)-.15 G 2.829(cuting. The).15 F(def)144 475.2 Q -(ault is system-dependent.)-.1 E F1(PIPEST)108 492 Q -.95(AT)-.9 G(US) -.95 E F0 .61(An array v)144 504 R .61(ariable \(see)-.25 F F1(Arrays) +F3(getopts)4.127 E F0 -.2(bu)4.127 G 1.627(iltin command \(see).2 F F2 +(SHELL)4.127 E -.09(BU)144 553.2 S(IL).09 E(TIN COMMANDS)-.828 E F0 +(belo)2.25 E(w\).)-.25 E F3(OPTIND)108 570 Q F0 1.652(The inde)144 582 R +4.152(xo)-.15 G 4.152(ft)-4.152 G 1.652(he ne)-4.152 F 1.652(xt ar)-.15 +F 1.652(gument to be processed by the)-.18 F F3(getopts)4.151 E F0 -.2 +(bu)4.151 G 1.651(iltin command \(see).2 F F2(SHELL)4.151 E -.09(BU)144 +594 S(IL).09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E F3 +(OSTYPE)108 610.8 Q F0 .329(Automatically set to a string that describe\ +s the operating system on which)144 622.8 R F3(bash)2.83 E F0 .33(is e) +2.83 F -.15(xe)-.15 G 2.83(cuting. The).15 F(def)144 634.8 Q +(ault is system-dependent.)-.1 E F3(PIPEST)108 651.6 Q -.95(AT)-.9 G(US) +.95 E F0 .61(An array v)144 663.6 R .61(ariable \(see)-.25 F F3(Arrays) 3.11 E F0(belo)3.11 E .61(w\) containing a list of e)-.25 F .61 (xit status v)-.15 F .61(alues from the processes in)-.25 F -(the most-recently-e)144 516 Q -.15(xe)-.15 G(cuted fore).15 E -(ground pipeline \(which may contain only a single command\).)-.15 E F1 -(PPID)108 532.8 Q F0(The process ID of the shell')12.67 E 2.5(sp)-.55 G +(the most-recently-e)144 675.6 Q -.15(xe)-.15 G(cuted fore).15 E +(ground pipeline \(which may contain only a single command\).)-.15 E F3 +(PPID)108 692.4 Q F0(The process ID of the shell')12.67 E 2.5(sp)-.55 G 2.5(arent. This)-2.5 F -.25(va)2.5 G(riable is readonly).25 E(.)-.65 E -F1(PWD)108 549.6 Q F0(The current w)12.67 E -(orking directory as set by the)-.1 E F1(cd)2.5 E F0(command.)2.5 E F1 -(RANDOM)108 566.4 Q F0 .566 -(Each time this parameter is referenced, a random inte)144 578.4 R .565 -(ger between 0 and 32767 is generated.)-.15 F(The)5.565 E .01 -(sequence of random numbers may be initialized by assigning a v)144 -590.4 R .01(alue to)-.25 F F2(RANDOM)2.51 E/F4 9/Times-Roman@0 SF(.)A F0 -(If)4.51 E F2(RANDOM)2.51 E F0(is)2.26 E -(unset, it loses its special properties, e)144 602.4 Q -.15(ve)-.25 G -2.5(ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G -(ubsequently reset.)-2.5 E F1(READLINE_LINE)108 619.2 Q F0 1.547 -(The contents of the)144 631.2 R F1 -.18(re)4.047 G(adline).18 E F0 -1.547(line b)4.047 F(uf)-.2 E(fer)-.25 E 4.047(,f)-.4 G 1.547 -(or use with)-4.047 F/F5 10/Courier@0 SF 1.547(bind -x)4.047 F F0(\(see) -4.047 E F2 1.546(SHELL B)4.047 F(UIL)-.09 E 1.546(TIN COM-)-.828 F -(MANDS)144 643.2 Q F0(belo)2.25 E(w\).)-.25 E F1(READLINE_POINT)108 660 -Q F0 .313(The position of the insertion point in the)144 672 R F1 -.18 -(re)2.813 G(adline).18 E F0 .313(line b)2.813 F(uf)-.2 E(fer)-.25 E -2.813(,f)-.4 G .313(or use with)-2.813 F F5 .314(bind -x)2.814 F F0 -(\(see)2.814 E F2(SHELL)2.814 E -.09(BU)144 684 S(IL).09 E(TIN COMMANDS) --.828 E F0(belo)2.25 E(w\).)-.25 E F1(REPL)108 700.8 Q(Y)-.92 E F0 -(Set to the line of input read by the)144 712.8 Q F1 -.18(re)2.5 G(ad) -.18 E F0 -.2(bu)2.5 G(iltin command when no ar).2 E -(guments are supplied.)-.18 E(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 -E(12)197.335 E 0 Cg EP +F3(PWD)108 709.2 Q F0(The current w)12.67 E +(orking directory as set by the)-.1 E F3(cd)2.5 E F0(command.)2.5 E +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(12)198.165 E 0 Cg EP %%Page: 13 13 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(SECONDS)108 84 Q F0 .795(Each time this pa\ -rameter is referenced, the number of seconds since shell in)144 96 R -.2 -(vo)-.4 G .795(cation is returned.).2 F .712(If a v)144 108 R .712 -(alue is assigned to)-.25 F/F2 9/Times-Bold@0 SF(SECONDS)3.212 E/F3 9 -/Times-Roman@0 SF(,)A F0 .712(the v)2.962 F .712 -(alue returned upon subsequent references is the number)-.25 F .408 -(of seconds since the assignment plus the v)144 120 R .408 -(alue assigned.)-.25 F(If)5.408 E F2(SECONDS)2.908 E F0 .407 -(is unset, it loses its special)2.658 F(properties, e)144 132 Q -.15(ve) --.25 G 2.5(ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G -(ubsequently reset.)-2.5 E F1(SHELLOPTS)108 148.8 Q F0 3.262(Ac)144 -160.8 S .763(olon-separated list of enabled shell options.)-3.262 F .763 -(Each w)5.763 F .763(ord in the list is a v)-.1 F .763(alid ar)-.25 F -.763(gument for the)-.18 F F1144 172.8 Q F0 1.174(option to the) -3.674 F F1(set)3.674 E F0 -.2(bu)3.674 G 1.174(iltin command \(see).2 F -F2 1.173(SHELL B)3.673 F(UIL)-.09 E 1.173(TIN COMMANDS)-.828 F F0(belo) -3.423 E 3.673(w\). The)-.25 F(options)3.673 E .019(appearing in)144 -184.8 R F2(SHELLOPTS)2.519 E F0 .019(are those reported as)2.269 F/F4 10 +-.35 E/F1 10/Times-Bold@0 SF(RANDOM)108 84 Q F0 .565 +(Each time this parameter is referenced, a random inte)144 96 R .566 +(ger between 0 and 32767 is generated.)-.15 F(The)5.566 E .01 +(sequence of random numbers may be initialized by assigning a v)144 108 +R .01(alue to)-.25 F/F2 9/Times-Bold@0 SF(RANDOM)2.51 E/F3 9 +/Times-Roman@0 SF(.)A F0(If)4.51 E F2(RANDOM)2.51 E F0(is)2.26 E +(unset, it loses its special properties, e)144 120 Q -.15(ve)-.25 G 2.5 +(ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G(ubsequently reset.) +-2.5 E F1(READLINE_LINE)108 136.8 Q F0 1.546(The contents of the)144 +148.8 R F1 -.18(re)4.047 G(adline).18 E F0 1.547(line b)4.047 F(uf)-.2 E +(fer)-.25 E 4.047(,f)-.4 G 1.547(or use with)-4.047 F/F4 10/Courier@0 SF +1.547(bind -x)4.047 F F0(\(see)4.047 E F2 1.547(SHELL B)4.047 F(UIL)-.09 +E 1.547(TIN COM-)-.828 F(MANDS)144 160.8 Q F0(belo)2.25 E(w\).)-.25 E F1 +(READLINE_POINT)108 177.6 Q F0 .314 +(The position of the insertion point in the)144 189.6 R F1 -.18(re)2.813 +G(adline).18 E F0 .313(line b)2.813 F(uf)-.2 E(fer)-.25 E 2.813(,f)-.4 G +.313(or use with)-2.813 F F4 .313(bind -x)2.813 F F0(\(see)2.813 E F2 +(SHELL)2.813 E -.09(BU)144 201.6 S(IL).09 E(TIN COMMANDS)-.828 E F0 +(belo)2.25 E(w\).)-.25 E F1(REPL)108 218.4 Q(Y)-.92 E F0 +(Set to the line of input read by the)144 230.4 Q F1 -.18(re)2.5 G(ad) +.18 E F0 -.2(bu)2.5 G(iltin command when no ar).2 E +(guments are supplied.)-.18 E F1(SECONDS)108 247.2 Q F0 .795(Each time \ +this parameter is referenced, the number of seconds since shell in)144 +259.2 R -.2(vo)-.4 G .795(cation is returned.).2 F .713(If a v)144 271.2 +R .712(alue is assigned to)-.25 F F2(SECONDS)3.212 E F3(,)A F0 .712 +(the v)2.962 F .712 +(alue returned upon subsequent references is the number)-.25 F .407 +(of seconds since the assignment plus the v)144 283.2 R .408 +(alue assigned.)-.25 F(If)5.408 E F2(SECONDS)2.908 E F0 .408 +(is unset, it loses its special)2.658 F(properties, e)144 295.2 Q -.15 +(ve)-.25 G 2.5(ni).15 G 2.5(fi)-2.5 G 2.5(ti)-2.5 G 2.5(ss)-2.5 G +(ubsequently reset.)-2.5 E F1(SHELLOPTS)108 312 Q F0 3.263(Ac)144 324 S +.763(olon-separated list of enabled shell options.)-3.263 F .763(Each w) +5.763 F .763(ord in the list is a v)-.1 F .763(alid ar)-.25 F .763 +(gument for the)-.18 F F1144 336 Q F0 1.173(option to the)3.673 F +F1(set)3.673 E F0 -.2(bu)3.673 G 1.173(iltin command \(see).2 F F2 1.174 +(SHELL B)3.674 F(UIL)-.09 E 1.174(TIN COMMANDS)-.828 F F0(belo)3.424 E +3.674(w\). The)-.25 F(options)3.674 E .02(appearing in)144 348 R F2 +(SHELLOPTS)2.52 E F0 .019(are those reported as)2.27 F/F5 10 /Times-Italic@0 SF(on)2.749 E F0(by)2.759 E F1 .019(set \255o)2.519 F F0 -5.019(.I)C 2.519(ft)-5.019 G .019(his v)-2.519 F .02 -(ariable is in the en)-.25 F(vironment)-.4 E(when)144 196.8 Q F1(bash) -3.142 E F0 .642(starts up, each shell option in the list will be enable\ -d before reading an)3.142 F 3.141(ys)-.15 G .641(tartup \214les.)-3.141 -F(This v)144 208.8 Q(ariable is read-only)-.25 E(.)-.65 E F1(SHL)108 -225.6 Q(VL)-.92 E F0(Incremented by one each time an instance of)144 -237.6 Q F1(bash)2.5 E F0(is started.)2.5 E F1(UID)108 254.4 Q F0 +5.019(.I)C 2.519(ft)-5.019 G .019(his v)-2.519 F .019 +(ariable is in the en)-.25 F(vironment)-.4 E(when)144 360 Q F1(bash) +3.141 E F0 .642(starts up, each shell option in the list will be enable\ +d before reading an)3.141 F 3.142(ys)-.15 G .642(tartup \214les.)-3.142 +F(This v)144 372 Q(ariable is read-only)-.25 E(.)-.65 E F1(SHL)108 388.8 +Q(VL)-.92 E F0(Incremented by one each time an instance of)144 400.8 Q +F1(bash)2.5 E F0(is started.)2.5 E F1(UID)108 417.6 Q F0 (Expands to the user ID of the current user)17.67 E 2.5(,i)-.4 G (nitialized at shell startup.)-2.5 E(This v)5 E(ariable is readonly)-.25 -E(.)-.65 E .993(The follo)108 271.2 R .993(wing v)-.25 F .994 +E(.)-.65 E .994(The follo)108 434.4 R .994(wing v)-.25 F .994 (ariables are used by the shell.)-.25 F .994(In some cases,)5.994 F F1 -(bash)3.494 E F0 .994(assigns a def)3.494 F .994(ault v)-.1 F .994 -(alue to a v)-.25 F(ariable;)-.25 E(these cases are noted belo)108 283.2 -Q -.65(w.)-.25 G F1 -.3(BA)108 300 S(SH_ENV).3 E F0 .506 -(If this parameter is set when)144 312 R F1(bash)3.006 E F0 .506(is e) -3.006 F -.15(xe)-.15 G .505(cuting a shell script, its v).15 F .505 -(alue is interpreted as a \214lename)-.25 F .354 -(containing commands to initialize the shell, as in)144 324 R F4 -(~/.bashr)2.855 E(c)-.37 E F0 5.355(.T).31 G .355(he v)-5.355 F .355 -(alue of)-.25 F F2 -.27(BA)2.855 G(SH_ENV).27 E F0 .355(is subjected) -2.605 F .525(to parameter e)144 336 R .525 +(bash)3.494 E F0 .994(assigns a def)3.494 F .994(ault v)-.1 F .993 +(alue to a v)-.25 F(ariable;)-.25 E(these cases are noted belo)108 446.4 +Q -.65(w.)-.25 G F1 -.3(BA)108 463.2 S(SH_ENV).3 E F0 .505 +(If this parameter is set when)144 475.2 R F1(bash)3.005 E F0 .505(is e) +3.005 F -.15(xe)-.15 G .506(cuting a shell script, its v).15 F .506 +(alue is interpreted as a \214lename)-.25 F .355 +(containing commands to initialize the shell, as in)144 487.2 R F5 +(~/.bashr)2.855 E(c)-.37 E F0 5.354(.T).31 G .354(he v)-5.354 F .354 +(alue of)-.25 F F2 -.27(BA)2.854 G(SH_ENV).27 E F0 .354(is subjected) +2.604 F .525(to parameter e)144 499.2 R .525 (xpansion, command substitution, and arithmetic e)-.15 F .525 -(xpansion before being interpreted)-.15 F(as a \214le name.)144 348 Q F2 --.666(PA)5 G(TH)-.189 E F0 +(xpansion before being interpreted)-.15 F(as a \214le name.)144 511.2 Q +F2 -.666(PA)5 G(TH)-.189 E F0 (is not used to search for the resultant \214le name.)2.25 E F1 -.3(BA) -108 360 S(SH_XTRA).3 E(CEFD)-.55 E F0 .48(If set to an inte)144 372 R -.48(ger corresponding to a v)-.15 F .481(alid \214le descriptor)-.25 F -(,)-.4 E F1(bash)2.981 E F0 .481(will write the trace output gener)2.981 -F(-)-.2 E 3.114(ated when)144 384 R/F5 10/Courier@0 SF 3.114(set -x) -5.614 F F0 3.114(is enabled to that \214le descriptor)5.614 F 8.114(.T) --.55 G 3.114(he \214le descriptor is closed when)-8.114 F F2 -.27(BA)144 -396 S(SH_XTRA).27 E(CEFD)-.495 E F0 .138(is unset or assigned a ne)2.388 -F 2.638(wv)-.25 G 2.638(alue. Unsetting)-2.888 F F2 -.27(BA)2.638 G +108 523.2 S(SH_XTRA).3 E(CEFD)-.55 E F0 .481(If set to an inte)144 535.2 +R .481(ger corresponding to a v)-.15 F .481(alid \214le descriptor)-.25 +F(,)-.4 E F1(bash)2.98 E F0 .48(will write the trace output gener)2.98 F +(-)-.2 E 3.114(ated when)144 547.2 R F4 3.114(set -x)5.614 F F0 3.114 +(is enabled to that \214le descriptor)5.614 F 8.114(.T)-.55 G 3.114 +(he \214le descriptor is closed when)-8.114 F F2 -.27(BA)144 559.2 S +(SH_XTRA).27 E(CEFD)-.495 E F0 .138(is unset or assigned a ne)2.388 F +2.638(wv)-.25 G 2.638(alue. Unsetting)-2.888 F F2 -.27(BA)2.638 G (SH_XTRA).27 E(CEFD)-.495 E F0 .138(or assigning it)2.388 F 2.531(the e\ mpty string causes the trace output to be sent to the standard error)144 -408 R 7.53(.N)-.55 G 2.53(ote that setting)-7.53 F F2 -.27(BA)144 420 S -(SH_XTRA).27 E(CEFD)-.495 E F0 .74(to 2 \(the standard error \214le des\ -criptor\) and then unsetting it will result in the)2.99 F -(standard error being closed.)144 432 Q F1(CDP)108 444 Q -.95(AT)-.74 G -(H).95 E F0 1.248(The search path for the)144 456 R F1(cd)3.748 E F0 -3.748(command. This)3.748 F 1.247 -(is a colon-separated list of directories in which the)3.748 F 3.795 -(shell looks for destination directories speci\214ed by the)144 468 R F1 -(cd)6.295 E F0 6.296(command. A)6.296 F 3.796(sample v)6.296 F 3.796 -(alue is)-.25 F F5(".:~:/usr")144 480 Q F0(.)A F1(COLUMNS)108 492 Q F0 -.425(Used by the)144 504 R F1(select)2.925 E F0 -.2(bu)2.925 G .425(ilt\ -in command to determine the terminal width when printing selection list\ -s.).2 F(Automatically set upon receipt of a)144 516 Q F2(SIGWINCH)2.5 E -F3(.)A F1(COMPREPL)108 528 Q(Y)-.92 E F0 .847(An array v)144 540 R .848 -(ariable from which)-.25 F F1(bash)3.348 E F0 .848 +571.2 R 7.531(.N)-.55 G 2.531(ote that setting)-7.531 F F2 -.27(BA)144 +583.2 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.991 F +(standard error being closed.)144 595.2 Q F1(CDP)108 607.2 Q -.95(AT) +-.74 G(H).95 E F0 1.247(The search path for the)144 619.2 R F1(cd)3.747 +E F0 3.747(command. This)3.747 F 1.248 +(is a colon-separated list of directories in which the)3.747 F 3.796 +(shell looks for destination directories speci\214ed by the)144 631.2 R +F1(cd)6.295 E F0 6.295(command. A)6.295 F 3.795(sample v)6.295 F 3.795 +(alue is)-.25 F F4(".:~:/usr")144 643.2 Q F0(.)A F1(COLUMNS)108 655.2 Q +F0 .425(Used by the)144 667.2 R F1(select)2.925 E F0 -.2(bu)2.925 G .425 +(iltin command to determine the terminal width when printing selection \ +lists.).2 F(Automatically set upon receipt of a)144 679.2 Q F2(SIGWINCH) +2.5 E F3(.)A F1(COMPREPL)108 691.2 Q(Y)-.92 E F0 .848(An array v)144 +703.2 R .848(ariable from which)-.25 F F1(bash)3.348 E F0 .848 (reads the possible completions generated by a shell function)3.348 F -(in)144 552 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(db).1 G 2.5(yt)-2.5 G +(in)144 715.2 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(db).1 G 2.5(yt)-2.5 G (he programmable completion f)-2.5 E(acility \(see)-.1 E F1(Pr)2.5 E -(ogrammable Completion)-.18 E F0(belo)2.5 E(w\).)-.25 E F1(EMA)108 564 Q -(CS)-.55 E F0(If)144 576 Q F1(bash)2.536 E F0 .036(\214nds this v)2.536 -F .036(ariable in the en)-.25 F .036 -(vironment when the shell starts with v)-.4 F(alue)-.25 E F5(t)2.535 E -F0 2.535(,i)C 2.535(ta)-2.535 G .035(ssumes that the)-2.535 F -(shell is running in an emacs shell b)144 588 Q(uf)-.2 E -(fer and disables line editing.)-.25 E F1(ENV)108 600 Q F0(Similar to) -14.89 E F2 -.27(BA)2.5 G(SH_ENV).27 E F3(;)A F0 -(used when the shell is in)2.25 E -.2(vo)-.4 G -.1(ke).2 G 2.5(di).1 G -2.5(nP)-2.5 G(OSIX mode.)-2.5 E F1(FCEDIT)108 612 Q F0(The def)144 624 Q -(ault editor for the)-.1 E F1(fc)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 -E F1(FIGNORE)108 636 Q F0 2.598(Ac)144 648 S .098 -(olon-separated list of suf)-2.598 F<8c78>-.25 E .098 -(es to ignore when performing \214lename completion \(see)-.15 F F2 -(READLINE)2.599 E F0(belo)144 660 Q 2.705(w\). A)-.25 F .205 -(\214lename whose suf)2.705 F .205(\214x matches one of the entries in) --.25 F F2(FIGNORE)2.705 E F0 .205(is e)2.455 F .204 -(xcluded from the list)-.15 F(of matched \214lenames.)144 672 Q 2.5(As)5 -G(ample v)-2.5 E(alue is)-.25 E F5(".o:~")2.5 E F0(.)A F1(FUNCNEST)108 -684 Q F0 1.78(If set to a numeric v)144 696 R 1.78 -(alue greater than 0, de\214nes a maximum function nesting le)-.25 F --.15(ve)-.25 G 4.28(l. Function).15 F(in)144 708 Q -.2(vo)-.4 G -(cations that e).2 E(xceed this nesting le)-.15 E -.15(ve)-.25 G 2.5(lw) -.15 G(ill cause the current command to abort.)-2.5 E(GNU Bash-4.1)72 768 -Q(2010 June 12)147.345 E(13)197.335 E 0 Cg EP +(ogrammable Completion)-.18 E F0(belo)2.5 E(w\).)-.25 E(GNU Bash-4.2)72 +768 Q(2010 July 21)148.175 E(13)198.165 E 0 Cg EP %%Page: 14 14 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(GLOBIGNORE)108 84 Q F0 3.118(Ac)144 96 S -.618(olon-separated list of patterns de\214ning the set of \214lenames \ -to be ignored by pathname e)-3.118 F(xpan-)-.15 E 3.131(sion. If)144 108 -R 3.132<618c>3.131 G .632(lename matched by a pathname e)-3.132 F .632 -(xpansion pattern also matches one of the patterns in)-.15 F/F2 9 -/Times-Bold@0 SF(GLOBIGNORE)144 120 Q/F3 9/Times-Roman@0 SF(,)A F0 -(it is remo)2.25 E -.15(ve)-.15 G 2.5(df).15 G(rom the list of matches.) --2.5 E F1(HISTCONTR)108 132 Q(OL)-.3 E F0 2.654(Ac)144 144 S .153 -(olon-separated list of v)-2.654 F .153(alues controlling ho)-.25 F -2.653(wc)-.25 G .153(ommands are sa)-2.653 F -.15(ve)-.2 G 2.653(do).15 -G 2.653(nt)-2.653 G .153(he history list.)-2.653 F .153(If the list) -5.153 F .49(of v)144 156 R .49(alues includes)-.25 F/F4 10 -/Times-Italic@0 SF(ignor)2.99 E(espace)-.37 E F0 2.99(,l).18 G .49 -(ines which be)-2.99 F .491(gin with a)-.15 F F1(space)2.991 E F0 .491 -(character are not sa)2.991 F -.15(ve)-.2 G 2.991(di).15 G 2.991(nt) --2.991 G .491(he his-)-2.991 F .558(tory list.)144 168 R 3.058(Av)5.558 -G .558(alue of)-3.308 F F4(ignor)3.068 E(edups)-.37 E F0 .558 -(causes lines matching the pre)3.328 F .557 -(vious history entry to not be sa)-.25 F -.15(ve)-.2 G(d.).15 E 2.958 -(Av)144 180 S .458(alue of)-3.208 F F4(ignor)2.968 E(eboth)-.37 E F0 -.458(is shorthand for)3.238 F F4(ignor)2.959 E(espace)-.37 E F0(and) -2.959 E F4(ignor)2.959 E(edups)-.37 E F0 5.459(.A)C -.25(va)-2.5 G .459 -(lue of).25 F F4(er)2.959 E(asedups)-.15 E F0(causes)2.959 E .699 -(all pre)144 192 R .698 +-.35 E/F1 10/Times-Bold@0 SF(EMA)108 84 Q(CS)-.55 E F0(If)144 96 Q F1 +(bash)2.535 E F0 .035(\214nds this v)2.535 F .035(ariable in the en)-.25 +F .036(vironment when the shell starts with v)-.4 F(alue)-.25 E/F2 10 +/Courier@0 SF(t)2.536 E F0 2.536(,i)C 2.536(ta)-2.536 G .036 +(ssumes that the)-2.536 F(shell is running in an emacs shell b)144 108 Q +(uf)-.2 E(fer and disables line editing.)-.25 E F1(ENV)108 120 Q F0 +(Similar to)14.89 E/F3 9/Times-Bold@0 SF -.27(BA)2.5 G(SH_ENV).27 E/F4 9 +/Times-Roman@0 SF(;)A F0(used when the shell is in)2.25 E -.2(vo)-.4 G +-.1(ke).2 G 2.5(di).1 G 2.5(nP)-2.5 G(OSIX mode.)-2.5 E F1(FCEDIT)108 +132 Q F0(The def)144 144 Q(ault editor for the)-.1 E F1(fc)2.5 E F0 -.2 +(bu)2.5 G(iltin command.).2 E F1(FIGNORE)108 156 Q F0 2.599(Ac)144 168 S +.098(olon-separated list of suf)-2.599 F<8c78>-.25 E .098 +(es to ignore when performing \214lename completion \(see)-.15 F F3 +(READLINE)2.598 E F0(belo)144 180 Q 2.704(w\). A)-.25 F .204 +(\214lename whose suf)2.704 F .205(\214x matches one of the entries in) +-.25 F F3(FIGNORE)2.705 E F0 .205(is e)2.455 F .205 +(xcluded from the list)-.15 F(of matched \214lenames.)144 192 Q 2.5(As)5 +G(ample v)-2.5 E(alue is)-.25 E F2(".o:~")2.5 E F0(.)A F1(FUNCNEST)108 +204 Q F0 1.78(If set to a numeric v)144 216 R 1.78 +(alue greater than 0, de\214nes a maximum function nesting le)-.25 F +-.15(ve)-.25 G 4.28(l. Function).15 F(in)144 228 Q -.2(vo)-.4 G +(cations that e).2 E(xceed this nesting le)-.15 E -.15(ve)-.25 G 2.5(lw) +.15 G(ill cause the current command to abort.)-2.5 E F1(GLOBIGNORE)108 +240 Q F0 3.118(Ac)144 252 S .618(olon-separated list of patterns de\214\ +ning the set of \214lenames to be ignored by pathname e)-3.118 F(xpan-) +-.15 E 3.132(sion. If)144 264 R 3.132<618c>3.132 G .632 +(lename matched by a pathname e)-3.132 F .632 +(xpansion pattern also matches one of the patterns in)-.15 F F3 +(GLOBIGNORE)144 276 Q F4(,)A F0(it is remo)2.25 E -.15(ve)-.15 G 2.5(df) +.15 G(rom the list of matches.)-2.5 E F1(HISTCONTR)108 288 Q(OL)-.3 E F0 +2.653(Ac)144 300 S .153(olon-separated list of v)-2.653 F .153 +(alues controlling ho)-.25 F 2.653(wc)-.25 G .153(ommands are sa)-2.653 +F -.15(ve)-.2 G 2.653(do).15 G 2.653(nt)-2.653 G .153(he history list.) +-2.653 F .154(If the list)5.153 F .491(of v)144 312 R .491 +(alues includes)-.25 F/F5 10/Times-Italic@0 SF(ignor)2.991 E(espace)-.37 +E F0 2.991(,l).18 G .491(ines which be)-2.991 F .491(gin with a)-.15 F +F1(space)2.991 E F0 .49(character are not sa)2.991 F -.15(ve)-.2 G 2.99 +(di).15 G 2.99(nt)-2.99 G .49(he his-)-2.99 F .557(tory list.)144 324 R +3.057(Av)5.557 G .557(alue of)-3.307 F F5(ignor)3.067 E(edups)-.37 E F0 +.557(causes lines matching the pre)3.327 F .558 +(vious history entry to not be sa)-.25 F -.15(ve)-.2 G(d.).15 E 2.959 +(Av)144 336 S .459(alue of)-3.209 F F5(ignor)2.969 E(eboth)-.37 E F0 +.459(is shorthand for)3.239 F F5(ignor)2.959 E(espace)-.37 E F0(and) +2.959 E F5(ignor)2.958 E(edups)-.37 E F0 5.458(.A)C -.25(va)-2.5 G .458 +(lue of).25 F F5(er)2.958 E(asedups)-.15 E F0(causes)2.958 E .698 +(all pre)144 348 R .698 (vious lines matching the current line to be remo)-.25 F -.15(ve)-.15 G -3.198(df).15 G .698(rom the history list before that line is)-3.198 F -(sa)144 204 Q -.15(ve)-.2 G 2.763(d. An).15 F 2.763(yv)-.15 G .263 -(alue not in the abo)-3.013 F .563 -.15(ve l)-.15 H .263 -(ist is ignored.).15 F(If)5.263 E F2(HISTCONTR)2.763 E(OL)-.27 E F0 .264 -(is unset, or does not include)2.513 F 2.942(av)144 216 S .442(alid v) --3.192 F .442(alue, all lines read by the shell parser are sa)-.25 F --.15(ve)-.2 G 2.941(do).15 G 2.941(nt)-2.941 G .441 -(he history list, subject to the v)-2.941 F .441(alue of)-.25 F F2 -(HISTIGNORE)144 228 Q F3(.)A F0 1.981(The second and subsequent lines o\ -f a multi-line compound command are not)6.481 F -(tested, and are added to the history re)144 240 Q -.05(ga)-.15 G -(rdless of the v).05 E(alue of)-.25 E F2(HISTCONTR)2.5 E(OL)-.27 E F3(.) -A F1(HISTFILE)108 252 Q F0 .181 -(The name of the \214le in which command history is sa)144 264 R -.15 -(ve)-.2 G 2.681(d\().15 G(see)-2.681 E F2(HIST)2.681 E(OR)-.162 E(Y) --.315 E F0(belo)2.431 E 2.681(w\). The)-.25 F(def)2.681 E .181(ault v) --.1 F(alue)-.25 E(is)144 276 Q F4(~/.bash_history)2.5 E F0 5(.I)C 2.5 +3.198(df).15 G .699(rom the history list before that line is)-3.198 F +(sa)144 360 Q -.15(ve)-.2 G 2.764(d. An).15 F 2.764(yv)-.15 G .264 +(alue not in the abo)-3.014 F .563 -.15(ve l)-.15 H .263 +(ist is ignored.).15 F(If)5.263 E F3(HISTCONTR)2.763 E(OL)-.27 E F0 .263 +(is unset, or does not include)2.513 F 2.941(av)144 372 S .441(alid v) +-3.191 F .441(alue, all lines read by the shell parser are sa)-.25 F +-.15(ve)-.2 G 2.942(do).15 G 2.942(nt)-2.942 G .442 +(he history list, subject to the v)-2.942 F .442(alue of)-.25 F F3 +(HISTIGNORE)144 384 Q F4(.)A F0 1.981(The second and subsequent lines o\ +f a multi-line compound command are not)6.482 F +(tested, and are added to the history re)144 396 Q -.05(ga)-.15 G +(rdless of the v).05 E(alue of)-.25 E F3(HISTCONTR)2.5 E(OL)-.27 E F4(.) +A F1(HISTFILE)108 408 Q F0 .181 +(The name of the \214le in which command history is sa)144 420 R -.15 +(ve)-.2 G 2.681(d\().15 G(see)-2.681 E F3(HIST)2.681 E(OR)-.162 E(Y) +-.315 E F0(belo)2.431 E 2.682(w\). The)-.25 F(def)2.682 E .182(ault v) +-.1 F(alue)-.25 E(is)144 432 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 an interacti)-2.5 E .3 -.15(ve s)-.25 H(hell e).15 E -(xits.)-.15 E F1(HISTFILESIZE)108 288 Q F0 1.622 -(The maximum number of lines contained in the history \214le.)144 300 R -1.623(When this v)6.623 F 1.623(ariable is assigned a)-.25 F -.25(va)144 -312 S .305(lue, the history \214le is truncated, if necessary).25 F +(xits.)-.15 E F1(HISTFILESIZE)108 444 Q F0 1.623 +(The maximum number of lines contained in the history \214le.)144 456 R +1.622(When this v)6.623 F 1.622(ariable is assigned a)-.25 F -.25(va)144 +468 S .305(lue, the history \214le is truncated, if necessary).25 F 2.805(,b)-.65 G 2.805(yr)-2.805 G(emo)-2.805 E .305 -(ving the oldest entries, to contain no more)-.15 F .601 -(than that number of lines.)144 324 R .601(The def)5.601 F .602(ault v) --.1 F .602(alue is 500.)-.25 F .602 +(ving the oldest entries, to contain no more)-.15 F .602 +(than that number of lines.)144 480 R .602(The def)5.602 F .602(ault v) +-.1 F .602(alue is 500.)-.25 F .601 (The history \214le is also truncated to this size)5.602 F -(after writing it when an interacti)144 336 Q .3 -.15(ve s)-.25 H -(hell e).15 E(xits.)-.15 E F1(HISTIGNORE)108 348 Q F0 2.658(Ac)144 360 S -.158(olon-separated list of patterns used to decide which command lines\ - should be sa)-2.658 F -.15(ve)-.2 G 2.657(do).15 G 2.657(nt)-2.657 G -.157(he his-)-2.657 F .707(tory list.)144 372 R .707 -(Each pattern is anchored at the be)5.707 F .708 -(ginning of the line and must match the complete line)-.15 F .626 -(\(no implicit `)144 384 R F1(*)A F0 3.126('i)C 3.126(sa)-3.126 G 3.126 -(ppended\). Each)-3.126 F .626(pattern is tested ag)3.126 F .625 -(ainst the line after the checks speci\214ed by)-.05 F F2(HISTCONTR)144 -396 Q(OL)-.27 E F0 1.793(are applied.)4.043 F 1.793 +(after writing it when an interacti)144 492 Q .3 -.15(ve s)-.25 H +(hell e).15 E(xits.)-.15 E F1(HISTIGNORE)108 504 Q F0 2.657(Ac)144 516 S +.157(olon-separated list of patterns used to decide which command lines\ + should be sa)-2.657 F -.15(ve)-.2 G 2.658(do).15 G 2.658(nt)-2.658 G +.158(he his-)-2.658 F .708(tory list.)144 528 R .708 +(Each pattern is anchored at the be)5.708 F .707 +(ginning of the line and must match the complete line)-.15 F .625 +(\(no implicit `)144 540 R F1(*)A F0 3.125('i)C 3.125(sa)-3.125 G 3.125 +(ppended\). Each)-3.125 F .626(pattern is tested ag)3.125 F .626 +(ainst the line after the checks speci\214ed by)-.05 F F3(HISTCONTR)144 +552 Q(OL)-.27 E F0 1.793(are applied.)4.043 F 1.793 (In addition to the normal shell pattern matching characters, `)6.793 F -F1(&)A F0(')A 2.515(matches the pre)144 408 R 2.515(vious history line.) +F1(&)A F0(')A 2.514(matches the pre)144 564 R 2.514(vious history line.) -.25 F(`)7.514 E F1(&)A F0 5.014('m)C 2.514 -(ay be escaped using a backslash; the backslash is)-5.014 F(remo)144 420 -Q -.15(ve)-.15 G 3.352(db).15 G .852(efore attempting a match.)-3.352 F +(ay be escaped using a backslash; the backslash is)-5.014 F(remo)144 576 +Q -.15(ve)-.15 G 3.353(db).15 G .853(efore attempting a match.)-3.353 F .852(The second and subsequent lines of a multi-line compound)5.852 F -(command are not tested, and are added to the history re)144 432 Q -.05 -(ga)-.15 G(rdless of the v).05 E(alue of)-.25 E F2(HISTIGNORE)2.5 E F3 -(.)A F1(HISTSIZE)108 444 Q F0 1.942 -(The number of commands to remember in the command history \(see)144 456 -R F2(HIST)4.442 E(OR)-.162 E(Y)-.315 E F0(belo)4.192 E 4.442(w\). The) --.25 F(def)144 468 Q(ault v)-.1 E(alue is 500.)-.25 E F1(HISTTIMEFORMA) -108 480 Q(T)-.95 E F0 .951(If this v)144 492 R .951 -(ariable is set and not null, its v)-.25 F .952 -(alue is used as a format string for)-.25 F F4(strftime)3.452 E F0 .952 -(\(3\) to print the)B .673 -(time stamp associated with each history entry displayed by the)144 504 -R F1(history)3.173 E F0 -.2(bu)3.172 G 3.172(iltin. If).2 F .672(this v) -3.172 F .672(ariable is)-.25 F .144 -(set, time stamps are written to the history \214le so the)144 516 R +(command are not tested, and are added to the history re)144 588 Q -.05 +(ga)-.15 G(rdless of the v).05 E(alue of)-.25 E F3(HISTIGNORE)2.5 E F4 +(.)A F1(HISTSIZE)108 600 Q F0 1.942 +(The number of commands to remember in the command history \(see)144 612 +R F3(HIST)4.443 E(OR)-.162 E(Y)-.315 E F0(belo)4.193 E 4.443(w\). The) +-.25 F(def)144 624 Q(ault v)-.1 E(alue is 500.)-.25 E F1(HISTTIMEFORMA) +108 636 Q(T)-.95 E F0 .952(If this v)144 648 R .952 +(ariable is set and not null, its v)-.25 F .951 +(alue is used as a format string for)-.25 F F5(strftime)3.451 E F0 .951 +(\(3\) to print the)B .672 +(time stamp associated with each history entry displayed by the)144 660 +R F1(history)3.173 E F0 -.2(bu)3.173 G 3.173(iltin. If).2 F .673(this v) +3.173 F .673(ariable is)-.25 F .144 +(set, time stamps are written to the history \214le so the)144 672 R 2.644(ym)-.15 G .144(ay be preserv)-2.644 F .144 -(ed across shell sessions.)-.15 F(This)5.145 E(uses the history comment\ - character to distinguish timestamps from other history lines.)144 528 Q -F1(HOME)108 540 Q F0 1.27 -(The home directory of the current user; the def)144 552 R 1.27(ault ar) +(ed across shell sessions.)-.15 F(This)5.144 E(uses the history comment\ + character to distinguish timestamps from other history lines.)144 684 Q +F1(HOME)108 696 Q F0 1.27 +(The home directory of the current user; the def)144 708 R 1.27(ault ar) -.1 F 1.27(gument for the)-.18 F F1(cd)3.77 E F0 -.2(bu)3.77 G 1.27 -(iltin command.).2 F(The)6.27 E -.25(va)144 564 S(lue of this v).25 E -(ariable is also used when performing tilde e)-.25 E(xpansion.)-.15 E F1 -(HOSTFILE)108 576 Q F0 1.015 -(Contains the name of a \214le in the same format as)144 588 R F4 -(/etc/hosts)5.181 E F0 1.015(that should be read when the shell)5.181 F -.551(needs to complete a hostname.)144 600 R .551 -(The list of possible hostname completions may be changed while)5.551 F -1.058(the shell is running; the ne)144 612 R 1.059 -(xt time hostname completion is attempted after the v)-.15 F 1.059 -(alue is changed,)-.25 F F1(bash)144 624 Q F0 .138 -(adds the contents of the ne)2.639 F 2.638<778c>-.25 G .138(le to the e) --2.638 F .138(xisting list.)-.15 F(If)5.138 E F2(HOSTFILE)2.638 E F0 -.138(is set, b)2.388 F .138(ut has no v)-.2 F .138(alue, or)-.25 F .517 -(does not name a readable \214le,)144 636 R F1(bash)3.017 E F0 .517 -(attempts to read)3.017 F F4(/etc/hosts)4.684 E F0 .518 -(to obtain the list of possible host-)4.684 F(name completions.)144 648 -Q(When)5 E F2(HOSTFILE)2.5 E F0(is unset, the hostname list is cleared.) -2.25 E F1(IFS)108 660 Q F0(The)20.44 E F4 .556(Internal F)3.636 F .556 -(ield Separ)-.45 F(ator)-.15 E F0 .556(that is used for w)3.786 F .556 -(ord splitting after e)-.1 F .555(xpansion and to split lines into)-.15 -F -.1(wo)144 672 S(rds with the).1 E F1 -.18(re)2.5 G(ad).18 E F0 -.2 -(bu)2.5 G(iltin command.).2 E(The def)5 E(ault v)-.1 E(alue is `)-.25 E -(`')-.25 E('.)-.74 E F1(IGNOREEOF)108 684 Q -F0 .503(Controls the action of an interacti)144 696 R .803 -.15(ve s) --.25 H .503(hell on receipt of an).15 F F2(EOF)3.003 E F0 .503 -(character as the sole input.)2.753 F .504(If set,)5.504 F .426(the v) -144 708 R .426(alue is the number of consecuti)-.25 F -.15(ve)-.25 G F2 -(EOF)3.076 E F0 .426 -(characters which must be typed as the \214rst characters)2.676 F .302 -(on an input line before)144 720 R F1(bash)2.802 E F0 -.15(ex)2.802 G -2.802(its. If).15 F .302(the v)2.802 F .302(ariable e)-.25 F .302 -(xists b)-.15 F .302(ut does not ha)-.2 F .602 -.15(ve a n)-.2 H .302 -(umeric v).15 F .303(alue, or has)-.25 F(GNU Bash-4.1)72 768 Q -(2010 June 12)147.345 E(14)197.335 E 0 Cg EP +(iltin command.).2 F(The)6.27 E -.25(va)144 720 S(lue of this v).25 E +(ariable is also used when performing tilde e)-.25 E(xpansion.)-.15 E +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(14)198.165 E 0 Cg EP %%Page: 15 15 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E(no v)144 84 Q(alue, the def)-.25 E(ault v)-.1 E(alue is 10.)-.25 -E(If it does not e)5 E(xist,)-.15 E/F1 9/Times-Bold@0 SF(EOF)2.5 E F0 -(signi\214es the end of input to the shell.)2.25 E/F2 10/Times-Bold@0 SF -(INPUTRC)108 96 Q F0 1.436(The \214lename for the)144 108 R F2 -.18(re) +-.35 E/F1 10/Times-Bold@0 SF(HOSTFILE)108 84 Q F0 1.015 +(Contains the name of a \214le in the same format as)144 96 R/F2 10 +/Times-Italic@0 SF(/etc/hosts)5.181 E F0 1.015 +(that should be read when the shell)5.181 F .55 +(needs to complete a hostname.)144 108 R .551 +(The list of possible hostname completions may be changed while)5.551 F +1.059(the shell is running; the ne)144 120 R 1.059 +(xt time hostname completion is attempted after the v)-.15 F 1.058 +(alue is changed,)-.25 F F1(bash)144 132 Q F0 .138 +(adds the contents of the ne)2.638 F 2.638<778c>-.25 G .138(le to the e) +-2.638 F .138(xisting list.)-.15 F(If)5.138 E/F3 9/Times-Bold@0 SF +(HOSTFILE)2.638 E F0 .138(is set, b)2.388 F .139(ut has no v)-.2 F .139 +(alue, or)-.25 F .518(does not name a readable \214le,)144 144 R F1 +(bash)3.018 E F0 .518(attempts to read)3.018 F F2(/etc/hosts)4.683 E F0 +.517(to obtain the list of possible host-)4.683 F(name completions.)144 +156 Q(When)5 E F3(HOSTFILE)2.5 E F0 +(is unset, the hostname list is cleared.)2.25 E F1(IFS)108 168 Q F0(The) +20.44 E F2 .555(Internal F)3.635 F .555(ield Separ)-.45 F(ator)-.15 E F0 +.555(that is used for w)3.785 F .556(ord splitting after e)-.1 F .556 +(xpansion and to split lines into)-.15 F -.1(wo)144 180 S(rds with the) +.1 E F1 -.18(re)2.5 G(ad).18 E F0 -.2(bu)2.5 G(iltin command.).2 E +(The def)5 E(ault v)-.1 E(alue is `)-.25 E(`')-.25 E('.)-.74 E F1(IGNOREEOF)108 192 Q F0 .503 +(Controls the action of an interacti)144 204 R .803 -.15(ve s)-.25 H +.503(hell on receipt of an).15 F F3(EOF)3.003 E F0 .503 +(character as the sole input.)2.753 F .503(If set,)5.503 F .426(the v) +144 216 R .426(alue is the number of consecuti)-.25 F -.15(ve)-.25 G F3 +(EOF)3.076 E F0 .426 +(characters which must be typed as the \214rst characters)2.676 F .303 +(on an input line before)144 228 R F1(bash)2.802 E F0 -.15(ex)2.802 G +2.802(its. If).15 F .302(the v)2.802 F .302(ariable e)-.25 F .302 +(xists b)-.15 F .302(ut does not ha)-.2 F .602 -.15(ve a n)-.2 H .302 +(umeric v).15 F .302(alue, or has)-.25 F(no v)144 240 Q(alue, the def) +-.25 E(ault v)-.1 E(alue is 10.)-.25 E(If it does not e)5 E(xist,)-.15 E +F3(EOF)2.5 E F0(signi\214es the end of input to the shell.)2.25 E F1 +(INPUTRC)108 252 Q F0 1.435(The \214lename for the)144 264 R F1 -.18(re) 3.936 G(adline).18 E F0 1.436(startup \214le, o)3.936 F -.15(ve)-.15 G -1.436(rriding the def).15 F 1.436(ault of)-.1 F/F3 10/Times-Italic@0 SF -(~/.inputr)5.602 E(c)-.37 E F0(\(see)5.601 E F1(READLINE)3.935 E F0 -(belo)144 120 Q(w\).)-.25 E F2(LANG)108 132 Q F0 1.239 -(Used to determine the locale cate)7.11 F 1.239(gory for an)-.15 F 3.739 -(yc)-.15 G(ate)-3.739 E 1.24(gory not speci\214cally selected with a v) --.15 F(ariable)-.25 E(starting with)144 144 Q F2(LC_)2.5 E F0(.)A F2 -(LC_ALL)108 156 Q F0 .974(This v)144 168 R .974(ariable o)-.25 F -.15 -(ve)-.15 G .974(rrides the v).15 F .973(alue of)-.25 F F1(LANG)3.473 E -F0 .973(and an)3.223 F 3.473(yo)-.15 G(ther)-3.473 E F2(LC_)3.473 E F0 --.25(va)3.473 G .973(riable specifying a locale cate-).25 F(gory)144 180 -Q(.)-.65 E F2(LC_COLLA)108 192 Q(TE)-.95 E F0 .411(This v)144 204 R .412 -(ariable determines the collation order used when sorting the results o\ -f pathname e)-.25 F(xpansion,)-.15 E 1.465(and determines the beha)144 -216 R 1.465(vior of range e)-.2 F 1.464(xpressions, equi)-.15 F -.25(va) --.25 G 1.464(lence classes, and collating sequences).25 F -(within pathname e)144 228 Q(xpansion and pattern matching.)-.15 E F2 -(LC_CTYPE)108 240 Q F0 1.935(This v)144 252 R 1.936 +1.436(rriding the def).15 F 1.436(ault of)-.1 F F2(~/.inputr)5.602 E(c) +-.37 E F0(\(see)5.602 E F3(READLINE)3.936 E F0(belo)144 276 Q(w\).)-.25 +E F1(LANG)108 288 Q F0 1.24(Used to determine the locale cate)7.11 F +1.239(gory for an)-.15 F 3.739(yc)-.15 G(ate)-3.739 E 1.239 +(gory not speci\214cally selected with a v)-.15 F(ariable)-.25 E +(starting with)144 300 Q F1(LC_)2.5 E F0(.)A F1(LC_ALL)108 312 Q F0 .973 +(This v)144 324 R .973(ariable o)-.25 F -.15(ve)-.15 G .973 +(rrides the v).15 F .973(alue of)-.25 F F3(LANG)3.473 E F0 .973(and an) +3.223 F 3.473(yo)-.15 G(ther)-3.473 E F1(LC_)3.473 E F0 -.25(va)3.473 G +.974(riable specifying a locale cate-).25 F(gory)144 336 Q(.)-.65 E F1 +(LC_COLLA)108 348 Q(TE)-.95 E F0 .412(This v)144 360 R .412(ariable det\ +ermines the collation order used when sorting the results of pathname e) +-.25 F(xpansion,)-.15 E 1.464(and determines the beha)144 372 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(within pathname e)144 +384 Q(xpansion and pattern matching.)-.15 E F1(LC_CTYPE)108 396 Q F0 +1.936(This v)144 408 R 1.936 (ariable determines the interpretation of characters and the beha)-.25 F -1.936(vior of character classes)-.2 F(within pathname e)144 264 Q -(xpansion and pattern matching.)-.15 E F2(LC_MESSA)108 276 Q(GES)-.55 E -F0(This v)144 288 Q(ariable determines the locale used to translate dou\ -ble-quoted strings preceded by a)-.25 E F2($)2.5 E F0(.)A F2(LC_NUMERIC) -108 300 Q F0(This v)144 312 Q(ariable determines the locale cate)-.25 E -(gory used for number formatting.)-.15 E F2(LINES)108 324 Q F0 1.219 -(Used by the)5.99 F F2(select)3.719 E F0 -.2(bu)3.719 G 1.218(iltin com\ +1.935(vior of character classes)-.2 F(within pathname e)144 420 Q +(xpansion and pattern matching.)-.15 E F1(LC_MESSA)108 432 Q(GES)-.55 E +F0(This v)144 444 Q(ariable determines the locale used to translate dou\ +ble-quoted strings preceded by a)-.25 E F1($)2.5 E F0(.)A F1(LC_NUMERIC) +108 456 Q F0(This v)144 468 Q(ariable determines the locale cate)-.25 E +(gory used for number formatting.)-.15 E F1(LINES)108 480 Q F0 1.218 +(Used by the)5.99 F F1(select)3.718 E F0 -.2(bu)3.718 G 1.219(iltin com\ mand to determine the column length for printing selection lists.).2 F -(Automatically set upon receipt of a)144 336 Q F1(SIGWINCH)2.5 E/F4 9 -/Times-Roman@0 SF(.)A F2(MAIL)108 348 Q F0 .187 -(If this parameter is set to a \214le name and the)8.78 F F1(MAILP)2.687 -E -.855(AT)-.666 G(H).855 E F0 -.25(va)2.438 G .188(riable is not set,) -.25 F F2(bash)2.688 E F0 .188(informs the user)2.688 F(of the arri)144 -360 Q -.25(va)-.25 G 2.5(lo).25 G 2.5(fm)-2.5 G -(ail in the speci\214ed \214le.)-2.5 E F2(MAILCHECK)108 372 Q F0 .099 -(Speci\214es ho)144 384 R 2.599(wo)-.25 G .099(ften \(in seconds\)) --2.599 F F2(bash)2.598 E F0 .098(checks for mail.)2.598 F .098(The def) -5.098 F .098(ault is 60 seconds.)-.1 F .098(When it is time)5.098 F .223 +(Automatically set upon receipt of a)144 492 Q F3(SIGWINCH)2.5 E/F4 9 +/Times-Roman@0 SF(.)A F1(MAIL)108 504 Q F0 .188 +(If this parameter is set to a \214le name and the)8.78 F F3(MAILP)2.687 +E -.855(AT)-.666 G(H).855 E F0 -.25(va)2.437 G .187(riable is not set,) +.25 F F1(bash)2.687 E F0 .187(informs the user)2.687 F(of the arri)144 +516 Q -.25(va)-.25 G 2.5(lo).25 G 2.5(fm)-2.5 G +(ail in the speci\214ed \214le.)-2.5 E F1(MAILCHECK)108 528 Q F0 .098 +(Speci\214es ho)144 540 R 2.598(wo)-.25 G .098(ften \(in seconds\)) +-2.598 F F1(bash)2.598 E F0 .098(checks for mail.)2.598 F .098(The def) +5.098 F .098(ault is 60 seconds.)-.1 F .099(When it is time)5.099 F .224 (to check for mail, the shell does so before displaying the primary pro\ -mpt.)144 396 R .224(If this v)5.224 F .224(ariable is unset,)-.25 F .066 -(or set to a v)144 408 R .066(alue that is not a number greater than or\ - equal to zero, the shell disables mail checking.)-.25 F F2(MAILP)108 -420 Q -.95(AT)-.74 G(H).95 E F0 2.814(Ac)144 432 S .314 -(olon-separated list of \214le names to be check)-2.814 F .314 +mpt.)144 552 R .223(If this v)5.223 F .223(ariable is unset,)-.25 F .066 +(or set to a v)144 564 R .066(alue that is not a number greater than or\ + equal to zero, the shell disables mail checking.)-.25 F F1(MAILP)108 +576 Q -.95(AT)-.74 G(H).95 E F0 2.815(Ac)144 588 S .314 +(olon-separated list of \214le names to be check)-2.815 F .314 (ed for mail.)-.1 F .314(The message to be printed when mail)5.314 F -(arri)144 444 Q -.15(ve)-.25 G 3.42(si).15 G 3.42(nap)-3.42 G .92(artic\ +(arri)144 600 Q -.15(ve)-.25 G 3.42(si).15 G 3.42(nap)-3.42 G .92(artic\ ular \214le may be speci\214ed by separating the \214le name from the m\ -essage with a)-3.42 F 2.807(`?'. When)144 456 R .307(used in the te) -2.807 F .308(xt of the message,)-.15 F F2($_)2.808 E F0 -.15(ex)2.808 G -.308(pands to the name of the current mail\214le.).15 F(Exam-)5.308 E -(ple:)144 468 Q F2(MAILP)144 480 Q -.95(AT)-.74 G(H).95 E F0(=\010/v)A +essage with a)-3.42 F 2.808(`?'. When)144 612 R .308(used in the te) +2.808 F .308(xt of the message,)-.15 F F1($_)2.808 E F0 -.15(ex)2.808 G +.308(pands to the name of the current mail\214le.).15 F(Exam-)5.307 E +(ple:)144 624 Q F1(MAILP)144 636 Q -.95(AT)-.74 G(H).95 E F0(=\010/v)A (ar/mail/bfox?"Y)-.25 E(ou ha)-1.1 E .3 -.15(ve m)-.2 H -(ail":~/shell\255mail?"$_ has mail!"\010).15 E F2(Bash)144 492 Q F0 .389 -(supplies a def)2.889 F .389(ault v)-.1 F .389(alue for this v)-.25 F -.389(ariable, b)-.25 F .388 +(ail":~/shell\255mail?"$_ has mail!"\010).15 E F1(Bash)144 648 Q F0 .388 +(supplies a def)2.888 F .388(ault v)-.1 F .388(alue for this v)-.25 F +.388(ariable, b)-.25 F .389 (ut the location of the user mail \214les that it uses is)-.2 F -(system dependent \(e.g., /v)144 504 Q(ar/mail/)-.25 E F2($USER)A F0 -(\).)A F2(OPTERR)108 516 Q F0 .389(If set to the v)144 528 R .389 -(alue 1,)-.25 F F2(bash)2.889 E F0 .389 -(displays error messages generated by the)2.889 F F2(getopts)2.89 E F0 --.2(bu)2.89 G .39(iltin command \(see).2 F F1 .36(SHELL B)144 540 R(UIL) --.09 E .36(TIN COMMANDS)-.828 F F0(belo)2.61 E(w\).)-.25 E F1(OPTERR) -5.36 E F0 .359(is initialized to 1 each time the shell is in)2.61 F -.2 -(vo)-.4 G -.1(ke).2 G(d).1 E(or a shell script is e)144 552 Q -.15(xe) --.15 G(cuted.).15 E F2 -.74(PA)108 564 S(TH)-.21 E F0 .587 -(The search path for commands.)9.91 F .588 -(It is a colon-separated list of directories in which the shell looks) -5.587 F .472(for commands \(see)144 576 R F1 .472(COMMAND EXECUTION) -2.972 F F0(belo)2.722 E 2.972(w\). A)-.25 F .471 -(zero-length \(null\) directory name in the)2.972 F -.25(va)144 588 S -.535(lue of).25 F F1 -.666(PA)3.035 G(TH)-.189 E F0 .535 -(indicates the current directory)2.785 F 5.535(.A)-.65 G .535 -(null directory name may appear as tw)-2.5 F 3.036(oa)-.1 G(djacent) --3.036 E .868(colons, or as an initial or trailing colon.)144 600 R .868 -(The def)5.868 F .867(ault path is system-dependent, and is set by the) --.1 F 26.328(administrator who installs)144 612 R F2(bash)28.828 E F0 -31.329(.A)C 26.329(common v)-2.5 F 26.329(alue is)-.25 F/F5 10/Courier@0 -SF(/usr/gnu/bin:/usr/local/bin:/usr/ucb:/bin:/usr/bin)144 624 Q F0(.)A -F2(POSIXL)108 636 Q(Y_CORRECT)-.92 E F0 .472(If this v)144 648 R .472 -(ariable is in the en)-.25 F .471(vironment when)-.4 F F2(bash)2.971 E -F0 .471(starts, the shell enters)2.971 F F3 .471(posix mode)2.971 F F0 -.471(before reading)2.971 F .011(the startup \214les, as if the)144 660 -R F2(\255\255posix)2.511 E F0(in)2.511 E -.2(vo)-.4 G .011 -(cation option had been supplied.).2 F .011 -(If it is set while the shell is)5.011 F(running,)144 672 Q F2(bash)2.5 -E F0(enables)2.5 E F3(posix mode)2.5 E F0 2.5(,a)C 2.5(si)-2.5 G 2.5(ft) --2.5 G(he command)-2.5 E F5(set -o posix)2.5 E F0(had been e)2.5 E -.15 -(xe)-.15 G(cuted.).15 E F2(PR)108 684 Q(OMPT_COMMAND)-.3 E F0 -(If set, the v)144 696 Q(alue is e)-.25 E -.15(xe)-.15 G -(cuted as a command prior to issuing each primary prompt.).15 E -(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(15)197.335 E 0 Cg EP +(system dependent \(e.g., /v)144 660 Q(ar/mail/)-.25 E F1($USER)A F0 +(\).)A F1(OPTERR)108 672 Q F0 .39(If set to the v)144 684 R .39(alue 1,) +-.25 F F1(bash)2.89 E F0 .389(displays error messages generated by the) +2.889 F F1(getopts)2.889 E F0 -.2(bu)2.889 G .389(iltin command \(see).2 +F F3 .359(SHELL B)144 696 R(UIL)-.09 E .359(TIN COMMANDS)-.828 F F0 +(belo)2.609 E(w\).)-.25 E F3(OPTERR)5.359 E F0 .36 +(is initialized to 1 each time the shell is in)2.609 F -.2(vo)-.4 G -.1 +(ke).2 G(d).1 E(or a shell script is e)144 708 Q -.15(xe)-.15 G(cuted.) +.15 E(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(15)198.165 E 0 Cg EP %%Page: 16 16 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(PR)108 84 Q(OMPT_DIR)-.3 E(TRIM)-.4 E F0 -.676(If set to a number greater than zero, the v)144 96 R .676 +-.35 E/F1 10/Times-Bold@0 SF -.74(PA)108 84 S(TH)-.21 E F0 .588 +(The search path for commands.)9.91 F .587 +(It is a colon-separated list of directories in which the shell looks) +5.588 F .471(for commands \(see)144 96 R/F2 9/Times-Bold@0 SF .471 +(COMMAND EXECUTION)2.971 F F0(belo)2.722 E 2.972(w\). A)-.25 F .472 +(zero-length \(null\) directory name in the)2.972 F -.25(va)144 108 S +.536(lue of).25 F F2 -.666(PA)3.036 G(TH)-.189 E F0 .535 +(indicates the current directory)2.786 F 5.535(.A)-.65 G .535 +(null directory name may appear as tw)-2.5 F 3.035(oa)-.1 G(djacent) +-3.035 E .867(colons, or as an initial or trailing colon.)144 120 R .868 +(The def)5.868 F .868(ault path is system-dependent, and is set by the) +-.1 F 26.329(administrator who installs)144 132 R F1(bash)28.829 E F0 +31.329(.A)C 26.328(common v)-2.501 F 26.328(alue is)-.25 F/F3 10 +/Courier@0 SF(/usr/gnu/bin:/usr/local/bin:/usr/ucb:/bin:/usr/bin)144 144 +Q F0(.)A F1(POSIXL)108 156 Q(Y_CORRECT)-.92 E F0 .471(If this v)144 168 +R .471(ariable is in the en)-.25 F .471(vironment when)-.4 F F1(bash) +2.971 E F0 .471(starts, the shell enters)2.971 F/F4 10/Times-Italic@0 SF +.472(posix mode)2.972 F F0 .472(before reading)2.972 F .011 +(the startup \214les, as if the)144 180 R F1(\255\255posix)2.511 E F0 +(in)2.511 E -.2(vo)-.4 G .011(cation option had been supplied.).2 F .011 +(If it is set while the shell is)5.011 F(running,)144 192 Q F1(bash)2.5 +E F0(enables)2.5 E F4(posix mode)2.5 E F0 2.5(,a)C 2.5(si)-2.5 G 2.5(ft) +-2.5 G(he command)-2.5 E F3(set -o posix)2.5 E F0(had been e)2.5 E -.15 +(xe)-.15 G(cuted.).15 E F1(PR)108 204 Q(OMPT_COMMAND)-.3 E F0 +(If set, the v)144 216 Q(alue is e)-.25 E -.15(xe)-.15 G +(cuted as a command prior to issuing each primary prompt.).15 E F1(PR) +108 228 Q(OMPT_DIR)-.3 E(TRIM)-.4 E F0 .676 +(If set to a number greater than zero, the v)144 240 R .676 (alue is used as the number of trailing directory compo-)-.25 F .923 -(nents to retain when e)144 108 R .923(xpanding the)-.15 F F1(\\w)3.423 +(nents to retain when e)144 252 R .923(xpanding the)-.15 F F1(\\w)3.423 E F0(and)3.423 E F1(\\W)3.423 E F0 .923(prompt string escapes \(see) -3.423 F/F2 9/Times-Bold@0 SF(PR)3.423 E(OMPTING)-.27 E F0(belo)3.173 E -(w\).)-.25 E(Characters remo)144 120 Q -.15(ve)-.15 G 2.5(da).15 G -(re replaced with an ellipsis.)-2.5 E F1(PS1)108 132 Q F0 .065(The v) +3.423 F F2(PR)3.423 E(OMPTING)-.27 E F0(belo)3.173 E(w\).)-.25 E +(Characters remo)144 264 Q -.15(ve)-.15 G 2.5(da).15 G +(re replaced with an ellipsis.)-2.5 E F1(PS1)108 276 Q F0 .064(The v) 19.33 F .065(alue of this parameter is e)-.25 F .065(xpanded \(see)-.15 F F2(PR)2.565 E(OMPTING)-.27 E F0(belo)2.315 E .065 -(w\) and used as the primary prompt)-.25 F 2.5(string. The)144 144 R +(w\) and used as the primary prompt)-.25 F 2.5(string. The)144 288 R (def)2.5 E(ault v)-.1 E(alue is `)-.25 E(`)-.74 E F1(\\s\255\\v\\$)A F0 --.74('')2.5 G(.).74 E F1(PS2)108 156 Q F0 .117(The v)19.33 F .117 -(alue of this parameter is e)-.25 F .117(xpanded as with)-.15 F F2(PS1) -2.617 E F0 .118(and used as the secondary prompt string.)2.368 F(The) -5.118 E(def)144 168 Q(ault is `)-.1 E(`)-.74 E F1(>)A F0 -.74('')2.5 G -(.).74 E F1(PS3)108 180 Q F0 1.116(The v)19.33 F 1.115 +-.74('')2.5 G(.).74 E F1(PS2)108 300 Q F0 .118(The v)19.33 F .118 +(alue of this parameter is e)-.25 F .118(xpanded as with)-.15 F F2(PS1) +2.617 E F0 .117(and used as the secondary prompt string.)2.367 F(The) +5.117 E(def)144 312 Q(ault is `)-.1 E(`)-.74 E F1(>)A F0 -.74('')2.5 G +(.).74 E F1(PS3)108 324 Q F0 1.115(The v)19.33 F 1.115 (alue of this parameter is used as the prompt for the)-.25 F F1(select) -3.615 E F0 1.115(command \(see)3.615 F F2 1.115(SHELL GRAM-)3.615 F(MAR) -144 192 Q F0(abo)2.25 E -.15(ve)-.15 G(\).).15 E F1(PS4)108 204 Q F0 .1 -(The v)19.33 F .1(alue of this parameter is e)-.25 F .1(xpanded as with) --.15 F F2(PS1)2.6 E F0 .101(and the v)2.35 F .101 -(alue is printed before each command)-.25 F F1(bash)144 216 Q F0 .292 -(displays during an e)2.792 F -.15(xe)-.15 G .292(cution trace.).15 F -.292(The \214rst character of)5.292 F F2(PS4)2.792 E F0 .291 -(is replicated multiple times, as)2.542 F(necessary)144 228 Q 2.5(,t) +3.615 E F0 1.116(command \(see)3.616 F F2 1.116(SHELL GRAM-)3.616 F(MAR) +144 336 Q F0(abo)2.25 E -.15(ve)-.15 G(\).).15 E F1(PS4)108 348 Q F0 +.101(The v)19.33 F .101(alue of this parameter is e)-.25 F .101 +(xpanded as with)-.15 F F2(PS1)2.6 E F0 .1(and the v)2.35 F .1 +(alue is printed before each command)-.25 F F1(bash)144 360 Q F0 .291 +(displays during an e)2.791 F -.15(xe)-.15 G .292(cution trace.).15 F +.292(The \214rst character of)5.292 F F2(PS4)2.792 E F0 .292 +(is replicated multiple times, as)2.542 F(necessary)144 372 Q 2.5(,t) -.65 G 2.5(oi)-2.5 G(ndicate multiple le)-2.5 E -.15(ve)-.25 G (ls of indirection.).15 E(The def)5 E(ault is `)-.1 E(`)-.74 E F1(+)A F0 --.74('')2.5 G(.).74 E F1(SHELL)108 240 Q F0 .663 -(The full pathname to the shell is k)144 252 R .664(ept in this en)-.1 F -.664(vironment v)-.4 F 3.164(ariable. If)-.25 F .664 -(it is not set when the shell)3.164 F(starts,)144 264 Q F1(bash)2.5 E F0 +-.74('')2.5 G(.).74 E F1(SHELL)108 384 Q F0 .664 +(The full pathname to the shell is k)144 396 R .664(ept in this en)-.1 F +.664(vironment v)-.4 F 3.164(ariable. If)-.25 F .663 +(it is not set when the shell)3.164 F(starts,)144 408 Q F1(bash)2.5 E F0 (assigns to it the full pathname of the current user')2.5 E 2.5(sl)-.55 -G(ogin shell.)-2.5 E F1(TIMEFORMA)108 276 Q(T)-.95 E F0 .827(The v)144 -288 R .826 +G(ogin shell.)-2.5 E F1(TIMEFORMA)108 420 Q(T)-.95 E F0 .826(The v)144 +432 R .826 (alue of this parameter is used as a format string specifying ho)-.25 F -3.326(wt)-.25 G .826(he timing information for)-3.326 F .648 -(pipelines pre\214x)144 300 R .648(ed with the)-.15 F F1(time)3.148 E F0 -(reserv)3.148 E .648(ed w)-.15 F .649(ord should be displayed.)-.1 F -(The)5.649 E F1(%)3.149 E F0 .649(character introduces)3.149 F .712 -(an escape sequence that is e)144 312 R .711(xpanded to a time v)-.15 F -.711(alue or other information.)-.25 F .711(The escape sequences)5.711 F -(and their meanings are as follo)144 324 Q -(ws; the braces denote optional portions.)-.25 E F1(%%)144 342 Q F0 2.5 -(Al)30 G(iteral)-2.5 E F1(%)2.5 E F0(.)A F1(%[)144 354 Q/F3 10 -/Times-Italic@0 SF(p)A F1(][l]R)A F0(The elapsed time in seconds.)11.68 -E F1(%[)144 366 Q F3(p)A F1(][l]U)A F0 -(The number of CPU seconds spent in user mode.)11.68 E F1(%[)144 378 Q -F3(p)A F1(][l]S)A F0(The number of CPU seconds spent in system mode.) -13.34 E F1(%P)144 390 Q F0 -(The CPU percentage, computed as \(%U + %S\) / %R.)33.89 E .87 -(The optional)144 406.8 R F3(p)3.37 E F0 .87(is a digit specifying the) -3.37 F F3(pr)3.37 E(ecision)-.37 E F0 3.37(,t)C .87 -(he number of fractional digits after a decimal)-3.37 F 2.526(point. A) -144 418.8 R -.25(va)2.526 G .025 -(lue of 0 causes no decimal point or fraction to be output.).25 F .025 -(At most three places after the)5.025 F .537 -(decimal point may be speci\214ed; v)144 430.8 R .537(alues of)-.25 F F3 -(p)3.037 E F0 .537(greater than 3 are changed to 3.)3.037 F(If)5.538 E -F3(p)3.038 E F0 .538(is not speci\214ed,)3.038 F(the v)144 442.8 Q -(alue 3 is used.)-.25 E .668(The optional)144 459.6 R F1(l)3.168 E F0 +3.327(wt)-.25 G .827(he timing information for)-3.327 F .649 +(pipelines pre\214x)144 444 R .649(ed with the)-.15 F F1(time)3.149 E F0 +(reserv)3.149 E .649(ed w)-.15 F .648(ord should be displayed.)-.1 F +(The)5.648 E F1(%)3.148 E F0 .648(character introduces)3.148 F .711 +(an escape sequence that is e)144 456 R .711(xpanded to a time v)-.15 F +.712(alue or other information.)-.25 F .712(The escape sequences)5.712 F +(and their meanings are as follo)144 468 Q +(ws; the braces denote optional portions.)-.25 E F1(%%)144 486 Q F0 2.5 +(Al)30 G(iteral)-2.5 E F1(%)2.5 E F0(.)A F1(%[)144 498 Q F4(p)A F1 +(][l]R)A F0(The elapsed time in seconds.)11.68 E F1(%[)144 510 Q F4(p)A +F1(][l]U)A F0(The number of CPU seconds spent in user mode.)11.68 E F1 +(%[)144 522 Q F4(p)A F1(][l]S)A F0 +(The number of CPU seconds spent in system mode.)13.34 E F1(%P)144 534 Q +F0(The CPU percentage, computed as \(%U + %S\) / %R.)33.89 E .87 +(The optional)144 550.8 R F4(p)3.37 E F0 .87(is a digit specifying the) +3.37 F F4(pr)3.37 E(ecision)-.37 E F0 3.37(,t)C .87 +(he number of fractional digits after a decimal)-3.37 F 2.525(point. A) +144 562.8 R -.25(va)2.525 G .025 +(lue of 0 causes no decimal point or fraction to be output.).25 F .026 +(At most three places after the)5.025 F .538 +(decimal point may be speci\214ed; v)144 574.8 R .538(alues of)-.25 F F4 +(p)3.038 E F0 .537(greater than 3 are changed to 3.)3.037 F(If)5.537 E +F4(p)3.037 E F0 .537(is not speci\214ed,)3.037 F(the v)144 586.8 Q +(alue 3 is used.)-.25 E .667(The optional)144 603.6 R F1(l)3.167 E F0 .668(speci\214es a longer format, including minutes, of the form)3.168 F -F3(MM)3.168 E F0(m)A F3(SS)A F0(.)A F3(FF)A F0 3.167(s. The)B -.25(va) -3.167 G(lue).25 E(of)144 471.6 Q F3(p)2.5 E F0 -(determines whether or not the fraction is included.)2.5 E(If this v)144 -488.4 Q(ariable is not set,)-.25 E F1(bash)2.501 E F0 .001 -(acts as if it had the v)2.501 F(alue)-.25 E F1($\010\\nr)2.501 E -(eal\\t%3lR\\nuser\\t%3lU\\nsys%3lS\010)-.18 E F0(.)A .495(If the v)144 -500.4 R .494(alue is null, no timing information is displayed.)-.25 F +F4(MM)3.168 E F0(m)A F4(SS)A F0(.)A F4(FF)A F0 3.168(s. The)B -.25(va) +3.168 G(lue).25 E(of)144 615.6 Q F4(p)2.5 E F0 +(determines whether or not the fraction is included.)2.5 E .001 +(If this v)144 632.4 R .001(ariable is not set,)-.25 F F1(bash)2.501 E +F0 .001(acts as if it had the v)2.501 F(alue)-.25 E F1($\010\\nr)2.5 E +(eal\\t%3lR\\nuser\\t%3lU\\nsys%3lS\010)-.18 E F0(.)A .494(If the v)144 +644.4 R .494(alue is null, no timing information is displayed.)-.25 F 2.994(At)5.494 G .494(railing ne)-2.994 F .494 (wline is added when the for)-.25 F(-)-.2 E(mat string is displayed.)144 -512.4 Q F1(TMOUT)108 529.2 Q F0 .941(If set to a v)144 541.2 R .941 +656.4 Q F1(TMOUT)108 673.2 Q F0 .941(If set to a v)144 685.2 R .941 (alue greater than zero,)-.25 F F2(TMOUT)3.441 E F0 .941 (is treated as the def)3.191 F .941(ault timeout for the)-.1 F F1 -.18 -(re)3.441 G(ad).18 E F0 -.2(bu)3.441 G(iltin.).2 E(The)144 553.2 Q F1 -(select)2.811 E F0 .311(command terminates if input does not arri)2.811 -F .61 -.15(ve a)-.25 H(fter).15 E F2(TMOUT)2.81 E F0 .31 -(seconds when input is com-)2.56 F .885(ing from a terminal.)144 565.2 R -.885(In an interacti)5.885 F 1.185 -.15(ve s)-.25 H .885(hell, the v).15 -F .886(alue is interpreted as the number of seconds to)-.25 F -.1(wa)144 -577.2 S .546(it for input after issuing the primary prompt.).1 F F1 -(Bash)5.546 E F0 .546(terminates after w)3.046 F .546 -(aiting for that number of)-.1 F(seconds if input does not arri)144 -589.2 Q -.15(ve)-.25 G(.).15 E F1(TMPDIR)108 606 Q F0 .273(If set,)144 -618 R F1(Bash)2.773 E F0 .273(uses its v)2.773 F .274 -(alue as the name of a directory in which)-.25 F F1(Bash)2.774 E F0 .274 -(creates temporary \214les for the)2.774 F(shell')144 630 Q 2.5(su)-.55 -G(se.)-2.5 E F1(auto_r)108 646.8 Q(esume)-.18 E F0 .531(This v)144 658.8 -R .531(ariable controls ho)-.25 F 3.031(wt)-.25 G .531 -(he shell interacts with the user and job control.)-3.031 F .53 -(If this v)5.53 F .53(ariable is set,)-.25 F .538(single w)144 670.8 R -.538(ord simple commands without redirections are treated as candidates\ - for resumption of an)-.1 F -.15(ex)144 682.8 S .367(isting stopped job) -.15 F 5.367(.T)-.4 G .366(here is no ambiguity allo)-5.367 F .366 -(wed; if there is more than one job be)-.25 F .366(ginning with)-.15 F -1.124(the string typed, the job most recently accessed is selected.)144 -694.8 R(The)6.125 E F3(name)3.985 E F0 1.125(of a stopped job, in this) -3.805 F(conte)144 706.8 Q 1.133 -(xt, is the command line used to start it.)-.15 F 1.133(If set to the v) -6.133 F(alue)-.25 E F3 -.2(ex)3.633 G(act).2 E F0 3.632(,t).68 G 1.132 -(he string supplied must)-3.632 F .624 -(match the name of a stopped job e)144 718.8 R .624(xactly; if set to) --.15 F F3(substring)3.125 E F0 3.125(,t).22 G .625 -(he string supplied needs to match a)-3.125 F .885 -(substring of the name of a stopped job)144 730.8 R 5.884(.T)-.4 G(he) --5.884 E F3(substring)3.724 E F0 -.25(va)3.604 G .884(lue pro).25 F .884 -(vides functionality analogous to)-.15 F(GNU Bash-4.1)72 768 Q -(2010 June 12)147.345 E(16)197.335 E 0 Cg EP +(re)3.441 G(ad).18 E F0 -.2(bu)3.441 G(iltin.).2 E(The)144 697.2 Q F1 +(select)2.81 E F0 .31(command terminates if input does not arri)2.81 F +.611 -.15(ve a)-.25 H(fter).15 E F2(TMOUT)2.811 E F0 .311 +(seconds when input is com-)2.561 F .886(ing from a terminal.)144 709.2 +R .886(In an interacti)5.886 F 1.185 -.15(ve s)-.25 H .885(hell, the v) +.15 F .885(alue is interpreted as the number of seconds to)-.25 F -.1 +(wa)144 721.2 S .546(it for input after issuing the primary prompt.).1 F +F1(Bash)5.546 E F0 .546(terminates after w)3.046 F .546 +(aiting for that number of)-.1 F(GNU Bash-4.2)72 768 Q(2010 July 21) +148.175 E(16)198.165 E 0 Cg EP %%Page: 17 17 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E(the)144 84 Q/F1 10/Times-Bold@0 SF(%?)3.333 E F0 .833 -(job identi\214er \(see)5.833 F/F2 9/Times-Bold@0 SF .834(JOB CONTR) -3.334 F(OL)-.27 E F0(belo)3.084 E 3.334(w\). If)-.25 F .834(set to an) -3.334 F 3.334(yo)-.15 G .834(ther v)-3.334 F .834 -(alue, the supplied string)-.25 F .316 -(must be a pre\214x of a stopped job')144 96 R 2.816(sn)-.55 G .316 -(ame; this pro)-2.816 F .315(vides functionality analogous to the)-.15 F -F1(%)2.815 E/F3 10/Times-Italic@0 SF(string)A F0(job)2.815 E -(identi\214er)144 108 Q(.)-.55 E F1(histchars)108 124.8 Q F0 2.069 -(The tw)144 136.8 R 4.57(oo)-.1 G 4.57(rt)-4.57 G 2.07 -(hree characters which control history e)-4.57 F 2.07(xpansion and tok) --.15 F 2.07(enization \(see)-.1 F F2(HIST)4.57 E(OR)-.162 E(Y)-.315 E -(EXP)144 148.8 Q(ANSION)-.666 E F0(belo)3.466 E 3.716(w\). The)-.25 F -1.216(\214rst character is the)3.716 F F3 1.215(history e)3.715 F -(xpansion)-.2 E F0(character)3.715 E 3.715(,t)-.4 G 1.215 -(he character which)-3.715 F .798(signals the start of a history e)144 -160.8 R .798(xpansion, normally `)-.15 F F1(!)A F0 3.298('. The)B .798 -(second character is the)3.298 F F3(quic)3.298 E 3.298(ks)-.2 G -(ubstitu-)-3.298 E(tion)144 172.8 Q F0(character)2.74 E 2.74(,w)-.4 G -.239(hich is used as shorthand for re-running the pre)-2.74 F .239 -(vious command entered, substitut-)-.25 F .575 -(ing one string for another in the command.)144 184.8 R .575(The def) -5.575 F .575(ault is `)-.1 F F1(^)A F0 3.075('. The)B .576 -(optional third character is the)3.076 F .223(character which indicates\ +-.35 E(seconds if input does not arri)144 84 Q -.15(ve)-.25 G(.).15 E/F1 +10/Times-Bold@0 SF(TMPDIR)108 100.8 Q F0 .274(If set,)144 112.8 R F1 +(Bash)2.774 E F0 .274(uses its v)2.774 F .274 +(alue as the name of a directory in which)-.25 F F1(Bash)2.773 E F0 .273 +(creates temporary \214les for the)2.773 F(shell')144 124.8 Q 2.5(su) +-.55 G(se.)-2.5 E F1(auto_r)108 141.6 Q(esume)-.18 E F0 .53(This v)144 +153.6 R .53(ariable controls ho)-.25 F 3.03(wt)-.25 G .531 +(he shell interacts with the user and job control.)-3.03 F .531 +(If this v)5.531 F .531(ariable is set,)-.25 F .539(single w)144 165.6 R +.538(ord simple commands without redirections are treated as candidates\ + for resumption of an)-.1 F -.15(ex)144 177.6 S .366(isting stopped job) +.15 F 5.366(.T)-.4 G .366(here is no ambiguity allo)-5.366 F .366 +(wed; if there is more than one job be)-.25 F .367(ginning with)-.15 F +1.125(the string typed, the job most recently accessed is selected.)144 +189.6 R(The)6.125 E/F2 10/Times-Italic@0 SF(name)3.985 E F0 1.124 +(of a stopped job, in this)3.805 F(conte)144 201.6 Q 1.132 +(xt, is the command line used to start it.)-.15 F 1.133(If set to the v) +6.133 F(alue)-.25 E F2 -.2(ex)3.633 G(act).2 E F0 3.633(,t).68 G 1.133 +(he string supplied must)-3.633 F .625 +(match the name of a stopped job e)144 213.6 R .624(xactly; if set to) +-.15 F F2(substring)3.124 E F0 3.124(,t).22 G .624 +(he string supplied needs to match a)-3.124 F .884 +(substring of the name of a stopped job)144 225.6 R 5.884(.T)-.4 G(he) +-5.884 E F2(substring)3.724 E F0 -.25(va)3.604 G .885(lue pro).25 F .885 +(vides functionality analogous to)-.15 F(the)144 237.6 Q F1(%?)3.334 E +F0 .834(job identi\214er \(see)5.834 F/F3 9/Times-Bold@0 SF .834 +(JOB CONTR)3.334 F(OL)-.27 E F0(belo)3.084 E 3.334(w\). If)-.25 F .834 +(set to an)3.334 F 3.334(yo)-.15 G .834(ther v)-3.334 F .833 +(alue, the supplied string)-.25 F .315 +(must be a pre\214x of a stopped job')144 249.6 R 2.816(sn)-.55 G .316 +(ame; this pro)-2.816 F .316(vides functionality analogous to the)-.15 F +F1(%)2.816 E F2(string)A F0(job)2.816 E(identi\214er)144 261.6 Q(.)-.55 +E F1(histchars)108 278.4 Q F0 2.07(The tw)144 290.4 R 4.57(oo)-.1 G 4.57 +(rt)-4.57 G 2.07(hree characters which control history e)-4.57 F 2.07 +(xpansion and tok)-.15 F 2.07(enization \(see)-.1 F F3(HIST)4.569 E(OR) +-.162 E(Y)-.315 E(EXP)144 302.4 Q(ANSION)-.666 E F0(belo)3.465 E 3.715 +(w\). The)-.25 F 1.215(\214rst character is the)3.715 F F2 1.216 +(history e)3.715 F(xpansion)-.2 E F0(character)3.716 E 3.716(,t)-.4 G +1.216(he character which)-3.716 F .798(signals the start of a history e) +144 314.4 R .798(xpansion, normally `)-.15 F F1(!)A F0 3.298('. The)B +.798(second character is the)3.298 F F2(quic)3.298 E 3.298(ks)-.2 G +(ubstitu-)-3.298 E(tion)144 326.4 Q F0(character)2.739 E 2.739(,w)-.4 G +.239(hich is used as shorthand for re-running the pre)-2.739 F .24 +(vious command entered, substitut-)-.25 F .576 +(ing one string for another in the command.)144 338.4 R .575(The def) +5.575 F .575(ault is `)-.1 F F1(^)A F0 3.075('. The)B .575 +(optional third character is the)3.075 F .223(character which indicates\ that the remainder of the line is a comment when found as the \214rst \ -char)144 196.8 R(-)-.2 E 1.293(acter of a w)144 208.8 R 1.293 -(ord, normally `)-.1 F F1(#)A F0 3.793('. The)B 1.294 -(history comment character causes history substitution to be)3.794 F .38 -(skipped for the remaining w)144 220.8 R .38(ords on the line.)-.1 F -.379(It does not necessarily cause the shell parser to treat)5.379 F -(the rest of the line as a comment.)144 232.8 Q F1(Arrays)87 249.6 Q -(Bash)108 261.6 Q F0(pro)3.39 E .89(vides one-dimensional inde)-.15 F --.15(xe)-.15 G 3.39(da).15 G .891(nd associati)-3.39 F 1.191 -.15(ve a) --.25 H .891(rray v).15 F 3.391(ariables. An)-.25 F 3.391(yv)-.15 G .891 -(ariable may be used as an)-3.641 F(inde)108 273.6 Q -.15(xe)-.15 G -2.574(da).15 G .074(rray; the)-2.574 F F1(declar)2.574 E(e)-.18 E F0 -.2 -(bu)2.574 G .074(iltin will e).2 F .073(xplicitly declare an array)-.15 -F 5.073(.T)-.65 G .073(here is no maximum limit on the size of)-5.073 F -.328(an array)108 285.6 R 2.828(,n)-.65 G .328(or an)-2.828 F 2.828(yr) --.15 G .329(equirement that members be inde)-2.828 F -.15(xe)-.15 G -2.829(do).15 G 2.829(ra)-2.829 G .329(ssigned contiguously)-2.829 F -5.329(.I)-.65 G(nde)-5.329 E -.15(xe)-.15 G 2.829(da).15 G .329 -(rrays are refer)-2.829 F(-)-.2 E 1.387(enced using inte)108 297.6 R -1.387(gers \(including arithmetic e)-.15 F 3.887(xpressions\) and)-.15 F -1.387(are zero-based; associati)3.887 F 1.686 -.15(ve a)-.25 H 1.386 -(rrays are refer).15 F(-)-.2 E(enced using arbitrary strings.)108 309.6 -Q 2.462(An inde)108 326.4 R -.15(xe)-.15 G 4.962(da).15 G 2.462 -(rray is created automatically if an)-4.962 F 4.963(yv)-.15 G 2.463 -(ariable is assigned to using the syntax)-5.213 F F3(name)4.963 E F0([)A -F3(sub-)A(script)108 338.4 Q F0(]=)A F3(value)A F0 5.427(.T)C(he)-5.427 -E F3(subscript)3.267 E F0 .426(is treated as an arithmetic e)3.607 F -.426(xpression that must e)-.15 F -.25(va)-.25 G .426(luate to a number) -.25 F 5.426(.I)-.55 G(f)-5.426 E F3(sub-)3.266 E(script)108 350.4 Q F0 --.25(eva)3.913 G .733 +char)144 350.4 R(-)-.2 E 1.294(acter of a w)144 362.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 +.379(skipped for the remaining w)144 374.4 R .379(ords on the line.)-.1 +F .38(It does not necessarily cause the shell parser to treat)5.379 F +(the rest of the line as a comment.)144 386.4 Q F1(Arrays)87 403.2 Q +(Bash)108 415.2 Q F0(pro)3.391 E .891(vides one-dimensional inde)-.15 F +-.15(xe)-.15 G 3.391(da).15 G .891(nd associati)-3.391 F 1.191 -.15 +(ve a)-.25 H .891(rray v).15 F 3.391(ariables. An)-.25 F 3.391(yv)-.15 G +.89(ariable may be used as an)-3.641 F(inde)108 427.2 Q -.15(xe)-.15 G +2.573(da).15 G .073(rray; the)-2.573 F F1(declar)2.573 E(e)-.18 E F0 -.2 +(bu)2.573 G .073(iltin will e).2 F .073(xplicitly declare an array)-.15 +F 5.073(.T)-.65 G .074(here is no maximum limit on the size of)-5.073 F +.329(an array)108 439.2 R 2.829(,n)-.65 G .329(or an)-2.829 F 2.829(yr) +-.15 G .329(equirement that members be inde)-2.829 F -.15(xe)-.15 G +2.829(do).15 G 2.829(ra)-2.829 G .328(ssigned contiguously)-2.829 F +5.328(.I)-.65 G(nde)-5.328 E -.15(xe)-.15 G 2.828(da).15 G .328 +(rrays are refer)-2.828 F(-)-.2 E 1.386(enced using inte)108 451.2 R +1.386(gers \(including arithmetic e)-.15 F 3.887(xpressions\) and)-.15 F +1.387(are zero-based; associati)3.887 F 1.687 -.15(ve a)-.25 H 1.387 +(rrays are refer).15 F(-)-.2 E(enced using arbitrary strings.)108 463.2 +Q 2.463(An inde)108 480 R -.15(xe)-.15 G 4.963(da).15 G 2.463 +(rray is created automatically if an)-4.963 F 4.963(yv)-.15 G 2.462 +(ariable is assigned to using the syntax)-5.213 F F2(name)4.962 E F0([)A +F2(sub-)A(script)108 492 Q F0(]=)A F2(value)A F0 5.426(.T)C(he)-5.426 E +F2(subscript)3.266 E F0 .426(is treated as an arithmetic e)3.606 F .426 +(xpression that must e)-.15 F -.25(va)-.25 G .427(luate to a number).25 +F 5.427(.I)-.55 G(f)-5.427 E F2(sub-)3.267 E(script)108 504 Q F0 -.25 +(eva)3.913 G .733 (luates to a number less than zero, it is used as an of).25 F .733 (fset from one greater than the array')-.25 F 3.233(sm)-.55 G(axi-) --3.233 E 1.105(mum inde)108 362.4 R 3.605(x\()-.15 G 1.105 -(so a subcript of -1 refers to the last element of the array\).)-3.605 F -2.704 -.8(To e)6.104 H 1.104(xplicitly declare an inde).65 F -.15(xe) --.15 G(d).15 E(array)108 374.4 Q 3.827(,u)-.65 G(se)-3.827 E F1(declar) -3.827 E 3.827<65ad>-.18 G(a)-3.827 E F3(name)3.827 E F0(\(see)3.827 E F2 +-3.233 E 1.104(mum inde)108 516 R 3.604(x\()-.15 G 1.105 +(so a subcript of -1 refers to the last element of the array\).)-3.604 F +2.705 -.8(To e)6.105 H 1.105(xplicitly declare an inde).65 F -.15(xe) +-.15 G(d).15 E(array)108 528 Q 3.828(,u)-.65 G(se)-3.828 E F1(declar) +3.828 E 3.828<65ad>-.18 G(a)-3.828 E F2(name)3.828 E F0(\(see)3.828 E F3 1.327(SHELL B)3.827 F(UIL)-.09 E 1.327(TIN COMMANDS)-.828 F F0(belo) -3.578 E(w\).)-.25 E F1(declar)6.328 E 3.828<65ad>-.18 G(a)-3.828 E F3 -(name)3.828 E F1([)A F3(subscript)A F1(])A F0(is)3.828 E -(also accepted; the)108 386.4 Q F3(subscript)2.5 E F0(is ignored.)2.5 E -(Associati)108 403.2 Q .3 -.15(ve a)-.25 H(rrays are created using).15 E -F1(declar)2.5 E 2.5<65ad>-.18 G(A)-2.5 E F3(name)2.5 E F0(.)A(Attrib)108 -420 Q .941(utes may be speci\214ed for an array v)-.2 F .941 -(ariable using the)-.25 F F1(declar)3.441 E(e)-.18 E F0(and)3.44 E F1 --.18(re)3.44 G(adonly).18 E F0 -.2(bu)3.44 G 3.44(iltins. Each).2 F -(attrib)3.44 E(ute)-.2 E(applies to all members of an array)108 432 Q(.) --.65 E 1.647 -(Arrays are assigned to using compound assignments of the form)108 448.8 -R F3(name)4.147 E F0(=)A F1(\()A F0 -.25(va)C(lue).25 E F3(1)A F0 1.647 -(... v)4.147 F(alue)-.25 E F3(n)A F1(\))A F0 4.148(,w)C 1.648(here each) --4.148 F F3(value)108 460.8 Q F0 .122(is of the form [)2.622 F F3 -(subscript)A F0(]=)A F3(string)A F0 5.122(.I)C(nde)-5.122 E -.15(xe)-.15 +3.577 E(w\).)-.25 E F1(declar)6.327 E 3.827<65ad>-.18 G(a)-3.827 E F2 +(name)3.827 E F1([)A F2(subscript)A F1(])A F0(is)3.827 E +(also accepted; the)108 540 Q F2(subscript)2.5 E F0(is ignored.)2.5 E +(Associati)108 556.8 Q .3 -.15(ve a)-.25 H(rrays are created using).15 E +F1(declar)2.5 E 2.5<65ad>-.18 G(A)-2.5 E F2(name)2.5 E F0(.)A(Attrib)108 +573.6 Q .94(utes may be speci\214ed for an array v)-.2 F .941 +(ariable using the)-.25 F F1(declar)3.441 E(e)-.18 E F0(and)3.441 E F1 +-.18(re)3.441 G(adonly).18 E F0 -.2(bu)3.441 G 3.441(iltins. Each).2 F +(attrib)3.441 E(ute)-.2 E(applies to all members of an array)108 585.6 Q +(.)-.65 E 1.647 +(Arrays are assigned to using compound assignments of the form)108 602.4 +R F2(name)4.147 E F0(=)A F1(\()A F0 -.25(va)C(lue).25 E F2(1)A F0 1.647 +(... v)4.147 F(alue)-.25 E F2(n)A F1(\))A F0 4.147(,w)C 1.647(here each) +-4.147 F F2(value)108 614.4 Q F0 .122(is of the form [)2.622 F F2 +(subscript)A F0(]=)A F2(string)A F0 5.122(.I)C(nde)-5.122 E -.15(xe)-.15 G 2.622(da).15 G .122(rray assignments do not require the brack)-2.622 F -.122(et and subscript.)-.1 F .163(When assigning to inde)108 472.8 R +.122(et and subscript.)-.1 F .164(When assigning to inde)108 626.4 R -.15(xe)-.15 G 2.663(da).15 G .163(rrays, if the optional brack)-2.663 F -.163(ets and subscript are supplied, that inde)-.1 F 2.664(xi)-.15 G -2.664(sa)-2.664 G(ssigned)-2.664 E 1.411(to; otherwise the inde)108 -484.8 R 3.911(xo)-.15 G 3.911(ft)-3.911 G 1.411 -(he element assigned is the last inde)-3.911 F 3.91(xa)-.15 G 1.41 -(ssigned to by the statement plus one.)-3.91 F(Inde)108 496.8 Q -(xing starts at zero.)-.15 E(When assigning to an associati)108 513.6 Q +.163(ets and subscript are supplied, that inde)-.1 F 2.663(xi)-.15 G +2.663(sa)-2.663 G(ssigned)-2.663 E 1.41(to; otherwise the inde)108 638.4 +R 3.91(xo)-.15 G 3.91(ft)-3.91 G 1.41 +(he element assigned is the last inde)-3.91 F 3.911(xa)-.15 G 1.411 +(ssigned to by the statement plus one.)-3.911 F(Inde)108 650.4 Q +(xing starts at zero.)-.15 E(When assigning to an associati)108 667.2 Q .3 -.15(ve a)-.25 H(rray).15 E 2.5(,t)-.65 G(he subscript is required.) --2.5 E .239(This syntax is also accepted by the)108 530.4 R F1(declar) -2.739 E(e)-.18 E F0 -.2(bu)2.739 G 2.739(iltin. Indi).2 F .24 -(vidual array elements may be assigned to using the)-.25 F F3(name)108 -542.4 Q F0([)A F3(subscript)A F0(]=)A F3(value)A F0 -(syntax introduced abo)2.5 E -.15(ve)-.15 G(.).15 E(An)108 559.2 Q 3.576 -(ye)-.15 G 1.076(lement of an array may be referenced using ${)-3.576 F -F3(name)A F0([)A F3(subscript)A F0 3.575(]}. The)B 1.075 -(braces are required to a)3.575 F -.2(vo)-.2 G(id).2 E 1.541 -(con\215icts with pathname e)108 571.2 R 4.041(xpansion. If)-.15 F F3 -(subscript)4.041 E F0(is)4.041 E F1(@)4.041 E F0(or)4.041 E F1(*)4.041 E -F0 4.041(,t)C 1.541(he w)-4.041 F 1.541(ord e)-.1 F 1.541 -(xpands to all members of)-.15 F F3(name)4.042 E F0(.)A 1.057 -(These subscripts dif)108 583.2 R 1.057(fer only when the w)-.25 F 1.057 -(ord appears within double quotes.)-.1 F 1.056(If the w)6.056 F 1.056 -(ord is double-quoted,)-.1 F(${)108 595.2 Q F3(name)A F0 .52([*]} e)B -.52(xpands to a single w)-.15 F .52(ord with the v)-.1 F .521 -(alue of each array member separated by the \214rst character)-.25 F -1.375(of the)108 607.2 R F2(IFS)3.875 E F0 1.375(special v)3.625 F 1.375 -(ariable, and ${)-.25 F F3(name)A F0 1.375([@]} e)B 1.375 -(xpands each element of)-.15 F F3(name)3.875 E F0 1.374(to a separate w) -3.875 F 3.874(ord. When)-.1 F 2.027(there are no array members, ${)108 -619.2 R F3(name)A F0 2.028([@]} e)B 2.028(xpands to nothing.)-.15 F -2.028(If the double-quoted e)7.028 F 2.028(xpansion occurs)-.15 F .759 -(within a w)108 631.2 R .759(ord, the e)-.1 F .759 -(xpansion of the \214rst parameter is joined with the be)-.15 F .759 -(ginning part of the original w)-.15 F(ord,)-.1 E .515(and the e)108 -643.2 R .516(xpansion of the last parameter is joined with the last par\ -t of the original w)-.15 F 3.016(ord. This)-.1 F .516(is analogous)3.016 -F .228(to the e)108 655.2 R .228(xpansion of the special parameters)-.15 -F F1(*)2.728 E F0(and)2.728 E F1(@)2.728 E F0(\(see)2.728 E F1 .228 -(Special P)2.728 F(arameters)-.1 E F0(abo)2.727 E -.15(ve)-.15 G 2.727 -(\). ${#).15 F F3(name)A F0([)A F3(subscript)A F0(]})A -.15(ex)108 667.2 -S .886(pands to the length of ${).15 F F3(name)A F0([)A F3(subscript)A -F0 3.386(]}. If)B F3(subscript)3.386 E F0(is)3.386 E F1(*)3.386 E F0(or) -3.386 E F1(@)3.386 E F0 3.386(,t)C .886(he e)-3.386 F .886 -(xpansion is the number of ele-)-.15 F .463(ments in the array)108 679.2 -R 5.463(.R)-.65 G .463(eferencing an array v)-5.463 F .462 -(ariable without a subscript is equi)-.25 F -.25(va)-.25 G .462 -(lent to referencing the array).25 F(with a subscript of 0.)108 691.2 Q -.168(An array v)108 708 R .168 -(ariable is considered set if a subscript has been assigned a v)-.25 F -2.668(alue. The)-.25 F .168(null string is a v)2.668 F .168(alid v)-.25 -F(alue.)-.25 E(The)108 724.8 Q F1(unset)4.1 E F0 -.2(bu)4.1 G 1.6 -(iltin is used to destro).2 F 4.099(ya)-.1 G(rrays.)-4.099 E F1(unset) -6.599 E F3(name)4.099 E F0([)A F3(subscript)A F0 4.099(]d)C(estro)-4.099 -E 1.599(ys the array element at inde)-.1 F(x)-.15 E(GNU Bash-4.1)72 768 -Q(2010 June 12)147.345 E(17)197.335 E 0 Cg EP +-2.5 E .24(This syntax is also accepted by the)108 684 R F1(declar)2.74 +E(e)-.18 E F0 -.2(bu)2.739 G 2.739(iltin. Indi).2 F .239 +(vidual array elements may be assigned to using the)-.25 F F2(name)108 +696 Q F0([)A F2(subscript)A F0(]=)A F2(value)A F0(syntax introduced abo) +2.5 E -.15(ve)-.15 G(.).15 E(An)108 712.8 Q 3.575(ye)-.15 G 1.075 +(lement of an array may be referenced using ${)-3.575 F F2(name)A F0([)A +F2(subscript)A F0 3.575(]}. The)B 1.076(braces are required to a)3.576 F +-.2(vo)-.2 G(id).2 E 1.542(con\215icts with pathname e)108 724.8 R 4.041 +(xpansion. If)-.15 F F2(subscript)4.041 E F0(is)4.041 E F1(@)4.041 E F0 +(or)4.041 E F1(*)4.041 E F0 4.041(,t)C 1.541(he w)-4.041 F 1.541(ord e) +-.1 F 1.541(xpands to all members of)-.15 F F2(name)4.041 E F0(.)A +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(17)198.165 E 0 Cg EP %%Page: 18 18 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Italic@0 SF(subscript)108 84 Q F0 5.278(.C)C .278 -(are must be tak)-5.278 F .278(en to a)-.1 F -.2(vo)-.2 G .279(id unw).2 -F .279(anted side ef)-.1 F .279(fects caused by pathname e)-.25 F -(xpansion.)-.15 E/F2 10/Times-Bold@0 SF(unset)5.279 E F1(name)2.779 E F0 -(,)A(where)108 96 Q F1(name)2.5 E F0(is an array)2.5 E 2.5(,o)-.65 G(r) --2.5 E F2(unset)2.5 E F1(name)2.5 E F0([)A F1(subscript)A F0(], where)A -F1(subscript)2.5 E F0(is)2.5 E F2(*)2.5 E F0(or)2.5 E F2(@)2.5 E F0 2.5 -(,r)C(emo)-2.5 E -.15(ve)-.15 G 2.5(st).15 G(he entire array)-2.5 E(.) --.65 E(The)108 112.8 Q F2(declar)3.574 E(e)-.18 E F0(,)A F2(local)3.574 -E F0 3.574(,a)C(nd)-3.574 E F2 -.18(re)3.574 G(adonly).18 E F0 -.2(bu) -3.574 G 1.073(iltins each accept a).2 F F23.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 F23.573 E F0 .751 -(option to specify an associati)108 124.8 R 1.051 -.15(ve a)-.25 H(rray) -.15 E 5.751(.T)-.65 G(he)-5.751 E F2 -.18(re)3.251 G(ad).18 E F0 -.2(bu) -3.251 G .752(iltin accepts a).2 F F23.252 E F0 .752 -(option to assign a list of w)3.252 F .752(ords read)-.1 F .502 -(from the standard input to an array)108 136.8 R 5.502(.T)-.65 G(he) --5.502 E F2(set)3.002 E F0(and)3.002 E F2(declar)3.002 E(e)-.18 E F0 -.2 +-.35 E 1.056(These subscripts dif)108 84 R 1.056(fer only when the w) +-.25 F 1.057(ord appears within double quotes.)-.1 F 1.057(If the w) +6.057 F 1.057(ord is double-quoted,)-.1 F(${)108 96 Q/F1 10 +/Times-Italic@0 SF(name)A F0 .521([*]} e)B .521(xpands to a single w) +-.15 F .521(ord with the v)-.1 F .52 +(alue of each array member separated by the \214rst character)-.25 F +1.374(of the)108 108 R/F2 9/Times-Bold@0 SF(IFS)3.874 E F0 1.374 +(special v)3.624 F 1.375(ariable, and ${)-.25 F F1(name)A F0 1.375 +([@]} e)B 1.375(xpands each element of)-.15 F F1(name)3.875 E F0 1.375 +(to a separate w)3.875 F 3.875(ord. When)-.1 F 2.028 +(there are no array members, ${)108 120 R F1(name)A F0 2.028([@]} e)B +2.028(xpands to nothing.)-.15 F 2.027(If the double-quoted e)7.028 F +2.027(xpansion occurs)-.15 F .758(within a w)108 132 R .759(ord, the e) +-.1 F .759(xpansion of the \214rst parameter is joined with the be)-.15 +F .759(ginning part of the original w)-.15 F(ord,)-.1 E .516(and the e) +108 144 R .516(xpansion of the last parameter is joined with the last p\ +art of the original w)-.15 F 3.015(ord. This)-.1 F .515(is analogous) +3.015 F .227(to the e)108 156 R .228(xpansion of the special parameters) +-.15 F/F3 10/Times-Bold@0 SF(*)2.728 E F0(and)2.728 E F3(@)2.728 E F0 +(\(see)2.728 E F3 .228(Special P)2.728 F(arameters)-.1 E F0(abo)2.728 E +-.15(ve)-.15 G 2.728(\). ${#).15 F F1(name)A F0([)A F1(subscript)A F0 +(]})A -.15(ex)108 168 S .886(pands to the length of ${).15 F F1(name)A +F0([)A F1(subscript)A F0 3.386(]}. If)B F1(subscript)3.386 E F0(is)3.386 +E F3(*)3.386 E F0(or)3.386 E F3(@)3.386 E F0 3.386(,t)C .886(he e)-3.386 +F .886(xpansion is the number of ele-)-.15 F .462(ments in the array)108 +180 R 5.462(.R)-.65 G .462(eferencing an array v)-5.462 F .463 +(ariable without a subscript is equi)-.25 F -.25(va)-.25 G .463 +(lent to referencing the array).25 F(with a subscript of 0.)108 192 Q +.168(An array v)108 208.8 R .168 +(ariable is considered set if a subscript has been assigned a v)-.25 F +2.668(alue. The)-.25 F .168(null string is a v)2.668 F .168(alid v)-.25 +F(alue.)-.25 E(The)108 225.6 Q F3(unset)2.766 E F0 -.2(bu)2.766 G .267 +(iltin is used to destro).2 F 2.767(ya)-.1 G(rrays.)-2.767 E F3(unset) +5.267 E F1(name)2.767 E F0([)A F1(subscript)A F0 2.767(]d)C(estro)-2.767 +E .267(ys the array element at inde)-.1 F(x)-.15 E F1(sub-)2.767 E +(script)108 237.6 Q F0 6.205(.C)C 1.205(are must be tak)-6.205 F 1.205 +(en to a)-.1 F -.2(vo)-.2 G 1.205(id unw).2 F 1.205(anted side ef)-.1 F +1.204(fects caused by pathname e)-.25 F(xpansion.)-.15 E F3(unset)6.204 +E F1(name)3.704 E F0(,)A(where)108 249.6 Q F1(name)2.5 E F0(is an array) +2.5 E 2.5(,o)-.65 G(r)-2.5 E F3(unset)2.5 E F1(name)2.5 E F0([)A F1 +(subscript)A F0(], where)A F1(subscript)2.5 E F0(is)2.5 E F3(*)2.5 E F0 +(or)2.5 E F3(@)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(The)108 266.4 Q F3(declar)3.573 E(e) +-.18 E F0(,)A F3(local)3.573 E F0 3.573(,a)C(nd)-3.573 E F3 -.18(re) +3.573 G(adonly).18 E F0 -.2(bu)3.573 G 1.073(iltins each accept a).2 F +F33.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 F33.574 E F0 .752 +(option to specify an associati)108 278.4 R 1.052 -.15(ve a)-.25 H(rray) +.15 E 5.752(.T)-.65 G(he)-5.752 E F3 -.18(re)3.252 G(ad).18 E F0 -.2(bu) +3.252 G .752(iltin accepts a).2 F F33.252 E F0 .751 +(option to assign a list of w)3.251 F .751(ords read)-.1 F .502 +(from the standard input to an array)108 290.4 R 5.502(.T)-.65 G(he) +-5.502 E F3(set)3.002 E F0(and)3.002 E F3(declar)3.002 E(e)-.18 E F0 -.2 (bu)3.002 G .502(iltins display array v).2 F .502(alues in a w)-.25 F -.502(ay that allo)-.1 F(ws)-.25 E(them to be reused as assignments.)108 -148.8 Q/F3 10.95/Times-Bold@0 SF(EXP)72 165.6 Q(ANSION)-.81 E F0 .76(Ex\ +.503(ay that allo)-.1 F(ws)-.25 E(them to be reused as assignments.)108 +302.4 Q/F4 10.95/Times-Bold@0 SF(EXP)72 319.2 Q(ANSION)-.81 E F0 .76(Ex\ pansion is performed on the command line after it has been split into w) -108 177.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 189.6 S .37 +108 331.2 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 343.2 S .369 (pansion performed:).15 F F1(br)2.869 E .369(ace e)-.15 F(xpansion)-.2 E F0(,).24 E F1 .369(tilde e)2.869 F(xpansion)-.2 E F0(,).24 E F1(par) 2.869 E .369(ameter and variable e)-.15 F(xpansion)-.2 E F0(,).24 E F1 -.369(command sub-)2.869 F(stitution)108 201.6 Q F0(,).24 E F1 +.37(command sub-)2.869 F(stitution)108 355.2 Q F0(,).24 E F1 (arithmetic e)2.5 E(xpansion)-.2 E F0(,).24 E F1(wor)2.5 E 2.5(ds)-.37 G (plitting)-2.5 E F0 2.5(,a).22 G(nd)-2.5 E F1(pathname e)2.5 E(xpansion) --.2 E F0(.).24 E .47(The order of e)108 218.4 R .471 +-.2 E F0(.).24 E .471(The order of e)108 372 R .471 (xpansions is: brace e)-.15 F .471(xpansion, tilde e)-.15 F .471 -(xpansion, parameter)-.15 F 2.971(,v)-.4 G .471 -(ariable and arithmetic e)-3.221 F(xpansion)-.15 E -(and command substitution \(done in a left-to-right f)108 230.4 Q +(xpansion, parameter)-.15 F 2.971(,v)-.4 G .47(ariable and arithmetic e) +-3.221 F(xpansion)-.15 E +(and command substitution \(done in a left-to-right f)108 384 Q (ashion\), w)-.1 E(ord splitting, and pathname e)-.1 E(xpansion.)-.15 E -(On systems that can support it, there is an additional e)108 247.2 Q +(On systems that can support it, there is an additional e)108 400.8 Q (xpansion a)-.15 E -.25(va)-.2 G(ilable:).25 E F1(pr)2.5 E -(ocess substitution)-.45 E F0(.)A 1.487(Only brace e)108 264 R 1.487 -(xpansion, w)-.15 F 1.487(ord splitting, and pathname e)-.1 F 1.487 -(xpansion can change the number of w)-.15 F 1.486(ords of the)-.1 F -.15 -(ex)108 276 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 288 S(pansions of ").15 E F2($@)A F0 2.5("a)C(nd ") --2.5 E F2(${)A F1(name)A F2([@]})A F0 2.5("a)C 2.5(se)-2.5 G -(xplained abo)-2.65 E .3 -.15(ve \()-.15 H(see).15 E/F4 9/Times-Bold@0 -SF -.666(PA)2.5 G(RAMETERS).666 E/F5 9/Times-Roman@0 SF(\).)A F2 -(Brace Expansion)87 304.8 Q F1(Br)108.58 316.8 Q .606(ace e)-.15 F -(xpansion)-.2 E F0 .606 +(ocess substitution)-.45 E F0(.)A 1.486(Only brace e)108 417.6 R 1.486 +(xpansion, w)-.15 F 1.486(ord splitting, and pathname e)-.1 F 1.487 +(xpansion can change the number of w)-.15 F 1.487(ords of the)-.1 F -.15 +(ex)108 429.6 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 441.6 S(pansions of ").15 E F3($@)A F0 2.5("a)C(nd ") +-2.5 E F3(${)A F1(name)A F3([@]})A F0 2.5("a)C 2.5(se)-2.5 G +(xplained abo)-2.65 E .3 -.15(ve \()-.15 H(see).15 E F2 -.666(PA)2.5 G +(RAMETERS).666 E/F5 9/Times-Roman@0 SF(\).)A F3(Brace Expansion)87 458.4 +Q F1(Br)108.58 470.4 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 328.8 Q F1 .415 +.606(This mechanism is similar)5.606 F(to)108 482.4 Q F1 .415 (pathname e)2.915 F(xpansion)-.2 E F0 2.915(,b)C .415 (ut the \214lenames generated need not e)-3.115 F 2.915(xist. P)-.15 F .415(atterns to be brace e)-.15 F .415(xpanded tak)-.15 F 2.915(et)-.1 G -(he)-2.915 E .152(form of an optional)108 340.8 R F1(pr)2.652 E(eamble) +(he)-2.915 E .151(form of an optional)108 494.4 R F1(pr)2.651 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 352.8 R +F(xpres-)-.15 E .563(sion between a pair of braces, follo)108 506.4 R .563(wed by an optional)-.25 F F1(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 364.8 R .658(xpanding left to)-.15 F(right.) -108 376.8 Q .718(Brace e)108 393.6 R .719(xpansions may be nested.)-.15 +ch resulting string, e)108 518.4 R .659(xpanding left to)-.15 F(right.) +108 530.4 Q .719(Brace e)108 547.2 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 405.6 Q 2.5(ed. F)-.15 F(or e)-.15 E(xample, a)-.15 E F2({)A F0 -(d,c,b)A F2(})A F0 2.5(ee)C(xpands into `ade ace abe'.)-2.65 E 3.243(As) -108 422.4 S .743(equence e)-3.243 F .743(xpression tak)-.15 F .743 -(es the form)-.1 F F2({)3.243 E F1(x)A F2(..)A F1(y)A F2([..)A F1(incr)A -F2(]})A F0 3.243(,w)C(here)-3.243 E F1(x)3.243 E F0(and)3.242 E F1(y) -3.242 E F0 .742(are either inte)3.242 F .742(gers or single characters,) --.15 F(and)108 434.4 Q F1(incr)3.031 E F0 3.031(,a)C 3.032(no)-3.031 G +108 559.2 Q 2.5(ed. F)-.15 F(or e)-.15 E(xample, a)-.15 E F3({)A F0 +(d,c,b)A F3(})A F0 2.5(ee)C(xpands into `ade ace abe'.)-2.65 E 3.242(As) +108 576 S .742(equence e)-3.242 F .742(xpression tak)-.15 F .742 +(es the form)-.1 F F3({)3.242 E F1(x)A F3(..)A F1(y)A F3([..)A F1(incr)A +F3(]})A F0 3.242(,w)C(here)-3.242 E F1(x)3.242 E F0(and)3.243 E F1(y) +3.243 E F0 .743(are either inte)3.243 F .743(gers or single characters,) +-.15 F(and)108 588 Q F1(incr)3.032 E F0 3.032(,a)C 3.032(no)-3.032 G .532(ptional increment, is an inte)-3.032 F(ger)-.15 E 5.532(.W)-.55 G .532(hen inte)-5.532 F .532(gers are supplied, the e)-.15 F .532 -(xpression e)-.15 F .532(xpands to each)-.15 F .078(number between)108 -446.4 R F1(x)2.578 E F0(and)2.578 E F1(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 F1(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 458.4 R .014(When either)5.014 F F1(x)2.514 E F0(or) -2.514 E F1(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 470.4 R -6.143(.W)-.65 G 1.143(hen characters are supplied, the e)-6.143 F -(xpression)-.15 E -.15(ex)108 482.4 S .541(pands to each character le) -.15 F .541(xicographically between)-.15 F F1(x)3.041 E F0(and)3.042 E F1 -(y)3.042 E F0 3.042(,i)C(nclusi)-3.042 E -.15(ve)-.25 G 5.542(.N).15 G -.542(ote that both)-5.542 F F1(x)3.042 E F0(and)3.042 E F1(y)3.042 E F0 -.542(must be of)3.042 F .183(the same type.)108 494.4 R .182 -(When the increment is supplied, it is used as the dif)5.183 F .182 -(ference between each term.)-.25 F .182(The def)5.182 F(ault)-.1 E -(increment is 1 or -1 as appropriate.)108 506.4 Q .581(Brace e)108 523.2 -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 535.2 R .016(ed in the result.)-.15 F .016 -(It is strictly te)5.016 F(xtual.)-.15 E F2(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 547.2 Q +(xpression e)-.15 F .531(xpands to each)-.15 F .077(number between)108 +600 R F1(x)2.577 E F0(and)2.577 E F1(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 F1(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 612 R .015(When either)5.015 F F1(x)2.515 E F0(or)2.515 +E F1(y)2.515 E F0(be)2.515 E .014(gins with a zero, the shell attempts \ +to force all generated terms to contain)-.15 F 1.143 +(the same number of digits, zero-padding where necessary)108 624 R 6.143 +(.W)-.65 G 1.143(hen characters are supplied, the e)-6.143 F(xpression) +-.15 E -.15(ex)108 636 S .542(pands to each character le).15 F .542 +(xicographically between)-.15 F F1(x)3.042 E F0(and)3.042 E F1(y)3.042 E +F0 3.042(,i)C(nclusi)-3.042 E -.15(ve)-.25 G 5.542(.N).15 G .542 +(ote that both)-5.542 F F1(x)3.041 E F0(and)3.041 E F1(y)3.041 E F0 .541 +(must be of)3.041 F .182(the same type.)108 648 R .182 +(When the increment is supplied, it is used as the dif)5.182 F .183 +(ference between each term.)-.25 F .183(The def)5.183 F(ault)-.1 E +(increment is 1 or -1 as appropriate.)108 660 Q .582(Brace e)108 676.8 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 688.8 R .015(ed in the result.)-.15 F .015 +(It is strictly te)5.015 F(xtual.)-.15 E F3(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 700.8 Q (xt of the e)-.15 E(xpansion or the te)-.15 E(xt between the braces.) --.15 E 3.632(Ac)108 564 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 576 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 588 R F2({)2.755 E F0(or)2.755 E F2(,)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 600 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 -F2(${)2.911 E F0 .41(is not considered eligible for brace e)2.911 F -(xpan-)-.15 E(sion.)108 612 Q 1.476(This construct is typically used as\ - shorthand when the common pre\214x of the strings to be generated is) -108 628.8 R(longer than in the abo)108 640.8 Q .3 -.15(ve ex)-.15 H -(ample:).15 E(mkdir /usr/local/src/bash/{old,ne)144 657.6 Q -.65(w,)-.25 -G(dist,b).65 E(ugs})-.2 E(or)108 669.6 Q(cho)144 681.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 .618(Brace e)108 698.4 R .618 -(xpansion introduces a slight incompatibility with historical v)-.15 F -.618(ersions of)-.15 F F2(sh)3.118 E F0(.)A F2(sh)5.618 E F0 .618 -(does not treat open-)3.118 F .247 -(ing or closing braces specially when the)108 710.4 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 F2(Bash)5.248 E F0(remo)108 722.4 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 F2(sh) -3.53 E F0(as)3.53 E(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(18) -197.335 E 0 Cg EP +-.15 E 3.633(Ac)108 717.6 S 1.133(orrectly-formed brace e)-3.633 F 1.132 +(xpansion must contain unquoted opening and closing braces, and at leas\ +t one)-.15 F 3.44(unquoted comma or a v)108 729.6 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 +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(18)198.165 E 0 Cg EP %%Page: 19 19 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Italic@0 SF(\214le{1,2})108 84 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 F1 .515(\214le1 \214le2)4.925 F F0 .515(after e) -3.035 F .515(xpansion by)-.15 F/F2 10/Times-Bold@0 SF(bash)3.015 E F0(.) -A .437(If strict compatibility with)108 96 R F2(sh)2.936 E F0 .436 -(is desired, start)2.936 F F2(bash)2.936 E F0 .436(with the)2.936 F F2 -(+B)2.936 E F0 .436(option or disable brace e)2.936 F .436 -(xpansion with the)-.15 F F2(+B)108 108 Q F0(option to the)2.5 E F2(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 F2 -.18(Ti)87 124.8 S -(lde Expansion).18 E F0 1.086(If a w)108 136.8 R 1.086(ord be)-.1 F -1.086(gins with an unquoted tilde character \(`)-.15 F F2(~)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 considered a) -108 148.8 R F1(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 160.8 R .726 -(wing the tilde are treated as a possible)-.25 F F1(lo)108 172.8 Q .523 -(gin name)-.1 F F0 5.523(.I)C 3.023(ft)-5.523 G .523 +-.35 E 2.755(unchanged. A)108 84 R/F1 10/Times-Bold@0 SF({)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 96 R 2.91(oa)-.8 G -.2(vo)-3.11 G +.41(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.)108 108 Q 1.476(This construct is typically used as\ + shorthand when the common pre\214x of the strings to be generated is) +108 124.8 R(longer than in the abo)108 136.8 Q .3 -.15(ve ex)-.15 H +(ample:).15 E(mkdir /usr/local/src/bash/{old,ne)144 153.6 Q -.65(w,)-.25 +G(dist,b).65 E(ugs})-.2 E(or)108 165.6 Q(cho)144 177.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 .618(Brace e)108 194.4 R .618 +(xpansion introduces a slight incompatibility with historical v)-.15 F +.618(ersions of)-.15 F F1(sh)3.118 E F0(.)A F1(sh)5.618 E F0 .618 +(does not treat open-)3.118 F .248 +(ing or closing braces specially when the)108 206.4 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 218.4 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 230.4 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 242.4 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 254.4 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 271.2 S(lde Expansion).18 E F0 1.087(If a w)108 283.2 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 consider\ +ed a)108 295.2 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 307.2 R +.725(wing the tilde are treated as a possible)-.25 F F2(lo)108 319.2 Q +.522(gin name)-.1 F F0 5.522(.I)C 3.022(ft)-5.522 G .522 (his login name is the null string, the tilde is replaced with the v) --3.023 F .522(alue of the shell parameter)-.25 F F3(HOME)108 184.8 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\ +-3.022 F .523(alue of the shell parameter)-.25 F F3(HOME)108 331.2 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\ ise, the tilde-pre\214x is replaced with the home directory associated \ -with the speci\214ed login name.)108 196.8 Q .093 -(If the tilde-pre\214x is a `~+', the v)108 213.6 R .092 +with the speci\214ed login name.)108 343.2 Q .092 +(If the tilde-pre\214x is a `~+', the v)108 360 R .092 (alue of the shell v)-.25 F(ariable)-.25 E F3(PWD)2.592 E F0 .092 -(replaces the tilde-pre\214x.)2.342 F .092(If the tilde-pre\214x is) -5.092 F 3.403(a`)108 225.6 S .903(~\255', the v)-3.403 F .903 +(replaces the tilde-pre\214x.)2.342 F .093(If the tilde-pre\214x is) +5.093 F 3.404(a`)108 372 S .904(~\255', the v)-3.404 F .904 (alue of the shell v)-.25 F(ariable)-.25 E F3(OLDPWD)3.404 E F4(,)A F0 -.904(if it is set, is substituted.)3.154 F .904(If the characters follo) -5.904 F .904(wing the)-.25 F 1.642 -(tilde in the tilde-pre\214x consist of a number)108 237.6 R F1(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 -249.6 R 1.438(ould be displayed by the)-.1 F F2(dirs)3.938 E F0 -.2(bu) -108 261.6 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 +.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 384 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\ +ith the corresponding element from the directory stack, as it w)108 396 +R 1.437(ould be displayed by the)-.1 F F1(dirs)3.937 E F0 -.2(bu)108 408 +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(wing the tilde in the tilde-pre\214x) +-.25 F (consist of a number without a leading `+' or `\255', `+' is assumed.) -108 273.6 Q(If the login name is in)108 290.4 Q -.25(va)-.4 G +108 420 Q(If the login name is in)108 436.8 Q -.25(va)-.4 G (lid, or the tilde e).25 E(xpansion f)-.15 E(ails, the w)-.1 E -(ord is unchanged.)-.1 E .166(Each v)108 307.2 R .167 +(ord is unchanged.)-.1 E .167(Each v)108 453.6 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 F2(:)2.667 E -F0 .167(or the \214rst)2.667 F F2(=)2.667 E F0 5.167(.I)C(n)-5.167 E -.282(these cases, tilde e)108 319.2 R .282(xpansion is also performed.) +-.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 +.281(these cases, tilde e)108 465.6 R .282(xpansion is also performed.) -.15 F(Consequently)5.282 E 2.782(,o)-.65 G .282 (ne may use \214le names with tildes in assign-)-2.782 F(ments to)108 -331.2 Q F3 -.666(PA)2.5 G(TH)-.189 E F4(,)A F3(MAILP)2.25 E -.855(AT) +477.6 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 F2 -.1(Pa)87 348 S(rameter Expansion).1 E F0 1.605(The `) -108 360 R F2($)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 372 -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 384 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 396 -Q 1.19(When braces are used, the matching ending brace is the \214rst `) -108 412.8 R F2(})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 424.8 R 2.15 -(xpansion, command substitution, or parameter)-.15 F -.15(ex)108 436.8 S -(pansion.).15 E(${)108 453.6 Q F1(par)A(ameter)-.15 E F0(})A 1.205 -(The v)144 465.6 R 1.205(alue of)-.25 F F1(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 -F1(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 477.6 R F1(par)4.014 E -(ameter)-.15 E F0 .264(is follo)3.494 F .264 +(alue.)-.25 E F1 -.1(Pa)87 494.4 S(rameter Expansion).1 E F0 1.606 +(The `)108 506.4 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 518.4 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 530.4 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 +542.4 Q 1.189 +(When braces are used, the matching ending brace is the \214rst `)108 +559.2 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 +571.2 R 2.15(xpansion, command substitution, or parameter)-.15 F -.15 +(ex)108 583.2 S(pansion.).15 E(${)108 600 Q F2(par)A(ameter)-.15 E F0(}) +A 1.204(The v)144 612 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 624 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 -(be interpreted as part of its name.)144 489.6 Q .686 -(If the \214rst character of)108 506.4 R F1(par)3.186 E(ameter)-.15 E F0 -.685(is an e)3.185 F .685(xclamation point \()-.15 F F2(!)A F0 .685 -(\), a le)B -.15(ve)-.25 G 3.185(lo).15 G 3.185(fv)-3.185 G .685 -(ariable indirection is introduced.)-3.435 F F2(Bash)108 518.4 Q F0 .106 +(be interpreted as part of its name.)144 636 Q .685 +(If the \214rst character of)108 652.8 R F2(par)3.185 E(ameter)-.15 E F0 +.685(is an e)3.185 F .685(xclamation point \()-.15 F F1(!)A F0 .685 +(\), a le)B -.15(ve)-.25 G 3.186(lo).15 G 3.186(fv)-3.186 G .686 +(ariable indirection is introduced.)-3.436 F F1(Bash)108 664.8 Q F0 .106 (uses the v)2.606 F .106(alue of the v)-.25 F .106 -(ariable formed from the rest of)-.25 F F1(par)2.606 E(ameter)-.15 E F0 +(ariable formed from the rest of)-.25 F F2(par)2.606 E(ameter)-.15 E F0 .106(as the name of the v)2.606 F .106(ariable; this v)-.25 F(ari-)-.25 -E .352(able is then e)108 530.4 R .352(xpanded and that v)-.15 F .351 +E .351(able is then e)108 676.8 R .351(xpanded and that v)-.15 F .352 (alue is used in the rest of the substitution, rather than the v)-.25 F -.351(alue of)-.25 F F1(par)2.851 E(ame-)-.15 E(ter)108 542.4 Q F0 2.519 -(itself. This)2.519 F .019(is kno)2.519 F .019(wn as)-.25 F F1(indir) -2.519 E .019(ect e)-.37 F(xpansion)-.2 E F0 5.019(.T)C .019(he e)-5.019 -F .02(xceptions to this are the e)-.15 F .02(xpansions of ${!)-.15 F F1 -(pr)A(e\214x)-.37 E F0 .02(*} and)B(${)108 554.4 Q F2(!)A F1(name)A F0 -([)A F1(@)A F0 .763(]} described belo)B 4.563 -.65(w. T)-.25 H .763 -(he e).65 F .763(xclamation point must immediately follo)-.15 F 3.263 -(wt)-.25 G .763(he left brace in order to)-3.263 F -(introduce indirection.)108 566.4 Q .334(In each of the cases belo)108 -583.2 R -.65(w,)-.25 G F1(wor)3.484 E(d)-.37 E F0 .334 -(is subject to tilde e)2.834 F .334(xpansion, parameter e)-.15 F .334 -(xpansion, command substitution,)-.15 F(and arithmetic e)108 595.2 Q -(xpansion.)-.15 E .698(When not performing substring e)108 612 R .698 -(xpansion, using the forms documented belo)-.15 F -.65(w,)-.25 G F2 -(bash)3.848 E F0 .697(tests for a parameter)3.198 F -(that is unset or null.)108 624 Q(Omitting the colon results in a test \ -only for a parameter that is unset.)5 E(${)108 640.8 Q F1(par)A(ameter) --.15 E F2<3aad>A F1(wor)A(d)-.37 E F0(})A F2 .722(Use Default V)144 -652.8 R(alues)-.92 E F0 5.722(.I)C(f)-5.722 E F1(par)4.472 E(ameter)-.15 -E F0 .723(is unset or null, the e)3.952 F .723(xpansion of)-.15 F F1 -(wor)3.563 E(d)-.37 E F0 .723(is substituted.)3.993 F(Other)5.723 E(-) --.2 E(wise, the v)144 664.8 Q(alue of)-.25 E F1(par)3.75 E(ameter)-.15 E -F0(is substituted.)3.23 E(${)108 676.8 Q F1(par)A(ameter)-.15 E F2(:=)A -F1(wor)A(d)-.37 E F0(})A F2 2.005(Assign Default V)144 688.8 R(alues) --.92 E F0 7.005(.I)C(f)-7.005 E F1(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 F1(wor)4.844 E -(d)-.37 E F0 2.004(is assigned to)5.274 F F1(par)144 700.8 Q(ameter)-.15 -E F0 5.278(.T).73 G .278(he v)-5.278 F .278(alue of)-.25 F F1(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 712.8 Q(ay)-.1 E(.)-.65 E -(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(19)197.335 E 0 Cg EP +.352(alue of)-.25 F F2(par)2.852 E(ame-)-.15 E(ter)108 688.8 Q F0 2.52 +(itself. This)2.52 F .02(is kno)2.52 F .02(wn as)-.25 F F2(indir)2.52 E +.02(ect e)-.37 F(xpansion)-.2 E F0 5.019(.T)C .019(he e)-5.019 F .019 +(xceptions to this are the e)-.15 F .019(xpansions of ${!)-.15 F F2(pr)A +(e\214x)-.37 E F0 .019(*} and)B(${)108 700.8 Q F1(!)A F2(name)A F0([)A +F2(@)A F0 .762(]} described belo)B 4.563 -.65(w. T)-.25 H .763(he e).65 +F .763(xclamation point must immediately follo)-.15 F 3.263(wt)-.25 G +.763(he left brace in order to)-3.263 F(introduce indirection.)108 712.8 +Q .334(In each of the cases belo)108 729.6 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(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(19)198.165 E 0 Cg EP %%Page: 20 20 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(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 .535(Display Err)144 -96 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 -.661(sage to that ef)144 108 R .661(fect if)-.25 F F1(wor)3.501 E(d)-.37 -E F0 .662(is not present\) is written to the standard error and the she\ -ll, if it is not)3.931 F(interacti)144 120 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 132 Q F1(par)A(ameter) --.15 E F2(:+)A F1(wor)A(d)-.37 E F0(})A F2 .745(Use Alter)144 144 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 .745 -(is null or unset, nothing is substituted, otherwise the e)3.975 F -(xpan-)-.15 E(sion of)144 156 Q F1(wor)2.84 E(d)-.37 E F0 -(is substituted.)3.27 E(${)108 168 Q F1(par)A(ameter)-.15 E F2(:)A F1 -(of)A(fset)-.18 E F0(})A(${)108 180 Q F1(par)A(ameter)-.15 E F2(:)A F1 -(of)A(fset)-.18 E F2(:)A F1(length)A F0(})A F2 .796 -(Substring Expansion.)144 192 R F0 .796(Expands to up to)5.796 F F1 -(length)3.296 E F0 .796(characters of)3.296 F F1(par)3.296 E(ameter)-.15 -E F0 .797(starting at the character)3.296 F .229(speci\214ed by)144 204 -R F1(of)2.729 E(fset)-.18 E F0 5.229(.I)C(f)-5.229 E F1(length)2.729 E -F0 .229(is omitted, e)2.729 F .229(xpands to the substring of)-.15 F F1 -(par)2.729 E(ameter)-.15 E F0 .228(starting at the char)2.728 F(-)-.2 E -.432(acter speci\214ed by)144 216 R F1(of)2.933 E(fset)-.18 E F0(.)A F1 -(length)5.433 E F0(and)2.933 E F1(of)2.933 E(fset)-.18 E F0 .433 -(are arithmetic e)2.933 F .433(xpressions \(see)-.15 F/F3 9/Times-Bold@0 -SF .433(ARITHMETIC EV)2.933 F(ALU-)-1.215 E -.855(AT)144 228 S(ION).855 -E F0(belo)2.926 E 3.176(w\). If)-.25 F F1(of)3.176 E(fset)-.18 E F0 -.25 -(eva)3.176 G .676(luates to a number less than zero, the v).25 F .675 -(alue is used as an of)-.25 F .675(fset from)-.25 F .102 -(the end of the v)144 240 R .103(alue of)-.25 F F1(par)2.603 E(ameter) --.15 E F0 5.103(.I)C(f)-5.103 E F1(length)2.603 E F0 -.25(eva)2.603 G -.103(luates to a number less than zero, and).25 F F1(par)2.603 E(ameter) --.15 E F0(is)2.603 E(not)144 252 Q F2(@)3.643 E F0 1.143 -(and not an inde)3.643 F -.15(xe)-.15 G 3.643(do).15 G 3.643(ra)-3.643 G -(ssociati)-3.643 E 1.443 -.15(ve a)-.25 H(rray).15 E 3.643(,i)-.65 G -3.643(ti)-3.643 G 3.643(si)-3.643 G 1.142(nterpreted as an of)-3.643 F -1.142(fset from the end of the)-.25 F -.25(va)144 264 S .037(lue of).25 -F F1(par)2.537 E(ameter)-.15 E F0 .037 -(rather than a number of characters, and the e)2.537 F .038 -(xpansion is the characters between)-.15 F .074(the tw)144 276 R 2.574 -(oo)-.1 G -.25(ff)-2.574 G 2.574(sets. If).25 F F1(par)2.574 E(ameter) --.15 E F0(is)2.574 E F2(@)2.574 E F0 2.574(,t)C .074(he result is)-2.574 -F F1(length)2.574 E F0 .074(positional parameters be)2.574 F .073 -(ginning at)-.15 F F1(of)2.573 E(fset)-.18 E F0 5.073(.I)C(f)-5.073 E F1 -(par)144 288 Q(ameter)-.15 E F0 .205(is an inde)2.705 F -.15(xe)-.15 G +-.35 E(and arithmetic e)108 84 Q(xpansion.)-.15 E .697 +(When not performing substring e)108 100.8 R .698 +(xpansion, using the forms documented belo)-.15 F -.65(w,)-.25 G/F1 10 +/Times-Bold@0 SF(bash)3.848 E F0 .698(tests for a parameter)3.198 F +(that is unset or null.)108 112.8 Q(Omitting the colon results in a tes\ +t only for a parameter that is unset.)5 E(${)108 129.6 Q/F2 10 +/Times-Italic@0 SF(par)A(ameter)-.15 E F1<3aad>A F2(wor)A(d)-.37 E F0(}) +A F1 .723(Use Default V)144 141.6 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 153.6 Q(alue of)-.25 E F2 +(par)3.75 E(ameter)-.15 E F0(is substituted.)3.23 E(${)108 165.6 Q F2 +(par)A(ameter)-.15 E F1(:=)A F2(wor)A(d)-.37 E F0(})A F1 2.004 +(Assign Default V)144 177.6 R(alues)-.92 E F0 7.004(.I)C(f)-7.004 E F2 +(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 F2(wor)4.845 E(d)-.37 E F0 2.005 +(is assigned to)5.275 F F2(par)144 189.6 Q(ameter)-.15 E F0 5.279(.T).73 +G .279(he v)-5.279 F .279(alue of)-.25 F F2(par)4.029 E(ameter)-.15 E F0 +.278(is then substituted.)3.508 F .278 +(Positional parameters and special param-)5.278 F +(eters may not be assigned to in this w)144 201.6 Q(ay)-.1 E(.)-.65 E +(${)108 213.6 Q F2(par)A(ameter)-.15 E F1(:?)A F2(wor)A(d)-.37 E F0(})A +F1 .535(Display Err)144 225.6 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 .662(sage to that ef)144 237.6 R +.662(fect if)-.25 F F2(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 249.6 Q -.15(ve)-.25 G 2.5(,e).15 G 2.5(xits. Otherwise,) +-2.65 F(the v)2.5 E(alue of)-.25 E F2(par)2.5 E(ameter)-.15 E F0 +(is substituted.)2.5 E(${)108 261.6 Q F2(par)A(ameter)-.15 E F1(:+)A F2 +(wor)A(d)-.37 E F0(})A F1 .745(Use Alter)144 273.6 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 285.6 Q F2(wor)2.84 E(d)-.37 E F0 +(is substituted.)3.27 E(${)108 297.6 Q F2(par)A(ameter)-.15 E F1(:)A F2 +(of)A(fset)-.18 E F0(})A(${)108 309.6 Q F2(par)A(ameter)-.15 E F1(:)A F2 +(of)A(fset)-.18 E F1(:)A F2(length)A F0(})A F1 .797 +(Substring Expansion.)144 321.6 R F0 .796(Expands to up to)5.797 F F2 +(length)3.296 E F0 .796(characters of)3.296 F F2(par)3.296 E(ameter)-.15 +E F0 .796(starting at the character)3.296 F .228(speci\214ed by)144 +333.6 R F2(of)2.728 E(fset)-.18 E F0 5.228(.I)C(f)-5.228 E F2(length) +2.728 E F0 .229(is omitted, e)2.729 F .229(xpands to the substring of) +-.15 F F2(par)2.729 E(ameter)-.15 E F0 .229(starting at the char)2.729 F +(-)-.2 E .433(acter speci\214ed by)144 345.6 R F2(of)2.933 E(fset)-.18 E +F0(.)A F2(length)5.433 E F0(and)2.933 E F2(of)2.933 E(fset)-.18 E F0 +.433(are arithmetic e)2.933 F .433(xpressions \(see)-.15 F/F3 9 +/Times-Bold@0 SF .432(ARITHMETIC EV)2.933 F(ALU-)-1.215 E -.855(AT)144 +357.6 S(ION).855 E F0(belo)2.925 E 3.175(w\). If)-.25 F F2(of)3.175 E +(fset)-.18 E F0 -.25(eva)3.175 G .676 +(luates to a number less than zero, the v).25 F .676 +(alue is used as an of)-.25 F .676(fset from)-.25 F .103 +(the end of the v)144 369.6 R .103(alue of)-.25 F F2(par)2.603 E(ameter) +-.15 E F0 5.103(.I)C(f)-5.103 E F2(length)2.603 E F0 -.25(eva)2.603 G +.103(luates to a number less than zero, and).25 F F2(par)2.602 E(ameter) +-.15 E F0(is)2.602 E(not)144 381.6 Q F1(@)3.642 E F0 1.142 +(and not an inde)3.642 F -.15(xe)-.15 G 3.642(do).15 G 3.642(ra)-3.642 G +(ssociati)-3.642 E 1.443 -.15(ve a)-.25 H(rray).15 E 3.643(,i)-.65 G +3.643(ti)-3.643 G 3.643(si)-3.643 G 1.143(nterpreted as an of)-3.643 F +1.143(fset from the end of the)-.25 F -.25(va)144 393.6 S .038(lue of) +.25 F F2(par)2.538 E(ameter)-.15 E F0 .037 +(rather than a number of characters, and the e)2.538 F .037 +(xpansion is the characters between)-.15 F .073(the tw)144 405.6 R 2.573 +(oo)-.1 G -.25(ff)-2.573 G 2.573(sets. If).25 F F2(par)2.573 E(ameter) +-.15 E F0(is)2.574 E F1(@)2.574 E F0 2.574(,t)C .074(he result is)-2.574 +F F2(length)2.574 E F0 .074(positional parameters be)2.574 F .074 +(ginning at)-.15 F F2(of)2.574 E(fset)-.18 E F0 5.074(.I)C(f)-5.074 E F2 +(par)144 417.6 Q(ameter)-.15 E F0 .205(is an inde)2.705 F -.15(xe)-.15 G 2.705(da).15 G .205(rray name subscripted by @ or *, the result is the) --2.705 F F1(length)2.705 E F0 .205(members of the)2.705 F .697(array be) -144 300 R .697(ginning with ${)-.15 F F1(par)A(ameter)-.15 E F0([)A F1 +-2.705 F F2(length)2.705 E F0 .205(members of the)2.705 F .696(array be) +144 429.6 R .697(ginning with ${)-.15 F F2(par)A(ameter)-.15 E F0([)A F2 (of)A(fset)-.18 E F0 3.197(]}. A)B(ne)3.197 E -.05(ga)-.15 G(ti).05 E --.15(ve)-.25 G F1(of)3.347 E(fset)-.18 E F0 .697(is tak)3.197 F .697 +-.15(ve)-.25 G F2(of)3.347 E(fset)-.18 E F0 .697(is tak)3.197 F .697 (en relati)-.1 F .997 -.15(ve t)-.25 H 3.197(oo).15 G .697 -(ne greater than)-3.197 F 1.403(the maximum inde)144 312 R 3.903(xo)-.15 -G 3.903(ft)-3.903 G 1.403(he speci\214ed array)-3.903 F 6.403(.S)-.65 G -1.403(ubstring e)-6.403 F 1.403(xpansion applied to an associati)-.15 F -1.704 -.15(ve a)-.25 H(rray).15 E 1.295(produces unde\214ned results.) -144 324 R 1.295(Note that a ne)6.295 F -.05(ga)-.15 G(ti).05 E 1.595 --.15(ve o)-.25 H -.25(ff).15 G 1.294 -(set must be separated from the colon by at).25 F .958 -(least one space to a)144 336 R -.2(vo)-.2 G .959 -(id being confused with the :- e).2 F 3.459(xpansion. Substring)-.15 F -(inde)3.459 E .959(xing is zero-based)-.15 F .415 +(ne greater than)-3.197 F 1.404(the maximum inde)144 441.6 R 3.903(xo) +-.15 G 3.903(ft)-3.903 G 1.403(he speci\214ed array)-3.903 F 6.403(.S) +-.65 G 1.403(ubstring e)-6.403 F 1.403(xpansion applied to an associati) +-.15 F 1.703 -.15(ve a)-.25 H(rray).15 E 1.294 +(produces unde\214ned results.)144 453.6 R 1.294(Note that a ne)6.294 F +-.05(ga)-.15 G(ti).05 E 1.595 -.15(ve o)-.25 H -.25(ff).15 G 1.295 +(set must be separated from the colon by at).25 F .959 +(least one space to a)144 465.6 R -.2(vo)-.2 G .959 +(id being confused with the :- e).2 F 3.458(xpansion. Substring)-.15 F +(inde)3.458 E .958(xing is zero-based)-.15 F .414 (unless the positional parameters are used, in which case the inde)144 -348 R .414(xing starts at 1 by def)-.15 F 2.914(ault. If)-.1 F F1(of) -2.914 E(f-)-.18 E(set)144 360 Q F0 -(is 0, and the positional parameters are used,)2.5 E F2($0)2.5 E F0 -(is pre\214x)2.5 E(ed to the list.)-.15 E(${)108 376.8 Q F2(!)A F1(pr)A -(e\214x)-.37 E F2(*)A F0(})A(${)108 388.8 Q F2(!)A F1(pr)A(e\214x)-.37 E -F2(@)A F0(})A F2 .084(Names matching pr)144 400.8 R(e\214x.)-.18 E F0 -.084(Expands 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 412.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 424.8 Q(ariable name e)-.25 E -(xpands to a separate w)-.15 E(ord.)-.1 E(${)108 441.6 Q F2(!)A F1(name) -A F0([)A F1(@)A F0(]})A(${)108 453.6 Q F2(!)A F1(name)A F0([)A F1(*)A F0 -(]})A F2 2.035(List of array k)144 465.6 R(eys.)-.1 E F0(If)7.036 E F1 +477.6 R .415(xing starts at 1 by def)-.15 F 2.915(ault. If)-.1 F F2(of) +2.915 E(f-)-.18 E(set)144 489.6 Q F0 +(is 0, and the positional parameters are used,)2.5 E F1($0)2.5 E F0 +(is pre\214x)2.5 E(ed to the list.)-.15 E(${)108 506.4 Q F1(!)A F2(pr)A +(e\214x)-.37 E F1(*)A F0(})A(${)108 518.4 Q F1(!)A F2(pr)A(e\214x)-.37 E +F1(@)A F0(})A F1 .085(Names matching pr)144 530.4 R(e\214x.)-.18 E F0 +.084(Expands 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 542.4 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 554.4 Q(ariable name e)-.25 E +(xpands to a separate w)-.15 E(ord.)-.1 E(${)108 571.2 Q F1(!)A F2(name) +A F0([)A F2(@)A F0(]})A(${)108 583.2 Q F1(!)A F2(name)A F0([)A F2(*)A F0 +(]})A F1 2.036(List of array k)144 595.2 R(eys.)-.1 E F0(If)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 .596(assigned in)144 477.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 489.6 Q F0 +.15 E .595(assigned in)144 607.2 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 619.2 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 -506.4 Q F2(#)A F1(par)A(ameter)-.15 E F0(})A F2 -.1(Pa)144 518.4 S .47 -(rameter length.).1 F F0 .471(The length in characters of the v)5.47 F -.471(alue of)-.25 F F1(par)2.971 E(ameter)-.15 E F0 .471 -(is substituted.)2.971 F(If)5.471 E F1(par)4.221 E(ame-)-.15 E(ter)144 -530.4 Q F0(is)4.439 E F2(*)3.709 E F0(or)3.709 E F2(@)3.709 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 F1(par)4.958 E(ameter)-.15 E F0 1.208(is an)4.438 F -(array name subscripted by)144 542.4 Q F2(*)2.5 E F0(or)2.5 E F2(@)2.5 E +636 Q F1(#)A F2(par)A(ameter)-.15 E F0(})A F1 -.1(Pa)144 648 S .471 +(rameter length.).1 F F0 .471(The 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 660 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.209 E F2(par)4.959 E(ameter)-.15 E F0 1.209(is an)4.439 F +(array name subscripted by)144 672 Q F1(*)2.5 E F0(or)2.5 E F1(@)2.5 E F0 2.5(,t)C(he v)-2.5 E (alue substituted is the number of elements in the array)-.25 E(.)-.65 E -(${)108 559.2 Q F1(par)A(ameter)-.15 E F2(#)A F1(wor)A(d)-.37 E F0(})A -(${)108 571.2 Q F1(par)A(ameter)-.15 E F2(##)A F1(wor)A(d)-.37 E F0(})A -F2(Remo)144 583.2 Q 1.396 -.1(ve m)-.1 H 1.196(atching pr).1 F 1.196 -(e\214x patter)-.18 F(n.)-.15 E F0(The)6.196 E F1(wor)4.036 E(d)-.37 E +(${)108 688.8 Q F2(par)A(ameter)-.15 E F1(#)A F2(wor)A(d)-.37 E F0(})A +(${)108 700.8 Q F2(par)A(ameter)-.15 E F1(##)A F2(wor)A(d)-.37 E F0(})A +F1(Remo)144 712.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(The)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 -595.2 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 F1(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 607.2 R 1.4(xpansion is the e)-.15 F 1.4(xpanded v)-.15 F 1.4 -(alue of)-.25 F F1(par)5.15 E(ameter)-.15 E F0 1.4 -(with the shortest matching pattern \(the `)4.63 F(`)-.74 E F2(#)A F0 --.74('')C .281(case\) or the longest matching pattern \(the `)144 619.2 -R(`)-.74 E F2(##)A F0 1.761 -.74('' c)D .281(ase\) deleted.).74 F(If) -5.281 E F1(par)4.031 E(ameter)-.15 E F0(is)3.511 E F2(@)2.781 E F0(or) -2.781 E F2(*)2.781 E F0 2.781(,t)C .281(he pattern)-2.781 F(remo)144 -631.2 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 .402(tant list.)144 643.2 R -(If)5.402 E F1(par)4.152 E(ameter)-.15 E F0 .401(is an array v)3.632 F -.401(ariable subscripted with)-.25 F F2(@)2.901 E F0(or)2.901 E F2(*) -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 655.2 Q -(xpansion is the resultant list.)-.15 E(${)108 672 Q F1(par)A(ameter) --.15 E F2(%)A F1(wor)A(d)-.37 E F0(})A(${)108 684 Q F1(par)A(ameter)-.15 -E F2(%%)A F1(wor)A(d)-.37 E F0(})A F2(Remo)144 696 Q .346 -.1(ve m)-.1 H -.146(atching suf\214x patter).1 F(n.)-.15 E F0(The)5.146 E F1(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 708 -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 F1(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 720 R .226 -(xpansion is the e)-.15 F .226(xpanded v)-.15 F .226(alue of)-.25 F F1 -(par)3.976 E(ameter)-.15 E F0 .226 -(with the shortest matching pattern \(the)3.456 F(GNU Bash-4.1)72 768 Q -(2010 June 12)147.345 E(20)197.335 E 0 Cg EP +(xpanded to produce a pattern just as in path-)-.15 F .151(name e)144 +724.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 +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(20)198.165 E 0 Cg EP %%Page: 21 21 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E -.74(``)144 84 S/F1 10/Times-Bold@0 SF(%).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 -10/Times-Italic@0 SF(par)3.792 E(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 96 R -.25(va)-.15 G 2.94(lo).25 G .441 +-.35 E 1.4(the e)144 84 R 1.4(xpansion is the e)-.15 F 1.4(xpanded v) +-.15 F 1.4(alue of)-.25 F/F1 10/Times-Italic@0 SF(par)5.15 E(ameter)-.15 +E F0 1.4(with the shortest matching pattern \(the `)4.63 F(`)-.74 E/F2 +10/Times-Bold@0 SF(#)A F0 -.74('')C .281 +(case\) or the longest matching pattern \(the `)144 96 R(`)-.74 E F2(##) +A F0 1.761 -.74('' c)D .281(ase\) deleted.).74 F(If)5.281 E F1(par)4.031 +E(ameter)-.15 E F0(is)3.511 E F2(@)2.781 E F0(or)2.781 E F2(*)2.782 E F0 +2.782(,t)C .282(he pattern)-2.782 F(remo)144 108 Q -.25(va)-.15 G 3.274 +(lo).25 G .774 (peration is applied to each positional parameter in turn, and the e) --2.94 F .441(xpansion is the)-.15 F .241(resultant list.)144 108 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 120 -Q(xpansion is the resultant list.)-.15 E(${)108 136.8 Q F2(par)A(ameter) --.15 E F1(/)A F2(pattern)A F1(/)A F2(string)A F0(})A F1 -.1(Pa)144 148.8 -S(tter).1 E 3.606(ns)-.15 G(ubstitution.)-3.606 E F0(The)6.106 E F2 -(pattern)3.606 E F0 1.106(is e)3.606 F 1.107 +-3.274 F .774(xpansion is the resul-)-.15 F .401(tant list.)144 120 R +(If)5.401 E F1(par)4.151 E(ameter)-.15 E F0 .401(is an array v)3.631 F +.401(ariable subscripted with)-.25 F F2(@)2.901 E F0(or)2.901 E F2(*) +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 132 Q +(xpansion is the resultant list.)-.15 E(${)108 148.8 Q F1(par)A(ameter) +-.15 E F2(%)A F1(wor)A(d)-.37 E F0(})A(${)108 160.8 Q F1(par)A(ameter) +-.15 E F2(%%)A F1(wor)A(d)-.37 E F0(})A F2(Remo)144 172.8 Q .347 -.1 +(ve m)-.1 H .147(atching suf\214x patter).1 F(n.)-.15 E F0(The)5.147 E +F1(wor)2.647 E(d)-.37 E F0 .147(is e)2.647 F .146 +(xpanded to produce a pattern just as in pathname)-.15 F -.15(ex)144 +184.8 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 F1(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 196.8 R .226 +(xpansion is the e)-.15 F .226(xpanded v)-.15 F .226(alue of)-.25 F F1 +(par)3.976 E(ameter)-.15 E F0 .226 +(with the shortest matching pattern \(the)3.456 F -.74(``)144 208.8 S F2 +(%).74 E F0 1.521 -.74('' c)D .042 +(ase\) or the longest matching pattern \(the `).74 F(`)-.74 E F2(%%)A F0 +1.522 -.74('' c)D .042(ase\) deleted.).74 F(If)5.042 E F1(par)3.792 E +(ameter)-.15 E F0(is)3.272 E F2(@)2.542 E F0(or)2.542 E F2(*)2.542 E F0 +2.542(,t)C(he)-2.542 E .441(pattern remo)144 220.8 R -.25(va)-.15 G +2.941(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 232.8 R(If) +5.24 E F1(par)3.99 E(ameter)-.15 E F0 .24(is an array v)3.47 F .241 +(ariable subscripted with)-.25 F F2(@)2.741 E F0(or)2.741 E F2(*)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 +(ation is applied to each member of the array in turn, and the e)144 +244.8 Q(xpansion is the resultant list.)-.15 E(${)108 261.6 Q F1(par)A +(ameter)-.15 E F2(/)A F1(pattern)A F2(/)A F1(string)A F0(})A F2 -.1(Pa) +144 273.6 S(tter).1 E 3.607(ns)-.15 G(ubstitution.)-3.607 E F0(The)6.107 +E F1(pattern)3.607 E F0 1.107(is e)3.607 F 1.106 (xpanded to produce a pattern just as in pathname e)-.15 F(xpan-)-.15 E -(sion.)144 160.8 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 172.8 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 184.8 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 196.8 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 208.8 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.253(may be) -3.753 F 2.678(omitted. If)144 220.8 R F2(par)3.928 E(ameter)-.15 E F0 -(is)3.408 E F1(@)2.678 E F0(or)2.678 E F1(*)2.679 E F0 2.679(,t)C .179 +(sion.)144 285.6 Q F1 -.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 F1(pattern) +3.533 E F0(ag)3.533 E 1.034(ainst its v)-.05 F 1.034 +(alue is replaced with)-.25 F F1(string)144 297.6 Q F0 5.161(.I)C(f) +-5.161 E F1(pattern)2.661 E F0(be)2.661 E .161(gins with)-.15 F F2(/) +2.661 E F0 2.661(,a)C .161(ll matches of)-2.661 F F1(pattern)2.661 E F0 +.16(are replaced with)2.661 F F1(string)2.66 E F0 5.16(.N)C .16 +(ormally only the)-5.16 F .806(\214rst match is replaced.)144 309.6 R +(If)5.806 E F1(pattern)3.306 E F0(be)3.306 E .806(gins with)-.15 F F2(#) +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 321.6 S .621 +(lue of).25 F F1(par)3.121 E(ameter)-.15 E F0 5.621(.I)C(f)-5.621 E F1 +(pattern)3.121 E F0(be)3.121 E .621(gins with)-.15 F F2(%)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 F1(par)144 333.6 Q(ameter)-.15 E +F0 6.253(.I)C(f)-6.253 E F1(string)3.753 E F0 1.253(is null, matches of) +3.753 F F1(pattern)3.753 E F0 1.253(are deleted and the)3.753 F F2(/) +3.753 E F0(follo)3.753 E(wing)-.25 E F1(pattern)3.753 E F0 1.254(may be) +3.754 F 2.679(omitted. If)144 345.6 R F1(par)3.929 E(ameter)-.15 E F0 +(is)3.409 E F2(@)2.679 E F0(or)2.679 E F2(*)2.679 E F0 2.679(,t)C .178 (he substitution operation is applied to each positional parameter) --2.679 F .619(in turn, and the e)144 232.8 R .619 -(xpansion is the resultant list.)-.15 F(If)5.619 E F2(par)4.369 E -(ameter)-.15 E F0 .618(is an array v)3.849 F .618 -(ariable subscripted with)-.25 F F1(@)144 244.8 Q F0(or)3.223 E F1(*) -3.223 E F0 3.223(,t)C .723(he substitution operation is applied to each\ - member of the array in turn, and the e)-3.223 F(xpan-)-.15 E -(sion is the resultant list.)144 256.8 Q(${)108 273.6 Q F2(par)A(ameter) --.15 E F1(^)A F2(pattern)A F0(})A(${)108 285.6 Q F2(par)A(ameter)-.15 E -F1(^^)A F2(pattern)A F0(})A(${)108 297.6 Q F2(par)A(ameter)-.15 E F1(,)A -F2(pattern)A F0(})A(${)108 309.6 Q F2(par)A(ameter)-.15 E F1(,,)A F2 -(pattern)A F0(})A F1 .438(Case modi\214cation.)144 321.6 R F0 .438 -(This e)5.438 F .437 -(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 333.6 Q -F0 .813(is e)3.313 F .813 -(xpanded to produce a pattern just as in pathname e)-.15 F 3.314 -(xpansion. The)-.15 F F1(^)3.314 E F0 .814(operator con)3.314 F -.15(ve) --.4 G(rts).15 E(lo)144 345.6 Q .181(wercase letters matching)-.25 F F2 -(pattern)2.681 E F0 .181(to uppercase; the)2.681 F F1(,)2.681 E F0 .181 -(operator con)2.681 F -.15(ve)-.4 G .18(rts matching uppercase letters) -.15 F .085(to lo)144 357.6 R 2.585(wercase. The)-.25 F F1(^^)2.585 E F0 -(and)2.585 E F1(,,)2.585 E F0 -.15(ex)2.585 G .085(pansions con).15 F +-2.679 F .618(in turn, and the e)144 357.6 R .619 +(xpansion is the resultant list.)-.15 F(If)5.619 E F1(par)4.369 E +(ameter)-.15 E F0 .619(is an array v)3.849 F .619 +(ariable subscripted with)-.25 F F2(@)144 369.6 Q F0(or)3.224 E F2(*) +3.224 E F0 3.224(,t)C .723(he substitution operation is applied to each\ + member of the array in turn, and the e)-3.224 F(xpan-)-.15 E +(sion is the resultant list.)144 381.6 Q(${)108 398.4 Q F1(par)A(ameter) +-.15 E F2(^)A F1(pattern)A F0(})A(${)108 410.4 Q F1(par)A(ameter)-.15 E +F2(^^)A F1(pattern)A F0(})A(${)108 422.4 Q F1(par)A(ameter)-.15 E F2(,)A +F1(pattern)A F0(})A(${)108 434.4 Q F1(par)A(ameter)-.15 E F2(,,)A F1 +(pattern)A F0(})A F2 .437(Case modi\214cation.)144 446.4 R F0 .437 +(This e)5.437 F .438 +(xpansion modi\214es the case of alphabetic characters in)-.15 F F1(par) +2.938 E(ameter)-.15 E F0 5.438(.T)C(he)-5.438 E F1(pattern)144 458.4 Q +F0 .814(is e)3.314 F .813 +(xpanded to produce a pattern just as in pathname e)-.15 F 3.313 +(xpansion. The)-.15 F F2(^)3.313 E F0 .813(operator con)3.313 F -.15(ve) +-.4 G(rts).15 E(lo)144 470.4 Q .18(wercase letters matching)-.25 F F1 +(pattern)2.681 E F0 .181(to uppercase; the)2.681 F F2(,)2.681 E F0 .181 +(operator con)2.681 F -.15(ve)-.4 G .181(rts matching uppercase letters) +.15 F .085(to lo)144 482.4 R 2.585(wercase. The)-.25 F F2(^^)2.585 E F0 +(and)2.585 E F2(,,)2.585 E F0 -.15(ex)2.585 G .085(pansions con).15 F -.15(ve)-.4 G .085(rt each matched character in the e).15 F .085 -(xpanded v)-.15 F .085(alue; the)-.25 F F1(^)2.585 E F0(and)144 369.6 Q -F1(,)3.591 E F0 -.15(ex)3.591 G 1.091(pansions match and con).15 F -.15 -(ve)-.4 G 1.091(rt only the \214rst character in the e).15 F 1.09 -(xpanded v)-.15 F 3.59(alue. If)-.25 F F2(pattern)3.59 E F0(is)3.59 E -1.12(omitted, it is treated lik)144 381.6 R 3.62(ea)-.1 G F1(?)A F0 3.62 -(,w)C 1.12(hich matches e)-3.62 F -.15(ve)-.25 G 1.121(ry character).15 -F 6.121(.I)-.55 G(f)-6.121 E F2(par)4.871 E(ameter)-.15 E F0(is)4.351 E -F1(@)3.621 E F0(or)3.621 E F1(*)3.621 E F0 3.621(,t)C 1.121(he case) --3.621 F 1.335(modi\214cation operation is applied to each positional p\ -arameter in turn, and the e)144 393.6 R 1.335(xpansion is the)-.15 F -1.308(resultant list.)144 405.6 R(If)6.308 E F2(par)5.058 E(ameter)-.15 -E F0 1.308(is an array v)4.538 F 1.308(ariable subscripted with)-.25 F -F1(@)3.808 E F0(or)3.808 E F1(*)3.808 E F0 3.808(,t)C 1.308 -(he case modi\214cation)-3.808 F +(xpanded v)-.15 F .085(alue; the)-.25 F F2(^)2.585 E F0(and)144 494.4 Q +F2(,)3.59 E F0 -.15(ex)3.59 G 1.09(pansions match and con).15 F -.15(ve) +-.4 G 1.091(rt only the \214rst character in the e).15 F 1.091 +(xpanded v)-.15 F 3.591(alue. If)-.25 F F1(pattern)3.591 E F0(is)3.591 E +1.121(omitted, it is treated lik)144 506.4 R 3.621(ea)-.1 G F2(?)A F0 +3.621(,w)C 1.121(hich matches e)-3.621 F -.15(ve)-.25 G 1.121 +(ry character).15 F 6.12(.I)-.55 G(f)-6.12 E F1(par)4.87 E(ameter)-.15 E +F0(is)4.35 E F2(@)3.62 E F0(or)3.62 E F2(*)3.62 E F0 3.62(,t)C 1.12 +(he case)-3.62 F 1.335(modi\214cation operation is applied to each posi\ +tional parameter in turn, and the e)144 518.4 R 1.335(xpansion is the) +-.15 F 1.308(resultant list.)144 530.4 R(If)6.308 E F1(par)5.058 E +(ameter)-.15 E F0 1.308(is an array v)4.538 F 1.308 +(ariable subscripted with)-.25 F F2(@)3.808 E F0(or)3.808 E F2(*)3.808 E +F0 3.808(,t)C 1.308(he case modi\214cation)-3.808 F (operation is applied to each member of the array in turn, and the e)144 -417.6 Q(xpansion is the resultant list.)-.15 E F1(Command Substitution) -87 434.4 Q F2 1.698(Command substitution)108 446.4 R F0(allo)4.198 E +542.4 Q(xpansion is the resultant list.)-.15 E F2(Command Substitution) +87 559.2 Q F1 1.697(Command substitution)108 571.2 R F0(allo)4.197 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 458.4 Q F1($\()144 480 Q -F2(command)A F1(\))1.666 E F0(or)108 492 Q F1<92>144 504 Q F2(command)A -F1<92>A(Bash)108 520.8 Q F0 .019(performs the e)2.519 F .019 -(xpansion by e)-.15 F -.15(xe)-.15 G(cuting).15 E F2(command)2.519 E F0 -.02(and replacing the command substitution with the stan-)2.519 F .768 -(dard output of the command, with an)108 532.8 R 3.268(yt)-.15 G .768 +1.698(There are tw)6.698 F(o)-.1 E(forms:)108 583.2 Q F2($\()144 604.8 Q +F1(command)A F2(\))1.666 E F0(or)108 616.8 Q F2<92>144 628.8 Q F1 +(command)A F2<92>A(Bash)108 645.6 Q F0 .02(performs the e)2.52 F .02 +(xpansion by e)-.15 F -.15(xe)-.15 G(cuting).15 E F1(command)2.519 E F0 +.019(and replacing the command substitution with the stan-)2.519 F .768 +(dard output of the command, with an)108 657.6 R 3.268(yt)-.15 G .768 (railing ne)-3.268 F .768(wlines deleted.)-.25 F .768(Embedded ne)5.768 -F .768(wlines are not deleted, b)-.25 F(ut)-.2 E(the)108 544.8 Q 3.218 -(ym)-.15 G .718(ay be remo)-3.218 F -.15(ve)-.15 G 3.218(dd).15 G .719 -(uring w)-3.218 F .719(ord splitting.)-.1 F .719 -(The command substitution)5.719 F F1($\(cat)3.219 E F2(\214le)3.219 E F1 -(\))A F0 .719(can be replaced by the)3.219 F(equi)108 556.8 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 573.6 R(xcept)-.15 -E .314(when follo)108 585.6 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\ +F .768(wlines are not deleted, b)-.25 F(ut)-.2 E(the)108 669.6 Q 3.219 +(ym)-.15 G .719(ay be remo)-3.219 F -.15(ve)-.15 G 3.219(dd).15 G .719 +(uring w)-3.219 F .719(ord splitting.)-.1 F .719 +(The command substitution)5.719 F F2($\(cat)3.219 E F1(\214le)3.219 E F2 +(\))A F0 .718(can be replaced by the)3.219 F(equi)108 681.6 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(\))A F0(.)A 1.724(When the old-style backquote form of substitution \ +is used, backslash retains its literal meaning e)108 698.4 R(xcept)-.15 +E .315(when follo)108 710.4 R .315(wed by)-.25 F F2($)2.815 E F0(,)A F2 +<92>2.815 E F0 2.815(,o)C(r)-2.815 E F2(\\)2.815 E F0 5.315(.T)C .314(h\ e \214rst backquote not preceded by a backslash terminates the command \ -sub-)-5.314 F 3.887(stitution. When)108 597.6 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 609.6 Q(.)-.65 E .894 -(Command substitutions may be nested.)108 626.4 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 638.4 Q .422 -(If the substitution appears within double quotes, w)108 655.2 R .422 -(ord splitting and pathname e)-.1 F .422(xpansion are not performed)-.15 -F(on the results.)108 667.2 Q F1(Arithmetic Expansion)87 684 Q F0 1.034 -(Arithmetic e)108 696 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 708 Q(xpansion is:)-.15 E F1($\(\()144 -724.8 Q F2 -.2(ex)C(pr).2 E(ession)-.37 E F1(\)\))A F0(GNU Bash-4.1)72 -768 Q(2010 June 12)147.345 E(21)197.335 E 0 Cg EP +sub-)-5.315 F 5.766(stitution. When)108 722.4 R 3.266(using the $\() +5.766 F F1(command).833 E F0 5.766(\)f)1.666 G 3.266 +(orm, all characters between the parentheses mak)-5.766 F 5.767(eu)-.1 G +5.767(pt)-5.767 G(he)-5.767 E(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 +E(21)198.165 E 0 Cg EP %%Page: 22 22 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E(The)108 84 Q/F1 10/Times-Italic@0 SF -.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 1.074 -(treated specially)108 96 R 6.074(.A)-.65 G 1.074(ll tok)-6.074 F 1.074 +-.35 E(command; none are treated specially)108 84 Q(.)-.65 E .894 +(Command substitutions may be nested.)108 100.8 R 2.494 -.8(To n)5.894 H +.894(est when using the backquoted form, escape the inner back-).8 F +(quotes with backslashes.)108 112.8 Q .422 +(If the substitution appears within double quotes, w)108 129.6 R .422 +(ord splitting and pathname e)-.1 F .423(xpansion are not performed)-.15 +F(on the results.)108 141.6 Q/F1 10/Times-Bold@0 SF +(Arithmetic Expansion)87 158.4 Q F0 1.035(Arithmetic e)108 170.4 R 1.035 +(xpansion allo)-.15 F 1.035(ws the e)-.25 F -.25(va)-.25 G 1.034 +(luation of an arithmetic e).25 F 1.034 +(xpression and the substitution of the result.)-.15 F +(The format for arithmetic e)108 182.4 Q(xpansion is:)-.15 E F1($\(\() +144 199.2 Q/F2 10/Times-Italic@0 SF -.2(ex)C(pr).2 E(ession)-.37 E F1 +(\)\))A F0(The)108 216 Q F2 -.2(ex)2.665 G(pr).2 E(ession)-.37 E F0 .165 +(is treated as if it were within double quotes, b)2.905 F .166 +(ut a double quote inside the parentheses is not)-.2 F 1.075 +(treated specially)108 228 R 6.075(.A)-.65 G 1.074(ll tok)-6.075 F 1.074 (ens in the e)-.1 F 1.074(xpression under)-.15 F 1.074(go parameter e) --.18 F 1.074(xpansion, string e)-.15 F 1.075(xpansion, command)-.15 F -(substitution, and quote remo)108 108 Q -.25(va)-.15 G 2.5 -(l. Arithmetic).25 F -.15(ex)2.5 G(pansions may be nested.).15 E 1.379 -(The e)108 124.8 R -.25(va)-.25 G 1.378 +-.18 F 1.074(xpansion, string e)-.15 F 1.074(xpansion, command)-.15 F +(substitution, and quote remo)108 240 Q -.25(va)-.15 G 2.5 +(l. Arithmetic).25 F -.15(ex)2.5 G(pansions may be nested.).15 E 1.378 +(The e)108 256.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/F2 9/Times-Bold@0 SF 1.378(ARITHMETIC EV)3.878 F -(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E/F3 9/Times-Roman@0 SF(.)A F0 -(If)5.878 E F1 -.2(ex)108 136.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 153.6 Q(ocess Substitution)-.18 E F1(Pr)108 165.6 Q .97 -(ocess substitution)-.45 F F0 .971 -(is supported on systems that support named pipes \()3.47 F F1(FIFOs)A -F0 3.471(\)o)C 3.471(rt)-3.471 G(he)-3.471 E F4(/de)3.471 E(v/fd)-.15 E -F0 .971(method of)3.471 F .022(naming open \214les.)108 177.6 R .021 -(It tak)5.022 F .021(es the form of)-.1 F F4(<\()2.521 E F1(list)A F4 -(\)).833 E F0(or)2.521 E F4(>\()2.521 E F1(list)A F4(\)).833 E F0 5.021 -(.T)C .021(he process)-5.021 F F1(list)2.521 E F0 .021 -(is run with its input or output con-)2.521 F .058(nected to a)108 189.6 -R F1(FIFO)2.558 E F0 .058(or some \214le in)2.558 F F4(/de)2.558 E(v/fd) +-.25 G(nder)-3.878 E/F3 9/Times-Bold@0 SF 1.378(ARITHMETIC EV)3.878 F +(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E/F4 9/Times-Roman@0 SF(.)A F0 +(If)5.879 E F2 -.2(ex)108 268.8 S(pr).2 E(ession)-.37 E F0(is in)2.74 E +-.25(va)-.4 G(lid,).25 E F1(bash)2.5 E F0(prints a message indicating f) +2.5 E(ailure and no substitution occurs.)-.1 E F1(Pr)87 285.6 Q +(ocess Substitution)-.18 E F2(Pr)108 297.6 Q .971(ocess substitution) +-.45 F F0 .971(is supported on systems that support named pipes \()3.471 +F F2(FIFOs)A F0 3.47(\)o)C 3.47(rt)-3.47 G(he)-3.47 E F1(/de)3.47 E +(v/fd)-.15 E F0 .97(method of)3.47 F .021(naming open \214les.)108 309.6 +R .021(It tak)5.021 F .021(es the form of)-.1 F F1(<\()2.521 E F2(list)A +F1(\)).833 E F0(or)2.521 E F1(>\()2.521 E F2(list)A F1(\)).833 E F0 +5.021(.T)C .021(he process)-5.021 F F2(list)2.521 E F0 .021 +(is run with its input or output con-)2.521 F .059(nected to a)108 321.6 +R F2(FIFO)2.559 E F0 .058(or some \214le in)2.559 F F1(/de)2.558 E(v/fd) -.15 E F0 5.058(.T)C .058(he name of this \214le is passed as an ar) --5.058 F .059(gument to the current com-)-.18 F .131 -(mand as the result of the e)108 201.6 R 2.631(xpansion. If)-.15 F(the) -2.63 E F4(>\()2.63 E F1(list)A F4(\)).833 E F0 .13 -(form is used, writing to the \214le will pro)2.63 F .13(vide input for) --.15 F F1(list)2.63 E F0(.)A(If the)108 213.6 Q F4(<\()2.5 E F1(list)A -F4(\)).833 E F0(form is used, the \214le passed as an ar)2.5 E -(gument should be read to obtain the output of)-.18 E F1(list)2.5 E F0 -(.)A .896(When a)108 230.4 R -.25(va)-.2 G .896(ilable, process substit\ -ution is performed simultaneously with parameter and v).25 F .897 +-5.058 F .058(gument to the current com-)-.18 F .13 +(mand as the result of the e)108 333.6 R 2.63(xpansion. If)-.15 F(the) +2.63 E F1(>\()2.63 E F2(list)A F1(\)).833 E F0 .13 +(form is used, writing to the \214le will pro)2.63 F .131 +(vide input for)-.15 F F2(list)2.631 E F0(.)A(If the)108 345.6 Q F1(<\() +2.5 E F2(list)A F1(\)).833 E F0 +(form is used, the \214le passed as an ar)2.5 E +(gument should be read to obtain the output of)-.18 E F2(list)2.5 E F0 +(.)A .897(When a)108 362.4 R -.25(va)-.2 G .896(ilable, process substit\ +ution is performed simultaneously with parameter and v).25 F .896 (ariable e)-.25 F(xpansion,)-.15 E -(command substitution, and arithmetic e)108 242.4 Q(xpansion.)-.15 E F4 --.75(Wo)87 259.2 S(rd Splitting).75 E F0 1.143 -(The shell scans the results of parameter e)108 271.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 283.2 Q -F1(wor)2.5 E 2.5(ds)-.37 G(plitting)-2.5 E F0(.).22 E .063 -(The shell treats each character of)108 300 R F2(IFS)2.563 E F0 .063 +(command substitution, and arithmetic e)108 374.4 Q(xpansion.)-.15 E F1 +-.75(Wo)87 391.2 S(rd Splitting).75 E F0 1.142 +(The shell scans the results of parameter e)108 403.2 R 1.143 +(xpansion, command substitution, and arithmetic e)-.15 F 1.143 +(xpansion that)-.15 F(did not occur within double quotes for)108 415.2 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 432 R F3(IFS)2.563 E F0 .063 (as a delimiter)2.313 F 2.563(,a)-.4 G .063 (nd splits the results of the other e)-2.563 F .063(xpansions into w) --.15 F(ords)-.1 E 1.789(on these characters.)108 312 R(If)6.789 E F2 -(IFS)4.289 E F0 1.788(is unset, or its v)4.039 F 1.788(alue is e)-.25 F -(xactly)-.15 E F4()4.288 E F0 4.288(,t)C 1.788 -(he def)-4.288 F 1.788(ault, then)-.1 F .021(sequences of)108 324 R F4 -()2.521 E F0(,)A F4()2.521 E F0 2.521(,a)C(nd)-2.521 E F4 +-.15 F(ords)-.1 E 1.788(on these characters.)108 444 R(If)6.788 E F3 +(IFS)4.288 E F0 1.788(is unset, or its v)4.038 F 1.789(alue is e)-.25 F +(xactly)-.15 E F1()4.289 E F0 4.289(,t)C 1.789 +(he def)-4.289 F 1.789(ault, then)-.1 F .022(sequences of)108 456 R F1 +()2.522 E F0(,)A F1()2.522 E F0 2.521(,a)C(nd)-2.521 E F1 ()2.521 E F0 .021(at the be)2.521 F .021 -(ginning and end of the results of the pre)-.15 F .022(vious e)-.25 F -(xpan-)-.15 E .586(sions are ignored, and an)108 336 R 3.086(ys)-.15 G -.586(equence of)-3.086 F F2(IFS)3.086 E F0 .586 -(characters not at the be)2.836 F .586(ginning or end serv)-.15 F .585 -(es to delimit w)-.15 F(ords.)-.1 E(If)108 348 Q F2(IFS)3.617 E F0 1.117 +(ginning and end of the results of the pre)-.15 F .021(vious e)-.25 F +(xpan-)-.15 E .585(sions are ignored, and an)108 468 R 3.086(ys)-.15 G +.586(equence of)-3.086 F F3(IFS)3.086 E F0 .586 +(characters not at the be)2.836 F .586(ginning or end serv)-.15 F .586 +(es to delimit w)-.15 F(ords.)-.1 E(If)108 480 Q F3(IFS)3.617 E F0 1.117 (has a v)3.367 F 1.117(alue other than the def)-.25 F 1.117 -(ault, then sequences of the whitespace characters)-.1 F F4(space)3.617 -E F0(and)3.617 E F4(tab)3.617 E F0(are)3.617 E .315(ignored at the be) -108 360 R .315(ginning and end of the w)-.15 F .315 +(ault, then sequences of the whitespace characters)-.1 F F1(space)3.617 +E F0(and)3.617 E F1(tab)3.617 E F0(are)3.617 E .315(ignored at the be) +108 492 R .315(ginning and end of the w)-.15 F .315 (ord, as long as the whitespace character is in the v)-.1 F .315 -(alue of)-.25 F F2(IFS)2.815 E F0(\(an)2.565 E F2(IFS)108 372 Q F0 1.053 -(whitespace character\).)3.303 F(An)6.053 E 3.553(yc)-.15 G 1.053 -(haracter in)-3.553 F F2(IFS)3.553 E F0 1.053(that is not)3.303 F F2 -(IFS)3.553 E F0 1.054(whitespace, along with an)3.304 F 3.554(ya)-.15 G -(djacent)-3.554 E F2(IFS)3.554 E F0 .332 -(whitespace characters, delimits a \214eld.)108 384 R 2.832(As)5.332 G -.332(equence of)-2.832 F F2(IFS)2.832 E F0 .331 -(whitespace characters is also treated as a delim-)2.582 F(iter)108 396 -Q 5(.I)-.55 G 2.5(ft)-5 G(he v)-2.5 E(alue of)-.25 E F2(IFS)2.5 E F0 -(is null, no w)2.25 E(ord splitting occurs.)-.1 E 1.878 -(Explicit null ar)108 412.8 R 1.878(guments \()-.18 F F4 .833("").833 G -F0(or)3.545 E F4 .833<0808>5.211 G F0 4.378(\)a)C 1.878(re retained.) --4.378 F 1.878(Unquoted implicit null ar)6.878 F 1.879 -(guments, resulting from the)-.18 F -.15(ex)108 424.8 S .177 -(pansion of parameters that ha).15 F .477 -.15(ve n)-.2 H 2.677(ov).15 G -.177(alues, are remo)-2.927 F -.15(ve)-.15 G 2.676(d. If).15 F 2.676(ap) -2.676 G .176(arameter with no v)-2.676 F .176(alue is e)-.25 F .176 -(xpanded within)-.15 F(double quotes, a null ar)108 436.8 Q -(gument results and is retained.)-.18 E(Note that if no e)108 453.6 Q -(xpansion occurs, no splitting is performed.)-.15 E F4 -.1(Pa)87 470.4 S -(thname Expansion).1 E F0 .37(After w)108 482.4 R .37 -(ord splitting, unless the)-.1 F F42.87 E F0 .37 -(option has been set,)2.87 F F4(bash)2.87 E F0 .371(scans each w)2.871 F -.371(ord for the characters)-.1 F F4(*)2.871 E F0(,)A F4(?)2.871 E F0 -2.871(,a)C(nd)-2.871 E F4([)2.871 E F0(.)A .678 -(If one of these characters appears, then the w)108 494.4 R .677 -(ord is re)-.1 F -.05(ga)-.15 G .677(rded as a).05 F F1(pattern)3.177 E -F0 3.177(,a).24 G .677(nd replaced with an alphabeti-)-3.177 F 1.456 -(cally sorted list of \214le names matching the pattern.)108 506.4 R -1.457(If no matching \214le names are found, and the shell)6.457 F -(option)108 518.4 Q F4(nullglob)2.538 E F0 .038(is not enabled, the w) -2.538 F .038(ord is left unchanged.)-.1 F .038(If the)5.038 F F4 -(nullglob)2.538 E F0 .038(option is set, and no matches are)2.538 F .305 -(found, the w)108 530.4 R .305(ord is remo)-.1 F -.15(ve)-.15 G 2.805 -(d. If).15 F(the)2.805 E F4(failglob)2.805 E F0 .305 +(alue of)-.25 F F3(IFS)2.815 E F0(\(an)2.566 E F3(IFS)108 504 Q F0 1.054 +(whitespace character\).)3.304 F(An)6.054 E 3.554(yc)-.15 G 1.054 +(haracter in)-3.554 F F3(IFS)3.554 E F0 1.053(that is not)3.303 F F3 +(IFS)3.553 E F0 1.053(whitespace, along with an)3.303 F 3.553(ya)-.15 G +(djacent)-3.553 E F3(IFS)3.553 E F0 .331 +(whitespace characters, delimits a \214eld.)108 516 R 2.831(As)5.331 G +.332(equence of)-2.831 F F3(IFS)2.832 E F0 .332 +(whitespace characters is also treated as a delim-)2.582 F(iter)108 528 +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.879 +(Explicit null ar)108 544.8 R 1.879(guments \()-.18 F F1 .833("").833 G +F0(or)3.545 E F1 .833<0808>5.211 G F0 4.378(\)a)C 1.878(re retained.) +-4.378 F 1.878(Unquoted implicit null ar)6.878 F 1.878 +(guments, resulting from the)-.18 F -.15(ex)108 556.8 S .176 +(pansion of parameters that ha).15 F .476 -.15(ve n)-.2 H 2.676(ov).15 G +.176(alues, are remo)-2.926 F -.15(ve)-.15 G 2.676(d. If).15 F 2.677(ap) +2.677 G .177(arameter with no v)-2.677 F .177(alue is e)-.25 F .177 +(xpanded within)-.15 F(double quotes, a null ar)108 568.8 Q +(gument results and is retained.)-.18 E(Note that if no e)108 585.6 Q +(xpansion occurs, no splitting is performed.)-.15 E F1 -.1(Pa)87 602.4 S +(thname Expansion).1 E F0 .371(After w)108 614.4 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 626.4 R .677 +(ord is re)-.1 F -.05(ga)-.15 G .677(rded as a).05 F F2(pattern)3.177 E +F0 3.177(,a).24 G .678(nd replaced with an alphabeti-)-3.177 F 1.457 +(cally sorted list of \214le names matching the pattern.)108 638.4 R +1.456(If no matching \214le names are found, and the shell)6.457 F +(option)108 650.4 Q F1(nullglob)2.537 E F0 .038(is not enabled, the w) +2.537 F .038(ord is left unchanged.)-.1 F .038(If the)5.038 F F1 +(nullglob)2.538 E F0 .038(option is set, and no matches are)2.538 F .306 +(found, the w)108 662.4 R .306(ord is remo)-.1 F -.15(ve)-.15 G 2.806 +(d. If).15 F(the)2.805 E F1(failglob)2.805 E F0 .305 (shell option is set, and no matches are found, an error message)2.805 F -.929(is printed and the command is not e)108 542.4 R -.15(xe)-.15 G -3.428(cuted. If).15 F .928(the shell option)3.428 F F4(nocaseglob)3.428 -E F0 .928(is enabled, the match is per)3.428 F(-)-.2 E .032 -(formed without re)108 554.4 R -.05(ga)-.15 G .032 -(rd to the case of alphabetic characters.).05 F .033 -(When a pattern is used for pathname e)5.033 F(xpansion,)-.15 E .105 -(the character)108 566.4 R F4 -.63(``)2.605 G -.55(.').63 G(')-.08 E F0 -.105(at the start of a name or immediately follo)5.105 F .104 -(wing a slash must be matched e)-.25 F(xplicitly)-.15 E 2.604(,u)-.65 G -(nless)-2.604 E .887(the shell option)108 578.4 R F4(dotglob)3.387 E F0 -.887(is set.)3.387 F .888 -(When matching a pathname, the slash character must al)5.887 F -.1(wa) --.1 G .888(ys be matched).1 F -.15(ex)108 590.4 S(plicitly).15 E 6.166 -(.I)-.65 G 3.666(no)-6.166 G 1.166(ther cases, the)-3.666 F F4 -.63(``) -3.666 G -.55(.').63 G(')-.08 E F0 1.166 -(character is not treated specially)6.166 F 6.165(.S)-.65 G 1.165 -(ee the description of)-6.165 F F4(shopt)3.665 E F0(belo)3.665 E(w)-.25 -E(under)108 602.4 Q F2 .477(SHELL B)2.977 F(UIL)-.09 E .477 -(TIN COMMANDS)-.828 F F0 .477(for a description of the)2.727 F F4 -(nocaseglob)2.978 E F0(,)A F4(nullglob)2.978 E F0(,)A F4(failglob)2.978 -E F0 2.978(,a)C(nd)-2.978 E F4(dotglob)2.978 E F0(shell options.)108 -614.4 Q(The)108 631.2 Q F2(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 F1(pattern)2.63 E F0 5.13(.I).24 G(f)-5.13 E F2(GLO-)2.63 E -(BIGNORE)108 643.2 Q F0 2.015(is set, each matching \214le name that al\ -so matches one of the patterns in)4.264 F F2(GLOBIGNORE)4.515 E F0(is) -4.265 E(remo)108 655.2 Q -.15(ve)-.15 G 2.504(df).15 G .004 -(rom the list of matches.)-2.504 F .003(The \214le names)5.003 F F4 -.63 -(``)2.503 G -.55(.').63 G(')-.08 E F0(and)5.003 E F4 -.63(``)2.503 G(..) -.63 E -.63('')-.55 G F0 .003(are al)5.633 F -.1(wa)-.1 G .003 -(ys ignored when).1 F F2(GLOBIGNORE)2.503 E F0(is)2.253 E .045 -(set and not null.)108 667.2 R(Ho)5.045 E(we)-.25 E -.15(ve)-.25 G .845 --.4(r, s).15 H(etting).4 E F2(GLOBIGNORE)2.545 E F0 .046 -(to a non-null v)2.296 F .046(alue has the ef)-.25 F .046 -(fect of enabling the)-.25 F F4(dotglob)2.546 E F0 .614 -(shell option, so all other \214le names be)108 679.2 R .614 -(ginning with a)-.15 F F4 -.63(``)3.114 G -.55(.').63 G(')-.08 E F0 .614 -(will match.)5.614 F 2.213 -.8(To g)5.614 H .613(et the old beha).8 F -.613(vior of ignoring)-.2 F .456(\214le names be)108 691.2 R .456 -(ginning with a)-.15 F F4 -.63(``)2.957 G -.55(.').63 G(')-.08 E F0 -2.957(,m)C(ak)-2.957 E(e)-.1 E F4 -.63(``)2.957 G(.*').63 E(')-.63 E F0 -.457(one of the patterns in)5.457 F F2(GLOBIGNORE)2.957 E F3(.)A F0(The) -4.957 E F4(dotglob)2.957 E F0 .457(option is)2.957 F(disabled when)108 -703.2 Q F2(GLOBIGNORE)2.5 E F0(is unset.)2.25 E F4 -.1(Pa)108 720 S -(tter).1 E 2.5(nM)-.15 G(atching)-2.5 E F0(GNU Bash-4.1)72 768 Q -(2010 June 12)147.345 E(22)197.335 E 0 Cg EP +.928(is printed and the command is not e)108 674.4 R -.15(xe)-.15 G +3.428(cuted. If).15 F .928(the shell option)3.428 F F1(nocaseglob)3.428 +E F0 .929(is enabled, the match is per)3.429 F(-)-.2 E .033 +(formed without re)108 686.4 R -.05(ga)-.15 G .033 +(rd to the case of alphabetic characters.).05 F .032 +(When a pattern is used for pathname e)5.032 F(xpansion,)-.15 E .104 +(the character)108 698.4 R F1 -.63(``)2.604 G -.55(.').63 G(')-.08 E F0 +.104(at the start of a name or immediately follo)5.104 F .105 +(wing a slash must be matched e)-.25 F(xplicitly)-.15 E 2.605(,u)-.65 G +(nless)-2.605 E .888(the shell option)108 710.4 R F1(dotglob)3.388 E F0 +.888(is set.)3.388 F .887 +(When matching a pathname, the slash character must al)5.888 F -.1(wa) +-.1 G .887(ys be matched).1 F -.15(ex)108 722.4 S(plicitly).15 E 6.165 +(.I)-.65 G 3.665(no)-6.165 G 1.165(ther cases, the)-3.665 F F1 -.63(``) +3.665 G -.55(.').63 G(')-.08 E F0 1.166 +(character is not treated specially)6.165 F 6.166(.S)-.65 G 1.166 +(ee the description of)-6.166 F F1(shopt)3.666 E F0(belo)3.666 E(w)-.25 +E(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(22)198.165 E 0 Cg EP %%Page: 23 23 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E(An)108 84 Q 3.138(yc)-.15 G .638(haracter that appears in a patt\ -ern, 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 96 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 108 R .576 +-.35 E(under)108 84 Q/F1 9/Times-Bold@0 SF .478(SHELL B)2.978 F(UIL)-.09 +E .478(TIN COMMANDS)-.828 F F0 .477(for a description of the)2.728 F/F2 +10/Times-Bold@0 SF(nocaseglob)2.977 E F0(,)A F2(nullglob)2.977 E F0(,)A +F2(failglob)2.977 E F0 2.977(,a)C(nd)-2.977 E F2(dotglob)2.977 E F0 +(shell options.)108 96 Q(The)108 112.8 Q F1(GLOBIGNORE)2.63 E F0 .13 +(shell v)2.38 F .131 +(ariable may be used to restrict the set of \214le names matching a)-.25 +F/F3 10/Times-Italic@0 SF(pattern)2.631 E F0 5.131(.I).24 G(f)-5.131 E +F1(GLO-)2.631 E(BIGNORE)108 124.8 Q F0 2.015(is set, each matching \214\ +le name that also matches one of the patterns in)4.265 F F1(GLOBIGNORE) +4.515 E F0(is)4.264 E(remo)108 136.8 Q -.15(ve)-.15 G 2.503(df).15 G +.003(rom the list of matches.)-2.503 F .003(The \214le names)5.003 F F2 +-.63(``)2.503 G -.55(.').63 G(')-.08 E F0(and)5.003 E F2 -.63(``)2.503 G +(..).63 E -.63('')-.55 G F0 .004(are al)5.633 F -.1(wa)-.1 G .004 +(ys ignored when).1 F F1(GLOBIGNORE)2.504 E F0(is)2.254 E .046 +(set and not null.)108 148.8 R(Ho)5.046 E(we)-.25 E -.15(ve)-.25 G .846 +-.4(r, s).15 H(etting).4 E F1(GLOBIGNORE)2.546 E F0 .046 +(to a non-null v)2.296 F .045(alue has the ef)-.25 F .045 +(fect of enabling the)-.25 F F2(dotglob)2.545 E F0 .613 +(shell option, so all other \214le names be)108 160.8 R .614 +(ginning with a)-.15 F F2 -.63(``)3.114 G -.55(.').63 G(')-.08 E F0 .614 +(will match.)5.614 F 2.214 -.8(To g)5.614 H .614(et the old beha).8 F +.614(vior of ignoring)-.2 F .457(\214le names be)108 172.8 R .457 +(ginning with a)-.15 F F2 -.63(``)2.957 G -.55(.').63 G(')-.08 E F0 +2.957(,m)C(ak)-2.957 E(e)-.1 E F2 -.63(``)2.957 G(.*').63 E(')-.63 E F0 +.457(one of the patterns in)5.457 F F1(GLOBIGNORE)2.957 E/F4 9 +/Times-Roman@0 SF(.)A F0(The)4.957 E F2(dotglob)2.956 E F0 .456 +(option is)2.956 F(disabled when)108 184.8 Q F1(GLOBIGNORE)2.5 E F0 +(is unset.)2.25 E F2 -.1(Pa)108 201.6 S(tter).1 E 2.5(nM)-.15 G(atching) +-2.5 E F0(An)108 218.4 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 230.4 +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 242.4 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 120 Q(.)-.65 E -(The special pattern characters ha)108 136.8 Q .3 -.15(ve t)-.2 H -(he follo).15 E(wing meanings:)-.25 E/F1 10/Times-Bold@0 SF(*)108 153.6 -Q F0 .455(Matches an)31 F 2.955(ys)-.15 G .455 -(tring, including the null string.)-2.955 F .455(When the)5.455 F F1 -(globstar)2.955 E F0 .455(shell option is enabled, and)2.955 F F1(*) -2.955 E F0(is)2.955 E .315(used in a pathname e)144 165.6 R .314 -(xpansion conte)-.15 F .314(xt, tw)-.15 F 2.814(oa)-.1 G(djacent)-2.814 -E F1(*)2.814 E F0 2.814(su)C .314 +-.15 G(re)-3.076 E(to be matched literally)108 254.4 Q(.)-.65 E +(The special pattern characters ha)108 271.2 Q .3 -.15(ve t)-.2 H +(he follo).15 E(wing meanings:)-.25 E F2(*)108 288 Q F0 .455(Matches an) +31 F 2.955(ys)-.15 G .455(tring, including the null string.)-2.955 F +.455(When the)5.455 F F2(globstar)2.955 E F0 .455 +(shell option is enabled, and)2.955 F F2(*)2.955 E F0(is)2.955 E .314 +(used in a pathname e)144 300 R .314(xpansion conte)-.15 F .314(xt, tw) +-.15 F 2.814(oa)-.1 G(djacent)-2.814 E F2(*)2.814 E F0 2.814(su)C .314 (sed as a single pattern will match all \214les)-2.814 F 1.183 -(and zero or more directories and subdirectories.)144 177.6 R 1.183 -(If follo)6.183 F 1.183(wed by a)-.25 F F1(/)3.683 E F0 3.683(,t)C 1.383 --.1(wo a)-3.683 H(djacent).1 E F1(*)3.683 E F0 3.684(sw)C 1.184 -(ill match)-3.684 F(only directories and subdirectories.)144 189.6 Q F1 -(?)108 201.6 Q F0(Matches an)31 E 2.5(ys)-.15 G(ingle character)-2.5 E -(.)-.55 E F1([...])108 213.6 Q F0 .257(Matches an)21.84 F 2.757(yo)-.15 -G .257(ne of the enclosed characters.)-2.757 F 2.757(Ap)5.257 G .257 -(air of characters separated by a h)-2.757 F .256(yphen denotes a)-.05 F -/F2 10/Times-Italic@0 SF -.15(ra)144 225.6 S(ng).15 E 3.289(ee)-.1 G -(xpr)-3.489 E(ession)-.37 E F0 3.289(;a)C 1.089 -.15(ny c)-3.289 H .789 +(and zero or more directories and subdirectories.)144 312 R 1.183 +(If follo)6.183 F 1.183(wed by a)-.25 F F2(/)3.683 E F0 3.683(,t)C 1.383 +-.1(wo a)-3.683 H(djacent).1 E F2(*)3.683 E F0 3.683(sw)C 1.183 +(ill match)-3.683 F(only directories and subdirectories.)144 324 Q F2(?) +108 336 Q F0(Matches an)31 E 2.5(ys)-.15 G(ingle character)-2.5 E(.)-.55 +E F2([...])108 348 Q F0 .256(Matches an)21.84 F 2.756(yo)-.15 G .257 +(ne of the enclosed characters.)-2.756 F 2.757(Ap)5.257 G .257 +(air of characters separated by a h)-2.757 F .257(yphen denotes a)-.05 F +F3 -.15(ra)144 360 S(ng).15 E 3.29(ee)-.1 G(xpr)-3.49 E(ession)-.37 E F0 +3.29(;a)C 1.09 -.15(ny c)-3.29 H .789 (haracter that sorts between those tw).15 F 3.289(oc)-.1 G .789 -(haracters, inclusi)-3.289 F -.15(ve)-.25 G 3.29(,u).15 G .79 -(sing the cur)-3.29 F(-)-.2 E .35(rent locale')144 237.6 R 2.85(sc)-.55 -G .35(ollating sequence and character set, is matched.)-2.85 F .349 -(If the \214rst character follo)5.349 F .349(wing the)-.25 F F1([)2.849 -E F0 .563(is a)144 249.6 R F1(!)3.063 E F0 .563(or a)5.563 F F1(^)3.063 -E F0 .564(then an)3.063 F 3.064(yc)-.15 G .564 -(haracter not enclosed is matched.)-3.064 F .564 -(The sorting order of characters in range)5.564 F -.15(ex)144 261.6 S -.467(pressions is determined by the current locale and the v).15 F .467 -(alue of the)-.25 F/F3 9/Times-Bold@0 SF(LC_COLLA)2.966 E(TE)-.855 E F0 -.466(shell v)2.716 F(ariable,)-.25 E 1.076(if set.)144 273.6 R(A)6.076 E -F13.576 E F0 1.077(may be matched by including it as the \214rst or\ - last character in the set.)3.576 F(A)6.077 E F1(])3.577 E F0 1.077 -(may be)3.577 F -(matched by including it as the \214rst character in the set.)144 285.6 -Q -.4(Wi)144 303.6 S(thin).4 E F1([)2.915 E F0(and)2.915 E F1(])2.915 E -F0(,)A F2 -.15(ch)2.915 G(ar).15 E .415(acter classes)-.15 F F0 .415 -(can be speci\214ed using the syntax)2.915 F F1([:)2.915 E F2(class)A F1 -(:])A F0 2.914(,w)C(here)-2.914 E F2(class)2.914 E F0 .414(is one of) -2.914 F(the follo)144 315.6 Q -(wing classes de\214ned in the POSIX standard:)-.25 E F1 5.421 -(alnum alpha ascii blank cntrl digit graph lo)144 327.6 R 5.421 -(wer print punct space upper w)-.1 F(ord)-.1 E(xdigit)144 339.6 Q F0 -2.519(Ac)144 351.6 S .019(haracter class matches an)-2.519 F 2.519(yc) --.15 G .019(haracter belonging to that class.)-2.519 F(The)5.018 E F1 --.1(wo)2.518 G(rd).1 E F0 .018(character class matches)2.518 F -(letters, digits, and the character _.)144 363.6 Q -.4(Wi)144 381.6 S -(thin).4 E F1([)3.546 E F0(and)3.546 E F1(])3.546 E F0 3.546(,a)C(n) --3.546 E F2 1.046(equivalence class)3.546 F F0 1.046 -(can be speci\214ed using the syntax)3.546 F F1([=)3.547 E F2(c)A F1(=]) -A F0 3.547(,w)C 1.047(hich matches all)-3.547 F(characters with the sam\ +(haracters, inclusi)-3.289 F -.15(ve)-.25 G 3.289(,u).15 G .789 +(sing the cur)-3.289 F(-)-.2 E .349(rent locale')144 372 R 2.849(sc)-.55 +G .349(ollating sequence and character set, is matched.)-2.849 F .35 +(If the \214rst character follo)5.349 F .35(wing the)-.25 F F2([)2.85 E +F0 .564(is a)144 384 R F2(!)3.064 E F0 .564(or a)5.564 F F2(^)3.064 E F0 +.564(then an)3.064 F 3.064(yc)-.15 G .564 +(haracter not enclosed is matched.)-3.064 F .563 +(The sorting order of characters in range)5.564 F -.15(ex)144 396 S .467 +(pressions is determined by the current locale and the v).15 F .467 +(alue of the)-.25 F F1(LC_COLLA)2.967 E(TE)-.855 E F0 .467(shell v)2.717 +F(ariable,)-.25 E 1.077(if set.)144 408 R(A)6.077 E F23.577 E F0 +1.077(may be matched by including it as the \214rst or last character i\ +n the set.)3.577 F(A)6.076 E F2(])3.576 E F0 1.076(may be)3.576 F +(matched by including it as the \214rst character in the set.)144 420 Q +-.4(Wi)144 438 S(thin).4 E F2([)2.914 E F0(and)2.914 E F2(])2.914 E F0 +(,)A F3 -.15(ch)2.914 G(ar).15 E .414(acter classes)-.15 F F0 .415 +(can be speci\214ed using the syntax)2.915 F F2([:)2.915 E F3(class)A F2 +(:])A F0 2.915(,w)C(here)-2.915 E F3(class)2.915 E F0 .415(is one of) +2.915 F(the follo)144 450 Q +(wing classes de\214ned in the POSIX standard:)-.25 E F2 5.421 +(alnum alpha ascii blank cntrl digit graph lo)144 462 R 5.421 +(wer print punct space upper w)-.1 F(ord)-.1 E(xdigit)144 474 Q F0 2.518 +(Ac)144 486 S .018(haracter class matches an)-2.518 F 2.518(yc)-.15 G +.019(haracter belonging to that class.)-2.518 F(The)5.019 E F2 -.1(wo) +2.519 G(rd).1 E F0 .019(character class matches)2.519 F +(letters, digits, and the character _.)144 498 Q -.4(Wi)144 516 S(thin) +.4 E F2([)3.547 E F0(and)3.547 E F2(])3.547 E F0 3.547(,a)C(n)-3.547 E +F3 1.046(equivalence class)3.546 F F0 1.046 +(can be speci\214ed using the syntax)3.546 F F2([=)3.546 E F3(c)A F2(=]) +A F0 3.546(,w)C 1.046(hich matches all)-3.546 F(characters with the sam\ e collation weight \(as de\214ned by the current locale\) as the charac\ -ter)144 393.6 Q F2(c)2.5 E F0(.)A -.4(Wi)144 411.6 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 428.4 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 -440.4 R .255(In the follo)5.255 F .255(wing description, a)-.25 F F2 +ter)144 528 Q F3(c)2.5 E F0(.)A -.4(Wi)144 546 S(thin).4 E F2([)2.5 E F0 +(and)2.5 E F2(])2.5 E F0 2.5(,t)C(he syntax)-2.5 E F2([.)2.5 E F3 +(symbol)A F2(.])A F0(matches the collating symbol)2.5 E F3(symbol)2.5 E +F0(.)A .704(If the)108 562.8 R F2(extglob)3.204 E F0 .705 +(shell option is enabled using the)3.204 F F2(shopt)3.205 E F0 -.2(bu) +3.205 G .705(iltin, se).2 F -.15(ve)-.25 G .705(ral e).15 F .705 +(xtended pattern matching operators)-.15 F .256(are recognized.)108 +574.8 R .256(In the follo)5.256 F .256(wing description, a)-.25 F F3 (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 +(is a list of one or more patterns separated by a)2.755 F F2(|)2.755 E F0(.)A(Composite patterns may be formed using one or more of the follo) -108 452.4 Q(wing sub-patterns:)-.25 E F1(?\()144 476.4 Q F2 -(pattern-list).833 E F1(\)).833 E F0 -(Matches zero or one occurrence of the gi)180 488.4 Q -.15(ve)-.25 G 2.5 -(np).15 G(atterns)-2.5 E F1(*\()144 500.4 Q F2(pattern-list).833 E F1 -(\)).833 E F0(Matches zero or more occurrences of the gi)180 512.4 Q --.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F1(+\()144 524.4 Q F2 -(pattern-list).833 E F1(\)).833 E F0 -(Matches one or more occurrences of the gi)180 536.4 Q -.15(ve)-.25 G -2.5(np).15 G(atterns)-2.5 E F1(@\()144 548.4 Q F2(pattern-list).833 E F1 -(\)).833 E F0(Matches one of the gi)180 560.4 Q -.15(ve)-.25 G 2.5(np) -.15 G(atterns)-2.5 E F1(!\()144 572.4 Q F2(pattern-list).833 E F1(\)) -.833 E F0(Matches an)180 584.4 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 F1(Quote Remo)87 601.2 -Q -.1(va)-.1 G(l).1 E F0 1.113(After the preceding e)108 613.2 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 625.2 Q .3 --.15(ve ex)-.15 H(pansions are remo).15 E -.15(ve)-.15 G(d.).15 E/F4 -10.95/Times-Bold@0 SF(REDIRECTION)72 642 Q F0 .545 -(Before a command is e)108 654 R -.15(xe)-.15 G .545 -(cuted, its input and output may be).15 F F2 -.37(re)3.045 G(dir).37 E -(ected)-.37 E F0 .545(using a special notation interpreted)3.815 F .617 -(by the shell.)108 666 R .617(Redirection may also be used to open and \ -close \214les for the current shell e)5.617 F -.15(xe)-.15 G .616 -(cution en).15 F(viron-)-.4 E 3.274(ment. The)108 678 R(follo)3.274 E -.774(wing redirection operators may precede or appear an)-.25 F .774 -(ywhere within a)-.15 F F2 .775(simple command)3.615 F F0(or)4.045 E -(may follo)108 690 Q 2.5(wa)-.25 G F2(command)A F0 5(.R).77 G -(edirections are processed in the order the)-5 E 2.5(ya)-.15 G(ppear) --2.5 E 2.5(,f)-.4 G(rom left to right.)-2.5 E .771(Each redirection tha\ -t may be preceded by a \214le descriptor number may instead be preceded\ - by a w)108 706.8 R .771(ord of)-.1 F .292(the form {)108 718.8 R F2 -(varname)A F0 2.793(}. In)B .293 -(this case, for each redirection operator e)2.793 F .293 -(xcept >&- and <&-, the shell will allocate)-.15 F 3.499<618c>108 730.8 -S .999(le descriptor greater than 10 and assign it to)-3.499 F F2 -(varname)3.499 E F0 5.999(.I)C 3.499(f>)-5.999 G .999 -(&- or <&- is preceded by {)-3.499 F F2(varname)A F0 .998(}, the)B -(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(23)197.335 E 0 Cg EP +108 586.8 Q(wing sub-patterns:)-.25 E F2(?\()144 610.8 Q F3 +(pattern-list).833 E F2(\)).833 E F0 +(Matches zero or one occurrence of the gi)180 622.8 Q -.15(ve)-.25 G 2.5 +(np).15 G(atterns)-2.5 E F2(*\()144 634.8 Q F3(pattern-list).833 E F2 +(\)).833 E F0(Matches zero or more occurrences of the gi)180 646.8 Q +-.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E F2(+\()144 658.8 Q F3 +(pattern-list).833 E F2(\)).833 E F0 +(Matches one or more occurrences of the gi)180 670.8 Q -.15(ve)-.25 G +2.5(np).15 G(atterns)-2.5 E F2(@\()144 682.8 Q F3(pattern-list).833 E F2 +(\)).833 E F0(Matches one of the gi)180 694.8 Q -.15(ve)-.25 G 2.5(np) +.15 G(atterns)-2.5 E F2(!\()144 706.8 Q F3(pattern-list).833 E F2(\)) +.833 E F0(Matches an)180 718.8 Q(ything e)-.15 E(xcept one of the gi) +-.15 E -.15(ve)-.25 G 2.5(np).15 G(atterns)-2.5 E(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(23)198.165 E 0 Cg EP %%Page: 24 24 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E -.25(va)108 84 S(lue of).25 E/F1 10/Times-Italic@0 SF(varname)2.5 -E F0(de\214nes the \214le descriptor to close.)2.5 E .283(In the follo) -108 100.8 R .284(wing descriptions, if the \214le descriptor number is \ -omitted, and the \214rst character of the redirect-)-.25 F .513 -(ion operator is)108 112.8 R/F2 10/Times-Bold@0 SF(<)3.012 E F0 3.012 -(,t)C .512 +-.35 E/F1 10/Times-Bold@0 SF(Quote Remo)87 84 Q -.1(va)-.1 G(l).1 E F0 +1.112(After the preceding e)108 96 R 1.112 +(xpansions, all unquoted occurrences of the characters)-.15 F F1(\\) +3.613 E F0(,)A F1<08>3.613 E F0 3.613(,a)C(nd)-3.613 E F1(")4.446 E F0 +1.113(that did not result)4.446 F(from one of the abo)108 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 .616(by the shell.)108 +148.8 R .617(Redirection may also be used to open and close \214les for\ + the current shell e)5.616 F -.15(xe)-.15 G .617(cution en).15 F(viron-) +-.4 E 3.275(ment. The)108 160.8 R(follo)3.275 E .774 +(wing redirection operators may precede or appear an)-.25 F .774 +(ywhere within a)-.15 F F3 .774(simple command)3.614 F F0(or)4.044 E +(may follo)108 172.8 Q 2.5(wa)-.25 G F3(command)A F0 5(.R).77 G +(edirections are processed in the order the)-5 E 2.5(ya)-.15 G(ppear) +-2.5 E 2.5(,f)-.4 G(rom left to right.)-2.5 E .771(Each redirection tha\ +t may be preceded by a \214le descriptor number may instead be preceded\ + by a w)108 189.6 R .772(ord of)-.1 F .293(the form {)108 201.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.498<618c>108 213.6 +S .999(le descriptor greater than 10 and assign it to)-3.498 F F3 +(varname)3.499 E F0 5.999(.I)C 3.499(f>)-5.999 G .999 +(&- or <&- is preceded by {)-3.499 F F3(varname)A F0 .999(}, the)B -.25 +(va)108 225.6 S(lue of).25 E F3(varname)2.5 E F0 +(de\214nes the \214le descriptor to close.)2.5 E .284(In the follo)108 +242.4 R .283(wing descriptions, if the \214le descriptor number is omit\ +ted, and the \214rst character of the redirect-)-.25 F .512 +(ion operator is)108 254.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 124.8 Q F2(>)2.5 E F0 2.5(,t)C +(redirection operator is)108 266.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 141.6 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 .773 -(jected to brace e)108 153.6 R .773(xpansion, tilde e)-.15 F .773 -(xpansion, parameter e)-.15 F .772 -(xpansion, command substitution, arithmetic e)-.15 F(xpan-)-.15 E .843 -(sion, quote remo)108 165.6 R -.25(va)-.15 G .843(l, pathname e).25 F +-2.5 E .825(The w)108 283.2 R .825(ord follo)-.1 F .824 +(wing the redirection operator in the follo)-.25 F .824 +(wing descriptions, unless otherwise noted, is sub-)-.25 F .772 +(jected to brace e)108 295.2 R .773(xpansion, tilde e)-.15 F .773 +(xpansion, parameter e)-.15 F .773 +(xpansion, command substitution, arithmetic e)-.15 F(xpan-)-.15 E .844 +(sion, quote remo)108 307.2 R -.25(va)-.15 G .843(l, pathname e).25 F .843(xpansion, and w)-.15 F .843(ord splitting.)-.1 F .843(If it e)5.843 -F .843(xpands to more than one w)-.15 F(ord,)-.1 E F2(bash)3.344 E F0 -(reports an error)108 177.6 Q(.)-.55 E -(Note that the order of redirections is signi\214cant.)108 194.4 Q -.15 -(Fo)5 G 2.5(re).15 G(xample, the command)-2.65 E(ls)144 211.2 Q F2(>)2.5 -E F0(dirlist 2)2.5 E F2(>&)A F0(1)A -(directs both standard output and standard error to the \214le)108 228 Q -F1(dirlist)2.5 E F0 2.5(,w).68 G(hile the command)-2.5 E(ls 2)144 244.8 -Q F2(>&)A F0(1)A F2(>)2.5 E F0(dirlist)2.5 E .527 -(directs only the standard output to \214le)108 261.6 R F1(dirlist)3.027 +F .843(xpands to more than one w)-.15 F(ord,)-.1 E F1(bash)3.343 E F0 +(reports an error)108 319.2 Q(.)-.55 E +(Note that the order of redirections is signi\214cant.)108 336 Q -.15 +(Fo)5 G 2.5(re).15 G(xample, the command)-2.65 E(ls)144 352.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 369.6 +Q F3(dirlist)2.5 E F0 2.5(,w).68 G(hile the command)-2.5 E(ls 2)144 +386.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 403.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 273.6 Q(as redirected to)-.1 E -F1(dirlist)2.5 E F0(.).68 E F2(Bash)108 290.4 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(table:)108 302.4 Q F2(/de)144 319.2 Q(v/fd/)-.15 E F1(fd)A -F0(If)180 331.2 Q F1(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 F1(fd)2.5 E F0(is duplicated.)2.5 -E F2(/de)144 343.2 Q(v/stdin)-.15 E F0(File descriptor 0 is duplicated.) -180 355.2 Q F2(/de)144 367.2 Q(v/stdout)-.15 E F0 -(File descriptor 1 is duplicated.)180 379.2 Q F2(/de)144 391.2 Q -(v/stderr)-.15 E F0(File descriptor 2 is duplicated.)180 403.2 Q F2(/de) -144 415.2 Q(v/tcp/)-.15 E F1(host)A F2(/)A F1(port)A F0(If)180 427.2 Q -F1(host)2.997 E F0 .497(is a v)2.997 F .497 -(alid hostname or Internet address, and)-.25 F F1(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 439.2 Q F2(bash)2.5 E F0 -(attempts to open a TCP connection to the corresponding sock)2.5 E(et.) --.1 E F2(/de)144 451.2 Q(v/udp/)-.15 E F1(host)A F2(/)A F1(port)A F0(If) -180 463.2 Q F1(host)2.996 E F0 .496(is a v)2.996 F .496 -(alid hostname or Internet address, and)-.25 F F1(port)2.997 E F0 .497 +(output before the standard output w)108 415.2 Q(as redirected to)-.1 E +F3(dirlist)2.5 E F0(.).68 E F1(Bash)108 432 Q F0 .599(handles se)3.099 F +-.15(ve)-.25 G .599(ral \214lenames specially when the).15 F 3.099(ya) +-.15 G .598(re used in redirections, as described in the follo)-3.099 F +(wing)-.25 E(table:)108 444 Q F1(/de)144 460.8 Q(v/fd/)-.15 E F3(fd)A F0 +(If)180 472.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 484.8 Q(v/stdin)-.15 E F0(File descriptor 0 is duplicated.) +180 496.8 Q F1(/de)144 508.8 Q(v/stdout)-.15 E F0 +(File descriptor 1 is duplicated.)180 520.8 Q F1(/de)144 532.8 Q +(v/stderr)-.15 E F0(File descriptor 2 is duplicated.)180 544.8 Q F1(/de) +144 556.8 Q(v/tcp/)-.15 E F3(host)A F1(/)A F3(port)A F0(If)180 568.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 475.2 Q F2(bash)2.5 E F0 +(vice name,)180 580.8 Q F1(bash)2.5 E F0 +(attempts to open a TCP connection to the corresponding sock)2.5 E(et.) +-.1 E F1(/de)144 592.8 Q(v/udp/)-.15 E F3(host)A F1(/)A F3(port)A F0(If) +180 604.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 616.8 Q F1(bash)2.5 E F0 (attempts to open a UDP connection to the corresponding sock)2.5 E(et.) --.1 E 2.5(Af)108 492 S +-.1 E 2.5(Af)108 633.6 S (ailure to open or create a \214le causes the redirection to f)-2.6 E -(ail.)-.1 E .947(Redirections using \214le descriptors greater than 9 s\ -hould be used with care, as the)108 508.8 R 3.446(ym)-.15 G .946 -(ay con\215ict with \214le)-3.446 F -(descriptors the shell uses internally)108 520.8 Q(.)-.65 E F2(Redir)87 -537.6 Q(ecting Input)-.18 E F0 .391 +(ail.)-.1 E .946(Redirections using \214le descriptors greater than 9 s\ +hould be used with care, as the)108 650.4 R 3.447(ym)-.15 G .947 +(ay con\215ict with \214le)-3.447 F +(descriptors the shell uses internally)108 662.4 Q(.)-.65 E F1(Redir)87 +679.2 Q(ecting Input)-.18 E F0 .391 (Redirection of input causes the \214le whose name results from the e) -108 549.6 R .391(xpansion of)-.15 F F1(wor)3.231 E(d)-.37 E F0 .391 -(to be opened for read-)3.661 F(ing on \214le descriptor)108 561.6 Q F1 +108 691.2 R .391(xpansion of)-.15 F F3(wor)3.231 E(d)-.37 E F0 .391 +(to be opened for read-)3.661 F(ing on \214le descriptor)108 703.2 Q F3 (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 F1(n)2.86 E F0 +(he standard input \(\214le descriptor 0\) if)-2.5 E F3(n)2.86 E F0 (is not speci\214ed.)2.74 E -(The general format for redirecting input is:)108 578.4 Q([)144 595.2 Q -F1(n)A F0(])A F2(<)A F1(wor)A(d)-.37 E F2(Redir)87 612 Q(ecting Output) --.18 E F0 .175 -(Redirection of output causes the \214le whose name results from the e) -108 624 R .174(xpansion of)-.15 F F1(wor)3.014 E(d)-.37 E F0 .174 -(to be opened for writ-)3.444 F .824(ing on \214le descriptor)108 636 R -F1(n)3.324 E F0 3.324(,o).24 G 3.324(rt)-3.324 G .824 -(he standard output \(\214le descriptor 1\) if)-3.324 F F1(n)3.684 E F0 -.824(is not speci\214ed.)3.564 F .825(If the \214le does not)5.825 F --.15(ex)108 648 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 664.8 Q([)144 681.6 Q -F1(n)A F0(])A F2(>)A F1(wor)A(d)-.37 E F0 .155 -(If the redirection operator is)108 698.4 R F2(>)2.655 E F0 2.655(,a)C -.155(nd the)-2.655 F F2(noclob)2.655 E(ber)-.1 E F0 .154(option to the) -2.654 F F2(set)2.654 E F0 -.2(bu)2.654 G .154 -(iltin has been enabled, the redirection).2 F .657(will f)108 710.4 R -.657(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 .658 -(ists and is a re).15 F .658(gular \214le.)-.15 F .658(If the redi-) -5.658 F .409(rection operator is)108 722.4 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.908 G .408 -(iltin command).2 F(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(24) -197.335 E 0 Cg EP +(The general format for redirecting input is:)108 720 Q(GNU Bash-4.2)72 +768 Q(2010 July 21)148.175 E(24)198.165 E 0 Cg EP %%Page: 25 25 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E(is not enabled, the redirection is attempted e)108 84 Q -.15(ve) --.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he \214le named by)-2.5 E/F1 10 -/Times-Italic@0 SF(wor)2.5 E(d)-.37 E F0 -.15(ex)2.5 G(ists.).15 E/F2 10 -/Times-Bold@0 SF -.25(Ap)87 100.8 S(pending Redir).25 E(ected Output) --.18 E F0 .641(Redirection of output in this f)108 112.8 R .642 -(ashion causes the \214le whose name results from the e)-.1 F .642 -(xpansion of)-.15 F F1(wor)3.482 E(d)-.37 E F0 .642(to be)3.912 F .474 -(opened for appending on \214le descriptor)108 124.8 R F1(n)2.974 E F0 +-.35 E([)144 84 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 100.8 Q(ecting Output)-.18 E F0 +.174 +(Redirection of output causes the \214le whose name results from the e) +108 112.8 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 124.8 +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 +.824(is not speci\214ed.)3.564 F .824(If the \214le does not)5.824 F +-.15(ex)108 136.8 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 153.6 Q([)144 170.4 Q +F1(n)A F0(])A F2(>)A F1(wor)A(d)-.37 E F0 .154 +(If the redirection operator is)108 187.2 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 199.2 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 211.2 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 +223.2 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 +240 S(pending Redir).25 E(ected Output)-.18 E F0 .642 +(Redirection of output in this f)108 252 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 264 R F1(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.333 E F0 -.473(is not speci\214ed.)3.213 F(If)5.473 E(the \214le does not e)108 -136.8 Q(xist it is created.)-.15 E -(The general format for appending output is:)108 153.6 Q([)144 170.4 Q -F1(n)A F0(])A F2(>>)A F1(wor)A(d)-.37 E F2(Redir)87 192 Q -(ecting Standard Output and Standard Err)-.18 E(or)-.18 E F0 .248 -(This construct allo)108 204 R .249(ws both the standard output \(\214l\ -e 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 216 Q -(xpansion of)-.15 E F1(wor)2.5 E(d)-.37 E F0(.).77 E(There are tw)108 -232.8 Q 2.5(of)-.1 G -(ormats for redirecting standard output and standard error:)-2.5 E F2 -(&>)144 249.6 Q F1(wor)A(d)-.37 E F0(and)108 261.6 Q F2(>&)144 273.6 Q -F1(wor)A(d)-.37 E F0(Of the tw)108 290.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 F2(>)144 307.2 Q F1(wor)A(d)-.37 E F0(2)2.5 -E F2(>&)A F0(1)A F2 -.25(Ap)87 328.8 S -(pending Standard Output and Standard Err).25 E(or)-.18 E F0 .249 -(This construct allo)108 340.8 R .249(ws both the standard output \(\ +(he standard output \(\214le descriptor 1\) if)-2.974 F F1(n)3.334 E F0 +.474(is not speci\214ed.)3.214 F(If)5.474 E(the \214le does not e)108 +276 Q(xist it is created.)-.15 E +(The general format for appending output is:)108 292.8 Q([)144 309.6 Q +F1(n)A F0(])A F2(>>)A F1(wor)A(d)-.37 E F2(Redir)87 331.2 Q +(ecting Standard Output and Standard Err)-.18 E(or)-.18 E F0 .249 +(This construct allo)108 343.2 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 -352.8 Q(xpansion of)-.15 E F1(wor)2.5 E(d)-.37 E F0(.).77 E +-.25 F(tor 2\) to be redirected to the \214le whose name is the e)108 +355.2 Q(xpansion of)-.15 E F1(wor)2.5 E(d)-.37 E F0(.).77 E +(There are tw)108 372 Q 2.5(of)-.1 G +(ormats for redirecting standard output and standard error:)-2.5 E F2 +(&>)144 388.8 Q F1(wor)A(d)-.37 E F0(and)108 400.8 Q F2(>&)144 412.8 Q +F1(wor)A(d)-.37 E F0(Of the tw)108 429.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 446.4 Q F1(wor)A(d)-.37 E F0(2)2.5 +E F2(>&)A F0(1)A F2 -.25(Ap)87 468 S +(pending Standard Output and Standard Err).25 E(or)-.18 E F0 .248 +(This construct allo)108 480 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 492 Q +(xpansion of)-.15 E F1(wor)2.5 E(d)-.37 E F0(.).77 E (The format for appending standard output and standard error is:)108 -369.6 Q F2(&>>)144 386.4 Q F1(wor)A(d)-.37 E F0 -(This is semantically equi)108 403.2 Q -.25(va)-.25 G(lent to).25 E F2 -(>>)144 420 Q F1(wor)A(d)-.37 E F0(2)2.5 E F2(>&)A F0(1)A F2(Her)87 -436.8 Q 2.5(eD)-.18 G(ocuments)-2.5 E F0 .33(This type of redirection i\ -nstructs the shell to read input from the current source until a line c\ -ontaining only)108 448.8 R F1(delimiter)108.35 460.8 Q F0 .615 -(\(with no trailing blanks\) is seen.)3.845 F .615 +508.8 Q F2(&>>)144 525.6 Q F1(wor)A(d)-.37 E F0 +(This is semantically equi)108 542.4 Q -.25(va)-.25 G(lent to).25 E F2 +(>>)144 559.2 Q F1(wor)A(d)-.37 E F0(2)2.5 E F2(>&)A F0(1)A F2(Her)87 +576 Q 2.5(eD)-.18 G(ocuments)-2.5 E F0 .33(This type of redirection ins\ +tructs the shell to read input from the current source until a line con\ +taining only)108 588 R F1(delimiter)108.35 600 Q F0 .614 +(\(with no trailing blanks\) is seen.)3.844 F .615 (All of the lines read up to that point are then used as the stan-)5.615 -F(dard input for a command.)108 472.8 Q -(The format of here-documents is:)108 489.6 Q F2(<<)144 506.4 Q F0([)A -F2A F0(])A F1(wor)A(d)-.37 E(her)164 518.4 Q(e-document)-.37 E -(delimiter)144 530.4 Q F0 .127(No parameter e)108 547.2 R .127 +F(dard input for a command.)108 612 Q(The format of here-documents is:) +108 628.8 Q F2(<<)144 645.6 Q F0([)A F2A F0(])A F1(wor)A(d)-.37 E +(her)164 657.6 Q(e-document)-.37 E(delimiter)144 669.6 Q F0 .128 +(No parameter e)108 686.4 R .127 (xpansion, command substitution, arithmetic e)-.15 F .127 -(xpansion, or pathname e)-.15 F .128(xpansion is performed)-.15 F(on)108 -559.2 Q F1(wor)3.275 E(d)-.37 E F0 5.775(.I).77 G 3.275(fa)-5.775 G -1.075 -.15(ny c)-3.275 H .774(haracters in).15 F F1(wor)3.614 E(d)-.37 E +(xpansion, or pathname e)-.15 F .127(xpansion is performed)-.15 F(on)108 +698.4 Q F1(wor)3.274 E(d)-.37 E F0 5.774(.I).77 G 3.274(fa)-5.774 G +1.074 -.15(ny c)-3.274 H .774(haracters in).15 F F1(wor)3.614 E(d)-.37 E F0 .774(are quoted, the)4.044 F F1(delimiter)3.624 E F0 .774 -(is the result of quote remo)4.004 F -.25(va)-.15 G 3.274(lo).25 G(n) --3.274 E F1(wor)3.274 E(d)-.37 E F0 3.274(,a).77 G(nd)-3.274 E .904 -(the lines in the here-document are not e)108 571.2 R 3.405(xpanded. If) --.15 F F1(wor)3.405 E(d)-.37 E F0 .905 -(is unquoted, all lines of the here-document are)3.405 F .695 -(subjected to parameter e)108 583.2 R .695 -(xpansion, command substitution, and arithmetic e)-.15 F 3.194 -(xpansion. In)-.15 F .694(the latter case, the)3.194 F -(character sequence)108 595.2 Q F2(\\)2.5 E F0(is ignored, and) -2.5 E F2(\\)2.5 E F0(must be used to quote the characters)2.5 E F2(\\) -2.5 E F0(,)A F2($)2.5 E F0 2.5(,a)C(nd)-2.5 E F2<92>2.5 E F0(.)A .601 -(If the redirection operator is)108 612 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 624 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 640.8 Q 2.5(eS)-.18 G(trings)-2.5 E F0 -2.5(Av)108 652.8 S(ariant of here documents, the format is:)-2.75 E F2 -(<<<)144 669.6 Q F1(wor)A(d)-.37 E F0(The)108 686.4 Q F1(wor)2.5 E(d) --.37 E F0(is e)2.5 E -(xpanded and supplied to the command on its standard input.)-.15 E F2 -(Duplicating File Descriptors)87 703.2 Q F0(The redirection operator)108 -715.2 Q(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(25)197.335 E 0 Cg -EP +(is the result of quote remo)4.004 F -.25(va)-.15 G 3.275(lo).25 G(n) +-3.275 E F1(wor)3.275 E(d)-.37 E F0 3.275(,a).77 G(nd)-3.275 E .905 +(the lines in the here-document are not e)108 710.4 R 3.405(xpanded. If) +-.15 F F1(wor)3.405 E(d)-.37 E F0 .904 +(is unquoted, all lines of the here-document are)3.405 F .694 +(subjected to parameter e)108 722.4 R .695 +(xpansion, command substitution, and arithmetic e)-.15 F 3.195 +(xpansion. In)-.15 F .695(the latter case, the)3.195 F(GNU Bash-4.2)72 +768 Q(2010 July 21)148.175 E(25)198.165 E 0 Cg EP %%Page: 26 26 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E([)144 84 Q/F1 10/Times-Italic@0 SF(n)A F0(])A/F2 10/Times-Bold@0 -SF(<&)A F1(wor)A(d)-.37 E F0 .127 -(is used to duplicate input \214le descriptors.)108 100.8 R(If)5.127 E -F1(wor)2.967 E(d)-.37 E F0 -.15(ex)3.397 G .126 +-.35 E(character sequence)108 84 Q/F1 10/Times-Bold@0 SF(\\)2.5 +E F0(is ignored, and)2.5 E F1(\\)2.5 E F0 +(must be used to quote the characters)2.5 E F1(\\)2.5 E F0(,)A F1($)2.5 +E F0 2.5(,a)C(nd)-2.5 E F1<92>2.5 E F0(.)A .602 +(If the redirection operator is)108 100.8 R F1(<<\255)3.101 E F0 3.101 +(,t)C .601(hen all leading tab characters are stripped from input lines\ + and the line)-3.101 F(containing)108 112.8 Q/F2 10/Times-Italic@0 SF +(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 F1(Her)87 129.6 Q 2.5(eS)-.18 G(trings)-2.5 E F0 +2.5(Av)108 141.6 S(ariant of here documents, the format is:)-2.75 E F1 +(<<<)144 158.4 Q F2(wor)A(d)-.37 E F0(The)108 175.2 Q F2(wor)2.5 E(d) +-.37 E F0(is e)2.5 E +(xpanded and supplied to the command on its standard input.)-.15 E F1 +(Duplicating File Descriptors)87 192 Q F0(The redirection operator)108 +204 Q([)144 220.8 Q F2(n)A F0(])A F1(<&)A F2(wor)A(d)-.37 E F0 .126 +(is used to duplicate input \214le descriptors.)108 237.6 R(If)5.127 E +F2(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 -112.8 Q F1(n)3.317 E F0 .457(is made to be a cop)3.197 F 2.957(yo)-.1 G -2.957(ft)-2.957 G .457(hat \214le descriptor)-2.957 F 5.457(.I)-.55 G -2.957(ft)-5.457 G .457(he digits in)-2.957 F F1(wor)3.298 E(d)-.37 E F0 -.458(do not specify a \214le descriptor open)3.728 F .15 -(for input, a redirection error occurs.)108 124.8 R(If)5.15 E F1(wor) -2.99 E(d)-.37 E F0 -.25(eva)3.42 G .15(luates to).25 F F22.65 E F0 -2.649<2c8c>C .149(le descriptor)-2.649 F F1(n)3.009 E F0 .149 -(is closed.)2.889 F(If)5.149 E F1(n)3.009 E F0 .149(is not speci\214ed,) -2.889 F(the standard input \(\214le descriptor 0\) is used.)108 136.8 Q -(The operator)108 153.6 Q([)144 170.4 Q F1(n)A F0(])A F2(>&)A F1(wor)A -(d)-.37 E F0 .443 -(is used similarly to duplicate output \214le descriptors.)108 187.2 R -(If)5.443 E F1(n)3.304 E F0 .444 -(is not speci\214ed, the standard output \(\214le descrip-)3.184 F 1.358 -(tor 1\) is used.)108 199.2 R 1.358(If the digits in)6.358 F F1(wor) -4.198 E(d)-.37 E F0 1.357(do not specify a \214le descriptor open for o\ -utput, a redirection error)4.628 F 2.596(occurs. As)108 211.2 R 2.596 -(as)2.596 G .096(pecial case, if)-2.596 F F1(n)2.596 E F0 .096 -(is omitted, and)2.596 F F1(wor)2.596 E(d)-.37 E F0 .096(does not e) -2.596 F .096(xpand to one or more digits, the standard out-)-.15 F -(put and standard error are redirected as described pre)108 223.2 Q -(viously)-.25 E(.)-.65 E F2(Mo)87 240 Q(ving File Descriptors)-.1 E F0 -(The redirection operator)108 252 Q([)144 268.8 Q F1(n)A F0(])A F2(<&)A -F1(digit)A F2A F0(mo)108 285.6 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 297.6 Q F1(digit)5 -E F0(is closed after being duplicated to)2.5 E F1(n)2.5 E F0(.)A -(Similarly)108 314.4 Q 2.5(,t)-.65 G(he redirection operator)-2.5 E([) -144 331.2 Q F1(n)A F0(])A F2(>&)A F1(digit)A F2A F0(mo)108 348 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 360 Q F2 -(Opening File Descriptors f)87 376.8 Q(or Reading and Writing)-.25 E F0 -(The redirection operator)108 388.8 Q([)144 405.6 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 -422.4 R 1.349(xpansion of)-.15 F F1(wor)4.189 E(d)-.37 E F0 1.349 +249.6 Q F2(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 F2(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 261.6 R(If)5.149 E F2(wor) +2.989 E(d)-.37 E F0 -.25(eva)3.419 G .149(luates to).25 F F12.649 E +F0 2.65<2c8c>C .15(le descriptor)-2.65 F F2(n)3.01 E F0 .15(is closed.) +2.89 F(If)5.15 E F2(n)3.01 E F0 .15(is not speci\214ed,)2.89 F +(the standard input \(\214le descriptor 0\) is used.)108 273.6 Q +(The operator)108 290.4 Q([)144 307.2 Q F2(n)A F0(])A F1(>&)A F2(wor)A +(d)-.37 E F0 .444 +(is used similarly to duplicate output \214le descriptors.)108 324 R(If) +5.444 E F2(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 336 R 1.357(If the digits in)6.357 F F2(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.597(occurs. As)108 348 R 2.597(as)2.597 G +.097(pecial case, if)-2.597 F F2(n)2.596 E F0 .096(is omitted, and)2.596 +F F2(wor)2.596 E(d)-.37 E F0 .096(does not e)2.596 F .096 +(xpand to one or more digits, the standard out-)-.15 F +(put and standard error are redirected as described pre)108 360 Q +(viously)-.25 E(.)-.65 E F1(Mo)87 376.8 Q(ving File Descriptors)-.1 E F0 +(The redirection operator)108 388.8 Q([)144 405.6 Q F2(n)A F0(])A F1(<&) +A F2(digit)A F1A F0(mo)108 422.4 Q -.15(ve)-.15 G 3.035(st).15 G +.535(he \214le descriptor)-3.035 F F2(digit)3.035 E F0 .535 +(to \214le descriptor)3.035 F F2(n)3.035 E F0 3.035(,o).24 G 3.035(rt) +-3.035 G .536(he standard input \(\214le descriptor 0\) if)-3.035 F F2 +(n)3.036 E F0 .536(is not speci-)3.036 F(\214ed.)108 434.4 Q F2(digit)5 +E F0(is closed after being duplicated to)2.5 E F2(n)2.5 E F0(.)A +(Similarly)108 451.2 Q 2.5(,t)-.65 G(he redirection operator)-2.5 E([) +144 468 Q F2(n)A F0(])A F1(>&)A F2(digit)A F1A F0(mo)108 484.8 Q +-.15(ve)-.15 G 2.786(st).15 G .286(he \214le descriptor)-2.786 F F2 +(digit)2.786 E F0 .286(to \214le descriptor)2.786 F F2(n)2.786 E F0 +2.786(,o).24 G 2.786(rt)-2.786 G .285 +(he standard output \(\214le descriptor 1\) if)-2.786 F F2(n)2.785 E F0 +.285(is not speci-)2.785 F(\214ed.)108 496.8 Q F1 +(Opening File Descriptors f)87 513.6 Q(or Reading and Writing)-.25 E F0 +(The redirection operator)108 525.6 Q([)144 542.4 Q F2(n)A F0(])A F1(<>) +A F2(wor)A(d)-.37 E F0 1.349(causes the \214le whose name is the e)108 +559.2 R 1.349(xpansion of)-.15 F F2(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 434.4 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 +108 571.2 Q F2(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 F2(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 451.2 Q F1(Aliases)108 463.2 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 +/Times-Bold@0 SF(ALIASES)72 588 Q F2(Aliases)108 600 Q F0(allo)3.174 E +3.174(was)-.25 G .674(tring to be substituted for a w)-3.174 F .674 +(ord when it is used as the \214rst w)-.1 F .673 (ord of a simple command.)-.1 F .394(The shell maintains a list of alia\ -ses that may be set and unset with the)108 475.2 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 487.2 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 499.2 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 F2(/)2.972 E F0(,)A -F2($)2.972 E F0(,)A F2<92>2.972 E F0(,)A(and)108 511.2 Q F2(=)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 F1(metac)3.612 E(har)-.15 E(acter)-.15 E(s)-.1 E F0 1.112 -(or quoting characters listed abo)3.612 F 1.412 -.15(ve m)-.15 H 1.112 -(ay not appear in an alias).15 F 3.62(name. The)108 523.2 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 535.2 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 547.2 R .296(xpanded a second time.)-.15 F .296 -(This means that one may alias)5.296 F F2(ls)2.796 E F0(to)2.796 E F2 -.296(ls \255F)2.796 F F0 2.796(,f)C .295(or instance, and)-2.796 F F2 -(bash)2.795 E F0 .295(does not try)2.795 F .542(to recursi)108 559.2 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 F1(blank)3.043 E F0 3.043(,t).67 G .543(hen the ne) --3.043 F(xt)-.15 E(command w)108 571.2 Q(ord follo)-.1 E +ses that may be set and unset with the)108 612 R F1(alias)2.894 E F0 +(and)2.894 E F1(unalias)2.894 E F0 -.2(bu)2.894 G .394(iltin commands).2 +F(\(see)108 624 Q/F4 9/Times-Bold@0 SF 1.98(SHELL B)4.48 F(UIL)-.09 E +1.98(TIN COMMANDS)-.828 F F0(belo)4.23 E 4.48(w\). The)-.25 F 1.98 +(\214rst w)4.48 F 1.979(ord of each simple command, if unquoted, is)-.1 +F(check)108 636 Q .472(ed to see if it has an alias.)-.1 F .472 +(If so, that w)5.472 F .473(ord is replaced by the te)-.1 F .473 +(xt of the alias.)-.15 F .473(The characters)5.473 F F1(/)2.973 E F0(,)A +F1($)2.973 E F0(,)A F1<92>2.973 E F0(,)A(and)108 648 Q F1(=)3.612 E F0 +1.112(and an)3.612 F 3.612(yo)-.15 G 3.612(ft)-3.612 G 1.112(he shell) +-3.612 F 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.411 -.15(ve m)-.15 H 1.111 +(ay not appear in an alias).15 F 3.619(name. The)108 660 R 1.119 +(replacement te)3.619 F 1.119(xt may contain an)-.15 F 3.619(yv)-.15 G +1.119(alid shell input, including shell metacharacters.)-3.869 F 1.12 +(The \214rst)6.12 F -.1(wo)108 672 S .514(rd of the replacement te).1 F +.514(xt is tested for aliases, b)-.15 F .514(ut a w)-.2 F .513 +(ord that is identical to an alias being e)-.1 F .513(xpanded is)-.15 F +.295(not e)108 684 R .295(xpanded a second time.)-.15 F .296 +(This means that one may alias)5.295 F F1(ls)2.796 E F0(to)2.796 E F1 +.296(ls \255F)2.796 F F0 2.796(,f)C .296(or instance, and)-2.796 F F1 +(bash)2.796 E F0 .296(does not try)2.796 F .543(to recursi)108 696 R +-.15(ve)-.25 G .543(ly e).15 F .543(xpand the replacement te)-.15 F +3.043(xt. If)-.15 F .543(the last character of the alias v)3.043 F .542 +(alue is a)-.25 F F2(blank)3.042 E F0 3.042(,t).67 G .542(hen the ne) +-3.042 F(xt)-.15 E(command w)108 708 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 588 Q F2(alias)2.5 E F0 -(command, and remo)2.5 E -.15(ve)-.15 G 2.5(dw).15 G(ith the)-2.5 E F2 -(unalias)2.5 E F0(command.)2.5 E .284 -(There is no mechanism for using ar)108 604.8 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 616.8 Q F4(FUNCTIONS)2.5 E F0(belo)2.25 E(w\).)-.25 E 1.22 -(Aliases are not e)108 633.6 R 1.22 -(xpanded when the shell is not interacti)-.15 F -.15(ve)-.25 G 3.72(,u) -.15 G 1.22(nless the)-3.72 F F2(expand_aliases)3.72 E F0 1.22 -(shell option is set)3.72 F(using)108 645.6 Q F2(shopt)2.5 E F0 -(\(see the description of)2.5 E F2(shopt)2.5 E F0(under)2.5 E F4 -(SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 -E .436 -(The rules concerning the de\214nition and use of aliases are some)108 -662.4 R .435(what confusing.)-.25 F F2(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 674.4 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 686.4 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 698.4 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 710.4 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 -722.4 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(GNU Bash-4.1)72 768 Q -(2010 June 12)147.345 E(26)197.335 E 0 Cg EP +E(Aliases are created and listed with the)108 724.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 +(unalias)2.5 E F0(command.)2.5 E(GNU Bash-4.2)72 768 Q(2010 July 21) +148.175 E(26)198.165 E 0 Cg EP %%Page: 27 27 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E .495 -(because a function de\214nition is itself a compound command.)108 84 R -.494(As a consequence, aliases de\214ned in a func-)5.494 F .084 -(tion are not a)108 96 R -.25(va)-.2 G .084 +-.35 E .284(There is no mechanism for using ar)108 84 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 96 Q/F1 9/Times-Bold@0 SF(FUNCTIONS)2.5 E F0(belo)2.25 E(w\).)-.25 E +1.22(Aliases are not e)108 112.8 R 1.22 +(xpanded when the shell is not interacti)-.15 F -.15(ve)-.25 G 3.72(,u) +.15 G 1.22(nless the)-3.72 F/F2 10/Times-Bold@0 SF(expand_aliases)3.72 E +F0 1.22(shell option is set)3.72 F(using)108 124.8 Q F2(shopt)2.5 E F0 +(\(see the description of)2.5 E F2(shopt)2.5 E F0(under)2.5 E F1 +(SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 +E .435 +(The rules concerning the de\214nition and use of aliases are some)108 +141.6 R .436(what confusing.)-.25 F F2(Bash)5.436 E F0(al)2.936 E -.1 +(wa)-.1 G .436(ys reads at least).1 F .338 +(one complete line of input before e)108 153.6 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 .337(Aliases are e)5.337 F .337 +(xpanded when)-.15 F 3.403(ac)108 165.6 S .904 +(ommand is read, not when it is e)-3.403 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.162 +(another command does not tak)108 177.6 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.161(The commands follo)6.161 F 1.161(wing the)-.25 F .277 +(alias de\214nition on that line are not af)108 189.6 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 .699(are e)108 +201.6 R -.15(xe)-.15 G 3.199(cuted. Aliases).15 F .699(are e)3.199 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 .494 +(because a function de\214nition is itself a compound command.)108 213.6 +R .495(As a consequence, aliases de\214ned in a func-)5.494 F .085 +(tion are not a)108 225.6 R -.25(va)-.2 G .084 (ilable until after that function is e).25 F -.15(xe)-.15 G 2.584 (cuted. T).15 F 2.584(ob)-.8 G 2.584(es)-2.584 G .084(afe, al)-2.584 F --.1(wa)-.1 G .085(ys put alias de\214nitions on a sepa-).1 F -(rate line, and do not use)108 108 Q/F1 10/Times-Bold@0 SF(alias)2.5 E -F0(in compound commands.)2.5 E -.15(Fo)108 124.8 S 2.5(ra).15 G(lmost e) +-.1(wa)-.1 G .084(ys put alias de\214nitions on a sepa-).1 F +(rate line, and do not use)108 237.6 Q F2(alias)2.5 E F0 +(in compound commands.)2.5 E -.15(Fo)108 254.4 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/F2 10.95 -/Times-Bold@0 SF(FUNCTIONS)72 141.6 Q F0 3.468(As)108 153.6 S .968 -(hell function, de\214ned as described abo)-3.468 F 1.267 -.15(ve u)-.15 -H(nder).15 E/F3 9/Times-Bold@0 SF .967(SHELL GRAMMAR)3.467 F/F4 9 -/Times-Roman@0 SF(,)A F0 .967(stores a series of commands for)3.217 F -1.001(later e)108 165.6 R -.15(xe)-.15 G 3.501(cution. When).15 F 1.002 -(the name of a shell function is used as a simple command name, the lis\ -t of com-)3.501 F .316(mands associated with that function name is e)108 -177.6 R -.15(xe)-.15 G 2.816(cuted. Functions).15 F .316(are e)2.816 F --.15(xe)-.15 G .315(cuted in the conte).15 F .315(xt of the current)-.15 -F .035(shell; no ne)108 189.6 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 201.6 R -.15(xe)-.15 G .64(cuted, the ar).15 F +(ry purpose, aliases are superseded by shell functions.).15 E/F3 10.95 +/Times-Bold@0 SF(FUNCTIONS)72 271.2 Q F0 3.467(As)108 283.2 S .967 +(hell function, de\214ned as described abo)-3.467 F 1.267 -.15(ve u)-.15 +H(nder).15 E F1 .967(SHELL GRAMMAR)3.467 F/F4 9/Times-Roman@0 SF(,)A F0 +.968(stores a series of commands for)3.217 F 1.002(later e)108 295.2 R +-.15(xe)-.15 G 3.502(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.502 F .315 +(mands associated with that function name is e)108 307.2 R -.15(xe)-.15 +G 2.816(cuted. Functions).15 F .316(are e)2.816 F -.15(xe)-.15 G .316 +(cuted in the conte).15 F .316(xt of the current)-.15 F .036 +(shell; no ne)108 319.2 R 2.536(wp)-.25 G .036 +(rocess is created to interpret them \(contrast this with the e)-2.536 F +-.15(xe)-.15 G .036(cution of a shell script\).).15 F .035(When a)5.035 +F .639(function is e)108 331.2 R -.15(xe)-.15 G .639(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 213.6 -R F1(#)3.032 E F0 .532(is updated to re\215ect the change.)3.032 F .533 -(Special parameter 0 is unchanged.)5.532 F .533(The \214rst ele-)5.533 F -(ment of the)108 225.6 Q F3(FUNCN)2.5 E(AME)-.18 E F0 -.25(va)2.25 G +-.18 F -.15(xe)-.15 G(cution.).15 E .533(The special parameter)108 343.2 +R F2(#)3.033 E F0 .532(is updated to re\215ect the change.)3.033 F .532 +(Special parameter 0 is unchanged.)5.532 F .532(The \214rst ele-)5.532 F +(ment of the)108 355.2 Q F1(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 -242.4 R -.15(xe)-.15 G 1.25(cution en).15 F 1.25 +372 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.048(these e)108 254.4 R 3.548(xceptions: the)-.15 F F3(DEB)3.548 E(UG) --.09 E F0(and)3.298 E F1(RETURN)3.548 E F0 1.048 -(traps \(see the description of the)3.548 F F1(trap)3.548 E F0 -.2(bu) -3.548 G 1.048(iltin under).2 F F3(SHELL)3.549 E -.09(BU)108 266.4 S(IL) -.09 E .479(TIN COMMANDS)-.828 F F0(belo)2.729 E .479 +1.049(these e)108 384 R 3.548(xceptions: the)-.15 F F1(DEB)3.548 E(UG) +-.09 E F0(and)3.298 E F2(RETURN)3.548 E F0 1.048 +(traps \(see the description of the)3.548 F F2(trap)3.548 E F0 -.2(bu) +3.548 G 1.048(iltin under).2 F F1(SHELL)3.548 E -.09(BU)108 396 S(IL).09 +E .478(TIN COMMANDS)-.828 F F0(belo)2.728 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 278.4 R F3(declar) +-.25 G 2.979(nt).15 G(he)-2.979 E F2(trace)2.979 E F0(attrib)2.979 E +.479(ute \(see)-.2 F .421(the description of the)108 408 R F1(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 290.4 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 302.4 Q F1(\255o errtrace)2.5 E F0 -(shell option has been enabled.)2.5 E -1.11(Va)108 319.2 S .655 -(riables local to the function may be declared with the)1.11 F F1(local) -3.155 E F0 -.2(bu)3.156 G .656(iltin command.).2 F(Ordinarily)5.656 E -3.156(,v)-.65 G .656(ariables and)-3.406 F(their v)108 331.2 Q +-.25 F F2 .42(\255o functrace)2.92 F F0 .42 +(shell option has been enabled with the)2.92 F F2(set)2.92 E F0 -.2(bu) +108 420 S .071(iltin \(in which case all functions inherit the).2 F F2 +(DEB)2.572 E(UG)-.1 E F0(and)2.572 E F2(RETURN)2.572 E F0 .072 +(traps\), and the)2.572 F F1(ERR)2.572 E F0 .072(trap is not inher)2.322 +F(-)-.2 E(ited unless the)108 432 Q F2(\255o errtrace)2.5 E F0 +(shell option has been enabled.)2.5 E -1.11(Va)108 448.8 S .656 +(riables local to the function may be declared with the)1.11 F F2(local) +3.155 E F0 -.2(bu)3.155 G .655(iltin command.).2 F(Ordinarily)5.655 E +3.155(,v)-.65 G .655(ariables and)-3.405 F(their v)108 460.8 Q (alues are shared between the function and its caller)-.25 E(.)-.55 E -(The)108 348 Q F1(FUNCNEST)3.529 E F0 -.25(va)3.529 G 1.028 +(The)108 477.6 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 -360 Q -.15(ve)-.25 G 2.5(l. Function).15 F(in)2.5 E -.2(vo)-.4 G +489.6 Q -.15(ve)-.25 G 2.5(l. Function).15 F(in)2.5 E -.2(vo)-.4 G (cations that e).2 E(xceed the limit cause the entire command to abort.) --.15 E .043(If the b)108 376.8 R .043(uiltin command)-.2 F F1 -.18(re) +-.15 E .044(If the b)108 506.4 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 -.044(cution resumes with).15 F 1.012(the ne)108 388.8 R 1.012 +.043(cution resumes with).15 F 1.011(the ne)108 518.4 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 F1(RETURN)3.511 E F0 1.011 -(trap is e)3.511 F -.15(xe)-.15 G(cuted).15 E .213(before e)108 400.8 R --.15(xe)-.15 G .213(cution resumes.).15 F .213 -(When a function completes, the v)5.213 F .214 +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 530.4 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 412.8 Q F1(#)2.5 E F0(are restored to the v)2.5 E(alues the)-.25 E +108 542.4 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.359 -(Function names and de\214nitions may be listed with the)108 429.6 R F1 -3.858 E F0 1.358(option to the)3.858 F F1(declar)3.858 E(e)-.18 E -F0(or)3.858 E F1(typeset)3.858 E F0 -.2(bu)3.858 G 1.358(iltin com-).2 F -3.39(mands. The)108 441.6 R F13.39 E F0 .89(option to)3.39 F F1 -(declar)3.39 E(e)-.18 E F0(or)3.39 E F1(typeset)3.39 E F0 .89 +-2.65 G(cution.).15 E 1.358 +(Function names and de\214nitions may be listed with the)108 559.2 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 571.2 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 -.327(\214le and line number)108 453.6 R 2.827(,i)-.4 G 2.827(ft)-2.827 G -(he)-2.827 E F1(extdeb)2.827 E(ug)-.2 E F0 .326 -(shell option is enabled\).)2.827 F .326(Functions may be e)5.326 F .326 -(xported so that subshells)-.15 F 1.297(automatically ha)108 465.6 R -1.597 -.15(ve t)-.2 H 1.297(hem de\214ned with the).15 F F13.797 E -F0 1.297(option to the)3.797 F F1(export)3.798 E F0 -.2(bu)3.798 G 3.798 -(iltin. A).2 F 1.298(function de\214nition may be)3.798 F .161 -(deleted using the)108 477.6 R F12.661 E F0 .161(option to the) -2.661 F F1(unset)2.661 E F0 -.2(bu)2.661 G 2.661(iltin. Note).2 F .16 -(that shell functions and v)2.661 F .16(ariables with the same name)-.25 -F 1.325(may result in multiple identically-named entries in the en)108 -489.6 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 501.6 Q -(en in cases where this may cause a problem.)-.1 E -(Functions may be recursi)108 518.4 Q -.15(ve)-.25 G 5(.N).15 G 2.5(ol) --5 G(imit is imposed on the number of recursi)-2.5 E .3 -.15(ve c)-.25 H -(alls.).15 E F2(ARITHMETIC EV)72 535.2 Q(ALU)-1.478 E -1.04(AT)-.657 G -(ION)1.04 E F0 2.298(The shell allo)108 547.2 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 F1(let)4.797 E F0 -(and)4.797 E F1(declar)108 559.2 Q(e)-.18 E F0 -.2(bu)2.705 G .205 -(iltin commands and).2 F F1 .205(Arithmetic Expansion)2.705 F F0 2.705 -(\). Ev)B .205(aluation is done in \214x)-.25 F .206(ed-width inte)-.15 -F .206(gers with no)-.15 F .429(check for o)108 571.2 R -.15(ve)-.15 G -(r\215o).15 E 1.729 -.65(w, t)-.25 H .429(hough di).65 F .428 -(vision by 0 is trapped and \215agged as an error)-.25 F 5.428(.T)-.55 G -.428(he operators and their prece-)-5.428 F 1.919(dence, associati)108 -583.2 R(vity)-.25 E 4.419(,a)-.65 G 1.919(nd v)-4.419 F 1.919 -(alues are the same as in the C language.)-.25 F 1.92(The follo)6.92 F -1.92(wing list of operators is)-.25 F(grouped into le)108 595.2 Q -.15 -(ve)-.25 G(ls of equal-precedence operators.).15 E(The le)5 E -.15(ve) --.25 G(ls are listed in order of decreasing precedence.).15 E/F5 10 -/Times-Italic@0 SF(id)108 612 Q F1(++)A F5(id)2.5 E F1A F0 -.25 -(va)144 624 S(riable post-increment and post-decrement).25 E F1(++)108 -636 Q F5(id)A F12.5 E F5(id)A F0 -.25(va)144 648 S -(riable pre-increment and pre-decrement).25 E F1 2.5108 660 S F0 -(unary minus and plus)19.6 E F1 2.5(!~)108 672 S F0 -(logical and bitwise ne)24.34 E -.05(ga)-.15 G(tion).05 E F1(**)108 684 -Q F0 -.15(ex)26 G(ponentiation).15 E F1 2.5(*/%)108 696 S F0 -(multiplication, di)10.72 E(vision, remainder)-.25 E F1 2.5<2bad>108 708 -S F0(addition, subtraction)19.6 E(GNU Bash-4.1)72 768 Q(2010 June 12) -147.345 E(27)197.335 E 0 Cg EP +.326(\214le and line number)108 583.2 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 595.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 607.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 619.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 631.2 Q +(en in cases where this may cause a problem.)-.1 E .371 +(Functions may be recursi)108 648 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 660 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 672 Q .3 +-.15(ve c)-.25 H(alls.).15 E F3(ARITHMETIC EV)72 688.8 Q(ALU)-1.478 E +-1.04(AT)-.657 G(ION)1.04 E F0 2.297(The shell allo)108 700.8 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 712.8 Q(e)-.18 E F0 -.2(bu)2.706 G .206 +(iltin commands and).2 F F2 .206(Arithmetic Expansion)2.706 F F0 2.705 +(\). Ev)B .205(aluation is done in \214x)-.25 F .205(ed-width inte)-.15 +F .205(gers with no)-.15 F 2.07(check for o)108 724.8 R -.15(ve)-.15 G +(r\215o).15 E 3.37 -.65(w, t)-.25 H 2.07(hough di).65 F 2.07 +(vision by 0 is trapped and \215agged as an error)-.25 F 7.07(.T)-.55 G +2.07(he operators and their)-7.07 F(GNU Bash-4.2)72 768 Q(2010 July 21) +148.175 E(27)198.165 E 0 Cg EP %%Page: 28 28 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(<< >>)108 84 Q F0 -(left and right bitwise shifts)10.7 E F1(<= >= < >)108 96 Q F0 -(comparison)144 108 Q F1(== !=)108 120 Q F0(equality and inequality) -13.07 E F1(&)108 132 Q F0(bitwise AND)27.67 E F1(^)108 144 Q F0 -(bitwise e)32.67 E(xclusi)-.15 E .3 -.15(ve O)-.25 H(R).15 E F1(|)108 -156 Q F0(bitwise OR)33.8 E F1(&&)108 168 Q F0(logical AND)19.34 E F1(||) -108 180 Q F0(logical OR)31.6 E/F2 10/Times-Italic@0 SF -.2(ex)108 192 S -(pr).2 E F1(?)A F2 -.2(ex)C(pr).2 E F1(:)A F2 -.2(ex)C(pr).2 E F0 -(conditional operator)144 204 Q F1 2.5(=*)108 216 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 228 Q F2 -.2(ex)108 240 S(pr1).2 E F1(,)2.5 E -F2 -.2(ex)2.5 G(pr2).2 E F0(comma)144 252 Q .68(Shell v)108 268.8 R .68 -(ariables are allo)-.25 F .68(wed as operands; parameter e)-.25 F .68 +-.35 E .646(precedence, associati)108 84 R(vity)-.25 E 3.146(,a)-.65 G +.646(nd v)-3.146 F .646(alues are the same as in the C language.)-.25 F +.646(The follo)5.646 F .646(wing list of operators is)-.25 F +(grouped into le)108 96 Q -.15(ve)-.25 G +(ls of equal-precedence operators.).15 E(The le)5 E -.15(ve)-.25 G +(ls are listed in order of decreasing precedence.).15 E/F1 10 +/Times-Italic@0 SF(id)108 112.8 Q/F2 10/Times-Bold@0 SF(++)A F1(id)2.5 E +F2A F0 -.25(va)144 124.8 S +(riable post-increment and post-decrement).25 E F2(++)108 136.8 Q F1(id) +A F22.5 E F1(id)A F0 -.25(va)144 148.8 S +(riable pre-increment and pre-decrement).25 E F2 2.5108 160.8 S F0 +(unary minus and plus)19.6 E F2 2.5(!~)108 172.8 S F0 +(logical and bitwise ne)24.34 E -.05(ga)-.15 G(tion).05 E F2(**)108 +184.8 Q F0 -.15(ex)26 G(ponentiation).15 E F2 2.5(*/%)108 196.8 S F0 +(multiplication, di)10.72 E(vision, remainder)-.25 E F2 2.5<2bad>108 +208.8 S F0(addition, subtraction)19.6 E F2(<< >>)108 220.8 Q F0 +(left and right bitwise shifts)10.7 E F2(<= >= < >)108 232.8 Q F0 +(comparison)144 244.8 Q F2(== !=)108 256.8 Q F0(equality and inequality) +13.07 E F2(&)108 268.8 Q F0(bitwise AND)27.67 E F2(^)108 280.8 Q F0 +(bitwise e)32.67 E(xclusi)-.15 E .3 -.15(ve O)-.25 H(R).15 E F2(|)108 +292.8 Q F0(bitwise OR)33.8 E F2(&&)108 304.8 Q F0(logical AND)19.34 E F2 +(||)108 316.8 Q F0(logical OR)31.6 E F1 -.2(ex)108 328.8 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 340.8 Q F2 2.5(=*)108 352.8 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 364.8 Q F1 -.2(ex)108 376.8 S +(pr1).2 E F2(,)2.5 E F1 -.2(ex)2.5 G(pr2).2 E F0(comma)144 388.8 Q .68 +(Shell v)108 405.6 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 280.8 R 1.007(ithin an e)-.4 -F 1.007(xpression, shell v)-.15 F 1.007 +-.25(va)-.25 G(lu-).25 E 3.508(ated. W)108 417.6 R 1.008(ithin an e)-.4 +F 1.008(xpression, shell v)-.15 F 1.007 (ariables may also be referenced by name without using the parameter) --.25 F -.15(ex)108 292.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 304.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 316.8 R 1.389 -(ariable which has been gi)-.25 F -.15(ve)-.25 G 3.889(nt).15 G(he) --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 .343(assigned a v)108 328.8 R 2.843(alue. A)-.25 F .343(null v) -2.843 F .343(alue e)-.25 F -.25(va)-.25 G .343(luates to 0.).25 F 2.843 -(As)5.343 G .343(hell v)-2.843 F .343(ariable need not ha)-.25 F .643 --.15(ve i)-.2 H .343(ts inte).15 F .344(ger attrib)-.15 F .344 -(ute turned on)-.2 F(to be used in an e)108 340.8 Q(xpression.)-.15 E -1.406(Constants with a leading 0 are interpreted as octal numbers.)108 -357.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 369.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 381.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 .915 -(The digits greater than 9 are represented by the lo)108 393.6 R .916 +-.25 F -.15(ex)108 429.6 S 1.04(pansion syntax.).15 F 3.54(As)6.04 G +1.04(hell v)-3.54 F 1.04(ariable that is null or unset e)-.25 F -.25(va) +-.25 G 1.041(luates to 0 when referenced by name without).25 F 1.467 +(using the parameter e)108 441.6 R 1.467(xpansion syntax.)-.15 F 1.467 +(The v)6.467 F 1.467(alue of a v)-.25 F 1.467(ariable is e)-.25 F -.25 +(va)-.25 G 1.466(luated as an arithmetic e).25 F(xpression)-.15 E 1.389 +(when it is referenced, or when a v)108 453.6 R 1.389 +(ariable which has been gi)-.25 F -.15(ve)-.25 G 3.89(nt).15 G(he)-3.89 +E F1(inte)3.89 E -.1(ge)-.4 G(r).1 E F0(attrib)3.89 E 1.39(ute using)-.2 +F F2(declar)3.89 E 3.89(e-)-.18 G(i)-3.89 E F0(is)3.89 E .344 +(assigned a v)108 465.6 R 2.844(alue. A)-.25 F .343(null v)2.843 F .343 +(alue e)-.25 F -.25(va)-.25 G .343(luates to 0.).25 F 2.843(As)5.343 G +.343(hell v)-2.843 F .343(ariable need not ha)-.25 F .643 -.15(ve i)-.2 +H .343(ts inte).15 F .343(ger attrib)-.15 F .343(ute turned on)-.2 F +(to be used in an e)108 477.6 Q(xpression.)-.15 E 1.406 +(Constants with a leading 0 are interpreted as octal numbers.)108 494.4 +R 3.906(Al)6.406 G 1.407(eading 0x or 0X denotes he)-3.906 F(xadecimal.) +-.15 E .113(Otherwise, numbers tak)108 506.4 R 2.613(et)-.1 G .113 +(he form [)-2.613 F F1(base#)A F0 .112(]n, where the optional)B F1(base) +2.612 E F0 .112(is a decimal number between 2 and 64)2.612 F .533 +(representing the arithmetic base, and)108 518.4 R F1(n)3.033 E F0 .533 +(is a number in that base.)3.033 F(If)5.534 E F1(base#)3.034 E F0 .534 +(is omitted, then base 10 is used.)3.034 F .916 +(The digits greater than 9 are represented by the lo)108 530.4 R .915 (wercase letters, the uppercase letters, @, and _, in that)-.25 F(order) -108 405.6 Q 5.671(.I)-.55 G(f)-5.671 E F2(base)3.171 E F0 .671 -(is less than or equal to 36, lo)3.171 F .67 +108 542.4 Q 5.67(.I)-.55 G(f)-5.67 E F1(base)3.17 E F0 .67 +(is less than or equal to 36, lo)3.17 F .671 (wercase and uppercase letters may be used interchangeably to)-.25 F -(represent numbers between 10 and 35.)108 417.6 Q .234(Operators are e) -108 434.4 R -.25(va)-.25 G .234(luated in order of precedence.).25 F +(represent numbers between 10 and 35.)108 554.4 Q .235(Operators are e) +108 571.2 R -.25(va)-.25 G .235(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 446.4 S +G .234(luated \214rst and may).25 F -.15(ove)108 583.2 S (rride the precedence rules abo).15 E -.15(ve)-.15 G(.).15 E/F3 10.95 -/Times-Bold@0 SF(CONDITION)72 463.2 Q(AL EXPRESSIONS)-.219 E F0 .256 -(Conditional e)108 475.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 487.2 R .77 +/Times-Bold@0 SF(CONDITION)72 600 Q(AL EXPRESSIONS)-.219 E F0 .255 +(Conditional e)108 612 R .255(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.756 E F0 -.2(bu)2.756 G .256(iltin commands to test).2 F +.77(\214le attrib)108 624 R .77 (utes and perform string and arithmetic comparisons.)-.2 F .77 -(Expressions are formed from the follo)5.77 F(wing)-.25 E 1.041 -(unary or binary primaries.)108 499.2 R 1.041(If an)6.041 F(y)-.15 E F2 -(\214le)3.541 E F0(ar)3.541 E 1.04 -(gument to one of the primaries is of the form)-.18 F F2(/de)3.54 E -(v/fd/n)-.15 E F0 3.54(,t)C 1.04(hen \214le)-3.54 F(descriptor)108 511.2 -Q F2(n)3.788 E F0 1.289(is check)3.788 F 3.789(ed. If)-.1 F(the)3.789 E -F2(\214le)3.789 E F0(ar)3.789 E 1.289 -(gument to one of the primaries is one of)-.18 F F2(/de)3.789 E(v/stdin) --.15 E F0(,)A F2(/de)3.789 E(v/stdout)-.15 E F0 3.789(,o)C(r)-3.789 E F2 -(/de)108 523.2 Q(v/stderr)-.15 E F0 2.5<2c8c>C +(Expressions are formed from the follo)5.77 F(wing)-.25 E 1.04 +(unary or binary primaries.)108 636 R 1.04(If an)6.04 F(y)-.15 E F1 +(\214le)3.54 E F0(ar)3.54 E 1.041 +(gument to one of the primaries is of the form)-.18 F F1(/de)3.541 E +(v/fd/n)-.15 E F0 3.541(,t)C 1.041(hen \214le)-3.541 F(descriptor)108 +648 Q F1(n)3.789 E F0 1.289(is check)3.789 F 3.789(ed. If)-.1 F(the) +3.789 E F1(\214le)3.789 E F0(ar)3.789 E 1.289 +(gument to one of the primaries is one of)-.18 F F1(/de)3.789 E(v/stdin) +-.15 E F0(,)A F1(/de)3.788 E(v/stdout)-.15 E F0 3.788(,o)C(r)-3.788 E F1 +(/de)108 660 Q(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 +(,i)-.65 G 2.5(sc)-2.5 G(heck)-2.5 E(ed.)-.1 E .721 (Unless otherwise speci\214ed, primaries that operate on \214les follo) -108 540 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 552 Q -(When used with)108 570 Q 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 the current locale.)-.15 E F1108 594 Q F2 -(\214le)2.5 E F0 -.35(Tr)10.58 G(ue if).35 E F2(\214le)2.5 E F0 -.15(ex) -2.5 G(ists.).15 E F1108 606 Q F2(\214le)2.5 E F0 -.35(Tr)10.02 G -(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 618 Q F2(\214le) -2.5 E F0 -.35(Tr)11.14 G(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 630 Q F2 -(\214le)2.5 E F0 -.35(Tr)10.02 G(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 642 Q F2 -(\214le)2.5 E F0 -.35(Tr)11.14 G(ue if).35 E F2(\214le)2.5 E F0 -.15(ex) -2.5 G(ists.).15 E F1108 654 Q F2(\214le)2.5 E F0 -.35(Tr)12.25 G -(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 666 Q F2(\214le)2.5 E F0 -.35(Tr)10.58 -G(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and is set-group-id.).15 E F1108 678 Q F2(\214le)2.5 E F0 --.35(Tr)10.02 G(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and is a symbolic link.).15 E F1108 690 Q F2(\214le)2.5 E F0 --.35(Tr)10.02 G(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 F1108 702 Q F2(\214le)2.5 E F0 -.35(Tr)10.02 G(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 714 Q F2(\214le)2.5 E F0 -.35(Tr)11.14 G(ue if).35 E F2 -(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is readable.).15 E(GNU Bash-4.1) -72 768 Q(2010 June 12)147.345 E(28)197.335 E 0 Cg EP +108 676.8 R 3.221(ws)-.25 G .722(ymbolic links and operate on the tar) +-3.221 F(get)-.18 E(of the link, rather than the link itself.)108 688.8 +Q(When used with)108 706.8 Q F2([[)2.5 E F0 2.5(,T)C(he)-2.5 E F2(<)2.5 +E F0(and)2.5 E F2(>)2.5 E F0(operators sort le)2.5 E +(xicographically using the current locale.)-.15 E(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(28)198.165 E 0 Cg EP %%Page: 29 29 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF108 84 Q/F2 10/Times-Italic@0 SF -(\214le)2.5 E F0 -.35(Tr)11.69 G(ue if).35 E F2(\214le)2.5 E F0 -.15(ex) -2.5 G(ists and has a size greater than zero.).15 E F1108 96 Q F2 -(fd)2.5 E F0 -.35(Tr)16.69 G(ue if \214le descriptor).35 E F2(fd)4.47 E -F0(is open and refers to a terminal.)3.27 E F1108 108 Q F2(\214le) -2.5 E F0 -.35(Tr)10.02 G(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and its set-user).15 E(-id bit is set.)-.2 E F1108 120 Q F2 -(\214le)2.5 E F0 -.35(Tr)8.36 G(ue if).35 E F2(\214le)2.5 E F0 -.15(ex) -2.5 G(ists and is writable.).15 E F1108 132 Q F2(\214le)2.5 E F0 --.35(Tr)10.58 G(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 144 Q F2 +-.35 E/F1 10/Times-Bold@0 SF108 84 Q/F2 10/Times-Italic@0 SF +(\214le)2.5 E F0 -.35(Tr)10.58 G(ue if).35 E F2(\214le)2.5 E F0 -.15(ex) +2.5 G(ists.).15 E F1108 96 Q F2(\214le)2.5 E F0 -.35(Tr)10.02 G +(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 108 Q F2(\214le) +2.5 E F0 -.35(Tr)11.14 G(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 120 Q F2 +(\214le)2.5 E F0 -.35(Tr)10.02 G(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 132 Q F2 +(\214le)2.5 E F0 -.35(Tr)11.14 G(ue if).35 E F2(\214le)2.5 E F0 -.15(ex) +2.5 G(ists.).15 E F1108 144 Q F2(\214le)2.5 E F0 -.35(Tr)12.25 G +(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 156 Q F2(\214le)2.5 E F0 -.35(Tr)10.58 +G(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G +(ists and is set-group-id.).15 E F1108 168 Q F2(\214le)2.5 E F0 +-.35(Tr)10.02 G(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G +(ists and is a symbolic link.).15 E F1108 180 Q F2(\214le)2.5 E F0 +-.35(Tr)10.02 G(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 F1108 192 Q F2(\214le)2.5 E F0 -.35(Tr)10.02 G(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 204 Q F2(\214le)2.5 E F0 -.35(Tr)11.14 G(ue if).35 E F2 +(\214le)2.5 E F0 -.15(ex)2.5 G(ists and is readable.).15 E F1108 +216 Q F2(\214le)2.5 E F0 -.35(Tr)11.69 G(ue if).35 E F2(\214le)2.5 E F0 +-.15(ex)2.5 G(ists and has a size greater than zero.).15 E F1108 +228 Q F2(fd)2.5 E F0 -.35(Tr)16.69 G(ue if \214le descriptor).35 E F2 +(fd)4.47 E F0(is open and refers to a terminal.)3.27 E F1108 240 Q +F2(\214le)2.5 E F0 -.35(Tr)10.02 G(ue if).35 E F2(\214le)2.5 E F0 -.15 +(ex)2.5 G(ists and its set-user).15 E(-id bit is set.)-.2 E F1108 +252 Q F2(\214le)2.5 E F0 -.35(Tr)8.36 G(ue if).35 E F2(\214le)2.5 E F0 +-.15(ex)2.5 G(ists and is writable.).15 E F1108 264 Q F2(\214le) +2.5 E F0 -.35(Tr)10.58 G(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 276 Q F2 (\214le)2.5 E F0 -.35(Tr)7.8 G(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 F1108 156 Q F2(\214le)2.5 E F0 -.35 +(ve g)-.25 H(roup id.).15 E F1108 288 Q F2(\214le)2.5 E F0 -.35 (Tr)8.91 G(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G -(ists and is a symbolic link.).15 E F1108 168 Q F2(\214le)2.5 E F0 +(ists and is a symbolic link.).15 E F1108 300 Q F2(\214le)2.5 E F0 -.35(Tr)8.36 G(ue if).35 E F2(\214le)2.5 E F0 -.15(ex)2.5 G (ists and has been modi\214ed since it w).15 E(as last read.)-.1 E F1 -108 180 Q F2(\214le)2.5 E F0 -.35(Tr)7.8 G(ue if).35 E F2(\214le) +108 312 Q F2(\214le)2.5 E F0 -.35(Tr)7.8 G(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 F1108 192 Q F2(\214le)2.5 +-.25 E .3 -.15(ve u)-.25 H(ser id.).15 E F1108 324 Q F2(\214le)2.5 E F0 -.35(Tr)10.02 G(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 204 Q F1(\255ef)2.5 E -F2(\214le2)2.5 E F0 -.35(Tr)144 216 S(ue if).35 E F2(\214le1)2.5 E F0 +(ists and is a sock).15 E(et.)-.1 E F2(\214le1)108 336 Q F1(\255ef)2.5 E +F2(\214le2)2.5 E F0 -.35(Tr)144 348 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 228 Q F02.5 E F1(nt)A -F2(\214le2)2.5 E F0 -.35(Tr)144 240 S .038(ue if).35 F F2(\214le1)2.538 +(vice and inode numbers.)-.25 E F2(\214le1)108 360 Q F02.5 E F1(nt)A +F2(\214le2)2.5 E F0 -.35(Tr)144 372 S .039(ue if).35 F F2(\214le1)2.539 E F0 .039(is ne)2.539 F .039 (wer \(according to modi\214cation date\) than)-.25 F F2(\214le2)2.539 E F0 2.539(,o)C 2.539(ri)-2.539 G(f)-2.539 E F2(\214le1)2.539 E F0 -.15 -(ex)2.539 G .039(ists and).15 F F2(\214le2)2.539 E F0 .039(does not.) -2.539 F F2(\214le1)108 252 Q F02.5 E F1(ot)A F2(\214le2)2.5 E F0 --.35(Tr)144 264 S(ue if).35 E F2(\214le1)2.5 E F0(is older than)2.5 E F2 +(ex)2.539 G .039(ists and).15 F F2(\214le2)2.539 E F0 .038(does not.) +2.538 F F2(\214le1)108 384 Q F02.5 E F1(ot)A F2(\214le2)2.5 E F0 +-.35(Tr)144 396 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 F1 -108 276 Q F2(optname)2.5 E F0 -.35(Tr)144 288 S .263 +108 408 Q F2(optname)2.5 E F0 -.35(Tr)144 420 S .262 (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 F12.762 E F0(option to the)144 300 Q F1(set)2.5 E F0 -.2(bu)2.5 -G(iltin belo).2 E -.65(w.)-.25 G F1108 312 Q F2(varname)2.5 E F0 --.35(Tr)144 324 S(ue if the shell v).35 E(ariable)-.25 E F2(varname)2.79 +F F12.763 E F0(option to the)144 432 Q F1(set)2.5 E F0 -.2(bu)2.5 +G(iltin belo).2 E -.65(w.)-.25 G F1108 444 Q F2(varname)2.5 E F0 +-.35(Tr)144 456 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 -336 Q F2(string)2.5 E F0 -.35(Tr)144 348 S(ue if the length of).35 E F2 -(string)2.5 E F0(is zero.)2.5 E F2(string)108 360 Q F1108 372 Q F2 -(string)2.5 E F0 -.35(Tr)144 384 S(ue if the length of).35 E F2(string) -2.84 E F0(is non-zero.)2.72 E F2(string1)108 400.8 Q F1(==)2.5 E F2 -(string2)2.5 E(string1)108 412.8 Q F1(=)2.5 E F2(string2)2.5 E F0 -.35 -(Tr)144 424.8 S(ue if the strings are equal.).35 E F1(=)5 E F0 +468 Q F2(string)2.5 E F0 -.35(Tr)144 480 S(ue if the length of).35 E F2 +(string)2.5 E F0(is zero.)2.5 E F2(string)108 492 Q F1108 504 Q F2 +(string)2.5 E F0 -.35(Tr)144 516 S(ue if the length of).35 E F2(string) +2.84 E F0(is non-zero.)2.72 E F2(string1)108 532.8 Q F1(==)2.5 E F2 +(string2)2.5 E(string1)108 544.8 Q F1(=)2.5 E F2(string2)2.5 E F0 -.35 +(Tr)144 556.8 S(ue if the strings are equal.).35 E F1(=)5 E F0 (should be used with the)2.5 E F1(test)2.5 E F0 -(command for POSIX conformance.)2.5 E F2(string1)108 441.6 Q F1(!=)2.5 E -F2(string2)2.5 E F0 -.35(Tr)144 453.6 S -(ue if the strings are not equal.).35 E F2(string1)108 470.4 Q F1(<)2.5 -E F2(string2)2.5 E F0 -.35(Tr)144 482.4 S(ue if).35 E F2(string1)2.5 E +(command for POSIX conformance.)2.5 E F2(string1)108 573.6 Q F1(!=)2.5 E +F2(string2)2.5 E F0 -.35(Tr)144 585.6 S +(ue if the strings are not equal.).35 E F2(string1)108 602.4 Q F1(<)2.5 +E F2(string2)2.5 E F0 -.35(Tr)144 614.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 499.2 Q F1(>)2.5 E F2(string2)2.5 E F0 -.35 -(Tr)144 511.2 S(ue if).35 E F2(string1)2.5 E F0(sorts after)2.5 E F2 +E(.)-.65 E F2(string1)108 631.2 Q F1(>)2.5 E F2(string2)2.5 E F0 -.35 +(Tr)144 643.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 -528 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 540 Q F0 .385(is one of)2.634 F F1(\255eq)2.885 E F0(,)A F1 +660 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 672 Q F0 .385(is one of)2.635 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 552 R -F2(ar)144 564 Q(g2)-.37 E F0 2.5(,r)C(especti)-2.5 E -.15(ve)-.25 G(ly) +(ar)2.884 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 684 R +F2(ar)144 696 Q(g2)-.37 E F0 2.5(,r)C(especti)-2.5 E -.15(ve)-.25 G(ly) .15 E(.)-.65 E F2(Ar)6.01 E(g1)-.37 E F0(and)2.5 E F2(ar)2.83 E(g2)-.37 E F0(may be positi)2.52 E .3 -.15(ve o)-.25 H 2.5(rn).15 G -2.25 -.15 -(eg a)-2.5 H(ti).15 E .3 -.15(ve i)-.25 H(nte).15 E(gers.)-.15 E/F4 -10.95/Times-Bold@0 SF(SIMPLE COMMAND EXP)72 580.8 Q(ANSION)-.81 E F0 -.613(When a simple command is e)108 592.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 604.8 Q 26(1. The)108 621.6 R -.1(wo)4.349 G 1.849 -(rds 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 633.6 Q -.15(ve)-.2 G 2.5(df).15 G -(or later processing.)-2.5 E 26(2. The)108 650.4 R -.1(wo)3.663 G 1.163 -(rds 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 -662.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 674.4 Q(guments.)-.18 E 26(3. Redirections)108 691.2 R -(are performed as described abo)2.5 E .3 -.15(ve u)-.15 H(nder).15 E F3 -(REDIRECTION)2.5 E/F5 9/Times-Roman@0 SF(.)A F0 26(4. The)108 708 R(te) -3.216 E .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 2.291 -(command substitution, arithmetic e)144 720 R 2.291 -(xpansion, and quote remo)-.15 F -.25(va)-.15 G 4.791(lb).25 G 2.291 -(efore being assigned to the)-4.791 F(GNU Bash-4.1)72 768 Q -(2010 June 12)147.345 E(29)197.335 E 0 Cg EP +(eg a)-2.5 H(ti).15 E .3 -.15(ve i)-.25 H(nte).15 E(gers.)-.15 E +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(29)198.165 E 0 Cg EP %%Page: 30 30 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E -.25(va)144 84 S(riable.).25 E .332 -(If no command name results, the v)108 100.8 R .332 +-.35 E/F1 10.95/Times-Bold@0 SF(SIMPLE COMMAND EXP)72 84 Q(ANSION)-.81 E +F0 .614(When a simple command is e)108 96 R -.15(xe)-.15 G .614 +(cuted, the shell performs the follo).15 F .613(wing e)-.25 F .613 +(xpansions, assignments, and redi-)-.15 F(rections, from left to right.) +108 108 Q 26(1. The)108 124.8 R -.1(wo)4.348 G 1.848 +(rds that the parser has mark).1 F 1.848(ed as v)-.1 F 1.849 +(ariable assignments \(those preceding the command)-.25 F +(name\) and redirections are sa)144 136.8 Q -.15(ve)-.2 G 2.5(df).15 G +(or later processing.)-2.5 E 26(2. The)108 153.6 R -.1(wo)3.664 G 1.164 +(rds that are not v).1 F 1.164 +(ariable assignments or redirections are e)-.25 F 3.663(xpanded. If)-.15 +F(an)3.663 E 3.663(yw)-.15 G 1.163(ords remain)-3.763 F .775(after e)144 +165.6 R .775(xpansion, the \214rst w)-.15 F .775(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 177.6 Q(guments.)-.18 E 26(3. Redirections)108 194.4 R +(are performed as described abo)2.5 E .3 -.15(ve u)-.15 H(nder).15 E/F2 +9/Times-Bold@0 SF(REDIRECTION)2.5 E/F3 9/Times-Roman@0 SF(.)A F0 26 +(4. The)108 211.2 R(te)3.217 E .717(xt after the)-.15 F/F4 10 +/Times-Bold@0 SF(=)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 .339 +(command substitution, arithmetic e)144 223.2 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 235.2 Q +.332(If no command name results, the v)108 252 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 112.8 S .757 +2.832(vironment. Otherwise,)-.4 F(the)2.832 E -.25(va)108 264 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 124.8 -R(an)3.176 E 3.176(yo)-.15 G 3.176(ft)-3.176 G .677 -(he assignments attempts to assign a v)-3.176 F .677 -(alue to a readonly v)-.25 F .677(ariable, an error occurs, and)-.25 F -(the command e)108 136.8 Q(xits with a non-zero status.)-.15 E .15 -(If no command name results, redirections are performed, b)108 153.6 R -.149(ut do not af)-.2 F .149(fect the current shell en)-.25 F 2.649 -(vironment. A)-.4 F(redirection error causes the command to e)108 165.6 +(fect the current shell en)-.25 F(vi-)-.4 E 3.177(ronment. If)108 276 R +(an)3.177 E 3.177(yo)-.15 G 3.177(ft)-3.177 G .677 +(he assignments attempts to assign a v)-3.177 F .677 +(alue to a readonly v)-.25 F .676(ariable, an error occurs, and)-.25 F +(the command e)108 288 Q(xits with a non-zero status.)-.15 E .149 +(If no command name results, redirections are performed, b)108 304.8 R +.149(ut do not af)-.2 F .15(fect the current shell en)-.25 F 2.65 +(vironment. A)-.4 F(redirection error causes the command to e)108 316.8 Q(xit with a non-zero status.)-.15 E 1.064 -(If there is a command name left after e)108 182.4 R 1.064(xpansion, e) +(If there is a command name left after e)108 333.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 -194.4 R 2.569(xits. If)-.15 F .069(one of the e)2.569 F .069 -(xpansions contained a command substitution, the e)-.15 F .068 -(xit status of the command)-.15 F .466(is the e)108 206.4 R .466 -(xit status of the last command substitution performed.)-.15 F .467 -(If there were no command substitutions, the)5.466 F(command e)108 218.4 -Q(xits with a status of zero.)-.15 E/F1 10.95/Times-Bold@0 SF -(COMMAND EXECUTION)72 235.2 Q F0 .547 -(After a command has been split into w)108 247.2 R .546 +4.864 -.65(w. O)-.25 H 1.064(therwise, the).65 F .068(command e)108 +345.6 R 2.568(xits. If)-.15 F .069(one of the e)2.568 F .069 +(xpansions contained a command substitution, the e)-.15 F .069 +(xit status of the command)-.15 F .467(is the e)108 357.6 R .466 +(xit status of the last command substitution performed.)-.15 F .466 +(If there were no command substitutions, the)5.466 F(command e)108 369.6 +Q(xits with a status of zero.)-.15 E F1(COMMAND EXECUTION)72 386.4 Q F0 +.546(After a command has been split into w)108 398.4 R .547 (ords, if it results in a simple command and an optional list of ar)-.1 -F(gu-)-.18 E(ments, the follo)108 259.2 Q(wing actions are tak)-.25 E +F(gu-)-.18 E(ments, the follo)108 410.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 276 R .379(If there e)5.379 F .379 +mpts to locate it.)108 427.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 288 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 300 Q 2.5 +108 439.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(FUNCTIONS) +2.746 E F3(.)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 451.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 316.8 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 328.8 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 340.8 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 -352.8 R F2 -.666(PA)3.22 G(TH)-.189 E F0 .719 -(is performed only if the command is not found in the hash table.)2.97 F -.719(If the)5.719 F .956(search is unsuccessful, the shell searches for\ - a de\214ned shell function named)108 364.8 R F4(command_not_f)3.456 E -(ound_han-)-.25 E(dle)108 376.8 Q F0 5.278(.I)C 2.778(ft)-5.278 G .278 -(hat function e)-2.778 F .278(xists, it is in)-.15 F -.2(vo)-.4 G -.1 -(ke).2 G 2.778(dw).1 G .277 -(ith the original command and the original command')-2.778 F 2.777(sa) --.55 G -.18(rg)-2.777 G(uments).18 E .775(as its ar)108 388.8 R .775 +(uiltin is in)-.2 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E .31 +(If the name is neither a shell function nor a b)108 468 R .309 +(uiltin, and contains no slashes,)-.2 F F4(bash)2.809 E F0 .309 +(searches each element of)2.809 F(the)108 480 Q F2 -.666(PA)3.162 G(TH) +-.189 E F0 .662(for a directory containing an e)2.912 F -.15(xe)-.15 G +.662(cutable \214le by that name.).15 F F4(Bash)5.662 E F0 .663 +(uses a hash table to remember)3.162 F 1.915(the full pathnames of e)108 +492 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.914(TIN COMMANDS) +-.828 F F0(belo)4.164 E 4.414(w\). A)-.25 F(full)4.414 E .719 +(search of the directories in)108 504 R F2 -.666(PA)3.219 G(TH)-.189 E +F0 .72(is performed only if the command is not found in the hash table.) +2.969 F .72(If the)5.72 F .956(search is unsuccessful, the shell search\ +es for a de\214ned shell function named)108 516 R F4(command_not_f)3.455 +E(ound_han-)-.25 E(dle)108 528 Q F0 5.277(.I)C 2.777(ft)-5.277 G .277 +(hat function e)-2.777 F .277(xists, it is in)-.15 F -.2(vo)-.4 G -.1 +(ke).2 G 2.777(dw).1 G .278 +(ith the original command and the original command')-2.777 F 2.778(sa) +-.55 G -.18(rg)-2.778 G(uments).18 E .776(as its ar)108 540 R .776 (guments, and the function')-.18 F 3.275(se)-.55 G .775 (xit status becomes the e)-3.425 F .775(xit status of the shell.)-.15 F -.776(If that function is not)5.776 F -(de\214ned, the shell prints an error message and returns an e)108 400.8 -Q(xit status of 127.)-.15 E 1.089(If the search is successful, or if th\ -e command name contains one or more slashes, the shell e)108 417.6 R --.15(xe)-.15 G 1.089(cutes the).15 F .197(named program in a separate e) -108 429.6 R -.15(xe)-.15 G .197(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 .198 -(n, and the remain-).15 F(ing ar)108 441.6 Q +.775(If that function is not)5.775 F +(de\214ned, the shell prints an error message and returns an e)108 552 Q +(xit status of 127.)-.15 E 1.089(If the search is successful, or if the\ + command name contains one or more slashes, the shell e)108 568.8 R -.15 +(xe)-.15 G 1.09(cutes the).15 F .198(named program in a separate e)108 +580.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 592.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 458.4 R +(ve)-.25 G(n, if an).15 E -.65(y.)-.15 G 1.809(If this e)108 609.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 .677(assumed to be a)108 470.4 R/F5 10 -/Times-Italic@0 SF .678(shell script)3.177 F F0 3.178(,a\214)C .678 +4.309(ti)-4.309 G(s)-4.309 E .678(assumed to be a)108 621.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 .678(wned to e)-.15 F -.15(xe)-.15 G .678 -(cute it.).15 F(This)5.678 E .33 -(subshell reinitializes itself, so that the ef)108 482.4 R .33 -(fect is as if a ne)-.25 F 2.829(ws)-.25 G .329(hell had been in)-2.829 -F -.2(vo)-.4 G -.1(ke).2 G 2.829(dt).1 G 2.829(oh)-2.829 G .329 -(andle the script, with)-2.829 F 1.219(the e)108 494.4 R 1.219 +(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 633.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 645.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 506.4 S(IL).09 E(TIN COMMANDS)-.828 E F3(\))A -F0(are retained by the child.)2.25 E .348(If the program is a \214le be) -108 523.2 R .348(ginning with)-.15 F F4(#!)2.848 E F0 2.848(,t)C .347(h\ +(SHELL)3.719 E -.09(BU)108 657.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 674.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.848 F 3.178(gram. The)108 535.2 R .678(shell e)3.178 F -.15(xe)-.15 G +-2.847 F 3.178(gram. The)108 686.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.193(format themselv) -108 547.2 R 3.693(es. The)-.15 F(ar)3.693 E 1.193 -(guments to the interpreter consist of a single optional ar)-.18 F 1.192 -(gument follo)-.18 F 1.192(wing the)-.25 F 1.13 -(interpreter name on the \214rst line of the program, follo)108 559.2 R -1.131(wed by the name of the program, follo)-.25 F 1.131(wed by the)-.25 -F(command ar)108 571.2 Q(guments, if an)-.18 E -.65(y.)-.15 G F1 -(COMMAND EXECUTION ENVIR)72 588 Q(ONMENT)-.329 E F0(The shell has an)108 -600 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 32.5<836f>108 616.8 S -1.406(pen \214les inherited by the shell at in)-32.5 F -.2(vo)-.4 G -1.405(cation, as modi\214ed by redirections supplied to the).2 F F4 -(exec)3.905 E F0 -.2(bu)144 628.8 S(iltin).2 E 32.5<8374>108 645.6 S -(he current w)-32.5 E(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 32.5 -<8374>108 662.4 S(he \214le creation mode mask as set by)-32.5 E F4 -(umask)2.5 E F0(or inherited from the shell')2.5 E 2.5(sp)-.55 G(arent) --2.5 E 32.5<8363>108 679.2 S(urrent traps set by)-32.5 E F4(trap)2.5 E -F0 32.5<8373>108 696 S .256(hell parameters that are set by v)-32.5 F -.256(ariable assignment or with)-.25 F F4(set)2.756 E F0 .257 -(or inherited from the shell')2.756 F 2.757(sp)-.55 G(arent)-2.757 E -(in the en)144 708 Q(vironment)-.4 E(GNU Bash-4.1)72 768 Q(2010 June 12) -147.345 E(30)197.335 E 0 Cg EP + handle this e).15 F -.15(xe)-.15 G(cutable).15 E 1.192(format themselv) +108 698.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 710.4 R +1.13(wed by the name of the program, follo)-.25 F 1.13(wed by the)-.25 F +(command ar)108 722.4 Q(guments, if an)-.18 E -.65(y.)-.15 G +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(30)198.165 E 0 Cg EP %%Page: 31 31 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E 32.5<8373>108 84 S(hell functions de\214ned during e)-32.5 E -.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 32.5<836f>108 100.8 S +-.35 E/F1 10.95/Times-Bold@0 SF(COMMAND EXECUTION ENVIR)72 84 Q(ONMENT) +-.329 E F0(The shell has an)108 96 Q/F2 10/Times-Italic@0 SF -.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 32.5<836f>108 112.8 S +1.405(pen \214les inherited by the shell at in)-32.5 F -.2(vo)-.4 G +1.406(cation, as modi\214ed by redirections supplied to the).2 F/F3 10 +/Times-Bold@0 SF(exec)3.906 E F0 -.2(bu)144 124.8 S(iltin).2 E 32.5 +<8374>108 141.6 S(he current w)-32.5 E(orking directory as set by)-.1 E +F3(cd)2.5 E F0(,)A F3(pushd)2.5 E F0 2.5(,o)C(r)-2.5 E F3(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 32.5<8374>108 158.4 S +(he \214le creation mode mask as set by)-32.5 E F3(umask)2.5 E F0 +(or inherited from the shell')2.5 E 2.5(sp)-.55 G(arent)-2.5 E 32.5 +<8363>108 175.2 S(urrent traps set by)-32.5 E F3(trap)2.5 E F0 32.5 +<8373>108 192 S .257(hell parameters that are set by v)-32.5 F .256 +(ariable assignment or with)-.25 F F3(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 204 Q(vironment)-.4 E 32.5<8373>108 220.8 S +(hell functions de\214ned during e)-32.5 E -.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 32.5<836f>108 237.6 S (ptions enabled at in)-32.5 E -.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 32.5<836f>108 117.6 S(ptions enabled by) --32.5 E F1(shopt)2.5 E F0 32.5<8373>108 134.4 S -(hell aliases de\214ned with)-32.5 E F1(alias)2.5 E F0 32.5<8376>108 -151.2 S(arious process IDs, including those of background jobs, the v) --32.75 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 .427 -(When a simple command other than a b)108 168 R .426 -(uiltin or shell function is to be e)-.2 F -.15(xe)-.15 G .426 -(cuted, it is in).15 F -.2(vo)-.4 G -.1(ke).2 G 2.926(di).1 G 2.926(nas) --2.926 G(eparate)-2.926 E -.15(exe)108 180 S .133(cution en).15 F .133 +(ault or with command-line ar)-.1 E(guments\) or by)-.18 E F3(set)2.5 E +F0 32.5<836f>108 254.4 S(ptions enabled by)-32.5 E F3(shopt)2.5 E F0 +32.5<8373>108 271.2 S(hell aliases de\214ned with)-32.5 E F3(alias)2.5 E +F0 32.5<8376>108 288 S +(arious process IDs, including those of background jobs, the v)-32.75 E +(alue of)-.25 E F3($$)2.5 E F0 2.5(,a)C(nd the v)-2.5 E(alue of)-.25 E +/F4 9/Times-Bold@0 SF(PPID)2.5 E F0 .426 +(When a simple command other than a b)108 304.8 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 316.8 S .134(cution en).15 F .134 (vironment that consists of the follo)-.4 F 2.634(wing. Unless)-.25 F -.134(otherwise noted, the v)2.634 F .134(alues are inherited from)-.25 F -(the shell.)108 192 Q 32.5<8374>108 208.8 S 1.056(he shell')-32.5 F -3.556(so)-.55 G 1.056(pen \214les, plus an)-3.556 F 3.556(ym)-.15 G +.133(otherwise noted, the v)2.634 F .133(alues are inherited from)-.25 F +(the shell.)108 328.8 Q 32.5<8374>108 345.6 S 1.055(he shell')-32.5 F +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 220.8 Q 32.5<8374>108 237.6 S(he current w)-32.5 E -(orking directory)-.1 E 32.5<8374>108 254.4 S -(he \214le creation mode mask)-32.5 E 32.5<8373>108 271.2 S .856(hell v) +-3.556 F(mand)144 357.6 Q 32.5<8374>108 374.4 S(he current w)-32.5 E +(orking directory)-.1 E 32.5<8374>108 391.2 S +(he \214le creation mode mask)-32.5 E 32.5<8373>108 408 S .857(hell v) -32.5 F .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 283.2 Q(vironment) --.4 E 32.5<8374>108 300 S .307 -(raps caught by the shell are reset to the v)-32.5 F .306 -(alues inherited from the shell')-.25 F 2.806(sp)-.55 G .306 -(arent, and traps ignored)-2.806 F(by the shell are ignored)144 312 Q -2.5(Ac)108 328.8 S(ommand in)-2.5 E -.2(vo)-.4 G -.1(ke).2 G 2.5(di).1 G +(xported for the command,)-.15 F(passed in the en)144 420 Q(vironment) +-.4 E 32.5<8374>108 436.8 S .306 +(raps caught by the shell are reset to the v)-32.5 F .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 448.8 Q +2.5(Ac)108 465.6 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 345.6 R -.2(vo)-.4 G -.1 -(ke).2 G 3.078(di).1 G(n)-3.078 E 2.745(as)108 357.6 S .245(ubshell en) --2.745 F .245(vironment that is a duplicate of the shell en)-.4 F .244 -(vironment, e)-.4 F .244(xcept that traps caught by the shell are)-.15 F -.358(reset to the v)108 369.6 R .358 +ntheses, and asynchronous commands are in)108 482.4 R -.2(vo)-.4 G -.1 +(ke).2 G 3.077(di).1 G(n)-3.077 E 2.744(as)108 494.4 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 506.4 R .358 (alues that the shell inherited from its parent at in)-.25 F -.2(vo)-.4 -G 2.858(cation. Builtin).2 F .359(commands that are in)2.859 F -.2(vo) --.4 G -.1(ke).2 G(d).1 E .857(as part of a pipeline are also e)108 381.6 -R -.15(xe)-.15 G .856(cuted in a subshell en).15 F 3.356 -(vironment. Changes)-.4 F .856(made to the subshell en)3.356 F(viron-) --.4 E(ment cannot af)108 393.6 Q(fect the shell')-.25 E 2.5(se)-.55 G --.15(xe)-2.65 G(cution en).15 E(vironment.)-.4 E 1.376(Subshells spa)108 -410.4 R 1.376(wned to e)-.15 F -.15(xe)-.15 G 1.377 +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 518.4 +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 530.4 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 +547.2 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.877 E F0 1.377(option from the parent)3.877 F 2.5(shell. When) -108 422.4 R(not in posix mode, Bash clears the)2.5 E F12.5 E F0 -(option in such subshells.)2.5 E .405(If a command is follo)108 439.2 R -.405(wed by a)-.25 F F1(&)2.905 E F0 .404(and job control is not acti) -2.905 F -.15(ve)-.25 G 2.904(,t).15 G .404(he def)-2.904 F .404 -(ault standard input for the command)-.1 F .197(is the empty \214le)108 -451.2 R/F3 10/Times-Italic@0 SF(/de)2.697 E(v/null)-.15 E F0 5.197(.O)C -.197(therwise, the in)-5.197 F -.2(vo)-.4 G -.1(ke).2 G 2.697(dc).1 G -.198(ommand inherits the \214le descriptors of the calling shell)-2.697 -F(as modi\214ed by redirections.)108 463.2 Q/F4 10.95/Times-Bold@0 SF -(ENVIR)72 480 Q(ONMENT)-.329 E F0 2.354(When a program is in)108 492 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.353(his is a list of)-7.353 F F3(name)108 504 Q F0 -A 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.485(The shell pro)108 520.8 R 1.485(vides se)-.15 -F -.15(ve)-.25 G 1.485(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.486 -(cation, the shell scans its o).2 F(wn)-.25 E(en)108 532.8 Q .144(viron\ +F33.876 E F0 1.376(option from the parent)3.876 F 2.5(shell. When) +108 559.2 R(not in posix mode, Bash clears the)2.5 E F32.5 E F0 +(option in such subshells.)2.5 E .404(If a command is follo)108 576 R +.404(wed by a)-.25 F F3(&)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 +588 R F2(/de)2.698 E(v/null)-.15 E F0 5.198(.O)C .198(therwise, the in) +-5.198 F -.2(vo)-.4 G -.1(ke).2 G 2.698(dc).1 G .197 +(ommand inherits the \214le descriptors of the calling shell)-2.698 F +(as modi\214ed by redirections.)108 600 Q F1(ENVIR)72 616.8 Q(ONMENT) +-.329 E F0 2.353(When a program is in)108 628.8 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 F2(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 F2(name)108 640.8 Q +F0A F2(value)A F0(pairs, of the form)2.5 E F2(name)2.5 E F0(=)A F2 +(value)A F0(.).18 E 1.486(The shell pro)108 657.6 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 669.6 Q .144(viron\ ment and creates a parameter for each name found, automatically marking\ - it for)-.4 F F3 -.2(ex)2.643 G(port).2 E F0 .143(to child pro-)3.323 F -2.703(cesses. Ex)108 544.8 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.704 -(wp)-.25 G(aram-)-2.704 E 1.153 -(eters and functions to be added to and deleted from the en)108 556.8 R -3.653(vironment. If)-.4 F 1.153(the v)3.653 F 1.153 -(alue of a parameter in the)-.25 F(en)108 568.8 Q .64 + it for)-.4 F F2 -.2(ex)2.644 G(port).2 E F0 .144(to child pro-)3.324 F +2.704(cesses. Ex)108 681.6 R .203(ecuted commands inherit the en)-.15 F +2.703(vironment. The)-.4 F F3(export)2.703 E F0(and)2.703 E F3(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 693.6 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 705.6 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 580.8 +-.4 F .64(The en)5.64 F(viron-)-.4 E .58(ment inherited by an)108 717.6 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 -.3(modi\214ed in the shell, less an)108 592.8 R 2.8(yp)-.15 G .3 -(airs remo)-2.8 F -.15(ve)-.15 G 2.8(db).15 G 2.801(yt)-2.8 G(he)-2.801 -E F1(unset)2.801 E F0 .301(command, plus an)2.801 F 2.801(ya)-.15 G .301 -(dditions via the)-2.801 F F1(export)2.801 E F0(and)2.801 E F1(declar) -108 604.8 Q 2.5<65ad>-.18 G(x)-2.5 E F0(commands.)2.5 E .563(The en)108 -621.6 R .563(vironment for an)-.4 F(y)-.15 E F3 .563(simple command) -3.403 F F0 .562 -(or function may be augmented temporarily by pre\214xing it with)3.833 F -.202(parameter assignments, as described abo)108 633.6 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 .203(fect only the) --.25 F(en)108 645.6 Q(vironment seen by that command.)-.4 E .81(If the) -108 662.4 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 674.4 Q -(vironment for a command, not just those that precede the command name.) --.4 E(When)108 691.2 Q F1(bash)3.396 E F0(in)3.396 E -.2(vo)-.4 G -.1 -(ke).2 G 3.396(sa).1 G 3.397(ne)-3.396 G .897(xternal command, the v) --3.547 F(ariable)-.25 E F1(_)3.397 E F0 .897 -(is set to the full \214le name of the command and)3.397 F -(passed to that command in its en)108 703.2 Q(vironment.)-.4 E -(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(31)197.335 E 0 Cg EP +.301(modi\214ed in the shell, less an)108 729.6 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 F3(unset)2.801 E F0 .3(command, plus an)2.8 F 2.8(ya)-.15 G .3 +(dditions via the)-2.8 F F3(export)2.8 E F0(and)2.8 E(GNU Bash-4.2)72 +768 Q(2010 July 21)148.175 E(31)198.165 E 0 Cg EP %%Page: 32 32 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10.95/Times-Bold@0 SF(EXIT ST)72 84 Q -1.04(AT)-.986 G(US)1.04 -E F0 .151(The e)108 96 R .151(xit status of an e)-.15 F -.15(xe)-.15 G -.151(cuted command is the v).15 F .15(alue returned by the)-.25 F/F2 10 -/Times-Italic@0 SF(waitpid)2.65 E F0 .15(system call or equi)2.65 F -.25 -(va)-.25 G .15(lent func-).25 F 2.847(tion. Exit)108 108 R .347 -(statuses f)2.847 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 .348(alues abo)-.25 F .648 -.15(ve 1)-.15 H(25).15 E(specially)108 120 -Q 5.674(.E)-.65 G .674(xit statuses from shell b)-5.674 F .673 +-.35 E/F1 10/Times-Bold@0 SF(declar)108 84 Q 2.5<65ad>-.18 G(x)-2.5 E F0 +(commands.)2.5 E .562(The en)108 100.8 R .562(vironment for an)-.4 F(y) +-.15 E/F2 10/Times-Italic@0 SF .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 112.8 R .502 -.15(ve i) +-.15 H(n).15 E/F3 9/Times-Bold@0 SF -.666(PA)2.702 G(RAMETERS).666 E/F4 +9/Times-Roman@0 SF(.)A F0 .202(These assignment statements af)4.702 F +.202(fect only the)-.25 F(en)108 124.8 Q +(vironment seen by that command.)-.4 E .81(If the)108 141.6 R F1 +3.31 E F0 .81(option is set \(see the)3.31 F F1(set)3.31 E F0 -.2(bu) +3.31 G .81(iltin command belo).2 F .81(w\), then)-.25 F F2(all)3.64 E F0 +.81(parameter assignments are placed in)3.82 F(the en)108 153.6 Q +(vironment for a command, not just those that precede the command name.) +-.4 E(When)108 170.4 Q F1(bash)3.397 E F0(in)3.397 E -.2(vo)-.4 G -.1 +(ke).2 G 3.397(sa).1 G 3.397(ne)-3.397 G .897(xternal command, the v) +-3.547 F(ariable)-.25 E F1(_)3.397 E F0 .897 +(is set to the full \214le name of the command and)3.397 F +(passed to that command in its en)108 182.4 Q(vironment.)-.4 E/F5 10.95 +/Times-Bold@0 SF(EXIT ST)72 199.2 Q -1.04(AT)-.986 G(US)1.04 E F0 .15 +(The e)108 211.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 F2 +(waitpid)2.651 E F0 .151(system call or equi)2.651 F -.25(va)-.25 G .151 +(lent func-).25 F 2.848(tion. Exit)108 223.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 235.2 Q 5.673(.E)-.65 G +.673(xit statuses from shell b)-5.673 F .673 (uiltins and compound commands are also limited to this range. Under)-.2 -F(certain circumstances, the shell will use special v)108 132 Q +F(certain circumstances, the shell will use special v)108 247.2 Q (alues to indicate speci\214c f)-.25 E(ailure modes.)-.1 E -.15(Fo)108 -148.8 S 3.372(rt).15 G .872(he shell')-3.372 F 3.372(sp)-.55 G .873 -(urposes, a command which e)-3.372 F .873(xits with a zero e)-.15 F .873 -(xit status has succeeded.)-.15 F .873(An e)5.873 F .873(xit status of) --.15 F .049(zero indicates success.)108 160.8 R 2.549(An)5.049 G .049 -(on-zero e)-2.549 F .049(xit status indicates f)-.15 F 2.549 -(ailure. When)-.1 F 2.549(ac)2.549 G .048(ommand terminates on a f) --2.549 F .048(atal sig-)-.1 F(nal)108 172.8 Q F2(N)2.5 E F0(,)A/F3 10 -/Times-Bold@0 SF(bash)2.5 E F0(uses the v)2.5 E(alue of 128+)-.25 E F2 -(N)A F0(as the e)2.5 E(xit status.)-.15 E .404 -(If a command is not found, the child process created to e)108 189.6 R --.15(xe)-.15 G .404(cute it returns a status of 127.).15 F .405 -(If a command is)5.405 F(found b)108 201.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 218.4 +264 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 276 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 288 Q F2(N)2.5 E F0(,)A F1(bash) +2.5 E F0(uses the v)2.5 E(alue of 128+)-.25 E F2(N)A F0(as the e)2.5 E +(xit status.)-.15 E .405 +(If a command is not found, the child process created to e)108 304.8 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 316.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 333.6 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 .081(Shell b)108 235.2 R .081 +-.15 E .08(Shell b)108 350.4 R .08 (uiltin commands return a status of 0 \()-.2 F F2(true)A F0 2.581(\)i)C -2.581(fs)-2.581 G .08(uccessful, and non-zero \()-2.581 F F2(false)A F0 -2.58(\)i)C 2.58(fa)-2.58 G 2.58(ne)-2.58 G .08(rror occurs while)-2.58 F -(the)108 247.2 Q 2.5(ye)-.15 G -.15(xe)-2.65 G 2.5(cute. All).15 F -.2 -(bu)2.5 G(iltins return an e).2 E -(xit status of 2 to indicate incorrect usage.)-.15 E F3(Bash)108 264 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 276 Q -(xits with a non-zero v)-.15 E 2.5(alue. See)-.25 F(also the)2.5 E F3 -(exit)2.5 E F0 -.2(bu)2.5 G(iltin command belo).2 E -.65(w.)-.25 G F1 -(SIGN)72 292.8 Q(ALS)-.219 E F0(When)108 304.8 Q F3(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 -F3 .682(kill 0)3.182 F F0 .682(does not kill an)3.182 F(interacti)108 -316.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 F3(wait)2.958 E F0 --.2(bu)2.958 G .458(iltin is interruptible\).).2 F .458(In all cases,) -5.458 F F3(bash)108 328.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 F3 -(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 345.6 -Q 1.065(uiltin commands run by)-.2 F F3(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 -357.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 369.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 381.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 398.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 410.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 422.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 434.4 R F3(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 446.4 Q F0(using)2.25 E F3(diso)2.5 E(wn \255h)-.1 E F0(.)A -.166(If the)108 463.2 R F3(huponexit)2.666 E F0 .166 -(shell option has been set with)2.666 F F3(shopt)2.666 E F0(,)A F3(bash) -2.666 E F0 .166(sends a)2.666 F F4(SIGHUP)2.666 E F0 .166 +2.581(fs)-2.581 G .081(uccessful, and non-zero \()-2.581 F F2(false)A F0 +2.581(\)i)C 2.581(fa)-2.581 G 2.581(ne)-2.581 G .081(rror occurs while) +-2.581 F(the)108 362.4 Q 2.5(ye)-.15 G -.15(xe)-2.65 G 2.5(cute. All).15 +F -.2(bu)2.5 G(iltins return an e).2 E +(xit status of 2 to indicate incorrect usage.)-.15 E F1(Bash)108 379.2 Q +F0 .202(itself returns the e)2.702 F .202 +(xit status of the last command e)-.15 F -.15(xe)-.15 G .201 +(cuted, unless a syntax error occurs, in which case).15 F(it e)108 391.2 +Q(xits with a non-zero v)-.15 E 2.5(alue. See)-.25 F(also the)2.5 E F1 +(exit)2.5 E F0 -.2(bu)2.5 G(iltin command belo).2 E -.65(w.)-.25 G F5 +(SIGN)72 408 Q(ALS)-.219 E F0(When)108 420 Q F1(bash)3.182 E F0 .682 +(is interacti)3.182 F -.15(ve)-.25 G 3.182(,i).15 G 3.182(nt)-3.182 G +.682(he absence of an)-3.182 F 3.183(yt)-.15 G .683(raps, it ignores) +-3.183 F F3(SIGTERM)3.183 E F0 .683(\(so that)2.933 F F1 .683(kill 0) +3.183 F F0 .683(does not kill an)3.183 F(interacti)108 432 Q .758 -.15 +(ve s)-.25 H .458(hell\), and).15 F F3(SIGINT)2.958 E F0 .458 +(is caught and handled \(so that the)2.708 F F1(wait)2.958 E F0 -.2(bu) +2.958 G .457(iltin is interruptible\).).2 F .457(In all cases,)5.457 F +F1(bash)108 444 Q F0(ignores)2.5 E F3(SIGQ)2.5 E(UIT)-.09 E F4(.)A F0 +(If job control is in ef)4.5 E(fect,)-.25 E F1(bash)2.5 E F0(ignores)2.5 +E F3(SIGTTIN)2.5 E F4(,)A F3(SIGTT)2.25 E(OU)-.162 E F4(,)A F0(and)2.25 +E F3(SIGTSTP)2.5 E F4(.)A F0(Non-b)108 460.8 Q 1.064 +(uiltin commands run by)-.2 F F1(bash)3.564 E F0(ha)3.564 E 1.365 -.15 +(ve s)-.2 H 1.065(ignal handlers set to the v).15 F 1.065 +(alues inherited by the shell from its)-.25 F 3.248(parent. When)108 +472.8 R .748(job control is not in ef)3.248 F .747 +(fect, asynchronous commands ignore)-.25 F F3(SIGINT)3.247 E F0(and) +2.997 E F3(SIGQ)3.247 E(UIT)-.09 E F0 .747(in addi-)2.997 F .652 +(tion to these inherited handlers.)108 484.8 R .653 +(Commands run as a result of command substitution ignore the k)5.652 F +-.15(ey)-.1 G(board-).15 E(generated job control signals)108 496.8 Q F3 +(SIGTTIN)2.5 E F4(,)A F3(SIGTT)2.25 E(OU)-.162 E F4(,)A F0(and)2.25 E F3 +(SIGTSTP)2.5 E F4(.)A F0 2.046(The shell e)108 513.6 R 2.046 +(xits by def)-.15 F 2.045(ault upon receipt of a)-.1 F F3(SIGHUP)4.545 E +F4(.)A F0 2.045(Before e)6.545 F 2.045(xiting, an interacti)-.15 F 2.345 +-.15(ve s)-.25 H 2.045(hell resends the).15 F F3(SIGHUP)108 525.6 Q F0 +1.004(to all jobs, running or stopped.)3.254 F 1.004 +(Stopped jobs are sent)6.004 F F3(SIGCONT)3.505 E F0 1.005 +(to ensure that the)3.255 F 3.505(yr)-.15 G(ecei)-3.505 E 1.305 -.15 +(ve t)-.25 H(he).15 E F3(SIGHUP)108 537.6 Q F4(.)A F0 2.53 -.8(To p)5.43 +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.429(df).15 G +.929(rom the)-3.429 F 1.356(jobs table with the)108 549.6 R F1(diso) +3.856 E(wn)-.1 E F0 -.2(bu)3.856 G 1.356(iltin \(see).2 F F3 1.356 +(SHELL B)3.856 F(UIL)-.09 E 1.356(TIN COMMANDS)-.828 F F0(belo)3.607 E +1.357(w\) or mark)-.25 F 1.357(ed to not recei)-.1 F -.15(ve)-.25 G F3 +(SIGHUP)108 561.6 Q F0(using)2.25 E F1(diso)2.5 E(wn \255h)-.1 E F0(.)A +.166(If the)108 578.4 R F1(huponexit)2.666 E F0 .166 +(shell option has been set with)2.666 F F1(shopt)2.666 E F0(,)A F1(bash) +2.666 E F0 .166(sends a)2.666 F F3(SIGHUP)2.666 E F0 .166 (to all jobs when an interacti)2.416 F -.15(ve)-.25 G(login shell e)108 -475.2 Q(xits.)-.15 E(If)108 492 Q F3(bash)3.047 E F0 .547(is w)3.047 F +590.4 Q(xits.)-.15 E(If)108 607.2 Q F1(bash)3.046 E F0 .546(is w)3.046 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 504 R -.15(xe)-.15 G .662 -(cuted until the command completes.).15 F(When)5.663 E F3(bash)3.163 E -F0 .663(is w)3.163 F .663(aiting for an asynchronous command)-.1 F .99 -(via the)108 516 R F3(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 F3 +-3.046 F .663(will not be e)108 619.2 R -.15(xe)-.15 G .663 +(cuted until the command completes.).15 F(When)5.663 E F1(bash)3.163 E +F0 .662(is w)3.163 F .662(aiting for an asynchronous command)-.1 F .99 +(via the)108 631.2 R F1(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 F1 (wait)3.49 E F0 -.2(bu)3.49 G .99(iltin to).2 F -(return immediately with an e)108 528 Q +(return immediately with an e)108 643.2 Q (xit status greater than 128, immediately after which the trap is e)-.15 -E -.15(xe)-.15 G(cuted.).15 E F1(JOB CONTR)72 544.8 Q(OL)-.329 E F2 -.25 -(Jo)108 556.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 F2(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 568.8 Q -F2 -.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 +E -.15(xe)-.15 G(cuted.).15 E F5(JOB CONTR)72 660 Q(OL)-.329 E F2 -.25 +(Jo)108 672 S 4.568(bc).25 G(ontr)-4.568 E(ol)-.45 E F0 2.068 +(refers to the ability to selecti)5.078 F -.15(ve)-.25 G 2.067 +(ly stop \().15 F F2(suspend)A F0 4.567(\)t)C 2.067(he e)-4.567 F -.15 +(xe)-.15 G 2.067(cution of processes and continue).15 F(\()108 684 Q F2 +-.37(re)C(sume).37 E F0 3.201(\)t)C .701(heir e)-3.201 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 580.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 -F3(bash)2.5 E F0(.)A .784(The shell associates a)108 597.6 R F2(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 609.6 R F3 -(jobs)2.841 E F0 2.841(command. When)2.841 F F3(bash)2.841 E F0 .341 -(starts a job asynchronously \(in the)2.841 F F2(bac)2.84 E(kgr)-.2 E -(ound)-.45 E F0 .34(\), it prints a line).77 F(that looks lik)108 621.6 -Q(e:)-.1 E([1] 25647)144 638.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 655.2 R .733(with this job is 25647.)108 667.2 R .732 -(All of the processes in a single pipeline are members of the same job) -5.733 F(.)-.4 E F3(Bash)5.732 E F0(uses)3.232 E(the)108 679.2 Q F2(job) -4.24 E F0(abstraction as the basis for job control.)2.73 E 3.062 -.8 -(To f)108 696 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 708 R F2(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 1.425 -(group ID is equal to the current terminal process group ID\) recei)108 -720 R 1.725 -.15(ve k)-.25 H -.15(ey).05 G 1.425 -(board-generated signals such as).15 F(GNU Bash-4.1)72 768 Q -(2010 June 12)147.345 E(32)197.335 E 0 Cg EP +(acility via an interacti)-.1 F 1.002 -.15(ve i)-.25 H(nterf).15 E(ace) +-.1 E(supplied jointly by the operating system k)108 696 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 +F1(bash)2.5 E F0(.)A .785(The shell associates a)108 712.8 R F2(job) +5.025 E F0 .785(with each pipeline.)3.515 F .784(It k)5.785 F .784 +(eeps a table of currently e)-.1 F -.15(xe)-.15 G .784 +(cuting jobs, which may be).15 F .34(listed with the)108 724.8 R F1 +(jobs)2.84 E F0 2.84(command. When)2.84 F F1(bash)2.84 E F0 .341 +(starts a job asynchronously \(in the)2.84 F F2(bac)2.841 E(kgr)-.2 E +(ound)-.45 E F0 .341(\), it prints a line).77 F(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(32)198.165 E 0 Cg EP %%Page: 33 33 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 9/Times-Bold@0 SF(SIGINT)108 84 Q/F2 9/Times-Roman@0 SF(.)A F0 -.313(These processes are said to be in the)4.813 F/F3 10/Times-Italic@0 -SF(for)2.813 E -.4(eg)-.37 G -.45(ro).4 G(und).45 E F0(.).77 E F3(Bac) -5.893 E(kgr)-.2 E(ound)-.45 E F0 .312(processes are those whose process) -3.583 F .145(group ID dif)108 96 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 108 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/F4 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 120 R .551 -(processes which attempt to read from \(write to when)3.051 F F4 .551 -(stty tostop)3.051 F F0 .552(is in ef)3.052 F .552(fect\) the)-.25 F -.718(terminal are sent a)108 132 R F1 .718(SIGTTIN \(SIGTT)3.218 F(OU\)) --.162 E F0 .718(signal by the k)2.968 F(ernel')-.1 E 3.217(st)-.55 G -.717(erminal dri)-3.217 F -.15(ve)-.25 G 1.517 -.4(r, w).15 H .717 -(hich, unless caught, sus-).4 F(pends the process.)108 144 Q 1.087 -(If the operating system on which)108 160.8 R/F5 10/Times-Bold@0 SF -(bash)3.587 E F0 1.088(is running supports job control,)3.588 F F5(bash) -3.588 E F0 1.088(contains f)3.588 F 1.088(acilities to use it.)-.1 F -.8 -(Ty)108 172.8 S .302(ping the).8 F F3(suspend)3.142 E F0 .302 -(character \(typically)3.572 F F5(^Z)2.801 E F0 2.801(,C)C .301 +-.35 E(that looks lik)108 84 Q(e:)-.1 E([1] 25647)144 100.8 Q .241(indi\ +cating that this job is job number 1 and that the process ID of the las\ +t process in the pipeline associated)108 117.6 R .732 +(with this job is 25647.)108 129.6 R .733 +(All of the processes in a single pipeline are members of the same job) +5.732 F(.)-.4 E/F1 10/Times-Bold@0 SF(Bash)5.733 E F0(uses)3.233 E(the) +108 141.6 Q/F2 10/Times-Italic@0 SF(job)4.24 E F0 +(abstraction as the basis for job control.)2.73 E 3.063 -.8(To f)108 +158.4 T 1.463(acilitate the implementation of the user interf).7 F 1.462 +(ace to job control, the operating system maintains the)-.1 F .87 +(notion of a)108 170.4 R F2(curr)3.37 E .87(ent terminal pr)-.37 F .871 +(ocess gr)-.45 F .871(oup ID)-.45 F F0 5.871(.M)C .871 +(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 +182.4 R .323 -.15(ve k)-.25 H -.15(ey).05 G .023 +(board-generated signals such as).15 F/F3 9/Times-Bold@0 SF(SIG-)2.522 E +(INT)108 194.4 Q/F4 9/Times-Roman@0 SF(.)A F0 1.346 +(These processes are said to be in the)5.846 F F2(for)3.847 E -.4(eg) +-.37 G -.45(ro).4 G(und).45 E F0(.).77 E F2(Bac)6.927 E(kgr)-.2 E(ound) +-.45 E F0 1.347(processes are those whose process)4.617 F .146 +(group ID dif)108 206.4 R .146(fers from the terminal')-.25 F .146 +(s; such processes are immune to k)-.55 F -.15(ey)-.1 G .145 +(board-generated signals.).15 F .145(Only fore-)5.145 F .16 +(ground processes are allo)108 218.4 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/F5 +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.052(minal. Background)108 230.4 R .551 +(processes which attempt to read from \(write to when)3.052 F F5 .551 +(stty tostop)3.051 F F0 .551(is in ef)3.051 F .551(fect\) the)-.25 F +.717(terminal are sent a)108 242.4 R F3 .717(SIGTTIN \(SIGTT)3.217 F +(OU\))-.162 E F0 .718(signal by the k)2.967 F(ernel')-.1 E 3.218(st)-.55 +G .718(erminal dri)-3.218 F -.15(ve)-.25 G 1.518 -.4(r, w).15 H .718 +(hich, unless caught, sus-).4 F(pends the process.)108 254.4 Q 1.088 +(If the operating system on which)108 271.2 R F1(bash)3.588 E F0 1.088 +(is running supports job control,)3.588 F F1(bash)3.587 E F0 1.087 +(contains f)3.587 F 1.087(acilities to use it.)-.1 F -.8(Ty)108 283.2 S +.301(ping the).8 F F2(suspend)3.141 E F0 .301(character \(typically) +3.571 F F1(^Z)2.801 E F0 2.801(,C)C .301 (ontrol-Z\) while a process is running causes that process to be)-2.801 -F 2.142(stopped and returns control to)108 184.8 R F5(bash)4.642 E F0 -7.142(.T)C 2.142(yping the)-7.942 F F3 2.142(delayed suspend)4.992 F F0 -2.143(character \(typically)5.413 F F5(^Y)4.643 E F0 4.643(,C)C -(ontrol-Y\))-4.643 E .021(causes the process to be stopped when it atte\ +F 2.143(stopped and returns control to)108 295.2 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.142(character \(typically)5.412 F F1(^Y)4.642 E F0 4.642(,C)C +(ontrol-Y\))-4.642 E .021(causes the process to be stopped when it atte\ mpts to read input from the terminal, and control to be returned)108 -196.8 R(to)108 208.8 Q F5(bash)3.392 E F0 5.892(.T)C .892 +307.2 R(to)108 319.2 Q F1(bash)3.392 E F0 5.892(.T)C .892 (he user may then manipulate the state of this job, using the)-5.892 F -F5(bg)3.392 E F0 .892(command to continue it in the)3.392 F .895 -(background, the)108 220.8 R F5(fg)3.395 E F0 .895 -(command to continue it in the fore)3.395 F .895(ground, or the)-.15 F -F5(kill)3.395 E F0 .894(command to kill it.)3.395 F(A)5.894 E F5(^Z) -3.394 E F0(tak)3.394 E(es)-.1 E(ef)108 232.8 Q .948(fect immediately) --.25 F 3.448(,a)-.65 G .948(nd has the additional side ef)-3.448 F .948 +F1(bg)3.392 E F0 .892(command to continue it in the)3.392 F .894 +(background, the)108 331.2 R F1(fg)3.394 E F0 .895 +(command to continue it in the fore)3.394 F .895(ground, or the)-.15 F +F1(kill)3.395 E F0 .895(command to kill it.)3.395 F(A)5.895 E F1(^Z) +3.395 E F0(tak)3.395 E(es)-.1 E(ef)108 343.2 Q .949(fect immediately) +-.25 F 3.449(,a)-.65 G .948(nd has the additional side ef)-3.449 F .948 (fect of causing pending output and typeahead to be dis-)-.25 F(carded.) -108 244.8 Q .777(There are a number of w)108 261.6 R .777 -(ays to refer to a job in the shell.)-.1 F .777(The character)5.777 F F5 -(%)3.277 E F0 .777(introduces a job speci\214cation)3.277 F(\()108 273.6 -Q F3(jobspec)A F0 3.457(\). Job)B(number)3.457 E F3(n)3.817 E F0 .957 -(may be referred to as)3.697 F F5(%n)3.457 E F0 5.957(.A)C .957 +108 355.2 Q .777(There are a number of w)108 372 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 384 Q +F2(jobspec)A F0 3.458(\). Job)B(number)3.458 E F2(n)3.818 E F0 .957 +(may be referred to as)3.697 F F1(%n)3.457 E F0 5.957(.A)C .957 (job may also be referred to using a pre\214x of the)-2.5 F .59(name us\ ed to start it, or using a substring that appears in its command line.) -108 285.6 R -.15(Fo)5.59 G 3.09(re).15 G(xample,)-3.24 E F5(%ce)3.09 E -F0 .59(refers to a)3.09 F(stopped)108 297.6 Q F5(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 F5(bash)3.463 E F0 .963 -(reports an error)3.463 F 5.963(.U)-.55 G(sing)-5.963 E F5(%?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 309.6 R 2.587(yj)-.15 G .087 -(ob containing the string)-2.587 F F5(ce)2.587 E F0 .087 +108 396 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 408 Q F1(ce)3.464 E F0(job)3.464 E +5.964(.I)-.4 G 3.463(fap)-5.964 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 +F0 3.463(,o)C 3.463(nt)-3.463 G .963(he other)-3.463 F .086 +(hand, refers to an)108 420 R 2.587(yj)-.15 G .087 +(ob containing the string)-2.587 F F1(ce)2.587 E F0 .087 (in its command line.)2.587 F .087 -(If the substring matches more than one)5.087 F(job,)108 321.6 Q F5 -(bash)2.518 E F0 .018(reports an error)2.518 F 5.018(.T)-.55 G .018 -(he symbols)-5.018 F F5(%%)2.518 E F0(and)2.518 E F5(%+)2.518 E F0 .018 +(If the substring matches more than one)5.087 F(job,)108 432 Q F1(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 (refer to the shell')2.518 F 2.518(sn)-.55 G .018(otion of the)-2.518 F -F3(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 333.6 R .495 +F2(curr)2.518 E .018(ent job)-.37 F F0 2.518(,w).23 G .018(hich is) +-2.518 F .494(the last job stopped while it w)108 444 R .495 (as in the fore)-.1 F .495(ground or started in the background.)-.15 F -(The)5.494 E F3(pr)4.244 E -.15(ev)-.37 G .494(ious job).15 F F0 .494 -(may be)3.224 F .787(referenced using)108 345.6 R F5<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 F5 -(%+)3.287 E F0(and)3.287 E F5<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 357.6 R F5 +(The)5.495 E F2(pr)4.245 E -.15(ev)-.37 G .495(ious job).15 F F0 .495 +(may be)3.225 F .788(referenced using)108 456 R F1<25ad>3.288 E F0 5.788 +(.I)C 3.288(ft)-5.788 G .787(here is only a single job,)-3.288 F F1(%+) +3.287 E F0(and)3.287 E F1<25ad>3.287 E F0 .787 +(can both be used to refer to that job)3.287 F 5.787(.I)-.4 G(n)-5.787 E +.256(output pertaining to jobs \(e.g., the output of the)108 468 R F1 (jobs)2.756 E F0 .256(command\), the current job is al)2.756 F -.1(wa) --.1 G .256(ys \215agged with a).1 F F5(+)2.756 E F0(,)A .41(and the pre) -108 369.6 R .41(vious job with a)-.25 F F52.91 E F0 5.41(.A)C .411 -(single % \(with no accompan)-2.5 F .411 +-.1 G .257(ys \215agged with a).1 F F1(+)2.757 E F0(,)A .411 +(and the pre)108 480 R .411(vious job with a)-.25 F F12.911 E F0 +5.411(.A)C .411(single % \(with no accompan)-2.5 F .41 (ying job speci\214cation\) also refers to the cur)-.15 F(-)-.2 E -(rent job)108 381.6 Q(.)-.4 E .444 -(Simply naming a job can be used to bring it into the fore)108 398.4 R -(ground:)-.15 E F5(%1)2.943 E F0 .443(is a synon)2.943 F .443(ym for) --.15 F F5 -.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 -410.4 R 3.972(ground. Similarly)-.15 F(,)-.65 E F5 -.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 422.4 Q -.25(va)-.25 G(lent to).25 E F5 -.63(``)2.5 G(bg %1') -.63 E(')-.63 E F0(.)A .131(The shell learns immediately whene)108 439.2 -R -.15(ve)-.25 G 2.631(raj).15 G .131(ob changes state.)-2.631 F -(Normally)5.131 E(,)-.65 E F5(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 451.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 F52.658 E F0 .158 -(option to)2.658 F(the)108 463.2 Q F5(set)3.952 E F0 -.2(bu)3.952 G -1.452(iltin command is enabled,).2 F F5(bash)3.952 E F0 1.451 -(reports such changes immediately)3.952 F 6.451(.A)-.65 G 1.751 -.15 -(ny t)-6.451 H 1.451(rap on).15 F F1(SIGCHLD)3.951 E F0(is)3.701 E -.15 -(exe)108 475.2 S(cuted for each child that e).15 E(xits.)-.15 E .032 -(If an attempt to e)108 492 R(xit)-.15 E F5(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 F5(checkjobs)2.533 E F0 .033 -(shell option has been enabled)2.533 F 2.02(using the)108 504 R F5 -(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 F5(checkjobs)4.519 E F0 2.019 -(option is)4.519 F .458(enabled, lists the jobs and their statuses.)108 -516 R(The)5.458 E F5(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 528 R .604 +(rent job)108 492 Q(.)-.4 E .443 +(Simply naming a job can be used to bring it into the fore)108 508.8 R +(ground:)-.15 E F1(%1)2.944 E F0 .444(is a synon)2.944 F .444(ym for) +-.15 F F1 -.63(``)2.944 G .444(fg %1').63 F(')-.63 E F0 2.944(,b)C +(ringing)-2.944 E 1.473(job 1 from the background into the fore)108 +520.8 R 3.973(ground. Similarly)-.15 F(,)-.65 E F1 -.63(``)3.972 G 1.472 +(%1 &').63 F(')-.63 E F0 1.472(resumes job 1 in the background,)3.972 F +(equi)108 532.8 Q -.25(va)-.25 G(lent to).25 E F1 -.63(``)2.5 G(bg %1') +.63 E(')-.63 E F0(.)A .13(The shell learns immediately whene)108 549.6 R +-.15(ve)-.25 G 2.63(raj).15 G .13(ob changes state.)-2.63 F(Normally) +5.131 E(,)-.65 E F1(bash)2.631 E F0 -.1(wa)2.631 G .131 +(its until it is about to print a).1 F .158 +(prompt before reporting changes in a job')108 561.6 R 2.658(ss)-.55 G +.158(tatus so as to not interrupt an)-2.658 F 2.657(yo)-.15 G .157 +(ther output.)-2.657 F .157(If the)5.157 F F12.657 E F0 .157 +(option to)2.657 F(the)108 573.6 Q F1(set)3.951 E F0 -.2(bu)3.951 G +1.451(iltin command is enabled,).2 F F1(bash)3.951 E F0 1.452 +(reports such changes immediately)3.951 F 6.452(.A)-.65 G 1.752 -.15 +(ny t)-6.452 H 1.452(rap on).15 F F3(SIGCHLD)3.952 E F0(is)3.702 E -.15 +(exe)108 585.6 S(cuted for each child that e).15 E(xits.)-.15 E .033 +(If an attempt to e)108 602.4 R(xit)-.15 E F1(bash)2.533 E F0 .033 +(is made while jobs are stopped \(or)2.533 F 2.532(,i)-.4 G 2.532(ft) +-2.532 G(he)-2.532 E F1(checkjobs)2.532 E F0 .032 +(shell option has been enabled)2.532 F 2.019(using the)108 614.4 R F1 +(shopt)4.519 E F0 -.2(bu)4.519 G 2.019 +(iltin, running\), the shell prints a w).2 F 2.02 +(arning message, and, if the)-.1 F F1(checkjobs)4.52 E F0 2.02 +(option is)4.52 F .459(enabled, lists the jobs and their statuses.)108 +626.4 R(The)5.459 E F1(jobs)2.959 E F0 .458 +(command may then be used to inspect their status.)2.958 F .458(If a) +5.458 F .603(second attempt to e)108 638.4 R .604 (xit is made without an interv)-.15 F .604 (ening command, the shell does not print another w)-.15 F(arning,)-.1 E -(and an)108 540 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E/F6 -10.95/Times-Bold@0 SF(PR)72 556.8 Q(OMPTING)-.329 E F0 .644(When e)108 -568.8 R -.15(xe)-.15 G .644(cuting interacti).15 F -.15(ve)-.25 G(ly).15 -E(,)-.65 E F5(bash)3.144 E F0 .645(displays the primary prompt)3.145 F -F1(PS1)3.145 E F0 .645(when it is ready to read a command,)2.895 F 1.826 -(and the secondary prompt)108 580.8 R F1(PS2)4.326 E F0 1.825 -(when it needs more input to complete a command.)4.076 F F5(Bash)6.825 E -F0(allo)4.325 E 1.825(ws these)-.25 F 1.499(prompt strings to be custom\ +(and an)108 650.4 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E/F6 +10.95/Times-Bold@0 SF(PR)72 667.2 Q(OMPTING)-.329 E F0 .645(When e)108 +679.2 R -.15(xe)-.15 G .645(cuting interacti).15 F -.15(ve)-.25 G(ly).15 +E(,)-.65 E F1(bash)3.145 E F0 .645(displays the primary prompt)3.145 F +F3(PS1)3.145 E F0 .645(when it is ready to read a command,)2.895 F 1.825 +(and the secondary prompt)108 691.2 R F3(PS2)4.325 E F0 1.825 +(when it needs more input to complete a command.)4.075 F F1(Bash)6.826 E +F0(allo)4.326 E 1.826(ws these)-.25 F 1.499(prompt strings to be custom\ ized by inserting a number of backslash-escaped special characters that\ - are)108 592.8 R(decoded as follo)108 604.8 Q(ws:)-.25 E F5(\\a)144 -616.8 Q F0(an ASCII bell character \(07\))28.22 E F5(\\d)144 628.8 Q F0 -(the date in "W)27.66 E(eekday Month Date" format \(e.g., "T)-.8 E -(ue May 26"\))-.45 E F5(\\D{)144 640.8 Q F3(format)A F5(})A F0(the)180 -652.8 Q F3(format)3.927 E F0 1.427(is passed to)3.927 F F3(strftime) -3.927 E F0 1.427 -(\(3\) and the result is inserted into the prompt string; an)B(empty)180 -664.8 Q F3(format)2.5 E F0 -(results in a locale-speci\214c time representation.)2.5 E -(The braces are required)5 E F5(\\e)144 676.8 Q F0 -(an ASCII escape character \(033\))28.78 E F5(\\h)144 688.8 Q F0 -(the hostname up to the \214rst `.)27.66 E(')-.7 E F5(\\H)144 700.8 Q F0 -(the hostname)25.44 E F5(\\j)144 712.8 Q F0 -(the number of jobs currently managed by the shell)29.89 E(GNU Bash-4.1) -72 768 Q(2010 June 12)147.345 E(33)197.335 E 0 Cg EP + are)108 703.2 R(decoded as follo)108 715.2 Q(ws:)-.25 E(GNU Bash-4.2)72 +768 Q(2010 July 21)148.175 E(33)198.165 E 0 Cg EP %%Page: 34 34 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(\\l)144 84 Q F0(the basename of the shell') -30.44 E 2.5(st)-.55 G(erminal de)-2.5 E(vice name)-.25 E F1(\\n)144 96 Q -F0(ne)27.66 E(wline)-.25 E F1(\\r)144 108 Q F0(carriage return)28.78 E -F1(\\s)144 120 Q F0(the name of the shell, the basename of)29.33 E F1 -($0)2.5 E F0(\(the portion follo)2.5 E(wing the \214nal slash\))-.25 E -F1(\\t)144 132 Q F0(the current time in 24-hour HH:MM:SS format)29.89 E -F1(\\T)144 144 Q F0(the current time in 12-hour HH:MM:SS format)26.55 E -F1(\\@)144 156 Q F0(the current time in 12-hour am/pm format)23.92 E F1 -(\\A)144 168 Q F0(the current time in 24-hour HH:MM format)26 E F1(\\u) -144 180 Q F0(the username of the current user)27.66 E F1(\\v)144 192 Q -F0(the v)28.22 E(ersion of)-.15 E F1(bash)2.5 E F0(\(e.g., 2.00\))2.5 E -F1(\\V)144 204 Q F0(the release of)26 E F1(bash)2.5 E F0 2.5(,v)C +-.35 E/F1 10/Times-Bold@0 SF(\\a)144 84 Q F0 +(an ASCII bell character \(07\))28.22 E F1(\\d)144 96 Q F0 +(the date in "W)27.66 E(eekday Month Date" format \(e.g., "T)-.8 E +(ue May 26"\))-.45 E F1(\\D{)144 108 Q/F2 10/Times-Italic@0 SF(format)A +F1(})A F0(the)180 120 Q F2(format)3.926 E F0 1.426(is passed to)3.926 F +F2(strftime)3.926 E F0 1.427 +(\(3\) and the result is inserted into the prompt string; an)B(empty)180 +132 Q F2(format)2.5 E F0 +(results in a locale-speci\214c time representation.)2.5 E +(The braces are required)5 E F1(\\e)144 144 Q F0 +(an ASCII escape character \(033\))28.78 E F1(\\h)144 156 Q F0 +(the hostname up to the \214rst `.)27.66 E(')-.7 E F1(\\H)144 168 Q F0 +(the hostname)25.44 E F1(\\j)144 180 Q F0 +(the number of jobs currently managed by the shell)29.89 E F1(\\l)144 +192 Q F0(the basename of the shell')30.44 E 2.5(st)-.55 G(erminal de) +-2.5 E(vice name)-.25 E F1(\\n)144 204 Q F0(ne)27.66 E(wline)-.25 E F1 +(\\r)144 216 Q F0(carriage return)28.78 E F1(\\s)144 228 Q F0 +(the name of the shell, the basename of)29.33 E F1($0)2.5 E F0 +(\(the portion follo)2.5 E(wing the \214nal slash\))-.25 E F1(\\t)144 +240 Q F0(the current time in 24-hour HH:MM:SS format)29.89 E F1(\\T)144 +252 Q F0(the current time in 12-hour HH:MM:SS format)26.55 E F1(\\@)144 +264 Q F0(the current time in 12-hour am/pm format)23.92 E F1(\\A)144 276 +Q F0(the current time in 24-hour HH:MM format)26 E F1(\\u)144 288 Q F0 +(the username of the current user)27.66 E F1(\\v)144 300 Q F0(the v) +28.22 E(ersion of)-.15 E F1(bash)2.5 E F0(\(e.g., 2.00\))2.5 E F1(\\V) +144 312 Q F0(the release of)26 E 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 216 Q F0 .115(the current w)26 F .115 -(orking directory)-.1 F 2.615(,w)-.65 G(ith)-2.615 E/F2 9/Times-Bold@0 -SF($HOME)2.615 E F0(abbre)2.365 E .116(viated with a tilde \(uses the v) --.25 F .116(alue of the)-.25 F F2(PR)180 228 Q(OMPT_DIR)-.27 E(TRIM)-.36 -E F0 -.25(va)2.25 G(riable\)).25 E F1(\\W)144 240 Q F0 +-2.5 E F1(\\w)144 324 Q F0 .116(the current w)26 F .116 +(orking directory)-.1 F 2.616(,w)-.65 G(ith)-2.616 E/F3 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 F3(PR)180 336 Q(OMPT_DIR)-.27 E(TRIM)-.36 +E F0 -.25(va)2.25 G(riable\)).25 E F1(\\W)144 348 Q F0 (the basename of the current w)23.22 E(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 252 Q F0(the history number of this command)29.89 E F1 -(\\#)144 264 Q F0(the command number of this command)28.22 E F1(\\$)144 -276 Q F0(if the ef)28.22 E(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 288 Q -/F3 10/Times-Italic@0 SF(nnn)A F0 -(the character corresponding to the octal number)18.22 E F3(nnn)2.5 E F1 -(\\\\)144 300 Q F0 2.5(ab)30.44 G(ackslash)-2.5 E F1(\\[)144 312 Q F0 -(be)29.89 E 1.257(gin a sequence of non-printing characters, which coul\ -d be used to embed a terminal)-.15 F(control sequence into the prompt) -180 324 Q F1(\\])144 336 Q F0(end a sequence of non-printing characters) -29.89 E .119(The command number and the history number are usually dif) -108 352.8 R .12(ferent: the history number of a command is its)-.25 F -1.585(position in the history list, which may include commands restored\ - from the history \214le \(see)108 364.8 R F2(HIST)4.084 E(OR)-.162 E(Y) --.315 E F0(belo)108 376.8 Q .541(w\), while the command number is the p\ -osition in the sequence of commands e)-.25 F -.15(xe)-.15 G .541 -(cuted during the cur).15 F(-)-.2 E .546(rent shell session.)108 388.8 R +-.65 G(ith)-2.5 E F3($HOME)2.5 E F0(abbre)2.25 E(viated with a tilde) +-.25 E F1(\\!)144 360 Q F0(the history number of this command)29.89 E F1 +(\\#)144 372 Q F0(the command number of this command)28.22 E F1(\\$)144 +384 Q F0(if the ef)28.22 E(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 396 Q +F2(nnn)A F0(the character corresponding to the octal number)18.22 E F2 +(nnn)2.5 E F1(\\\\)144 408 Q F0 2.5(ab)30.44 G(ackslash)-2.5 E F1(\\[) +144 420 Q F0(be)29.89 E 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 432 Q F1(\\])144 444 Q F0 +(end a sequence of non-printing characters)29.89 E .12 +(The command number and the history number are usually dif)108 460.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 472.8 R F3(HIST)4.085 E(OR)-.162 E(Y)-.315 E F0 +(belo)108 484.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 496.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 -.351(tion, arithmetic e)108 400.8 R .352(xpansion, and quote remo)-.15 F +.352(tion, arithmetic e)108 508.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 .352(shell option \(see the)2.852 -F(description of the)108 412.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 429.6 Q F0 .151 +(pr)2.852 E(omptv)-.18 E(ars)-.1 E F0 .351(shell option \(see the)2.852 +F(description of the)108 520.8 Q F1(shopt)2.5 E F0(command under)2.5 E +F3(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 537.6 Q F0 .15 (This is the library that handles reading input when using an interacti) -108 441.6 R .45 -.15(ve s)-.25 H .15(hell, unless the).15 F F1 -(\255\255noediting)2.65 E F0(option)2.65 E 1.208(is gi)108 453.6 R -.15 -(ve)-.25 G 3.708(na).15 G 3.708(ts)-3.708 G 1.208(hell in)-3.708 F -.2 -(vo)-.4 G 3.708(cation. Line).2 F 1.208 -(editing is also used when using the)3.708 F F13.709 E F0 1.209 -(option to the)3.709 F F1 -.18(re)3.709 G(ad).18 E F0 -.2(bu)3.709 G -3.709(iltin. By).2 F(def)108 465.6 Q .95 +108 549.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 561.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 573.6 Q .949 (ault, the line editing commands are similar to those of emacs.)-.1 F -3.449(Av)5.949 G .949(i-style line editing interf)-3.449 F .949 -(ace is also)-.1 F -.2(av)108 477.6 S 3.35(ailable. Line)-.05 F .85 +3.45(Av)5.95 G .95(i-style line editing interf)-3.45 F .95(ace is also) +-.1 F -.2(av)108 585.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 489.6 Q F2 .763(SHELL B)3.263 F(UIL)-.09 E .763(TIN COMMANDS) --.828 F F0(belo)3.013 E 3.263(w\). T)-.25 F 3.263(ot)-.8 G .763(urn of) +(\(see)108 597.6 Q F3 .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.262 E -(emacs)108 501.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 518.4 Q -F0 .567(In this section, the emacs-style notation is used to denote k) -108 530.4 R -.15(ey)-.1 G(strok).15 E 3.068(es. Control)-.1 F -.1(ke) -3.068 G .568(ys are denoted by C\255)-.05 F F3 -.1(ke)C(y)-.2 E F0(,)A -1.153(e.g., C\255n means Control\255N.)108 542.4 R(Similarly)6.153 E(,) --.65 E F3(meta)4.033 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.652(,s)C 3.652(oM)-3.652 G 1.152 -(\255x means Meta\255X.)-3.652 F(\(On)6.152 E -.1(ke)108 554.4 S .83 -(yboards without a)-.05 F F3(meta)3.71 E F0 -.1(ke)3.59 G 2.13 -.65 -(y, M)-.05 H.65 E F3(x)A F0 .83(means ESC)3.33 F F3(x)3.33 E F0 3.33 -(,i)C .831(.e., press the Escape k)-3.33 F 1.131 -.15(ey t)-.1 H .831 -(hen the).15 F F3(x)4.101 E F0 -.1(ke)3.861 G 4.631 -.65(y. T)-.05 H -.831(his mak).65 F(es)-.1 E .6(ESC the)108 566.4 R F3 .6(meta pr)3.1 F -(e\214x)-.37 E F0 5.6(.T)C .6(he combination M\255C\255)-5.6 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 .599(ress the Escape k)-3.099 F .899 -.15(ey t)-.1 H .599 -(hen hold).15 F(the Control k)108 578.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 .619(Readline commands may be gi)108 595.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.62 E(ho) -108 607.2 Q(we)-.25 E -.15(ve)-.25 G 1.419 -.4(r, i).15 H 3.119(ti).4 G -3.119(st)-3.119 G .619(he sign of the ar)-3.119 F .619 +(ine editing after the shell is running, use the)-3.263 F F1(+o)3.263 E +(emacs)108 609.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 626.4 Q +F0 .568(In this section, the emacs-style notation is used to denote k) +108 638.4 R -.15(ey)-.1 G(strok).15 E 3.067(es. Control)-.1 F -.1(ke) +3.067 G .567(ys are denoted by C\255)-.05 F F2 -.1(ke)C(y)-.2 E F0(,)A +1.152(e.g., C\255n means Control\255N.)108 650.4 R(Similarly)6.152 E(,) +-.65 E F2(meta)4.032 E F0 -.1(ke)3.913 G 1.153(ys are denoted by M\255) +-.05 F F2 -.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 662.4 S .831 +(yboards without a)-.05 F F2(meta)3.711 E F0 -.1(ke)3.591 G 2.131 -.65 +(y, M)-.05 H.65 E F2(x)A F0 .831(means ESC)3.331 F F2(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 F2(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 674.4 R F2 .599(meta pr)3.099 F +(e\214x)-.37 E F0 5.599(.T)C .599(he combination M\255C\255)-5.599 F F2 +(x)A F0 .599(means ESC\255Control\255)3.099 F F2(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 686.4 Q .3 -.15(ey w)-.1 H +(hile pressing the).15 E F2(x)3.27 E F0 -.1(ke)3.03 G -.65(y.)-.05 G(\)) +.65 E .62(Readline commands may be gi)108 703.2 R -.15(ve)-.25 G 3.119 +(nn).15 G(umeric)-3.119 E F2(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 715.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.018(acts in the forw)108 619.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.019 -(ard direction.)-.1 F(Com-)6.019 E(mands whose beha)108 631.2 Q -(vior with ar)-.2 E(guments de)-.18 E(viates from this are noted belo) --.25 E -.65(w.)-.25 G .812(When a command is described as)108 648 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 .811 -(or possible future retrie)-3.311 F -.25(va)-.25 G 3.311(l\().25 G F3 -(yank-)-3.311 E(ing)108 660 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 672 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 684 Q F1(Readline Initialization)87 700.8 Q F0 .091(Readline is cus\ -tomized by putting commands in an initialization \214le \(the)108 712.8 -R F3(inputr)2.591 E(c)-.37 E F0 2.591(\214le\). The)2.591 F .092 -(name of this \214le)2.591 F .197(is tak)108 724.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 .196(hen a)-5.196 F(GNU Bash-4.1)72 768 Q -(2010 June 12)147.345 E(34)197.335 E 0 Cg EP +(ument to a command that).18 F 2.938(acts in the forw)108 727.2 R 2.938 +(ard direction \(e.g.,)-.1 F F1(kill\255line)5.438 E F0 5.438(\)c)C +2.938(auses that command to act in a backw)-5.438 F 2.938 +(ard direction.)-.1 F(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(34) +198.165 E 0 Cg EP %%Page: 35 35 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E 1.034(program which uses the readline library starts up, the ini\ -tialization \214le is read, and the k)108 84 R 1.335 -.15(ey b)-.1 H -1.035(indings and).15 F -.25(va)108 96 S 1.15(riables are set.).25 F -1.15(There are only a fe)6.15 F 3.649(wb)-.25 G 1.149 -(asic constructs allo)-3.649 F 1.149 -(wed in the readline initialization \214le.)-.25 F(Blank)6.149 E .736 -(lines are ignored.)108 108 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 .737 -(indicate conditional)3.237 F 2.5(constructs. Other)108 120 R +-.35 E(Commands whose beha)108 84 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 100.8 R/F1 10/Times-Italic@0 SF +(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 F1 +(yank-)-3.312 E(ing)108 112.8 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 F1 +.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 124.8 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 136.8 Q/F2 10/Times-Bold@0 SF(Readline Initialization)87 153.6 Q F0 +.091(Readline is customized by putting commands in an initialization \ +\214le \(the)108 165.6 R F1(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 +177.6 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 F1(~/.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 189.6 R 1.334 -.15 +(ey b)-.1 H 1.034(indings and).15 F -.25(va)108 201.6 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 213.6 R .737(Lines be)5.737 F .737 +(ginning with a)-.15 F F2(#)3.237 E F0 .737(are comments.)3.237 F .737 +(Lines be)5.737 F .737(ginning with a)-.15 F F2($)3.237 E F0 .736 +(indicate conditional)3.236 F 2.5(constructs. Other)108 225.6 R (lines denote k)2.5 E .3 -.15(ey b)-.1 H(indings and v).15 E -(ariable settings.)-.25 E .987(The def)108 136.8 R .987(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 148.8 -Q(wn commands and bindings.)-.25 E -.15(Fo)108 165.6 S 2.5(re).15 G -(xample, placing)-2.65 E(M\255Control\255u: uni)144 182.4 Q -.15(ve)-.25 -G(rsal\255ar).15 E(gument)-.18 E(or)108 194.4 Q(C\255Meta\255u: uni)144 -206.4 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(into the)108 218.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.26(The follo) -108 235.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.761 E F0 -(,).73 E F2(RET)3.761 E F0(,)1.27 E F2(RETURN)108 247.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 264 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 +(ariable settings.)-.25 E .986(The def)108 242.4 R .986(ault k)-.1 F +-.15(ey)-.1 G .987(-bindings may be changed with an).15 F F1(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 254.4 Q +(wn commands and bindings.)-.25 E -.15(Fo)108 271.2 S 2.5(re).15 G +(xample, placing)-2.65 E(M\255Control\255u: uni)144 288 Q -.15(ve)-.25 G +(rsal\255ar).15 E(gument)-.18 E(or)108 300 Q(C\255Meta\255u: uni)144 312 +Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(into the)108 324 Q F1 +(inputr)2.51 E(c)-.37 E F0 -.1(wo)2.81 G(uld mak).1 E 2.5(eM)-.1 G +(\255C\255u e)-2.5 E -.15(xe)-.15 G(cute the readline command).15 E F1 +(univer)2.5 E(sal\255ar)-.1 E(gument)-.37 E F0(.).68 E 1.261(The follo) +108 340.8 R 1.261(wing symbolic character names are recognized:)-.25 F +F1 -.4(RU)3.761 G(BOUT).4 E F0(,)1.27 E F1(DEL)3.761 E F0(,).53 E F1 +(ESC)3.761 E F0(,).72 E F1(LFD)3.761 E F0(,).28 E F1(NEWLINE)3.76 E F0 +(,).73 E F1(RET)3.76 E F0(,)1.27 E F1(RETURN)108 352.8 Q F0(,)1.1 E F1 +(SPC)2.5 E F0(,).72 E F1(SP)2.5 E -.3(AC)-.9 G(E).3 E F0 2.5(,a).73 G +(nd)-2.5 E F1 -.5(TA)2.5 G(B).5 E F0(.).27 E .209 +(In addition to command names, readline allo)108 369.6 R .209(ws k)-.25 +F -.15(ey)-.1 G 2.709(st).15 G 2.709(ob)-2.709 G 2.709(eb)-2.709 G .209 (ound to a string that is inserted when the k)-2.709 F .509 -.15(ey i) --.1 H(s).15 E(pressed \(a)108 276 Q F2(macr)2.5 E(o)-.45 E F0(\).)A F1 -(Readline K)87 292.8 Q(ey Bindings)-.25 E F0 .366 -(The syntax for controlling k)108 304.8 R .666 -.15(ey b)-.1 H .366 -(indings in the).15 F F2(inputr)2.876 E(c)-.37 E F0 .366 +-.1 H(s).15 E(pressed \(a)108 381.6 Q F1(macr)2.5 E(o)-.45 E F0(\).)A F2 +(Readline K)87 398.4 Q(ey Bindings)-.25 E F0 .366 +(The syntax for controlling k)108 410.4 R .666 -.15(ey b)-.1 H .366 +(indings in the).15 F F1(inputr)2.876 E(c)-.37 E F0 .366 (\214le is simple.)3.176 F .366(All that is required is the name of the) -5.366 F .383(command or the te)108 316.8 R .383(xt of a macro and a k) +5.366 F .382(command or the te)108 422.4 R .383(xt of a macro and a k) -.15 F .683 -.15(ey s)-.1 H .383 (equence to which it should be bound. The name may be speci-).15 F .853 -(\214ed in one of tw)108 328.8 R 3.353(ow)-.1 G .853 +(\214ed in one of tw)108 434.4 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) +(ame, possibly with).15 F F1(Meta\255)3.353 E F0(or)3.353 E F1(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 340.8 Q 1.542(When using the form)108 357.6 R F1 --.1(ke)4.042 G(yname).1 E F0(:)A F2(function\255name).833 E F0(or)4.042 -E F2(macr)4.042 E(o)-.45 E F0(,)A F2 -.1(ke)4.042 G(yname)-.2 E F0 1.542 -(is the name of a k)4.222 F 1.841 -.15(ey s)-.1 H 1.541(pelled out in) -.15 F 2.5(English. F)108 369.6 R(or e)-.15 E(xample:)-.15 E -(Control-u: uni)144 393.6 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 -E(Meta-Rubout: backw)144 405.6 Q(ard-kill-w)-.1 E(ord)-.1 E -(Control-o: "> output")144 417.6 Q .698(In the abo)108 434.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 446.4 Q F1 -(backward\255kill\255w)2.759 E(ord)-.1 E F0 2.759(,a)C(nd)-2.759 E F2 -(C\255o)2.599 E F0 .258(is bound to run the macro e)2.939 F .258 +(ey)-.1 G(sequence.)108 446.4 Q 1.541(When using the form)108 463.2 R F2 +-.1(ke)4.041 G(yname).1 E F0(:)A F1(function\255name).833 E F0(or)4.041 +E F1(macr)4.042 E(o)-.45 E F0(,)A F1 -.1(ke)4.042 G(yname)-.2 E F0 1.542 +(is the name of a k)4.222 F 1.842 -.15(ey s)-.1 H 1.542(pelled out in) +.15 F 2.5(English. F)108 475.2 R(or e)-.15 E(xample:)-.15 E +(Control-u: uni)144 499.2 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 +E(Meta-Rubout: backw)144 511.2 Q(ard-kill-w)-.1 E(ord)-.1 E +(Control-o: "> output")144 523.2 Q .699(In the abo)108 540 R .998 -.15 +(ve ex)-.15 H(ample,).15 E F1(C\255u)3.038 E F0 .698 +(is bound to the function)3.448 F F2(uni)3.198 E -.1(ve)-.1 G +(rsal\255ar).1 E(gument)-.1 E F0(,)A F1(M\255DEL)3.878 E F0 .698 +(is bound to the func-)3.728 F(tion)108 552 Q F2(backward\255kill\255w) +2.758 E(ord)-.1 E F0 2.758(,a)C(nd)-2.758 E F1(C\255o)2.598 E F0 .258 +(is bound to run the macro e)2.938 F .259 (xpressed on the right hand side \(that is, to)-.15 F(insert the te)108 -458.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 .055(In the second form,)108 475.2 R F1("k)2.555 -E(eyseq")-.1 E F0(:)A F2(function\255name).833 E F0(or)2.555 E F2(macr) -2.555 E(o)-.45 E F0(,)A F1 -.1(ke)2.555 G(yseq).1 E F0(dif)2.556 E .056 -(fers from)-.25 F F1 -.1(ke)2.556 G(yname).1 E F0(abo)2.556 E .356 -.15 -(ve i)-.15 H 2.556(nt).15 G .056(hat strings)-2.556 F 1.284 -(denoting an entire k)108 487.2 R 1.584 -.15(ey s)-.1 H 1.284(equence m\ +564 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 580.8 R F2("k)2.556 +E(eyseq")-.1 E F0(:)A F1(function\255name).833 E F0(or)2.556 E F1(macr) +2.556 E(o)-.45 E F0(,)A F2 -.1(ke)2.556 G(yseq).1 E F0(dif)2.555 E .055 +(fers from)-.25 F F2 -.1(ke)2.555 G(yname).1 E F0(abo)2.555 E .355 -.15 +(ve i)-.15 H 2.555(nt).15 G .055(hat strings)-2.555 F 1.284 +(denoting an entire k)108 592.8 R 1.584 -.15(ey s)-.1 H 1.284(equence m\ ay be speci\214ed by placing the sequence within double quotes.).15 F -(Some)6.284 E .385(GNU Emacs style k)108 499.2 R .685 -.15(ey e)-.1 H -.385(scapes can be used, as in the follo).15 F .385(wing e)-.25 F .386 -(xample, b)-.15 F .386(ut the symbolic character names)-.2 F -(are not recognized.)108 511.2 Q("\\C\255u": uni)144 535.2 Q -.15(ve) +(Some)6.284 E .386(GNU Emacs style k)108 604.8 R .686 -.15(ey e)-.1 H +.385(scapes can be used, as in the follo).15 F .385(wing e)-.25 F .385 +(xample, b)-.15 F .385(ut the symbolic character names)-.2 F +(are not recognized.)108 616.8 Q("\\C\255u": uni)144 640.8 Q -.15(ve) -.25 G(rsal\255ar).15 E(gument)-.18 E -("\\C\255x\\C\255r": re\255read\255init\255\214le)144 547.2 Q -("\\e[11~": "Function K)144 559.2 Q .3 -.15(ey 1)-.25 H(").15 E .315 -(In this e)108 576 R(xample,)-.15 E F2(C\255u)2.655 E F0 .315(is ag) -3.065 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 -.314(is bound to the func-)3.544 F(tion)108 588 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) -2.5 E F0(.)A(The full set of GNU Emacs style escape sequences is)108 -604.8 Q F1<5c43ad>144 616.8 Q F0(control pre\214x)20.3 E F1<5c4dad>144 -628.8 Q F0(meta pre\214x)18.08 E F1(\\e)144 640.8 Q F0 -(an escape character)28.78 E F1(\\\\)144 652.8 Q F0(backslash)30.44 E F1 -(\\")144 664.8 Q F0(literal ")27.67 E F1<5c08>144 676.8 Q F0 -(literal \010)30.44 E(In addition to the GNU Emacs style escape sequenc\ -es, a second set of backslash escapes is a)108 693.6 Q -.25(va)-.2 G -(ilable:).25 E F1(\\a)144 705.6 Q F0(alert \(bell\))28.22 E F1(\\b)144 -717.6 Q F0(backspace)27.66 E(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 -E(35)197.335 E 0 Cg EP +("\\C\255x\\C\255r": re\255read\255init\255\214le)144 652.8 Q +("\\e[11~": "Function K)144 664.8 Q .3 -.15(ey 1)-.25 H(").15 E .314 +(In this e)108 681.6 R(xample,)-.15 E F1(C\255u)2.654 E F0 .314(is ag) +3.064 F .315(ain bound to the function)-.05 F F2(uni)2.815 E -.1(ve)-.1 +G(rsal\255ar).1 E(gument)-.1 E F0(.)A F1 .315(C\255x C\255r)5.155 F F0 +.315(is bound to the func-)3.545 F(tion)108 693.6 Q F2 -.18(re)2.5 G +.18 E(ead\255init\255\214le)-.18 E F0 2.5(,a)C(nd)-2.5 E F1 +(ESC [ 1 1 ~)3.01 E F0(is bound to insert the te)3.94 E(xt)-.15 E F4 +(Function Key 1)2.5 E F0(.)A +(The full set of GNU Emacs style escape sequences is)108 710.4 Q +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(35)198.165 E 0 Cg EP %%Page: 36 36 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(\\d)144 84 Q F0(delete)27.66 E F1(\\f)144 -96 Q F0(form feed)29.89 E F1(\\n)144 108 Q F0(ne)27.66 E(wline)-.25 E F1 -(\\r)144 120 Q F0(carriage return)28.78 E F1(\\t)144 132 Q F0 -(horizontal tab)29.89 E F1(\\v)144 144 Q F0 -.15(ve)28.22 G(rtical tab) -.15 E F1(\\)144 156 Q/F2 10/Times-Italic@0 SF(nnn)A F0 +-.35 E/F1 10/Times-Bold@0 SF<5c43ad>144 84 Q F0(control pre\214x)20.3 E +F1<5c4dad>144 96 Q F0(meta pre\214x)18.08 E F1(\\e)144 108 Q F0 +(an escape character)28.78 E F1(\\\\)144 120 Q F0(backslash)30.44 E F1 +(\\")144 132 Q F0(literal ")27.67 E F1<5c08>144 144 Q F0(literal \010) +30.44 E(In addition to the GNU Emacs style escape sequences, a second s\ +et of backslash escapes is a)108 160.8 Q -.25(va)-.2 G(ilable:).25 E F1 +(\\a)144 172.8 Q F0(alert \(bell\))28.22 E F1(\\b)144 184.8 Q F0 +(backspace)27.66 E F1(\\d)144 196.8 Q F0(delete)27.66 E F1(\\f)144 208.8 +Q F0(form feed)29.89 E F1(\\n)144 220.8 Q F0(ne)27.66 E(wline)-.25 E F1 +(\\r)144 232.8 Q F0(carriage return)28.78 E F1(\\t)144 244.8 Q F0 +(horizontal tab)29.89 E F1(\\v)144 256.8 Q F0 -.15(ve)28.22 G +(rtical tab).15 E F1(\\)144 268.8 Q/F2 10/Times-Italic@0 SF(nnn)A F0 (the eight-bit character whose v)18.22 E(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 -168 Q F2(HH)A F0(the eight-bit character whose v)13.78 E(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.141 -(When entering the te)108 184.8 R 1.141(xt of a macro, single or double\ - quotes must be used to indicate a macro de\214nition.)-.15 F .09 -(Unquoted te)108 196.8 R .09(xt is assumed to be a function name.)-.15 F -.089(In the macro body)5.089 F 2.589(,t)-.65 G .089 -(he backslash escapes described abo)-2.589 F -.15(ve)-.15 G(are e)108 -208.8 Q 2.5(xpanded. Backslash)-.15 F(will quote an)2.5 E 2.5(yo)-.15 G +280.8 Q F2(HH)A F0(the eight-bit character whose v)13.78 E +(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 297.6 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 309.6 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 +321.6 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 225.6 Q F0(allo)2.929 E .429(ws the current readline k)-.25 -F .729 -.15(ey b)-.1 H .429 -(indings to be displayed or modi\214ed with the).15 F F1(bind)2.93 E F0 --.2(bu)2.93 G .43(iltin command.).2 F .046 -(The editing mode may be switched during interacti)108 237.6 R .346 -.15 -(ve u)-.25 H .046(se by using the).15 F F12.545 E F0 .045 -(option to the)2.545 F F1(set)2.545 E F0 -.2(bu)2.545 G .045 -(iltin command).2 F(\(see)108 249.6 Q/F3 9/Times-Bold@0 SF(SHELL B)2.5 E +F1(Bash)108 338.4 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 350.4 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 362.4 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 266.4 Q(ariables)-.92 E F0 .043(Readline has v)108 278.4 +(Readline V)87 379.2 Q(ariables)-.92 E F0 .044(Readline has v)108 391.2 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.554 E(tr)108 290.4 Q(c)-.37 E -F0(\214le with a statement of the form)2.81 E F1(set)144 307.2 Q F2 +(riable may be set in the).25 F F2(inpu-)2.553 E(tr)108 403.2 Q(c)-.37 E +F0(\214le with a statement of the form)2.81 E F1(set)144 420 Q F2 (variable\255name value)2.5 E F0 .79(Except where noted, readline v)108 -324 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 .448(nized v) -108 336 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 .449 -(alues, "on" \(case-insensi-)-.25 F(ti)108 348 Q -.15(ve)-.25 G .468 -(\), 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 .467 -(he v)-5.468 F .467(ariables and their def)-.25 F(ault)-.1 E -.25(va)108 -360 S(lues are:).25 E F1(bell\255style \(audible\))108 376.8 Q F0 .01 -(Controls what happens when readline w)144 388.8 R .011 -(ants to ring the terminal bell.)-.1 F .011(If set to)5.011 F F1(none) -2.511 E F0 2.511(,r)C .011(eadline ne)-2.511 F -.15(ve)-.25 G(r).15 E -.94(rings the bell.)144 400.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 412.8 Q 2.5(sb)-.55 G -(ell.)-2.5 E F1(bind\255tty\255special\255chars \(On\))108 424.8 Q F0 -.055(If set to)144 436.8 R F1(On)2.555 E F0 2.555(,r)C .056(eadline att\ -empts to bind the control characters treated specially by the k)-2.555 F -(ernel')-.1 E 2.556(st)-.55 G(ermi-)-2.556 E(nal dri)144 448.8 Q -.15 +436.8 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 448.8 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 460.8 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 472.8 S(lues are:) +.25 E F1(bell\255style \(audible\))108 489.6 Q F0 .011 +(Controls what happens when readline w)144 501.6 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 513.6 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 525.6 Q 2.5(sb)-.55 G(ell.) +-2.5 E F1(bind\255tty\255special\255chars \(On\))108 537.6 Q F0 .056 +(If set to)144 549.6 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 561.6 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(comment\255begin \(`)108 460.8 Q(`#')-.63 E('\)) --.63 E F0 .885(The string that is inserted when the readline)144 472.8 R -F1(insert\255comment)3.385 E F0 .884(command is e)3.384 F -.15(xe)-.15 G -3.384(cuted. This).15 F(com-)3.384 E(mand is bound to)144 484.8 Q F1 +-.25 G(lents.).25 E F1(comment\255begin \(`)108 573.6 Q(`#')-.63 E('\)) +-.63 E F0 .884(The string that is inserted when the readline)144 585.6 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 597.6 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\255ignor)108 496.8 Q -(e\255case \(Off\))-.18 E F0(If set to)144 508.8 Q F1(On)2.5 E F0 2.5 +(in vi command mode.)2.5 E F1(completion\255ignor)108 609.6 Q +(e\255case \(Off\))-.18 E F0(If set to)144 621.6 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\255pr) -108 520.8 Q(e\214x\255display\255length \(0\))-.18 E F0 .829(The length\ +108 633.6 Q(e\214x\255display\255length \(0\))-.18 E F0 .829(The length\ in characters of the common pre\214x of a list of possible completions\ - that is displayed)144 532.8 R 1.275(without modi\214cation.)144 544.8 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 556.8 S(lue are replaced with a\ + that is displayed)144 645.6 R 1.274(without modi\214cation.)144 657.6 R +1.274(When set to a v)6.274 F 1.274 +(alue greater than zero, common pre\214x)-.25 F 1.275 +(es longer than this)-.15 F -.25(va)144 669.6 S(lue are replaced with a\ n ellipsis when displaying possible completions.).25 E F1 -(completion\255query\255items \(100\))108 568.8 Q F0 .529 -(This determines when the user is queried about vie)144 580.8 R .53 -(wing the number of possible completions gen-)-.25 F .561(erated by the) -144 592.8 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 -604.8 R .783(If the number of possible completions is greater than or e\ -qual to the v)5.782 F .783(alue of this)-.25 F -.25(va)144 616.8 S .237 +(completion\255query\255items \(100\))108 681.6 Q F0 .53 +(This determines when the user is queried about vie)144 693.6 R .529 +(wing the number of possible completions gen-)-.25 F .56(erated by the) +144 705.6 R F1(possible\255completions)3.06 E F0 3.06(command. It)3.06 F +.561(may be set to an)3.061 F 3.061(yi)-.15 G(nte)-3.061 E .561(ger v) +-.15 F .561(alue greater than or)-.25 F .783(equal to zero.)144 717.6 R +.783(If the number of possible completions is greater than or equal to \ +the v)5.783 F .782(alue of this)-.25 F -.25(va)144 729.6 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 628.8 Q F1(con)108 -640.8 Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .612(If set to)144 652.8 -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 664.8 R .541(fect, using escape as the)-.25 F F2 .541(meta pr)3.041 -F(e-)-.37 E<8c78>144 676.8 Q F0(\).)A F1(disable\255completion \(Off\)) -108 688.8 Q F0 .038(If set to)144 700.8 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 712.8 Q 2.5(yh)-.15 G(ad been mapped to)-2.5 E F1(self-insert)2.5 E -F0(.)A(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(36)197.335 E 0 Cg EP +.237(re simply listed)-2.737 F(GNU Bash-4.2)72 768 Q(2010 July 21) +148.175 E(36)198.165 E 0 Cg EP %%Page: 37 37 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(editing\255mode \(emacs\))108 84 Q F0 .253 -(Controls whether readline be)144 96 R .253(gins with a set of k)-.15 F -.553 -.15(ey b)-.1 H .253(indings similar to).15 F/F2 10/Times-Italic@0 -SF(emacs)2.752 E F0(or)2.752 E F2(vi)2.752 E F0(.)A F1(editing\255mode) -5.252 E F0(can be set to either)144 108 Q F1(emacs)2.5 E F0(or)2.5 E F1 -(vi)2.5 E F0(.)A F1(echo\255contr)108 120 Q(ol\255characters \(On\))-.18 -E F0 1.21(When set to)144 132 R F1(On)3.71 E F0 3.71(,o)C 3.71(no)-3.71 -G 1.211(perating systems that indicate the)-3.71 F 3.711(ys)-.15 G 1.211 +-.35 E(on the terminal.)144 84 Q/F1 10/Times-Bold@0 SF(con)108 96 Q -.1 +(ve)-.4 G(rt\255meta \(On\)).1 E F0 .613(If set to)144 108 R F1(On)3.113 +E F0 3.113(,r)C .613(eadline will con)-3.113 F -.15(ve)-.4 G .613 +(rt characters with the eighth bit set to an ASCII k).15 F .912 -.15 +(ey s)-.1 H .612(equence by).15 F .541 +(stripping the eighth bit and pre\214xing an escape character \(in ef) +144 120 R .541(fect, using escape as the)-.25 F/F2 10/Times-Italic@0 SF +.542(meta pr)3.042 F(e-)-.37 E<8c78>144 132 Q F0(\).)A F1 +(disable\255completion \(Off\))108 144 Q F0 .038(If set to)144 156 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 168 Q 2.5(yh)-.15 G(ad been mapped to)-2.5 E F1(self-insert)2.5 E F0 +(.)A F1(editing\255mode \(emacs\))108 180 Q F0 .252 +(Controls whether readline be)144 192 R .253(gins with a set of k)-.15 F +.553 -.15(ey b)-.1 H .253(indings similar to).15 F F2(emacs)2.753 E F0 +(or)2.753 E F2(vi)2.753 E F0(.)A F1(editing\255mode)5.253 E F0 +(can be set to either)144 204 Q F1(emacs)2.5 E F0(or)2.5 E F1(vi)2.5 E +F0(.)A F1(echo\255contr)108 216 Q(ol\255characters \(On\))-.18 E F0 +1.211(When set to)144 228 R F1(On)3.711 E F0 3.711(,o)C 3.711(no)-3.711 +G 1.211(perating systems that indicate the)-3.711 F 3.711(ys)-.15 G 1.21 (upport it, readline echoes a character)-3.711 F -(corresponding to a signal generated from the k)144 144 Q -.15(ey)-.1 G -(board.).15 E F1(enable\255k)108 156 Q(eypad \(Off\))-.1 E F0 .893 -(When set to)144 168 R F1(On)3.393 E F0 3.393(,r)C .893 +(corresponding to a signal generated from the k)144 240 Q -.15(ey)-.1 G +(board.).15 E F1(enable\255k)108 252 Q(eypad \(Off\))-.1 E F0 .892 +(When set to)144 264 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 .892(Some sys-)5.893 F -(tems need this to enable the arro)144 180 Q 2.5(wk)-.25 G -.15(ey)-2.6 -G(s.).15 E F1(enable\255meta\255k)108 192 Q(ey \(On\))-.1 E F0 .64 -(When set to)144 204 R F1(On)3.14 E F0 3.14(,r)C .64 +.893(pad when it is called.).15 F .893(Some sys-)5.893 F +(tems need this to enable the arro)144 276 Q 2.5(wk)-.25 G -.15(ey)-2.6 +G(s.).15 E F1(enable\255meta\255k)108 288 Q(ey \(On\))-.1 E F0 .64 +(When set to)144 300 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 216 Q +(he terminal claims to support).15 F(when it is called.)144 312 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 228 Q F0(If set to)144 240 Q F1(on)2.5 E F0 +(expand\255tilde \(Off\))108 324 Q F0(If set to)144 336 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 252 Q(eser)-.18 E -.1 -(ve)-.1 G(\255point \(Off\)).1 E F0 1.493(If set to)144 264 R F1(on) -3.993 E F0 3.993(,t)C 1.493(he history code attempts to place point at \ -the same location on each history line)-3.993 F(retrie)144 276 Q -.15 +-.15 E(ord completion.)-.1 E F1(history\255pr)108 348 Q(eser)-.18 E -.1 +(ve)-.1 G(\255point \(Off\)).1 E F0 1.492(If set to)144 360 R F1(on) +3.992 E F0 3.992(,t)C 1.493(he history code attempts to place point at \ +the same location on each history line)-3.992 F(retrie)144 372 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 \(0\))108 288 Q F0 .462 -(Set the maximum number of history entries sa)144 300 R -.15(ve)-.2 G -2.963(di).15 G 2.963(nt)-2.963 G .463(he history list.)-2.963 F .463 +(history\255size \(0\))108 384 Q F0 .463 +(Set the maximum number of history entries sa)144 396 R -.15(ve)-.2 G +2.963(di).15 G 2.963(nt)-2.963 G .463(he history list.)-2.963 F .462 (If set to zero, the number of)5.463 F -(entries in the history list is not limited.)144 312 Q F1 -(horizontal\255scr)108 324 Q(oll\255mode \(Off\))-.18 E F0 .449 -(When set to)144 336 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 +(entries in the history list is not limited.)144 408 Q F1 +(horizontal\255scr)108 420 Q(oll\255mode \(Off\))-.18 E F0 .448 +(When set to)144 432 R F1(On)2.948 E F0 2.948(,m)C(ak)-2.948 E .448 +(es readline use a single line for display)-.1 F 2.948(,s)-.65 G .449 (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 348 R(w)-.25 E(line.)144 360 Q F1(input\255meta \(Off\))108 372 -Q F0 .228(If set to)144 384 R F1(On)2.728 E F0 2.728(,r)C .227(eadline \ + ne)144 444 R(w)-.25 E(line.)144 456 Q F1(input\255meta \(Off\))108 468 +Q F0 .227(If set to)144 480 R F1(On)2.727 E F0 2.727(,r)C .228(eadline \ will enable eight-bit input \(that is, it will not strip the high bit f\ -rom the char)-2.728 F(-)-.2 E .956(acters it reads\), re)144 396 R -.05 +rom the char)-2.727 F(-)-.2 E .957(acters it reads\), re)144 492 R -.05 (ga)-.15 G .956(rdless of what the terminal claims it can support.).05 F -.957(The name)5.956 F F1(meta\255\215ag)3.457 E F0 .957(is a)3.457 F -(synon)144 408 Q(ym for this v)-.15 E(ariable.)-.25 E F1(isear)108 420 Q +.956(The name)5.956 F F1(meta\255\215ag)3.456 E F0 .956(is a)3.456 F +(synon)144 504 Q(ym for this v)-.15 E(ariable.)-.25 E F1(isear)108 516 Q (ch\255terminators \(`)-.18 E(`C\255[C\255J')-.63 E('\))-.63 E F0 .439(\ The string of characters that should terminate an incremental search wi\ -thout subsequently e)144 432 R -.15(xe)-.15 G(cut-).15 E .934 -(ing the character as a command.)144 444 R .935(If this v)5.935 F .935 -(ariable has not been gi)-.25 F -.15(ve)-.25 G 3.435(nav).15 G .935 -(alue, the characters)-3.685 F F2(ESC)3.435 E F0(and)144 456 Q F2 +thout subsequently e)144 528 R -.15(xe)-.15 G(cut-).15 E .935 +(ing the character as a command.)144 540 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 552 Q F2 (C\255J)2.5 E F0(will terminate an incremental search.)2.5 E F1 -.1(ke) -108 468 S(ymap \(emacs\)).1 E F0 2.021(Set the current readline k)144 -480 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.02 -(emacs, emacs\255standar)4.52 F(d,)-.37 E .068 -(emacs\255meta, emacs\255ctlx, vi, vi\255command)144 492 R F0 2.568(,a)C +108 564 S(ymap \(emacs\)).1 E F0 2.02(Set the current readline k)144 576 +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 588 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.569 E F0(;)A F2(emacs)2.569 E F0 1.544(is equi)144 504 R -.25(va)-.25 -G 1.544(lent to).25 F F2(emacs\255standar)4.044 E(d)-.37 E F0 6.544(.T)C +2.568 E F0(;)A F2(emacs)2.568 E F0 1.543(is equi)144 600 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.043 E F0(also)4.043 E(af)144 516 Q(fects the def)-.25 -E(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1(mark\255dir)108 528 Q -(ectories \(On\))-.18 E F0(If set to)144 540 Q F1(On)2.5 E F0 2.5(,c)C +(editing\255mode)4.044 E F0(also)4.044 E(af)144 612 Q(fects the def)-.25 +E(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1(mark\255dir)108 624 Q +(ectories \(On\))-.18 E F0(If set to)144 636 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 552 Q F0(If set to)144 -564 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 648 Q F0(If set to)144 +660 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 576 Q(ed\255dir)-.1 E -(ectories \(Off\))-.18 E F0 .175(If set to)144 588 R F1(On)2.675 E F0 +(*)A F0(\).)A F1(mark\255symlink)108 672 Q(ed\255dir)-.1 E +(ectories \(Off\))-.18 E F0 .175(If set to)144 684 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 600 -Q(alue of)-.25 E F1(mark\255dir)2.5 E(ectories)-.18 E F0(\).)A F1 -(match\255hidden\255\214les \(On\))108 612 Q F0 .193(This v)144 624 R -.193(ariable, when set to)-.25 F F1(On)2.693 E F0 2.693(,c)C .192 -(auses readline to match \214les whose names be)-2.693 F .192 -(gin with a `.)-.15 F 2.692('\()-.7 G(hidden)-2.692 E .456 -(\214les\) when performing \214lename completion.)144 636 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 .457(ust be supplied by the)-2.956 F -(user in the \214lename to be completed.)144 648 Q F1 -(output\255meta \(Off\))108 660 Q F0 .507(If set to)144 672 R F1(On) -3.007 E F0 3.007(,r)C .507(eadline will display characters with the eig\ -hth bit set directly rather than as a meta-)-3.007 F(pre\214x)144 684 Q -(ed escape sequence.)-.15 E F1(page\255completions \(On\))108 696 Q F0 -.808(If set to)144 708 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 720 Q(GNU Bash-4.1)72 768 Q(2010 June 12) -147.345 E(37)197.335 E 0 Cg EP +-.15(ve a s)-.2 H .175(lash appended \(sub-).15 F(ject to the v)144 696 +Q(alue of)-.25 E F1(mark\255dir)2.5 E(ectories)-.18 E F0(\).)A +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(37)198.165 E 0 Cg EP %%Page: 38 38 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF -(print\255completions\255horizontally \(Off\))108 84 Q F0 1.319 -(If set to)144 96 R F1(On)3.819 E F0 3.819(,r)C 1.318(eadline will disp\ -lay completions with matches sorted horizontally in alphabetical)-3.819 -F(order)144 108 Q 2.5(,r)-.4 G(ather than do)-2.5 E(wn the screen.)-.25 -E F1 -2.29 -.18(re v)108 120 T(ert\255all\255at\255newline \(Off\)).08 E -F0 .872(If set to)144 132 R F1(on)3.372 E F0 3.372(,r)C .873 +-.35 E/F1 10/Times-Bold@0 SF(match\255hidden\255\214les \(On\))108 84 Q +F0 .192(This v)144 96 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 108 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 120 Q F1 +(output\255meta \(Off\))108 132 Q F0 .506(If set to)144 144 R F1(On) +3.006 E F0 3.006(,r)C .507(eadline will display characters with the eig\ +hth bit set directly rather than as a meta-)-3.006 F(pre\214x)144 156 Q +(ed escape sequence.)-.15 E F1(page\255completions \(On\))108 168 Q F0 +.809(If set to)144 180 R F1(On)3.308 E F0 3.308(,r)C .808 +(eadline uses an internal)-3.308 F/F2 10/Times-Italic@0 SF(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 192 Q F1 +(print\255completions\255horizontally \(Off\))108 204 Q F0 1.318 +(If set to)144 216 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 228 Q 2.5(,r)-.4 G(ather than do)-2.5 E(wn the screen.)-.25 +E F1 -2.29 -.18(re v)108 240 T(ert\255all\255at\255newline \(Off\)).08 E +F0 .873(If set to)144 252 R F1(on)3.373 E F0 3.373(,r)C .872 (eadline will undo all changes to history lines before returning when) --3.372 F F1(accept\255line)3.373 E F0(is)3.373 E -.15(exe)144 144 S +-3.373 F F1(accept\255line)3.372 E F0(is)3.372 E -.15(exe)144 264 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 156 S(adline) -.18 E F0(.)A F1(sho)108 168 Q(w\255all\255if\255ambiguous \(Off\))-.1 E -F0 .477(This alters the def)144 180 R .477(ault beha)-.1 F .477 -(vior of the completion functions.)-.2 F .478(If set to)5.478 F F1(on) -2.978 E F0 2.978(,w)C .478(ords which ha)-3.078 F .778 -.15(ve m)-.2 H +(vidual undo lists across calls to)-.25 F F1 -.18(re)144 276 S(adline) +.18 E F0(.)A F1(sho)108 288 Q(w\255all\255if\255ambiguous \(Off\))-.1 E +F0 .478(This alters the def)144 300 R .478(ault beha)-.1 F .478 +(vior of the completion functions.)-.2 F .477(If set to)5.477 F F1(on) +2.977 E F0 2.977(,w)C .477(ords which ha)-3.077 F .777 -.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 192 R(bell.)144 204 Q F1 -(sho)108 216 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.345 -(This alters the def)144 228 R 5.345(ault beha)-.1 F 5.345 -(vior of the completion functions in a f)-.2 F 5.346(ashion similar to) --.1 F F1(sho)144 240 Q(w\255all\255if\255ambiguous)-.1 E F0 6.923(.I)C -4.423(fs)-6.923 G 1.923(et to)-4.423 F F1(on)4.423 E F0 4.423(,w)C 1.923 -(ords which ha)-4.523 F 2.222 -.15(ve m)-.2 H 1.922 -(ore than one possible completion).15 F 1.039(without an)144 252 R 3.539 +isted immediately instead of ringing the)144 312 R(bell.)144 324 Q F1 +(sho)108 336 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.346 +(This alters the def)144 348 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 360 Q(w\255all\255if\255ambiguous)-.1 E F0 6.922(.I)C +4.422(fs)-6.922 G 1.922(et to)-4.422 F F1(on)4.422 E F0 4.422(,w)C 1.922 +(ords which ha)-4.522 F 2.223 -.15(ve m)-.2 H 1.923 +(ore than one possible completion).15 F 1.04(without an)144 372 R 3.54 (yp)-.15 G 1.039 -(ossible partial completion \(the possible completions don')-3.539 F -3.539(ts)-.18 G 1.04(hare a common pre\214x\))-3.539 F(cause the matche\ -s to be listed immediately instead of ringing the bell.)144 264 Q F1 -(skip\255completed\255text \(Off\))108 276 Q F0 .095(If set to)144 288 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 300 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 312 R -1.394(ord being com-)-.1 F(pleted, so portions of the w)144 324 Q +(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 384 Q F1 +(skip\255completed\255text \(Off\))108 396 Q F0 .094(If set to)144 408 R +F1(On)2.594 E F0 2.594(,t)C .095(his alters the def)-2.594 F .095 +(ault completion beha)-.1 F .095 +(vior when inserting a single match into the line.)-.2 F(It')144 420 Q +2.546(so)-.55 G .046(nly acti)-2.546 F .346 -.15(ve w)-.25 H .046 +(hen performing completion in the middle of a w).15 F 2.545(ord. If)-.1 +F .045(enabled, readline does not)2.545 F 1.394(insert characters from \ +the completion that match characters after point in the w)144 432 R +1.395(ord being com-)-.1 F(pleted, so portions of the w)144 444 Q (ord follo)-.1 E(wing the cursor are not duplicated.)-.25 E F1 -(visible\255stats \(Off\))108 336 Q F0 .846(If set to)144 348 R F1(On) +(visible\255stats \(Off\))108 456 Q F0 .847(If set to)144 468 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 360 Q F1 -(Readline Conditional Constructs)87 376.8 Q F0 .05 -(Readline implements a f)108 388.8 R .05(acility similar in spirit to t\ -he conditional compilation features of the C preprocessor)-.1 F .096 -(which allo)108 400.8 R .096(ws k)-.25 F .396 -.15(ey b)-.1 H .096 +(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 480 Q F1 +(Readline Conditional Constructs)87 496.8 Q F0 .05 +(Readline implements a f)108 508.8 R .05(acility similar in spirit to t\ +he conditional compilation features of the C preprocessor)-.1 F .097 +(which allo)108 520.8 R .097(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 412.8 Q -.15(ve)-.25 G 2.5 -(su).15 G(sed.)-2.5 E F1($if)108 429.6 Q F0(The)24.89 E F1($if)2.963 E -F0 .463(construct allo)2.963 F .462(ws bindings to be made based on the\ - editing mode, the terminal being used,)-.25 F .477 -(or the application using readline.)144 441.6 R .477(The te)5.477 F .477 +(ariable settings to be performed as the result of tests.)-.25 F .096 +(There are four parser)5.096 F(directi)108 532.8 Q -.15(ve)-.25 G 2.5 +(su).15 G(sed.)-2.5 E F1($if)108 549.6 Q F0(The)24.89 E F1($if)2.962 E +F0 .462(construct allo)2.962 F .463(ws bindings to be made based on the\ + editing mode, the terminal being used,)-.25 F .478 +(or the application using readline.)144 561.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 453.6 Q F1(mode)144 470.4 Q F0(The) -12.67 E F1(mode=)3.712 E F0 1.212(form of the)3.712 F F1($if)3.711 E F0 +(are required to isolate it.)144 573.6 Q F1(mode)144 590.4 Q F0(The) +12.67 E 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 482.4 R .565(may be used in conjunction with the)3.065 F +(mode. This)180 602.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 494.4 R F2(emacs\255standar)3.235 E +3.065 F .735(set bindings in the)180 614.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 506.4 -Q F1(term)144 523.2 Q F0(The)15.46 E 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 535.2 R +(ymaps only if readline is starting)-.05 F(out in emacs mode.)180 626.4 +Q F1(term)144 643.2 Q F0(The)15.46 E 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 655.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 547.2 Q F1(=)3.231 -E F0 .731(is tested ag)3.231 F .732(ainst the both full name of the ter\ +(wo)3.154 G .654(rd on the right side of).1 F(the)180 667.2 Q F1(=)3.232 +E F0 .732(is tested ag)3.232 F .732(ainst the both full name of the ter\ minal and the portion of the terminal)-.05 F(name before the \214rst)180 -559.2 Q F12.5 E F0 5(.T)C(his allo)-5 E(ws)-.25 E F2(sun)2.84 E F0 +679.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 576 Q F0(The)180 588 +2.5(,f).77 G(or instance.)-2.5 E F1(application)144 696 Q F0(The)180 708 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 -600 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 612 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 624 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 636 Q -(vious w)-.25 E(ord in Bash:)-.1 E F1($if)180 660 Q F0(Bash)2.5 E 2.5 -(#Q)180 672 S(uote the current or pre)-2.5 E(vious w)-.25 E(ord)-.1 E -("\\C\255xq": "\\eb\\"\\ef\\"")180 684 Q F1($endif)180 696 Q($endif)108 -712.8 Q F0(This command, as seen in the pre)9.33 E(vious e)-.25 E -(xample, terminates an)-.15 E F1($if)2.5 E F0(command.)2.5 E -(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(38)197.335 E 0 Cg EP +720 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(GNU Bash-4.2)72 768 +Q(2010 July 21)148.175 E(38)198.165 E 0 Cg EP %%Page: 39 39 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF($else)108 84 Q F0 -(Commands in this branch of the)15.45 E 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 100.8 Q F0 .357(This directi)144 112.8 R -.657 -.15(ve t)-.25 H(ak).15 E .357(es a single \214lename as an ar)-.1 -F .356(gument and reads commands and bindings from that)-.18 F 2.5 -(\214le. F)144 124.8 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 -148.8 Q F2(/etc/inputr)5.833 E(c)-.37 E F1(Sear)87 165.6 Q(ching)-.18 E -F0 .834(Readline pro)108 177.6 R .834 +-.35 E .5(particular v)180 84 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 +96 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 108 Q(vious w)-.25 E +(ord in Bash:)-.1 E/F1 10/Times-Bold@0 SF($if)180 132 Q F0(Bash)2.5 E +2.5(#Q)180 144 S(uote the current or pre)-2.5 E(vious w)-.25 E(ord)-.1 E +("\\C\255xq": "\\eb\\"\\ef\\"")180 156 Q F1($endif)180 168 Q($endif)108 +184.8 Q F0(This command, as seen in the pre)9.33 E(vious e)-.25 E +(xample, terminates an)-.15 E F1($if)2.5 E F0(command.)2.5 E F1($else) +108 201.6 Q F0(Commands in this branch of the)15.45 E 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 218.4 Q F0 .356 +(This directi)144 230.4 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 242.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 266.4 Q F2(/etc/inputr)5.833 E(c)-.37 +E F1(Sear)87 283.2 Q(ching)-.18 E F0 .835(Readline pro)108 295.2 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 189.6 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 307.2 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 206.4 R .698 +E .697(Incremental searches be)108 324 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 218.4 R .112 +.698(As each character of the)5.698 F .113 +(search string is typed, readline displays the ne)108 336 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 230.4 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 242.4 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 348 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 360 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 254.4 R .66(ariable has not been assigned a v)-.25 F .66 +(If that v)108 372 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 266.4 R .096(Control-G will abort an incremen\ -tal search and restore the original line.)5.096 F .097 -(When the search is)5.097 F(terminated, the history entry containing th\ -e search string becomes the current line.)108 278.4 Q 2.939 -.8(To \214) -108 295.2 T 1.339(nd other matching entries in the history list, type C\ -ontrol-S or Control-R as appropriate.).8 F 1.338(This will)6.338 F .674 -(search backw)108 307.2 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 319.2 R .475 -.15(ey s)-.1 -H .174 +F .097(mental search.)108 384 R .096(Control-G will abort an incrementa\ +l search and restore the original line.)5.097 F .096(When the search is) +5.096 F(terminated, the history entry containing the search string beco\ +mes the current line.)108 396 Q 2.938 -.8(To \214)108 412.8 T 1.339(nd \ +other matching entries in the history list, type Control-S or Control-R\ + as appropriate.).8 F 1.339(This will)6.339 F .675(search backw)108 +424.8 R .675(ard or forw)-.1 F .675(ard in the history for the ne)-.1 F +.674(xt entry matching the search string typed so f)-.15 F(ar)-.1 E +5.674(.A)-.55 G -.15(ny)-5.674 G .174(other k)108 436.8 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 331.2 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 -343.2 Q .653(Readline remembers the last incremental search string.)108 -360 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 372 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 448.8 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 460.8 +Q .653(Readline remembers the last incremental search string.)108 477.6 +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 489.6 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 388.8 R(The searc\ +re starting to search for matching history lines.)108 506.4 R(The searc\ h string may be typed by the user or be part of the contents of the cur\ -rent line.)108 400.8 Q F1(Readline Command Names)87 417.6 Q F0 1.392 -(The follo)108 429.6 R 1.391 +rent line.)108 518.4 Q F1(Readline Command Names)87 535.2 Q F0 1.391 +(The follo)108 547.2 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 441.6 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 453.6 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 465.6 Q F0 2.5 +3.892(ya)-.15 G(re)-3.892 E 2.622(bound. Command)108 559.2 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 571.2 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 F1(set\255mark)108 583.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 482.4 Q(or Mo)-.25 E(ving)-.1 -E(beginning\255of\255line \(C\255a\))108 494.4 Q F0(Mo)144 506.4 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 518.4 Q F0(Mo)144 530.4 Q .3 -.15 -(ve t)-.15 H 2.5(ot).15 G(he end of the line.)-2.5 E F1 -.25(fo)108 -542.4 S(rward\255char \(C\255f\)).25 E F0(Mo)144 554.4 Q .3 -.15(ve f) --.15 H(orw).15 E(ard a character)-.1 E(.)-.55 E F1 -(backward\255char \(C\255b\))108 566.4 Q F0(Mo)144 578.4 Q .3 -.15(ve b) --.15 H(ack a character).15 E(.)-.55 E F1 -.25(fo)108 590.4 S(rward\255w) -.25 E(ord \(M\255f\))-.1 E F0(Mo)144 602.4 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 614.4 Q F1(backward\255w)108 626.4 Q -(ord \(M\255b\))-.1 E F0(Mo)144 638.4 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 650.4 Q F1(shell\255f)108 662.4 -Q(orward\255w)-.25 E(ord)-.1 E F0(Mo)144 674.4 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 686.4 Q F1(shell\255backward\255w)108 698.4 Q(ord)-.1 E -F0(Mo)144 710.4 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 722.4 Q(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 -E(39)197.335 E 0 Cg EP +2.5 G(gion)-.03 E F0(.)A F1(Commands f)87 600 Q(or Mo)-.25 E(ving)-.1 E +(beginning\255of\255line \(C\255a\))108 612 Q F0(Mo)144 624 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 636 Q F0(Mo)144 648 Q .3 -.15(ve t) +-.15 H 2.5(ot).15 G(he end of the line.)-2.5 E F1 -.25(fo)108 660 S +(rward\255char \(C\255f\)).25 E F0(Mo)144 672 Q .3 -.15(ve f)-.15 H(orw) +.15 E(ard a character)-.1 E(.)-.55 E F1(backward\255char \(C\255b\))108 +684 Q F0(Mo)144 696 Q .3 -.15(ve b)-.15 H(ack a character).15 E(.)-.55 E +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(39)198.165 E 0 Cg EP %%Page: 40 40 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(clear\255scr)108 84 Q(een \(C\255l\))-.18 E -F0 .993(Clear the screen lea)144 96 R .993 +-.35 E/F1 10/Times-Bold@0 SF -.25(fo)108 84 S(rward\255w).25 E +(ord \(M\255f\))-.1 E F0(Mo)144 96 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 108 Q F1(backward\255w)108 120 Q(ord \(M\255b\)) +-.1 E F0(Mo)144 132 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 144 Q F1(shell\255f)108 156 Q +(orward\255w)-.25 E(ord)-.1 E F0(Mo)144 168 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 180 Q F1(shell\255backward\255w)108 192 Q(ord)-.1 E F0(Mo)144 +204 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 216 Q +F1(clear\255scr)108 228 Q(een \(C\255l\))-.18 E F0 .993 +(Clear the screen lea)144 240 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 108 Q F1 -.18(re)108 120 +(current line without clearing the screen.)144 252 Q F1 -.18(re)108 264 S(draw\255curr).18 E(ent\255line)-.18 E F0(Refresh the current line.)144 -132 Q F1(Commands f)87 148.8 Q(or Manipulating the History)-.25 E -(accept\255line \(Newline, Retur)108 160.8 Q(n\))-.15 E F0 .159 -(Accept the line re)144 172.8 R -.05(ga)-.15 G .159 +276 Q F1(Commands f)87 292.8 Q(or Manipulating the History)-.25 E +(accept\255line \(Newline, Retur)108 304.8 Q(n\))-.15 E F0 .158 +(Accept the line re)144 316.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.658(,a)-.65 G .158(dd it to the history list)-2.658 F .699 -(according to the state of the)144 184.8 R/F2 9/Times-Bold@0 SF +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 328.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 196.8 Q F1(pr)108 -208.8 Q -.15(ev)-.18 G(ious\255history \(C\255p\)).15 E F0 -(Fetch the pre)144 220.8 Q(vious command from the history list, mo)-.25 -E(ving back in the list.)-.15 E F1(next\255history \(C\255n\))108 232.8 -Q F0(Fetch the ne)144 244.8 Q(xt command from the history list, mo)-.15 +(restore the history line to its original state.)144 340.8 Q F1(pr)108 +352.8 Q -.15(ev)-.18 G(ious\255history \(C\255p\)).15 E F0 +(Fetch the pre)144 364.8 Q(vious command from the history list, mo)-.25 +E(ving back in the list.)-.15 E F1(next\255history \(C\255n\))108 376.8 +Q F0(Fetch the ne)144 388.8 Q(xt command from the history list, mo)-.15 E(ving forw)-.15 E(ard in the list.)-.1 E F1 -(beginning\255of\255history \(M\255<\))108 256.8 Q F0(Mo)144 268.8 Q .3 +(beginning\255of\255history \(M\255<\))108 400.8 Q F0(Mo)144 412.8 Q .3 -.15(ve t)-.15 H 2.5(ot).15 G(he \214rst line in the history)-2.5 E(.) --.65 E F1(end\255of\255history \(M\255>\))108 280.8 Q F0(Mo)144 292.8 Q +-.65 E F1(end\255of\255history \(M\255>\))108 424.8 Q F0(Mo)144 436.8 Q .3 -.15(ve t)-.15 H 2.5(ot).15 G(he end of the input history)-2.5 E 2.5 (,i)-.65 G(.e., the line currently being entered.)-2.5 E F1 -2.29 -.18 -(re v)108 304.8 T(erse\255sear).08 E(ch\255history \(C\255r\))-.18 E F0 -1.471(Search backw)144 316.8 R 1.471 -(ard starting at the current line and mo)-.1 F 1.47 +(re v)108 448.8 T(erse\255sear).08 E(ch\255history \(C\255r\))-.18 E F0 +1.47(Search backw)144 460.8 R 1.471 +(ard starting at the current line and mo)-.1 F 1.471 (ving `up' through the history as necessary)-.15 F(.)-.65 E -(This is an incremental search.)144 328.8 Q F1 -.25(fo)108 340.8 S -(rward\255sear).25 E(ch\255history \(C\255s\))-.18 E F0 1.131 -(Search forw)144 352.8 R 1.131(ard starting at the current line and mo) --.1 F 1.132(ving `do)-.15 F 1.132(wn' through the history as necessary) --.25 F(.)-.65 E(This is an incremental search.)144 364.8 Q F1 -(non\255incr)108 376.8 Q(emental\255r)-.18 E -2.3 -.15(ev e)-.18 H -(rse\255sear).15 E(ch\255history \(M\255p\))-.18 E F0 .165(Search backw) -144 388.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 400.8 S -(tring supplied by the user)-2.5 E(.)-.55 E F1(non\255incr)108 412.8 Q +(This is an incremental search.)144 472.8 Q F1 -.25(fo)108 484.8 S +(rward\255sear).25 E(ch\255history \(C\255s\))-.18 E F0 1.132 +(Search forw)144 496.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 508.8 Q F1 +(non\255incr)108 520.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 532.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 544.8 S +(tring supplied by the user)-2.5 E(.)-.55 E F1(non\255incr)108 556.8 Q (emental\255f)-.18 E(orward\255sear)-.25 E(ch\255history \(M\255n\))-.18 -E F0 1.353(Search forw)144 424.8 R 1.354(ard through the history using \ +E F0 1.354(Search forw)144 568.8 R 1.354(ard through the history using \ a non-incremental search for a string supplied by the)-.1 F(user)144 -436.8 Q(.)-.55 E F1(history\255sear)108 448.8 Q(ch\255f)-.18 E(orward) --.25 E F0 .249(Search forw)144 460.8 R .249(ard through the history for\ +580.8 Q(.)-.55 E F1(history\255sear)108 592.8 Q(ch\255f)-.18 E(orward) +-.25 E F0 .248(Search forw)144 604.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 472.8 Q(This is a non-incremental search.)5 E F1 -(history\255sear)108 484.8 Q(ch\255backward)-.18 E F0 .95(Search backw) -144 496.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 508.8 Q -(This is a non-incremental search.)5 E F1(yank\255nth\255ar)108 520.8 Q +(and the point.)144 616.8 Q(This is a non-incremental search.)5 E F1 +(history\255sear)108 628.8 Q(ch\255backward)-.18 E F0 .951(Search backw) +144 640.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 652.8 Q +(This is a non-incremental search.)5 E F1(yank\255nth\255ar)108 664.8 Q 2.5(g\()-.1 G<4dad43ad7929>-2.5 E F0 .622(Insert the \214rst ar)144 -532.8 R .622(gument to the pre)-.18 F .622 +676.8 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 .794(at point.)144 544.8 R -.4(Wi)5.794 G .794 +.622(vious line\))-.25 F .795(at point.)144 688.8 R -.4(Wi)5.795 G .794 (th an ar).4 F(gument)-.18 E/F3 10/Times-Italic@0 SF(n)3.294 E F0 3.294 (,i).24 G .794(nsert the)-3.294 F F3(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 556.8 Q .292(vious command be)-.25 F .292 +(ord from the pre)-.1 F .794(vious command \(the w)-.25 F .794 +(ords in the)-.1 F(pre)144 700.8 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 F3(n)2.791 E F0 .291(th w)B .291 -(ord from the end of)-.1 F .281(the pre)144 568.8 R .281(vious command.) --.25 F .281(Once the ar)5.281 F(gument)-.18 E F3(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 F3(n)A F0(")A(history e)144 580.8 Q -(xpansion had been speci\214ed.)-.15 E F1(yank\255last\255ar)108 592.8 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 604.8 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 616.8 S .735(th an ar).4 F -.735(gument, beha)-.18 F 1.035 -.15(ve ex)-.2 H .735(actly lik).15 F(e) --.1 E F1(yank\255nth\255ar)3.235 E(g)-.1 E F0 5.736(.S)C(uccessi)-5.736 -E 1.036 -.15(ve c)-.25 H .736(alls to).15 F F1(yank\255last\255ar)3.236 -E(g)-.1 E F0(mo)3.236 E -.15(ve)-.15 G .728 -(back through the history list, inserting the last ar)144 628.8 R .728 -(gument of each line in turn.)-.18 F .728(The history e)5.728 F(xpan-) --.15 E .14(sion f)144 640.8 R .14(acilities are used to e)-.1 F .14 -(xtract the last ar)-.15 F .14(gument, as if the "!$" history e)-.18 F -.14(xpansion had been speci-)-.15 F(\214ed.)144 652.8 Q F1 -(shell\255expand\255line \(M\255C\255e\))108 664.8 Q F0 .623 -(Expand the line as the shell does.)144 676.8 R .622 -(This performs alias and history e)5.622 F .622 -(xpansion as well as all of the)-.15 F(shell w)144 688.8 Q(ord e)-.1 E -2.5(xpansions. See)-.15 F F2(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 700.8 Q F0 .938 -(Perform history e)144 712.8 R .939(xpansion on the current line.)-.15 F -(See)5.939 E F2(HIST)3.439 E(OR)-.162 E 3.189(YE)-.315 G(XP)-3.189 E -(ANSION)-.666 E F0(belo)3.189 E 3.439(wf)-.25 G .939(or a descrip-) --3.439 F(tion of history e)144 724.8 Q(xpansion.)-.15 E(GNU Bash-4.1)72 -768 Q(2010 June 12)147.345 E(40)197.335 E 0 Cg EP +(ument inserts the).18 F F3(n)2.791 E F0 .291(th w)B .292 +(ord from the end of)-.1 F .282(the pre)144 712.8 R .282(vious command.) +-.25 F .282(Once the ar)5.282 F(gument)-.18 E F3(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 F3(n)A F0(")A(history e)144 724.8 Q +(xpansion had been speci\214ed.)-.15 E(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(40)198.165 E 0 Cg EP %%Page: 41 41 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(magic\255space)108 84 Q F0 1.627 -(Perform history e)144 96 R 1.627 -(xpansion on the current line and insert a space.)-.15 F(See)6.626 E/F2 -9/Times-Bold@0 SF(HIST)4.126 E(OR)-.162 E 3.876(YE)-.315 G(XP)-3.876 E -(ANSION)-.666 E F0(belo)144 108 Q 2.5(wf)-.25 G +-.35 E/F1 10/Times-Bold@0 SF(yank\255last\255ar)108 84 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 96 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 108 S .736(th an ar).4 F .736 +(gument, beha)-.18 F 1.036 -.15(ve ex)-.2 H .736(actly lik).15 F(e)-.1 E +F1(yank\255nth\255ar)3.235 E(g)-.1 E F0 5.735(.S)C(uccessi)-5.735 E +1.035 -.15(ve c)-.25 H .735(alls to).15 F F1(yank\255last\255ar)3.235 E +(g)-.1 E F0(mo)3.235 E -.15(ve)-.15 G .728 +(back through the history list, inserting the last ar)144 120 R .728 +(gument of each line in turn.)-.18 F .729(The history e)5.728 F(xpan-) +-.15 E .14(sion f)144 132 R .14(acilities are used to e)-.1 F .14 +(xtract the last ar)-.15 F .14(gument, as if the "!$" history e)-.18 F +.14(xpansion had been speci-)-.15 F(\214ed.)144 144 Q F1 +(shell\255expand\255line \(M\255C\255e\))108 156 Q F0 .622 +(Expand the line as the shell does.)144 168 R .622 +(This performs alias and history e)5.622 F .623 +(xpansion as well as all of the)-.15 F(shell w)144 180 Q(ord e)-.1 E 2.5 +(xpansions. See)-.15 F/F2 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 -(alias\255expand\255line)108 120 Q F0 .394(Perform alias e)144 132 R -.394(xpansion on the current line.)-.15 F(See)5.395 E F2(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 144 Q F1 -(history\255and\255alias\255expand\255line)108 156 Q F0 -(Perform history and alias e)144 168 Q(xpansion on the current line.) --.15 E F1(insert\255last\255ar)108 180 Q(gument \(M\255.)-.1 E 2.5(,M) -.833 G -1.667(\255_ \))-2.5 F F0 2.5(As)144 192 S(ynon)-2.5 E(ym for) +(history\255expand\255line \(M\255^\))108 192 Q F0 .939 +(Perform history e)144 204 R .939(xpansion on the current line.)-.15 F +(See)5.939 E F2(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 216 Q(xpansion.)-.15 E F1(magic\255space) +108 228 Q F0 1.626(Perform history e)144 240 R 1.626 +(xpansion on the current line and insert a space.)-.15 F(See)6.627 E F2 +(HIST)4.127 E(OR)-.162 E 3.877(YE)-.315 G(XP)-3.877 E(ANSION)-.666 E F0 +(belo)144 252 Q 2.5(wf)-.25 G(or a description of history e)-2.5 E +(xpansion.)-.15 E F1(alias\255expand\255line)108 264 Q F0 .395 +(Perform alias e)144 276 R .395(xpansion on the current line.)-.15 F +(See)5.395 E F2(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 288 Q F1 +(history\255and\255alias\255expand\255line)108 300 Q F0 +(Perform history and alias e)144 312 Q(xpansion on the current line.) +-.15 E F1(insert\255last\255ar)108 324 Q(gument \(M\255.)-.1 E 2.5(,M) +.833 G -1.667(\255_ \))-2.5 F F0 2.5(As)144 336 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 204 Q F0 .948 -(Accept the current line for e)144 216 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 -(history for editing.)144 228 Q(An)5 E 2.5(ya)-.15 G -.18(rg)-2.5 G +(operate\255and\255get\255next \(C\255o\))108 348 Q F0 .947 +(Accept the current line for e)144 360 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 +(history for editing.)144 372 Q(An)5 E 2.5(ya)-.15 G -.18(rg)-2.5 G (ument is ignored.).18 E F1 -(edit\255and\255execute\255command \(C\255xC\255e\))108 240 Q F0(In)144 -252 Q -.2(vo)-.4 G 1.226 -.1(ke a).2 H 3.526(ne).1 G 1.026 +(edit\255and\255execute\255command \(C\255xC\255e\))108 384 Q F0(In)144 +396 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 264 Q -.2(vo)-.4 G -.1(ke).2 G F2($VISU)2.6 E(AL) +(attempts to in)144 408 Q -.2(vo)-.4 G -.1(ke).2 G F2($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 -280.8 Q(or Changing T)-.25 E(ext)-.92 E(delete\255char \(C\255d\))108 -292.8 Q F0 .358(Delete the character at point.)144 304.8 R .358 +424.8 Q(or Changing T)-.25 E(ext)-.92 E(delete\255char \(C\255d\))108 +436.8 Q F0 .357(Delete the character at point.)144 448.8 R .358 (If point is at the be)5.358 F .358 (ginning of the line, there are no characters in the)-.15 F -(line, and the last character typed w)144 316.8 Q(as not bound to)-.1 E +(line, and the last character typed w)144 460.8 Q(as not bound to)-.1 E F1(delete\255char)2.5 E F0 2.5(,t)C(hen return)-2.5 E F2(EOF)2.5 E F3(.) -A F1(backward\255delete\255char \(Rubout\))108 328.8 Q F0 .552 -(Delete the character behind the cursor)144 340.8 R 5.553(.W)-.55 G .553 +A F1(backward\255delete\255char \(Rubout\))108 472.8 Q F0 .553 +(Delete the character behind the cursor)144 484.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 352.8 Q F1 -.25(fo)108 364.8 S -(rward\255backward\255delete\255char).25 E F0 .474 -(Delete the character under the cursor)144 376.8 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 388.8 Q F1 -(quoted\255insert \(C\255q, C\255v\))108 400.8 Q F0 .778(Add the ne)144 -412.8 R .779(xt character typed to the line v)-.15 F 3.279 +.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 496.8 Q F1 -.25(fo)108 508.8 S +(rward\255backward\255delete\255char).25 E F0 .473 +(Delete the character under the cursor)144 520.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 532.8 Q F1 +(quoted\255insert \(C\255q, C\255v\))108 544.8 Q F0 .779(Add the ne)144 +556.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.279 E F0 3.279 -(,f)C(or)-3.279 E -.15(ex)144 424.8 S(ample.).15 E F1 -(tab\255insert \(C\255v T)108 436.8 Q(AB\))-.9 E F0 -(Insert a tab character)144 448.8 Q(.)-.55 E F1 -(self\255insert \(a, b, A, 1, !, ...\))108 460.8 Q F0 -(Insert the character typed.)144 472.8 Q F1 -(transpose\255chars \(C\255t\))108 484.8 Q F0 .322 -(Drag the character before point forw)144 496.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 .321 -(ving point forw)-.15 F .321(ard as well.)-.1 F 1.182 +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 568.8 S(ample.).15 E F1 +(tab\255insert \(C\255v T)108 580.8 Q(AB\))-.9 E F0 +(Insert a tab character)144 592.8 Q(.)-.55 E F1 +(self\255insert \(a, b, A, 1, !, ...\))108 604.8 Q F0 +(Insert the character typed.)144 616.8 Q F1 +(transpose\255chars \(C\255t\))108 628.8 Q F0 .321 +(Drag the character before point forw)144 640.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 -508.8 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 520.8 Q(guments ha)-.18 E +652.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 664.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 532.8 Q(ords \(M\255t\))-.1 E F0 .024(Drag the w)144 -544.8 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 556.8 Q 2.5 -(ow)-.1 G(ords on the line.)-2.6 E F1(upcase\255w)108 568.8 Q -(ord \(M\255u\))-.1 E F0 1.698(Uppercase the current \(or follo)144 -580.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.999 -.15(ve a)-.25 H -.18(rg).15 G 1.699 -(ument, uppercase the pre).18 F(vious)-.25 E -.1(wo)144 592.8 S(rd, b).1 -E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1(do)108 604.8 Q -(wncase\255w)-.1 E(ord \(M\255l\))-.1 E F0(Lo)144 616.8 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 628.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 640.8 Q -(ord \(M\255c\))-.1 E F0 1.974(Capitalize the current \(or follo)144 -652.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.975 -(ument, capitalize the pre).18 F(vious)-.25 E -.1(wo)144 664.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 -676.8 S(rwrite\255mode).1 E F0 -.8(To)144 688.8 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 700.8 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 712.8 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 F4 -.37(re) -4.394 G(adline\(\)).37 E F0 1.894(starts in insert)4.394 F 3.968 -(mode. In)144 724.8 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 -(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(41)197.335 E 0 Cg EP +(transpose\255w)108 676.8 Q(ords \(M\255t\))-.1 E F0 .023(Drag the w)144 +688.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 700.8 Q 2.5 +(ow)-.1 G(ords on the line.)-2.6 E(GNU Bash-4.2)72 768 Q(2010 July 21) +148.175 E(41)198.165 E 0 Cg EP %%Page: 42 42 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E .958(pushing the te)144 84 R .958(xt to the right.)-.15 F .957 -(Characters bound to)5.958 F/F1 10/Times-Bold@0 SF -(backward\255delete\255char)3.457 E F0 .957(replace the character)3.457 -F(before point with a space.)144 96 Q(By def)5 E -(ault, this command is unbound.)-.1 E F1(Killing and Y)87 112.8 Q -(anking)-.85 E(kill\255line \(C\255k\))108 124.8 Q F0(Kill the te)144 -136.8 Q(xt from point to the end of the line.)-.15 E F1 -(backward\255kill\255line \(C\255x Rubout\))108 148.8 Q F0(Kill backw) -144 160.8 Q(ard to the be)-.1 E(ginning of the line.)-.15 E F1 -(unix\255line\255discard \(C\255u\))108 172.8 Q F0(Kill backw)144 184.8 +-.35 E/F1 10/Times-Bold@0 SF(upcase\255w)108 84 Q(ord \(M\255u\))-.1 E +F0 1.699(Uppercase the current \(or follo)144 96 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 108 S(rd, b).1 E(ut do not mo)-.2 E .3 -.15 +(ve p)-.15 H(oint.).15 E F1(do)108 120 Q(wncase\255w)-.1 E +(ord \(M\255l\))-.1 E F0(Lo)144 132 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 144 S(rd, b).1 E(ut do not mo)-.2 E .3 +-.15(ve p)-.15 H(oint.).15 E F1(capitalize\255w)108 156 Q +(ord \(M\255c\))-.1 E F0 1.975(Capitalize the current \(or follo)144 168 +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 180 S(rd, b).1 +E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1 -.1(ove)108 192 +S(rwrite\255mode).1 E F0 -.8(To)144 204 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 216 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 228 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/F2 10 +/Times-Italic@0 SF -.37(re)4.395 G(adline\(\)).37 E F0 1.895 +(starts in insert)4.395 F 3.969(mode. In)144 240 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 252 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 264 Q +(By def)5 E(ault, this command is unbound.)-.1 E F1(Killing and Y)87 +280.8 Q(anking)-.85 E(kill\255line \(C\255k\))108 292.8 Q F0 +(Kill the te)144 304.8 Q(xt from point to the end of the line.)-.15 E F1 +(backward\255kill\255line \(C\255x Rubout\))108 316.8 Q F0(Kill backw) +144 328.8 Q(ard to the be)-.1 E(ginning of the line.)-.15 E F1 +(unix\255line\255discard \(C\255u\))108 340.8 Q F0(Kill backw)144 352.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 196.8 Q F0 +-2.5 G(he kill-ring.)-2.5 E F1(kill\255whole\255line)108 364.8 Q F0 (Kill all characters on the current line, no matter where point is.)144 -208.8 Q F1(kill\255w)108 220.8 Q(ord \(M\255d\))-.1 E F0 .728 -(Kill from point to the end of the current w)144 232.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 244.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 256.8 Q -(ord \(M\255Rubout\))-.1 E F0(Kill the w)144 268.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 280.8 Q -(ord \(M\255d\))-.1 E F0 .729 -(Kill from point to the end of the current w)144 292.8 R .728 +376.8 Q F1(kill\255w)108 388.8 Q(ord \(M\255d\))-.1 E F0 .729 +(Kill from point to the end of the current w)144 400.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 304.8 S +(xt w)-.15 F(ord.)-.1 E -.8(Wo)144 412.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 424.8 Q +(ord \(M\255Rubout\))-.1 E F0(Kill the w)144 436.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 448.8 Q +(ord \(M\255d\))-.1 E F0 .728 +(Kill from point to the end of the current w)144 460.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 472.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 316.8 Q(ord \(M\255Rubout\))-.1 E F0 3.025(Kill the w)144 328.8 R +108 484.8 Q(ord \(M\255Rubout\))-.1 E F0 3.025(Kill the w)144 496.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 340.8 Q(ord)-.1 E F0(.)A F1(unix\255w)108 352.8 Q -(ord\255rubout \(C\255w\))-.1 E F0 .365(Kill the w)144 364.8 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 -376.8 Q F1(unix\255\214lename\255rubout)108 388.8 Q F0 .166(Kill the w) -144 400.8 R .166 +5.525 E(ward\255w)144 508.8 Q(ord)-.1 E F0(.)A F1(unix\255w)108 520.8 Q +(ord\255rubout \(C\255w\))-.1 E F0 .364(Kill the w)144 532.8 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 +544.8 Q F1(unix\255\214lename\255rubout)108 556.8 Q F0 .167(Kill the w) +144 568.8 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 412.8 Q +-.1 F .166(ord boundaries.)-.1 F(The)5.166 E(killed te)144 580.8 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 424.8 Q F0 -(Delete all spaces and tabs around point.)144 436.8 Q F1(kill\255r)108 -448.8 Q(egion)-.18 E F0(Kill the te)144 460.8 Q(xt in the current re) --.15 E(gion.)-.15 E F1(copy\255r)108 472.8 Q(egion\255as\255kill)-.18 E -F0(Cop)144 484.8 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 592.8 Q F0 +(Delete all spaces and tabs around point.)144 604.8 Q F1(kill\255r)108 +616.8 Q(egion)-.18 E F0(Kill the te)144 628.8 Q(xt in the current re) +-.15 E(gion.)-.15 E F1(copy\255r)108 640.8 Q(egion\255as\255kill)-.18 E +F0(Cop)144 652.8 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 496.8 Q(ord)-.1 E F0(Cop)144 508.8 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 520.8 -Q(ord)-.1 E F0(.)A F1(copy\255f)108 532.8 Q(orward\255w)-.25 E(ord)-.1 E -F0(Cop)144 544.8 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 556.8 Q(ord)-.1 E F0(.) -A F1(yank \(C\255y\))108 568.8 Q F0 -1(Ya)144 580.8 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 592.8 Q F0 -(Rotate the kill ring, and yank the ne)144 604.8 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 621.6 Q -(guments)-.1 E(digit\255ar)108 633.6 Q -(gument \(M\2550, M\2551, ..., M\255\255\))-.1 E F0 .642 -(Add this digit to the ar)144 645.6 R .641 -(gument already accumulating, or start a ne)-.18 F 3.141(wa)-.25 G -.18 -(rg)-3.141 G 3.141(ument. M\255\255).18 F .641(starts a ne)3.141 F(g-) --.15 E(ati)144 657.6 Q .3 -.15(ve a)-.25 H -.18(rg).15 G(ument.).18 E F1 -(uni)108 669.6 Q -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 E F0 .778 -(This is another w)144 681.6 R .779(ay to specify an ar)-.1 F 3.279 -(gument. If)-.18 F .779(this command is follo)3.279 F .779 -(wed by one or more digits,)-.25 F 1.376 -(optionally with a leading minus sign, those digits de\214ne the ar)144 -693.6 R 3.876(gument. If)-.18 F 1.376(the command is fol-)3.876 F(lo)144 -705.6 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 717.6 R .898 -(As a special case, if this command is immediately follo)5.899 F .898 -(wed by a character that is)-.25 F .243 -(neither a digit or minus sign, the ar)144 729.6 R .243 -(gument count for the ne)-.18 F .243(xt command is multiplied by four) --.15 F 5.243(.T)-.55 G(he)-5.243 E(GNU Bash-4.1)72 768 Q(2010 June 12) -147.345 E(42)197.335 E 0 Cg EP +(copy\255backward\255w)108 664.8 Q(ord)-.1 E F0(Cop)144 676.8 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 +688.8 Q(ord)-.1 E F0(.)A F1(copy\255f)108 700.8 Q(orward\255w)-.25 E +(ord)-.1 E F0(Cop)144 712.8 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 724.8 Q(ord)-.1 E F0(.)A(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(42)198.165 E 0 Cg EP %%Page: 43 43 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E(ar)144 84 Q .378(gument count is initially one, so e)-.18 F -.15 -(xe)-.15 G .378(cuting this function the \214rst time mak).15 F .378 -(es the ar)-.1 F .378(gument count)-.18 F(four)144 96 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 10/Times-Bold@0 SF(Completing)87 112.8 Q(complete \(T)108 -124.8 Q(AB\))-.9 E F0 1.137(Attempt to perform completion on the te)144 -136.8 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 148.8 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 160.8 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 +-.35 E/F1 10/Times-Bold@0 SF(yank \(C\255y\))108 84 Q F0 -1(Ya)144 96 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 108 Q F0 +(Rotate the kill ring, and yank the ne)144 120 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 136.8 Q +(guments)-.1 E(digit\255ar)108 148.8 Q +(gument \(M\2550, M\2551, ..., M\255\255\))-.1 E F0 .641 +(Add this digit to the ar)144 160.8 R .641 +(gument already accumulating, or start a ne)-.18 F 3.141(wa)-.25 G -.18 +(rg)-3.141 G 3.142(ument. M\255\255).18 F .642(starts a ne)3.142 F(g-) +-.15 E(ati)144 172.8 Q .3 -.15(ve a)-.25 H -.18(rg).15 G(ument.).18 E F1 +(uni)108 184.8 Q -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 E F0 .779 +(This is another w)144 196.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 +208.8 R 3.876(gument. If)-.18 F 1.376(the command is fol-)3.876 F(lo)144 +220.8 Q 1.17(wed by digits, e)-.25 F -.15(xe)-.15 G(cuting).15 E F1(uni) +3.67 E -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 E F0(ag)3.67 E 1.17 +(ain ends the numeric ar)-.05 F 1.17(gument, b)-.18 F 1.17(ut is other) +-.2 F(-)-.2 E .898(wise ignored.)144 232.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 .243 +(neither a digit or minus sign, the ar)144 244.8 R .243 +(gument count for the ne)-.18 F .243(xt command is multiplied by four) +-.15 F 5.242(.T)-.55 G(he)-5.242 E(ar)144 256.8 Q .378 +(gument count is initially one, so e)-.18 F -.15(xe)-.15 G .378 +(cuting this function the \214rst time mak).15 F .378(es the ar)-.1 F +.378(gument count)-.18 F(four)144 268.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 285.6 Q(complete \(T)108 297.6 Q(AB\))-.9 E F0 1.137 +(Attempt to perform completion on the te)144 309.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 321.6 Q .532(xt as a v) +-.15 F .532(ariable \(if the te)-.25 F .532(xt be)-.15 F .533(gins with) +-.15 F F1($)3.033 E F0 .533(\), username \(if the te)B .533(xt be)-.15 F +.533(gins with)-.15 F F1(~)3.033 E F0 .533(\), hostname \(if the)B(te) +144 333.6 Q .702(xt be)-.15 F .702(gins with)-.15 F F1(@)3.202 E F0 .701 +(\), or command \(including aliases and functions\) in turn.)B .701 (If none of these pro-)5.701 F -(duces a match, \214lename completion is attempted.)144 172.8 Q F1 -(possible\255completions \(M\255?\))108 184.8 Q F0 -(List the possible completions of the te)144 196.8 Q(xt before point.) --.15 E F1(insert\255completions \(M\255*\))108 208.8 Q F0 .783 -(Insert all completions of the te)144 220.8 R .783 +(duces a match, \214lename completion is attempted.)144 345.6 Q F1 +(possible\255completions \(M\255?\))108 357.6 Q F0 +(List the possible completions of the te)144 369.6 Q(xt before point.) +-.15 E F1(insert\255completions \(M\255*\))108 381.6 Q F0 .783 +(Insert all completions of the te)144 393.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 -232.8 Q F0(.)A F1(menu\255complete)108 244.8 Q F0 .928(Similar to)144 -256.8 R F1(complete)3.428 E F0 3.428(,b)C .929(ut replaces the w)-3.628 +.783(een generated by).15 F F1(possible\255com-)3.283 E(pletions)144 +405.6 Q F0(.)A F1(menu\255complete)108 417.6 Q F0 .929(Similar to)144 +429.6 R F1(complete)3.429 E F0 3.429(,b)C .929(ut replaces the w)-3.629 F .929(ord to be completed with a single match from the list of)-.1 F -1.194(possible completions.)144 268.8 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 280.8 R .828 +1.193(possible completions.)144 441.6 R 1.193(Repeated e)6.193 F -.15 +(xe)-.15 G 1.193(cution of).15 F F1(menu\255complete)3.694 E F0 1.194 +(steps through the list of possible)3.694 F .829 +(completions, inserting each match in turn.)144 453.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 292.8 R F1(bell\255style)3.227 E F0 +(\(subject to the setting of)144 465.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 304.8 R 1.73(ard in the list of matches; a ne)-.1 F +E F0(mo)3.227 E -.15(ve)-.15 G(s).15 E F2(n)3.228 E F0 1.73 +(positions forw)144 477.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 316.8 Q(This command is intended to be bound to) +E(through the list.)144 489.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 F1(menu\255complete-)108 328.8 Q(w)10 I(k)-7.22 -10 M(c) --5.56 -10 M(rd)2.78 10 M F0 .82(Identical to)144 340.8 R F1 +(ault.)-.1 E F1(menu\255complete-)108 501.6 Q(w)10 I(k)-7.22 -10 M(c) +-5.56 -10 M(rd)2.78 10 M F0 .82(Identical to)144 513.6 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 352.8 Q F0(had been gi)2.5 E -.15(ve)-.25 G 2.5 +(menu\255complete)144 525.6 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 364.8 Q F0 .234 -(Deletes the character under the cursor if not at the be)144 376.8 R +F1(delete\255char\255or\255list)108 537.6 Q F0 .234 +(Deletes the character under the cursor if not at the be)144 549.6 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 388.8 R -.15 +2.734 E F0(\).)A .425(If at the end of the line, beha)144 561.6 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 400.8 Q(ault.)-.1 E F1 -(complete\255\214lename \(M\255/\))108 412.8 Q F0 -(Attempt \214lename completion on the te)144 424.8 Q(xt before point.) --.15 E F1(possible\255\214lename\255completions \(C\255x /\))108 436.8 Q -F0(List the possible completions of the te)144 448.8 Q +(his command is unbound)-5.425 F(by def)144 573.6 Q(ault.)-.1 E F1 +(complete\255\214lename \(M\255/\))108 585.6 Q F0 +(Attempt \214lename completion on the te)144 597.6 Q(xt before point.) +-.15 E F1(possible\255\214lename\255completions \(C\255x /\))108 609.6 Q +F0(List the possible completions of the te)144 621.6 Q (xt before point, treating it as a \214lename.)-.15 E F1 -(complete\255user)108 460.8 Q(name \(M\255~\))-.15 E F0 -(Attempt completion on the te)144 472.8 Q +(complete\255user)108 633.6 Q(name \(M\255~\))-.15 E F0 +(Attempt completion on the te)144 645.6 Q (xt before point, treating it as a username.)-.15 E F1(possible\255user) -108 484.8 Q(name\255completions \(C\255x ~\))-.15 E F0 -(List the possible completions of the te)144 496.8 Q +108 657.6 Q(name\255completions \(C\255x ~\))-.15 E F0 +(List the possible completions of the te)144 669.6 Q (xt before point, treating it as a username.)-.15 E F1(complete\255v)108 -508.8 Q(ariable \(M\255$\))-.1 E F0(Attempt completion on the te)144 -520.8 Q(xt before point, treating it as a shell v)-.15 E(ariable.)-.25 E -F1(possible\255v)108 532.8 Q(ariable\255completions \(C\255x $\))-.1 E -F0(List the possible completions of the te)144 544.8 Q -(xt before point, treating it as a shell v)-.15 E(ariable.)-.25 E F1 -(complete\255hostname \(M\255@\))108 556.8 Q F0 -(Attempt completion on the te)144 568.8 Q -(xt before point, treating it as a hostname.)-.15 E F1 -(possible\255hostname\255completions \(C\255x @\))108 580.8 Q F0 -(List the possible completions of the te)144 592.8 Q -(xt before point, treating it as a hostname.)-.15 E F1 -(complete\255command \(M\255!\))108 604.8 Q F0 .58 -(Attempt completion on the te)144 616.8 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 628.8 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 640.8 Q -.15(xe)-.15 G -(cutable \214lenames, in that order).15 E(.)-.55 E F1 -(possible\255command\255completions \(C\255x !\))108 652.8 Q F0 -(List the possible completions of the te)144 664.8 Q -(xt before point, treating it as a command name.)-.15 E F1 -(dynamic\255complete\255history \(M\255T)108 676.8 Q(AB\))-.9 E F0 .424 -(Attempt completion on the te)144 688.8 R .425 -(xt before point, comparing the te)-.15 F .425(xt ag)-.15 F .425 -(ainst lines from the history list)-.05 F -(for possible completion matches.)144 700.8 Q(GNU Bash-4.1)72 768 Q -(2010 June 12)147.345 E(43)197.335 E 0 Cg EP +681.6 Q(ariable \(M\255$\))-.1 E F0(Attempt completion on the te)144 +693.6 Q(xt before point, treating it as a shell v)-.15 E(ariable.)-.25 E +F1(possible\255v)108 705.6 Q(ariable\255completions \(C\255x $\))-.1 E +F0(List the possible completions of the te)144 717.6 Q +(xt before point, treating it as a shell v)-.15 E(ariable.)-.25 E +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(43)198.165 E 0 Cg EP %%Page: 44 44 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(dab)108 84 Q(br)-.1 E -.15(ev)-.18 G -(\255expand).15 E F0 .611(Attempt menu completion on the te)144 96 R -.611(xt before point, comparing the te)-.15 F .61(xt ag)-.15 F .61 +-.35 E/F1 10/Times-Bold@0 SF(complete\255hostname \(M\255@\))108 84 Q F0 +(Attempt completion on the te)144 96 Q +(xt before point, treating it as a hostname.)-.15 E F1 +(possible\255hostname\255completions \(C\255x @\))108 108 Q F0 +(List the possible completions of the te)144 120 Q +(xt before point, treating it as a hostname.)-.15 E F1 +(complete\255command \(M\255!\))108 132 Q F0 .581 +(Attempt completion on the te)144 144 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 156 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 168 Q -.15(xe)-.15 G +(cutable \214lenames, in that order).15 E(.)-.55 E F1 +(possible\255command\255completions \(C\255x !\))108 180 Q F0 +(List the possible completions of the te)144 192 Q +(xt before point, treating it as a command name.)-.15 E F1 +(dynamic\255complete\255history \(M\255T)108 204 Q(AB\))-.9 E F0 .425 +(Attempt completion on the te)144 216 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 228 Q F1(dab)108 240 Q(br)-.1 E +-.15(ev)-.18 G(\255expand).15 E F0 .61 +(Attempt menu completion on the te)144 252 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 108 Q F1 -(complete\255into\255braces \(M\255{\))108 120 Q F0 .4(Perform \214lena\ +(tory list for possible completion matches.)144 264 Q F1 +(complete\255into\255braces \(M\255{\))108 276 Q F0 .4(Perform \214lena\ me completion and insert the list of possible completions enclosed with\ -in braces so)144 132 R(the list is a)144 144 Q -.25(va)-.2 G +in braces so)144 288 R(the list is a)144 300 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 160.8 S(yboard Macr).25 E(os)-.18 -E(start\255kbd\255macr)108 172.8 Q 2.5(o\()-.18 G(C\255x \()-2.5 E(\)) -.833 E F0(Be)144 184.8 Q(gin sa)-.15 E +-.15(ve)-.15 G(\).).15 E F1 -.25(Ke)87 316.8 S(yboard Macr).25 E(os)-.18 +E(start\255kbd\255macr)108 328.8 Q 2.5(o\()-.18 G(C\255x \()-2.5 E(\)) +.833 E F0(Be)144 340.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 196.8 Q 2.5(o\()-.18 G -(C\255x \))-2.5 E(\)).833 E F0(Stop sa)144 208.8 Q +(board macro.).15 E F1(end\255kbd\255macr)108 352.8 Q 2.5(o\()-.18 G +(C\255x \))-2.5 E(\)).833 E F0(Stop sa)144 364.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 220.8 Q 2.5(o\()-.18 G(C\255x e\))-2.5 -E F0(Re-e)144 232.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 244.8 Q -.15(ey)-.1 G(board.).15 E F1 -(Miscellaneous)87 261.6 Q -.18(re)108 273.6 S.18 E -(ead\255init\255\214le \(C\255x C\255r\))-.18 E F0 1.776 -(Read in the contents of the)144 285.6 R/F2 10/Times-Italic@0 SF(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 297.6 Q F1(abort \(C\255g\))108 309.6 Q F0 3.249 -(Abort the current editing command and ring the terminal')144 321.6 R -5.748(sb)-.55 G 3.248(ell \(subject to the setting of)-5.748 F F1 -(bell\255style)144 333.6 Q F0(\).)A F1(do\255upper)108 345.6 Q +(call\255last\255kbd\255macr)108 376.8 Q 2.5(o\()-.18 G(C\255x e\))-2.5 +E F0(Re-e)144 388.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 400.8 Q -.15(ey)-.1 G(board.).15 +E F1(Miscellaneous)87 417.6 Q -.18(re)108 429.6 S.18 E +(ead\255init\255\214le \(C\255x C\255r\))-.18 E F0 1.777 +(Read in the contents of the)144 441.6 R/F2 10/Times-Italic@0 SF(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 453.6 Q F1(abort \(C\255g\))108 465.6 Q F0 3.248 +(Abort the current editing command and ring the terminal')144 477.6 R +5.749(sb)-.55 G 3.249(ell \(subject to the setting of)-5.749 F F1 +(bell\255style)144 489.6 Q F0(\).)A F1(do\255upper)108 501.6 Q (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.755(If the meta\214ed character)144 357.6 R F2(x) -4.255 E F0 1.755(is lo)4.255 F 1.756 +C(..\))-2.5 E F0 1.756(If the meta\214ed character)144 513.6 R F2(x) +4.256 E F0 1.755(is lo)4.256 F 1.755 (wercase, run the command that is bound to the corresponding)-.25 F -(uppercase character)144 369.6 Q(.)-.55 E F1(pr)108 381.6 Q -(e\214x\255meta \(ESC\))-.18 E F0(Metafy the ne)144 393.6 Q +(uppercase character)144 525.6 Q(.)-.55 E F1(pr)108 537.6 Q +(e\214x\255meta \(ESC\))-.18 E F0(Metafy the ne)144 549.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 405.6 Q F0 -(Incremental undo, separately remembered for each line.)144 417.6 Q F1 --2.29 -.18(re v)108 429.6 T(ert\255line \(M\255r\)).08 E F0 1.095 -(Undo all changes made to this line.)144 441.6 R 1.095(This is lik)6.095 +(undo \(C\255_, C\255x C\255u\))108 561.6 Q F0 +(Incremental undo, separately remembered for each line.)144 573.6 Q F1 +-2.29 -.18(re v)108 585.6 T(ert\255line \(M\255r\)).08 E F0 1.095 +(Undo all changes made to this line.)144 597.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 453.6 Q F1 -(tilde\255expand \(M\255&\))108 465.6 Q F0(Perform tilde e)144 477.6 Q +(return the line to its initial state.)144 609.6 Q F1 +(tilde\255expand \(M\255&\))108 621.6 Q F0(Perform tilde e)144 633.6 Q (xpansion on the current w)-.15 E(ord.)-.1 E F1 -(set\255mark \(C\255@, M\255\))108 489.6 Q F0 -(Set the mark to the point.)144 501.6 Q(If a numeric ar)5 E +(set\255mark \(C\255@, M\255\))108 645.6 Q F0 +(Set the mark to the point.)144 657.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 513.6 Q F0(Sw) -144 525.6 Q .282(ap the point with the mark.)-.1 F .283 +(exchange\255point\255and\255mark \(C\255x C\255x\))108 669.6 Q F0(Sw) +144 681.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 537.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 549.6 Q(ch \(C\255]\))-.18 E F0 3.036(Ac)144 -561.6 S .536(haracter is read and point is mo)-3.036 F -.15(ve)-.15 G +2.782(dp).15 G .282(osition, and the old)-2.782 F(cursor position is sa) +144 693.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 705.6 Q(ch \(C\255]\))-.18 E F0 3.035(Ac)144 +717.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.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 573.6 Q(vious occurrences.)-.25 E F1(character\255sear)108 585.6 Q -(ch\255backward \(M\255C\255]\))-.18 E F0 3.543(Ac)144 597.6 S 1.043 -(haracter is read and point is mo)-3.543 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 --.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G -(count searches for subsequent occurrences.)144 609.6 Q F1 -(skip\255csi\255sequence \(\))108 621.6 Q F0 1.827 -(Read enough characters to consume a multi-k)144 633.6 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 645.6 R -.791(Such sequences be)5.79 F .791 -(gin with a Control Sequence Indicator \(CSI\), usually ESC\255[.)-.15 F -.332(If this sequence is bound to "\\[", k)144 657.6 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 insert\ -ing stray characters into the editing b)144 669.6 R(uf)-.2 E(fer)-.25 E -5.026(.T)-.55 G(his)-5.026 E(is unbound by def)144 681.6 Q(ault, b)-.1 E -(ut usually bound to ESC\255[.)-.2 E F1(insert\255comment \(M\255#\))108 -693.6 Q F0 -.4(Wi)144 705.6 S .481(thout a numeric ar).4 F .481 -(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 717.6 Q .097 -(ginning of the current line.)-.15 F .098(If a numeric ar)5.097 F .098 -(gument is supplied, this command acts as a toggle:)-.18 F(if)5.098 E -.322(the characters at the be)144 729.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(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(44)197.335 E 0 Cg EP +(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 729.6 Q(vious occurrences.)-.25 E(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(44)198.165 E 0 Cg EP %%Page: 45 45 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E .831(inserted, otherwise the characters in)144 84 R/F1 10 -/Times-Bold@0 SF(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 96 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 108 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 120 Q -.15 +-.35 E/F1 10/Times-Bold@0 SF(character\255sear)108 84 Q +(ch\255backward \(M\255C\255]\))-.18 E F0 3.544(Ac)144 96 S 1.044 +(haracter is read and point is mo)-3.544 F -.15(ve)-.15 G 3.544(dt).15 G +3.544(ot)-3.544 G 1.044(he pre)-3.544 F 1.044 +(vious occurrence of that character)-.25 F 6.043(.A)-.55 G(ne)-2.5 E +-.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G +(count searches for subsequent occurrences.)144 108 Q F1 +(skip\255csi\255sequence \(\))108 120 Q F0 1.826 +(Read enough characters to consume a multi-k)144 132 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 144 R .791 +(Such sequences be)5.791 F .791 +(gin with a Control Sequence Indicator \(CSI\), usually ESC\255[.)-.15 F +.331(If this sequence is bound to "\\[", k)144 156 R -.15(ey)-.1 G 2.831 +(sp).15 G .331(roducing such sequences will ha)-2.831 F .632 -.15(ve n) +-.2 H 2.832(oe).15 G -.25(ff)-2.832 G .332(ect unless e).25 F(xplic-) +-.15 E .026(itly bound to a readline command, instead of inserting stra\ +y characters into the editing b)144 168 R(uf)-.2 E(fer)-.25 E 5.026(.T) +-.55 G(his)-5.026 E(is unbound by def)144 180 Q(ault, b)-.1 E +(ut usually bound to ESC\255[.)-.2 E F1(insert\255comment \(M\255#\))108 +192 Q F0 -.4(Wi)144 204 S .48(thout a numeric ar).4 F .48(gument, the v) +-.18 F .481(alue of the readline)-.25 F F1(comment\255begin)2.981 E F0 +-.25(va)2.981 G .481(riable is inserted at the).25 F(be)144 216 Q .098 +(ginning of the current line.)-.15 F .098(If a numeric ar)5.098 F .097 +(gument is supplied, this command acts as a toggle:)-.18 F(if)5.097 E +.321(the characters at the be)144 228 R .321 +(ginning of the line do not match the v)-.15 F .321(alue of)-.25 F F1 +(comment\255begin)2.821 E F0 2.822(,t)C .322(he v)-2.822 F .322(alue is) +-.25 F .832(inserted, otherwise the characters in)144 240 R F1 +(comment\255begin)3.332 E F0 .831(are deleted from the be)3.332 F .831 +(ginning of the line.)-.15 F 1.468 +(In either case, the line is accepted as if a ne)144 252 R 1.468 +(wline had been typed.)-.25 F 1.469(The def)6.469 F 1.469(ault v)-.1 F +1.469(alue of)-.25 F F1(com-)3.969 E(ment\255begin)144 264 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 276 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 132 Q -(ord \(M\255g\))-.1 E F0 .792(The w)144 144 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 156 +(cuted by the shell.).15 E F1(glob\255complete\255w)108 288 Q +(ord \(M\255g\))-.1 E F0 .791(The w)144 300 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 312 R(pattern is used to generate a list of matching \214le names for possi\ -ble completions.)2.5 E F1(glob\255expand\255w)108 168 Q -(ord \(C\255x *\))-.1 E F0 .371(The w)144 180 R .372 -(ord before point is treated as a pattern for pathname e)-.1 F .372 +ble completions.)2.5 E F1(glob\255expand\255w)108 324 Q +(ord \(C\255x *\))-.1 E F0 .372(The w)144 336 R .372 +(ord before point is treated as a pattern for pathname e)-.1 F .371 (xpansion, and the list of matching \214le)-.15 F .516 -(names is inserted, replacing the w)144 192 R 3.016(ord. If)-.1 F 3.016 +(names is inserted, replacing the w)144 348 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 204 Q(xpansion.)-.15 E F1(glob\255list\255expansions \(C\255x g\)) -108 216 Q F0 .923(The list of e)144 228 R .923(xpansions that w)-.15 F +144 360 Q(xpansion.)-.15 E F1(glob\255list\255expansions \(C\255x g\)) +108 372 Q F0 .923(The list of e)144 384 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 240 R 3.372(wn. If)-.15 F 3.372(an)3.372 G +.872(the line is redra)144 396 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 252 S(pansion.).15 E F1(dump\255functions)108 264 Q F0 .626 -(Print all of the functions and their k)144 276 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 288 Q +(ex)144 408 S(pansion.).15 E F1(dump\255functions)108 420 Q F0 .627 +(Print all of the functions and their k)144 432 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 444 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 300 Q(ariables)-.1 E F0 -1.8(Print all of the settable readline v)144 312 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 324 R .304 +2.5 E(c)-.37 E F0(\214le.)2.5 E F1(dump\255v)108 456 Q(ariables)-.1 E F0 +1.799(Print all of the settable readline v)144 468 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 480 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(inputr)144 336 Q(c)-.37 E F0 -(\214le.)2.5 E F1(dump\255macr)108 348 Q(os)-.18 E F0 .593 -(Print all of the readline k)144 360 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 372 Q +(ay that it can be made part of an)-.1 F F2(inputr)144 492 Q(c)-.37 E F0 +(\214le.)2.5 E F1(dump\255macr)108 504 Q(os)-.18 E F0 .592 +(Print all of the readline k)144 516 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 528 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 384 Q F1(display\255shell\255v)108 396 Q -(ersion \(C\255x C\255v\))-.1 E F0(Display v)144 408 Q +(ay that it can be made part of an)-.1 F F2(inputr)3.027 E(c)-.37 E F0 +(\214le.)144 540 Q F1(display\255shell\255v)108 552 Q +(ersion \(C\255x C\255v\))-.1 E F0(Display v)144 564 Q (ersion information about the current instance of)-.15 E F1(bash)2.5 E -F0(.)A F1(Pr)87 424.8 Q(ogrammable Completion)-.18 E F0 .147(When w)108 -436.8 R .147(ord completion is attempted for an ar)-.1 F .147 +F0(.)A F1(Pr)87 580.8 Q(ogrammable Completion)-.18 E F0 .146(When w)108 +592.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 448.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 604.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 460.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 477.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 -489.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 616.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 633.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 +645.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 501.6 R .822 -(for the w)108 513.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 525.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 657.6 R .823 +(for the w)108 669.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 681.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 537.6 Q .421(wing the \214nal slash.)-.25 F .422 -(If those searches to not result in a compspec, an)5.421 F 2.922(yc)-.15 -G .422(ompspec de\214ned with the)-2.922 F F12.922 E F0(option to) -108 549.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 693.6 Q .422(wing the \214nal slash.)-.25 F .422 +(If those searches to not result in a compspec, an)5.422 F 2.921(yc)-.15 +G .421(ompspec de\214ned with the)-2.921 F F12.921 E F0(option to) +108 705.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 566.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 578.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 595.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 607.2 R .596 -(When the)5.596 F F13.096 E F0(or)3.095 E F13.095 E F0 .595 -(option is used for \214lename or directory name completion, the)3.095 F -(shell v)108 619.2 Q(ariable)-.25 E F3(FIGNORE)2.5 E F0 -(is used to \214lter the matches.)2.25 E(An)108 636 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 648 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 660 Q(ut the)-.2 E F3 -(FIGNORE)2.5 E F0 -.25(va)2.25 G(riable is used.).25 E(Ne)108 676.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 688.8 R F3(IFS)2.913 E F0 .412(special v)2.663 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 700.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 -712.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 -724.8 Q 2.17 -.15(ve u)-.15 H(nder).15 E F1 -.75(Wo)4.37 G 1.87 -(rd Splitting).75 F F0 6.87(.T)C 1.871(he results of the e)-6.87 F 1.871 -(xpansion are pre\214x-matched ag)-.15 F 1.871(ainst the w)-.05 F 1.871 -(ord being)-.1 F(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(45)197.335 -E 0 Cg EP + matching w)108 722.4 R 3.317(ords. If)-.1 F 3.317(ac)3.317 G .817 +(ompspec is not)-3.317 F(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E +(45)198.165 E 0 Cg EP %%Page: 46 46 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E(completed, and the matching w)108 84 Q -(ords become the possible completions.)-.1 E 1.238 -(After these matches ha)108 100.8 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/F1 10 -/Times-Bold@0 SF3.737 E F0(and)3.737 E F13.737 E F0 3.375 -(options is in)108 112.8 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.876 E/F3 9 -/Times-Roman@0 SF(,)A F2(COMP_POINT)5.626 E F3(,)A F2(COMP_KEY)108 124.8 -Q F3(,)A F0(and)2.408 E F2(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 136.8 S .986 -(hell function is being in)-3.485 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.986 E .609(the function or command is in)108 148.8 R -.2(vo)-.4 -G -.1(ke).2 G .608(d, the \214rst ar).1 F .608 -(gument is the name of the command whose ar)-.18 F .608(guments are)-.18 -F .073(being completed, the second ar)108 160.8 R .073(gument is the w) --.18 F .073(ord being completed, and the third ar)-.1 F .073 -(gument is the w)-.18 F .073(ord pre-)-.1 F .608(ceding the w)108 172.8 -R .607(ord being completed on the current command line.)-.1 F .607 -(No \214ltering of the generated completions)5.607 F(ag)108 184.8 Q .093 +-.35 E(found, the def)108 84 Q(ault)-.1 E/F1 10/Times-Bold@0 SF(bash)2.5 +E F0(completion as described abo)2.5 E .3 -.15(ve u)-.15 H(nder).15 E F1 +(Completing)2.5 E F0(is performed.)2.5 E .464 +(First, the actions speci\214ed by the compspec are used.)108 100.8 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 112.8 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 124.8 Q(ariable)-.25 E/F2 9/Times-Bold@0 SF(FIGNORE)2.5 E +F0(is used to \214lter the matches.)2.25 E(An)108 141.6 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 153.6 S +.554(rds generated by the pattern need not match the w).1 F .555 +(ord being completed.)-.1 F(The)5.555 E F2(GLOBIGNORE)3.055 E F0 .555 +(shell v)2.805 F(ari-)-.25 E +(able is not used to \214lter the matches, b)108 165.6 Q(ut the)-.2 E F2 +(FIGNORE)2.5 E F0 -.25(va)2.25 G(riable is used.).25 E(Ne)108 182.4 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 +194.4 R F2(IFS)2.912 E F0 .412(special v)2.662 F .412 +(ariable as delimiters.)-.25 F .412(Shell quoting is honored.)5.412 F +.413(Each w)5.412 F .413(ord is then e)-.1 F(xpanded)-.15 E .092 +(using brace e)108 206.4 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 +218.4 R 1.396(xpansion, as described abo)-.15 F 1.696 -.15(ve u)-.15 H +(nder).15 E F2(EXP)3.896 E(ANSION)-.666 E/F3 9/Times-Roman@0 SF(.)A F0 +1.396(The results are split using the rules described)5.896 F(abo)108 +230.4 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 242.4 Q +(ords become the possible completions.)-.1 E 1.237 +(After these matches ha)108 259.2 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 F13.738 E +F0(and)3.738 E F13.738 E F0 3.376(options is in)108 271.2 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(COMP_LINE)5.875 E F3(,)A F2(COMP_POINT)5.625 E F3(,)A F2 +(COMP_KEY)108 283.2 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 +295.2 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 .608 +(the function or command is in)108 307.2 R -.2(vo)-.4 G -.1(ke).2 G .608 +(d, the \214rst ar).1 F .608(gument is the name of the command whose ar) +-.18 F .609(guments are)-.18 F .073(being completed, the second ar)108 +319.2 R .073(gument is the w)-.18 F .073 +(ord being completed, and the third ar)-.1 F .073(gument is the w)-.18 F +.072(ord pre-)-.1 F .607(ceding the w)108 331.2 R .607 +(ord being completed on the current command line.)-.1 F .608 +(No \214ltering of the generated completions)5.607 F(ag)108 343.2 Q .094 (ainst the w)-.05 F .093(ord being completed is performed; the function\ or command has complete freedom in generat-)-.1 F(ing the matches.)108 -196.8 Q(An)108 213.6 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 +355.2 Q(An)108 372 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 .437 -(acilities, including)-.1 F(the)108 225.6 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 F2(COMPREPL)108 -237.6 Q(Y)-.828 E F0(array v)2.25 E(ariable.)-.25 E(Ne)108 254.4 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 266.4 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 278.4 Q(wline, if necessary)-.25 E(.)-.65 E -.377(After all of the possible completions are generated, an)108 295.2 R -2.877<798c>-.15 G .377(lter speci\214ed with the)-2.877 F F12.876 -E F0 .376(option is applied to the)2.876 F 3.181(list. The)108 307.2 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 319.2 R .523(ord being completed.)-.1 F 3.023(Al)5.523 G -(iteral)-3.023 E F1(&)3.023 E F0 .522 +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 384 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 396 +Q(Y)-.828 E F0(array v)2.25 E(ariable.)-.25 E(Ne)108 412.8 Q .08(xt, an) +-.15 F 2.58(yc)-.15 G .08(ommand speci\214ed with the)-2.58 F F1 +2.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 424.8 R .359(should print a list of completions, one\ + per line, to the standard output.)2.859 F .358(Backslash may be used) +5.359 F(to escape a ne)108 436.8 Q(wline, if necessary)-.25 E(.)-.65 E +.376(After all of the possible completions are generated, an)108 453.6 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 465.6 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 477.6 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 331.2 -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 343.2 Q -.05(ga)-.15 G +-.15 G 3.023(db).15 G(efore)-3.023 E .85(attempting a match.)108 489.6 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 501.6 Q -.05(ga)-.15 G (tes the pattern; in this case an).05 E 2.5(yc)-.15 G (ompletion not matching the pattern will be remo)-2.5 E -.15(ve)-.15 G -(d.).15 E(Finally)108 360 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 F1 -3.087 E F0(and)3.087 E F13.087 E F0 .587 +(d.).15 E(Finally)108 518.4 Q 3.086(,a)-.65 G .886 -.15(ny p)-3.086 H +.586(re\214x and suf).15 F .587(\214x speci\214ed with the)-.25 F F1 +3.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 completion code as the list of \ -possible completions.)108 372 Q .246(If the pre)108 388.8 R .247 +possible completions.)108 530.4 Q .247(If the pre)108 547.2 R .247 (viously-applied actions do not generate an)-.25 F 2.747(ym)-.15 G .247 (atches, and the)-2.747 F F1 .247(\255o dir)2.747 F(names)-.15 E F0 .247 -(option w)2.747 F .247(as supplied to)-.1 F F1(complete)108 400.8 Q F0 +(option w)2.747 F .246(as supplied to)-.1 F F1(complete)108 559.2 Q F0 (when the compspec w)2.5 E -(as de\214ned, directory name completion is attempted.)-.1 E .462 -(If the)108 417.6 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 +(as de\214ned, directory name completion is attempted.)-.1 E .461 +(If the)108 576 R F1 .462(\255o plusdirs)2.961 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 429.6 Q 2.5(ym)-.15 G -(atches are added to the results of the other actions.)-2.5 E .559 -(By def)108 446.4 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 458.4 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 470.4 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 482.4 S 3.172(sd).1 G .672 -(e\214ned, the)-3.172 F F1(bash)3.172 E F0(def)3.172 E .671 +F(pletion is attempted and an)108 588 Q 2.5(ym)-.15 G +(atches are added to the results of the other actions.)-2.5 E .56 +(By def)108 604.8 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 616.8 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 628.8 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 640.8 S 3.171(sd).1 G .671 +(e\214ned, the)-3.171 F F1(bash)3.171 E F0(def)3.171 E .671 (ault completions are attempted if the compspec generates no matches.) --.1 F .671(If the)5.671 F F13.171 E(default)108 494.4 Q F0 1.207 -(option w)3.706 F 1.207(as supplied to)-.1 F F1(complete)3.707 E F0 +-.1 F .672(If the)5.672 F F13.172 E(default)108 652.8 Q F0 1.207 +(option w)3.707 F 1.207(as supplied to)-.1 F F1(complete)3.707 E F0 1.207(when the compspec w)3.707 F 1.207(as de\214ned, readline')-.1 F -3.707(sd)-.55 G(ef)-3.707 E 1.207(ault completion)-.1 F +3.707(sd)-.55 G(ef)-3.707 E 1.206(ault completion)-.1 F (will be performed if the compspec \(and, if attempted, the def)108 -506.4 Q(ault)-.1 E F1(bash)2.5 E F0(completions\) generate no matches.) +664.8 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 523.2 R .632(tions force\ +desired, the programmable completion func-)108 681.6 R .633(tions force\ readline to append a slash to completed names which are symbolic links\ - to directories, subject)108 535.2 R 2.762(to the v)108 547.2 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 559.2 + to directories, subject)108 693.6 R 2.761(to the v)108 705.6 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 717.6 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 576 -R .191(This is most useful when used in combina-)5.191 F 1.33 -(tion with a def)108 588 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 600 R .93(xit status of 124.)-.15 F .93(If a)5.93 -F .1(shell function returns 124, and changes the compspec associated wi\ -th the command on which completion is)108 612 R .665 -(being attempted \(supplied as the \214rst ar)108 624 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 -636 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 648 Q(uilt dynamically as c\ -ompletion is attempted, rather than being loaded all at once.)-.2 E -.15 -(Fo)108 664.8 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 676.8 Q(wing def)-.25 E -(ault completion function w)-.1 E(ould load completions dynamically:)-.1 -E/F4 10/Courier@0 SF(_completion_loader\(\))108 693.6 Q({)108 705.6 Q 6 -(.")144 717.6 S -(/etc/bash_completion.d/$1.sh" >/dev/null 2>&1 && return 124)-6 E(})108 -729.6 Q F0(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(46)197.335 E 0 -Cg EP +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(46)198.165 E 0 Cg EP %%Page: 47 47 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Courier@0 SF(complete -D -F _completion_loader)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 +-.35 E .191 +(There is some support for dynamically modifying completions.)108 84 R +.19(This is most useful when used in combina-)5.191 F 1.33 +(tion with a def)108 96 R 1.33(ault completion speci\214ed with)-.1 F/F1 +10/Times-Bold@0 SF 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 108 R .93(xit status of 124.) +-.15 F .93(If a)5.93 F .1(shell function returns 124, and changes the c\ +ompspec associated with the command on which completion is)108 120 R +.666(being attempted \(supplied as the \214rst ar)108 132 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 +144 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 156 Q(uilt dynamically as c\ +ompletion is attempted, rather than being loaded all at once.)-.2 E -.15 +(Fo)108 172.8 S 2.637(ri).15 G .137 +(nstance, assuming that there is a library of compspecs, each k)-2.637 F +.137(ept in a \214le corresponding to the name of)-.1 F +(the command, the follo)108 184.8 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 201.6 Q({)108 213.6 Q 6 +(.")144 225.6 S +(/etc/bash_completion.d/$1.sh" >/dev/null 2>&1 && return 124)-6 E(})108 +237.6 Q(complete -D -F _completion_loader)108 249.6 Q/F3 10.95 +/Times-Bold@0 SF(HIST)72 278.4 Q(OR)-.197 E(Y)-.383 E F0 .371(When the) +108 290.4 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 302.4 +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 314.4 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 -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 +326.4 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 338.4 +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.815 E F5(HISTCONTR)108 184.8 Q(OL)-.27 E/F6 9/Times-Roman@0 SF(.) +(and)3.816 E F5(HISTCONTR)108 350.4 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 +108 367.2 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 +379.2 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 .532 -(lines speci\214ed by the v)108 225.6 R .532(alue of)-.25 F F5 +(lines speci\214ed by the v)108 391.2 R .532(alue of)-.25 F F5 (HISTFILESIZE)3.032 E F6(.)A F0 .532 (When the history \214le is read, lines be)5.032 F .532 -(ginning with the his-)-.15 F 1.159(tory comment character follo)108 -237.6 R 1.158(wed immediately by a digit are interpreted as timestamps \ -for the preceding)-.25 F .052(history line.)108 249.6 R .053 -(These timestamps are optionally displayed depending on the v)5.052 F -.053(alue of the)-.25 F F5(HISTTIMEFORMA)2.553 E(T)-.855 E F0 -.25(va) -108 261.6 S 4.387(riable. When).25 F 1.887(an interacti)4.387 F 2.187 +(ginning with the his-)-.15 F 1.158(tory comment character follo)108 +403.2 R 1.159(wed immediately by a digit are interpreted as timestamps \ +for the preceding)-.25 F .053(history line.)108 415.2 R .053 +(These timestamps are optionally displayed depending on the v)5.053 F +.052(alue of the)-.25 F F5(HISTTIMEFORMA)2.552 E(T)-.855 E F0 -.25(va) +108 427.2 S 4.386(riable. When).25 F 1.886(an interacti)4.386 F 2.187 -.15(ve s)-.25 H 1.887(hell e).15 F 1.887(xits, the last)-.15 F F5 ($HISTSIZE)4.387 E F0 1.887(lines are copied from the history list to) -4.137 F F5($HISTFILE)108 273.6 Q F6(.)A F0 .056(If the)4.556 F F3 +4.137 F F5($HISTFILE)108 439.2 Q F6(.)A F0 .056(If the)4.556 F F1 (histappend)2.556 E F0 .056 -(shell option is enabled \(see the description of)2.556 F F3(shopt)2.556 +(shell option is enabled \(see the description of)2.556 F F1(shopt)2.556 E F0(under)2.556 E F5 .056(SHELL B)2.556 F(UIL)-.09 E(TIN)-.828 E -(COMMANDS)108 285.6 Q F0(belo)2.672 E .422(w\), the lines are appended \ +(COMMANDS)108 451.2 Q F0(belo)2.671 E .422(w\), the lines are appended \ to the history \214le, otherwise the history \214le is o)-.25 F -.15(ve) --.15 G 2.921(rwritten. If).15 F F5(HISTFILE)108 297.6 Q F0 .435(is unse\ -t, or if the history \214le is unwritable, the history is not sa)2.684 F --.15(ve)-.2 G 2.935(d. If).15 F(the)2.935 E F5(HISTTIMEFORMA)2.935 E(T) --.855 E F0 -.25(va)108 309.6 S .917 +-.15 G 2.922(rwritten. If).15 F F5(HISTFILE)108 463.2 Q F0 .435(is unse\ +t, or if the history \214le is unwritable, the history is not sa)2.685 F +-.15(ve)-.2 G 2.934(d. If).15 F(the)2.934 E F5(HISTTIMEFORMA)2.934 E(T) +-.855 E F0 -.25(va)108 475.2 S .916 (riable is set, time stamps are written to the history \214le, mark).25 -F .916(ed with the history comment character)-.1 F 3.416(,s)-.4 G(o) --3.416 E(the)108 321.6 Q 3.082(ym)-.15 G .582(ay be preserv)-3.082 F -.582(ed across shell sessions.)-.15 F .583 +F .917(ed with the history comment character)-.1 F 3.417(,s)-.4 G(o) +-3.417 E(the)108 487.2 Q 3.083(ym)-.15 G .583(ay be preserv)-3.083 F +.583(ed across shell sessions.)-.15 F .582 (This uses the history comment character to distinguish time-)5.583 F -.987(stamps from other history lines.)108 333.6 R .987(After sa)5.987 F -.987(ving the history)-.2 F 3.486(,t)-.65 G .986 +.986(stamps from other history lines.)108 499.2 R .986(After sa)5.986 F +.986(ving the history)-.2 F 3.486(,t)-.65 G .987 (he history \214le is truncated to contain no more)-3.486 F(than)108 -345.6 Q F5(HISTFILESIZE)2.5 E F0 2.5(lines. If)2.25 F F5(HISTFILESIZE) -2.5 E F0(is not set, no truncation is performed.)2.25 E 1.293(The b)108 -362.4 R 1.293(uiltin command)-.2 F F3(fc)3.793 E F0(\(see)3.793 E F5 -1.293(SHELL B)3.793 F(UIL)-.09 E 1.293(TIN COMMANDS)-.828 F F0(belo) -3.543 E 1.294(w\) may be used to list or edit and re-)-.25 F -.15(exe) -108 374.4 S .674(cute a portion of the history list.).15 F(The)5.673 E -F3(history)3.173 E F0 -.2(bu)3.173 G .673 -(iltin may be used to display or modify the history list).2 F .279 -(and manipulate the history \214le.)108 386.4 R .279 +511.2 Q F5(HISTFILESIZE)2.5 E F0 2.5(lines. If)2.25 F F5(HISTFILESIZE) +2.5 E F0(is not set, no truncation is performed.)2.25 E 1.294(The b)108 +528 R 1.294(uiltin command)-.2 F F1(fc)3.794 E F0(\(see)3.794 E F5 1.293 +(SHELL B)3.794 F(UIL)-.09 E 1.293(TIN COMMANDS)-.828 F F0(belo)3.543 E +1.293(w\) may be used to list or edit and re-)-.25 F -.15(exe)108 540 S +.673(cute a portion of the history list.).15 F(The)5.673 E F1(history) +3.173 E F0 -.2(bu)3.173 G .673 +(iltin may be used to display or modify the history list).2 F .28 +(and manipulate the history \214le.)108 552 R .279 (When using command-line editing, search commands are a)5.279 F -.25(va) --.2 G .28(ilable in each).25 F(editing mode that pro)108 398.4 Q -(vide access to the history list.)-.15 E 1.486(The shell allo)108 415.2 -R 1.486(ws control o)-.25 F -.15(ve)-.15 G 3.986(rw).15 G 1.486 +-.2 G .279(ilable in each).25 F(editing mode that pro)108 564 Q +(vide access to the history list.)-.15 E 1.485(The shell allo)108 580.8 +R 1.485(ws control o)-.25 F -.15(ve)-.15 G 3.986(rw).15 G 1.486 (hich commands are sa)-3.986 F -.15(ve)-.2 G 3.986(do).15 G 3.986(nt) --3.986 G 1.486(he history list.)-3.986 F(The)6.485 E F5(HISTCONTR)3.985 -E(OL)-.27 E F0(and)3.735 E F5(HISTIGNORE)108 427.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 439.2 Q F0 .75 +-3.986 G 1.486(he history list.)-3.986 F(The)6.486 E F5(HISTCONTR)3.986 +E(OL)-.27 E F0(and)3.736 E F5(HISTIGNORE)108 592.8 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 F1 +(cmdhist)108 604.8 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 451.2 R 3.577(,a)-.65 G 1.077 +(the same history entry)108 616.8 R 3.577(,a)-.65 G 1.077 (dding semicolons where necessary to preserv)-3.577 F 3.577(es)-.15 G -1.077(yntactic correctness.)-3.577 F(The)6.077 E F3(lithist)3.577 E F0 -.374(shell option causes the shell to sa)108 463.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 475.2 R F3(shopt)2.818 E F0 -.2(bu)2.818 G .318 +1.077(yntactic correctness.)-3.577 F(The)6.077 E F1(lithist)3.576 E F0 +.373(shell option causes the shell to sa)108 628.8 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 640.8 R F1(shopt)2.819 E F0 -.2(bu)2.819 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 +(UIL)-.09 E .318(TIN COMMANDS)-.828 F F0 .318 (for information on setting and)2.568 F(unsetting shell options.)108 -487.2 Q F2(HIST)72 504 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 516 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 528 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 540 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 F5 2.013(SHELL B)4.513 F(UIL)-.09 E 2.013 -(TIN COMMANDS)-.828 F F0(belo)108 552 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 568.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 .21 -(commands, insert the ar)108 580.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 592.8 Q(.)-.65 E 1.163(History e)108 -609.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 621.6 S 3.2 -(rds. It).1 F(tak)3.2 E .7(es place in tw)-.1 F 3.2(op)-.1 G 3.2 -(arts. The)-3.2 F .7 -(\214rst is to determine which line from the history list to use during) -3.2 F 4.367(substitution. The)108 633.6 R 1.868(second is to select por\ -tions of that line for inclusion into the current one.)4.367 F 1.868 -(The line)6.868 F .663(selected from the history is the)108 645.6 R F4 --.15(ev)3.163 G(ent).15 E F0 3.163(,a)C .663 -(nd the portions of that line that are acted upon are)-3.163 F F4(wor) -3.162 E(ds)-.37 E F0 5.662(.V)C(arious)-6.772 E F4(modi\214er)108 657.6 -Q(s)-.1 E F0 .226(are a)2.726 F -.25(va)-.2 G .226 -(ilable to manipulate the selected w).25 F 2.726(ords. The)-.1 F .227 -(line is brok)2.726 F .227(en into w)-.1 F .227(ords in the same f)-.1 F -(ashion)-.1 E .352(as when reading input, so that se)108 669.6 R -.15 -(ve)-.25 G(ral).15 E F4(metac)2.852 E(har)-.15 E(acter)-.15 E F0 .351 -(-separated w)B .351(ords surrounded by quotes are considered)-.1 F .624 -(one w)108 681.6 R 3.124(ord. History)-.1 F -.15(ex)3.124 G .624 -(pansions are introduced by the appearance of the history e).15 F .625 -(xpansion character)-.15 F 3.125(,w)-.4 G(hich)-3.125 E(is)108 693.6 Q -F3(!)3.333 E F0(by def)3.333 E 2.5(ault. Only)-.1 F(backslash \()2.5 E -F3(\\).833 E F0 2.5(\)a).833 G(nd single quotes can quote the history e) --2.5 E(xpansion character)-.15 E(.)-.55 E(Se)108 710.4 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 722.4 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(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(47)197.335 E 0 Cg EP +652.8 Q F3(HIST)72 669.6 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 681.6 R .611 +(xpansion feature that is similar to the history e)-.15 F .611 +(xpansion in)-.15 F F1(csh.)3.111 E F0 .611(This section)5.611 F .871 +(describes what syntax features are a)108 693.6 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 705.6 R F1(+H)4.514 E F0 2.014 +(option to the)4.514 F F1(set)4.514 E F0 -.2(bu)4.514 G 2.014 +(iltin command \(see).2 F F5 2.014(SHELL B)4.514 F(UIL)-.09 E 2.014 +(TIN COMMANDS)-.828 F F0(belo)108 717.6 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(GNU Bash-4.2)72 768 Q(2010 July 21) +148.175 E(47)198.165 E 0 Cg EP %%Page: 48 48 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E(will also inhibit e)108 84 Q(xpansion.)-.15 E(Se)108 100.8 Q -.15 -(ve)-.25 G .11(ral shell options settable with the).15 F/F1 10 -/Times-Bold@0 SF(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 112.8 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.643 E .461(being used, h\ -istory substitutions are not immediately passed to the shell parser)108 -124.8 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 136.8 R F1 -.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 F1 -.18(re)4.016 G -(adline).18 E F0 1.516(is being used, and the)4.016 F F1(histr)108 148.8 +-.35 E 1.306(History e)108 84 R 1.306(xpansions introduce w)-.15 F 1.306 +(ords from the history list into the input stream, making it easy to re\ +peat)-.1 F .209(commands, insert the ar)108 96 R .209(guments to a pre) +-.18 F .21 +(vious command into the current input line, or \214x errors in pre)-.25 +F(vious)-.25 E(commands quickly)108 108 Q(.)-.65 E 1.164(History e)108 +124.8 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 136.8 S 3.2 +(rds. It).1 F(tak)3.2 E .7(es place in tw)-.1 F 3.2(op)-.1 G 3.2 +(arts. The)-3.2 F .7 +(\214rst is to determine which line from the history list to use during) +3.2 F 4.368(substitution. The)108 148.8 R 1.868(second is to select por\ +tions of that line for inclusion into the current one.)4.368 F 1.867 +(The line)6.867 F .662(selected from the history is the)108 160.8 R/F1 +10/Times-Italic@0 SF -.15(ev)3.162 G(ent).15 E F0 3.162(,a)C .663 +(nd the portions of that line that are acted upon are)-3.162 F F1(wor) +3.163 E(ds)-.37 E F0 5.663(.V)C(arious)-6.773 E F1(modi\214er)108 172.8 +Q(s)-.1 E F0 .227(are a)2.727 F -.25(va)-.2 G .227 +(ilable to manipulate the selected w).25 F 2.727(ords. The)-.1 F .226 +(line is brok)2.726 F .226(en into w)-.1 F .226(ords in the same f)-.1 F +(ashion)-.1 E .351(as when reading input, so that se)108 184.8 R -.15 +(ve)-.25 G(ral).15 E F1(metac)2.852 E(har)-.15 E(acter)-.15 E F0 .352 +(-separated w)B .352(ords surrounded by quotes are considered)-.1 F .625 +(one w)108 196.8 R 3.125(ord. History)-.1 F -.15(ex)3.125 G .624 +(pansions are introduced by the appearance of the history e).15 F .624 +(xpansion character)-.15 F 3.124(,w)-.4 G(hich)-3.124 E(is)108 208.8 Q +/F2 10/Times-Bold@0 SF(!)3.333 E F0(by def)3.333 E 2.5(ault. Only)-.1 F +(backslash \()2.5 E F2(\\).833 E F0 2.5(\)a).833 G +(nd single quotes can quote the history e)-2.5 E(xpansion character)-.15 +E(.)-.55 E(Se)108 225.6 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 237.6 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 F2(=)3.162 E F0 5.662(.I)C 3.162(ft)-5.662 G(he)-3.162 E F2 +(extglob)3.162 E F0 .662(shell option is enabled,)3.162 F F2(\()3.162 E +F0(will also inhibit e)108 249.6 Q(xpansion.)-.15 E(Se)108 266.4 Q -.15 +(ve)-.25 G .109(ral shell options settable with the).15 F F2(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 278.4 R F2 +(histv)3.643 E(erify)-.1 E F0 1.143 +(shell option is enabled \(see the description of the)3.643 F F2(shopt) +3.643 E F0 -.2(bu)3.643 G 1.143(iltin belo).2 F 1.143(w\), and)-.25 F F2 +-.18(re)3.643 G(adline).18 E F0(is)3.642 E .461(being used, history sub\ +stitutions are not immediately passed to the shell parser)108 290.4 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 302.4 R F2 -.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 F2 -.18(re)4.015 G +(adline).18 E F0 1.515(is being used, and the)4.015 F F2(histr)108 314.4 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 160.8 S -.25(ff).2 G -1.16(er for correction.).25 F(The)6.16 E F13.66 E F0 1.16 -(option to the)3.66 F F1(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 172.8 -S .056(pansion will do before using it.).15 F(The)5.056 E F12.556 -E F0 .056(option to the)2.556 F F1(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 184.8 Q -.15(xe)-.15 G +(ailed history substitution will be reloaded into the)-.1 F F2 -.18(re) +3.702 G(adline).18 E F0(editing)3.702 E -.2(bu)108 326.4 S -.25(ff).2 G +1.161(er for correction.).25 F(The)6.161 E F23.661 E F0 1.161 +(option to the)3.661 F F2(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 338.4 +S .055(pansion will do before using it.).15 F(The)5.055 E F22.555 +E F0 .055(option to the)2.555 F F2(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 350.4 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 201.6 R 2.2 +(ilable for subsequent recall.).25 E 2.2(The shell allo)108 367.2 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.147(description of)108 -213.6 R F1(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 +-.25 F 2.2(xpansion mechanism \(see the)-.15 F 1.146(description of)108 +379.2 R F2(histchars)3.646 E F0(abo)3.646 E 1.446 -.15(ve u)-.15 H(nder) +.15 E F2 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 225.6 Q F1 -(Ev)87 242.4 Q(ent Designators)-.1 E F0(An e)108 254.4 Q -.15(ve)-.25 G -(nt designator is a reference to a command line entry in the history li\ -st.).15 E F1(!)108 271.2 Q F0 1.607(Start a history substitution, e) -32.67 F 1.607(xcept when follo)-.15 F 1.607(wed by a)-.25 F F1(blank) -4.107 E F0 4.107(,n)C -.25(ew)-4.107 G 1.608 -(line, carriage return, = or \().25 F(\(when the)144 283.2 Q F1(extglob) -2.5 E F0(shell option is enabled using the)2.5 E F1(shopt)2.5 E F0 -.2 -(bu)2.5 G(iltin\).).2 E F1(!)108 295.2 Q/F2 10/Times-Italic@0 SF(n)A F0 -(Refer to command line)27.67 E F2(n)2.5 E F0(.).24 E F1<21ad>108 307.2 Q -F2(n)A F0(Refer to the current command line minus)21.97 E F2(n)2.5 E F0 -(.).24 E F1(!!)108 319.2 Q F0(Refer to the pre)29.34 E(vious command.) --.25 E(This is a synon)5 E(ym for `!\2551'.)-.15 E F1(!)108 331.2 Q F2 -(string)A F0(Refer to the most recent command starting with)9.33 E F2 -(string)2.5 E F0(.).22 E F1(!?)108 343.2 Q F2(string)A F1([?])A F0 1.022 -(Refer to the most recent command containing)144 355.2 R F2(string)3.522 -E F0 6.022(.T).22 G 1.022(he trailing)-6.022 F F1(?)3.522 E F0 1.022 -(may be omitted if)3.522 F F2(string)3.861 E F0(is)3.741 E(follo)144 -367.2 Q(wed immediately by a ne)-.25 E(wline.)-.25 E/F3 12/Times-Bold@0 -SF(^)108 384.2 Q F2(string1)-5 I F3(^)5 I F2(string2)-5 I F3(^)5 I F0 -2.629(Quick substitution.)144 391.2 R 2.629 -(Repeat the last command, replacing)7.629 F F2(string1)5.469 E F0(with) -5.129 E F2(string2)5.129 E F0 7.629(.E).02 G(qui)-7.629 E -.25(va)-.25 G -2.63(lent to).25 F -.74(``)144 403.2 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 415.2 Q F0 -(The entire command line typed so f)27.67 E(ar)-.1 E(.)-.55 E F1 -.75 -(Wo)87 432 S(rd Designators).75 E F0 -.8(Wo)108 444 S 1.314 +(mark history timestamps when writing the history \214le.)108 391.2 Q F2 +(Ev)87 408 Q(ent Designators)-.1 E F0(An e)108 420 Q -.15(ve)-.25 G(nt \ +designator is a reference to a command line entry in the history list.) +.15 E F2(!)108 436.8 Q F0 1.608(Start a history substitution, e)32.67 F +1.608(xcept when follo)-.15 F 1.607(wed by a)-.25 F F2(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 448.8 Q F2(extglob)2.5 E F0 +(shell option is enabled using the)2.5 E F2(shopt)2.5 E F0 -.2(bu)2.5 G +(iltin\).).2 E F2(!)108 460.8 Q F1(n)A F0(Refer to command line)27.67 E +F1(n)2.5 E F0(.).24 E F2<21ad>108 472.8 Q F1(n)A F0 +(Refer to the current command line minus)21.97 E F1(n)2.5 E F0(.).24 E +F2(!!)108 484.8 Q F0(Refer to the pre)29.34 E(vious command.)-.25 E +(This is a synon)5 E(ym for `!\2551'.)-.15 E F2(!)108 496.8 Q F1(string) +A F0(Refer to the most recent command starting with)9.33 E F1(string)2.5 +E F0(.).22 E F2(!?)108 508.8 Q F1(string)A F2([?])A F0 1.022 +(Refer to the most recent command containing)144 520.8 R F1(string)3.522 +E F0 6.022(.T).22 G 1.022(he trailing)-6.022 F F2(?)3.522 E F0 1.022 +(may be omitted if)3.522 F F1(string)3.862 E F0(is)3.742 E(follo)144 +532.8 Q(wed immediately by a ne)-.25 E(wline.)-.25 E/F3 12/Times-Bold@0 +SF(^)108 549.8 Q F1(string1)-5 I F3(^)5 I F1(string2)-5 I F3(^)5 I F0 +2.63(Quick substitution.)144 556.8 R 2.629 +(Repeat the last command, replacing)7.629 F F1(string1)5.469 E F0(with) +5.129 E F1(string2)5.129 E F0 7.629(.E).02 G(qui)-7.629 E -.25(va)-.25 G +2.629(lent to).25 F -.74(``)144 568.8 S(!!:s/).74 E F1(string1)A F0(/)A +F1(string2)A F0(/')A 2.5('\()-.74 G(see)-2.5 E F2(Modi\214ers)2.5 E F0 +(belo)2.5 E(w\).)-.25 E F2(!#)108 580.8 Q F0 +(The entire command line typed so f)27.67 E(ar)-.1 E(.)-.55 E F2 -.75 +(Wo)87 597.6 S(rd Designators).75 E F0 -.8(Wo)108 609.6 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 456 R .529(ord designator)-.1 F 5.529(.I)-.55 G +-.1 F -.15(ve)-.25 G 3.814(nt. A).15 F F2(:)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 621.6 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 468 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 480 Q F1 -2.5(0\()108 496.8 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 508.8 Q +(ord designator be)-.1 F .529(gins with a)-.15 F F2(^)3.029 E F0(,)A F2 +($)3.029 E F0(,)A F2(*)3.029 E F0(,)A F23.029 E F0 3.029(,o)C(r) +-3.029 E F2(%)3.029 E F0 5.529(.W)C(ords)-6.329 E 1.3 +(are numbered from the be)108 633.6 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 645.6 Q +F2 2.5(0\()108 662.4 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 674.4 Q 2.5(ord. F)-.1 F(or the shell, this is the command w)-.15 E(ord.)-.1 E -F2(n)108.36 520.8 Q F0(The)30.64 E F2(n)2.5 E F0(th w)A(ord.)-.1 E F1(^) -108 532.8 Q F0(The \214rst ar)32.67 E 2.5(gument. That)-.18 F(is, w)2.5 -E(ord 1.)-.1 E F1($)108 544.8 Q F0(The last ar)31 E(gument.)-.18 E F1(%) -108 556.8 Q F0(The w)26 E(ord matched by the most recent `?)-.1 E F2 -(string)A F0(?' search.)A F2(x)108.77 568.8 Q F1A F2(y)A F0 2.5(Ar) -20.65 G(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 580.8 Q F0 .315 -(All of the w)31 F .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.816 E F0 .316 -(if there is)2.816 F(just one w)144 592.8 Q(ord in the e)-.1 E -.15(ve) --.25 G(nt; the empty string is returned in that case.).15 E F1(x*)108 -604.8 Q F0(Abbre)26 E(viates)-.25 E F2(x\255$)2.5 E F0(.)A F1<78ad>108 -616.8 Q F0(Abbre)25.3 E(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 633.6 Q(ord designator is supplied without an e)-.1 E -.15(ve)-.25 G -(nt speci\214cation, the pre).15 E(vious command is used as the e)-.25 E --.15(ve)-.25 G(nt.).15 E F1(Modi\214ers)87 650.4 Q F0 .184 -(After the optional w)108 662.4 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 674.4 Q F1(h) -108 691.2 Q F0(Remo)30.44 E .3 -.15(ve a t)-.15 H -(railing \214le name component, lea).15 E(ving only the head.)-.2 E F1 -(t)108 703.2 Q F0(Remo)32.67 E .3 -.15(ve a)-.15 H -(ll leading \214le name components, lea).15 E(ving the tail.)-.2 E F1(r) -108 715.2 Q F0(Remo)31.56 E .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(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E -(48)197.335 E 0 Cg EP +F1(n)108.36 686.4 Q F0(The)30.64 E F1(n)2.5 E F0(th w)A(ord.)-.1 E F2(^) +108 698.4 Q F0(The \214rst ar)32.67 E 2.5(gument. That)-.18 F(is, w)2.5 +E(ord 1.)-.1 E F2($)108 710.4 Q F0(The last ar)31 E(gument.)-.18 E +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(48)198.165 E 0 Cg EP %%Page: 49 49 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(e)108 84 Q F0(Remo)31.56 E .3 -.15(ve a) --.15 H(ll b).15 E(ut the trailing suf)-.2 E(\214x.)-.25 E F1(p)108 96 Q -F0(Print the ne)30.44 E 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 108 Q F0(Quote the substituted w) -30.44 E(ords, escaping further substitutions.)-.1 E F1(x)108 120 Q F0 -(Quote the substituted w)31 E(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 132 Q/F2 10/Times-Italic@0 SF(old)A F1(/)A F2 -(ne)A(w)-.15 E F1(/)A F0(Substitute)144 144 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 +-.35 E/F1 10/Times-Bold@0 SF(%)108 84 Q F0(The w)26 E +(ord matched by the most recent `?)-.1 E/F2 10/Times-Italic@0 SF(string) +A F0(?' search.)A F2(x)108.77 96 Q F1A F2(y)A F0 2.5(Ar)20.65 G +(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 108 Q F0 .316 +(All of the w)31 F .316(ords b)-.1 F .316(ut the zeroth.)-.2 F .315 +(This is a synon)5.315 F .315(ym for `)-.15 F F2(1\255$)A F0 2.815 +('. It)B .315(is not an error to use)2.815 F F1(*)2.815 E F0 .315 +(if there is)2.815 F(just one w)144 120 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 +132 Q F0(Abbre)26 E(viates)-.25 E F2(x\255$)2.5 E F0(.)A F1<78ad>108 144 +Q F0(Abbre)25.3 E(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 +160.8 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 177.6 Q F0 .183 +(After the optional w)108 189.6 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 201.6 Q F1(h) +108 218.4 Q F0(Remo)30.44 E .3 -.15(ve a t)-.15 H +(railing \214le name component, lea).15 E(ving only the head.)-.2 E F1 +(t)108 230.4 Q F0(Remo)32.67 E .3 -.15(ve a)-.15 H +(ll leading \214le name components, lea).15 E(ving the tail.)-.2 E F1(r) +108 242.4 Q F0(Remo)31.56 E .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 254.4 Q F0(Remo)31.56 E .3 -.15(ve a) +-.15 H(ll b).15 E(ut the trailing suf)-.2 E(\214x.)-.25 E F1(p)108 266.4 +Q F0(Print the ne)30.44 E 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 278.4 Q F0 +(Quote the substituted w)30.44 E(ords, escaping further substitutions.) +-.1 E F1(x)108 290.4 Q F0(Quote the substituted w)31 E(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 302.4 Q F2(old)A F1(/)A +F2(ne)A(w)-.15 E F1(/)A F0(Substitute)144 314.4 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 .617(of /.)144 -156 R .617 +(yd)-.15 G .221(elimiter can be used in place)-2.721 F .616(of /.)144 +326.4 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 168 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 +5.616 F -.15(ve)-.25 G .617(nt line.).15 F .617(The delimiter may)5.617 +F .666(be quoted in)144 338.4 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 180 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 192 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 204 Q F0(Repeat the pre)27.67 E(vious substitution.)-.25 E F1(g)108 -216 Q F0 .397(Cause changes to be applied o)31 F -.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 228 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 240 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 252 Q F0(.)A -F1(G)108 264 Q F0(Apply the follo)28.22 E(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 280.8 Q(UIL)-.11 E -(TIN COMMANDS)-1.007 E F0 .063(Unless otherwise noted, each b)108 292.8 +F0 5.666(.A).77 G .274(single backslash will quote the &.)144 350.4 R +(If)5.274 E F2(old)3.004 E F0 .274(is null, it is set to the last)3.544 +F F2(old)3.005 E F0 .275(substituted, or)3.545 F 2.775(,i)-.4 G 2.775 +(fn)-2.775 G 2.775(op)-2.775 G(re)-2.775 E(vi-)-.25 E +(ous history substitutions took place, the last)144 362.4 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 374.4 Q F0(Repeat the pre)27.67 E(vious substitution.)-.25 E F1 +(g)108 386.4 Q F0 .398(Cause changes to be applied o)31 F -.15(ve)-.15 G +2.898(rt).15 G .398(he entire e)-2.898 F -.15(ve)-.25 G .398(nt line.) +.15 F .397(This is used in conjunction with `)5.398 F F1(:s)A F0 2.897 +('\()C(e.g.,)-2.897 E(`)144 398.4 Q F1(:gs/)A F2(old)A F1(/)A F2(ne)A(w) +-.15 E F1(/)A F0 1.218('\) or `)B F1(:&)A F0 3.718('. If)B 1.218 +(used with `)3.718 F F1(: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 410.4 R +-.15(ve)-.25 G .089(nt line.).15 F(An)5.089 E F1(a)2.589 E F0 .089 +(may be used as a synon)2.589 F .089(ym for)-.15 F F1(g)144 422.4 Q F0 +(.)A F1(G)108 434.4 Q F0(Apply the follo)28.22 E(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 451.2 Q(UIL)-.11 E +(TIN COMMANDS)-1.007 E F0 .062(Unless otherwise noted, each b)108 463.2 R .062(uiltin command documented in this section as accepting options p\ -receded by)-.2 F F1108 304.8 Q F0(accepts)2.533 E F12.533 E F0 -.034(to signify the end of the options.)2.533 F(The)5.034 E F1(:)2.534 E +receded by)-.2 F F1108 475.2 Q F0(accepts)2.534 E F12.534 E F0 +.034(to signify the end of the options.)2.534 F(The)5.034 E F1(:)2.534 E F0(,)A F1(true)2.534 E F0(,)A F1(false)2.534 E F0 2.534(,a)C(nd)-2.534 E -F1(test)2.534 E F0 -.2(bu)2.534 G .034(iltins do not accept options and) -.2 F .078(do not treat)108 316.8 R F12.577 E F0(specially)2.577 E +F1(test)2.534 E F0 -.2(bu)2.534 G .033(iltins do not accept options and) +.2 F .077(do not treat)108 487.2 R F12.577 E F0(specially)2.577 E 5.077(.T)-.65 G(he)-5.077 E F1(exit)2.577 E F0(,)A F1(logout)2.577 E F0 (,)A F1(br)2.577 E(eak)-.18 E F0(,)A F1(continue)2.577 E F0(,)A F1(let) 2.577 E F0 2.577(,a)C(nd)-2.577 E F1(shift)2.577 E F0 -.2(bu)2.577 G -.077(iltins accept and process ar).2 F(gu-)-.18 E .319(ments be)108 -328.8 R .319(ginning with)-.15 F F12.819 E F0 .319 -(without requiring)2.819 F F12.819 E F0 5.319(.O)C .319(ther b) --5.319 F .319(uiltins that accept ar)-.2 F .32(guments b)-.18 F .32 -(ut are not speci\214ed as)-.2 F 1.144(accepting options interpret ar) -108 340.8 R 1.144(guments be)-.18 F 1.144(ginning with)-.15 F F1 +.077(iltins accept and process ar).2 F(gu-)-.18 E .32(ments be)108 499.2 +R .32(ginning with)-.15 F F12.82 E F0 .32(without requiring)2.82 F +F12.82 E F0 5.319(.O)C .319(ther b)-5.319 F .319 +(uiltins that accept ar)-.2 F .319(guments b)-.18 F .319 +(ut are not speci\214ed as)-.2 F 1.143(accepting options interpret ar) +108 511.2 R 1.143(guments be)-.18 F 1.143(ginning with)-.15 F F1 3.643 E F0 1.143(as in)3.643 F -.25(va)-.4 G 1.143 -(lid options and require).25 F F13.643 E F0 1.143(to pre)3.643 F --.15(ve)-.25 G 1.143(nt this).15 F(interpretation.)108 352.8 Q F1(:)108 -370.8 Q F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A .451(No ef)144 382.8 R -.451(fect; the command does nothing be)-.25 F .452(yond e)-.15 F -(xpanding)-.15 E F2(ar)3.282 E(guments)-.37 E F0 .452(and performing an) -3.222 F 2.952(ys)-.15 G(peci\214ed)-2.952 E 2.5(redirections. A)144 -394.8 R(zero e)2.5 E(xit code is returned.)-.15 E F1(.)110.5 411.6 Q F2 +(lid options and require).25 F F13.644 E F0 1.144(to pre)3.644 F +-.15(ve)-.25 G 1.144(nt this).15 F(interpretation.)108 523.2 Q F1(:)108 +541.2 Q F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A .452(No ef)144 553.2 R +.452(fect; the command does nothing be)-.25 F .452(yond e)-.15 F +(xpanding)-.15 E F2(ar)3.282 E(guments)-.37 E F0 .451(and performing an) +3.221 F 2.951(ys)-.15 G(peci\214ed)-2.951 E 2.5(redirections. A)144 +565.2 R(zero e)2.5 E(xit code is returned.)-.15 E F1(.)110.5 582 Q F2 (\214lename)6.666 E F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A F1(sour)108 -423.6 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 435.6 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.68(status of the last command e)144 447.6 R -.15(xe)-.15 G -1.68(cuted from).15 F F2(\214lename)4.18 E F0 6.68(.I).18 G(f)-6.68 E F2 -(\214lename)6.09 E F0 1.68(does not contain a slash, \214le)4.36 F .608 -(names in)144 459.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 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 .832(need not be e)144 471.6 -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 483.6 R F4 -.666(PA)3.481 G(TH)-.189 E/F5 9 +594 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 606 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.68 +(status of the last command e)144 618 R -.15(xe)-.15 G 1.68(cuted from) +.15 F F2(\214lename)4.18 E F0 6.68(.I).18 G(f)-6.68 E F2(\214lename)6.09 +E F0 1.68(does not contain a slash, \214le)4.36 F .608(names in)144 630 +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 642 R -.15(xe)-.15 G 3.333 +(cutable. When).15 F F1(bash)3.333 E F0 .832(is not in)3.333 F F2 .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 654 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 -495.6 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 507.6 Q F0 .342(is e)2.842 F -.15(xe)-.15 G 2.842 -(cuted. Otherwise).15 F .342(the positional parameters are unchanged.) -2.842 F .341(The return status is the)5.341 F .716 -(status of the last command e)144 519.6 R .716 +(iltin command is turned of).2 F .982(f, the)-.25 F F4 -.666(PA)144 666 +S(TH)-.189 E F0 .112(is not searched.)2.363 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 678 Q F0 .341(is e)2.841 F -.15(xe)-.15 G 2.841 +(cuted. Otherwise).15 F .341(the positional parameters are unchanged.) +2.841 F .342(The return status is the)5.342 F .716 +(status of the last command e)144 690 R .716 (xited within the script \(0 if no commands are e)-.15 F -.15(xe)-.15 G -.716(cuted\), and f).15 F .716(alse if)-.1 F F2(\214lename)145.91 531.6 -Q F0(is not found or cannot be read.)2.68 E F1(alias)108 548.4 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 560.4 Q F0 2.725(with no ar)5.225 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.224 E -F2(name)144 572.4 Q F0(=)A F2(value)A F0 .58(on standard output.)3.08 F -.58(When ar)5.58 F .58 -(guments are supplied, an alias is de\214ned for each)-.18 F F2(name) -3.08 E F0(whose)144 584.4 Q F2(value)2.895 E F0 .395(is gi)2.895 F -.15 -(ve)-.25 G 2.895(n. A).15 F .395(trailing space in)2.895 F F2(value) -5.395 E F0 .395(causes the ne)2.895 F .395(xt w)-.15 F .395 -(ord to be check)-.1 F .395(ed for alias sub-)-.1 F .054 -(stitution when the alias is e)144 596.4 R 2.554(xpanded. F)-.15 F .054 -(or each)-.15 F F2(name)2.554 E F0 .054(in the ar)2.554 F .054 -(gument list for which no)-.18 F F2(value)2.554 E F0 .054(is sup-)2.554 -F 1.314(plied, the name and v)144 608.4 R 1.314 -(alue of the alias is printed.)-.25 F F1(Alias)6.314 E F0 1.314 -(returns true unless a)3.814 F F2(name)3.814 E F0 1.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 620.4 Q F1(bg)108 637.2 Q F0([) -2.5 E F2(jobspec)A F0(...])2.5 E .744(Resume each suspended job)144 -649.2 R F2(jobspec)3.244 E F0 .745 -(in the background, as if it had been started with)3.244 F F1(&)3.245 E -F0 5.745(.I)C(f)-5.745 E F2(job-)4.985 E(spec)144 661.2 Q F0 .672 -(is not present, the shell')3.482 F 3.172(sn)-.55 G .672(otion of the) --3.172 F F2(curr)3.172 E .672(ent job)-.37 F F0 .672(is used.)3.172 F F1 -(bg)5.671 E F2(jobspec)4.911 E F0 .671(returns 0 unless run)3.481 F .418 -(when job control is disabled or)144 673.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 F2(jobspec)2.919 E F0 -.1(wa)2.919 G 2.919(sn).1 G -(ot)-2.919 E(found or w)144 685.2 Q(as started without job control.)-.1 -E F1(bind)108 702 Q F0([)2.5 E F1A F2 -.1(ke)2.5 G(ymap)-.2 E F0 -2.5(][)C F1(\255lpsvPSV)-2.5 E F0(])A(GNU Bash-4.1)72 768 Q -(2010 June 12)147.345 E(49)197.335 E 0 Cg EP +.716(cuted\), and f).15 F .715(alse if)-.1 F F2(\214lename)145.91 702 Q +F0(is not found or cannot be read.)2.68 E(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(49)198.165 E 0 Cg EP %%Page: 50 50 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(bind)108 84 Q F0([)2.5 E F1A/F2 10 -/Times-Italic@0 SF -.1(ke)2.5 G(ymap)-.2 E F0 2.5(][)C F1-2.5 E F2 +-.35 E/F1 10/Times-Bold@0 SF(alias)108 84 Q F0([)2.5 E F1A 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 F1(Alias)144 96 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 108 Q F0(=)A F2(value)A F0 .58(on standard output.)3.08 F +.58(When ar)5.58 F .58 +(guments are supplied, an alias is de\214ned for each)-.18 F F2(name) +3.08 E F0(whose)144 120 Q F2(value)2.895 E F0 .395(is gi)2.895 F -.15 +(ve)-.25 G 2.895(n. A).15 F .395(trailing space in)2.895 F F2(value) +5.395 E F0 .395(causes the ne)2.895 F .395(xt w)-.15 F .395 +(ord to be check)-.1 F .395(ed for alias sub-)-.1 F .054 +(stitution when the alias is e)144 132 R 2.554(xpanded. F)-.15 F .054 +(or each)-.15 F F2(name)2.554 E F0 .054(in the ar)2.554 F .054 +(gument list for which no)-.18 F F2(value)2.554 E F0 .053(is sup-)2.553 +F 1.313(plied, the name and v)144 144 R 1.314 +(alue of the alias is printed.)-.25 F F1(Alias)6.314 E F0 1.314 +(returns true unless a)3.814 F F2(name)3.814 E F0 1.314(is gi)3.814 F +-.15(ve)-.25 G 3.814(nf).15 G(or)-3.814 E +(which no alias has been de\214ned.)144 156 Q F1(bg)108 172.8 Q F0([)2.5 +E F2(jobspec)A F0(...])2.5 E .745(Resume each suspended job)144 184.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 196.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 208.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 220.8 Q(as started without job control.)-.1 +E F1(bind)108 237.6 Q F0([)2.5 E F1A F2 -.1(ke)2.5 G(ymap)-.2 E F0 +2.5(][)C F1(\255lpsvPSV)-2.5 E F0(])A F1(bind)108 249.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 96 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 108 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 120 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 132 Q F2 -.37(re)2.5 G -(adline\255command).37 E F0 .239(Display current)144 144 R F1 -.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 F1 -.18(re)2.738 G(adline).18 E F0 .238(function or) -2.738 F .475(macro, or set a)144 156 R F1 -.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 F2 -(.inputr)144 168 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 2.5 -(re\255read\255init\255\214le'. Options,)144 180 R(if supplied, ha)2.5 E -.3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 192 -Q F2 -.1(ke)2.5 G(ymap)-.2 E F0(Use)180 204 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 216 S(ymap)-.2 E F0 3.193(names are)5.883 F F2 3.193 -(emacs, emacs\255standar)5.693 F 3.192 +F1-2.5 E F2 -.1(ke)2.5 G(yseq)-.2 E F0(])A F1(bind)108 261.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 273.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 285.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 297.6 Q F2 -.37(re)2.5 G +(adline\255command).37 E F0 .238(Display current)144 309.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 321.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 333.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 345.6 R(if supplied, ha)2.5 +E .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 +357.6 Q F2 -.1(ke)2.5 G(ymap)-.2 E F0(Use)180 369.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 381.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 228 Q F0 4.429(,a)C(nd)-4.429 E F2(vi\255insert)4.429 +(vi\255command)180 393.6 Q F0 4.43(,a)C(nd)-4.43 E F2(vi\255insert)4.429 E F0(.).68 E F2(vi)6.929 E F0 1.929(is equi)4.429 F -.25(va)-.25 G 1.929 (lent to).25 F F2(vi\255command)4.429 E F0(;)A F2(emacs)4.429 E F0 1.929 -(is equi)4.429 F -.25(va)-.25 G 1.93(lent to).25 F F2(emacs\255standar) -180 240 Q(d)-.37 E F0(.)A F1144 252 Q F0(List the names of all) -27.52 E F1 -.18(re)2.5 G(adline).18 E F0(functions.)2.5 E F1144 -264 Q F0(Display)24.74 E 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 276 Q F0(List current)24.19 E -F1 -.18(re)2.5 G(adline).18 E F0(function names and bindings.)2.5 E F1 -144 288 Q F0(Display)26.41 E 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 300 S 2.5(yt).1 G(hat the)-2.5 -E 2.5(yc)-.15 G(an be re-read.)-2.5 E F1144 312 Q F0(Display)24.74 -E 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 324 Q F0(Display)25.3 E F1 -.18(re)2.5 G +(is equi)4.429 F -.25(va)-.25 G 1.929(lent to).25 F F2(emacs\255standar) +180 405.6 Q(d)-.37 E F0(.)A F1144 417.6 Q F0 +(List the names of all)27.52 E F1 -.18(re)2.5 G(adline).18 E F0 +(functions.)2.5 E F1144 429.6 Q F0(Display)24.74 E 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 441.6 +Q F0(List current)24.19 E F1 -.18(re)2.5 G(adline).18 E F0 +(function names and bindings.)2.5 E F1144 453.6 Q F0(Display)26.41 +E 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 465.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 477.6 Q +F0(Display)24.74 E 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 489.6 Q F0(Display)25.3 E 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 336 Q F0(List current)23.08 E 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 348 Q F2(\214lename)2.5 E F0(Read k)180 360 Q .3 -.15 -(ey b)-.1 H(indings from).15 E F2(\214lename)2.5 E F0(.)A F1144 -372 Q F2(function)2.5 E F0(Query about which k)180 384 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 396 Q F2(function)2.5 E F0 -(Unbind all k)180 408 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 420 Q F2 -.1(ke)2.5 G(yseq) --.2 E F0(Remo)180 432 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 -444 Q F2 -.1(ke)2.5 G(yseq)-.2 E F1(:)A F2(shell\255command)A F0(Cause) -180 456 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 468 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 480 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 -492 R 2.011(If the e)7.012 F -.15(xe)-.15 G 2.011 +(an be re-read.)-2.5 E F1144 501.6 Q F0(List current)23.08 E 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 513.6 Q F2(\214lename)2.5 E F0(Read k)180 +525.6 Q .3 -.15(ey b)-.1 H(indings from).15 E F2(\214lename)2.5 E F0(.)A +F1144 537.6 Q F2(function)2.5 E F0(Query about which k)180 549.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 561.6 Q F2(function) +2.5 E F0(Unbind all k)180 573.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 585.6 Q +F2 -.1(ke)2.5 G(yseq)-.2 E F0(Remo)180 597.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 609.6 Q F2 -.1(ke)2.5 G(yseq)-.2 E F1(:)A F2 +(shell\255command)A F0(Cause)180 621.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 633.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 645.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 +657.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 504 Q/F4 9 +(READLINE_LINE)4.512 E F0(or)4.262 E F3(READLINE_POINT)180 669.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(The return v) -144 520.8 Q(alue is 0 unless an unrecognized option is gi)-.25 E -.15 +144 686.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 537.6 Q(eak)-.18 E F0([)2.5 E F2(n)A F0(])A .054 -(Exit from within a)144 549.6 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 +E F1(br)108 703.2 Q(eak)-.18 E F0([)2.5 E F2(n)A F0(])A .055 +(Exit from within a)144 715.2 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 (select)2.555 E F0 2.555(loop. If)2.555 F F2(n)2.555 E F0 .055 (is speci\214ed, break)2.555 F F2(n)2.555 E F0(le)2.555 E -.15(ve)-.25 G -(ls.).15 E F2(n)5.415 E F0 .055(must be)2.795 F/F5 10/Symbol SF2.555 -E F0(1.)2.555 E(If)144 561.6 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 -573.6 Q F2(n)2.5 E F0(is not greater than or equal to 1.)2.5 E F1 -.2 -(bu)108 590.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 602.4 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 -614.4 R .615(uiltin, retaining the functionality of)-.2 F .57(the b)144 -626.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 638.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 655.2 Q F0([)2.5 E F2 -.2(ex)C(pr) -.2 E F0(])A .254(Returns the conte)144 667.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.753 E F0(or)2.753 E F1(sour)144 679.2 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 691.2 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 703.2 R -.15(xe)-.15 G 1.328(cution call stack.).15 F .001 -(This e)144 715.2 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 -4.513(0. The)144 727.2 R 2.013(return v)4.513 F 2.013 -(alue is 0 unless the shell is not e)-.25 F -.15(xe)-.15 G 2.014 -(cuting a subroutine call or).15 F F2 -.2(ex)4.514 G(pr).2 E F0 2.014 -(does not)4.514 F(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(50) -197.335 E 0 Cg EP +(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 727.2 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(GNU Bash-4.2)72 768 +Q(2010 July 21)148.175 E(50)198.165 E 0 Cg EP %%Page: 51 51 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E(correspond to a v)144 84 Q(alid position in the call stack.)-.25 -E/F1 10/Times-Bold@0 SF(cd)108 100.8 Q F0([)2.5 E F1A F0(|[)A F1 -A F0([)2.5 E F1A F0(]]] [)A/F2 10/Times-Italic@0 SF(dir)A F0 -(])A .21(Change the current directory to)144 112.8 R F2(dir)2.71 E F0 -5.21(.T)C .21(he v)-5.21 F(ariable)-.25 E/F3 9/Times-Bold@0 SF(HOME)2.71 -E F0 .21(is the def)2.46 F(ault)-.1 E F2(dir)2.71 E F0 5.21(.T).73 G .21 +-.35 E(is 0 unless)144 84 Q/F1 10/Times-Italic@0 SF(n)2.5 E F0 +(is not greater than or equal to 1.)2.5 E/F2 10/Times-Bold@0 SF -.2(bu) +108 100.8 S(iltin).2 E F1(shell\255b)2.5 E(uiltin)-.2 E F0([)2.5 E F1 +(ar)A(guments)-.37 E F0(])A(Ex)144 112.8 Q .793 +(ecute the speci\214ed shell b)-.15 F .793(uiltin, passing it)-.2 F F1 +(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 +124.8 R .616(uiltin, retaining the functionality of)-.2 F .57(the b)144 +136.8 R .57(uiltin within the function.)-.2 F(The)5.57 E F2(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 148.8 Q(alse if)-.1 +E F1(shell\255b)2.84 E(uiltin)-.2 E F0(is not a shell b)2.74 E +(uiltin command.)-.2 E F2(caller)108 165.6 Q F0([)2.5 E F1 -.2(ex)C(pr) +.2 E F0(])A .253(Returns the conte)144 177.6 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 F2(.)2.754 E F0(or)2.754 E F2(sour)144 189.6 Q +(ce)-.18 E F0 -.2(bu)2.825 G 2.825(iltins\). W).2 F(ithout)-.4 E F1 -.2 +(ex)2.825 G(pr).2 E F0(,)A F2(caller)2.825 E F0 .324 +(displays the line number and source \214lename of the current)2.824 F +.253(subroutine call.)144 201.6 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 F1 -.2(ex)2.753 G(pr).2 E F0(,)A F2(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 213.6 R -.15(xe)-.15 G 1.327(cution call stack.).15 F(This e) +144 225.6 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 237.6 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 F1 -.2(ex)3.019 G(pr).2 E F0 .519 +(does not corre-)3.019 F(spond to a v)144 249.6 Q +(alid position in the call stack.)-.25 E F2(cd)108 266.4 Q F0([)2.5 E F2 +A F0(|[)A F2A F0([)2.5 E F2A F0(]]] [)A F1(dir)A F0(]) +A .21(Change the current directory to)144 278.4 R F1(dir)2.71 E F0 5.21 +(.T)C .21(he v)-5.21 F(ariable)-.25 E/F3 9/Times-Bold@0 SF(HOME)2.71 E +F0 .21(is the def)2.46 F(ault)-.1 E F1(dir)2.71 E F0 5.21(.T).73 G .21 (he v)-5.21 F(ariable)-.25 E F3(CDP)2.71 E -.855(AT)-.666 G(H).855 E F0 -.776(de\214nes the search path for the directory containing)144 124.8 R -F2(dir)3.276 E F0 5.777(.A).73 G(lternati)-5.777 E 1.077 -.15(ve d)-.25 -H .777(irectory names in).15 F F3(CDP)3.277 E -.855(AT)-.666 G(H).855 E -F0 .764(are separated by a colon \(:\).)144 136.8 R 3.264(An)5.764 G +.777(de\214nes the search path for the directory containing)144 290.4 R +F1(dir)3.276 E F0 5.776(.A).73 G(lternati)-5.776 E 1.076 -.15(ve d)-.25 +H .776(irectory names in).15 F F3(CDP)3.276 E -.855(AT)-.666 G(H).855 E +F0 .764(are separated by a colon \(:\).)144 302.4 R 3.264(An)5.764 G .764(ull directory name in)-3.264 F F3(CDP)3.264 E -.855(AT)-.666 G(H) -.855 E F0 .764(is the same as the current direc-)3.014 F(tory)144 148.8 -Q 2.973(,i)-.65 G .473(.e., `)-2.973 F(`)-.74 E F1(.)A F0 -.74('')C -5.473(.I).74 G(f)-5.473 E F2(dir)3.323 E F0(be)3.703 E .474 +.855 E F0 .764(is the same as the current direc-)3.014 F(tory)144 314.4 +Q 2.974(,i)-.65 G .474(.e., `)-2.974 F(`)-.74 E F2(.)A F0 -.74('')C +5.474(.I).74 G(f)-5.474 E F1(dir)3.324 E F0(be)3.704 E .474 (gins with a slash \(/\), then)-.15 F F3(CDP)2.974 E -.855(AT)-.666 G(H) -.855 E F0 .474(is not used. The)2.724 F F12.974 E F0 .474 -(option says to use)2.974 F .58(the ph)144 160.8 R .58 +.855 E F0 .473(is not used. The)2.724 F F22.973 E F0 .473 +(option says to use)2.973 F .579(the ph)144 326.4 R .579 (ysical directory structure instead of follo)-.05 F .579 -(wing symbolic links \(see also the)-.25 F F13.079 E F0 .579 -(option to the)3.079 F F1(set)144 172.8 Q F0 -.2(bu)2.716 G .216 -(iltin command\); the).2 F F12.716 E F0 .216 -(option forces symbolic links to be follo)2.716 F 2.717(wed. If)-.25 F -(the)2.717 E F12.717 E F0 .217(option is sup-)2.717 F 1.087 -(plied with)144 184.8 R F13.587 E F0 3.587(,a)C 1.087 -(nd the current w)-3.587 F 1.086 +(wing symbolic links \(see also the)-.25 F F23.08 E F0 .58 +(option to the)3.08 F F2(set)144 338.4 Q F0 -.2(bu)2.717 G .217 +(iltin command\); the).2 F F22.717 E F0 .217 +(option forces symbolic links to be follo)2.717 F 2.716(wed. If)-.25 F +(the)2.716 E F22.716 E F0 .216(option is sup-)2.716 F 1.086 +(plied with)144 350.4 R F23.586 E F0 3.586(,a)C 1.086 +(nd the current w)-3.586 F 1.087 (orking directory cannot be successfully determined after a suc-)-.1 F -.44(cessful directory change,)144 196.8 R F1(cd)2.94 E F0 .44 +.44(cessful directory change,)144 362.4 R F2(cd)2.94 E F0 .44 (will return an unsuccessful status.)2.94 F .44(An ar)5.44 F .44 -(gument of)-.18 F F12.94 E F0 .44(is equi)2.94 F -.25(va)-.25 G .44 -(lent to).25 F F3($OLDPWD)144 208.8 Q/F4 9/Times-Roman@0 SF(.)A F0 1.045 -(If a non-empty directory name from)5.545 F F3(CDP)3.545 E -.855(AT) --.666 G(H).855 E F0 1.044(is used, or if)3.295 F F13.544 E F0 1.044 -(is the \214rst ar)3.544 F(gument,)-.18 E .021(and the directory change\ - is successful, the absolute pathname of the ne)144 220.8 R 2.522(ww) --.25 G .022(orking directory is writ-)-2.622 F .165 -(ten to the standard output.)144 232.8 R .165(The return v)5.165 F .165 +(gument of)-.18 F F22.94 E F0 .44(is equi)2.94 F -.25(va)-.25 G .44 +(lent to).25 F F3($OLDPWD)144 374.4 Q/F4 9/Times-Roman@0 SF(.)A F0 1.044 +(If a non-empty directory name from)5.544 F F3(CDP)3.544 E -.855(AT) +-.666 G(H).855 E F0 1.045(is used, or if)3.295 F F23.545 E F0 1.045 +(is the \214rst ar)3.545 F(gument,)-.18 E .021(and the directory change\ + is successful, the absolute pathname of the ne)144 386.4 R 2.521(ww) +-.25 G .021(orking directory is writ-)-2.621 F .165 +(ten to the standard output.)144 398.4 R .165(The return v)5.165 F .165 (alue is true if the directory w)-.25 F .165(as successfully changed; f) --.1 F(alse)-.1 E(otherwise.)144 244.8 Q F1(command)108 261.6 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 273.6 Q F2(command)2.956 E F0(with)3.527 E F2(ar) +-.1 F(alse)-.1 E(otherwise.)144 410.4 Q F2(command)108 427.2 Q F0([)2.5 +E F2(\255pVv)A F0(])A F1(command)2.5 E F0([)2.5 E F1(ar)A(g)-.37 E F0 +(...])2.5 E(Run)144 439.2 Q F1(command)2.957 E F0(with)3.527 E F1(ar) 3.087 E(gs)-.37 E F0 .257 (suppressing the normal shell function lookup. Only b)3.027 F .257 -(uiltin commands or)-.2 F .502(commands found in the)144 285.6 R F3 --.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 F13.002 E F0 .502(option is gi)3.002 -F -.15(ve)-.25 G .501(n, the search for).15 F F2(command)3.201 E F0(is) -3.771 E .399(performed using a def)144 297.6 R .399(ault v)-.1 F .399 -(alue for)-.25 F F3 -.666(PA)2.899 G(TH)-.189 E F0 .4 +(uiltin commands or)-.2 F .501(commands found in the)144 451.2 R F3 +-.666(PA)3.001 G(TH)-.189 E F0 .502(are e)2.751 F -.15(xe)-.15 G 3.002 +(cuted. If).15 F(the)3.002 E F23.002 E F0 .502(option is gi)3.002 +F -.15(ve)-.25 G .502(n, the search for).15 F F1(command)3.202 E F0(is) +3.772 E .4(performed using a def)144 463.2 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 309.6 R F12.675 E F0(or)2.675 E F1 -2.675 E F0 .175(option is supplied, a description of)2.675 F F2(command) -2.875 E F0 .174(is printed.)3.445 F(The)5.174 E F12.674 E F0 .174 -(option causes)2.674 F 3.11(as)144 321.6 S .61(ingle w)-3.11 F .61 -(ord indicating the command or \214le name used to in)-.1 F -.2(vo)-.4 G --.1(ke).2 G F2(command)3.41 E F0 .61(to be displayed; the)3.88 F F1 -144 333.6 Q F0 .25(option produces a more v)2.75 F .25 -(erbose description.)-.15 F .249(If the)5.25 F F12.749 E F0(or) -2.749 E F12.749 E F0 .249(option is supplied, the e)2.749 F .249 -(xit status)-.15 F 1.004(is 0 if)144 345.6 R F2(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 F2 -(command)144.2 357.6 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 F1(command)4.098 E F0 -.2(bu)144 369.6 S -(iltin is the e).2 E(xit status of)-.15 E F2(command)2.5 E F0(.).77 E F1 -(compgen)108 386.4 Q F0([)2.5 E F2(option)A F0 2.5(][)C F2(wor)-2.5 E(d) --.37 E F0(])A .012(Generate possible completion matches for)144 398.4 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.513(yo)-.15 G(ption)-2.513 E .982 -(accepted by the)144 410.4 R F1(complete)3.482 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 .981(nd write the matches to the) --3.481 F 1.415(standard output.)144 422.4 R 1.415(When using the)6.415 F -F13.915 E F0(or)3.915 E F13.915 E F0 1.415(options, the v) +5.399 E .174(either the)144 475.2 R F22.674 E F0(or)2.674 E F2 +2.674 E F0 .175(option is supplied, a description of)2.674 F F1 +(command)2.875 E F0 .175(is printed.)3.445 F(The)5.175 E F22.675 E +F0 .175(option causes)2.675 F 3.11(as)144 487.2 S .61(ingle w)-3.11 F +.61(ord indicating the command or \214le name used to in)-.1 F -.2(vo) +-.4 G -.1(ke).2 G F1(command)3.41 E F0 .61(to be displayed; the)3.88 F +F2144 499.2 Q F0 .249(option produces a more v)2.749 F .249 +(erbose description.)-.15 F .249(If the)5.249 F F22.749 E F0(or) +2.749 E F22.75 E F0 .25(option is supplied, the e)2.75 F .25 +(xit status)-.15 F 1.005(is 0 if)144 511.2 R F1(command)3.705 E F0 -.1 +(wa)4.275 G 3.505(sf).1 G 1.005(ound, and 1 if not.)-3.505 F 1.004 +(If neither option is supplied and an error occurred or)6.005 F F1 +(command)144.2 523.2 Q F0 1.598(cannot be found, the e)4.868 F 1.599 +(xit status is 127.)-.15 F 1.599(Otherwise, the e)6.599 F 1.599 +(xit status of the)-.15 F F2(command)4.099 E F0 -.2(bu)144 535.2 S +(iltin is the e).2 E(xit status of)-.15 E F1(command)2.5 E F0(.).77 E F2 +(compgen)108 552 Q F0([)2.5 E F1(option)A F0 2.5(][)C F1(wor)-2.5 E(d) +-.37 E F0(])A .013(Generate possible completion matches for)144 564 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.512(yo)-.15 G(ption)-2.512 E .981 +(accepted by the)144 576 R F2(complete)3.481 E F0 -.2(bu)3.481 G .981 +(iltin with the e).2 F .981(xception of)-.15 F F23.481 E F0(and) +3.481 E F23.481 E F0 3.481(,a)C .982(nd write the matches to the) +-3.481 F 1.415(standard output.)144 588 R 1.415(When using the)6.415 F +F23.915 E F0(or)3.915 E F23.915 E F0 1.415(options, the v) 3.915 F 1.415(arious shell v)-.25 F 1.415(ariables set by the pro-)-.25 -F(grammable completion f)144 434.4 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 458.4 R .352 +F(grammable completion f)144 600 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 624 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 -470.4 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 482.4 Q F2(wor)2.5 E(d)-.37 E F0 -(will be displayed.)2.5 E(The return v)144 506.4 Q +636 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 648 Q F1(wor)2.5 E(d)-.37 E F0 +(will be displayed.)2.5 E(The return v)144 672 Q (alue is true unless an in)-.25 E -.25(va)-.4 G -(lid option is supplied, or no matches were generated.).25 E F1 -(complete)108 523.2 Q F0([)3.729 E F1(\255abcdefgjksuv)A F0 3.729(][)C -F1-3.729 E F2(comp-option)3.729 E F0 3.729(][)C F1(\255DE)-3.729 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.728(][)C F1-3.728 E F2(wor)3.728 -E(dlist)-.37 E F0 3.728(][)C F1-3.728 E F2(func-)3.728 E(tion)108 -535.2 Q F0 2.5(][)C F1-2.5 E F2(command)2.5 E F0(])A([)144 547.2 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 -559.2 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 571.2 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 -583.2 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 595.2 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 607.2 R(The)6.347 E -F13.847 E F0 1.347(option indicates that the remaining options) -3.847 F .5(and actions should apply to the `)144 619.2 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 -631.2 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 643.2 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 655.2 Q 1.437 -(The process of applying these completion speci\214cations when w)144 -679.2 R 1.438(ord completion is attempted is)-.1 F(described abo)144 -691.2 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 715.2 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 2.741(options \(and, if necessary) -144 727.2 R 5.241(,t)-.65 G(he)-5.241 E F15.241 E F0(and)5.241 E -F15.241 E F0 2.742 -(options\) should be quoted to protect them from)5.241 F(GNU Bash-4.1)72 -768 Q(2010 June 12)147.345 E(51)197.335 E 0 Cg EP +(lid option is supplied, or no matches were generated.).25 E F2 +(complete)108 688.8 Q F0([)3.728 E F2(\255abcdefgjksuv)A F0 3.728(][)C +F2-3.728 E F1(comp-option)3.728 E F0 3.728(][)C F2(\255DE)-3.728 E +F0 3.728(][)C F2-3.728 E F1(action)3.728 E F0 3.728(][)C F2 +-3.728 E F1(globpat)3.728 E F0 3.729(][)C F2-3.729 E F1(wor)3.729 +E(dlist)-.37 E F0 3.729(][)C F2-3.729 E F1(func-)3.729 E(tion)108 +700.8 Q F0 2.5(][)C F2-2.5 E F1(command)2.5 E F0(])A([)144 712.8 Q +F2A F1(\214lterpat)2.5 E F0 2.5(][)C F2-2.5 E F1(pr)2.5 E +(e\214x)-.37 E F0 2.5(][)C F2-2.5 E F1(suf)2.5 E<8c78>-.18 E F0(]) +A F1(name)2.5 E F0([)2.5 E F1(name ...)A F0(])A(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(51)198.165 E 0 Cg EP %%Page: 52 52 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(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.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 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.876(Use readline')10 F 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 direc\ -tory name completion 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 co\ -mpspec 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 240 R 2.634 +-.35 E/F1 10/Times-Bold@0 SF(complete \255pr)108 84 Q F0([)2.5 E F1 +(\255DE)A F0 2.5(][)C/F2 10/Times-Italic@0 SF(name)-2.5 E F0(...])2.5 E +.633(Specify ho)144 96 R 3.133(wa)-.25 G -.18(rg)-3.133 G .633 +(uments to each).18 F F2(name)3.133 E F0 .633(should be completed.)3.133 +F .634(If the)5.634 F F13.134 E F0 .634 +(option is supplied, or if no)3.134 F .14(options are supplied, e)144 +108 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 120 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.347 +(are supplied, all completion speci\214cations.)144 132 R(The)6.347 E F1 +3.847 E F0 1.346(option indicates that the remaining options)3.847 +F .5(and actions should apply to the `)144 144 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 156 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 .064 +(the remaining options and actions should apply to `)144 168 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 180 Q 1.438 +(The process of applying these completion speci\214cations when w)144 +204 R 1.437(ord completion is attempted is)-.1 F(described abo)144 216 Q +.3 -.15(ve u)-.15 H(nder).15 E F1(Pr)2.5 E(ogrammable Completion)-.18 E +F0(.)A .555(Other options, if speci\214ed, ha)144 240 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 F13.056 E F0(,)A F13.056 E F0 +3.056(,a)C(nd)-3.056 E F13.056 E F0 .723 +(options \(and, if necessary)144 252 R 3.223(,t)-.65 G(he)-3.223 E F1 +3.223 E F0(and)3.223 E F13.223 E F0 .722 +(options\) should be quoted to protect them from e)3.223 F(xpan-)-.15 E +(sion before the)144 264 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 276 Q F2 +(comp-option)2.5 E F0(The)184 288 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 300 Q F2 +(comp-option)5 E F0(may be one of:)2.5 E F1(bashdefault)184 312 Q F0 +.281(Perform the rest of the def)224 324 R(ault)-.1 E F1(bash)2.781 E F0 +.281(completions if the compspec generates no)2.781 F(matches.)224 336 Q +F1(default)184 348 Q F0 2.875(Use readline')10 F 5.375(sd)-.55 G(ef) +-5.375 E 2.876(ault \214lename completion if the compspec generates no) +-.1 F(matches.)224 360 Q F1(dir)184 372 Q(names)-.15 E F0(Perform direc\ +tory name completion if the compspec generates no matches.)224 384 Q F1 +(\214lenames)184 396 Q F0 -.7(Te)224 408 S .137(ll readline that the co\ +mpspec 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 420 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(nospace) -184 276 Q F0 -.7(Te)6.11 G .22 +.45(cial characters, or suppressing trailing spaces\).)224 432 R .45 +(Intended to be used with shell)5.45 F(functions.)224 444 Q F1(nospace) +184 456 Q F0 -.7(Te)6.11 G .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 288 Q F1(plusdirs) -184 300 Q F0 1.985(After an)5.54 F 4.485(ym)-.15 G 1.985 +.22(ords completed at the end)-.1 F(of the line.)224 468 Q F1(plusdirs) +184 480 Q F0 1.985(After an)5.54 F 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 312 R 3.084(ym)-.15 G .584 -(atches are added to the results of the other)-3.084 F(actions.)224 324 -Q F1144 336 Q F2(action)2.5 E F0(The)184 348 Q F2(action)2.5 E F0 +.583(completion is attempted and an)224 492 R 3.084(ym)-.15 G .584 +(atches are added to the results of the other)-3.084 F(actions.)224 504 +Q F1144 516 Q F2(action)2.5 E F0(The)184 528 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 -360 Q F0(Alias names.)20.55 E(May also be speci\214ed as)5 E F12.5 -E F0(.)A F1(arrayv)184 372 Q(ar)-.1 E F0(Array v)224 384 Q -(ariable names.)-.25 E F1 4.7(binding Readline)184 396 R F0 -.1(ke)2.5 G -2.5(yb)-.05 G(inding names.)-2.5 E F1 -.2(bu)184 408 S(iltin).2 E F0 +540 Q F0(Alias names.)20.55 E(May also be speci\214ed as)5 E F12.5 +E F0(.)A F1(arrayv)184 552 Q(ar)-.1 E F0(Array v)224 564 Q +(ariable names.)-.25 E F1 4.7(binding Readline)184 576 R F0 -.1(ke)2.5 G +2.5(yb)-.05 G(inding names.)-2.5 E F1 -.2(bu)184 588 S(iltin).2 E F0 (Names of shell b)11.85 E(uiltin commands.)-.2 E -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(command)184 420 -Q F0(Command names.)224 432 Q(May also be speci\214ed as)5 E F12.5 -E F0(.)A F1(dir)184 444 Q(ectory)-.18 E F0(Directory names.)224 456 Q -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(disabled)184 468 -Q F0(Names of disabled shell b)224 480 Q(uiltins.)-.2 E F1(enabled)184 -492 Q F0(Names of enabled shell b)6.66 E(uiltins.)-.2 E F1(export)184 -504 Q F0(Names of e)12.23 E(xported shell v)-.15 E 2.5(ariables. May) +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(command)184 600 +Q F0(Command names.)224 612 Q(May also be speci\214ed as)5 E F12.5 +E F0(.)A F1(dir)184 624 Q(ectory)-.18 E F0(Directory names.)224 636 Q +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(disabled)184 648 +Q F0(Names of disabled shell b)224 660 Q(uiltins.)-.2 E F1(enabled)184 +672 Q F0(Names of enabled shell b)6.66 E(uiltins.)-.2 E F1(export)184 +684 Q F0(Names of e)12.23 E(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 -516 Q F0(File names.)27.22 E(May also be speci\214ed as)5 E F12.5 -E F0(.)A F1(function)184 528 Q F0(Names of shell functions.)224 540 Q F1 -(gr)184 552 Q(oup)-.18 E F0(Group names.)14.62 E -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(helptopic)184 -564 Q F0(Help topics as accepted by the)224 576 Q F1(help)2.5 E F0 -.2 -(bu)2.5 G(iltin.).2 E F1(hostname)184 588 Q F0(Hostnames, as tak)224 600 -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 612 Q F0 -(Job names, if job control is acti)26.11 E -.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 624 S -(yw).1 E(ord)-.1 E F0(Shell reserv)224 636 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 -648 Q F0(Names of running jobs, if job control is acti)5.54 E -.15(ve) --.25 G(.).15 E F1(ser)184 660 Q(vice)-.1 E F0(Service names.)10.67 E -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(setopt)184 672 Q -F0 -1.11(Va)14.45 G(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 684 Q F0(Shell option names as accepted by the)16.66 E F1 -(shopt)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(signal)184 696 Q F0 -(Signal names.)14.99 E F1(stopped)184 708 Q F0 -(Names of stopped jobs, if job control is acti)6.66 E -.15(ve)-.25 G(.) -.15 E(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(52)197.335 E 0 Cg EP +696 Q F0(File names.)27.22 E(May also be speci\214ed as)5 E F12.5 +E F0(.)A(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(52)198.165 E 0 Cg +EP %%Page: 53 53 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(user)184 84 Q F0(User names.)21.67 E -(May also be speci\214ed as)5 E F12.5 E F0(.)A F1 -.1(va)184 96 S +-.35 E/F1 10/Times-Bold@0 SF(function)184 84 Q F0 +(Names of shell functions.)224 96 Q F1(gr)184 108 Q(oup)-.18 E F0 +(Group names.)14.62 E(May also be speci\214ed as)5 E F12.5 E F0(.) +A F1(helptopic)184 120 Q F0(Help topics as accepted by the)224 132 Q F1 +(help)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(hostname)184 144 Q F0 +(Hostnames, as tak)224 156 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 168 Q F0(Job names, if job control is acti)26.11 E -.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 180 S(yw).1 E(ord)-.1 E F0(Shell reserv)224 192 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 204 Q F0(Names of running jobs, if job control is acti)5.54 +E -.15(ve)-.25 G(.).15 E F1(ser)184 216 Q(vice)-.1 E F0(Service names.) +10.67 E(May also be speci\214ed as)5 E F12.5 E F0(.)A F1(setopt) +184 228 Q F0 -1.11(Va)14.45 G(lid ar)1.11 E(guments for the)-.18 E F1 +2.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 240 Q F0(Shell option names as accepted by the)16.66 E +F1(shopt)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1(signal)184 252 Q F0 +(Signal names.)14.99 E F1(stopped)184 264 Q F0 +(Names of stopped jobs, if job control is acti)6.66 E -.15(ve)-.25 G(.) +.15 E F1(user)184 276 Q F0(User names.)21.67 E +(May also be speci\214ed as)5 E F12.5 E F0(.)A F1 -.1(va)184 288 S (riable).1 E F0(Names of all shell v)5.1 E 2.5(ariables. May)-.25 F -(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1144 108 Q/F2 -10/Times-Italic@0 SF(command)2.5 E(command)184 120 Q F0 1.055(is e)3.555 -F -.15(xe)-.15 G 1.055(cuted in a subshell en).15 F 1.056 +(also be speci\214ed as)2.5 E F12.5 E F0(.)A F1144 300 Q/F3 +10/Times-Italic@0 SF(command)2.5 E(command)184 312 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 132 Q F1144 144 Q F2(function)2.5 E F0 1.181 -(The shell function)184 156 R F2(function)3.681 E F0 1.181(is e)3.681 F --.15(xe)-.15 G 1.181(cuted in the current shell en).15 F 3.68 -(vironment. When)-.4 F 1.18(it \214n-)3.68 F .932 -(ishes, the possible completions are retrie)184 168 R -.15(ve)-.25 G -3.432(df).15 G .932(rom the v)-3.432 F .932(alue of the)-.25 F/F3 9 -/Times-Bold@0 SF(COMPREPL)3.432 E(Y)-.828 E F0(array)3.182 E -.25(va)184 -180 S(riable.).25 E F1144 192 Q F2(globpat)2.5 E F0 1.008 -(The pathname e)184 204 R 1.008(xpansion pattern)-.15 F F2(globpat)3.507 -E F0 1.007(is e)3.507 F 1.007(xpanded to generate the possible comple-) --.15 F(tions.)184 216 Q F1144 228 Q F2(pr)2.5 E(e\214x)-.37 E(pr) -184 240 Q(e\214x)-.37 E F0 .534(is added at the be)3.034 F .534 +184 324 Q F1144 336 Q F3(function)2.5 E F0 1.18 +(The shell function)184 348 R F3(function)3.68 E F0 1.181(is e)3.681 F +-.15(xe)-.15 G 1.181(cuted in the current shell en).15 F 3.681 +(vironment. When)-.4 F 1.181(it \214n-)3.681 F .932 +(ishes, the possible completions are retrie)184 360 R -.15(ve)-.25 G +3.432(df).15 G .932(rom the v)-3.432 F .932(alue of the)-.25 F F2 +(COMPREPL)3.431 E(Y)-.828 E F0(array)3.181 E -.25(va)184 372 S(riable.) +.25 E F1144 384 Q F3(globpat)2.5 E F0 1.007(The pathname e)184 396 +R 1.007(xpansion pattern)-.15 F F3(globpat)3.507 E F0 1.007(is e)3.507 F +1.008(xpanded to generate the possible comple-)-.15 F(tions.)184 408 Q +F1144 420 Q F3(pr)2.5 E(e\214x)-.37 E(pr)184 432 Q(e\214x)-.37 E +F0 .535(is added at the be)3.035 F .534 (ginning of each possible completion after all other options ha)-.15 F --.15(ve)-.2 G(been applied.)184 252 Q F1144 264 Q F2(suf)2.5 E +-.15(ve)-.2 G(been applied.)184 444 Q F1144 456 Q F3(suf)2.5 E 2.81(\214x suf)-.18 F<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 276 Q F2(wor)2.5 E -(dlist)-.37 E F0(The)184 288 Q F2(wor)3.64 E(dlist)-.37 E F0 1.14 -(is split using the characters in the)3.64 F F3(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 300 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 312 Q(ord being completed.)-.1 E -F1144 324 Q F2(\214lterpat)2.5 E(\214lterpat)184 336 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 348 R 1.596 -(guments, and each completion)-.18 F(matching)184 360 Q F2(\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 F2(\214lterpat)3.204 E F0(ne)3.204 E -.05(ga)-.15 G .704 -(tes the pattern;).05 F(in this case, an)184 372 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 .466(The return v)144 388.8 R .466 +E .3 -.15(ve b)-.2 H(een applied.).15 E F1144 468 Q F3(wor)2.5 E +(dlist)-.37 E F0(The)184 480 Q F3(wor)3.639 E(dlist)-.37 E F0 1.14 +(is split using the characters in the)3.639 F F2(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 492 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 504 Q(ord being completed.)-.1 E +F1144 516 Q F3(\214lterpat)2.5 E(\214lterpat)184 528 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 540 R 1.596 +(guments, and each completion)-.18 F(matching)184 552 Q F3(\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 F3(\214lterpat)3.205 E F0(ne)3.205 E -.05(ga)-.15 G .705 +(tes the pattern;).05 F(in this case, an)184 564 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 .467(The return v)144 580.8 R .467 (alue is true unless an in)-.25 F -.25(va)-.4 G .466 -(lid option is supplied, an option other than).25 F F12.967 E F0 -(or)2.967 E F12.967 E F0 .467(is sup-)2.967 F 1.362 -(plied without a)144 400.8 R F2(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 F2(name)144 412.8 Q F0 +(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 592.8 R F3(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 F3(name)144 604.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 429.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 441.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 .726 -(completion if no)144 453.6 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 465.6 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 477.6 Q F0 -.2(bu) -2.798 G .298(iltin described abo).2 F -.15(ve)-.15 G 5.297(.T).15 G(he) +F1(compopt)108 621.6 Q F0([)2.5 E F1A F3(option)2.5 E F0 2.5(][)C +F1(\255DE)-2.5 E F0 2.5(][)C F1(+o)-2.5 E F3(option)2.5 E F0 2.5(][)C F3 +(name)-2.5 E F0(])A .447(Modify completion options for each)144 633.6 R +F3(name)2.947 E F0 .447(according to the)2.947 F F3(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 645.6 R F3(name)3.225 E F0 3.225(sa)C .725 +(re supplied.)-3.225 F .725(If no)5.725 F F3(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 657.6 Q F3(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 F3(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 669.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.227(the `)144 489.6 R(`def)-.74 E(ault')-.1 E 3.727('c)-.74 G 1.228(o\ +1.228(the `)144 681.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.727 F 2.178(completion has pre)144 501.6 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 513.6 Q(`empty')-.74 E 2.5('c)-.74 G +no)-3.728 F 2.177(completion has pre)144 693.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 705.6 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 537.6 R 1.387(alue is true unless an in)-.25 F --.25(va)-.4 G 1.388 +E 1.388(The return v)144 729.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 549.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 566.4 Q F0([) -2.5 E F2(n)A F0(])A 1.754(Resume the ne)144 578.4 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 590.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 .514 -(loops, the last enclosing loop \(the `)144 602.4 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 614.4 Q F1(declar)108 631.2 -Q(e)-.18 E F0([)2.5 E F1(\255aAfFgilrtux)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 643.2 Q F0([)2.5 E F1(\255aAfFgilrtux)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 655.2 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 667.2 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 679.2 Q F2(name)3.579 E -F0(ar)3.579 E 1.079(guments, additional options are ignored.)-.18 F -(When)6.079 E F13.579 E F0 1.079(is supplied without)3.579 F F2 -(name)3.58 E F0(ar)3.58 E(gu-)-.18 E .151 -(ments, it will display the attrib)144 691.2 R .151(utes and v)-.2 F -.151(alues of all v)-.25 F .15(ariables ha)-.25 F .15(ving the attrib) --.2 F .15(utes speci\214ed by the)-.2 F .046(additional options.)144 -703.2 R .046(If no other options are supplied with)5.046 F F12.547 -E F0(,)A F1(declar)2.547 E(e)-.18 E F0 .047(will display the attrib) -2.547 F .047(utes and)-.2 F -.25(va)144 715.2 S 1.363 -(lues of all shell v).25 F 3.863(ariables. The)-.25 F F13.863 E F0 -1.362(option will restrict the display to shell functions.)3.863 F(The) -6.362 E F13.862 E F0 2.422(option inhibits the display of functio\ -n de\214nitions; only the function name and attrib)144 727.2 R 2.423 -(utes are)-.2 F(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(53)197.335 -E 0 Cg EP +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(53)198.165 E 0 Cg EP %%Page: 54 54 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E 2.664(printed. If)144 84 R(the)2.664 E/F1 10/Times-Bold@0 SF -(extdeb)2.664 E(ug)-.2 E F0 .164(shell option is enabled using)2.664 F -F1(shopt)2.664 E F0 2.664(,t)C .163 -(he source \214le name and line number)-2.664 F 1.288 -(where the function is de\214ned are displayed as well.)144 96 R(The) -6.288 E F13.788 E F0 1.288(option implies)3.788 F F13.788 E -F0 6.288(.T)C(he)-6.288 E F13.789 E F0(option)3.789 E .491 -(forces v)144 108 R .491 +-.35 E(options for a)144 84 Q/F1 10/Times-Italic@0 SF(name)2.5 E F0 +(for which no completion speci\214cation e)2.5 E +(xists, or an output error occurs.)-.15 E/F2 10/Times-Bold@0 SF +(continue)108 100.8 Q F0([)2.5 E F1(n)A F0(])A 1.753(Resume the ne)144 +112.8 R 1.753(xt iteration of the enclosing)-.15 F F2 -.25(fo)4.254 G(r) +.25 E F0(,)A F2(while)4.254 E F0(,)A F2(until)4.254 E F0 4.254(,o)C(r) +-4.254 E F2(select)4.254 E F0 4.254(loop. If)4.254 F F1(n)4.614 E F0 +1.754(is speci\214ed,)4.494 F 1.209(resume at the)144 124.8 R F1(n)3.709 +E F0 1.209(th enclosing loop.)B F1(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 F1(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 136.8 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 F1(n)3.014 E F0(is) +3.014 E(not greater than or equal to 1.)144 148.8 Q F2(declar)108 165.6 +Q(e)-.18 E F0([)2.5 E F2(\255aAfFgilrtux)A F0 2.5(][)C F2-2.5 E F0 +2.5(][)C F1(name)-2.5 E F0([=)A F1(value)A F0 2.5(].)C(..])-2.5 E F2 +(typeset)108 177.6 Q F0([)2.5 E F2(\255aAfFgilrtux)A F0 2.5(][)C F2 +-2.5 E F0 2.5(][)C F1(name)-2.5 E F0([=)A F1(value)A F0 2.5(].)C +(..])-2.5 E 1.265(Declare v)144 189.6 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 F1(name)3.765 E F0 3.765(sa)C 1.265(re gi)-3.765 F -.15(ve)-.25 +G 3.764(nt).15 G 1.264(hen display the v)-3.764 F 1.264(alues of)-.25 F +-.25(va)144 201.6 S 3.482(riables. The).25 F F23.482 E F0 .982 +(option will display the attrib)3.482 F .982(utes and v)-.2 F .983 +(alues of each)-.25 F F1(name)3.483 E F0 5.983(.W).18 G(hen)-5.983 E F2 +3.483 E F0 .983(is used)3.483 F(with)144 213.6 Q F1(name)3.58 E F0 +(ar)3.58 E 1.079(guments, additional options are ignored.)-.18 F(When) +6.079 E F23.579 E F0 1.079(is supplied without)3.579 F F1(name) +3.579 E F0(ar)3.579 E(gu-)-.18 E .15(ments, it will display the attrib) +144 225.6 R .15(utes and v)-.2 F .151(alues of all v)-.25 F .151 +(ariables ha)-.25 F .151(ving the attrib)-.2 F .151 +(utes speci\214ed by the)-.2 F .047(additional options.)144 237.6 R .047 +(If no other options are supplied with)5.047 F F22.547 E F0(,)A F2 +(declar)2.547 E(e)-.18 E F0 .046(will display the attrib)2.546 F .046 +(utes and)-.2 F -.25(va)144 249.6 S 1.362(lues of all shell v).25 F +3.862(ariables. The)-.25 F F23.862 E F0 1.363 +(option will restrict the display to shell functions.)3.862 F(The)6.363 +E F23.863 E F0 2.422(option inhibits the display of function de\ +\214nitions; only the function name and attrib)144 261.6 R 2.422 +(utes are)-.2 F 2.663(printed. If)144 273.6 R(the)2.663 E F2(extdeb) +2.663 E(ug)-.2 E F0 .164(shell option is enabled using)2.663 F F2(shopt) +2.664 E F0 2.664(,t)C .164(he source \214le name and line number)-2.664 +F 1.288(where the function is de\214ned are displayed as well.)144 285.6 +R(The)6.288 E F23.788 E F0 1.288(option implies)3.788 F F2 +3.788 E F0 6.288(.T)C(he)-6.288 E F23.788 E F0(option)3.788 E .49 +(forces v)144 297.6 R .49 (ariables to be created or modi\214ed at the global scope, e)-.25 F -.15 -(ve)-.25 G 2.99(nw).15 G(hen)-2.99 E F1(declar)2.99 E(e)-.18 E F0 .49 -(is e)2.99 F -.15(xe)-.15 G .49(cuted in a).15 F .124(shell function.) -144 120 R .124(It is ignored in all other cases.)5.124 F .125(The follo) -5.125 F .125(wing options can be used to restrict output)-.25 F(to v)144 -132 Q(ariables with the speci\214ed attrib)-.25 E(ute or to gi)-.2 E .3 --.15(ve v)-.25 H(ariables attrib)-.1 E(utes:)-.2 E F1144 144 Q F0 -(Each)25.3 E/F2 10/Times-Italic@0 SF(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 156 Q F0(Each)23.08 -E 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 168 Q F0(Use function names only)26.97 E(.)-.65 E F1 -144 180 Q F0 .558(The v)27.52 F .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 192 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 204 Q F0 .909 -(When the v)27.52 F .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 216 R(upper) -2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1144 228 Q F0 -(Mak)25.86 E(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 240 -Q F1144 252 Q F0(Gi)26.97 E .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 264 Q(The trace attrib)5 E -(ute has no special meaning for v)-.2 E(ariables.)-.25 E F1144 276 -Q F0 .91(When the v)24.74 F .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 288 R(lo) -2.5 E(wer)-.25 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1144 -300 Q F0(Mark)25.3 E 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 316.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 328.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 .53(tion, mak)144 340.8 R -.53(es each)-.1 F F2(name)3.03 E F0 .53(local, as with the)3.03 F F1 -(local)3.031 E F0 .531(command, unless the)3.031 F F1 .531 -(\255gP option is supplied, If a)3.031 F -.1(va)144 352.8 S 1.558 -(riable name is f).1 F(ollo)-.25 E 1.558(wed by =)-.1 F F2(value)A F1 -4.058(,t)C 1.558(he v)-4.058 F 1.557(alue of the v)-.1 F 1.557 -(ariable is set to)-.1 F F2(value)4.057 E F1 6.557(.T)C 1.557(he r) --6.557 F(etur)-.18 E(n)-.15 E -.1(va)144 364.8 S 1.168 +(ve)-.25 G 2.991(nw).15 G(hen)-2.991 E F2(declar)2.991 E(e)-.18 E F0 +.491(is e)2.991 F -.15(xe)-.15 G .491(cuted in a).15 F .125 +(shell function.)144 309.6 R .125(It is ignored in all other cases.) +5.125 F .125(The follo)5.125 F .124 +(wing options can be used to restrict output)-.25 F(to v)144 321.6 Q +(ariables with the speci\214ed attrib)-.25 E(ute or to gi)-.2 E .3 -.15 +(ve v)-.25 H(ariables attrib)-.1 E(utes:)-.2 E F2144 333.6 Q F0 +(Each)25.3 E F1(name)2.5 E F0(is an inde)2.5 E -.15(xe)-.15 G 2.5(da).15 +G(rray v)-2.5 E(ariable \(see)-.25 E F2(Arrays)2.5 E F0(abo)2.5 E -.15 +(ve)-.15 G(\).).15 E F2144 345.6 Q F0(Each)23.08 E F1(name)2.5 E +F0(is an associati)2.5 E .3 -.15(ve a)-.25 H(rray v).15 E(ariable \(see) +-.25 E F2(Arrays)2.5 E F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E F2144 +357.6 Q F0(Use function names only)26.97 E(.)-.65 E F2144 369.6 Q +F0 .557(The v)27.52 F .558(ariable is treated as an inte)-.25 F .558 +(ger; arithmetic e)-.15 F -.25(va)-.25 G .558(luation \(see).25 F/F4 9 +/Times-Bold@0 SF .558(ARITHMETIC EV)3.058 F(ALU)-1.215 E(A-)-.54 E(TION) +180 381.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 +F2144 393.6 Q F0 .91(When the v)27.52 F .909 +(ariable is assigned a v)-.25 F .909(alue, all upper)-.25 F .909 +(-case characters are con)-.2 F -.15(ve)-.4 G .909(rted to lo).15 F(wer) +-.25 E(-)-.2 E 2.5(case. The)180 405.6 R(upper)2.5 E(-case attrib)-.2 E +(ute is disabled.)-.2 E F2144 417.6 Q F0(Mak)25.86 E(e)-.1 E F1 +(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 429.6 Q +F2144 441.6 Q F0(Gi)26.97 E .73 -.15(ve e)-.25 H(ach).15 E F1 +(name)2.93 E F0(the)2.929 E F1(tr)2.929 E(ace)-.15 E F0(attrib)2.929 E +2.929(ute. T)-.2 F .429(raced functions inherit the)-.35 F F2(DEB)2.929 +E(UG)-.1 E F0(and)2.929 E F2(RETURN)2.929 E F0 +(traps from the calling shell.)180 453.6 Q(The trace attrib)5 E +(ute has no special meaning for v)-.2 E(ariables.)-.25 E F2144 +465.6 Q F0 .909(When the v)24.74 F .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 477.6 R +(lo)2.5 E(wer)-.25 E(-case attrib)-.2 E(ute is disabled.)-.2 E F2 +144 489.6 Q F0(Mark)25.3 E F1(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 506.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 F2(+a)2.62 E F0 .12(may not be used)2.62 F .644 +(to destro)144 518.4 R 3.144(ya)-.1 G 3.144(na)-3.144 G .644(rray v) +-3.144 F .644(ariable and)-.25 F F2(+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 .531(tion, mak)144 530.4 R +.531(es each)-.1 F F1(name)3.031 E F0 .531(local, as with the)3.031 F F2 +(local)3.031 E F0 .531(command, unless the)3.031 F F2 .53 +(\255gP option is supplied, If a)3.03 F -.1(va)144 542.4 S 1.557 +(riable name is f).1 F(ollo)-.25 E 1.557(wed by =)-.1 F F1(value)A F2 +4.057(,t)C 1.557(he v)-4.057 F 1.558(alue of the v)-.1 F 1.558 +(ariable is set to)-.1 F F1(value)4.058 E F2 6.558(.T)C 1.558(he r) +-6.558 F(etur)-.18 E(n)-.15 E -.1(va)144 554.4 S 1.168 (lue is 0 unless an in).1 F -.1(va)-.4 G 1.168(lid option is encounter) .1 F 1.168(ed, an attempt is made to de\214ne a function)-.18 F(using) -144 376.8 Q/F4 10/Courier@0 SF .312(\255f foo=bar)2.812 F F1 2.812(,a)C +144 566.4 Q/F5 10/Courier@0 SF .311(\255f foo=bar)2.811 F F2 2.812(,a)C 2.812(na)-2.812 G .312(ttempt is made to assign a v)-2.812 F .312 -(alue to a r)-.1 F .312(eadonly v)-.18 F .311(ariable, an attempt)-.1 F -.615(is made to assign a v)144 388.8 R .615(alue to an array v)-.1 F -.616(ariable without using the compound assignment syn-)-.1 F .26 -(tax \(see Arrays)144 400.8 R F0(abo)2.76 E -.15(ve)-.15 G .26 -(\), one of the).15 F F2(names)2.76 E F0 .259(is not a v)2.76 F .259 -(alid shell v)-.25 F .259(ariable name, an attempt is made to)-.25 F -.703(turn of)144 412.8 R 3.203(fr)-.25 G .704 -(eadonly status for a readonly v)-3.203 F .704 -(ariable, an attempt is made to turn of)-.25 F 3.204(fa)-.25 G .704 -(rray status for an)-3.204 F(array v)144 424.8 Q +(alue to a r)-.1 F .312(eadonly v)-.18 F .312(ariable, an attempt)-.1 F +.616(is made to assign a v)144 578.4 R .615(alue to an array v)-.1 F +.615(ariable without using the compound assignment syn-)-.1 F .259 +(tax \(see Arrays)144 590.4 R F0(abo)2.759 E -.15(ve)-.15 G .259 +(\), one of the).15 F F1(names)2.759 E F0 .259(is not a v)2.759 F .26 +(alid shell v)-.25 F .26(ariable name, an attempt is made to)-.25 F .704 +(turn of)144 602.4 R 3.204(fr)-.25 G .704 +(eadonly status for a readonly v)-3.204 F .704 +(ariable, an attempt is made to turn of)-.25 F 3.204(fa)-.25 G .703 +(rray status for an)-3.204 F(array v)144 614.4 Q (ariable, or an attempt is made to display a non-e)-.25 E -(xistent function with)-.15 E F12.5 E F0(.)A F1(dirs [+)108 441.6 -Q F2(n)A F1 2.5(][)C-2.5 E F2(n)A F1 2.5(][)C(\255clpv])-2.5 E F0 --.4(Wi)144 453.6 S .329 +(xistent function with)-.15 E F22.5 E F0(.)A F2(dirs [+)108 631.2 +Q F1(n)A F2 2.5(][)C-2.5 E F1(n)A F2 2.5(][)C(\255clpv])-2.5 E F0 +-.4(Wi)144 643.2 S .328 (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 465.6 R 1.238 -(Directories are added to the list with the)6.238 F F1(pushd)144 477.6 Q -F0(command; the)2.5 E F1(popd)2.5 E F0(command remo)2.5 E -.15(ve)-.15 G -2.5(se).15 G(ntries from the list.)-2.5 E F1(+)144 489.6 Q F2(n)A F0 -1.565(Displays the)25.3 F F2(n)4.065 E F0 1.565 -(th entry counting from the left of the list sho)B 1.564(wn by)-.25 F F1 -(dirs)4.064 E F0 1.564(when in)4.064 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E -(without options, starting with zero.)180 501.6 Q F1144 513.6 Q F2 -(n)A F0 1.194(Displays the)25.3 F F2(n)3.694 E F0 1.194 +.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 655.2 R 1.238 +(Directories are added to the list with the)6.238 F F2(pushd)144 667.2 Q +F0(command; the)2.5 E F2(popd)2.5 E F0(command remo)2.5 E -.15(ve)-.15 G +2.5(se).15 G(ntries from the list.)-2.5 E F2(+)144 679.2 Q F1(n)A F0 +1.564(Displays the)25.3 F F1(n)4.064 E F0 1.565 +(th entry counting from the left of the list sho)B 1.565(wn by)-.25 F F2 +(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 691.2 Q F2144 703.2 Q F1 +(n)A F0 1.194(Displays the)25.3 F 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 525.6 Q F1144 537.6 Q F0 -(Clears the directory stack by deleting all of the entries.)25.86 E F1 -144 549.6 Q F0 .324(Produces a longer listing; the def)27.52 F -.324(ault listing format uses a tilde to denote the home direc-)-.1 F -(tory)180 561.6 Q(.)-.65 E F1144 573.6 Q F0 -(Print the directory stack with one entry per line.)24.74 E F1144 -585.6 Q F0 .272(Print the directory stack with one entry per line, pre\ -\214xing each entry with its inde)25.3 F 2.773(xi)-.15 G 2.773(nt)-2.773 -G(he)-2.773 E(stack.)180 597.6 Q .258(The return v)144 614.4 R .258 -(alue is 0 unless an in)-.25 F -.25(va)-.4 G .258 -(lid option is supplied or).25 F F2(n)2.758 E F0(inde)2.758 E -.15(xe) --.15 G 2.758(sb).15 G -.15(ey)-2.758 G .258(ond the end of the direc-) -.15 F(tory stack.)144 626.4 Q F1(diso)108 643.2 Q(wn)-.1 E F0([)2.5 E F1 -(\255ar)A F0 2.5(][)C F1-2.5 E F0 2.5(][)C F2(jobspec)-2.5 E F0 -(...])2.5 E -.4(Wi)144 655.2 S .295(thout options, each).4 F F2(jobspec) -4.535 E F0 .295(is remo)3.105 F -.15(ve)-.15 G 2.795(df).15 G .295 -(rom the table of acti)-2.795 F .595 -.15(ve j)-.25 H 2.795(obs. If).15 -F F2(jobspec)4.535 E F0 .295(is not present,)3.105 F .423(and neither) -144 667.2 R F12.923 E F0(nor)2.923 E F12.923 E F0 .423 -(is supplied, the shell')2.923 F 2.923(sn)-.55 G .423(otion of the) --2.923 F F2(curr)2.922 E .422(ent job)-.37 F F0 .422(is used.)2.922 F -.422(If the)5.422 F F12.922 E F0 .422(option is)2.922 F(gi)144 -679.2 Q -.15(ve)-.25 G .14(n, each).15 F F2(jobspec)4.38 E F0 .14 -(is not remo)2.95 F -.15(ve)-.15 G 2.641(df).15 G .141(rom the table, b) --2.641 F .141(ut is mark)-.2 F .141(ed so that)-.1 F F3(SIGHUP)2.641 E -F0 .141(is not sent to the)2.391 F .005(job if the shell recei)144 691.2 -R -.15(ve)-.25 G 2.504(sa).15 G F3(SIGHUP)A/F5 9/Times-Roman@0 SF(.)A F0 -.004(If no)4.504 F F2(jobspec)4.244 E F0 .004 -(is present, and neither the)2.814 F F12.504 E F0 .004(nor the) -2.504 F F12.504 E F0 .004(option is)2.504 F 1.228(supplied, the) -144 703.2 R F2(curr)3.728 E 1.228(ent job)-.37 F F0 1.229(is used.)3.729 -F 1.229(If no)6.229 F F2(jobspec)5.469 E F0 1.229(is supplied, the)4.039 -F F13.729 E F0 1.229(option means to remo)3.729 F 1.529 -.15(ve o) --.15 H(r).15 E .657(mark all jobs; the)144 715.2 R F13.157 E F0 -.657(option without a)3.157 F F2(jobspec)4.897 E F0(ar)3.467 E .656 -(gument restricts operation to running jobs.)-.18 F(The)5.656 E -(return v)144 727.2 Q(alue is 0 unless a)-.25 E F2(jobspec)4.24 E F0 -(does not specify a v)2.81 E(alid job)-.25 E(.)-.4 E(GNU Bash-4.1)72 768 -Q(2010 June 12)147.345 E(54)197.335 E 0 Cg EP +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 715.2 Q(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(54)198.165 E 0 Cg EP %%Page: 55 55 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(echo)108 84 Q F0([)2.5 E F1(\255neE)A F0 -2.5(][)C/F2 10/Times-Italic@0 SF(ar)-2.5 E(g)-.37 E F0(...])2.5 E .394 -(Output the)144 96 R F2(ar)2.894 E(g)-.37 E F0 .394 +-.35 E/F1 10/Times-Bold@0 SF144 84 Q F0 +(Clears the directory stack by deleting all of the entries.)25.86 E F1 +144 96 Q F0 .324(Produces a longer listing; the def)27.52 F .324 +(ault listing format uses a tilde to denote the home direc-)-.1 F(tory) +180 108 Q(.)-.65 E F1144 120 Q F0 +(Print the directory stack with one entry per line.)24.74 E F1144 +132 Q F0 .273(Print the directory stack with one entry per line, pre\ +\214xing each entry with its inde)25.3 F 2.772(xi)-.15 G 2.772(nt)-2.772 +G(he)-2.772 E(stack.)180 144 Q .257(The return v)144 160.8 R .258 +(alue is 0 unless an in)-.25 F -.25(va)-.4 G .258 +(lid option is supplied or).25 F/F2 10/Times-Italic@0 SF(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 172.8 Q F1(diso)108 +189.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 -.4(Wi)144 201.6 S .295 +(thout options, each).4 F F2(jobspec)4.535 E F0 .295(is remo)3.105 F +-.15(ve)-.15 G 2.795(df).15 G .295(rom the table of acti)-2.795 F .595 +-.15(ve j)-.25 H 2.795(obs. If).15 F F2(jobspec)4.535 E F0 .295 +(is not present,)3.105 F .422(and neither)144 213.6 R F12.922 E F0 +(nor)2.922 E F12.922 E F0 .422(is supplied, the shell')2.922 F +2.922(sn)-.55 G .422(otion of the)-2.922 F F2(curr)2.923 E .423(ent job) +-.37 F F0 .423(is used.)2.923 F .423(If the)5.423 F F12.923 E F0 +.423(option is)2.923 F(gi)144 225.6 Q -.15(ve)-.25 G .141(n, each).15 F +F2(jobspec)4.381 E F0 .141(is not remo)2.951 F -.15(ve)-.15 G 2.641(df) +.15 G .141(rom the table, b)-2.641 F .141(ut is mark)-.2 F .141 +(ed so that)-.1 F/F3 9/Times-Bold@0 SF(SIGHUP)2.641 E F0 .14 +(is not sent to the)2.39 F .004(job if the shell recei)144 237.6 R -.15 +(ve)-.25 G 2.504(sa).15 G F3(SIGHUP)A/F4 9/Times-Roman@0 SF(.)A F0 .004 +(If no)4.504 F F2(jobspec)4.244 E F0 .004(is present, and neither the) +2.814 F F12.504 E F0 .005(nor the)2.504 F F12.505 E F0 .005 +(option is)2.505 F 1.229(supplied, the)144 249.6 R F2(curr)3.729 E 1.229 +(ent job)-.37 F F0 1.229(is used.)3.729 F 1.229(If no)6.229 F F2 +(jobspec)5.469 E F0 1.229(is supplied, the)4.039 F F13.729 E F0 +1.228(option means to remo)3.729 F 1.528 -.15(ve o)-.15 H(r).15 E .656 +(mark all jobs; the)144 261.6 R F13.156 E F0 .657 +(option without a)3.156 F F2(jobspec)4.897 E F0(ar)3.467 E .657 +(gument restricts operation to running jobs.)-.18 F(The)5.657 E +(return v)144 273.6 Q(alue is 0 unless a)-.25 E F2(jobspec)4.24 E F0 +(does not specify a v)2.81 E(alid job)-.25 E(.)-.4 E 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 +.395(Output the)144 302.4 R F2(ar)2.895 E(g)-.37 E F0 .395 (s, separated by spaces, follo)B .395(wed by a ne)-.25 F 2.895 -(wline. The)-.25 F .395(return status is al)2.895 F -.1(wa)-.1 G .395 -(ys 0.).1 F(If)5.395 E F12.895 E F0 .549 -(is speci\214ed, the trailing ne)144 108 R .548(wline is suppressed.) +(wline. The)-.25 F .394(return status is al)2.895 F -.1(wa)-.1 G .394 +(ys 0.).1 F(If)5.394 E F12.894 E F0 .548 +(is speci\214ed, the trailing ne)144 314.4 R .548(wline is suppressed.) -.25 F .548(If the)5.548 F F13.048 E F0 .548(option is gi)3.048 F --.15(ve)-.25 G .548(n, interpretation of the fol-).15 F(lo)144 120 Q -.052(wing backslash-escaped characters is enabled.)-.25 F(The)5.052 E F1 -2.552 E F0 .053(option disables the interpretation of these)2.553 -F 1.503(escape characters, e)144 132 R -.15(ve)-.25 G 4.003(no).15 G -4.003(ns)-4.003 G 1.502(ystems where the)-4.003 F 4.002(ya)-.15 G 1.502 -(re interpreted by def)-4.002 F 4.002(ault. The)-.1 F F1(xpg_echo)4.002 -E F0(shell)4.002 E .009 -(option may be used to dynamically determine whether or not)144 144 R F1 -(echo)2.509 E F0 -.15(ex)2.51 G .01(pands these escape characters).15 F -.66(by def)144 156 R(ault.)-.1 E F1(echo)5.66 E F0 .66 -(does not interpret)3.16 F F13.16 E F0 .659 -(to mean the end of options.)3.159 F F1(echo)5.659 E F0 .659 -(interprets the follo)3.159 F(wing)-.25 E(escape sequences:)144 168 Q F1 -(\\a)144 180 Q F0(alert \(bell\))28.22 E F1(\\b)144 192 Q F0(backspace) -27.66 E F1(\\c)144 204 Q F0(suppress further output)28.78 E F1(\\e)144 -216 Q F0(an escape character)28.78 E F1(\\f)144 228 Q F0(form feed)29.89 -E F1(\\n)144 240 Q F0(ne)27.66 E 2.5(wl)-.25 G(ine)-2.5 E F1(\\r)144 252 -Q F0(carriage return)28.78 E F1(\\t)144 264 Q F0(horizontal tab)29.89 E -F1(\\v)144 276 Q F0 -.15(ve)28.22 G(rtical tab).15 E F1(\\\\)144 288 Q -F0(backslash)30.44 E F1(\\0)144 300 Q F2(nnn)A F0 -(the eight-bit character whose v)13.22 E(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 312 Q F2(HH)A F0(the eight-bit character whose v)13.78 E -(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 324 Q F2(HHHH)A F0 1.506 -(the Unicode \(ISO/IEC 10646\) character whose v)180 336 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 348 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 -(\\U)144 360 Q F2(HHHHHHHH)A F0 .548 -(the Unicode \(ISO/IEC 10646\) character whose v)180 372 R .547 -(alue is the he)-.25 F .547(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-) -3.047 E(HHH)180 384 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G(igits\)) --2.5 E F1(enable)108 400.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 .277(Enable and disable b)144 412.8 R +-.15(ve)-.25 G .548(n, interpretation of the fol-).15 F(lo)144 326.4 Q +.053(wing backslash-escaped characters is enabled.)-.25 F(The)5.053 E F1 +2.553 E F0 .052(option disables the interpretation of these)2.552 +F 1.502(escape characters, e)144 338.4 R -.15(ve)-.25 G 4.002(no).15 G +4.002(ns)-4.002 G 1.502(ystems where the)-4.002 F 4.002(ya)-.15 G 1.502 +(re interpreted by def)-4.002 F 4.003(ault. The)-.1 F F1(xpg_echo)4.003 +E F0(shell)4.003 E .009 +(option may be used to dynamically determine whether or not)144 350.4 R +F1(echo)2.509 E F0 -.15(ex)2.509 G .009(pands these escape characters) +.15 F .659(by def)144 362.4 R(ault.)-.1 E F1(echo)5.659 E F0 .659 +(does not interpret)3.159 F F13.159 E F0 .659 +(to mean the end of options.)3.159 F F1(echo)5.66 E F0 .66 +(interprets the follo)3.16 F(wing)-.25 E(escape sequences:)144 374.4 Q +F1(\\a)144 386.4 Q F0(alert \(bell\))28.22 E F1(\\b)144 398.4 Q F0 +(backspace)27.66 E F1(\\c)144 410.4 Q F0(suppress further output)28.78 E +F1(\\e)144 422.4 Q(\\E)144 434.4 Q F0(an escape character)26.55 E F1 +(\\f)144 446.4 Q F0(form feed)29.89 E F1(\\n)144 458.4 Q F0(ne)27.66 E +2.5(wl)-.25 G(ine)-2.5 E F1(\\r)144 470.4 Q F0(carriage return)28.78 E +F1(\\t)144 482.4 Q F0(horizontal tab)29.89 E F1(\\v)144 494.4 Q F0 -.15 +(ve)28.22 G(rtical tab).15 E F1(\\\\)144 506.4 Q F0(backslash)30.44 E F1 +(\\0)144 518.4 Q F2(nnn)A F0(the eight-bit character whose v)13.22 E +(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)13.78 E(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.507(the Unicode \(ISO/IEC 10646\) character whose v)180 554.4 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 566.4 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 +(\\U)144 578.4 Q F2(HHHHHHHH)A F0 .547 +(the Unicode \(ISO/IEC 10646\) character whose v)180 590.4 R .547 +(alue is the he)-.25 F .548(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-) +3.048 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 .278(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 424.8 R .834(uiltin to be e)-.2 F -.15 +(uiltin allo)-.2 F .278(ws a disk command which has)-.25 F .833 +(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 436.8 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 448.8 R F2(names)4.082 E F0 1.582(are enabled.) +(ve)-.25 G 3.334(nt).15 G(hough)-3.334 E .99 +(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 .989 +(is used, each)3.489 F F2(name)3.489 E F0 .989(is dis-)3.489 F 1.581 +(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 9/Times-Bold@0 -SF -.666(PA)4.081 G(TH)-.189 E F0 .08(instead of the shell b)144 460.8 R -.08(uiltin v)-.2 F .08(ersion, run)-.15 F/F4 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 472.8 S 1.525 -(iltin command).2 F F2(name)4.385 E F0 1.524(from shared object)4.204 F +F1(test)4.082 E F0 1.582(binary found via the)4.082 F F3 -.666(PA)4.082 +G(TH)-.189 E F0 .081(instead of the shell b)144 679.2 R .081(uiltin v) +-.2 F .081(ersion, run)-.15 F/F5 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 691.2 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 484.8 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 496.8 R F1 -2.899 E F0 .399(option is supplied, a list of shell b)2.899 F .399 +(ystems that support dynamic loading.)-4.024 F(The)144 703.2 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 715.2 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 .398(guments, the)-.18 F .098(list consists of all enabled shell b)144 -508.8 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 1.917 -(is supplied, the list printed includes all b)144 520.8 R 1.916 -(uiltins, with an indication of whether or not each is)-.2 F 2.878 -(enabled. If)144 532.8 R F12.878 E F0 .379 -(is supplied, the output is restricted to the POSIX)2.878 F F2(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 544.8 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 -556.8 Q F1 -2.3 -.15(ev a)108 573.6 T(l).15 E F0([)2.5 E F2(ar)A(g)-.37 -E F0(...])2.5 E(The)144 585.6 Q F2(ar)3.17 E(g)-.37 E F0 3.17(sa)C .671 -(re read and concatenated together into a single command.)-3.17 F .671 -(This command is then read)5.671 F .495(and e)144 597.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 609.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 626.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 638.4 Q F2(command)3.005 E F0 .305 -(is speci\214ed, it replaces the shell.)3.575 F .305(No ne)5.305 F 2.805 -(wp)-.25 G .306(rocess is created.)-2.805 F(The)5.306 E F2(ar)3.136 E -(guments)-.37 E F0(become)3.076 E .177(the ar)144 650.4 R .177 -(guments to)-.18 F F2(command)2.676 E F0 5.176(.I)C 2.676(ft)-5.176 G -(he)-2.676 E F12.676 E F0 .176 -(option is supplied, the shell places a dash at the be)2.676 F .176 -(ginning of)-.15 F .499(the zeroth ar)144 662.4 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 674.4 Q F0 .639(to be e) -3.909 F -.15(xe)-.15 G .638(cuted with an empty en).15 F 3.138 -(vironment. If)-.4 F F13.138 E F0 .638 -(is supplied, the shell passes)3.138 F F2(name)3.498 E F0 .638(as the) -3.318 F 1.077(zeroth ar)144 686.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 698.4 Q .618 -.15(ve s)-.25 H .318(hell e).15 F -.318(xits, unless the shell option)-.15 F F1(execfail)2.817 E F0 .317 -(is enabled, in which case it returns f)2.817 F(ail-)-.1 E 2.505 -(ure. An)144 710.4 R(interacti)2.505 E .305 -.15(ve s)-.25 H .005 -(hell returns f).15 F .005(ailure if the \214le cannot be e)-.1 F -.15 -(xe)-.15 G 2.505(cuted. If).15 F F2(command)2.705 E F0 .005 -(is not speci\214ed,)3.275 F(an)144 722.4 Q 3.037(yr)-.15 G .537 -(edirections tak)-3.037 F 3.036(ee)-.1 G -.25(ff)-3.036 G .536 -(ect in the current shell, and the return status is 0.).25 F .536 -(If there is a redirection)5.536 F(GNU Bash-4.1)72 768 Q(2010 June 12) -147.345 E(55)197.335 E 0 Cg EP +F .399(guments, the)-.18 F .099(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 .098(uiltins are printed.)-.2 F +(If)5.098 E F12.598 E F0(GNU Bash-4.2)72 768 Q(2010 July 21) +148.175 E(55)198.165 E 0 Cg EP %%Page: 56 56 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E(error)144 84 Q 2.5(,t)-.4 G(he return status is 1.)-2.5 E/F1 10 -/Times-Bold@0 SF(exit)108 100.8 Q F0([)2.5 E/F2 10/Times-Italic@0 SF(n)A -F0 6.29(]C)C .095(ause the shell to e)-6.29 F .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 112.8 S 2.5(cuted. A).15 F(trap on)2.5 E/F3 9 +-.35 E 1.916(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.879 +(enabled. If)144 96 R/F1 10/Times-Bold@0 SF2.879 E F0 .379 +(is supplied, the output is restricted to the POSIX)2.879 F/F2 10 +/Times-Italic@0 SF(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 108 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 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.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 160.8 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 +(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 +(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.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 213.6 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 .177 +(ginning of)-.15 F .5(the zeroth ar)144 225.6 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 237.6 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.499 E F0 .639(as the) +3.319 F 1.078(zeroth ar)144 249.6 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 .617 -.15(ve s)-.25 H .317(hell e).15 F +.317(xits, unless the shell option)-.15 F F1(execfail)2.817 E F0 .318 +(is enabled, in which case it returns f)2.817 F(ail-)-.1 E 2.505 +(ure. An)144 273.6 R(interacti)2.505 E .305 -.15(ve s)-.25 H .005 +(hell returns f).15 F .005(ailure if the \214le cannot be e)-.1 F -.15 +(xe)-.15 G 2.505(cuted. If).15 F F2(command)2.705 E F0 .005 +(is not speci\214ed,)3.275 F(an)144 285.6 Q 3.036(yr)-.15 G .536 +(edirections tak)-3.036 F 3.036(ee)-.1 G -.25(ff)-3.036 G .536 +(ect in the current shell, and the return status is 0.).25 F .536 +(If there is a redirection)5.536 F(error)144 297.6 Q 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 +6.29(]C)C .096(ause the shell to e)-6.29 F .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 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 129.6 Q F0([)2.5 +(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 141.6 Q F0 .257(The supplied)144 153.6 R +F0(]] ...)A F1(export \255p)108 355.2 Q F0 .256(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 165.6 R(the)2.626 E F1 -2.626 E F0 .127(option is gi)2.627 F -.15(ve)-.25 G .127(n, the) +(xe)-.15 G(cuted).15 E 2.627(commands. If)144 379.2 R(the)2.627 E F1 +2.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 .127 -(n, or if the).15 F F1144 177.6 Q F0 .66 -(option is supplied, a list of all names that are e)3.16 F .659 -(xported in this shell is printed.)-.15 F(The)5.659 E F13.159 E F0 -(option)3.159 E 1.586(causes the e)144 189.6 R 1.586 +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 F1144 391.2 Q F0 .659 +(option is supplied, a list of all names that are e)3.159 F .66 +(xported in this shell is printed.)-.15 F(The)5.66 E F13.16 E F0 +(option)3.16 E 1.587(causes the e)144 403.2 R 1.587 (xport property to be remo)-.15 F -.15(ve)-.15 G 4.086(df).15 G 1.586 (rom each)-4.086 F F2(name)4.086 E F0 6.586(.I)C 4.086(fav)-6.586 G -1.587(ariable name is follo)-4.336 F 1.587(wed by)-.25 F(=)144 201.6 Q -F2(wor)A(d)-.37 E F0 2.804(,t)C .304(he v)-2.804 F .304(alue of the v) +1.586(ariable name is follo)-4.336 F 1.586(wed by)-.25 F(=)144 415.2 Q +F2(wor)A(d)-.37 E F0 2.803(,t)C .303(he v)-2.803 F .303(alue of the v) -.25 F .304(ariable is set to)-.25 F F2(wor)2.804 E(d)-.37 E F0(.)A F1 -(export)5.304 E F0 .304(returns an e)2.804 F .303 -(xit status of 0 unless an in)-.15 F -.25(va)-.4 G(lid).25 E .293 -(option is encountered, one of the)144 213.6 R F2(names)2.793 E F0 .293 +(export)5.304 E F0 .304(returns an e)2.804 F .304 +(xit status of 0 unless an in)-.15 F -.25(va)-.4 G(lid).25 E .294 +(option is encountered, one of the)144 427.2 R F2(names)2.793 E F0 .293 (is not a v)2.793 F .293(alid shell v)-.25 F .293(ariable name, or)-.25 -F F12.793 E F0 .294(is supplied with a)2.793 F F2(name)144.36 -225.6 Q F0(that is not a function.)2.68 E F1(fc)108 242.4 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 +F F12.793 E F0 .293(is supplied with a)2.793 F F2(name)144.36 +439.2 Q F0(that is not a function.)2.68 E F1(fc)108 456 Q F0([)2.5 E F1 +A 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 -254.4 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 .478(Fix Command.)144 266.4 R .478 -(In the \214rst form, a range of commands from)5.478 F F2<8c72>4.888 E -(st)-.1 E F0(to)3.658 E F2(last)3.068 E F0 .477 -(is selected from the his-)3.658 F .881(tory list.)144 278.4 R F2 -.45 -(Fi)5.881 G -.1(rs).45 G(t).1 E F0(and)4.061 E F2(last)3.471 E F0 .882 +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 .477(Fix Command.)144 480 R .478 +(In the \214rst form, a range of commands from)5.477 F F2<8c72>4.888 E +(st)-.1 E F0(to)3.658 E F2(last)3.068 E F0 .478 +(is selected from the his-)3.658 F .882(tory list.)144 492 R F2 -.45(Fi) +5.882 G -.1(rs).45 G(t).1 E F0(and)4.062 E F2(last)3.472 E F0 .882 (may be speci\214ed as a string \(to locate the last command be)4.062 F -.882(ginning with)-.15 F .797(that string\) or as a number \(an inde)144 -290.4 R 3.297(xi)-.15 G .797(nto the history list, where a ne)-3.297 F --.05(ga)-.15 G(ti).05 E 1.097 -.15(ve n)-.25 H .796(umber is used as an) -.15 F(of)144 302.4 Q .276(fset from the current command number\).)-.25 F -(If)5.276 E F2(last)2.866 E F0 .277 -(is not speci\214ed it is set to the current command)3.456 F .093 -(for listing \(so that)144 314.4 R/F4 10/Courier@0 SF .092 +.881(ginning with)-.15 F .797(that string\) or as a number \(an inde)144 +504 R 3.297(xi)-.15 G .797(nto the history list, where a ne)-3.297 F +-.05(ga)-.15 G(ti).05 E 1.097 -.15(ve n)-.25 H .797(umber is used as an) +.15 F(of)144 516 Q .277(fset from the current command number\).)-.25 F +(If)5.277 E F2(last)2.867 E F0 .276 +(is not speci\214ed it is set to the current command)3.457 F .092 +(for listing \(so that)144 528 R/F4 10/Courier@0 SF .092 (fc \255l \25510)2.592 F F0 .092(prints the last 10 commands\) and to) 2.592 F F2<8c72>4.502 E(st)-.1 E F0 2.592(otherwise. If)3.272 F F2<8c72> -4.502 E(st)-.1 E F0 .092(is not)3.272 F -(speci\214ed it is set to the pre)144 326.4 Q -(vious command for editing and \25516 for listing.)-.25 E(The)144 350.4 -Q F12.522 E F0 .022 +4.502 E(st)-.1 E F0 .093(is not)3.273 F +(speci\214ed it is set to the pre)144 540 Q +(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 362.4 R .438(If the) -5.438 F F12.938 E F0 .438(option is gi)2.938 F -.15(ve)-.25 G .438 +(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 374.4 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 386.4 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 398.4 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 410.4 S(cuted.).15 E .04(In the second form,)144 434.4 R F2 -(command)2.54 E F0 .04(is re-e)2.54 F -.15(xe)-.15 G .039 -(cuted after each instance of).15 F F2(pat)2.539 E F0 .039 -(is replaced by)2.539 F F2 -.37(re)2.539 G(p).37 E F0 5.039(.A)C(useful) --2.5 E .406(alias to use with this is)144 446.4 R F4 .406(r='fc \255s') -2.906 F F0 2.906(,s)C 2.906(ot)-2.906 G .406(hat typing)-2.906 F F4 -6.406(rc)2.906 G(c)-6.406 E F0 .406(runs the last command be)2.906 F -.407(ginning with)-.15 F F4(cc)144 458.4 Q F0(and typing)2.5 E F4(r)2.5 -E F0(re-e)2.5 E -.15(xe)-.15 G(cutes the last command.).15 E .142 -(If the \214rst form is used, the return v)144 482.4 R .142 +.335(the editor gi)144 588 R -.15(ve)-.25 G 2.835(nb).15 G(y)-2.835 E F2 +(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 F2(ename)3.024 E F0 .334(is not gi)3.014 F -.15(ve)-.25 G +(n,).15 E .63(the v)144 600 R .63(alue of the)-.25 F F3(FCEDIT)3.13 E F0 +-.25(va)2.88 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.131 E F0 .631 +(is not set.)2.881 F .631(If nei-)5.631 F .951(ther v)144 612 R .951 +(ariable is set,)-.25 F F2(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 624 S(cuted.).15 E .039(In the second form,)144 648 R F2 +(command)2.539 E F0 .039(is re-e)2.539 F -.15(xe)-.15 G .039 +(cuted after each instance of).15 F F2(pat)2.54 E F0 .04(is replaced by) +2.54 F F2 -.37(re)2.54 G(p).37 E F0 5.04(.A)C(useful)-2.5 E .406 +(alias to use with this is)144 660 R F4 .406(r='fc \255s')2.906 F F0 +2.906(,s)C 2.906(ot)-2.906 G .406(hat typing)-2.906 F F4 6.406(rc)2.906 +G(c)-6.406 E F0 .406(runs the last command be)2.906 F .406(ginning with) +-.15 F F4(cc)144 672 Q F0(and typing)2.5 E F4(r)2.5 E F0(re-e)2.5 E -.15 +(xe)-.15 G(cutes the last command.).15 E .142 +(If the \214rst form is used, the return v)144 696 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 .454(specify history lines out of range.)144 494.4 -R .454(If the)5.454 F F12.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 506.4 R -.15(xe)-.15 G .788 -(cuted or f).15 F .787 +E F2(last)2.732 E F0 .455(specify history lines out of range.)144 708 R +.454(If the)5.454 F F12.954 E F0 .454 +(option is supplied, the return v)2.954 F .454(alue is the v)-.25 F .454 +(alue of the)-.25 F .787(last command e)144 720 R -.15(xe)-.15 G .787 +(cuted or f).15 F .788 (ailure if an error occurs with the temporary \214le of commands.)-.1 F -.787(If the)5.787 F 1.135 -(second form is used, the return status is that of the command re-e)144 -518.4 R -.15(xe)-.15 G 1.136(cuted, unless).15 F F2(cmd)3.836 E F0 1.136 -(does not)4.406 F(specify a v)144 530.4 Q -(alid history line, in which case)-.25 E F1(fc)2.5 E F0(returns f)2.5 E -(ailure.)-.1 E F1(fg)108 547.2 Q F0([)2.5 E F2(jobspec)A F0(])A(Resume) -144 559.2 Q F2(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 F2(jobspec)5.653 E F0 -1.413(is not present, the)4.223 F(shell')144 571.2 Q 3.116(sn)-.55 G -.616(otion of the)-3.116 F F2(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 583.2 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 F2(jobspec)145.74 595.2 Q -F0 .004(does not specify a v)2.814 F .004(alid job or)-.25 F F2(jobspec) -4.244 E F0 .004(speci\214es a job that w)2.814 F .004 -(as started without job control.)-.1 F F1(getopts)108 612 Q F2 -(optstring name)2.5 E F0([)2.5 E F2(ar)A(gs)-.37 E F0(])A F1(getopts)144 -624 Q F0 .793 -(is used by shell procedures to parse positional parameters.)3.294 F F2 -(optstring)6.023 E F0 .793(contains the option)3.513 F .149 -(characters to be recognized; if a character is follo)144 636 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 648 Q .579 -(gument, which should be separated from it by white space.)-.18 F .578 -(The colon and question mark char)5.579 F(-)-.2 E 1.665 -(acters may not be used as option characters.)144 660 R 1.665 -(Each time it is in)6.665 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F1(getopts) -4.165 E F0 1.665(places the ne)4.165 F(xt)-.15 E .797 -(option in the shell v)144 672 R(ariable)-.25 E F2(name)3.297 E F0 3.297 -(,i).18 G(nitializing)-3.297 E F2(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 684 Q .085 -(gument to be processed into the v)-.18 F(ariable)-.25 E F3(OPTIND)2.585 -E/F5 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 696 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 F1 -(getopts)3.345 E F0 .845(places that ar)3.345 F(gument)-.18 E .803 -(into the v)144 708 R(ariable)-.25 E F3(OPT)3.303 E(ARG)-.81 E F5(.)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 720 R F1(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(GNU Bash-4.1)72 768 Q -(2010 June 12)147.345 E(56)197.335 E 0 Cg EP +.788(If the)5.788 F(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(56) +198.165 E 0 Cg EP %%Page: 57 57 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E(is to be used.)144 84 Q 2.043 -(When the end of options is encountered,)144 108 R/F1 10/Times-Bold@0 SF -(getopts)4.543 E F0 -.15(ex)4.543 G 2.043(its with a return v).15 F -2.044(alue greater than zero.)-.25 F/F2 9/Times-Bold@0 SF(OPTIND)144 120 -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 F1(getopts)144 144 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/F3 10/Times-Italic@0 SF(ar)4.892 E(gs)-.37 E F0(,) -.27 E F1(getopts)144 156 Q F0(parses those instead.)2.5 E F1(getopts)144 -180 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 F3(optstring) -3.895 E F0 1.166(is a colon,)3.886 F F3(silent)4.006 E F0(error)4.346 E -1.264(reporting is used.)144 192 R 1.263 +-.35 E 1.136 +(second form is used, the return status is that of the command re-e)144 +84 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 96 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 112.8 Q F0([)2.5 E F1 +(jobspec)A F0(])A(Resume)144 124.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 136.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 148.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 160.8 Q +F0 .004(does not specify a v)2.815 F .004(alid job or)-.25 F F1(jobspec) +4.244 E F0 .004(speci\214es a job that w)2.814 F .004 +(as started without job control.)-.1 F F2(getopts)108 177.6 Q F1 +(optstring name)2.5 E F0([)2.5 E F1(ar)A(gs)-.37 E F0(])A F2(getopts)144 +189.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 201.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 213.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 225.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 .796 +(option in the shell v)144 237.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 249.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 .845 +(or a shell script is in)144 261.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.346 E F0 .846(places that ar)3.346 F(gument)-.18 E .804 +(into the v)144 273.6 R(ariable)-.25 E F3(OPT)3.304 E(ARG)-.81 E F4(.)A +F0 .803(The shell does not reset)5.304 F F3(OPTIND)3.303 E F0 .803 +(automatically; it must be manually)3.053 F .293 +(reset between multiple calls to)144 285.6 R F2(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 .294(et of parameters)-2.793 F(is to be used.)144 297.6 +Q 2.044(When the end of options is encountered,)144 321.6 R F2(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 F3(OPTIND)144 333.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 F2(name)2.5 E F0 +(is set to ?.)2.5 E F2(getopts)144 357.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 F2(getopts)144 +369.6 Q F0(parses those instead.)2.5 E F2(getopts)144 393.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.263 +(reporting is used.)144 405.6 R 1.263 (In normal operation diagnostic messages are printed when in)6.263 F --.25(va)-.4 G 1.263(lid options or).25 F .393(missing option ar)144 204 -R .393(guments are encountered.)-.18 F .394(If the v)5.394 F(ariable) --.25 E F2(OPTERR)2.894 E F0 .394(is set to 0, no error messages)2.644 F -(will be displayed, e)144 216 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 -G(he \214rst character of)-2.5 E F3(optstring)2.73 E F0(is not a colon.) -2.72 E .667(If an in)144 240 R -.25(va)-.4 G .667(lid option is seen,) -.25 F F1(getopts)3.167 E F0 .667(places ? into)3.167 F F3(name)3.527 E -F0 .666(and, if not silent, prints an error message)3.347 F .399 -(and unsets)144 252 R F2(OPT)2.899 E(ARG)-.81 E/F4 9/Times-Roman@0 SF(.) -A F0(If)4.899 E F1(getopts)2.899 E F0 .399 -(is silent, the option character found is placed in)2.899 F F2(OPT)2.899 -E(ARG)-.81 E F0 .4(and no)2.65 F(diagnostic message is printed.)144 264 -Q 1.242(If a required ar)144 288 R 1.242(gument is not found, and)-.18 F -F1(getopts)3.741 E F0 1.241(is not silent, a question mark \()3.741 F F1 -(?).833 E F0 3.741(\)i).833 G 3.741(sp)-3.741 G 1.241(laced in)-3.741 F -F3(name)144 300 Q F0(,).18 E F2(OPT)2.734 E(ARG)-.81 E F0 .234 -(is unset, and a diagnostic message is printed.)2.484 F(If)5.234 E F1 -(getopts)2.734 E F0 .235(is silent, then a colon \()2.734 F F1(:).833 E -F0(\)).833 E(is placed in)144 312 Q F3(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 F1 -(getopts)144 336 Q F0 .902 +-.25(va)-.4 G 1.263(lid options or).25 F .394(missing option ar)144 +417.6 R .394(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 429.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 453.6 R +-.25(va)-.4 G .666(lid option is seen,).25 F F2(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 +465.6 R F3(OPT)2.9 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 .399(and no)2.649 F +(diagnostic message is printed.)144 477.6 Q 1.241(If a required ar)144 +501.6 R 1.241(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.742 +(\)i).833 G 3.742(sp)-3.742 G 1.242(laced in)-3.742 F F1(name)144 513.6 +Q F0(,).18 E F3(OPT)2.735 E(ARG)-.81 E F0 .234 +(is unset, and a diagnostic message is printed.)2.485 F(If)5.234 E F2 +(getopts)2.734 E F0 .234(is silent, then a colon \()2.734 F F2(:).833 E +F0(\)).833 E(is placed in)144 525.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 549.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 348 Q F1(hash)108 364.8 -Q F0([)2.5 E F1(\255lr)A F0 2.5(][)C F1-2.5 E F3(\214lename)2.5 E -F0 2.5(][)C F1(\255dt)-2.5 E F0 2.5(][)C F3(name)-2.5 E F0(])A .858 -(Each time)144 376.8 R F1(hash)3.358 E F0 .858(is in)3.358 F -.2(vo)-.4 -G -.1(ke).2 G .858(d, the full pathname of the command).1 F F3(name) +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 561.6 Q F2(hash)108 +578.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 590.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 388.8 R F1($P)3.456 E -.95(AT)-.74 G(H).95 E F0 +(the directories in)144 602.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 .098(If the)144 400.8 -R F12.598 E F0 .098 -(option is supplied, no path search is performed, and)2.598 F F3 -(\214lename)4.509 E F0 .099(is used as the full \214le name)2.779 F -1.712(of the command.)144 412.8 R(The)6.712 E F14.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 F14.211 E F0 -.833(option causes the shell to for)144 424.8 R .833 -(get the remembered location of each)-.18 F F3(name)3.333 E F0 5.833(.I) -C 3.333(ft)-5.833 G(he)-3.333 E F13.333 E F0 .833(option is sup-) -3.333 F .704(plied, the full pathname to which each)144 436.8 R F3(name) -3.204 E F0 .703(corresponds is printed.)3.204 F .703(If multiple)5.703 F -F3(name)3.203 E F0(ar)3.203 E(guments)-.18 E .795(are supplied with)144 -448.8 R F13.295 E F0 3.295(,t)C(he)-3.295 E F3(name)3.295 E F0 -.795(is printed before the hashed full pathname.)3.295 F(The)5.795 E F1 +(viously-remembered pathname is discarded.)-.25 F .099(If the)144 614.4 +R F22.599 E F0 .099 +(option is supplied, no path search is performed, and)2.599 F F1 +(\214lename)4.508 E F0 .098(is used as the full \214le name)2.778 F +1.711(of the command.)144 626.4 R(The)6.711 E F24.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 F24.212 E F0 +.833(option causes the shell to for)144 638.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 .703(plied, the full pathname to which each)144 650.4 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 +662.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 -460.8 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 472.8 Q F12.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 484.8 Q F3(name)2.86 +674.4 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 686.4 Q F22.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 698.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 F1(help)108 501.6 Q F0([)2.5 E F1(\255dms)A F0 2.5(][)C F3 -(pattern)-2.5 E F0(])A .867(Display helpful information about b)144 -513.6 R .867(uiltin commands.)-.2 F(If)5.867 E F3(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 -525.6 R F3(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 537.6 Q F1 -144 549.6 Q F0(Display a short description of each)24.74 E F3 -(pattern)2.5 E F1144 561.6 Q F0(Display the description of each) -21.97 E F3(pattern)2.5 E F0(in a manpage-lik)2.5 E 2.5(ef)-.1 G(ormat) --2.5 E F1144 573.6 Q F0 -(Display only a short usage synopsis for each)26.41 E F3(pattern)2.5 E -F0(The return status is 0 unless no command matches)108 585.6 Q F3 -(pattern)2.5 E F0(.).24 E F1(history [)108 602.4 Q F3(n)A F1(])A -(history \255c)108 614.4 Q(history \255d)108 626.4 Q F3(of)2.5 E(fset) --.18 E F1(history \255anrw)108 638.4 Q F0([)2.5 E F3(\214lename)A F0(])A -F1(history \255p)108 650.4 Q F3(ar)2.5 E(g)-.37 E F0([)2.5 E F3(ar)A 2.5 -(g.)-.37 G(..)-2.5 E F0(])A F1(history \255s)108 662.4 Q F3(ar)2.5 E(g) --.37 E F0([)2.5 E F3(ar)A 2.5(g.)-.37 G(..)-2.5 E F0(])A -.4(Wi)144 -674.4 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 686.4 R .38(An ar)5.38 F .38(gument of)-.18 F -F3(n)3.24 E F0 .38(lists only the last)3.12 F F3(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.881 E(MA)144 698.4 Q(T)-.855 E F0 .265 -(is set and not null, it is used as a format string for)2.515 F F3 -(strftime)2.764 E F0 .264(\(3\) to display the time stamp asso-)B 1.019 -(ciated with each displayed history entry)144 710.4 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 722.4 R(If)5.176 E F3(\214lename) -2.676 E F0 .176 -(is supplied, it is used as the name of the history \214le; if)2.676 F -(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(57)197.335 E 0 Cg EP +.25 E(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(57)198.165 E 0 Cg EP %%Page: 58 58 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E(not, the v)144 84 Q(alue of)-.25 E/F1 9/Times-Bold@0 SF(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/F2 10/Times-Bold@0 SF144 96 -Q F0(Clear the history list by deleting all the entries.)25.86 E F2 -144 108 Q/F3 10/Times-Italic@0 SF(of)2.5 E(fset)-.18 E F0 -(Delete the history entry at position)180 120 Q F3(of)2.5 E(fset)-.18 E -F0(.)A F2144 132 Q F0 .598(Append the `)25.3 F(`ne)-.74 E(w')-.25 -E 3.098('h)-.74 G .598 -(istory lines \(history lines entered since the be)-3.098 F .599 -(ginning of the current)-.15 F F2(bash)180 144 Q F0 -(session\) to the history \214le.)2.5 E F2144 156 Q F0 .854(Read \ -the history lines not already read from the history \214le into the cur\ -rent history list.)24.74 F .772 -(These are lines appended to the history \214le since the be)180 168 R -.773(ginning of the current)-.15 F F2(bash)3.273 E F0(ses-)3.273 E -(sion.)180 180 Q F2144 192 Q F0(Read the contents of the history \ -\214le and use them as the current history)25.86 E(.)-.65 E F2144 -204 Q F0(Write the current history to the history \214le, o)23.08 E -.15 -(ve)-.15 G(rwriting the history \214le').15 E 2.5(sc)-.55 G(ontents.) --2.5 E F2144 216 Q F0 .626 -(Perform history substitution on the follo)24.74 F(wing)-.25 E F3(ar) -3.125 E(gs)-.37 E F0 .625(and display the result on the standard)3.125 F -2.975(output. Does)180 228 R .475 -(not store the results in the history list.)2.975 F(Each)5.475 E F3(ar) +-.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 .866 +(Display helpful information about b)144 96 R .867(uiltin commands.)-.2 +F(If)5.867 E F2(pattern)4.617 E F0 .867(is speci\214ed,)3.607 F F1(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 108 R F2(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 120 Q F1 +144 132 Q F0(Display a short description of each)24.74 E F2 +(pattern)2.5 E F1144 144 Q F0(Display the description of each) +21.97 E 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)26.41 E F2(pattern)2.5 E +F0(The return status is 0 unless no command matches)108 168 Q F2 +(pattern)2.5 E F0(.).24 E F1(history [)108 184.8 Q F2(n)A F1(])A +(history \255c)108 196.8 Q(history \255d)108 208.8 Q F2(of)2.5 E(fset) +-.18 E F1(history \255anrw)108 220.8 Q F0([)2.5 E F2(\214lename)A F0(])A +F1(history \255p)108 232.8 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 244.8 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 +256.8 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.252 E F0(ha)3.252 E -.15(ve)-.2 +G .381(been modi\214ed.)144 268.8 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.88 E(MA)144 280.8 Q(T)-.855 E F0 .264 +(is set and not null, it is used as a format string for)2.514 F F2 +(strftime)2.765 E F0 .265(\(3\) to display the time stamp asso-)B 1.02 +(ciated with each displayed history entry)144 292.8 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 304.8 R(If)5.176 E F2(\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 316.8 Q(alue of)-.25 E F3(HISTFILE)2.5 E F0(is used.) +2.25 E(Options, if supplied, ha)5 E .3 -.15(ve t)-.2 H(he follo).15 E +(wing meanings:)-.25 E F1144 328.8 Q F0 +(Clear the history list by deleting all the entries.)25.86 E F1144 +340.8 Q F2(of)2.5 E(fset)-.18 E F0(Delete the history entry at position) +180 352.8 Q F2(of)2.5 E(fset)-.18 E F0(.)A F1144 364.8 Q F0 .599 +(Append the `)25.3 F(`ne)-.74 E(w')-.25 E 3.099('h)-.74 G .598 +(istory lines \(history lines entered since the be)-3.099 F .598 +(ginning of the current)-.15 F F1(bash)180 376.8 Q F0 +(session\) to the history \214le.)2.5 E F1144 388.8 Q F0 .854(Rea\ +d the history lines not already read from the history \214le into the c\ +urrent history list.)24.74 F .773 +(These are lines appended to the history \214le since the be)180 400.8 R +.772(ginning of the current)-.15 F F1(bash)3.272 E F0(ses-)3.272 E +(sion.)180 412.8 Q F1144 424.8 Q F0(Read the contents of the hist\ +ory \214le and use them as the current history)25.86 E(.)-.65 E F1 +144 436.8 Q F0(Write the current history to the history \214le, o)23.08 +E -.15(ve)-.15 G(rwriting the history \214le').15 E 2.5(sc)-.55 G +(ontents.)-2.5 E F1144 448.8 Q F0 .625 +(Perform history substitution on the follo)24.74 F(wing)-.25 E F2(ar) +3.125 E(gs)-.37 E F0 .626(and display the result on the standard)3.125 F +2.975(output. Does)180 460.8 R .475 +(not store the results in the history list.)2.975 F(Each)5.475 E F2(ar) 2.975 E(g)-.37 E F0 .475(must be quoted to disable)2.975 F -(normal history e)180 240 Q(xpansion.)-.15 E F2144 252 Q F0 .363 -(Store the)26.41 F F3(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 264 Q -.15(ve) --.15 G 2.5(db).15 G(efore the)-2.5 E F3(ar)2.83 E(gs)-.37 E F0 -(are added.)2.77 E .145(If the)144 280.8 R F1(HISTTIMEFORMA)2.645 E(T) +(normal history e)180 472.8 Q(xpansion.)-.15 E F1144 484.8 Q F0 +.362(Store the)26.41 F F2(ar)3.192 E(gs)-.37 E F0 .363 +(in the history list as a single entry)3.132 F 5.363(.T)-.65 G .363 +(he last command in the history list is)-5.363 F(remo)180 496.8 Q -.15 +(ve)-.15 G 2.5(db).15 G(efore the)-2.5 E F2(ar)2.83 E(gs)-.37 E F0 +(are added.)2.77 E .146(If the)144 513.6 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 292.8 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 304.8 R .956 -(ginning with the history comment character follo)-.15 F .956 -(wed immediately by a digit)-.25 F .416 -(are interpreted as timestamps for the pre)144 316.8 R .416 -(vious history line.)-.25 F .416(The return v)5.416 F .415 +.25 F .668(entry is written to the history \214le, mark)144 525.6 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 537.6 R .956 +(ginning with the history comment character follo)-.15 F .955 +(wed immediately by a digit)-.25 F .415 +(are interpreted as timestamps for the pre)144 549.6 R .416 +(vious history line.)-.25 F .416(The return v)5.416 F .416 (alue is 0 unless an in)-.25 F -.25(va)-.4 G(lid).25 E .499(option is e\ ncountered, an error occurs while reading or writing the history \214le\ -, an in)144 328.8 R -.25(va)-.4 G(lid).25 E F3(of)3 E(fset)-.18 E F0(is) -3 E(supplied as an ar)144 340.8 Q(gument to)-.18 E F22.5 E F0 2.5 -(,o)C 2.5(rt)-2.5 G(he history e)-2.5 E(xpansion supplied as an ar)-.15 -E(gument to)-.18 E F22.5 E F0 -.1(fa)2.5 G(ils.).1 E F2(jobs)108 -357.6 Q F0([)2.5 E F2(\255lnprs)A F0 2.5(][)C F3(jobspec)A F0(... ])2.5 -E F2(jobs \255x)108 369.6 Q F3(command)2.5 E F0([)2.5 E F3(ar)2.5 E(gs) --.37 E F0(... ])2.5 E(The \214rst form lists the acti)144 381.6 Q .3 --.15(ve j)-.25 H 2.5(obs. The).15 F(options ha)2.5 E .3 -.15(ve t)-.2 H -(he follo).15 E(wing meanings:)-.25 E F2144 393.6 Q F0 -(List process IDs in addition to the normal information.)27.52 E F2 -144 405.6 Q F0 .194(Display information only about jobs that ha) -24.74 F .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 417.6 Q F2144 -429.6 Q F0(List only the process ID of the job')24.74 E 2.5(sp)-.55 G -(rocess group leader)-2.5 E(.)-.55 E F2144 441.6 Q F0 -(Restrict output to running jobs.)25.86 E F2144 453.6 Q F0 -(Restrict output to stopped jobs.)26.41 E(If)144 470.4 Q F3(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 482.4 Q -.25 +, an in)144 561.6 R -.25(va)-.4 G(lid).25 E F2(of)2.999 E(fset)-.18 E F0 +(is)2.999 E(supplied as an ar)144 573.6 Q(gument to)-.18 E F12.5 E +F0 2.5(,o)C 2.5(rt)-2.5 G(he history e)-2.5 E +(xpansion supplied as an ar)-.15 E(gument to)-.18 E F12.5 E F0 -.1 +(fa)2.5 G(ils.).1 E F1(jobs)108 590.4 Q F0([)2.5 E F1(\255lnprs)A F0 2.5 +(][)C F2(jobspec)A F0(... ])2.5 E F1(jobs \255x)108 602.4 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 614.4 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 626.4 Q F0 +(List process IDs in addition to the normal information.)27.52 E F1 +144 638.4 Q F0 .193(Display information only about jobs that ha) +24.74 F .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 650.4 Q F1144 +662.4 Q F0(List only the process ID of the job')24.74 E 2.5(sp)-.55 G +(rocess group leader)-2.5 E(.)-.55 E F1144 674.4 Q F0 +(Restrict output to running jobs.)25.86 E F1144 686.4 Q F0 +(Restrict output to stopped jobs.)26.41 E(If)144 703.2 Q F2(jobspec) +4.554 E F0 .314(is gi)3.124 F -.15(ve)-.25 G .314 +(n, output is restricted to information about that job).15 F 5.313(.T) +-.4 G .313(he return status is 0 unless)-5.313 F(an in)144 715.2 Q -.25 (va)-.4 G(lid option is encountered or an in).25 E -.25(va)-.4 G(lid).25 -E F3(jobspec)4.24 E F0(is supplied.)2.81 E .395(If the)144 499.2 R F2 -2.895 E F0 .394(option is supplied,)2.894 F F2(jobs)2.894 E F0 -.394(replaces an)2.894 F(y)-.15 E F3(jobspec)4.634 E F0 .394(found in) -3.204 F F3(command)3.094 E F0(or)3.664 E F3(ar)3.224 E(gs)-.37 E F0 .394 -(with the corre-)3.164 F(sponding process group ID, and e)144 511.2 Q --.15(xe)-.15 G(cutes).15 E F3(command)2.7 E F0(passing it)3.27 E F3(ar) -2.5 E(gs)-.37 E F0 2.5(,r).27 G(eturning its e)-2.5 E(xit status.)-.15 E -F2(kill)108 528 Q F0([)2.5 E F2A F3(sigspec)2.5 E F0(|)2.5 E F2 -2.5 E F3(signum)2.5 E F0(|)2.5 E F22.5 E F3(sigspec)A F0 2.5 -(][)C F3(pid)-2.5 E F0(|)2.5 E F3(jobspec)2.5 E F0 2.5(].)C(..)-2.5 E F2 -(kill \255l)108 540 Q F0([)2.5 E F3(sigspec)A F0(|)2.5 E F3 -.2(ex)2.5 G -(it_status).2 E F0(])A .119(Send the signal named by)144 552 R F3 -(sigspec)2.959 E F0(or)2.929 E F3(signum)2.959 E F0 .119 -(to the processes named by)2.939 F F3(pid)3.87 E F0(or)3.39 E F3 -(jobspec)2.62 E F0(.).31 E F3(sigspec)5.46 E F0(is)2.93 E .319 -(either a case-insensiti)144 564 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 576 Q F3(signum)4.188 E F0 -1.349(is a signal number)4.168 F 6.349(.I)-.55 G(f)-6.349 E F3(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 588 Q .523(gument of)-.18 F -F23.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 -F23.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 600 R .28 -(guments are listed, and the return status is 0.)-.18 F(The)5.28 E F3 --.2(ex)2.78 G(it_status).2 E F0(ar)144 612 Q .378(gument to)-.18 F F2 -2.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 .593(nated by a signal.)144 624 R -F2(kill)5.593 E F0 .593(returns true if at least one signal w)3.093 F -.593(as successfully sent, or f)-.1 F .594(alse if an error)-.1 F -(occurs or an in)144 636 Q -.25(va)-.4 G(lid option is encountered.).25 -E F2(let)108 652.8 Q F3(ar)2.5 E(g)-.37 E F0([)2.5 E F3(ar)A(g)-.37 E F0 -(...])2.5 E(Each)144 664.8 Q F3(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 676.8 Q F3(ar)2.83 E(g)-.37 E F0 -.25(eva)2.72 G -(luates to 0,).25 E F2(let)2.5 E F0(returns 1; 0 is returned otherwise.) -2.5 E F2(local)108 693.6 Q F0([)2.5 E F3(option)A F0 2.5(][)C F3(name) --2.5 E F0([=)A F3(value)A F0 2.5(].)C(..])-2.5 E -.15(Fo)144 705.6 S -2.56(re).15 G .06(ach ar)-2.56 F .06(gument, a local v)-.18 F .06 -(ariable named)-.25 F F3(name)2.92 E F0 .06(is created, and assigned) -2.74 F F3(value)2.56 E F0 5.06(.T).18 G(he)-5.06 E F3(option)2.56 E F0 -.06(can be)2.56 F(an)144 717.6 Q 3.153(yo)-.15 G 3.153(ft)-3.153 G .653 -(he options accepted by)-3.153 F F2(declar)3.153 E(e)-.18 E F0 5.652(.W) -C(hen)-5.652 E F2(local)3.152 E F0 .652 -(is used within a function, it causes the v)3.152 F(ari-)-.25 E(able)144 -729.6 Q F3(name)3.72 E F0 .86(to ha)3.54 F 1.16 -.15(ve a v)-.2 H .861 -(isible scope restricted to that function and its children.).15 F -.4 -(Wi)5.861 G .861(th no operands,).4 F(GNU Bash-4.1)72 768 Q -(2010 June 12)147.345 E(58)197.335 E 0 Cg EP +E F2(jobspec)4.24 E F0(is supplied.)2.81 E(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(58)198.165 E 0 Cg EP %%Page: 59 59 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(local)144 84 Q F0 1.165 -(writes a list of local v)3.665 F 1.165 +-.35 E .394(If the)144 84 R/F1 10/Times-Bold@0 SF2.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 10/Times-Italic@0 SF(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 96 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 112.8 Q F0([)2.5 E F1A F2(sigspec)2.5 E F0(|)2.5 E F1 +2.5 E F2(signum)2.5 E F0(|)2.5 E F12.5 E F2(sigspec)A F0 2.5 +(][)C F2(pid)-2.5 E F0(|)2.5 E F2(jobspec)2.5 E F0 2.5(].)C(..)-2.5 E F1 +(kill \255l)108 124.8 Q 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 136.8 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 148.8 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 160.8 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 172.8 Q .522(gument of)-.18 +F F13.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 184.8 +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 196.8 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 .594(nated by a signal.)144 208.8 +R F1(kill)5.593 E F0 .593(returns true if at least one signal w)3.093 F +.593(as successfully sent, or f)-.1 F .593(alse if an error)-.1 F +(occurs or an in)144 220.8 Q -.25(va)-.4 G(lid option is encountered.) +.25 E F1(let)108 237.6 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 249.6 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 261.6 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 278.4 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(..])-2.5 E -.15(Fo)144 290.4 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 302.4 Q 3.152(yo)-.15 G 3.152(ft)-3.152 G .652 +(he options accepted by)-3.152 F F1(declar)3.152 E(e)-.18 E F0 5.652(.W) +C(hen)-5.652 E F1(local)3.152 E F0 .653 +(is used within a function, it causes the v)3.152 F(ari-)-.25 E(able)144 +314.4 Q F2(name)3.721 E F0 .861(to ha)3.541 F 1.161 -.15(ve a v)-.2 H +.861(isible scope restricted to that function and its children.).15 F +-.4(Wi)5.86 G .86(th no operands,).4 F F1(local)144 326.4 Q F0 1.164 +(writes a list of local v)3.664 F 1.165 (ariables to the standard output.)-.25 F 1.165(It is an error to use) -6.165 F F1(local)3.664 E F0 1.164(when not)3.664 F .232 -(within a function.)144 96 R .233(The return status is 0 unless)5.232 F -F1(local)2.733 E F0 .233(is used outside a function, an in)2.733 F -.25 -(va)-.4 G(lid).25 E/F2 10/Times-Italic@0 SF(name)3.093 E F0(is)2.913 E -(supplied, or)144 108 Q F2(name)2.5 E F0(is a readonly v)2.5 E(ariable.) --.25 E F1(logout)108 124.8 Q F0(Exit a login shell.)9.33 E F1(map\214le) -108 141.6 Q F0([)2.5 E F1A 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 -153.6 S(adarray).18 E F0([)2.5 E F1A 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 .351 -(Read lines from the standard input into the inde)144 165.6 R -.15(xe) --.15 G 2.851(da).15 G .351(rray v)-2.851 F(ariable)-.25 E F2(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 177.6 R F13.748 E F0 -1.248(option is supplied.)3.748 F 1.249(The v)6.249 F(ariable)-.25 E/F3 -9/Times-Bold@0 SF(MAPFILE)3.749 E F0 1.249(is the def)3.499 F(ault)-.1 E -F2(arr)3.749 E(ay)-.15 E F0 6.249(.O)C 1.249(ptions, if supplied,)-6.249 -F(ha)144 189.6 Q .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E -F1144 201.6 Q F0(Cop)24.74 E 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 213.6 Q F0(Be)22.52 E -(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 225.6 Q F0 -(Discard the \214rst)26.41 E F2(count)2.5 E F0(lines read.)2.5 E F1 -144 237.6 Q F0(Remo)26.97 E .3 -.15(ve a t)-.15 H(railing ne).15 E -(wline from each line read.)-.25 E F1144 249.6 Q F0 -(Read lines from \214le descriptor)24.74 E F2(fd)2.5 E F0 -(instead of the standard input.)2.5 E F1144 261.6 Q F0(Ev)23.08 E +6.165 F F1(local)3.665 E F0 1.165(when not)3.665 F .233 +(within a function.)144 338.4 R .233(The return status is 0 unless)5.233 +F F1(local)2.733 E F0 .233(is used outside a function, an in)2.733 F +-.25(va)-.4 G(lid).25 E F2(name)3.092 E F0(is)2.912 E(supplied, or)144 +350.4 Q F2(name)2.5 E F0(is a readonly v)2.5 E(ariable.)-.25 E F1 +(logout)108 367.2 Q F0(Exit a login shell.)9.33 E F1(map\214le)108 384 Q +F0([)2.5 E F1A 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 396 S +(adarray).18 E F0([)2.5 E F1A 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 408 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 420 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 432 +Q .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1144 +444 Q F0(Cop)24.74 E 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 456 Q F0(Be)22.52 E(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 F1 +144 468 Q F0(Discard the \214rst)26.41 E F2(count)2.5 E F0 +(lines read.)2.5 E F1144 480 Q F0(Remo)26.97 E .3 -.15(ve a t)-.15 +H(railing ne).15 E(wline from each line read.)-.25 E F1144 492 Q +F0(Read lines from \214le descriptor)24.74 E F2(fd)2.5 E F0 +(instead of the standard input.)2.5 E F1144 504 Q F0(Ev)23.08 E (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 273.6 -Q F0(Specify the number of lines read between each call to)25.86 E F2 -(callbac)2.5 E(k)-.2 E F0(.).67 E(If)144 290.4 Q F12.968 E F0 .467 +(option speci\214es)2.5 E F2(quantum)2.5 E F0(.).32 E F1144 516 Q +F0(Specify the number of lines read between each call to)25.86 E F2 +(callbac)2.5 E(k)-.2 E F0(.).67 E(If)144 532.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 .261(plied the inde)144 302.4 R 2.761(xo)-.15 -G 2.761(ft)-2.761 G .261(he ne)-2.761 F .262(xt array element to be ass\ -igned and the line to be assigned to that element)-.15 F .275 -(as additional ar)144 314.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 326.4 Q -(If not supplied with an e)144 343.2 Q(xplicit origin,)-.15 E F1 +(luated, it is sup-).25 F .262(plied the inde)144 544.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 556.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 568.8 Q +(If not supplied with an e)144 585.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 360 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 372 Q -.25(va)-.4 G +(before assigning to it.)2.5 E F1(map\214le)144 602.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 614.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 388.8 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 400.8 Q -.15(ve)-.15 G 2.8(se) -.15 G .3(ntries from the directory stack.)-2.8 F -.4(Wi)5.299 G .299 -(th no ar).4 F .299(guments, remo)-.18 F -.15(ve)-.15 G 2.799(st).15 G -.299(he top directory from the)-2.799 F 1.478(stack, and performs a)144 -412.8 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 424.8 Q F1144 436.8 Q F0 .551 +F1(popd)108 631.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 643.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 +655.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 667.2 Q F1144 679.2 Q F0 .551 (Suppresses the normal change of directory when remo)24.74 F .551 (ving directories from the stack, so)-.15 F -(that only the stack is manipulated.)180 448.8 Q F1(+)144 460.8 Q F2(n)A +(that only the stack is manipulated.)180 691.2 Q F1(+)144 703.2 Q F2(n)A F0(Remo)25.3 E -.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 -472.8 S 2.5(re).15 G(xample:)-2.65 E/F4 10/Courier@0 SF(popd +0)2.5 E F0 +715.2 S 2.5(re).15 G(xample:)-2.65 E/F4 10/Courier@0 SF(popd +0)2.5 E F0 (remo)2.5 E -.15(ve)-.15 G 2.5(st).15 G(he \214rst directory)-2.5 E(,) --.65 E F4(popd +1)2.5 E F0(the second.)2.5 E F1144 484.8 Q F2(n)A F0 -(Remo)25.3 E -.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 496.8 R(or e)-.15 E(xample:)-.15 E F4(popd -0)2.5 E F0 -(remo)2.5 E -.15(ve)-.15 G 2.5(st).15 G(he last directory)-2.5 E(,)-.65 -E F4(popd -1)2.5 E F0(the ne)2.5 E(xt to last.)-.15 E .643(If the)144 -513.6 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 525.6 R .416 -(alse if an in)-.1 F -.25(va)-.4 G .415 -(lid option is encountered, the directory stack is empty).25 F 2.915 -(,an)-.65 G(on-e)-2.915 E .415(xistent direc-)-.15 F -(tory stack entry is speci\214ed, or the directory change f)144 537.6 Q -(ails.)-.1 E F1(printf)108 554.4 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 566.4 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 578.4 R(ariable) --.25 E F2(var)2.626 E F0 .126(rather than being printed to the standard) -2.626 F(output.)144 590.4 Q(The)144 614.4 Q F2(format)3.017 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 626.4 R -.15(ve)-.4 G .703 -(rted and copied to).15 F .036(the standard output, and format speci\ -\214cations, each of which causes printing of the ne)144 638.4 R .037 -(xt successi)-.15 F -.15(ve)-.25 G F2(ar)144 650.4 Q(gument)-.37 E F0 -5.532(.I)C 3.032(na)-5.532 G .532(ddition to the standard)-3.032 F 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 662.4 Q -(xtensions:)-.15 E F1(%b)144 674.4 Q F0(causes)20.44 E F1(printf)5.115 E -F0 2.615(to e)5.115 F 2.615 -(xpand backslash escape sequences in the corresponding)-.15 F F2(ar) -5.115 E(gument)-.37 E F0(\(e)180 686.4 Q .608(xcept that)-.15 F F1(\\c) -3.108 E F0 .608(terminates output, backslashes in)3.108 F F1<5c08>3.108 -E F0(,)A F1(\\")3.108 E F0 3.108(,a)C(nd)-3.108 E F1(\\?)3.108 E F0 .608 -(are not remo)3.108 F -.15(ve)-.15 G .608(d, and octal).15 F(escapes be) -180 698.4 Q(ginning with)-.15 E F1(\\0)2.5 E F0 -(may contain up to four digits\).)2.5 E F1(%q)144 710.4 Q F0(causes) -20.44 E 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 722.4 Q(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E -(59)197.335 E 0 Cg EP +-.65 E F4(popd +1)2.5 E F0(the second.)2.5 E(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(59)198.165 E 0 Cg EP %%Page: 60 60 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(%\()144 84 Q/F2 10/Times-Italic@0 SF -(datefmt)A F1(\)T)A F0(causes)180 96 Q F1(printf)4.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 108 R F2 +-.35 E/F1 10/Times-Bold@0 SF144 84 Q/F2 10/Times-Italic@0 SF(n)A F0 +(Remo)25.3 E -.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 +96 R(or e)-.15 E(xample:)-.15 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 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 +112.8 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 124.8 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.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 136.8 Q +(ails.)-.1 E F1(printf)108 153.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.437 +(Write the formatted)144 165.6 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 177.6 R(ariable) +-.25 E F2(var)2.626 E F0 .126(rather than being printed to the standard) +2.626 F(output.)144 189.6 Q(The)144 213.6 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.018 F .704(simply copied to standard output, charact\ +er escape sequences, which are con)144 225.6 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 237.6 R .036 +(xt successi)-.15 F -.15(ve)-.25 G F2(ar)144 249.6 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 261.6 Q +(xtensions:)-.15 E F1(%b)144 273.6 Q F0(causes)20.44 E F1(printf)5.115 E +F0 2.615(to e)5.115 F 2.615 +(xpand backslash escape sequences in the corresponding)-.15 F F2(ar) +5.115 E(gument)-.37 E F0(\(e)180 285.6 Q .608(xcept that)-.15 F F1(\\c) +3.108 E F0 .608(terminates output, backslashes in)3.108 F F1<5c08>3.108 +E F0(,)A F1(\\")3.108 E F0 3.108(,a)C(nd)-3.108 E F1(\\?)3.108 E F0 .608 +(are not remo)3.108 F -.15(ve)-.15 G .608(d, and octal).15 F(escapes be) +180 297.6 Q(ginning with)-.15 E F1(\\0)2.5 E F0 +(may contain up to four digits\).)2.5 E F1(%q)144 309.6 Q F0(causes) +20.44 E 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 321.6 Q F1(%\()144 333.6 Q F2(datefmt)A F1(\)T)A F0 +(causes)180 345.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 357.6 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 .458(of seconds since the epoch.)180 -120 R -1 -.8(Tw o)5.458 H .458(special ar)3.758 F .458(gument v)-.18 F +(ger representing the number)-.15 F .457(of seconds since the epoch.)180 +369.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 -(current time, and -2 represents the time the shell w)180 132 Q(as in) --.1 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E(Ar)144 148.8 Q .463(guments to n\ -on-string format speci\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 160.8 +(current time, and -2 represents the time the shell w)180 381.6 Q(as in) +-.1 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E(Ar)144 398.4 Q .464(guments to n\ +on-string format speci\214ers are treated as C constants, e)-.18 F .463 +(xcept that a leading plus or)-.15 F 1.258(minus sign is allo)144 410.4 R 1.259 (wed, and if the leading character is a single or double quote, the v) --.25 F 1.258(alue is the)-.25 F(ASCII v)144 172.8 Q(alue of the follo) --.25 E(wing character)-.25 E(.)-.55 E(The)144 189.6 Q F2(format)3.423 E -F0 .923(is reused as necessary to consume all of the)3.423 F F2(ar)3.423 +-.25 F 1.259(alue is the)-.25 F(ASCII v)144 422.4 Q(alue of the follo) +-.25 E(wing character)-.25 E(.)-.55 E(The)144 439.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 .924(requires more)3.424 F F2(ar)144 201.6 Q(guments)-.37 E -F0 .033(than are supplied, the e)2.534 F .033 +3.423 E F0 .923(requires more)3.423 F F2(ar)144 451.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 .033(alue or null string,) --.25 F(as appropriate, had been supplied.)144 213.6 Q(The return v)5 E +.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 463.2 Q(The return v)5 E (alue is zero on success, non-zero on f)-.25 E(ailure.)-.1 E F1(pushd) -108 230.4 Q F0([)2.5 E F1A F0 2.5(][)C(+)-2.5 E F2(n)A F0 2.5(][)C --2.5 E F2(n)A F0(])A F1(pushd)108 242.4 Q F0([)2.5 E F1A F0 -2.5(][)C F2(dir)-2.5 E F0(])A .639(Adds a directory to the top of the d\ -irectory stack, or rotates the stack, making the ne)144 254.4 R 3.14(wt) --.25 G .64(op of the)-3.14 F 1.316(stack the current w)144 266.4 R 1.316 -(orking directory)-.1 F 6.316(.W)-.65 G 1.315(ith no ar)-6.716 F 1.315 -(guments, e)-.18 F 1.315(xchanges the top tw)-.15 F 3.815(od)-.1 G 1.315 -(irectories and)-3.815 F .871 -(returns 0, unless the directory stack is empty)144 278.4 R 5.871(.A) --.65 G -.18(rg)-5.871 G .872(uments, if supplied, ha).18 F 1.172 -.15 -(ve t)-.2 H .872(he follo).15 F .872(wing mean-)-.25 F(ings:)144 290.4 Q -F1144 302.4 Q F0 .902(Suppresses the normal change of directory w\ -hen adding directories to the stack, so that)24.74 F -(only the stack is manipulated.)180 314.4 Q F1(+)144 326.4 Q F2(n)A F0 -1.267(Rotates the stack so that the)25.3 F F2(n)3.767 E F0 1.268 -(th directory \(counting from the left of the list sho)B 1.268(wn by) --.25 F F1(dirs)180 338.4 Q F0 2.5(,s)C -(tarting with zero\) is at the top.)-2.5 E F1144 350.4 Q F2(n)A F0 -.92(Rotates the stack so that the)25.3 F F2(n)3.42 E F0 .92 +108 480 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 492 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 504 R 3.139(wt)-.25 +G .639(op of the)-3.139 F 1.315(stack the current w)144 516 R 1.315 +(orking directory)-.1 F 6.315(.W)-.65 G 1.315(ith no ar)-6.715 F 1.315 +(guments, e)-.18 F 1.316(xchanges the top tw)-.15 F 3.816(od)-.1 G 1.316 +(irectories and)-3.816 F .872 +(returns 0, unless the directory stack is empty)144 528 R 5.871(.A)-.65 +G -.18(rg)-5.871 G .871(uments, if supplied, ha).18 F 1.171 -.15(ve t) +-.2 H .871(he follo).15 F .871(wing mean-)-.25 F(ings:)144 540 Q F1 +144 552 Q F0 .902(Suppresses the normal change of directory when \ +adding directories to the stack, so that)24.74 F +(only the stack is manipulated.)180 564 Q F1(+)144 576 Q F2(n)A F0 1.268 +(Rotates the stack so that the)25.3 F 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 588 Q F0 2.5(,s)C(tarting with zero\) is at the top.) +-2.5 E F1144 600 Q F2(n)A F0 .92(Rotates the stack so that the)25.3 +F 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 362.4 Q F0 2.5(,s)C(tarting with zero\) is at the top.) --2.5 E F2(dir)144.35 374.4 Q F0(Adds)23.98 E F2(dir)2.85 E F0 +F F1(dirs)180 612 Q F0 2.5(,s)C(tarting with zero\) is at the top.)-2.5 +E F2(dir)144.35 624 Q F0(Adds)23.98 E F2(dir)2.85 E F0 (to the directory stack at the top, making it the ne)3.23 E 2.5(wc)-.25 -G(urrent w)-2.5 E(orking directory)-.1 E(.)-.65 E .488(If the)144 391.2 -R F1(pushd)2.988 E F0 .488(command is successful, a)2.988 F F1(dirs) -2.988 E F0 .488(is performed as well.)2.988 F .489 -(If the \214rst form is used,)5.488 F F1(pushd)2.989 E F0 1.04 -(returns 0 unless the cd to)144 403.2 R F2(dir)3.89 E F0 -.1(fa)4.27 G -3.539(ils. W).1 F 1.039(ith the second form,)-.4 F F1(pushd)3.539 E F0 -1.039(returns 0 unless the directory)3.539 F .846(stack is empty)144 -415.2 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 427.2 Q 2.5(wc)-.25 G(urrent directory f)-2.5 E -(ails.)-.1 E F1(pwd)108 444 Q F0([)2.5 E F1(\255LP)A F0(])A .845 -(Print the absolute pathname of the current w)144 456 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 -468 R F12.681 E F0 .181(option is supplied or the)2.681 F F1 .181 -(\255o ph)2.681 F(ysical)-.15 E F0 .181(option to the)2.681 F F1(set) -2.681 E F0 -.2(bu)2.681 G .182(iltin command is).2 F 3.264(enabled. If) -144 480 R(the)3.264 E F13.264 E F0 .763 -(option is used, the pathname printed may contain symbolic links.)3.264 -F .763(The return)5.763 F 1.36(status is 0 unless an error occurs while\ - reading the name of the current directory or an in)144 492 R -.25(va) --.4 G(lid).25 E(option is supplied.)144 504 Q F1 -.18(re)108 520.8 S(ad) -.18 E F0([)3.817 E F1(\255ers)A F0 3.817(][)C F1-3.817 E F2(aname) -3.817 E F0 3.817(][)C F1-3.817 E F2(delim)3.817 E F0 3.817(][)C F1 --3.817 E F2(te)3.817 E(xt)-.2 E F0 3.817(][)C F1-3.817 E F2 -(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F1-3.816 E F2(nc) -3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F1-3.816 E F2(pr)3.816 E -(ompt)-.45 E F0 3.816(][)C F1-3.816 E F2(timeout)3.816 E F0 3.816 -(][)C F1-3.816 E F2(fd)3.816 E F0(])A([)108 532.8 Q F2(name)A F0 -(...])2.5 E .516(One line is read from the standard input, or from the \ -\214le descriptor)144 544.8 R F2(fd)3.016 E F0 .516(supplied as an ar) -3.016 F .516(gument to)-.18 F(the)144 556.8 Q F12.538 E F0 .038 -(option, and the \214rst w)2.538 F .038(ord is assigned to the \214rst) --.1 F F2(name)2.539 E F0 2.539(,t).18 G .039(he second w)-2.539 F .039 -(ord to the second)-.1 F F2(name)2.539 E F0(,).18 E .42 -(and so on, with lefto)144 568.8 R -.15(ve)-.15 G 2.92(rw).15 G .42 -(ords and their interv)-3.02 F .42 -(ening separators assigned to the last)-.15 F F2(name)2.92 E F0 5.42(.I) -.18 G 2.92(ft)-5.42 G(here)-2.92 E .54(are fe)144 580.8 R .54(wer w)-.25 -F .541(ords read from the input stream than names, the remaining names \ -are assigned empty)-.1 F -.25(va)144 592.8 S 2.511(lues. The).25 F .011 -(characters in)2.511 F/F3 9/Times-Bold@0 SF(IFS)2.511 E F0 .011 -(are used to split the line into w)2.261 F 2.511(ords. The)-.1 F .011 -(backslash character \()2.511 F F1(\\)A F0 2.51(\)m)C(ay)-2.51 E 1.89 -(be used to remo)144 604.8 R 2.19 -.15(ve a)-.15 H 2.19 -.15(ny s).15 H -1.891(pecial meaning for the ne).15 F 1.891 -(xt character read and for line continuation.)-.15 F -(Options, if supplied, ha)144 616.8 Q .3 -.15(ve t)-.2 H(he follo).15 E -(wing meanings:)-.25 E F1144 628.8 Q F2(aname)2.5 E F0 1.05(The w) -180 640.8 R 1.049 -(ords are assigned to sequential indices of the array v)-.1 F(ariable) --.25 E F2(aname)3.549 E F0 3.549(,s).18 G 1.049(tarting at 0.)-3.549 F -F2(aname)180.33 652.8 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5 --.25(ew va)-2.5 H(lues are assigned.).25 E(Other)5 E F2(name)2.5 E F0 -(ar)2.5 E(guments are ignored.)-.18 E F1144 664.8 Q F2(delim)2.5 E -F0(The \214rst character of)180 676.8 Q F2(delim)2.5 E F0 -(is used to terminate the input line, rather than ne)2.5 E(wline.)-.25 E -F1144 688.8 Q F0 .372 -(If the standard input is coming from a terminal,)25.86 F F1 -.18(re) -2.873 G(adline).18 E F0(\(see)2.873 E F3(READLINE)2.873 E F0(abo)2.623 E --.15(ve)-.15 G 2.873(\)i).15 G 2.873(su)-2.873 G(sed)-2.873 E .218 -(to obtain the line.)180 700.8 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 712.8 Q -.15(ve)-.25 G 2.5(\)e).15 G(diting settings.)-2.5 E -(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(60)197.335 E 0 Cg EP +G(urrent w)-2.5 E(orking directory)-.1 E(.)-.65 E .489(If the)144 640.8 +R F1(pushd)2.989 E F0 .489(command is successful, a)2.989 F F1(dirs) +2.988 E F0 .488(is performed as well.)2.988 F .488 +(If the \214rst form is used,)5.488 F F1(pushd)2.988 E F0 1.039 +(returns 0 unless the cd to)144 652.8 R F2(dir)3.889 E F0 -.1(fa)4.269 G +3.539(ils. W).1 F 1.039(ith the second form,)-.4 F F1(pushd)3.54 E F0 +1.04(returns 0 unless the directory)3.54 F .847(stack is empty)144 664.8 +R 3.347(,an)-.65 G(on-e)-3.347 E .847(xistent directory stack element i\ +s speci\214ed, or the directory change to the)-.15 F(speci\214ed ne)144 +676.8 Q 2.5(wc)-.25 G(urrent directory f)-2.5 E(ails.)-.1 E F1(pwd)108 +693.6 Q F0([)2.5 E F1(\255LP)A F0(])A .844 +(Print the absolute pathname of the current w)144 705.6 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 +717.6 R F12.681 E F0 .181(option is supplied or the)2.681 F F1 +.181(\255o ph)2.681 F(ysical)-.15 E F0 .181(option to the)2.681 F F1 +(set)2.681 E F0 -.2(bu)2.681 G .181(iltin command is).2 F 3.263 +(enabled. If)144 729.6 R(the)3.263 E F13.263 E F0 .763 +(option is used, the pathname printed may contain symbolic links.)3.263 +F .764(The return)5.764 F(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E +(60)198.165 E 0 Cg EP %%Page: 61 61 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF144 84 Q/F2 10/Times-Italic@0 SF(te) -2.5 E(xt)-.2 E F0(If)10.78 E F1 -.18(re)2.715 G(adline).18 E F0 .216 -(is being used to read the line,)2.715 F F2(te)2.716 E(xt)-.2 E F0 .216 -(is placed into the editing b)2.716 F(uf)-.2 E .216(fer before edit-) --.25 F(ing be)180 96 Q(gins.)-.15 E F1144 108 Q F2(nc)2.5 E(har) --.15 E(s)-.1 E F1 -.18(re)180 120 S(ad).18 E F0 1.395 -(returns after reading)3.895 F F2(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 132 Q(ut honor a delimiter if fe)-.2 E(wer than)-.25 -E F2(nc)2.5 E(har)-.15 E(s)-.1 E F0 -(characters are read before the delimiter)2.5 E(.)-.55 E F1144 144 -Q F2(nc)2.5 E(har)-.15 E(s)-.1 E F1 -.18(re)180 156 S(ad).18 E F0 1.269 -(returns after reading e)3.769 F(xactly)-.15 E F2(nc)3.769 E(har)-.15 E -(s)-.1 E F0 1.269(characters rather than w)3.769 F 1.27 -(aiting for a complete)-.1 F .275 -(line of input, unless EOF is encountered or)180 168 R F1 -.18(re)2.775 -G(ad).18 E F0 .274(times out.)2.774 F .274(Delimiter characters encoun-) -5.274 F 1.002 -(tered in the input are not treated specially and do not cause)180 180 R -F1 -.18(re)3.503 G(ad).18 E F0 1.003(to return until)3.503 F F2(nc)3.503 -E(har)-.15 E(s)-.1 E F0(characters are read.)180 192 Q F1144 204 Q -F2(pr)2.5 E(ompt)-.45 E F0(Display)180 216 Q F2(pr)3.661 E(ompt)-.45 E -F0 1.161(on standard error)3.661 F 3.661(,w)-.4 G 1.161 +-.35 E 1.36(status is 0 unless an error occurs while reading the name o\ +f the current directory or an in)144 84 R -.25(va)-.4 G(lid).25 E +(option is supplied.)144 96 Q/F1 10/Times-Bold@0 SF -.18(re)108 112.8 S +(ad).18 E F0([)3.816 E F1(\255ers)A F0 3.816(][)C F1-3.816 E/F2 10 +/Times-Italic@0 SF(aname)3.816 E F0 3.816(][)C F1-3.816 E F2 +(delim)3.816 E F0 3.816(][)C F1-3.816 E F2(te)3.816 E(xt)-.2 E F0 +3.816(][)C F1-3.816 E F2(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.817 +(][)C F1-3.817 E F2(nc)3.817 E(har)-.15 E(s)-.1 E F0 3.817(][)C F1 +-3.817 E F2(pr)3.817 E(ompt)-.45 E F0 3.817(][)C F1-3.817 E +F2(timeout)3.817 E F0 3.817(][)C F1-3.817 E F2(fd)3.817 E F0(])A +([)108 124.8 Q F2(name)A F0(...])2.5 E .516(One line is read from the s\ +tandard input, or from the \214le descriptor)144 136.8 R F2(fd)3.016 E +F0 .516(supplied as an ar)3.016 F .517(gument to)-.18 F(the)144 148.8 Q +F12.539 E F0 .039(option, and the \214rst w)2.539 F .038 +(ord is assigned to the \214rst)-.1 F F2(name)2.538 E F0 2.538(,t).18 G +.038(he second w)-2.538 F .038(ord to the second)-.1 F F2(name)2.538 E +F0(,).18 E .42(and so on, with lefto)144 160.8 R -.15(ve)-.15 G 2.92(rw) +.15 G .42(ords and their interv)-3.02 F .42 +(ening separators assigned to the last)-.15 F F2(name)2.92 E F0 5.42(.I) +.18 G 2.92(ft)-5.42 G(here)-2.92 E .541(are fe)144 172.8 R .541(wer w) +-.25 F .541(ords read from the input stream than names, the remaining n\ +ames are assigned empty)-.1 F -.25(va)144 184.8 S 2.51(lues. The).25 F +.011(characters in)2.511 F/F3 9/Times-Bold@0 SF(IFS)2.511 E F0 .011 +(are used to split the line into w)2.261 F 2.511(ords. The)-.1 F .011 +(backslash character \()2.511 F F1(\\)A F0 2.511(\)m)C(ay)-2.511 E 1.891 +(be used to remo)144 196.8 R 2.191 -.15(ve a)-.15 H 2.191 -.15(ny s).15 +H 1.891(pecial meaning for the ne).15 F 1.89 +(xt character read and for line continuation.)-.15 F +(Options, if supplied, ha)144 208.8 Q .3 -.15(ve t)-.2 H(he follo).15 E +(wing meanings:)-.25 E F1144 220.8 Q F2(aname)2.5 E F0 1.049 +(The w)180 232.8 R 1.049 +(ords are assigned to sequential indices of the array v)-.1 F(ariable) +-.25 E F2(aname)3.55 E F0 3.55(,s).18 G 1.05(tarting at 0.)-3.55 F F2 +(aname)180.33 244.8 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5 -.25 +(ew va)-2.5 H(lues are assigned.).25 E(Other)5 E F2(name)2.5 E F0(ar)2.5 +E(guments are ignored.)-.18 E F1144 256.8 Q F2(delim)2.5 E F0 +(The \214rst character of)180 268.8 Q F2(delim)2.5 E F0 +(is used to terminate the input line, rather than ne)2.5 E(wline.)-.25 E +F1144 280.8 Q F0 .373 +(If the standard input is coming from a terminal,)25.86 F F1 -.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 292.8 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 304.8 Q -.15(ve)-.25 G 2.5(\)e).15 G(diting settings.)-2.5 E +F1144 316.8 Q F2(te)2.5 E(xt)-.2 E F0(If)10.78 E F1 -.18(re)2.716 +G(adline).18 E F0 .216(is being used to read the line,)2.716 F F2(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 328.8 Q(gins.)-.15 E F1144 +340.8 Q F2(nc)2.5 E(har)-.15 E(s)-.1 E F1 -.18(re)180 352.8 S(ad).18 E +F0 1.394(returns after reading)3.894 F F2(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 364.8 Q +(ut honor a delimiter if fe)-.2 E(wer than)-.25 E F2(nc)2.5 E(har)-.15 E +(s)-.1 E F0(characters are read before the delimiter)2.5 E(.)-.55 E F1 +144 376.8 Q F2(nc)2.5 E(har)-.15 E(s)-.1 E F1 -.18(re)180 388.8 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 400.8 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 412.8 +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(characters are read.)180 424.8 Q F1 +144 436.8 Q F2(pr)2.5 E(ompt)-.45 E F0(Display)180 448.8 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 228 Q 2.5(yi)-.15 G 2.5(nput. The)-2.5 F +-.25 F(an)180 460.8 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 240 Q F0 .543(Backslash does not act as an escape character) -25.86 F 5.543(.T)-.55 G .544(he backslash is considered to be part of) --5.543 F(the line.)180 252 Q(In particular)5 E 2.5(,ab)-.4 G +144 472.8 Q F0 .544(Backslash does not act as an escape character) +25.86 F 5.543(.T)-.55 G .543(he backslash is considered to be part of) +-5.543 F(the line.)180 484.8 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 264 Q F0(Silent mode.)26.41 E +-.25 E F1144 496.8 Q F0(Silent mode.)26.41 E (If input is coming from a terminal, characters are not echoed.)5 E F1 -144 276 Q F2(timeout)2.5 E F0(Cause)180 288 Q F1 -.18(re)3.549 G -(ad).18 E F0 1.048(to time out and return f)3.549 F 1.048 +144 508.8 Q F2(timeout)2.5 E F0(Cause)180 520.8 Q F1 -.18(re)3.548 +G(ad).18 E F0 1.048(to time out and return f)3.548 F 1.048 (ailure if a complete line of input is not read within)-.1 F F2(timeout) -180 300 Q F0(seconds.)3.496 E F2(timeout)5.996 E F0 .997 -(may be a decimal number with a fractional portion follo)3.496 F(wing) --.25 E .576(the decimal point.)180 312 R .576(This option is only ef) +180 532.8 Q F0(seconds.)3.497 E F2(timeout)5.997 E F0 .997 +(may be a decimal number with a fractional portion follo)3.497 F(wing) +-.25 E .576(the decimal point.)180 544.8 R .576(This option is only ef) 5.576 F(fecti)-.25 E .876 -.15(ve i)-.25 H(f).15 E F1 -.18(re)3.076 G -(ad).18 E F0 .576(is reading input from a terminal,)3.076 F .141 -(pipe, or other special \214le; it has no ef)180 324 R .142 -(fect when reading from re)-.25 F .142(gular \214les.)-.15 F(If)5.142 E -F2(timeout)2.642 E F0 .142(is 0,)2.642 F F1 -.18(re)180 336 S(ad).18 E -F0 .113(returns success if input is a)2.614 F -.25(va)-.2 G .113 -(ilable on the speci\214ed \214le descriptor).25 F 2.613(,f)-.4 G .113 -(ailure otherwise.)-2.713 F(The e)180 348 Q +(ad).18 E F0 .576(is reading input from a terminal,)3.076 F .142 +(pipe, or other special \214le; it has no ef)180 556.8 R .142 +(fect when reading from re)-.25 F .142(gular \214les.)-.15 F(If)5.141 E +F2(timeout)2.641 E F0 .141(is 0,)2.641 F F1 -.18(re)180 568.8 S(ad).18 E +F0 .113(returns success if input is a)2.613 F -.25(va)-.2 G .113 +(ilable on the speci\214ed \214le descriptor).25 F 2.613(,f)-.4 G .114 +(ailure otherwise.)-2.713 F(The e)180 580.8 Q (xit status is greater than 128 if the timeout is e)-.15 E(xceeded.)-.15 -E F1144 360 Q F2(fd)2.5 E F0(Read input from \214le descriptor) -14.46 E F2(fd)2.5 E F0(.)A .191(If no)144 376.8 R F2(names)3.051 E F0 -.191(are supplied, the line read is assigned to the v)2.961 F(ariable) --.25 E/F3 9/Times-Bold@0 SF(REPL)2.692 E(Y)-.828 E/F4 9/Times-Roman@0 SF -(.)A F0 .192(The return code is zero,)4.692 F 1.344 -(unless end-of-\214le is encountered,)144 388.8 R F1 -.18(re)3.844 G(ad) +E F1144 592.8 Q F2(fd)2.5 E F0(Read input from \214le descriptor) +14.46 E F2(fd)2.5 E F0(.)A .192(If no)144 609.6 R F2(names)3.052 E F0 +.192(are supplied, the line read is assigned to the v)2.962 F(ariable) +-.25 E F3(REPL)2.691 E(Y)-.828 E/F4 9/Times-Roman@0 SF(.)A F0 .191 +(The return code is zero,)4.691 F 1.343 +(unless end-of-\214le is encountered,)144 621.6 R F1 -.18(re)3.843 G(ad) .18 E F0 1.343 -(times out \(in which case the return code is greater than)3.844 F -(128\), or an in)144 400.8 Q -.25(va)-.4 G +(times out \(in which case the return code is greater than)3.843 F +(128\), or an in)144 633.6 Q -.25(va)-.4 G (lid \214le descriptor is supplied as the ar).25 E(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 +2.5 E F0(.)A F1 -.18(re)108 650.4 S(adonly).18 E F0([)2.5 E F1 (\255aA)A(pf)-.25 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 429.6 R -.15(ve)-.25 G(n).15 E F2 +F0 2.5(].)C(..])-2.5 E .77(The gi)144 662.4 R -.15(ve)-.25 G(n).15 E F2 (names)3.27 E F0 .77(are mark)3.27 F .77(ed readonly; the v)-.1 F .77 (alues of these)-.25 F F2(names)3.63 E F0 .77 -(may not be changed by subse-)3.54 F 1.097(quent assignment.)144 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) +(may not be changed by subse-)3.54 F 1.096(quent assignment.)144 674.4 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 686.4 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 .538(ables to associati)144 465.6 R .838 -.15(ve a)-.25 H 3.038 +-.25 E .537(ables to associati)144 698.4 R .837 -.15(ve a)-.25 H 3.037 (rrays. If).15 F(no)3.038 E F2(name)3.398 E F0(ar)3.218 E .538 (guments are gi)-.18 F -.15(ve)-.25 G .538(n, or if the).15 F F1 -3.038 E F0 .537(option is supplied, a list)3.038 F .08 -(of all readonly names is printed.)144 477.6 R(The)5.08 E F12.58 E -F0 .081(option causes output to be displayed in a format that may)2.58 F -1.177(be reused as input.)144 489.6 R 1.177(If a v)6.177 F 1.176 +3.038 E F0 .538(option is supplied, a list)3.038 F .081 +(of all readonly names is printed.)144 710.4 R(The)5.081 E F12.581 +E F0 .08(option causes output to be displayed in a format that may)2.581 +F 1.176(be reused as input.)144 722.4 R 1.176(If a v)6.176 F 1.176 (ariable name is follo)-.25 F 1.176(wed by =)-.25 F F2(wor)A(d)-.37 E F0 -3.676(,t)C 1.176(he v)-3.676 F 1.176(alue of the v)-.25 F 1.176 -(ariable is set to)-.25 F F2(wor)144 501.6 Q(d)-.37 E F0 6.205(.T)C -1.205(he return status is 0 unless an in)-6.205 F -.25(va)-.4 G 1.206 -(lid option is encountered, one of the).25 F F2(names)4.066 E F0 1.206 -(is not a)3.976 F -.25(va)144 513.6 S(lid shell v).25 E -(ariable name, or)-.25 E F12.5 E F0(is supplied with a)2.5 E F2 -(name)2.86 E F0(that is not a function.)2.68 E F1 -.18(re)108 530.4 S -(tur).18 E(n)-.15 E F0([)2.5 E F2(n)A F0(])A .587 -(Causes a function to e)144 542.4 R .587(xit with the return v)-.15 F -.587(alue speci\214ed by)-.25 F F2(n)3.087 E F0 5.587(.I).24 G(f)-5.587 -E F2(n)3.447 E F0 .586(is omitted, the return status is)3.327 F 1.335 -(that of the last command e)144 554.4 R -.15(xe)-.15 G 1.335 -(cuted in the function body).15 F 6.335(.I)-.65 G 3.835(fu)-6.335 G -1.335(sed outside a function, b)-3.835 F 1.335(ut during)-.2 F -.15(exe) -144 566.4 S .794(cution of a script by the).15 F F1(.)3.294 E F0(\() -5.794 E F1(sour)A(ce)-.18 E F0 3.294(\)c)C .794 -(ommand, it causes the shell to stop e)-3.294 F -.15(xe)-.15 G .794 -(cuting that script).15 F .245(and return either)144 578.4 R F2(n)3.105 -E F0 .246(or the e)2.985 F .246(xit status of the last command e)-.15 F --.15(xe)-.15 G .246(cuted within the script as the e).15 F .246 -(xit sta-)-.15 F .082(tus of the script.)144 590.4 R .082 -(If used outside a function and not during e)5.082 F -.15(xe)-.15 G .082 -(cution of a script by).15 F F1(.)2.582 E F0 2.581(,t).833 G .081 -(he return sta-)-2.581 F 2.305(tus is f)144 602.4 R 4.805(alse. An)-.1 F -4.805(yc)-.15 G 2.305(ommand associated with the)-4.805 F F1(RETURN) -4.805 E F0 2.306(trap is e)4.806 F -.15(xe)-.15 G 2.306(cuted before e) -.15 F -.15(xe)-.15 G(cution).15 E(resumes after the function or script.) -144 614.4 Q F1(set)108 631.2 Q F0([)2.5 E F1 -(\255\255abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1-2.5 E F2(option)2.5 -E F0 2.5(][)C F2(ar)-2.5 E(g)-.37 E F0(...])2.5 E F1(set)108 643.2 Q F0 -([)2.5 E F1(+abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1(+o)-2.5 E F2(option) -2.5 E F0 2.5(][)C F2(ar)-2.5 E(g)-.37 E F0(...])2.5 E -.4(Wi)144 655.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 667.2 -R 3.284(ariables. Read-only)-.25 F -.25(va)3.284 G .784 -(riables cannot be).25 F 2.947(reset. In)144 679.2 R F2 .447(posix mode) -2.947 F F0 2.947(,o)C .447(nly shell v)-2.947 F .447 -(ariables are listed.)-.25 F .447 -(The output is sorted according to the current)5.447 F 3.53 -(locale. When)144 691.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 703.2 R 1.623 -(alues for the positional parameters and are assigned, in)-.25 F(order) -144 715.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(GNU Bash-4.1)72 768 -Q(2010 June 12)147.345 E(61)197.335 E 0 Cg EP +3.676(,t)C 1.176(he v)-3.676 F 1.177(alue of the v)-.25 F 1.177 +(ariable is set to)-.25 F(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E +(61)198.165 E 0 Cg EP %%Page: 62 62 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF144 84 Q F0 .539(Automatically mark v) -29.3 F .539 -(ariables and functions which are modi\214ed or created for e)-.25 F .54 -(xport to)-.15 F(the en)184 96 Q(vironment of subsequent commands.)-.4 E -F1144 108 Q F0 .132 +-.35 E/F1 10/Times-Italic@0 SF(wor)144 84 Q(d)-.37 E F0 6.206(.T)C 1.206 +(he return status is 0 unless an in)-6.206 F -.25(va)-.4 G 1.205 +(lid option is encountered, one of the).25 F F1(names)4.065 E F0 1.205 +(is not a)3.975 F -.25(va)144 96 S(lid shell v).25 E(ariable name, or) +-.25 E/F2 10/Times-Bold@0 SF2.5 E F0(is supplied with a)2.5 E F1 +(name)2.86 E F0(that is not a function.)2.68 E F2 -.18(re)108 112.8 S +(tur).18 E(n)-.15 E F0([)2.5 E F1(n)A F0(])A .586 +(Causes a function to e)144 124.8 R .587(xit with the return v)-.15 F +.587(alue speci\214ed by)-.25 F F1(n)3.087 E F0 5.587(.I).24 G(f)-5.587 +E F1(n)3.447 E F0 .587(is omitted, the return status is)3.327 F 1.335 +(that of the last command e)144 136.8 R -.15(xe)-.15 G 1.335 +(cuted in the function body).15 F 6.335(.I)-.65 G 3.835(fu)-6.335 G +1.335(sed outside a function, b)-3.835 F 1.335(ut during)-.2 F -.15(exe) +144 148.8 S .794(cution of a script by the).15 F F2(.)3.294 E F0(\() +5.794 E F2(sour)A(ce)-.18 E F0 3.294(\)c)C .794 +(ommand, it causes the shell to stop e)-3.294 F -.15(xe)-.15 G .795 +(cuting that script).15 F .246(and return either)144 160.8 R F1(n)3.106 +E F0 .246(or the e)2.986 F .246(xit status of the last command e)-.15 F +-.15(xe)-.15 G .246(cuted within the script as the e).15 F .245 +(xit sta-)-.15 F .081(tus of the script.)144 172.8 R .082 +(If used outside a function and not during e)5.082 F -.15(xe)-.15 G .082 +(cution of a script by).15 F F2(.)2.582 E F0 2.582(,t).833 G .082 +(he return sta-)-2.582 F 2.306(tus is f)144 184.8 R 4.806(alse. An)-.1 F +4.806(yc)-.15 G 2.305(ommand associated with the)-4.806 F F2(RETURN) +4.805 E F0 2.305(trap is e)4.805 F -.15(xe)-.15 G 2.305(cuted before e) +.15 F -.15(xe)-.15 G(cution).15 E(resumes after the function or script.) +144 196.8 Q F2(set)108 213.6 Q F0([)2.5 E F2 +(\255\255abefhkmnptuvxBCEHPT)A F0 2.5(][)C F2-2.5 E F1(option)2.5 +E F0 2.5(][)C F1(ar)-2.5 E(g)-.37 E F0(...])2.5 E F2(set)108 225.6 Q F0 +([)2.5 E F2(+abefhkmnptuvxBCEHPT)A F0 2.5(][)C F2(+o)-2.5 E F1(option) +2.5 E F0 2.5(][)C F1(ar)-2.5 E(g)-.37 E F0(...])2.5 E -.4(Wi)144 237.6 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 249.6 +R 3.284(ariables. Read-only)-.25 F -.25(va)3.284 G .783 +(riables cannot be).25 F 2.946(reset. In)144 261.6 R F1 .447(posix mode) +2.946 F F0 2.947(,o)C .447(nly shell v)-2.947 F .447 +(ariables are listed.)-.25 F .447 +(The output is sorted according to the current)5.447 F 3.531 +(locale. When)144 273.6 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 285.6 R 1.624 +(alues for the positional parameters and are assigned, in)-.25 F(order) +144 297.6 Q 2.5(,t)-.4 G(o)-2.5 E F2($1)2.5 E F0(,)A F2($2)2.5 E F0(,)A +F2 2.5(... $)2.5 F F1(n)A F0 5(.O)C(ptions, if speci\214ed, ha)-5 E .3 +-.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F2144 309.6 Q +F0 .54(Automatically mark v)29.3 F .539 +(ariables and functions which are modi\214ed or created for e)-.25 F +.539(xport to)-.15 F(the en)184 321.6 Q +(vironment of subsequent commands.)-.4 E F2144 333.6 Q F0 .131 (Report the status of terminated background jobs immediately)28.74 F -2.632(,r)-.65 G .131(ather than before the ne)-2.632 F(xt)-.15 E -(primary prompt.)184 120 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o)-.25 -H(nly when job control is enabled.).15 E F1144 132 Q F0 .51 -(Exit immediately if a)29.86 F/F2 10/Times-Italic@0 SF(pipeline)3.01 E -F0 .511(\(which may consist of a single)3.011 F F2 .511(simple command) -3.011 F F0 3.011(\), a)B F2(sub-)3.011 E(shell)184 144 Q F0 .872 -(command enclosed in parentheses, or one of the commands e)3.373 F -.15 +2.632(,r)-.65 G .132(ather than before the ne)-2.632 F(xt)-.15 E +(primary prompt.)184 345.6 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o) +-.25 H(nly when job control is enabled.).15 E F2144 357.6 Q F0 +.511(Exit immediately if a)29.86 F F1(pipeline)3.011 E F0 .511 +(\(which may consist of a single)3.011 F F1 .51(simple command)3.01 F F0 +3.01(\), a)B F1(sub-)3.01 E(shell)184 369.6 Q F0 .872 +(command enclosed in parentheses, or one of the commands e)3.372 F -.15 (xe)-.15 G .872(cuted as part of a).15 F .399 -(command list enclosed by braces \(see)184 156 R/F3 9/Times-Bold@0 SF +(command list enclosed by braces \(see)184 381.6 R/F3 9/Times-Bold@0 SF .399(SHELL GRAMMAR)2.899 F F0(abo)2.649 E -.15(ve)-.15 G 2.899(\)e).15 G -.399(xits with a non-zero)-3.049 F 3.969(status. The)184 168 R 1.468 -(shell does not e)3.969 F 1.468(xit if the command that f)-.15 F 1.468 -(ails is part of the command list)-.1 F .569(immediately follo)184 180 R -.569(wing a)-.25 F F1(while)3.069 E F0(or)3.069 E F1(until)3.069 E F0 --.1(ke)3.069 G(yw)-.05 E .569(ord, part of the test follo)-.1 F .57 -(wing the)-.25 F F1(if)3.07 E F0(or)3.07 E F1(elif)3.07 E F0(reserv)184 -192 Q .544(ed w)-.15 F .544(ords, part of an)-.1 F 3.044(yc)-.15 G .544 -(ommand e)-3.044 F -.15(xe)-.15 G .544(cuted in a).15 F F1(&&)3.044 E F0 -(or)3.044 E/F4 10/Symbol SF3.044 E F0 .544(list e)3.044 F .544 -(xcept the command)-.15 F(follo)184 204 Q 1.23(wing the \214nal)-.25 F -F1(&&)3.73 E F0(or)3.73 E F43.73 E F0 3.73(,a)C 1.53 -.15(ny c) --3.73 H 1.231(ommand in a pipeline b).15 F 1.231 -(ut the last, or if the com-)-.2 F(mand')184 216 Q 3.191(sr)-.55 G .691 -(eturn v)-3.191 F .691(alue is being in)-.25 F -.15(ve)-.4 G .691 -(rted with).15 F F1(!)3.191 E F0 5.691(.A)C .691(trap on)-2.5 F F1(ERR) -3.19 E F0 3.19(,i)C 3.19(fs)-3.19 G .69(et, is e)-3.19 F -.15(xe)-.15 G -.69(cuted before).15 F .686(the shell e)184 228 R 3.186(xits. This)-.15 -F .686(option applies to the shell en)3.186 F .686 +.399(xits with a non-zero)-3.049 F 3.968(status. The)184 393.6 R 1.468 +(shell does not e)3.968 F 1.468(xit if the command that f)-.15 F 1.468 +(ails is part of the command list)-.1 F .57(immediately follo)184 405.6 +R .57(wing a)-.25 F F2(while)3.07 E F0(or)3.07 E F2(until)3.07 E F0 -.1 +(ke)3.069 G(yw)-.05 E .569(ord, part of the test follo)-.1 F .569 +(wing the)-.25 F F2(if)3.069 E F0(or)3.069 E F2(elif)3.069 E F0(reserv) +184 417.6 Q .544(ed w)-.15 F .544(ords, part of an)-.1 F 3.044(yc)-.15 G +.544(ommand e)-3.044 F -.15(xe)-.15 G .544(cuted in a).15 F F2(&&)3.044 +E F0(or)3.044 E/F4 10/Symbol SF3.044 E F0 .544(list e)3.044 F .544 +(xcept the command)-.15 F(follo)184 429.6 Q 1.231(wing the \214nal)-.25 +F F2(&&)3.731 E F0(or)3.731 E F43.731 E F0 3.731(,a)C 1.531 -.15 +(ny c)-3.731 H 1.231(ommand in a pipeline b).15 F 1.23 +(ut the last, or if the com-)-.2 F(mand')184 441.6 Q 3.19(sr)-.55 G .69 +(eturn v)-3.19 F .69(alue is being in)-.25 F -.15(ve)-.4 G .69 +(rted with).15 F F2(!)3.191 E F0 5.691(.A)C .691(trap on)-2.5 F F2(ERR) +3.191 E F0 3.191(,i)C 3.191(fs)-3.191 G .691(et, is e)-3.191 F -.15(xe) +-.15 G .691(cuted before).15 F .687(the shell e)184 453.6 R 3.186 +(xits. This)-.15 F .686(option applies to the shell en)3.186 F .686 (vironment and each subshell en)-.4 F(viron-)-.4 E .068 -(ment separately \(see)184 240 R F3 .068(COMMAND EXECUTION ENVIR)2.568 F -(ONMENT)-.27 E F0(abo)2.318 E -.15(ve)-.15 G .068(\), and may cause).15 -F(subshells to e)184 252 Q(xit before e)-.15 E -.15(xe)-.15 G -(cuting all the commands in the subshell.).15 E F1144 264 Q F0 -(Disable pathname e)30.97 E(xpansion.)-.15 E F1144 276 Q F0 2.238 -(Remember the location of commands as the)28.74 F 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 288 Q(ault.)-.1 E F1 -144 300 Q F0 .514(All ar)28.74 F .514 +(ment separately \(see)184 465.6 R F3 .068(COMMAND EXECUTION ENVIR)2.568 +F(ONMENT)-.27 E F0(abo)2.318 E -.15(ve)-.15 G .068(\), and may cause).15 +F(subshells to e)184 477.6 Q(xit before e)-.15 E -.15(xe)-.15 G +(cuting all the commands in the subshell.).15 E F2144 489.6 Q F0 +(Disable pathname e)30.97 E(xpansion.)-.15 E F2144 501.6 Q F0 +2.239(Remember the location of commands as the)28.74 F 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 513.6 Q(ault.)-.1 E F2 +144 525.6 Q F0 .513(All ar)28.74 F .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 312 Q F1 -144 324 Q F0 .148(Monitor mode.)25.97 F .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 .637 -(on systems that support it \(see)184 336 R F3 .636(JOB CONTR)3.136 F -(OL)-.27 E F0(abo)2.886 E -.15(ve)-.15 G 3.136(\). Background).15 F .636 -(processes run in a)3.136 F .641 -(separate process group and a line containing their e)184 348 R .642 -(xit status is printed upon their com-)-.15 F(pletion.)184 360 Q F1 -144 372 Q F0 .653(Read commands b)28.74 F .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 -384 Q(This is ignored by interacti)5 E .3 -.15(ve s)-.25 H(hells.).15 E -F1144 396 Q F2(option\255name)2.5 E F0(The)184 408 Q F2 -(option\255name)2.5 E F0(can be one of the follo)2.5 E(wing:)-.25 E F1 -(allexport)184 420 Q F0(Same as)224 432 Q F12.5 E F0(.)A F1 -(braceexpand)184 444 Q F0(Same as)224 456 Q F12.5 E F0(.)A F1 -(emacs)184 468 Q F0 .089(Use an emacs-style command line editing interf) -13.9 F 2.589(ace. This)-.1 F .089(is enabled by def)2.589 F(ault)-.1 E -.95(when the shell is interacti)224 480 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 492 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 504 Q(exit)-.18 E F0(Same as)11.31 E -F12.5 E F0(.)A F1(errtrace)184 516 Q F0(Same as)5.03 E F12.5 -E F0(.)A F1(functrace)184 528 Q F0(Same as)224 540 Q F12.5 E F0(.) -A F1(hashall)184 552 Q F0(Same as)9.43 E F12.5 E F0(.)A F1 -(histexpand)184 564 Q F0(Same as)224 576 Q F12.5 E F0(.)A F1 -(history)184 588 Q F0 .586(Enable command history)10 F 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 F3(HIST)3.087 E(OR)-.162 E(Y)-.315 E/F5 9/Times-Roman@0 SF(.)A F0 -.587(This option is)5.087 F(on by def)224 600 Q(ault in interacti)-.1 E -.3 -.15(ve s)-.25 H(hells.).15 E F1(ignor)184 612 Q(eeof)-.18 E F0 1.657 -(The ef)224 624 R 1.657(fect is as if the shell command)-.25 F/F6 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 636 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 648 S(yw).1 E(ord)-.1 -E F0(Same as)224 660 Q F12.5 E F0(.)A F1(monitor)184 672 Q F0 -(Same as)5.56 E F12.5 E F0(.)A F1(noclob)184 684 Q(ber)-.1 E F0 -(Same as)224 696 Q F12.5 E F0(.)A F1(noexec)184 708 Q F0(Same as) -11.12 E F12.5 E F0(.)A(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 -E(62)197.335 E 0 Cg EP +F .514(vironment for a)-.4 F +(command, not just those that precede the command name.)184 537.6 Q F2 +144 549.6 Q F0 .149(Monitor mode.)25.97 F .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 .636 +(on systems that support it \(see)184 561.6 R F3 .636(JOB CONTR)3.136 F +(OL)-.27 E F0(abo)2.886 E -.15(ve)-.15 G 3.136(\). Background).15 F .637 +(processes run in a)3.136 F .642 +(separate process group and a line containing their e)184 573.6 R .641 +(xit status is printed upon their com-)-.15 F(pletion.)184 585.6 Q F2 +144 597.6 Q F0 .652(Read commands b)28.74 F .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 +609.6 Q(This is ignored by interacti)5 E .3 -.15(ve s)-.25 H(hells.).15 +E F2144 621.6 Q F1(option\255name)2.5 E F0(The)184 633.6 Q F1 +(option\255name)2.5 E F0(can be one of the follo)2.5 E(wing:)-.25 E F2 +(allexport)184 645.6 Q F0(Same as)224 657.6 Q F22.5 E F0(.)A F2 +(braceexpand)184 669.6 Q F0(Same as)224 681.6 Q F22.5 E F0(.)A F2 +(emacs)184 693.6 Q F0 .089 +(Use an emacs-style command line editing interf)13.9 F 2.589(ace. This) +-.1 F .089(is enabled by def)2.589 F(ault)-.1 E .95 +(when the shell is interacti)224 705.6 R -.15(ve)-.25 G 3.45(,u).15 G +.95(nless the shell is started with the)-3.45 F F2(\255\255noediting) +3.45 E F0 2.5(option. This)224 717.6 R(also af)2.5 E +(fects the editing interf)-.25 E(ace used for)-.1 E F2 -.18(re)2.5 G +(ad \255e).18 E F0(.)A(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(62) +198.165 E 0 Cg EP %%Page: 63 63 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(noglob)184 84 Q F0(Same as)11.1 E F1 -2.5 E F0(.)A F1(nolog)184 96 Q F0(Currently ignored.)16.66 E F1(notify) -184 108 Q F0(Same as)15 E F12.5 E F0(.)A F1(nounset)184 120 Q F0 -(Same as)6.66 E F12.5 E F0(.)A F1(onecmd)184 132 Q F0(Same as)6.67 -E F12.5 E F0(.)A F1(ph)184 144 Q(ysical)-.15 E F0(Same as)5.14 E -F12.5 E F0(.)A F1(pipefail)184 156 Q F0 1.029 -(If set, the return v)7.77 F 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 168 -R 1.136 +-.35 E/F1 10/Times-Bold@0 SF(err)184 84 Q(exit)-.18 E F0(Same as)11.31 E +F12.5 E F0(.)A F1(errtrace)184 96 Q F0(Same as)5.03 E F12.5 +E F0(.)A F1(functrace)184 108 Q F0(Same as)224 120 Q F12.5 E F0(.) +A F1(hashall)184 132 Q F0(Same as)9.43 E F12.5 E F0(.)A F1 +(histexpand)184 144 Q F0(Same as)224 156 Q F12.5 E F0(.)A F1 +(history)184 168 Q F0 .587(Enable command history)10 F 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 180 Q +(ault in interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(ignor)184 +192 Q(eeof)-.18 E F0 1.656(The ef)224 204 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 +216 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 228 S(yw).1 E(ord)-.1 E F0(Same as)224 240 Q F1 +2.5 E F0(.)A F1(monitor)184 252 Q F0(Same as)5.56 E F12.5 E +F0(.)A F1(noclob)184 264 Q(ber)-.1 E F0(Same as)224 276 Q F12.5 E +F0(.)A F1(noexec)184 288 Q F0(Same as)11.12 E F12.5 E F0(.)A F1 +(noglob)184 300 Q F0(Same as)11.1 E F12.5 E F0(.)A F1(nolog)184 +312 Q F0(Currently ignored.)16.66 E F1(notify)184 324 Q F0(Same as)15 E +F12.5 E F0(.)A F1(nounset)184 336 Q F0(Same as)6.66 E F12.5 +E F0(.)A F1(onecmd)184 348 Q F0(Same as)6.67 E F12.5 E F0(.)A F1 +(ph)184 360 Q(ysical)-.15 E F0(Same as)5.14 E F12.5 E F0(.)A F1 +(pipefail)184 372 Q F0 1.03(If set, the return v)7.77 F 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 384 R +1.136 (xit with a non-zero status, or zero if all commands in the pipeline) --.15 F -.15(ex)224 180 S(it successfully).15 E 5(.T)-.65 G -(his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 192 Q F0 -2.09(Change the beha)17.77 F 2.091(vior of)-.2 F F1(bash)4.591 E F0 +-.15 F -.15(ex)224 396 S(it successfully).15 E 5(.T)-.65 G +(his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 408 Q F0 +2.091(Change the beha)17.77 F 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(POSIX standard to match the standard \()224 204 Q -/F2 10/Times-Italic@0 SF(posix mode)A F0(\).)A F1(pri)184 216 Q(vileged) --.1 E F0(Same as)224 228 Q F12.5 E F0(.)A F1 -.1(ve)184 240 S -(rbose).1 E F0(Same as)7.33 E F12.5 E F0(.)A F1(vi)184 252 Q F0 -1.466(Use a vi-style command line editing interf)32.22 F 3.965 -(ace. This)-.1 F 1.465(also af)3.965 F 1.465(fects the editing)-.25 F -(interf)224 264 Q(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0 -(.)A F1(xtrace)184 276 Q F0(Same as)13.35 E F12.5 E F0(.)A(If)184 -294 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 -306 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 318 Q F1 -144 330 Q F0 -.45(Tu)28.74 G 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 9/Times-Bold@0 SF($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 342 R 1.5 -(vironment, and the)-.4 F F3(SHELLOPTS)4 E/F4 9/Times-Roman@0 SF(,)A F3 --.27(BA)184 354 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 366 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 378 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 390 Q .695 -.15(ve u)-.25 H .395 +(fers from the)-.25 F(POSIX standard to match the standard \()224 420 Q +/F5 10/Times-Italic@0 SF(posix mode)A F0(\).)A 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)7.33 E F12.5 E F0(.)A F1(vi)184 468 Q F0 +1.465(Use a vi-style command line editing interf)32.22 F 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)13.35 E 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)28.74 G 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 402 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 414 Q F1144 426 Q F0 +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)30.97 E -.15(xe)-.15 G(cuting one command.).15 -E F1144 438 Q F0 -.35(Tr)28.74 G .044(eat unset v).35 F .044(aria\ +E F1144 654 Q F0 -.35(Tr)28.74 G .043(eat unset v).35 F .044(aria\ bles and parameters other than the special parameters "@" and "*" as an) --.25 F .182(error when performing parameter e)184 450 R 2.682 -(xpansion. If)-.15 F -.15(ex)2.682 G .183 +-.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 462 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 -474 Q F1144 486 Q F0(Print shell input lines as the)29.3 E 2.5(ya) --.15 G(re read.)-2.5 E F1144 498 Q F0 .315(After e)29.3 F .315 -(xpanding each)-.15 F F2 .315(simple command)2.815 F F0(,)A F1 -.25(fo) +690 Q F1144 702 Q F0(Print shell input lines as the)29.3 E 2.5(ya) +-.15 G(re read.)-2.5 E F1144 714 Q F0 .315(After e)29.3 F .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 510 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 522 Q -(xpanded ar)-.15 E(guments or associated w)-.18 E(ord list.)-.1 E F1 -144 534 Q F0 2.578(The shell performs brace e)27.63 F 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 546 Q -(ault.)-.1 E F1144 558 Q F0 .214(If set,)27.08 F 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 570 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 582 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1 -144 594 Q F0 .104(If set, an)27.63 F 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 606 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 618 Q F1 -144 630 Q F0(Enable)26.52 E 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 642 Q -.15 -(ve)-.25 G(.).15 E F1144 654 Q F0 1.164 -(If set, the shell does not follo)28.19 F 3.664(ws)-.25 G 1.164 -(ymbolic links when e)-3.664 F -.15(xe)-.15 G 1.165 -(cuting commands such as).15 F F1(cd)3.665 E F0 2.822 -(that change the current w)184 666 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 678 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 690 Q(.)-.65 E F1144 -702 Q F0 .89(If set, an)27.63 F 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 714 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 726 Q F0 -(traps are normally not inherited in such cases.)2.5 E(GNU Bash-4.1)72 -768 Q(2010 June 12)147.345 E(63)197.335 E 0 Cg EP +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.2)72 768 Q(2010 July 21)148.175 E +(63)198.165 E 0 Cg EP %%Page: 64 64 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF144 84 Q F0 .401(If no ar)28.6 F .401 -(guments follo)-.18 F 2.901(wt)-.25 G .401 +-.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 SF +144 96 Q F0 2.579(The shell performs brace e)27.63 F 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 F1144 120 Q F0 .213(If set,)27.08 F 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)27.63 F 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)26.52 E 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 1.165 +(If set, the shell does not follo)28.19 F 3.664(ws)-.25 G 1.164 +(ymbolic links when e)-3.664 F -.15(xe)-.15 G 1.164 +(cuting commands such as).15 F F1(cd)3.664 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)27.63 F 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)28.6 F .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 +(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)34.3 F 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 +-.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 .222(ggle the v).8 F .222 +-2.5 E F0(...])2.5 E -.8(To)144 506.4 S .222(ggle the v).8 F .222 (alues of v)-.25 F .222(ariables controlling optional shell beha)-.25 F (vior)-.2 E 5.222(.W)-.55 G .222(ith no options, or with the)-5.622 F F1 2.722 E F0 .721(option, a list of all settable options is display\ -ed, with an indication of whether or not each is set.)144 302.4 R(The) -144 314.4 Q F12.828 E F0 .327(option causes output to be displaye\ -d in a form that may be reused as input.)2.828 F .327(Other options) -5.327 F(ha)144 326.4 Q .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:) --.25 E F1144 338.4 Q F0(Enable \(set\) each)26.41 E F2(optname)2.5 -E F0(.)A F1144 350.4 Q F0(Disable \(unset\) each)24.74 E F2 -(optname)2.5 E F0(.)A F1144 362.4 Q F0 .003(Suppresses normal out\ +ed, with an indication of whether or not each is set.)144 518.4 R(The) +144 530.4 Q F12.827 E F0 .327(option causes output to be displaye\ +d in a form that may be reused as input.)2.827 F .328(Other options) +5.328 F(ha)144 542.4 Q .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:) +-.25 E F1144 554.4 Q F0(Enable \(set\) each)26.41 E F2(optname)2.5 +E F0(.)A F1144 566.4 Q F0(Disable \(unset\) each)24.74 E F2 +(optname)2.5 E F0(.)A F1144 578.4 Q F0 .003(Suppresses normal out\ put \(quiet mode\); the return status indicates whether the)24.74 F F2 -(optname)2.504 E F0(is)2.504 E .256(set or unset.)180 374.4 R .256 -(If multiple)5.256 F F2(optname)2.756 E F0(ar)2.756 E .256 +(optname)2.503 E F0(is)2.503 E .255(set or unset.)180 590.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 F1 -2.756 E F0 2.755(,t)C .255(he return status is zero if)-2.755 F -(all)180 386.4 Q F2(optnames)2.5 E F0(are enabled; non-zero otherwise.) -2.5 E F1144 398.4 Q F0(Restricts the v)25.3 E(alues of)-.25 E F2 +2.756 E F0 2.756(,t)C .256(he return status is zero if)-2.756 F +(all)180 602.4 Q F2(optnames)2.5 E F0(are enabled; non-zero otherwise.) +2.5 E F1144 614.4 Q F0(Restricts the v)25.3 E(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 .127 -(If either)144 415.2 R F12.627 E F0(or)2.627 E F12.627 E F0 +(option to the)2.5 E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .128 +(If either)144 631.2 R F12.628 E F0(or)2.628 E F12.628 E F0 .127(is used with no)2.627 F F2(optname)2.627 E F0(ar)2.627 E .127 -(guments, the display is limited to those options which)-.18 F 1.024 -(are set or unset, respecti)144 427.2 R -.15(ve)-.25 G(ly).15 E 6.024 -(.U)-.65 G 1.024(nless otherwise noted, the)-6.024 F F1(shopt)3.523 E F0 -1.023(options are disabled \(unset\) by)3.523 F(def)144 439.2 Q(ault.) +(guments, the display is limited to those options which)-.18 F 1.023 +(are set or unset, respecti)144 643.2 R -.15(ve)-.25 G(ly).15 E 6.023 +(.U)-.65 G 1.024(nless otherwise noted, the)-6.023 F F1(shopt)3.524 E F0 +1.024(options are disabled \(unset\) by)3.524 F(def)144 655.2 Q(ault.) -.1 E 1.544(The return status when listing options is zero if all)144 -456 R F2(optnames)4.044 E F0 1.545(are enabled, non-zero otherwise.) -4.045 F .696 +672 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 468 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .695(alid shell) --.25 F(option.)144 480 Q(The list of)144 496.8 Q F1(shopt)2.5 E F0 -(options is:)2.5 E F1(autocd)144 514.8 Q F0 .199 -(If set, a command name that is the name of a directory is e)11.11 F --.15(xe)-.15 G .2(cuted as if it were the ar).15 F(gu-)-.18 E -(ment to the)184 526.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 538.8 Q(ars)-.1 E F0 .156(If set, an ar)184 550.8 R .156 -(gument to the)-.18 F F1(cd)2.656 E F0 -.2(bu)2.656 G .155 -(iltin command that is not a directory is assumed to be the).2 F -(name of a v)184 562.8 Q(ariable whose v)-.25 E -(alue is the directory to change to.)-.25 E F1(cdspell)144 574.8 Q F0 -1.055 -(If set, minor errors in the spelling of a directory component in a) -10.55 F F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.988 -(corrected. The)184 586.8 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 .552(one character too man)184 598.8 R 4.352 -.65 -(y. I)-.15 H 3.052(fac).65 G .552 -(orrection is found, the corrected \214le name is printed, and)-3.052 F -(the command proceeds.)184 610.8 Q -(This option is only used by interacti)5 E .3 -.15(ve s)-.25 H(hells.) -.15 E F1(checkhash)144 622.8 Q F0 2.08(If set,)184 634.8 R F1(bash)4.58 -E F0 2.079(checks that a command found in the hash table e)4.58 F 2.079 -(xists before trying to)-.15 F -.15(exe)184 646.8 S(cute it.).15 E -(If a hashed command no longer e)5 E -(xists, a normal path search is performed.)-.15 E F1(checkjobs)144 658.8 -Q F0 .448(If set,)184 670.8 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 682.8 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 694.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.704 E(al)184 706.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.1)72 768 Q(2010 June 12)147.345 E -(64)197.335 E 0 Cg EP +144 684 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .696(alid shell) +-.25 F(option.)144 696 Q(The list of)144 712.8 Q F1(shopt)2.5 E F0 +(options is:)2.5 E(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(64) +198.165 E 0 Cg EP %%Page: 65 65 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF(checkwinsize)144 84 Q F0 .797(If set,)184 -96 R F1(bash)3.297 E F0 .797(checks the windo)3.297 F 3.297(ws)-.25 G -.796(ize after each command and, if necessary)-3.297 F 3.296(,u)-.65 G -.796(pdates the)-3.296 F -.25(va)184 108 S(lues 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,)6.11 F 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 5(.T)-.65 G(his allo)-5 E -(ws easy re-editing of multi-line commands.)-.25 E F1(compat31)144 144 Q -F0 .42(If set,)184 156 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(to the conditional command')184 168 Q 2.5(s=)-.55 -G 2.5(~o)-2.5 G(perator)-2.5 E(.)-.55 E F1(compat32)144 180 Q F0 1.409 -(If set,)184 192 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 -(string comparison when using the conditional command')184 204 Q 2.5 -(s operators.)-2.5 E 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 +-.35 E/F1 10/Times-Bold@0 SF(autocd)144 84 Q F0 .2 +(If set, a command name that is the name of a directory is e)11.11 F +-.15(xe)-.15 G .199(cuted as if it were the ar).15 F(gu-)-.18 E +(ment to the)184 96 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F +(option is only used by interacti)2.5 E .3 -.15(ve s)-.25 H(hells.).15 E +F1(cdable_v)144 108 Q(ars)-.1 E F0 .155(If set, an ar)184 120 R .155 +(gument to the)-.18 F F1(cd)2.655 E F0 -.2(bu)2.655 G .156 +(iltin command that is not a directory is assumed to be the).2 F +(name of a v)184 132 Q(ariable whose v)-.25 E +(alue is the directory to change to.)-.25 E F1(cdspell)144 144 Q F0 +1.055 +(If set, minor errors in the spelling of a directory component in a) +10.55 F F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.987 +(corrected. The)184 156 R 1.487(errors check)3.987 F 1.487 +(ed for are transposed characters, a missing character)-.1 F 3.988(,a) +-.4 G(nd)-3.988 E .552(one character too man)184 168 R 4.352 -.65(y. I) +-.15 H 3.052(fac).65 G .552 +(orrection is found, the corrected \214le name is printed, and)-3.052 F +(the command proceeds.)184 180 Q(This option is only used by interacti)5 +E .3 -.15(ve s)-.25 H(hells.).15 E F1(checkhash)144 192 Q F0 2.079 +(If set,)184 204 R F1(bash)4.579 E F0 2.079 +(checks that a command found in the hash table e)4.579 F 2.08 +(xists before trying to)-.15 F -.15(exe)184 216 S(cute it.).15 E +(If a hashed command no longer e)5 E +(xists, a normal path search is performed.)-.15 E F1(checkjobs)144 228 Q +F0 .449(If set,)184 240 R F1(bash)2.949 E F0 .449 +(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 252 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 264 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 276 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 288 Q F0 .796(If set,)184 +300 R F1(bash)3.296 E F0 .796(checks the windo)3.296 F 3.296(ws)-.25 G +.797(ize after each command and, if necessary)-3.296 F 3.297(,u)-.65 G +.797(pdates the)-3.297 F -.25(va)184 312 S(lues 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 +324 Q F0 1.202(If set,)6.11 F 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 +336 Q 5(.T)-.65 G(his allo)-5 E +(ws easy re-editing of multi-line commands.)-.25 E F1(compat31)144 348 Q +F0 .419(If set,)184 360 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(to the conditional command')184 372 Q 2.5(s=)-.55 +G 2.5(~o)-2.5 G(perator)-2.5 E(.)-.55 E F1(compat32)144 384 Q F0 1.41 +(If set,)184 396 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 1.692 -(string comparison when using the conditional command')184 240 R 4.193 -(s operators and the)-4.193 F(ef)184 252 Q -(fect of interrupting a command list.)-.25 E F1(compat41)144 264 Q F0 -1.232(@item compat41 If set,)184 276 R F1(bash)3.732 E F0 3.732(,w)C +(ersion 3.2 with respect to locale-speci\214c)-.15 F +(string comparison when using the conditional command')184 408 Q 2.5 +(s operators.)-2.5 E F1(compat40)144 420 Q F0 1.409 +(If set,)184 432 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 1.693 +(string comparison when using the conditional command')184 444 R 4.192 +(s operators and the)-4.192 F(ef)184 456 Q +(fect of interrupting a command list.)-.25 E F1(compat41)144 468 Q F0 +1.232(@item compat41 If set,)184 480 R F1(bash)3.732 E F0 3.732(,w)C 1.232(hen in posix mode, treats a single quote in a double-)-3.732 F -1.213(quoted parameter e)184 288 R 1.213 -(xpansion as a special character)-.15 F 6.213(.T)-.55 G 1.214 -(he single quotes must match \(an)-6.213 F -2.15 -.25(ev e)184 300 T -2.949(nn).25 G .448(umber\) and the characters between the single quote\ -s are considered quoted.)-2.949 F(This)5.448 E .062(is the beha)184 312 +1.214(quoted parameter e)184 492 R 1.214 +(xpansion as a special character)-.15 F 6.213(.T)-.55 G 1.213 +(he single quotes must match \(an)-6.213 F -2.15 -.25(ev e)184 504 T +2.948(nn).25 G .448(umber\) and the characters between the single quote\ +s are considered quoted.)-2.948 F(This)5.449 E .063(is the beha)184 516 R .062(vior of posix mode through v)-.2 F .062(ersion 4.1.)-.15 F .062 -(The def)5.062 F .062(ault bash beha)-.1 F .063(vior remains as)-.2 F -(in pre)184 324 Q(vious v)-.25 E(ersions.)-.15 E F1(dirspell)144 336 Q -F0 .859(If set,)7.77 F F1(bash)3.359 E F0 .858 -(attempts spelling correction on directory names during w)3.359 F .858 +(The def)5.062 F .062(ault bash beha)-.1 F .062(vior remains as)-.2 F +(in pre)184 528 Q(vious v)-.25 E(ersions.)-.15 E F1(dirspell)144 540 Q +F0 .858(If set,)7.77 F 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 348 Q(xist.)-.15 E -F1(dotglob)144 360 Q F0 .165(If set,)7.77 F F1(bash)2.665 E F0 .165 +(the directory name initially supplied does not e)184 552 Q(xist.)-.15 E +F1(dotglob)144 564 Q F0 .165(If set,)7.77 F 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 F1(execfail)144 372 Q F0 1.387 -(If set, a non-interacti)7.79 F 1.687 -.15(ve s)-.25 H 1.386 +(xpansion.)-.15 E F1(execfail)144 576 Q F0 1.386 +(If set, a non-interacti)7.79 F 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.386(cute the \214le speci\214ed as an).15 F(ar)184 384 Q +1.387(cute the \214le speci\214ed as an).15 F(ar)184 588 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 396 Q F0 -.716(If set, aliases are e)184 408 R .717(xpanded as described abo)-.15 -F 1.017 -.15(ve u)-.15 H(nder).15 E F2(ALIASES)3.217 E F3(.)A F0 .717 -(This option is enabled)5.217 F(by def)184 420 Q(ault for interacti)-.1 -E .3 -.15(ve s)-.25 H(hells.).15 E F1(extdeb)144 432 Q(ug)-.2 E F0 -(If set, beha)184 444 Q(vior intended for use by deb)-.2 E -(uggers is enabled:)-.2 E F1(1.)184 456 Q F0(The)28.5 E F14.251 E -F0 1.751(option to the)4.251 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 468 Q -(gument.)-.18 E F1(2.)184 480 Q F0 1.667(If the command run by the)28.5 +E F1(exec)2.5 E F0 -.1(fa)2.5 G(ils.).1 E F1(expand_aliases)144 600 Q F0 +.717(If set, aliases are e)184 612 R .717(xpanded as described abo)-.15 +F 1.017 -.15(ve u)-.15 H(nder).15 E F2(ALIASES)3.217 E F3(.)A F0 .716 +(This option is enabled)5.217 F(by def)184 624 Q(ault for interacti)-.1 +E .3 -.15(ve s)-.25 H(hells.).15 E F1(extdeb)144 636 Q(ug)-.2 E F0 +(If set, beha)184 648 Q(vior intended for use by deb)-.2 E +(uggers is enabled:)-.2 E F1(1.)184 660 Q F0(The)28.5 E 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 672 Q +(gument.)-.18 E F1(2.)184 684 Q F0 1.667(If the command run by the)28.5 F 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 492 -Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 504 Q F0 .841 -(If the command run by the)28.5 F 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 -(exe)220 516 S .488 +1.667(alue, the ne)-.25 F(xt)-.15 E(command is skipped and not e)220 696 +Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 708 Q F0 .84 +(If the command run by the)28.5 F 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 720 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 528 Q(ce)-.18 E F0 -.2(bu)2.5 G(iltins\), a call to).2 E F1 --.18(re)2.5 G(tur).18 E(n)-.15 E F0(is simulated.)2.5 E F1(4.)184 540 Q -F2 -.27(BA)28.5 G(SH_ARGC).27 E F0(and)3.154 E F2 -.27(BA)3.404 G -(SH_ARGV).27 E F0 .904(are updated as described in their descriptions) -3.154 F(abo)220 552 Q -.15(ve)-.15 G(.).15 E F1(5.)184 564 Q F0 1.359 -(Function tracing is enabled:)28.5 F 1.359 -(command substitution, shell functions, and sub-)6.359 F(shells in)220 -576 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 588 Q F0 .805(Error tracing is enabled:)28.5 F .804 -(command substitution, shell functions, and subshells)5.805 F(in)220 600 -Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E F4 -(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 612 Q F0 .4(If set, the e)8.89 F .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 624 Q -F0(are enabled.)2.5 E F1(extquote)144 636 Q F0 2.473(If set,)184 648 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 660 Q -(This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 672 Q F0 -1.424(If set, patterns which f)7.77 F 1.425 -(ail to match \214lenames during pathname e)-.1 F 1.425 -(xpansion result in an)-.15 F -.15(ex)184 684 S(pansion error).15 E(.) --.55 E F1 -.25(fo)144 696 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0 -.937(If set, the suf)184 708 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 2.267(when performing w)184 720 R -2.267(ord completion e)-.1 F -.15(ve)-.25 G 4.767(ni).15 G 4.767(ft) --4.767 G 2.268(he ignored w)-4.767 F 2.268(ords are the only possible) --.1 F(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(65)197.335 E 0 Cg EP +-.15(xe)-.15 G .488(cuted by the).15 F F1(.)2.988 E F0(or)2.988 E +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(65)198.165 E 0 Cg EP %%Page: 66 66 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E 5.039(completions. See)184 84 R/F1 9/Times-Bold@0 SF 2.538 -(SHELL V)5.038 F(ARIABLES)-1.215 E F0(abo)4.788 E 2.838 -.15(ve f)-.15 H -2.538(or a description of).15 F F1(FIGNORE)5.038 E/F2 9/Times-Roman@0 SF -(.)A F0(This)7.038 E(option is enabled by def)184 96 Q(ault.)-.1 E/F3 10 -/Times-Bold@0 SF(globstar)144 108 Q F0 .178(If set, the pattern)5 F F3 -(**)2.678 E F0 .178(used in a pathname e)2.678 F .178(xpansion conte) --.15 F .179(xt will match a \214les and zero or)-.15 F 1.298 -(more directories and subdirectories.)184 120 R 1.298 -(If the pattern is follo)6.298 F 1.298(wed by a)-.25 F F3(/)3.797 E F0 -3.797(,o)C 1.297(nly directories)-3.797 F(and subdirectories match.)184 -132 Q F3(gnu_errfmt)144 144 Q F0(If set, shell error messages are writt\ -en in the standard GNU error message format.)184 156 Q F3(histappend)144 -168 Q F0 .676 +-.35 E/F1 10/Times-Bold@0 SF(sour)220 84 Q(ce)-.18 E F0 -.2(bu)2.5 G +(iltins\), a call to).2 E F1 -.18(re)2.5 G(tur).18 E(n)-.15 E F0 +(is simulated.)2.5 E F1(4.)184 96 Q/F2 9/Times-Bold@0 SF -.27(BA)28.5 G +(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 108 Q +-.15(ve)-.15 G(.).15 E F1(5.)184 120 Q F0 1.359 +(Function tracing is enabled:)28.5 F 1.359 +(command substitution, shell functions, and sub-)6.359 F(shells in)220 +132 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E/F3 10 +/Times-Italic@0 SF(command)2.5 E F1(\))2.5 E F0(inherit the)2.5 E F1 +(DEB)2.5 E(UG)-.1 E F0(and)2.5 E F1(RETURN)2.5 E F0(traps.)2.5 E F1(6.) +184 144 Q F0 .804(Error tracing is enabled:)28.5 F .805 +(command substitution, shell functions, and subshells)5.804 F(in)220 156 +Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E F3 +(command)2.5 E F1(\))2.5 E F0(inherit the)2.5 E F1(ERR)2.5 E F0(trap.) +2.5 E F1(extglob)144 168 Q F0 .4(If set, the e)8.89 F .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 180 Q +F0(are enabled.)2.5 E F1(extquote)144 192 Q F0 2.473(If set,)184 204 R +F1($)4.973 E F0<08>A F3(string)A F0 4.973<0861>C(nd)-4.973 E F1($)4.973 +E F0(")A F3(string)A F0 4.973("q)C 2.473(uoting is performed within) +-4.973 F F1(${)4.973 E F3(par)A(ameter)-.15 E F1(})A F0 -.15(ex)4.973 G +(pansions).15 E(enclosed in double quotes.)184 216 Q +(This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 228 Q F0 +1.425(If set, patterns which f)7.77 F 1.425 +(ail to match \214lenames during pathname e)-.1 F 1.424 +(xpansion result in an)-.15 F -.15(ex)184 240 S(pansion error).15 E(.) +-.55 E F1 -.25(fo)144 252 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0 +.936(If set, the suf)184 264 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 276 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 288 R F2 .447(SHELL V)2.947 F(ARIABLES)-1.215 E F0 +(abo)2.697 E .747 -.15(ve f)-.15 H .448(or a description of).15 F F2 +(FIGNORE)2.948 E/F4 9/Times-Roman@0 SF(.)A F0 .448(This option is)4.948 +F(enabled by def)184 300 Q(ault.)-.1 E F1(globstar)144 312 Q F0 .179 +(If set, the pattern)5 F F1(**)2.679 E F0 .178(used in a pathname e) +2.678 F .178(xpansion conte)-.15 F .178 +(xt will match a \214les and zero or)-.15 F 1.297 +(more directories and subdirectories.)184 324 R 1.298 +(If the pattern is follo)6.297 F 1.298(wed by a)-.25 F F1(/)3.798 E F0 +3.798(,o)C 1.298(nly directories)-3.798 F(and subdirectories match.)184 +336 Q F1(gnu_errfmt)144 348 Q F0(If set, shell error messages are writt\ +en in the standard GNU error message format.)184 360 Q F1(histappend)144 +372 Q F0 .676 (If set, the history list is appended to the \214le named by the v)184 -180 R .676(alue of the)-.25 F F1(HISTFILE)3.177 E F0 -.25(va)2.927 G -(ri-).25 E(able when the shell e)184 192 Q(xits, rather than o)-.15 E --.15(ve)-.15 G(rwriting the \214le.).15 E F3(histr)144 204 Q(eedit)-.18 -E F0 .576(If set, and)184 216 R F3 -.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 228 Q F3(histv)144 240 Q(erify)-.1 E F0 .402 -(If set, and)184 252 R F3 -.18(re)2.903 G(adline).18 E F0 .403 +384 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 396 Q(xits, rather than o)-.15 E +-.15(ve)-.15 G(rwriting the \214le.).15 E F1(histr)144 408 Q(eedit)-.18 +E F0 .575(If set, and)184 420 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 432 Q F1(histv)144 444 Q(erify)-.1 E F0 .403 +(If set, and)184 456 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 264 R 5.662(.I)-.55 G .661 -(nstead, the resulting line is loaded into the)-5.662 F F3 -.18(re)3.161 -G(adline).18 E F0(editing)3.161 E -.2(bu)184 276 S -.25(ff).2 G(er).25 E -2.5(,a)-.4 G(llo)-2.5 E(wing further modi\214cation.)-.25 E F3 -(hostcomplete)144 288 Q F0 1.181(If set, and)184 300 R F3 -.18(re)3.681 -G(adline).18 E F0 1.181(is being used,)3.681 F F3(bash)3.682 E F0 1.182 -(will attempt to perform hostname completion)3.682 F 1.381(when a w)184 -312 R 1.381(ord containing a)-.1 F F3(@)3.881 E F0 1.381 -(is being completed \(see)3.881 F F3(Completing)3.88 E F0(under)3.88 E -F1(READLINE)3.88 E F0(abo)184 324 Q -.15(ve)-.15 G 2.5(\). This).15 F -(is enabled by def)2.5 E(ault.)-.1 E F3(huponexit)144 336 Q F0(If set,) -184 348 Q F3(bash)2.5 E F0(will send)2.5 E F1(SIGHUP)2.5 E F0 +2.903 F .661(passed to the shell parser)184 468 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 480 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 492 Q F0 1.182(If set, and)184 504 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 +516 R 1.38(ord containing a)-.1 F F1(@)3.881 E F0 1.381 +(is being completed \(see)3.881 F F1(Completing)3.881 E F0(under)3.881 E +F2(READLINE)3.881 E F0(abo)184 528 Q -.15(ve)-.15 G 2.5(\). This).15 F +(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 540 Q F0(If set,) +184 552 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 F3(interacti)144 360 Q -.1(ve)-.1 G(_comments).1 E F0 -.33(If set, allo)184 372 R 2.83(waw)-.25 G .33(ord be)-2.93 F .33 -(ginning with)-.15 F F3(#)2.83 E F0 .33(to cause that w)2.83 F .33 +.15 E(xits.)-.15 E F1(interacti)144 564 Q -.1(ve)-.1 G(_comments).1 E F0 +.33(If set, allo)184 576 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 384 R 1.267 -.15(ve s)-.25 -H .967(hell \(see).15 F F1(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 396 Q -(ault.)-.1 E F3(lithist)144 408 Q F0 .654(If set, and the)15.55 F F3 -(cmdhist)3.154 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(with embedded ne)184 420 Q -(wlines rather than using semicolon separators where possible.)-.25 E F3 -(login_shell)144 432 Q F0 .486 +(that line to be ignored in an interacti)184 588 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 600 Q +(ault.)-.1 E F1(lastpipe)144 612 Q F0 1.212 +(If set, and job control is not acti)6.66 F -.15(ve)-.25 G 3.712(,t).15 +G 1.212(he shell runs the last command of a pipeline not)-3.712 F -.15 +(exe)184 624 S(cuted in the background in the current shell en).15 E +(vironment.)-.4 E F1(lithist)144 636 Q F0 .654(If set, and the)15.55 F +F1(cmdhist)3.154 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 +(with embedded ne)184 648 Q +(wlines rather than using semicolon separators where possible.)-.25 E F1 +(login_shell)144 660 Q F0 .486 (The shell sets this option if it is started as a login shell \(see)184 -444 R F1(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 456 S(lue may not be changed.).25 -E F3(mailwar)144 468 Q(n)-.15 E F0 .814(If set, and a \214le that)184 -480 R F3(bash)3.314 E F0 .815 +672 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 684 S(lue may not be changed.).25 +E F1(mailwar)144 696 Q(n)-.15 E F0 .814(If set, and a \214le that)184 +708 R F1(bash)3.314 E F0 .815 (is checking for mail has been accessed since the last time it)3.314 F --.1(wa)184 492 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E -(`The mail in)-.74 E/F4 10/Times-Italic@0 SF(mail\214le)2.5 E F0 -(has been read')2.5 E 2.5('i)-.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E F3 -(no_empty_cmd_completion)144 504 Q F0 .325(If set, and)184 516 R F3 -.18 -(re)2.825 G(adline).18 E F0 .325(is being used,)2.825 F F3(bash)2.824 E -F0 .324(will not attempt to search the)2.824 F F1 -.666(PA)2.824 G(TH) --.189 E F0 .324(for possible)2.574 F -(completions when completion is attempted on an empty line.)184 528 Q F3 -(nocaseglob)144 540 Q F0 .436(If set,)184 552 R F3(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 564 S -(pansion \(see).15 E F3 -.1(Pa)2.5 G(thname Expansion).1 E F0(abo)2.5 E --.15(ve)-.15 G(\).).15 E F3(nocasematch)144 576 Q F0 1.194(If set,)184 -588 R F3(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 -F(while e)184 600 Q -.15(xe)-.15 G(cuting).15 E F3(case)2.5 E F0(or)2.5 -E F3([[)2.5 E F0(conditional commands.)2.5 E F3(nullglob)144 612 Q F0 -.854(If set,)184 624 R F3(bash)3.354 E F0(allo)3.354 E .855 -(ws patterns which match no \214les \(see)-.25 F F3 -.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 636 S(pand to a null string, rather than themselv) -.15 E(es.)-.15 E F3(pr)144 648 Q(ogcomp)-.18 E F0 .677 -(If set, the programmable completion f)184 660 R .677(acilities \(see) --.1 F F3(Pr)3.176 E .676(ogrammable Completion)-.18 F F0(abo)3.176 E --.15(ve)-.15 G(\)).15 E(are enabled.)184 672 Q -(This option is enabled by def)5 E(ault.)-.1 E F3(pr)144 684 Q(omptv) --.18 E(ars)-.1 E F0 1.447(If set, prompt strings under)184 696 R 1.448 -(go parameter e)-.18 F 1.448(xpansion, command substitution, arithmetic) --.15 F -.15(ex)184 708 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 F1(PR)2.67 E(OMPTING)-.27 E F0(abo)2.42 E -.15(ve)-.15 G(.).15 E -(This option is enabled by def)184 720 Q(ault.)-.1 E(GNU Bash-4.1)72 768 -Q(2010 June 12)147.345 E(66)197.335 E 0 Cg EP +-.1(wa)184 720 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(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(66)198.165 E 0 Cg EP %%Page: 67 67 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10/Times-Bold@0 SF -.18(re)144 84 S(stricted_shell).18 E F0 -1.069 +-.35 E/F1 10/Times-Bold@0 SF(no_empty_cmd_completion)144 84 Q F0 .325 +(If set, and)184 96 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 9/Times-Bold@0 SF -.666(PA) +2.824 G(TH)-.189 E F0 .324(for possible)2.574 F +(completions when completion is attempted on an empty line.)184 108 Q F1 +(nocaseglob)144 120 Q F0 .436(If set,)184 132 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 144 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 156 Q F0 1.194(If set,)184 +168 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 +F(while e)184 180 Q -.15(xe)-.15 G(cuting).15 E F1(case)2.5 E F0(or)2.5 +E F1([[)2.5 E F0(conditional commands.)2.5 E F1(nullglob)144 192 Q F0 +.854(If set,)184 204 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 216 S(pand to a null string, rather than themselv) +.15 E(es.)-.15 E F1(pr)144 228 Q(ogcomp)-.18 E F0 .677 +(If set, the programmable completion f)184 240 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(are enabled.)184 252 Q +(This option is enabled by def)5 E(ault.)-.1 E F1(pr)144 264 Q(omptv) +-.18 E(ars)-.1 E F0 1.447(If set, prompt strings under)184 276 R 1.448 +(go parameter e)-.18 F 1.448(xpansion, command substitution, arithmetic) +-.15 F -.15(ex)184 288 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 +(This option is enabled by def)184 300 Q(ault.)-.1 E F1 -.18(re)144 312 +S(stricted_shell).18 E F0 1.069 (The shell sets this option if it is started in restricted mode \(see) -184 96 R/F2 9/Times-Bold@0 SF 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 -108 Q 4.178(w\). The)-.25 F -.25(va)4.178 G 1.678 -(lue may not be changed.).25 F 1.678 -(This is not reset when the startup \214les are)6.678 F -.15(exe)184 120 -S(cuted, allo).15 E(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 132 Q(erbose)-.1 E F0 .501(If set, the)184 144 R F1(shift) -3.001 E F0 -.2(bu)3.001 G .501 +184 324 R F2 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 336 Q 4.178 +(w\). The)-.25 F -.25(va)4.178 G 1.678(lue may not be changed.).25 F +1.678(This is not reset when the startup \214les are)6.678 F -.15(exe) +184 348 S(cuted, allo).15 E(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 360 Q(erbose)-.1 E F0 .501(If set, the)184 372 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 156 Q F1(sour) -144 168 Q(cepath)-.18 E F0 .771(If set, the)184 180 R F1(sour)3.271 E +(xceeds the number)-.15 F(of positional parameters.)184 384 Q F1(sour) +144 396 Q(cepath)-.18 E F0 .771(If set, the)184 408 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 -.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 192 Q 2.5(gument. This)-.18 F(option is enabled by def)2.5 E(ault.) --.1 E F1(xpg_echo)144 204 Q F0(If set, the)184 216 Q F1(echo)2.5 E F0 +184 420 Q 2.5(gument. This)-.18 F(option is enabled by def)2.5 E(ault.) +-.1 E F1(xpg_echo)144 432 Q F0(If set, the)184 444 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 228 Q F0([)2.5 E F1A F0(])A 1.001 -(Suspend the e)144 240 R -.15(xe)-.15 G 1.001 +E(ault.)-.1 E F1(suspend)108 456 Q F0([)2.5 E F1A F0(])A 1.001 +(Suspend the e)144 468 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 252 R F12.523 E F0 .023 +3.502 F .023(suspended; the)144 480 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 264 S(nless the shell is a login shell and)-2.5 E F1 +5.022 F 2.5(0u)144 492 S(nless the shell is a login shell and)-2.5 E F1 2.5 E F0(is not supplied, or if job control is not enabled.)2.5 E -F1(test)108 276 Q/F3 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F1([)108 -288 Q F3 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 1.15 +F1(test)108 504 Q/F3 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F1([)108 +516 Q F3 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 1.15 (Return a status of 0 or 1 depending on the e)6.77 F -.25(va)-.25 G 1.15 (luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)3.65 G (pr).2 E F0 6.15(.E).73 G(ach)-6.15 E 1.188 -(operator and operand must be a separate ar)144 300 R 3.688 +(operator and operand must be a separate ar)144 528 R 3.688 (gument. Expressions)-.18 F 1.187(are composed of the primaries)3.688 F -1.889(described abo)144 312 R 2.189 -.15(ve u)-.15 H(nder).15 E F2 +1.889(described abo)144 540 R 2.189 -.15(ve u)-.15 H(nder).15 E F2 (CONDITION)4.389 E 1.889(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(.)A F1(test)6.389 E F0 1.89(does not accept an)4.389 F 4.39(yo)-.15 G 1.89 -(ptions, nor)-4.39 F(does it accept and ignore an ar)144 324 Q +(ptions, nor)-4.39 F(does it accept and ignore an ar)144 552 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 342 R .785 +E .786(Expressions may be combined using the follo)144 570 R .785 (wing operators, listed in decreasing order of prece-)-.25 F 2.5 -(dence. The)144 354 R -.25(eva)2.5 G +(dence. The)144 582 R -.25(eva)2.5 G (luation depends on the number of ar).25 E(guments; see belo)-.18 E -.65 -(w.)-.25 G F1(!)144 366 Q F3 -.2(ex)2.5 G(pr).2 E F0 -.35(Tr)12.6 G +(w.)-.25 G F1(!)144 594 Q F3 -.2(ex)2.5 G(pr).2 E F0 -.35(Tr)12.6 G (ue if).35 E F3 -.2(ex)2.5 G(pr).2 E F0(is f)3.23 E(alse.)-.1 E F1(\() -144 378 Q F3 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0 .26(Returns the v)6.77 +144 606 Q F3 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0 .26(Returns the v)6.77 F .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 390 Q F3 -.2(ex) -144 402 S(pr1).2 E F02.5 E F1(a)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35 -(Tr)180 414 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 426 S(pr1).2 E -F02.5 E F1(o)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180 438 S +(rride the normal precedence of opera-).15 F(tors.)180 618 Q F3 -.2(ex) +144 630 S(pr1).2 E F02.5 E F1(a)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35 +(Tr)180 642 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 654 S(pr1).2 E +F02.5 E F1(o)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180 666 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 454.8 Q F0(and)2.5 E F1([)2.5 E +(pr2).2 E F0(is true.)2.52 E F1(test)144 682.8 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 472.8 S -.18(rg)-2.5 G(uments).18 E(The e) -180 484.8 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 496.8 S -.18 -(rg)-2.5 G(ument).18 E(The e)180 508.8 Q -(xpression is true if and only if the ar)-.15 E(gument is not null.)-.18 -E 2.5(2a)144 520.8 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar) -180 532.8 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 544.8 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 556.8 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 568.8 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 580.8 S -.18(rg)-2.5 G -(uments).18 E .023(If the second ar)180 592.8 R .023 -(gument is one of the binary conditional operators listed abo)-.18 F -.324 -.15(ve u)-.15 H(nder).15 E F2(CON-)2.524 E(DITION)180 604.8 Q -1.478(AL EXPRESSIONS)-.18 F F4(,)A F0 1.477(the result of the e)3.727 F -1.477(xpression is the result of the binary test)-.15 F .513 -(using the \214rst and third ar)180 616.8 R .513(guments as operands.) --.18 F(The)5.513 E F13.013 E F0(and)3.013 E F13.013 E F0 -.513(operators are considered)3.013 F .972 -(binary operators when there are three ar)180 628.8 R 3.472(guments. If) --.18 F .972(the \214rst ar)3.472 F .972(gument is)-.18 F F1(!)3.472 E F0 -3.472(,t)C .972(he v)-3.472 F .972(alue is)-.25 F .883(the ne)180 640.8 -R -.05(ga)-.15 G .883(tion of the tw).05 F(o-ar)-.1 E .884 -(gument test using the second and third ar)-.18 F 3.384(guments. If)-.18 -F .884(the \214rst)3.384 F(ar)180 652.8 Q .875(gument is e)-.18 F -(xactly)-.15 E F1(\()3.375 E F0 .875(and the third ar)3.375 F .875 -(gument is e)-.18 F(xactly)-.15 E F1(\))3.375 E F0 3.374(,t)C .874 -(he result is the one-ar)-3.374 F(gument)-.18 E(test of the second ar) -180 664.8 Q 2.5(gument. Otherwise,)-.18 F(the e)2.5 E(xpression is f) --.15 E(alse.)-.1 E 2.5(4a)144 676.8 S -.18(rg)-2.5 G(uments).18 E .384 -(If the \214rst ar)180 688.8 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(posed of the remaining ar)180 700.8 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 G(luated).25 E -(according to precedence using the rules listed abo)180 712.8 Q -.15(ve) --.15 G(.).15 E(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(67)197.335 E -0 Cg EP +(guments.)-.18 E 2.5(0a)144 700.8 S -.18(rg)-2.5 G(uments).18 E(The e) +180 712.8 Q(xpression is f)-.15 E(alse.)-.1 E(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(67)198.165 E 0 Cg EP %%Page: 68 68 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E 2.5(5o)144 84 S 2.5(rm)-2.5 G(ore ar)-2.5 E(guments)-.18 E 1.635 -(The e)180 96 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 108 Q -.15(ve)-.15 G(.).15 E/F1 10/Times-Bold@0 SF(times)108 124.8 Q -F0 1.229(Print the accumulated user and system times for the shell and \ -for processes run from the shell.)13.23 F(The return status is 0.)144 -136.8 Q F1(trap)108 153.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 165.6 R F2(ar)3.532 E(g)-.37 E F0 .702 +-.35 E 2.5(1a)144 84 S -.18(rg)-2.5 G(ument).18 E(The e)180 96 Q +(xpression is true if and only if the ar)-.15 E(gument is not null.)-.18 +E 2.5(2a)144 108 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar)180 +120 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 132 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 +144 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 156 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 168 S -.18(rg)-2.5 G +(uments).18 E .023(If the second ar)180 180 R .023 +(gument is one of the binary conditional operators listed abo)-.18 F +.324 -.15(ve u)-.15 H(nder).15 E F2(CON-)2.524 E(DITION)180 192 Q 1.478 +(AL EXPRESSIONS)-.18 F F3(,)A F0 1.477(the result of the e)3.727 F 1.477 +(xpression is the result of the binary test)-.15 F .513 +(using the \214rst and third ar)180 204 R .513(guments as operands.)-.18 +F(The)5.513 E F13.013 E F0(and)3.013 E F13.013 E F0 .513 +(operators are considered)3.013 F .972 +(binary operators when there are three ar)180 216 R 3.472(guments. If) +-.18 F .972(the \214rst ar)3.472 F .972(gument is)-.18 F F1(!)3.472 E F0 +3.472(,t)C .972(he v)-3.472 F .972(alue is)-.25 F .883(the ne)180 228 R +-.05(ga)-.15 G .883(tion of the tw).05 F(o-ar)-.1 E .884 +(gument test using the second and third ar)-.18 F 3.384(guments. If)-.18 +F .884(the \214rst)3.384 F(ar)180 240 Q .875(gument is e)-.18 F(xactly) +-.15 E F1(\()3.375 E F0 .875(and the third ar)3.375 F .875(gument is e) +-.18 F(xactly)-.15 E F1(\))3.375 E F0 3.374(,t)C .874 +(he result is the one-ar)-3.374 F(gument)-.18 E(test of the second ar) +180 252 Q 2.5(gument. Otherwise,)-.18 F(the e)2.5 E(xpression is f)-.15 +E(alse.)-.1 E 2.5(4a)144 264 S -.18(rg)-2.5 G(uments).18 E .384 +(If the \214rst ar)180 276 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(posed of the remaining ar)180 288 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 G(luated).25 E +(according to precedence using the rules listed abo)180 300 Q -.15(ve) +-.15 G(.).15 E 2.5(5o)144 312 S 2.5(rm)-2.5 G(ore ar)-2.5 E(guments)-.18 +E 1.635(The e)180 324 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 336 Q -.15(ve)-.15 G(.).15 E F1(times)108 352.8 Q F0 1.229(Pri\ +nt the accumulated user and system times for the shell and for processe\ +s run from the shell.)13.23 F(The return status is 0.)144 364.8 Q F1 +(trap)108 381.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 +.702(The command)144 393.6 R F4(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 +(ignal\(s\))-3.203 E F4(sigspec)3.203 E F0 5.703(.I).31 G(f)-5.703 E F4 (ar)3.533 E(g)-.37 E F0(is)3.423 E .609(absent \(and there is a single) -144 177.6 R F2(sigspec)3.108 E F0 3.108(\)o)C(r)-3.108 E F13.108 E +144 405.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 -.658(\(the v)144 189.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 -(is the null string the signal speci\214ed by each)3.378 F F2(sigspec) -144.34 201.6 Q F0 .581 +.658(\(the v)144 417.6 R .658(alue it had upon entrance to the shell\).) +-.25 F(If)5.658 E F4(ar)3.488 E(g)-.37 E F0 .659 +(is the null string the signal speci\214ed by each)3.378 F F4(sigspec) +144.34 429.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 +-.1(ke).2 G 3.08(s. If).1 F F4(ar)3.41 E(g)-.37 E F0 .58 (is not present and)3.3 F F13.08 E F0(has)3.08 E 1.214 -(been supplied, then the trap commands associated with each)144 213.6 R -F2(sigspec)4.054 E F0 1.215(are displayed.)4.024 F 1.215(If no ar)6.215 -F(gu-)-.18 E .86(ments are supplied or if only)144 225.6 R F13.36 +(been supplied, then the trap commands associated with each)144 441.6 R +F4(sigspec)4.054 E F0 1.215(are displayed.)4.024 F 1.215(If no ar)6.215 +F(gu-)-.18 E .86(ments are supplied or if only)144 453.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 237.6 R F12.83 E F0 .33(option causes the shell \ +(signal. The)144 465.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 249.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 +4.311(bers. Each)144 477.6 R F4(sigspec)4.651 E F0 1.811 +(is either a signal name de\214ned in <)4.621 F F4(signal.h)A F0 1.81 (>, or a signal number)B 6.81(.S)-.55 G(ignal)-6.81 E -(names are case insensiti)144 261.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 279.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 -291.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 303.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 +(names are case insensiti)144 489.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.648(If a)144 507.6 R F4 +(sigspec)4.488 E F0(is)4.458 E F2(EXIT)4.148 E F0 1.648 +(\(0\) the command)3.898 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.649(xit from the shell.)-.15 F +1.649(If a)6.649 F F4(sigspec)4.489 E F0(is)4.459 E F2(DEB)144 519.6 Q +(UG)-.09 E F3(,)A F0 1.168(the command)3.418 F F4(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 F4 1.167(simple command)3.667 F F0(,)A F4(for)3.667 E F0 +(command,)3.667 E F4(case)3.667 E F0(com-)3.667 E(mand,)144 531.6 Q F4 +(select)2.646 E F0 .146(command, e)2.646 F -.15(ve)-.25 G .146 +(ry arithmetic).15 F F4(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 315.6 R F3 .146 +(cutes in a).15 F .146(shell function \(see)144 543.6 R F2 .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 327.6 Q F1(shopt)3.2 E F0 -.2(bu)3.2 G .7 +.145(option to)2.645 F(the)144 555.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 339.6 Q F2(ar) +-.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 .701(the com-)2.951 F(mand)144 567.6 Q F4(ar) 3.474 E(g)-.37 E F0 .644(is e)3.364 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 351.6 Q -.15(xe) --.15 G(cuting.).15 E .928(If a)144 369.6 R F2(sigspec)3.768 E F0(is) -3.738 E F3(ERR)3.429 E F4(,)A F0 .929(the command)3.179 F F2(ar)3.759 E +-.18 E F0 -.2(bu)3.143 G(iltins).2 E(\214nishes e)144 579.6 Q -.15(xe) +-.15 G(cuting.).15 E .928(If a)144 597.6 R F4(sigspec)3.768 E F0(is) +3.738 E F2(ERR)3.429 E F3(,)A F0 .929(the command)3.179 F F4(ar)3.759 E (g)-.37 E F0 .929(is e)3.649 F -.15(xe)-.15 G .929(cuted whene).15 F -.15(ve)-.25 G 3.429(ras).15 G .929(imple command has a non\255zero) --3.429 F -.15(ex)144 381.6 S 1.009(it status, subject to the follo).15 F -1.009(wing conditions.)-.25 F(The)6.009 E F3(ERR)3.509 E F0 1.009 +-3.429 F -.15(ex)144 609.6 S 1.009(it status, subject to the follo).15 F +1.009(wing conditions.)-.25 F(The)6.009 E F2(ERR)3.509 E F0 1.009 (trap is not e)3.259 F -.15(xe)-.15 G 1.008(cuted if the f).15 F 1.008 (ailed com-)-.1 F .324 -(mand is part of the command list immediately follo)144 393.6 R .324 +(mand is part of the command list immediately follo)144 621.6 R .324 (wing a)-.25 F F1(while)2.824 E F0(or)2.824 E F1(until)2.824 E F0 -.1 (ke)2.824 G(yw)-.05 E .324(ord, part of the test)-.1 F 1.129(in an)144 -405.6 R F2(if)3.639 E F0 1.129(statement, part of a command e)5.589 F +633.6 R F4(if)3.639 E F0 1.129(statement, part of a command e)5.589 F -.15(xe)-.15 G 1.129(cuted in a).15 F F1(&&)3.629 E F0(or)3.629 E/F5 10 /Symbol SF3.629 E F0 1.129(list, or if the command')3.629 F 3.628 -(sr)-.55 G(eturn)-3.628 E -.25(va)144 417.6 S(lue is being in).25 E -.15 +(sr)-.55 G(eturn)-3.628 E -.25(va)144 645.6 S(lue is being in).25 E -.15 (ve)-.4 G(rted via).15 E F1(!)2.5 E F0 5(.T)C (hese are the same conditions obe)-5 E(yed by the)-.15 E F1(err)2.5 E (exit)-.18 E F0(option.)2.5 E 1.095 (Signals ignored upon entry to the shell cannot be trapped or reset.)144 -435.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 447.6 R .662 +663.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 675.6 R .662 (alues in a subshell or subshell en)-.25 F .661(vironment when one is) --.4 F 2.5(created. The)144 459.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 +-.4 F 2.5(created. The)144 687.6 R(return status is f)2.5 E(alse if an) +-.1 E(y)-.15 E F4(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 -476.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 488.4 S .173 -(th no options, indicate ho).4 F 2.673(we)-.25 G(ach)-2.673 E F2(name) +704.4 Q F0([)2.5 E F1(\255aftpP)A F0(])A F4(name)2.5 E F0([)2.5 E F4 +(name)A F0(...])2.5 E -.4(Wi)144 716.4 S .173 +(th no options, indicate ho).4 F 2.673(we)-.25 G(ach)-2.673 E F4(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 500.4 Q F0 .843(option is used,)3.343 F F1(type)3.343 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 512.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 -(found, then nothing is printed, and an e)144 524.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 -(either returns the name of the disk \214le that w)144 536.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 548.4 R/F6 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 560.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 F6 .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 572.4 Q F12.945 E F0 .445(print the hashed v)2.945 F -.444(alue, not necessarily the \214le that appears \214rst in)-.25 F F3 --.666(PA)2.944 G(TH)-.189 E F4(.)A F0 .444(If the)4.944 F F12.944 -E F0(option)2.944 E .265(is used,)144 584.4 R F1(type)2.765 E F0 .265 -(prints all of the places that contain an e)2.765 F -.15(xe)-.15 G .265 -(cutable named).15 F F2(name)2.765 E F0 5.265(.T).18 G .265 -(his includes aliases)-5.265 F .427(and functions, if and only if the) -144 596.4 R F12.926 E F0 .426(option is not also used.)2.926 F -.426(The table of hashed commands is not)5.426 F .548 -(consulted when using)144 608.4 R F13.048 E F0 5.548(.T)C(he) --5.548 E F13.048 E F0 .549 -(option suppresses shell function lookup, as with the)3.048 F F1 -(command)3.049 E F0 -.2(bu)144 620.4 S(iltin.).2 E F1(type)5 E F0 -(returns true if all of the ar)2.5 E(guments are found, f)-.18 E -(alse if an)-.1 E 2.5(ya)-.15 G(re not found.)-2.5 E F1(ulimit)108 637.2 -Q F0([)2.5 E F1(\255HST)A(abcde\214lmnpqrstuvx)-.92 E F0([)2.5 E F2 -(limit)A F0(]])A(Pro)144 649.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 -.943(that allo)144 661.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 673.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.709 F .425(be increased up to the v)144 685.2 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 -(is speci\214ed, both the soft and)2.926 F .139(hard limits are set.)144 -697.2 R .139(The v)5.139 F .139(alue of)-.25 F F2(limit)2.729 E F0 .139 -(can be a number in the unit speci\214ed for the resource or one)3.319 F -.741(of the special v)144 709.2 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 721.2 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(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(68)197.335 E 0 Cg EP +F1144 728.4 Q F0 .843(option is used,)3.343 F F1(type)3.343 E F0 +.843(prints a string which is one of)3.343 F F4(alias)3.343 E F0(,).27 E +F4 -.1(ke)3.343 G(ywor)-.2 E(d)-.37 E F0(,).77 E F4(function)3.343 E F0 +(,).24 E F4 -.2(bu)3.342 G(iltin).2 E F0 3.342(,o).24 G(r)-3.342 E F4 +(\214le)5.252 E F0(if)3.522 E(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 +E(68)198.165 E 0 Cg EP %%Page: 69 69 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E .498(resource is printed, unless the)144 84 R/F1 10/Times-Bold@0 -SF2.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 96 Q 2.5(alue. Other) --.25 F(options are interpreted as follo)2.5 E(ws:)-.25 E F1144 108 -Q F0(All current limits are reported)25.3 E F1144 120 Q F0 -(The maximum sock)24.74 E(et b)-.1 E(uf)-.2 E(fer size)-.25 E F1 -144 132 Q F0(The maximum size of core \214les created)25.86 E F1 -144 144 Q F0(The maximum size of a process')24.74 E 2.5(sd)-.55 G -(ata se)-2.5 E(gment)-.15 E F1144 156 Q F0 -(The maximum scheduling priority \("nice"\))25.86 E F1144 168 Q F0 -(The maximum size of \214les written by the shell and its children)26.97 -E F1144 180 Q F0(The maximum number of pending signals)27.52 E F1 -144 192 Q F0(The maximum size that may be lock)27.52 E -(ed into memory)-.1 E F1144 204 Q F0 +-.35 E/F1 10/Times-Italic@0 SF(name)144.36 84 Q F0 .086 +(is an alias, shell reserv)2.766 F .086(ed w)-.15 F .086 +(ord, function, b)-.1 F .087(uiltin, or disk \214le, respecti)-.2 F -.15 +(ve)-.25 G(ly).15 E 5.087(.I)-.65 G 2.587(ft)-5.087 G(he)-2.587 E F1 +(name)2.947 E F0 .087(is not)2.767 F .119 +(found, then nothing is printed, and an e)144 96 R .118(xit status of f) +-.15 F .118(alse is returned.)-.1 F .118(If the)5.118 F/F2 10 +/Times-Bold@0 SF2.618 E F0 .118(option is used,)2.618 F F2(type) +2.618 E F0 .855(either returns the name of the disk \214le that w)144 +108 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 .641 +(mand name, or nothing if)144 120 R/F3 10/Courier@0 SF .641 +(type -t name)3.141 F F0 -.1(wo)3.141 G .641(uld not return).1 F F1 +(\214le)3.14 E F0 5.64(.T).18 G(he)-5.64 E F23.14 E F0 .64 +(option forces a)3.14 F/F4 9/Times-Bold@0 SF -.666(PA)3.14 G(TH)-.189 E +F0 .112(search for each)144 132 R F1(name)2.612 E F0 2.612(,e)C -.15(ve) +-2.862 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(fac)-5.113 G .113(ommand is hashed,)-2.613 F F22.613 E F0 +(and)144 144 Q F22.945 E F0 .445(print the hashed v)2.945 F .444 +(alue, not necessarily the \214le that appears \214rst in)-.25 F F4 +-.666(PA)2.944 G(TH)-.189 E/F5 9/Times-Roman@0 SF(.)A F0 .444(If the) +4.944 F F22.944 E F0(option)2.944 E .265(is used,)144 156 R F2 +(type)2.765 E F0 .265(prints all of the places that contain an e)2.765 F +-.15(xe)-.15 G .265(cutable named).15 F F1(name)2.765 E F0 5.265(.T).18 +G .265(his includes aliases)-5.265 F .427 +(and functions, if and only if the)144 168 R F22.926 E F0 .426 +(option is not also used.)2.926 F .426 +(The table of hashed commands is not)5.426 F .548(consulted when using) +144 180 R F23.048 E F0 5.548(.T)C(he)-5.548 E F23.048 E F0 +.549(option suppresses shell function lookup, as with the)3.048 F F2 +(command)3.049 E F0 -.2(bu)144 192 S(iltin.).2 E F2(type)5 E F0 +(returns true if all of the ar)2.5 E(guments are found, f)-.18 E +(alse if an)-.1 E 2.5(ya)-.15 G(re not found.)-2.5 E F2(ulimit)108 208.8 +Q F0([)2.5 E F2(\255HST)A(abcde\214lmnpqrstuvx)-.92 E F0([)2.5 E F1 +(limit)A F0(]])A(Pro)144 220.8 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 232.8 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 244.8 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 256.8 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 +268.8 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 280.8 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 292.8 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 304.8 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 316.8 Q 2.5 +(alue. Other)-.25 F(options are interpreted as follo)2.5 E(ws:)-.25 E F2 +144 328.8 Q F0(All current limits are reported)25.3 E F2144 +340.8 Q F0(The maximum sock)24.74 E(et b)-.1 E(uf)-.2 E(fer size)-.25 E +F2144 352.8 Q F0(The maximum size of core \214les created)25.86 E +F2144 364.8 Q F0(The maximum size of a process')24.74 E 2.5(sd) +-.55 G(ata se)-2.5 E(gment)-.15 E F2144 376.8 Q F0 +(The maximum scheduling priority \("nice"\))25.86 E F2144 388.8 Q +F0(The maximum size of \214les written by the shell and its children) +26.97 E F2144 400.8 Q F0(The maximum number of pending signals) +27.52 E F2144 412.8 Q F0(The maximum size that may be lock)27.52 E +(ed into memory)-.1 E F2144 424.8 Q F0 (The maximum resident set size \(man)21.97 E 2.5(ys)-.15 G -(ystems do not honor this limit\))-2.5 E F1144 216 Q F0 .791(The \ -maximum number of open \214le descriptors \(most systems do not allo) +(ystems do not honor this limit\))-2.5 E F2144 436.8 Q F0 .791(Th\ +e maximum number of open \214le descriptors \(most systems do not allo) 24.74 F 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F(be set\))180 -228 Q F1144 240 Q F0 -(The pipe size in 512-byte blocks \(this may not be set\))24.74 E F1 -144 252 Q F0(The maximum number of bytes in POSIX message queues) -24.74 E F1144 264 Q F0(The maximum real-time scheduling priority) -25.86 E F1144 276 Q F0(The maximum stack size)26.41 E F1144 -288 Q F0(The maximum amount of cpu time in seconds)26.97 E F1144 -300 Q F0(The maximum number of processes a)24.74 E -.25(va)-.2 G -(ilable to a single user).25 E F1144 312 Q F0 .47 +448.8 Q F2144 460.8 Q F0 +(The pipe size in 512-byte blocks \(this may not be set\))24.74 E F2 +144 472.8 Q F0 +(The maximum number of bytes in POSIX message queues)24.74 E F2144 +484.8 Q F0(The maximum real-time scheduling priority)25.86 E F2144 +496.8 Q F0(The maximum stack size)26.41 E F2144 508.8 Q F0 +(The maximum amount of cpu time in seconds)26.97 E F2144 520.8 Q +F0(The maximum number of processes a)24.74 E -.25(va)-.2 G +(ilable to a single user).25 E F2144 532.8 Q F0 .47 (The maximum amount of virtual memory a)25.3 F -.25(va)-.2 G .47 -(ilable to the shell and, on some systems, to).25 F(its children)180 324 -Q F1144 336 Q F0(The maximum number of \214le locks)25.3 E F1 -144 348 Q F0(The maximum number of threads)23.63 E(If)144 364.8 Q -/F2 10/Times-Italic@0 SF(limit)2.933 E F0 .343(is gi)3.523 F -.15(ve) --.25 G .343(n, it is the ne).15 F 2.843(wv)-.25 G .343 -(alue of the speci\214ed resource \(the)-3.093 F F12.843 E F0 .343 +(ilable to the shell and, on some systems, to).25 F(its children)180 +544.8 Q F2144 556.8 Q F0(The maximum number of \214le locks)25.3 E +F2144 568.8 Q F0(The maximum number of threads)23.63 E(If)144 +585.6 Q F1(limit)2.933 E F0 .343(is gi)3.523 F -.15(ve)-.25 G .343 +(n, it is the ne).15 F 2.843(wv)-.25 G .343 +(alue of the speci\214ed resource \(the)-3.093 F F22.843 E F0 .343 (option is display only\).)2.843 F .343(If no)5.343 F .175(option is gi) -144 376.8 R -.15(ve)-.25 G .175(n, then).15 F F12.675 E F0 .175 +144 597.6 R -.15(ve)-.25 G .175(n, then).15 F F22.675 E F0 .175 (is assumed.)2.675 F -1.11(Va)5.175 G .175 -(lues are in 1024-byte increments, e)1.11 F .176(xcept for)-.15 F F1 -2.676 E F0 2.676(,w)C .176(hich is in)-2.676 F(seconds,)144 388.8 -Q F12.516 E F0 2.516(,w)C .016 -(hich is in units of 512-byte blocks, and)-2.516 F F12.516 E F0(,) -A F12.515 E F0(,)A F12.515 E F0 2.515(,a)C(nd)-2.515 E F1 +(lues are in 1024-byte increments, e)1.11 F .176(xcept for)-.15 F F2 +2.676 E F0 2.676(,w)C .176(hich is in)-2.676 F(seconds,)144 609.6 +Q F22.516 E F0 2.516(,w)C .016 +(hich is in units of 512-byte blocks, and)-2.516 F F22.516 E F0(,) +A F22.515 E F0(,)A F22.515 E F0 2.515(,a)C(nd)-2.515 E F2 2.515 E F0 2.515(,w)C .015(hich are unscaled v)-2.515 F(al-)-.25 E -3.787(ues. The)144 400.8 R 1.287(return status is 0 unless an in)3.787 F +3.787(ues. The)144 621.6 R 1.287(return status is 0 unless an in)3.787 F -.25(va)-.4 G 1.287(lid option or ar).25 F 1.287 (gument is supplied, or an error occurs)-.18 F(while setting a ne)144 -412.8 Q 2.5(wl)-.25 G(imit.)-2.5 E F1(umask)108 429.6 Q F0([)2.5 E F1 -A 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 441.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 +633.6 Q 2.5(wl)-.25 G(imit.)-2.5 E F2(umask)108 650.4 Q F0([)2.5 E F2 +A F0 2.5(][)C F2-2.5 E F0 2.5(][)C F1(mode)-2.5 E F0(])A .2 +(The user \214le-creation mask is set to)144 662.4 R F1(mode)2.7 E F0 +5.2(.I).18 G(f)-5.2 E F1(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 453.6 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 -465.6 Q F2(mode)3.263 E F0 .382(is omitted, the current v)3.063 F .382 -(alue of the mask is printed.)-.25 F(The)5.382 E F12.882 E F0 .382 +pted by)144 674.4 R F1 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 +686.4 Q F1(mode)3.263 E F0 .382(is omitted, the current v)3.063 F .382 +(alue of the mask is printed.)-.25 F(The)5.382 E F22.882 E F0 .382 (option causes the mask to be)2.882 F .547 -(printed in symbolic form; the def)144 477.6 R .547 +(printed in symbolic form; the def)144 698.4 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 489.6 Q F0 .552 +(he)-3.047 E F23.047 E F0 .547(option is supplied, and)3.047 F F1 +(mode)144.38 710.4 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 501.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 518.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 530.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 542.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 559.2 Q F0<5bad>2.5 E F1 -(fv)A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E -.15(Fo)144 571.2 S 3.107 -(re).15 G(ach)-3.107 E F2(name)3.107 E F0 3.107(,r).18 G(emo)-3.107 E -.907 -.15(ve t)-.15 H .607(he corresponding v).15 F .607 -(ariable or function.)-.25 F .606(If no options are supplied, or the) -5.607 F F1144 583.2 Q F0 .304(option is gi)2.804 F -.15(ve)-.25 G -.304(n, each).15 F F2(name)3.164 E F0 .305(refers to a shell v)2.985 F -2.805(ariable. Read-only)-.25 F -.25(va)2.805 G .305 -(riables may not be unset.).25 F(If)5.305 E F1144 595.2 Q F0 .46 -(is speci\214ed, each)2.96 F F2(name)3.32 E F0 .459 -(refers to a shell function, and the function de\214nition is remo)3.14 -F -.15(ve)-.15 G 2.959(d. Each).15 F .902(unset v)144 607.2 R .902 -(ariable or function is remo)-.25 F -.15(ve)-.15 G 3.402(df).15 G .902 -(rom the en)-3.402 F .903(vironment passed to subsequent commands.)-.4 F -(If)5.903 E(an)144 619.2 Q 6.916(yo)-.15 G(f)-6.916 E/F3 9/Times-Bold@0 -SF(COMP_W)6.916 E(ORDBREAKS)-.09 E/F4 9/Times-Roman@0 SF(,)A F3(RANDOM) -6.665 E F4(,)A F3(SECONDS)6.665 E F4(,)A F3(LINENO)6.665 E F4(,)A F3 -(HISTCMD)6.665 E F4(,)A F3(FUNCN)6.665 E(AME)-.18 E F4(,)A F3(GR)144 -631.2 Q(OUPS)-.27 E F4(,)A F0(or)2.522 E F3(DIRST)2.772 E -.495(AC)-.81 -G(K).495 E F0 .272(are unset, the)2.522 F 2.772(yl)-.15 G .272 -(ose their special properties, e)-2.772 F -.15(ve)-.25 G 2.772(ni).15 G -2.772(ft)-2.772 G(he)-2.772 E 2.773(ya)-.15 G .273(re subsequently) --2.773 F 2.5(reset. The)144 643.2 R -.15(ex)2.5 G -(it status is true unless a).15 E F2(name)2.86 E F0(is readonly)2.68 E -(.)-.65 E F1(wait)108 660 Q F0([)2.5 E F2 2.5(n.)C(..)-2.5 E F0(])A -.8 -(Wa)144 672 S .288 -(it for each speci\214ed process and return its termination status.).8 F -(Each)5.288 E F2(n)3.148 E F0 .287(may be a process ID or a)3.028 F .722 -(job speci\214cation; if a job spec is gi)144 684 R -.15(ve)-.25 G .722 -(n, all processes in that job').15 F 3.222(sp)-.55 G .722(ipeline are w) --3.222 F .722(aited for)-.1 F 5.722(.I)-.55 G(f)-5.722 E F2(n)3.583 E F0 -(is)3.463 E 1.266(not gi)144 696 R -.15(ve)-.25 G 1.266 -(n, all currently acti).15 F 1.566 -.15(ve c)-.25 H 1.265 -(hild processes are w).15 F 1.265(aited for)-.1 F 3.765(,a)-.4 G 1.265 -(nd the return status is zero.)-3.765 F(If)6.265 E F2(n)4.125 E F0 .456 -(speci\214es a non-e)144 708 R .457 -(xistent process or job, the return status is 127.)-.15 F .457 -(Otherwise, the return status is the)5.457 F -.15(ex)144 720 S -(it status of the last process or job w).15 E(aited for)-.1 E(.)-.55 E -(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E(69)197.335 E 0 Cg EP +F .551(The return status is 0 if the)5.551 F(mode w)144 722.4 Q +(as successfully changed or if no)-.1 E F1(mode)2.5 E F0(ar)2.5 E +(gument w)-.18 E(as supplied, and f)-.1 E(alse otherwise.)-.1 E +(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E(69)198.165 E 0 Cg EP %%Page: 70 70 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10.95/Times-Bold@0 SF(RESTRICTED SHELL)72 84 Q F0(If)108 96 Q -/F2 10/Times-Bold@0 SF(bash)4.397 E F0 1.897(is started with the name) -4.397 F F2(rbash)4.397 E F0 4.397(,o)C 4.397(rt)-4.397 G(he)-4.397 E F2 -4.397 E F0 1.896(option is supplied at in)4.397 F -.2(vo)-.4 G -1.896(cation, the shell becomes).2 F 3.445(restricted. A)108 108 R .945 +-.35 E/F1 10/Times-Bold@0 SF(unalias)108 84 Q F0<5bad>2.5 E F1(a)A F0 +2.5(][)C/F2 10/Times-Italic@0 SF(name)-2.5 E F0(...])2.5 E(Remo)144 96 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 108 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 124.8 Q F0<5bad>2.5 E F1 +(fv)A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E -.15(Fo)144 136.8 S 3.107 +(re).15 G(ach)-3.107 E F2(name)3.107 E F0 3.107(,r).18 G(emo)-3.107 E +.907 -.15(ve t)-.15 H .607(he corresponding v).15 F .607 +(ariable or function.)-.25 F .606(If no options are supplied, or the) +5.607 F F1144 148.8 Q F0 .304(option is gi)2.804 F -.15(ve)-.25 G +.304(n, each).15 F F2(name)3.164 E F0 .305(refers to a shell v)2.985 F +2.805(ariable. Read-only)-.25 F -.25(va)2.805 G .305 +(riables may not be unset.).25 F(If)5.305 E F1144 160.8 Q F0 .46 +(is speci\214ed, each)2.96 F F2(name)3.32 E F0 .459 +(refers to a shell function, and the function de\214nition is remo)3.14 +F -.15(ve)-.15 G 2.959(d. Each).15 F .902(unset v)144 172.8 R .902 +(ariable or function is remo)-.25 F -.15(ve)-.15 G 3.402(df).15 G .902 +(rom the en)-3.402 F .903(vironment passed to subsequent commands.)-.4 F +(If)5.903 E(an)144 184.8 Q 6.916(yo)-.15 G(f)-6.916 E/F3 9/Times-Bold@0 +SF(COMP_W)6.916 E(ORDBREAKS)-.09 E/F4 9/Times-Roman@0 SF(,)A F3(RANDOM) +6.665 E F4(,)A F3(SECONDS)6.665 E F4(,)A F3(LINENO)6.665 E F4(,)A F3 +(HISTCMD)6.665 E F4(,)A F3(FUNCN)6.665 E(AME)-.18 E F4(,)A F3(GR)144 +196.8 Q(OUPS)-.27 E F4(,)A F0(or)2.522 E F3(DIRST)2.772 E -.495(AC)-.81 +G(K).495 E F0 .272(are unset, the)2.522 F 2.772(yl)-.15 G .272 +(ose their special properties, e)-2.772 F -.15(ve)-.25 G 2.772(ni).15 G +2.772(ft)-2.772 G(he)-2.772 E 2.773(ya)-.15 G .273(re subsequently) +-2.773 F 2.5(reset. The)144 208.8 R -.15(ex)2.5 G +(it status is true unless a).15 E F2(name)2.86 E F0(is readonly)2.68 E +(.)-.65 E F1(wait)108 225.6 Q F0([)2.5 E F2 2.5(n.)C(..)-2.5 E F0(])A +-.8(Wa)144 237.6 S .288 +(it for each speci\214ed process and return its termination status.).8 F +(Each)5.288 E F2(n)3.148 E F0 .287(may be a process ID or a)3.028 F .722 +(job speci\214cation; if a job spec is gi)144 249.6 R -.15(ve)-.25 G +.722(n, all processes in that job').15 F 3.222(sp)-.55 G .722 +(ipeline are w)-3.222 F .722(aited for)-.1 F 5.722(.I)-.55 G(f)-5.722 E +F2(n)3.583 E F0(is)3.463 E 1.266(not gi)144 261.6 R -.15(ve)-.25 G 1.266 +(n, all currently acti).15 F 1.566 -.15(ve c)-.25 H 1.265 +(hild processes are w).15 F 1.265(aited for)-.1 F 3.765(,a)-.4 G 1.265 +(nd the return status is zero.)-3.765 F(If)6.265 E F2(n)4.125 E F0 .456 +(speci\214es a non-e)144 273.6 R .457 +(xistent process or job, the return status is 127.)-.15 F .457 +(Otherwise, the return status is the)5.457 F -.15(ex)144 285.6 S +(it status of the last process or job w).15 E(aited for)-.1 E(.)-.55 E +/F5 10.95/Times-Bold@0 SF(RESTRICTED SHELL)72 302.4 Q F0(If)108 314.4 Q +F1(bash)4.397 E F0 1.897(is started with the name)4.397 F F1(rbash)4.397 +E F0 4.397(,o)C 4.397(rt)-4.397 G(he)-4.397 E F14.397 E F0 1.896 +(option is supplied at in)4.397 F -.2(vo)-.4 G 1.896 +(cation, the shell becomes).2 F 3.445(restricted. A)108 326.4 R .945 (restricted shell is used to set up an en)3.445 F .946 (vironment more controlled than the standard shell.)-.4 F(It)5.946 E -(beha)108 120 Q -.15(ve)-.2 G 2.5(si).15 G(dentically to)-2.5 E F2(bash) -2.5 E F0(with the e)2.5 E(xception that the follo)-.15 E +(beha)108 338.4 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 32.5<8363>108 -136.8 S(hanging directories with)-32.5 E F2(cd)2.5 E F0 32.5<8373>108 -153.6 S(etting or unsetting the v)-32.5 E(alues of)-.25 E/F3 9 -/Times-Bold@0 SF(SHELL)2.5 E/F4 9/Times-Roman@0 SF(,)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 32.5<8373>108 170.4 S -(pecifying command names containing)-32.5 E F2(/)2.5 E F0 32.5<8373>108 -187.2 S(pecifying a \214le name containing a)-32.5 E F2(/)2.5 E F0 -(as an ar)2.5 E(gument to the)-.18 E F2(.)2.5 E F0 -.2(bu)5 G -(iltin command).2 E 32.5<8353>108 204 S .351 +355.2 S(hanging directories with)-32.5 E F1(cd)2.5 E F0 32.5<8373>108 +372 S(etting or unsetting the v)-32.5 E(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 32.5<8373>108 388.8 S +(pecifying command names containing)-32.5 E F1(/)2.5 E F0 32.5<8373>108 +405.6 S(pecifying a \214le name containing a)-32.5 E 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 32.5<8353>108 422.4 S .351 (pecifying a \214lename containing a slash as an ar)-32.5 F .351 -(gument to the)-.18 F F22.851 E F0 .351(option to the)2.851 F F2 -(hash)2.851 E F0 -.2(bu)2.851 G .351(iltin com-).2 F(mand)144 216 Q 32.5 -<8369>108 232.8 S(mporting function de\214nitions from the shell en) --32.5 E(vironment at startup)-.4 E 32.5<8370>108 249.6 S(arsing the v) +(gument to the)-.18 F F12.851 E F0 .351(option to the)2.851 F F1 +(hash)2.851 E F0 -.2(bu)2.851 G .351(iltin com-).2 F(mand)144 434.4 Q +32.5<8369>108 451.2 S(mporting function de\214nitions from the shell en) +-32.5 E(vironment at startup)-.4 E 32.5<8370>108 468 S(arsing the v) -32.5 E(alue of)-.25 E F3(SHELLOPTS)2.5 E F0(from the shell en)2.25 E -(vironment at startup)-.4 E 32.5<8372>108 266.4 S(edirecting output usi\ +(vironment at startup)-.4 E 32.5<8372>108 484.8 S(edirecting output usi\ ng the >, >|, <>, >&, &>, and >> redirection operators)-32.5 E 32.5 -<8375>108 283.2 S(sing the)-32.5 E F2(exec)2.5 E F0 -.2(bu)2.5 G +<8375>108 501.6 S(sing the)-32.5 E F1(exec)2.5 E F0 -.2(bu)2.5 G (iltin command to replace the shell with another command).2 E 32.5<8361> -108 300 S(dding or deleting b)-32.5 E(uiltin commands with the)-.2 E F2 -2.5 E F0(and)2.5 E F22.5 E F0(options to the)2.5 E F2 -(enable)2.5 E F0 -.2(bu)2.5 G(iltin command).2 E 32.5<8355>108 316.8 S -(sing the)-32.5 E F2(enable)2.5 E F0 -.2(bu)2.5 G +108 518.4 S(dding or deleting b)-32.5 E(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 32.5<8355>108 535.2 S +(sing the)-32.5 E F1(enable)2.5 E F0 -.2(bu)2.5 G (iltin command to enable disabled shell b).2 E(uiltins)-.2 E 32.5<8373> -108 333.6 S(pecifying the)-32.5 E F22.5 E F0(option to the)2.5 E -F2(command)2.5 E F0 -.2(bu)2.5 G(iltin command).2 E 32.5<8374>108 350.4 -S(urning of)-32.5 E 2.5(fr)-.25 G(estricted mode with)-2.5 E F2(set +r) -2.5 E F0(or)2.5 E F2(set +o r)2.5 E(estricted)-.18 E F0(.)A -(These restrictions are enforced after an)108 367.2 Q 2.5(ys)-.15 G +108 552 S(pecifying the)-32.5 E 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 32.5<8374>108 568.8 S +(urning of)-32.5 E 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 585.6 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 384 R -.15 +(When a command that is found to be a shell script is e)108 602.4 R -.15 (xe)-.15 G 1.567(cuted \(see).15 F F3 1.567(COMMAND EXECUTION)4.067 F F0 -(abo)3.817 E -.15(ve)-.15 G(\),).15 E F2(rbash)108 396 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 F1(SEE ALSO)72 -412.8 Q/F5 10/Times-Italic@0 SF(Bash Refer)108 424.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 F5 -(The Gnu Readline Libr)108 436.8 Q(ary)-.15 E F0 2.5(,B)C(rian F)-2.5 E -(ox and Chet Rame)-.15 E(y)-.15 E F5(The Gnu History Libr)108 448.8 Q -(ary)-.15 E F0 2.5(,B)C(rian F)-2.5 E(ox and Chet Rame)-.15 E(y)-.15 E -F5 -.8(Po)108 460.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 F5(sh)108 472.8 Q F0(\(1\),)A F5(ksh)2.5 E -F0(\(1\),)A F5(csh)2.5 E F0(\(1\))A F5(emacs)108 484.8 Q F0(\(1\),)A F5 -(vi)2.5 E F0(\(1\))A F5 -.37(re)108 496.8 S(adline).37 E F0(\(3\))A F1 -(FILES)72 513.6 Q F5(/bin/bash)109.666 525.6 Q F0(The)144 537.6 Q F2 -(bash)2.5 E F0 -.15(exe)2.5 G(cutable).15 E F5(/etc/pr)109.666 549.6 Q -(o\214le)-.45 E F0(The systemwide initialization \214le, e)144 561.6 Q --.15(xe)-.15 G(cuted for login shells).15 E F5(~/.bash_pr)109.666 573.6 -Q(o\214le)-.45 E F0(The personal initialization \214le, e)144 585.6 Q --.15(xe)-.15 G(cuted for login shells).15 E F5(~/.bashr)109.666 597.6 Q -(c)-.37 E F0(The indi)144 609.6 Q(vidual per)-.25 E(-interacti)-.2 E --.15(ve)-.25 G(-shell startup \214le).15 E F5(~/.bash_lo)109.666 621.6 Q -(gout)-.1 E F0(The indi)144 633.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 F5(~/.inputr)109.666 645.6 -Q(c)-.37 E F0(Indi)144 657.6 Q(vidual)-.25 E F5 -.37(re)2.5 G(adline).37 -E F0(initialization \214le)2.5 E F1 -.548(AU)72 674.4 S(THORS).548 E F0 -(Brian F)108 686.4 Q(ox, Free Softw)-.15 E(are F)-.1 E(oundation)-.15 E -(bfox@gnu.or)108 698.4 Q(g)-.18 E(Chet Rame)108 715.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 727.2 Q(y@case.edu)-.15 E(GNU Bash-4.1) -72 768 Q(2010 June 12)147.345 E(70)197.335 E 0 Cg EP +(abo)3.817 E -.15(ve)-.15 G(\),).15 E F1(rbash)108 614.4 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 +631.2 Q F2(Bash Refer)108 643.2 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 +655.2 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 667.2 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 679.2 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 F2(sh)108 691.2 +Q F0(\(1\),)A F2(ksh)2.5 E F0(\(1\),)A F2(csh)2.5 E F0(\(1\))A F2(emacs) +108 703.2 Q F0(\(1\),)A F2(vi)2.5 E F0(\(1\))A(GNU Bash-4.2)72 768 Q +(2010 July 21)148.175 E(70)198.165 E 0 Cg EP %%Page: 71 71 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\)) --.35 E/F1 10.95/Times-Bold@0 SF -.11(BU)72 84 S 2.738(GR).11 G(EPOR) --2.738 E(TS)-.438 E F0 .568(If you \214nd a b)108 96 R .568(ug in)-.2 F -/F2 10/Times-Bold@0 SF(bash,)3.068 E F0 .568(you should report it.)3.068 -F .568(But \214rst, you should mak)5.568 F 3.068(es)-.1 G .568 -(ure that it really is a b)-3.068 F .567(ug, and)-.2 F 5.625 -(that it appears in the latest v)108 108 R 5.625(ersion of)-.15 F F2 -(bash)8.125 E F0 10.625(.T)C 5.625(he latest v)-10.625 F 5.626 +-.35 E/F1 10/Times-Italic@0 SF -.37(re)108 84 S(adline).37 E F0(\(3\))A +/F2 10.95/Times-Bold@0 SF(FILES)72 100.8 Q F1(/bin/bash)109.666 112.8 Q +F0(The)144 124.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 136.8 Q(o\214le)-.45 E F0 +(The systemwide initialization \214le, e)144 148.8 Q -.15(xe)-.15 G +(cuted for login shells).15 E F1(~/.bash_pr)109.666 160.8 Q(o\214le)-.45 +E F0(The personal initialization \214le, e)144 172.8 Q -.15(xe)-.15 G +(cuted for login shells).15 E F1(~/.bashr)109.666 184.8 Q(c)-.37 E F0 +(The indi)144 196.8 Q(vidual per)-.25 E(-interacti)-.2 E -.15(ve)-.25 G +(-shell startup \214le).15 E F1(~/.bash_lo)109.666 208.8 Q(gout)-.1 E F0 +(The indi)144 220.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 232.8 Q(c)-.37 E F0(Indi)144 244.8 Q(vidual)-.25 E F1 -.37(re) +2.5 G(adline).37 E F0(initialization \214le)2.5 E F2 -.548(AU)72 261.6 S +(THORS).548 E F0(Brian F)108 273.6 Q(ox, Free Softw)-.15 E(are F)-.1 E +(oundation)-.15 E(bfox@gnu.or)108 285.6 Q(g)-.18 E(Chet Rame)108 302.4 Q +1.3 -.65(y, C)-.15 H(ase W).65 E(estern Reserv)-.8 E 2.5(eU)-.15 G(ni) +-2.5 E -.15(ve)-.25 G(rsity).15 E(chet.rame)108 314.4 Q(y@case.edu)-.15 +E F2 -.11(BU)72 331.2 S 2.738(GR).11 G(EPOR)-2.738 E(TS)-.438 E F0 .568 +(If you \214nd a b)108 343.2 R .568(ug in)-.2 F F3(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 .567(ug, and)-.2 +F 5.625(that it appears in the latest v)108 355.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.626 (ersion is al)-.15 F -.1(wa)-.1 G 5.626(ys a).1 F -.25(va)-.2 G 5.626 -(ilable from).25 F/F3 10/Times-Italic@0 SF(ftp://ftp.gnu.or)108 120 Q -(g/pub/gnu/bash/)-.37 E F0(.)A .411(Once you ha)108 136.8 R .711 -.15 -(ve d)-.2 H .411(etermined that a b).15 F .411(ug actually e)-.2 F .411 -(xists, use the)-.15 F F3(bashb)3.18 E(ug)-.2 E F0 .41 -(command to submit a b)3.13 F .41(ug report.)-.2 F(If)5.41 E .594 -(you ha)108 148.8 R .894 -.15(ve a \214)-.2 H .595 -(x, you are encouraged to mail that as well!).15 F .595 +(ilable from).25 F F1(ftp://ftp.gnu.or)108 367.2 Q(g/pub/gnu/bash/)-.37 +E F0(.)A .411(Once you ha)108 384 R .711 -.15(ve d)-.2 H .411 +(etermined that a b).15 F .411(ug actually e)-.2 F .411(xists, use the) +-.15 F F1(bashb)3.18 E(ug)-.2 E F0 .41(command to submit a b)3.13 F .41 +(ug report.)-.2 F(If)5.41 E .594(you ha)108 396 R .894 -.15(ve a \214) +-.2 H .595(x, you are encouraged to mail that as well!).15 F .595 (Suggestions and `philosophical' b)5.595 F .595(ug reports may)-.2 F -(be mailed to)108 160.8 Q F3 -.2(bu)2.5 G(g-bash@gnu.or).2 E(g)-.37 E F0 -(or posted to the Usenet ne)2.5 E(wsgroup)-.25 E F2(gnu.bash.b)2.5 E(ug) --.2 E F0(.)A(ALL b)108 177.6 Q(ug reports should include:)-.2 E(The v) -108 194.4 Q(ersion number of)-.15 E F2(bash)2.5 E F0(The hardw)108 206.4 -Q(are and operating system)-.1 E(The compiler used to compile)108 218.4 -Q 2.5(Ad)108 230.4 S(escription of the b)-2.5 E(ug beha)-.2 E(viour)-.2 -E 2.5(As)108 242.4 S(hort script or `recipe' which e)-2.5 E -.15(xe)-.15 -G(rcises the b).15 E(ug)-.2 E F3(bashb)108.27 259.2 Q(ug)-.2 E F0 +(be mailed to)108 408 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 424.8 Q(ug reports should include:)-.2 E(The v) +108 441.6 Q(ersion number of)-.15 E F3(bash)2.5 E F0(The hardw)108 453.6 +Q(are and operating system)-.1 E(The compiler used to compile)108 465.6 +Q 2.5(Ad)108 477.6 S(escription of the b)-2.5 E(ug beha)-.2 E(viour)-.2 +E 2.5(As)108 489.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 506.4 Q(ug)-.2 E F0 (inserts the \214rst three items automatically into the template it pro) 2.72 E(vides for \214ling a b)-.15 E(ug report.)-.2 E(Comments and b)108 -276 Q(ug reports concerning this manual page should be directed to)-.2 E -F3 -.15(ch)2.5 G(et@po.cwru.edu).15 E F0(.).25 E F1 -.11(BU)72 292.8 S -(GS).11 E F0(It')108 304.8 Q 2.5(st)-.55 G(oo big and too slo)-2.5 E --.65(w.)-.25 G 1.869(There are some subtle dif)108 321.6 R 1.869 -(ferences between)-.25 F F2(bash)4.369 E F0 1.869(and traditional v) -4.369 F 1.869(ersions of)-.15 F F2(sh)4.368 E F0 4.368(,m)C 1.868 -(ostly because of the)-4.368 F/F4 9/Times-Bold@0 SF(POSIX)108 333.6 Q F0 -(speci\214cation.)2.25 E(Aliases are confusing in some uses.)108 350.4 Q -(Shell b)108 367.2 Q +523.2 Q(ug reports concerning this manual page should be directed to)-.2 +E F1 -.15(ch)2.5 G(et@po.cwru.edu).15 E F0(.).25 E F2 -.11(BU)72 540 S +(GS).11 E F0(It')108 552 Q 2.5(st)-.55 G(oo big and too slo)-2.5 E -.65 +(w.)-.25 G 1.869(There are some subtle dif)108 568.8 R 1.869 +(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.368 E F0 4.368(,m)C 1.868 +(ostly because of the)-4.368 F/F4 9/Times-Bold@0 SF(POSIX)108 580.8 Q F0 +(speci\214cation.)2.25 E(Aliases are confusing in some uses.)108 597.6 Q +(Shell b)108 614.4 Q (uiltin commands and functions are not stoppable/restartable.)-.2 E 1.315(Compound commands and command sequences of the form `a ; b ; c' a\ -re not handled gracefully when)108 384 R .39 -(process suspension is attempted.)108 396 R .389 +re not handled gracefully when)108 631.2 R .39 +(process suspension is attempted.)108 643.2 R .389 (When a process is stopped, the shell immediately e)5.39 F -.15(xe)-.15 G .389(cutes the ne).15 F .389(xt com-)-.15 F .192 -(mand in the sequence.)108 408 R .192(It suf)5.192 F .192(\214ces to pl\ -ace the sequence of commands between parentheses to force it into a)-.25 -F(subshell, which may be stopped as a unit.)108 420 Q(Array v)108 436.8 -Q(ariables may not \(yet\) be e)-.25 E(xported.)-.15 E -(There may be only one acti)108 453.6 Q .3 -.15(ve c)-.25 H -(oprocess at a time.).15 E(GNU Bash-4.1)72 768 Q(2010 June 12)147.345 E -(71)197.335 E 0 Cg EP +(mand in the sequence.)108 655.2 R .192(It suf)5.192 F .192(\214ces to \ +place the sequence of commands between parentheses to force it into a) +-.25 F(subshell, which may be stopped as a unit.)108 667.2 Q(Array v)108 +684 Q(ariables may not \(yet\) be e)-.25 E(xported.)-.15 E +(There may be only one acti)108 700.8 Q .3 -.15(ve c)-.25 H +(oprocess at a time.).15 E(GNU Bash-4.2)72 768 Q(2010 July 21)148.175 E +(71)198.165 E 0 Cg EP %%Trailer end %%EOF diff --git a/doc/bashref.aux b/doc/bashref.aux index 428e2e0e..17b97c0d 100644 --- a/doc/bashref.aux +++ b/doc/bashref.aux @@ -77,16 +77,16 @@ @xrdef{Shell Parameters-snt}{Section@tie 3.4} @xrdef{Positional Parameters-title}{Positional Parameters} @xrdef{Positional Parameters-snt}{Section@tie 3.4.1} -@xrdef{Special Parameters-title}{Special Parameters} -@xrdef{Special Parameters-snt}{Section@tie 3.4.2} @xrdef{Shell Parameters-pg}{17} @xrdef{Positional Parameters-pg}{17} +@xrdef{Special Parameters-title}{Special Parameters} +@xrdef{Special Parameters-snt}{Section@tie 3.4.2} @xrdef{Shell Expansions-title}{Shell Expansions} @xrdef{Shell Expansions-snt}{Section@tie 3.5} @xrdef{Special Parameters-pg}{18} -@xrdef{Shell Expansions-pg}{18} @xrdef{Brace Expansion-title}{Brace Expansion} @xrdef{Brace Expansion-snt}{Section@tie 3.5.1} +@xrdef{Shell Expansions-pg}{19} @xrdef{Brace Expansion-pg}{19} @xrdef{Tilde Expansion-title}{Tilde Expansion} @xrdef{Tilde Expansion-snt}{Section@tie 3.5.2} @@ -100,17 +100,17 @@ @xrdef{Arithmetic Expansion-snt}{Section@tie 3.5.5} @xrdef{Process Substitution-title}{Process Substitution} @xrdef{Process Substitution-snt}{Section@tie 3.5.6} -@xrdef{Word Splitting-title}{Word Splitting} -@xrdef{Word Splitting-snt}{Section@tie 3.5.7} @xrdef{Command Substitution-pg}{24} @xrdef{Arithmetic Expansion-pg}{24} @xrdef{Process Substitution-pg}{24} +@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{Pattern Matching-title}{Pattern Matching} -@xrdef{Pattern Matching-snt}{Section@tie 3.5.8.1} @xrdef{Word Splitting-pg}{25} @xrdef{Filename Expansion-pg}{25} +@xrdef{Pattern Matching-title}{Pattern Matching} +@xrdef{Pattern Matching-snt}{Section@tie 3.5.8.1} @xrdef{Pattern Matching-pg}{26} @xrdef{Quote Removal-title}{Quote Removal} @xrdef{Quote Removal-snt}{Section@tie 3.5.9} @@ -123,9 +123,9 @@ @xrdef{Simple Command Expansion-title}{Simple Command Expansion} @xrdef{Simple Command Expansion-snt}{Section@tie 3.7.1} @xrdef{Executing Commands-pg}{30} -@xrdef{Simple Command Expansion-pg}{30} @xrdef{Command Search and Execution-title}{Command Search and Execution} @xrdef{Command Search and Execution-snt}{Section@tie 3.7.2} +@xrdef{Simple Command Expansion-pg}{31} @xrdef{Command Search and Execution-pg}{31} @xrdef{Command Execution Environment-title}{Command Execution Environment} @xrdef{Command Execution Environment-snt}{Section@tie 3.7.3} @@ -156,7 +156,7 @@ @xrdef{The Set Builtin-title}{The Set Builtin} @xrdef{The Set Builtin-snt}{Section@tie 4.3.1} @xrdef{Modifying Shell Behavior-pg}{53} -@xrdef{The Set Builtin-pg}{53} +@xrdef{The Set Builtin-pg}{54} @xrdef{The Shopt Builtin-title}{The Shopt Builtin} @xrdef{The Shopt Builtin-snt}{Section@tie 4.3.2} @xrdef{The Shopt Builtin-pg}{57} diff --git a/doc/bashref.bt b/doc/bashref.bt index db5c784f..174ece55 100644 --- a/doc/bashref.bt +++ b/doc/bashref.bt @@ -36,11 +36,11 @@ \entry{read}{50}{\code {read}} \entry{readarray}{51}{\code {readarray}} \entry{source}{51}{\code {source}} -\entry{type}{51}{\code {type}} +\entry{type}{52}{\code {type}} \entry{typeset}{52}{\code {typeset}} \entry{ulimit}{52}{\code {ulimit}} \entry{unalias}{53}{\code {unalias}} -\entry{set}{53}{\code {set}} +\entry{set}{54}{\code {set}} \entry{shopt}{57}{\code {shopt}} \entry{dirs}{83}{\code {dirs}} \entry{popd}{84}{\code {popd}} diff --git a/doc/bashref.bts b/doc/bashref.bts index d86d44fa..b92f26c9 100644 --- a/doc/bashref.bts +++ b/doc/bashref.bts @@ -60,7 +60,7 @@ \entry {\code {readonly}}{40} \entry {\code {return}}{40} \initial {S} -\entry {\code {set}}{53} +\entry {\code {set}}{54} \entry {\code {shift}}{41} \entry {\code {shopt}}{57} \entry {\code {source}}{51} @@ -69,7 +69,7 @@ \entry {\code {test}}{41} \entry {\code {times}}{42} \entry {\code {trap}}{42} -\entry {\code {type}}{51} +\entry {\code {type}}{52} \entry {\code {typeset}}{52} \initial {U} \entry {\code {ulimit}}{52} diff --git a/doc/bashref.cp b/doc/bashref.cp index a6873d91..b3e475f7 100644 --- a/doc/bashref.cp +++ b/doc/bashref.cp @@ -44,7 +44,7 @@ \entry{shell variable}{17}{shell variable} \entry{parameters, positional}{17}{parameters, positional} \entry{parameters, special}{18}{parameters, special} -\entry{expansion}{18}{expansion} +\entry{expansion}{19}{expansion} \entry{brace expansion}{19}{brace expansion} \entry{expansion, brace}{19}{expansion, brace} \entry{tilde expansion}{20}{tilde expansion} @@ -63,7 +63,7 @@ \entry{pattern matching}{26}{pattern matching} \entry{matching, pattern}{26}{matching, pattern} \entry{redirection}{27}{redirection} -\entry{command expansion}{30}{command expansion} +\entry{command expansion}{31}{command expansion} \entry{command execution}{31}{command execution} \entry{command search}{31}{command search} \entry{execution environment}{32}{execution environment} diff --git a/doc/bashref.cps b/doc/bashref.cps index 5f447090..3896b77e 100644 --- a/doc/bashref.cps +++ b/doc/bashref.cps @@ -14,7 +14,7 @@ \initial {C} \entry {command editing}{96} \entry {command execution}{31} -\entry {command expansion}{30} +\entry {command expansion}{31} \entry {command history}{123} \entry {command search}{31} \entry {command substitution}{24} @@ -41,7 +41,7 @@ \entry {event designators}{125} \entry {execution environment}{32} \entry {exit status}{3, 33} -\entry {expansion}{18} +\entry {expansion}{19} \entry {expansion, arithmetic}{24} \entry {expansion, brace}{19} \entry {expansion, filename}{25} diff --git a/doc/bashref.dvi b/doc/bashref.dvi index c91f91cb3fa1b681b0b0de5b5f0c16aa150cac43..623bc45c26605c4c04e972c201568150d8129b6d 100644 GIT binary patch delta 12068 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 diff --git a/doc/bashref.html b/doc/bashref.html index d2f2efd7..206af535 100644 --- a/doc/bashref.html +++ b/doc/bashref.html @@ -1,6 +1,6 @@ - + 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�eBSc7OfjY+VZl+{vSp-K)IAr_$q$v*9+Z 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


l4Z!+hb0|4pPT= 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%0DJ%1&_`EkczFIXIej9tbt!bqzCYn9tY%-F+ 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℞GB{!~`W|YHlyBOSxPA{a(Lj1g3b>2-i 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%0DmtC~Z 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 diff --git a/doc/bashref.ps b/doc/bashref.ps index 2672ec8a..beb50589 100644 --- a/doc/bashref.ps +++ b/doc/bashref.ps @@ -11,7 +11,7 @@ %DVIPSWebPage: (www.radicaleye.com) %DVIPSCommandLine: dvips -D 600 -t letter -o bashref.ps bashref.dvi %DVIPSParameters: dpi=600 -%DVIPSSource: TeX output 2010.06.29:1402 +%DVIPSSource: TeX output 2010.07.21:0854 %%BeginProcSet: tex.pro 0 0 %! /TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S @@ -4326,8 +4326,8 @@ letter %%Page: 1 1 TeXDict begin 1 0 bop 150 1318 a Fu(Bash)64 b(Reference)j(Man)-5 b(ual)p 150 1385 3600 34 v 2361 1481 a Ft(Reference)31 -b(Do)s(cumen)m(tation)i(for)d(Bash)2428 1589 y(Edition)h(4.1,)g(for)f -Fs(Bash)g Ft(V)-8 b(ersion)31 b(4.1.)3350 1697 y(June)e(2010)150 +b(Do)s(cumen)m(tation)i(for)d(Bash)2428 1589 y(Edition)h(4.2,)g(for)f +Fs(Bash)g Ft(V)-8 b(ersion)31 b(4.2.)3367 1697 y(July)f(2010)150 4935 y Fr(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 @@ -4335,11 +4335,11 @@ b(oundation)p 150 5141 3600 17 v eop end %%Page: 2 2 TeXDict begin 2 1 bop 150 2889 a Ft(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 2999 y(4.1,)c(12)f(June)e -(2010\).)150 3133 y(This)34 b(is)h(Edition)g(4.1,)i(last)e(up)s(dated)f -(12)h(June)f(2010,)k(of)d Fq(The)f(GNU)i(Bash)f(Reference)g(Man)m(ual)p -Ft(,)i(for)150 3243 y Fs(Bash)p Ft(,)29 b(V)-8 b(ersion)31 -b(4.1.)150 3377 y(Cop)m(yrigh)m(t)602 3374 y(c)577 3377 +(the)h(Bash)f(shell)h(\(v)m(ersion)150 2999 y(4.2,)c(21)f(July)f +(2010\).)150 3133 y(This)35 b(is)h(Edition)g(4.2,)j(last)d(up)s(dated)f +(21)i(July)e(2010,)k(of)d Fq(The)g(GNU)g(Bash)g(Reference)h(Man)m(ual)p +Ft(,)h(for)150 3243 y Fs(Bash)p Ft(,)29 b(V)-8 b(ersion)31 +b(4.2.)150 3377 y(Cop)m(yrigh)m(t)602 3374 y(c)577 3377 y Fp(\015)f Ft(1988{2010)35 b(F)-8 b(ree)31 b(Soft)m(w)m(are)h(F)-8 b(oundation,)31 b(Inc.)150 3512 y(P)m(ermission)h(is)h(gran)m(ted)g(to) f(mak)m(e)i(and)d(distribute)h(v)m(erbatim)h(copies)g(of)f(this)g(man)m @@ -4468,7 +4468,7 @@ f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)46 b Ft(18)275 4057 y(3.5)92 b(Shell)30 b(Expansions)17 b Fm(:)d(:)h(:)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(:)g(:)h(:)46 b Ft(18)399 4167 y(3.5.1)93 b(Brace)31 +f(:)g(:)h(:)46 b Ft(19)399 4167 y(3.5.1)93 b(Brace)31 b(Expansion)21 b Fm(:)15 b(:)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(:)50 b Ft(19)399 @@ -4517,7 +4517,7 @@ y(3.6.2)93 b(Redirecting)31 b(Output)26 b Fm(:)15 b(:)h(:)f(:)g(:)h(:)f g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)56 b Ft(28)399 302 y(3.6.3)93 b(App)s(ending)28 b(Redirected)k(Output)12 b Fm(:)h(:)j(:)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(:)41 b Ft(28)399 +h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)41 b Ft(29)399 412 y(3.6.4)93 b(Redirecting)31 b(Standard)e(Output)h(and)f(Standard)h (Error)d Fm(:)15 b(:)g(:)h(:)f(:)h(:)f(:)g(:)58 b Ft(29)399 521 y(3.6.5)93 b(App)s(ending)28 b(Standard)i(Output)f(and)h(Standard)f @@ -4529,7 +4529,7 @@ h(:)f(:)g(:)h(:)f(:)h(:)f(:)56 b Ft(29)399 741 y(3.6.7)93 b(Here)31 b(Strings)c Fm(:)16 b(:)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(:)g(:)h(:)f(:)58 -b Ft(29)399 850 y(3.6.8)93 b(Duplicating)32 b(File)f(Descriptors)16 +b Ft(30)399 850 y(3.6.8)93 b(Duplicating)32 b(File)f(Descriptors)16 b Fm(:)g(:)g(:)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(:)46 b Ft(30)399 960 y(3.6.9)93 b(Mo)m(ving)32 b(File)f(Descriptors)19 @@ -4543,7 +4543,7 @@ f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)h(:)f(:)g(:)h(:)f(:)h(:)f(:)g(:)h(:)f (:)h(:)f(:)g(:)h(:)f(:)h(:)46 b Ft(30)399 1289 y(3.7.1)93 b(Simple)30 b(Command)f(Expansion)23 b Fm(:)15 b(:)g(:)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(:)52 b Ft(30)399 1398 y(3.7.2)93 b(Command)29 +(:)g(:)h(:)f(:)h(:)52 b Ft(31)399 1398 y(3.7.2)93 b(Command)29 b(Searc)m(h)i(and)f(Execution)d Fm(:)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(:)56 b Ft(31)399 1508 y(3.7.3)93 b(Command)29 b(Execution)i(En)m(vironmen)m @@ -4580,7 +4580,7 @@ h(:)f(:)h(:)f(:)39 b Ft(53)399 2654 y(4.3.1)93 b(The)30 b(Set)g(Builtin)c Fm(:)16 b(:)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(:)g(:)h(:)55 b -Ft(53)399 2764 y(4.3.2)93 b(The)30 b(Shopt)f(Builtin)13 +Ft(54)399 2764 y(4.3.2)93 b(The)30 b(Shopt)f(Builtin)13 b Fm(:)j(:)g(:)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(:)g(:)43 b Ft(57)275 2873 y(4.4)92 b(Sp)s(ecial)30 @@ -5074,7 +5074,7 @@ b(P)m(arses)35 b(the)g(tok)m(ens)g(in)m(to)h(simple)e(and)g(comp)s (ound)f(commands)h(\(see)h(Section)h(3.2)f([Shell)g(Com-)330 4294 y(mands],)30 b(page)h(8\).)199 4441 y(4.)61 b(P)m(erforms)40 b(the)h(v)-5 b(arious)40 b(shell)h(expansions)f(\(see)h(Section)g(3.5)g -([Shell)g(Expansions],)h(page)f(18\),)330 4550 y(breaking)35 +([Shell)g(Expansions],)h(page)f(19\),)330 4550 y(breaking)35 b(the)g(expanded)g(tok)m(ens)h(in)m(to)g(lists)f(of)g(\014lenames)h (\(see)g(Section)f(3.5.8)i([Filename)g(Ex-)330 4660 y(pansion],)30 b(page)h(25\))h(and)e(commands)g(and)g(argumen)m(ts.)199 @@ -5138,7 +5138,7 @@ Ft(',)h(`)p Fs(`)p Ft(',)g(`)p Fs(\\)p Ft(',)g(and,)f(when)f(history)g y(The)25 b(c)m(haracters)h(`)p Fs($)p Ft(')g(and)f(`)p Fs(`)p Ft(')g(retain)h(their)f(sp)s(ecial)h(meaning)f(within)g(double)g (quotes)h(\(see)g(Section)g(3.5)150 3345 y([Shell)j(Expansions],)g -(page)h(18\).)41 b(The)28 b(bac)m(kslash)i(retains)f(its)h(sp)s(ecial)f +(page)h(19\).)41 b(The)28 b(bac)m(kslash)i(retains)f(its)h(sp)s(ecial)f (meaning)g(only)g(when)f(follo)m(w)m(ed)150 3454 y(b)m(y)41 b(one)f(of)h(the)g(follo)m(wing)h(c)m(haracters:)63 b(`)p Fs($)p Ft(',)43 b(`)p Fs(`)p Ft(',)h(`)p Fs(")p Ft(',)g(`)p @@ -5238,151 +5238,156 @@ b(Reference)g(Man)m(ual)150 299 y Fr(3.2)68 b(Shell)45 b(Commands)150 458 y Ft(A)d(simple)g(shell)g(command)f(suc)m(h)h(as)g Fs(echo)29 b(a)h(b)g(c)41 b Ft(consists)i(of)f(the)f(command)h(itself)h (follo)m(w)m(ed)g(b)m(y)150 568 y(argumen)m(ts,)31 b(separated)g(b)m(y) -f(spaces.)275 702 y(More)h(complex)h(shell)f(commands)g(are)g(comp)s +f(spaces.)275 714 y(More)h(complex)h(shell)f(commands)g(are)g(comp)s (osed)g(of)g(simple)g(commands)g(arranged)g(together)h(in)150 -812 y(a)f(v)-5 b(ariet)m(y)32 b(of)f(w)m(a)m(ys:)41 b(in)31 +824 y(a)f(v)-5 b(ariet)m(y)32 b(of)f(w)m(a)m(ys:)41 b(in)31 b(a)g(pip)s(eline)f(in)g(whic)m(h)g(the)h(output)f(of)h(one)f(command)h -(b)s(ecomes)f(the)h(input)f(of)150 921 y(a)h(second,)f(in)h(a)f(lo)s +(b)s(ecomes)f(the)h(input)f(of)150 933 y(a)h(second,)f(in)h(a)f(lo)s (op)h(or)f(conditional)i(construct,)f(or)f(in)g(some)h(other)g -(grouping.)150 1120 y Fj(3.2.1)63 b(Simple)41 b(Commands)150 -1267 y Ft(A)29 b(simple)f(command)g(is)h(the)g(kind)e(of)i(command)f +(grouping.)150 1144 y Fj(3.2.1)63 b(Simple)41 b(Commands)150 +1291 y Ft(A)29 b(simple)f(command)g(is)h(the)g(kind)e(of)i(command)f (encoun)m(tered)h(most)g(often.)40 b(It's)29 b(just)f(a)h(sequence)g -(of)150 1376 y(w)m(ords)22 b(separated)i(b)m(y)e Fs(blank)p +(of)150 1401 y(w)m(ords)22 b(separated)i(b)m(y)e Fs(blank)p Ft(s,)i(terminated)f(b)m(y)g(one)g(of)g(the)g(shell's)g(con)m(trol)h -(op)s(erators)f(\(see)h(Chapter)f(2)150 1486 y([De\014nitions],)37 +(op)s(erators)f(\(see)h(Chapter)f(2)150 1510 y([De\014nitions],)37 b(page)e(3\).)54 b(The)35 b(\014rst)e(w)m(ord)i(generally)g(sp)s (eci\014es)g(a)g(command)f(to)h(b)s(e)f(executed,)j(with)150 -1595 y(the)31 b(rest)f(of)h(the)f(w)m(ords)g(b)s(eing)g(that)h -(command's)f(argumen)m(ts.)275 1730 y(The)h(return)h(status)g(\(see)i +1620 y(the)31 b(rest)f(of)h(the)f(w)m(ords)g(b)s(eing)g(that)h +(command's)f(argumen)m(ts.)275 1766 y(The)h(return)h(status)g(\(see)i (Section)f(3.7.5)h([Exit)f(Status],)h(page)f(33\))g(of)g(a)g(simple)f -(command)g(is)h(its)150 1839 y(exit)38 b(status)f(as)g(pro)m(vided)f(b) +(command)g(is)h(its)150 1876 y(exit)38 b(status)f(as)g(pro)m(vided)f(b) m(y)h(the)g Fl(posix)f Ft(1003.1)j Fs(waitpid)c Ft(function,)j(or)f -(128)p Fs(+)p Fq(n)g Ft(if)g(the)g(command)150 1949 y(w)m(as)31 -b(terminated)g(b)m(y)f(signal)h Fq(n)p Ft(.)150 2147 -y Fj(3.2.2)63 b(Pip)s(elines)150 2294 y Ft(A)35 b Fs(pipeline)e +(128)p Fs(+)p Fq(n)g Ft(if)g(the)g(command)150 1986 y(w)m(as)31 +b(terminated)g(b)m(y)f(signal)h Fq(n)p Ft(.)150 2197 +y Fj(3.2.2)63 b(Pip)s(elines)150 2343 y Ft(A)35 b Fs(pipeline)e Ft(is)j(a)f(sequence)h(of)f(simple)g(commands)g(separated)h(b)m(y)f -(one)g(of)h(the)f(con)m(trol)i(op)s(erators)150 2404 -y(`)p Fs(|)p Ft(')31 b(or)f(`)p Fs(|&)p Ft('.)275 2538 -y(The)f(format)i(for)f(a)h(pip)s(eline)f(is)390 2672 +(one)g(of)h(the)f(con)m(trol)i(op)s(erators)150 2453 +y(`)p Fs(|)p Ft(')31 b(or)f(`)p Fs(|&)p Ft('.)275 2599 +y(The)f(format)i(for)f(a)h(pip)s(eline)f(is)390 2746 y Fs([time)46 b([-p]])h([!])g Fi(command1)56 b Fs([)47 -b([|)g(or)h(|&])e Fi(command2)56 b Fs(...])150 2806 y +b([|)g(or)h(|&])e Fi(command2)56 b Fs(...])150 2892 y Ft(The)25 b(output)f(of)i(eac)m(h)g(command)f(in)f(the)i(pip)s(eline)e (is)i(connected)g(via)f(a)h(pip)s(e)e(to)i(the)f(input)f(of)h(the)h -(next)150 2916 y(command.)40 b(That)29 b(is,)h(eac)m(h)h(command)e +(next)150 3001 y(command.)40 b(That)29 b(is,)h(eac)m(h)h(command)e (reads)g(the)h(previous)f(command's)g(output.)40 b(This)29 -b(connection)150 3025 y(is)h(p)s(erformed)f(b)s(efore)h(an)m(y)h +b(connection)150 3111 y(is)h(p)s(erformed)f(b)s(efore)h(an)m(y)h (redirections)g(sp)s(eci\014ed)f(b)m(y)g(the)g(command.)275 -3160 y(If)j(`)p Fs(|&)p Ft(')h(is)h(used,)f(the)h(standard)e(error)h +3257 y(If)j(`)p Fs(|&)p Ft(')h(is)h(used,)f(the)h(standard)e(error)h (of)g Fq(command1)42 b Ft(is)34 b(connected)h(to)g Fq(command2)7 -b Ft('s)35 b(standard)150 3269 y(input)25 b(through)g(the)h(pip)s(e;)h +b Ft('s)35 b(standard)150 3367 y(input)25 b(through)g(the)h(pip)s(e;)h (it)f(is)g(shorthand)f(for)g Fs(2>&1)k(|)p Ft(.)39 b(This)25 -b(implicit)i(redirection)g(of)f(the)g(standard)150 3379 +b(implicit)i(redirection)g(of)f(the)g(standard)150 3477 y(error)k(is)g(p)s(erformed)f(after)i(an)m(y)g(redirections)g(sp)s -(eci\014ed)e(b)m(y)i(the)f(command.)275 3513 y(The)36 +(eci\014ed)e(b)m(y)i(the)f(command.)275 3623 y(The)36 b(reserv)m(ed)g(w)m(ord)g Fs(time)g Ft(causes)h(timing)g(statistics)h (to)f(b)s(e)f(prin)m(ted)g(for)g(the)h(pip)s(eline)f(once)h(it)150 -3622 y(\014nishes.)51 b(The)34 b(statistics)i(curren)m(tly)e(consist)h +3732 y(\014nishes.)51 b(The)34 b(statistics)i(curren)m(tly)e(consist)h (of)f(elapsed)h(\(w)m(all-clo)s(c)m(k\))i(time)e(and)f(user)f(and)h -(system)150 3732 y(time)i(consumed)f(b)m(y)g(the)h(command's)f -(execution.)57 b(The)35 b(`)p Fs(-p)p Ft(')h(option)f(c)m(hanges)i(the) -f(output)f(format)150 3842 y(to)i(that)f(sp)s(eci\014ed)f(b)m(y)h -Fl(posix)p Ft(.)57 b(The)35 b Fs(TIMEFORMAT)e Ft(v)-5 -b(ariable)37 b(ma)m(y)g(b)s(e)e(set)h(to)h(a)f(format)g(string)g(that) -150 3951 y(sp)s(eci\014es)29 b(ho)m(w)g(the)g(timing)g(information)h -(should)d(b)s(e)i(displa)m(y)m(ed.)41 b(See)29 b(Section)h(5.2)g([Bash) -f(V)-8 b(ariables],)150 4061 y(page)29 b(63,)h(for)e(a)g(description)h -(of)f(the)g(a)m(v)-5 b(ailable)31 b(formats.)40 b(The)28 -b(use)g(of)g Fs(time)f Ft(as)i(a)f(reserv)m(ed)h(w)m(ord)f(p)s(er-)150 -4170 y(mits)g(the)g(timing)g(of)g(shell)g(builtins,)g(shell)g -(functions,)g(and)f(pip)s(elines.)40 b(An)27 b(external)i -Fs(time)d Ft(command)150 4280 y(cannot)31 b(time)g(these)g(easily)-8 -b(.)275 4414 y(When)29 b(the)h(shell)h(is)f(in)f Fl(posix)g -Ft(mo)s(de)h(\(see)h(Section)f(6.11)i([Bash)e(POSIX)f(Mo)s(de],)i(page) -g(86\),)g Fs(time)150 4524 y Ft(ma)m(y)26 b(b)s(e)f(follo)m(w)m(ed)j(b) -m(y)d(a)h(newline.)39 b(In)25 b(this)h(case,)i(the)d(shell)h(displa)m -(ys)g(the)g(total)h(user)e(and)g(system)h(time)150 4633 -y(consumed)33 b(b)m(y)h(the)h(shell)f(and)f(its)i(c)m(hildren.)51 -b(The)34 b Fs(TIMEFORMAT)d Ft(v)-5 b(ariable)35 b(ma)m(y)g(b)s(e)e -(used)g(to)i(sp)s(ecify)150 4743 y(the)c(format)f(of)h(the)f(time)h -(information.)275 4877 y(If)24 b(the)h(pip)s(eline)g(is)g(not)g -(executed)h(async)m(hronously)f(\(see)h(Section)g(3.2.3)h([Lists],)g -(page)e(9\),)i(the)f(shell)150 4987 y(w)m(aits)31 b(for)f(all)i -(commands)e(in)g(the)g(pip)s(eline)g(to)h(complete.)275 -5121 y(Eac)m(h)25 b(command)g(in)g(a)g(pip)s(eline)g(is)g(executed)h -(in)f(its)g(o)m(wn)h(subshell)e(\(see)i(Section)g(3.7.3)h([Command)150 -5230 y(Execution)36 b(En)m(vironmen)m(t],)i(page)e(32\).)58 -b(The)36 b(exit)g(status)g(of)g(a)g(pip)s(eline)g(is)f(the)h(exit)h -(status)f(of)g(the)150 5340 y(last)27 b(command)f(in)f(the)i(pip)s -(eline,)f(unless)g(the)g Fs(pipefail)e Ft(option)i(is)g(enabled)g -(\(see)h(Section)g(4.3.1)h([The)p eop end +(system)150 3842 y(time)28 b(consumed)e(b)m(y)h(the)h(command's)f +(execution.)40 b(The)27 b(`)p Fs(-p)p Ft(')g(option)h(c)m(hanges)g(the) +f(output)g(format)g(to)150 3952 y(that)34 b(sp)s(eci\014ed)e(b)m(y)h +Fl(posix)p Ft(.)49 b(When)33 b(the)g(shell)g(is)h(in)e +Fl(posix)h Ft(mo)s(de)g(\(see)h(Section)g(6.11)g([Bash)g(POSIX)150 +4061 y(Mo)s(de],)40 b(page)f(86\),)i(it)d(do)s(es)f(not)h(recognize)i +Fs(time)c Ft(as)i(a)g(reserv)m(ed)g(w)m(ord)f(if)h(the)g(next)g(tok)m +(en)g(b)s(egins)150 4171 y(with)33 b(a)g(`)p Fs(-)p Ft('.)49 +b(The)33 b Fs(TIMEFORMAT)d Ft(v)-5 b(ariable)34 b(ma)m(y)g(b)s(e)f(set) +g(to)h(a)g(format)f(string)g(that)h(sp)s(eci\014es)f(ho)m(w)g(the)150 +4280 y(timing)38 b(information)g(should)e(b)s(e)h(displa)m(y)m(ed.)62 +b(See)38 b(Section)g(5.2)g([Bash)g(V)-8 b(ariables],)41 +b(page)d(63,)i(for)e(a)150 4390 y(description)27 b(of)g(the)h(a)m(v)-5 +b(ailable)29 b(formats.)40 b(The)26 b(use)h(of)g Fs(time)f +Ft(as)i(a)f(reserv)m(ed)g(w)m(ord)g(p)s(ermits)f(the)h(timing)150 +4499 y(of)38 b(shell)g(builtins,)i(shell)e(functions,)i(and)d(pip)s +(elines.)63 b(An)38 b(external)h Fs(time)e Ft(command)h(cannot)g(time) +150 4609 y(these)31 b(easily)-8 b(.)275 4755 y(When)29 +b(the)h(shell)h(is)f(in)f Fl(posix)g Ft(mo)s(de)h(\(see)h(Section)f +(6.11)i([Bash)e(POSIX)f(Mo)s(de],)i(page)g(86\),)g Fs(time)150 +4865 y Ft(ma)m(y)26 b(b)s(e)f(follo)m(w)m(ed)j(b)m(y)d(a)h(newline.)39 +b(In)25 b(this)h(case,)i(the)d(shell)h(displa)m(ys)g(the)g(total)h +(user)e(and)g(system)h(time)150 4975 y(consumed)33 b(b)m(y)h(the)h +(shell)f(and)f(its)i(c)m(hildren.)51 b(The)34 b Fs(TIMEFORMAT)d +Ft(v)-5 b(ariable)35 b(ma)m(y)g(b)s(e)e(used)g(to)i(sp)s(ecify)150 +5084 y(the)c(format)f(of)h(the)f(time)h(information.)275 +5230 y(If)24 b(the)h(pip)s(eline)g(is)g(not)g(executed)h(async)m +(hronously)f(\(see)h(Section)g(3.2.3)h([Lists],)g(page)e(9\),)i(the)f +(shell)150 5340 y(w)m(aits)31 b(for)f(all)i(commands)e(in)g(the)g(pip)s +(eline)g(to)h(complete.)p eop end %%Page: 9 15 TeXDict begin 9 14 bop 150 -116 a Ft(Chapter)30 b(3:)41 -b(Basic)32 b(Shell)e(F)-8 b(eatures)2292 b(9)150 299 -y(Set)34 b(Builtin],)j(page)e(53\).)53 b(If)34 b Fs(pipefail)e -Ft(is)i(enabled,)h(the)g(pip)s(eline's)f(return)f(status)h(is)h(the)f -(v)-5 b(alue)35 b(of)150 408 y(the)d(last)h(\(righ)m(tmost\))h(command) -e(to)h(exit)g(with)e(a)i(non-zero)f(status,)h(or)f(zero)h(if)f(all)h -(commands)f(exit)150 518 y(successfully)-8 b(.)67 b(If)38 -b(the)h(reserv)m(ed)g(w)m(ord)g(`)p Fs(!)p Ft(')g(precedes)g(the)g(pip) -s(eline,)h(the)g(exit)f(status)g(is)g(the)g(logical)150 -628 y(negation)h(of)f(the)f(exit)i(status)f(as)f(describ)s(ed)g(ab)s(o) -m(v)m(e.)66 b(The)38 b(shell)h(w)m(aits)h(for)e(all)h(commands)g(in)f -(the)150 737 y(pip)s(eline)30 b(to)h(terminate)g(b)s(efore)f(returning) -g(a)h(v)-5 b(alue.)150 964 y Fj(3.2.3)63 b(Lists)41 b(of)h(Commands)150 -1111 y Ft(A)37 b Fs(list)e Ft(is)i(a)g(sequence)g(of)g(one)g(or)f(more) +b(Basic)32 b(Shell)e(F)-8 b(eatures)2292 b(9)275 299 +y(Eac)m(h)25 b(command)g(in)g(a)g(pip)s(eline)g(is)g(executed)h(in)f +(its)g(o)m(wn)h(subshell)e(\(see)i(Section)g(3.7.3)h([Command)150 +408 y(Execution)36 b(En)m(vironmen)m(t],)i(page)e(32\).)58 +b(The)36 b(exit)g(status)g(of)g(a)g(pip)s(eline)g(is)f(the)h(exit)h +(status)f(of)g(the)150 518 y(last)27 b(command)f(in)f(the)i(pip)s +(eline,)f(unless)g(the)g Fs(pipefail)e Ft(option)i(is)g(enabled)g +(\(see)h(Section)g(4.3.1)h([The)150 628 y(Set)34 b(Builtin],)j(page)e +(54\).)53 b(If)34 b Fs(pipefail)e Ft(is)i(enabled,)h(the)g(pip)s +(eline's)f(return)f(status)h(is)h(the)f(v)-5 b(alue)35 +b(of)150 737 y(the)d(last)h(\(righ)m(tmost\))h(command)e(to)h(exit)g +(with)e(a)i(non-zero)f(status,)h(or)f(zero)h(if)f(all)h(commands)f +(exit)150 847 y(successfully)-8 b(.)67 b(If)38 b(the)h(reserv)m(ed)g(w) +m(ord)g(`)p Fs(!)p Ft(')g(precedes)g(the)g(pip)s(eline,)h(the)g(exit)f +(status)g(is)g(the)g(logical)150 956 y(negation)h(of)f(the)f(exit)i +(status)f(as)f(describ)s(ed)g(ab)s(o)m(v)m(e.)66 b(The)38 +b(shell)h(w)m(aits)h(for)e(all)h(commands)g(in)f(the)150 +1066 y(pip)s(eline)30 b(to)h(terminate)g(b)s(efore)f(returning)g(a)h(v) +-5 b(alue.)150 1271 y Fj(3.2.3)63 b(Lists)41 b(of)h(Commands)150 +1418 y Ft(A)37 b Fs(list)e Ft(is)i(a)g(sequence)g(of)g(one)g(or)f(more) h(pip)s(elines)f(separated)h(b)m(y)g(one)g(of)f(the)h(op)s(erators)g(`) -p Fs(;)p Ft(',)i(`)p Fs(&)p Ft(',)150 1220 y(`)p Fs(&&)p +p Fs(;)p Ft(',)i(`)p Fs(&)p Ft(',)150 1527 y(`)p Fs(&&)p Ft(',)31 b(or)f(`)p Fs(||)p Ft(',)g(and)g(optionally)i(terminated)f(b)m (y)f(one)h(of)f(`)p Fs(;)p Ft(',)h(`)p Fs(&)p Ft(',)g(or)f(a)h -Fs(newline)p Ft(.)275 1382 y(Of)23 b(these)h(list)g(op)s(erators,)i(`)p +Fs(newline)p Ft(.)275 1667 y(Of)23 b(these)h(list)g(op)s(erators,)i(`)p Fs(&&)p Ft(')d(and)g(`)p Fs(||)p Ft(')h(ha)m(v)m(e)h(equal)f (precedence,)i(follo)m(w)m(ed)f(b)m(y)f(`)p Fs(;)p Ft(')g(and)f(`)p -Fs(&)p Ft(',)i(whic)m(h)150 1492 y(ha)m(v)m(e)32 b(equal)e(precedence.) -275 1653 y(A)f(sequence)h(of)g(one)g(or)g(more)g(newlines)f(ma)m(y)h +Fs(&)p Ft(',)i(whic)m(h)150 1777 y(ha)m(v)m(e)32 b(equal)e(precedence.) +275 1916 y(A)f(sequence)h(of)g(one)g(or)g(more)g(newlines)f(ma)m(y)h (app)s(ear)f(in)h(a)g Fs(list)e Ft(to)j(delimit)f(commands,)g(equiv-) -150 1763 y(alen)m(t)i(to)f(a)g(semicolon.)275 1925 y(If)c(a)h(command)f +150 2026 y(alen)m(t)i(to)f(a)g(semicolon.)275 2166 y(If)c(a)h(command)f (is)h(terminated)g(b)m(y)g(the)g(con)m(trol)h(op)s(erator)f(`)p Fs(&)p Ft(',)h(the)e(shell)h(executes)h(the)f(command)150 -2034 y(async)m(hronously)g(in)g(a)h(subshell.)39 b(This)28 +2275 y(async)m(hronously)g(in)g(a)h(subshell.)39 b(This)28 b(is)g(kno)m(wn)g(as)h(executing)h(the)e(command)h(in)f(the)g -Fq(bac)m(kground)t Ft(.)150 2144 y(The)g(shell)h(do)s(es)f(not)h(w)m +Fq(bac)m(kground)t Ft(.)150 2385 y(The)g(shell)h(do)s(es)f(not)h(w)m (ait)g(for)f(the)h(command)f(to)i(\014nish,)d(and)h(the)h(return)e -(status)i(is)g(0)g(\(true\).)40 b(When)150 2253 y(job)g(con)m(trol)h +(status)i(is)g(0)g(\(true\).)40 b(When)150 2494 y(job)g(con)m(trol)h (is)g(not)f(activ)m(e)i(\(see)f(Chapter)f(7)h([Job)f(Con)m(trol],)j -(page)e(91\),)j(the)d(standard)e(input)g(for)150 2363 +(page)e(91\),)j(the)d(standard)e(input)g(for)150 2604 y(async)m(hronous)k(commands,)k(in)d(the)f(absence)i(of)f(an)m(y)g (explicit)h(redirections,)j(is)43 b(redirected)h(from)150 -2473 y Fs(/dev/null)p Ft(.)275 2634 y(Commands)19 b(separated)j(b)m(y)f +2714 y Fs(/dev/null)p Ft(.)275 2853 y(Commands)19 b(separated)j(b)m(y)f (a)g(`)p Fs(;)p Ft(')g(are)h(executed)g(sequen)m(tially;)k(the)21 -b(shell)g(w)m(aits)h(for)f(eac)m(h)h(command)150 2744 +b(shell)g(w)m(aits)h(for)f(eac)m(h)h(command)150 2963 y(to)31 b(terminate)h(in)e(turn.)39 b(The)30 b(return)f(status)i(is)f (the)h(exit)g(status)g(of)g(the)f(last)h(command)f(executed.)275 -2906 y Fl(and)g Ft(and)h Fl(or)g Ft(lists)h(are)g(sequences)f(of)h(one) +3103 y Fl(and)g Ft(and)h Fl(or)g Ft(lists)h(are)g(sequences)f(of)h(one) g(or)f(more)h(pip)s(elines)e(separated)i(b)m(y)g(the)f(con)m(trol)i(op) -s(er-)150 3015 y(ators)e(`)p Fs(&&)p Ft(')f(and)g(`)p +s(er-)150 3212 y(ators)e(`)p Fs(&&)p Ft(')f(and)g(`)p Fs(||)p Ft(',)h(resp)s(ectiv)m(ely)-8 b(.)42 b Fl(and)30 b Ft(and)f Fl(or)h Ft(lists)h(are)g(executed)g(with)f(left)h(asso)s -(ciativit)m(y)-8 b(.)275 3177 y(An)30 b Fl(and)f Ft(list)i(has)f(the)h -(form)390 3339 y Fi(command1)56 b Fs(&&)47 b Fi(command2)150 -3500 y Fq(command2)38 b Ft(is)30 b(executed)i(if,)e(and)g(only)g(if,)h +(ciativit)m(y)-8 b(.)275 3352 y(An)30 b Fl(and)f Ft(list)i(has)f(the)h +(form)390 3492 y Fi(command1)56 b Fs(&&)47 b Fi(command2)150 +3632 y Fq(command2)38 b Ft(is)30 b(executed)i(if,)e(and)g(only)g(if,)h Fq(command1)38 b Ft(returns)29 b(an)h(exit)h(status)g(of)g(zero.)275 -3662 y(An)f Fl(or)f Ft(list)i(has)f(the)h(form)390 3824 -y Fi(command1)56 b Fs(||)47 b Fi(command2)150 3986 y +3772 y(An)f Fl(or)f Ft(list)i(has)f(the)h(form)390 3911 +y Fi(command1)56 b Fs(||)47 b Fi(command2)150 4051 y Fq(command2)38 b Ft(is)30 b(executed)i(if,)e(and)g(only)g(if,)h Fq(command1)38 b Ft(returns)29 b(a)i(non-zero)g(exit)g(status.)275 -4147 y(The)h(return)g(status)i(of)f Fl(and)f Ft(and)h +4191 y(The)h(return)g(status)i(of)f Fl(and)f Ft(and)h Fl(or)f Ft(lists)i(is)f(the)g(exit)h(status)g(of)f(the)g(last)h -(command)f(executed)150 4257 y(in)d(the)h(list.)150 4483 -y Fj(3.2.4)63 b(Comp)s(ound)42 b(Commands)150 4630 y +(command)f(executed)150 4301 y(in)d(the)h(list.)150 4505 +y Fj(3.2.4)63 b(Comp)s(ound)42 b(Commands)150 4652 y Ft(Comp)s(ound)32 b(commands)j(are)g(the)g(shell)g(programming)f (constructs.)54 b(Eac)m(h)35 b(construct)g(b)s(egins)f(with)150 -4740 y(a)k(reserv)m(ed)f(w)m(ord)h(or)f(con)m(trol)i(op)s(erator)f(and) +4762 y(a)k(reserv)m(ed)f(w)m(ord)h(or)f(con)m(trol)i(op)s(erator)f(and) f(is)g(terminated)h(b)m(y)f(a)h(corresp)s(onding)f(reserv)m(ed)g(w)m -(ord)150 4849 y(or)44 b(op)s(erator.)81 b(An)m(y)44 b(redirections)g +(ord)150 4871 y(or)44 b(op)s(erator.)81 b(An)m(y)44 b(redirections)g (\(see)h(Section)g(3.6)g([Redirections],)j(page)d(27\))g(asso)s(ciated) -g(with)150 4959 y(a)g(comp)s(ound)e(command)i(apply)f(to)h(all)h +g(with)150 4981 y(a)g(comp)s(ound)e(command)i(apply)f(to)h(all)h (commands)e(within)g(that)h(comp)s(ound)e(command)i(unless)150 -5069 y(explicitly)32 b(o)m(v)m(erridden.)275 5230 y(Bash)45 +5091 y(explicitly)32 b(o)m(v)m(erridden.)275 5230 y(Bash)45 b(pro)m(vides)h(lo)s(oping)g(constructs,)j(conditional)e(commands,)j (and)44 b(mec)m(hanisms)i(to)g(group)150 5340 y(commands)30 b(and)g(execute)i(them)e(as)g(a)h(unit.)p eop end @@ -5448,8 +5453,8 @@ b(ev)-5 b(aluated.)41 b(If)28 b(an)m(y)h(expression)f(is)g(omitted,)i (it)f(b)s(eha)m(v)m(es)g(as)630 4019 y(if)i(it)h(ev)-5 b(aluates)32 b(to)g(1.)44 b(The)30 b(return)g(v)-5 b(alue)32 b(is)f(the)g(exit)h(status)g(of)f(the)g(last)h(command)f(in)630 -4128 y Fq(list)i Ft(that)e(is)f(executed,)i(or)e(false)h(if)g(an)m(y)f -(of)h(the)f(expressions)g(is)h(in)m(v)-5 b(alid.)275 +4128 y Fq(commands)j Ft(that)d(is)f(executed,)i(or)e(false)h(if)f(an)m +(y)h(of)g(the)f(expressions)g(is)h(in)m(v)-5 b(alid.)275 4287 y(The)26 b Fs(break)g Ft(and)h Fs(continue)e Ft(builtins)i(\(see)h (Section)h(4.1)f([Bourne)g(Shell)f(Builtins],)i(page)f(37\))g(ma)m(y) 150 4397 y(b)s(e)i(used)f(to)i(con)m(trol)h(lo)s(op)f(execution.)150 @@ -5770,1675 +5775,1680 @@ eop end TeXDict begin 15 20 bop 150 -116 a Ft(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(15)390 299 y Fs(cat)47 b(file)g(|)g(parallel)f(-k)h(echo)f(prefix_string)150 -431 y Ft(The)30 b(`)p Fs(-k)p Ft(')g(option)h(is)f(required)g(to)h -(preserv)m(e)g(the)f(lines')h(order.)275 563 y(Similarly)-8 +432 y Ft(The)30 b(`)p Fs(-k)p Ft(')g(option)h(is)f(required)g(to)h +(preserv)m(e)g(the)f(lines')h(order.)275 565 y(Similarly)-8 b(,)31 b(y)m(ou)g(can)f(app)s(end)f(a)i(sp)s(eci\014ed)e(string)i(to)g -(eac)m(h)g(line)g(in)f(a)h(text)g(\014le:)390 694 y Fs(cat)47 +(eac)m(h)g(line)g(in)f(a)h(text)g(\014le:)390 697 y Fs(cat)47 b(file)g(|)g(parallel)f(-k)h(echo)f({})i(append_string)275 -826 y Ft(Y)-8 b(ou)34 b(can)g(use)f(P)m(arallel)j(to)e(mo)m(v)m(e)h +830 y Ft(Y)-8 b(ou)34 b(can)g(use)f(P)m(arallel)j(to)e(mo)m(v)m(e)h (\014les)f(from)f(the)h(curren)m(t)f(directory)h(when)f(the)h(n)m(um)m -(b)s(er)e(of)i(\014les)150 936 y(is)c(to)s(o)i(large)f(to)g(pro)s(cess) -f(with)g(one)h Fs(mv)f Ft(in)m(v)m(o)s(cation:)390 1068 -y Fs(ls)47 b(|)h(parallel)d(mv)i({})h(destdir)275 1200 +(b)s(er)e(of)i(\014les)150 940 y(is)c(to)s(o)i(large)f(to)g(pro)s(cess) +f(with)g(one)h Fs(mv)f Ft(in)m(v)m(o)s(cation:)390 1073 +y Fs(ls)47 b(|)h(parallel)d(mv)i({})h(destdir)275 1205 y Ft(As)35 b(y)m(ou)h(can)f(see,)j(the)d Fs({})g Ft(is)g(replaced)h (with)f(eac)m(h)i(line)f(read)f(from)g(standard)f(input.)55 -b(This)35 b(will)150 1309 y(run)f(as)h(man)m(y)g Fs(mv)g +b(This)35 b(will)150 1315 y(run)f(as)h(man)m(y)g Fs(mv)g Ft(commands)g(as)g(there)h(are)f(\014les)g(in)g(the)h(curren)m(t)f (directory)-8 b(.)56 b(Y)-8 b(ou)35 b(can)h(em)m(ulate)h(a)150 -1419 y(parallel)31 b Fs(xargs)e Ft(b)m(y)i(adding)f(the)g(`)p -Fs(-X)p Ft(')g(option:)390 1551 y Fs(ls)47 b(|)h(parallel)d(-X)i(mv)h -({})f(destdir)275 1683 y Ft(GNU)31 b(P)m(arallel)i(can)e(replace)h +1425 y(parallel)31 b Fs(xargs)e Ft(b)m(y)i(adding)f(the)g(`)p +Fs(-X)p Ft(')g(option:)390 1557 y Fs(ls)47 b(|)h(parallel)d(-X)i(mv)h +({})f(destdir)275 1690 y Ft(GNU)31 b(P)m(arallel)i(can)e(replace)h (certain)g(common)g(idioms)f(that)g(op)s(erate)h(on)f(lines)g(read)g -(from)f(a)i(\014le)150 1792 y(\(in)e(this)h(case,)g(\014lenames\):)390 -1924 y Fs(for)47 b(x)g(in)h($\(cat)e(list\);)g(do)390 -2034 y(do-something1)e($x)j(config-$x)390 2143 y(do-something2)d(<)k -($x)390 2253 y(done)f(|)g(process-output)150 2385 y Ft(with)30 +(from)f(a)i(\014le)150 1800 y(\(in)e(this)h(case,)g(\014lenames\):)390 +1933 y Fs(for)47 b(x)g(in)h($\(cat)e(list\);)g(do)390 +2042 y(do-something1)e($x)j(config-$x)390 2152 y(do-something2)d(<)k +($x)390 2262 y(done)f(|)g(process-output)150 2394 y Ft(with)30 b(a)h(more)f(compact)i(syn)m(tax)f(reminiscen)m(t)g(of)g(lam)m(b)s -(das:)390 2517 y Fs(cat)47 b(list)g(|)g(parallel)f("do-something1)d({}) +(das:)390 2527 y Fs(cat)47 b(list)g(|)g(parallel)f("do-something1)d({}) 48 b(config-{})d(;)i(do-something2)e(<)i({}")g(|)g(process-output)275 -2648 y Ft(P)m(arallel)31 b(pro)m(vides)e(a)h(built-in)g(mec)m(hanism)g +2660 y Ft(P)m(arallel)31 b(pro)m(vides)e(a)h(built-in)g(mec)m(hanism)g (to)g(remo)m(v)m(e)h(\014lename)e(extensions,)i(whic)m(h)e(lends)g -(itself)150 2758 y(to)i(batc)m(h)g(\014le)g(transformations)f(or)g -(renaming:)390 2890 y Fs(ls)47 b(*.gz)g(|)g(parallel)f(-j+0)g("zcat)h -({})g(|)g(bzip2)g(>{.}.bz2)e(&&)j(rm)f({}")150 3022 y +(itself)150 2770 y(to)i(batc)m(h)g(\014le)g(transformations)f(or)g +(renaming:)390 2902 y Fs(ls)47 b(*.gz)g(|)g(parallel)f(-j+0)g("zcat)h +({})g(|)g(bzip2)g(>{.}.bz2)e(&&)j(rm)f({}")150 3035 y Ft(This)28 b(will)i(recompress)e(all)i(\014les)f(in)g(the)g(curren)m(t) g(directory)g(with)g(names)g(ending)f(in)h(.gz)h(using)f(bzip2,)150 -3131 y(running)g(one)h(job)g(p)s(er)g(CPU)g(\(-j)p Fs(+)p -Ft(0\))h(in)f(parallel.)275 3263 y(If)24 b(a)i(command)f(generates)h +3145 y(running)g(one)h(job)g(p)s(er)g(CPU)g(\(-j)p Fs(+)p +Ft(0\))h(in)f(parallel.)275 3278 y(If)24 b(a)i(command)f(generates)h (output,)g(y)m(ou)g(ma)m(y)f(w)m(an)m(t)h(to)g(preserv)m(e)g(the)f -(input)f(order)h(in)g(the)g(output.)150 3373 y(F)-8 b(or)31 -b(instance,)g(the)g(follo)m(wing)h(command)390 3505 y +(input)f(order)h(in)g(the)g(output.)150 3387 y(F)-8 b(or)31 +b(instance,)g(the)g(follo)m(wing)h(command)390 3520 y Fs({)47 b(echo)g(foss.org.my)e(;)i(echo)g(debian.org;)e(echo)h (freenetproject.org;)d(})k(|)h(parallel)d(traceroute)150 -3637 y Ft(will)28 b(displa)m(y)g(as)f(output)g(the)h(traceroute)h(in)m +3653 y Ft(will)28 b(displa)m(y)g(as)f(output)g(the)h(traceroute)h(in)m (v)m(o)s(cation)h(that)e(\014nishes)e(\014rst.)39 b(Using)28 -b(the)g(`)p Fs(-k)p Ft(')f(option,)i(as)150 3746 y(w)m(e)i(sa)m(w)g(ab) -s(o)m(v)m(e)390 3878 y Fs({)47 b(echo)g(foss.org.my)e(;)i(echo)g +b(the)g(`)p Fs(-k)p Ft(')f(option,)i(as)150 3763 y(w)m(e)i(sa)m(w)g(ab) +s(o)m(v)m(e)390 3895 y Fs({)47 b(echo)g(foss.org.my)e(;)i(echo)g (debian.org;)e(echo)h(freenetproject.org;)d(})k(|)h(parallel)d(-k)i -(traceroute)150 4010 y Ft(will)31 b(ensure)e(that)i(the)g(output)f(of)g +(traceroute)150 4028 y Ft(will)31 b(ensure)e(that)i(the)g(output)f(of)g Fs(traceroute)e(foss.org.my)f Ft(is)k(displa)m(y)m(ed)g(\014rst.)150 -4237 y Fr(3.3)68 b(Shell)45 b(F)-11 b(unctions)150 4396 +4257 y Fr(3.3)68 b(Shell)45 b(F)-11 b(unctions)150 4417 y Ft(Shell)35 b(functions)h(are)g(a)g(w)m(a)m(y)g(to)h(group)e (commands)g(for)h(later)g(execution)h(using)e(a)h(single)g(name)g(for) -150 4506 y(the)f(group.)55 b(They)35 b(are)g(executed)h(just)f(lik)m(e) +150 4526 y(the)f(group.)55 b(They)35 b(are)g(executed)h(just)f(lik)m(e) h(a)g Fs(")p Ft(regular)p Fs(")f Ft(command.)54 b(When)35 -b(the)h(name)f(of)g(a)h(shell)150 4616 y(function)j(is)g(used)f(as)h(a) +b(the)h(name)f(of)g(a)h(shell)150 4636 y(function)j(is)g(used)f(as)h(a) h(simple)f(command)g(name,)i(the)e(list)h(of)f(commands)g(asso)s -(ciated)i(with)d(that)150 4725 y(function)25 b(name)h(is)g(executed.)40 +(ciated)i(with)d(that)150 4746 y(function)25 b(name)h(is)g(executed.)40 b(Shell)25 b(functions)g(are)i(executed)f(in)f(the)h(curren)m(t)g -(shell)g(con)m(text;)j(no)c(new)150 4835 y(pro)s(cess)30 -b(is)g(created)i(to)f(in)m(terpret)g(them.)275 4967 y(F)-8 +(shell)g(con)m(text;)j(no)c(new)150 4855 y(pro)s(cess)30 +b(is)g(created)i(to)f(in)m(terpret)g(them.)275 4988 y(F)-8 b(unctions)30 b(are)h(declared)g(using)f(this)g(syn)m(tax:)390 -5099 y Fs([)47 b(function)f(])h Fi(name)58 b Fs(\(\))47 -b Fi(compound-command)54 b Fs([)47 b Fi(redirections)55 -b Fs(])275 5230 y Ft(This)31 b(de\014nes)h(a)g(shell)h(function)f -(named)g Fq(name)5 b Ft(.)47 b(The)32 b(reserv)m(ed)h(w)m(ord)f -Fs(function)e Ft(is)i(optional.)48 b(If)150 5340 y(the)39 -b Fs(function)f Ft(reserv)m(ed)h(w)m(ord)g(is)g(supplied,)i(the)e -(paren)m(theses)h(are)f(optional.)69 b(The)39 b Fq(b)s(o)s(dy)45 -b Ft(of)40 b(the)p eop end +5121 y Fi(name)57 b Fs(\(\))47 b Fi(compound-command)54 +b Fs([)48 b Fi(redirections)55 b Fs(])390 5230 y(or)p +eop end %%Page: 16 22 TeXDict begin 16 21 bop 150 -116 a Ft(16)2572 b(Bash)31 -b(Reference)g(Man)m(ual)150 299 y(function)41 b(is)h(the)g(comp)s(ound) -e(command)h Fq(comp)s(ound-command)j Ft(\(see)e(Section)h(3.2.4)g -([Comp)s(ound)150 408 y(Commands],)33 b(page)g(9\).)48 -b(That)33 b(command)g(is)f(usually)h(a)g Fq(list)i Ft(enclosed)e(b)s -(et)m(w)m(een)h Fs({)e Ft(and)g Fs(})p Ft(,)h(but)f(ma)m(y)150 -518 y(b)s(e)27 b(an)m(y)h(comp)s(ound)e(command)h(listed)h(ab)s(o)m(v)m -(e.)41 b Fq(comp)s(ound-command)30 b Ft(is)e(executed)g(whenev)m(er)g -Fq(name)150 628 y Ft(is)37 b(sp)s(eci\014ed)g(as)g(the)h(name)f(of)g(a) +b(Reference)g(Man)m(ual)390 299 y Fs(function)46 b Fi(name)57 +b Fs([\(\)])46 b Fi(compound-command)54 b Fs([)48 b Fi(redirections)55 +b Fs(])275 430 y Ft(This)31 b(de\014nes)h(a)g(shell)h(function)f(named) +g Fq(name)5 b Ft(.)47 b(The)32 b(reserv)m(ed)h(w)m(ord)f +Fs(function)e Ft(is)i(optional.)48 b(If)150 540 y(the)39 +b Fs(function)f Ft(reserv)m(ed)h(w)m(ord)g(is)g(supplied,)i(the)e +(paren)m(theses)h(are)f(optional.)69 b(The)39 b Fq(b)s(o)s(dy)45 +b Ft(of)40 b(the)150 650 y(function)h(is)h(the)g(comp)s(ound)e(command) +h Fq(comp)s(ound-command)j Ft(\(see)e(Section)h(3.2.4)g([Comp)s(ound) +150 759 y(Commands],)33 b(page)g(9\).)48 b(That)33 b(command)g(is)f +(usually)h(a)g Fq(list)i Ft(enclosed)e(b)s(et)m(w)m(een)h +Fs({)e Ft(and)g Fs(})p Ft(,)h(but)f(ma)m(y)150 869 y(b)s(e)27 +b(an)m(y)h(comp)s(ound)e(command)h(listed)h(ab)s(o)m(v)m(e.)41 +b Fq(comp)s(ound-command)30 b Ft(is)e(executed)g(whenev)m(er)g +Fq(name)150 978 y Ft(is)37 b(sp)s(eci\014ed)g(as)g(the)h(name)f(of)g(a) h(command.)61 b(An)m(y)37 b(redirections)h(\(see)g(Section)g(3.6)g -([Redirections],)150 737 y(page)31 b(27\))h(asso)s(ciated)g(with)e(the) -g(shell)h(function)f(are)h(p)s(erformed)d(when)i(the)g(function)g(is)h -(executed.)275 871 y(A)41 b(function)f(de\014nition)h(ma)m(y)g(b)s(e)g -(deleted)g(using)g(the)g(`)p Fs(-f)p Ft(')g(option)g(to)h(the)f -Fs(unset)e Ft(builtin)i(\(see)150 981 y(Section)31 b(4.1)h([Bourne)e -(Shell)g(Builtins],)h(page)h(37\).)275 1115 y(The)26 +([Redirections],)150 1088 y(page)31 b(27\))h(asso)s(ciated)g(with)e +(the)g(shell)h(function)f(are)h(p)s(erformed)d(when)i(the)g(function)g +(is)h(executed.)275 1219 y(A)41 b(function)f(de\014nition)h(ma)m(y)g(b) +s(e)g(deleted)g(using)g(the)g(`)p Fs(-f)p Ft(')g(option)g(to)h(the)f +Fs(unset)e Ft(builtin)i(\(see)150 1329 y(Section)31 b(4.1)h([Bourne)e +(Shell)g(Builtins],)h(page)h(37\).)275 1461 y(The)26 b(exit)i(status)g(of)f(a)h(function)f(de\014nition)g(is)g(zero)h (unless)f(a)g(syn)m(tax)h(error)f(o)s(ccurs)g(or)g(a)h(readonly)150 -1224 y(function)k(with)f(the)i(same)f(name)g(already)h(exists.)46 +1570 y(function)k(with)f(the)i(same)f(name)g(already)h(exists.)46 b(When)32 b(executed,)h(the)f(exit)h(status)g(of)f(a)g(function)150 -1334 y(is)e(the)h(exit)g(status)g(of)f(the)h(last)g(command)f(executed) -i(in)e(the)g(b)s(o)s(dy)-8 b(.)275 1468 y(Note)22 b(that)f(for)f +1680 y(is)e(the)h(exit)g(status)g(of)f(the)h(last)g(command)f(executed) +i(in)e(the)g(b)s(o)s(dy)-8 b(.)275 1811 y(Note)22 b(that)f(for)f (historical)i(reasons,)h(in)e(the)g(most)g(common)g(usage)g(the)g -(curly)f(braces)h(that)g(surround)150 1577 y(the)38 b(b)s(o)s(dy)d(of)j +(curly)f(braces)h(that)g(surround)150 1921 y(the)38 b(b)s(o)s(dy)d(of)j (the)f(function)g(m)m(ust)g(b)s(e)g(separated)h(from)f(the)g(b)s(o)s (dy)f(b)m(y)h Fs(blank)p Ft(s)f(or)h(newlines.)62 b(This)150 -1687 y(is)38 b(b)s(ecause)g(the)h(braces)f(are)h(reserv)m(ed)f(w)m +2030 y(is)38 b(b)s(ecause)g(the)h(braces)f(are)h(reserv)m(ed)f(w)m (ords)g(and)f(are)i(only)f(recognized)i(as)e(suc)m(h)g(when)f(they)i -(are)150 1797 y(separated)26 b(from)f(the)h(command)f(list)i(b)m(y)e +(are)150 2140 y(separated)26 b(from)f(the)h(command)f(list)i(b)m(y)e (whitespace)h(or)g(another)g(shell)g(metac)m(haracter.)41 -b(Also,)28 b(when)150 1906 y(using)i(the)g(braces,)h(the)g +b(Also,)28 b(when)150 2250 y(using)i(the)g(braces,)h(the)g Fq(list)i Ft(m)m(ust)d(b)s(e)g(terminated)h(b)m(y)f(a)h(semicolon,)h(a) -e(`)p Fs(&)p Ft(',)h(or)g(a)f(newline.)275 2040 y(When)i(a)i(function)f +e(`)p Fs(&)p Ft(',)h(or)g(a)f(newline.)275 2381 y(When)i(a)i(function)f (is)g(executed,)i(the)e(argumen)m(ts)h(to)g(the)f(function)g(b)s(ecome) -g(the)h(p)s(ositional)g(pa-)150 2150 y(rameters)42 b(during)e(its)i +g(the)h(p)s(ositional)g(pa-)150 2491 y(rameters)42 b(during)e(its)i (execution)h(\(see)f(Section)g(3.4.1)h([P)m(ositional)h(P)m -(arameters],)i(page)c(17\).)75 b(The)150 2259 y(sp)s(ecial)37 +(arameters],)i(page)c(17\).)75 b(The)150 2600 y(sp)s(ecial)37 b(parameter)f(`)p Fs(#)p Ft(')g(that)h(expands)e(to)i(the)f(n)m(um)m(b) s(er)f(of)h(p)s(ositional)h(parameters)f(is)g(up)s(dated)f(to)150 -2369 y(re\015ect)h(the)f(c)m(hange.)56 b(Sp)s(ecial)35 +2710 y(re\015ect)h(the)f(c)m(hange.)56 b(Sp)s(ecial)35 b(parameter)h Fs(0)f Ft(is)g(unc)m(hanged.)54 b(The)35 -b(\014rst)f(elemen)m(t)j(of)e(the)g Fs(FUNCNAME)150 2478 +b(\014rst)f(elemen)m(t)j(of)e(the)g Fs(FUNCNAME)150 2819 y Ft(v)-5 b(ariable)31 b(is)g(set)f(to)i(the)e(name)h(of)f(the)h (function)f(while)g(the)h(function)f(is)g(executing.)275 -2612 y(All)25 b(other)g(asp)s(ects)g(of)g(the)g(shell)g(execution)h(en) +2951 y(All)25 b(other)g(asp)s(ects)g(of)g(the)g(shell)g(execution)h(en) m(vironmen)m(t)g(are)f(iden)m(tical)h(b)s(et)m(w)m(een)g(a)f(function)g -(and)150 2722 y(its)35 b(caller)i(with)d(these)i(exceptions:)50 +(and)150 3061 y(its)35 b(caller)i(with)d(these)i(exceptions:)50 b(the)36 b Fs(DEBUG)d Ft(and)h Fs(RETURN)g Ft(traps)g(are)i(not)f -(inherited)f(unless)h(the)150 2832 y(function)26 b(has)g(b)s(een)f(giv) +(inherited)f(unless)h(the)150 3170 y(function)26 b(has)g(b)s(een)f(giv) m(en)i(the)g Fs(trace)d Ft(attribute)j(using)f(the)g Fs(declare)e Ft(builtin)i(or)g(the)h Fs(-o)i(functrace)150 -2941 y Ft(option)f(has)e(b)s(een)h(enabled)g(with)g(the)g +3280 y Ft(option)f(has)e(b)s(een)h(enabled)g(with)g(the)g Fs(set)f Ft(builtin,)i(\(in)f(whic)m(h)f(case)j(all)f(functions)e -(inherit)h(the)g Fs(DEBUG)150 3051 y Ft(and)33 b Fs(RETURN)f +(inherit)h(the)g Fs(DEBUG)150 3389 y Ft(and)33 b Fs(RETURN)f Ft(traps\),)j(and)e(the)h Fs(ERR)f Ft(trap)h(is)g(not)g(inherited)f (unless)g(the)h Fs(-o)c(errtrace)h Ft(shell)j(option)150 -3160 y(has)h(b)s(een)f(enabled.)55 b(See)35 b(Section)h(4.1)g([Bourne)f +3499 y(has)h(b)s(een)f(enabled.)55 b(See)35 b(Section)h(4.1)g([Bourne)f (Shell)g(Builtins],)i(page)f(37,)i(for)c(the)i(description)f(of)150 -3270 y(the)c Fs(trap)e Ft(builtin.)275 3404 y(The)38 +3608 y(the)c Fs(trap)e Ft(builtin.)275 3740 y(The)38 b Fs(FUNCNEST)f Ft(v)-5 b(ariable,)42 b(if)d(set)h(to)g(a)g(n)m(umeric) f(v)-5 b(alue)39 b(greater)h(than)f(0,)j(de\014nes)d(a)g(maxim)m(um)150 -3513 y(function)24 b(nesting)h(lev)m(el.)40 b(F)-8 b(unction)25 +3850 y(function)24 b(nesting)h(lev)m(el.)40 b(F)-8 b(unction)25 b(in)m(v)m(o)s(cations)i(that)e(exceed)g(the)g(limit)g(cause)g(the)g -(en)m(tire)g(command)150 3623 y(to)31 b(ab)s(ort.)275 -3757 y(If)37 b(the)g(builtin)g(command)h Fs(return)d +(en)m(tire)g(command)150 3959 y(to)31 b(ab)s(ort.)275 +4091 y(If)37 b(the)g(builtin)g(command)h Fs(return)d Ft(is)j(executed)g(in)g(a)g(function,)h(the)e(function)h(completes)h -(and)150 3867 y(execution)25 b(resumes)e(with)h(the)g(next)g(command)f +(and)150 4200 y(execution)25 b(resumes)e(with)h(the)g(next)g(command)f (after)i(the)f(function)f(call.)40 b(An)m(y)24 b(command)f(asso)s -(ciated)150 3976 y(with)36 b(the)h Fs(RETURN)d Ft(trap)i(is)h(executed) +(ciated)150 4310 y(with)36 b(the)h Fs(RETURN)d Ft(trap)i(is)h(executed) g(b)s(efore)f(execution)i(resumes.)57 b(When)37 b(a)f(function)g -(completes,)150 4086 y(the)h(v)-5 b(alues)38 b(of)f(the)g(p)s +(completes,)150 4419 y(the)h(v)-5 b(alues)38 b(of)f(the)g(p)s (ositional)h(parameters)f(and)g(the)g(sp)s(ecial)h(parameter)f(`)p -Fs(#)p Ft(')g(are)h(restored)f(to)h(the)150 4195 y(v)-5 +Fs(#)p Ft(')g(are)h(restored)f(to)h(the)150 4529 y(v)-5 b(alues)26 b(they)f(had)g(prior)f(to)i(the)g(function's)f(execution.)40 b(If)25 b(a)h(n)m(umeric)f(argumen)m(t)h(is)f(giv)m(en)h(to)g -Fs(return)p Ft(,)150 4305 y(that)j(is)g(the)f(function's)h(return)e +Fs(return)p Ft(,)150 4639 y(that)j(is)g(the)f(function's)h(return)e (status;)j(otherwise)f(the)f(function's)h(return)e(status)i(is)f(the)h -(exit)h(status)150 4415 y(of)h(the)f(last)h(command)f(executed)i(b)s -(efore)e(the)g Fs(return)p Ft(.)275 4548 y(V)-8 b(ariables)31 +(exit)h(status)150 4748 y(of)h(the)f(last)h(command)f(executed)i(b)s +(efore)e(the)g Fs(return)p Ft(.)275 4880 y(V)-8 b(ariables)31 b(lo)s(cal)g(to)f(the)g(function)f(ma)m(y)i(b)s(e)e(declared)h(with)f (the)h Fs(local)f Ft(builtin.)40 b(These)29 b(v)-5 b(ariables)150 -4658 y(are)31 b(visible)g(only)f(to)h(the)g(function)f(and)g(the)g -(commands)g(it)h(in)m(v)m(ok)m(es.)275 4792 y(F)-8 b(unction)38 +4989 y(are)31 b(visible)g(only)f(to)h(the)g(function)f(and)g(the)g +(commands)g(it)h(in)m(v)m(ok)m(es.)275 5121 y(F)-8 b(unction)38 b(names)f(and)g(de\014nitions)g(ma)m(y)i(b)s(e)e(listed)h(with)f(the)h (`)p Fs(-f)p Ft(')f(option)h(to)h(the)e Fs(declare)f -Ft(or)150 4902 y Fs(typeset)d Ft(builtin)h(commands)h(\(see)h(Section)g +Ft(or)150 5230 y Fs(typeset)d Ft(builtin)h(commands)h(\(see)h(Section)g (4.2)g([Bash)f(Builtins],)i(page)f(43\).)55 b(The)35 -b(`)p Fs(-F)p Ft(')g(option)g(to)150 5011 y Fs(declare)f +b(`)p Fs(-F)p Ft(')g(option)g(to)150 5340 y Fs(declare)f Ft(or)i Fs(typeset)e Ft(will)i(list)h(the)f(function)g(names)g(only)g -(\(and)g(optionally)h(the)f(source)g(\014le)h(and)150 -5121 y(line)c(n)m(um)m(b)s(er,)g(if)f(the)h Fs(extdebug)e -Ft(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 5230 y(subshells)f -(automatically)37 b(ha)m(v)m(e)d(them)g(de\014ned)e(with)h(the)g(`)p -Fs(-f)p Ft(')h(option)g(to)g(the)f Fs(export)f Ft(builtin)h(\(see)150 -5340 y(Section)g(4.1)g([Bourne)f(Shell)g(Builtins],)i(page)f(37\).)47 -b(Note)33 b(that)g(shell)f(functions)g(and)f(v)-5 b(ariables)33 -b(with)p eop end +(\(and)g(optionally)h(the)f(source)g(\014le)h(and)p eop +end %%Page: 17 23 TeXDict begin 17 22 bop 150 -116 a Ft(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(17)150 299 -y(the)30 b(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 -408 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 562 y(F)-8 b(unctions)30 b(ma)m(y)h(b)s(e)f -(recursiv)m(e.)41 b(No)31 b(limit)g(is)g(placed)g(on)f(the)g(n)m(um)m -(b)s(er)g(of)g(recursiv)m(e)h(calls.)150 824 y Fr(3.4)68 -b(Shell)45 b(P)l(arameters)150 983 y Ft(A)23 b Fq(parameter)31 -b Ft(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 Fs(name)p Ft(,)h(a)g(n)m(um)m -(b)s(er,)f(or)h(one)f(of)h(the)f(sp)s(ecial)150 1093 -y(c)m(haracters)i(listed)f(b)s(elo)m(w.)39 b(A)24 b Fq(v)-5 -b(ariable)29 b Ft(is)24 b(a)g(parameter)g(denoted)f(b)m(y)h(a)g -Fs(name)p Ft(.)37 b(A)24 b(v)-5 b(ariable)24 b(has)f(a)h -Fq(v)-5 b(alue)150 1202 y Ft(and)33 b(zero)i(or)e(more)h +y(line)33 b(n)m(um)m(b)s(er,)g(if)f(the)h Fs(extdebug)e +Ft(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 408 y(subshells)f +(automatically)37 b(ha)m(v)m(e)d(them)g(de\014ned)e(with)h(the)g(`)p +Fs(-f)p Ft(')h(option)g(to)g(the)f Fs(export)f Ft(builtin)h(\(see)150 +518 y(Section)g(4.1)g([Bourne)f(Shell)g(Builtins],)i(page)f(37\).)47 +b(Note)33 b(that)g(shell)f(functions)g(and)f(v)-5 b(ariables)33 +b(with)150 628 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 737 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 883 y(F)-8 b(unctions)33 +b(ma)m(y)g(b)s(e)g(recursiv)m(e.)48 b(The)32 b Fs(FUNCNEST)f +Ft(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 993 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 1103 +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 1352 y Fr(3.4)68 b(Shell)45 b(P)l(arameters)150 +1512 y Ft(A)23 b Fq(parameter)31 b Ft(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 +Fs(name)p Ft(,)h(a)g(n)m(um)m(b)s(er,)f(or)h(one)f(of)h(the)f(sp)s +(ecial)150 1621 y(c)m(haracters)i(listed)f(b)s(elo)m(w.)39 +b(A)24 b Fq(v)-5 b(ariable)29 b Ft(is)24 b(a)g(parameter)g(denoted)f(b) +m(y)h(a)g Fs(name)p Ft(.)37 b(A)24 b(v)-5 b(ariable)24 +b(has)f(a)h Fq(v)-5 b(alue)150 1731 y Ft(and)33 b(zero)i(or)e(more)h Fq(attributes)t Ft(.)51 b(A)m(ttributes)34 b(are)g(assigned)g(using)f -(the)h Fs(declare)e Ft(builtin)h(command)150 1312 y(\(see)e(the)g +(the)h Fs(declare)e Ft(builtin)h(command)150 1841 y(\(see)e(the)g (description)f(of)h(the)f Fs(declare)f Ft(builtin)h(in)g(Section)h(4.2) -g([Bash)g(Builtins],)g(page)g(43\).)275 1466 y(A)d(parameter)h(is)g +g([Bash)g(Builtins],)g(page)g(43\).)275 1987 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 1575 y(a)31 b(v)-5 +b(alid)28 b(v)-5 b(alue.)41 b(Once)150 2096 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 Fs(unset)f Ft(builtin)h(command.)275 1729 +(using)g(the)g Fs(unset)f Ft(builtin)h(command.)275 2242 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 1883 y Fi(name)11 -b Fs(=[)p Fi(value)g Fs(])150 2037 y Ft(If)34 b Fq(v)-5 +(statemen)m(t)h(of)e(the)h(form)390 2389 y Fi(name)11 +b Fs(=[)p Fi(value)g Fs(])150 2535 y Ft(If)34 b Fq(v)-5 b(alue)40 b Ft(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 Fq(v)-5 b(alue)5 b Ft(s)35 b(undergo)f(tilde)h(ex-)150 -2146 y(pansion,)h(parameter)f(and)f(v)-5 b(ariable)36 +2644 y(pansion,)h(parameter)f(and)f(v)-5 b(ariable)36 b(expansion,)f(command)g(substitution,)h(arithmetic)g(expansion,)150 -2256 y(and)k(quote)h(remo)m(v)-5 b(al)42 b(\(detailed)h(b)s(elo)m(w\).) +2754 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 Fs(integer)e -Ft(attribute)i(set,)j(then)150 2365 y Fq(v)-5 b(alue)38 +Ft(attribute)i(set,)j(then)150 2863 y Fq(v)-5 b(alue)38 b Ft(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 Fs($\(\(...)o(\)\))f Ft(expansion)h(is)g(not)g -(used)150 2475 y(\(see)e(Section)g(3.5.5)i([Arithmetic)e(Expansion],)f +(used)150 2973 y(\(see)e(Section)g(3.5.5)i([Arithmetic)e(Expansion],)f (page)h(24\).)42 b(W)-8 b(ord)31 b(splitting)g(is)g(not)f(p)s -(erformed,)f(with)150 2585 y(the)35 b(exception)h(of)f +(erformed,)f(with)150 3083 y(the)35 b(exception)h(of)f Fs("$@")f Ft(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 -2694 y(men)m(t)33 b(statemen)m(ts)h(ma)m(y)f(also)g(app)s(ear)f(as)g +3192 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 Fs(alias)p Ft(,)e Fs(declare)p -Ft(,)g Fs(typeset)p Ft(,)g Fs(export)p Ft(,)150 2804 +Ft(,)g Fs(typeset)p Ft(,)g Fs(export)p Ft(,)150 3302 y Fs(readonly)p Ft(,)d(and)i Fs(local)f Ft(builtin)h(commands.)275 -2958 y(In)f(the)h(con)m(text)i(where)d(an)h(assignmen)m(t)h(statemen)m +3448 y(In)f(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 3067 y(arra)m(y)f(index)g(\(see)h(Section)g(6.7)g +b(ariable)31 b(or)150 3557 y(arra)m(y)f(index)g(\(see)h(Section)g(6.7)g ([Arra)m(ys],)g(page)g(82\),)g(the)f(`)p Fs(+=)p Ft(')g(op)s(erator)g -(can)h(b)s(e)e(used)g(to)i(app)s(end)d(to)150 3177 y(or)36 +(can)h(b)s(e)e(used)g(to)i(app)s(end)d(to)150 3667 y(or)36 b(add)g(to)h(the)f(v)-5 b(ariable's)37 b(previous)f(v)-5 b(alue.)59 b(When)36 b(`)p Fs(+=)p Ft(')g(is)g(applied)g(to)h(a)g(v)-5 -b(ariable)37 b(for)f(whic)m(h)g(the)150 3286 y(in)m(teger)k(attribute)e +b(ariable)37 b(for)f(whic)m(h)g(the)150 3777 y(in)m(teger)k(attribute)e (has)g(b)s(een)g(set,)j Fq(v)-5 b(alue)44 b Ft(is)38 b(ev)-5 b(aluated)39 b(as)g(an)f(arithmetic)h(expression)f(and)g(added) -150 3396 y(to)e(the)f(v)-5 b(ariable's)36 b(curren)m(t)f(v)-5 +150 3886 y(to)e(the)f(v)-5 b(ariable's)36 b(curren)m(t)f(v)-5 b(alue,)37 b(whic)m(h)e(is)g(also)h(ev)-5 b(aluated.)56 b(When)35 b(`)p Fs(+=)p Ft(')g(is)h(applied)f(to)g(an)g(arra)m(y)150 -3506 y(v)-5 b(ariable)26 b(using)e(comp)s(ound)f(assignmen)m(t)j(\(see) +3996 y(v)-5 b(ariable)26 b(using)e(comp)s(ound)f(assignmen)m(t)j(\(see) f(Section)h(6.7)f([Arra)m(ys],)i(page)f(82\),)h(the)e(v)-5 -b(ariable's)25 b(v)-5 b(alue)150 3615 y(is)32 b(not)f(unset)h(\(as)g +b(ariable's)25 b(v)-5 b(alue)150 4105 y(is)32 b(not)f(unset)h(\(as)g (it)g(is)f(when)g(using)g(`)p Fs(=)p Ft('\),)i(and)e(new)g(v)-5 b(alues)32 b(are)g(app)s(ended)d(to)k(the)f(arra)m(y)g(b)s(eginning)150 -3725 y(at)27 b(one)f(greater)i(than)e(the)g(arra)m(y's)h(maxim)m(um)f +4215 y(at)27 b(one)f(greater)i(than)e(the)g(arra)m(y's)h(maxim)m(um)f (index)g(\(for)g(indexed)g(arra)m(ys\),)i(or)e(added)g(as)g(additional) -150 3834 y(k)m(ey-v)-5 b(alue)35 b(pairs)e(in)g(an)g(asso)s(ciativ)m(e) +150 4325 y(k)m(ey-v)-5 b(alue)35 b(pairs)e(in)g(an)g(asso)s(ciativ)m(e) j(arra)m(y)-8 b(.)51 b(When)33 b(applied)g(to)h(a)g(string-v)-5 b(alued)34 b(v)-5 b(ariable,)35 b Fq(v)-5 b(alue)39 b -Ft(is)150 3944 y(expanded)30 b(and)f(app)s(ended)g(to)i(the)g(v)-5 -b(ariable's)31 b(v)-5 b(alue.)150 4163 y Fj(3.4.1)63 -b(P)m(ositional)41 b(P)m(arameters)150 4309 y Ft(A)28 +Ft(is)150 4434 y(expanded)30 b(and)f(app)s(ended)g(to)i(the)g(v)-5 +b(ariable's)31 b(v)-5 b(alue.)150 4645 y Fj(3.4.1)63 +b(P)m(ositional)41 b(P)m(arameters)150 4792 y Ft(A)28 b Fq(p)s(ositional)h(parameter)35 b Ft(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 -4419 y(digit)34 b Fs(0)p Ft(.)48 b(P)m(ositional)36 b(parameters)d(are) +4902 y(digit)34 b Fs(0)p Ft(.)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 4529 y(and)38 b(ma)m(y)i(b)s(e)e(reassigned)i(using) +m(v)m(ok)m(ed,)150 5011 y(and)38 b(ma)m(y)i(b)s(e)e(reassigned)i(using) e(the)h Fs(set)g Ft(builtin)f(command.)67 b(P)m(ositional)41 -b(parameter)e Fs(N)g Ft(ma)m(y)h(b)s(e)150 4638 y(referenced)34 +b(parameter)e Fs(N)g Ft(ma)m(y)h(b)s(e)150 5121 y(referenced)34 b(as)h Fs(${N})p Ft(,)g(or)f(as)h Fs($N)e Ft(when)h Fs(N)g Ft(consists)h(of)f(a)h(single)g(digit.)54 b(P)m(ositional)37 -b(parameters)d(ma)m(y)150 4748 y(not)j(b)s(e)f(assigned)h(to)g(with)f +b(parameters)d(ma)m(y)150 5230 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 Fs(set)g Ft(and)g Fs(shift)f Ft(builtins)h(are)h(used)f(to)150 -4857 y(set)k(and)f(unset)f(them)i(\(see)g(Chapter)f(4)g([Shell)h -(Builtin)g(Commands],)h(page)f(37\).)68 b(The)39 b(p)s(ositional)150 -4967 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 -5077 y([Shell)30 b(F)-8 b(unctions],)32 b(page)f(15\).)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 +5340 y(set)k(and)f(unset)f(them)i(\(see)g(Chapter)f(4)g([Shell)h +(Builtin)g(Commands],)h(page)f(37\).)68 b(The)39 b(p)s(ositional)p +eop end %%Page: 18 24 TeXDict begin 18 23 bop 150 -116 a Ft(18)2572 b(Bash)31 -b(Reference)g(Man)m(ual)150 299 y Fj(3.4.2)63 b(Sp)s(ecial)41 -b(P)m(arameters)150 446 y Ft(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 712 y Fs(*)432 -b Ft(Expands)29 b(to)h(the)h(p)s(ositional)f(parameters,)h(starting)g -(from)e(one.)41 b(When)30 b(the)g(expansion)630 822 y(o)s(ccurs)e -(within)f(double)h(quotes,)h(it)g(expands)e(to)i(a)f(single)h(w)m(ord)f -(with)g(the)g(v)-5 b(alue)29 b(of)f(eac)m(h)630 932 y(parameter)i -(separated)g(b)m(y)f(the)g(\014rst)g(c)m(haracter)i(of)e(the)h -Fs(IFS)e Ft(sp)s(ecial)i(v)-5 b(ariable.)41 b(That)30 -b(is,)630 1041 y Fs("$*")h Ft(is)i(equiv)-5 b(alen)m(t)33 -b(to)h Fs("$1)p Fi(c)11 b Fs($2)p Fi(c)g Fs(...)l(")p -Ft(,)33 b(where)f Fq(c)38 b Ft(is)32 b(the)h(\014rst)e(c)m(haracter)j -(of)f(the)f(v)-5 b(alue)630 1151 y(of)30 b(the)g Fs(IFS)g -Ft(v)-5 b(ariable.)41 b(If)30 b Fs(IFS)f Ft(is)h(unset,)g(the)g -(parameters)g(are)h(separated)f(b)m(y)g(spaces.)41 b(If)630 -1260 y Fs(IFS)29 b Ft(is)i(n)m(ull,)f(the)h(parameters)g(are)f(joined)h -(without)f(in)m(terv)m(ening)i(separators.)150 1417 y -Fs(@)432 b Ft(Expands)29 b(to)h(the)h(p)s(ositional)f(parameters,)h -(starting)g(from)e(one.)41 b(When)30 b(the)g(expansion)630 -1527 y(o)s(ccurs)c(within)g(double)f(quotes,)j(eac)m(h)f(parameter)g -(expands)e(to)i(a)g(separate)g(w)m(ord.)39 b(That)630 -1636 y(is,)29 b Fs("$@")e Ft(is)i(equiv)-5 b(alen)m(t)30 -b(to)f Fs("$1")g("$2")h(...)o Ft(.)40 b(If)28 b(the)g(double-quoted)h -(expansion)f(o)s(ccurs)630 1746 y(within)d(a)h(w)m(ord,)g(the)g -(expansion)f(of)h(the)g(\014rst)f(parameter)h(is)f(joined)h(with)f(the) -h(b)s(eginning)630 1856 y(part)f(of)g(the)g(original)g(w)m(ord,)h(and)e -(the)h(expansion)g(of)g(the)g(last)h(parameter)f(is)g(joined)f(with)630 -1965 y(the)37 b(last)g(part)g(of)f(the)h(original)h(w)m(ord.)59 +b(Reference)g(Man)m(ual)150 299 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 408 y([Shell)30 b(F)-8 b(unctions],)32 +b(page)f(15\).)275 546 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 656 y(b)s(e)h(enclosed)h(in)f(braces.)150 +859 y Fj(3.4.2)63 b(Sp)s(ecial)41 b(P)m(arameters)150 +1006 y Ft(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 1115 y(assignmen)m(t)31 b(to)g(them)g(is)f(not)h(allo) +m(w)m(ed.)150 1280 y Fs(*)432 b Ft(Expands)29 b(to)h(the)h(p)s +(ositional)f(parameters,)h(starting)g(from)e(one.)41 +b(When)30 b(the)g(expansion)630 1389 y(o)s(ccurs)e(within)f(double)h +(quotes,)h(it)g(expands)e(to)i(a)f(single)h(w)m(ord)f(with)g(the)g(v)-5 +b(alue)29 b(of)f(eac)m(h)630 1499 y(parameter)i(separated)g(b)m(y)f +(the)g(\014rst)g(c)m(haracter)i(of)e(the)h Fs(IFS)e Ft(sp)s(ecial)i(v) +-5 b(ariable.)41 b(That)30 b(is,)630 1609 y Fs("$*")h +Ft(is)i(equiv)-5 b(alen)m(t)33 b(to)h Fs("$1)p Fi(c)11 +b Fs($2)p Fi(c)g Fs(...)l(")p Ft(,)33 b(where)f Fq(c)38 +b Ft(is)32 b(the)h(\014rst)e(c)m(haracter)j(of)f(the)f(v)-5 +b(alue)630 1718 y(of)30 b(the)g Fs(IFS)g Ft(v)-5 b(ariable.)41 +b(If)30 b Fs(IFS)f Ft(is)h(unset,)g(the)g(parameters)g(are)h(separated) +f(b)m(y)g(spaces.)41 b(If)630 1828 y Fs(IFS)29 b Ft(is)i(n)m(ull,)f +(the)h(parameters)g(are)f(joined)h(without)f(in)m(terv)m(ening)i +(separators.)150 1991 y Fs(@)432 b Ft(Expands)29 b(to)h(the)h(p)s +(ositional)f(parameters,)h(starting)g(from)e(one.)41 +b(When)30 b(the)g(expansion)630 2100 y(o)s(ccurs)c(within)g(double)f +(quotes,)j(eac)m(h)f(parameter)g(expands)e(to)i(a)g(separate)g(w)m +(ord.)39 b(That)630 2210 y(is,)29 b Fs("$@")e Ft(is)i(equiv)-5 +b(alen)m(t)30 b(to)f Fs("$1")g("$2")h(...)o Ft(.)40 b(If)28 +b(the)g(double-quoted)h(expansion)f(o)s(ccurs)630 2319 +y(within)d(a)h(w)m(ord,)g(the)g(expansion)f(of)h(the)g(\014rst)f +(parameter)h(is)f(joined)h(with)f(the)h(b)s(eginning)630 +2429 y(part)f(of)g(the)g(original)g(w)m(ord,)h(and)e(the)h(expansion)g +(of)g(the)g(last)h(parameter)f(is)g(joined)f(with)630 +2539 y(the)37 b(last)g(part)g(of)f(the)h(original)h(w)m(ord.)59 b(When)36 b(there)h(are)g(no)f(p)s(ositional)h(parameters,)630 -2075 y Fs("$@")29 b Ft(and)h Fs($@)g Ft(expand)f(to)j(nothing)e -(\(i.e.,)i(they)e(are)h(remo)m(v)m(ed\).)150 2232 y Fs(#)432 +2648 y Fs("$@")29 b Ft(and)h Fs($@)g Ft(expand)f(to)j(nothing)e +(\(i.e.,)i(they)e(are)h(remo)m(v)m(ed\).)150 2811 y Fs(#)432 b Ft(Expands)29 b(to)i(the)g(n)m(um)m(b)s(er)e(of)h(p)s(ositional)h -(parameters)g(in)f(decimal.)150 2389 y Fs(?)432 b Ft(Expands)29 +(parameters)g(in)f(decimal.)150 2974 y Fs(?)432 b Ft(Expands)29 b(to)i(the)g(exit)g(status)g(of)f(the)h(most)f(recen)m(tly)i(executed)f -(foreground)f(pip)s(eline.)150 2546 y Fs(-)432 b Ft(\(A)31 +(foreground)f(pip)s(eline.)150 3137 y Fs(-)432 b Ft(\(A)31 b(h)m(yphen.\))42 b(Expands)30 b(to)h(the)g(curren)m(t)g(option)h (\015ags)f(as)g(sp)s(eci\014ed)f(up)s(on)g(in)m(v)m(o)s(cation,)630 -2655 y(b)m(y)35 b(the)h Fs(set)e Ft(builtin)h(command,)h(or)g(those)g +3246 y(b)m(y)35 b(the)h Fs(set)e Ft(builtin)h(command,)h(or)g(those)g (set)f(b)m(y)h(the)f(shell)h(itself)g(\(suc)m(h)f(as)h(the)f(`)p -Fs(-i)p Ft(')630 2765 y(option\).)150 2922 y Fs($)432 +Fs(-i)p Ft(')630 3356 y(option\).)150 3519 y Fs($)432 b Ft(Expands)39 b(to)j(the)f(pro)s(cess)f Fl(id)h Ft(of)g(the)g(shell.) 73 b(In)40 b(a)h Fs(\(\))f Ft(subshell,)j(it)e(expands)f(to)i(the)630 -3031 y(pro)s(cess)30 b Fl(id)g Ft(of)h(the)g(in)m(v)m(oking)g(shell,)g -(not)g(the)f(subshell.)150 3188 y Fs(!)432 b Ft(Expands)39 +3628 y(pro)s(cess)30 b Fl(id)g Ft(of)h(the)g(in)m(v)m(oking)g(shell,)g +(not)g(the)f(subshell.)150 3791 y Fs(!)432 b Ft(Expands)39 b(to)i(the)g(pro)s(cess)e Fl(id)i Ft(of)f(the)h(most)g(recen)m(tly)g -(executed)g(bac)m(kground)g(\(asyn-)630 3298 y(c)m(hronous\))30 -b(command.)150 3455 y Fs(0)432 b Ft(Expands)20 b(to)j(the)f(name)g(of)g +(executed)g(bac)m(kground)g(\(asyn-)630 3901 y(c)m(hronous\))30 +b(command.)150 4064 y Fs(0)432 b Ft(Expands)20 b(to)j(the)f(name)g(of)g (the)g(shell)g(or)f(shell)h(script.)38 b(This)21 b(is)h(set)g(at)h -(shell)f(initialization.)630 3564 y(If)44 b(Bash)g(is)g(in)m(v)m(ok)m +(shell)f(initialization.)630 4173 y(If)44 b(Bash)g(is)g(in)m(v)m(ok)m (ed)i(with)e(a)g(\014le)g(of)h(commands)e(\(see)j(Section)f(3.8)g -([Shell)f(Scripts],)630 3674 y(page)39 b(34\),)i Fs($0)d +([Shell)f(Scripts],)630 4283 y(page)39 b(34\),)i Fs($0)d Ft(is)g(set)g(to)h(the)f(name)g(of)g(that)h(\014le.)64 b(If)37 b(Bash)i(is)f(started)g(with)g(the)g(`)p Fs(-c)p -Ft(')630 3784 y(option)i(\(see)g(Section)h(6.1)f([In)m(v)m(oking)h +Ft(')630 4392 y(option)i(\(see)g(Section)h(6.1)f([In)m(v)m(oking)h (Bash],)h(page)e(73\),)j(then)d Fs($0)e Ft(is)i(set)g(to)g(the)g -(\014rst)630 3893 y(argumen)m(t)31 b(after)g(the)g(string)g(to)g(b)s(e) +(\014rst)630 4502 y(argumen)m(t)31 b(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 4003 y(to)h(the)g(\014lename)f(used)g(to)h(in)m(v)m +b(it)g(is)f(set)630 4612 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 -4160 y Fs(_)432 b Ft(\(An)27 b(underscore.\))39 b(A)m(t)29 +4774 y Fs(_)432 b Ft(\(An)27 b(underscore.\))39 b(A)m(t)29 b(shell)e(startup,)h(set)f(to)h(the)g(absolute)g(pathname)f(used)f(to)i -(in)m(v)m(ok)m(e)630 4269 y(the)22 b(shell)g(or)g(shell)g(script)f(b)s +(in)m(v)m(ok)m(e)630 4884 y(the)22 b(shell)g(or)g(shell)g(script)f(b)s (eing)h(executed)h(as)f(passed)f(in)g(the)h(en)m(vironmen)m(t)h(or)e -(argumen)m(t)630 4379 y(list.)72 b(Subsequen)m(tly)-8 +(argumen)m(t)630 4994 y(list.)72 b(Subsequen)m(tly)-8 b(,)43 b(expands)c(to)j(the)e(last)i(argumen)m(t)f(to)g(the)g(previous) -f(command,)630 4489 y(after)35 b(expansion.)54 b(Also)36 +f(command,)630 5103 y(after)35 b(expansion.)54 b(Also)36 b(set)f(to)h(the)f(full)f(pathname)h(used)f(to)h(in)m(v)m(ok)m(e)i(eac) -m(h)f(command)630 4598 y(executed)42 b(and)e(placed)i(in)e(the)h(en)m +m(h)f(command)630 5213 y(executed)42 b(and)e(placed)i(in)e(the)h(en)m (vironmen)m(t)h(exp)s(orted)f(to)g(that)h(command.)72 -b(When)630 4708 y(c)m(hec)m(king)32 b(mail,)f(this)g(parameter)g(holds) -e(the)i(name)f(of)h(the)g(mail)g(\014le.)150 4938 y Fr(3.5)68 -b(Shell)45 b(Expansions)150 5097 y Ft(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 Fs(token)p Ft(s.)38 b(There)28 b(are)150 5207 y(sev)m(en)j(kinds) -e(of)i(expansion)f(p)s(erformed:)225 5340 y Fp(\017)60 -b Ft(brace)31 b(expansion)p eop end +b(When)630 5322 y(c)m(hec)m(king)32 b(mail,)f(this)g(parameter)g(holds) +e(the)i(name)f(of)h(the)g(mail)g(\014le.)p eop end %%Page: 19 25 TeXDict begin 19 24 bop 150 -116 a Ft(Chapter)30 b(3:)41 -b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(19)225 299 -y Fp(\017)60 b Ft(tilde)31 b(expansion)225 436 y Fp(\017)60 +b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(19)150 299 +y Fr(3.5)68 b(Shell)45 b(Expansions)150 458 y Ft(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 Fs(token)p Ft(s.)38 b(There)28 +b(are)150 568 y(sev)m(en)j(kinds)e(of)i(expansion)f(p)s(erformed:)225 +711 y Fp(\017)60 b Ft(brace)31 b(expansion)225 850 y +Fp(\017)60 b Ft(tilde)31 b(expansion)225 988 y Fp(\017)60 b Ft(parameter)31 b(and)f(v)-5 b(ariable)31 b(expansion)225 -574 y Fp(\017)60 b Ft(command)30 b(substitution)225 711 -y Fp(\017)60 b Ft(arithmetic)32 b(expansion)225 849 y -Fp(\017)60 b Ft(w)m(ord)30 b(splitting)225 986 y Fp(\017)60 -b Ft(\014lename)31 b(expansion)275 1155 y(The)i(order)g(of)h -(expansions)g(is:)47 b(brace)34 b(expansion,)h(tilde)g(expansion,)f -(parameter,)i(v)-5 b(ariable,)36 b(and)150 1264 y(arithmetic)46 -b(expansion)f(and)g(command)f(substitution)h(\(done)g(in)g(a)g -(left-to-righ)m(t)j(fashion\),)h(w)m(ord)150 1374 y(splitting,)31 -b(and)f(\014lename)h(expansion.)275 1515 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 Fq(pro)s(cess)150 1624 y(substitution)p +1127 y Fp(\017)60 b Ft(command)30 b(substitution)225 +1266 y Fp(\017)60 b Ft(arithmetic)32 b(expansion)225 +1405 y Fp(\017)60 b Ft(w)m(ord)30 b(splitting)225 1544 +y Fp(\017)60 b Ft(\014lename)31 b(expansion)275 1716 +y(The)i(order)g(of)h(expansions)g(is:)47 b(brace)34 b(expansion,)h +(tilde)g(expansion,)f(parameter,)i(v)-5 b(ariable,)36 +b(and)150 1825 y(arithmetic)46 b(expansion)f(and)g(command)f +(substitution)h(\(done)g(in)g(a)g(left-to-righ)m(t)j(fashion\),)h(w)m +(ord)150 1935 y(splitting,)31 b(and)f(\014lename)h(expansion.)275 +2078 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 Fq(pro)s(cess)150 2188 y(substitution)p Ft(.)61 b(This)36 b(is)h(p)s(erformed)f(at)i(the)f(same)h(time)f(as)h (parameter,)h(v)-5 b(ariable,)40 b(and)d(arithmetic)150 -1734 y(expansion)30 b(and)g(command)g(substitution.)275 -1874 y(Only)35 b(brace)i(expansion,)h(w)m(ord)e(splitting,)j(and)d +2297 y(expansion)30 b(and)g(command)g(substitution.)275 +2440 y(Only)35 b(brace)i(expansion,)h(w)m(ord)e(splitting,)j(and)d (\014lename)g(expansion)g(can)h(c)m(hange)h(the)e(n)m(um)m(b)s(er)150 -1984 y(of)h(w)m(ords)f(of)g(the)h(expansion;)i(other)e(expansions)f +2550 y(of)h(w)m(ords)f(of)g(the)h(expansion;)i(other)e(expansions)f (expand)g(a)h(single)g(w)m(ord)f(to)h(a)g(single)g(w)m(ord.)58 -b(The)150 2093 y(only)32 b(exceptions)i(to)f(this)f(are)h(the)f +b(The)150 2660 y(only)32 b(exceptions)i(to)f(this)f(are)h(the)f (expansions)g(of)h Fs("$@")e Ft(\(see)i(Section)g(3.4.2)h([Sp)s(ecial)f -(P)m(arameters],)150 2203 y(page)e(18\))h(and)d Fs("${)p +(P)m(arameters],)150 2769 y(page)e(18\))h(and)d Fs("${)p Fi(name)11 b Fs([@]}")27 b Ft(\(see)k(Section)h(6.7)f([Arra)m(ys],)g -(page)g(82\).)275 2344 y(After)41 b(all)i(expansions,)h +(page)g(82\).)275 2912 y(After)41 b(all)i(expansions,)h Fs(quote)29 b(removal)40 b Ft(\(see)i(Section)h(3.5.9)g([Quote)f(Remo)m -(v)-5 b(al],)47 b(page)42 b(27\))h(is)150 2453 y(p)s(erformed.)150 -2658 y Fj(3.5.1)63 b(Brace)40 b(Expansion)150 2805 y +(v)-5 b(al],)47 b(page)42 b(27\))h(is)150 3022 y(p)s(erformed.)150 +3230 y Fj(3.5.1)63 b(Brace)40 b(Expansion)150 3377 y Ft(Brace)28 b(expansion)f(is)h(a)f(mec)m(hanism)h(b)m(y)f(whic)m(h)f (arbitrary)h(strings)g(ma)m(y)h(b)s(e)f(generated.)40 -b(This)27 b(mec)m(ha-)150 2915 y(nism)e(is)h(similar)g(to)g +b(This)27 b(mec)m(ha-)150 3486 y(nism)e(is)h(similar)g(to)g Fq(\014lename)g(expansion)f Ft(\(see)i(Section)f(3.5.8)i([Filename)f -(Expansion],)f(page)h(25\),)h(but)150 3024 y(the)36 b(\014le)f(names)h +(Expansion],)f(page)h(25\),)h(but)150 3596 y(the)36 b(\014le)f(names)h (generated)g(need)f(not)h(exist.)57 b(P)m(atterns)36 b(to)g(b)s(e)f(brace)h(expanded)e(tak)m(e)j(the)f(form)f(of)150 -3134 y(an)29 b(optional)i Fq(pream)m(ble)5 b Ft(,)30 +3705 y(an)29 b(optional)i Fq(pream)m(ble)5 b Ft(,)30 b(follo)m(w)m(ed)i(b)m(y)d(either)h(a)g(series)g(of)g(comma-separated)h -(strings)e(or)h(a)g(seqeunce)150 3244 y(expression)36 +(strings)e(or)h(a)g(seqeunce)150 3815 y(expression)36 b(b)s(et)m(w)m(een)g(a)g(pair)g(of)g(braces,)i(follo)m(w)m(ed)f(b)m(y)f (an)g(optional)h Fq(p)s(ostscript)r Ft(.)56 b(The)36 -b(pream)m(ble)g(is)150 3353 y(pre\014xed)28 b(to)h(eac)m(h)h(string)f +b(pream)m(ble)g(is)150 3924 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 3463 y(eac)m(h)32 b(resulting)e -(string,)h(expanding)e(left)j(to)f(righ)m(t.)275 3603 +(is)h(then)f(app)s(ended)f(to)150 4034 y(eac)m(h)32 b(resulting)e +(string,)h(expanding)e(left)j(to)f(righ)m(t.)275 4177 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 3713 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 3853 y Fs(bash$)46 -b(echo)h(a{d,c,b}e)390 3963 y(ade)g(ace)g(abe)275 4104 +(sorted;)150 4287 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 4430 y Fs(bash$)46 +b(echo)h(a{d,c,b}e)390 4539 y(ade)g(ace)g(abe)275 4682 y Ft(A)20 b(sequence)h(expression)g(tak)m(es)h(the)f(form)f Fs({)p Fi(x)11 b Fs(..)p Fi(y)g Fs([..)p Fi(incr)g Fs(]})p Ft(,)18 b(where)i Fq(x)27 b Ft(and)20 b Fq(y)28 b Ft(are)22 -b(either)f(in)m(tegers)150 4213 y(or)42 b(single)h(c)m(haracters,)j +b(either)f(in)m(tegers)150 4792 y(or)42 b(single)h(c)m(haracters,)j (and)c Fq(incr)7 b Ft(,)44 b(an)e(optional)h(incremen)m(t,)j(is)c(an)g -(in)m(teger.)77 b(When)41 b(in)m(tegers)j(are)150 4323 +(in)m(teger.)77 b(When)41 b(in)m(tegers)j(are)150 4902 y(supplied,)e(the)f(expression)g(expands)f(to)h(eac)m(h)h(n)m(um)m(b)s (er)e(b)s(et)m(w)m(een)h Fq(x)47 b Ft(and)40 b Fq(y)8 -b Ft(,)44 b(inclusiv)m(e.)73 b(Supplied)150 4432 y(in)m(tegers)33 +b Ft(,)44 b(inclusiv)m(e.)73 b(Supplied)150 5011 y(in)m(tegers)33 b(ma)m(y)e(b)s(e)g(pre\014xed)f(with)h(`)p Fs(0)p Ft(')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 4542 y Fq(x)43 b Ft(or)36 b Fq(y)44 +b(When)31 b(either)150 5121 y Fq(x)43 b Ft(or)36 b Fq(y)44 b Ft(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 -4652 y(same)e(n)m(um)m(b)s(er)e(of)i(digits,)i(zero-padding)d(where)h +5230 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 4761 y(expression)h(expands)f(to)i(eac)m(h)g(c)m(haracter)g +150 5340 y(expression)h(expands)f(to)i(eac)m(h)g(c)m(haracter)g (lexicographically)i(b)s(et)m(w)m(een)e Fq(x)43 b Ft(and)37 -b Fq(y)8 b Ft(,)38 b(inclusiv)m(e.)62 b(Note)150 4871 -y(that)30 b(b)s(oth)e Fq(x)35 b Ft(and)28 b Fq(y)37 b -Ft(m)m(ust)29 b(b)s(e)f(of)h(the)g(same)g(t)m(yp)s(e.)41 -b(When)28 b(the)i(incremen)m(t)f(is)g(supplied,)f(it)i(is)f(used)f(as) -150 4980 y(the)j(di\013erence)f(b)s(et)m(w)m(een)h(eac)m(h)h(term.)41 -b(The)30 b(default)g(incremen)m(t)h(is)g(1)f(or)h(-1)g(as)f -(appropriate.)275 5121 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 5230 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 5340 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.)p -eop end +b Fq(y)8 b Ft(,)38 b(inclusiv)m(e.)62 b(Note)p eop end %%Page: 20 26 TeXDict begin 20 25 bop 150 -116 a Ft(20)2572 b(Bash)31 -b(Reference)g(Man)m(ual)150 299 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 -Fs(${)p Ft(')g(is)g(not)g(considered)g(eligible)i(for)150 -408 y(brace)31 b(expansion.)275 543 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 653 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 763 y(brace)d(expansion)f(is)g -(left)h(unc)m(hanged.)275 897 y(A)25 b Fs({)g Ft(or)g(`)p -Fs(,)p Ft(')g(ma)m(y)h(b)s(e)f(quoted)g(with)g(a)h(bac)m(kslash)f(to)h -(prev)m(en)m(t)g(its)g(b)s(eing)f(considered)g(part)g(of)g(a)h(brace) -150 1007 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 Fs(${)p -Ft(')g(is)g(not)g(considered)150 1117 y(eligible)e(for)e(brace)h -(expansion.)275 1252 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 1361 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 1496 y Fs(mkdir)46 b -(/usr/local/src/bash/{old,n)o(ew,)o(dist)o(,bug)o(s})275 -1631 y Ft(or)390 1766 y Fs(chown)g(root)h(/usr/{ucb/{ex,edit},lib/)o -({ex?)o(.?*,)o(how)o(_ex})o(})150 1966 y Fj(3.5.2)63 -b(Tilde)41 b(Expansion)150 2113 y Ft(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 -Fs(~)p Ft('\),)g(all)g(of)f(the)g(c)m(haracters)h(up)d(to)j(the)f -(\014rst)150 2222 y(unquoted)23 b(slash)h(\(or)h(all)g(c)m(haracters,)i -(if)d(there)g(is)h(no)f(unquoted)f(slash\))h(are)h(considered)f(a)g -Fq(tilde-pre\014x)6 b Ft(.)150 2332 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 2441 y(follo)m(wing)28 -b(the)f(tilde)g(are)g(treated)h(as)f(a)g(p)s(ossible)f -Fq(login)i(name)5 b Ft(.)40 b(If)26 b(this)g(login)i(name)f(is)f(the)h -(n)m(ull)g(string,)150 2551 y(the)35 b(tilde)g(is)g(replaced)g(with)f -(the)h(v)-5 b(alue)35 b(of)g(the)g Fs(HOME)e Ft(shell)i(v)-5 -b(ariable.)54 b(If)34 b Fs(HOME)g Ft(is)h(unset,)g(the)g(home)150 -2661 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 -2770 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 2905 -y(If)g(the)h(tilde-pre\014x)f(is)h(`)p Fs(~+)p Ft(',)g(the)g(v)-5 -b(alue)33 b(of)g(the)g(shell)g(v)-5 b(ariable)34 b Fs(PWD)d -Ft(replaces)j(the)f(tilde-pre\014x.)47 b(If)150 3015 -y(the)31 b(tilde-pre\014x)f(is)g(`)p Fs(~-)p Ft(',)h(the)f(v)-5 -b(alue)31 b(of)g(the)f(shell)h(v)-5 b(ariable)31 b Fs(OLDPWD)p -Ft(,)e(if)h(it)h(is)g(set,)g(is)f(substituted.)275 3150 -y(If)e(the)i(c)m(haracters)g(follo)m(wing)h(the)e(tilde)h(in)f(the)g -(tilde-pre\014x)h(consist)f(of)h(a)f(n)m(um)m(b)s(er)f -Fq(N)10 b Ft(,)30 b(optionally)150 3259 y(pre\014xed)22 +b(Reference)g(Man)m(ual)150 299 y(that)f(b)s(oth)e Fq(x)35 +b Ft(and)28 b Fq(y)37 b Ft(m)m(ust)29 b(b)s(e)f(of)h(the)g(same)g(t)m +(yp)s(e.)41 b(When)28 b(the)i(incremen)m(t)f(is)g(supplied,)f(it)i(is)f +(used)f(as)150 408 y(the)j(di\013erence)f(b)s(et)m(w)m(een)h(eac)m(h)h +(term.)41 b(The)30 b(default)g(incremen)m(t)h(is)g(1)f(or)h(-1)g(as)f +(appropriate.)275 544 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 654 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 764 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 +873 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 Fs(${)p Ft(')g(is)g(not)g(considered)g +(eligible)i(for)150 983 y(brace)31 b(expansion.)275 1119 +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 +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 1338 y(brace)d(expansion)f(is)g(left)h(unc)m(hanged.)275 +1474 y(A)25 b Fs({)g Ft(or)g(`)p Fs(,)p Ft(')g(ma)m(y)h(b)s(e)f(quoted) +g(with)g(a)h(bac)m(kslash)f(to)h(prev)m(en)m(t)g(its)g(b)s(eing)f +(considered)g(part)g(of)g(a)h(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 Fs(${)p Ft(')g(is)g(not)g(considered) +150 1693 y(eligible)e(for)e(brace)h(expansion.)275 1829 +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 +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 Fs(mkdir)46 b(/usr/local/src/bash/{old,n)o +(ew,)o(dist)o(,bug)o(s})275 2210 y Ft(or)390 2346 y Fs(chown)g(root)h +(/usr/{ucb/{ex,edit},lib/)o({ex?)o(.?*,)o(how)o(_ex})o(})150 +2547 y Fj(3.5.2)63 b(Tilde)41 b(Expansion)150 2694 y +Ft(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 Fs(~)p Ft('\),)g(all)g(of)f(the)g(c)m(haracters)h(up) +d(to)j(the)f(\014rst)150 2804 y(unquoted)23 b(slash)h(\(or)h(all)g(c)m +(haracters,)i(if)d(there)g(is)h(no)f(unquoted)f(slash\))h(are)h +(considered)f(a)g Fq(tilde-pre\014x)6 b Ft(.)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 +3023 y(follo)m(wing)28 b(the)f(tilde)g(are)g(treated)h(as)f(a)g(p)s +(ossible)f Fq(login)i(name)5 b Ft(.)40 b(If)26 b(this)g(login)i(name)f +(is)f(the)h(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 +Fs(HOME)e Ft(shell)i(v)-5 b(ariable.)54 b(If)34 b Fs(HOME)g +Ft(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 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 3487 y(If)g(the)h(tilde-pre\014x)f(is)h(`)p +Fs(~+)p Ft(',)g(the)g(v)-5 b(alue)33 b(of)g(the)g(shell)g(v)-5 +b(ariable)34 b Fs(PWD)d Ft(replaces)j(the)f(tilde-pre\014x.)47 +b(If)150 3597 y(the)31 b(tilde-pre\014x)f(is)g(`)p Fs(~-)p +Ft(',)h(the)f(v)-5 b(alue)31 b(of)g(the)f(shell)h(v)-5 +b(ariable)31 b Fs(OLDPWD)p Ft(,)e(if)h(it)h(is)g(set,)g(is)f +(substituted.)275 3733 y(If)e(the)i(c)m(haracters)g(follo)m(wing)h(the) +e(tilde)h(in)f(the)g(tilde-pre\014x)h(consist)f(of)h(a)f(n)m(um)m(b)s +(er)f Fq(N)10 b Ft(,)30 b(optionally)150 3843 y(pre\014xed)22 b(b)m(y)h(a)h(`)p Fs(+)p Ft(')f(or)h(a)f(`)p Fs(-)p Ft(',)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 3369 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 Fs(dirs)g Ft(builtin)g(in)m(v)m(ok)m(ed)i(with)e(the)g(c)m(haracters) -150 3478 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 3588 y(page)c(83\).)57 b(If)35 b(the)g(tilde-pre\014x,)i(sans) +(k],)150 4171 y(page)c(83\).)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 Fs(+)p Ft(')g(or)150 3697 y(`)p Fs(-)p -Ft(',)31 b(`)p Fs(+)p Ft(')f(is)h(assumed.)275 3832 y(If)e(the)i(login) +(leading)h(`)p Fs(+)p Ft(')g(or)150 4281 y(`)p Fs(-)p +Ft(',)31 b(`)p Fs(+)p Ft(')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 -3967 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 4077 y(a)d(`)p Fs(:)p Ft(')g(or)g(the)g(\014rst)f(`)p +(wing)150 4662 y(a)d(`)p Fs(:)p Ft(')g(or)g(the)g(\014rst)f(`)p Fs(=)p Ft('.)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)150 4187 y(ma)m(y)27 b(use)e(\014le)h(names)g(with)g(tildes)g(in) +b(one)150 4772 y(ma)m(y)27 b(use)e(\014le)h(names)g(with)g(tildes)g(in) g(assignmen)m(ts)h(to)g Fs(PATH)p Ft(,)f Fs(MAILPATH)p Ft(,)e(and)i Fs(CDPATH)p Ft(,)f(and)h(the)g(shell)150 -4296 y(assigns)31 b(the)f(expanded)g(v)-5 b(alue.)275 -4431 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 4591 y Fs(~)432 -b Ft(The)30 b(v)-5 b(alue)31 b(of)f Fs($HOME)150 4751 -y(~/foo)240 b Ft(`)p Fs($HOME/foo)p Ft(')150 4911 y Fs(~fred/foo)630 -5020 y Ft(The)30 b(sub)s(directory)f Fs(foo)h Ft(of)g(the)h(home)f -(directory)h(of)g(the)f(user)g Fs(fred)150 5180 y(~+/foo)192 -b Ft(`)p Fs($PWD/foo)p Ft(')150 5340 y Fs(~-/foo)g Ft(`)p -Fs(${OLDPWD-'~-'}/foo)p Ft(')p eop end +4882 y(assigns)31 b(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 Fs(~)432 +b Ft(The)30 b(v)-5 b(alue)31 b(of)f Fs($HOME)150 5340 +y(~/foo)240 b Ft(`)p Fs($HOME/foo)p Ft(')p eop end %%Page: 21 27 TeXDict begin 21 26 bop 150 -116 a Ft(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(21)150 299 -y Fs(~)p Fi(N)384 b Ft(The)30 b(string)g(that)h(w)m(ould)f(b)s(e)g +y Fs(~fred/foo)630 408 y Ft(The)30 b(sub)s(directory)f +Fs(foo)h Ft(of)g(the)h(home)f(directory)h(of)g(the)f(user)g +Fs(fred)150 580 y(~+/foo)192 b Ft(`)p Fs($PWD/foo)p Ft(')150 +752 y Fs(~-/foo)g Ft(`)p Fs(${OLDPWD-'~-'}/foo)p Ft(')150 +924 y Fs(~)p Fi(N)384 b Ft(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 Fs(dirs)g(+)p Fi(N)11 -b Ft(')150 446 y Fs(~+)p Fi(N)336 b Ft(The)30 b(string)g(that)h(w)m +b Ft(')150 1096 y Fs(~+)p Fi(N)336 b Ft(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 Fs(dirs)g(+)p -Fi(N)11 b Ft(')150 594 y Fs(~-)p Fi(N)336 b Ft(The)30 +Fi(N)11 b Ft(')150 1267 y Fs(~-)p Fi(N)336 b Ft(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 -Fs(dirs)g(-)p Fi(N)11 b Ft(')150 782 y Fj(3.5.3)63 b(Shell)41 -b(P)m(arameter)f(Expansion)150 928 y Ft(The)g(`)p Fs($)p +Fs(dirs)g(-)p Fi(N)11 b Ft(')150 1479 y Fj(3.5.3)63 b(Shell)41 +b(P)m(arameter)f(Expansion)150 1626 y Ft(The)g(`)p Fs($)p Ft(')h(c)m(haracter)i(in)m(tro)s(duces)d(parameter)h(expansion,)j -(command)d(substitution,)i(or)e(arithmetic)150 1038 y(expansion.)d(The) +(command)d(substitution,)i(or)e(arithmetic)150 1735 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 -1148 y(are)31 b(optional)g(but)f(serv)m(e)h(to)h(protect)f(the)g(v)-5 +1845 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 1257 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 1386 +(immediately)150 1955 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 2101 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 Fs(})p Ft(')g(not)g(escap)s(ed)h(b)m(y)f(a) -150 1495 y(bac)m(kslash)40 b(or)f(within)g(a)g(quoted)g(string,)j(and)c +150 2211 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 -1605 y(command)30 b(substitution,)g(or)h(parameter)g(expansion.)275 -1734 y(The)40 b(basic)h(form)g(of)g(parameter)h(expansion)e(is)h($)p +2321 y(command)30 b(substitution,)g(or)h(parameter)g(expansion.)275 +2468 y(The)40 b(basic)h(form)g(of)g(parameter)h(expansion)e(is)h($)p Fs({)p Fq(parameter)7 b Fs(})p Ft(.)73 b(The)40 b(v)-5 -b(alue)42 b(of)f Fq(parameter)48 b Ft(is)150 1843 y(substituted.)43 +b(alue)42 b(of)f Fq(parameter)48 b Ft(is)150 2577 y(substituted.)43 b(The)31 b(braces)g(are)h(required)e(when)h Fq(parameter)38 b Ft(is)31 b(a)h(p)s(ositional)g(parameter)g(with)f(more)150 -1953 y(than)h(one)g(digit,)i(or)e(when)g Fq(parameter)39 +2687 y(than)h(one)g(digit,)i(or)e(when)g Fq(parameter)39 b Ft(is)32 b(follo)m(w)m(ed)i(b)m(y)e(a)h(c)m(haracter)h(that)e(is)h -(not)f(to)h(b)s(e)f(in)m(terpreted)150 2062 y(as)f(part)f(of)g(its)h -(name.)275 2191 y(If)c(the)g(\014rst)g(c)m(haracter)i(of)f +(not)f(to)h(b)s(e)f(in)m(terpreted)150 2796 y(as)f(part)f(of)g(its)h +(name.)275 2943 y(If)c(the)g(\014rst)g(c)m(haracter)i(of)f Fq(parameter)35 b Ft(is)27 b(an)h(exclamation)i(p)s(oin)m(t)d(\(!\),)i (a)f(lev)m(el)i(of)d(v)-5 b(ariable)29 b(indirec-)150 -2301 y(tion)e(is)f(in)m(tro)s(duced.)39 b(Bash)27 b(uses)e(the)i(v)-5 +3053 y(tion)e(is)f(in)m(tro)s(duced.)39 b(Bash)27 b(uses)e(the)i(v)-5 b(alue)27 b(of)f(the)h(v)-5 b(ariable)27 b(formed)f(from)g(the)g(rest)h -(of)f Fq(parameter)34 b Ft(as)150 2410 y(the)e(name)h(of)f(the)h(v)-5 +(of)f Fq(parameter)34 b Ft(as)150 3162 y(the)e(name)h(of)f(the)h(v)-5 b(ariable;)34 b(this)e(v)-5 b(ariable)33 b(is)g(then)f(expanded)f(and)h (that)h(v)-5 b(alue)32 b(is)h(used)e(in)h(the)h(rest)150 -2520 y(of)h(the)f(substitution,)i(rather)e(than)g(the)h(v)-5 +3272 y(of)h(the)f(substitution,)i(rather)e(than)g(the)h(v)-5 b(alue)34 b(of)g Fq(parameter)40 b Ft(itself.)51 b(This)33 -b(is)g(kno)m(wn)g(as)h Fs(indirect)150 2629 y(expansion)p +b(is)g(kno)m(wn)g(as)h Fs(indirect)150 3381 y(expansion)p Ft(.)45 b(The)32 b(exceptions)i(to)g(this)e(are)h(the)g(expansions)g (of)g($)p Fs({)p Ft(!)p Fq(pre\014x*)8 b Fs(})31 b Ft(and)i($)p Fs({)p Ft(!)p Fq(name)5 b Ft([)p Fs(@)p Ft(])p Fs(})33 -b Ft(de-)150 2739 y(scrib)s(ed)h(b)s(elo)m(w.)56 b(The)35 +b Ft(de-)150 3491 y(scrib)s(ed)h(b)s(elo)m(w.)56 b(The)35 b(exclamation)j(p)s(oin)m(t)d(m)m(ust)g(immediately)i(follo)m(w)g(the)e -(left)i(brace)e(in)g(order)g(to)150 2849 y(in)m(tro)s(duce)30 -b(indirection.)275 2977 y(In)39 b(eac)m(h)i(of)g(the)f(cases)h(b)s(elo) +(left)i(brace)e(in)g(order)g(to)150 3601 y(in)m(tro)s(duce)30 +b(indirection.)275 3748 y(In)39 b(eac)m(h)i(of)g(the)f(cases)h(b)s(elo) m(w,)i Fq(w)m(ord)h Ft(is)c(sub)5 b(ject)40 b(to)h(tilde)f(expansion,)j -(parameter)e(expansion,)150 3087 y(command)30 b(substitution,)g(and)g -(arithmetic)i(expansion.)275 3215 y(When)h(not)h(p)s(erforming)e +(parameter)e(expansion,)150 3857 y(command)30 b(substitution,)g(and)g +(arithmetic)i(expansion.)275 4004 y(When)h(not)h(p)s(erforming)e (substring)h(expansion,)h(using)f(the)h(form)f(describ)s(ed)g(b)s(elo)m -(w,)h(Bash)g(tests)150 3325 y(for)44 b(a)i(parameter)f(that)g(is)g +(w,)h(Bash)g(tests)150 4114 y(for)44 b(a)i(parameter)f(that)g(is)g (unset)f(or)h(n)m(ull.)84 b(Omitting)45 b(the)g(colon)h(results)e(in)g -(a)i(test)f(only)g(for)g(a)150 3434 y(parameter)36 b(that)f(is)g +(a)i(test)f(only)g(for)g(a)150 4223 y(parameter)36 b(that)f(is)g (unset.)55 b(Put)34 b(another)i(w)m(a)m(y)-8 b(,)38 b(if)d(the)g(colon) h(is)f(included,)h(the)f(op)s(erator)g(tests)h(for)150 -3544 y(b)s(oth)22 b Fq(parameter)7 b Ft('s)22 b(existence)i(and)e(that) +4333 y(b)s(oth)22 b Fq(parameter)7 b Ft('s)22 b(existence)i(and)e(that) h(its)g(v)-5 b(alue)23 b(is)g(not)f(n)m(ull;)k(if)c(the)h(colon)g(is)g -(omitted,)i(the)e(op)s(erator)150 3654 y(tests)31 b(only)g(for)f -(existence.)150 3801 y Fs(${)p Fi(parameter)11 b Fs(:)p -Fp(\000)p Fi(word)g Fs(})630 3911 y Ft(If)30 b Fq(parameter)37 +(omitted,)i(the)e(op)s(erator)150 4442 y(tests)31 b(only)g(for)f +(existence.)150 4620 y Fs(${)p Fi(parameter)11 b Fs(:)p +Fp(\000)p Fi(word)g Fs(})630 4730 y Ft(If)30 b Fq(parameter)37 b Ft(is)30 b(unset)g(or)h(n)m(ull,)f(the)h(expansion)f(of)g Fq(w)m(ord)k Ft(is)c(substituted.)40 b(Otherwise,)630 -4020 y(the)31 b(v)-5 b(alue)30 b(of)h Fq(parameter)37 -b Ft(is)31 b(substituted.)150 4168 y Fs(${)p Fi(parameter)11 -b Fs(:=)p Fi(word)g Fs(})630 4278 y Ft(If)32 b Fq(parameter)40 +4839 y(the)31 b(v)-5 b(alue)30 b(of)h Fq(parameter)37 +b Ft(is)31 b(substituted.)150 5011 y Fs(${)p Fi(parameter)11 +b Fs(:=)p Fi(word)g Fs(})630 5121 y Ft(If)32 b Fq(parameter)40 b Ft(is)32 b(unset)g(or)h(n)m(ull,)g(the)f(expansion)h(of)f Fq(w)m(ord)k Ft(is)d(assigned)f(to)i Fq(parameter)7 b -Ft(.)630 4387 y(The)30 b(v)-5 b(alue)32 b(of)f Fq(parameter)38 +Ft(.)630 5230 y(The)30 b(v)-5 b(alue)32 b(of)f Fq(parameter)38 b Ft(is)31 b(then)g(substituted.)42 b(P)m(ositional)33 -b(parameters)e(and)f(sp)s(ecial)630 4497 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 -4644 y Fs(${)p Fi(parameter)11 b Fs(:?)p Fi(word)g Fs(})630 -4754 y Ft(If)26 b Fq(parameter)33 b Ft(is)26 b(n)m(ull)g(or)g(unset,)h -(the)f(expansion)g(of)g Fq(w)m(ord)k Ft(\(or)c(a)h(message)g(to)g(that) -f(e\013ect)630 4864 y(if)i Fq(w)m(ord)j Ft(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 4973 y(in)m(teractiv)m(e,)33 b(exits.)42 -b(Otherwise,)30 b(the)h(v)-5 b(alue)31 b(of)f Fq(parameter)38 -b Ft(is)30 b(substituted.)150 5121 y Fs(${)p Fi(parameter)11 -b Fs(:+)p Fi(word)g Fs(})630 5230 y Ft(If)35 b Fq(parameter)42 -b Ft(is)36 b(n)m(ull)f(or)h(unset,)g(nothing)g(is)f(substituted,)i -(otherwise)e(the)h(expansion)630 5340 y(of)31 b Fq(w)m(ord)i -Ft(is)e(substituted.)p eop end +b(parameters)e(and)f(sp)s(ecial)630 5340 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(.)p +eop end %%Page: 22 28 TeXDict begin 22 27 bop 150 -116 a Ft(22)2572 b(Bash)31 b(Reference)g(Man)m(ual)150 299 y Fs(${)p Fi(parameter)11 -b Fs(:)p Fi(offset)g Fs(})150 408 y(${)p Fi(parameter)g +b Fs(:?)p Fi(word)g Fs(})630 408 y Ft(If)26 b Fq(parameter)33 +b Ft(is)26 b(n)m(ull)g(or)g(unset,)h(the)f(expansion)g(of)g +Fq(w)m(ord)k Ft(\(or)c(a)h(message)g(to)g(that)f(e\013ect)630 +518 y(if)i Fq(w)m(ord)j Ft(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 +628 y(in)m(teractiv)m(e,)33 b(exits.)42 b(Otherwise,)30 +b(the)h(v)-5 b(alue)31 b(of)f Fq(parameter)38 b Ft(is)30 +b(substituted.)150 774 y Fs(${)p Fi(parameter)11 b Fs(:+)p +Fi(word)g Fs(})630 883 y Ft(If)35 b Fq(parameter)42 b +Ft(is)36 b(n)m(ull)f(or)h(unset,)g(nothing)g(is)f(substituted,)i +(otherwise)e(the)h(expansion)630 993 y(of)31 b Fq(w)m(ord)i +Ft(is)e(substituted.)150 1139 y Fs(${)p Fi(parameter)11 +b Fs(:)p Fi(offset)g Fs(})150 1249 y(${)p Fi(parameter)g Fs(:)p Fi(offset)g Fs(:)p Fi(le)o(ngt)o(h)g Fs(})630 -518 y Ft(Expands)44 b(to)i(up)e(to)i Fq(length)g Ft(c)m(haracters)h(of) -e Fq(parameter)53 b Ft(starting)46 b(at)g(the)f(c)m(haracter)630 -628 y(sp)s(eci\014ed)30 b(b)m(y)g Fq(o\013set)r Ft(.)43 +1358 y Ft(Expands)44 b(to)i(up)e(to)i Fq(length)g Ft(c)m(haracters)h +(of)e Fq(parameter)53 b Ft(starting)46 b(at)g(the)f(c)m(haracter)630 +1468 y(sp)s(eci\014ed)30 b(b)m(y)g Fq(o\013set)r Ft(.)43 b(If)30 b Fq(length)h Ft(is)g(omitted,)g(expands)f(to)h(the)g -(substring)f(of)g Fq(parameter)630 737 y Ft(starting)38 +(substring)f(of)g Fq(parameter)630 1577 y Ft(starting)38 b(at)g(the)f(c)m(haracter)i(sp)s(eci\014ed)d(b)m(y)h Fq(o\013set)r Ft(.)62 b Fq(length)38 b Ft(and)e Fq(o\013set)k -Ft(are)e(arithmetic)630 847 y(expressions)30 b(\(see)i(Section)g(6.5)g +Ft(are)e(arithmetic)630 1687 y(expressions)30 b(\(see)i(Section)g(6.5)g ([Shell)f(Arithmetic],)h(page)g(80\).)43 b(This)30 b(is)h(referred)f -(to)i(as)630 956 y(Substring)d(Expansion.)630 1088 y(If)c +(to)i(as)630 1797 y(Substring)d(Expansion.)630 1924 y(If)c Fq(o\013set)k Ft(ev)-5 b(aluates)27 b(to)g(a)f(n)m(um)m(b)s(er)e(less)i (than)g(zero,)h(the)f(v)-5 b(alue)26 b(is)g(used)f(as)h(an)g(o\013set)g -(from)630 1198 y(the)c(end)e(of)i(the)f(v)-5 b(alue)22 +(from)630 2034 y(the)c(end)e(of)i(the)f(v)-5 b(alue)22 b(of)g Fq(parameter)7 b Ft(.)38 b(If)20 b Fq(length)i Ft(ev)-5 b(aluates)23 b(to)f(a)g(n)m(um)m(b)s(er)e(less)i(than)f(zero,) -630 1307 y(and)g Fq(parameter)29 b Ft(is)21 b(not)h(`)p +630 2144 y(and)g Fq(parameter)29 b Ft(is)21 b(not)h(`)p Fs(@)p Ft(')g(and)f(not)h(an)g(indexed)f(or)h(asso)s(ciativ)m(e)i(arra) -m(y)-8 b(,)25 b(it)d(is)g(in)m(terpreted)630 1417 y(as)37 +m(y)-8 b(,)25 b(it)d(is)g(in)m(terpreted)630 2253 y(as)37 b(an)f(o\013set)i(from)e(the)h(end)f(of)h(the)f(v)-5 b(alue)37 b(of)g Fq(parameter)44 b Ft(rather)36 b(than)h(a)f(n)m(um)m -(b)s(er)g(of)630 1526 y(c)m(haracters,)49 b(and)42 b(the)i(expansion)f +(b)s(er)g(of)630 2363 y(c)m(haracters,)49 b(and)42 b(the)i(expansion)f (is)h(the)g(c)m(haracters)h(b)s(et)m(w)m(een)f(the)g(t)m(w)m(o)g -(o\013sets.)81 b(If)630 1636 y Fq(parameter)37 b Ft(is)31 +(o\013sets.)81 b(If)630 2472 y Fq(parameter)37 b Ft(is)31 b(`)p Fs(@)p Ft(',)g(the)g(result)f(is)h Fq(length)g Ft(p)s(ositional)g(parameters)g(b)s(eginning)e(at)j Fq(o\013set)r -Ft(.)630 1745 y(If)k Fq(parameter)43 b Ft(is)36 b(an)g(indexed)g(arra)m +Ft(.)630 2582 y(If)k Fq(parameter)43 b Ft(is)36 b(an)g(indexed)g(arra)m (y)g(name)g(subscripted)f(b)m(y)h(`)p Fs(@)p Ft(')g(or)h(`)p -Fs(*)p Ft(',)h(the)e(result)g(is)630 1855 y(the)h Fq(length)g +Fs(*)p Ft(',)h(the)e(result)g(is)630 2692 y(the)h Fq(length)g Ft(mem)m(b)s(ers)f(of)h(the)g(arra)m(y)g(b)s(eginning)f(with)h Fs(${)p Fi(parameter)11 b Fs([)p Fi(offset)g Fs(])o(})p -Ft(.)54 b(A)630 1965 y(negativ)m(e)33 b Fq(o\013set)g +Ft(.)54 b(A)630 2801 y(negativ)m(e)33 b Fq(o\013set)g Ft(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 2074 y(sp)s(eci\014ed)k(arra)m(y)-8 +(maxim)m(um)h(index)f(of)h(the)630 2911 y(sp)s(eci\014ed)k(arra)m(y)-8 b(.)57 b(Substring)34 b(expansion)i(applied)f(to)h(an)g(asso)s(ciativ)m -(e)i(arra)m(y)e(pro)s(duces)630 2184 y(unde\014ned)28 -b(results.)630 2315 y(Note)37 b(that)f(a)g(negativ)m(e)i(o\013set)f(m)m +(e)i(arra)m(y)e(pro)s(duces)630 3020 y(unde\014ned)28 +b(results.)630 3148 y(Note)37 b(that)f(a)g(negativ)m(e)i(o\013set)f(m)m (ust)f(b)s(e)f(separated)h(from)f(the)h(colon)h(b)m(y)e(at)i(least)g -(one)630 2425 y(space)g(to)g(a)m(v)m(oid)g(b)s(eing)f(confused)f(with)h +(one)630 3258 y(space)g(to)g(a)m(v)m(oid)g(b)s(eing)f(confused)f(with)h (the)h(`)p Fs(:-)p Ft(')f(expansion.)57 b(Substring)35 -b(indexing)h(is)630 2534 y(zero-based)24 b(unless)f(the)h(p)s +b(indexing)h(is)630 3367 y(zero-based)24 b(unless)f(the)h(p)s (ositional)g(parameters)g(are)g(used,)g(in)g(whic)m(h)f(case)h(the)g -(indexing)630 2644 y(starts)30 b(at)g(1)f(b)m(y)h(default.)40 +(indexing)630 3477 y(starts)30 b(at)g(1)f(b)m(y)h(default.)40 b(If)29 b Fq(o\013set)j Ft(is)e(0,)g(and)f(the)g(p)s(ositional)h -(parameters)g(are)g(used,)f Fs($@)630 2754 y Ft(is)h(pre\014xed)g(to)h -(the)f(list.)150 2907 y Fs(${!)p Fi(prefix)11 b Fs(*})150 -3017 y(${!)p Fi(prefix)g Fs(@})630 3126 y Ft(Expands)23 +(parameters)g(are)g(used,)f Fs($@)630 3587 y Ft(is)h(pre\014xed)g(to)h +(the)f(list.)150 3733 y Fs(${!)p Fi(prefix)11 b Fs(*})150 +3842 y(${!)p Fi(prefix)g Fs(@})630 3952 y Ft(Expands)23 b(to)i(the)g(names)f(of)h(v)-5 b(ariables)25 b(whose)f(names)g(b)s (egin)g(with)g Fq(pre\014x)6 b Ft(,)25 b(separated)g(b)m(y)630 -3236 y(the)k(\014rst)f(c)m(haracter)j(of)e(the)g Fs(IFS)f +4061 y(the)k(\014rst)f(c)m(haracter)j(of)e(the)g Fs(IFS)f Ft(sp)s(ecial)i(v)-5 b(ariable.)41 b(When)29 b(`)p Fs(@)p -Ft(')g(is)g(used)f(and)h(the)g(expan-)630 3345 y(sion)35 +Ft(')g(is)g(used)f(and)h(the)g(expan-)630 4171 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 -3455 y(w)m(ord.)150 3608 y Fs(${!)p Fi(name)11 b Fs([@]})150 -3718 y(${!)p Fi(name)g Fs([*]})630 3828 y Ft(If)26 b +4281 y(w)m(ord.)150 4427 y Fs(${!)p Fi(name)11 b Fs([@]})150 +4536 y(${!)p Fi(name)g Fs([*]})630 4646 y Ft(If)26 b Fq(name)32 b Ft(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 3937 y(in)c Fq(name)5 b Ft(.)39 b(If)23 +(assigned)630 4756 y(in)c Fq(name)5 b Ft(.)39 b(If)23 b Fq(name)30 b Ft(is)24 b(not)g(an)g(arra)m(y)-8 b(,)27 b(expands)c(to)i(0)f(if)h Fq(name)k Ft(is)24 b(set)h(and)e(n)m(ull)h -(otherwise.)630 4047 y(When)39 b(`)p Fs(@)p Ft(')h(is)f(used)g(and)f +(otherwise.)630 4865 y(When)39 b(`)p Fs(@)p Ft(')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 4156 y(expands)30 b(to)h(a)f(separate)i(w)m(ord.)150 -4310 y Fs(${#)p Fi(parameter)11 b Fs(})630 4419 y Ft(The)40 +(k)m(ey)630 4975 y(expands)30 b(to)h(a)f(separate)i(w)m(ord.)150 +5121 y Fs(${#)p Fi(parameter)11 b Fs(})630 5230 y Ft(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 Fq(parameter)47 b Ft(is)40 b(substituted.)630 -4529 y(If)i Fq(parameter)50 b Ft(is)43 b(`)p Fs(*)p Ft(')g(or)g(`)p +5340 y(If)i Fq(parameter)50 b Ft(is)43 b(`)p Fs(*)p Ft(')g(or)g(`)p Fs(@)p Ft(',)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 4639 y(parameters.)i(If)32 -b Fq(parameter)38 b Ft(is)32 b(an)g(arra)m(y)g(name)g(subscripted)f(b)m -(y)g(`)p Fs(*)p Ft(')h(or)g(`)p Fs(@)p Ft(',)g(the)g(v)-5 -b(alue)630 4748 y(substituted)30 b(is)g(the)h(n)m(um)m(b)s(er)e(of)h -(elemen)m(ts)i(in)e(the)h(arra)m(y)-8 b(.)150 4902 y -Fs(${)p Fi(parameter)11 b Fs(#)p Fi(word)g Fs(})150 5011 -y(${)p Fi(parameter)g Fs(##)p Fi(word)g Fs(})630 5121 -y Ft(The)31 b Fq(w)m(ord)k Ft(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 -5230 y(Section)k(3.5.8)h([Filename)g(Expansion],)g(page)f(25\).)56 -b(If)35 b(the)h(pattern)f(matc)m(hes)i(the)e(b)s(e-)630 -5340 y(ginning)g(of)g(the)g(expanded)f(v)-5 b(alue)36 -b(of)f Fq(parameter)7 b Ft(,)36 b(then)f(the)g(result)g(of)g(the)g -(expansion)p eop end +(b)s(er)f(of)h(p)s(ositional)p eop end %%Page: 23 29 TeXDict begin 23 28 bop 150 -116 a Ft(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(23)630 299 -y(is)28 b(the)g(expanded)e(v)-5 b(alue)28 b(of)g Fq(parameter)35 -b Ft(with)27 b(the)h(shortest)g(matc)m(hing)h(pattern)f(\(the)g(`)p -Fs(#)p Ft(')630 408 y(case\))e(or)f(the)g(longest)g(matc)m(hing)h -(pattern)f(\(the)g(`)p Fs(##)p Ft(')g(case\))h(deleted.)39 -b(If)24 b Fq(parameter)32 b Ft(is)25 b(`)p Fs(@)p Ft(')630 -518 y(or)j(`)p Fs(*)p Ft(',)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 628 y(turn,)i(and)g(the)h(expansion)g(is)g(the)g -(resultan)m(t)g(list.)45 b(If)32 b Fq(parameter)38 b -Ft(is)32 b(an)g(arra)m(y)g(v)-5 b(ariable)630 737 y(subscripted)39 -b(with)g(`)p Fs(@)p Ft(')h(or)g(`)p Fs(*)p Ft(',)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 -847 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 993 +y(parameters.)45 b(If)32 b Fq(parameter)38 b Ft(is)32 +b(an)g(arra)m(y)g(name)g(subscripted)f(b)m(y)g(`)p Fs(*)p +Ft(')h(or)g(`)p Fs(@)p Ft(',)g(the)g(v)-5 b(alue)630 +408 y(substituted)30 b(is)g(the)h(n)m(um)m(b)s(er)e(of)h(elemen)m(ts)i +(in)e(the)h(arra)m(y)-8 b(.)150 573 y Fs(${)p Fi(parameter)11 +b Fs(#)p Fi(word)g Fs(})150 682 y(${)p Fi(parameter)g +Fs(##)p Fi(word)g Fs(})630 792 y Ft(The)31 b Fq(w)m(ord)k +Ft(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 902 y(Section)k(3.5.8)h([Filename)g +(Expansion],)g(page)f(25\).)56 b(If)35 b(the)h(pattern)f(matc)m(hes)i +(the)e(b)s(e-)630 1011 y(ginning)g(of)g(the)g(expanded)f(v)-5 +b(alue)36 b(of)f Fq(parameter)7 b Ft(,)36 b(then)f(the)g(result)g(of)g +(the)g(expansion)630 1121 y(is)28 b(the)g(expanded)e(v)-5 +b(alue)28 b(of)g Fq(parameter)35 b Ft(with)27 b(the)h(shortest)g(matc)m +(hing)h(pattern)f(\(the)g(`)p Fs(#)p Ft(')630 1230 y(case\))e(or)f(the) +g(longest)g(matc)m(hing)h(pattern)f(\(the)g(`)p Fs(##)p +Ft(')g(case\))h(deleted.)39 b(If)24 b Fq(parameter)32 +b Ft(is)25 b(`)p Fs(@)p Ft(')630 1340 y(or)j(`)p Fs(*)p +Ft(',)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 +1450 y(turn,)i(and)g(the)h(expansion)g(is)g(the)g(resultan)m(t)g(list.) +45 b(If)32 b Fq(parameter)38 b Ft(is)32 b(an)g(arra)m(y)g(v)-5 +b(ariable)630 1559 y(subscripted)39 b(with)g(`)p Fs(@)p +Ft(')h(or)g(`)p Fs(*)p Ft(',)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 +1669 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 1833 y Fs(${)p Fi(parameter)11 b Fs(\045)p Fi(word)g Fs(})150 -1103 y(${)p Fi(parameter)g Fs(\045\045)p Fi(word)g Fs(})630 -1212 y Ft(The)35 b Fq(w)m(ord)k Ft(is)c(expanded)g(to)h(pro)s(duce)e(a) +1943 y(${)p Fi(parameter)g Fs(\045\045)p Fi(word)g Fs(})630 +2052 y Ft(The)35 b Fq(w)m(ord)k Ft(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 1322 y(the)43 b(pattern)f(matc)m(hes)i(a)e(trailing)i(p)s +b(If)630 2162 y(the)43 b(pattern)f(matc)m(hes)i(a)e(trailing)i(p)s (ortion)e(of)g(the)h(expanded)e(v)-5 b(alue)43 b(of)g -Fq(parameter)7 b Ft(,)630 1431 y(then)39 b(the)g(result)g(of)h(the)f +Fq(parameter)7 b Ft(,)630 2271 y(then)39 b(the)g(result)g(of)h(the)f (expansion)g(is)h(the)f(v)-5 b(alue)40 b(of)f Fq(parameter)46 -b Ft(with)39 b(the)h(shortest)630 1541 y(matc)m(hing)31 +b Ft(with)39 b(the)h(shortest)630 2381 y(matc)m(hing)31 b(pattern)e(\(the)h(`)p Fs(\045)p Ft(')g(case\))h(or)e(the)h(longest)h (matc)m(hing)f(pattern)g(\(the)g(`)p Fs(\045\045)p Ft(')g(case\))630 -1650 y(deleted.)49 b(If)32 b Fq(parameter)40 b Ft(is)33 +2491 y(deleted.)49 b(If)32 b Fq(parameter)40 b Ft(is)33 b(`)p Fs(@)p Ft(')g(or)g(`)p Fs(*)p Ft(',)h(the)f(pattern)g(remo)m(v)-5 -b(al)34 b(op)s(eration)g(is)f(applied)f(to)630 1760 y(eac)m(h)38 +b(al)34 b(op)s(eration)g(is)f(applied)f(to)630 2600 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 1870 y Fq(parameter)38 +(the)f(resultan)m(t)h(list.)61 b(If)630 2710 y Fq(parameter)38 b Ft(is)32 b(an)f(arra)m(y)h(v)-5 b(ariable)32 b(subscripted)e(with)h (`)p Fs(@)p Ft(')g(or)h(`)p Fs(*)p Ft(',)g(the)f(pattern)h(remo)m(v)-5 -b(al)630 1979 y(op)s(eration)30 b(is)g(applied)f(to)i(eac)m(h)g(mem)m +b(al)630 2819 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 2089 y(the)h(resultan)m(t)g(list.)150 2235 y +(is)630 2929 y(the)h(resultan)m(t)g(list.)150 3093 y Fs(${)p Fi(parameter)11 b Fs(/)p Fi(pattern)g Fs(/)p -Fi(s)o(tri)o(ng)f Fs(})630 2345 y Ft(The)37 b Fq(pattern)g +Fi(s)o(tri)o(ng)f Fs(})630 3203 y Ft(The)37 b Fq(pattern)g Ft(is)g(expanded)g(to)h(pro)s(duce)e(a)h(pattern)g(just)g(as)h(in)e -(\014lename)i(expansion.)630 2454 y Fq(P)m(arameter)46 +(\014lename)i(expansion.)630 3313 y Fq(P)m(arameter)46 b Ft(is)38 b(expanded)f(and)g(the)i(longest)g(matc)m(h)g(of)f Fq(pattern)g Ft(against)h(its)f(v)-5 b(alue)39 b(is)630 -2564 y(replaced)33 b(with)f Fq(string)8 b Ft(.)47 b(If)33 +3422 y(replaced)33 b(with)f Fq(string)8 b Ft(.)47 b(If)33 b Fq(pattern)f Ft(b)s(egins)g(with)h(`)p Fs(/)p Ft(',)g(all)h(matc)m -(hes)f(of)g Fq(pattern)g Ft(are)g(re-)630 2673 y(placed)27 +(hes)f(of)g Fq(pattern)g Ft(are)g(re-)630 3532 y(placed)27 b(with)f Fq(string)8 b Ft(.)40 b(Normally)27 b(only)g(the)g(\014rst)f (matc)m(h)h(is)g(replaced.)40 b(If)26 b Fq(pattern)g -Ft(b)s(egins)630 2783 y(with)33 b(`)p Fs(#)p Ft(',)i(it)f(m)m(ust)f +Ft(b)s(egins)630 3641 y(with)33 b(`)p Fs(#)p Ft(',)i(it)f(m)m(ust)f (matc)m(h)i(at)f(the)g(b)s(eginning)f(of)g(the)h(expanded)f(v)-5 -b(alue)34 b(of)g Fq(parameter)7 b Ft(.)630 2892 y(If)34 +b(alue)34 b(of)g Fq(parameter)7 b Ft(.)630 3751 y(If)34 b Fq(pattern)g Ft(b)s(egins)g(with)g(`)p Fs(\045)p Ft(',)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 3002 y Fq(parameter)7 b Ft(.)40 b(If)29 +b(alue)35 b(of)630 3861 y Fq(parameter)7 b Ft(.)40 b(If)29 b Fq(string)36 b Ft(is)29 b(n)m(ull,)h(matc)m(hes)g(of)f Fq(pattern)g Ft(are)g(deleted)h(and)e(the)h Fs(/)f Ft(follo)m(wing)630 -3112 y Fq(pattern)34 b Ft(ma)m(y)g(b)s(e)f(omitted.)51 +3970 y Fq(pattern)34 b Ft(ma)m(y)g(b)s(e)f(omitted.)51 b(If)33 b Fq(parameter)41 b Ft(is)33 b(`)p Fs(@)p Ft(')h(or)g(`)p Fs(*)p Ft(',)g(the)g(substitution)f(op)s(eration)630 -3221 y(is)38 b(applied)g(to)g(eac)m(h)h(p)s(ositional)g(parameter)f(in) +4080 y(is)38 b(applied)g(to)g(eac)m(h)h(p)s(ositional)g(parameter)f(in) g(turn,)h(and)e(the)h(expansion)g(is)g(the)g(re-)630 -3331 y(sultan)m(t)f(list.)59 b(If)36 b Fq(parameter)43 +4189 y(sultan)m(t)f(list.)59 b(If)36 b Fq(parameter)43 b Ft(is)36 b(an)g(arra)m(y)h(v)-5 b(ariable)37 b(subscripted)e(with)h -(`)p Fs(@)p Ft(')g(or)h(`)p Fs(*)p Ft(',)h(the)630 3440 +(`)p Fs(@)p Ft(')g(or)h(`)p Fs(*)p Ft(',)h(the)630 4299 y(substitution)30 b(op)s(eration)h(is)f(applied)g(to)h(eac)m(h)g(mem)m (b)s(er)f(of)g(the)h(arra)m(y)g(in)f(turn,)f(and)h(the)630 -3550 y(expansion)g(is)h(the)f(resultan)m(t)h(list.)150 -3696 y Fs(${)p Fi(parameter)11 b Fs(^)p Fi(pattern)g -Fs(})150 3806 y(${)p Fi(parameter)g Fs(^^)p Fi(pattern)g -Fs(})150 3915 y(${)p Fi(parameter)g Fs(,)p Fi(pattern)g -Fs(})150 4025 y(${)p Fi(parameter)g Fs(,,)p Fi(pattern)g -Fs(})630 4134 y Ft(This)35 b(expansion)h(mo)s(di\014es)f(the)h(case)h +4408 y(expansion)g(is)h(the)f(resultan)m(t)h(list.)150 +4573 y Fs(${)p Fi(parameter)11 b Fs(^)p Fi(pattern)g +Fs(})150 4682 y(${)p Fi(parameter)g Fs(^^)p Fi(pattern)g +Fs(})150 4792 y(${)p Fi(parameter)g Fs(,)p Fi(pattern)g +Fs(})150 4902 y(${)p Fi(parameter)g Fs(,,)p Fi(pattern)g +Fs(})630 5011 y Ft(This)35 b(expansion)h(mo)s(di\014es)f(the)h(case)h (of)f(alphab)s(etic)h(c)m(haracters)g(in)f Fq(parameter)7 -b Ft(.)57 b(The)630 4244 y Fq(pattern)36 b Ft(is)f(expanded)g(to)h(pro) +b Ft(.)57 b(The)630 5121 y Fq(pattern)36 b Ft(is)f(expanded)g(to)h(pro) s(duce)e(a)i(pattern)g(just)f(as)h(in)f(\014lename)g(expansion.)56 -b(The)630 4354 y(`)p Fs(^)p Ft(')36 b(op)s(erator)g(con)m(v)m(erts)h +b(The)630 5230 y(`)p Fs(^)p Ft(')36 b(op)s(erator)g(con)m(v)m(erts)h (lo)m(w)m(ercase)h(letters)f(matc)m(hing)g Fq(pattern)f -Ft(to)g(upp)s(ercase;)i(the)e(`)p Fs(,)p Ft(')630 4463 +Ft(to)g(upp)s(ercase;)i(the)e(`)p Fs(,)p Ft(')630 5340 y(op)s(erator)g(con)m(v)m(erts)i(matc)m(hing)f(upp)s(ercase)e(letters)i (to)g(lo)m(w)m(ercase.)59 b(The)36 b(`)p Fs(^^)p Ft(')g(and)f(`)p -Fs(,,)p Ft(')630 4573 y(expansions)c(con)m(v)m(ert)i(eac)m(h)g(matc)m -(hed)f(c)m(haracter)h(in)e(the)h(expanded)f(v)-5 b(alue;)32 -b(the)g(`)p Fs(^)p Ft(')g(and)630 4682 y(`)p Fs(,)p Ft(')24 -b(expansions)f(matc)m(h)i(and)e(con)m(v)m(ert)j(only)d(the)h(\014rst)f -(c)m(haracter)j(in)d(the)h(expanded)f(v)-5 b(alue.)630 -4792 y(If)31 b Fq(pattern)g Ft(is)g(omitted,)i(it)f(is)f(treated)h(lik) -m(e)h(a)e(`)p Fs(?)p Ft(',)h(whic)m(h)f(matc)m(hes)i(ev)m(ery)f(c)m -(haracter.)44 b(If)630 4902 y Fq(parameter)37 b Ft(is)31 -b(`)p Fs(@)p Ft(')f(or)h(`)p Fs(*)p Ft(',)f(the)h(case)g(mo)s -(di\014cation)g(op)s(eration)g(is)f(applied)g(to)i(eac)m(h)f(p)s(osi-) -630 5011 y(tional)26 b(parameter)e(in)h(turn,)f(and)g(the)h(expansion)f -(is)g(the)h(resultan)m(t)g(list.)40 b(If)23 b Fq(parameter)32 -b Ft(is)630 5121 y(an)e(arra)m(y)g(v)-5 b(ariable)31 -b(subscripted)d(with)i(`)p Fs(@)p Ft(')g(or)f(`)p Fs(*)p -Ft(',)i(the)f(case)g(mo)s(di\014cation)h(op)s(eration)f(is)630 -5230 y(applied)d(to)g(eac)m(h)h(mem)m(b)s(er)e(of)h(the)g(arra)m(y)g -(in)g(turn,)g(and)f(the)h(expansion)f(is)h(the)g(resultan)m(t)630 -5340 y(list.)p eop end +Fs(,,)p Ft(')p eop end %%Page: 24 30 TeXDict begin 24 29 bop 150 -116 a Ft(24)2572 b(Bash)31 -b(Reference)g(Man)m(ual)150 299 y Fj(3.5.4)63 b(Command)41 -b(Substitution)150 446 y Ft(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 -555 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 684 y Fs($\()p Fi(command)11 -b Fs(\))150 812 y Ft(or)390 940 y Fs(`)p Fi(command)g -Fs(`)150 1069 y Ft(Bash)45 b(p)s(erforms)f(the)h(expansion)f(b)m(y)h +b(Reference)g(Man)m(ual)630 299 y(expansions)g(con)m(v)m(ert)i(eac)m(h) +g(matc)m(hed)f(c)m(haracter)h(in)e(the)h(expanded)f(v)-5 +b(alue;)32 b(the)g(`)p Fs(^)p Ft(')g(and)630 408 y(`)p +Fs(,)p Ft(')24 b(expansions)f(matc)m(h)i(and)e(con)m(v)m(ert)j(only)d +(the)h(\014rst)f(c)m(haracter)j(in)d(the)h(expanded)f(v)-5 +b(alue.)630 518 y(If)31 b Fq(pattern)g Ft(is)g(omitted,)i(it)f(is)f +(treated)h(lik)m(e)h(a)e(`)p Fs(?)p Ft(',)h(whic)m(h)f(matc)m(hes)i(ev) +m(ery)f(c)m(haracter.)44 b(If)630 628 y Fq(parameter)37 +b Ft(is)31 b(`)p Fs(@)p Ft(')f(or)h(`)p Fs(*)p Ft(',)f(the)h(case)g(mo) +s(di\014cation)g(op)s(eration)g(is)f(applied)g(to)i(eac)m(h)f(p)s(osi-) +630 737 y(tional)26 b(parameter)e(in)h(turn,)f(and)g(the)h(expansion)f +(is)g(the)h(resultan)m(t)g(list.)40 b(If)23 b Fq(parameter)32 +b Ft(is)630 847 y(an)e(arra)m(y)g(v)-5 b(ariable)31 b(subscripted)d +(with)i(`)p Fs(@)p Ft(')g(or)f(`)p Fs(*)p Ft(',)i(the)f(case)g(mo)s +(di\014cation)h(op)s(eration)f(is)630 956 y(applied)d(to)g(eac)m(h)h +(mem)m(b)s(er)e(of)h(the)g(arra)m(y)g(in)g(turn,)g(and)f(the)h +(expansion)f(is)h(the)g(resultan)m(t)630 1066 y(list.)150 +1263 y Fj(3.5.4)63 b(Command)41 b(Substitution)150 1410 +y Ft(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 +1519 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 1653 y Fs($\()p Fi(command)11 +b Fs(\))150 1786 y Ft(or)390 1919 y Fs(`)p Fi(command)g +Fs(`)150 2052 y Ft(Bash)45 b(p)s(erforms)f(the)h(expansion)f(b)m(y)h (executing)i Fq(command)h Ft(and)c(replacing)i(the)f(command)g(sub-)150 -1178 y(stitution)c(with)f(the)g(standard)g(output)g(of)g(the)g +2162 y(stitution)c(with)f(the)g(standard)g(output)g(of)g(the)g (command,)j(with)d(an)m(y)h(trailing)g(newlines)f(deleted.)150 -1288 y(Em)m(b)s(edded)30 b(newlines)h(are)h(not)f(deleted,)i(but)e +2271 y(Em)m(b)s(edded)30 b(newlines)h(are)h(not)f(deleted,)i(but)e (they)g(ma)m(y)h(b)s(e)f(remo)m(v)m(ed)i(during)d(w)m(ord)h(splitting.) -44 b(The)150 1398 y(command)21 b(substitution)g Fs($\(cat)29 +44 b(The)150 2381 y(command)21 b(substitution)g Fs($\(cat)29 b Fi(file)11 b Fs(\))20 b Ft(can)i(b)s(e)f(replaced)g(b)m(y)h(the)g (equiv)-5 b(alen)m(t)22 b(but)f(faster)h Fs($\(<)30 b -Fi(file)11 b Fs(\))p Ft(.)275 1526 y(When)33 b(the)i(old-st)m(yle)h +Fi(file)11 b Fs(\))p Ft(.)275 2514 y(When)33 b(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 1635 y(meaning)k(except)h(when)e(follo)m +(retains)h(its)f(literal)150 2624 y(meaning)k(except)h(when)e(follo)m (w)m(ed)j(b)m(y)e(`)p Fs($)p Ft(',)j(`)p Fs(`)p Ft(',)f(or)e(`)p Fs(\\)p Ft('.)64 b(The)38 b(\014rst)f(bac)m(kquote)j(not)e(preceded)g -(b)m(y)g(a)150 1745 y(bac)m(kslash)j(terminates)g(the)f(command)g +(b)m(y)g(a)150 2733 y(bac)m(kslash)j(terminates)g(the)f(command)g (substitution.)69 b(When)40 b(using)g(the)g Fs($\()p -Fi(command)11 b Fs(\))37 b Ft(form,)42 b(all)150 1855 +Fi(command)11 b Fs(\))37 b Ft(form,)42 b(all)150 2843 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 1983 y(Command)22 b(substitutions)g(ma)m(y)i(b)s(e)e(nested.)39 +b(.)275 2976 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 2093 y(the)31 b(inner)e(bac)m(kquotes)j(with)e(bac)m -(kslashes.)275 2221 y(If)e(the)i(substitution)e(app)s(ears)h(within)g +(escap)s(e)150 3086 y(the)31 b(inner)e(bac)m(kquotes)j(with)e(bac)m +(kslashes.)275 3219 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 2330 y(are)i(not)f(p)s(erformed)f(on)h(the)h(results.)150 -2517 y Fj(3.5.5)63 b(Arithmetic)40 b(Expansion)150 2664 +150 3329 y(are)i(not)f(p)s(erformed)f(on)h(the)h(results.)150 +3526 y Fj(3.5.5)63 b(Arithmetic)40 b(Expansion)150 3672 y Ft(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 2774 y(of)31 b(the)f(result.)41 b(The)30 -b(format)g(for)g(arithmetic)i(expansion)e(is:)390 2902 -y Fs($\(\()47 b Fi(expression)55 b Fs(\)\))275 3031 y +(substitution)150 3782 y(of)31 b(the)f(result.)41 b(The)30 +b(format)g(for)g(arithmetic)i(expansion)e(is:)390 3915 +y Fs($\(\()47 b Fi(expression)55 b Fs(\)\))275 4049 y Ft(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 -3140 y(the)27 b(paren)m(theses)g(is)g(not)g(treated)h(sp)s(ecially)-8 +4158 y(the)27 b(paren)m(theses)g(is)g(not)g(treated)h(sp)s(ecially)-8 b(.)41 b(All)27 b(tok)m(ens)h(in)e(the)h(expression)g(undergo)f -(parameter)h(ex-)150 3250 y(pansion,)h(command)f(substitution,)h(and)f +(parameter)h(ex-)150 4268 y(pansion,)h(command)f(substitution,)h(and)f (quote)i(remo)m(v)-5 b(al.)41 b(Arithmetic)28 b(expansions)g(ma)m(y)g -(b)s(e)f(nested.)275 3378 y(The)34 b(ev)-5 b(aluation)37 +(b)s(e)f(nested.)275 4401 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 3488 y(Arithmetic],)32 +(w)g(\(see)g(Section)g(6.5)h([Shell)150 4511 y(Arithmetic],)32 b(page)f(80\).)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 -3597 y(to)f(the)g(standard)e(error)h(and)g(no)g(substitution)g(o)s -(ccurs.)150 3784 y Fj(3.5.6)63 b(Pro)s(cess)42 b(Substitution)150 -3931 y Ft(Pro)s(cess)i(substitution)g(is)g(supp)s(orted)f(on)h(systems) +4620 y(to)f(the)g(standard)e(error)h(and)g(no)g(substitution)g(o)s +(ccurs.)150 4817 y Fj(3.5.6)63 b(Pro)s(cess)42 b(Substitution)150 +4964 y Ft(Pro)s(cess)i(substitution)g(is)g(supp)s(orted)f(on)h(systems) g(that)h(supp)s(ort)d(named)i(pip)s(es)f(\()p Fl(fif)n(o)p -Ft(s\))i(or)f(the)150 4041 y(`)p Fs(/dev/fd)p Ft(')29 +Ft(s\))i(or)f(the)150 5073 y(`)p Fs(/dev/fd)p Ft(')29 b(metho)s(d)h(of)g(naming)g(op)s(en)g(\014les.)41 b(It)30 -b(tak)m(es)i(the)f(form)f(of)390 4169 y Fs(<\()p Fi(list)11 -b Fs(\))150 4297 y Ft(or)390 4426 y Fs(>\()p Fi(list)g -Fs(\))150 4554 y Ft(The)23 b(pro)s(cess)g Fq(list)j Ft(is)d(run)f(with) -h(its)h(input)f(or)g(output)g(connected)h(to)h(a)e Fl(fif)n(o)g -Ft(or)h(some)g(\014le)f(in)g(`)p Fs(/dev/fd)p Ft('.)150 -4664 y(The)28 b(name)h(of)g(this)f(\014le)h(is)g(passed)f(as)h(an)f -(argumen)m(t)h(to)h(the)f(curren)m(t)f(command)h(as)f(the)h(result)g -(of)g(the)150 4773 y(expansion.)40 b(If)28 b(the)h Fs(>\()p -Fi(list)11 b Fs(\))26 b Ft(form)h(is)i(used,)f(writing)h(to)g(the)f -(\014le)h(will)g(pro)m(vide)f(input)g(for)g Fq(list)r -Ft(.)41 b(If)28 b(the)150 4883 y Fs(<\()p Fi(list)11 -b Fs(\))23 b Ft(form)h(is)i(used,)f(the)h(\014le)f(passed)g(as)g(an)g -(argumen)m(t)h(should)e(b)s(e)h(read)g(to)h(obtain)g(the)f(output)g(of) -150 4992 y Fq(list)r Ft(.)41 b(Note)31 b(that)f(no)f(space)h(ma)m(y)g -(app)s(ear)f(b)s(et)m(w)m(een)h(the)g Fs(<)f Ft(or)h -Fs(>)f Ft(and)g(the)g(left)h(paren)m(thesis,)h(otherwise)150 -5102 y(the)g(construct)f(w)m(ould)g(b)s(e)g(in)m(terpreted)h(as)f(a)h -(redirection.)275 5230 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 5340 y(v)-5 b(ariable)31 -b(expansion,)g(command)f(substitution,)g(and)g(arithmetic)i(expansion.) -p eop end +b(tak)m(es)i(the)f(form)f(of)390 5207 y Fs(<\()p Fi(list)11 +b Fs(\))150 5340 y Ft(or)p eop end %%Page: 25 31 TeXDict begin 25 30 bop 150 -116 a Ft(Chapter)30 b(3:)41 -b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(25)150 299 -y Fj(3.5.7)63 b(W)-10 b(ord)41 b(Splitting)150 446 y -Ft(The)30 b(shell)h(scans)g(the)g(results)f(of)h(parameter)g +b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(25)390 299 +y Fs(>\()p Fi(list)11 b Fs(\))150 434 y Ft(The)23 b(pro)s(cess)g +Fq(list)j Ft(is)d(run)f(with)h(its)h(input)f(or)g(output)g(connected)h +(to)h(a)e Fl(fif)n(o)g Ft(or)h(some)g(\014le)f(in)g(`)p +Fs(/dev/fd)p Ft('.)150 544 y(The)28 b(name)h(of)g(this)f(\014le)h(is)g +(passed)f(as)h(an)f(argumen)m(t)h(to)h(the)f(curren)m(t)f(command)h(as) +f(the)h(result)g(of)g(the)150 654 y(expansion.)40 b(If)28 +b(the)h Fs(>\()p Fi(list)11 b Fs(\))26 b Ft(form)h(is)i(used,)f +(writing)h(to)g(the)f(\014le)h(will)g(pro)m(vide)f(input)g(for)g +Fq(list)r Ft(.)41 b(If)28 b(the)150 763 y Fs(<\()p Fi(list)11 +b Fs(\))23 b Ft(form)h(is)i(used,)f(the)h(\014le)f(passed)g(as)g(an)g +(argumen)m(t)h(should)e(b)s(e)h(read)g(to)h(obtain)g(the)f(output)g(of) +150 873 y Fq(list)r Ft(.)41 b(Note)31 b(that)f(no)f(space)h(ma)m(y)g +(app)s(ear)f(b)s(et)m(w)m(een)h(the)g Fs(<)f Ft(or)h +Fs(>)f Ft(and)g(the)g(left)h(paren)m(thesis,)h(otherwise)150 +982 y(the)g(construct)f(w)m(ould)g(b)s(e)g(in)m(terpreted)h(as)f(a)h +(redirection.)275 1118 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 1228 y(v)-5 b(ariable)31 +b(expansion,)g(command)f(substitution,)g(and)g(arithmetic)i(expansion.) +150 1428 y Fj(3.5.7)63 b(W)-10 b(ord)41 b(Splitting)150 +1575 y Ft(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 -555 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 723 y(The)43 +1685 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 1820 y(The)43 b(shell)h(treats)h(eac)m(h)h(c)m(haracter)f(of)g Fs($IFS)e Ft(as)h(a)g(delimiter,)49 b(and)43 b(splits)h(the)h(results)e(of)i(the) -150 833 y(other)40 b(expansions)f(in)m(to)i(w)m(ords)e(on)h(these)g(c)m -(haracters.)70 b(If)39 b Fs(IFS)g Ft(is)h(unset,)i(or)d(its)h(v)-5 -b(alue)40 b(is)g(exactly)150 943 y Fs()p +150 1930 y(other)40 b(expansions)f(in)m(to)i(w)m(ords)e(on)h(these)g(c) +m(haracters.)70 b(If)39 b Fs(IFS)g Ft(is)h(unset,)i(or)d(its)h(v)-5 +b(alue)40 b(is)g(exactly)150 2039 y Fs()p Ft(,)26 b(the)32 b(default,)g(then)f(sequences)h(of)62 b Fs()p Ft(,)30 b Fs()p Ft(,)h(and)f Fs()150 -1052 y Ft(at)39 b(the)f(b)s(eginning)g(and)f(end)h(of)g(the)h(results)f +2149 y Ft(at)39 b(the)f(b)s(eginning)g(and)f(end)h(of)g(the)h(results)f (of)g(the)g(previous)g(expansions)g(are)g(ignored,)j(and)d(an)m(y)150 -1162 y(sequence)31 b(of)g Fs(IFS)f Ft(c)m(haracters)j(not)e(at)g(the)g +2258 y(sequence)31 b(of)g Fs(IFS)f Ft(c)m(haracters)j(not)e(at)g(the)g (b)s(eginning)g(or)f(end)h(serv)m(es)g(to)h(delimit)f(w)m(ords.)42 -b(If)30 b Fs(IFS)g Ft(has)150 1271 y(a)g(v)-5 b(alue)30 +b(If)30 b Fs(IFS)g Ft(has)150 2368 y(a)g(v)-5 b(alue)30 b(other)g(than)g(the)g(default,)g(then)f(sequences)h(of)g(the)g (whitespace)g(c)m(haracters)h Fs(space)e Ft(and)g Fs(tab)150 -1381 y Ft(are)36 b(ignored)g(at)g(the)g(b)s(eginning)f(and)g(end)g(of)h +2478 y Ft(are)36 b(ignored)g(at)g(the)g(b)s(eginning)f(and)g(end)g(of)h (the)g(w)m(ord,)h(as)f(long)g(as)g(the)g(whitespace)h(c)m(haracter)g -(is)150 1490 y(in)f(the)g(v)-5 b(alue)36 b(of)g Fs(IFS)f +(is)150 2587 y(in)f(the)g(v)-5 b(alue)36 b(of)g Fs(IFS)f Ft(\(an)h Fs(IFS)f Ft(whitespace)h(c)m(haracter\).)60 b(An)m(y)35 b(c)m(haracter)j(in)d Fs(IFS)g Ft(that)i(is)f(not)g -Fs(IFS)150 1600 y Ft(whitespace,)27 b(along)f(with)f(an)m(y)g(adjacen)m +Fs(IFS)150 2697 y Ft(whitespace,)27 b(along)f(with)f(an)m(y)g(adjacen)m (t)h Fs(IFS)e Ft(whitespace)i(c)m(haracters,)i(delimits)e(a)f(\014eld.) -38 b(A)26 b(sequence)150 1710 y(of)35 b Fs(IFS)f Ft(whitespace)h(c)m +38 b(A)26 b(sequence)150 2806 y(of)35 b Fs(IFS)f Ft(whitespace)h(c)m (haracters)i(is)d(also)i(treated)g(as)f(a)g(delimiter.)55 b(If)34 b(the)h(v)-5 b(alue)35 b(of)g Fs(IFS)f Ft(is)h(n)m(ull,)h(no) -150 1819 y(w)m(ord)30 b(splitting)h(o)s(ccurs.)275 1987 +150 2916 y(w)m(ord)30 b(splitting)h(o)s(ccurs.)275 3052 y(Explicit)44 b(n)m(ull)f(argumen)m(ts)g(\()p Fs("")g Ft(or)h Fs('')p Ft(\))f(are)g(retained.)80 b(Unquoted)43 -b(implicit)h(n)m(ull)f(argumen)m(ts,)150 2097 y(resulting)24 +b(implicit)h(n)m(ull)f(argumen)m(ts,)150 3161 y(resulting)24 b(from)f(the)g(expansion)g(of)h(parameters)g(that)g(ha)m(v)m(e)h(no)e (v)-5 b(alues,)25 b(are)f(remo)m(v)m(ed.)40 b(If)23 b(a)g(parameter)150 -2206 y(with)30 b(no)g(v)-5 b(alue)31 b(is)g(expanded)e(within)h(double) +3271 y(with)30 b(no)g(v)-5 b(alue)31 b(is)g(expanded)e(within)h(double) g(quotes,)h(a)g(n)m(ull)f(argumen)m(t)h(results)f(and)g(is)g(retained.) -275 2374 y(Note)h(that)g(if)g(no)f(expansion)g(o)s(ccurs,)g(no)h -(splitting)g(is)f(p)s(erformed.)150 2607 y Fj(3.5.8)63 -b(Filename)41 b(Expansion)150 2754 y Ft(After)26 b(w)m(ord)g +275 3406 y(Note)h(that)g(if)g(no)f(expansion)g(o)s(ccurs,)g(no)h +(splitting)g(is)f(p)s(erformed.)150 3607 y Fj(3.5.8)63 +b(Filename)41 b(Expansion)150 3754 y Ft(After)26 b(w)m(ord)g (splitting,)i(unless)d(the)i(`)p Fs(-f)p Ft(')f(option)g(has)g(b)s(een) f(set)i(\(see)g(Section)g(4.3.1)h([The)e(Set)g(Builtin],)150 -2864 y(page)h(53\),)i(Bash)d(scans)h(eac)m(h)h(w)m(ord)e(for)g(the)h(c) +3863 y(page)h(54\),)i(Bash)d(scans)h(eac)m(h)h(w)m(ord)e(for)g(the)h(c) m(haracters)g(`)p Fs(*)p Ft(',)h(`)p Fs(?)p Ft(',)g(and)e(`)p Fs([)p Ft('.)39 b(If)26 b(one)h(of)g(these)f(c)m(haracters)150 -2973 y(app)s(ears,)h(then)f(the)h(w)m(ord)f(is)h(regarded)g(as)g(a)g +3973 y(app)s(ears,)h(then)f(the)h(w)m(ord)f(is)h(regarded)g(as)g(a)g Fq(pattern)p Ft(,)g(and)g(replaced)g(with)f(an)h(alphab)s(etically)h -(sorted)150 3083 y(list)k(of)g(\014le)g(names)g(matc)m(hing)h(the)f +(sorted)150 4082 y(list)k(of)g(\014le)g(names)g(matc)m(hing)h(the)f (pattern.)45 b(If)32 b(no)f(matc)m(hing)i(\014le)f(names)g(are)g -(found,)f(and)h(the)g(shell)150 3192 y(option)c Fs(nullglob)e +(found,)f(and)h(the)g(shell)150 4192 y(option)c Fs(nullglob)e Ft(is)i(disabled,)h(the)f(w)m(ord)g(is)g(left)g(unc)m(hanged.)40 b(If)28 b(the)g Fs(nullglob)e Ft(option)i(is)g(set,)i(and)150 -3302 y(no)38 b(matc)m(hes)h(are)f(found,)h(the)f(w)m(ord)f(is)h(remo)m +4302 y(no)38 b(matc)m(hes)h(are)f(found,)h(the)f(w)m(ord)f(is)h(remo)m (v)m(ed.)65 b(If)37 b(the)h Fs(failglob)e Ft(shell)i(option)g(is)g -(set,)j(and)c(no)150 3411 y(matc)m(hes)f(are)g(found,)f(an)g(error)f +(set,)j(and)c(no)150 4411 y(matc)m(hes)f(are)g(found,)f(an)g(error)f (message)j(is)e(prin)m(ted)f(and)h(the)g(command)g(is)g(not)g -(executed.)56 b(If)35 b(the)150 3521 y(shell)e(option)h +(executed.)56 b(If)35 b(the)150 4521 y(shell)e(option)h Fs(nocaseglob)c Ft(is)j(enabled,)h(the)g(matc)m(h)g(is)f(p)s(erformed)e -(without)i(regard)g(to)h(the)g(case)g(of)150 3631 y(alphab)s(etic)d(c)m -(haracters.)275 3799 y(When)23 b(a)h(pattern)f(is)h(used)f(for)g +(without)i(regard)g(to)h(the)g(case)g(of)150 4630 y(alphab)s(etic)d(c)m +(haracters.)275 4766 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 Fs(.)p -Ft(')f(at)g(the)g(start)g(of)g(a)g(\014lename)150 3908 +Ft(')f(at)g(the)g(start)g(of)g(a)g(\014lename)150 4876 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 -Fs(dotglob)150 4018 y Ft(is)31 b(set.)45 b(When)31 b(matc)m(hing)h(a)g +Fs(dotglob)150 4985 y Ft(is)31 b(set.)45 b(When)31 b(matc)m(hing)h(a)g (\014le)f(name,)h(the)g(slash)f(c)m(haracter)i(m)m(ust)e(alw)m(a)m(ys)i -(b)s(e)e(matc)m(hed)h(explicitly)-8 b(.)150 4127 y(In)30 +(b)s(e)e(matc)m(hed)h(explicitly)-8 b(.)150 5095 y(In)30 b(other)g(cases,)i(the)e(`)p Fs(.)p Ft(')h(c)m(haracter)h(is)e(not)h -(treated)g(sp)s(ecially)-8 b(.)275 4295 y(See)28 b(the)g(description)g +(treated)g(sp)s(ecially)-8 b(.)275 5230 y(See)28 b(the)g(description)g (of)g Fs(shopt)e Ft(in)i(Section)g(4.3.2)i([The)e(Shopt)f(Builtin],)i -(page)g(57,)g(for)f(a)g(descrip-)150 4405 y(tion)j(of)f(the)h +(page)g(57,)g(for)f(a)g(descrip-)150 5340 y(tion)j(of)f(the)h Fs(nocaseglob)p Ft(,)d Fs(nullglob)p Ft(,)g Fs(failglob)p -Ft(,)h(and)g Fs(dotglob)g Ft(options.)275 4573 y(The)j -Fs(GLOBIGNORE)f Ft(shell)i(v)-5 b(ariable)34 b(ma)m(y)g(b)s(e)f(used)f -(to)i(restrict)g(the)g(set)f(of)h(\014lenames)f(matc)m(hing)i(a)150 -4682 y(pattern.)k(If)25 b Fs(GLOBIGNORE)e Ft(is)j(set,)h(eac)m(h)g -(matc)m(hing)g(\014lename)f(that)g(also)h(matc)m(hes)f(one)g(of)g(the)g -(patterns)150 4792 y(in)33 b Fs(GLOBIGNORE)d Ft(is)j(remo)m(v)m(ed)h -(from)e(the)i(list)f(of)g(matc)m(hes.)50 b(The)33 b(\014lenames)g(`)p -Fs(.)p Ft(')g(and)f(`)p Fs(..)p Ft(')h(are)g(alw)m(a)m(ys)150 -4902 y(ignored)g(when)e Fs(GLOBIGNORE)f Ft(is)j(set)g(and)f(not)h(n)m -(ull.)48 b(Ho)m(w)m(ev)m(er,)35 b(setting)f Fs(GLOBIGNORE)c -Ft(to)j(a)g(non-n)m(ull)150 5011 y(v)-5 b(alue)34 b(has)f(the)h -(e\013ect)h(of)f(enabling)g(the)g Fs(dotglob)e Ft(shell)h(option,)j(so) -e(all)g(other)g(\014lenames)g(b)s(eginning)150 5121 y(with)43 -b(a)h(`)p Fs(.)p Ft(')f(will)h(matc)m(h.)80 b(T)-8 b(o)44 -b(get)h(the)e(old)h(b)s(eha)m(vior)f(of)h(ignoring)f(\014lenames)h(b)s -(eginning)f(with)g(a)150 5230 y(`)p Fs(.)p Ft(',)c(mak)m(e)g(`)p -Fs(.*)p Ft(')e(one)g(of)g(the)h(patterns)f(in)g Fs(GLOBIGNORE)p -Ft(.)58 b(The)37 b Fs(dotglob)e Ft(option)j(is)f(disabled)g(when)150 -5340 y Fs(GLOBIGNORE)28 b Ft(is)i(unset.)p eop end +Ft(,)h(and)g Fs(dotglob)g Ft(options.)p eop end %%Page: 26 32 TeXDict begin 26 31 bop 150 -116 a Ft(26)2572 b(Bash)31 -b(Reference)g(Man)m(ual)150 299 y Fj(3.5.8.1)63 b(P)m(attern)40 -b(Matc)m(hing)150 446 y Ft(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 555 y(b)s(elo)m(w,)31 -b(matc)m(hes)g(itself.)42 b(The)29 b Fl(nul)h Ft(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 665 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 775 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 908 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 1065 y Fs(*)432 b Ft(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 Fs(globstar)e -Ft(shell)i(option)630 1174 y(is)37 b(enabled,)h(and)e(`)p -Fs(*)p Ft(')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 Fs(*)p Ft('s)630 -1284 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 -1393 y(sub)s(directories.)g(If)25 b(follo)m(w)m(ed)j(b)m(y)e(a)g(`)p +b(Reference)g(Man)m(ual)275 299 y(The)h Fs(GLOBIGNORE)f +Ft(shell)i(v)-5 b(ariable)34 b(ma)m(y)g(b)s(e)f(used)f(to)i(restrict)g +(the)g(set)f(of)h(\014lenames)f(matc)m(hing)i(a)150 408 +y(pattern.)k(If)25 b Fs(GLOBIGNORE)e Ft(is)j(set,)h(eac)m(h)g(matc)m +(hing)g(\014lename)f(that)g(also)h(matc)m(hes)f(one)g(of)g(the)g +(patterns)150 518 y(in)33 b Fs(GLOBIGNORE)d Ft(is)j(remo)m(v)m(ed)h +(from)e(the)i(list)f(of)g(matc)m(hes.)50 b(The)33 b(\014lenames)g(`)p +Fs(.)p Ft(')g(and)f(`)p Fs(..)p Ft(')h(are)g(alw)m(a)m(ys)150 +628 y(ignored)g(when)e Fs(GLOBIGNORE)f Ft(is)j(set)g(and)f(not)h(n)m +(ull.)48 b(Ho)m(w)m(ev)m(er,)35 b(setting)f Fs(GLOBIGNORE)c +Ft(to)j(a)g(non-n)m(ull)150 737 y(v)-5 b(alue)34 b(has)f(the)h +(e\013ect)h(of)f(enabling)g(the)g Fs(dotglob)e Ft(shell)h(option,)j(so) +e(all)g(other)g(\014lenames)g(b)s(eginning)150 847 y(with)43 +b(a)h(`)p Fs(.)p Ft(')f(will)h(matc)m(h.)80 b(T)-8 b(o)44 +b(get)h(the)e(old)h(b)s(eha)m(vior)f(of)h(ignoring)f(\014lenames)h(b)s +(eginning)f(with)g(a)150 956 y(`)p Fs(.)p Ft(',)c(mak)m(e)g(`)p +Fs(.*)p Ft(')e(one)g(of)g(the)h(patterns)f(in)g Fs(GLOBIGNORE)p +Ft(.)58 b(The)37 b Fs(dotglob)e Ft(option)j(is)f(disabled)g(when)150 +1066 y Fs(GLOBIGNORE)28 b Ft(is)i(unset.)150 1251 y Fj(3.5.8.1)63 +b(P)m(attern)40 b(Matc)m(hing)150 1398 y Ft(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 +1508 y(b)s(elo)m(w,)31 b(matc)m(hes)g(itself.)42 b(The)29 +b Fl(nul)h Ft(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 1618 +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 1727 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 1855 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 2000 y Fs(*)432 +b Ft(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 Fs(globstar)e Ft(shell)i(option)630 +2110 y(is)37 b(enabled,)h(and)e(`)p Fs(*)p Ft(')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 +Fs(*)p Ft('s)630 2219 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 +2329 y(sub)s(directories.)g(If)25 b(follo)m(w)m(ed)j(b)m(y)e(a)g(`)p Fs(/)p Ft(',)h(t)m(w)m(o)g(adjacen)m(t)h(`)p Fs(*)p Ft('s)e(will)g -(matc)m(h)h(only)f(directories)630 1503 y(and)k(sub)s(directories.)150 -1660 y Fs(?)432 b Ft(Matc)m(hes)32 b(an)m(y)f(single)g(c)m(haracter.) -150 1816 y Fs([...)o(])241 b Ft(Matc)m(hes)27 b(an)m(y)e(one)g(of)g +(matc)m(h)h(only)f(directories)630 2439 y(and)k(sub)s(directories.)150 +2584 y Fs(?)432 b Ft(Matc)m(hes)32 b(an)m(y)f(single)g(c)m(haracter.) +150 2730 y Fs([...)o(])241 b Ft(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 1926 y(h)m(yphen)i(denotes)h(a)g +i(separated)e(b)m(y)g(a)630 2839 y(h)m(yphen)i(denotes)h(a)g Fq(range)g(expression)p Ft(;)g(an)m(y)h(c)m(haracter)g(that)f(sorts)g -(b)s(et)m(w)m(een)g(those)h(t)m(w)m(o)630 2036 y(c)m(haracters,)f +(b)s(et)m(w)m(een)g(those)h(t)m(w)m(o)630 2949 y(c)m(haracters,)f (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 2145 y(set,)31 b(is)f(matc)m(hed.)42 +(sequence)e(and)f(c)m(haracter)630 3058 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 Fs([)p Ft(')h(is)f(a)h(`)p Fs(!)p Ft(')f(or)g(a)h(`)p -Fs(^)p Ft(')g(then)f(an)m(y)630 2255 y(c)m(haracter)c(not)f(enclosed)g +Fs(^)p Ft(')g(then)f(an)m(y)630 3168 y(c)m(haracter)c(not)f(enclosed)g (is)g(matc)m(hed.)40 b(A)25 b(`)p Fp(\000)p Ft(')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 2364 +(matc)m(hed)h(b)m(y)f(including)h(it)g(as)g(the)630 3278 y(\014rst)32 b(or)h(last)h(c)m(haracter)h(in)e(the)g(set.)50 b(A)33 b(`)p Fs(])p Ft(')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 2474 y(\014rst)25 b(c)m(haracter)i(in)e +(including)g(it)g(as)h(the)630 3387 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 2584 y(determined)e(b)m(y)g(the)g(curren) +(range)g(expressions)f(is)630 3497 y(determined)e(b)m(y)g(the)g(curren) m(t)f(lo)s(cale)j(and)e(the)g(v)-5 b(alue)23 b(of)g(the)h -Fs(LC_COLLATE)c Ft(shell)j(v)-5 b(ariable,)630 2693 y(if)30 -b(set.)630 2826 y(F)-8 b(or)34 b(example,)g(in)f(the)g(default)g(C)f +Fs(LC_COLLATE)c Ft(shell)j(v)-5 b(ariable,)630 3606 y(if)30 +b(set.)630 3734 y(F)-8 b(or)34 b(example,)g(in)f(the)g(default)g(C)f (lo)s(cale,)k(`)p Fs([a-dx-z])p Ft(')31 b(is)i(equiv)-5 -b(alen)m(t)34 b(to)g(`)p Fs([abcdxyz])p Ft('.)630 2936 +b(alen)m(t)34 b(to)g(`)p Fs([abcdxyz])p Ft('.)630 3843 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)630 3045 +(order,)76 b(and)67 b(in)g(these)h(lo)s(cales)630 3953 y(`)p Fs([a-dx-z])p Ft(')36 b(is)i(t)m(ypically)i(not)e(equiv)-5 b(alen)m(t)39 b(to)g(`)p Fs([abcdxyz])p Ft(';)g(it)g(migh)m(t)f(b)s(e)f -(equiv)-5 b(alen)m(t)630 3155 y(to)34 b(`)p Fs([aBbCcDdxXyYz])p +(equiv)-5 b(alen)m(t)630 4063 y(to)34 b(`)p Fs([aBbCcDdxXyYz])p Ft(',)c(for)j(example.)49 b(T)-8 b(o)33 b(obtain)h(the)f(traditional)h -(in)m(terpretation)h(of)630 3265 y(ranges)e(in)f(brac)m(k)m(et)i +(in)m(terpretation)h(of)630 4172 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 3374 y(the)e Fs(LC_COLLATE)c +(cale)i(b)m(y)f(setting)630 4282 y(the)e Fs(LC_COLLATE)c Ft(or)k Fs(LC_ALL)d Ft(en)m(vironmen)m(t)j(v)-5 b(ariable)31 -b(to)g(the)g(v)-5 b(alue)31 b(`)p Fs(C)p Ft('.)630 3507 +b(to)g(the)g(v)-5 b(alue)31 b(`)p Fs(C)p Ft('.)630 4409 y(Within)23 b(`)p Fs([)p Ft(')h(and)e(`)p Fs(])p Ft(',)j Fq(c)m(haracter)g(classes)j Ft(can)c(b)s(e)e(sp)s(eci\014ed)h(using)f (the)i(syn)m(tax)f Fs([:)p Fq(class)t Fs(:])p Ft(,)630 -3617 y(where)30 b Fq(class)35 b Ft(is)30 b(one)h(of)f(the)h(follo)m +4519 y(where)30 b Fq(class)35 b Ft(is)30 b(one)h(of)f(the)h(follo)m (wing)h(classes)f(de\014ned)e(in)h(the)h Fl(posix)f Ft(standard:)870 -3750 y Fs(alnum)142 b(alpha)g(ascii)f(blank)h(cntrl)g(digit)g(graph)g -(lower)870 3860 y(print)g(punct)g(space)f(upper)h(word)190 -b(xdigit)630 3993 y Ft(A)42 b(c)m(haracter)h(class)f(matc)m(hes)h(an)m +4647 y Fs(alnum)142 b(alpha)g(ascii)f(blank)h(cntrl)g(digit)g(graph)g +(lower)870 4756 y(print)g(punct)g(space)f(upper)h(word)190 +b(xdigit)630 4884 y Ft(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 Fs(word)630 4103 y Ft(c)m(haracter)32 b(class)f(matc)m(hes)h +b(The)41 b Fs(word)630 4993 y Ft(c)m(haracter)32 b(class)f(matc)m(hes)h (letters,)f(digits,)h(and)d(the)i(c)m(haracter)h(`)p -Fs(_)p Ft('.)630 4236 y(Within)25 b(`)p Fs([)p Ft(')f(and)g(`)p +Fs(_)p Ft('.)630 5121 y(Within)25 b(`)p Fs([)p Ft(')f(and)g(`)p Fs(])p Ft(',)i(an)e Fq(equiv)-5 b(alence)26 b(class)j Ft(can)24 b(b)s(e)g(sp)s(eci\014ed)g(using)g(the)g(syn)m(tax)h -Fs([=)p Fq(c)6 b Fs(=])p Ft(,)630 4345 y(whic)m(h)29 +Fs([=)p Fq(c)6 b Fs(=])p Ft(,)630 5230 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 4455 +m(eigh)m(t)g(\(as)f(de\014ned)e(b)m(y)i(the)630 5340 y(curren)m(t)g(lo)s(cale\))j(as)d(the)h(c)m(haracter)h -Fq(c)6 b Ft(.)630 4588 y(Within)21 b(`)p Fs([)p Ft(')h(and)e(`)p -Fs(])p Ft(',)j(the)f(syn)m(tax)f Fs([.)p Fq(sym)m(b)s(ol)t -Fs(.])f Ft(matc)m(hes)i(the)f(collating)j(sym)m(b)s(ol)c -Fq(sym)m(b)s(ol)t Ft(.)275 4745 y(If)29 b(the)g Fs(extglob)f -Ft(shell)h(option)h(is)g(enabled)f(using)g(the)h Fs(shopt)e -Ft(builtin,)h(sev)m(eral)i(extended)f(pattern)150 4854 -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 Fq(pattern-list)j -Ft(is)d(a)g(list)g(of)150 4964 y(one)d(or)f(more)h(patterns)f -(separated)h(b)m(y)f(a)h(`)p Fs(|)p Ft('.)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 -5074 y(more)e(of)f(the)h(follo)m(wing)g(sub-patterns:)150 -5230 y Fs(?\()p Fi(pattern-list)11 b Fs(\))630 5340 y -Ft(Matc)m(hes)32 b(zero)f(or)g(one)f(o)s(ccurrence)h(of)f(the)h(giv)m -(en)g(patterns.)p eop end +Fq(c)6 b Ft(.)p eop end %%Page: 27 33 TeXDict begin 27 32 bop 150 -116 a Ft(Chapter)30 b(3:)41 -b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(27)150 299 -y Fs(*\()p Fi(pattern-list)11 b Fs(\))630 408 y Ft(Matc)m(hes)32 +b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(27)630 299 +y(Within)21 b(`)p Fs([)p Ft(')h(and)e(`)p Fs(])p Ft(',)j(the)f(syn)m +(tax)f Fs([.)p Fq(sym)m(b)s(ol)t Fs(.])f Ft(matc)m(hes)i(the)f +(collating)j(sym)m(b)s(ol)c Fq(sym)m(b)s(ol)t Ft(.)275 +450 y(If)29 b(the)g Fs(extglob)f Ft(shell)h(option)h(is)g(enabled)f +(using)g(the)h Fs(shopt)e Ft(builtin,)h(sev)m(eral)i(extended)f +(pattern)150 560 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 Fq(pattern-list)j +Ft(is)d(a)g(list)g(of)150 669 y(one)d(or)f(more)h(patterns)f(separated) +h(b)m(y)f(a)h(`)p Fs(|)p Ft('.)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 779 y(more)e(of)f(the)h +(follo)m(wing)g(sub-patterns:)150 930 y Fs(?\()p Fi(pattern-list)11 +b Fs(\))630 1040 y Ft(Matc)m(hes)32 b(zero)f(or)g(one)f(o)s(ccurrence)h +(of)f(the)h(giv)m(en)g(patterns.)150 1191 y Fs(*\()p +Fi(pattern-list)11 b Fs(\))630 1300 y Ft(Matc)m(hes)32 b(zero)f(or)g(more)f(o)s(ccurrences)h(of)f(the)h(giv)m(en)g(patterns.) -150 562 y Fs(+\()p Fi(pattern-list)11 b Fs(\))630 671 +150 1452 y Fs(+\()p Fi(pattern-list)11 b Fs(\))630 1561 y Ft(Matc)m(hes)32 b(one)f(or)f(more)h(o)s(ccurrences)f(of)h(the)f(giv) -m(en)i(patterns.)150 824 y Fs(@\()p Fi(pattern-list)11 -b Fs(\))630 934 y Ft(Matc)m(hes)32 b(one)f(of)f(the)h(giv)m(en)g -(patterns.)150 1087 y Fs(!\()p Fi(pattern-list)11 b Fs(\))630 -1197 y Ft(Matc)m(hes)32 b(an)m(ything)f(except)g(one)g(of)f(the)h(giv)m -(en)g(patterns.)150 1390 y Fj(3.5.9)63 b(Quote)41 b(Remo)m(v)-7 -b(al)150 1537 y Ft(After)32 b(the)g(preceding)g(expansions,)h(all)f +m(en)i(patterns.)150 1712 y Fs(@\()p Fi(pattern-list)11 +b Fs(\))630 1822 y Ft(Matc)m(hes)32 b(one)f(of)f(the)h(giv)m(en)g +(patterns.)150 1973 y Fs(!\()p Fi(pattern-list)11 b Fs(\))630 +2083 y Ft(Matc)m(hes)32 b(an)m(ything)f(except)g(one)g(of)f(the)h(giv)m +(en)g(patterns.)150 2274 y Fj(3.5.9)63 b(Quote)41 b(Remo)m(v)-7 +b(al)150 2421 y Ft(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 Fs(\\)p Ft(',)g(`)p Fs(')p Ft(',)f(and)g(`)p Fs(")p Ft(')150 -1646 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 1872 y Fr(3.6)68 -b(Redirections)150 2032 y Ft(Before)43 b(a)f(command)f(is)h(executed,)j +2530 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 2754 y Fr(3.6)68 +b(Redirections)150 2914 y Ft(Before)43 b(a)f(command)f(is)h(executed,)j (its)d(input)f(and)g(output)g(ma)m(y)i(b)s(e)e Fq(redirected)k -Ft(using)c(a)h(sp)s(ecial)150 2141 y(notation)33 b(in)m(terpreted)g(b)m +Ft(using)c(a)h(sp)s(ecial)150 3023 y(notation)33 b(in)m(terpreted)g(b)m (y)f(the)g(shell.)46 b(Redirection)33 b(ma)m(y)g(also)g(b)s(e)f(used)f -(to)i(op)s(en)e(and)h(close)h(\014les)f(for)150 2251 +(to)i(op)s(en)e(and)h(close)h(\014les)f(for)150 3133 y(the)h(curren)m(t)g(shell)g(execution)h(en)m(vironmen)m(t.)49 b(The)33 b(follo)m(wing)h(redirection)g(op)s(erators)f(ma)m(y)h -(precede)150 2361 y(or)29 b(app)s(ear)g(an)m(ywhere)g(within)g(a)h +(precede)150 3243 y(or)29 b(app)s(ear)g(an)m(ywhere)g(within)g(a)h (simple)f(command)g(or)h(ma)m(y)g(follo)m(w)g(a)g(command.)40 -b(Redirections)31 b(are)150 2470 y(pro)s(cessed)f(in)g(the)g(order)g +b(Redirections)31 b(are)150 3352 y(pro)s(cessed)f(in)g(the)g(order)g (they)h(app)s(ear,)f(from)g(left)h(to)g(righ)m(t.)275 -2602 y(Eac)m(h)45 b(redirection)h(that)f(ma)m(y)h(b)s(e)e(preceded)g(b) +3483 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 2711 y(preceded)41 b(b)m(y)g(a)g(w)m(ord)g(of)g(the)g(form)g +s(e)150 3592 y(preceded)41 b(b)m(y)g(a)g(w)m(ord)g(of)g(the)g(form)g Fs({)p Fq(v)-5 b(arname)5 b Fs(})p Ft(.)72 b(In)40 b(this)h(case,)k -(for)c(eac)m(h)h(redirection)g(op)s(erator)150 2821 y(except)30 +(for)c(eac)m(h)h(redirection)g(op)s(erator)150 3702 y(except)30 b Fs(>)p Ft(&-)f(and)f Fs(<)p Ft(&-,)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 2930 y Fs({)p Fq(v)-5 b(arname)5 b Fs(})p +(it)f(to)150 3811 y Fs({)p Fq(v)-5 b(arname)5 b Fs(})p Ft(.)42 b(If)31 b Fs(>)p Ft(&-)f(or)h Fs(<)p Ft(&-)g(is)g(preceded)g(b) m(y)g Fs({)p Fq(v)-5 b(arname)5 b Fs(})p Ft(,)31 b(the)g(v)-5 b(alue)31 b(of)g Fq(v)-5 b(arname)37 b Ft(de\014nes)30 -b(the)h(\014le)150 3040 y(descriptor)f(to)h(close.)275 -3171 y(In)c(the)i(follo)m(wing)h(descriptions,)g(if)e(the)h(\014le)g +b(the)h(\014le)150 3921 y(descriptor)f(to)h(close.)275 +4051 y(In)c(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 3281 y(acter)42 b(of)f(the)g(redirection)g(op)s(erator)g +(c)m(har-)150 4161 y(acter)42 b(of)f(the)g(redirection)g(op)s(erator)g (is)g(`)p Fs(<)p Ft(',)i(the)e(redirection)g(refers)g(to)g(the)g -(standard)f(input)f(\(\014le)150 3390 y(descriptor)33 +(standard)f(input)f(\(\014le)150 4271 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 Fs(>)p Ft(',)h(the)f(redirection) -g(refers)150 3500 y(to)e(the)g(standard)e(output)h(\(\014le)h -(descriptor)f(1\).)275 3631 y(The)h(w)m(ord)h(follo)m(wing)i(the)f +g(refers)150 4380 y(to)e(the)g(standard)e(output)h(\(\014le)h +(descriptor)f(1\).)275 4510 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 3741 y(wise)21 b(noted,)i(is)e(sub)5 +(unless)e(other-)150 4620 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 3851 y(substitution,)31 b(arithmetic)h +e(expansion,)i(command)150 4730 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 3960 y(If)f(it)h(expands)e(to)i(more)g +(and)f(w)m(ord)h(splitting.)150 4839 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 -4092 y(Note)h(that)g(the)g(order)f(of)g(redirections)h(is)g +4970 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 -4223 y Fs(ls)47 b(>)h Fi(dirlist)56 b Fs(2>&1)150 4354 +5100 y Fs(ls)47 b(>)h Fi(dirlist)56 b Fs(2>&1)150 5230 y Ft(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 4464 y(\014le)h Fq(dirlist)r Ft(,)h(while)f(the)h(command)390 -4595 y Fs(ls)47 b(2>&1)g(>)g Fi(dirlist)150 4727 y Ft(directs)28 -b(only)f(the)g(standard)g(output)g(to)h(\014le)f Fq(dirlist)r -Ft(,)h(b)s(ecause)g(the)f(standard)g(error)g(w)m(as)g(made)h(a)f(cop)m -(y)150 4836 y(of)k(the)f(standard)g(output)g(b)s(efore)g(the)g -(standard)g(output)g(w)m(as)g(redirected)h(to)g Fq(dirlist)r -Ft(.)275 4968 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 5077 y(in)k(the)h(follo)m(wing)g(table:)150 -5230 y Fs(/dev/fd/)p Fi(fd)630 5340 y Ft(If)f Fq(fd)j -Ft(is)d(a)h(v)-5 b(alid)31 b(in)m(teger,)h(\014le)e(descriptor)h -Fq(fd)i Ft(is)d(duplicated.)p eop end +150 5340 y(\014le)h Fq(dirlist)r Ft(,)h(while)f(the)h(command)p +eop end %%Page: 28 34 TeXDict begin 28 33 bop 150 -116 a Ft(28)2572 b(Bash)31 -b(Reference)g(Man)m(ual)150 299 y Fs(/dev/stdin)630 408 -y Ft(File)h(descriptor)e(0)h(is)f(duplicated.)150 563 -y Fs(/dev/stdout)630 672 y Ft(File)i(descriptor)e(1)h(is)f(duplicated.) -150 826 y Fs(/dev/stderr)630 936 y Ft(File)i(descriptor)e(2)h(is)f -(duplicated.)150 1090 y Fs(/dev/tcp/)p Fi(host)11 b Fs(/)p -Fi(port)630 1200 y Ft(If)41 b Fq(host)i Ft(is)f(a)g(v)-5 +b(Reference)g(Man)m(ual)390 299 y Fs(ls)47 b(2>&1)g(>)g +Fi(dirlist)150 428 y Ft(directs)28 b(only)f(the)g(standard)g(output)g +(to)h(\014le)f Fq(dirlist)r Ft(,)h(b)s(ecause)g(the)f(standard)g(error) +g(w)m(as)g(made)h(a)f(cop)m(y)150 537 y(of)k(the)f(standard)g(output)g +(b)s(efore)g(the)g(standard)g(output)g(w)m(as)g(redirected)h(to)g +Fq(dirlist)r Ft(.)275 666 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 776 y(in)k(the)h(follo)m(wing)g +(table:)150 924 y Fs(/dev/fd/)p Fi(fd)630 1034 y Ft(If)f +Fq(fd)j Ft(is)d(a)h(v)-5 b(alid)31 b(in)m(teger,)h(\014le)e(descriptor) +h Fq(fd)i Ft(is)d(duplicated.)150 1182 y Fs(/dev/stdin)630 +1292 y Ft(File)i(descriptor)e(0)h(is)f(duplicated.)150 +1440 y Fs(/dev/stdout)630 1550 y Ft(File)i(descriptor)e(1)h(is)f +(duplicated.)150 1698 y Fs(/dev/stderr)630 1807 y Ft(File)i(descriptor) +e(2)h(is)f(duplicated.)150 1956 y Fs(/dev/tcp/)p Fi(host)11 +b Fs(/)p Fi(port)630 2065 y Ft(If)41 b Fq(host)i Ft(is)f(a)g(v)-5 b(alid)41 b(hostname)h(or)f(In)m(ternet)h(address,)i(and)c -Fq(p)s(ort)j Ft(is)f(an)f(in)m(teger)i(p)s(ort)630 1309 +Fq(p)s(ort)j Ft(is)f(an)f(in)m(teger)i(p)s(ort)630 2175 y(n)m(um)m(b)s(er)h(or)h(service)h(name,)j(Bash)c(attempts)h(to)g(op)s -(en)f(a)g(TCP)g(connection)h(to)g(the)630 1419 y(corresp)s(onding)29 -b(so)s(c)m(k)m(et.)150 1573 y Fs(/dev/udp/)p Fi(host)11 -b Fs(/)p Fi(port)630 1683 y Ft(If)41 b Fq(host)i Ft(is)f(a)g(v)-5 +(en)f(a)g(TCP)g(connection)h(to)g(the)630 2285 y(corresp)s(onding)29 +b(so)s(c)m(k)m(et.)150 2433 y Fs(/dev/udp/)p Fi(host)11 +b Fs(/)p Fi(port)630 2542 y Ft(If)41 b Fq(host)i Ft(is)f(a)g(v)-5 b(alid)41 b(hostname)h(or)f(In)m(ternet)h(address,)i(and)c -Fq(p)s(ort)j Ft(is)f(an)f(in)m(teger)i(p)s(ort)630 1792 +Fq(p)s(ort)j Ft(is)f(an)f(in)m(teger)i(p)s(ort)630 2652 y(n)m(um)m(b)s(er)g(or)i(service)g(name,)k(Bash)c(attempts)g(to)h(op)s -(en)e(a)h(UDP)g(connection)g(to)h(the)630 1902 y(corresp)s(onding)29 -b(so)s(c)m(k)m(et.)275 2056 y(A)h(failure)h(to)g(op)s(en)e(or)i(create) +(en)e(a)h(UDP)g(connection)g(to)h(the)630 2762 y(corresp)s(onding)29 +b(so)s(c)m(k)m(et.)275 2910 y(A)h(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 -2188 y(Redirections)f(using)e(\014le)i(descriptors)f(greater)h(than)f +3039 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 -2298 y(con\015ict)i(with)f(\014le)h(descriptors)f(the)g(shell)h(uses)f -(in)m(ternally)-8 b(.)150 2492 y Fj(3.6.1)63 b(Redirecting)40 -b(Input)150 2639 y Ft(Redirection)35 b(of)f(input)f(causes)i(the)f +3148 y(con\015ict)i(with)f(\014le)h(descriptors)f(the)g(shell)h(uses)f +(in)m(ternally)-8 b(.)150 3337 y Fj(3.6.1)63 b(Redirecting)40 +b(Input)150 3483 y Ft(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 -Fq(w)m(ord)k Ft(to)d(b)s(e)150 2748 y(op)s(ened)d(for)g(reading)g(on)g +Fq(w)m(ord)k Ft(to)d(b)s(e)150 3593 y(op)s(ened)d(for)g(reading)g(on)g (\014le)h(descriptor)f Fs(n)p Ft(,)h(or)f(the)g(standard)g(input)f (\(\014le)i(descriptor)f(0\))h(if)f Fs(n)g Ft(is)h(not)150 -2858 y(sp)s(eci\014ed.)275 2990 y(The)c(general)j(format)e(for)h -(redirecting)g(input)e(is:)390 3122 y Fs([)p Fi(n)11 -b Fs(]<)p Fi(word)150 3316 y Fj(3.6.2)63 b(Redirecting)40 -b(Output)150 3463 y Ft(Redirection)31 b(of)g(output)f(causes)h(the)f +3703 y(sp)s(eci\014ed.)275 3832 y(The)c(general)j(format)e(for)h +(redirecting)g(input)e(is:)390 3961 y Fs([)p Fi(n)11 +b Fs(]<)p Fi(word)150 4149 y Fj(3.6.2)63 b(Redirecting)40 +b(Output)150 4296 y Ft(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 -Fq(w)m(ord)i Ft(to)f(b)s(e)150 3572 y(op)s(ened)d(for)g(writing)g(on)g +Fq(w)m(ord)i Ft(to)f(b)s(e)150 4405 y(op)s(ened)d(for)g(writing)g(on)g (\014le)h(descriptor)f Fq(n)p Ft(,)g(or)g(the)h(standard)e(output)h (\(\014le)h(descriptor)f(1\))h(if)g Fq(n)e Ft(is)i(not)150 -3682 y(sp)s(eci\014ed.)40 b(If)30 b(the)g(\014le)h(do)s(es)f(not)h +4515 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 3814 y(The)e(general)j(format)e(for) -h(redirecting)g(output)f(is:)390 3946 y Fs([)p Fi(n)11 -b Fs(]>[|])p Fi(word)275 4078 y Ft(If)30 b(the)h(redirection)g(op)s +(truncated)f(to)h(zero)g(size.)275 4644 y(The)e(general)j(format)e(for) +h(redirecting)g(output)f(is:)390 4773 y Fs([)p Fi(n)11 +b Fs(]>[|])p Fi(word)275 4902 y Ft(If)30 b(the)h(redirection)g(op)s (erator)g(is)g(`)p Fs(>)p Ft(',)g(and)f(the)h Fs(noclobber)d Ft(option)j(to)g(the)g Fs(set)f Ft(builtin)g(has)h(b)s(een)150 -4187 y(enabled,)i(the)f(redirection)h(will)f(fail)h(if)f(the)g(\014le)g +5011 y(enabled,)i(the)f(redirection)h(will)f(fail)h(if)f(the)g(\014le)g (whose)g(name)g(results)g(from)g(the)g(expansion)g(of)g -Fq(w)m(ord)150 4297 y Ft(exists)f(and)f(is)g(a)h(regular)g(\014le.)41 +Fq(w)m(ord)150 5121 y Ft(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 Fs(>|)p Ft(',)h(or)f(the)h(redirection)g(op)s(erator)g(is)150 -4406 y(`)p Fs(>)p Ft(')36 b(and)f(the)g Fs(noclobber)e +5230 y(`)p Fs(>)p Ft(')36 b(and)f(the)g Fs(noclobber)e Ft(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 4516 y(named)30 b(b)m(y)g -Fq(w)m(ord)k Ft(exists.)150 4710 y Fj(3.6.3)63 b(App)s(ending)42 -b(Redirected)e(Output)150 4857 y Ft(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 4967 y Fq(w)m(ord)28 -b Ft(to)e(b)s(e)e(op)s(ened)g(for)h(app)s(ending)e(on)i(\014le)g -(descriptor)g Fq(n)p Ft(,)g(or)g(the)g(standard)f(output)h(\(\014le)g -(descriptor)150 5076 y(1\))31 b(if)f Fq(n)g Ft(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 5208 y(The)f(general)j(format)e(for)h(app)s(ending)e -(output)h(is:)390 5340 y Fs([)p Fi(n)11 b Fs(]>>)p Fi(word)p -eop end +(ev)m(en)h(if)e(the)h(\014le)150 5340 y(named)30 b(b)m(y)g +Fq(w)m(ord)k Ft(exists.)p eop end %%Page: 29 35 TeXDict begin 29 34 bop 150 -116 a Ft(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(29)150 299 -y Fj(3.6.4)63 b(Redirecting)40 b(Standard)h(Output)g(and)g(Standard)g -(Error)150 446 y Ft(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(redirected)h(to)g(the)f(\014le)h(whose)f(name)h(is)f(the)g -(expansion)h(of)f Fq(w)m(ord)t Ft(.)275 705 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 854 y Fs(&>)p Fi(word)150 1003 y Ft(and)390 -1152 y Fs(>&)p Fi(word)150 1301 y Ft(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 1450 y Fs(>)p Fi(word)57 -b Fs(2>&1)150 1664 y Fj(3.6.5)63 b(App)s(ending)42 b(Standard)f(Output) -g(and)g(Standard)g(Error)150 1811 y Ft(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 1921 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 Fq(w)m(ord)t -Ft(.)275 2070 y(The)f(format)i(for)f(app)s(ending)f(standard)h(output)g -(and)f(standard)h(error)g(is:)390 2219 y Fs(&>>)p Fi(word)150 -2368 y Ft(This)g(is)g(seman)m(tically)j(equiv)-5 b(alen)m(t)32 -b(to)390 2518 y Fs(>>)p Fi(word)57 b Fs(2>&1)150 2732 -y Fj(3.6.6)63 b(Here)41 b(Do)s(cumen)m(ts)150 2879 y +y Fj(3.6.3)63 b(App)s(ending)42 b(Redirected)e(Output)150 +446 y Ft(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 555 y Fq(w)m(ord)28 b Ft(to)e(b)s(e)e(op)s(ened)g(for)h(app)s +(ending)e(on)i(\014le)g(descriptor)g Fq(n)p Ft(,)g(or)g(the)g(standard) +f(output)h(\(\014le)g(descriptor)150 665 y(1\))31 b(if)f +Fq(n)g Ft(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 803 y(The)f(general)j +(format)e(for)h(app)s(ending)e(output)h(is:)390 940 y +Fs([)p Fi(n)11 b Fs(]>>)p Fi(word)150 1143 y Fj(3.6.4)63 +b(Redirecting)40 b(Standard)h(Output)g(and)g(Standard)g(Error)150 +1290 y Ft(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 1399 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 Fq(w)m(ord)t Ft(.)275 1537 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 +1675 y Fs(&>)p Fi(word)150 1812 y Ft(and)390 1950 y Fs(>&)p +Fi(word)150 2087 y Ft(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 2225 y Fs(>)p Fi(word)57 b Fs(2>&1)150 +2427 y Fj(3.6.5)63 b(App)s(ending)42 b(Standard)f(Output)g(and)g +(Standard)g(Error)150 2574 y Ft(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 2684 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 Fq(w)m(ord)t Ft(.)275 2822 +y(The)f(format)i(for)f(app)s(ending)f(standard)h(output)g(and)f +(standard)h(error)g(is:)390 2959 y Fs(&>>)p Fi(word)150 +3097 y Ft(This)g(is)g(seman)m(tically)j(equiv)-5 b(alen)m(t)32 +b(to)390 3235 y Fs(>>)p Fi(word)57 b Fs(2>&1)150 3437 +y Fj(3.6.6)63 b(Here)41 b(Do)s(cumen)m(ts)150 3584 y Ft(This)c(t)m(yp)s(e)h(of)f(redirection)i(instructs)e(the)h(shell)f(to) i(read)e(input)g(from)g(the)h(curren)m(t)f(source)h(un)m(til)g(a)150 -2988 y(line)31 b(con)m(taining)g(only)g Fq(w)m(ord)i +3694 y(line)31 b(con)m(taining)g(only)g Fq(w)m(ord)i Ft(\(with)d(no)h(trailing)g(blanks\))f(is)g(seen.)41 b(All)31 b(of)f(the)h(lines)f(read)g(up)f(to)i(that)150 -3098 y(p)s(oin)m(t)f(are)h(then)f(used)g(as)g(the)h(standard)f(input)f -(for)h(a)h(command.)275 3247 y(The)e(format)i(of)g(here-do)s(cumen)m -(ts)f(is:)390 3396 y Fs(<<[)p Fp(\000)p Fs(])p Fi(word)772 -3506 y(here-document)390 3615 y(delimiter)275 3764 y +3803 y(p)s(oin)m(t)f(are)h(then)f(used)g(as)g(the)h(standard)f(input)f +(for)h(a)h(command.)275 3941 y(The)e(format)i(of)g(here-do)s(cumen)m +(ts)f(is:)390 4078 y Fs(<<[)p Fp(\000)p Fs(])p Fi(word)772 +4188 y(here-document)390 4298 y(delimiter)275 4435 y Ft(No)j(parameter)h(expansion,)g(command)f(substitution,)h(arithmetic)h -(expansion,)f(or)f(\014lename)g(ex-)150 3874 y(pansion)h(is)h(p)s +(expansion,)f(or)f(\014lename)g(ex-)150 4545 y(pansion)h(is)h(p)s (erformed)f(on)g Fq(w)m(ord)t Ft(.)54 b(If)34 b(an)m(y)h(c)m(haracters) i(in)d Fq(w)m(ord)k Ft(are)d(quoted,)i(the)e Fq(delimiter)42 -b Ft(is)35 b(the)150 3984 y(result)40 b(of)g(quote)h(remo)m(v)-5 +b Ft(is)35 b(the)150 4654 y(result)40 b(of)g(quote)h(remo)m(v)-5 b(al)42 b(on)e Fq(w)m(ord)t Ft(,)i(and)d(the)i(lines)f(in)g(the)g -(here-do)s(cumen)m(t)h(are)f(not)g(expanded.)150 4093 +(here-do)s(cumen)m(t)h(are)f(not)g(expanded.)150 4764 y(If)32 b Fq(w)m(ord)k Ft(is)d(unquoted,)f(all)i(lines)f(of)f(the)h (here-do)s(cumen)m(t)g(are)g(sub)5 b(jected)32 b(to)i(parameter)f -(expansion,)150 4203 y(command)25 b(substitution,)g(and)g(arithmetic)h +(expansion,)150 4874 y(command)25 b(substitution,)g(and)g(arithmetic)h (expansion.)39 b(In)24 b(the)h(latter)h(case,)h(the)e(c)m(haracter)i -(sequence)150 4312 y Fs(\\newline)h Ft(is)j(ignored,)f(and)g(`)p +(sequence)150 4983 y Fs(\\newline)h Ft(is)j(ignored,)f(and)g(`)p Fs(\\)p Ft(')h(m)m(ust)f(b)s(e)g(used)f(to)i(quote)g(the)g(c)m (haracters)h(`)p Fs(\\)p Ft(',)e(`)p Fs($)p Ft(',)h(and)f(`)p -Fs(`)p Ft('.)275 4462 y(If)21 b(the)i(redirection)g(op)s(erator)g(is)f +Fs(`)p Ft('.)275 5121 y(If)21 b(the)i(redirection)g(op)s(erator)g(is)f (`)p Fs(<<-)p Ft(',)i(then)e(all)h(leading)g(tab)g(c)m(haracters)h(are) -e(stripp)s(ed)f(from)h(input)150 4571 y(lines)33 b(and)e(the)i(line)g +e(stripp)s(ed)f(from)h(input)150 5230 y(lines)33 b(and)e(the)i(line)g (con)m(taining)h Fq(delimiter)7 b Ft(.)47 b(This)31 b(allo)m(ws)j (here-do)s(cumen)m(ts)f(within)e(shell)i(scripts)f(to)150 -4681 y(b)s(e)e(inden)m(ted)g(in)g(a)h(natural)f(fashion.)150 -4895 y Fj(3.6.7)63 b(Here)41 b(Strings)150 5042 y Ft(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 5191 y Fs(<<<)47 b Fi(word)275 5340 y Ft(The)29 -b Fq(w)m(ord)34 b Ft(is)c(expanded)g(and)g(supplied)f(to)i(the)f -(command)h(on)f(its)h(standard)e(input.)p eop end +5340 y(b)s(e)e(inden)m(ted)g(in)g(a)h(natural)f(fashion.)p +eop end %%Page: 30 36 TeXDict begin 30 35 bop 150 -116 a Ft(30)2572 b(Bash)31 -b(Reference)g(Man)m(ual)150 299 y Fj(3.6.8)63 b(Duplicating)41 -b(File)g(Descriptors)150 446 y Ft(The)30 b(redirection)h(op)s(erator) -390 585 y Fs([)p Fi(n)11 b Fs(]<&)p Fi(word)150 723 y -Ft(is)35 b(used)e(to)j(duplicate)f(input)f(\014le)g(descriptors.)53 +b(Reference)g(Man)m(ual)150 299 y Fj(3.6.7)63 b(Here)41 +b(Strings)150 446 y Ft(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 602 y Fs(<<<)47 +b Fi(word)275 758 y Ft(The)29 b Fq(w)m(ord)34 b Ft(is)c(expanded)g(and) +g(supplied)f(to)i(the)f(command)h(on)f(its)h(standard)e(input.)150 +979 y Fj(3.6.8)63 b(Duplicating)41 b(File)g(Descriptors)150 +1126 y Ft(The)30 b(redirection)h(op)s(erator)390 1282 +y Fs([)p Fi(n)11 b Fs(]<&)p Fi(word)150 1438 y Ft(is)35 +b(used)e(to)j(duplicate)f(input)f(\014le)g(descriptors.)53 b(If)34 b Fq(w)m(ord)k Ft(expands)c(to)h(one)g(or)g(more)g(digits,)h -(the)f(\014le)150 833 y(descriptor)e(denoted)h(b)m(y)g +(the)f(\014le)150 1547 y(descriptor)e(denoted)h(b)m(y)g Fq(n)f Ft(is)g(made)h(to)g(b)s(e)f(a)h(cop)m(y)g(of)g(that)g(\014le)g (descriptor.)50 b(If)33 b(the)h(digits)g(in)f Fq(w)m(ord)150 -942 y Ft(do)c(not)h(sp)s(ecify)f(a)h(\014le)f(descriptor)g(op)s(en)g +1657 y Ft(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 Fq(w)m(ord)j Ft(ev)-5 b(aluates)150 1052 y(to)31 +b(If)29 b Fq(w)m(ord)j Ft(ev)-5 b(aluates)150 1766 y(to)31 b(`)p Fs(-)p Ft(',)g(\014le)g(descriptor)g Fq(n)f Ft(is)g(closed.)43 b(If)30 b Fq(n)g Ft(is)g(not)h(sp)s(eci\014ed,)f(the)h(standard)f -(input)g(\(\014le)h(descriptor)f(0\))150 1162 y(is)g(used.)275 -1300 y(The)f(op)s(erator)390 1439 y Fs([)p Fi(n)11 b -Fs(]>&)p Fi(word)150 1578 y Ft(is)40 b(used)g(similarly)h(to)g +(input)g(\(\014le)h(descriptor)f(0\))150 1876 y(is)g(used.)275 +2032 y(The)f(op)s(erator)390 2188 y Fs([)p Fi(n)11 b +Fs(]>&)p Fi(word)150 2344 y Ft(is)40 b(used)g(similarly)h(to)g (duplicate)f(output)g(\014le)h(descriptors.)70 b(If)40 b Fq(n)f Ft(is)i(not)f(sp)s(eci\014ed,)i(the)f(standard)150 -1687 y(output)30 b(\(\014le)g(descriptor)g(1\))h(is)f(used.)39 +2454 y(output)30 b(\(\014le)g(descriptor)g(1\))h(is)f(used.)39 b(If)30 b(the)g(digits)h(in)e Fq(w)m(ord)34 b Ft(do)29 b(not)i(sp)s(ecify)e(a)i(\014le)f(descriptor)g(op)s(en)150 -1797 y(for)38 b(output,)i(a)e(redirection)h(error)f(o)s(ccurs.)63 +2563 y(for)38 b(output,)i(a)e(redirection)h(error)f(o)s(ccurs.)63 b(As)38 b(a)h(sp)s(ecial)f(case,)k(if)c Fq(n)f Ft(is)h(omitted,)k(and) -37 b Fq(w)m(ord)k Ft(do)s(es)150 1906 y(not)28 b(expand)f(to)i(one)f +37 b Fq(w)m(ord)k Ft(do)s(es)150 2673 y(not)28 b(expand)f(to)i(one)f (or)f(more)h(digits,)i(the)e(standard)e(output)i(and)f(standard)g -(error)g(are)i(redirected)f(as)150 2016 y(describ)s(ed)h(previously)-8 -b(.)150 2219 y Fj(3.6.9)63 b(Mo)m(ving)41 b(File)h(Descriptors)150 -2366 y Ft(The)30 b(redirection)h(op)s(erator)390 2505 -y Fs([)p Fi(n)11 b Fs(]<&)p Fi(digit)g Fs(-)150 2644 +(error)g(are)i(redirected)f(as)150 2783 y(describ)s(ed)h(previously)-8 +b(.)150 3003 y Fj(3.6.9)63 b(Mo)m(ving)41 b(File)h(Descriptors)150 +3150 y Ft(The)30 b(redirection)h(op)s(erator)390 3306 +y Fs([)p Fi(n)11 b Fs(]<&)p Fi(digit)g Fs(-)150 3462 y Ft(mo)m(v)m(es)33 b(the)f(\014le)g(descriptor)f Fq(digit)k Ft(to)d(\014le)g(descriptor)g Fq(n)p Ft(,)f(or)h(the)g(standard)f -(input)f(\(\014le)j(descriptor)e(0\))150 2753 y(if)f +(input)f(\(\014le)j(descriptor)e(0\))150 3572 y(if)f Fq(n)g Ft(is)h(not)f(sp)s(eci\014ed.)40 b Fq(digit)33 b Ft(is)e(closed)g(after)g(b)s(eing)f(duplicated)g(to)h -Fq(n)p Ft(.)275 2892 y(Similarly)-8 b(,)31 b(the)f(redirection)h(op)s -(erator)390 3031 y Fs([)p Fi(n)11 b Fs(]>&)p Fi(digit)g -Fs(-)150 3169 y Ft(mo)m(v)m(es)29 b(the)g(\014le)f(descriptor)f +Fq(n)p Ft(.)275 3728 y(Similarly)-8 b(,)31 b(the)f(redirection)h(op)s +(erator)390 3884 y Fs([)p Fi(n)11 b Fs(]>&)p Fi(digit)g +Fs(-)150 4040 y Ft(mo)m(v)m(es)29 b(the)g(\014le)f(descriptor)f Fq(digit)k Ft(to)e(\014le)f(descriptor)g Fq(n)p Ft(,)g(or)g(the)g (standard)f(output)h(\(\014le)g(descriptor)g(1\))150 -3279 y(if)i Fq(n)g Ft(is)h(not)f(sp)s(eci\014ed.)150 -3483 y Fj(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 3629 y Ft(The)30 -b(redirection)h(op)s(erator)390 3768 y Fs([)p Fi(n)11 -b Fs(]<>)p Fi(word)150 3907 y Ft(causes)39 b(the)g(\014le)g(whose)g +4150 y(if)i Fq(n)g Ft(is)h(not)f(sp)s(eci\014ed.)150 +4370 y Fj(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 4517 y Ft(The)30 +b(redirection)h(op)s(erator)390 4673 y Fs([)p Fi(n)11 +b Fs(]<>)p Fi(word)150 4829 y Ft(causes)39 b(the)g(\014le)g(whose)g (name)g(is)g(the)g(expansion)g(of)g Fq(w)m(ord)j Ft(to)d(b)s(e)g(op)s -(ened)f(for)g(b)s(oth)h(reading)g(and)150 4016 y(writing)33 +(ened)f(for)g(b)s(oth)h(reading)g(and)150 4939 y(writing)33 b(on)f(\014le)h(descriptor)f Fq(n)p Ft(,)h(or)g(on)f(\014le)h (descriptor)g(0)g(if)f Fq(n)g Ft(is)h(not)g(sp)s(eci\014ed.)47 -b(If)32 b(the)h(\014le)f(do)s(es)h(not)150 4126 y(exist,)e(it)g(is)g -(created.)150 4365 y Fr(3.7)68 b(Executing)46 b(Commands)150 -4589 y Fj(3.7.1)63 b(Simple)41 b(Command)h(Expansion)150 -4736 y Ft(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 -4846 y(men)m(ts,)e(and)f(redirections,)h(from)f(left)h(to)g(righ)m(t.) -199 4984 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 5094 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 -5230 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 5340 y(tion)d(3.5)i([Shell)e(Expansions],)h(page)g -(18\).)61 b(If)37 b(an)m(y)g(w)m(ords)f(remain)h(after)h(expansion,)h -(the)e(\014rst)p eop end +b(If)32 b(the)h(\014le)f(do)s(es)h(not)150 5049 y(exist,)e(it)g(is)g +(created.)150 5313 y Fr(3.7)68 b(Executing)46 b(Commands)p +eop end %%Page: 31 37 TeXDict begin 31 36 bop 150 -116 a Ft(Chapter)30 b(3:)41 -b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(31)330 299 -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 -408 y(men)m(ts.)199 537 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(27\).)199 666 y(4.)61 b(The)25 -b(text)h(after)f(the)g(`)p Fs(=)p Ft(')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 776 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 886 y(b)s(eing)30 b(assigned)h(to)g(the)f(v)-5 -b(ariable.)275 1034 y(If)32 b(no)i(command)f(name)g(results,)h(the)g(v) +b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(31)150 299 +y Fj(3.7.1)63 b(Simple)41 b(Command)h(Expansion)150 446 +y Ft(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 +555 y(men)m(ts,)e(and)f(redirections,)h(from)f(left)h(to)g(righ)m(t.) +199 702 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 812 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 952 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 +1062 y(tion)d(3.5)i([Shell)e(Expansions],)h(page)g(19\).)61 +b(If)37 b(an)m(y)g(w)m(ords)f(remain)h(after)h(expansion,)h(the)e +(\014rst)330 1171 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 1281 y(men)m(ts.)199 1422 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(27\).)199 1562 +y(4.)61 b(The)25 b(text)h(after)f(the)g(`)p Fs(=)p Ft(')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 1672 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 1781 y(b)s(eing)30 b(assigned)h(to)g(the)f(v)-5 +b(ariable.)275 1959 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 1143 y(men)m(t.)39 b(Otherwise,)27 +h(en)m(viron-)150 2069 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 1253 y(do)35 +(t)h(of)g(the)f(executed)h(command)g(and)150 2178 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) -150 1363 y(a)j(v)-5 b(alue)39 b(to)g(a)g(readonly)f(v)-5 +150 2288 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 1472 y(status.)275 1601 y(If)33 +(with)g(a)f(non-zero)150 2397 y(status.)275 2544 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 1711 +(but)g(do)h(not)f(a\013ect)i(the)f(curren)m(t)150 2654 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 -1840 y(If)26 b(there)i(is)f(a)h(command)f(name)h(left)g(after)g +2800 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 1949 y(Otherwise,)39 b(the)e(command)g(exits.)62 +(w.)150 2910 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 2059 y(tion,)i(the)d(exit)h(status)g(of)f(the)h(command) +(substitu-)150 3020 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 2168 y(p)s(erformed.)55 b(If)35 b(there)g(w)m(ere)h(no)g(command)f +150 3129 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 -2278 y(zero.)150 2466 y Fj(3.7.2)63 b(Command)41 b(Searc)m(h)f(and)h -(Execution)150 2613 y Ft(After)i(a)h(command)f(has)g(b)s(een)f(split)h +3239 y(zero.)150 3450 y Fj(3.7.2)63 b(Command)41 b(Searc)m(h)f(and)h +(Execution)150 3597 y Ft(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 2723 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 2852 y(1.)61 +(and)f(an)150 3707 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 3853 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 2961 y(a)h(shell)g(function)f(b)m(y)g(that)h(name,)h(that)f +330 3963 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 3071 y(F)-8 b(unctions],)31 b(page)h(15.)199 -3200 y(2.)61 b(If)41 b(the)g(name)h(do)s(es)f(not)g(matc)m(h)i(a)e +(3.3)h([Shell)330 4073 y(F)-8 b(unctions],)31 b(page)h(15.)199 +4213 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 3309 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 3438 y(3.)61 +(of)g(shell)330 4323 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 4463 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 -3548 y(searc)m(hes)c(eac)m(h)g(elemen)m(t)g(of)g Fs($PATH)d +4573 y(searc)m(hes)c(eac)m(h)g(elemen)m(t)g(of)g Fs($PATH)d Ft(for)i(a)g(directory)h(con)m(taining)g(an)f(executable)h(\014le)f(b)m -(y)g(that)330 3657 y(name.)56 b(Bash)36 b(uses)f(a)h(hash)e(table)j(to) +(y)g(that)330 4682 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 3767 y(a)m(v)m(oid)e(m)m(ultiple)f Fs(PATH)f +(to)330 4792 y(a)m(v)m(oid)e(m)m(ultiple)f Fs(PATH)f Ft(searc)m(hes)i(\(see)f(the)g(description)g(of)f Fs(hash)g -Ft(in)g(Section)i(4.1)f([Bourne)g(Shell)330 3877 y(Builtins],)37 +Ft(in)g(Section)i(4.1)f([Bourne)g(Shell)330 4902 y(Builtins],)37 b(page)f(37\).)55 b(A)35 b(full)g(searc)m(h)g(of)g(the)g(directories)h (in)f Fs($PATH)e Ft(is)i(p)s(erformed)f(only)h(if)g(the)330 -3986 y(command)24 b(is)h(not)g(found)e(in)i(the)g(hash)f(table.)39 +5011 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 4096 y(for)e(a)h(de\014ned)e(shell)h(function)h(named)e +(hes)330 5121 y(for)e(a)h(de\014ned)e(shell)h(function)h(named)e Fs(command_not_found_handle)p Ft(.)32 b(If)23 b(that)h(function)f -(exists,)330 4205 y(it)32 b(is)f(in)m(v)m(ok)m(ed)i(with)e(the)h +(exists,)330 5230 y(it)32 b(is)f(in)m(v)m(ok)m(ed)i(with)e(the)h (original)g(command)f(and)g(the)h(original)g(command's)f(argumen)m(ts)h -(as)g(its)330 4315 y(argumen)m(ts,)h(and)e(the)i(function's)e(exit)i +(as)g(its)330 5340 y(argumen)m(ts,)h(and)e(the)i(function's)e(exit)i (status)g(b)s(ecomes)f(the)g(exit)h(status)f(of)h(the)f(shell.)46 -b(If)31 b(that)330 4425 y(function)g(is)g(not)g(de\014ned,)f(the)i -(shell)f(prin)m(ts)f(an)h(error)g(message)h(and)f(returns)e(an)i(exit)h -(status)g(of)330 4534 y(127.)199 4663 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 4773 -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 -4882 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 4992 y(argumen)m(ts)g(supplied,)e(if)h(an)m(y)-8 -b(.)199 5121 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 5230 y(a)d(directory)-8 b(,)34 -b(it)f(is)g(assumed)e(to)j(b)s(e)d(a)i Fq(shell)g(script)h -Ft(and)e(the)h(shell)f(executes)i(it)f(as)g(describ)s(ed)e(in)330 -5340 y(Section)g(3.8)h([Shell)e(Scripts],)g(page)i(34.)p -eop end +b(If)31 b(that)p eop end %%Page: 32 38 TeXDict begin 32 37 bop 150 -116 a Ft(32)2572 b(Bash)31 -b(Reference)g(Man)m(ual)199 299 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 408 y(complete)32 -b(and)e(collects)i(its)f(exit)g(status.)150 608 y Fj(3.7.3)63 -b(Command)41 b(Execution)f(En)m(vironmen)m(t)150 755 -y Ft(The)30 b(shell)g(has)h(an)f Fq(execution)h(en)m(vironmen)m(t)r -Ft(,)h(whic)m(h)e(consists)h(of)f(the)h(follo)m(wing:)225 -890 y Fp(\017)60 b Ft(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 1000 y(the)g Fs(exec)e -Ft(builtin)225 1135 y Fp(\017)60 b Ft(the)28 b(curren)m(t)g(w)m(orking) -h(directory)g(as)f(set)h(b)m(y)f Fs(cd)p Ft(,)g Fs(pushd)p -Ft(,)g(or)g Fs(popd)p Ft(,)g(or)g(inherited)g(b)m(y)g(the)h(shell)f(at) -330 1244 y(in)m(v)m(o)s(cation)225 1379 y Fp(\017)60 -b Ft(the)31 b(\014le)f(creation)i(mo)s(de)e(mask)g(as)h(set)g(b)m(y)f -Fs(umask)f Ft(or)h(inherited)g(from)g(the)h(shell's)f(paren)m(t)225 -1514 y Fp(\017)60 b Ft(curren)m(t)30 b(traps)g(set)h(b)m(y)f -Fs(trap)225 1648 y Fp(\017)60 b Ft(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 -Fs(set)f Ft(or)i(inherited)f(from)g(the)330 1758 y(shell's)i(paren)m(t) -f(in)g(the)h(en)m(vironmen)m(t)225 1893 y Fp(\017)60 -b Ft(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 -2002 y(en)m(vironmen)m(t)225 2137 y Fp(\017)60 b Ft(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 2247 -y(b)m(y)c Fs(set)225 2381 y Fp(\017)60 b Ft(options)31 -b(enabled)f(b)m(y)g Fs(shopt)f Ft(\(see)j(Section)f(4.3.2)h([The)e -(Shopt)g(Builtin],)h(page)g(57\))225 2516 y Fp(\017)60 -b Ft(shell)31 b(aliases)g(de\014ned)f(with)g Fs(alias)f -Ft(\(see)i(Section)g(6.6)h([Aliases],)g(page)f(81\))225 -2651 y Fp(\017)60 b Ft(v)-5 b(arious)50 b(pro)s(cess)f +b(Reference)g(Man)m(ual)330 299 y(function)g(is)g(not)g(de\014ned,)f +(the)i(shell)f(prin)m(ts)f(an)h(error)g(message)h(and)f(returns)e(an)i +(exit)h(status)g(of)330 408 y(127.)199 549 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 658 +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 +768 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 877 y(argumen)m(ts)g(supplied,)e(if)h(an)m(y)-8 b(.)199 +1018 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 1127 y(a)d(directory)-8 b(,)34 b(it)f(is)g(assumed)e(to)j +(b)s(e)d(a)i Fq(shell)g(script)h Ft(and)e(the)h(shell)f(executes)i(it)f +(as)g(describ)s(ed)e(in)330 1237 y(Section)g(3.8)h([Shell)e(Scripts],)g +(page)i(34.)199 1377 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 1487 y(complete)32 b(and)e(collects)i(its)f +(exit)g(status.)150 1697 y Fj(3.7.3)63 b(Command)41 b(Execution)f(En)m +(vironmen)m(t)150 1844 y Ft(The)30 b(shell)g(has)h(an)f +Fq(execution)h(en)m(vironmen)m(t)r Ft(,)h(whic)m(h)e(consists)h(of)f +(the)h(follo)m(wing:)225 1990 y Fp(\017)60 b Ft(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 2100 y(the)g Fs(exec)e Ft(builtin)225 2240 y Fp(\017)60 +b Ft(the)28 b(curren)m(t)g(w)m(orking)h(directory)g(as)f(set)h(b)m(y)f +Fs(cd)p Ft(,)g Fs(pushd)p Ft(,)g(or)g Fs(popd)p Ft(,)g(or)g(inherited)g +(b)m(y)g(the)h(shell)f(at)330 2349 y(in)m(v)m(o)s(cation)225 +2489 y Fp(\017)60 b Ft(the)31 b(\014le)f(creation)i(mo)s(de)e(mask)g +(as)h(set)g(b)m(y)f Fs(umask)f Ft(or)h(inherited)g(from)g(the)h +(shell's)f(paren)m(t)225 2630 y Fp(\017)60 b Ft(curren)m(t)30 +b(traps)g(set)h(b)m(y)f Fs(trap)225 2770 y Fp(\017)60 +b Ft(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 Fs(set)f Ft(or)i(inherited)f +(from)g(the)330 2879 y(shell's)i(paren)m(t)f(in)g(the)h(en)m(vironmen)m +(t)225 3020 y Fp(\017)60 b Ft(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 3129 y(en)m(vironmen)m(t)225 3269 y +Fp(\017)60 b Ft(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 3379 y(b)m(y)c Fs(set)225 3519 y Fp(\017)60 +b Ft(options)31 b(enabled)f(b)m(y)g Fs(shopt)f Ft(\(see)j(Section)f +(4.3.2)h([The)e(Shopt)g(Builtin],)h(page)g(57\))225 3659 +y Fp(\017)60 b Ft(shell)31 b(aliases)g(de\014ned)f(with)g +Fs(alias)f Ft(\(see)i(Section)g(6.6)h([Aliases],)g(page)f(81\))225 +3799 y Fp(\017)60 b Ft(v)-5 b(arious)50 b(pro)s(cess)f Fl(id)p Ft(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 2761 y(page)31 +(\(see)i(Section)g(3.2.3)g([Lists],)330 3909 y(page)31 b(9\),)g(the)g(v)-5 b(alue)31 b(of)f Fs($$)p Ft(,)g(and)g(the)h(v)-5 -b(alue)31 b(of)f Fs($PPID)275 2921 y Ft(When)k(a)g(simple)h(command)f +b(alue)31 b(of)f Fs($PPID)275 4085 y Ft(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 3030 y(in)m(v)m(ok)m(ed)25 b(in)f(a)g +(executed,)i(it)f(is)150 4195 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 3140 y(noted,)31 +f(follo)m(wing.)40 b(Unless)24 b(otherwise)150 4305 y(noted,)31 b(the)f(v)-5 b(alues)31 b(are)g(inherited)f(from)g(the)g(shell.)225 -3275 y Fp(\017)60 b Ft(the)31 b(shell's)h(op)s(en)e(\014les,)i(plus)e +4451 y Fp(\017)60 b Ft(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 3384 y(the)g(command)225 3519 +(y)g(redirections)g(to)330 4560 y(the)g(command)225 4700 y Fp(\017)60 b Ft(the)31 b(curren)m(t)f(w)m(orking)g(directory)225 -3654 y Fp(\017)60 b Ft(the)31 b(\014le)f(creation)i(mo)s(de)e(mask)225 -3789 y Fp(\017)60 b Ft(shell)32 b(v)-5 b(ariables)33 +4840 y Fp(\017)60 b Ft(the)31 b(\014le)f(creation)i(mo)s(de)e(mask)225 +4981 y Fp(\017)60 b Ft(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 3898 y(command,)e(passed)g +b(ariables)32 b(exp)s(orted)g(for)g(the)330 5090 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(33\))225 4033 y Fp(\017)60 b +(vironmen)m(t],)e(page)g(33\))225 5230 y Fp(\017)60 b Ft(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 4143 y(traps)e(ignored)h(b)m(y)f(the)g(shell)h(are)g(ignored) -275 4303 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 -4412 y(en)m(vironmen)m(t.)275 4547 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 4657 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 4767 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 -4876 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 4986 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 -5095 y(a\013ect)32 b(the)f(shell's)f(execution)i(en)m(vironmen)m(t.)275 -5230 y(Subshells)24 b(spa)m(wned)h(to)i(execute)g(command)f -(substitutions)g(inherit)g(the)g(v)-5 b(alue)26 b(of)g(the)h(`)p -Fs(-e)p Ft(')e(option)150 5340 y(from)20 b(the)h(paren)m(t)g(shell.)37 -b(When)21 b(not)f(in)h Fl(posix)f Ft(mo)s(de,)i(Bash)f(clears)g(the)g -(`)p Fs(-e)p Ft(')f(option)h(in)g(suc)m(h)f(subshells.)p +(and)330 5340 y(traps)e(ignored)h(b)m(y)f(the)g(shell)h(are)g(ignored)p eop end %%Page: 33 39 TeXDict begin 33 38 bop 150 -116 a Ft(Chapter)30 b(3:)41 b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(33)275 299 -y(If)38 b(a)h(command)f(is)g(follo)m(w)m(ed)j(b)m(y)d(a)h(`)p +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 +408 y(en)m(vironmen)m(t.)275 552 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 662 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 772 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 +881 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 991 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 +1100 y(a\013ect)32 b(the)f(shell's)f(execution)i(en)m(vironmen)m(t.)275 +1244 y(Subshells)24 b(spa)m(wned)h(to)i(execute)g(command)f +(substitutions)g(inherit)g(the)g(v)-5 b(alue)26 b(of)g(the)h(`)p +Fs(-e)p Ft(')e(option)150 1354 y(from)20 b(the)h(paren)m(t)g(shell.)37 +b(When)21 b(not)f(in)h Fl(posix)f Ft(mo)s(de,)i(Bash)f(clears)g(the)g +(`)p Fs(-e)p Ft(')f(option)h(in)g(suc)m(h)f(subshells.)275 +1498 y(If)38 b(a)h(command)f(is)g(follo)m(w)m(ed)j(b)m(y)d(a)h(`)p Fs(&)p Ft(')g(and)f(job)g(con)m(trol)i(is)e(not)h(activ)m(e,)k(the)c -(default)g(standard)150 408 y(input)e(for)g(the)h(command)f(is)h(the)g +(default)g(standard)150 1607 y(input)e(for)g(the)h(command)f(is)h(the)g (empt)m(y)g(\014le)f(`)p Fs(/dev/null)p Ft('.)61 b(Otherwise,)39 -b(the)f(in)m(v)m(ok)m(ed)h(command)150 518 y(inherits)30 +b(the)f(in)m(v)m(ok)m(ed)h(command)150 1717 y(inherits)30 b(the)h(\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 738 y Fj(3.7.4)63 -b(En)m(vironmen)m(t)150 885 y Ft(When)28 b(a)i(program)e(is)h(in)m(v)m +(di\014ed)g(b)m(y)g(redirections.)150 1926 y Fj(3.7.4)63 +b(En)m(vironmen)m(t)150 2073 y Ft(When)28 b(a)i(program)e(is)h(in)m(v)m (ok)m(ed)h(it)f(is)g(giv)m(en)g(an)g(arra)m(y)g(of)g(strings)f(called)i (the)f Fq(en)m(vironmen)m(t)r Ft(.)41 b(This)28 b(is)h(a)150 -994 y(list)i(of)g(name-v)-5 b(alue)31 b(pairs,)f(of)h(the)f(form)g -Fs(name=value)p Ft(.)275 1149 y(Bash)39 b(pro)m(vides)g(sev)m(eral)i(w) +2182 y(list)i(of)g(name-v)-5 b(alue)31 b(pairs,)f(of)h(the)f(form)g +Fs(name=value)p Ft(.)275 2326 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 1259 +b(On)38 b(in)m(v)m(o)s(cation,)44 b(the)c(shell)150 2436 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)150 -1368 y(marking)26 b(it)g(for)g Fq(exp)s(ort)h Ft(to)g(c)m(hild)f(pro)s +2545 y(marking)26 b(it)g(for)g Fq(exp)s(ort)h Ft(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 1478 y Fs(export)c Ft(and)i(`)p Fs(declare)29 +(t.)39 b(The)150 2655 y Fs(export)c Ft(and)i(`)p Fs(declare)29 b(-x)p Ft(')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 1588 y(deleted)21 +(to)h(b)s(e)e(added)h(to)h(and)150 2765 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 1697 y(new)31 b(v)-5 b(alue)32 +(mo)s(di\014ed,)i(the)150 2874 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 -1807 y(b)m(y)f(an)m(y)g(executed)h(command)f(consists)g(of)g(the)g +2984 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 1916 y(mo)s(di\014ed)26 +b(alues)31 b(ma)m(y)h(b)s(e)150 3093 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 Fs(unset)e Ft(and)h(`)p Fs(export)j(-n)p Ft(')e(commands,)g -(plus)150 2026 y(an)m(y)k(additions)f(via)h(the)g Fs(export)d -Ft(and)i(`)p Fs(declare)f(-x)p Ft(')h(commands.)275 2181 +(plus)150 3203 y(an)m(y)k(additions)f(via)h(the)g Fs(export)d +Ft(and)i(`)p Fs(declare)f(-x)p Ft(')h(commands.)275 3347 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 -2290 y(b)m(y)c(pre\014xing)e(it)i(with)g(parameter)g(assignmen)m(ts,)h +3457 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 -2400 y(page)g(17.)41 b(These)29 b(assignmen)m(t)i(statemen)m(ts)g +3566 y(page)g(17.)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 2555 y(If)d(the)h(`)p Fs(-k)p Ft(')g(option)g(is)g(set)g -(\(see)h(Section)f(4.3.1)i([The)e(Set)g(Builtin],)h(page)f(53\),)i -(then)e(all)g(parameter)150 2665 y(assignmen)m(ts)i(are)g(placed)h(in)e +(command.)275 3710 y(If)d(the)h(`)p Fs(-k)p Ft(')g(option)g(is)g(set)g +(\(see)h(Section)f(4.3.1)i([The)e(Set)g(Builtin],)h(page)f(54\),)i +(then)e(all)g(parameter)150 3820 y(assignmen)m(ts)i(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 2774 y(command)g(name.)275 -2929 y(When)f(Bash)h(in)m(v)m(ok)m(es)i(an)e(external)g(command,)g(the) +(that)f(precede)g(the)150 3929 y(command)g(name.)275 +4073 y(When)f(Bash)h(in)m(v)m(ok)m(es)i(an)e(external)g(command,)g(the) g(v)-5 b(ariable)31 b(`)p Fs($_)p Ft(')f(is)g(set)g(to)h(the)f(full)f -(path)h(name)150 3039 y(of)h(the)f(command)g(and)g(passed)g(to)h(that)g -(command)f(in)g(its)h(en)m(vironmen)m(t.)150 3258 y Fj(3.7.5)63 -b(Exit)40 b(Status)150 3405 y Ft(The)26 b(exit)h(status)f(of)g(an)g +(path)h(name)150 4183 y(of)h(the)f(command)g(and)g(passed)g(to)h(that)g +(command)f(in)g(its)h(en)m(vironmen)m(t.)150 4392 y Fj(3.7.5)63 +b(Exit)40 b(Status)150 4538 y Ft(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 Fq(w)m(aitpid)k Ft(system)d(call)g(or)150 3515 +(the)g Fq(w)m(aitpid)k Ft(system)d(call)g(or)150 4648 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 3624 y(shell)i(ma)m(y)g(use)f(v)-5 +(elo)m(w,)h(the)150 4758 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 -3734 y(commands)j(are)g(also)h(limited)g(to)g(this)f(range.)58 +4867 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 -3844 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 3999 y(F)-8 b(or)32 b(the)g(shell's)g(purp)s +4977 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 5121 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 4108 y(A)e(non-zero)h(exit)g(status)g +(status)f(has)f(succeeded.)150 5230 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 4218 y(there)34 +(tuitiv)m(e)i(sc)m(heme)e(is)f(used)g(so)150 5340 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 4327 y(failure)37 b(mo)s(des.)61 b(When)37 -b(a)g(command)g(terminates)h(on)f(a)g(fatal)i(signal)f(whose)f(n)m(um)m -(b)s(er)e(is)i Fq(N)10 b Ft(,)38 b(Bash)150 4437 y(uses)30 -b(the)g(v)-5 b(alue)31 b(128)p Fs(+)p Fq(N)42 b Ft(as)30 -b(the)h(exit)g(status.)275 4592 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 4701 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 -4856 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 -4966 y(is)c(greater)i(than)e(zero.)275 5121 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 5230 -y(ditional)i(Constructs],)h(page)f(10\))g(and)e(some)i(of)f(the)g(list) -g(constructs)g(\(see)h(Section)f(3.2.3)i([Lists],)150 -5340 y(page)31 b(9\).)p eop end +b(arious)p eop end %%Page: 34 40 TeXDict begin 34 39 bop 150 -116 a Ft(34)2572 b(Bash)31 -b(Reference)g(Man)m(ual)275 299 y(All)40 b(of)g(the)h(Bash)f(builtins)f +b(Reference)g(Man)m(ual)150 299 y(failure)37 b(mo)s(des.)61 +b(When)37 b(a)g(command)g(terminates)h(on)f(a)g(fatal)i(signal)f(whose) +f(n)m(um)m(b)s(er)e(is)i Fq(N)10 b Ft(,)38 b(Bash)150 +408 y(uses)30 b(the)g(v)-5 b(alue)31 b(128)p Fs(+)p Fq(N)42 +b Ft(as)30 b(the)h(exit)g(status.)275 548 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 657 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 796 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 906 y(is)c(greater)i(than)e(zero.)275 +1045 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 +1155 y(ditional)i(Constructs],)h(page)f(10\))g(and)e(some)i(of)f(the)g +(list)g(constructs)g(\(see)h(Section)f(3.2.3)i([Lists],)150 +1264 y(page)31 b(9\).)275 1403 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 408 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 518 y(return)29 b(an)i(exit)g(status)g(of)f -(2)h(to)g(indicate)g(incorrect)h(usage.)150 722 y Fj(3.7.6)63 -b(Signals)150 869 y Ft(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 -Fs(SIGTERM)d Ft(\(so)j(that)g(`)p Fs(kill)150 979 y(0)p -Ft(')c(do)s(es)g(not)g(kill)g(an)g(in)m(teractiv)m(e)j(shell\),)f(and)d -Fs(SIGINT)f Ft(is)i(caugh)m(t)h(and)f(handled)f(\(so)h(that)h(the)f -Fs(wait)150 1088 y Ft(builtin)24 b(is)h(in)m(terruptible\).)39 -b(When)24 b(Bash)g(receiv)m(es)j(a)d Fs(SIGINT)p Ft(,)h(it)g(breaks)f -(out)h(of)f(an)m(y)h(executing)h(lo)s(ops.)150 1198 y(In)31 -b(all)h(cases,)h(Bash)f(ignores)g Fs(SIGQUIT)p Ft(.)42 -b(If)32 b(job)f(con)m(trol)i(is)e(in)h(e\013ect)h(\(see)f(Chapter)f(7)h -([Job)g(Con)m(trol],)150 1307 y(page)f(91\),)h(Bash)e(ignores)h -Fs(SIGTTIN)p Ft(,)e Fs(SIGTTOU)p Ft(,)g(and)g Fs(SIGTSTP)p -Ft(.)275 1446 y(Non-builtin)i(commands)g(started)g(b)m(y)g(Bash)h(ha)m -(v)m(e)g(signal)g(handlers)e(set)i(to)g(the)g(v)-5 b(alues)31 -b(inherited)150 1556 y(b)m(y)37 b(the)h(shell)g(from)f(its)h(paren)m -(t.)62 b(When)38 b(job)f(con)m(trol)i(is)e(not)h(in)f(e\013ect,)k -(async)m(hronous)c(commands)150 1666 y(ignore)f Fs(SIGINT)e -Ft(and)h Fs(SIGQUIT)e Ft(in)j(addition)f(to)i(these)f(inherited)f -(handlers.)55 b(Commands)35 b(run)f(as)i(a)150 1775 y(result)27 -b(of)h(command)f(substitution)h(ignore)g(the)g(k)m(eyb)s -(oard-generated)g(job)g(con)m(trol)h(signals)f Fs(SIGTTIN)p -Ft(,)150 1885 y Fs(SIGTTOU)p Ft(,)h(and)g Fs(SIGTSTP)p -Ft(.)275 2024 y(The)h(shell)i(exits)g(b)m(y)f(default)g(up)s(on)f -(receipt)i(of)f(a)h Fs(SIGHUP)p Ft(.)42 b(Before)32 b(exiting,)h(an)e -(in)m(teractiv)m(e)j(shell)150 2134 y(resends)41 b(the)i -Fs(SIGHUP)e Ft(to)i(all)g(jobs,)i(running)c(or)h(stopp)s(ed.)76 -b(Stopp)s(ed)41 b(jobs)h(are)h(sen)m(t)g Fs(SIGCONT)d -Ft(to)150 2243 y(ensure)32 b(that)h(they)g(receiv)m(e)i(the)e -Fs(SIGHUP)p Ft(.)47 b(T)-8 b(o)33 b(prev)m(en)m(t)g(the)g(shell)g(from) -g(sending)f(the)h Fs(SIGHUP)e Ft(signal)150 2353 y(to)i(a)g(particular) -g(job,)g(it)g(should)f(b)s(e)g(remo)m(v)m(ed)h(from)g(the)f(jobs)g -(table)i(with)e(the)h Fs(disown)e Ft(builtin)h(\(see)150 -2462 y(Section)f(7.2)g([Job)f(Con)m(trol)h(Builtins],)g(page)g(92\))h -(or)e(mark)m(ed)g(to)h(not)f(receiv)m(e)i Fs(SIGHUP)d -Ft(using)h Fs(disown)150 2572 y(-h)p Ft(.)275 2711 y(If)38 -b(the)h Fs(huponexit)e Ft(shell)i(option)g(has)g(b)s(een)f(set)i(with)f -Fs(shopt)e Ft(\(see)j(Section)g(4.3.2)h([The)e(Shopt)150 -2821 y(Builtin],)31 b(page)g(57\),)h(Bash)f(sends)e(a)i +(a)g(non-zero)150 1513 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 1623 y(return)29 +b(an)i(exit)g(status)g(of)f(2)h(to)g(indicate)g(incorrect)h(usage.)150 +1827 y Fj(3.7.6)63 b(Signals)150 1974 y Ft(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 Fs(SIGTERM)d Ft(\(so)j(that)g(`)p Fs(kill)150 +2083 y(0)p Ft(')c(do)s(es)g(not)g(kill)g(an)g(in)m(teractiv)m(e)j +(shell\),)f(and)d Fs(SIGINT)f Ft(is)i(caugh)m(t)h(and)f(handled)f(\(so) +h(that)h(the)f Fs(wait)150 2193 y Ft(builtin)24 b(is)h(in)m +(terruptible\).)39 b(When)24 b(Bash)g(receiv)m(es)j(a)d +Fs(SIGINT)p Ft(,)h(it)g(breaks)f(out)h(of)f(an)m(y)h(executing)h(lo)s +(ops.)150 2302 y(In)31 b(all)h(cases,)h(Bash)f(ignores)g +Fs(SIGQUIT)p Ft(.)42 b(If)32 b(job)f(con)m(trol)i(is)e(in)h(e\013ect)h +(\(see)f(Chapter)f(7)h([Job)g(Con)m(trol],)150 2412 y(page)f(91\),)h +(Bash)e(ignores)h Fs(SIGTTIN)p Ft(,)e Fs(SIGTTOU)p Ft(,)g(and)g +Fs(SIGTSTP)p Ft(.)275 2551 y(Non-builtin)i(commands)g(started)g(b)m(y)g +(Bash)h(ha)m(v)m(e)g(signal)g(handlers)e(set)i(to)g(the)g(v)-5 +b(alues)31 b(inherited)150 2661 y(b)m(y)37 b(the)h(shell)g(from)f(its)h +(paren)m(t.)62 b(When)38 b(job)f(con)m(trol)i(is)e(not)h(in)f +(e\013ect,)k(async)m(hronous)c(commands)150 2770 y(ignore)f +Fs(SIGINT)e Ft(and)h Fs(SIGQUIT)e Ft(in)j(addition)f(to)i(these)f +(inherited)f(handlers.)55 b(Commands)35 b(run)f(as)i(a)150 +2880 y(result)27 b(of)h(command)f(substitution)h(ignore)g(the)g(k)m +(eyb)s(oard-generated)g(job)g(con)m(trol)h(signals)f +Fs(SIGTTIN)p Ft(,)150 2989 y Fs(SIGTTOU)p Ft(,)h(and)g +Fs(SIGTSTP)p Ft(.)275 3129 y(The)h(shell)i(exits)g(b)m(y)f(default)g +(up)s(on)f(receipt)i(of)f(a)h Fs(SIGHUP)p Ft(.)42 b(Before)32 +b(exiting,)h(an)e(in)m(teractiv)m(e)j(shell)150 3238 +y(resends)41 b(the)i Fs(SIGHUP)e Ft(to)i(all)g(jobs,)i(running)c(or)h +(stopp)s(ed.)76 b(Stopp)s(ed)41 b(jobs)h(are)h(sen)m(t)g +Fs(SIGCONT)d Ft(to)150 3348 y(ensure)32 b(that)h(they)g(receiv)m(e)i +(the)e Fs(SIGHUP)p Ft(.)47 b(T)-8 b(o)33 b(prev)m(en)m(t)g(the)g(shell) +g(from)g(sending)f(the)h Fs(SIGHUP)e Ft(signal)150 3457 +y(to)i(a)g(particular)g(job,)g(it)g(should)f(b)s(e)g(remo)m(v)m(ed)h +(from)g(the)f(jobs)g(table)i(with)e(the)h Fs(disown)e +Ft(builtin)h(\(see)150 3567 y(Section)f(7.2)g([Job)f(Con)m(trol)h +(Builtins],)g(page)g(92\))h(or)e(mark)m(ed)g(to)h(not)f(receiv)m(e)i +Fs(SIGHUP)d Ft(using)h Fs(disown)150 3676 y(-h)p Ft(.)275 +3816 y(If)38 b(the)h Fs(huponexit)e Ft(shell)i(option)g(has)g(b)s(een)f +(set)i(with)f Fs(shopt)e Ft(\(see)j(Section)g(4.3.2)h([The)e(Shopt)150 +3925 y(Builtin],)31 b(page)g(57\),)h(Bash)f(sends)e(a)i Fs(SIGHUP)e Ft(to)i(all)g(jobs)f(when)f(an)i(in)m(teractiv)m(e)i(login) -e(shell)g(exits.)275 2960 y(If)38 b(Bash)h(is)g(w)m(aiting)h(for)f(a)g +e(shell)g(exits.)275 4064 y(If)38 b(Bash)h(is)g(w)m(aiting)h(for)f(a)g (command)f(to)i(complete)g(and)e(receiv)m(es)j(a)e(signal)h(for)e(whic) -m(h)h(a)g(trap)150 3069 y(has)c(b)s(een)f(set,)i(the)f(trap)g(will)g +m(h)h(a)g(trap)150 4174 y(has)c(b)s(een)f(set,)i(the)f(trap)g(will)g (not)g(b)s(e)f(executed)i(un)m(til)f(the)g(command)f(completes.)55 -b(When)35 b(Bash)g(is)150 3179 y(w)m(aiting)j(for)f(an)g(async)m +b(When)35 b(Bash)g(is)150 4284 y(w)m(aiting)j(for)f(an)g(async)m (hronous)g(command)g(via)h(the)f Fs(wait)f Ft(builtin,)i(the)g -(reception)g(of)f(a)g(signal)h(for)150 3289 y(whic)m(h)d(a)g(trap)g +(reception)g(of)f(a)g(signal)h(for)150 4393 y(whic)m(h)d(a)g(trap)g (has)g(b)s(een)f(set)h(will)h(cause)f(the)g Fs(wait)f Ft(builtin)h(to)g(return)f(immediately)i(with)f(an)g(exit)150 -3398 y(status)c(greater)g(than)f(128,)i(immediately)g(after)f(whic)m(h) -f(the)h(trap)f(is)g(executed.)150 3638 y Fr(3.8)68 b(Shell)45 -b(Scripts)150 3797 y Ft(A)30 b(shell)f(script)h(is)f(a)h(text)h(\014le) +4503 y(status)c(greater)g(than)f(128,)i(immediately)g(after)f(whic)m(h) +f(the)h(trap)f(is)g(executed.)150 4742 y Fr(3.8)68 b(Shell)45 +b(Scripts)150 4902 y Ft(A)30 b(shell)f(script)h(is)f(a)h(text)h(\014le) f(con)m(taining)h(shell)f(commands.)40 b(When)29 b(suc)m(h)g(a)h -(\014le)g(is)f(used)g(as)h(the)g(\014rst)150 3907 y(non-option)i +(\014le)g(is)f(used)g(as)h(the)g(\014rst)150 5011 y(non-option)i (argumen)m(t)h(when)e(in)m(v)m(oking)i(Bash,)g(and)e(neither)h(the)g(`) p Fs(-c)p Ft(')g(nor)g(`)p Fs(-s)p Ft(')g(option)g(is)g(supplied)150 -4016 y(\(see)25 b(Section)h(6.1)f([In)m(v)m(oking)h(Bash],)g(page)f +5121 y(\(see)25 b(Section)h(6.1)f([In)m(v)m(oking)h(Bash],)g(page)f (73\),)i(Bash)e(reads)f(and)g(executes)i(commands)e(from)g(the)h -(\014le,)150 4126 y(then)32 b(exits.)46 b(This)32 b(mo)s(de)f(of)i(op)s +(\014le,)150 5230 y(then)32 b(exits.)46 b(This)32 b(mo)s(de)f(of)i(op)s (eration)f(creates)i(a)e(non-in)m(teractiv)m(e)j(shell.)46 -b(The)31 b(shell)i(\014rst)e(searc)m(hes)150 4235 y(for)d(the)g(\014le) +b(The)31 b(shell)i(\014rst)e(searc)m(hes)150 5340 y(for)d(the)g(\014le) g(in)g(the)g(curren)m(t)f(directory)-8 b(,)30 b(and)d(lo)s(oks)i(in)e -(the)i(directories)g(in)e Fs($PATH)g Ft(if)h(not)g(found)e(there.)275 -4375 y(When)34 b(Bash)h(runs)e(a)i(shell)g(script,)g(it)h(sets)f(the)f -(sp)s(ecial)i(parameter)f Fs(0)f Ft(to)h(the)g(name)g(of)g(the)g -(\014le,)150 4484 y(rather)k(than)g(the)h(name)f(of)h(the)f(shell,)j -(and)d(the)h(p)s(ositional)g(parameters)f(are)h(set)g(to)g(the)g -(remain-)150 4594 y(ing)f(argumen)m(ts,)j(if)d(an)m(y)g(are)g(giv)m -(en.)67 b(If)39 b(no)g(additional)g(argumen)m(ts)h(are)f(supplied,)h -(the)f(p)s(ositional)150 4703 y(parameters)31 b(are)f(unset.)275 -4842 y(A)39 b(shell)h(script)f(ma)m(y)h(b)s(e)f(made)h(executable)h(b)m -(y)e(using)g(the)h Fs(chmod)e Ft(command)h(to)h(turn)e(on)i(the)150 -4952 y(execute)j(bit.)73 b(When)41 b(Bash)g(\014nds)e(suc)m(h)i(a)h -(\014le)f(while)g(searc)m(hing)h(the)f Fs($PATH)f Ft(for)h(a)h -(command,)h(it)150 5062 y(spa)m(wns)30 b(a)g(subshell)g(to)h(execute)h -(it.)41 b(In)30 b(other)g(w)m(ords,)g(executing)390 5201 -y Fs(filename)46 b Fi(arguments)150 5340 y Ft(is)30 b(equiv)-5 -b(alen)m(t)32 b(to)f(executing)p eop end +(the)i(directories)g(in)e Fs($PATH)g Ft(if)h(not)g(found)e(there.)p +eop end %%Page: 35 41 TeXDict begin 35 40 bop 150 -116 a Ft(Chapter)30 b(3:)41 -b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(35)390 299 -y Fs(bash)47 b(filename)e Fi(arguments)150 433 y Ft(if)30 -b Fs(filename)d Ft(is)j(an)f(executable)j(shell)e(script.)40 -b(This)29 b(subshell)g(reinitializes)i(itself,)g(so)f(that)h(the)e -(e\013ect)150 543 y(is)36 b(as)h(if)g(a)f(new)g(shell)h(had)f(b)s(een)g -(in)m(v)m(ok)m(ed)h(to)h(in)m(terpret)e(the)h(script,)h(with)e(the)h -(exception)h(that)f(the)150 653 y(lo)s(cations)25 b(of)g(commands)e -(remem)m(b)s(ered)h(b)m(y)g(the)g(paren)m(t)g(\(see)h(the)f -(description)g(of)g Fs(hash)f Ft(in)h(Section)h(4.1)150 -762 y([Bourne)30 b(Shell)h(Builtins],)g(page)g(37\))h(are)e(retained)h -(b)m(y)f(the)h(c)m(hild.)275 897 y(Most)36 b(v)m(ersions)g(of)g(Unix)f -(mak)m(e)h(this)g(a)g(part)f(of)h(the)g(op)s(erating)g(system's)f -(command)h(execution)150 1006 y(mec)m(hanism.)50 b(If)33 -b(the)g(\014rst)g(line)h(of)f(a)h(script)f(b)s(egins)g(with)g(the)g(t)m -(w)m(o)i(c)m(haracters)g(`)p Fs(#!)p Ft(',)f(the)g(remainder)150 -1116 y(of)d(the)g(line)h(sp)s(eci\014es)e(an)h(in)m(terpreter)g(for)g -(the)g(program.)43 b(Th)m(us,)30 b(y)m(ou)h(can)h(sp)s(ecify)e(Bash,)i -Fs(awk)p Ft(,)e(P)m(erl,)150 1225 y(or)g(some)h(other)g(in)m(terpreter) -g(and)e(write)i(the)f(rest)h(of)g(the)f(script)g(\014le)h(in)f(that)h -(language.)275 1360 y(The)40 b(argumen)m(ts)h(to)g(the)g(in)m +b(Basic)32 b(Shell)e(F)-8 b(eatures)2246 b(35)275 299 +y(When)34 b(Bash)h(runs)e(a)i(shell)g(script,)g(it)h(sets)f(the)f(sp)s +(ecial)i(parameter)f Fs(0)f Ft(to)h(the)g(name)g(of)g(the)g(\014le,)150 +408 y(rather)k(than)g(the)h(name)f(of)h(the)f(shell,)j(and)d(the)h(p)s +(ositional)g(parameters)f(are)h(set)g(to)g(the)g(remain-)150 +518 y(ing)f(argumen)m(ts,)j(if)d(an)m(y)g(are)g(giv)m(en.)67 +b(If)39 b(no)g(additional)g(argumen)m(ts)h(are)f(supplied,)h(the)f(p)s +(ositional)150 628 y(parameters)31 b(are)f(unset.)275 +762 y(A)39 b(shell)h(script)f(ma)m(y)h(b)s(e)f(made)h(executable)h(b)m +(y)e(using)g(the)h Fs(chmod)e Ft(command)h(to)h(turn)e(on)i(the)150 +872 y(execute)j(bit.)73 b(When)41 b(Bash)g(\014nds)e(suc)m(h)i(a)h +(\014le)f(while)g(searc)m(hing)h(the)f Fs($PATH)f Ft(for)h(a)h +(command,)h(it)150 981 y(spa)m(wns)30 b(a)g(subshell)g(to)h(execute)h +(it.)41 b(In)30 b(other)g(w)m(ords,)g(executing)390 1116 +y Fs(filename)46 b Fi(arguments)150 1250 y Ft(is)30 b(equiv)-5 +b(alen)m(t)32 b(to)f(executing)390 1385 y Fs(bash)47 +b(filename)e Fi(arguments)150 1519 y Ft(if)30 b Fs(filename)d +Ft(is)j(an)f(executable)j(shell)e(script.)40 b(This)29 +b(subshell)g(reinitializes)i(itself,)g(so)f(that)h(the)e(e\013ect)150 +1629 y(is)36 b(as)h(if)g(a)f(new)g(shell)h(had)f(b)s(een)g(in)m(v)m(ok) +m(ed)h(to)h(in)m(terpret)e(the)h(script,)h(with)e(the)h(exception)h +(that)f(the)150 1738 y(lo)s(cations)25 b(of)g(commands)e(remem)m(b)s +(ered)h(b)m(y)g(the)g(paren)m(t)g(\(see)h(the)f(description)g(of)g +Fs(hash)f Ft(in)h(Section)h(4.1)150 1848 y([Bourne)30 +b(Shell)h(Builtins],)g(page)g(37\))h(are)e(retained)h(b)m(y)f(the)h(c)m +(hild.)275 1983 y(Most)36 b(v)m(ersions)g(of)g(Unix)f(mak)m(e)h(this)g +(a)g(part)f(of)h(the)g(op)s(erating)g(system's)f(command)h(execution) +150 2092 y(mec)m(hanism.)50 b(If)33 b(the)g(\014rst)g(line)h(of)f(a)h +(script)f(b)s(egins)g(with)g(the)g(t)m(w)m(o)i(c)m(haracters)g(`)p +Fs(#!)p Ft(',)f(the)g(remainder)150 2202 y(of)d(the)g(line)h(sp)s +(eci\014es)e(an)h(in)m(terpreter)g(for)g(the)g(program.)43 +b(Th)m(us,)30 b(y)m(ou)h(can)h(sp)s(ecify)e(Bash,)i Fs(awk)p +Ft(,)e(P)m(erl,)150 2311 y(or)g(some)h(other)g(in)m(terpreter)g(and)e +(write)i(the)f(rest)h(of)g(the)f(script)g(\014le)h(in)f(that)h +(language.)275 2446 y(The)40 b(argumen)m(ts)h(to)g(the)g(in)m (terpreter)g(consist)g(of)g(a)g(single)h(optional)f(argumen)m(t)h -(follo)m(wing)g(the)150 1469 y(in)m(terpreter)33 b(name)h(on)f(the)g +(follo)m(wing)g(the)150 2555 y(in)m(terpreter)33 b(name)h(on)f(the)g (\014rst)f(line)i(of)f(the)g(script)g(\014le,)h(follo)m(w)m(ed)h(b)m(y) -e(the)g(name)g(of)g(the)h(script)f(\014le,)150 1579 y(follo)m(w)m(ed)g +e(the)g(name)g(of)g(the)h(script)f(\014le,)150 2665 y(follo)m(w)m(ed)g (b)m(y)f(the)f(rest)h(of)g(the)f(argumen)m(ts.)45 b(Bash)31 b(will)h(p)s(erform)e(this)i(action)h(on)e(op)s(erating)h(systems)150 -1689 y(that)24 b(do)g(not)f(handle)g(it)h(themselv)m(es.)40 +2775 y(that)24 b(do)g(not)f(handle)g(it)h(themselv)m(es.)40 b(Note)25 b(that)f(some)g(older)g(v)m(ersions)f(of)h(Unix)f(limit)i -(the)f(in)m(terpreter)150 1798 y(name)30 b(and)g(argumen)m(t)h(to)g(a)g -(maxim)m(um)f(of)h(32)g(c)m(haracters.)275 1933 y(Bash)h(scripts)g +(the)f(in)m(terpreter)150 2884 y(name)30 b(and)g(argumen)m(t)h(to)g(a)g +(maxim)m(um)f(of)h(32)g(c)m(haracters.)275 3019 y(Bash)h(scripts)g (often)g(b)s(egin)g(with)g Fs(#!)e(/bin/bash)g Ft(\(assuming)i(that)h -(Bash)f(has)g(b)s(een)f(installed)i(in)150 2042 y(`)p +(Bash)f(has)g(b)s(een)f(installed)i(in)150 3128 y(`)p Fs(/bin)p Ft('\),)25 b(since)e(this)g(ensures)f(that)i(Bash)f(will)h(b) s(e)e(used)h(to)h(in)m(terpret)f(the)g(script,)i(ev)m(en)f(if)f(it)h -(is)f(executed)150 2152 y(under)29 b(another)h(shell.)p +(is)f(executed)150 3238 y(under)29 b(another)h(shell.)p eop end %%Page: 36 42 TeXDict begin 36 41 bop eop end @@ -8214,1028 +8224,1034 @@ Fs(-g)p Ft(')f(option)g(is)h(used.)40 b(If)29 b(a)i(v)-5 b(ariable)31 b(name)630 518 y(is)f(follo)m(w)m(ed)i(b)m(y)f(=)p Fq(v)-5 b(alue)5 b Ft(,)31 b(the)f(v)-5 b(alue)31 b(of)g(the)f(v)-5 b(ariable)31 b(is)g(set)g(to)g Fq(v)-5 b(alue)5 b Ft(.)630 -647 y(The)35 b(return)f(status)i(is)g(zero)g(unless)f(an)g(in)m(v)-5 +655 y(The)35 b(return)f(status)i(is)g(zero)g(unless)f(an)g(in)m(v)-5 b(alid)36 b(option)g(is)g(encoun)m(tered,)h(an)f(attempt)630 -757 y(is)c(made)g(to)g(de\014ne)f(a)h(function)g(using)f(`)p +765 y(is)c(made)g(to)g(de\014ne)f(a)h(function)g(using)f(`)p Fs(-f)f(foo=bar)p Ft(',)h(an)h(attempt)g(is)g(made)g(to)h(assign)630 -866 y(a)42 b(v)-5 b(alue)43 b(to)g(a)f(readonly)g(v)-5 +874 y(a)42 b(v)-5 b(alue)43 b(to)g(a)f(readonly)g(v)-5 b(ariable,)47 b(an)42 b(attempt)h(is)f(made)g(to)h(assign)f(a)h(v)-5 -b(alue)42 b(to)h(an)630 976 y(arra)m(y)30 b(v)-5 b(ariable)30 +b(alue)42 b(to)h(an)630 984 y(arra)m(y)30 b(v)-5 b(ariable)30 b(without)g(using)e(the)i(comp)s(ound)e(assignmen)m(t)i(syn)m(tax)g -(\(see)h(Section)f(6.7)630 1085 y([Arra)m(ys],)47 b(page)c(82\),)48 +(\(see)h(Section)f(6.7)630 1093 y([Arra)m(ys],)47 b(page)c(82\),)48 b(one)43 b(of)g(the)g Fq(names)k Ft(is)c(not)g(a)g(v)-5 b(alid)43 b(shell)g(v)-5 b(ariable)44 b(name,)i(an)630 -1195 y(attempt)28 b(is)f(made)h(to)f(turn)f(o\013)i(readonly)f(status)g +1203 y(attempt)28 b(is)f(made)h(to)f(turn)f(o\013)i(readonly)f(status)g (for)g(a)h(readonly)f(v)-5 b(ariable,)29 b(an)e(attempt)630 -1305 y(is)h(made)h(to)g(turn)e(o\013)i(arra)m(y)f(status)h(for)f(an)g +1313 y(is)h(made)h(to)g(turn)e(o\013)i(arra)m(y)f(status)h(for)f(an)g (arra)m(y)h(v)-5 b(ariable,)30 b(or)e(an)g(attempt)i(is)e(made)g(to)630 -1414 y(displa)m(y)j(a)f(non-existen)m(t)i(function)e(with)g(`)p -Fs(-f)p Ft('.)150 1562 y Fs(echo)870 1691 y(echo)47 b([-neE])f([)p -Fi(arg)57 b Fs(...)o(])630 1820 y Ft(Output)31 b(the)i +1422 y(displa)m(y)j(a)f(non-existen)m(t)i(function)e(with)g(`)p +Fs(-f)p Ft('.)150 1587 y Fs(echo)870 1724 y(echo)47 b([-neE])f([)p +Fi(arg)57 b Fs(...)o(])630 1861 y Ft(Output)31 b(the)i Fq(arg)8 b Ft(s,)33 b(separated)g(b)m(y)g(spaces,)g(terminated)g(with)f -(a)h(newline.)47 b(The)32 b(return)630 1930 y(status)40 +(a)h(newline.)47 b(The)32 b(return)630 1970 y(status)40 b(is)g(alw)m(a)m(ys)h(0.)69 b(If)39 b(`)p Fs(-n)p Ft(')h(is)f(sp)s (eci\014ed,)j(the)e(trailing)h(newline)e(is)h(suppressed.)66 -b(If)630 2039 y(the)29 b(`)p Fs(-e)p Ft(')g(option)g(is)h(giv)m(en,)g +b(If)630 2080 y(the)29 b(`)p Fs(-e)p Ft(')g(option)g(is)h(giv)m(en,)g (in)m(terpretation)g(of)g(the)f(follo)m(wing)h(bac)m(kslash-escap)s(ed) -g(c)m(har-)630 2149 y(acters)38 b(is)f(enabled.)60 b(The)36 +g(c)m(har-)630 2189 y(acters)38 b(is)f(enabled.)60 b(The)36 b(`)p Fs(-E)p Ft(')h(option)g(disables)g(the)g(in)m(terpretation)h(of)f -(these)g(escap)s(e)630 2259 y(c)m(haracters,)h(ev)m(en)d(on)g(systems)g +(these)g(escap)s(e)630 2299 y(c)m(haracters,)h(ev)m(en)d(on)g(systems)g (where)f(they)h(are)g(in)m(terpreted)h(b)m(y)e(default.)55 -b(The)34 b Fs(xpg_)630 2368 y(echo)d Ft(shell)h(option)h(ma)m(y)g(b)s +b(The)34 b Fs(xpg_)630 2408 y(echo)d Ft(shell)h(option)h(ma)m(y)g(b)s (e)e(used)h(to)h(dynamically)g(determine)f(whether)f(or)i(not)f -Fs(echo)630 2478 y Ft(expands)39 b(these)i(escap)s(e)g(c)m(haracters)g +Fs(echo)630 2518 y Ft(expands)39 b(these)i(escap)s(e)g(c)m(haracters)g (b)m(y)g(default.)70 b Fs(echo)39 b Ft(do)s(es)h(not)g(in)m(terpret)h -(`)p Fs(--)p Ft(')f(to)630 2587 y(mean)30 b(the)h(end)f(of)g(options.) -630 2716 y Fs(echo)f Ft(in)m(terprets)i(the)f(follo)m(wing)i(escap)s(e) -f(sequences:)630 2865 y Fs(\\a)384 b Ft(alert)31 b(\(b)s(ell\))630 -3013 y Fs(\\b)384 b Ft(bac)m(kspace)630 3161 y Fs(\\c)g -Ft(suppress)28 b(further)h(output)630 3309 y Fs(\\e)384 -b Ft(escap)s(e)630 3458 y Fs(\\f)g Ft(form)30 b(feed)630 -3606 y Fs(\\n)384 b Ft(new)30 b(line)630 3754 y Fs(\\r)384 -b Ft(carriage)32 b(return)630 3902 y Fs(\\t)384 b Ft(horizon)m(tal)32 -b(tab)630 4051 y Fs(\\v)384 b Ft(v)m(ertical)32 b(tab)630 -4199 y Fs(\\\\)384 b Ft(bac)m(kslash)630 4347 y Fs(\\0)p -Fi(nnn)240 b Ft(the)32 b(eigh)m(t-bit)i(c)m(haracter)g(whose)e(v)-5 -b(alue)33 b(is)f(the)g(o)s(ctal)i(v)-5 b(alue)32 b Fq(nnn)f -Ft(\(zero)i(to)1110 4457 y(three)e(o)s(ctal)g(digits\))630 -4605 y Fs(\\x)p Fi(HH)288 b Ft(the)40 b(eigh)m(t-bit)h(c)m(haracter)g -(whose)e(v)-5 b(alue)39 b(is)h(the)f(hexadecimal)i(v)-5 -b(alue)40 b Fq(HH)1110 4715 y Ft(\(one)31 b(or)f(t)m(w)m(o)i(hex)e -(digits\))630 4863 y Fs(\\u)p Fi(HHHH)192 b Ft(the)41 +(`)p Fs(--)p Ft(')f(to)630 2628 y(mean)30 b(the)h(end)f(of)g(options.) +630 2765 y Fs(echo)f Ft(in)m(terprets)i(the)f(follo)m(wing)i(escap)s(e) +f(sequences:)630 2929 y Fs(\\a)384 b Ft(alert)31 b(\(b)s(ell\))630 +3093 y Fs(\\b)384 b Ft(bac)m(kspace)630 3258 y Fs(\\c)g +Ft(suppress)28 b(further)h(output)630 3422 y Fs(\\e)630 +3532 y(\\E)384 b Ft(escap)s(e)630 3696 y Fs(\\f)g Ft(form)30 +b(feed)630 3861 y Fs(\\n)384 b Ft(new)30 b(line)630 4025 +y Fs(\\r)384 b Ft(carriage)32 b(return)630 4189 y Fs(\\t)384 +b Ft(horizon)m(tal)32 b(tab)630 4354 y Fs(\\v)384 b Ft(v)m(ertical)32 +b(tab)630 4518 y Fs(\\\\)384 b Ft(bac)m(kslash)630 4682 +y Fs(\\0)p Fi(nnn)240 b Ft(the)32 b(eigh)m(t-bit)i(c)m(haracter)g +(whose)e(v)-5 b(alue)33 b(is)f(the)g(o)s(ctal)i(v)-5 +b(alue)32 b Fq(nnn)f Ft(\(zero)i(to)1110 4792 y(three)e(o)s(ctal)g +(digits\))630 4956 y Fs(\\x)p Fi(HH)288 b Ft(the)40 b(eigh)m(t-bit)h(c) +m(haracter)g(whose)e(v)-5 b(alue)39 b(is)h(the)f(hexadecimal)i(v)-5 +b(alue)40 b Fq(HH)1110 5066 y Ft(\(one)31 b(or)f(t)m(w)m(o)i(hex)e +(digits\))630 5230 y Fs(\\u)p Fi(HHHH)192 b Ft(the)41 b(Unico)s(de)g(\(ISO/IEC)f(10646\))j(c)m(haracter)g(whose)e(v)-5 -b(alue)41 b(is)g(the)g(hex-)1110 4973 y(adecimal)32 b(v)-5 -b(alue)31 b Fq(HHHH)41 b Ft(\(one)31 b(to)g(four)e(hex)h(digits\))630 -5121 y Fs(\\U)p Fi(HHHHHHHH)1110 5230 y Ft(the)41 b(Unico)s(de)g -(\(ISO/IEC)f(10646\))j(c)m(haracter)g(whose)e(v)-5 b(alue)41 -b(is)g(the)g(hex-)1110 5340 y(adecimal)32 b(v)-5 b(alue)31 -b Fq(HHHHHHHH)41 b Ft(\(one)31 b(to)g(eigh)m(t)h(hex)e(digits\))p +b(alue)41 b(is)g(the)g(hex-)1110 5340 y(adecimal)32 b(v)-5 +b(alue)31 b Fq(HHHH)41 b Ft(\(one)31 b(to)g(four)e(hex)h(digits\))p eop end %%Page: 48 54 TeXDict begin 48 53 bop 150 -116 a Ft(48)2572 b(Bash)31 -b(Reference)g(Man)m(ual)150 299 y Fs(enable)870 433 y(enable)46 -b([-a])h([-dnps])f([-f)g Fi(filename)11 b Fs(])45 b([)p -Fi(name)57 b Fs(...)o(])630 567 y Ft(Enable)36 b(and)f(disable)h -(builtin)g(shell)g(commands.)56 b(Disabling)37 b(a)g(builtin)e(allo)m -(ws)i(a)f(disk)630 676 y(command)e(whic)m(h)g(has)g(the)g(same)h(name)f -(as)h(a)f(shell)h(builtin)e(to)i(b)s(e)f(executed)h(without)630 -786 y(sp)s(ecifying)27 b(a)g(full)g(pathname,)g(ev)m(en)h(though)f(the) -g(shell)g(normally)g(searc)m(hes)h(for)f(builtins)630 -896 y(b)s(efore)32 b(disk)f(commands.)46 b(If)31 b(`)p -Fs(-n)p Ft(')h(is)g(used,)g(the)g Fq(name)5 b Ft(s)32 -b(b)s(ecome)h(disabled.)45 b(Otherwise)630 1005 y Fq(name)5 -b Ft(s)44 b(are)h(enabled.)82 b(F)-8 b(or)45 b(example,)k(to)c(use)f -(the)g Fs(test)f Ft(binary)h(found)f(via)h Fs($PATH)630 -1115 y Ft(instead)31 b(of)f(the)h(shell)f(builtin)g(v)m(ersion,)h(t)m -(yp)s(e)g(`)p Fs(enable)e(-n)h(test)p Ft('.)630 1249 -y(If)42 b(the)h(`)p Fs(-p)p Ft(')f(option)h(is)f(supplied,)j(or)d(no)h -Fq(name)k Ft(argumen)m(ts)c(app)s(ear,)i(a)e(list)g(of)g(shell)630 -1358 y(builtins)37 b(is)h(prin)m(ted.)63 b(With)38 b(no)f(other)h -(argumen)m(ts,)j(the)d(list)g(consists)g(of)g(all)h(enabled)630 -1468 y(shell)33 b(builtins.)46 b(The)32 b(`)p Fs(-a)p -Ft(')h(option)g(means)f(to)i(list)f(eac)m(h)h(builtin)e(with)g(an)g -(indication)i(of)630 1577 y(whether)c(or)g(not)h(it)g(is)f(enabled.)630 -1711 y(The)40 b(`)p Fs(-f)p Ft(')g(option)g(means)g(to)h(load)g(the)f -(new)f(builtin)h(command)g Fq(name)45 b Ft(from)40 b(shared)630 -1821 y(ob)5 b(ject)26 b Fq(\014lename)5 b Ft(,)28 b(on)d(systems)h -(that)g(supp)s(ort)e(dynamic)h(loading.)40 b(The)25 b(`)p -Fs(-d)p Ft(')h(option)g(will)630 1931 y(delete)32 b(a)e(builtin)g -(loaded)h(with)f(`)p Fs(-f)p Ft('.)630 2064 y(If)h(there)g(are)g(no)g -(options,)h(a)f(list)h(of)f(the)g(shell)g(builtins)g(is)g(displa)m(y)m -(ed.)43 b(The)31 b(`)p Fs(-s)p Ft(')f(option)630 2174 -y(restricts)f Fs(enable)e Ft(to)i(the)f Fl(posix)g Ft(sp)s(ecial)h -(builtins.)40 b(If)27 b(`)p Fs(-s)p Ft(')i(is)f(used)g(with)g(`)p -Fs(-f)p Ft(',)h(the)f(new)630 2284 y(builtin)i(b)s(ecomes)h(a)f(sp)s -(ecial)h(builtin)f(\(see)i(Section)f(4.4)g([Sp)s(ecial)g(Builtins],)g -(page)g(62\).)630 2418 y(The)26 b(return)f(status)h(is)g(zero)h(unless) -e(a)i Fq(name)k Ft(is)26 b(not)g(a)h(shell)f(builtin)g(or)g(there)g(is) -g(an)g(error)630 2527 y(loading)31 b(a)g(new)f(builtin)g(from)g(a)g -(shared)g(ob)5 b(ject.)150 2685 y Fs(help)870 2819 y(help)47 -b([-dms])f([)p Fi(pattern)11 b Fs(])630 2953 y Ft(Displa)m(y)40 -b(helpful)e(information)h(ab)s(out)g(builtin)f(commands.)66 -b(If)38 b Fq(pattern)h Ft(is)g(sp)s(eci\014ed,)630 3063 -y Fs(help)28 b Ft(giv)m(es)i(detailed)g(help)e(on)h(all)h(commands)e -(matc)m(hing)i Fq(pattern)p Ft(,)g(otherwise)f(a)g(list)h(of)630 -3173 y(the)h(builtins)e(is)i(prin)m(ted.)630 3306 y(Options,)f(if)h +b(Reference)g(Man)m(ual)630 299 y Fs(\\U)p Fi(HHHHHHHH)1110 +408 y Ft(the)41 b(Unico)s(de)g(\(ISO/IEC)f(10646\))j(c)m(haracter)g +(whose)e(v)-5 b(alue)41 b(is)g(the)g(hex-)1110 518 y(adecimal)32 +b(v)-5 b(alue)31 b Fq(HHHHHHHH)41 b Ft(\(one)31 b(to)g(eigh)m(t)h(hex)e +(digits\))150 684 y Fs(enable)870 822 y(enable)46 b([-a])h([-dnps])f +([-f)g Fi(filename)11 b Fs(])45 b([)p Fi(name)57 b Fs(...)o(])630 +960 y Ft(Enable)36 b(and)f(disable)h(builtin)g(shell)g(commands.)56 +b(Disabling)37 b(a)g(builtin)e(allo)m(ws)i(a)f(disk)630 +1070 y(command)e(whic)m(h)g(has)g(the)g(same)h(name)f(as)h(a)f(shell)h +(builtin)e(to)i(b)s(e)f(executed)h(without)630 1180 y(sp)s(ecifying)27 +b(a)g(full)g(pathname,)g(ev)m(en)h(though)f(the)g(shell)g(normally)g +(searc)m(hes)h(for)f(builtins)630 1289 y(b)s(efore)32 +b(disk)f(commands.)46 b(If)31 b(`)p Fs(-n)p Ft(')h(is)g(used,)g(the)g +Fq(name)5 b Ft(s)32 b(b)s(ecome)h(disabled.)45 b(Otherwise)630 +1399 y Fq(name)5 b Ft(s)44 b(are)h(enabled.)82 b(F)-8 +b(or)45 b(example,)k(to)c(use)f(the)g Fs(test)f Ft(binary)h(found)f +(via)h Fs($PATH)630 1508 y Ft(instead)31 b(of)f(the)h(shell)f(builtin)g +(v)m(ersion,)h(t)m(yp)s(e)g(`)p Fs(enable)e(-n)h(test)p +Ft('.)630 1646 y(If)42 b(the)h(`)p Fs(-p)p Ft(')f(option)h(is)f +(supplied,)j(or)d(no)h Fq(name)k Ft(argumen)m(ts)c(app)s(ear,)i(a)e +(list)g(of)g(shell)630 1756 y(builtins)37 b(is)h(prin)m(ted.)63 +b(With)38 b(no)f(other)h(argumen)m(ts,)j(the)d(list)g(consists)g(of)g +(all)h(enabled)630 1866 y(shell)33 b(builtins.)46 b(The)32 +b(`)p Fs(-a)p Ft(')h(option)g(means)f(to)i(list)f(eac)m(h)h(builtin)e +(with)g(an)g(indication)i(of)630 1975 y(whether)c(or)g(not)h(it)g(is)f +(enabled.)630 2113 y(The)40 b(`)p Fs(-f)p Ft(')g(option)g(means)g(to)h +(load)g(the)f(new)f(builtin)h(command)g Fq(name)45 b +Ft(from)40 b(shared)630 2223 y(ob)5 b(ject)26 b Fq(\014lename)5 +b Ft(,)28 b(on)d(systems)h(that)g(supp)s(ort)e(dynamic)h(loading.)40 +b(The)25 b(`)p Fs(-d)p Ft(')h(option)g(will)630 2332 +y(delete)32 b(a)e(builtin)g(loaded)h(with)f(`)p Fs(-f)p +Ft('.)630 2470 y(If)h(there)g(are)g(no)g(options,)h(a)f(list)h(of)f +(the)g(shell)g(builtins)g(is)g(displa)m(y)m(ed.)43 b(The)31 +b(`)p Fs(-s)p Ft(')f(option)630 2580 y(restricts)f Fs(enable)e +Ft(to)i(the)f Fl(posix)g Ft(sp)s(ecial)h(builtins.)40 +b(If)27 b(`)p Fs(-s)p Ft(')i(is)f(used)g(with)g(`)p Fs(-f)p +Ft(',)h(the)f(new)630 2690 y(builtin)i(b)s(ecomes)h(a)f(sp)s(ecial)h +(builtin)f(\(see)i(Section)f(4.4)g([Sp)s(ecial)g(Builtins],)g(page)g +(62\).)630 2828 y(The)26 b(return)f(status)h(is)g(zero)h(unless)e(a)i +Fq(name)k Ft(is)26 b(not)g(a)h(shell)f(builtin)g(or)g(there)g(is)g(an)g +(error)630 2937 y(loading)31 b(a)g(new)f(builtin)g(from)g(a)g(shared)g +(ob)5 b(ject.)150 3104 y Fs(help)870 3242 y(help)47 b([-dms])f([)p +Fi(pattern)11 b Fs(])630 3380 y Ft(Displa)m(y)40 b(helpful)e +(information)h(ab)s(out)g(builtin)f(commands.)66 b(If)38 +b Fq(pattern)h Ft(is)g(sp)s(eci\014ed,)630 3489 y Fs(help)28 +b Ft(giv)m(es)i(detailed)g(help)e(on)h(all)h(commands)e(matc)m(hing)i +Fq(pattern)p Ft(,)g(otherwise)f(a)g(list)h(of)630 3599 +y(the)h(builtins)e(is)i(prin)m(ted.)630 3737 y(Options,)f(if)h (supplied,)e(ha)m(v)m(e)i(the)g(follo)m(wing)h(meanings:)630 -3465 y Fs(-d)384 b Ft(Displa)m(y)32 b(a)e(short)g(description)h(of)f -(eac)m(h)i Fq(pattern)630 3623 y Fs(-m)384 b Ft(Displa)m(y)32 +3903 y Fs(-d)384 b Ft(Displa)m(y)32 b(a)e(short)g(description)h(of)f +(eac)m(h)i Fq(pattern)630 4070 y Fs(-m)384 b Ft(Displa)m(y)32 b(the)e(description)g(of)h(eac)m(h)h Fq(pattern)e Ft(in)g(a)h -(manpage-lik)m(e)h(format)630 3781 y Fs(-s)384 b Ft(Displa)m(y)32 +(manpage-lik)m(e)h(format)630 4236 y Fs(-s)384 b Ft(Displa)m(y)32 b(only)e(a)h(short)f(usage)h(synopsis)e(for)i(eac)m(h)g -Fq(pattern)630 3940 y Ft(The)f(return)f(status)i(is)f(zero)h(unless)f -(no)g(command)h(matc)m(hes)g Fq(pattern)p Ft(.)150 4098 -y Fs(let)870 4232 y(let)47 b Fi(expression)55 b Fs([)p -Fi(expression)11 b Fs(])630 4366 y Ft(The)41 b Fs(let)g +Fq(pattern)630 4402 y Ft(The)f(return)f(status)i(is)f(zero)h(unless)f +(no)g(command)h(matc)m(hes)g Fq(pattern)p Ft(.)150 4569 +y Fs(let)870 4707 y(let)47 b Fi(expression)55 b Fs([)p +Fi(expression)11 b Fs(])630 4845 y Ft(The)41 b Fs(let)g Ft(builtin)g(allo)m(ws)i(arithmetic)f(to)h(b)s(e)d(p)s(erformed)g(on)i -(shell)g(v)-5 b(ariables.)74 b(Eac)m(h)630 4475 y Fq(expression)31 +(shell)g(v)-5 b(ariables.)74 b(Eac)m(h)630 4954 y Fq(expression)31 b Ft(is)g(ev)-5 b(aluated)32 b(according)f(to)h(the)f(rules)g(giv)m(en) -h(b)s(elo)m(w)f(in)f(Section)i(6.5)g([Shell)630 4585 +h(b)s(elo)m(w)f(in)f(Section)i(6.5)g([Shell)630 5064 y(Arithmetic],)51 b(page)46 b(80.)87 b(If)45 b(the)g(last)h Fq(expression)g Ft(ev)-5 b(aluates)47 b(to)f(0,)k Fs(let)44 -b Ft(returns)g(1;)630 4695 y(otherwise)31 b(0)g(is)f(returned.)150 -4853 y Fs(local)870 4987 y(local)46 b([)p Fi(option)11 -b Fs(])45 b Fi(name)11 b Fs([=)p Fi(value)g Fs(])44 b(...)630 -5121 y Ft(F)-8 b(or)26 b(eac)m(h)h(argumen)m(t,)g(a)e(lo)s(cal)i(v)-5 -b(ariable)26 b(named)f Fq(name)31 b Ft(is)25 b(created,)j(and)d -(assigned)g Fq(v)-5 b(alue)5 b Ft(.)630 5230 y(The)37 -b Fq(option)h Ft(can)f(b)s(e)g(an)m(y)h(of)f(the)h(options)g(accepted)g -(b)m(y)g Fs(declare)p Ft(.)59 b Fs(local)36 b Ft(can)i(only)630 -5340 y(b)s(e)j(used)h(within)f(a)i(function;)48 b(it)42 -b(mak)m(es)h(the)f(v)-5 b(ariable)43 b Fq(name)48 b Ft(ha)m(v)m(e)43 -b(a)f(visible)h(scop)s(e)p eop end +b Ft(returns)g(1;)630 5174 y(otherwise)31 b(0)g(is)f(returned.)150 +5340 y Fs(local)p eop end %%Page: 49 55 TeXDict begin 49 54 bop 150 -116 a Ft(Chapter)30 b(4:)41 -b(Shell)30 b(Builtin)h(Commands)2069 b(49)630 299 y(restricted)39 -b(to)g(that)g(function)f(and)f(its)i(c)m(hildren.)64 -b(The)38 b(return)f(status)h(is)h(zero)g(unless)630 408 +b(Shell)30 b(Builtin)h(Commands)2069 b(49)870 299 y Fs(local)46 +b([)p Fi(option)11 b Fs(])45 b Fi(name)11 b Fs([=)p Fi(value)g +Fs(])44 b(...)630 432 y Ft(F)-8 b(or)26 b(eac)m(h)h(argumen)m(t,)g(a)e +(lo)s(cal)i(v)-5 b(ariable)26 b(named)f Fq(name)31 b +Ft(is)25 b(created,)j(and)d(assigned)g Fq(v)-5 b(alue)5 +b Ft(.)630 542 y(The)37 b Fq(option)h Ft(can)f(b)s(e)g(an)m(y)h(of)f +(the)h(options)g(accepted)g(b)m(y)g Fs(declare)p Ft(.)59 +b Fs(local)36 b Ft(can)i(only)630 652 y(b)s(e)j(used)h(within)f(a)i +(function;)48 b(it)42 b(mak)m(es)h(the)f(v)-5 b(ariable)43 +b Fq(name)48 b Ft(ha)m(v)m(e)43 b(a)f(visible)h(scop)s(e)630 +761 y(restricted)c(to)g(that)g(function)f(and)f(its)i(c)m(hildren.)64 +b(The)38 b(return)f(status)h(is)h(zero)g(unless)630 871 y Fs(local)g Ft(is)h(used)g(outside)g(a)h(function,)h(an)e(in)m(v)-5 b(alid)41 b Fq(name)46 b Ft(is)40 b(supplied,)i(or)e -Fq(name)45 b Ft(is)c(a)630 518 y(readonly)30 b(v)-5 b(ariable.)150 -684 y Fs(logout)870 822 y(logout)46 b([)p Fi(n)11 b Fs(])630 -960 y Ft(Exit)31 b(a)g(login)g(shell,)g(returning)e(a)i(status)g(of)f -Fq(n)g Ft(to)h(the)g(shell's)f(paren)m(t.)150 1126 y -Fs(mapfile)870 1264 y(mapfile)46 b([-n)h Fi(count)11 +Fq(name)45 b Ft(is)c(a)630 980 y(readonly)30 b(v)-5 b(ariable.)150 +1138 y Fs(logout)870 1271 y(logout)46 b([)p Fi(n)11 b +Fs(])630 1405 y Ft(Exit)31 b(a)g(login)g(shell,)g(returning)e(a)i +(status)g(of)f Fq(n)g Ft(to)h(the)g(shell's)f(paren)m(t.)150 +1563 y Fs(mapfile)870 1696 y(mapfile)46 b([-n)h Fi(count)11 b Fs(])45 b([-O)i Fi(origin)11 b Fs(])46 b([-s)g Fi(count)11 -b Fs(])46 b([-t])h([-u)g Fi(fd)11 b Fs(])46 b([)870 1374 +b Fs(])46 b([-t])h([-u)g Fi(fd)11 b Fs(])46 b([)870 1806 y(-C)h Fi(callback)11 b Fs(])45 b([-c)i Fi(quantum)11 -b Fs(])45 b([)p Fi(array)11 b Fs(])630 1511 y Ft(Read)37 +b Fs(])45 b([)p Fi(array)11 b Fs(])630 1939 y Ft(Read)37 b(lines)g(from)f(the)h(standard)f(input)g(in)m(to)h(the)g(indexed)f (arra)m(y)i(v)-5 b(ariable)37 b Fq(arra)m(y)8 b Ft(,)39 -b(or)630 1621 y(from)c(\014le)h(descriptor)g Fq(fd)j +b(or)630 2049 y(from)c(\014le)h(descriptor)g Fq(fd)j Ft(if)d(the)g(`)p Fs(-u)p Ft(')g(option)g(is)g(supplied.)56 b(The)35 b(v)-5 b(ariable)37 b Fs(MAPFILE)d Ft(is)630 -1731 y(the)d(default)f Fq(arra)m(y)8 b Ft(.)41 b(Options,)30 +2158 y(the)d(default)f Fq(arra)m(y)8 b Ft(.)41 b(Options,)30 b(if)h(supplied,)e(ha)m(v)m(e)j(the)e(follo)m(wing)i(meanings:)630 -1897 y Fs(-n)384 b Ft(Cop)m(y)30 b(at)h(most)g Fq(coun)m(t)i +2316 y Fs(-n)384 b Ft(Cop)m(y)30 b(at)h(most)g Fq(coun)m(t)i Ft(lines.)41 b(If)30 b Fq(coun)m(t)j Ft(is)d(0,)h(all)h(lines)e(are)h -(copied.)630 2063 y Fs(-O)384 b Ft(Begin)31 b(assigning)g(to)g +(copied.)630 2474 y Fs(-O)384 b Ft(Begin)31 b(assigning)g(to)g Fq(arra)m(y)39 b Ft(at)31 b(index)f Fq(origin)p Ft(.)41 -b(The)30 b(default)h(index)f(is)g(0.)630 2229 y Fs(-s)384 +b(The)30 b(default)h(index)f(is)g(0.)630 2631 y Fs(-s)384 b Ft(Discard)31 b(the)f(\014rst)g Fq(coun)m(t)j Ft(lines)e(read.)630 -2395 y Fs(-t)384 b Ft(Remo)m(v)m(e)32 b(a)f(trailing)g(newline)g(from)f -(eac)m(h)h(line)g(read.)630 2561 y Fs(-u)384 b Ft(Read)31 +2789 y Fs(-t)384 b Ft(Remo)m(v)m(e)32 b(a)f(trailing)g(newline)g(from)f +(eac)m(h)h(line)g(read.)630 2946 y Fs(-u)384 b Ft(Read)31 b(lines)f(from)g(\014le)h(descriptor)f Fq(fd)j Ft(instead)e(of)f(the)h -(standard)e(input.)630 2728 y Fs(-C)384 b Ft(Ev)-5 b(aluate)43 +(standard)e(input.)630 3104 y Fs(-C)384 b Ft(Ev)-5 b(aluate)43 b Fq(callbac)m(k)49 b Ft(eac)m(h)42 b(time)g Fq(quan)m(tum)p Ft(P)f(lines)h(are)f(read.)74 b(The)41 b(`)p Fs(-c)p -Ft(')1110 2837 y(option)31 b(sp)s(eci\014es)f Fq(quan)m(tum)p -Ft(.)630 3003 y Fs(-c)384 b Ft(Sp)s(ecify)30 b(the)g(n)m(um)m(b)s(er)f +Ft(')1110 3213 y(option)31 b(sp)s(eci\014es)f Fq(quan)m(tum)p +Ft(.)630 3371 y Fs(-c)384 b Ft(Sp)s(ecify)30 b(the)g(n)m(um)m(b)s(er)f (of)i(lines)f(read)h(b)s(et)m(w)m(een)g(eac)m(h)g(call)h(to)f -Fq(callbac)m(k)6 b Ft(.)630 3169 y(If)36 b(`)p Fs(-C)p +Fq(callbac)m(k)6 b Ft(.)630 3528 y(If)36 b(`)p Fs(-C)p Ft(')g(is)h(sp)s(eci\014ed)f(without)g(`)p Fs(-c)p Ft(',)i(the)f (default)f(quan)m(tum)g(is)h(5000.)61 b(When)36 b Fq(callbac)m(k)630 -3279 y Ft(is)e(ev)-5 b(aluated,)36 b(it)f(is)f(supplied)f(the)h(index)f +3638 y Ft(is)e(ev)-5 b(aluated,)36 b(it)f(is)f(supplied)f(the)h(index)f (of)h(the)h(next)f(arra)m(y)g(elemen)m(t)i(to)e(b)s(e)g(assigned)630 -3389 y(and)f(the)g(line)h(to)f(b)s(e)g(assigned)g(to)h(that)g(elemen)m +3748 y(and)f(the)g(line)h(to)f(b)s(e)g(assigned)g(to)h(that)g(elemen)m (t)h(as)e(additional)h(argumen)m(ts.)50 b Fq(callbac)m(k)630 -3498 y Ft(is)30 b(ev)-5 b(aluated)32 b(after)f(the)f(line)h(is)g(read)f +3857 y Ft(is)30 b(ev)-5 b(aluated)32 b(after)f(the)f(line)h(is)g(read)f (but)g(b)s(efore)f(the)i(arra)m(y)g(elemen)m(t)h(is)e(assigned.)630 -3636 y(If)25 b(not)g(supplied)f(with)h(an)g(explicit)i(origin,)g +3991 y(If)25 b(not)g(supplied)f(with)h(an)g(explicit)i(origin,)g Fs(mapfile)c Ft(will)j(clear)g Fq(arra)m(y)34 b Ft(b)s(efore)24 -b(assigning)630 3746 y(to)31 b(it.)630 3884 y Fs(mapfile)41 +b(assigning)630 4100 y(to)31 b(it.)630 4234 y Fs(mapfile)41 b Ft(returns)g(successfully)i(unless)e(an)i(in)m(v)-5 b(alid)43 b(option)g(or)g(option)g(argumen)m(t)g(is)630 -3993 y(supplied,)29 b Fq(arra)m(y)39 b Ft(is)30 b(in)m(v)-5 +4343 y(supplied,)29 b Fq(arra)m(y)39 b Ft(is)30 b(in)m(v)-5 b(alid)31 b(or)g(unassignable,)f(or)h Fq(arra)m(y)38 b Ft(is)31 b(not)f(an)h(indexed)e(arra)m(y)-8 b(.)150 -4159 y Fs(printf)870 4297 y(printf)46 b([-v)h Fi(var)11 +4501 y Fs(printf)870 4634 y(printf)46 b([-v)h Fi(var)11 b Fs(])46 b Fi(format)57 b Fs([)p Fi(arguments)11 b Fs(])630 -4435 y Ft(W)-8 b(rite)27 b(the)g(formatted)f Fq(argumen)m(ts)k +4768 y Ft(W)-8 b(rite)27 b(the)g(formatted)f Fq(argumen)m(ts)k Ft(to)d(the)f(standard)f(output)h(under)e(the)i(con)m(trol)i(of)e(the) -630 4545 y Fq(format)r Ft(.)57 b(The)35 b(`)p Fs(-v)p +630 4878 y Fq(format)r Ft(.)57 b(The)35 b(`)p Fs(-v)p Ft(')h(option)g(causes)g(the)g(output)g(to)g(b)s(e)f(assigned)h(to)h -(the)e(v)-5 b(ariable)37 b Fq(v)-5 b(ar)630 4654 y Ft(rather)30 +(the)e(v)-5 b(ariable)37 b Fq(v)-5 b(ar)630 4987 y Ft(rather)30 b(than)g(b)s(eing)g(prin)m(ted)g(to)h(the)g(standard)e(output.)630 -4792 y(The)36 b Fq(format)i Ft(is)f(a)f(c)m(haracter)i(string)e(whic)m +5121 y(The)36 b Fq(format)i Ft(is)f(a)f(c)m(haracter)i(string)e(whic)m (h)g(con)m(tains)i(three)e(t)m(yp)s(es)g(of)h(ob)5 b(jects:)53 -b(plain)630 4902 y(c)m(haracters,)41 b(whic)m(h)c(are)h(simply)e +b(plain)630 5230 y(c)m(haracters,)41 b(whic)m(h)c(are)h(simply)e (copied)i(to)g(standard)f(output,)i(c)m(haracter)g(escap)s(e)e(se-)630 -5011 y(quences,)g(whic)m(h)f(are)g(con)m(v)m(erted)h(and)f(copied)g(to) -g(the)g(standard)f(output,)i(and)f(format)630 5121 y(sp)s -(eci\014cations,)i(eac)m(h)g(of)e(whic)m(h)g(causes)g(prin)m(ting)g(of) -g(the)h(next)f(successiv)m(e)h Fq(argumen)m(t)r Ft(.)630 -5230 y(In)24 b(addition)h(to)g(the)g(standard)f Fs(printf\(1\))e -Ft(formats,)27 b Fs(printf)c Ft(in)m(terprets)i(the)f(follo)m(wing)630 -5340 y(extensions:)p eop end +5340 y(quences,)g(whic)m(h)f(are)g(con)m(v)m(erted)h(and)f(copied)g(to) +g(the)g(standard)f(output,)i(and)f(format)p eop end %%Page: 50 56 TeXDict begin 50 55 bop 150 -116 a Ft(50)2572 b(Bash)31 -b(Reference)g(Man)m(ual)630 299 y Fs(\045b)384 b Ft(causes)42 +b(Reference)g(Man)m(ual)630 299 y(sp)s(eci\014cations,)38 +b(eac)m(h)g(of)e(whic)m(h)g(causes)g(prin)m(ting)g(of)g(the)h(next)f +(successiv)m(e)h Fq(argumen)m(t)r Ft(.)630 408 y(In)24 +b(addition)h(to)g(the)g(standard)f Fs(printf\(1\))e Ft(formats,)27 +b Fs(printf)c Ft(in)m(terprets)i(the)f(follo)m(wing)630 +518 y(extensions:)630 676 y Fs(\045b)384 b Ft(causes)42 b Fs(printf)e Ft(to)i(expand)f(bac)m(kslash)h(escap)s(e)g(sequences)f -(in)h(the)f(cor-)1110 408 y(resp)s(onding)c Fq(argumen)m(t)r +(in)h(the)f(cor-)1110 786 y(resp)s(onding)c Fq(argumen)m(t)r Ft(,)42 b(\(except)e(that)g(`)p Fs(\\c)p Ft(')e(terminates)i(output,)h -(bac)m(k-)1110 518 y(slashes)d(in)f(`)p Fs(\\')p Ft(',)j(`)p +(bac)m(k-)1110 896 y(slashes)d(in)f(`)p Fs(\\')p Ft(',)j(`)p Fs(\\")p Ft(',)f(and)e(`)p Fs(\\?)p Ft(')h(are)g(not)g(remo)m(v)m(ed,)j -(and)c(o)s(ctal)i(escap)s(es)1110 628 y(b)s(eginning)30 +(and)c(o)s(ctal)i(escap)s(es)1110 1005 y(b)s(eginning)30 b(with)g(`)p Fs(\\0)p Ft(')g(ma)m(y)h(con)m(tain)h(up)d(to)i(four)f -(digits\).)630 786 y Fs(\045q)384 b Ft(causes)35 b Fs(printf)e +(digits\).)630 1163 y Fs(\045q)384 b Ft(causes)35 b Fs(printf)e Ft(to)i(output)g(the)g(corresp)s(onding)e Fq(argumen)m(t)k -Ft(in)e(a)g(format)1110 896 y(that)c(can)g(b)s(e)e(reused)h(as)h(shell) -f(input.)630 1054 y Fs(\045\()p Fi(datefmt)11 b Fs(\)T)1110 -1163 y Ft(causes)32 b Fs(printf)f Ft(to)h(output)g(the)g(date-time)i -(string)e(resulting)g(from)f(using)1110 1273 y Fq(datefm)m(t)45 -b Ft(as)d(a)g(format)g(string)g(for)g Fs(strftime)p Ft(\(3\).)74 -b(The)41 b(corresp)s(onding)1110 1383 y Fq(argumen)m(t)h -Ft(is)e(an)g(in)m(teger)i(represen)m(ting)e(the)g(n)m(um)m(b)s(er)f(of) -h(seconds)g(since)1110 1492 y(the)24 b(ep)s(o)s(c)m(h.)38 -b(Tw)m(o)24 b(sp)s(ecial)h(argumen)m(t)f(v)-5 b(alues)24 -b(ma)m(y)h(b)s(e)e(used:)36 b(-1)25 b(represen)m(ts)1110 -1602 y(the)30 b(curren)m(t)g(time,)h(and)e(-2)i(represen)m(ts)f(the)g -(time)h(the)f(shell)g(w)m(as)g(in)m(v)m(ok)m(ed.)630 -1760 y(Argumen)m(ts)e(to)h(non-string)e(format)i(sp)s(eci\014ers)e(are) -h(treated)h(as)g(C)e(language)j(constan)m(ts,)630 1870 -y(except)22 b(that)g(a)g(leading)g(plus)e(or)h(min)m(us)f(sign)i(is)f -(allo)m(w)m(ed,)k(and)c(if)g(the)g(leading)h(c)m(haracter)h(is)630 -1979 y(a)i(single)g(or)f(double)h(quote,)h(the)f(v)-5 +Ft(in)e(a)g(format)1110 1273 y(that)c(can)g(b)s(e)e(reused)h(as)h +(shell)f(input.)630 1431 y Fs(\045\()p Fi(datefmt)11 +b Fs(\)T)1110 1541 y Ft(causes)32 b Fs(printf)f Ft(to)h(output)g(the)g +(date-time)i(string)e(resulting)g(from)f(using)1110 1650 +y Fq(datefm)m(t)45 b Ft(as)d(a)g(format)g(string)g(for)g +Fs(strftime)p Ft(\(3\).)74 b(The)41 b(corresp)s(onding)1110 +1760 y Fq(argumen)m(t)h Ft(is)e(an)g(in)m(teger)i(represen)m(ting)e +(the)g(n)m(um)m(b)s(er)f(of)h(seconds)g(since)1110 1870 +y(the)24 b(ep)s(o)s(c)m(h.)38 b(Tw)m(o)24 b(sp)s(ecial)h(argumen)m(t)f +(v)-5 b(alues)24 b(ma)m(y)h(b)s(e)e(used:)36 b(-1)25 +b(represen)m(ts)1110 1979 y(the)30 b(curren)m(t)g(time,)h(and)e(-2)i +(represen)m(ts)f(the)g(time)h(the)f(shell)g(w)m(as)g(in)m(v)m(ok)m(ed.) +630 2138 y(Argumen)m(ts)e(to)h(non-string)e(format)i(sp)s(eci\014ers)e +(are)h(treated)h(as)g(C)e(language)j(constan)m(ts,)630 +2247 y(except)22 b(that)g(a)g(leading)g(plus)e(or)h(min)m(us)f(sign)i +(is)f(allo)m(w)m(ed,)k(and)c(if)g(the)g(leading)h(c)m(haracter)h(is)630 +2357 y(a)i(single)g(or)f(double)h(quote,)h(the)f(v)-5 b(alue)25 b(is)f(the)h(ASCI)s(I)e(v)-5 b(alue)25 b(of)f(the)h(follo)m -(wing)h(c)m(haracter.)630 2113 y(The)31 b Fq(format)i +(wing)h(c)m(haracter.)630 2491 y(The)31 b Fq(format)i Ft(is)e(reused)f(as)i(necessary)f(to)h(consume)f(all)h(of)f(the)g Fq(argumen)m(ts)t Ft(.)43 b(If)31 b(the)g Fq(for-)630 -2223 y(mat)d Ft(requires)e(more)g Fq(argumen)m(ts)k Ft(than)25 +2600 y(mat)d Ft(requires)e(more)g Fq(argumen)m(ts)k Ft(than)25 b(are)i(supplied,)e(the)h(extra)h(format)f(sp)s(eci\014cations)630 -2332 y(b)s(eha)m(v)m(e)j(as)g(if)f(a)h(zero)g(v)-5 b(alue)29 +2710 y(b)s(eha)m(v)m(e)j(as)g(if)f(a)h(zero)g(v)-5 b(alue)29 b(or)g(n)m(ull)f(string,)h(as)g(appropriate,)g(had)f(b)s(een)g -(supplied.)38 b(The)630 2442 y(return)29 b(v)-5 b(alue)31 +(supplied.)38 b(The)630 2819 y(return)29 b(v)-5 b(alue)31 b(is)g(zero)g(on)f(success,)h(non-zero)g(on)f(failure.)150 -2600 y Fs(read)870 2734 y(read)47 b([-ers])f([-a)h Fi(aname)11 +2978 y Fs(read)870 3112 y(read)47 b([-ers])f([-a)h Fi(aname)11 b Fs(])45 b([-d)i Fi(delim)11 b Fs(])46 b([-i)h Fi(text)11 b Fs(])46 b([-n)g Fi(nchars)11 b Fs(])46 b([-N)h Fi(nchars)11 b Fs(])45 b([-p)i Fi(prompt)11 b Fs(])45 b([-t)i Fi(time-)870 -2844 y(out)11 b Fs(])46 b([-u)h Fi(fd)11 b Fs(])46 b([)p -Fi(name)57 b Fs(...])630 2978 y Ft(One)26 b(line)h(is)g(read)f(from)h +3221 y(out)11 b Fs(])46 b([-u)h Fi(fd)11 b Fs(])46 b([)p +Fi(name)57 b Fs(...])630 3355 y Ft(One)26 b(line)h(is)g(read)f(from)h (the)f(standard)g(input,)h(or)g(from)f(the)h(\014le)f(descriptor)h -Fq(fd)i Ft(supplied)630 3087 y(as)37 b(an)g(argumen)m(t)h(to)f(the)h(`) +Fq(fd)i Ft(supplied)630 3465 y(as)37 b(an)g(argumen)m(t)h(to)f(the)h(`) p Fs(-u)p Ft(')e(option,)k(and)c(the)i(\014rst)e(w)m(ord)g(is)h -(assigned)h(to)f(the)h(\014rst)630 3197 y Fq(name)5 b +(assigned)h(to)f(the)h(\014rst)630 3574 y Fq(name)5 b Ft(,)28 b(the)g(second)g(w)m(ord)f(to)h(the)f(second)h Fq(name)5 b Ft(,)28 b(and)f(so)h(on,)g(with)f(lefto)m(v)m(er)j(w)m -(ords)d(and)630 3306 y(their)h(in)m(terv)m(ening)g(separators)g +(ords)d(and)630 3684 y(their)h(in)m(terv)m(ening)g(separators)g (assigned)g(to)h(the)e(last)i Fq(name)5 b Ft(.)40 b(If)27 -b(there)h(are)g(few)m(er)f(w)m(ords)630 3416 y(read)44 +b(there)h(are)g(few)m(er)f(w)m(ords)630 3794 y(read)44 b(from)f(the)g(input)g(stream)h(than)g(names,)j(the)c(remaining)h -(names)g(are)g(assigned)630 3526 y(empt)m(y)31 b(v)-5 +(names)g(are)g(assigned)630 3903 y(empt)m(y)31 b(v)-5 b(alues.)41 b(The)30 b(c)m(haracters)i(in)e(the)h(v)-5 b(alue)31 b(of)g(the)f Fs(IFS)g Ft(v)-5 b(ariable)31 -b(are)g(used)f(to)h(split)630 3635 y(the)37 b(line)h(in)m(to)g(w)m +b(are)g(used)f(to)h(split)630 4013 y(the)37 b(line)h(in)m(to)g(w)m (ords.)61 b(The)36 b(bac)m(kslash)i(c)m(haracter)h(`)p Fs(\\)p Ft(')e(ma)m(y)h(b)s(e)f(used)f(to)i(remo)m(v)m(e)h(an)m(y)630 -3745 y(sp)s(ecial)h(meaning)g(for)f(the)g(next)h(c)m(haracter)h(read)e +4122 y(sp)s(ecial)h(meaning)g(for)f(the)g(next)h(c)m(haracter)h(read)e (and)g(for)g(line)h(con)m(tin)m(uation.)69 b(If)39 b(no)630 -3854 y(names)28 b(are)h(supplied,)f(the)g(line)h(read)g(is)f(assigned)h +4232 y(names)28 b(are)h(supplied,)f(the)g(line)h(read)g(is)f(assigned)h (to)g(the)f(v)-5 b(ariable)29 b Fs(REPLY)p Ft(.)39 b(The)28 -b(return)630 3964 y(co)s(de)e(is)g(zero,)h(unless)e(end-of-\014le)h(is) +b(return)630 4341 y(co)s(de)e(is)g(zero,)h(unless)e(end-of-\014le)h(is) g(encoun)m(tered,)h Fs(read)e Ft(times)h(out)g(\(in)g(whic)m(h)f(case)i -(the)630 4074 y(return)i(co)s(de)i(is)g(greater)g(than)g(128\),)h(or)f +(the)630 4451 y(return)i(co)s(de)i(is)g(greater)g(than)g(128\),)h(or)f (an)f(in)m(v)-5 b(alid)31 b(\014le)g(descriptor)f(is)h(supplied)e(as)i -(the)630 4183 y(argumen)m(t)g(to)g(`)p Fs(-u)p Ft('.)630 -4317 y(Options,)f(if)h(supplied,)e(ha)m(v)m(e)i(the)g(follo)m(wing)h -(meanings:)630 4475 y Fs(-a)e Fi(aname)114 b Ft(The)34 +(the)630 4561 y(argumen)m(t)g(to)g(`)p Fs(-u)p Ft('.)630 +4695 y(Options,)f(if)h(supplied,)e(ha)m(v)m(e)i(the)g(follo)m(wing)h +(meanings:)630 4853 y Fs(-a)e Fi(aname)114 b Ft(The)34 b(w)m(ords)f(are)i(assigned)f(to)h(sequen)m(tial)h(indices)e(of)g(the)g -(arra)m(y)h(v)-5 b(ariable)1110 4585 y Fq(aname)5 b Ft(,)29 +(arra)m(y)h(v)-5 b(ariable)1110 4963 y Fq(aname)5 b Ft(,)29 b(starting)g(at)f(0.)40 b(All)29 b(elemen)m(ts)g(are)f(remo)m(v)m(ed)h -(from)e Fq(aname)33 b Ft(b)s(efore)1110 4695 y(the)e(assignmen)m(t.)41 +(from)e Fq(aname)33 b Ft(b)s(efore)1110 5072 y(the)e(assignmen)m(t.)41 b(Other)30 b Fq(name)36 b Ft(argumen)m(ts)30 b(are)h(ignored.)630 -4853 y Fs(-d)f Fi(delim)114 b Ft(The)41 b(\014rst)h(c)m(haracter)h(of)f +5230 y Fs(-d)f Fi(delim)114 b Ft(The)41 b(\014rst)h(c)m(haracter)h(of)f Fq(delim)g Ft(is)g(used)g(to)g(terminate)h(the)f(input)f(line,)1110 -4963 y(rather)30 b(than)g(newline.)630 5121 y Fs(-e)384 -b Ft(Readline)28 b(\(see)h(Chapter)e(8)h([Command)f(Line)g(Editing],)i -(page)f(95\))h(is)f(used)1110 5230 y(to)42 b(obtain)f(the)g(line.)73 -b(Readline)41 b(uses)g(the)g(curren)m(t)g(\(or)g(default,)j(if)d(line) -1110 5340 y(editing)31 b(w)m(as)g(not)f(previously)g(activ)m(e\))j -(editing)f(settings.)p eop end +5340 y(rather)30 b(than)g(newline.)p eop end %%Page: 51 57 TeXDict begin 51 56 bop 150 -116 a Ft(Chapter)30 b(4:)41 -b(Shell)30 b(Builtin)h(Commands)2069 b(51)630 299 y Fs(-i)30 -b Fi(text)162 b Ft(If)36 b(Readline)i(is)f(b)s(eing)g(used)f(to)h(read) -g(the)g(line,)j Fq(text)f Ft(is)e(placed)h(in)m(to)g(the)1110 -408 y(editing)31 b(bu\013er)e(b)s(efore)h(editing)h(b)s(egins.)630 -573 y Fs(-n)f Fi(nchars)1110 682 y Fs(read)38 b Ft(returns)f(after)j +b(Shell)30 b(Builtin)h(Commands)2069 b(51)630 299 y Fs(-e)384 +b Ft(Readline)28 b(\(see)h(Chapter)e(8)h([Command)f(Line)g(Editing],)i +(page)f(95\))h(is)f(used)1110 408 y(to)42 b(obtain)f(the)g(line.)73 +b(Readline)41 b(uses)g(the)g(curren)m(t)g(\(or)g(default,)j(if)d(line) +1110 518 y(editing)31 b(w)m(as)g(not)f(previously)g(activ)m(e\))j +(editing)f(settings.)630 687 y Fs(-i)e Fi(text)162 b +Ft(If)36 b(Readline)i(is)f(b)s(eing)g(used)f(to)h(read)g(the)g(line,)j +Fq(text)f Ft(is)e(placed)h(in)m(to)g(the)1110 797 y(editing)31 +b(bu\013er)e(b)s(efore)h(editing)h(b)s(egins.)630 966 +y Fs(-n)f Fi(nchars)1110 1076 y Fs(read)38 b Ft(returns)f(after)j (reading)f Fq(nc)m(hars)j Ft(c)m(haracters)e(rather)f(than)g(w)m -(aiting)1110 792 y(for)g(a)h(complete)h(line)f(of)f(input,)i(but)e -(honor)g(a)h(delimiter)g(if)f(few)m(er)h(than)1110 902 +(aiting)1110 1186 y(for)g(a)h(complete)h(line)f(of)f(input,)i(but)e +(honor)g(a)h(delimiter)g(if)f(few)m(er)h(than)1110 1295 y Fq(nc)m(hars)34 b Ft(c)m(haracters)e(are)e(read)h(b)s(efore)f(the)g -(delimiter.)630 1066 y Fs(-N)g Fi(nchars)1110 1176 y +(delimiter.)630 1465 y Fs(-N)g Fi(nchars)1110 1574 y Fs(read)39 b Ft(returns)f(after)j(reading)e(exactly)j Fq(nc)m(hars)h Ft(c)m(haracters)f(rather)d(than)1110 -1285 y(w)m(aiting)32 b(for)f(a)g(complete)i(line)e(of)g(input,)g -(unless)f(EOF)h(is)g(encoun)m(tered)g(or)1110 1395 y +1684 y(w)m(aiting)32 b(for)f(a)g(complete)i(line)e(of)g(input,)g +(unless)f(EOF)h(is)g(encoun)m(tered)g(or)1110 1793 y Fs(read)f Ft(times)i(out.)43 b(Delimiter)33 b(c)m(haracters)f(encoun)m -(tered)g(in)f(the)g(input)g(are)1110 1504 y(not)g(treated)h(sp)s +(tered)g(in)f(the)g(input)g(are)1110 1903 y(not)g(treated)h(sp)s (ecially)g(and)f(do)f(not)i(cause)f Fs(read)f Ft(to)i(return)e(un)m -(til)h Fq(nc)m(hars)1110 1614 y Ft(c)m(haracters)h(are)f(read.)630 -1778 y Fs(-p)f Fi(prompt)1110 1888 y Ft(Displa)m(y)38 +(til)h Fq(nc)m(hars)1110 2012 y Ft(c)m(haracters)h(are)f(read.)630 +2182 y Fs(-p)f Fi(prompt)1110 2291 y Ft(Displa)m(y)38 b Fq(prompt)r Ft(,)f(without)g(a)f(trailing)i(newline,)g(b)s(efore)e -(attempting)i(to)1110 1998 y(read)f(an)m(y)h(input.)60 +(attempting)i(to)1110 2401 y(read)f(an)m(y)h(input.)60 b(The)37 b(prompt)g(is)g(displa)m(y)m(ed)h(only)f(if)g(input)g(is)g -(coming)1110 2107 y(from)30 b(a)h(terminal.)630 2271 +(coming)1110 2511 y(from)30 b(a)h(terminal.)630 2680 y Fs(-r)384 b Ft(If)21 b(this)h(option)g(is)f(giv)m(en,)k(bac)m(kslash) d(do)s(es)f(not)h(act)h(as)f(an)f(escap)s(e)h(c)m(haracter.)1110 -2381 y(The)30 b(bac)m(kslash)i(is)f(considered)g(to)h(b)s(e)e(part)h -(of)g(the)g(line.)43 b(In)30 b(particular,)i(a)1110 2491 +2790 y(The)30 b(bac)m(kslash)i(is)f(considered)g(to)h(b)s(e)e(part)h +(of)g(the)g(line.)43 b(In)30 b(particular,)i(a)1110 2899 y(bac)m(kslash-newline)f(pair)f(ma)m(y)h(not)g(b)s(e)f(used)f(as)i(a)g -(line)f(con)m(tin)m(uation.)630 2655 y Fs(-s)384 b Ft(Silen)m(t)28 +(line)f(con)m(tin)m(uation.)630 3068 y Fs(-s)384 b Ft(Silen)m(t)28 b(mo)s(de.)40 b(If)27 b(input)f(is)i(coming)g(from)f(a)h(terminal,)h(c) -m(haracters)g(are)f(not)1110 2765 y(ec)m(ho)s(ed.)630 -2929 y Fs(-t)i Fi(timeout)1110 3039 y Ft(Cause)23 b Fs(read)f +m(haracters)g(are)f(not)1110 3178 y(ec)m(ho)s(ed.)630 +3347 y Fs(-t)i Fi(timeout)1110 3457 y Ft(Cause)23 b Fs(read)f Ft(to)i(time)f(out)h(and)e(return)g(failure)h(if)g(a)h(complete)g(line) -g(of)f(input)1110 3148 y(is)44 b(not)f(read)h(within)e +g(of)f(input)1110 3567 y(is)44 b(not)f(read)h(within)e Fq(timeout)47 b Ft(seconds.)80 b Fq(timeout)46 b Ft(ma)m(y)e(b)s(e)f(a) -h(decimal)1110 3258 y(n)m(um)m(b)s(er)26 b(with)h(a)h(fractional)h(p)s +h(decimal)1110 3676 y(n)m(um)m(b)s(er)26 b(with)h(a)h(fractional)h(p)s (ortion)d(follo)m(wing)j(the)f(decimal)g(p)s(oin)m(t.)40 -b(This)1110 3367 y(option)g(is)g(only)g(e\013ectiv)m(e)j(if)c +b(This)1110 3786 y(option)g(is)g(only)g(e\013ectiv)m(e)j(if)c Fs(read)g Ft(is)h(reading)g(input)f(from)g(a)h(terminal,)1110 -3477 y(pip)s(e,)25 b(or)e(other)i(sp)s(ecial)f(\014le;)i(it)f(has)e(no) -h(e\013ect)h(when)e(reading)h(from)g(regular)1110 3587 +3895 y(pip)s(e,)25 b(or)e(other)i(sp)s(ecial)f(\014le;)i(it)f(has)e(no) +h(e\013ect)h(when)e(reading)h(from)g(regular)1110 4005 y(\014les.)55 b(If)34 b Fq(timeout)k Ft(is)d(0,)i Fs(read)d Ft(returns)g(success)h(if)g(input)g(is)g(a)m(v)-5 b(ailable)37 -b(on)1110 3696 y(the)j(sp)s(eci\014ed)f(\014le)g(descriptor,)j(failure) -e(otherwise.)69 b(The)39 b(exit)h(status)g(is)1110 3806 +b(on)1110 4115 y(the)j(sp)s(eci\014ed)f(\014le)g(descriptor,)j(failure) +e(otherwise.)69 b(The)39 b(exit)h(status)g(is)1110 4224 y(greater)32 b(than)e(128)h(if)g(the)f(timeout)i(is)e(exceeded.)630 -3970 y Fs(-u)g Fi(fd)258 b Ft(Read)31 b(input)e(from)h(\014le)g -(descriptor)h Fq(fd)t Ft(.)150 4134 y Fs(readarray)870 -4244 y(readarray)45 b([-n)i Fi(count)11 b Fs(])46 b([-O)h +4394 y Fs(-u)g Fi(fd)258 b Ft(Read)31 b(input)e(from)h(\014le)g +(descriptor)h Fq(fd)t Ft(.)150 4563 y Fs(readarray)870 +4672 y(readarray)45 b([-n)i Fi(count)11 b Fs(])46 b([-O)h Fi(origin)11 b Fs(])45 b([-s)i Fi(count)11 b Fs(])46 -b([-t])g([-u)h Fi(fd)11 b Fs(])47 b([)870 4354 y(-C)g +b([-t])g([-u)h Fi(fd)11 b Fs(])47 b([)870 4782 y(-C)g Fi(callback)11 b Fs(])45 b([-c)i Fi(quantum)11 b Fs(])45 -b([)p Fi(array)11 b Fs(])630 4491 y Ft(Read)37 b(lines)g(from)f(the)h +b([)p Fi(array)11 b Fs(])630 4922 y Ft(Read)37 b(lines)g(from)f(the)h (standard)f(input)g(in)m(to)h(the)g(indexed)f(arra)m(y)i(v)-5 -b(ariable)37 b Fq(arra)m(y)8 b Ft(,)39 b(or)630 4600 +b(ariable)37 b Fq(arra)m(y)8 b Ft(,)39 b(or)630 5031 y(from)30 b(\014le)g(descriptor)h Fq(fd)i Ft(if)d(the)h(`)p -Fs(-u)p Ft(')f(option)h(is)f(supplied.)630 4737 y(A)g(synon)m(ym)g(for) -g Fs(mapfile)p Ft(.)150 4902 y Fs(source)870 5039 y(source)46 -b Fi(filename)630 5176 y Ft(A)30 b(synon)m(ym)g(for)g -Fs(.)g Ft(\(see)i(Section)f(4.1)g([Bourne)g(Shell)f(Builtins],)h(page)g -(37\).)150 5340 y Fs(type)p eop end +Fs(-u)p Ft(')f(option)h(is)f(supplied.)630 5171 y(A)g(synon)m(ym)g(for) +g Fs(mapfile)p Ft(.)150 5340 y Fs(source)p eop end %%Page: 52 58 TeXDict begin 52 57 bop 150 -116 a Ft(52)2572 b(Bash)31 -b(Reference)g(Man)m(ual)870 299 y Fs(type)47 b([-afptP])e([)p -Fi(name)57 b Fs(...)o(])630 433 y Ft(F)-8 b(or)41 b(eac)m(h)h -Fq(name)5 b Ft(,)44 b(indicate)e(ho)m(w)f(it)g(w)m(ould)f(b)s(e)g(in)m -(terpreted)h(if)g(used)f(as)h(a)g(command)630 542 y(name.)630 -676 y(If)d(the)g(`)p Fs(-t)p Ft(')g(option)g(is)g(used,)i +b(Reference)g(Man)m(ual)870 299 y Fs(source)46 b Fi(filename)630 +434 y Ft(A)30 b(synon)m(ym)g(for)g Fs(.)g Ft(\(see)i(Section)f(4.1)g +([Bourne)g(Shell)f(Builtins],)h(page)g(37\).)150 595 +y Fs(type)870 731 y(type)47 b([-afptP])e([)p Fi(name)57 +b Fs(...)o(])630 866 y Ft(F)-8 b(or)41 b(eac)m(h)h Fq(name)5 +b Ft(,)44 b(indicate)e(ho)m(w)f(it)g(w)m(ould)f(b)s(e)g(in)m(terpreted) +h(if)g(used)f(as)h(a)g(command)630 976 y(name.)630 1111 +y(If)d(the)g(`)p Fs(-t)p Ft(')g(option)g(is)g(used,)i Fs(type)d Ft(prin)m(ts)g(a)i(single)f(w)m(ord)g(whic)m(h)g(is)g(one)g -(of)h(`)p Fs(alias)p Ft(',)630 786 y(`)p Fs(function)p +(of)h(`)p Fs(alias)p Ft(',)630 1221 y(`)p Fs(function)p Ft(',)32 b(`)p Fs(builtin)p Ft(',)g(`)p Fs(file)p Ft(')g(or)h(`)p Fs(keyword)p Ft(',)f(if)h Fq(name)38 b Ft(is)33 b(an)f(alias,)j(shell)e -(function,)630 896 y(shell)i(builtin,)g(disk)g(\014le,)h(or)e(shell)h +(function,)630 1330 y(shell)i(builtin,)g(disk)g(\014le,)h(or)e(shell)h (reserv)m(ed)g(w)m(ord,)h(resp)s(ectiv)m(ely)-8 b(.)55 -b(If)34 b(the)h Fq(name)40 b Ft(is)35 b(not)630 1005 +b(If)34 b(the)h Fq(name)40 b Ft(is)35 b(not)630 1440 y(found,)29 b(then)h(nothing)h(is)f(prin)m(ted,)g(and)g -Fs(type)f Ft(returns)g(a)i(failure)g(status.)630 1139 +Fs(type)f Ft(returns)g(a)i(failure)g(status.)630 1575 y(If)39 b(the)g(`)p Fs(-p)p Ft(')g(option)h(is)f(used,)i Fs(type)d Ft(either)h(returns)f(the)i(name)f(of)g(the)g(disk)g(\014le)g -(that)630 1249 y(w)m(ould)30 b(b)s(e)g(executed,)h(or)g(nothing)f(if)g +(that)630 1685 y(w)m(ould)30 b(b)s(e)g(executed,)h(or)g(nothing)f(if)g (`)p Fs(-t)p Ft(')h(w)m(ould)f(not)g(return)g(`)p Fs(file)p -Ft('.)630 1383 y(The)23 b(`)p Fs(-P)p Ft(')g(option)h(forces)g(a)g +Ft('.)630 1820 y(The)23 b(`)p Fs(-P)p Ft(')g(option)h(forces)g(a)g (path)f(searc)m(h)h(for)f(eac)m(h)h Fq(name)5 b Ft(,)26 b(ev)m(en)e(if)f(`)p Fs(-t)p Ft(')g(w)m(ould)g(not)h(return)630 -1492 y(`)p Fs(file)p Ft('.)630 1626 y(If)34 b(a)i(command)e(is)h +1930 y(`)p Fs(file)p Ft('.)630 2065 y(If)34 b(a)i(command)e(is)h (hashed,)g(`)p Fs(-p)p Ft(')g(and)f(`)p Fs(-P)p Ft(')h(prin)m(t)f(the)h -(hashed)f(v)-5 b(alue,)37 b(not)e(necessarily)630 1736 +(hashed)f(v)-5 b(alue,)37 b(not)e(necessarily)630 2175 y(the)c(\014le)f(that)h(app)s(ears)f(\014rst)f(in)h Fs($PATH)p -Ft(.)630 1870 y(If)36 b(the)h(`)p Fs(-a)p Ft(')g(option)g(is)g(used,)g +Ft(.)630 2310 y(If)36 b(the)h(`)p Fs(-a)p Ft(')g(option)g(is)g(used,)g Fs(type)f Ft(returns)f(all)j(of)f(the)g(places)g(that)g(con)m(tain)h -(an)f(exe-)630 1979 y(cutable)d(named)f Fq(\014le)5 b +(an)f(exe-)630 2420 y(cutable)d(named)f Fq(\014le)5 b Ft(.)49 b(This)32 b(includes)h(aliases)i(and)d(functions,)i(if)f(and)f -(only)i(if)f(the)g(`)p Fs(-p)p Ft(')630 2089 y(option)e(is)f(not)h -(also)g(used.)630 2223 y(If)26 b(the)h(`)p Fs(-f)p Ft(')g(option)g(is)g +(only)i(if)f(the)g(`)p Fs(-p)p Ft(')630 2529 y(option)e(is)f(not)h +(also)g(used.)630 2665 y(If)26 b(the)h(`)p Fs(-f)p Ft(')g(option)g(is)g (used,)g Fs(type)e Ft(do)s(es)i(not)g(attempt)g(to)h(\014nd)d(shell)i -(functions,)g(as)g(with)630 2332 y(the)k Fs(command)d -Ft(builtin.)630 2466 y(The)j(return)f(status)h(is)g(zero)h(if)f(all)h +(functions,)g(as)g(with)630 2774 y(the)k Fs(command)d +Ft(builtin.)630 2910 y(The)j(return)f(status)h(is)g(zero)h(if)f(all)h (of)f(the)h Fq(names)i Ft(are)e(found,)e(non-zero)i(if)f(an)m(y)g(are)h -(not)630 2576 y(found.)150 2734 y Fs(typeset)870 2868 +(not)630 3019 y(found.)150 3180 y Fs(typeset)870 3316 y(typeset)46 b([-afFrxi])f([-p])i([)p Fi(name)11 b Fs([=)p -Fi(value)g Fs(])43 b(...)o(])630 3002 y Ft(The)29 b Fs(typeset)f +Fi(value)g Fs(])43 b(...)o(])630 3451 y Ft(The)29 b Fs(typeset)f Ft(command)h(is)g(supplied)g(for)g(compatibilit)m(y)j(with)d(the)h -(Korn)e(shell;)j(ho)m(w-)630 3112 y(ev)m(er,)g(it)g(has)f(b)s(een)g +(Korn)e(shell;)j(ho)m(w-)630 3561 y(ev)m(er,)g(it)g(has)f(b)s(een)g (deprecated)h(in)f(fa)m(v)m(or)i(of)e(the)h Fs(declare)d -Ft(builtin)i(command.)150 3270 y Fs(ulimit)870 3404 y(ulimit)46 +Ft(builtin)i(command.)150 3722 y Fs(ulimit)870 3857 y(ulimit)46 b([-abcdefilmnpqrstuvxHST])41 b([)p Fi(limit)11 b Fs(])630 -3538 y(ulimit)25 b Ft(pro)m(vides)h(con)m(trol)i(o)m(v)m(er)g(the)f +3993 y(ulimit)25 b Ft(pro)m(vides)h(con)m(trol)i(o)m(v)m(er)g(the)f (resources)f(a)m(v)-5 b(ailable)29 b(to)e(pro)s(cesses)f(started)h(b)m -(y)g(the)630 3647 y(shell,)i(on)f(systems)g(that)h(allo)m(w)h(suc)m(h)e +(y)g(the)630 4102 y(shell,)i(on)f(systems)g(that)h(allo)m(w)h(suc)m(h)e (con)m(trol.)41 b(If)28 b(an)g(option)h(is)f(giv)m(en,)i(it)e(is)h(in)m -(terpreted)630 3757 y(as)i(follo)m(ws:)630 3915 y Fs(-S)384 +(terpreted)630 4212 y(as)i(follo)m(ws:)630 4373 y Fs(-S)384 b Ft(Change)30 b(and)g(rep)s(ort)g(the)g(soft)h(limit)g(asso)s(ciated)h -(with)e(a)h(resource.)630 4074 y Fs(-H)384 b Ft(Change)30 +(with)e(a)h(resource.)630 4534 y Fs(-H)384 b Ft(Change)30 b(and)g(rep)s(ort)g(the)g(hard)g(limit)h(asso)s(ciated)h(with)e(a)h -(resource.)630 4232 y Fs(-a)384 b Ft(All)31 b(curren)m(t)f(limits)h -(are)g(rep)s(orted.)630 4390 y Fs(-b)384 b Ft(The)30 +(resource.)630 4695 y Fs(-a)384 b Ft(All)31 b(curren)m(t)f(limits)h +(are)g(rep)s(orted.)630 4856 y Fs(-b)384 b Ft(The)30 b(maxim)m(um)g(so)s(c)m(k)m(et)i(bu\013er)e(size.)630 -4548 y Fs(-c)384 b Ft(The)30 b(maxim)m(um)g(size)h(of)g(core)g(\014les) -f(created.)630 4707 y Fs(-d)384 b Ft(The)30 b(maxim)m(um)g(size)h(of)g -(a)g(pro)s(cess's)f(data)h(segmen)m(t.)630 4865 y Fs(-e)384 +5018 y Fs(-c)384 b Ft(The)30 b(maxim)m(um)g(size)h(of)g(core)g(\014les) +f(created.)630 5179 y Fs(-d)384 b Ft(The)30 b(maxim)m(um)g(size)h(of)g +(a)g(pro)s(cess's)f(data)h(segmen)m(t.)630 5340 y Fs(-e)384 b Ft(The)30 b(maxim)m(um)g(sc)m(heduling)h(priorit)m(y)f(\()p -Fs(")p Ft(nice)p Fs(")p Ft(\).)630 5023 y Fs(-f)384 b -Ft(The)30 b(maxim)m(um)g(size)h(of)g(\014les)f(written)h(b)m(y)f(the)g -(shell)h(and)f(its)h(c)m(hildren.)630 5182 y Fs(-i)384 -b Ft(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i(p)s(ending)e -(signals.)630 5340 y Fs(-l)384 b Ft(The)30 b(maxim)m(um)g(size)h(that)g -(ma)m(y)g(b)s(e)f(lo)s(c)m(k)m(ed)i(in)m(to)f(memory)-8 -b(.)p eop end +Fs(")p Ft(nice)p Fs(")p Ft(\).)p eop end %%Page: 53 59 TeXDict begin 53 58 bop 150 -116 a Ft(Chapter)30 b(4:)41 -b(Shell)30 b(Builtin)h(Commands)2069 b(53)630 299 y Fs(-m)384 -b Ft(The)36 b(maxim)m(um)g(residen)m(t)h(set)g(size)g(\(man)m(y)g -(systems)f(do)h(not)f(honor)g(this)1110 408 y(limit\).)630 -580 y Fs(-n)384 b Ft(The)38 b(maxim)m(um)h(n)m(um)m(b)s(er)e(of)i(op)s -(en)f(\014le)h(descriptors)g(\(most)g(systems)g(do)1110 -690 y(not)31 b(allo)m(w)g(this)g(v)-5 b(alue)31 b(to)g(b)s(e)e(set\).) -630 862 y Fs(-p)384 b Ft(The)30 b(pip)s(e)f(bu\013er)h(size.)630 -1034 y Fs(-q)384 b Ft(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i(b)m -(ytes)g(in)f(POSIX)f(message)j(queues.)630 1206 y Fs(-r)384 -b Ft(The)30 b(maxim)m(um)g(real-time)i(sc)m(heduling)f(priorit)m(y)-8 -b(.)630 1378 y Fs(-s)384 b Ft(The)30 b(maxim)m(um)g(stac)m(k)i(size.) -630 1550 y Fs(-t)384 b Ft(The)30 b(maxim)m(um)g(amoun)m(t)h(of)f(cpu)g -(time)h(in)f(seconds.)630 1722 y Fs(-u)384 b Ft(The)30 -b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i(pro)s(cesses)f(a)m(v)-5 -b(ailable)33 b(to)e(a)f(single)i(user.)630 1894 y Fs(-v)384 -b Ft(The)41 b(maxim)m(um)h(amoun)m(t)g(of)h(virtual)f(memory)g(a)m(v)-5 -b(ailable)44 b(to)e(the)g(shell,)1110 2004 y(and,)30 -b(on)g(some)h(systems,)g(to)g(its)g(c)m(hildren.)630 -2176 y Fs(-x)384 b Ft(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i -(\014le)f(lo)s(c)m(ks.)630 2348 y Fs(-T)384 b Ft(The)30 -b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i(threads.)630 2520 +b(Shell)30 b(Builtin)h(Commands)2069 b(53)630 299 y Fs(-f)384 +b Ft(The)30 b(maxim)m(um)g(size)h(of)g(\014les)f(written)h(b)m(y)f(the) +g(shell)h(and)f(its)h(c)m(hildren.)630 484 y Fs(-i)384 +b Ft(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i(p)s(ending)e +(signals.)630 668 y Fs(-l)384 b Ft(The)30 b(maxim)m(um)g(size)h(that)g +(ma)m(y)g(b)s(e)f(lo)s(c)m(k)m(ed)i(in)m(to)f(memory)-8 +b(.)630 853 y Fs(-m)384 b Ft(The)36 b(maxim)m(um)g(residen)m(t)h(set)g +(size)g(\(man)m(y)g(systems)f(do)h(not)f(honor)g(this)1110 +963 y(limit\).)630 1148 y Fs(-n)384 b Ft(The)38 b(maxim)m(um)h(n)m(um)m +(b)s(er)e(of)i(op)s(en)f(\014le)h(descriptors)g(\(most)g(systems)g(do) +1110 1257 y(not)31 b(allo)m(w)g(this)g(v)-5 b(alue)31 +b(to)g(b)s(e)e(set\).)630 1442 y Fs(-p)384 b Ft(The)30 +b(pip)s(e)f(bu\013er)h(size.)630 1627 y Fs(-q)384 b Ft(The)30 +b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i(b)m(ytes)g(in)f(POSIX)f(message)j +(queues.)630 1812 y Fs(-r)384 b Ft(The)30 b(maxim)m(um)g(real-time)i +(sc)m(heduling)f(priorit)m(y)-8 b(.)630 1996 y Fs(-s)384 +b Ft(The)30 b(maxim)m(um)g(stac)m(k)i(size.)630 2181 +y Fs(-t)384 b Ft(The)30 b(maxim)m(um)g(amoun)m(t)h(of)f(cpu)g(time)h +(in)f(seconds.)630 2366 y Fs(-u)384 b Ft(The)30 b(maxim)m(um)g(n)m(um)m +(b)s(er)f(of)i(pro)s(cesses)f(a)m(v)-5 b(ailable)33 b(to)e(a)f(single)i +(user.)630 2551 y Fs(-v)384 b Ft(The)41 b(maxim)m(um)h(amoun)m(t)g(of)h +(virtual)f(memory)g(a)m(v)-5 b(ailable)44 b(to)e(the)g(shell,)1110 +2660 y(and,)30 b(on)g(some)h(systems,)g(to)g(its)g(c)m(hildren.)630 +2845 y Fs(-x)384 b Ft(The)30 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i +(\014le)f(lo)s(c)m(ks.)630 3030 y Fs(-T)384 b Ft(The)30 +b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i(threads.)630 3215 y(If)i Fq(limit)j Ft(is)e(giv)m(en,)h(it)f(is)g(the)g(new)f(v)-5 b(alue)34 b(of)f(the)h(sp)s(eci\014ed)f(resource;)i(the)f(sp)s(ecial)g -Fq(limit)630 2630 y Ft(v)-5 b(alues)27 b Fs(hard)p Ft(,)g +Fq(limit)630 3324 y Ft(v)-5 b(alues)27 b Fs(hard)p Ft(,)g Fs(soft)p Ft(,)g(and)g Fs(unlimited)d Ft(stand)j(for)g(the)g(curren)m -(t)g(hard)f(limit,)j(the)e(curren)m(t)630 2739 y(soft)38 +(t)g(hard)f(limit,)j(the)e(curren)m(t)630 3434 y(soft)38 b(limit,)j(and)d(no)f(limit,)k(resp)s(ectiv)m(ely)-8 b(.)66 b(A)38 b(hard)f(limit)h(cannot)h(b)s(e)e(increased)i(b)m(y)f(a) -630 2849 y(non-ro)s(ot)f(user)f(once)i(it)g(is)f(set;)k(a)c(soft)g +630 3544 y(non-ro)s(ot)f(user)f(once)i(it)g(is)f(set;)k(a)c(soft)g (limit)h(ma)m(y)g(b)s(e)e(increased)h(up)f(to)i(the)f(v)-5 -b(alue)38 b(of)630 2958 y(the)c(hard)f(limit.)51 b(Otherwise,)35 +b(alue)38 b(of)630 3653 y(the)c(hard)f(limit.)51 b(Otherwise,)35 b(the)f(curren)m(t)f(v)-5 b(alue)35 b(of)f(the)f(soft)i(limit)f(for)g -(the)g(sp)s(eci\014ed)630 3068 y(resource)27 b(is)h(prin)m(ted,)f +(the)g(sp)s(eci\014ed)630 3763 y(resource)27 b(is)h(prin)m(ted,)f (unless)g(the)g(`)p Fs(-H)p Ft(')g(option)h(is)f(supplied.)38 -b(When)27 b(setting)h(new)f(limits,)630 3178 y(if)40 +b(When)27 b(setting)h(new)f(limits,)630 3872 y(if)40 b(neither)f(`)p Fs(-H)p Ft(')h(nor)f(`)p Fs(-S)p Ft(')h(is)f(supplied,) i(b)s(oth)e(the)h(hard)f(and)g(soft)h(limits)g(are)g(set.)69 -b(If)630 3287 y(no)35 b(option)h(is)f(giv)m(en,)j(then)d(`)p +b(If)630 3982 y(no)35 b(option)h(is)f(giv)m(en,)j(then)d(`)p Fs(-f)p Ft(')g(is)g(assumed.)55 b(V)-8 b(alues)36 b(are)f(in)g(1024-b)m -(yte)j(incremen)m(ts,)630 3397 y(except)d(for)f(`)p Fs(-t)p +(yte)j(incremen)m(ts,)630 4092 y(except)d(for)f(`)p Fs(-t)p Ft(',)g(whic)m(h)g(is)g(in)g(seconds,)h(`)p Fs(-p)p Ft(',)g(whic)m(h)e (is)h(in)g(units)f(of)h(512-b)m(yte)i(blo)s(c)m(ks,)630 -3506 y(and)30 b(`)p Fs(-n)p Ft(')g(and)g(`)p Fs(-u)p +4201 y(and)30 b(`)p Fs(-n)p Ft(')g(and)g(`)p Fs(-u)p Ft(',)g(whic)m(h)g(are)h(unscaled)f(v)-5 b(alues.)630 -3647 y(The)34 b(return)g(status)h(is)f(zero)i(unless)e(an)g(in)m(v)-5 +4348 y(The)34 b(return)g(status)h(is)f(zero)i(unless)e(an)g(in)m(v)-5 b(alid)36 b(option)f(or)f(argumen)m(t)i(is)e(supplied,)h(or)630 -3757 y(an)30 b(error)g(o)s(ccurs)g(while)h(setting)g(a)g(new)f(limit.) -150 3929 y Fs(unalias)870 4070 y(unalias)46 b([-a])g([)p -Fi(name)57 b Fs(...)47 b(])630 4210 y Ft(Remo)m(v)m(e)39 +4458 y(an)30 b(error)g(o)s(ccurs)g(while)h(setting)g(a)g(new)f(limit.) +150 4643 y Fs(unalias)870 4790 y(unalias)46 b([-a])g([)p +Fi(name)57 b Fs(...)47 b(])630 4937 y Ft(Remo)m(v)m(e)39 b(eac)m(h)f Fq(name)k Ft(from)36 b(the)h(list)h(of)f(aliases.)61 b(If)36 b(`)p Fs(-a)p Ft(')h(is)g(supplied,)h(all)f(aliases)i(are)630 -4320 y(remo)m(v)m(ed.)j(Aliases)31 b(are)g(describ)s(ed)e(in)h(Section) -i(6.6)f([Aliases],)h(page)f(81.)150 4571 y Fr(4.3)68 -b(Mo)t(difying)45 b(Shell)g(Beha)l(vior)150 4796 y Fj(4.3.1)63 -b(The)41 b(Set)g(Builtin)150 4942 y Ft(This)35 b(builtin)h(is)g(so)g -(complicated)i(that)f(it)f(deserv)m(es)h(its)f(o)m(wn)g(section.)59 -b Fs(set)35 b Ft(allo)m(ws)j(y)m(ou)e(to)h(c)m(hange)150 -5052 y(the)c(v)-5 b(alues)34 b(of)f(shell)g(options)h(and)e(set)i(the)f -(p)s(ositional)h(parameters,)h(or)e(to)h(displa)m(y)f(the)g(names)h -(and)150 5162 y(v)-5 b(alues)31 b(of)f(shell)h(v)-5 b(ariables.)150 -5340 y Fs(set)p eop end +5047 y(remo)m(v)m(ed.)j(Aliases)31 b(are)g(describ)s(ed)e(in)h(Section) +i(6.6)f([Aliases],)h(page)f(81.)150 5317 y Fr(4.3)68 +b(Mo)t(difying)45 b(Shell)g(Beha)l(vior)p eop end %%Page: 54 60 TeXDict begin 54 59 bop 150 -116 a Ft(54)2572 b(Bash)31 -b(Reference)g(Man)m(ual)870 299 y Fs(set)47 b([--abefhkmnptuvxBCEHPT]) -41 b([-o)47 b Fi(option)11 b Fs(])46 b([)p Fi(argument)55 -b Fs(...])870 408 y(set)47 b([+abefhkmnptuvxBCEHPT])42 +b(Reference)g(Man)m(ual)150 299 y Fj(4.3.1)63 b(The)41 +b(Set)g(Builtin)150 446 y Ft(This)35 b(builtin)h(is)g(so)g(complicated) +i(that)f(it)f(deserv)m(es)h(its)f(o)m(wn)g(section.)59 +b Fs(set)35 b Ft(allo)m(ws)j(y)m(ou)e(to)h(c)m(hange)150 +555 y(the)c(v)-5 b(alues)34 b(of)f(shell)g(options)h(and)e(set)i(the)f +(p)s(ositional)h(parameters,)h(or)e(to)h(displa)m(y)f(the)g(names)h +(and)150 665 y(v)-5 b(alues)31 b(of)f(shell)h(v)-5 b(ariables.)150 +834 y Fs(set)870 972 y(set)47 b([--abefhkmnptuvxBCEHPT])41 +b([-o)47 b Fi(option)11 b Fs(])46 b([)p Fi(argument)55 +b Fs(...])870 1082 y(set)47 b([+abefhkmnptuvxBCEHPT])42 b([+o)47 b Fi(option)11 b Fs(])45 b([)p Fi(argument)56 -b Fs(...)o(])630 539 y Ft(If)22 b(no)h(options)g(or)g(argumen)m(ts)g +b Fs(...)o(])630 1219 y Ft(If)22 b(no)h(options)g(or)g(argumen)m(ts)g (are)g(supplied,)g Fs(set)f Ft(displa)m(ys)g(the)h(names)g(and)f(v)-5 -b(alues)23 b(of)g(all)630 649 y(shell)j(v)-5 b(ariables)27 +b(alues)23 b(of)g(all)630 1329 y(shell)j(v)-5 b(ariables)27 b(and)e(functions,)h(sorted)g(according)h(to)g(the)f(curren)m(t)f(lo)s -(cale,)k(in)c(a)i(format)630 758 y(that)i(ma)m(y)h(b)s(e)e(reused)g(as) -h(input)f(for)h(setting)h(or)e(resetting)i(the)f(curren)m(tly-set)h(v) --5 b(ariables.)630 868 y(Read-only)37 b(v)-5 b(ariables)37 +(cale,)k(in)c(a)i(format)630 1439 y(that)i(ma)m(y)h(b)s(e)e(reused)g +(as)h(input)f(for)h(setting)h(or)e(resetting)i(the)f(curren)m(tly-set)h +(v)-5 b(ariables.)630 1548 y(Read-only)37 b(v)-5 b(ariables)37 b(cannot)h(b)s(e)e(reset.)59 b(In)36 b Fl(posix)g Ft(mo)s(de,)i(only)f -(shell)f(v)-5 b(ariables)38 b(are)630 977 y(listed.)630 -1108 y(When)29 b(options)g(are)g(supplied,)f(they)h(set)h(or)f(unset)f +(shell)f(v)-5 b(ariables)38 b(are)630 1658 y(listed.)630 +1796 y(When)29 b(options)g(are)g(supplied,)f(they)h(set)h(or)f(unset)f (shell)h(attributes.)41 b(Options,)29 b(if)g(sp)s(ec-)630 -1217 y(i\014ed,)h(ha)m(v)m(e)i(the)e(follo)m(wing)i(meanings:)630 -1369 y Fs(-a)384 b Ft(Mark)32 b(v)-5 b(ariables)33 b(and)e(function)h +1905 y(i\014ed,)h(ha)m(v)m(e)i(the)e(follo)m(wing)i(meanings:)630 +2071 y Fs(-a)384 b Ft(Mark)32 b(v)-5 b(ariables)33 b(and)e(function)h (whic)m(h)g(are)g(mo)s(di\014ed)f(or)h(created)h(for)f(ex-)1110 -1478 y(p)s(ort)e(to)h(the)f(en)m(vironmen)m(t)h(of)g(subsequen)m(t)f -(commands.)630 1630 y Fs(-b)384 b Ft(Cause)44 b(the)h(status)g(of)f +2181 y(p)s(ort)e(to)h(the)f(en)m(vironmen)m(t)h(of)g(subsequen)m(t)f +(commands.)630 2347 y Fs(-b)384 b Ft(Cause)44 b(the)h(status)g(of)f (terminated)h(bac)m(kground)g(jobs)f(to)h(b)s(e)f(rep)s(orted)1110 -1739 y(immediately)-8 b(,)30 b(rather)d(than)f(b)s(efore)h(prin)m(ting) -g(the)g(next)g(primary)g(prompt.)630 1891 y Fs(-e)384 +2456 y(immediately)-8 b(,)30 b(rather)d(than)f(b)s(efore)h(prin)m(ting) +g(the)g(next)g(primary)g(prompt.)630 2622 y Fs(-e)384 b Ft(Exit)65 b(immediately)g(if)f(a)h(pip)s(eline)e(\(see)i(Section)g -(3.2.2)h([Pip)s(elines],)1110 2000 y(page)56 b(8\),)62 +(3.2.2)h([Pip)s(elines],)1110 2732 y(page)56 b(8\),)62 b(whic)m(h)55 b(ma)m(y)h(consist)f(of)h(a)f(single)h(simple)f(command)g -(\(see)1110 2110 y(Section)43 b(3.2.1)i([Simple)d(Commands],)j(page)e -(8\),)k(a)c(subshell)e(command)1110 2219 y(enclosed)32 +(\(see)1110 2841 y(Section)43 b(3.2.1)i([Simple)d(Commands],)j(page)e +(8\),)k(a)c(subshell)e(command)1110 2951 y(enclosed)32 b(in)f(paren)m(theses)h(\(see)h(Section)f(3.2.4.3)i([Command)d -(Grouping],)1110 2329 y(page)h(13\),)h(or)e(one)g(of)h(the)f(commands)g -(executed)h(as)f(part)g(of)h(a)f(command)1110 2438 y(list)37 +(Grouping],)1110 3060 y(page)h(13\),)h(or)e(one)g(of)h(the)f(commands)g +(executed)h(as)f(part)g(of)h(a)f(command)1110 3170 y(list)37 b(enclosed)g(b)m(y)f(braces)g(\(see)h(Section)g(3.2.4.3)h([Command)e -(Grouping],)1110 2548 y(page)48 b(13\))g(returns)d(a)j(non-zero)f +(Grouping],)1110 3280 y(page)48 b(13\))g(returns)d(a)j(non-zero)f (status.)91 b(The)46 b(shell)h(do)s(es)g(not)g(exit)h(if)1110 -2658 y(the)39 b(command)f(that)h(fails)g(is)f(part)g(of)h(the)f -(command)h(list)g(immediately)1110 2767 y(follo)m(wing)47 +3389 y(the)39 b(command)f(that)h(fails)g(is)f(part)g(of)h(the)f +(command)h(list)g(immediately)1110 3499 y(follo)m(wing)47 b(a)f Fs(while)e Ft(or)h Fs(until)f Ft(k)m(eyw)m(ord,)50 -b(part)45 b(of)h(the)g(test)g(in)f(an)h Fs(if)1110 2877 +b(part)45 b(of)h(the)g(test)g(in)f(an)h Fs(if)1110 3608 y Ft(statemen)m(t,)31 b(part)d(of)h(an)m(y)g(command)f(executed)h(in)g -(a)g Fs(&&)e Ft(or)i Fs(||)f Ft(list)h(except)1110 2986 +(a)g Fs(&&)e Ft(or)i Fs(||)f Ft(list)h(except)1110 3718 y(the)48 b(command)h(follo)m(wing)g(the)g(\014nal)f Fs(&&)f Ft(or)i Fs(||)p Ft(,)j(an)m(y)d(command)f(in)g(a)1110 -3096 y(pip)s(eline)39 b(but)f(the)i(last,)i(or)d(if)g(the)h(command's)f -(return)f(status)h(is)g(b)s(eing)1110 3206 y(in)m(v)m(erted)33 +3828 y(pip)s(eline)39 b(but)f(the)i(last,)i(or)d(if)g(the)h(command's)f +(return)f(status)h(is)g(b)s(eing)1110 3937 y(in)m(v)m(erted)33 b(with)e Fs(!)p Ft(.)45 b(A)32 b(trap)g(on)f Fs(ERR)p Ft(,)h(if)g(set,)h(is)f(executed)g(b)s(efore)g(the)g(shell)1110 -3315 y(exits.)1110 3446 y(This)e(option)h(applies)f(to)h(the)g(shell)g +4047 y(exits.)1110 4185 y(This)e(option)h(applies)f(to)h(the)g(shell)g (en)m(vironmen)m(t)g(and)f(eac)m(h)h(subshell)f(en-)1110 -3555 y(vironmen)m(t)j(separately)i(\(see)f(Section)g(3.7.3)h([Command)d -(Execution)i(En-)1110 3665 y(vironmen)m(t],)i(page)f(32\),)i(and)d(ma)m +4294 y(vironmen)m(t)j(separately)i(\(see)f(Section)g(3.7.3)h([Command)d +(Execution)i(En-)1110 4404 y(vironmen)m(t],)i(page)f(32\),)i(and)d(ma)m (y)h(cause)f(subshells)g(to)h(exit)g(b)s(efore)f(exe-)1110 -3774 y(cuting)d(all)g(the)g(commands)f(in)g(the)g(subshell.)630 -3926 y Fs(-f)384 b Ft(Disable)31 b(\014lename)g(expansion)f -(\(globbing\).)630 4077 y Fs(-h)384 b Ft(Lo)s(cate)33 +4513 y(cuting)d(all)g(the)g(commands)f(in)g(the)g(subshell.)630 +4679 y Fs(-f)384 b Ft(Disable)31 b(\014lename)g(expansion)f +(\(globbing\).)630 4845 y Fs(-h)384 b Ft(Lo)s(cate)33 b(and)e(remem)m(b)s(er)h(\(hash\))g(commands)f(as)h(they)g(are)g(lo)s -(ok)m(ed)h(up)e(for)1110 4187 y(execution.)42 b(This)29 -b(option)i(is)g(enabled)f(b)m(y)g(default.)630 4338 y +(ok)m(ed)h(up)e(for)1110 4955 y(execution.)42 b(This)29 +b(option)i(is)g(enabled)f(b)m(y)g(default.)630 5121 y Fs(-k)384 b Ft(All)34 b(argumen)m(ts)g(in)f(the)h(form)f(of)g (assignmen)m(t)h(statemen)m(ts)i(are)d(placed)h(in)1110 -4448 y(the)k(en)m(vironmen)m(t)g(for)g(a)g(command,)h(not)f(just)f -(those)i(that)f(precede)g(the)1110 4557 y(command)30 -b(name.)630 4709 y Fs(-m)384 b Ft(Job)30 b(con)m(trol)i(is)e(enabled)h -(\(see)g(Chapter)f(7)g([Job)h(Con)m(trol],)g(page)g(91\).)630 -4860 y Fs(-n)384 b Ft(Read)21 b(commands)f(but)g(do)h(not)g(execute)h -(them;)i(this)d(ma)m(y)g(b)s(e)f(used)g(to)h(c)m(hec)m(k)1110 -4969 y(a)42 b(script)g(for)g(syn)m(tax)g(errors.)75 b(This)41 -b(option)h(is)g(ignored)g(b)m(y)g(in)m(teractiv)m(e)1110 -5079 y(shells.)630 5230 y Fs(-o)30 b Fi(option-name)1110 -5340 y Ft(Set)h(the)f(option)h(corresp)s(onding)e(to)i -Fq(option-name)5 b Ft(:)p eop end +5230 y(the)k(en)m(vironmen)m(t)g(for)g(a)g(command,)h(not)f(just)f +(those)i(that)f(precede)g(the)1110 5340 y(command)30 +b(name.)p eop end %%Page: 55 61 TeXDict begin 55 60 bop 150 -116 a Ft(Chapter)30 b(4:)41 -b(Shell)30 b(Builtin)h(Commands)2069 b(55)1110 299 y -Fs(allexport)1590 408 y Ft(Same)30 b(as)h Fs(-a)p Ft(.)1110 -560 y Fs(braceexpand)1590 669 y Ft(Same)f(as)h Fs(-B)p -Ft(.)1110 821 y Fs(emacs)240 b Ft(Use)25 b(an)f Fs(emacs)p -Ft(-st)m(yle)h(line)f(editing)h(in)m(terface)h(\(see)g(Chapter)e(8)1590 -930 y([Command)38 b(Line)g(Editing],)i(page)f(95\).)66 -b(This)37 b(also)i(a\013ects)1590 1040 y(the)31 b(editing)g(in)m -(terface)h(used)d(for)h Fs(read)f(-e)p Ft(.)1110 1191 -y Fs(errexit)144 b Ft(Same)30 b(as)h Fs(-e)p Ft(.)1110 -1343 y Fs(errtrace)96 b Ft(Same)30 b(as)h Fs(-E)p Ft(.)1110 -1494 y Fs(functrace)1590 1604 y Ft(Same)f(as)h Fs(-T)p -Ft(.)1110 1755 y Fs(hashall)144 b Ft(Same)30 b(as)h Fs(-h)p -Ft(.)1110 1906 y Fs(histexpand)1590 2016 y Ft(Same)f(as)h -Fs(-H)p Ft(.)1110 2167 y Fs(history)144 b Ft(Enable)39 -b(command)g(history)-8 b(,)42 b(as)d(describ)s(ed)f(in)h(Section)h(9.1) -1590 2277 y([Bash)d(History)g(F)-8 b(acilities],)41 b(page)c(123.)60 -b(This)36 b(option)h(is)f(on)1590 2386 y(b)m(y)30 b(default)h(in)f(in)m -(teractiv)m(e)j(shells.)1110 2538 y Fs(ignoreeof)1590 -2647 y Ft(An)d(in)m(teractiv)m(e)j(shell)e(will)g(not)f(exit)h(up)s(on) -e(reading)i(EOF.)1110 2799 y Fs(keyword)144 b Ft(Same)30 -b(as)h Fs(-k)p Ft(.)1110 2950 y Fs(monitor)144 b Ft(Same)30 -b(as)h Fs(-m)p Ft(.)1110 3101 y Fs(noclobber)1590 3211 -y Ft(Same)f(as)h Fs(-C)p Ft(.)1110 3362 y Fs(noexec)192 -b Ft(Same)30 b(as)h Fs(-n)p Ft(.)1110 3513 y Fs(noglob)192 -b Ft(Same)30 b(as)h Fs(-f)p Ft(.)1110 3665 y Fs(nolog)240 -b Ft(Curren)m(tly)30 b(ignored.)1110 3816 y Fs(notify)192 -b Ft(Same)30 b(as)h Fs(-b)p Ft(.)1110 3968 y Fs(nounset)144 -b Ft(Same)30 b(as)h Fs(-u)p Ft(.)1110 4119 y Fs(onecmd)192 -b Ft(Same)30 b(as)h Fs(-t)p Ft(.)1110 4270 y Fs(physical)96 -b Ft(Same)30 b(as)h Fs(-P)p Ft(.)1110 4422 y Fs(pipefail)96 -b Ft(If)44 b(set,)k(the)d(return)e(v)-5 b(alue)45 b(of)f(a)h(pip)s -(eline)e(is)i(the)f(v)-5 b(alue)45 b(of)1590 4531 y(the)33 -b(last)h(\(righ)m(tmost\))h(command)e(to)h(exit)g(with)f(a)g(non-zero) -1590 4641 y(status,)28 b(or)f(zero)g(if)f(all)i(commands)e(in)g(the)h -(pip)s(eline)f(exit)i(suc-)1590 4750 y(cessfully)-8 b(.)41 -b(This)30 b(option)h(is)f(disabled)g(b)m(y)h(default.)1110 -4902 y Fs(posix)240 b Ft(Change)30 b(the)g(b)s(eha)m(vior)h(of)f(Bash)g -(where)g(the)g(default)h(op)s(era-)1590 5011 y(tion)25 -b(di\013ers)f(from)g(the)h Fl(posix)f Ft(standard)f(to)i(matc)m(h)h -(the)f(stan-)1590 5121 y(dard)32 b(\(see)i(Section)g(6.11)h([Bash)e -(POSIX)f(Mo)s(de],)j(page)e(86\).)1590 5230 y(This)k(is)g(in)m(tended)g -(to)h(mak)m(e)g(Bash)g(b)s(eha)m(v)m(e)g(as)g(a)f(strict)h(su-)1590 -5340 y(p)s(erset)30 b(of)h(that)f(standard.)p eop end +b(Shell)30 b(Builtin)h(Commands)2069 b(55)630 299 y Fs(-m)384 +b Ft(Job)30 b(con)m(trol)i(is)e(enabled)h(\(see)g(Chapter)f(7)g([Job)h +(Con)m(trol],)g(page)g(91\).)630 463 y Fs(-n)384 b Ft(Read)21 +b(commands)f(but)g(do)h(not)g(execute)h(them;)i(this)d(ma)m(y)g(b)s(e)f +(used)g(to)h(c)m(hec)m(k)1110 573 y(a)42 b(script)g(for)g(syn)m(tax)g +(errors.)75 b(This)41 b(option)h(is)g(ignored)g(b)m(y)g(in)m(teractiv)m +(e)1110 682 y(shells.)630 847 y Fs(-o)30 b Fi(option-name)1110 +956 y Ft(Set)h(the)f(option)h(corresp)s(onding)e(to)i +Fq(option-name)5 b Ft(:)1110 1121 y Fs(allexport)1590 +1230 y Ft(Same)30 b(as)h Fs(-a)p Ft(.)1110 1395 y Fs(braceexpand)1590 +1504 y Ft(Same)f(as)h Fs(-B)p Ft(.)1110 1669 y Fs(emacs)240 +b Ft(Use)25 b(an)f Fs(emacs)p Ft(-st)m(yle)h(line)f(editing)h(in)m +(terface)h(\(see)g(Chapter)e(8)1590 1778 y([Command)38 +b(Line)g(Editing],)i(page)f(95\).)66 b(This)37 b(also)i(a\013ects)1590 +1888 y(the)31 b(editing)g(in)m(terface)h(used)d(for)h +Fs(read)f(-e)p Ft(.)1110 2052 y Fs(errexit)144 b Ft(Same)30 +b(as)h Fs(-e)p Ft(.)1110 2217 y Fs(errtrace)96 b Ft(Same)30 +b(as)h Fs(-E)p Ft(.)1110 2381 y Fs(functrace)1590 2491 +y Ft(Same)f(as)h Fs(-T)p Ft(.)1110 2655 y Fs(hashall)144 +b Ft(Same)30 b(as)h Fs(-h)p Ft(.)1110 2819 y Fs(histexpand)1590 +2929 y Ft(Same)f(as)h Fs(-H)p Ft(.)1110 3093 y Fs(history)144 +b Ft(Enable)39 b(command)g(history)-8 b(,)42 b(as)d(describ)s(ed)f(in)h +(Section)h(9.1)1590 3203 y([Bash)d(History)g(F)-8 b(acilities],)41 +b(page)c(123.)60 b(This)36 b(option)h(is)f(on)1590 3313 +y(b)m(y)30 b(default)h(in)f(in)m(teractiv)m(e)j(shells.)1110 +3477 y Fs(ignoreeof)1590 3587 y Ft(An)d(in)m(teractiv)m(e)j(shell)e +(will)g(not)f(exit)h(up)s(on)e(reading)i(EOF.)1110 3751 +y Fs(keyword)144 b Ft(Same)30 b(as)h Fs(-k)p Ft(.)1110 +3915 y Fs(monitor)144 b Ft(Same)30 b(as)h Fs(-m)p Ft(.)1110 +4080 y Fs(noclobber)1590 4189 y Ft(Same)f(as)h Fs(-C)p +Ft(.)1110 4354 y Fs(noexec)192 b Ft(Same)30 b(as)h Fs(-n)p +Ft(.)1110 4518 y Fs(noglob)192 b Ft(Same)30 b(as)h Fs(-f)p +Ft(.)1110 4682 y Fs(nolog)240 b Ft(Curren)m(tly)30 b(ignored.)1110 +4847 y Fs(notify)192 b Ft(Same)30 b(as)h Fs(-b)p Ft(.)1110 +5011 y Fs(nounset)144 b Ft(Same)30 b(as)h Fs(-u)p Ft(.)1110 +5176 y Fs(onecmd)192 b Ft(Same)30 b(as)h Fs(-t)p Ft(.)1110 +5340 y Fs(physical)96 b Ft(Same)30 b(as)h Fs(-P)p Ft(.)p +eop end %%Page: 56 62 TeXDict begin 56 61 bop 150 -116 a Ft(56)2572 b(Bash)31 -b(Reference)g(Man)m(ual)1110 299 y Fs(privileged)1590 -408 y Ft(Same)f(as)h Fs(-p)p Ft(.)1110 569 y Fs(verbose)144 -b Ft(Same)30 b(as)h Fs(-v)p Ft(.)1110 729 y Fs(vi)384 -b Ft(Use)36 b(a)g Fs(vi)p Ft(-st)m(yle)g(line)g(editing)g(in)m -(terface.)58 b(This)35 b(also)h(a\013ects)1590 838 y(the)31 -b(editing)g(in)m(terface)h(used)d(for)h Fs(read)f(-e)p -Ft(.)1110 999 y Fs(xtrace)192 b Ft(Same)30 b(as)h Fs(-x)p -Ft(.)630 1159 y Fs(-p)384 b Ft(T)-8 b(urn)33 b(on)h(privileged)h(mo)s -(de.)51 b(In)34 b(this)g(mo)s(de,)h(the)f Fs($BASH_ENV)e -Ft(and)h Fs($ENV)1110 1268 y Ft(\014les)23 b(are)h(not)f(pro)s(cessed,) -h(shell)g(functions)e(are)i(not)f(inherited)g(from)f(the)i(en-)1110 -1378 y(vironmen)m(t,)h(and)e(the)g Fs(SHELLOPTS)p Ft(,)f -Fs(BASHOPTS)p Ft(,)h Fs(CDPATH)e Ft(and)i Fs(GLOBIGNORE)1110 -1487 y Ft(v)-5 b(ariables,)23 b(if)e(they)g(app)s(ear)f(in)g(the)h(en)m -(vironmen)m(t,)i(are)e(ignored.)38 b(If)20 b(the)h(shell)1110 -1597 y(is)37 b(started)h(with)f(the)g(e\013ectiv)m(e)j(user)d -(\(group\))g(id)g(not)g(equal)h(to)g(the)f(real)1110 -1707 y(user)h(\(group\))h(id,)i(and)d(the)h Fs(-p)f Ft(option)i(is)e -(not)i(supplied,)f(these)h(actions)1110 1816 y(are)32 -b(tak)m(en)i(and)d(the)h(e\013ectiv)m(e)j(user)c(id)h(is)g(set)h(to)f -(the)h(real)f(user)g(id.)45 b(If)32 b(the)1110 1926 y -Fs(-p)i Ft(option)h(is)g(supplied)f(at)h(startup,)h(the)f(e\013ectiv)m -(e)i(user)d(id)g(is)h(not)g(reset.)1110 2035 y(T)-8 b(urning)35 -b(this)i(option)g(o\013)g(causes)g(the)g(e\013ectiv)m(e)i(user)d(and)g -(group)g(ids)g(to)1110 2145 y(b)s(e)30 b(set)h(to)g(the)f(real)h(user)f -(and)g(group)g(ids.)630 2305 y Fs(-t)384 b Ft(Exit)31 -b(after)g(reading)f(and)g(executing)h(one)g(command.)630 -2465 y Fs(-u)384 b Ft(T)-8 b(reat)25 b(unset)e(v)-5 b(ariables)25 -b(and)e(parameters)h(other)h(than)e(the)h(sp)s(ecial)h(param-)1110 -2575 y(eters)35 b(`)p Fs(@)p Ft(')f(or)g(`)p Fs(*)p Ft(')h(as)f(an)g -(error)g(when)f(p)s(erforming)g(parameter)i(expansion.)1110 -2685 y(An)28 b(error)h(message)g(will)g(b)s(e)f(written)h(to)h(the)e -(standard)g(error,)h(and)f(a)h(non-)1110 2794 y(in)m(teractiv)m(e)k -(shell)e(will)g(exit.)630 2954 y Fs(-v)384 b Ft(Prin)m(t)30 -b(shell)h(input)e(lines)i(as)g(they)f(are)h(read.)630 -3114 y Fs(-x)384 b Ft(Prin)m(t)21 b(a)h(trace)h(of)f(simple)f -(commands,)i Fs(for)e Ft(commands,)i Fs(case)d Ft(commands,)1110 -3224 y Fs(select)29 b Ft(commands,)j(and)e(arithmetic)j -Fs(for)d Ft(commands)h(and)f(their)i(argu-)1110 3334 -y(men)m(ts)h(or)f(asso)s(ciated)i(w)m(ord)e(lists)h(after)g(they)f(are) -h(expanded)f(and)f(b)s(efore)1110 3443 y(they)i(are)g(executed.)49 +b(Reference)g(Man)m(ual)1110 299 y Fs(pipefail)96 b Ft(If)44 +b(set,)k(the)d(return)e(v)-5 b(alue)45 b(of)f(a)h(pip)s(eline)e(is)i +(the)f(v)-5 b(alue)45 b(of)1590 408 y(the)33 b(last)h(\(righ)m(tmost\)) +h(command)e(to)h(exit)g(with)f(a)g(non-zero)1590 518 +y(status,)28 b(or)f(zero)g(if)f(all)i(commands)e(in)g(the)h(pip)s +(eline)f(exit)i(suc-)1590 628 y(cessfully)-8 b(.)41 b(This)30 +b(option)h(is)f(disabled)g(b)m(y)h(default.)1110 792 +y Fs(posix)240 b Ft(Change)30 b(the)g(b)s(eha)m(vior)h(of)f(Bash)g +(where)g(the)g(default)h(op)s(era-)1590 902 y(tion)25 +b(di\013ers)f(from)g(the)h Fl(posix)f Ft(standard)f(to)i(matc)m(h)h +(the)f(stan-)1590 1011 y(dard)32 b(\(see)i(Section)g(6.11)h([Bash)e +(POSIX)f(Mo)s(de],)j(page)e(86\).)1590 1121 y(This)k(is)g(in)m(tended)g +(to)h(mak)m(e)g(Bash)g(b)s(eha)m(v)m(e)g(as)g(a)f(strict)h(su-)1590 +1230 y(p)s(erset)30 b(of)h(that)f(standard.)1110 1395 +y Fs(privileged)1590 1504 y Ft(Same)g(as)h Fs(-p)p Ft(.)1110 +1669 y Fs(verbose)144 b Ft(Same)30 b(as)h Fs(-v)p Ft(.)1110 +1833 y Fs(vi)384 b Ft(Use)36 b(a)g Fs(vi)p Ft(-st)m(yle)g(line)g +(editing)g(in)m(terface.)58 b(This)35 b(also)h(a\013ects)1590 +1943 y(the)31 b(editing)g(in)m(terface)h(used)d(for)h +Fs(read)f(-e)p Ft(.)1110 2107 y Fs(xtrace)192 b Ft(Same)30 +b(as)h Fs(-x)p Ft(.)630 2271 y Fs(-p)384 b Ft(T)-8 b(urn)33 +b(on)h(privileged)h(mo)s(de.)51 b(In)34 b(this)g(mo)s(de,)h(the)f +Fs($BASH_ENV)e Ft(and)h Fs($ENV)1110 2381 y Ft(\014les)23 +b(are)h(not)f(pro)s(cessed,)h(shell)g(functions)e(are)i(not)f +(inherited)g(from)f(the)i(en-)1110 2491 y(vironmen)m(t,)h(and)e(the)g +Fs(SHELLOPTS)p Ft(,)f Fs(BASHOPTS)p Ft(,)h Fs(CDPATH)e +Ft(and)i Fs(GLOBIGNORE)1110 2600 y Ft(v)-5 b(ariables,)23 +b(if)e(they)g(app)s(ear)f(in)g(the)h(en)m(vironmen)m(t,)i(are)e +(ignored.)38 b(If)20 b(the)h(shell)1110 2710 y(is)37 +b(started)h(with)f(the)g(e\013ectiv)m(e)j(user)d(\(group\))g(id)g(not)g +(equal)h(to)g(the)f(real)1110 2819 y(user)h(\(group\))h(id,)i(and)d +(the)h Fs(-p)f Ft(option)i(is)e(not)i(supplied,)f(these)h(actions)1110 +2929 y(are)32 b(tak)m(en)i(and)d(the)h(e\013ectiv)m(e)j(user)c(id)h(is) +g(set)h(to)f(the)h(real)f(user)g(id.)45 b(If)32 b(the)1110 +3039 y Fs(-p)i Ft(option)h(is)g(supplied)f(at)h(startup,)h(the)f +(e\013ectiv)m(e)i(user)d(id)g(is)h(not)g(reset.)1110 +3148 y(T)-8 b(urning)35 b(this)i(option)g(o\013)g(causes)g(the)g +(e\013ectiv)m(e)i(user)d(and)g(group)g(ids)g(to)1110 +3258 y(b)s(e)30 b(set)h(to)g(the)f(real)h(user)f(and)g(group)g(ids.)630 +3422 y Fs(-t)384 b Ft(Exit)31 b(after)g(reading)f(and)g(executing)h +(one)g(command.)630 3587 y Fs(-u)384 b Ft(T)-8 b(reat)25 +b(unset)e(v)-5 b(ariables)25 b(and)e(parameters)h(other)h(than)e(the)h +(sp)s(ecial)h(param-)1110 3696 y(eters)35 b(`)p Fs(@)p +Ft(')f(or)g(`)p Fs(*)p Ft(')h(as)f(an)g(error)g(when)f(p)s(erforming)g +(parameter)i(expansion.)1110 3806 y(An)28 b(error)h(message)g(will)g(b) +s(e)f(written)h(to)h(the)e(standard)g(error,)h(and)f(a)h(non-)1110 +3915 y(in)m(teractiv)m(e)k(shell)e(will)g(exit.)630 4080 +y Fs(-v)384 b Ft(Prin)m(t)30 b(shell)h(input)e(lines)i(as)g(they)f(are) +h(read.)630 4244 y Fs(-x)384 b Ft(Prin)m(t)21 b(a)h(trace)h(of)f +(simple)f(commands,)i Fs(for)e Ft(commands,)i Fs(case)d +Ft(commands,)1110 4354 y Fs(select)29 b Ft(commands,)j(and)e +(arithmetic)j Fs(for)d Ft(commands)h(and)f(their)i(argu-)1110 +4463 y(men)m(ts)h(or)f(asso)s(ciated)i(w)m(ord)e(lists)h(after)g(they)f +(are)h(expanded)f(and)f(b)s(efore)1110 4573 y(they)i(are)g(executed.)49 b(The)32 b(v)-5 b(alue)33 b(of)g(the)g Fs(PS4)f Ft(v)-5 -b(ariable)34 b(is)f(expanded)f(and)1110 3553 y(the)24 +b(ariable)34 b(is)f(expanded)f(and)1110 4682 y(the)24 b(resultan)m(t)h(v)-5 b(alue)24 b(is)g(prin)m(ted)g(b)s(efore)f(the)h -(command)g(and)f(its)i(expanded)1110 3662 y(argumen)m(ts.)630 -3823 y Fs(-B)384 b Ft(The)41 b(shell)g(will)g(p)s(erform)f(brace)h -(expansion)g(\(see)h(Section)g(3.5.1)g([Brace)1110 3932 +(command)g(and)f(its)i(expanded)1110 4792 y(argumen)m(ts.)630 +4956 y Fs(-B)384 b Ft(The)41 b(shell)g(will)g(p)s(erform)f(brace)h +(expansion)g(\(see)h(Section)g(3.5.1)g([Brace)1110 5066 y(Expansion],)30 b(page)h(19\).)42 b(This)30 b(option)h(is)f(on)g(b)m -(y)h(default.)630 4092 y Fs(-C)384 b Ft(Prev)m(en)m(t)25 +(y)h(default.)630 5230 y Fs(-C)384 b Ft(Prev)m(en)m(t)25 b(output)e(redirection)h(using)f(`)p Fs(>)p Ft(',)i(`)p Fs(>&)p Ft(',)g(and)e(`)p Fs(<>)p Ft(')g(from)h(o)m(v)m(erwriting)1110 -4202 y(existing)31 b(\014les.)630 4362 y Fs(-E)384 b -Ft(If)39 b(set,)j(an)m(y)e(trap)f(on)g Fs(ERR)g Ft(is)g(inherited)g(b)m -(y)g(shell)h(functions,)h(command)1110 4472 y(substitutions,)35 -b(and)e(commands)g(executed)i(in)f(a)g(subshell)f(en)m(vironmen)m(t.) -1110 4581 y(The)d Fs(ERR)f Ft(trap)i(is)f(normally)h(not)f(inherited)g -(in)g(suc)m(h)g(cases.)630 4741 y Fs(-H)384 b Ft(Enable)38 -b(`)p Fs(!)p Ft(')h(st)m(yle)h(history)e(substitution)g(\(see)h -(Section)h(9.3)f([History)g(In-)1110 4851 y(teraction],)g(page)d -(125\).)57 b(This)34 b(option)i(is)f(on)g(b)m(y)h(default)f(for)g(in)m -(teractiv)m(e)1110 4961 y(shells.)630 5121 y Fs(-P)384 -b Ft(If)43 b(set,)k(do)c(not)g(follo)m(w)h(sym)m(b)s(olic)g(links)e -(when)g(p)s(erforming)g(commands)1110 5230 y(suc)m(h)29 -b(as)h Fs(cd)f Ft(whic)m(h)g(c)m(hange)h(the)g(curren)m(t)f(directory) --8 b(.)42 b(The)28 b(ph)m(ysical)j(direc-)1110 5340 y(tory)j(is)g(used) -f(instead.)52 b(By)34 b(default,)h(Bash)f(follo)m(ws)h(the)f(logical)i -(c)m(hain)f(of)p eop end +5340 y(existing)31 b(\014les.)p eop end %%Page: 57 63 TeXDict begin 57 62 bop 150 -116 a Ft(Chapter)30 b(4:)41 -b(Shell)30 b(Builtin)h(Commands)2069 b(57)1110 299 y(directories)38 -b(when)d(p)s(erforming)h(commands)g(whic)m(h)g(c)m(hange)i(the)f -(curren)m(t)1110 408 y(directory)-8 b(.)1110 542 y(F)g(or)31 -b(example,)g(if)f(`)p Fs(/usr/sys)p Ft(')e(is)i(a)g(sym)m(b)s(olic)h -(link)f(to)g(`)p Fs(/usr/local/sys)p Ft(')1110 652 y(then:)1350 -786 y Fs($)47 b(cd)h(/usr/sys;)d(echo)i($PWD)1350 895 -y(/usr/sys)1350 1005 y($)g(cd)h(..;)f(pwd)1350 1114 y(/usr)1110 -1248 y Ft(If)30 b Fs(set)f(-P)h Ft(is)h(on,)f(then:)1350 -1382 y Fs($)47 b(cd)h(/usr/sys;)d(echo)i($PWD)1350 1491 -y(/usr/local/sys)1350 1601 y($)g(cd)h(..;)f(pwd)1350 -1711 y(/usr/local)630 1869 y(-T)384 b Ft(If)34 b(set,)j(an)m(y)e(trap)g -(on)g Fs(DEBUG)e Ft(and)i Fs(RETURN)e Ft(are)i(inherited)g(b)m(y)f -(shell)i(func-)1110 1978 y(tions,)k(command)d(substitutions,)h(and)f -(commands)g(executed)h(in)f(a)h(sub-)1110 2088 y(shell)33 -b(en)m(vironmen)m(t.)49 b(The)32 b Fs(DEBUG)g Ft(and)g -Fs(RETURN)f Ft(traps)h(are)i(normally)f(not)1110 2197 -y(inherited)d(in)g(suc)m(h)g(cases.)630 2355 y Fs(--)384 -b Ft(If)31 b(no)h(argumen)m(ts)f(follo)m(w)i(this)f(option,)g(then)f -(the)h(p)s(ositional)h(parameters)1110 2465 y(are)h(unset.)49 -b(Otherwise,)34 b(the)g(p)s(ositional)g(parameters)g(are)g(set)g(to)g -(the)g Fq(ar-)1110 2575 y(gumen)m(ts)t Ft(,)d(ev)m(en)g(if)f(some)h(of) -f(them)h(b)s(egin)f(with)g(a)g(`)p Fs(-)p Ft('.)630 2732 -y Fs(-)432 b Ft(Signal)45 b(the)g(end)f(of)h(options,)k(cause)c(all)h -(remaining)e Fq(argumen)m(ts)49 b Ft(to)d(b)s(e)1110 -2842 y(assigned)38 b(to)h(the)f(p)s(ositional)h(parameters.)65 -b(The)37 b(`)p Fs(-x)p Ft(')h(and)g(`)p Fs(-v)p Ft(')g(options)1110 -2952 y(are)25 b(turned)e(o\013.)40 b(If)24 b(there)h(are)g(no)f +b(Shell)30 b(Builtin)h(Commands)2069 b(57)630 299 y Fs(-E)384 +b Ft(If)39 b(set,)j(an)m(y)e(trap)f(on)g Fs(ERR)g Ft(is)g(inherited)g +(b)m(y)g(shell)h(functions,)h(command)1110 408 y(substitutions,)35 +b(and)e(commands)g(executed)i(in)f(a)g(subshell)f(en)m(vironmen)m(t.) +1110 518 y(The)d Fs(ERR)f Ft(trap)i(is)f(normally)h(not)f(inherited)g +(in)g(suc)m(h)g(cases.)630 670 y Fs(-H)384 b Ft(Enable)38 +b(`)p Fs(!)p Ft(')h(st)m(yle)h(history)e(substitution)g(\(see)h +(Section)h(9.3)f([History)g(In-)1110 780 y(teraction],)g(page)d(125\).) +57 b(This)34 b(option)i(is)f(on)g(b)m(y)h(default)f(for)g(in)m +(teractiv)m(e)1110 890 y(shells.)630 1042 y Fs(-P)384 +b Ft(If)43 b(set,)k(do)c(not)g(follo)m(w)h(sym)m(b)s(olic)g(links)e +(when)g(p)s(erforming)g(commands)1110 1152 y(suc)m(h)29 +b(as)h Fs(cd)f Ft(whic)m(h)g(c)m(hange)h(the)g(curren)m(t)f(directory) +-8 b(.)42 b(The)28 b(ph)m(ysical)j(direc-)1110 1261 y(tory)j(is)g(used) +f(instead.)52 b(By)34 b(default,)h(Bash)f(follo)m(ws)h(the)f(logical)i +(c)m(hain)f(of)1110 1371 y(directories)j(when)d(p)s(erforming)h +(commands)g(whic)m(h)g(c)m(hange)i(the)f(curren)m(t)1110 +1480 y(directory)-8 b(.)1110 1611 y(F)g(or)31 b(example,)g(if)f(`)p +Fs(/usr/sys)p Ft(')e(is)i(a)g(sym)m(b)s(olic)h(link)f(to)g(`)p +Fs(/usr/local/sys)p Ft(')1110 1721 y(then:)1350 1852 +y Fs($)47 b(cd)h(/usr/sys;)d(echo)i($PWD)1350 1962 y(/usr/sys)1350 +2071 y($)g(cd)h(..;)f(pwd)1350 2181 y(/usr)1110 2312 +y Ft(If)30 b Fs(set)f(-P)h Ft(is)h(on,)f(then:)1350 2443 +y Fs($)47 b(cd)h(/usr/sys;)d(echo)i($PWD)1350 2552 y(/usr/local/sys) +1350 2662 y($)g(cd)h(..;)f(pwd)1350 2771 y(/usr/local)630 +2924 y(-T)384 b Ft(If)34 b(set,)j(an)m(y)e(trap)g(on)g +Fs(DEBUG)e Ft(and)i Fs(RETURN)e Ft(are)i(inherited)g(b)m(y)f(shell)i +(func-)1110 3033 y(tions,)k(command)d(substitutions,)h(and)f(commands)g +(executed)h(in)f(a)h(sub-)1110 3143 y(shell)33 b(en)m(vironmen)m(t.)49 +b(The)32 b Fs(DEBUG)g Ft(and)g Fs(RETURN)f Ft(traps)h(are)i(normally)f +(not)1110 3253 y(inherited)d(in)g(suc)m(h)g(cases.)630 +3405 y Fs(--)384 b Ft(If)31 b(no)h(argumen)m(ts)f(follo)m(w)i(this)f +(option,)g(then)f(the)h(p)s(ositional)h(parameters)1110 +3515 y(are)h(unset.)49 b(Otherwise,)34 b(the)g(p)s(ositional)g +(parameters)g(are)g(set)g(to)g(the)g Fq(ar-)1110 3624 +y(gumen)m(ts)t Ft(,)d(ev)m(en)g(if)f(some)h(of)f(them)h(b)s(egin)f +(with)g(a)g(`)p Fs(-)p Ft('.)630 3777 y Fs(-)432 b Ft(Signal)45 +b(the)g(end)f(of)h(options,)k(cause)c(all)h(remaining)e +Fq(argumen)m(ts)49 b Ft(to)d(b)s(e)1110 3886 y(assigned)38 +b(to)h(the)f(p)s(ositional)h(parameters.)65 b(The)37 +b(`)p Fs(-x)p Ft(')h(and)g(`)p Fs(-v)p Ft(')g(options)1110 +3996 y(are)25 b(turned)e(o\013.)40 b(If)24 b(there)h(are)g(no)f (argumen)m(ts,)i(the)f(p)s(ositional)h(parameters)1110 -3061 y(remain)k(unc)m(hanged.)630 3219 y(Using)d(`)p +4105 y(remain)k(unc)m(hanged.)630 4258 y(Using)d(`)p Fs(+)p Ft(')h(rather)f(than)g(`)p Fs(-)p Ft(')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 -3329 y(also)36 b(b)s(e)f(used)f(up)s(on)g(in)m(v)m(o)s(cation)j(of)e +4367 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 3438 y(found)29 b(in)h Fs($-)p Ft(.)630 3572 +(b)s(e)630 4477 y(found)29 b(in)h Fs($-)p Ft(.)630 4608 y(The)43 b(remaining)h(N)f Fq(argumen)m(ts)48 b Ft(are)c(p)s(ositional) -g(parameters)g(and)f(are)h(assigned,)j(in)630 3682 y(order,)30 +g(parameters)g(and)f(are)h(assigned,)j(in)630 4717 y(order,)30 b(to)h Fs($1)p Ft(,)f Fs($2)p Ft(,)36 b(.)22 b(.)g(.)42 b Fs($N)p Ft(.)e(The)30 b(sp)s(ecial)h(parameter)g Fs(#)f -Ft(is)g(set)h(to)g(N.)630 3815 y(The)f(return)f(status)i(is)f(alw)m(a)m +Ft(is)g(set)h(to)g(N.)630 4848 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 4013 y Fj(4.3.2)63 b(The)41 b(Shopt)h(Builtin)150 -4160 y Ft(This)30 b(builtin)g(allo)m(ws)h(y)m(ou)g(to)g(c)m(hange)h +(supplied.)150 5041 y Fj(4.3.2)63 b(The)41 b(Shopt)h(Builtin)150 +5188 y Ft(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 -4318 y Fs(shopt)870 4452 y(shopt)46 b([-pqsu])g([-o])h([)p -Fi(optname)56 b Fs(...)o(])630 4586 y Ft(T)-8 b(oggle)47 -b(the)d(v)-5 b(alues)45 b(of)g(v)-5 b(ariables)45 b(con)m(trolling)i -(optional)f(shell)e(b)s(eha)m(vior.)84 b(With)45 b(no)630 -4695 y(options,)32 b(or)f(with)g(the)g(`)p Fs(-p)p Ft(')g(option,)h(a)g -(list)f(of)h(all)g(settable)g(options)g(is)f(displa)m(y)m(ed,)h(with) -630 4805 y(an)i(indication)i(of)f(whether)f(or)g(not)h(eac)m(h)h(is)e -(set.)54 b(The)34 b(`)p Fs(-p)p Ft(')h(option)g(causes)g(output)f(to) -630 4914 y(b)s(e)i(displa)m(y)m(ed)h(in)e(a)i(form)f(that)h(ma)m(y)g(b) -s(e)e(reused)h(as)g(input.)58 b(Other)36 b(options)g(ha)m(v)m(e)i(the) -630 5024 y(follo)m(wing)32 b(meanings:)630 5182 y Fs(-s)384 -b Ft(Enable)30 b(\(set\))i(eac)m(h)f Fq(optname)5 b Ft(.)630 -5340 y Fs(-u)384 b Ft(Disable)31 b(\(unset\))g(eac)m(h)h -Fq(optname)5 b Ft(.)p eop end +5340 y Fs(shopt)p eop end %%Page: 58 64 TeXDict begin 58 63 bop 150 -116 a Ft(58)2572 b(Bash)31 -b(Reference)g(Man)m(ual)630 299 y Fs(-q)384 b Ft(Suppresses)28 +b(Reference)g(Man)m(ual)870 299 y Fs(shopt)46 b([-pqsu])g([-o])h([)p +Fi(optname)56 b Fs(...)o(])630 427 y Ft(T)-8 b(oggle)47 +b(the)d(v)-5 b(alues)45 b(of)g(v)-5 b(ariables)45 b(con)m(trolling)i +(optional)f(shell)e(b)s(eha)m(vior.)84 b(With)45 b(no)630 +536 y(options,)32 b(or)f(with)g(the)g(`)p Fs(-p)p Ft(')g(option,)h(a)g +(list)f(of)h(all)g(settable)g(options)g(is)f(displa)m(y)m(ed,)h(with) +630 646 y(an)i(indication)i(of)f(whether)f(or)g(not)h(eac)m(h)h(is)e +(set.)54 b(The)34 b(`)p Fs(-p)p Ft(')h(option)g(causes)g(output)f(to) +630 756 y(b)s(e)i(displa)m(y)m(ed)h(in)e(a)i(form)f(that)h(ma)m(y)g(b)s +(e)e(reused)h(as)g(input.)58 b(Other)36 b(options)g(ha)m(v)m(e)i(the) +630 865 y(follo)m(wing)32 b(meanings:)630 1011 y Fs(-s)384 +b Ft(Enable)30 b(\(set\))i(eac)m(h)f Fq(optname)5 b Ft(.)630 +1157 y Fs(-u)384 b Ft(Disable)31 b(\(unset\))g(eac)m(h)h +Fq(optname)5 b Ft(.)630 1303 y Fs(-q)384 b Ft(Suppresses)28 b(normal)h(output;)h(the)g(return)e(status)i(indicates)h(whether)e(the) -1110 408 y Fq(optname)37 b Ft(is)31 b(set)h(or)f(unset.)43 +1110 1413 y Fq(optname)37 b Ft(is)31 b(set)h(or)f(unset.)43 b(If)31 b(m)m(ultiple)h Fq(optname)37 b Ft(argumen)m(ts)31 -b(are)h(giv)m(en)1110 518 y(with)43 b(`)p Fs(-q)p Ft(',)j(the)d(return) -f(status)h(is)g(zero)h(if)f(all)g Fq(optnames)k Ft(are)d(enabled;)1110 -628 y(non-zero)31 b(otherwise.)630 775 y Fs(-o)384 b -Ft(Restricts)28 b(the)g(v)-5 b(alues)28 b(of)f Fq(optname)33 -b Ft(to)c(b)s(e)d(those)i(de\014ned)f(for)g(the)g(`)p -Fs(-o)p Ft(')h(op-)1110 885 y(tion)23 b(to)h(the)f Fs(set)f -Ft(builtin)h(\(see)g(Section)h(4.3.1)h([The)d(Set)i(Builtin],)h(page)e -(53\).)630 1033 y(If)29 b(either)i(`)p Fs(-s)p Ft(')f(or)g(`)p -Fs(-u)p Ft(')f(is)h(used)g(with)f(no)h Fq(optname)35 -b Ft(argumen)m(ts,)c(the)f(displa)m(y)g(is)g(limited)630 -1142 y(to)h(those)g(options)g(whic)m(h)f(are)h(set)f(or)h(unset,)f -(resp)s(ectiv)m(ely)-8 b(.)630 1271 y(Unless)30 b(otherwise)h(noted,)g +b(are)h(giv)m(en)1110 1523 y(with)43 b(`)p Fs(-q)p Ft(',)j(the)d +(return)f(status)h(is)g(zero)h(if)f(all)g Fq(optnames)k +Ft(are)d(enabled;)1110 1632 y(non-zero)31 b(otherwise.)630 +1778 y Fs(-o)384 b Ft(Restricts)28 b(the)g(v)-5 b(alues)28 +b(of)f Fq(optname)33 b Ft(to)c(b)s(e)d(those)i(de\014ned)f(for)g(the)g +(`)p Fs(-o)p Ft(')h(op-)1110 1888 y(tion)23 b(to)h(the)f +Fs(set)f Ft(builtin)h(\(see)g(Section)h(4.3.1)h([The)d(Set)i(Builtin],) +h(page)e(54\).)630 2034 y(If)29 b(either)i(`)p Fs(-s)p +Ft(')f(or)g(`)p Fs(-u)p Ft(')f(is)h(used)g(with)f(no)h +Fq(optname)35 b Ft(argumen)m(ts,)c(the)f(displa)m(y)g(is)g(limited)630 +2144 y(to)h(those)g(options)g(whic)m(h)f(are)h(set)f(or)h(unset,)f +(resp)s(ectiv)m(ely)-8 b(.)630 2271 y(Unless)30 b(otherwise)h(noted,)g (the)g Fs(shopt)d Ft(options)j(are)g(disabled)f(\(o\013)7 -b(\))32 b(b)m(y)e(default.)630 1400 y(The)d(return)f(status)i(when)f +b(\))32 b(b)m(y)e(default.)630 2399 y(The)d(return)f(status)i(when)f (listing)h(options)g(is)f(zero)i(if)e(all)i Fq(optnames)i -Ft(are)d(enabled,)g(non-)630 1509 y(zero)40 b(otherwise.)66 +Ft(are)d(enabled,)g(non-)630 2509 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 1619 y(unless)30 b(an)g Fq(optname)36 +(status)h(is)g(zero)630 2619 y(unless)30 b(an)g Fq(optname)36 b Ft(is)30 b(not)h(a)g(v)-5 b(alid)30 b(shell)h(option.)630 -1747 y(The)f(list)h(of)f Fs(shopt)f Ft(options)i(is:)630 -1895 y Fs(autocd)192 b Ft(If)27 b(set,)h(a)g(command)f(name)g(that)h +2746 y(The)f(list)h(of)f Fs(shopt)f Ft(options)i(is:)630 +2892 y Fs(autocd)192 b Ft(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 -2005 y(as)j(if)f(it)h(w)m(ere)f(the)h(argumen)m(t)g(to)g(the)f +3002 y(as)j(if)f(it)h(w)m(ere)f(the)h(argumen)m(t)g(to)g(the)f Fs(cd)g Ft(command.)40 b(This)29 b(option)g(is)h(only)1110 -2114 y(used)g(b)m(y)g(in)m(teractiv)m(e)j(shells.)630 -2262 y Fs(cdable_vars)1110 2372 y Ft(If)h(this)h(is)g(set,)i(an)e +3112 y(used)g(b)m(y)g(in)m(teractiv)m(e)j(shells.)630 +3258 y Fs(cdable_vars)1110 3367 y Ft(If)h(this)h(is)g(set,)i(an)e (argumen)m(t)g(to)h(the)f Fs(cd)f Ft(builtin)h(command)f(that)i(is)f -(not)1110 2481 y(a)c(directory)g(is)g(assumed)f(to)h(b)s(e)f(the)h +(not)1110 3477 y(a)c(directory)g(is)g(assumed)f(to)h(b)s(e)f(the)h (name)f(of)h(a)g(v)-5 b(ariable)31 b(whose)g(v)-5 b(alue)31 -b(is)1110 2591 y(the)g(directory)f(to)i(c)m(hange)f(to.)630 -2738 y Fs(cdspell)144 b Ft(If)27 b(set,)h(minor)f(errors)f(in)h(the)g +b(is)1110 3587 y(the)g(directory)f(to)i(c)m(hange)f(to.)630 +3733 y Fs(cdspell)144 b Ft(If)27 b(set,)h(minor)f(errors)f(in)h(the)g (sp)s(elling)h(of)f(a)g(directory)h(comp)s(onen)m(t)f(in)g(a)h -Fs(cd)1110 2848 y Ft(command)i(will)h(b)s(e)f(corrected.)43 +Fs(cd)1110 3842 y Ft(command)i(will)h(b)s(e)f(corrected.)43 b(The)30 b(errors)g(c)m(hec)m(k)m(ed)j(for)d(are)h(transp)s(osed)1110 -2958 y(c)m(haracters,)46 b(a)c(missing)f(c)m(haracter,)47 +3952 y(c)m(haracters,)46 b(a)c(missing)f(c)m(haracter,)47 b(and)40 b(a)i(c)m(haracter)h(to)s(o)g(man)m(y)-8 b(.)74 -b(If)42 b(a)1110 3067 y(correction)25 b(is)e(found,)g(the)h(corrected)g -(path)f(is)g(prin)m(ted,)h(and)f(the)g(command)1110 3177 +b(If)42 b(a)1110 4061 y(correction)25 b(is)e(found,)g(the)h(corrected)g +(path)f(is)g(prin)m(ted,)h(and)f(the)g(command)1110 4171 y(pro)s(ceeds.)40 b(This)30 b(option)h(is)f(only)h(used)e(b)m(y)h(in)m -(teractiv)m(e)k(shells.)630 3324 y Fs(checkhash)1110 -3434 y Ft(If)29 b(this)h(is)g(set,)g(Bash)g(c)m(hec)m(ks)h(that)g(a)f -(command)f(found)g(in)g(the)h(hash)f(table)1110 3544 +(teractiv)m(e)k(shells.)630 4317 y Fs(checkhash)1110 +4427 y Ft(If)29 b(this)h(is)g(set,)g(Bash)g(c)m(hec)m(ks)h(that)g(a)f +(command)f(found)g(in)g(the)h(hash)f(table)1110 4536 y(exists)k(b)s(efore)f(trying)h(to)h(execute)g(it.)48 -b(If)32 b(a)h(hashed)e(command)i(no)f(longer)1110 3653 +b(If)32 b(a)h(hashed)e(command)i(no)f(longer)1110 4646 y(exists,)f(a)g(normal)f(path)g(searc)m(h)h(is)g(p)s(erformed.)630 -3801 y Fs(checkjobs)1110 3911 y Ft(If)d(set,)i(Bash)e(lists)h(the)g +4792 y Fs(checkjobs)1110 4902 y Ft(If)d(set,)i(Bash)e(lists)h(the)g (status)g(of)f(an)m(y)h(stopp)s(ed)f(and)g(running)e(jobs)i(b)s(efore) -1110 4020 y(exiting)42 b(an)f(in)m(teractiv)m(e)j(shell.)72 +1110 5011 y(exiting)42 b(an)f(in)m(teractiv)m(e)j(shell.)72 b(If)41 b(an)m(y)g(jobs)f(are)i(running,)g(this)f(causes)1110 -4130 y(the)30 b(exit)g(to)g(b)s(e)f(deferred)g(un)m(til)h(a)f(second)h -(exit)g(is)g(attempted)h(without)e(an)1110 4239 y(in)m(terv)m(ening)j +5121 y(the)30 b(exit)g(to)g(b)s(e)f(deferred)g(un)m(til)h(a)f(second)h +(exit)g(is)g(attempted)h(without)e(an)1110 5230 y(in)m(terv)m(ening)j (command)e(\(see)h(Chapter)f(7)h([Job)f(Con)m(trol],)i(page)f(91\).)42 -b(The)1110 4349 y(shell)31 b(alw)m(a)m(ys)g(p)s(ostp)s(ones)f(exiting)h -(if)g(an)m(y)f(jobs)g(are)h(stopp)s(ed.)630 4497 y Fs(checkwinsize)1110 -4606 y Ft(If)41 b(set,)k(Bash)c(c)m(hec)m(ks)i(the)f(windo)m(w)e(size)j -(after)f(eac)m(h)g(command)f(and,)j(if)1110 4716 y(necessary)-8 -b(,)31 b(up)s(dates)f(the)g(v)-5 b(alues)31 b(of)g Fs(LINES)e -Ft(and)g Fs(COLUMNS)p Ft(.)630 4864 y Fs(cmdhist)144 -b Ft(If)33 b(set,)j(Bash)e(attempts)h(to)g(sa)m(v)m(e)g(all)g(lines)f -(of)g(a)h(m)m(ultiple-line)g(command)1110 4973 y(in)c(the)g(same)g -(history)g(en)m(try)-8 b(.)42 b(This)30 b(allo)m(ws)i(easy)g -(re-editing)g(of)f(m)m(ulti-line)1110 5083 y(commands.)630 -5230 y Fs(compat31)96 b Ft(If)27 b(set,)i(Bash)e(c)m(hanges)i(its)f(b)s -(eha)m(vior)f(to)i(that)f(of)f(v)m(ersion)h(3.1)h(with)e(resp)s(ect) -1110 5340 y(to)k(quoted)g(argumen)m(ts)f(to)h(the)g(conditional)h -(command's)e(=)p Fs(~)g Ft(op)s(erator.)p eop end +b(The)1110 5340 y(shell)31 b(alw)m(a)m(ys)g(p)s(ostp)s(ones)f(exiting)h +(if)g(an)m(y)f(jobs)g(are)h(stopp)s(ed.)p eop end %%Page: 59 65 TeXDict begin 59 64 bop 150 -116 a Ft(Chapter)30 b(4:)41 -b(Shell)30 b(Builtin)h(Commands)2069 b(59)630 299 y Fs(compat32)96 -b Ft(If)27 b(set,)i(Bash)e(c)m(hanges)i(its)f(b)s(eha)m(vior)f(to)i -(that)f(of)f(v)m(ersion)h(3.2)h(with)e(resp)s(ect)1110 -408 y(to)22 b(lo)s(cale-sp)s(eci\014c)h(string)e(comparison)g(when)f -(using)g(the)i(conditional)g(com-)1110 518 y(mand's)30 -b Fs(<)g Ft(and)f Fs(>)h Ft(op)s(erators.)630 697 y Fs(compat40)96 -b Ft(If)27 b(set,)i(Bash)e(c)m(hanges)i(its)f(b)s(eha)m(vior)f(to)i -(that)f(of)f(v)m(ersion)h(4.0)h(with)e(resp)s(ect)1110 -806 y(to)22 b(lo)s(cale-sp)s(eci\014c)h(string)e(comparison)g(when)f -(using)g(the)i(conditional)g(com-)1110 916 y(mand's)j -Fs(<)g Ft(and)g Fs(>)g Ft(op)s(erators)h(and)f(the)g(e\013ect)i(of)f -(in)m(terrupting)f(a)h(command)1110 1026 y(list.)630 -1204 y Fs(compat41)96 b Ft(If)27 b(set,)i(Bash,)g(when)e(in)g(p)s(osix) -g(mo)s(de,)h(treats)h(a)f(single)g(quote)h(in)e(a)h(double-)1110 -1314 y(quoted)46 b(parameter)h(expansion)f(as)g(a)h(sp)s(ecial)f(c)m -(haracter.)90 b(The)45 b(single)1110 1424 y(quotes)34 -b(m)m(ust)g(matc)m(h)h(\(an)f(ev)m(en)h(n)m(um)m(b)s(er\))e(and)g(the)h -(c)m(haracters)h(b)s(et)m(w)m(een)1110 1533 y(the)40 -b(single)g(quotes)g(are)g(considered)g(quoted.)69 b(This)38 -b(is)i(the)g(b)s(eha)m(vior)g(of)1110 1643 y Fl(posix)f -Ft(mo)s(de)g(through)g(v)m(ersion)h(4.1.)69 b(The)39 -b(default)g(Bash)h(b)s(eha)m(vior)g(re-)1110 1752 y(mains)30 -b(as)h(in)f(previous)g(v)m(ersions.)630 1931 y Fs(dirspell)96 -b Ft(If)26 b(set,)i(Bash)f(attempts)g(sp)s(elling)g(correction)g(on)g -(directory)g(names)f(during)1110 2041 y(w)m(ord)36 b(completion)h(if)f -(the)g(directory)g(name)g(initially)h(supplied)e(do)s(es)h(not)1110 -2150 y(exist.)630 2329 y Fs(dotglob)144 b Ft(If)27 b(set,)i(Bash)f -(includes)g(\014lenames)g(b)s(eginning)f(with)g(a)h(`.')41 -b(in)27 b(the)h(results)g(of)1110 2439 y(\014lename)j(expansion.)630 -2618 y Fs(execfail)96 b Ft(If)24 b(this)h(is)f(set,)j(a)e(non-in)m +b(Shell)30 b(Builtin)h(Commands)2069 b(59)630 299 y Fs(checkwinsize) +1110 408 y Ft(If)41 b(set,)k(Bash)c(c)m(hec)m(ks)i(the)f(windo)m(w)e +(size)j(after)f(eac)m(h)g(command)f(and,)j(if)1110 518 +y(necessary)-8 b(,)31 b(up)s(dates)f(the)g(v)-5 b(alues)31 +b(of)g Fs(LINES)e Ft(and)g Fs(COLUMNS)p Ft(.)630 675 +y Fs(cmdhist)144 b Ft(If)33 b(set,)j(Bash)e(attempts)h(to)g(sa)m(v)m(e) +g(all)g(lines)f(of)g(a)h(m)m(ultiple-line)g(command)1110 +785 y(in)c(the)g(same)g(history)g(en)m(try)-8 b(.)42 +b(This)30 b(allo)m(ws)i(easy)g(re-editing)g(of)f(m)m(ulti-line)1110 +894 y(commands.)630 1052 y Fs(compat31)96 b Ft(If)27 +b(set,)i(Bash)e(c)m(hanges)i(its)f(b)s(eha)m(vior)f(to)i(that)f(of)f(v) +m(ersion)h(3.1)h(with)e(resp)s(ect)1110 1161 y(to)k(quoted)g(argumen)m +(ts)f(to)h(the)g(conditional)h(command's)e(=)p Fs(~)g +Ft(op)s(erator.)630 1319 y Fs(compat32)96 b Ft(If)27 +b(set,)i(Bash)e(c)m(hanges)i(its)f(b)s(eha)m(vior)f(to)i(that)f(of)f(v) +m(ersion)h(3.2)h(with)e(resp)s(ect)1110 1428 y(to)22 +b(lo)s(cale-sp)s(eci\014c)h(string)e(comparison)g(when)f(using)g(the)i +(conditional)g(com-)1110 1538 y(mand's)30 b Fs(<)g Ft(and)f +Fs(>)h Ft(op)s(erators.)630 1695 y Fs(compat40)96 b Ft(If)27 +b(set,)i(Bash)e(c)m(hanges)i(its)f(b)s(eha)m(vior)f(to)i(that)f(of)f(v) +m(ersion)h(4.0)h(with)e(resp)s(ect)1110 1805 y(to)22 +b(lo)s(cale-sp)s(eci\014c)h(string)e(comparison)g(when)f(using)g(the)i +(conditional)g(com-)1110 1914 y(mand's)j Fs(<)g Ft(and)g +Fs(>)g Ft(op)s(erators)h(and)f(the)g(e\013ect)i(of)f(in)m(terrupting)f +(a)h(command)1110 2024 y(list.)630 2181 y Fs(compat41)96 +b Ft(If)27 b(set,)i(Bash,)g(when)e(in)g(p)s(osix)g(mo)s(de,)h(treats)h +(a)f(single)g(quote)h(in)e(a)h(double-)1110 2291 y(quoted)46 +b(parameter)h(expansion)f(as)g(a)h(sp)s(ecial)f(c)m(haracter.)90 +b(The)45 b(single)1110 2400 y(quotes)34 b(m)m(ust)g(matc)m(h)h(\(an)f +(ev)m(en)h(n)m(um)m(b)s(er\))e(and)g(the)h(c)m(haracters)h(b)s(et)m(w)m +(een)1110 2510 y(the)40 b(single)g(quotes)g(are)g(considered)g(quoted.) +69 b(This)38 b(is)i(the)g(b)s(eha)m(vior)g(of)1110 2619 +y Fl(posix)f Ft(mo)s(de)g(through)g(v)m(ersion)h(4.1.)69 +b(The)39 b(default)g(Bash)h(b)s(eha)m(vior)g(re-)1110 +2729 y(mains)30 b(as)h(in)f(previous)g(v)m(ersions.)630 +2886 y Fs(dirspell)96 b Ft(If)26 b(set,)i(Bash)f(attempts)g(sp)s +(elling)g(correction)g(on)g(directory)g(names)f(during)1110 +2996 y(w)m(ord)36 b(completion)h(if)f(the)g(directory)g(name)g +(initially)h(supplied)e(do)s(es)h(not)1110 3105 y(exist.)630 +3263 y Fs(dotglob)144 b Ft(If)27 b(set,)i(Bash)f(includes)g +(\014lenames)g(b)s(eginning)f(with)g(a)h(`.')41 b(in)27 +b(the)h(results)g(of)1110 3372 y(\014lename)j(expansion.)630 +3529 y Fs(execfail)96 b Ft(If)24 b(this)h(is)f(set,)j(a)e(non-in)m (teractiv)m(e)i(shell)e(will)f(not)h(exit)h(if)e(it)h(cannot)h(execute) -1110 2727 y(the)i(\014le)g(sp)s(eci\014ed)g(as)g(an)g(argumen)m(t)g(to) +1110 3639 y(the)i(\014le)g(sp)s(eci\014ed)g(as)g(an)g(argumen)m(t)g(to) h(the)f Fs(exec)f Ft(builtin)h(command.)39 b(An)1110 -2837 y(in)m(teractiv)m(e)33 b(shell)e(do)s(es)f(not)g(exit)i(if)e -Fs(exec)f Ft(fails.)630 3016 y Fs(expand_aliases)1110 -3125 y Ft(If)j(set,)h(aliases)g(are)g(expanded)e(as)h(describ)s(ed)f(b) -s(elo)m(w)h(under)f(Aliases,)i(Sec-)1110 3235 y(tion)38 +3749 y(in)m(teractiv)m(e)33 b(shell)e(do)s(es)f(not)g(exit)i(if)e +Fs(exec)f Ft(fails.)630 3906 y Fs(expand_aliases)1110 +4015 y Ft(If)j(set,)h(aliases)g(are)g(expanded)e(as)h(describ)s(ed)f(b) +s(elo)m(w)h(under)f(Aliases,)i(Sec-)1110 4125 y(tion)38 b(6.6)h([Aliases],)j(page)d(81.)64 b(This)37 b(option)h(is)g(enabled)g -(b)m(y)g(default)g(for)1110 3344 y(in)m(teractiv)m(e)33 -b(shells.)630 3523 y Fs(extdebug)96 b Ft(If)30 b(set,)h(b)s(eha)m(vior) +(b)m(y)g(default)g(for)1110 4235 y(in)m(teractiv)m(e)33 +b(shells.)630 4392 y Fs(extdebug)96 b Ft(If)30 b(set,)h(b)s(eha)m(vior) g(in)m(tended)f(for)g(use)g(b)m(y)g(debuggers)g(is)h(enabled:)1159 -3667 y(1.)61 b(The)32 b(`)p Fs(-F)p Ft(')g(option)h(to)g(the)g +4525 y(1.)61 b(The)32 b(`)p Fs(-F)p Ft(')g(option)h(to)g(the)g Fs(declare)d Ft(builtin)i(\(see)i(Section)f(4.2)h([Bash)1290 -3777 y(Builtins],)29 b(page)g(43\))g(displa)m(ys)f(the)g(source)h -(\014le)f(name)g(and)f(line)h(n)m(um-)1290 3886 y(b)s(er)h(corresp)s +4635 y(Builtins],)29 b(page)g(43\))g(displa)m(ys)f(the)g(source)h +(\014le)f(name)g(and)f(line)h(n)m(um-)1290 4744 y(b)s(er)h(corresp)s (onding)g(to)i(eac)m(h)g(function)f(name)g(supplied)f(as)i(an)f(argu-) -1290 3996 y(men)m(t.)1159 4140 y(2.)61 b(If)20 b(the)h(command)g(run)e +1290 4854 y(men)m(t.)1159 4987 y(2.)61 b(If)20 b(the)h(command)g(run)e (b)m(y)i(the)f Fs(DEBUG)g Ft(trap)g(returns)g(a)h(non-zero)g(v)-5 -b(alue,)1290 4250 y(the)31 b(next)f(command)g(is)h(skipp)s(ed)e(and)g -(not)i(executed.)1159 4394 y(3.)61 b(If)37 b(the)g(command)g(run)f(b)m +b(alue,)1290 5097 y(the)31 b(next)f(command)g(is)h(skipp)s(ed)e(and)g +(not)i(executed.)1159 5230 y(3.)61 b(If)37 b(the)g(command)g(run)f(b)m (y)i(the)f Fs(DEBUG)f Ft(trap)h(returns)f(a)i(v)-5 b(alue)38 -b(of)f(2,)1290 4504 y(and)c(the)g(shell)h(is)f(executing)i(in)e(a)h -(subroutine)e(\(a)i(shell)g(function)f(or)1290 4613 y(a)h(shell)h -(script)f(executed)h(b)m(y)f(the)g Fs(.)g Ft(or)g Fs(source)e -Ft(builtins\),)j(a)g(call)g(to)1290 4723 y Fs(return)29 -b Ft(is)h(sim)m(ulated.)1159 4867 y(4.)61 b Fs(BASH_ARGC)34 -b Ft(and)i Fs(BASH_ARGV)e Ft(are)j(up)s(dated)e(as)h(describ)s(ed)g(in) -g(their)1290 4977 y(descriptions)30 b(\(see)i(Section)f(5.2)g([Bash)g -(V)-8 b(ariables],)32 b(page)f(63\).)1159 5121 y(5.)61 -b(F)-8 b(unction)57 b(tracing)g(is)g(enabled:)93 b(command)56 -b(substitution,)63 b(shell)1290 5230 y(functions,)30 -b(and)f(subshells)g(in)m(v)m(ok)m(ed)j(with)d Fs(\()h -Fi(command)39 b Fs(\))30 b Ft(inherit)g(the)1290 5340 -y Fs(DEBUG)f Ft(and)h Fs(RETURN)e Ft(traps.)p eop end +b(of)f(2,)1290 5340 y(and)c(the)g(shell)h(is)f(executing)i(in)e(a)h +(subroutine)e(\(a)i(shell)g(function)f(or)p eop end %%Page: 60 66 TeXDict begin 60 65 bop 150 -116 a Ft(60)2572 b(Bash)31 -b(Reference)g(Man)m(ual)1159 299 y(6.)61 b(Error)41 b(tracing)i(is)f -(enabled:)63 b(command)42 b(substitution,)i(shell)f(func-)1290 -408 y(tions,)30 b(and)f(subshells)g(in)m(v)m(ok)m(ed)i(with)e +b(Reference)g(Man)m(ual)1290 299 y(a)j(shell)h(script)f(executed)h(b)m +(y)f(the)g Fs(.)g Ft(or)g Fs(source)e Ft(builtins\),)j(a)g(call)g(to) +1290 408 y Fs(return)29 b Ft(is)h(sim)m(ulated.)1159 +544 y(4.)61 b Fs(BASH_ARGC)34 b Ft(and)i Fs(BASH_ARGV)e +Ft(are)j(up)s(dated)e(as)h(describ)s(ed)g(in)g(their)1290 +654 y(descriptions)30 b(\(see)i(Section)f(5.2)g([Bash)g(V)-8 +b(ariables],)32 b(page)f(63\).)1159 789 y(5.)61 b(F)-8 +b(unction)57 b(tracing)g(is)g(enabled:)93 b(command)56 +b(substitution,)63 b(shell)1290 899 y(functions,)30 b(and)f(subshells)g +(in)m(v)m(ok)m(ed)j(with)d Fs(\()h Fi(command)39 b Fs(\))30 +b Ft(inherit)g(the)1290 1009 y Fs(DEBUG)f Ft(and)h Fs(RETURN)e +Ft(traps.)1159 1144 y(6.)61 b(Error)41 b(tracing)i(is)f(enabled:)63 +b(command)42 b(substitution,)i(shell)f(func-)1290 1254 +y(tions,)30 b(and)f(subshells)g(in)m(v)m(ok)m(ed)i(with)e Fs(\()h Fi(command)39 b Fs(\))29 b Ft(inherit)g(the)h -Fs(ERR)1290 518 y Ft(trap.)630 667 y Fs(extglob)144 b -Ft(If)26 b(set,)i(the)f(extended)f(pattern)h(matc)m(hing)g(features)g -(describ)s(ed)e(ab)s(o)m(v)m(e)j(\(see)1110 777 y(Section)j(3.5.8.1)i +Fs(ERR)1290 1363 y Ft(trap.)630 1525 y Fs(extglob)144 +b Ft(If)26 b(set,)i(the)f(extended)f(pattern)h(matc)m(hing)g(features)g +(describ)s(ed)e(ab)s(o)m(v)m(e)j(\(see)1110 1635 y(Section)j(3.5.8.1)i ([P)m(attern)f(Matc)m(hing],)g(page)f(26\))h(are)f(enabled.)630 -927 y Fs(extquote)96 b Ft(If)49 b(set,)54 b Fs($')p Fi(string)11 -b Fs(')46 b Ft(and)j Fs($")p Fi(string)11 b Fs(")46 b -Ft(quoting)k(is)f(p)s(erformed)e(within)1110 1036 y Fs(${)p -Fi(parameter)11 b Fs(})30 b Ft(expansions)j(enclosed)h(in)g(double)f -(quotes.)51 b(This)32 b(option)1110 1146 y(is)e(enabled)h(b)m(y)f -(default.)630 1295 y Fs(failglob)96 b Ft(If)36 b(set,)j(patterns)d -(whic)m(h)g(fail)h(to)h(matc)m(h)f(\014lenames)f(during)g(\014lename)g -(ex-)1110 1405 y(pansion)30 b(result)g(in)g(an)g(expansion)h(error.)630 -1554 y Fs(force_fignore)1110 1664 y Ft(If)43 b(set,)k(the)d(su\016xes)f -(sp)s(eci\014ed)f(b)m(y)i(the)f Fs(FIGNORE)f Ft(shell)h(v)-5 -b(ariable)44 b(cause)1110 1773 y(w)m(ords)31 b(to)h(b)s(e)f(ignored)h -(when)f(p)s(erforming)f(w)m(ord)h(completion)i(ev)m(en)f(if)g(the)1110 -1883 y(ignored)37 b(w)m(ords)g(are)g(the)h(only)f(p)s(ossible)g -(completions.)62 b(See)37 b(Section)h(5.2)1110 1993 y([Bash)24 -b(V)-8 b(ariables],)27 b(page)e(63,)h(for)d(a)h(description)g(of)g -Fs(FIGNORE)p Ft(.)37 b(This)22 b(option)1110 2102 y(is)30 -b(enabled)h(b)m(y)f(default.)630 2252 y Fs(globstar)96 +1797 y Fs(extquote)96 b Ft(If)49 b(set,)54 b Fs($')p +Fi(string)11 b Fs(')46 b Ft(and)j Fs($")p Fi(string)11 +b Fs(")46 b Ft(quoting)k(is)f(p)s(erformed)e(within)1110 +1906 y Fs(${)p Fi(parameter)11 b Fs(})30 b Ft(expansions)j(enclosed)h +(in)g(double)f(quotes.)51 b(This)32 b(option)1110 2016 +y(is)e(enabled)h(b)m(y)f(default.)630 2178 y Fs(failglob)96 +b Ft(If)36 b(set,)j(patterns)d(whic)m(h)g(fail)h(to)h(matc)m(h)f +(\014lenames)f(during)g(\014lename)g(ex-)1110 2287 y(pansion)30 +b(result)g(in)g(an)g(expansion)h(error.)630 2449 y Fs(force_fignore) +1110 2559 y Ft(If)43 b(set,)k(the)d(su\016xes)f(sp)s(eci\014ed)f(b)m(y) +i(the)f Fs(FIGNORE)f Ft(shell)h(v)-5 b(ariable)44 b(cause)1110 +2668 y(w)m(ords)31 b(to)h(b)s(e)f(ignored)h(when)f(p)s(erforming)f(w)m +(ord)h(completion)i(ev)m(en)f(if)g(the)1110 2778 y(ignored)37 +b(w)m(ords)g(are)g(the)h(only)f(p)s(ossible)g(completions.)62 +b(See)37 b(Section)h(5.2)1110 2887 y([Bash)24 b(V)-8 +b(ariables],)27 b(page)e(63,)h(for)d(a)h(description)g(of)g +Fs(FIGNORE)p Ft(.)37 b(This)22 b(option)1110 2997 y(is)30 +b(enabled)h(b)m(y)f(default.)630 3159 y Fs(globstar)96 b Ft(If)38 b(set,)j(the)e(pattern)f(`)p Fs(**)p Ft(')h(used)e(in)i(a)f -(\014lename)h(expansion)f(con)m(text)j(will)1110 2361 +(\014lename)h(expansion)f(con)m(text)j(will)1110 3268 y(matc)m(h)f(a)g(\014les)f(and)f(zero)i(or)g(more)f(directories)h(and)f -(sub)s(directories.)66 b(If)1110 2471 y(the)30 b(pattern)g(is)g(follo)m +(sub)s(directories.)66 b(If)1110 3378 y(the)30 b(pattern)g(is)g(follo)m (w)m(ed)i(b)m(y)d(a)i(`)p Fs(/)p Ft(',)f(only)g(directories)h(and)f -(sub)s(directories)1110 2580 y(matc)m(h.)630 2730 y Fs(gnu_errfmt)1110 -2839 y Ft(If)35 b(set,)j(shell)e(error)g(messages)g(are)h(written)e(in) -h(the)g(standard)f Fl(gnu)g Ft(error)1110 2949 y(message)c(format.)630 -3098 y Fs(histappend)1110 3208 y Ft(If)c(set,)j(the)e(history)g(list)g +(sub)s(directories)1110 3487 y(matc)m(h.)630 3649 y Fs(gnu_errfmt)1110 +3759 y Ft(If)35 b(set,)j(shell)e(error)g(messages)g(are)h(written)e(in) +h(the)g(standard)f Fl(gnu)g Ft(error)1110 3868 y(message)c(format.)630 +4030 y Fs(histappend)1110 4140 y Ft(If)c(set,)j(the)e(history)g(list)g (is)g(app)s(ended)e(to)j(the)f(\014le)g(named)f(b)m(y)h(the)g(v)-5 -b(alue)29 b(of)1110 3318 y(the)d Fs(HISTFILE)d Ft(v)-5 +b(alue)29 b(of)1110 4249 y(the)d Fs(HISTFILE)d Ft(v)-5 b(ariable)26 b(when)e(the)h(shell)h(exits,)h(rather)e(than)h(o)m(v)m -(erwriting)1110 3427 y(the)31 b(\014le.)630 3577 y Fs(histreedit)1110 -3686 y Ft(If)i(set,)h(and)f(Readline)h(is)f(b)s(eing)g(used,)g(a)g +(erwriting)1110 4359 y(the)31 b(\014le.)630 4521 y Fs(histreedit)1110 +4630 y Ft(If)i(set,)h(and)f(Readline)h(is)f(b)s(eing)g(used,)g(a)g (user)g(is)g(giv)m(en)h(the)g(opp)s(ortunit)m(y)1110 -3796 y(to)d(re-edit)g(a)g(failed)g(history)f(substitution.)630 -3945 y Fs(histverify)1110 4055 y Ft(If)35 b(set,)i(and)e(Readline)h(is) +4740 y(to)d(re-edit)g(a)g(failed)g(history)f(substitution.)630 +4902 y Fs(histverify)1110 5011 y Ft(If)35 b(set,)i(and)e(Readline)h(is) f(b)s(eing)g(used,)h(the)f(results)g(of)g(history)h(substitu-)1110 -4164 y(tion)h(are)g(not)g(immediately)h(passed)e(to)h(the)g(shell)g -(parser.)59 b(Instead,)38 b(the)1110 4274 y(resulting)i(line)f(is)h +5121 y(tion)h(are)g(not)g(immediately)h(passed)e(to)h(the)g(shell)g +(parser.)59 b(Instead,)38 b(the)1110 5230 y(resulting)i(line)f(is)h (loaded)g(in)m(to)g(the)g(Readline)g(editing)g(bu\013er,)h(allo)m(wing) -1110 4384 y(further)29 b(mo)s(di\014cation.)630 4533 -y Fs(hostcomplete)1110 4643 y Ft(If)38 b(set,)j(and)c(Readline)i(is)f -(b)s(eing)g(used,)h(Bash)g(will)f(attempt)h(to)g(p)s(erform)1110 -4752 y(hostname)d(completion)h(when)e(a)h(w)m(ord)f(con)m(taining)i(a)f -(`)p Fs(@)p Ft(')g(is)g(b)s(eing)f(com-)1110 4862 y(pleted)g(\(see)h -(Section)f(8.4.6)i([Commands)d(F)-8 b(or)36 b(Completion],)g(page)g -(112\).)1110 4971 y(This)30 b(option)g(is)h(enabled)f(b)m(y)g(default.) -630 5121 y Fs(huponexit)1110 5230 y Ft(If)i(set,)i(Bash)f(will)h(send)d -Fs(SIGHUP)h Ft(to)h(all)h(jobs)e(when)g(an)g(in)m(teractiv)m(e)k(login) -1110 5340 y(shell)31 b(exits)g(\(see)g(Section)g(3.7.6)h([Signals],)g -(page)f(34\).)p eop end +1110 5340 y(further)29 b(mo)s(di\014cation.)p eop end %%Page: 61 67 TeXDict begin 61 66 bop 150 -116 a Ft(Chapter)30 b(4:)41 -b(Shell)30 b(Builtin)h(Commands)2069 b(61)630 299 y Fs -(interactive_comments)1110 408 y Ft(Allo)m(w)27 b(a)g(w)m(ord)e(b)s -(eginning)g(with)h(`)p Fs(#)p Ft(')g(to)h(cause)f(that)h(w)m(ord)f(and) -f(all)i(remain-)1110 518 y(ing)41 b(c)m(haracters)i(on)e(that)h(line)g -(to)g(b)s(e)f(ignored)g(in)g(an)g(in)m(teractiv)m(e)j(shell.)1110 -628 y(This)30 b(option)g(is)h(enabled)f(b)m(y)g(default.)630 -777 y Fs(lithist)144 b Ft(If)22 b(enabled,)i(and)d(the)h +b(Shell)30 b(Builtin)h(Commands)2069 b(61)630 299 y Fs(hostcomplete) +1110 408 y Ft(If)38 b(set,)j(and)c(Readline)i(is)f(b)s(eing)g(used,)h +(Bash)g(will)f(attempt)h(to)g(p)s(erform)1110 518 y(hostname)d +(completion)h(when)e(a)h(w)m(ord)f(con)m(taining)i(a)f(`)p +Fs(@)p Ft(')g(is)g(b)s(eing)f(com-)1110 628 y(pleted)g(\(see)h(Section) +f(8.4.6)i([Commands)d(F)-8 b(or)36 b(Completion],)g(page)g(112\).)1110 +737 y(This)30 b(option)g(is)h(enabled)f(b)m(y)g(default.)630 +917 y Fs(huponexit)1110 1026 y Ft(If)i(set,)i(Bash)f(will)h(send)d +Fs(SIGHUP)h Ft(to)h(all)h(jobs)e(when)g(an)g(in)m(teractiv)m(e)k(login) +1110 1136 y(shell)31 b(exits)g(\(see)g(Section)g(3.7.6)h([Signals],)g +(page)f(34\).)630 1315 y Fs(interactive_comments)1110 +1425 y Ft(Allo)m(w)c(a)g(w)m(ord)e(b)s(eginning)g(with)h(`)p +Fs(#)p Ft(')g(to)h(cause)f(that)h(w)m(ord)f(and)f(all)i(remain-)1110 +1534 y(ing)41 b(c)m(haracters)i(on)e(that)h(line)g(to)g(b)s(e)f +(ignored)g(in)g(an)g(in)m(teractiv)m(e)j(shell.)1110 +1644 y(This)30 b(option)g(is)h(enabled)f(b)m(y)g(default.)630 +1823 y Fs(lastpipe)96 b Ft(If)24 b(set,)i(and)e(job)g(con)m(trol)i(is)f +(not)f(activ)m(e,)k(the)d(shell)f(runs)f(the)i(last)g(command)1110 +1933 y(of)37 b(a)h(pip)s(eline)e(not)h(executed)h(in)f(the)g(bac)m +(kground)g(in)g(the)g(curren)m(t)g(shell)1110 2042 y(en)m(vironmen)m +(t.)630 2222 y Fs(lithist)144 b Ft(If)22 b(enabled,)i(and)d(the)h Fs(cmdhist)e Ft(option)j(is)f(enabled,)i(m)m(ulti-line)f(commands)1110 -887 y(are)28 b(sa)m(v)m(ed)h(to)g(the)f(history)g(with)f(em)m(b)s -(edded)g(newlines)h(rather)g(than)f(using)1110 996 y(semicolon)32 -b(separators)f(where)e(p)s(ossible.)630 1146 y Fs(login_shell)1110 -1255 y Ft(The)35 b(shell)h(sets)g(this)f(option)h(if)g(it)g(is)f +2331 y(are)28 b(sa)m(v)m(ed)h(to)g(the)f(history)g(with)f(em)m(b)s +(edded)g(newlines)h(rather)g(than)f(using)1110 2441 y(semicolon)32 +b(separators)f(where)e(p)s(ossible.)630 2620 y Fs(login_shell)1110 +2730 y Ft(The)35 b(shell)h(sets)g(this)f(option)h(if)g(it)g(is)f (started)h(as)g(a)g(login)g(shell)g(\(see)g(Sec-)1110 -1365 y(tion)29 b(6.1)g([In)m(v)m(oking)h(Bash],)f(page)g(73\).)41 +2839 y(tion)29 b(6.1)g([In)m(v)m(oking)h(Bash],)f(page)g(73\).)41 b(The)28 b(v)-5 b(alue)29 b(ma)m(y)g(not)f(b)s(e)g(c)m(hanged.)630 -1514 y Fs(mailwarn)96 b Ft(If)34 b(set,)i(and)e(a)h(\014le)g(that)g +3019 y Fs(mailwarn)96 b Ft(If)34 b(set,)i(and)e(a)h(\014le)g(that)g (Bash)f(is)h(c)m(hec)m(king)h(for)f(mail)g(has)f(b)s(een)g(accessed) -1110 1624 y(since)24 b(the)h(last)g(time)f(it)h(w)m(as)f(c)m(hec)m(k)m +1110 3128 y(since)24 b(the)h(last)g(time)f(it)h(w)m(as)f(c)m(hec)m(k)m (ed,)k(the)c(message)h Fs("The)k(mail)h(in)f Fi(mail-)1110 -1733 y(file)40 b Fs(has)29 b(been)g(read")g Ft(is)i(displa)m(y)m(ed.) -630 1883 y Fs(no_empty_cmd_completion)1110 1993 y Ft(If)f(set,)g(and)g +3238 y(file)40 b Fs(has)29 b(been)g(read")g Ft(is)i(displa)m(y)m(ed.) +630 3417 y Fs(no_empty_cmd_completion)1110 3527 y Ft(If)f(set,)g(and)g (Readline)g(is)h(b)s(eing)e(used,)h(Bash)g(will)g(not)g(attempt)i(to)e -(searc)m(h)1110 2102 y(the)25 b Fs(PATH)f Ft(for)h(p)s(ossible)f +(searc)m(h)1110 3636 y(the)25 b Fs(PATH)f Ft(for)h(p)s(ossible)f (completions)j(when)d(completion)i(is)f(attempted)h(on)1110 -2212 y(an)k(empt)m(y)h(line.)630 2361 y Fs(nocaseglob)1110 -2471 y Ft(If)38 b(set,)k(Bash)d(matc)m(hes)g(\014lenames)g(in)f(a)h -(case-insensitiv)m(e)j(fashion)c(when)1110 2580 y(p)s(erforming)29 -b(\014lename)i(expansion.)630 2730 y Fs(nocasematch)1110 -2839 y Ft(If)42 b(set,)k(Bash)d(matc)m(hes)g(patterns)g(in)f(a)h -(case-insensitiv)m(e)i(fashion)d(when)1110 2949 y(p)s(erforming)31 +3746 y(an)k(empt)m(y)h(line.)630 3925 y Fs(nocaseglob)1110 +4035 y Ft(If)38 b(set,)k(Bash)d(matc)m(hes)g(\014lenames)g(in)f(a)h +(case-insensitiv)m(e)j(fashion)c(when)1110 4144 y(p)s(erforming)29 +b(\014lename)i(expansion.)630 4324 y Fs(nocasematch)1110 +4433 y Ft(If)42 b(set,)k(Bash)d(matc)m(hes)g(patterns)g(in)f(a)h +(case-insensitiv)m(e)i(fashion)d(when)1110 4543 y(p)s(erforming)31 b(matc)m(hing)i(while)f(executing)i Fs(case)d Ft(or)h -Fs([[)g Ft(conditional)h(com-)1110 3059 y(mands.)630 -3208 y Fs(nullglob)96 b Ft(If)23 b(set,)j(Bash)e(allo)m(ws)g +Fs([[)g Ft(conditional)h(com-)1110 4653 y(mands.)630 +4832 y Fs(nullglob)96 b Ft(If)23 b(set,)j(Bash)e(allo)m(ws)g (\014lename)g(patterns)g(whic)m(h)f(matc)m(h)h(no)g(\014les)f(to)i -(expand)1110 3318 y(to)31 b(a)g(n)m(ull)f(string,)h(rather)f(than)g -(themselv)m(es.)630 3467 y Fs(progcomp)96 b Ft(If)25 +(expand)1110 4941 y(to)31 b(a)g(n)m(ull)f(string,)h(rather)f(than)g +(themselv)m(es.)630 5121 y Fs(progcomp)96 b Ft(If)25 b(set,)i(the)f(programmable)g(completion)g(facilities)i(\(see)f -(Section)f(8.6)h([Pro-)1110 3577 y(grammable)45 b(Completion],)k(page)c +(Section)f(8.6)h([Pro-)1110 5230 y(grammable)45 b(Completion],)k(page)c (117\))h(are)f(enabled.)82 b(This)44 b(option)h(is)1110 -3686 y(enabled)30 b(b)m(y)h(default.)630 3836 y Fs(promptvars)1110 -3945 y Ft(If)24 b(set,)i(prompt)d(strings)h(undergo)f(parameter)i -(expansion,)g(command)f(sub-)1110 4055 y(stitution,)34 -b(arithmetic)f(expansion,)g(and)e(quote)i(remo)m(v)-5 -b(al)33 b(after)g(b)s(eing)e(ex-)1110 4164 y(panded)39 -b(as)i(describ)s(ed)e(b)s(elo)m(w)i(\(see)g(Section)g(6.9)g([Prin)m -(ting)g(a)g(Prompt],)1110 4274 y(page)31 b(84\).)42 b(This)30 -b(option)g(is)h(enabled)f(b)m(y)g(default.)630 4423 y -Fs(restricted_shell)1110 4533 y Ft(The)40 b(shell)h(sets)g(this)g -(option)g(if)g(it)h(is)e(started)i(in)e(restricted)i(mo)s(de)e(\(see) -1110 4643 y(Section)c(6.10)g([The)f(Restricted)g(Shell],)i(page)e -(86\).)56 b(The)34 b(v)-5 b(alue)35 b(ma)m(y)h(not)1110 -4752 y(b)s(e)c(c)m(hanged.)49 b(This)32 b(is)h(not)h(reset)f(when)f -(the)h(startup)g(\014les)f(are)i(executed,)1110 4862 -y(allo)m(wing)k(the)e(startup)f(\014les)h(to)g(disco)m(v)m(er)h -(whether)f(or)f(not)i(a)f(shell)g(is)g(re-)1110 4971 -y(stricted.)630 5121 y Fs(shift_verbose)1110 5230 y Ft(If)g(this)g(is)g -(set,)j(the)d Fs(shift)f Ft(builtin)h(prin)m(ts)f(an)h(error)g(message) -i(when)d(the)1110 5340 y(shift)30 b(coun)m(t)h(exceeds)g(the)g(n)m(um)m -(b)s(er)e(of)h(p)s(ositional)i(parameters.)p eop end +5340 y(enabled)30 b(b)m(y)h(default.)p eop end %%Page: 62 68 TeXDict begin 62 67 bop 150 -116 a Ft(62)2572 b(Bash)31 -b(Reference)g(Man)m(ual)630 299 y Fs(sourcepath)1110 -408 y Ft(If)22 b(set,)j(the)e Fs(source)e Ft(builtin)h(uses)g(the)h(v) --5 b(alue)23 b(of)g Fs(PATH)e Ft(to)j(\014nd)d(the)h(directory)1110 -518 y(con)m(taining)29 b(the)e(\014le)h(supplied)e(as)h(an)g(argumen)m -(t.)40 b(This)27 b(option)h(is)f(enabled)1110 628 y(b)m(y)j(default.) -630 787 y Fs(xpg_echo)96 b Ft(If)31 b(set,)h(the)g Fs(echo)e +b(Reference)g(Man)m(ual)630 299 y Fs(promptvars)1110 +408 y Ft(If)24 b(set,)i(prompt)d(strings)h(undergo)f(parameter)i +(expansion,)g(command)f(sub-)1110 518 y(stitution,)34 +b(arithmetic)f(expansion,)g(and)e(quote)i(remo)m(v)-5 +b(al)33 b(after)g(b)s(eing)e(ex-)1110 628 y(panded)39 +b(as)i(describ)s(ed)e(b)s(elo)m(w)i(\(see)g(Section)g(6.9)g([Prin)m +(ting)g(a)g(Prompt],)1110 737 y(page)31 b(84\).)42 b(This)30 +b(option)g(is)h(enabled)f(b)m(y)g(default.)630 897 y +Fs(restricted_shell)1110 1006 y Ft(The)40 b(shell)h(sets)g(this)g +(option)g(if)g(it)h(is)e(started)i(in)e(restricted)i(mo)s(de)e(\(see) +1110 1116 y(Section)c(6.10)g([The)f(Restricted)g(Shell],)i(page)e +(86\).)56 b(The)34 b(v)-5 b(alue)35 b(ma)m(y)h(not)1110 +1225 y(b)s(e)c(c)m(hanged.)49 b(This)32 b(is)h(not)h(reset)f(when)f +(the)h(startup)g(\014les)f(are)i(executed,)1110 1335 +y(allo)m(wing)k(the)e(startup)f(\014les)h(to)g(disco)m(v)m(er)h +(whether)f(or)f(not)i(a)f(shell)g(is)g(re-)1110 1445 +y(stricted.)630 1604 y Fs(shift_verbose)1110 1714 y Ft(If)g(this)g(is)g +(set,)j(the)d Fs(shift)f Ft(builtin)h(prin)m(ts)f(an)h(error)g(message) +i(when)d(the)1110 1823 y(shift)30 b(coun)m(t)h(exceeds)g(the)g(n)m(um)m +(b)s(er)e(of)h(p)s(ositional)i(parameters.)630 1983 y +Fs(sourcepath)1110 2092 y Ft(If)22 b(set,)j(the)e Fs(source)e +Ft(builtin)h(uses)g(the)h(v)-5 b(alue)23 b(of)g Fs(PATH)e +Ft(to)j(\014nd)d(the)h(directory)1110 2202 y(con)m(taining)29 +b(the)e(\014le)h(supplied)e(as)h(an)g(argumen)m(t.)40 +b(This)27 b(option)h(is)f(enabled)1110 2311 y(b)m(y)j(default.)630 +2471 y Fs(xpg_echo)96 b Ft(If)31 b(set,)h(the)g Fs(echo)e Ft(builtin)h(expands)f(bac)m(kslash-escap)s(e)j(sequences)f(b)m(y)f -(de-)1110 897 y(fault.)630 1056 y(The)c(return)f(status)i(when)f +(de-)1110 2580 y(fault.)630 2740 y(The)c(return)f(status)i(when)f (listing)h(options)g(is)f(zero)i(if)e(all)i Fq(optnames)i -Ft(are)d(enabled,)g(non-)630 1166 y(zero)40 b(otherwise.)66 +Ft(are)d(enabled,)g(non-)630 2849 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 1275 y(unless)30 b(an)g Fq(optname)36 +(status)h(is)g(zero)630 2959 y(unless)30 b(an)g Fq(optname)36 b Ft(is)30 b(not)h(a)g(v)-5 b(alid)30 b(shell)h(option.)150 -1508 y Fr(4.4)68 b(Sp)t(ecial)45 b(Builtins)150 1667 +3191 y Fr(4.4)68 b(Sp)t(ecial)45 b(Builtins)150 3351 y Ft(F)-8 b(or)35 b(historical)h(reasons,)g(the)e Fl(posix)g Ft(standard)f(has)i(classi\014ed)f(sev)m(eral)i(builtin)e(commands)g -(as)h Fk(sp)-5 b(e-)150 1777 y(cial)p Ft(.)47 b(When)33 +(as)h Fk(sp)-5 b(e-)150 3460 y(cial)p Ft(.)47 b(When)33 b(Bash)f(is)h(executing)g(in)f Fl(posix)g Ft(mo)s(de,)h(the)g(sp)s (ecial)g(builtins)e(di\013er)i(from)f(other)g(builtin)150 -1886 y(commands)e(in)g(three)h(resp)s(ects:)199 2021 +3570 y(commands)e(in)g(three)h(resp)s(ects:)199 3704 y(1.)61 b(Sp)s(ecial)31 b(builtins)e(are)i(found)e(b)s(efore)h(shell)h -(functions)f(during)f(command)h(lo)s(okup.)199 2155 y(2.)61 +(functions)f(during)f(command)h(lo)s(okup.)199 3839 y(2.)61 b(If)30 b(a)h(sp)s(ecial)g(builtin)f(returns)f(an)h(error)g(status,)h -(a)g(non-in)m(teractiv)m(e)i(shell)d(exits.)199 2290 +(a)g(non-in)m(teractiv)m(e)i(shell)d(exits.)199 3973 y(3.)61 b(Assignmen)m(t)30 b(statemen)m(ts)h(preceding)f(the)f(command) g(sta)m(y)i(in)e(e\013ect)i(in)e(the)h(shell)f(en)m(vironmen)m(t)330 -2399 y(after)i(the)f(command)h(completes.)275 2559 y(When)36 +4083 y(after)i(the)f(command)h(completes.)275 4242 y(When)36 b(Bash)g(is)h(not)f(executing)i(in)e Fl(posix)f Ft(mo)s(de,)j(these)f (builtins)f(b)s(eha)m(v)m(e)h(no)f(di\013eren)m(tly)h(than)150 -2668 y(the)31 b(rest)f(of)h(the)f(Bash)h(builtin)e(commands.)41 +4352 y(the)31 b(rest)f(of)h(the)f(Bash)h(builtin)e(commands.)41 b(The)30 b(Bash)g Fl(posix)g Ft(mo)s(de)g(is)g(describ)s(ed)f(in)h -(Section)h(6.11)150 2778 y([Bash)g(POSIX)e(Mo)s(de],)i(page)g(86.)275 -2912 y(These)f(are)g(the)h Fl(posix)f Ft(sp)s(ecial)h(builtins:)390 -3047 y Fs(break)46 b(:)i(.)f(continue)f(eval)g(exec)h(exit)g(export)f -(readonly)f(return)h(set)390 3156 y(shift)g(trap)h(unset)p +(Section)h(6.11)150 4462 y([Bash)g(POSIX)e(Mo)s(de],)i(page)g(86.)275 +4596 y(These)f(are)g(the)h Fl(posix)f Ft(sp)s(ecial)h(builtins:)390 +4731 y Fs(break)46 b(:)i(.)f(continue)f(eval)g(exec)h(exit)g(export)f +(readonly)f(return)h(set)390 4840 y(shift)g(trap)h(unset)p eop end %%Page: 63 69 TeXDict begin 63 68 bop 150 -116 a Ft(Chapter)30 b(5:)41 @@ -9384,122 +9400,125 @@ eop end %%Page: 65 71 TeXDict begin 65 70 bop 150 -116 a Ft(Chapter)30 b(5:)41 b(Shell)30 b(V)-8 b(ariables)2459 b(65)150 299 y Fs(BASH_LINENO)630 -408 y Ft(An)38 b(arra)m(y)h(v)-5 b(ariable)39 b(whose)g(mem)m(b)s(ers)e -(are)i(the)g(line)g(n)m(um)m(b)s(ers)e(in)h(source)h(\014les)f(corre-) -630 518 y(sp)s(onding)g(to)i(eac)m(h)h(mem)m(b)s(er)e(of)h -Fq(FUNCNAME)5 b Ft(.)41 b Fs(${BASH_LINENO[$i]})34 b -Ft(is)40 b(the)g(line)630 628 y(n)m(um)m(b)s(er)47 b(in)h(the)g(source) -h(\014le)f(where)g Fs(${FUNCNAME[$i]})c Ft(w)m(as)49 -b(called)g(\(or)g Fs(${BASH_)630 737 y(LINENO[$i-1]})22 -b Ft(if)j(referenced)g(within)f(another)i(shell)f(function\).)39 -b(The)25 b(corresp)s(onding)630 847 y(source)f(\014le)h(name)f(is)g -Fs(${BASH_SOURCE[$i]})p Ft(.)34 b(Use)25 b Fs(LINENO)d -Ft(to)j(obtain)g(the)g(curren)m(t)f(line)630 956 y(n)m(um)m(b)s(er.)150 -1112 y Fs(BASH_REMATCH)630 1221 y Ft(An)43 b(arra)m(y)i(v)-5 +408 y Ft(An)62 b(arra)m(y)i(v)-5 b(ariable)63 b(whose)g(mem)m(b)s(ers)e +(are)j(the)e(line)h(n)m(um)m(b)s(ers)f(in)g(source)h(\014les)630 +518 y(where)46 b(eac)m(h)i(corresp)s(onding)e(mem)m(b)s(er)f(of)i +Fq(FUNCNAME)53 b Ft(w)m(as)47 b(in)m(v)m(ok)m(ed.)91 +b Fs(${BASH_)630 628 y(LINENO[$i]})39 b Ft(is)i(the)h(line)g(n)m(um)m +(b)s(er)e(in)i(the)f(source)h(\014le)g(\()p Fs(${BASH_SOURCE[$i+1]})p +Ft(\))630 737 y(where)d Fs(${FUNCNAME[$i]})c Ft(w)m(as)k(called)i(\(or) +e Fs(${BASH_LINENO[$i-1]})34 b Ft(if)39 b(referenced)630 +847 y(within)30 b(another)g(shell)h(function\).)41 b(Use)31 +b Fs(LINENO)d Ft(to)j(obtain)g(the)g(curren)m(t)f(line)h(n)m(um)m(b)s +(er.)150 1002 y Fs(BASH_REMATCH)630 1112 y Ft(An)43 b(arra)m(y)i(v)-5 b(ariable)44 b(whose)g(mem)m(b)s(ers)f(are)h(assigned)g(b)m(y)f(the)h -(`)p Fs(=~)p Ft(')g(binary)f(op)s(erator)630 1331 y(to)37 +(`)p Fs(=~)p Ft(')g(binary)f(op)s(erator)630 1221 y(to)37 b(the)f Fs([[)g Ft(conditional)i(command)e(\(see)h(Section)g(3.2.4.2)i -([Conditional)e(Constructs],)630 1440 y(page)e(10\).)52 +([Conditional)e(Constructs],)630 1331 y(page)e(10\).)52 b(The)33 b(elemen)m(t)j(with)d(index)g(0)i(is)f(the)g(p)s(ortion)f(of)h -(the)g(string)g(matc)m(hing)h(the)630 1550 y(en)m(tire)29 +(the)g(string)g(matc)m(hing)h(the)630 1440 y(en)m(tire)29 b(regular)f(expression.)40 b(The)27 b(elemen)m(t)j(with)d(index)h Fq(n)f Ft(is)h(the)g(p)s(ortion)g(of)g(the)g(string)630 -1660 y(matc)m(hing)j(the)g Fq(n)p Ft(th)f(paren)m(thesized)h(sub)s +1550 y(matc)m(hing)j(the)g Fq(n)p Ft(th)f(paren)m(thesized)h(sub)s (expression.)39 b(This)29 b(v)-5 b(ariable)31 b(is)g(read-only)-8 -b(.)150 1815 y Fs(BASH_SOURCE)630 1924 y Ft(An)24 b(arra)m(y)h(v)-5 -b(ariable)26 b(whose)e(mem)m(b)s(ers)g(are)h(the)g(source)f -(\014lenames)h(corresp)s(onding)e(to)j(the)630 2034 y(elemen)m(ts)32 -b(in)e(the)g Fs(FUNCNAME)e Ft(arra)m(y)j(v)-5 b(ariable.)150 -2189 y Fs(BASH_SUBSHELL)630 2299 y Ft(Incremen)m(ted)34 +b(.)150 1705 y Fs(BASH_SOURCE)630 1815 y Ft(An)40 b(arra)m(y)h(v)-5 +b(ariable)41 b(whose)f(mem)m(b)s(ers)g(are)h(the)g(source)f +(\014lenames)h(where)f(the)g(corre-)630 1924 y(sp)s(onding)27 +b(shell)i(function)f(names)g(in)g(the)h Fs(FUNCNAME)d +Ft(arra)m(y)j(v)-5 b(ariable)30 b(are)f(de\014ned.)38 +b(The)630 2034 y(shell)26 b(function)g Fs(${FUNCNAME[$i]})c +Ft(is)k(de\014ned)f(in)g(the)h(\014le)h Fs(${BASH_SOURCE[$i]})21 +b Ft(and)630 2144 y(called)32 b(from)d Fs(${BASH_SOURCE[$i+1]})150 +2299 y(BASH_SUBSHELL)630 2408 y Ft(Incremen)m(ted)34 b(b)m(y)h(one)f(eac)m(h)i(time)f(a)f(subshell)g(or)g(subshell)f(en)m -(vironmen)m(t)i(is)f(spa)m(wned.)630 2408 y(The)c(initial)h(v)-5 -b(alue)31 b(is)g(0.)150 2564 y Fs(BASH_VERSINFO)630 2673 +(vironmen)m(t)i(is)f(spa)m(wned.)630 2518 y(The)c(initial)h(v)-5 +b(alue)31 b(is)g(0.)150 2673 y Fs(BASH_VERSINFO)630 2783 y Ft(A)36 b(readonly)g(arra)m(y)g(v)-5 b(ariable)37 b(\(see)f(Section)h (6.7)g([Arra)m(ys],)h(page)e(82\))h(whose)f(mem)m(b)s(ers)630 -2783 y(hold)c(v)m(ersion)h(information)f(for)g(this)g(instance)h(of)g +2892 y(hold)c(v)m(ersion)h(information)f(for)g(this)g(instance)h(of)g (Bash.)46 b(The)32 b(v)-5 b(alues)32 b(assigned)h(to)g(the)630 -2892 y(arra)m(y)e(mem)m(b)s(ers)e(are)i(as)g(follo)m(ws:)630 -3048 y Fs(BASH_VERSINFO[0])1110 3157 y Ft(The)f(ma)5 +3002 y(arra)m(y)e(mem)m(b)s(ers)e(are)i(as)g(follo)m(ws:)630 +3157 y Fs(BASH_VERSINFO[0])1110 3267 y Ft(The)f(ma)5 b(jor)30 b(v)m(ersion)h(n)m(um)m(b)s(er)e(\(the)i Fq(release)5 -b Ft(\).)630 3313 y Fs(BASH_VERSINFO[1])1110 3422 y Ft(The)30 +b Ft(\).)630 3422 y Fs(BASH_VERSINFO[1])1110 3532 y Ft(The)30 b(minor)g(v)m(ersion)h(n)m(um)m(b)s(er)e(\(the)i Fq(v)m(ersion)p -Ft(\).)630 3577 y Fs(BASH_VERSINFO[2])1110 3687 y Ft(The)f(patc)m(h)h -(lev)m(el.)630 3842 y Fs(BASH_VERSINFO[3])1110 3952 y -Ft(The)f(build)f(v)m(ersion.)630 4107 y Fs(BASH_VERSINFO[4])1110 -4217 y Ft(The)h(release)i(status)e(\(e.g.,)j Fq(b)s(eta1)7 -b Ft(\).)630 4372 y Fs(BASH_VERSINFO[5])1110 4482 y Ft(The)30 -b(v)-5 b(alue)31 b(of)f Fs(MACHTYPE)p Ft(.)150 4637 y -Fs(BASH_VERSION)630 4746 y Ft(The)g(v)m(ersion)h(n)m(um)m(b)s(er)e(of)h -(the)h(curren)m(t)f(instance)h(of)g(Bash.)150 4902 y -Fs(BASH_XTRACEFD)630 5011 y Ft(If)f(set)h(to)h(an)e(in)m(teger)i +Ft(\).)630 3687 y Fs(BASH_VERSINFO[2])1110 3797 y Ft(The)f(patc)m(h)h +(lev)m(el.)630 3952 y Fs(BASH_VERSINFO[3])1110 4061 y +Ft(The)f(build)f(v)m(ersion.)630 4217 y Fs(BASH_VERSINFO[4])1110 +4326 y Ft(The)h(release)i(status)e(\(e.g.,)j Fq(b)s(eta1)7 +b Ft(\).)630 4482 y Fs(BASH_VERSINFO[5])1110 4591 y Ft(The)30 +b(v)-5 b(alue)31 b(of)f Fs(MACHTYPE)p Ft(.)150 4746 y +Fs(BASH_VERSION)630 4856 y Ft(The)g(v)m(ersion)h(n)m(um)m(b)s(er)e(of)h +(the)h(curren)m(t)f(instance)h(of)g(Bash.)150 5011 y +Fs(BASH_XTRACEFD)630 5121 y Ft(If)f(set)h(to)h(an)e(in)m(teger)i (corresp)s(onding)e(to)h(a)g(v)-5 b(alid)31 b(\014le)g(descriptor,)g -(Bash)g(will)g(write)g(the)630 5121 y(trace)37 b(output)f(generated)h +(Bash)g(will)g(write)g(the)630 5230 y(trace)37 b(output)f(generated)h (when)f(`)p Fs(set)29 b(-x)p Ft(')36 b(is)g(enabled)h(to)g(that)f -(\014le)h(descriptor.)58 b(This)630 5230 y(allo)m(ws)29 +(\014le)h(descriptor.)58 b(This)630 5340 y(allo)m(ws)29 b(tracing)h(output)d(to)i(b)s(e)f(separated)g(from)g(diagnostic)h(and)f -(error)f(messages.)41 b(The)630 5340 y(\014le)31 b(descriptor)f(is)h -(closed)g(when)f Fs(BASH_XTRACEFD)d Ft(is)k(unset)f(or)g(assigned)h(a)g -(new)f(v)-5 b(alue.)p eop end +(error)f(messages.)41 b(The)p eop end %%Page: 66 72 TeXDict begin 66 71 bop 150 -116 a Ft(66)2572 b(Bash)31 -b(Reference)g(Man)m(ual)630 299 y(Unsetting)45 b Fs(BASH_XTRACEFD)40 +b(Reference)g(Man)m(ual)630 299 y(\014le)g(descriptor)f(is)h(closed)g +(when)f Fs(BASH_XTRACEFD)d Ft(is)k(unset)f(or)g(assigned)h(a)g(new)f(v) +-5 b(alue.)630 408 y(Unsetting)45 b Fs(BASH_XTRACEFD)40 b Ft(or)k(assigning)g(it)g(the)g(empt)m(y)h(string)e(causes)i(the)f -(trace)630 408 y(output)33 b(to)i(b)s(e)d(sen)m(t)j(to)f(the)g +(trace)630 518 y(output)33 b(to)i(b)s(e)d(sen)m(t)j(to)f(the)g (standard)e(error.)50 b(Note)35 b(that)g(setting)f Fs(BASH_XTRACEFD)c -Ft(to)630 518 y(2)39 b(\(the)h(standard)e(error)g(\014le)h +Ft(to)630 628 y(2)39 b(\(the)h(standard)e(error)g(\014le)h (descriptor\))h(and)e(then)h(unsetting)g(it)g(will)g(result)g(in)g(the) -630 628 y(standard)30 b(error)g(b)s(eing)f(closed.)150 -819 y Fs(COLUMNS)144 b Ft(Used)36 b(b)m(y)h(the)f Fs(select)f +630 737 y(standard)30 b(error)g(b)s(eing)f(closed.)150 +915 y Fs(COLUMNS)144 b Ft(Used)36 b(b)m(y)h(the)f Fs(select)f Ft(builtin)h(command)h(to)g(determine)f(the)h(terminal)g(width)f(when) -630 929 y(prin)m(ting)30 b(selection)i(lists.)42 b(Automatically)33 +630 1025 y(prin)m(ting)30 b(selection)i(lists.)42 b(Automatically)33 b(set)e(up)s(on)d(receipt)k(of)e(a)h Fs(SIGWINCH)p Ft(.)150 -1121 y Fs(COMP_CWORD)630 1230 y Ft(An)38 b(index)g(in)m(to)h +1203 y Fs(COMP_CWORD)630 1313 y Ft(An)38 b(index)g(in)m(to)h Fs(${COMP_WORDS})c Ft(of)k(the)g(w)m(ord)f(con)m(taining)i(the)e -(curren)m(t)g(cursor)g(p)s(o-)630 1340 y(sition.)72 b(This)40 +(curren)m(t)g(cursor)g(p)s(o-)630 1422 y(sition.)72 b(This)40 b(v)-5 b(ariable)41 b(is)f(a)m(v)-5 b(ailable)43 b(only)e(in)f(shell)h (functions)f(in)m(v)m(ok)m(ed)i(b)m(y)e(the)h(pro-)630 -1450 y(grammable)36 b(completion)g(facilities)i(\(see)e(Section)g(8.6)g -([Programmable)g(Completion],)630 1559 y(page)31 b(117\).)150 -1751 y Fs(COMP_LINE)630 1861 y Ft(The)38 b(curren)m(t)h(command)f +1532 y(grammable)36 b(completion)g(facilities)i(\(see)e(Section)g(8.6)g +([Programmable)g(Completion],)630 1641 y(page)31 b(117\).)150 +1819 y Fs(COMP_LINE)630 1929 y Ft(The)38 b(curren)m(t)h(command)f (line.)66 b(This)37 b(v)-5 b(ariable)40 b(is)f(a)m(v)-5 -b(ailable)41 b(only)d(in)h(shell)f(functions)630 1970 +b(ailable)41 b(only)d(in)h(shell)f(functions)630 2039 y(and)25 b(external)h(commands)f(in)m(v)m(ok)m(ed)h(b)m(y)f(the)h -(programmable)f(completion)i(facilities)g(\(see)630 2080 +(programmable)f(completion)i(facilities)g(\(see)630 2148 y(Section)k(8.6)h([Programmable)f(Completion],)g(page)g(117\).)150 -2271 y Fs(COMP_POINT)630 2381 y Ft(The)25 b(index)g(of)h(the)g(curren)m +2326 y Fs(COMP_POINT)630 2436 y Ft(The)25 b(index)g(of)h(the)g(curren)m (t)f(cursor)g(p)s(osition)h(relativ)m(e)i(to)e(the)g(b)s(eginning)f(of) -g(the)h(curren)m(t)630 2491 y(command.)40 b(If)27 b(the)h(curren)m(t)g +g(the)h(curren)m(t)630 2545 y(command.)40 b(If)27 b(the)h(curren)m(t)g (cursor)g(p)s(osition)g(is)g(at)g(the)g(end)g(of)g(the)g(curren)m(t)g -(command,)630 2600 y(the)i(v)-5 b(alue)30 b(of)g(this)g(v)-5 +(command,)630 2655 y(the)i(v)-5 b(alue)30 b(of)g(this)g(v)-5 b(ariable)31 b(is)f(equal)g(to)h Fs(${#COMP_LINE})p Ft(.)37 b(This)29 b(v)-5 b(ariable)31 b(is)f(a)m(v)-5 b(ailable)630 -2710 y(only)36 b(in)f(shell)h(functions)f(and)g(external)h(commands)g -(in)m(v)m(ok)m(ed)h(b)m(y)e(the)h(programmable)630 2819 +2765 y(only)36 b(in)f(shell)h(functions)f(and)g(external)h(commands)g +(in)m(v)m(ok)m(ed)h(b)m(y)e(the)h(programmable)630 2874 y(completion)c(facilities)g(\(see)g(Section)f(8.6)g([Programmable)g -(Completion],)h(page)f(117\).)150 3011 y Fs(COMP_TYPE)630 -3121 y Ft(Set)c(to)h(an)f(in)m(teger)h(v)-5 b(alue)28 +(Completion],)h(page)f(117\).)150 3052 y Fs(COMP_TYPE)630 +3162 y Ft(Set)c(to)h(an)f(in)m(teger)h(v)-5 b(alue)28 b(corresp)s(onding)e(to)h(the)h(t)m(yp)s(e)f(of)g(completion)h -(attempted)g(that)630 3230 y(caused)e(a)g(completion)i(function)d(to)i +(attempted)g(that)630 3271 y(caused)e(a)g(completion)i(function)d(to)i (b)s(e)e(called:)40 b Fq(T)-8 b(AB)5 b Ft(,)27 b(for)f(normal)g -(completion,)i(`)p Fs(?)p Ft(',)f(for)630 3340 y(listing)35 +(completion,)i(`)p Fs(?)p Ft(',)f(for)630 3381 y(listing)35 b(completions)h(after)f(successiv)m(e)g(tabs,)h(`)p Fs(!)p Ft(',)g(for)e(listing)h(alternativ)m(es)i(on)d(partial)630 -3450 y(w)m(ord)22 b(completion,)k(`)p Fs(@)p Ft(',)f(to)e(list)g +3491 y(w)m(ord)22 b(completion,)k(`)p Fs(@)p Ft(',)f(to)e(list)g (completions)h(if)f(the)g(w)m(ord)f(is)h(not)g(unmo)s(di\014ed,)f(or)h -(`)p Fs(\045)p Ft(',)h(for)630 3559 y(men)m(u)i(completion.)41 +(`)p Fs(\045)p Ft(',)h(for)630 3600 y(men)m(u)i(completion.)41 b(This)25 b(v)-5 b(ariable)27 b(is)g(a)m(v)-5 b(ailable)28 b(only)f(in)f(shell)g(functions)g(and)g(external)630 -3669 y(commands)32 b(in)m(v)m(ok)m(ed)i(b)m(y)e(the)g(programmable)h +3710 y(commands)32 b(in)m(v)m(ok)m(ed)i(b)m(y)e(the)g(programmable)h (completion)g(facilities)i(\(see)e(Section)g(8.6)630 -3778 y([Programmable)e(Completion],)h(page)f(117\).)150 -3970 y Fs(COMP_KEY)96 b Ft(The)29 b(k)m(ey)i(\(or)g(\014nal)e(k)m(ey)i +3819 y([Programmable)e(Completion],)h(page)f(117\).)150 +3998 y Fs(COMP_KEY)96 b Ft(The)29 b(k)m(ey)i(\(or)g(\014nal)e(k)m(ey)i (of)f(a)g(k)m(ey)h(sequence\))g(used)e(to)i(in)m(v)m(ok)m(e)h(the)e -(curren)m(t)g(completion)630 4080 y(function.)150 4271 -y Fs(COMP_WORDBREAKS)630 4381 y Ft(The)f(set)i(of)e(c)m(haracters)j +(curren)m(t)g(completion)630 4107 y(function.)150 4285 +y Fs(COMP_WORDBREAKS)630 4395 y Ft(The)f(set)i(of)e(c)m(haracters)j (that)e(the)g(Readline)g(library)g(treats)g(as)g(w)m(ord)g(separators)g -(when)630 4491 y(p)s(erforming)i(w)m(ord)h(completion.)51 +(when)630 4504 y(p)s(erforming)i(w)m(ord)h(completion.)51 b(If)33 b Fs(COMP_WORDBREAKS)c Ft(is)34 b(unset,)g(it)f(loses)i(its)e -(sp)s(ecial)630 4600 y(prop)s(erties,)d(ev)m(en)h(if)f(it)h(is)g +(sp)s(ecial)630 4614 y(prop)s(erties,)d(ev)m(en)h(if)f(it)h(is)g (subsequen)m(tly)f(reset.)150 4792 y Fs(COMP_WORDS)630 4902 y Ft(An)36 b(arra)m(y)g(v)-5 b(ariable)37 b(consisting)g(of)f(the) g(individual)f(w)m(ords)h(in)f(the)h(curren)m(t)g(command)630 @@ -9519,433 +9538,445 @@ g(reads)g(the)h(p)s(ossible)e(completions)j(generated)630 518 y(b)m(y)33 b(a)g(shell)h(function)f(in)m(v)m(ok)m(ed)h(b)m(y)f(the) g(programmable)h(completion)g(facilit)m(y)h(\(see)f(Sec-)630 628 y(tion)d(8.6)g([Programmable)g(Completion],)h(page)f(117\).)150 -807 y Fs(COPROC)192 b Ft(An)27 b(arra)m(y)g(v)-5 b(ariable)28 +789 y Fs(COPROC)192 b Ft(An)27 b(arra)m(y)g(v)-5 b(ariable)28 b(created)g(to)f(hold)g(the)g(\014le)g(descriptors)g(for)g(output)f -(from)h(and)f(input)630 917 y(to)31 b(an)f(unnamed)f(copro)s(cess)i +(from)h(and)f(input)630 899 y(to)31 b(an)f(unnamed)f(copro)s(cess)i (\(see)g(Section)h(3.2.5)g([Copro)s(cesses],)f(page)g(14\).)150 -1096 y Fs(DIRSTACK)96 b Ft(An)26 b(arra)m(y)h(v)-5 b(ariable)28 +1061 y Fs(DIRSTACK)96 b Ft(An)26 b(arra)m(y)h(v)-5 b(ariable)28 b(con)m(taining)g(the)f(curren)m(t)f(con)m(ten)m(ts)j(of)e(the)f -(directory)i(stac)m(k.)41 b(Direc-)630 1205 y(tories)33 +(directory)i(stac)m(k.)41 b(Direc-)630 1170 y(tories)33 b(app)s(ear)f(in)g(the)h(stac)m(k)h(in)e(the)h(order)f(they)h(are)g (displa)m(y)m(ed)g(b)m(y)f(the)h Fs(dirs)e Ft(builtin.)630 -1315 y(Assigning)f(to)h(mem)m(b)s(ers)f(of)g(this)g(arra)m(y)g(v)-5 +1280 y(Assigning)f(to)h(mem)m(b)s(ers)f(of)g(this)g(arra)m(y)g(v)-5 b(ariable)31 b(ma)m(y)g(b)s(e)e(used)h(to)h(mo)s(dify)e(directories)630 -1425 y(already)41 b(in)f(the)h(stac)m(k,)k(but)40 b(the)h +1390 y(already)41 b(in)f(the)h(stac)m(k,)k(but)40 b(the)h Fs(pushd)e Ft(and)h Fs(popd)f Ft(builtins)h(m)m(ust)h(b)s(e)e(used)h -(to)i(add)630 1534 y(and)37 b(remo)m(v)m(e)h(directories.)63 +(to)i(add)630 1499 y(and)37 b(remo)m(v)m(e)h(directories.)63 b(Assignmen)m(t)37 b(to)h(this)f(v)-5 b(ariable)38 b(will)g(not)f(c)m -(hange)i(the)e(cur-)630 1644 y(ren)m(t)c(directory)-8 +(hange)i(the)e(cur-)630 1609 y(ren)m(t)c(directory)-8 b(.)47 b(If)32 b Fs(DIRSTACK)e Ft(is)i(unset,)g(it)h(loses)g(its)g(sp)s (ecial)g(prop)s(erties,)f(ev)m(en)h(if)f(it)h(is)630 -1753 y(subsequen)m(tly)d(reset.)150 1933 y Fs(EMACS)240 +1718 y(subsequen)m(tly)d(reset.)150 1880 y Fs(EMACS)240 b Ft(If)31 b(Bash)h(\014nds)d(this)j(v)-5 b(ariable)32 b(in)f(the)h(en)m(vironmen)m(t)g(when)e(the)i(shell)f(starts)h(with)f -(v)-5 b(alue)630 2042 y(`)p Fs(t)p Ft(',)38 b(it)e(assumes)g(that)g +(v)-5 b(alue)630 1990 y(`)p Fs(t)p Ft(',)38 b(it)e(assumes)g(that)g (the)h(shell)f(is)g(running)e(in)i(an)g(emacs)g(shell)h(bu\013er)e(and) -g(disables)630 2152 y(line)c(editing.)150 2331 y Fs(ENV)336 +g(disables)630 2099 y(line)c(editing.)150 2261 y Fs(ENV)336 b Ft(Similar)35 b(to)g Fs(BASH_ENV)p Ft(;)h(used)e(when)g(the)h(shell)g (is)g(in)m(v)m(ok)m(ed)h(in)e Fl(posix)h Ft(Mo)s(de)g(\(see)g(Sec-)630 -2441 y(tion)c(6.11)h([Bash)f(POSIX)e(Mo)s(de],)i(page)g(86\).)150 -2620 y Fs(EUID)288 b Ft(The)30 b(n)m(umeric)g(e\013ectiv)m(e)j(user)d +2371 y(tion)c(6.11)h([Bash)f(POSIX)e(Mo)s(de],)i(page)g(86\).)150 +2532 y Fs(EUID)288 b Ft(The)30 b(n)m(umeric)g(e\013ectiv)m(e)j(user)d (id)g(of)g(the)h(curren)m(t)f(user.)40 b(This)30 b(v)-5 -b(ariable)31 b(is)f(readonly)-8 b(.)150 2800 y Fs(FCEDIT)192 +b(ariable)31 b(is)f(readonly)-8 b(.)150 2694 y Fs(FCEDIT)192 b Ft(The)30 b(editor)h(used)e(as)i(a)g(default)f(b)m(y)h(the)f(`)p Fs(-e)p Ft(')g(option)h(to)g(the)g Fs(fc)f Ft(builtin)g(command.)150 -2979 y Fs(FIGNORE)144 b Ft(A)35 b(colon-separated)i(list)f(of)g +2856 y Fs(FIGNORE)144 b Ft(A)35 b(colon-separated)i(list)f(of)g (su\016xes)e(to)i(ignore)g(when)e(p)s(erforming)g(\014lename)i(comple-) -630 3088 y(tion.)j(A)25 b(\014le)g(name)g(whose)f(su\016x)g(matc)m(hes) +630 2966 y(tion.)j(A)25 b(\014le)g(name)g(whose)f(su\016x)g(matc)m(hes) i(one)f(of)g(the)g(en)m(tries)g(in)g Fs(FIGNORE)d Ft(is)j(excluded)630 -3198 y(from)30 b(the)g(list)h(of)g(matc)m(hed)g(\014le)g(names.)40 +3075 y(from)30 b(the)g(list)h(of)g(matc)m(hed)g(\014le)g(names.)40 b(A)31 b(sample)f(v)-5 b(alue)31 b(is)g(`)p Fs(.o:~)p -Ft(')150 3377 y Fs(FUNCNAME)96 b Ft(An)35 b(arra)m(y)i(v)-5 +Ft(')150 3237 y Fs(FUNCNAME)96 b Ft(An)35 b(arra)m(y)i(v)-5 b(ariable)36 b(con)m(taining)h(the)f(names)g(of)g(all)g(shell)g -(functions)g(curren)m(tly)f(in)h(the)630 3487 y(execution)g(call)h +(functions)g(curren)m(tly)f(in)h(the)630 3346 y(execution)g(call)h (stac)m(k.)57 b(The)34 b(elemen)m(t)j(with)e(index)g(0)h(is)f(the)g -(name)h(of)f(an)m(y)h(curren)m(tly-)630 3597 y(executing)i(shell)f -(function.)61 b(The)36 b(b)s(ottom-most)i(elemen)m(t)h(is)e -Fs("main")p Ft(.)59 b(This)36 b(v)-5 b(ariable)630 3706 -y(exists)33 b(only)g(when)f(a)h(shell)g(function)f(is)h(executing.)49 -b(Assignmen)m(ts)33 b(to)g Fs(FUNCNAME)e Ft(ha)m(v)m(e)630 -3816 y(no)36 b(e\013ect)h(and)e(return)f(an)i(error)f(status.)57 -b(If)36 b Fs(FUNCNAME)d Ft(is)j(unset,)h(it)f(loses)g(its)g(sp)s(ecial) -630 3925 y(prop)s(erties,)30 b(ev)m(en)h(if)f(it)h(is)g(subsequen)m -(tly)f(reset.)150 4105 y Fs(FUNCNEST)96 b Ft(If)34 b(set)i(to)f(a)h(n)m -(umeric)e(v)-5 b(alue)36 b(greater)g(than)e(0,)j(de\014nes)d(a)h(maxim) -m(um)g(function)g(nesting)630 4214 y(lev)m(el.)42 b(F)-8 -b(unction)29 b(in)m(v)m(o)s(cations)h(that)f(exceed)h(this)e(nesting)h -(lev)m(el)h(will)f(cause)g(the)f(curren)m(t)630 4324 -y(command)i(to)h(ab)s(ort.)150 4503 y Fs(GLOBIGNORE)630 -4613 y Ft(A)38 b(colon-separated)i(list)f(of)f(patterns)g(de\014ning)f -(the)h(set)g(of)h(\014lenames)f(to)g(b)s(e)g(ignored)630 -4722 y(b)m(y)31 b(\014lename)g(expansion.)43 b(If)31 -b(a)h(\014lename)f(matc)m(hed)h(b)m(y)f(a)g(\014lename)h(expansion)f -(pattern)630 4832 y(also)i(matc)m(hes)g(one)f(of)g(the)g(patterns)g(in) -f Fs(GLOBIGNORE)p Ft(,)f(it)i(is)g(remo)m(v)m(ed)h(from)e(the)h(list)h -(of)630 4941 y(matc)m(hes.)150 5121 y Fs(GROUPS)192 b -Ft(An)36 b(arra)m(y)g(v)-5 b(ariable)37 b(con)m(taining)g(the)f(list)h -(of)f(groups)g(of)g(whic)m(h)f(the)i(curren)m(t)e(user)h(is)g(a)630 -5230 y(mem)m(b)s(er.)47 b(Assignmen)m(ts)33 b(to)g Fs(GROUPS)e -Ft(ha)m(v)m(e)j(no)f(e\013ect)h(and)e(return)g(an)g(error)g(status.)48 -b(If)630 5340 y Fs(GROUPS)29 b Ft(is)h(unset,)g(it)h(loses)g(its)g(sp)s -(ecial)g(prop)s(erties,)f(ev)m(en)h(if)f(it)h(is)g(subsequen)m(tly)f -(reset.)p eop end +(name)h(of)f(an)m(y)h(curren)m(tly-)630 3456 y(executing)f(shell)f +(function.)51 b(The)34 b(b)s(ottom-most)h(elemen)m(t)g(\(the)g(one)f +(with)g(the)g(highest)630 3566 y(index\))e(is)h Fs("main")p +Ft(.)44 b(This)32 b(v)-5 b(ariable)33 b(exists)g(only)g(when)e(a)i +(shell)f(function)g(is)g(executing.)630 3675 y(Assignmen)m(ts)23 +b(to)h Fs(FUNCNAME)c Ft(ha)m(v)m(e)k(no)f(e\013ect)h(and)e(return)g(an) +g(error)g(status.)39 b(If)22 b Fs(FUNCNAME)630 3785 y +Ft(is)30 b(unset,)h(it)g(loses)g(its)f(sp)s(ecial)h(prop)s(erties,)f +(ev)m(en)h(if)g(it)g(is)f(subsequen)m(tly)g(reset.)630 +3921 y(This)h(v)-5 b(ariable)32 b(can)f(b)s(e)g(used)g(with)g +Fs(BASH_LINENO)d Ft(and)j Fs(BASH_SOURCE)p Ft(.)40 b(Eac)m(h)32 +b(elemen)m(t)630 4030 y(of)g Fs(FUNCNAME)d Ft(has)j(corresp)s(onding)e +(elemen)m(ts)j(in)f Fs(BASH_LINENO)c Ft(and)k Fs(BASH_SOURCE)c +Ft(to)630 4140 y(describ)s(e)39 b(the)h(call)h(stac)m(k.)70 +b(F)-8 b(or)41 b(instance,)i Fs(${FUNCNAME[$i]})35 b +Ft(w)m(as)41 b(called)f(from)g(the)630 4249 y(\014le)27 +b Fs(${BASH_SOURCE[$i+1]})21 b Ft(at)27 b(line)h(n)m(um)m(b)s(er)d +Fs(${BASH_LINENO[$i]})p Ft(.)34 b(The)27 b Fs(caller)630 +4359 y Ft(builtin)j(displa)m(ys)g(the)h(curren)m(t)f(call)i(stac)m(k)g +(using)d(this)i(information.)150 4521 y Fs(FUNCNEST)96 +b Ft(If)34 b(set)i(to)f(a)h(n)m(umeric)e(v)-5 b(alue)36 +b(greater)g(than)e(0,)j(de\014nes)d(a)h(maxim)m(um)g(function)g +(nesting)630 4630 y(lev)m(el.)42 b(F)-8 b(unction)29 +b(in)m(v)m(o)s(cations)h(that)f(exceed)h(this)e(nesting)h(lev)m(el)h +(will)f(cause)g(the)f(curren)m(t)630 4740 y(command)i(to)h(ab)s(ort.) +150 4902 y Fs(GLOBIGNORE)630 5011 y Ft(A)38 b(colon-separated)i(list)f +(of)f(patterns)g(de\014ning)f(the)h(set)g(of)h(\014lenames)f(to)g(b)s +(e)g(ignored)630 5121 y(b)m(y)31 b(\014lename)g(expansion.)43 +b(If)31 b(a)h(\014lename)f(matc)m(hed)h(b)m(y)f(a)g(\014lename)h +(expansion)f(pattern)630 5230 y(also)i(matc)m(hes)g(one)f(of)g(the)g +(patterns)g(in)f Fs(GLOBIGNORE)p Ft(,)f(it)i(is)g(remo)m(v)m(ed)h(from) +e(the)h(list)h(of)630 5340 y(matc)m(hes.)p eop end %%Page: 68 74 TeXDict begin 68 73 bop 150 -116 a Ft(68)2572 b(Bash)31 -b(Reference)g(Man)m(ual)150 299 y Fs(histchars)630 408 -y Ft(Up)26 b(to)g(three)g(c)m(haracters)i(whic)m(h)d(con)m(trol)j -(history)d(expansion,)i(quic)m(k)g(substitution,)g(and)630 -518 y(tok)m(enization)k(\(see)f(Section)f(9.3)h([History)f(In)m -(teraction],)i(page)f(125\).)41 b(The)29 b(\014rst)e(c)m(harac-)630 -628 y(ter)j(is)f(the)g Fq(history)g(expansion)g Ft(c)m(haracter,)j -(that)e(is,)f(the)h(c)m(haracter)h(whic)m(h)d(signi\014es)i(the)630 -737 y(start)25 b(of)f(a)h(history)f(expansion,)i(normally)e(`)p -Fs(!)p Ft('.)39 b(The)24 b(second)g(c)m(haracter)i(is)e(the)g(c)m -(haracter)630 847 y(whic)m(h)36 b(signi\014es)g(`quic)m(k)h -(substitution')f(when)f(seen)h(as)g(the)g(\014rst)f(c)m(haracter)j(on)e -(a)g(line,)630 956 y(normally)27 b(`)p Fs(^)p Ft('.)39 -b(The)26 b(optional)i(third)d(c)m(haracter)j(is)e(the)h(c)m(haracter)h -(whic)m(h)e(indicates)h(that)630 1066 y(the)34 b(remainder)f(of)h(the)g -(line)g(is)f(a)h(commen)m(t)h(when)e(found)f(as)i(the)g(\014rst)f(c)m -(haracter)i(of)f(a)630 1176 y(w)m(ord,)i(usually)f(`)p -Fs(#)p Ft('.)55 b(The)34 b(history)h(commen)m(t)h(c)m(haracter)h -(causes)e(history)g(substitution)630 1285 y(to)27 b(b)s(e)f(skipp)s(ed) -f(for)i(the)f(remaining)h(w)m(ords)f(on)h(the)f(line.)40 -b(It)27 b(do)s(es)f(not)h(necessarily)g(cause)630 1395 -y(the)k(shell)f(parser)g(to)h(treat)g(the)g(rest)g(of)f(the)h(line)f -(as)h(a)g(commen)m(t.)150 1570 y Fs(HISTCMD)144 b Ft(The)35 -b(history)h(n)m(um)m(b)s(er,)g(or)f(index)g(in)h(the)g(history)f(list,) -j(of)e(the)g(curren)m(t)f(command.)56 b(If)630 1680 y -Fs(HISTCMD)28 b Ft(is)h(unset,)h(it)g(loses)h(its)f(sp)s(ecial)g(prop)s -(erties,)g(ev)m(en)g(if)g(it)g(is)g(subsequen)m(tly)f(reset.)150 -1855 y Fs(HISTCONTROL)630 1965 y Ft(A)40 b(colon-separated)i(list)f(of) -f(v)-5 b(alues)40 b(con)m(trolling)i(ho)m(w)e(commands)g(are)h(sa)m(v)m -(ed)g(on)f(the)630 2074 y(history)29 b(list.)41 b(If)28 -b(the)h(list)h(of)f(v)-5 b(alues)29 b(includes)f(`)p -Fs(ignorespace)p Ft(',)f(lines)i(whic)m(h)g(b)s(egin)f(with)630 -2184 y(a)39 b(space)g(c)m(haracter)i(are)e(not)g(sa)m(v)m(ed)g(in)g -(the)g(history)f(list.)66 b(A)39 b(v)-5 b(alue)39 b(of)g(`)p -Fs(ignoredups)p Ft(')630 2293 y(causes)34 b(lines)h(whic)m(h)f(matc)m -(h)h(the)f(previous)f(history)h(en)m(try)h(to)g(not)f(b)s(e)f(sa)m(v)m -(ed.)53 b(A)34 b(v)-5 b(alue)630 2403 y(of)32 b(`)p Fs(ignoreboth)p -Ft(')d(is)j(shorthand)e(for)i(`)p Fs(ignorespace)p Ft(')d(and)i(`)p -Fs(ignoredups)p Ft('.)42 b(A)32 b(v)-5 b(alue)32 b(of)630 -2513 y(`)p Fs(erasedups)p Ft(')f(causes)i(all)h(previous)f(lines)g -(matc)m(hing)h(the)f(curren)m(t)g(line)g(to)h(b)s(e)e(remo)m(v)m(ed)630 -2622 y(from)42 b(the)h(history)f(list)i(b)s(efore)e(that)h(line)g(is)g -(sa)m(v)m(ed.)78 b(An)m(y)43 b(v)-5 b(alue)43 b(not)g(in)f(the)h(ab)s -(o)m(v)m(e)630 2732 y(list)35 b(is)g(ignored.)53 b(If)34 -b Fs(HISTCONTROL)e Ft(is)i(unset,)i(or)e(do)s(es)h(not)g(include)f(a)h -(v)-5 b(alid)35 b(v)-5 b(alue,)36 b(all)630 2841 y(lines)30 +b(Reference)g(Man)m(ual)150 299 y Fs(GROUPS)192 b Ft(An)36 +b(arra)m(y)g(v)-5 b(ariable)37 b(con)m(taining)g(the)f(list)h(of)f +(groups)g(of)g(whic)m(h)f(the)i(curren)m(t)e(user)h(is)g(a)630 +408 y(mem)m(b)s(er.)47 b(Assignmen)m(ts)33 b(to)g Fs(GROUPS)e +Ft(ha)m(v)m(e)j(no)f(e\013ect)h(and)e(return)g(an)g(error)g(status.)48 +b(If)630 518 y Fs(GROUPS)29 b Ft(is)h(unset,)g(it)h(loses)g(its)g(sp)s +(ecial)g(prop)s(erties,)f(ev)m(en)h(if)f(it)h(is)g(subsequen)m(tly)f +(reset.)150 682 y Fs(histchars)630 792 y Ft(Up)c(to)g(three)g(c)m +(haracters)i(whic)m(h)d(con)m(trol)j(history)d(expansion,)i(quic)m(k)g +(substitution,)g(and)630 902 y(tok)m(enization)k(\(see)f(Section)f(9.3) +h([History)f(In)m(teraction],)i(page)f(125\).)41 b(The)29 +b(\014rst)e(c)m(harac-)630 1011 y(ter)j(is)f(the)g Fq(history)g +(expansion)g Ft(c)m(haracter,)j(that)e(is,)f(the)h(c)m(haracter)h(whic) +m(h)d(signi\014es)i(the)630 1121 y(start)25 b(of)f(a)h(history)f +(expansion,)i(normally)e(`)p Fs(!)p Ft('.)39 b(The)24 +b(second)g(c)m(haracter)i(is)e(the)g(c)m(haracter)630 +1230 y(whic)m(h)36 b(signi\014es)g(`quic)m(k)h(substitution')f(when)f +(seen)h(as)g(the)g(\014rst)f(c)m(haracter)j(on)e(a)g(line,)630 +1340 y(normally)27 b(`)p Fs(^)p Ft('.)39 b(The)26 b(optional)i(third)d +(c)m(haracter)j(is)e(the)h(c)m(haracter)h(whic)m(h)e(indicates)h(that) +630 1450 y(the)34 b(remainder)f(of)h(the)g(line)g(is)f(a)h(commen)m(t)h +(when)e(found)f(as)i(the)g(\014rst)f(c)m(haracter)i(of)f(a)630 +1559 y(w)m(ord,)i(usually)f(`)p Fs(#)p Ft('.)55 b(The)34 +b(history)h(commen)m(t)h(c)m(haracter)h(causes)e(history)g +(substitution)630 1669 y(to)27 b(b)s(e)f(skipp)s(ed)f(for)i(the)f +(remaining)h(w)m(ords)f(on)h(the)f(line.)40 b(It)27 b(do)s(es)f(not)h +(necessarily)g(cause)630 1778 y(the)k(shell)f(parser)g(to)h(treat)g +(the)g(rest)g(of)f(the)h(line)f(as)h(a)g(commen)m(t.)150 +1943 y Fs(HISTCMD)144 b Ft(The)35 b(history)h(n)m(um)m(b)s(er,)g(or)f +(index)g(in)h(the)g(history)f(list,)j(of)e(the)g(curren)m(t)f(command.) +56 b(If)630 2052 y Fs(HISTCMD)28 b Ft(is)h(unset,)h(it)g(loses)h(its)f +(sp)s(ecial)g(prop)s(erties,)g(ev)m(en)g(if)g(it)g(is)g(subsequen)m +(tly)f(reset.)150 2217 y Fs(HISTCONTROL)630 2326 y Ft(A)40 +b(colon-separated)i(list)f(of)f(v)-5 b(alues)40 b(con)m(trolling)i(ho)m +(w)e(commands)g(are)h(sa)m(v)m(ed)g(on)f(the)630 2436 +y(history)29 b(list.)41 b(If)28 b(the)h(list)h(of)f(v)-5 +b(alues)29 b(includes)f(`)p Fs(ignorespace)p Ft(',)f(lines)i(whic)m(h)g +(b)s(egin)f(with)630 2545 y(a)39 b(space)g(c)m(haracter)i(are)e(not)g +(sa)m(v)m(ed)g(in)g(the)g(history)f(list.)66 b(A)39 b(v)-5 +b(alue)39 b(of)g(`)p Fs(ignoredups)p Ft(')630 2655 y(causes)34 +b(lines)h(whic)m(h)f(matc)m(h)h(the)f(previous)f(history)h(en)m(try)h +(to)g(not)f(b)s(e)f(sa)m(v)m(ed.)53 b(A)34 b(v)-5 b(alue)630 +2765 y(of)32 b(`)p Fs(ignoreboth)p Ft(')d(is)j(shorthand)e(for)i(`)p +Fs(ignorespace)p Ft(')d(and)i(`)p Fs(ignoredups)p Ft('.)42 +b(A)32 b(v)-5 b(alue)32 b(of)630 2874 y(`)p Fs(erasedups)p +Ft(')f(causes)i(all)h(previous)f(lines)g(matc)m(hing)h(the)f(curren)m +(t)g(line)g(to)h(b)s(e)e(remo)m(v)m(ed)630 2984 y(from)42 +b(the)h(history)f(list)i(b)s(efore)e(that)h(line)g(is)g(sa)m(v)m(ed.)78 +b(An)m(y)43 b(v)-5 b(alue)43 b(not)g(in)f(the)h(ab)s(o)m(v)m(e)630 +3093 y(list)35 b(is)g(ignored.)53 b(If)34 b Fs(HISTCONTROL)e +Ft(is)i(unset,)i(or)e(do)s(es)h(not)g(include)f(a)h(v)-5 +b(alid)35 b(v)-5 b(alue,)36 b(all)630 3203 y(lines)30 b(read)g(b)m(y)g(the)g(shell)g(parser)g(are)g(sa)m(v)m(ed)h(on)f(the)g (history)g(list,)h(sub)5 b(ject)30 b(to)g(the)g(v)-5 -b(alue)630 2951 y(of)42 b Fs(HISTIGNORE)p Ft(.)73 b(The)42 +b(alue)630 3313 y(of)42 b Fs(HISTIGNORE)p Ft(.)73 b(The)42 b(second)g(and)g(subsequen)m(t)f(lines)h(of)h(a)f(m)m(ulti-line)h(comp) -s(ound)630 3061 y(command)33 b(are)h(not)g(tested,)i(and)d(are)h(added) +s(ound)630 3422 y(command)33 b(are)h(not)g(tested,)i(and)d(are)h(added) f(to)h(the)g(history)g(regardless)g(of)g(the)f(v)-5 b(alue)630 -3170 y(of)31 b Fs(HISTCONTROL)p Ft(.)150 3345 y Fs(HISTFILE)96 +3532 y(of)31 b Fs(HISTCONTROL)p Ft(.)150 3696 y Fs(HISTFILE)96 b Ft(The)27 b(name)h(of)g(the)g(\014le)g(to)h(whic)m(h)f(the)g(command) f(history)h(is)g(sa)m(v)m(ed.)41 b(The)27 b(default)h(v)-5 -b(alue)630 3455 y(is)30 b(`)p Fs(~/.bash_history)p Ft('.)150 -3630 y Fs(HISTFILESIZE)630 3740 y Ft(The)c(maxim)m(um)f(n)m(um)m(b)s +b(alue)630 3806 y(is)30 b(`)p Fs(~/.bash_history)p Ft('.)150 +3970 y Fs(HISTFILESIZE)630 4080 y Ft(The)c(maxim)m(um)f(n)m(um)m(b)s (er)g(of)h(lines)h(con)m(tained)g(in)f(the)g(history)g(\014le.)39 -b(When)26 b(this)g(v)-5 b(ariable)630 3850 y(is)33 b(assigned)h(a)g(v) +b(When)26 b(this)g(v)-5 b(ariable)630 4189 y(is)33 b(assigned)h(a)g(v) -5 b(alue,)35 b(the)f(history)f(\014le)g(is)h(truncated,)g(if)g (necessary)-8 b(,)35 b(b)m(y)e(remo)m(ving)i(the)630 -3959 y(oldest)29 b(en)m(tries,)g(to)g(con)m(tain)g(no)f(more)g(than)f +4299 y(oldest)29 b(en)m(tries,)g(to)g(con)m(tain)g(no)f(more)g(than)f (that)i(n)m(um)m(b)s(er)e(of)h(lines.)40 b(The)27 b(history)h(\014le)g -(is)630 4069 y(also)33 b(truncated)e(to)h(this)g(size)g(after)g +(is)630 4408 y(also)33 b(truncated)e(to)h(this)g(size)g(after)g (writing)g(it)g(when)f(an)g(in)m(teractiv)m(e)k(shell)c(exits.)45 -b(The)630 4178 y(default)31 b(v)-5 b(alue)30 b(is)h(500.)150 -4354 y Fs(HISTIGNORE)630 4463 y Ft(A)i(colon-separated)h(list)f(of)g +b(The)630 4518 y(default)31 b(v)-5 b(alue)30 b(is)h(500.)150 +4682 y Fs(HISTIGNORE)630 4792 y Ft(A)i(colon-separated)h(list)f(of)g (patterns)f(used)g(to)h(decide)g(whic)m(h)f(command)g(lines)h(should) -630 4573 y(b)s(e)f(sa)m(v)m(ed)h(on)g(the)f(history)h(list.)47 +630 4902 y(b)s(e)f(sa)m(v)m(ed)h(on)g(the)f(history)h(list.)47 b(Eac)m(h)33 b(pattern)g(is)f(anc)m(hored)h(at)g(the)f(b)s(eginning)g -(of)h(the)630 4682 y(line)43 b(and)e(m)m(ust)h(matc)m(h)h(the)g +(of)h(the)630 5011 y(line)43 b(and)e(m)m(ust)h(matc)m(h)h(the)g (complete)h(line)e(\(no)h(implicit)g(`)p Fs(*)p Ft(')f(is)g(app)s -(ended\).)75 b(Eac)m(h)630 4792 y(pattern)42 b(is)g(tested)g(against)h +(ended\).)75 b(Eac)m(h)630 5121 y(pattern)42 b(is)g(tested)g(against)h (the)f(line)g(after)g(the)g(c)m(hec)m(ks)h(sp)s(eci\014ed)e(b)m(y)h -Fs(HISTCONTROL)630 4902 y Ft(are)37 b(applied.)59 b(In)36 +Fs(HISTCONTROL)630 5230 y Ft(are)37 b(applied.)59 b(In)36 b(addition)h(to)g(the)g(normal)g(shell)f(pattern)h(matc)m(hing)h(c)m -(haracters,)i(`)p Fs(&)p Ft(')630 5011 y(matc)m(hes)d(the)f(previous)g +(haracters,)i(`)p Fs(&)p Ft(')630 5340 y(matc)m(hes)d(the)f(previous)g (history)g(line.)57 b(`)p Fs(&)p Ft(')36 b(ma)m(y)h(b)s(e)e(escap)s(ed) -h(using)g(a)g(bac)m(kslash;)k(the)630 5121 y(bac)m(kslash)34 -b(is)g(remo)m(v)m(ed)h(b)s(efore)e(attempting)i(a)g(matc)m(h.)51 -b(The)34 b(second)f(and)h(subsequen)m(t)630 5230 y(lines)e(of)h(a)g(m)m -(ulti-line)g(comp)s(ound)e(command)h(are)h(not)f(tested,)i(and)e(are)g -(added)g(to)h(the)630 5340 y(history)d(regardless)h(of)g(the)f(v)-5 -b(alue)31 b(of)g Fs(HISTIGNORE)p Ft(.)p eop end +h(using)g(a)g(bac)m(kslash;)k(the)p eop end %%Page: 69 75 TeXDict begin 69 74 bop 150 -116 a Ft(Chapter)30 b(5:)41 -b(Shell)30 b(V)-8 b(ariables)2459 b(69)630 299 y Fs(HISTIGNORE)20 +b(Shell)30 b(V)-8 b(ariables)2459 b(69)630 299 y(bac)m(kslash)34 +b(is)g(remo)m(v)m(ed)h(b)s(efore)e(attempting)i(a)g(matc)m(h.)51 +b(The)34 b(second)f(and)h(subsequen)m(t)630 408 y(lines)e(of)h(a)g(m)m +(ulti-line)g(comp)s(ound)e(command)h(are)h(not)f(tested,)i(and)e(are)g +(added)g(to)h(the)630 518 y(history)d(regardless)h(of)g(the)f(v)-5 +b(alue)31 b(of)g Fs(HISTIGNORE)p Ft(.)630 649 y Fs(HISTIGNORE)20 b Ft(subsumes)g(the)j(function)f(of)h Fs(HISTCONTROL)p Ft(.)35 b(A)23 b(pattern)f(of)h(`)p Fs(&)p Ft(')g(is)f(iden)m(tical)630 -408 y(to)k Fs(ignoredups)p Ft(,)e(and)h(a)h(pattern)g(of)f(`)p +758 y(to)k Fs(ignoredups)p Ft(,)e(and)h(a)h(pattern)g(of)f(`)p Fs([)31 b(]*)p Ft(')25 b(is)h(iden)m(tical)h(to)f Fs(ignorespace)p -Ft(.)36 b(Com)m(bining)630 518 y(these)30 b(t)m(w)m(o)h(patterns,)f +Ft(.)36 b(Com)m(bining)630 868 y(these)30 b(t)m(w)m(o)h(patterns,)f (separating)g(them)g(with)f(a)h(colon,)h(pro)m(vides)e(the)h -(functionalit)m(y)h(of)630 628 y Fs(ignoreboth)p Ft(.)150 -777 y Fs(HISTSIZE)96 b Ft(The)42 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i +(functionalit)m(y)h(of)630 977 y Fs(ignoreboth)p Ft(.)150 +1129 y Fs(HISTSIZE)96 b Ft(The)42 b(maxim)m(um)g(n)m(um)m(b)s(er)f(of)i (commands)e(to)j(remem)m(b)s(er)d(on)h(the)h(history)f(list.)77 -b(The)630 887 y(default)31 b(v)-5 b(alue)30 b(is)h(500.)150 -1036 y Fs(HISTTIMEFORMAT)630 1146 y Ft(If)44 b(this)g(v)-5 +b(The)630 1238 y(default)31 b(v)-5 b(alue)30 b(is)h(500.)150 +1390 y Fs(HISTTIMEFORMAT)630 1499 y Ft(If)44 b(this)g(v)-5 b(ariable)45 b(is)f(set)g(and)g(not)g(n)m(ull,)k(its)d(v)-5 b(alue)44 b(is)g(used)g(as)g(a)h(format)f(string)g(for)630 -1255 y Fq(strftime)c Ft(to)35 b(prin)m(t)f(the)h(time)g(stamp)f(asso)s +1609 y Fq(strftime)c Ft(to)35 b(prin)m(t)f(the)h(time)g(stamp)f(asso)s (ciated)i(with)f(eac)m(h)g(history)g(en)m(try)f(displa)m(y)m(ed)630 -1365 y(b)m(y)g(the)f Fs(history)f Ft(builtin.)50 b(If)33 +1718 y(b)m(y)g(the)f Fs(history)f Ft(builtin.)50 b(If)33 b(this)h(v)-5 b(ariable)34 b(is)g(set,)h(time)f(stamps)g(are)g(written) -f(to)i(the)630 1474 y(history)26 b(\014le)g(so)g(they)g(ma)m(y)h(b)s(e) +f(to)i(the)630 1828 y(history)26 b(\014le)g(so)g(they)g(ma)m(y)h(b)s(e) e(preserv)m(ed)g(across)i(shell)f(sessions.)39 b(This)25 -b(uses)h(the)g(history)630 1584 y(commen)m(t)31 b(c)m(haracter)h(to)f +b(uses)h(the)g(history)630 1937 y(commen)m(t)31 b(c)m(haracter)h(to)f (distinguish)f(timestamps)h(from)f(other)g(history)h(lines.)150 -1733 y Fs(HOSTFILE)96 b Ft(Con)m(tains)39 b(the)f(name)g(of)h(a)g +2089 y Fs(HOSTFILE)96 b Ft(Con)m(tains)39 b(the)f(name)g(of)h(a)g (\014le)f(in)g(the)g(same)h(format)g(as)f(`)p Fs(/etc/hosts)p -Ft(')e(that)j(should)630 1843 y(b)s(e)i(read)h(when)f(the)i(shell)f +Ft(')e(that)j(should)630 2198 y(b)s(e)i(read)h(when)f(the)i(shell)f (needs)f(to)i(complete)h(a)e(hostname.)76 b(The)42 b(list)g(of)g(p)s -(ossible)630 1953 y(hostname)26 b(completions)g(ma)m(y)h(b)s(e)d(c)m +(ossible)630 2308 y(hostname)26 b(completions)g(ma)m(y)h(b)s(e)d(c)m (hanged)j(while)e(the)h(shell)g(is)f(running;)h(the)g(next)f(time)630 -2062 y(hostname)37 b(completion)i(is)e(attempted)h(after)g(the)f(v)-5 +2418 y(hostname)37 b(completion)i(is)e(attempted)h(after)g(the)f(v)-5 b(alue)37 b(is)h(c)m(hanged,)h(Bash)e(adds)g(the)630 -2172 y(con)m(ten)m(ts)43 b(of)f(the)f(new)g(\014le)h(to)g(the)f +2527 y(con)m(ten)m(ts)43 b(of)f(the)f(new)g(\014le)h(to)g(the)f (existing)i(list.)74 b(If)41 b Fs(HOSTFILE)e Ft(is)i(set,)k(but)c(has)g -(no)630 2281 y(v)-5 b(alue,)29 b(or)e(do)s(es)h(not)g(name)f(a)h +(no)630 2637 y(v)-5 b(alue,)29 b(or)e(do)s(es)h(not)g(name)f(a)h (readable)g(\014le,)h(Bash)f(attempts)g(to)g(read)g(`)p -Fs(/etc/hosts)p Ft(')d(to)630 2391 y(obtain)j(the)g(list)h(of)f(p)s +Fs(/etc/hosts)p Ft(')d(to)630 2746 y(obtain)j(the)g(list)h(of)f(p)s (ossible)f(hostname)h(completions.)41 b(When)28 b Fs(HOSTFILE)e -Ft(is)i(unset,)g(the)630 2501 y(hostname)j(list)g(is)f(cleared.)150 -2650 y Fs(HOSTNAME)96 b Ft(The)30 b(name)g(of)h(the)f(curren)m(t)h -(host.)150 2800 y Fs(HOSTTYPE)96 b Ft(A)30 b(string)h(describing)f(the) -g(mac)m(hine)h(Bash)g(is)f(running)f(on.)150 2949 y Fs(IGNOREEOF)630 -3059 y Ft(Con)m(trols)e(the)h(action)g(of)f(the)g(shell)g(on)g(receipt) +Ft(is)i(unset,)g(the)630 2856 y(hostname)j(list)g(is)f(cleared.)150 +3007 y Fs(HOSTNAME)96 b Ft(The)30 b(name)g(of)h(the)f(curren)m(t)h +(host.)150 3159 y Fs(HOSTTYPE)96 b Ft(A)30 b(string)h(describing)f(the) +g(mac)m(hine)h(Bash)g(is)f(running)f(on.)150 3310 y Fs(IGNOREEOF)630 +3420 y Ft(Con)m(trols)e(the)h(action)g(of)f(the)g(shell)g(on)g(receipt) h(of)f(an)g Fs(EOF)f Ft(c)m(haracter)i(as)g(the)f(sole)h(input.)630 -3168 y(If)i(set,)i(the)f(v)-5 b(alue)32 b(denotes)f(the)g(n)m(um)m(b)s +3529 y(If)i(set,)i(the)f(v)-5 b(alue)32 b(denotes)f(the)g(n)m(um)m(b)s (er)f(of)h(consecutiv)m(e)i Fs(EOF)d Ft(c)m(haracters)i(that)f(can)h(b) -s(e)630 3278 y(read)40 b(as)f(the)h(\014rst)f(c)m(haracter)i(on)f(an)f +s(e)630 3639 y(read)40 b(as)f(the)h(\014rst)f(c)m(haracter)i(on)f(an)f (input)g(line)h(b)s(efore)f(the)h(shell)g(will)g(exit.)70 -b(If)39 b(the)630 3387 y(v)-5 b(ariable)38 b(exists)f(but)f(do)s(es)g +b(If)39 b(the)630 3748 y(v)-5 b(ariable)38 b(exists)f(but)f(do)s(es)g (not)h(ha)m(v)m(e)h(a)g(n)m(umeric)e(v)-5 b(alue)37 b(\(or)h(has)e(no)h -(v)-5 b(alue\))37 b(then)g(the)630 3497 y(default)31 +(v)-5 b(alue\))37 b(then)g(the)630 3858 y(default)31 b(is)g(10.)43 b(If)30 b(the)h(v)-5 b(ariable)31 b(do)s(es)g(not)g (exist,)h(then)e Fs(EOF)g Ft(signi\014es)h(the)g(end)f(of)h(input)630 -3606 y(to)g(the)g(shell.)41 b(This)29 b(is)i(only)f(in)g(e\013ect)i -(for)e(in)m(teractiv)m(e)j(shells.)150 3756 y Fs(INPUTRC)144 +3968 y(to)g(the)g(shell.)41 b(This)29 b(is)i(only)f(in)g(e\013ect)i +(for)e(in)m(teractiv)m(e)j(shells.)150 4119 y Fs(INPUTRC)144 b Ft(The)68 b(name)h(of)f(the)h(Readline)g(initialization)j(\014le,)78 -b(o)m(v)m(erriding)69 b(the)g(default)g(of)630 3866 y(`)p -Fs(~/.inputrc)p Ft('.)150 4015 y Fs(LANG)288 b Ft(Used)28 +b(o)m(v)m(erriding)69 b(the)g(default)g(of)630 4228 y(`)p +Fs(~/.inputrc)p Ft('.)150 4380 y Fs(LANG)288 b Ft(Used)28 b(to)h(determine)f(the)g(lo)s(cale)h(category)h(for)e(an)m(y)h -(category)h(not)e(sp)s(eci\014cally)g(selected)630 4125 +(category)h(not)e(sp)s(eci\014cally)g(selected)630 4489 y(with)i(a)h(v)-5 b(ariable)31 b(starting)g(with)f Fs(LC_)p -Ft(.)150 4274 y Fs(LC_ALL)192 b Ft(This)28 b(v)-5 b(ariable)29 +Ft(.)150 4641 y Fs(LC_ALL)192 b Ft(This)28 b(v)-5 b(ariable)29 b(o)m(v)m(errides)h(the)f(v)-5 b(alue)29 b(of)g Fs(LANG)f Ft(and)g(an)m(y)h(other)g Fs(LC_)f Ft(v)-5 b(ariable)29 -b(sp)s(ecifying)630 4384 y(a)i(lo)s(cale)h(category)-8 -b(.)150 4533 y Fs(LC_COLLATE)630 4643 y Ft(This)37 b(v)-5 +b(sp)s(ecifying)630 4750 y(a)i(lo)s(cale)h(category)-8 +b(.)150 4902 y Fs(LC_COLLATE)630 5011 y Ft(This)37 b(v)-5 b(ariable)38 b(determines)g(the)g(collation)i(order)d(used)g(when)f -(sorting)i(the)g(results)g(of)630 4752 y(\014lename)e(expansion,)i(and) +(sorting)i(the)g(results)g(of)630 5121 y(\014lename)e(expansion,)i(and) e(determines)g(the)h(b)s(eha)m(vior)f(of)g(range)h(expressions,)h -(equiv-)630 4862 y(alence)e(classes,)h(and)e(collating)i(sequences)e +(equiv-)630 5230 y(alence)e(classes,)h(and)e(collating)i(sequences)e (within)f(\014lename)h(expansion)g(and)f(pattern)630 -4971 y(matc)m(hing)d(\(see)h(Section)f(3.5.8)h([Filename)g(Expansion],) -e(page)h(25\).)150 5121 y Fs(LC_CTYPE)96 b Ft(This)36 -b(v)-5 b(ariable)37 b(determines)f(the)h(in)m(terpretation)h(of)f(c)m -(haracters)h(and)e(the)g(b)s(eha)m(vior)h(of)630 5230 -y(c)m(haracter)46 b(classes)g(within)e(\014lename)h(expansion)g(and)f -(pattern)h(matc)m(hing)h(\(see)f(Sec-)630 5340 y(tion)31 -b(3.5.8)h([Filename)g(Expansion],)e(page)h(25\).)p eop -end +5340 y(matc)m(hing)d(\(see)h(Section)f(3.5.8)h([Filename)g(Expansion],) +e(page)h(25\).)p eop end %%Page: 70 76 TeXDict begin 70 75 bop 150 -116 a Ft(70)2572 b(Bash)31 -b(Reference)g(Man)m(ual)150 299 y Fs(LC_MESSAGES)630 -408 y Ft(This)25 b(v)-5 b(ariable)27 b(determines)f(the)g(lo)s(cale)i -(used)d(to)i(translate)g(double-quoted)f(strings)g(pre-)630 -518 y(ceded)31 b(b)m(y)f(a)h(`)p Fs($)p Ft(')f(\(see)h(Section)h -(3.1.2.5)g([Lo)s(cale)g(T)-8 b(ranslation],)32 b(page)f(7\).)150 -679 y Fs(LC_NUMERIC)630 788 y Ft(This)f(v)-5 b(ariable)31 -b(determines)f(the)h(lo)s(cale)h(category)g(used)e(for)g(n)m(um)m(b)s -(er)f(formatting.)150 949 y Fs(LINENO)192 b Ft(The)30 -b(line)h(n)m(um)m(b)s(er)e(in)h(the)g(script)h(or)f(shell)g(function)h -(curren)m(tly)f(executing.)150 1110 y Fs(LINES)240 b -Ft(Used)25 b(b)m(y)g(the)g Fs(select)e Ft(builtin)i(command)g(to)h -(determine)f(the)g(column)g(length)g(for)g(prin)m(t-)630 -1219 y(ing)31 b(selection)h(lists.)41 b(Automatically)33 -b(set)e(up)s(on)e(receipt)i(of)f(a)h Fs(SIGWINCH)p Ft(.)150 -1380 y Fs(MACHTYPE)96 b Ft(A)26 b(string)g(that)h(fully)f(describ)s(es) -f(the)h(system)g(t)m(yp)s(e)h(on)f(whic)m(h)f(Bash)i(is)f(executing,)i -(in)e(the)630 1490 y(standard)k Fl(gnu)g Fq(cpu-compan)m(y-system)h -Ft(format.)150 1650 y Fs(MAILCHECK)630 1760 y Ft(Ho)m(w)d(often)g(\(in) +b(Reference)g(Man)m(ual)150 299 y Fs(LC_CTYPE)96 b Ft(This)36 +b(v)-5 b(ariable)37 b(determines)f(the)h(in)m(terpretation)h(of)f(c)m +(haracters)h(and)e(the)g(b)s(eha)m(vior)h(of)630 408 +y(c)m(haracter)46 b(classes)g(within)e(\014lename)h(expansion)g(and)f +(pattern)h(matc)m(hing)h(\(see)f(Sec-)630 518 y(tion)31 +b(3.5.8)h([Filename)g(Expansion],)e(page)h(25\).)150 +679 y Fs(LC_MESSAGES)630 788 y Ft(This)25 b(v)-5 b(ariable)27 +b(determines)f(the)g(lo)s(cale)i(used)d(to)i(translate)g(double-quoted) +f(strings)g(pre-)630 898 y(ceded)31 b(b)m(y)f(a)h(`)p +Fs($)p Ft(')f(\(see)h(Section)h(3.1.2.5)g([Lo)s(cale)g(T)-8 +b(ranslation],)32 b(page)f(7\).)150 1059 y Fs(LC_NUMERIC)630 +1168 y Ft(This)f(v)-5 b(ariable)31 b(determines)f(the)h(lo)s(cale)h +(category)g(used)e(for)g(n)m(um)m(b)s(er)f(formatting.)150 +1329 y Fs(LINENO)192 b Ft(The)30 b(line)h(n)m(um)m(b)s(er)e(in)h(the)g +(script)h(or)f(shell)g(function)h(curren)m(tly)f(executing.)150 +1490 y Fs(LINES)240 b Ft(Used)25 b(b)m(y)g(the)g Fs(select)e +Ft(builtin)i(command)g(to)h(determine)f(the)g(column)g(length)g(for)g +(prin)m(t-)630 1599 y(ing)31 b(selection)h(lists.)41 +b(Automatically)33 b(set)e(up)s(on)e(receipt)i(of)f(a)h +Fs(SIGWINCH)p Ft(.)150 1760 y Fs(MACHTYPE)96 b Ft(A)26 +b(string)g(that)h(fully)f(describ)s(es)f(the)h(system)g(t)m(yp)s(e)h +(on)f(whic)m(h)f(Bash)i(is)f(executing,)i(in)e(the)630 +1870 y(standard)k Fl(gnu)g Fq(cpu-compan)m(y-system)h +Ft(format.)150 2030 y Fs(MAILCHECK)630 2140 y Ft(Ho)m(w)d(often)g(\(in) g(seconds\))g(that)g(the)f(shell)h(should)f(c)m(hec)m(k)i(for)e(mail)h -(in)f(the)h(\014les)g(sp)s(eci\014ed)630 1870 y(in)i(the)h +(in)f(the)h(\014les)g(sp)s(eci\014ed)630 2250 y(in)i(the)h Fs(MAILPATH)e Ft(or)i Fs(MAIL)e Ft(v)-5 b(ariables.)43 b(The)30 b(default)h(is)f(60)i(seconds.)42 b(When)30 -b(it)h(is)g(time)630 1979 y(to)37 b(c)m(hec)m(k)h(for)e(mail,)j(the)e +b(it)h(is)g(time)630 2359 y(to)37 b(c)m(hec)m(k)h(for)e(mail,)j(the)e (shell)f(do)s(es)g(so)h(b)s(efore)f(displa)m(ying)h(the)f(primary)g -(prompt.)57 b(If)630 2089 y(this)37 b(v)-5 b(ariable)38 +(prompt.)57 b(If)630 2469 y(this)37 b(v)-5 b(ariable)38 b(is)f(unset,)h(or)f(set)h(to)g(a)f(v)-5 b(alue)38 b(that)f(is)g(not)h -(a)f(n)m(um)m(b)s(er)f(greater)i(than)f(or)630 2198 y(equal)31 +(a)f(n)m(um)m(b)s(er)f(greater)i(than)f(or)630 2578 y(equal)31 b(to)g(zero,)g(the)g(shell)g(disables)f(mail)h(c)m(hec)m(king.)150 -2359 y Fs(MAPFILE)144 b Ft(An)35 b(arra)m(y)h(v)-5 b(ariable)36 +2739 y Fs(MAPFILE)144 b Ft(An)35 b(arra)m(y)h(v)-5 b(ariable)36 b(created)g(to)h(hold)e(the)g(text)i(read)e(b)m(y)g(the)h -Fs(mapfile)d Ft(builtin)i(when)630 2469 y(no)30 b(v)-5 -b(ariable)31 b(name)g(is)f(supplied.)150 2629 y Fs(OLDPWD)192 +Fs(mapfile)d Ft(builtin)i(when)630 2849 y(no)30 b(v)-5 +b(ariable)31 b(name)g(is)f(supplied.)150 3009 y Fs(OLDPWD)192 b Ft(The)30 b(previous)g(w)m(orking)g(directory)h(as)g(set)g(b)m(y)f -(the)h Fs(cd)e Ft(builtin.)150 2790 y Fs(OPTERR)192 b +(the)h Fs(cd)e Ft(builtin.)150 3170 y Fs(OPTERR)192 b Ft(If)35 b(set)i(to)f(the)h(v)-5 b(alue)36 b(1,)i(Bash)e(displa)m(ys)g (error)f(messages)i(generated)g(b)m(y)f(the)g Fs(getopts)630 -2900 y Ft(builtin)30 b(command.)150 3061 y Fs(OSTYPE)192 +3280 y Ft(builtin)30 b(command.)150 3440 y Fs(OSTYPE)192 b Ft(A)30 b(string)h(describing)f(the)g(op)s(erating)h(system)g(Bash)f -(is)h(running)d(on.)150 3221 y Fs(PIPESTATUS)630 3331 +(is)h(running)d(on.)150 3601 y Fs(PIPESTATUS)630 3711 y Ft(An)23 b(arra)m(y)h(v)-5 b(ariable)24 b(\(see)h(Section)f(6.7)h ([Arra)m(ys],)g(page)f(82\))h(con)m(taining)g(a)f(list)g(of)g(exit)g -(sta-)630 3440 y(tus)h(v)-5 b(alues)27 b(from)e(the)h(pro)s(cesses)g +(sta-)630 3820 y(tus)h(v)-5 b(alues)27 b(from)e(the)h(pro)s(cesses)g (in)f(the)h(most-recen)m(tly-executed)j(foreground)c(pip)s(eline)630 -3550 y(\(whic)m(h)30 b(ma)m(y)h(con)m(tain)h(only)f(a)f(single)h -(command\).)150 3711 y Fs(POSIXLY_CORRECT)630 3820 y +3930 y(\(whic)m(h)30 b(ma)m(y)h(con)m(tain)h(only)f(a)f(single)h +(command\).)150 4091 y Fs(POSIXLY_CORRECT)630 4200 y Ft(If)h(this)h(v)-5 b(ariable)34 b(is)f(in)f(the)h(en)m(vironmen)m(t)h (when)d Fs(bash)h Ft(starts,)i(the)f(shell)g(en)m(ters)h -Fl(posix)630 3930 y Ft(mo)s(de)22 b(\(see)h(Section)g(6.11)h([Bash)e +Fl(posix)630 4310 y Ft(mo)s(de)22 b(\(see)h(Section)g(6.11)h([Bash)e (POSIX)f(Mo)s(de],)k(page)e(86\))g(b)s(efore)f(reading)g(the)g(startup) -630 4040 y(\014les,)32 b(as)f(if)h(the)f(`)p Fs(--posix)p +630 4419 y(\014les,)32 b(as)f(if)h(the)f(`)p Fs(--posix)p Ft(')f(in)m(v)m(o)s(cation)j(option)f(had)f(b)s(een)g(supplied.)42 -b(If)31 b(it)h(is)f(set)h(while)630 4149 y(the)f(shell)f(is)h(running,) +b(If)31 b(it)h(is)f(set)h(while)630 4529 y(the)f(shell)f(is)h(running,) d Fs(bash)i Ft(enables)g Fl(posix)g Ft(mo)s(de,)g(as)h(if)f(the)h -(command)870 4284 y Fs(set)47 b(-o)g(posix)630 4419 y -Ft(had)30 b(b)s(een)f(executed.)150 4580 y Fs(PPID)288 +(command)870 4664 y Fs(set)47 b(-o)g(posix)630 4799 y +Ft(had)30 b(b)s(een)f(executed.)150 4960 y Fs(PPID)288 b Ft(The)30 b(pro)s(cess)g Fl(id)g Ft(of)h(the)f(shell's)h(paren)m(t)g (pro)s(cess.)40 b(This)30 b(v)-5 b(ariable)31 b(is)f(readonly)-8 -b(.)150 4741 y Fs(PROMPT_COMMAND)630 4850 y Ft(If)32 +b(.)150 5121 y Fs(PROMPT_COMMAND)630 5230 y Ft(If)32 b(set,)h(the)f(v)-5 b(alue)33 b(is)f(in)m(terpreted)g(as)g(a)h(command) f(to)h(execute)g(b)s(efore)f(the)g(prin)m(ting)g(of)630 -4960 y(eac)m(h)g(primary)d(prompt)g(\()p Fs($PS1)p Ft(\).)150 -5121 y Fs(PROMPT_DIRTRIM)630 5230 y Ft(If)e(set)g(to)h(a)g(n)m(um)m(b)s -(er)e(greater)i(than)f(zero,)i(the)e(v)-5 b(alue)28 b(is)f(used)g(as)g -(the)h(n)m(um)m(b)s(er)e(of)h(trailing)630 5340 y(directory)35 -b(comp)s(onen)m(ts)g(to)h(retain)f(when)f(expanding)g(the)h -Fs(\\w)f Ft(and)g Fs(\\W)g Ft(prompt)g(string)p eop end +5340 y(eac)m(h)g(primary)d(prompt)g(\()p Fs($PS1)p Ft(\).)p +eop end %%Page: 71 77 TeXDict begin 71 76 bop 150 -116 a Ft(Chapter)30 b(5:)41 -b(Shell)30 b(V)-8 b(ariables)2459 b(71)630 299 y(escap)s(es)27 -b(\(see)g(Section)g(6.9)h([Prin)m(ting)f(a)g(Prompt],)g(page)g(84\).)40 -b(Characters)27 b(remo)m(v)m(ed)h(are)630 408 y(replaced)j(with)f(an)g -(ellipsis.)150 573 y Fs(PS3)336 b Ft(The)34 b(v)-5 b(alue)35 +b(Shell)30 b(V)-8 b(ariables)2459 b(71)150 299 y Fs(PROMPT_DIRTRIM)630 +408 y Ft(If)27 b(set)g(to)h(a)g(n)m(um)m(b)s(er)e(greater)i(than)f +(zero,)i(the)e(v)-5 b(alue)28 b(is)f(used)g(as)g(the)h(n)m(um)m(b)s(er) +e(of)h(trailing)630 518 y(directory)35 b(comp)s(onen)m(ts)g(to)h +(retain)f(when)f(expanding)g(the)h Fs(\\w)f Ft(and)g +Fs(\\W)g Ft(prompt)g(string)630 628 y(escap)s(es)27 b(\(see)g(Section)g +(6.9)h([Prin)m(ting)f(a)g(Prompt],)g(page)g(84\).)40 +b(Characters)27 b(remo)m(v)m(ed)h(are)630 737 y(replaced)j(with)f(an)g +(ellipsis.)150 892 y Fs(PS3)336 b Ft(The)34 b(v)-5 b(alue)35 b(of)f(this)g(v)-5 b(ariable)35 b(is)g(used)e(as)i(the)f(prompt)g(for)g -(the)g Fs(select)f Ft(command.)52 b(If)630 682 y(this)30 +(the)g Fs(select)f Ft(command.)52 b(If)630 1002 y(this)30 b(v)-5 b(ariable)31 b(is)g(not)f(set,)i(the)e Fs(select)f -Ft(command)h(prompts)f(with)h(`)p Fs(#?)g Ft(')150 847 +Ft(command)h(prompts)f(with)h(`)p Fs(#?)g Ft(')150 1157 y Fs(PS4)336 b Ft(The)20 b(v)-5 b(alue)22 b(is)e(the)h(prompt)f(prin)m (ted)h(b)s(efore)f(the)h(command)g(line)g(is)g(ec)m(ho)s(ed)g(when)f -(the)h(`)p Fs(-x)p Ft(')630 956 y(option)32 b(is)f(set)h(\(see)g -(Section)h(4.3.1)g([The)e(Set)g(Builtin],)i(page)f(53\).)45 -b(The)31 b(\014rst)f(c)m(haracter)630 1066 y(of)k Fs(PS4)g +(the)h(`)p Fs(-x)p Ft(')630 1267 y(option)32 b(is)f(set)h(\(see)g +(Section)h(4.3.1)g([The)e(Set)g(Builtin],)i(page)f(54\).)45 +b(The)31 b(\014rst)f(c)m(haracter)630 1377 y(of)k Fs(PS4)g Ft(is)g(replicated)i(m)m(ultiple)f(times,)h(as)e(necessary)-8 b(,)37 b(to)e(indicate)g(m)m(ultiple)g(lev)m(els)h(of)630 -1176 y(indirection.)41 b(The)30 b(default)h(is)f(`)p -Fs(+)g Ft('.)150 1340 y Fs(PWD)336 b Ft(The)30 b(curren)m(t)g(w)m +1486 y(indirection.)41 b(The)30 b(default)h(is)f(`)p +Fs(+)g Ft('.)150 1641 y Fs(PWD)336 b Ft(The)30 b(curren)m(t)g(w)m (orking)h(directory)g(as)f(set)h(b)m(y)f(the)h Fs(cd)f -Ft(builtin.)150 1504 y Fs(RANDOM)192 b Ft(Eac)m(h)30 +Ft(builtin.)150 1797 y Fs(RANDOM)192 b Ft(Eac)m(h)30 b(time)g(this)f(parameter)g(is)g(referenced,)h(a)f(random)g(in)m(teger) -h(b)s(et)m(w)m(een)g(0)f(and)g(32767)630 1614 y(is)i(generated.)43 +h(b)s(et)m(w)m(een)g(0)f(and)g(32767)630 1906 y(is)i(generated.)43 b(Assigning)31 b(a)g(v)-5 b(alue)31 b(to)g(this)g(v)-5 b(ariable)31 b(seeds)g(the)g(random)f(n)m(um)m(b)s(er)f(gen-)630 -1724 y(erator.)150 1888 y Fs(READLINE_LINE)630 1998 y +2016 y(erator.)150 2171 y Fs(READLINE_LINE)630 2281 y Ft(The)e(con)m(ten)m(ts)i(of)f(the)g(Readline)g(line)g(bu\013er,)f(for) h(use)f(with)g(`)p Fs(bind)j(-x)p Ft(')d(\(see)h(Section)h(4.2)630 -2107 y([Bash)i(Builtins],)g(page)g(43\).)150 2271 y Fs(READLINE_POINT) -630 2381 y Ft(The)23 b(p)s(osition)g(of)g(the)h(insertion)f(p)s(oin)m +2390 y([Bash)i(Builtins],)g(page)g(43\).)150 2545 y Fs(READLINE_POINT) +630 2655 y Ft(The)23 b(p)s(osition)g(of)g(the)h(insertion)f(p)s(oin)m (t)g(in)g(the)g(Readline)h(line)f(bu\013er,)h(for)f(use)g(with)g(`)p -Fs(bind)630 2491 y(-x)p Ft(')30 b(\(see)h(Section)h(4.2)f([Bash)g -(Builtins],)g(page)g(43\).)150 2655 y Fs(REPLY)240 b +Fs(bind)630 2765 y(-x)p Ft(')30 b(\(see)h(Section)h(4.2)f([Bash)g +(Builtins],)g(page)g(43\).)150 2920 y Fs(REPLY)240 b Ft(The)30 b(default)g(v)-5 b(ariable)32 b(for)e(the)g -Fs(read)g Ft(builtin.)150 2819 y Fs(SECONDS)144 b Ft(This)40 +Fs(read)g Ft(builtin.)150 3075 y Fs(SECONDS)144 b Ft(This)40 b(v)-5 b(ariable)41 b(expands)f(to)h(the)g(n)m(um)m(b)s(er)e(of)i (seconds)g(since)g(the)f(shell)h(w)m(as)g(started.)630 -2929 y(Assignmen)m(t)i(to)g(this)g(v)-5 b(ariable)43 +3185 y(Assignmen)m(t)i(to)g(this)g(v)-5 b(ariable)43 b(resets)g(the)g(coun)m(t)g(to)g(the)g(v)-5 b(alue)43 -b(assigned,)j(and)c(the)630 3039 y(expanded)35 b(v)-5 +b(assigned,)j(and)c(the)630 3294 y(expanded)35 b(v)-5 b(alue)36 b(b)s(ecomes)h(the)f(v)-5 b(alue)36 b(assigned)g(plus)f(the)h -(n)m(um)m(b)s(er)f(of)h(seconds)g(since)630 3148 y(the)31 -b(assignmen)m(t.)150 3313 y Fs(SHELL)240 b Ft(The)29 +(n)m(um)m(b)s(er)f(of)h(seconds)g(since)630 3404 y(the)31 +b(assignmen)m(t.)150 3559 y Fs(SHELL)240 b Ft(The)29 b(full)h(pathname)g(to)h(the)f(shell)g(is)g(k)m(ept)g(in)g(this)g(en)m (vironmen)m(t)g(v)-5 b(ariable.)42 b(If)29 b(it)i(is)f(not)630 -3422 y(set)36 b(when)f(the)h(shell)g(starts,)i(Bash)e(assigns)h(to)f +3669 y(set)36 b(when)f(the)h(shell)g(starts,)i(Bash)e(assigns)h(to)f (it)h(the)f(full)f(pathname)h(of)g(the)g(curren)m(t)630 -3532 y(user's)30 b(login)h(shell.)150 3696 y Fs(SHELLOPTS)630 -3806 y Ft(A)g(colon-separated)h(list)f(of)g(enabled)f(shell)h(options.) +3778 y(user's)30 b(login)h(shell.)150 3934 y Fs(SHELLOPTS)630 +4043 y Ft(A)g(colon-separated)h(list)f(of)g(enabled)f(shell)h(options.) 41 b(Eac)m(h)31 b(w)m(ord)f(in)g(the)h(list)g(is)g(a)g(v)-5 -b(alid)630 3915 y(argumen)m(t)24 b(for)f(the)h(`)p Fs(-o)p +b(alid)630 4153 y(argumen)m(t)24 b(for)f(the)h(`)p Fs(-o)p Ft(')f(option)h(to)g(the)g Fs(set)f Ft(builtin)g(command)g(\(see)i -(Section)f(4.3.1)h([The)630 4025 y(Set)k(Builtin],)h(page)f(53\).)42 +(Section)f(4.3.1)h([The)630 4262 y(Set)k(Builtin],)h(page)f(54\).)42 b(The)28 b(options)h(app)s(earing)f(in)g Fs(SHELLOPTS)e -Ft(are)j(those)h(rep)s(orted)630 4134 y(as)g(`)p Fs(on)p +Ft(are)j(those)h(rep)s(orted)630 4372 y(as)g(`)p Fs(on)p Ft(')f(b)m(y)h(`)p Fs(set)g(-o)p Ft('.)40 b(If)29 b(this)h(v)-5 b(ariable)30 b(is)g(in)f(the)h(en)m(vironmen)m(t)g(when)f(Bash)h -(starts)g(up,)630 4244 y(eac)m(h)41 b(shell)e(option)h(in)f(the)h(list) +(starts)g(up,)630 4482 y(eac)m(h)41 b(shell)e(option)h(in)f(the)h(list) g(will)f(b)s(e)g(enabled)h(b)s(efore)f(reading)g(an)m(y)h(startup)f -(\014les.)630 4354 y(This)30 b(v)-5 b(ariable)31 b(is)f(readonly)-8 -b(.)150 4518 y Fs(SHLVL)240 b Ft(Incremen)m(ted)21 b(b)m(y)g(one)g(eac) +(\014les.)630 4591 y(This)30 b(v)-5 b(ariable)31 b(is)f(readonly)-8 +b(.)150 4746 y Fs(SHLVL)240 b Ft(Incremen)m(ted)21 b(b)m(y)g(one)g(eac) m(h)h(time)f(a)h(new)e(instance)h(of)g(Bash)g(is)g(started.)38 -b(This)20 b(is)h(in)m(tended)630 4628 y(to)31 b(b)s(e)f(a)h(coun)m(t)g +b(This)20 b(is)h(in)m(tended)630 4856 y(to)31 b(b)s(e)f(a)h(coun)m(t)g (of)f(ho)m(w)h(deeply)f(y)m(our)g(Bash)h(shells)f(are)h(nested.)150 -4792 y Fs(TIMEFORMAT)630 4902 y Ft(The)f(v)-5 b(alue)32 +5011 y Fs(TIMEFORMAT)630 5121 y Ft(The)f(v)-5 b(alue)32 b(of)f(this)g(parameter)g(is)g(used)f(as)h(a)g(format)h(string)f(sp)s -(ecifying)f(ho)m(w)h(the)g(tim-)630 5011 y(ing)37 b(information)f(for)h +(ecifying)f(ho)m(w)h(the)g(tim-)630 5230 y(ing)37 b(information)f(for)h (pip)s(elines)f(pre\014xed)f(with)h(the)h Fs(time)e Ft(reserv)m(ed)i(w) -m(ord)f(should)g(b)s(e)630 5121 y(displa)m(y)m(ed.)k(The)27 +m(ord)f(should)g(b)s(e)630 5340 y(displa)m(y)m(ed.)k(The)27 b(`)p Fs(\045)p Ft(')h(c)m(haracter)h(in)m(tro)s(duces)e(an)h(escap)s -(e)g(sequence)g(that)g(is)f(expanded)g(to)630 5230 y(a)37 -b(time)g(v)-5 b(alue)36 b(or)h(other)f(information.)59 -b(The)36 b(escap)s(e)g(sequences)h(and)e(their)i(meanings)630 -5340 y(are)31 b(as)f(follo)m(ws;)i(the)f(braces)f(denote)h(optional)h -(p)s(ortions.)p eop end +(e)g(sequence)g(that)g(is)f(expanded)g(to)p eop end %%Page: 72 78 TeXDict begin 72 77 bop 150 -116 a Ft(72)2572 b(Bash)31 -b(Reference)g(Man)m(ual)630 299 y Fs(\045\045)384 b Ft(A)30 -b(literal)i(`)p Fs(\045)p Ft('.)630 458 y Fs(\045[)p -Fi(p)11 b Fs(][l]R)85 b Ft(The)30 b(elapsed)h(time)g(in)f(seconds.)630 -618 y Fs(\045[)p Fi(p)11 b Fs(][l]U)85 b Ft(The)30 b(n)m(um)m(b)s(er)f -(of)h(CPU)g(seconds)h(sp)s(en)m(t)f(in)g(user)f(mo)s(de.)630 -777 y Fs(\045[)p Fi(p)11 b Fs(][l]S)85 b Ft(The)30 b(n)m(um)m(b)s(er)f -(of)h(CPU)g(seconds)h(sp)s(en)m(t)f(in)g(system)g(mo)s(de.)630 -936 y Fs(\045P)384 b Ft(The)30 b(CPU)g(p)s(ercen)m(tage,)i(computed)e -(as)h(\(\045U)f Fs(+)g Ft(\045S\))g(/)h(\045R.)630 1096 +b(Reference)g(Man)m(ual)630 299 y(a)37 b(time)g(v)-5 +b(alue)36 b(or)h(other)f(information.)59 b(The)36 b(escap)s(e)g +(sequences)h(and)e(their)i(meanings)630 408 y(are)31 +b(as)f(follo)m(ws;)i(the)f(braces)f(denote)h(optional)h(p)s(ortions.) +630 568 y Fs(\045\045)384 b Ft(A)30 b(literal)i(`)p Fs(\045)p +Ft('.)630 727 y Fs(\045[)p Fi(p)11 b Fs(][l]R)85 b Ft(The)30 +b(elapsed)h(time)g(in)f(seconds.)630 887 y Fs(\045[)p +Fi(p)11 b Fs(][l]U)85 b Ft(The)30 b(n)m(um)m(b)s(er)f(of)h(CPU)g +(seconds)h(sp)s(en)m(t)f(in)g(user)f(mo)s(de.)630 1046 +y Fs(\045[)p Fi(p)11 b Fs(][l]S)85 b Ft(The)30 b(n)m(um)m(b)s(er)f(of)h +(CPU)g(seconds)h(sp)s(en)m(t)f(in)g(system)g(mo)s(de.)630 +1205 y Fs(\045P)384 b Ft(The)30 b(CPU)g(p)s(ercen)m(tage,)i(computed)e +(as)h(\(\045U)f Fs(+)g Ft(\045S\))g(/)h(\045R.)630 1365 y(The)23 b(optional)j Fq(p)g Ft(is)e(a)g(digit)h(sp)s(ecifying)e(the)h (precision,)i(the)e(n)m(um)m(b)s(er)f(of)h(fractional)h(digits)630 -1205 y(after)36 b(a)f(decimal)i(p)s(oin)m(t.)55 b(A)35 +1474 y(after)36 b(a)f(decimal)i(p)s(oin)m(t.)55 b(A)35 b(v)-5 b(alue)36 b(of)f(0)h(causes)g(no)f(decimal)h(p)s(oin)m(t)f(or)h -(fraction)g(to)g(b)s(e)630 1315 y(output.)48 b(A)m(t)34 +(fraction)g(to)g(b)s(e)630 1584 y(output.)48 b(A)m(t)34 b(most)f(three)g(places)h(after)f(the)g(decimal)h(p)s(oin)m(t)f(ma)m(y) -h(b)s(e)e(sp)s(eci\014ed;)i(v)-5 b(alues)630 1425 y(of)31 +h(b)s(e)e(sp)s(eci\014ed;)i(v)-5 b(alues)630 1694 y(of)31 b Fq(p)h Ft(greater)g(than)e(3)h(are)f(c)m(hanged)h(to)g(3.)42 b(If)29 b Fq(p)k Ft(is)d(not)h(sp)s(eci\014ed,)f(the)h(v)-5 -b(alue)30 b(3)h(is)g(used.)630 1559 y(The)54 b(optional)h +b(alue)30 b(3)h(is)g(used.)630 1828 y(The)54 b(optional)h Fs(l)f Ft(sp)s(eci\014es)g(a)h(longer)f(format,)61 b(including)54 -b(min)m(utes,)61 b(of)54 b(the)g(form)630 1669 y Fq(MM)10 +b(min)m(utes,)61 b(of)54 b(the)g(form)630 1938 y Fq(MM)10 b Ft(m)p Fq(SS)5 b Ft(.)p Fq(FF)i Ft(s.)102 b(The)50 b(v)-5 b(alue)51 b(of)g Fq(p)i Ft(determines)e(whether)f(or)h(not)f -(the)h(fraction)h(is)630 1778 y(included.)630 1913 y(If)30 +(the)h(fraction)h(is)630 2047 y(included.)630 2182 y(If)30 b(this)g(v)-5 b(ariable)31 b(is)g(not)f(set,)i(Bash)e(acts)h(as)g(if)f -(it)h(had)f(the)h(v)-5 b(alue)870 2047 y Fs +(it)h(had)f(the)h(v)-5 b(alue)870 2316 y Fs ($'\\nreal\\t\0453lR\\nuser\\t\0453)o(lU\\n)o(sys\\)o(t\0453)o(lS')630 -2182 y Ft(If)37 b(the)g(v)-5 b(alue)38 b(is)f(n)m(ull,)i(no)f(timing)f +2451 y Ft(If)37 b(the)g(v)-5 b(alue)38 b(is)f(n)m(ull,)i(no)f(timing)f (information)h(is)f(displa)m(y)m(ed.)62 b(A)37 b(trailing)i(newline)e -(is)630 2291 y(added)30 b(when)f(the)i(format)f(string)h(is)f(displa)m -(y)m(ed.)150 2451 y Fs(TMOUT)240 b Ft(If)22 b(set)h(to)g(a)g(v)-5 +(is)630 2560 y(added)30 b(when)f(the)i(format)f(string)h(is)f(displa)m +(y)m(ed.)150 2720 y Fs(TMOUT)240 b Ft(If)22 b(set)h(to)g(a)g(v)-5 b(alue)23 b(greater)h(than)e(zero,)j Fs(TMOUT)d Ft(is)g(treated)i(as)e -(the)h(default)g(timeout)g(for)g(the)630 2560 y Fs(read)31 +(the)h(default)g(timeout)g(for)g(the)630 2829 y Fs(read)31 b Ft(builtin)h(\(see)h(Section)f(4.2)i([Bash)e(Builtins],)h(page)g -(43\).)47 b(The)32 b Fs(select)e Ft(command)630 2670 +(43\).)47 b(The)32 b Fs(select)e Ft(command)630 2939 y(\(see)f(Section)h(3.2.4.2)g([Conditional)g(Constructs],)e(page)i -(10\))f(terminates)g(if)g(input)e(do)s(es)630 2780 y(not)k(arriv)m(e)g +(10\))f(terminates)g(if)g(input)e(do)s(es)630 3049 y(not)k(arriv)m(e)g (after)g Fs(TMOUT)e Ft(seconds)h(when)f(input)h(is)g(coming)h(from)f(a) -h(terminal.)630 2914 y(In)25 b(an)h(in)m(teractiv)m(e)i(shell,)g(the)e +h(terminal.)630 3183 y(In)25 b(an)h(in)m(teractiv)m(e)i(shell,)g(the)e (v)-5 b(alue)26 b(is)g(in)m(terpreted)g(as)g(the)g(n)m(um)m(b)s(er)f -(of)h(seconds)f(to)i(w)m(ait)630 3024 y(for)32 b(input)f(after)i +(of)h(seconds)f(to)i(w)m(ait)630 3293 y(for)32 b(input)f(after)i (issuing)f(the)g(primary)g(prompt)f(when)g(the)i(shell)f(is)h(in)m -(teractiv)m(e.)49 b(Bash)630 3133 y(terminates)31 b(after)g(that)g(n)m +(teractiv)m(e.)49 b(Bash)630 3402 y(terminates)31 b(after)g(that)g(n)m (um)m(b)s(er)e(of)i(seconds)f(if)g(input)g(do)s(es)g(not)g(arriv)m(e.) -150 3293 y Fs(TMPDIR)192 b Ft(If)39 b(set,)j(Bash)e(uses)f(its)h(v)-5 +150 3562 y Fs(TMPDIR)192 b Ft(If)39 b(set,)j(Bash)e(uses)f(its)h(v)-5 b(alue)40 b(as)f(the)h(name)f(of)h(a)g(directory)g(in)f(whic)m(h)g -(Bash)h(creates)630 3402 y(temp)s(orary)30 b(\014les)g(for)g(the)h -(shell's)g(use.)150 3562 y Fs(UID)336 b Ft(The)30 b(n)m(umeric)g(real)h +(Bash)h(creates)630 3671 y(temp)s(orary)30 b(\014les)g(for)g(the)h +(shell's)g(use.)150 3831 y Fs(UID)336 b Ft(The)30 b(n)m(umeric)g(real)h (user)f(id)g(of)g(the)h(curren)m(t)f(user.)40 b(This)30 b(v)-5 b(ariable)31 b(is)f(readonly)-8 b(.)p eop end %%Page: 73 79 @@ -9965,7 +9996,7 @@ b([-o)k Fi(option)11 b Fs(])46 b([-O)h Fi(shopt_option)11 b Fs(])43 b([)p Fi(ar-)390 1460 y(gument)57 b Fs(...)o(])275 1592 y Ft(All)31 b(of)g(the)f(single-c)m(haracter)k(options)d(used)f (with)g(the)h Fs(set)f Ft(builtin)g(\(see)h(Section)h(4.3.1)g([The)f -(Set)150 1702 y(Builtin],)45 b(page)c(53\))i(can)e(b)s(e)f(used)h(as)g +(Set)150 1702 y(Builtin],)45 b(page)c(54\))i(can)e(b)s(e)f(used)h(as)g (options)g(when)f(the)i(shell)f(is)g(in)m(v)m(ok)m(ed.)74 b(In)41 b(addition,)j(there)150 1811 y(are)38 b(sev)m(eral)h(m)m (ulti-c)m(haracter)h(options)d(that)h(y)m(ou)g(can)g(use.)61 @@ -10307,7 +10338,7 @@ Fs(ignoreeof)e Ft(option)j(to)g Fs(set)29 b(-o)36 b Ft(instead)h(of)f (exiting)i(imme-)330 4770 y(diately)f(when)e(it)i(receiv)m(es)h(an)e Fs(EOF)f Ft(on)h(its)g(standard)f(input)g(when)h(reading)g(a)g(command) g(\(see)330 4879 y(Section)31 b(4.3.1)h([The)e(Set)h(Builtin],)g(page)g -(53\).)199 5011 y(7.)61 b(Command)43 b(history)h(\(see)h(Section)g(9.1) +(54\).)199 5011 y(7.)61 b(Command)43 b(history)h(\(see)h(Section)g(9.1) g([Bash)f(History)h(F)-8 b(acilities],)51 b(page)45 b(123\))h(and)d (history)330 5121 y(expansion)23 b(\(see)i(Section)f(9.3)h([History)f (In)m(teraction],)j(page)d(125\))h(are)f(enabled)g(b)m(y)f(default.)39 @@ -10331,7 +10362,7 @@ Fs(huponexit)e Ft(shell)330 914 y(option)31 b(has)f(b)s(een)g(enabled)g 1046 y(12.)61 b(The)26 b(`)p Fs(-n)p Ft(')f(in)m(v)m(o)s(cation)k (option)d(is)g(ignored,)h(and)f(`)p Fs(set)k(-n)p Ft(')25 b(has)h(no)g(e\013ect)i(\(see)e(Section)h(4.3.1)h([The)330 -1155 y(Set)j(Builtin],)g(page)g(53\).)154 1287 y(13.)61 +1155 y(Set)j(Builtin],)g(page)g(54\).)154 1287 y(13.)61 b(Bash)32 b(will)g(c)m(hec)m(k)i(for)e(mail)g(p)s(erio)s(dically)-8 b(,)34 b(dep)s(ending)c(on)i(the)g(v)-5 b(alues)32 b(of)g(the)h Fs(MAIL)p Ft(,)e Fs(MAILPATH)p Ft(,)330 1397 y(and)f @@ -10341,7 +10372,7 @@ y(14.)61 b(Expansion)32 b(errors)h(due)f(to)i(references)f(to)h(un)m(b) s(ound)c(shell)j(v)-5 b(ariables)34 b(after)g(`)p Fs(set)29 b(-u)p Ft(')k(has)g(b)s(een)330 1638 y(enabled)d(will)h(not)g(cause)g (the)f(shell)h(to)g(exit)g(\(see)g(Section)h(4.3.1)g([The)e(Set)h -(Builtin],)g(page)g(53\).)154 1770 y(15.)61 b(The)48 +(Builtin],)g(page)g(54\).)154 1770 y(15.)61 b(The)48 b(shell)h(will)f(not)h(exit)g(on)g(expansion)f(errors)g(caused)g(b)m(y) h Fq(v)-5 b(ar)54 b Ft(b)s(eing)48 b(unset)g(or)h(n)m(ull)f(in)330 1879 y Fs(${)p Fi(var)11 b Fs(:?)p Fi(word)g Fs(})26 @@ -10458,7 +10489,7 @@ y Fs(-o)g Fi(optname)630 4299 y Ft(T)-8 b(rue)41 b(if)g(the)g(shell)h b(list)h(of)f(options)h(app)s(ears)e(in)630 4408 y(the)30 b(description)f(of)h(the)g(`)p Fs(-o)p Ft(')f(option)h(to)h(the)e Fs(set)g Ft(builtin)g(\(see)i(Section)f(4.3.1)h([The)f(Set)630 -4518 y(Builtin],)h(page)g(53\).)150 4682 y Fs(-v)f Fi(varname)630 +4518 y(Builtin],)h(page)g(54\).)150 4682 y Fs(-v)f Fi(varname)630 4792 y Ft(T)-8 b(rue)30 b(if)g(the)h(shell)f(v)-5 b(ariable)32 b Fq(v)-5 b(arname)35 b Ft(is)30 b(set)h(\(has)g(b)s(een)e(assigned)i (a)g(v)-5 b(alue\).)150 4956 y Fs(-z)30 b Fi(string)630 @@ -11059,145 +11090,149 @@ b Ft(expansion)f(that)i(app)s(ears)e(within)g(double)g(quotes,)330 (erator)f(is)g(one)h(of)f(those)h(de\014ned)e(to)i(p)s(erform)e (pattern)330 4639 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 -4770 y(21.)61 b(If)24 b(a)g Fl(posix)g Ft(sp)s(ecial)h(builtin)f +4770 y(21.)61 b(The)29 b(parser)g(do)s(es)g(not)h(recognize)h +Fs(time)d Ft(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 4880 y(`)p Fs(-)p Ft('.)154 +5011 y(22.)61 b(If)24 b(a)g Fl(posix)g Ft(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 4880 y(errors)30 b(are)h(those)f +(exits.)39 b(The)24 b(fatal)330 5121 y(errors)30 b(are)h(those)f (listed)h(in)f(the)h Fl(posix)e Ft(standard,)h(and)g(include)g(things)g -(lik)m(e)i(passing)e(incorrect)330 4989 y(options,)43 +(lik)m(e)i(passing)e(incorrect)330 5230 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 5099 y(command)30 -b(name,)h(and)f(so)g(on.)154 5230 y(22.)61 b(If)34 b -Fs(CDPATH)f Ft(is)h(set,)i(the)f Fs(cd)f Ft(builtin)g(will)g(not)h -(implicitly)h(app)s(end)c(the)j(curren)m(t)f(directory)h(to)g(it.)330 -5340 y(This)29 b(means)g(that)h Fs(cd)f Ft(will)h(fail)g(if)g(no)f(v)-5 -b(alid)30 b(directory)g(name)f(can)h(b)s(e)f(constructed)h(from)f(an)m -(y)h(of)p eop end +(for)g(assignmen)m(ts)i(preceding)f(the)330 5340 y(command)30 +b(name,)h(and)f(so)g(on.)p eop end %%Page: 88 94 TeXDict begin 88 93 bop 150 -116 a Ft(88)2572 b(Bash)31 -b(Reference)g(Man)m(ual)330 299 y(the)h(en)m(tries)g(in)f -Fs($CDPATH)p Ft(,)e(ev)m(en)j(if)g(the)f(a)h(directory)g(with)f(the)g -(same)h(name)f(as)h(the)g(name)f(giv)m(en)330 408 y(as)g(an)f(argumen)m -(t)h(to)g Fs(cd)f Ft(exists)h(in)f(the)g(curren)m(t)g(directory)-8 -b(.)154 547 y(23.)61 b(A)31 b(non-in)m(teractiv)m(e)j(shell)d(exits)h +b(Reference)g(Man)m(ual)154 299 y(23.)61 b(If)34 b Fs(CDPATH)f +Ft(is)h(set,)i(the)f Fs(cd)f Ft(builtin)g(will)g(not)h(implicitly)h +(app)s(end)c(the)j(curren)m(t)f(directory)h(to)g(it.)330 +408 y(This)29 b(means)g(that)h Fs(cd)f Ft(will)h(fail)g(if)g(no)f(v)-5 +b(alid)30 b(directory)g(name)f(can)h(b)s(e)f(constructed)h(from)f(an)m +(y)h(of)330 518 y(the)i(en)m(tries)g(in)f Fs($CDPATH)p +Ft(,)e(ev)m(en)j(if)g(the)f(a)h(directory)g(with)f(the)g(same)h(name)f +(as)h(the)g(name)f(giv)m(en)330 628 y(as)g(an)f(argumen)m(t)h(to)g +Fs(cd)f Ft(exists)h(in)f(the)g(curren)m(t)g(directory)-8 +b(.)154 762 y(24.)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 656 y(when)38 +b(assignmen)m(t)g(error)e(o)s(ccurs)330 871 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 -766 y(error)30 b(o)s(ccurs,)g(for)g(example,)i(when)d(trying)i(to)g +981 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 905 y(24.)61 b(A)43 b(non-in)m(teractiv)m(e)i(shell)e +b(ariable.)154 1115 y(25.)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 Fs(for)330 1014 y Ft(statemen)m(t)32 +b(ariable)44 b(in)f(a)g Fs(for)330 1224 y Ft(statemen)m(t)32 b(or)f(the)f(selection)i(v)-5 b(ariable)32 b(in)e(a)g Fs(select)f Ft(statemen)m(t)j(is)f(a)f(readonly)h(v)-5 -b(ariable.)154 1153 y(25.)61 b(Pro)s(cess)30 b(substitution)g(is)h(not) -f(a)m(v)-5 b(ailable.)154 1291 y(26.)61 b(Assignmen)m(t)23 +b(ariable.)154 1358 y(26.)61 b(Pro)s(cess)30 b(substitution)g(is)h(not) +f(a)m(v)-5 b(ailable.)154 1492 y(27.)61 b(Assignmen)m(t)23 b(statemen)m(ts)h(preceding)e Fl(posix)f Ft(sp)s(ecial)i(builtins)f(p)s -(ersist)g(in)f(the)i(shell)f(en)m(vironmen)m(t)330 1401 -y(after)31 b(the)f(builtin)g(completes.)154 1539 y(27.)61 +(ersist)g(in)f(the)i(shell)f(en)m(vironmen)m(t)330 1602 +y(after)31 b(the)f(builtin)g(completes.)154 1736 y(28.)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 -1649 y(after)d(the)f(function)h(returns,)e(as)i(if)f(a)h +1845 y(after)d(the)f(function)h(returns,)e(as)i(if)f(a)h Fl(posix)e Ft(sp)s(ecial)i(builtin)f(command)g(had)g(b)s(een)g -(executed.)154 1787 y(28.)61 b(The)38 b Fs(export)f Ft(and)g +(executed.)154 1979 y(29.)61 b(The)38 b Fs(export)f Ft(and)g Fs(readonly)f Ft(builtin)i(commands)g(displa)m(y)h(their)f(output)g(in) -g(the)h(format)g(re-)330 1897 y(quired)30 b(b)m(y)g Fl(posix)p -Ft(.)154 2035 y(29.)61 b(The)30 b Fs(trap)f Ft(builtin)h(displa)m(ys)g +g(the)h(format)g(re-)330 2089 y(quired)30 b(b)m(y)g Fl(posix)p +Ft(.)154 2223 y(30.)61 b(The)30 b Fs(trap)f Ft(builtin)h(displa)m(ys)g (signal)i(names)e(without)g(the)h(leading)g Fs(SIG)p -Ft(.)154 2173 y(30.)61 b(The)39 b Fs(trap)e Ft(builtin)i(do)s(esn't)g +Ft(.)154 2357 y(31.)61 b(The)39 b Fs(trap)e Ft(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 2283 y(and)30 b(rev)m(ert)i(the)e +(signal)i(sp)s(eci\014cation)330 2466 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 2393 y(consists)e(solely)g(of)g +(is,)g(unless)f(that)h(argumen)m(t)330 2576 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 -2502 y(for)h(a)g(giv)m(en)h(signal)g(to)f(the)h(original)g(disp)s +2685 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 Fs(-)p Ft(')g(as)g(the)g(\014rst) -f(argumen)m(t.)154 2641 y(31.)61 b(The)21 b Fs(.)h Ft(and)f +f(argumen)m(t.)154 2819 y(32.)61 b(The)21 b Fs(.)h Ft(and)f Fs(source)f Ft(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 -2750 y(if)30 b(it)h(is)g(not)f(found)f(b)m(y)i(searc)m(hing)g -Fs(PATH)p Ft(.)154 2889 y(32.)61 b(Subshells)20 b(spa)m(wned)h(to)h +2929 y(if)30 b(it)h(is)g(not)f(found)f(b)m(y)i(searc)m(hing)g +Fs(PATH)p Ft(.)154 3063 y(33.)61 b(Subshells)20 b(spa)m(wned)h(to)h (execute)g(command)g(substitutions)f(inherit)g(the)g(v)-5 b(alue)22 b(of)g(the)f(`)p Fs(-e)p Ft(')g(option)330 -2998 y(from)34 b(the)h(paren)m(t)g(shell.)55 b(When)34 +3173 y(from)34 b(the)h(paren)m(t)g(shell.)55 b(When)34 b(not)i(in)e Fl(posix)g Ft(mo)s(de,)i(Bash)f(clears)h(the)f(`)p -Fs(-e)p Ft(')f(option)i(in)e(suc)m(h)330 3108 y(subshells.)154 -3246 y(33.)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.)154 3385 -y(34.)61 b(When)43 b(the)g Fs(alias)f Ft(builtin)g(displa)m(ys)i(alias) +Fs(-e)p Ft(')f(option)i(in)e(suc)m(h)330 3282 y(subshells.)154 +3416 y(34.)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.)154 3550 +y(35.)61 b(When)43 b(the)g Fs(alias)f Ft(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 3494 y(leading)31 b(`)p Fs(alias)e Ft(')i(unless)f(the)g(`)p -Fs(-p)p Ft(')g(option)h(is)g(supplied.)154 3633 y(35.)61 +330 3660 y(leading)31 b(`)p Fs(alias)e Ft(')i(unless)f(the)g(`)p +Fs(-p)p Ft(')g(option)h(is)g(supplied.)154 3794 y(36.)61 b(When)40 b(the)g Fs(set)f Ft(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 3742 y(names)30 b(and)g(de\014nitions.)154 -3881 y(36.)61 b(When)36 b(the)g Fs(set)g Ft(builtin)g(is)g(in)m(v)m(ok) +(function)330 3903 y(names)30 b(and)g(de\014nitions.)154 +4037 y(37.)61 b(When)36 b(the)g Fs(set)g Ft(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 3990 y(quotes,)26 b(unless)d(they)i +b(v)-5 b(alues)37 b(without)330 4147 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 4100 y(c)m(haracters.)154 -4238 y(37.)61 b(When)35 b(the)g Fs(cd)f Ft(builtin)h(is)g(in)m(v)m(ok)m +g(con)m(tains)i(nonprin)m(ting)330 4256 y(c)m(haracters.)154 +4390 y(38.)61 b(When)35 b(the)g Fs(cd)f Ft(builtin)h(is)g(in)m(v)m(ok)m (ed)i(in)d Fq(logical)41 b Ft(mo)s(de,)36 b(and)f(the)g(pathname)g -(constructed)g(from)330 4348 y Fs($PWD)i Ft(and)h(the)h(directory)f +(constructed)g(from)330 4500 y Fs($PWD)i Ft(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 4457 y(directory)-8 b(,)32 b Fs(cd)d +(an)f(existing)330 4609 y(directory)-8 b(,)32 b Fs(cd)d Ft(will)i(fail)g(instead)g(of)f(falling)h(bac)m(k)h(to)f -Fq(ph)m(ysical)j Ft(mo)s(de.)154 4596 y(38.)61 b(When)20 +Fq(ph)m(ysical)j Ft(mo)s(de.)154 4743 y(39.)61 b(When)20 b(the)h Fs(pwd)e Ft(builtin)h(is)g(supplied)g(the)g(`)p Fs(-P)p Ft(')g(option,)j(it)e(resets)g Fs($PWD)e Ft(to)i(a)g(pathname)f -(con)m(taining)330 4706 y(no)30 b(symlinks.)154 4844 -y(39.)61 b(The)36 b Fs(pwd)f Ft(builtin)h(v)m(eri\014es)h(that)g(the)f +(con)m(taining)330 4853 y(no)30 b(symlinks.)154 4987 +y(40.)61 b(The)36 b Fs(pwd)f Ft(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 4954 y(ev)m(en)31 b(if)f(it)h(is)g(not)f +m(t)f(directory)-8 b(,)330 5096 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(`)p -Fs(-P)p Ft(')f(option.)154 5092 y(40.)61 b(When)35 b(listing)g(the)g +Fs(-P)p Ft(')f(option.)154 5230 y(41.)61 b(When)35 b(listing)g(the)g (history)-8 b(,)36 b(the)f Fs(fc)g Ft(builtin)f(do)s(es)g(not)h -(include)g(an)f(indication)i(of)f(whether)f(or)330 5202 -y(not)d(a)f(history)h(en)m(try)f(has)g(b)s(een)g(mo)s(di\014ed.)154 -5340 y(41.)61 b(The)30 b(default)g(editor)h(used)f(b)m(y)g -Fs(fc)g Ft(is)g Fs(ed)p Ft(.)p eop end +(include)g(an)f(indication)i(of)f(whether)f(or)330 5340 +y(not)d(a)f(history)h(en)m(try)f(has)g(b)s(een)g(mo)s(di\014ed.)p +eop end %%Page: 89 95 TeXDict begin 89 94 bop 150 -116 a Ft(Chapter)30 b(6:)41 b(Bash)30 b(F)-8 b(eatures)2484 b(89)154 299 y(42.)61 -b(The)37 b Fs(type)g Ft(and)g Fs(command)f Ft(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 -408 y(found,)26 b(though)h(the)g(shell)g(will)g(attempt)h(to)g(execute) +b(The)30 b(default)g(editor)h(used)f(b)m(y)g Fs(fc)g +Ft(is)g Fs(ed)p Ft(.)154 433 y(43.)61 b(The)37 b Fs(type)g +Ft(and)g Fs(command)f Ft(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 +543 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 518 y(found)i(in)h Fs($PATH)p Ft(.)154 653 y(43.)61 +330 653 y(found)i(in)h Fs($PATH)p Ft(.)154 787 y(44.)61 b(The)33 b Fs(vi)f Ft(editing)i(mo)s(de)f(will)g(in)m(v)m(ok)m(e)i(the) e Fs(vi)g Ft(editor)h(directly)f(when)f(the)i(`)p Fs(v)p -Ft(')f(command)g(is)g(run,)330 762 y(instead)e(of)f(c)m(hec)m(king)i -Fs($VISUAL)d Ft(and)g Fs($EDITOR)p Ft(.)154 897 y(44.)61 +Ft(')f(command)g(is)g(run,)330 897 y(instead)e(of)f(c)m(hec)m(king)i +Fs($VISUAL)d Ft(and)g Fs($EDITOR)p Ft(.)154 1031 y(45.)61 b(When)41 b(the)g Fs(xpg_echo)e Ft(option)i(is)g(enabled,)j(Bash)d(do)s (es)g(not)g(attempt)h(to)g(in)m(terpret)f(an)m(y)h(ar-)330 -1006 y(gumen)m(ts)35 b(to)g Fs(echo)e Ft(as)i(options.)54 +1141 y(gumen)m(ts)35 b(to)g Fs(echo)e Ft(as)i(options.)54 b(Eac)m(h)35 b(argumen)m(t)g(is)f(displa)m(y)m(ed,)j(after)e(escap)s(e) -g(c)m(haracters)h(are)330 1116 y(con)m(v)m(erted.)154 -1250 y(45.)61 b(The)30 b Fs(ulimit)f Ft(builtin)g(uses)h(a)h(blo)s(c)m +g(c)m(haracters)h(are)330 1250 y(con)m(v)m(erted.)154 +1385 y(46.)61 b(The)30 b Fs(ulimit)f Ft(builtin)g(uses)h(a)h(blo)s(c)m (k)g(size)g(of)g(512)g(b)m(ytes)g(for)f(the)h(`)p Fs(-c)p -Ft(')f(and)g(`)p Fs(-f)p Ft(')g(options.)154 1385 y(46.)61 +Ft(')f(and)g(`)p Fs(-f)p Ft(')g(options.)154 1519 y(47.)61 b(The)39 b(arriv)-5 b(al)41 b(of)f Fs(SIGCHLD)e Ft(when)h(a)h(trap)g (is)g(set)h(on)f Fs(SIGCHLD)e Ft(do)s(es)h(not)h(in)m(terrupt)g(the)g -Fs(wait)330 1494 y Ft(builtin)c(and)h(cause)g(it)h(to)f(return)f +Fs(wait)330 1629 y Ft(builtin)c(and)h(cause)g(it)h(to)f(return)f (immediately)-8 b(.)62 b(The)37 b(trap)f(command)h(is)g(run)e(once)j -(for)f(eac)m(h)330 1604 y(c)m(hild)31 b(that)g(exits.)275 -1763 y(There)j(is)g(other)h Fl(posix)f Ft(b)s(eha)m(vior)h(that)g(Bash) +(for)f(eac)m(h)330 1738 y(c)m(hild)31 b(that)g(exits.)275 +1898 y(There)j(is)g(other)h Fl(posix)f Ft(b)s(eha)m(vior)h(that)g(Bash) g(do)s(es)f(not)h(implemen)m(t)g(b)m(y)g(default)f(ev)m(en)i(when)d(in) -150 1873 y Fl(posix)d Ft(mo)s(de.)40 b(Sp)s(eci\014cally:)199 -2007 y(1.)61 b(The)30 b Fs(fc)f Ft(builtin)h(c)m(hec)m(ks)i +150 2007 y Fl(posix)d Ft(mo)s(de.)40 b(Sp)s(eci\014cally:)199 +2142 y(1.)61 b(The)30 b Fs(fc)f Ft(builtin)h(c)m(hec)m(ks)i Fs($EDITOR)c Ft(as)j(a)f(program)g(to)h(edit)g(history)f(en)m(tries)h -(if)f Fs(FCEDIT)f Ft(is)h(unset,)330 2117 y(rather)g(than)g(defaulting) +(if)f Fs(FCEDIT)f Ft(is)h(unset,)330 2252 y(rather)g(than)g(defaulting) h(directly)g(to)g Fs(ed)p Ft(.)40 b Fs(fc)30 b Ft(uses)g -Fs(ed)g Ft(if)g Fs(EDITOR)f Ft(is)h(unset.)199 2252 y(2.)61 +Fs(ed)g Ft(if)g Fs(EDITOR)f Ft(is)h(unset.)199 2386 y(2.)61 b(As)29 b(noted)g(ab)s(o)m(v)m(e,)i(Bash)e(requires)g(the)g Fs(xpg_echo)e Ft(option)j(to)g(b)s(e)e(enabled)h(for)g(the)g -Fs(echo)f Ft(builtin)330 2361 y(to)j(b)s(e)f(fully)g(conforman)m(t.)275 -2521 y(Bash)66 b(can)h(b)s(e)f(con\014gured)g(to)i(b)s(e)e +Fs(echo)f Ft(builtin)330 2496 y(to)j(b)s(e)f(fully)g(conforman)m(t.)275 +2655 y(Bash)66 b(can)h(b)s(e)f(con\014gured)g(to)i(b)s(e)e Fl(posix)p Ft(-conforman)m(t)h(b)m(y)f(default,)77 b(b)m(y)66 -b(sp)s(ecifying)h(the)150 2630 y(`)p Fs(--enable-strict-posix-def)o +b(sp)s(ecifying)h(the)150 2765 y(`)p Fs(--enable-strict-posix-def)o (ault)o Ft(')i(to)76 b Fs(configure)c Ft(when)i(building)g(\(see)i -(Section)f(10.8)150 2740 y([Optional)31 b(F)-8 b(eatures],)32 +(Section)f(10.8)150 2874 y([Optional)31 b(F)-8 b(eatures],)32 b(page)f(131\).)p eop end %%Page: 90 96 TeXDict begin 90 95 bop eop end @@ -11322,7 +11357,7 @@ g(to)g(not)g(in)m(terrupt)150 1334 y(an)m(y)g(other)g(output.)39 b(If)24 b(the)i(`)p Fs(-b)p Ft(')e(option)i(to)f(the)g Fs(set)f Ft(builtin)h(is)g(enabled,)h(Bash)f(rep)s(orts)f(suc)m(h)h(c)m (hanges)150 1443 y(immediately)g(\(see)g(Section)g(4.3.1)g([The)f(Set)g -(Builtin],)i(page)f(53\).)40 b(An)m(y)24 b(trap)f(on)h +(Builtin],)i(page)f(54\).)40 b(An)m(y)24 b(trap)f(on)h Fs(SIGCHLD)e Ft(is)i(executed)150 1553 y(for)30 b(eac)m(h)i(c)m(hild)e (pro)s(cess)g(that)h(exits.)275 1687 y(If)25 b(an)h(attempt)h(to)g (exit)g(Bash)f(is)h(made)f(while)g(jobs)f(are)i(stopp)s(ed,)f(\(or)h @@ -11507,7 +11542,7 @@ m(v)-5 b(ailable.)55 b(Line)34 b(editing)h(can)g(b)s(e)f(enabled)g(at)h (an)m(y)g(time)150 1407 y(using)28 b(the)i(`)p Fs(-o)g(emacs)p Ft(')d(or)i(`)p Fs(-o)h(vi)p Ft(')f(options)g(to)h(the)f Fs(set)f Ft(builtin)h(command)g(\(see)h(Section)f(4.3.1)i([The)150 -1517 y(Set)g(Builtin],)g(page)g(53\),)h(or)e(disabled)g(using)g(the)h +1517 y(Set)g(Builtin],)g(page)g(54\),)h(or)e(disabled)g(using)g(the)h (`)p Fs(+o)f(emacs)p Ft(')f(or)h(`)p Fs(+o)g(vi)p Ft(')g(options)h(to)g Fs(set)p Ft(.)150 1802 y Fr(8.1)68 b(In)l(tro)t(duction)45 b(to)g(Line)h(Editing)150 1962 y Ft(The)30 b(follo)m(wing)i(paragraphs) @@ -12834,7 +12869,7 @@ Fs(*)p Ft(')630 2212 y(is)c(app)s(ended)f(b)s(efore)h(pathname)g (do)s(es.)55 b(This)34 b(p)s(erforms)g(alias)i(and)f(history)g (expansion)630 2867 y(as)f(w)m(ell)g(as)g(all)h(of)e(the)h(shell)g(w)m (ord)f(expansions)g(\(see)i(Section)f(3.5)h([Shell)e(Expansions],)630 -2976 y(page)e(18\).)150 3139 y Fs(history-expand-line)25 +2976 y(page)e(19\).)150 3139 y Fs(history-expand-line)25 b(\(M-^\))630 3249 y Ft(P)m(erform)30 b(history)h(expansion)f(on)g(the) h(curren)m(t)f(line.)150 3412 y Fs(magic-space)d(\(\))630 3521 y Ft(P)m(erform)c(history)g(expansion)g(on)g(the)g(curren)m(t)g @@ -12872,7 +12907,7 @@ b(The)34 b(Readline)g Fs(vi)g Ft(mo)s(de)f(b)s(eha)m(v)m(es)i(as)f(sp)s (w)m(een)d Fs(emacs)f Ft(and)g Fs(vi)g Ft(editing)h(mo)s(des,)h(use)f (the)g(`)p Fs(set)30 b(-o)150 926 y(emacs)p Ft(')43 b(and)h(`)p Fs(set)30 b(-o)f(vi)p Ft(')44 b(commands)g(\(see)i(Section)f(4.3.1)h -([The)e(Set)h(Builtin],)j(page)e(53\).)83 b(The)150 1036 +([The)e(Set)h(Builtin],)j(page)e(54\).)83 b(The)150 1036 y(Readline)31 b(default)g(is)f Fs(emacs)f Ft(mo)s(de.)275 1175 y(When)g(y)m(ou)i(en)m(ter)f(a)h(line)f(in)g Fs(vi)f Ft(mo)s(de,)h(y)m(ou)h(are)f(already)h(placed)f(in)g(`insertion')g(mo)s @@ -12943,7 +12978,7 @@ b(ariable)33 b(as)g(delimiters.)48 b(Shell)32 b(quoting)h(is)150 4902 y(and)44 b(v)-5 b(ariable)46 b(expansion,)j(command)44 b(substitution,)49 b(and)44 b(arithmetic)i(expansion,)j(as)c(describ)s (ed)150 5011 y(ab)s(o)m(v)m(e)38 b(\(see)f(Section)h(3.5)g([Shell)e -(Expansions],)i(page)f(18\).)61 b(The)36 b(results)h(are)g(split)f +(Expansions],)i(page)f(19\).)61 b(The)36 b(results)h(are)g(split)f (using)h(the)f(rules)150 5121 y(describ)s(ed)29 b(ab)s(o)m(v)m(e)i (\(see)f(Section)h(3.5.7)h([W)-8 b(ord)30 b(Splitting],)h(page)f(25\).) 42 b(The)30 b(results)f(of)h(the)g(expansion)150 5230 @@ -13216,7 +13251,7 @@ b Ft(Service)31 b(names.)41 b(Ma)m(y)31 b(also)g(b)s(e)f(sp)s (eci\014ed)g(as)g(`)p Fs(-s)p Ft('.)1110 3331 y Fs(setopt)192 b Ft(V)-8 b(alid)34 b(argumen)m(ts)f(for)f(the)h(`)p Fs(-o)p Ft(')g(option)g(to)h(the)f Fs(set)e Ft(builtin)1590 -3440 y(\(see)g(Section)h(4.3.1)g([The)e(Set)g(Builtin],)i(page)f(53\).) +3440 y(\(see)g(Section)h(4.3.1)g([The)e(Set)g(Builtin],)i(page)f(54\).) 1110 3602 y Fs(shopt)240 b Ft(Shell)40 b(option)g(names)g(as)g (accepted)i(b)m(y)e(the)g Fs(shopt)e Ft(builtin)1590 3712 y(\(see)31 b(Section)h(4.2)f([Bash)g(Builtins],)g(page)g(43\).) @@ -13317,7 +13352,7 @@ y Fr(9.1)68 b(Bash)45 b(History)h(F)-11 b(acilities)150 1202 y Ft(When)40 b(the)h(`)p Fs(-o)30 b(history)p Ft(')38 b(option)j(to)g(the)g Fs(set)e Ft(builtin)h(is)h(enabled)f(\(see)h (Section)g(4.3.1)i([The)d(Set)150 1311 y(Builtin],)32 -b(page)g(53\),)h(the)e(shell)h(pro)m(vides)f(access)h(to)g(the)f +b(page)g(54\),)h(the)e(shell)h(pro)m(vides)f(access)h(to)g(the)f Fq(command)g(history)p Ft(,)h(the)f(list)h(of)f(commands)150 1421 y(previously)h(t)m(yp)s(ed.)47 b(The)33 b(v)-5 b(alue)33 b(of)f(the)h Fs(HISTSIZE)e Ft(shell)h(v)-5 b(ariable)34 @@ -14423,7 +14458,7 @@ b Ft(Bash)33 b(can)f(op)s(en)g(net)m(w)m(ork)i(connections)f(to)h b Ft(The)29 b Fs(noclobber)e Ft(option)j(is)g(a)m(v)-5 b(ailable)32 b(to)e(a)m(v)m(oid)h(o)m(v)m(erwriting)g(existing)g (\014les)e(with)h(output)f(redi-)330 3503 y(rection)39 -b(\(see)h(Section)f(4.3.1)h([The)e(Set)h(Builtin],)i(page)e(53\).)66 +b(\(see)h(Section)f(4.3.1)h([The)e(Set)h(Builtin],)i(page)e(54\).)66 b(The)38 b(`)p Fs(>|)p Ft(')h(redirection)g(op)s(erator)330 3612 y(ma)m(y)31 b(b)s(e)f(used)f(to)i(o)m(v)m(erride)h Fs(noclobber)p Ft(.)225 3754 y Fp(\017)60 b Ft(The)34 @@ -14514,11 +14549,11 @@ Ft(builtin,)k(for)d(\014ner)f(con)m(trol)j(of)e(shell)h(optional)g (73\).)225 3230 y Fp(\017)60 b Ft(Bash)45 b(has)f(m)m(uc)m(h)g(more)h (optional)h(b)s(eha)m(vior)e(con)m(trollable)j(with)e(the)f Fs(set)g Ft(builtin)g(\(see)h(Sec-)330 3340 y(tion)31 -b(4.3.1)h([The)e(Set)h(Builtin],)g(page)g(53\).)225 3477 +b(4.3.1)h([The)e(Set)h(Builtin],)g(page)g(54\).)225 3477 y Fp(\017)60 b Ft(The)31 b(`)p Fs(-x)p Ft(')g(\()p Fs(xtrace)p Ft(\))g(option)h(displa)m(ys)f(commands)h(other)f(than)h(simple)f (commands)g(when)g(p)s(er-)330 3587 y(forming)f(an)g(execution)i(trace) -f(\(see)h(Section)f(4.3.1)h([The)e(Set)h(Builtin],)g(page)g(53\).)225 +f(\(see)h(Section)f(4.3.1)h([The)e(Set)h(Builtin],)g(page)g(54\).)225 3724 y Fp(\017)60 b Ft(The)28 b Fs(test)g Ft(builtin)h(\(see)h(Section) f(4.1)h([Bourne)f(Shell)g(Builtins],)h(page)g(37\))g(is)f(sligh)m(tly)h (di\013eren)m(t,)330 3833 y(as)23 b(it)g(implemen)m(ts)f(the)h @@ -15448,7 +15483,7 @@ f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)44 b Fb(40)2025 4782 y Fr(S)2025 4902 y Fe(set)8 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:) -g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)34 b Fb(53)2025 4991 +g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)34 b Fb(54)2025 4991 y Fe(shift)21 b Fc(:)13 b(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:) g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)46 b Fb(41)2025 @@ -15477,7 +15512,7 @@ f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g b Fb(42)150 709 y Fe(type)23 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:) g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)49 -b Fb(51)150 803 y Fe(typeset)15 b Fc(:)f(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:) +b Fb(52)150 803 y Fe(typeset)15 b Fc(:)f(:)f(:)h(:)f(:)g(:)g(:)g(:)g(:) g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h (:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)41 b Fb(52)2025 299 y Fr(U)2025 415 y Fe(ulimit)17 b Fc(:)d(:)g(:)f(:)g(:) @@ -15745,7 +15780,7 @@ Fc(:)15 b(:)e(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g g(:)h(:)33 b Fb(67)2025 3146 y Fe(GROUPS)17 b Fc(:)d(:)g(:)f(:)g(:)g(:) g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)44 -b Fb(67)2025 3381 y Fr(H)2025 3498 y Fe(histchars)9 b +b Fb(68)2025 3381 y Fr(H)2025 3498 y Fe(histchars)9 b Fc(:)15 b(:)f(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g (:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:) f(:)g(:)g(:)36 b Fb(68)2025 3586 y Fe(HISTCMD)15 b Fc(:)f(:)f(:)g(:)g @@ -15819,7 +15854,7 @@ b Fb(69)150 1191 y Fe(LC_COLLATE)7 b Fc(:)15 b(:)e(:)h(:)f(:)g(:)g(:)g g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)33 b Fb(69)150 1278 y Fe(LC_CTYPE)12 b Fc(:)j(:)e(:)g(:)g(:)g(:)h(:)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(:)g(:)g(:)g(:)g(:)h(:)f(:)38 b Fb(69)150 1366 +f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)38 b Fb(70)150 1366 y Fe(LC_MESSAGES)13 b Fc(:)j(:)d(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:) g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g (:)g(:)g(:)40 b Fb(7,)26 b(70)150 1453 y Fe(LC_NUMERIC)7 @@ -15892,7 +15927,7 @@ b Fc(:)i(:)d(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:) g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)40 b Fb(70)2025 563 y Fe(PROMPT_DIRTRIM)14 b Fc(:)i(:)d(:)g(:)g(:)g(:)h(:) f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g -(:)g(:)g(:)g(:)g(:)h(:)f(:)40 b Fb(70)2025 651 y Fe(PS1)8 +(:)g(:)g(:)g(:)g(:)h(:)f(:)40 b Fb(71)2025 651 y Fe(PS1)8 b Fc(:)13 b(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:) h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)34 b Fb(63)2025 @@ -16254,7 +16289,7 @@ b Fb(96)150 3703 y(command)26 b(execution)d Fc(:)13 b(:)g(:)g(:)g(:)g (:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:) h(:)f(:)g(:)g(:)49 b Fb(31)150 3791 y(command)26 b(expansion)16 b Fc(:)d(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:) -g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)42 b Fb(30)150 +g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:)42 b Fb(31)150 3879 y(command)26 b(history)12 b Fc(:)h(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g (:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:) g(:)g(:)39 b Fb(123)150 3968 y(command)26 b(searc)n(h)10 @@ -16320,7 +16355,7 @@ f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g (:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)45 b Fb(3,)26 b(33)2025 3021 y(expansion)20 b Fc(:)13 b(:)h(:)f(:)g(:)g(:)g(:)g(:)g (:)g(:)h(:)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(:)g(:)47 b Fb(18)2025 +f(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)47 b Fb(19)2025 3111 y(expansion,)26 b(arithmetic)12 b Fc(:)i(:)f(:)g(:)g(:)g(:)g(:)g (:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)g(:)h(:)f(:)g(:)g(:)g(:)g(:)g(:)h(:) f(:)38 b Fb(24)2025 3201 y(expansion,)26 b(brace)10 b diff --git a/doc/bashref.texi b/doc/bashref.texi index f4faf880..db249617 100644 --- a/doc/bashref.texi +++ b/doc/bashref.texi @@ -1233,7 +1233,8 @@ shell context; no new process is created to interpret them. Functions are declared using this syntax: @rwindex function @example -[ @code{function} ] @var{name} () @var{compound-command} [ @var{redirections} ] +@var{name} () @var{compound-command} [ @var{redirections} ]@*or@* +@code{function} @var{name} [()] @var{compound-command} [ @var{redirections} ] @end example This defines a shell function named @var{name}. The reserved @@ -3650,6 +3651,7 @@ backspace @item \c suppress further output @item \e +@itemx \E escape @item \f form feed @@ -4783,9 +4785,10 @@ A list of characters that separate fields; used when the shell splits words as part of expansion. @item MAIL -If this parameter is set to a filename and the @env{MAILPATH} variable +If this parameter is set to a filename or directory name +and the @env{MAILPATH} variable is not set, Bash informs the user of the arrival of mail in -the specified file. +the specified file or Maildir-format directory. @item MAILPATH A colon-separated list of filenames which the shell periodically checks diff --git a/doc/bashref.toc b/doc/bashref.toc index 4d7ed14a..6075ec13 100644 --- a/doc/bashref.toc +++ b/doc/bashref.toc @@ -26,7 +26,7 @@ @numsecentry{Shell Parameters}{3.4}{Shell Parameters}{17} @numsubsecentry{Positional Parameters}{3.4.1}{Positional Parameters}{17} @numsubsecentry{Special Parameters}{3.4.2}{Special Parameters}{18} -@numsecentry{Shell Expansions}{3.5}{Shell Expansions}{18} +@numsecentry{Shell Expansions}{3.5}{Shell Expansions}{19} @numsubsecentry{Brace Expansion}{3.5.1}{Brace Expansion}{19} @numsubsecentry{Tilde Expansion}{3.5.2}{Tilde Expansion}{20} @numsubsecentry{Shell Parameter Expansion}{3.5.3}{Shell Parameter Expansion}{21} @@ -40,16 +40,16 @@ @numsecentry{Redirections}{3.6}{Redirections}{27} @numsubsecentry{Redirecting Input}{3.6.1}{}{28} @numsubsecentry{Redirecting Output}{3.6.2}{}{28} -@numsubsecentry{Appending Redirected Output}{3.6.3}{}{28} +@numsubsecentry{Appending Redirected Output}{3.6.3}{}{29} @numsubsecentry{Redirecting Standard Output and Standard Error}{3.6.4}{}{29} @numsubsecentry{Appending Standard Output and Standard Error}{3.6.5}{}{29} @numsubsecentry{Here Documents}{3.6.6}{}{29} -@numsubsecentry{Here Strings}{3.6.7}{}{29} +@numsubsecentry{Here Strings}{3.6.7}{}{30} @numsubsecentry{Duplicating File Descriptors}{3.6.8}{}{30} @numsubsecentry{Moving File Descriptors}{3.6.9}{}{30} @numsubsecentry{Opening File Descriptors for Reading and Writing}{3.6.10}{}{30} @numsecentry{Executing Commands}{3.7}{Executing Commands}{30} -@numsubsecentry{Simple Command Expansion}{3.7.1}{Simple Command Expansion}{30} +@numsubsecentry{Simple Command Expansion}{3.7.1}{Simple Command Expansion}{31} @numsubsecentry{Command Search and Execution}{3.7.2}{Command Search and Execution}{31} @numsubsecentry{Command Execution Environment}{3.7.3}{Command Execution Environment}{32} @numsubsecentry{Environment}{3.7.4}{Environment}{33} @@ -60,7 +60,7 @@ @numsecentry{Bourne Shell Builtins}{4.1}{Bourne Shell Builtins}{37} @numsecentry{Bash Builtin Commands}{4.2}{Bash Builtins}{43} @numsecentry{Modifying Shell Behavior}{4.3}{Modifying Shell Behavior}{53} -@numsubsecentry{The Set Builtin}{4.3.1}{The Set Builtin}{53} +@numsubsecentry{The Set Builtin}{4.3.1}{The Set Builtin}{54} @numsubsecentry{The Shopt Builtin}{4.3.2}{The Shopt Builtin}{57} @numsecentry{Special Builtins}{4.4}{Special Builtins}{62} @numchapentry{Shell Variables}{5}{Shell Variables}{63} diff --git a/doc/bashref.vr b/doc/bashref.vr index e18be4b9..be1edc5e 100644 --- a/doc/bashref.vr +++ b/doc/bashref.vr @@ -56,7 +56,7 @@ \entry{FUNCNAME}{67}{\code {FUNCNAME}} \entry{FUNCNEST}{67}{\code {FUNCNEST}} \entry{GLOBIGNORE}{67}{\code {GLOBIGNORE}} -\entry{GROUPS}{67}{\code {GROUPS}} +\entry{GROUPS}{68}{\code {GROUPS}} \entry{histchars}{68}{\code {histchars}} \entry{HISTCMD}{68}{\code {HISTCMD}} \entry{HISTCONTROL}{68}{\code {HISTCONTROL}} @@ -73,7 +73,7 @@ \entry{LANG}{69}{\code {LANG}} \entry{LC_ALL}{69}{\code {LC_ALL}} \entry{LC_COLLATE}{69}{\code {LC_COLLATE}} -\entry{LC_CTYPE}{69}{\code {LC_CTYPE}} +\entry{LC_CTYPE}{70}{\code {LC_CTYPE}} \entry{LC_MESSAGES}{70}{\code {LC_MESSAGES}} \entry{LC_NUMERIC}{70}{\code {LC_NUMERIC}} \entry{LINENO}{70}{\code {LINENO}} @@ -88,7 +88,7 @@ \entry{POSIXLY_CORRECT}{70}{\code {POSIXLY_CORRECT}} \entry{PPID}{70}{\code {PPID}} \entry{PROMPT_COMMAND}{70}{\code {PROMPT_COMMAND}} -\entry{PROMPT_DIRTRIM}{70}{\code {PROMPT_DIRTRIM}} +\entry{PROMPT_DIRTRIM}{71}{\code {PROMPT_DIRTRIM}} \entry{PS3}{71}{\code {PS3}} \entry{PS4}{71}{\code {PS4}} \entry{PWD}{71}{\code {PWD}} diff --git a/doc/bashref.vrs b/doc/bashref.vrs index 926e916c..9b87d3c7 100644 --- a/doc/bashref.vrs +++ b/doc/bashref.vrs @@ -74,7 +74,7 @@ \entry {\code {FUNCNEST}}{67} \initial {G} \entry {\code {GLOBIGNORE}}{67} -\entry {\code {GROUPS}}{67} +\entry {\code {GROUPS}}{68} \initial {H} \entry {\code {histchars}}{68} \entry {\code {HISTCMD}}{68} @@ -103,7 +103,7 @@ \entry {\code {LANG}}{69} \entry {\code {LC_ALL}}{69} \entry {\code {LC_COLLATE}}{69} -\entry {\code {LC_CTYPE}}{69} +\entry {\code {LC_CTYPE}}{70} \entry {\code {LC_MESSAGES}}{7, 70} \entry {\code {LC_NUMERIC}}{70} \entry {\code {LINENO}}{70} @@ -132,7 +132,7 @@ \entry {\code {POSIXLY_CORRECT}}{70} \entry {\code {PPID}}{70} \entry {\code {PROMPT_COMMAND}}{70} -\entry {\code {PROMPT_DIRTRIM}}{70} +\entry {\code {PROMPT_DIRTRIM}}{71} \entry {\code {PS1}}{63} \entry {\code {PS2}}{63} \entry {\code {PS3}}{71} diff --git a/doc/builtins.0 b/doc/builtins.0 index 97501884..2d8bef62 100644 --- a/doc/builtins.0 +++ b/doc/builtins.0 @@ -457,7 +457,8 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS \\aa alert (bell) \\bb backspace \\cc suppress further output - \\ee an escape character + \\ee + \\EE an escape character \\ff form feed \\nn new line \\rr carriage return @@ -1332,6 +1333,10 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS 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 + 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 commands are saved to the history with embedded newlines rather than using semicolon separators where possible. diff --git a/doc/builtins.ps b/doc/builtins.ps index ba6a56bd..e71d4eee 100644 --- a/doc/builtins.ps +++ b/doc/builtins.ps @@ -1,6 +1,6 @@ %!PS-Adobe-3.0 %%Creator: groff version 1.19.2 -%%CreationDate: Tue Jun 29 14:02:44 2010 +%%CreationDate: Wed Jul 21 08:54:49 2010 %%DocumentNeededResources: font Times-Roman %%+ font Times-Bold %%+ font Times-Italic @@ -952,245 +952,245 @@ BP (TINS\(1\) B)-.92 F(ASH_B)-.35 E(UIL)-.1 E(TINS\(1\))-.92 E (escape sequences:)144 84 Q/F1 10/Times-Bold@0 SF(\\a)144 96 Q F0 (alert \(bell\))28.22 E F1(\\b)144 108 Q F0(backspace)27.66 E F1(\\c)144 -120 Q F0(suppress further output)28.78 E F1(\\e)144 132 Q F0 -(an escape character)28.78 E F1(\\f)144 144 Q F0(form feed)29.89 E F1 -(\\n)144 156 Q F0(ne)27.66 E 2.5(wl)-.25 G(ine)-2.5 E F1(\\r)144 168 Q -F0(carriage return)28.78 E F1(\\t)144 180 Q F0(horizontal tab)29.89 E F1 -(\\v)144 192 Q F0 -.15(ve)28.22 G(rtical tab).15 E F1(\\\\)144 204 Q F0 -(backslash)30.44 E F1(\\0)144 216 Q/F2 10/Times-Italic@0 SF(nnn)A F0 +120 Q F0(suppress further output)28.78 E F1(\\e)144 132 Q(\\E)144 144 Q +F0(an escape character)26.55 E F1(\\f)144 156 Q F0(form feed)29.89 E F1 +(\\n)144 168 Q F0(ne)27.66 E 2.5(wl)-.25 G(ine)-2.5 E F1(\\r)144 180 Q +F0(carriage return)28.78 E F1(\\t)144 192 Q F0(horizontal tab)29.89 E F1 +(\\v)144 204 Q F0 -.15(ve)28.22 G(rtical tab).15 E F1(\\\\)144 216 Q F0 +(backslash)30.44 E F1(\\0)144 228 Q/F2 10/Times-Italic@0 SF(nnn)A F0 (the eight-bit character whose v)13.22 E(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 228 Q F2(HH)A F0(the eight-bit character whose v)13.78 E +(\\x)144 240 Q F2(HH)A F0(the eight-bit character whose v)13.78 E (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 240 Q F2(HHHH)A F0 1.506 -(the Unicode \(ISO/IEC 10646\) character whose v)180 252 R 1.507 +(\\u)144 252 Q F2(HHHH)A F0 1.506 +(the Unicode \(ISO/IEC 10646\) character whose v)180 264 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 264 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 -(\\U)144 276 Q F2(HHHHHHHH)A F0 .548 -(the Unicode \(ISO/IEC 10646\) character whose v)180 288 R .547 +4.007 E F0(\(one to four he)180 276 Q 2.5(xd)-.15 G(igits\))-2.5 E F1 +(\\U)144 288 Q F2(HHHHHHHH)A F0 .548 +(the Unicode \(ISO/IEC 10646\) character whose v)180 300 R .547 (alue is the he)-.25 F .547(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-) -3.047 E(HHH)180 300 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G(igits\)) --2.5 E F1(enable)108 316.8 Q F0([)2.5 E F1A F0 2.5(][)C F1 +3.047 E(HHH)180 312 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G(igits\)) +-2.5 E F1(enable)108 328.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 .277(Enable and disable b)144 328.8 R +(][)C F2(name)-2.5 E F0(...])2.5 E .277(Enable and disable b)144 340.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 .834 -(the same name as a shell b)144 340.8 R .834(uiltin to be e)-.2 F -.15 +(the same name as a shell b)144 352.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.333(nt).15 G(hough)-3.333 E .989 -(the shell normally searches for b)144 352.8 R .989 +(the shell normally searches for b)144 364.8 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 364.8 R F2(names)4.082 E F0 1.582(are enabled.) +(abled; otherwise,)144 376.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.081 G(TH)-.189 E F0 .08(instead of the shell b)144 376.8 R +SF -.666(PA)4.081 G(TH)-.189 E F0 .08(instead of the shell b)144 388.8 R .08(uiltin v)-.2 F .08(ersion, run)-.15 F/F4 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 388.8 S 1.525 +(option means to load the ne)2.581 F(w)-.25 E -.2(bu)144 400.8 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 400.8 Q F1 +(ystems that support dynamic loading.)-4.024 F(The)144 412.8 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 412.8 R F1 +-.18 F -.15(ve)-.25 G .367(n, or).15 F .399(if the)144 424.8 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 -424.8 R 2.598(uiltins. If)-.2 F F12.598 E F0 .098 +436.8 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 1.917 -(is supplied, the list printed includes all b)144 436.8 R 1.916 +(is supplied, the list printed includes all b)144 448.8 R 1.916 (uiltins, with an indication of whether or not each is)-.2 F 2.878 -(enabled. If)144 448.8 R F12.878 E F0 .379 +(enabled. If)144 460.8 R F12.878 E F0 .379 (is supplied, the output is restricted to the POSIX)2.878 F F2(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 460.8 R F2(name)3.855 E F0 .994 +(alue)-.25 E .995(is 0 unless a)144 472.8 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 -472.8 Q F1 -2.3 -.15(ev a)108 489.6 T(l).15 E F0([)2.5 E F2(ar)A(g)-.37 -E F0(...])2.5 E(The)144 501.6 Q F2(ar)3.17 E(g)-.37 E F0 3.17(sa)C .671 +484.8 Q F1 -2.3 -.15(ev a)108 501.6 T(l).15 E F0([)2.5 E F2(ar)A(g)-.37 +E F0(...])2.5 E(The)144 513.6 Q F2(ar)3.17 E(g)-.37 E F0 3.17(sa)C .671 (re read and concatenated together into a single command.)-3.17 F .671 -(This command is then read)5.671 F .495(and e)144 513.6 R -.15(xe)-.15 G +(This command is then read)5.671 F .495(and e)144 525.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 525.6 Q +-2.995 F F2(ar)2.995 E(gs)-.37 E F0(,).27 E(or only null ar)144 537.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 542.4 Q F0([)2.5 E F1(\255cl)A F0 2.5(][)C F1-2.5 E F2 +(exec)108 554.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 554.4 Q F2(command)3.005 E F0 .305 +-.37 E F0(]])A(If)144 566.4 Q F2(command)3.005 E F0 .305 (is speci\214ed, it replaces the shell.)3.575 F .305(No ne)5.305 F 2.805 (wp)-.25 G .306(rocess is created.)-2.805 F(The)5.306 E F2(ar)3.136 E -(guments)-.37 E F0(become)3.076 E .177(the ar)144 566.4 R .177 +(guments)-.37 E F0(become)3.076 E .177(the ar)144 578.4 R .177 (guments to)-.18 F F2(command)2.676 E F0 5.176(.I)C 2.676(ft)-5.176 G (he)-2.676 E F12.676 E F0 .176 (option is supplied, the shell places a dash at the be)2.676 F .176 -(ginning of)-.15 F .499(the zeroth ar)144 578.4 R .499(gument passed to) +(ginning of)-.15 F .499(the zeroth ar)144 590.4 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 590.4 Q F0 .639(to be e) +.5(option causes)3 F F2(com-)3.2 E(mand)144 602.4 Q F0 .639(to be e) 3.909 F -.15(xe)-.15 G .638(cuted with an empty en).15 F 3.138 (vironment. If)-.4 F F13.138 E F0 .638 (is supplied, the shell passes)3.138 F F2(name)3.498 E F0 .638(as the) -3.318 F 1.077(zeroth ar)144 602.4 R 1.077(gument to the e)-.18 F -.15 +3.318 F 1.077(zeroth ar)144 614.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 614.4 Q .618 -.15(ve s)-.25 H .318(hell e).15 F +.15 F(non-interacti)144 626.4 Q .618 -.15(ve s)-.25 H .318(hell e).15 F .318(xits, unless the shell option)-.15 F F1(execfail)2.817 E F0 .317 (is enabled, in which case it returns f)2.817 F(ail-)-.1 E 2.505 -(ure. An)144 626.4 R(interacti)2.505 E .305 -.15(ve s)-.25 H .005 +(ure. An)144 638.4 R(interacti)2.505 E .305 -.15(ve s)-.25 H .005 (hell returns f).15 F .005(ailure if the \214le cannot be e)-.1 F -.15 (xe)-.15 G 2.505(cuted. If).15 F F2(command)2.705 E F0 .005 -(is not speci\214ed,)3.275 F(an)144 638.4 Q 3.037(yr)-.15 G .537 +(is not speci\214ed,)3.275 F(an)144 650.4 Q 3.037(yr)-.15 G .537 (edirections tak)-3.037 F 3.036(ee)-.1 G -.25(ff)-3.036 G .536 (ect in the current shell, and the return status is 0.).25 F .536 -(If there is a redirection)5.536 F(error)144 650.4 Q 2.5(,t)-.4 G -(he return status is 1.)-2.5 E F1(exit)108 667.2 Q F0([)2.5 E F2(n)A F0 +(If there is a redirection)5.536 F(error)144 662.4 Q 2.5(,t)-.4 G +(he return status is 1.)-2.5 E F1(exit)108 679.2 Q F0([)2.5 E F2(n)A F0 6.29(]C)C .095(ause the shell to e)-6.29 F .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 679.2 S 2.5(cuted. A).15 F(trap on)2.5 E F3(EXIT)2.5 +-.15 F -.15(exe)144 691.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 696 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(GNU Bash-4.0)72 768 Q -(2004 Apr 20)148.735 E(7)203.725 E 0 Cg EP +(GNU Bash-4.0)72 768 Q(2004 Apr 20)148.735 E(7)203.725 E 0 Cg EP %%Page: 8 8 %%BeginPageSetup BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 290.48 (TINS\(1\) B)-.92 F(ASH_B)-.35 E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10 -/Times-Bold@0 SF(export \255p)108 84 Q F0 .257(The supplied)144 96 R/F2 -10/Times-Italic@0 SF(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 108 R(the)2.626 E F12.626 E F0 .127 -(option is gi)2.627 F -.15(ve)-.25 G .127(n, the).15 F F2(names)2.987 E -F0 .127(refer to functions.)2.897 F .127(If no)5.127 F F2(names)2.987 E -F0 .127(are gi)2.897 F -.15(ve)-.25 G .127(n, or if the).15 F F1 -144 120 Q F0 .66(option is supplied, a list of all names that are e)3.16 -F .659(xported in this shell is printed.)-.15 F(The)5.659 E F1 -3.159 E F0(option)3.159 E 1.586(causes the e)144 132 R 1.586 +/Times-Bold@0 SF(export)108 84 Q F0([)2.5 E F1(\255fn)A F0 2.5(][).833 G +/F2 10/Times-Italic@0 SF(name)-2.5 E F0([=)A F2(wor)A(d)-.37 E F0 +(]] ...)A F1(export \255p)108 96 Q F0 .257(The supplied)144 108 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 120 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 132 Q F0 .66 +(option is supplied, a list of all names that are e)3.16 F .659 +(xported in this shell is printed.)-.15 F(The)5.659 E F13.159 E F0 +(option)3.159 E 1.586(causes the e)144 144 R 1.586 (xport property to be remo)-.15 F -.15(ve)-.15 G 4.086(df).15 G 1.586 (rom each)-4.086 F F2(name)4.086 E F0 6.586(.I)C 4.086(fav)-6.586 G -1.587(ariable name is follo)-4.336 F 1.587(wed by)-.25 F(=)144 144 Q F2 +1.587(ariable name is follo)-4.336 F 1.587(wed by)-.25 F(=)144 156 Q F2 (wor)A(d)-.37 E F0 2.804(,t)C .304(he v)-2.804 F .304(alue of the v)-.25 F .304(ariable is set to)-.25 F F2(wor)2.804 E(d)-.37 E F0(.)A F1 (export)5.304 E F0 .304(returns an e)2.804 F .303 (xit status of 0 unless an in)-.15 F -.25(va)-.4 G(lid).25 E .293 -(option is encountered, one of the)144 156 R F2(names)2.793 E F0 .293 +(option is encountered, one of the)144 168 R F2(names)2.793 E F0 .293 (is not a v)2.793 F .293(alid shell v)-.25 F .293(ariable name, or)-.25 -F F12.793 E F0 .294(is supplied with a)2.793 F F2(name)144.36 168 -Q F0(that is not a function.)2.68 E F1(fc)108 184.8 Q F0([)2.5 E F1 +F F12.793 E F0 .294(is supplied with a)2.793 F F2(name)144.36 180 +Q F0(that is not a function.)2.68 E F1(fc)108 196.8 Q F0([)2.5 E F1 A 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 -196.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 .478(Fix Command.)144 208.8 R .478 +208.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 .478(Fix Command.)144 220.8 R .478 (In the \214rst form, a range of commands from)5.478 F F2<8c72>4.888 E (st)-.1 E F0(to)3.658 E F2(last)3.068 E F0 .477 -(is selected from the his-)3.658 F .881(tory list.)144 220.8 R F2 -.45 +(is selected from the his-)3.658 F .881(tory list.)144 232.8 R F2 -.45 (Fi)5.881 G -.1(rs).45 G(t).1 E F0(and)4.061 E F2(last)3.471 E F0 .882 (may be speci\214ed as a string \(to locate the last command be)4.062 F .882(ginning with)-.15 F .797(that string\) or as a number \(an inde)144 -232.8 R 3.297(xi)-.15 G .797(nto the history list, where a ne)-3.297 F +244.8 R 3.297(xi)-.15 G .797(nto the history list, where a ne)-3.297 F -.05(ga)-.15 G(ti).05 E 1.097 -.15(ve n)-.25 H .796(umber is used as an) -.15 F(of)144 244.8 Q .276(fset from the current command number\).)-.25 F +.15 F(of)144 256.8 Q .276(fset from the current command number\).)-.25 F (If)5.276 E F2(last)2.866 E F0 .277 (is not speci\214ed it is set to the current command)3.456 F .093 -(for listing \(so that)144 256.8 R/F3 10/Courier@0 SF .092 +(for listing \(so that)144 268.8 R/F3 10/Courier@0 SF .092 (fc \255l \25510)2.592 F F0 .092(prints the last 10 commands\) and to) 2.592 F F2<8c72>4.502 E(st)-.1 E F0 2.592(otherwise. If)3.272 F F2<8c72> 4.502 E(st)-.1 E F0 .092(is not)3.272 F -(speci\214ed it is set to the pre)144 268.8 Q -(vious command for editing and \25516 for listing.)-.25 E(The)144 292.8 +(speci\214ed it is set to the pre)144 280.8 Q +(vious command for editing and \25516 for listing.)-.25 E(The)144 304.8 Q F12.522 E F0 .022 (option suppresses the command numbers when listing.)2.522 F(The)5.022 E F12.522 E F0 .022(option re)2.522 F -.15(ve)-.25 G .022 -(rses the order of).15 F .438(the commands.)144 304.8 R .438(If the) +(rses the order of).15 F .438(the commands.)144 316.8 R .438(If the) 5.438 F F12.938 E F0 .438(option is gi)2.938 F -.15(ve)-.25 G .438 (n, the commands are listed on standard output.).15 F(Otherwise,)5.438 E -.334(the editor gi)144 316.8 R -.15(ve)-.25 G 2.834(nb).15 G(y)-2.834 E +.334(the editor gi)144 328.8 R -.15(ve)-.25 G 2.834(nb).15 G(y)-2.834 E F2(ename)3.024 E F0 .335(is in)3.014 F -.2(vo)-.4 G -.1(ke).2 G 2.835 (do).1 G 2.835(na\214)-2.835 G .335(le containing those commands.)-2.835 F(If)5.335 E F2(ename)3.025 E F0 .335(is not gi)3.015 F -.15(ve)-.25 G -(n,).15 E .631(the v)144 328.8 R .631(alue of the)-.25 F/F4 9 +(n,).15 E .631(the v)144 340.8 R .631(alue of the)-.25 F/F4 9 /Times-Bold@0 SF(FCEDIT)3.131 E F0 -.25(va)2.881 G .631 (riable is used, and the v).25 F .631(alue of)-.25 F F4(EDIT)3.131 E(OR) -.162 E F0(if)2.881 E F4(FCEDIT)3.13 E F0 .63(is not set.)2.88 F .63 -(If nei-)5.63 F 1.884(ther v)144 340.8 R 1.884(ariable is set, is used.) +(If nei-)5.63 F 1.884(ther v)144 352.8 R 1.884(ariable is set, is used.) -.25 F 1.884 (When editing is complete, the edited commands are echoed and)6.884 F --.15(exe)144 352.8 S(cuted.).15 E .04(In the second form,)144 376.8 R F2 +-.15(exe)144 364.8 S(cuted.).15 E .04(In the second form,)144 388.8 R F2 (command)2.54 E F0 .04(is re-e)2.54 F -.15(xe)-.15 G .039 (cuted after each instance of).15 F F2(pat)2.539 E F0 .039 (is replaced by)2.539 F F2 -.37(re)2.539 G(p).37 E F0 5.039(.A)C(useful) --2.5 E .406(alias to use with this is)144 388.8 R F3 .406(r='fc \255s') +-2.5 E .406(alias to use with this is)144 400.8 R F3 .406(r='fc \255s') 2.906 F F0 2.906(,s)C 2.906(ot)-2.906 G .406(hat typing)-2.906 F F3 6.406(rc)2.906 G(c)-6.406 E F0 .406(runs the last command be)2.906 F -.407(ginning with)-.15 F F3(cc)144 400.8 Q F0(and typing)2.5 E F3(r)2.5 +.407(ginning with)-.15 F F3(cc)144 412.8 Q F0(and typing)2.5 E F3(r)2.5 E F0(re-e)2.5 E -.15(xe)-.15 G(cutes the last command.).15 E .142 -(If the \214rst form is used, the return v)144 424.8 R .142 +(If the \214rst form is used, the return v)144 436.8 R .142 (alue is 0 unless an in)-.25 F -.25(va)-.4 G .142 (lid option is encountered or).25 F F2<8c72>4.552 E(st)-.1 E F0(or)3.322 -E F2(last)2.732 E F0 .454(specify history lines out of range.)144 436.8 +E F2(last)2.732 E F0 .454(specify history lines out of range.)144 448.8 R .454(If the)5.454 F F12.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 448.8 R -.15(xe)-.15 G .788 +(alue of the)-.25 F .788(last command e)144 460.8 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 .787(If the)5.787 F 1.135 (second form is used, the return status is that of the command re-e)144 -460.8 R -.15(xe)-.15 G 1.136(cuted, unless).15 F F2(cmd)3.836 E F0 1.136 -(does not)4.406 F(specify a v)144 472.8 Q +472.8 R -.15(xe)-.15 G 1.136(cuted, unless).15 F F2(cmd)3.836 E F0 1.136 +(does not)4.406 F(specify a v)144 484.8 Q (alid history line, in which case)-.25 E F1(fc)2.5 E F0(returns f)2.5 E -(ailure.)-.1 E F1(fg)108 489.6 Q F0([)2.5 E F2(jobspec)A F0(])A(Resume) -144 501.6 Q F2(jobspec)5.654 E F0 1.413(in the fore)4.224 F 1.413 +(ailure.)-.1 E F1(fg)108 501.6 Q F0([)2.5 E F2(jobspec)A F0(])A(Resume) +144 513.6 Q F2(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 F2(jobspec)5.653 E F0 -1.413(is not present, the)4.223 F(shell')144 513.6 Q 3.116(sn)-.55 G +1.413(is not present, the)4.223 F(shell')144 525.6 Q 3.116(sn)-.55 G .616(otion of the)-3.116 F F2(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 525.6 Q +(alue is that of the command placed into the)-.25 F(fore)144 537.6 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 F2(jobspec)145.74 537.6 Q +(hen run with job control enabled, if)-2.862 F F2(jobspec)145.74 549.6 Q F0 .004(does not specify a v)2.814 F .004(alid job or)-.25 F F2(jobspec) 4.244 E F0 .004(speci\214es a job that w)2.814 F .004 -(as started without job control.)-.1 F F1(getopts)108 554.4 Q F2 +(as started without job control.)-.1 F F1(getopts)108 566.4 Q F2 (optstring name)2.5 E F0([)2.5 E F2(ar)A(gs)-.37 E F0(])A F1(getopts)144 -566.4 Q F0 .793 +578.4 Q F0 .793 (is used by shell procedures to parse positional parameters.)3.294 F F2 (optstring)6.023 E F0 .793(contains the option)3.513 F .149 -(characters to be recognized; if a character is follo)144 578.4 R .15 +(characters to be recognized; if a character is follo)144 590.4 R .15 (wed by a colon, the option is e)-.25 F .15(xpected to ha)-.15 F .45 --.15(ve a)-.2 H(n).15 E(ar)144 590.4 Q .579 +-.15(ve a)-.2 H(n).15 E(ar)144 602.4 Q .579 (gument, which should be separated from it by white space.)-.18 F .578 (The colon and question mark char)5.579 F(-)-.2 E 1.665 -(acters may not be used as option characters.)144 602.4 R 1.665 +(acters may not be used as option characters.)144 614.4 R 1.665 (Each time it is in)6.665 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F1(getopts) 4.165 E F0 1.665(places the ne)4.165 F(xt)-.15 E .797 -(option in the shell v)144 614.4 R(ariable)-.25 E F2(name)3.297 E F0 +(option in the shell v)144 626.4 R(ariable)-.25 E F2(name)3.297 E F0 3.297(,i).18 G(nitializing)-3.297 E F2(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 626.4 Q .085 +3.296(ft)-3.296 G .796(he ne)-3.296 F(xt)-.15 E(ar)144 638.4 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 .846 -(or a shell script is in)144 638.4 R -.2(vo)-.4 G -.1(ke).2 G 3.345 +(or a shell script is in)144 650.4 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 F1 (getopts)3.345 E F0 .845(places that ar)3.345 F(gument)-.18 E .803 -(into the v)144 650.4 R(ariable)-.25 E F4(OPT)3.303 E(ARG)-.81 E F5(.)A +(into the v)144 662.4 R(ariable)-.25 E F4(OPT)3.303 E(ARG)-.81 E F5(.)A F0 .803(The shell does not reset)5.303 F F4(OPTIND)3.303 E F0 .804 (automatically; it must be manually)3.054 F .294 -(reset between multiple calls to)144 662.4 R F1(getopts)2.793 E F0 .293 +(reset between multiple calls to)144 674.4 R F1(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 674.4 -Q 2.043(When the end of options is encountered,)144 698.4 R F1(getopts) +2.793(ws)-.25 G .293(et of parameters)-2.793 F(is to be used.)144 686.4 +Q 2.043(When the end of options is encountered,)144 710.4 R F1(getopts) 4.543 E F0 -.15(ex)4.543 G 2.043(its with a return v).15 F 2.044 -(alue greater than zero.)-.25 F F4(OPTIND)144 710.4 Q F0 +(alue greater than zero.)-.25 F F4(OPTIND)144 722.4 Q F0 (is set to the inde)2.25 E 2.5(xo)-.15 G 2.5(ft)-2.5 G (he \214rst non-option ar)-2.5 E(gument, and)-.18 E F1(name)2.5 E F0 (is set to ?.)2.5 E(GNU Bash-4.0)72 768 Q(2004 Apr 20)148.735 E(8) @@ -2275,61 +2275,62 @@ F2(READLINE)3.88 E F0(abo)184 240 Q -.15(ve)-.15 G 2.5(\). This).15 F (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(lithist)144 324 Q F0 .654(If set, and the)15.55 F F1 -(cmdhist)3.154 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(with embedded ne)184 336 Q +(ault.)-.1 E F1(lastpipe)144 324 Q F0 1.211 +(If set, and job control is not acti)6.66 F -.15(ve)-.25 G 3.712(,t).15 +G 1.212(he shell runs the last command of a pipeline not)-3.712 F -.15 +(exe)184 336 S(cuted in the background in the current shell en).15 E +(vironment.)-.4 E F1(lithist)144 348 Q F0 .655(If set, and the)15.55 F +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 (wlines rather than using semicolon separators where possible.)-.25 E F1 -(login_shell)144 348 Q F0 .486 +(login_shell)144 372 Q F0 .486 (The shell sets this option if it is started as a login shell \(see)184 -360 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 372 S(lue may not be changed.).25 -E F1(mailwar)144 384 Q(n)-.15 E F0 .814(If set, and a \214le that)184 -396 R F1(bash)3.314 E F0 .815 -(is checking for mail has been accessed since the last time it)3.314 F --.1(wa)184 408 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E +384 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 396 S(lue may not be changed.).25 +E F1(mailwar)144 408 Q(n)-.15 E F0 .815(If set, and a \214le that)184 +420 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 432 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E (`The mail in)-.74 E/F3 10/Times-Italic@0 SF(mail\214le)2.5 E F0 (has been read')2.5 E 2.5('i)-.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E F1 -(no_empty_cmd_completion)144 420 Q F0 .325(If set, and)184 432 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 -(completions when completion is attempted on an empty line.)184 444 Q F1 -(nocaseglob)144 456 Q F0 .436(If set,)184 468 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 480 S +(no_empty_cmd_completion)144 444 Q F0 .324(If set, and)184 456 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 468 Q F1 +(nocaseglob)144 480 Q F0 .437(If set,)184 492 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 504 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 492 Q F0 1.194(If set,)184 -504 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 -F(while e)184 516 Q -.15(xe)-.15 G(cuting).15 E F1(case)2.5 E F0(or)2.5 -E F1([[)2.5 E F0(conditional commands.)2.5 E F1(nullglob)144 528 Q F0 -.854(If set,)184 540 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 552 S(pand to a null string, rather than themselv) -.15 E(es.)-.15 E F1(pr)144 564 Q(ogcomp)-.18 E F0 .677 -(If set, the programmable completion f)184 576 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(are enabled.)184 588 Q -(This option is enabled by def)5 E(ault.)-.1 E F1(pr)144 600 Q(omptv) --.18 E(ars)-.1 E F0 1.447(If set, prompt strings under)184 612 R 1.448 -(go parameter e)-.18 F 1.448(xpansion, command substitution, arithmetic) --.15 F -.15(ex)184 624 S .171(pansion, and quote remo).15 F -.25(va)-.15 +-.15(ve)-.15 G(\).).15 E F1(nocasematch)144 516 Q F0 1.193(If set,)184 +528 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(while e)184 540 Q -.15(xe)-.15 G(cuting).15 E F1(case)2.5 E F0(or)2.5 +E F1([[)2.5 E F0(conditional commands.)2.5 E F1(nullglob)144 552 Q F0 +.855(If set,)184 564 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 576 S(pand to a null string, rather than themselv) +.15 E(es.)-.15 E F1(pr)144 588 Q(ogcomp)-.18 E F0 .676 +(If set, the programmable completion f)184 600 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 612 Q +(This option is enabled by def)5 E(ault.)-.1 E F1(pr)144 624 Q(omptv) +-.18 E(ars)-.1 E F0 1.448(If set, prompt strings under)184 636 R 1.448 +(go parameter e)-.18 F 1.447(xpansion, command substitution, arithmetic) +-.15 F -.15(ex)184 648 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.67 E(OMPTING)-.27 E F0(abo)2.42 E -.15(ve)-.15 G(.).15 E -(This option is enabled by def)184 636 Q(ault.)-.1 E F1 -.18(re)144 648 +-.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 660 Q(ault.)-.1 E F1 -.18(re)144 672 S(stricted_shell).18 E F0 1.069 (The shell sets this option if it is started in restricted mode \(see) -184 660 R F2 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 672 Q 4.178 +184 684 R F2 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 696 Q 4.178 (w\). The)-.25 F -.25(va)4.178 G 1.678(lue may not be changed.).25 F 1.678(This is not reset when the startup \214les are)6.678 F -.15(exe) -184 684 S(cuted, allo).15 E(wing the startup \214les to disco)-.25 E +184 708 S(cuted, allo).15 E(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 696 Q(erbose)-.1 E F0 .501(If set, the)184 708 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 720 Q (GNU Bash-4.0)72 768 Q(2004 Apr 20)148.735 E(18)198.725 E 0 Cg EP %%Page: 19 19 %%BeginPageSetup @@ -2337,101 +2338,104 @@ BP %%EndPageSetup /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 290.48 (TINS\(1\) B)-.92 F(ASH_B)-.35 E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10 -/Times-Bold@0 SF(sour)144 84 Q(cepath)-.18 E F0 .771(If set, the)184 96 -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 108 Q 2.5(gument. This)-.18 F(option is enabled by def)2.5 E(ault.) --.1 E F1(xpg_echo)144 120 Q F0(If set, the)184 132 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 144 Q F0([)2.5 E F1A F0(])A 1.001 -(Suspend the e)144 156 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 168 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 180 S(nless the shell is a login shell and)-2.5 E F1 +/Times-Bold@0 SF(shift_v)144 84 Q(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 180 Q F0([)2.5 E F1A F0(])A 1.002(Suspend the e)144 192 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 204 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 216 S(nless the shell is a login shell and)-2.5 E F1 2.5 E F0(is not supplied, or if job control is not enabled.)2.5 E -F1(test)108 192 Q/F3 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F1([)108 -204 Q F3 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 1.15 +F1(test)108 228 Q/F3 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F1([)108 +240 Q F3 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 1.15 (Return a status of 0 or 1 depending on the e)6.77 F -.25(va)-.25 G 1.15 (luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)3.65 G -(pr).2 E F0 6.15(.E).73 G(ach)-6.15 E 1.188 -(operator and operand must be a separate ar)144 216 R 3.688 -(gument. Expressions)-.18 F 1.187(are composed of the primaries)3.688 F -1.889(described abo)144 228 R 2.189 -.15(ve u)-.15 H(nder).15 E F2 -(CONDITION)4.389 E 1.889(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(.)A -F1(test)6.389 E F0 1.89(does not accept an)4.389 F 4.39(yo)-.15 G 1.89 -(ptions, nor)-4.39 F(does it accept and ignore an ar)144 240 Q +(pr).2 E F0 6.15(.E).73 G(ach)-6.15 E 1.187 +(operator and operand must be a separate ar)144 252 R 3.688 +(gument. Expressions)-.18 F 1.188(are composed of the primaries)3.688 F +1.89(described abo)144 264 R 2.19 -.15(ve u)-.15 H(nder).15 E F2 +(CONDITION)4.39 E 1.89(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(.)A +F1(test)6.39 E F0 1.889(does not accept an)4.389 F 4.389(yo)-.15 G 1.889 +(ptions, nor)-4.389 F(does it accept and ignore an ar)144 276 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 258 R .785 +E .785(Expressions may be combined using the follo)144 294 R .786 (wing operators, listed in decreasing order of prece-)-.25 F 2.5 -(dence. The)144 270 R -.25(eva)2.5 G +(dence. The)144 306 R -.25(eva)2.5 G (luation depends on the number of ar).25 E(guments; see belo)-.18 E -.65 -(w.)-.25 G F1(!)144 282 Q F3 -.2(ex)2.5 G(pr).2 E F0 -.35(Tr)12.6 G +(w.)-.25 G F1(!)144 318 Q F3 -.2(ex)2.5 G(pr).2 E F0 -.35(Tr)12.6 G (ue if).35 E F3 -.2(ex)2.5 G(pr).2 E F0(is f)3.23 E(alse.)-.1 E F1(\() -144 294 Q F3 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0 .26(Returns the v)6.77 +144 330 Q F3 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0 .26(Returns the v)6.77 F .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 306 Q F3 -.2(ex) -144 318 S(pr1).2 E F02.5 E F1(a)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35 -(Tr)180 330 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 342 S(pr1).2 E -F02.5 E F1(o)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180 354 S +(rride the normal precedence of opera-).15 F(tors.)180 342 Q F3 -.2(ex) +144 354 S(pr1).2 E F02.5 E F1(a)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35 +(Tr)180 366 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 378 S(pr1).2 E +F02.5 E F1(o)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180 390 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 370.8 Q F0(and)2.5 E F1([)2.5 E +(pr2).2 E F0(is true.)2.52 E F1(test)144 406.8 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 388.8 S -.18(rg)-2.5 G(uments).18 E(The e) -180 400.8 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 412.8 S -.18 -(rg)-2.5 G(ument).18 E(The e)180 424.8 Q +(guments.)-.18 E 2.5(0a)144 424.8 S -.18(rg)-2.5 G(uments).18 E(The e) +180 436.8 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 448.8 S -.18 +(rg)-2.5 G(ument).18 E(The e)180 460.8 Q (xpression is true if and only if the ar)-.15 E(gument is not null.)-.18 -E 2.5(2a)144 436.8 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar) -180 448.8 R .37(gument is)-.18 F F1(!)2.87 E F0 2.87(,t)C .37(he e)-2.87 +E 2.5(2a)144 472.8 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar) +180 484.8 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 460.8 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 472.8 Q .553 +(gument is null.)-.18 F .38(If the \214rst ar)180 496.8 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 508.8 Q .552 (AL EXPRESSIONS)-.18 F F4(,)A F0 .552(the e)2.802 F .552 (xpression is true if the unary test is true.)-.15 F .552 -(If the \214rst ar)5.552 F(gu-)-.18 E(ment is not a v)180 484.8 Q +(If the \214rst ar)5.552 F(gu-)-.18 E(ment is not a v)180 520.8 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 496.8 S -.18(rg)-2.5 G -(uments).18 E .023(If the second ar)180 508.8 R .023 +(xpression is f)-.15 E(alse.)-.1 E 2.5(3a)144 532.8 S -.18(rg)-2.5 G +(uments).18 E .024(If the second ar)180 544.8 R .023 (gument is one of the binary conditional operators listed abo)-.18 F -.324 -.15(ve u)-.15 H(nder).15 E F2(CON-)2.524 E(DITION)180 520.8 Q -1.478(AL EXPRESSIONS)-.18 F F4(,)A F0 1.477(the result of the e)3.727 F +.323 -.15(ve u)-.15 H(nder).15 E F2(CON-)2.523 E(DITION)180 556.8 Q +1.477(AL EXPRESSIONS)-.18 F F4(,)A F0 1.477(the result of the e)3.727 F 1.477(xpression is the result of the binary test)-.15 F .513 -(using the \214rst and third ar)180 532.8 R .513(guments as operands.) +(using the \214rst and third ar)180 568.8 R .513(guments as operands.) -.18 F(The)5.513 E F13.013 E F0(and)3.013 E F13.013 E F0 -.513(operators are considered)3.013 F .972 -(binary operators when there are three ar)180 544.8 R 3.472(guments. If) +.512(operators are considered)3.013 F .972 +(binary operators when there are three ar)180 580.8 R 3.472(guments. If) -.18 F .972(the \214rst ar)3.472 F .972(gument is)-.18 F F1(!)3.472 E F0 -3.472(,t)C .972(he v)-3.472 F .972(alue is)-.25 F .883(the ne)180 556.8 -R -.05(ga)-.15 G .883(tion of the tw).05 F(o-ar)-.1 E .884 -(gument test using the second and third ar)-.18 F 3.384(guments. If)-.18 -F .884(the \214rst)3.384 F(ar)180 568.8 Q .875(gument is e)-.18 F -(xactly)-.15 E F1(\()3.375 E F0 .875(and the third ar)3.375 F .875 -(gument is e)-.18 F(xactly)-.15 E F1(\))3.375 E F0 3.374(,t)C .874 -(he result is the one-ar)-3.374 F(gument)-.18 E(test of the second ar) -180 580.8 Q 2.5(gument. Otherwise,)-.18 F(the e)2.5 E(xpression is f) --.15 E(alse.)-.1 E 2.5(4a)144 592.8 S -.18(rg)-2.5 G(uments).18 E .384 -(If the \214rst ar)180 604.8 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(posed of the remaining ar)180 616.8 R 4.147 -(guments. Otherwise,)-.18 F 1.647(the e)4.147 F 1.647 +3.472(,t)C .972(he v)-3.472 F .972(alue is)-.25 F .884(the ne)180 592.8 +R -.05(ga)-.15 G .884(tion of the tw).05 F(o-ar)-.1 E .884 +(gument test using the second and third ar)-.18 F 3.383(guments. If)-.18 +F .883(the \214rst)3.383 F(ar)180 604.8 Q .874(gument is e)-.18 F +(xactly)-.15 E F1(\()3.374 E F0 .875(and the third ar)3.374 F .875 +(gument is e)-.18 F(xactly)-.15 E F1(\))3.375 E F0 3.375(,t)C .875 +(he result is the one-ar)-3.375 F(gument)-.18 E(test of the second ar) +180 616.8 Q 2.5(gument. Otherwise,)-.18 F(the e)2.5 E(xpression is f) +-.15 E(alse.)-.1 E 2.5(4a)144 628.8 S -.18(rg)-2.5 G(uments).18 E .385 +(If the \214rst ar)180 640.8 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 652.8 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 628.8 Q -.15(ve) --.15 G(.).15 E 2.5(5o)144 640.8 S 2.5(rm)-2.5 G(ore ar)-2.5 E(guments) --.18 E 1.635(The e)180 652.8 R 1.635(xpression is parsed and e)-.15 F +(according to precedence using the rules listed abo)180 664.8 Q -.15(ve) +-.15 G(.).15 E 2.5(5o)144 676.8 S 2.5(rm)-2.5 G(ore ar)-2.5 E(guments) +-.18 E 1.635(The e)180 688.8 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 -664.8 Q -.15(ve)-.15 G(.).15 E F1(times)108 681.6 Q F0 1.229(Print the \ +700.8 Q -.15(ve)-.15 G(.).15 E F1(times)108 717.6 Q F0 1.229(Print the \ accumulated user and system times for the shell and for processes run f\ -rom the shell.)13.23 F(The return status is 0.)144 693.6 Q(GNU Bash-4.0) +rom the shell.)13.23 F(The return status is 0.)144 729.6 Q(GNU Bash-4.0) 72 768 Q(2004 Apr 20)148.735 E(19)198.725 E 0 Cg EP %%Page: 20 20 %%BeginPageSetup @@ -2441,144 +2445,144 @@ BP (TINS\(1\) B)-.92 F(ASH_B)-.35 E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10 /Times-Bold@0 SF(trap)108 84 Q F0([)2.5 E F1(\255lp)A F0 2.5(][)C([)-2.5 E/F2 10/Times-Italic@0 SF(ar)A(g)-.37 E F0(])A F2(sigspec)2.5 E F0(...]) -2.5 E .702(The command)144 96 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 96 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 108 R F2(sigspec)3.108 E F0 3.108(\)o)C(r)-3.108 E F13.108 E F0 3.108(,e)C .608 (ach speci\214ed signal is reset to its original disposition)-3.108 F -.658(\(the v)144 120 R .658(alue it had upon entrance to the shell\).) --.25 F(If)5.658 E F2(ar)3.488 E(g)-.37 E F0 .659 +.659(\(the v)144 120 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 132 Q F0 .581(is ignored by the shell and by the commands it in) -3.391 F -.2(vo)-.4 G -.1(ke).2 G 3.08(s. If).1 F F2(ar)3.41 E(g)-.37 E -F0 .58(is not present and)3.3 F F13.08 E F0(has)3.08 E 1.214 +144.34 132 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 144 R F2 -(sigspec)4.054 E F0 1.215(are displayed.)4.024 F 1.215(If no ar)6.215 F +(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 156 R F13.36 E F0 .86(is gi)3.36 F -.15(ve)-.25 G(n,).15 E F1(trap)3.36 E F0 .86 (prints the list of commands associated with each)3.36 F 2.83 (signal. The)144 168 R F12.83 E F0 .33(option causes the shell to\ - print a list of signal names and their corresponding num-)2.83 F 4.311 -(bers. Each)144 180 R F2(sigspec)4.651 E F0 1.811 -(is either a signal name de\214ned in <)4.621 F F2(signal.h)A F0 1.81 -(>, or a signal number)B 6.81(.S)-.55 G(ignal)-6.81 E + print a list of signal names and their corresponding num-)2.83 F 4.31 +(bers. Each)144 180 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 192 Q .3 -.15(ve a)-.25 H(nd the).15 E/F3 -9/Times-Bold@0 SF(SIG)2.5 E F0(pre\214x is optional.)2.25 E 1.648(If a) -144 210 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 222 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 234 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 246 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 258 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 270 Q F2(ar)3.474 -E(g)-.37 E F0 .644(is e)3.364 F -.15(xe)-.15 G .643 +9/Times-Bold@0 SF(SIG)2.5 E F0(pre\214x is optional.)2.25 E 1.649(If a) +144 210 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 222 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 234 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 246 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 258 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 270 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 282 Q -.15(xe)-.15 -G(cuting.).15 E .928(If a)144 300 R F2(sigspec)3.768 E F0(is)3.738 E F3 +.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 282 Q -.15(xe)-.15 +G(cuting.).15 E .929(If a)144 300 R F2(sigspec)3.769 E F0(is)3.739 E F3 (ERR)3.429 E F4(,)A F0 .929(the command)3.179 F F2(ar)3.759 E(g)-.37 E F0 .929(is e)3.649 F -.15(xe)-.15 G .929(cuted whene).15 F -.15(ve)-.25 -G 3.429(ras).15 G .929(imple command has a non\255zero)-3.429 F -.15(ex) -144 312 S 1.009(it status, subject to the follo).15 F 1.009 +G 3.429(ras).15 G .928(imple command has a non\255zero)-3.429 F -.15(ex) +144 312 S 1.008(it status, subject to the follo).15 F 1.009 (wing conditions.)-.25 F(The)6.009 E F3(ERR)3.509 E F0 1.009 -(trap is not e)3.259 F -.15(xe)-.15 G 1.008(cuted if the f).15 F 1.008 +(trap is not e)3.259 F -.15(xe)-.15 G 1.009(cuted if the f).15 F 1.009 (ailed com-)-.1 F .324 (mand is part of the command list immediately follo)144 324 R .324 (wing a)-.25 F F1(while)2.824 E F0(or)2.824 E F1(until)2.824 E F0 -.1 -(ke)2.824 G(yw)-.05 E .324(ord, part of the test)-.1 F 1.129(in an)144 +(ke)2.824 G(yw)-.05 E .324(ord, part of the test)-.1 F 1.128(in an)144 336 R F2(if)3.639 E F0 1.129(statement, part of a command e)5.589 F -.15 (xe)-.15 G 1.129(cuted in a).15 F F1(&&)3.629 E F0(or)3.629 E/F5 10 -/Symbol SF3.629 E F0 1.129(list, or if the command')3.629 F 3.628 -(sr)-.55 G(eturn)-3.628 E -.25(va)144 348 S(lue is being in).25 E -.15 +/Symbol SF3.629 E F0 1.129(list, or if the command')3.629 F 3.629 +(sr)-.55 G(eturn)-3.629 E -.25(va)144 348 S(lue is being in).25 E -.15 (ve)-.4 G(rted via).15 E F1(!)2.5 E F0 5(.T)C (hese are the same conditions obe)-5 E(yed by the)-.15 E F1(err)2.5 E (exit)-.18 E F0(option.)2.5 E 1.095 (Signals ignored upon entry to the shell cannot be trapped or reset.)144 366 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 378 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 390 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 406.8 Q F0([)2.5 E F1(\255aftpP)A F0(])A F2(name)2.5 E F0([)2.5 E F2 -(name)A F0(...])2.5 E -.4(Wi)144 418.8 S .173 -(th no options, indicate ho).4 F 2.673(we)-.25 G(ach)-2.673 E F2(name) -3.033 E F0 -.1(wo)2.853 G .174 -(uld be interpreted if used as a command name.).1 F .174(If the)5.174 F -F1144 430.8 Q F0 .843(option is used,)3.343 F F1(type)3.343 E F0 +(name)A F0(...])2.5 E -.4(Wi)144 418.8 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 430.8 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 442.8 Q F0 .086 -(is an alias, shell reserv)2.766 F .086(ed w)-.15 F .086 -(ord, function, b)-.1 F .087(uiltin, or disk \214le, respecti)-.2 F -.15 -(ve)-.25 G(ly).15 E 5.087(.I)-.65 G 2.587(ft)-5.087 G(he)-2.587 E 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 442.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 F2 +(name)2.946 E F0 .086(is not)2.766 F .118 (found, then nothing is printed, and an e)144 454.8 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 466.8 R .855 (ould be e)-.1 F -.15(xe)-.15 G .855(cuted if).15 F F2(name)3.715 E F0 -.855(were speci\214ed as a com-)3.535 F .641(mand name, or nothing if) -144 478.8 R/F6 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 490.8 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 F6 .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 502.8 Q F12.945 E F0 .445(print the hashed v)2.945 F -.444(alue, not necessarily the \214le that appears \214rst in)-.25 F F3 --.666(PA)2.944 G(TH)-.189 E F4(.)A F0 .444(If the)4.944 F F12.944 -E F0(option)2.944 E .265(is used,)144 514.8 R F1(type)2.765 E F0 .265 -(prints all of the places that contain an e)2.765 F -.15(xe)-.15 G .265 -(cutable named).15 F F2(name)2.765 E F0 5.265(.T).18 G .265 -(his includes aliases)-5.265 F .427(and functions, if and only if the) +.855(were speci\214ed as a com-)3.535 F .64(mand name, or nothing if)144 +478.8 R/F6 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 490.8 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 F6 .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 502.8 Q F12.944 E F0 .444(print the hashed v) +2.944 F .444(alue, not necessarily the \214le that appears \214rst in) +-.25 F F3 -.666(PA)2.945 G(TH)-.189 E F4(.)A F0 .445(If the)4.945 F F1 +2.945 E F0(option)2.945 E .265(is used,)144 514.8 R F1(type)2.765 +E F0 .265(prints all of the places that contain an e)2.765 F -.15(xe) +-.15 G .265(cutable named).15 F F2(name)2.765 E F0 5.265(.T).18 G .265 +(his includes aliases)-5.265 F .426(and functions, if and only if the) 144 526.8 R F12.926 E F0 .426(option is not also used.)2.926 F -.426(The table of hashed commands is not)5.426 F .548 -(consulted when using)144 538.8 R F13.048 E F0 5.548(.T)C(he) --5.548 E F13.048 E F0 .549 -(option suppresses shell function lookup, as with the)3.048 F F1 -(command)3.049 E F0 -.2(bu)144 550.8 S(iltin.).2 E F1(type)5 E F0 +.427(The table of hashed commands is not)5.426 F .549 +(consulted when using)144 538.8 R F13.049 E F0 5.549(.T)C(he) +-5.549 E F13.049 E F0 .548 +(option suppresses shell function lookup, as with the)3.049 F F1 +(command)3.048 E F0 -.2(bu)144 550.8 S(iltin.).2 E F1(type)5 E F0 (returns true if all of the ar)2.5 E(guments are found, f)-.18 E (alse if an)-.1 E 2.5(ya)-.15 G(re not found.)-2.5 E F1(ulimit)108 567.6 Q F0([)2.5 E F1(\255HST)A(abcde\214lmnpqrstuvx)-.92 E F0([)2.5 E F2 -(limit)A F0(]])A(Pro)144 579.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 +(limit)A F0(]])A(Pro)144 579.6 Q .243(vides control o)-.15 F -.15(ve) +-.15 G 2.743(rt).15 G .243(he resources a)-2.743 F -.25(va)-.2 G .244 (ilable to the shell and to processes started by it, on systems).25 F -.943(that allo)144 591.6 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 +.944(that allo)144 591.6 R 3.444(ws)-.25 G .944(uch control.)-3.444 F +(The)5.944 E F13.444 E F0(and)3.444 E F13.444 E F0 .943 (options specify that the hard or soft limit is set for the)3.444 F(gi) -144 603.6 Q -.15(ve)-.25 G 2.709(nr).15 G 2.709(esource. A)-2.709 F .208 +144 603.6 Q -.15(ve)-.25 G 2.708(nr).15 G 2.708(esource. A)-2.708 F .208 (hard limit cannot be increased by a non-root user once it is set; a so\ -ft limit may)2.709 F .425(be increased up to the v)144 615.6 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 -(is speci\214ed, both the soft and)2.926 F .139(hard limits are set.)144 +ft limit may)2.708 F .426(be increased up to the v)144 615.6 R .426 +(alue of the hard limit.)-.25 F .425(If neither)5.426 F F12.925 E +F0(nor)2.925 E F12.925 E F0 .425 +(is speci\214ed, both the soft and)2.925 F .139(hard limits are set.)144 627.6 R .139(The v)5.139 F .139(alue of)-.25 F F2(limit)2.729 E F0 .139 (can be a number in the unit speci\214ed for the resource or one)3.319 F -.741(of the special v)144 639.6 R(alues)-.25 E F1(hard)3.241 E F0(,)A F1 +.742(of the special v)144 639.6 R(alues)-.25 E F1(hard)3.242 E F0(,)A F1 (soft)3.241 E F0 3.241(,o)C(r)-3.241 E F1(unlimited)3.241 E F0 3.241(,w) C .741(hich stand for the current hard limit, the current)-3.241 F .78 (soft limit, and no limit, respecti)144 651.6 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 .498(resource is printed, unless the)144 663.6 R F12.999 E F0 -.499(option is gi)2.999 F -.15(ve)-.25 G 2.999(n. When).15 F .499 +F .499(resource is printed, unless the)144 663.6 R F12.999 E F0 +.499(option is gi)2.999 F -.15(ve)-.25 G 2.999(n. When).15 F .498 (more than one resource is speci\214ed, the)2.999 F (limit name and unit are printed before the v)144 675.6 Q 2.5 (alue. Other)-.25 F(options are interpreted as follo)2.5 E(ws:)-.25 E F1 @@ -2602,8 +2606,8 @@ E F1144 120 Q F0(The maximum number of pending signals)27.52 E F1 (The maximum resident set size \(man)21.97 E 2.5(ys)-.15 G (ystems do not honor this limit\))-2.5 E F1144 156 Q F0 .791(The \ maximum number of open \214le descriptors \(most systems do not allo) -24.74 F 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F(be set\))180 -168 Q F1144 180 Q F0 +24.74 F 3.291(wt)-.25 G .791(his v)-3.291 F .791(alue to)-.25 F +(be set\))180 168 Q F1144 180 Q F0 (The pipe size in 512-byte blocks \(this may not be set\))24.74 E F1 144 192 Q F0(The maximum number of bytes in POSIX message queues) 24.74 E F1144 204 Q F0(The maximum real-time scheduling priority) @@ -2618,16 +2622,16 @@ Q F1144 276 Q F0(The maximum number of \214le locks)25.3 E F1 /F2 10/Times-Italic@0 SF(limit)2.933 E F0 .343(is gi)3.523 F -.15(ve) -.25 G .343(n, it is the ne).15 F 2.843(wv)-.25 G .343 (alue of the speci\214ed resource \(the)-3.093 F F12.843 E F0 .343 -(option is display only\).)2.843 F .343(If no)5.343 F .175(option is gi) -144 316.8 R -.15(ve)-.25 G .175(n, then).15 F F12.675 E F0 .175 -(is assumed.)2.675 F -1.11(Va)5.175 G .175 -(lues are in 1024-byte increments, e)1.11 F .176(xcept for)-.15 F F1 -2.676 E F0 2.676(,w)C .176(hich is in)-2.676 F(seconds,)144 328.8 -Q F12.516 E F0 2.516(,w)C .016 -(hich is in units of 512-byte blocks, and)-2.516 F F12.516 E F0(,) -A F12.515 E F0(,)A F12.515 E F0 2.515(,a)C(nd)-2.515 E F1 -2.515 E F0 2.515(,w)C .015(hich are unscaled v)-2.515 F(al-)-.25 E -3.787(ues. The)144 340.8 R 1.287(return status is 0 unless an in)3.787 F +(option is display only\).)2.843 F .343(If no)5.343 F .176(option is gi) +144 316.8 R -.15(ve)-.25 G .176(n, then).15 F F12.676 E F0 .175 +(is assumed.)2.676 F -1.11(Va)5.175 G .175 +(lues are in 1024-byte increments, e)1.11 F .175(xcept for)-.15 F F1 +2.675 E F0 2.675(,w)C .175(hich is in)-2.675 F(seconds,)144 328.8 +Q F12.515 E F0 2.515(,w)C .015 +(hich is in units of 512-byte blocks, and)-2.515 F F12.516 E F0(,) +A F12.516 E F0(,)A F12.516 E F0 2.516(,a)C(nd)-2.516 E F1 +2.516 E F0 2.516(,w)C .016(hich are unscaled v)-2.516 F(al-)-.25 E +3.788(ues. The)144 340.8 R 1.287(return status is 0 unless an in)3.787 F -.25(va)-.4 G 1.287(lid option or ar).25 F 1.287 (gument is supplied, or an error occurs)-.18 F(while setting a ne)144 352.8 Q 2.5(wl)-.25 G(imit.)-2.5 E F1(umask)108 369.6 Q F0([)2.5 E F1 @@ -2637,15 +2641,15 @@ A F12.515 E F0(,)A F12.515 E F0 2.515(,a)C(nd)-2.515 E F1 (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 393.6 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144 -405.6 Q F2(mode)3.263 E F0 .382(is omitted, the current v)3.063 F .382 +405.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 417.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 429.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 441.6 Q +(mode)144.38 429.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 441.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 458.4 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0 @@ -2655,40 +2659,40 @@ F14.155 E F0 1.655(is supplied, all alias de\214nitions are)4.155 F(remo)144 482.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 499.2 Q F0<5bad>2.5 E F1 -(fv)A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E -.15(Fo)144 511.2 S 3.107 -(re).15 G(ach)-3.107 E F2(name)3.107 E F0 3.107(,r).18 G(emo)-3.107 E -.907 -.15(ve t)-.15 H .607(he corresponding v).15 F .607 -(ariable or function.)-.25 F .606(If no options are supplied, or the) -5.607 F F1144 523.2 Q F0 .304(option is gi)2.804 F -.15(ve)-.25 G -.304(n, each).15 F F2(name)3.164 E F0 .305(refers to a shell v)2.985 F -2.805(ariable. Read-only)-.25 F -.25(va)2.805 G .305 -(riables may not be unset.).25 F(If)5.305 E F1144 535.2 Q F0 .46 -(is speci\214ed, each)2.96 F F2(name)3.32 E F0 .459 -(refers to a shell function, and the function de\214nition is remo)3.14 -F -.15(ve)-.15 G 2.959(d. Each).15 F .902(unset v)144 547.2 R .902 +(fv)A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E -.15(Fo)144 511.2 S 3.106 +(re).15 G(ach)-3.106 E F2(name)3.106 E F0 3.106(,r).18 G(emo)-3.106 E +.906 -.15(ve t)-.15 H .606(he corresponding v).15 F .607 +(ariable or function.)-.25 F .607(If no options are supplied, or the) +5.607 F F1144 523.2 Q F0 .305(option is gi)2.805 F -.15(ve)-.25 G +.305(n, each).15 F F2(name)3.165 E F0 .305(refers to a shell v)2.985 F +2.805(ariable. Read-only)-.25 F -.25(va)2.805 G .304 +(riables may not be unset.).25 F(If)5.304 E F1144 535.2 Q F0 .459 +(is speci\214ed, each)2.959 F F2(name)3.319 E F0 .459 +(refers to a shell function, and the function de\214nition is remo)3.139 +F -.15(ve)-.15 G 2.96(d. Each).15 F .903(unset v)144 547.2 R .903 (ariable or function is remo)-.25 F -.15(ve)-.15 G 3.402(df).15 G .902 -(rom the en)-3.402 F .903(vironment passed to subsequent commands.)-.4 F -(If)5.903 E(an)144 559.2 Q 6.916(yo)-.15 G(f)-6.916 E/F3 9/Times-Bold@0 -SF(COMP_W)6.916 E(ORDBREAKS)-.09 E/F4 9/Times-Roman@0 SF(,)A F3(RANDOM) +(rom the en)-3.402 F .902(vironment passed to subsequent commands.)-.4 F +(If)5.902 E(an)144 559.2 Q 6.915(yo)-.15 G(f)-6.915 E/F3 9/Times-Bold@0 +SF(COMP_W)6.915 E(ORDBREAKS)-.09 E/F4 9/Times-Roman@0 SF(,)A F3(RANDOM) 6.665 E F4(,)A F3(SECONDS)6.665 E F4(,)A F3(LINENO)6.665 E F4(,)A F3 -(HISTCMD)6.665 E F4(,)A F3(FUNCN)6.665 E(AME)-.18 E F4(,)A F3(GR)144 -571.2 Q(OUPS)-.27 E F4(,)A F0(or)2.522 E F3(DIRST)2.772 E -.495(AC)-.81 +(HISTCMD)6.666 E F4(,)A F3(FUNCN)6.666 E(AME)-.18 E F4(,)A F3(GR)144 +571.2 Q(OUPS)-.27 E F4(,)A F0(or)2.523 E F3(DIRST)2.773 E -.495(AC)-.81 G(K).495 E F0 .272(are unset, the)2.522 F 2.772(yl)-.15 G .272 (ose their special properties, e)-2.772 F -.15(ve)-.25 G 2.772(ni).15 G -2.772(ft)-2.772 G(he)-2.772 E 2.773(ya)-.15 G .273(re subsequently) --2.773 F 2.5(reset. The)144 583.2 R -.15(ex)2.5 G +2.772(ft)-2.772 G(he)-2.772 E 2.772(ya)-.15 G .272(re subsequently) +-2.772 F 2.5(reset. The)144 583.2 R -.15(ex)2.5 G (it status is true unless a).15 E F2(name)2.86 E F0(is readonly)2.68 E (.)-.65 E F1(wait)108 600 Q F0([)2.5 E F2 2.5(n.)C(..)-2.5 E F0(])A -.8 (Wa)144 612 S .288 (it for each speci\214ed process and return its termination status.).8 F -(Each)5.288 E F2(n)3.148 E F0 .287(may be a process ID or a)3.028 F .722 +(Each)5.288 E F2(n)3.148 E F0 .288(may be a process ID or a)3.028 F .722 (job speci\214cation; if a job spec is gi)144 624 R -.15(ve)-.25 G .722 (n, all processes in that job').15 F 3.222(sp)-.55 G .722(ipeline are w) --3.222 F .722(aited for)-.1 F 5.722(.I)-.55 G(f)-5.722 E F2(n)3.583 E F0 -(is)3.463 E 1.266(not gi)144 636 R -.15(ve)-.25 G 1.266 -(n, all currently acti).15 F 1.566 -.15(ve c)-.25 H 1.265 -(hild processes are w).15 F 1.265(aited for)-.1 F 3.765(,a)-.4 G 1.265 -(nd the return status is zero.)-3.765 F(If)6.265 E F2(n)4.125 E F0 .456 +-3.222 F .722(aited for)-.1 F 5.722(.I)-.55 G(f)-5.722 E F2(n)3.582 E F0 +(is)3.462 E 1.265(not gi)144 636 R -.15(ve)-.25 G 1.265 +(n, all currently acti).15 F 1.565 -.15(ve c)-.25 H 1.265 +(hild processes are w).15 F 1.265(aited for)-.1 F 3.765(,a)-.4 G 1.266 +(nd the return status is zero.)-3.765 F(If)6.266 E F2(n)4.126 E F0 .457 (speci\214es a non-e)144 648 R .457 (xistent process or job, the return status is 127.)-.15 F .457 (Otherwise, the return status is the)5.457 F -.15(ex)144 660 S diff --git a/doc/rbash.ps b/doc/rbash.ps index 4f535387..62dca30a 100644 --- a/doc/rbash.ps +++ b/doc/rbash.ps @@ -1,6 +1,6 @@ %!PS-Adobe-3.0 %%Creator: groff version 1.19.2 -%%CreationDate: Tue Jun 29 14:02:44 2010 +%%CreationDate: Wed Jul 21 08:54:50 2010 %%DocumentNeededResources: font Times-Roman %%+ font Times-Bold %%DocumentSuppliedResources: procset grops 1.19 2 diff --git a/doc/version.texi b/doc/version.texi index 626af101..b88cc462 100644 --- a/doc/version.texi +++ b/doc/version.texi @@ -2,10 +2,9 @@ Copyright (C) 1988-2010 Free Software Foundation, Inc. @end ignore -@set LASTCHANGE Fri Jul 2 17:30:39 EDT 2010 +@set LASTCHANGE Wed Jul 21 08:54:40 EDT 2010 - -@set EDITION 4.1 -@set VERSION 4.1 -@set UPDATED 2 July 2010 +@set EDITION 4.2 +@set VERSION 4.2 +@set UPDATED 21 July 2010 @set UPDATED-MONTH July 2010 diff --git a/lib/readline/Makefile.in b/lib/readline/Makefile.in index 2204628a..4387a54e 100644 --- a/lib/readline/Makefile.in +++ b/lib/readline/Makefile.in @@ -83,7 +83,7 @@ CSOURCES = $(srcdir)/readline.c $(srcdir)/funmap.c $(srcdir)/keymaps.c \ $(srcdir)/histfile.c $(srcdir)/nls.c $(srcdir)/search.c \ $(srcdir)/shell.c $(srcdir)/tilde.c $(srcdir)/savestring.c \ $(srcdir)/text.c $(srcdir)/misc.c $(srcdir)/compat.c \ - $(srcdir)/mbutil.c + $(srcdir)/mbutil.c $(srcdir)/xfree.c # The header files for this library. HSOURCES = readline.h rldefs.h chardefs.h keymaps.h history.h histlib.h \ @@ -97,7 +97,7 @@ TILDEOBJ = tilde.o OBJECTS = readline.o vi_mode.o funmap.o keymaps.o parens.o search.o \ rltty.o complete.o bind.o isearch.o display.o signals.o \ util.o kill.o undo.o macro.o input.o callback.o terminal.o \ - text.o nls.o misc.o $(HISTOBJ) $(TILDEOBJ) xmalloc.o compat.o + text.o nls.o misc.o $(HISTOBJ) $(TILDEOBJ) xmalloc.o xfree.o compat.o # The texinfo files which document this library. DOCSOURCE = doc/rlman.texinfo doc/rltech.texinfo doc/rluser.texinfo @@ -123,9 +123,9 @@ libreadline.a: $(OBJECTS) $(AR) $(ARFLAGS) $@ $(OBJECTS) -test -n "$(RANLIB)" && $(RANLIB) $@ -libhistory.a: $(HISTOBJ) xmalloc.o +libhistory.a: $(HISTOBJ) xmalloc.o xfree.o $(RM) $@ - $(AR) $(ARFLAGS) $@ $(HISTOBJ) xmalloc.o + $(AR) $(ARFLAGS) $@ $(HISTOBJ) xmalloc.o xfree.o -test -n "$(RANLIB)" && $(RANLIB) $@ documentation: force @@ -262,6 +262,7 @@ vi_mode.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h vi_mode.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h vi_mode.o: history.h ansi_stdlib.h rlstdc.h xmalloc.o: ${BUILD_DIR}/config.h ansi_stdlib.h +xfree.o: ${BUILD_DIR}/config.h ansi_stdlib.h bind.o: rlshell.h histfile.o: rlshell.h @@ -317,6 +318,7 @@ tilde.o: xmalloc.h undo.o: xmalloc.h util.o: xmalloc.h vi_mode.o: xmalloc.h +xfree.o: xmalloc.h xmalloc.o: xmalloc.h complete.o: rlmbutil.h @@ -359,6 +361,7 @@ tilde.o: tilde.c undo.o: undo.c util.o: util.c vi_mode.o: vi_mode.c +xfree.o: xfree.c xmalloc.o: xmalloc.c histexpand.o: histexpand.c diff --git a/lib/readline/Makefile.in~ b/lib/readline/Makefile.in~ new file mode 100644 index 00000000..2204628a --- /dev/null +++ b/lib/readline/Makefile.in~ @@ -0,0 +1,367 @@ +## -*- text -*- ############################################################# +# # +# Makefile for the Bash versions of the GNU Readline and History Libraries. # +# # +############################################################################# + +# Copyright (C) 1994-2009 Free Software Foundation, Inc. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +PACKAGE = @PACKAGE_NAME@ +VERSION = @PACKAGE_VERSION@ + +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_VERSION = @PACKAGE_VERSION@ + +srcdir = @srcdir@ +VPATH = .:@srcdir@ +topdir = @top_srcdir@ +BUILD_DIR = @BUILD_DIR@ + +datarootdir = @datarootdir@ + +INSTALL = @INSTALL@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_DATA = @INSTALL_DATA@ + +CC = @CC@ +RANLIB = @RANLIB@ +AR = @AR@ +ARFLAGS = @ARFLAGS@ +RM = rm -f +CP = cp +MV = mv + +SHELL = @MAKE_SHELL@ + +# Programs to make tags files. +ETAGS = etags -tw +CTAGS = ctags -tw + +CFLAGS = @CFLAGS@ +LOCAL_CFLAGS = @LOCAL_CFLAGS@ +CPPFLAGS = @CPPFLAGS@ +LDFLAGS = @LDFLAGS@ + +DEFS = @DEFS@ +LOCAL_DEFS = @LOCAL_DEFS@ + +INCLUDES = -I. -I$(BUILD_DIR) -I$(topdir) -I$(topdir)/lib + +CCFLAGS = $(DEFS) $(LOCAL_DEFS) $(APP_CFLAGS) $(CPPFLAGS) ${INCLUDES} $(LOCAL_CFLAGS) $(CFLAGS) + +.c.o: + ${RM} $@ + $(CC) -c $(CCFLAGS) $< + +# The name of the main library target. +LIBRARY_NAME = libreadline.a + +# The C code source files for this library. +CSOURCES = $(srcdir)/readline.c $(srcdir)/funmap.c $(srcdir)/keymaps.c \ + $(srcdir)/vi_mode.c $(srcdir)/parens.c $(srcdir)/rltty.c \ + $(srcdir)/complete.c $(srcdir)/bind.c $(srcdir)/isearch.c \ + $(srcdir)/display.c $(srcdir)/signals.c $(srcdir)/emacs_keymap.c \ + $(srcdir)/vi_keymap.c $(srcdir)/util.c $(srcdir)/kill.c \ + $(srcdir)/undo.c $(srcdir)/macro.c $(srcdir)/input.c \ + $(srcdir)/callback.c $(srcdir)/terminal.c $(srcdir)/xmalloc.c \ + $(srcdir)/history.c $(srcdir)/histsearch.c $(srcdir)/histexpand.c \ + $(srcdir)/histfile.c $(srcdir)/nls.c $(srcdir)/search.c \ + $(srcdir)/shell.c $(srcdir)/tilde.c $(srcdir)/savestring.c \ + $(srcdir)/text.c $(srcdir)/misc.c $(srcdir)/compat.c \ + $(srcdir)/mbutil.c + +# The header files for this library. +HSOURCES = readline.h rldefs.h chardefs.h keymaps.h history.h histlib.h \ + posixstat.h posixdir.h posixjmp.h tilde.h rlconf.h rltty.h \ + ansi_stdlib.h rlstdc.h tcap.h xmalloc.h rlprivate.h rlshell.h \ + rltypedefs.h rlmbutil.h + +HISTOBJ = history.o histexpand.o histfile.o histsearch.o shell.o savestring.o \ + mbutil.o +TILDEOBJ = tilde.o +OBJECTS = readline.o vi_mode.o funmap.o keymaps.o parens.o search.o \ + rltty.o complete.o bind.o isearch.o display.o signals.o \ + util.o kill.o undo.o macro.o input.o callback.o terminal.o \ + text.o nls.o misc.o $(HISTOBJ) $(TILDEOBJ) xmalloc.o compat.o + +# The texinfo files which document this library. +DOCSOURCE = doc/rlman.texinfo doc/rltech.texinfo doc/rluser.texinfo +DOCOBJECT = doc/readline.dvi +DOCSUPPORT = doc/Makefile +DOCUMENTATION = $(DOCSOURCE) $(DOCOBJECT) $(DOCSUPPORT) + +SUPPORT = Makefile ChangeLog $(DOCSUPPORT) examples/[-a-z.]* + +SOURCES = $(CSOURCES) $(HSOURCES) $(DOCSOURCE) + +THINGS_TO_TAR = $(SOURCES) $(SUPPORT) + +INSTALLED_HEADERS = readline.h chardefs.h keymaps.h history.h tilde.h \ + rlstdc.h rlconf.h rltypedefs.h + +########################################################################## + +all: libreadline.a libhistory.a + +libreadline.a: $(OBJECTS) + $(RM) $@ + $(AR) $(ARFLAGS) $@ $(OBJECTS) + -test -n "$(RANLIB)" && $(RANLIB) $@ + +libhistory.a: $(HISTOBJ) xmalloc.o + $(RM) $@ + $(AR) $(ARFLAGS) $@ $(HISTOBJ) xmalloc.o + -test -n "$(RANLIB)" && $(RANLIB) $@ + +documentation: force + test -d doc || mkdir doc + -( cd doc && $(MAKE) $(MFLAGS) ) + +# Since tilde.c is shared between readline and bash, make sure we compile +# it with the right flags when it's built as part of readline +tilde.o: tilde.c + rm -f $@ + $(CC) $(CCFLAGS) -DREADLINE_LIBRARY -c $(srcdir)/tilde.c + +force: + +install: + @echo "This version of the readline library should not be installed." + +uninstall: + @echo "This version of the readline library should not be installed." + +TAGS: force + $(ETAGS) $(CSOURCES) $(HSOURCES) + +tags: force + $(CTAGS) $(CSOURCES) $(HSOURCES) + +clean: force + $(RM) $(OBJECTS) *.a + -( cd doc && $(MAKE) $(MFLAGS) $@ ) + +mostlyclean: clean + -( cd doc && $(MAKE) $(MFLAGS) $@ ) + +distclean maintainer-clean: clean + -( cd doc && $(MAKE) $(MFLAGS) $@ ) + $(RM) Makefile + $(RM) TAGS tags + +# Dependencies +bind.o: ansi_stdlib.h posixstat.h +bind.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +bind.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +bind.o: history.h rlstdc.h +callback.o: rlconf.h ansi_stdlib.h +callback.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +callback.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h +compat.o: rlstdc.h +complete.o: ansi_stdlib.h posixdir.h posixstat.h +complete.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +complete.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h +display.o: ansi_stdlib.h posixstat.h +display.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +display.o: tcap.h +display.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +display.o: history.h rlstdc.h +funmap.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +funmap.o: rlconf.h ansi_stdlib.h rlstdc.h +funmap.o: ${BUILD_DIR}/config.h +histexpand.o: ansi_stdlib.h +histexpand.o: history.h histlib.h rlstdc.h +histexpand.o: ${BUILD_DIR}/config.h +histfile.o: ansi_stdlib.h +histfile.o: history.h histlib.h rlstdc.h +histfile.o: ${BUILD_DIR}/config.h +history.o: ansi_stdlib.h +history.o: history.h histlib.h rlstdc.h +history.o: ${BUILD_DIR}/config.h +histsearch.o: ansi_stdlib.h +histsearch.o: history.h histlib.h rlstdc.h +histsearch.o: ${BUILD_DIR}/config.h +input.o: ansi_stdlib.h +input.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +input.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h +isearch.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +isearch.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +isearch.o: ansi_stdlib.h history.h rlstdc.h +keymaps.o: emacs_keymap.c vi_keymap.c +keymaps.o: keymaps.h rltypedefs.h chardefs.h rlconf.h ansi_stdlib.h +keymaps.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +keymaps.o: ${BUILD_DIR}/config.h rlstdc.h +kill.o: ansi_stdlib.h +kill.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +kill.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +kill.o: history.h rlstdc.h +macro.o: ansi_stdlib.h +macro.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +macro.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +macro.o: history.h rlstdc.h +mbutil.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h rlmbutil.h +mbutil.o: readline.h keymaps.h rltypedefs.h chardefs.h rlstdc.h +misc.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +misc.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +misc.o: history.h rlstdc.h ansi_stdlib.h +nls.o: ansi_stdlib.h +nls.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +nls.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +nls.o: history.h rlstdc.h +parens.o: rlconf.h +parens.o: ${BUILD_DIR}/config.h +parens.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h +readline.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +readline.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +readline.o: history.h rlstdc.h +readline.o: posixstat.h ansi_stdlib.h posixjmp.h +rltty.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +rltty.o: rltty.h +rltty.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h +search.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +search.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +search.o: ansi_stdlib.h history.h rlstdc.h +shell.o: ${BUILD_DIR}/config.h ansi_stdlib.h +signals.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +signals.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +signals.o: history.h rlstdc.h +terminal.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +terminal.o: tcap.h +terminal.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +terminal.o: history.h rlstdc.h +text.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +text.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +text.o: history.h rlstdc.h ansi_stdlib.h +rltty.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +tilde.o: ansi_stdlib.h +tilde.o: ${BUILD_DIR}/config.h +tilde.o: tilde.h +undo.o: ansi_stdlib.h +undo.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +undo.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +undo.o: history.h rlstdc.h xmalloc.h +util.o: posixjmp.h ansi_stdlib.h +util.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +util.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h +vi_mode.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h +vi_mode.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h +vi_mode.o: history.h ansi_stdlib.h rlstdc.h +xmalloc.o: ${BUILD_DIR}/config.h ansi_stdlib.h + +bind.o: rlshell.h +histfile.o: rlshell.h +nls.o: rlshell.h +readline.o: rlshell.h +shell.o: rlshell.h +terminal.o: rlshell.h +histexpand.o: rlshell.h + +bind.o: rlprivate.h +callback.o: rlprivate.h +complete.o: rlprivate.h +display.o: rlprivate.h +input.o: rlprivate.h +isearch.o: rlprivate.h +kill.o: rlprivate.h +macro.o: rlprivate.h +mbutil.o: rlprivate.h +misc.o: rlprivate.h +nls.o: rlprivate.h +parens.o: rlprivate.h +readline.o: rlprivate.h +rltty.o: rlprivate.h +search.o: rlprivate.h +signals.o: rlprivate.h +terminal.o: rlprivate.h +text.o: rlprivate.h +undo.o: rlprivate.h +util.o: rlprivate.h +vi_mode.o: rlprivate.h + +bind.o: xmalloc.h +complete.o: xmalloc.h +display.o: xmalloc.h +funmap.o: xmalloc.h +histexpand.o: xmalloc.h +histfile.o: xmalloc.h +history.o: xmalloc.h +input.o: xmalloc.h +isearch.o: xmalloc.h +keymaps.o: xmalloc.h +kill.o: xmalloc.h +macro.o: xmalloc.h +mbutil.o: xmalloc.h +misc.o: xmalloc.h +readline.o: xmalloc.h +savestring.o: xmalloc.h +search.o: xmalloc.h +shell.o: xmalloc.h +terminal.o: xmalloc.h +text.o: xmalloc.h +tilde.o: xmalloc.h +undo.o: xmalloc.h +util.o: xmalloc.h +vi_mode.o: xmalloc.h +xmalloc.o: xmalloc.h + +complete.o: rlmbutil.h +display.o: rlmbutil.h +histexpand.o: rlmbutil.h +input.o: rlmbutil.h +isearch.o: rlmbutil.h +mbutil.o: rlmbutil.h +misc.o: rlmbutil.h +readline.o: rlmbutil.h +search.o: rlmbutil.h +text.o: rlmbutil.h +vi_mode.o: rlmbutil.h + +# Rules for deficient makes, like SunOS and Solaris +bind.o: bind.c +callback.o: callback.c +compat.o: compat.c +complete.o: complete.c +display.o: display.c +funmap.o: funmap.c +input.o: input.c +isearch.o: isearch.c +keymaps.o: keymaps.c emacs_keymap.c vi_keymap.c +kill.o: kill.c +macro.o: macro.c +mbutil.o: mbutil.c +misc.o: misc.c +nls.o: nls.c +parens.o: parens.c +readline.o: readline.c +rltty.o: rltty.c +savestring.o: savestring.c +search.o: search.c +shell.o: shell.c +signals.o: signals.c +terminal.o: terminal.c +text.o: text.c +tilde.o: tilde.c +undo.o: undo.c +util.o: util.c +vi_mode.o: vi_mode.c +xmalloc.o: xmalloc.c + +histexpand.o: histexpand.c +histfile.o: histfile.c +history.o: history.c +histsearch.o: histsearch.c diff --git a/lib/readline/complete.c b/lib/readline/complete.c index 92609447..00186cc2 100644 --- a/lib/readline/complete.c +++ b/lib/readline/complete.c @@ -847,7 +847,7 @@ print_filename (to_print, full_pathname, prefix_bytes) if (path_isdir (new_full_pathname)) extension_char = '/'; - free (new_full_pathname); + xfree (new_full_pathname); to_print[-1] = c; } else @@ -862,7 +862,7 @@ print_filename (to_print, full_pathname, prefix_bytes) extension_char = '/'; } - free (s); + xfree (s); if (extension_char) { putc (extension_char, rl_outstream); @@ -1099,7 +1099,7 @@ remove_duplicate_matches (matches) { if (strcmp (matches[i], matches[i + 1]) == 0) { - free (matches[i]); + xfree (matches[i]); matches[i] = (char *)&dead_slot; } else @@ -1117,7 +1117,7 @@ remove_duplicate_matches (matches) temp_array[j] = (char *)NULL; if (matches[0] != (char *)&dead_slot) - free (matches[0]); + xfree (matches[0]); /* Place the lowest common denominator back in [0]. */ temp_array[0] = lowest_common; @@ -1127,7 +1127,7 @@ remove_duplicate_matches (matches) insert. */ if (j == 2 && strcmp (temp_array[0], temp_array[1]) == 0) { - free (temp_array[1]); + xfree (temp_array[1]); temp_array[1] = (char *)NULL; } return (temp_array); @@ -1306,7 +1306,7 @@ postprocess_matches (matchesp, matching_filenames) if (rl_ignore_completion_duplicates) { temp_matches = remove_duplicate_matches (matches); - free (matches); + xfree (matches); matches = temp_matches; } @@ -1648,7 +1648,7 @@ insert_match (match, start, mtype, qc) else _rl_replace_text (replacement, start, end); if (replacement != match) - free (replacement); + xfree (replacement); } } @@ -1715,7 +1715,7 @@ append_to_match (text, delimiter, quote_char, nontrivial_match) if (rl_point == rl_end && temp_string_index) rl_insert_text (temp_string); } - free (filename); + xfree (filename); } else { @@ -1751,7 +1751,7 @@ insert_all_matches (matches, point, qc) rl_insert_text (rp); rl_insert_text (" "); if (rp != matches[i]) - free (rp); + xfree (rp); } } else @@ -1760,7 +1760,7 @@ insert_all_matches (matches, point, qc) rl_insert_text (rp); rl_insert_text (" "); if (rp != matches[0]) - free (rp); + xfree (rp); } rl_end_undo_group (); } @@ -1775,8 +1775,8 @@ _rl_free_match_list (matches) return; for (i = 0; matches[i]; i++) - free (matches[i]); - free (matches); + xfree (matches[i]); + xfree (matches); } /* Complete the word at or before point. @@ -1831,7 +1831,7 @@ rl_complete_internal (what_to_do) if (what_to_do == '!' || what_to_do == '@') tlen = strlen (text); #endif - free (text); + xfree (text); if (matches == 0) { @@ -1936,7 +1936,7 @@ rl_complete_internal (what_to_do) if (saved_line_buffer) { completion_changed_buffer = strcmp (rl_line_buffer, saved_line_buffer) != 0; - free (saved_line_buffer); + xfree (saved_line_buffer); } RL_UNSETSTATE(RL_STATE_COMPLETING); @@ -2003,7 +2003,7 @@ rl_completion_matches (text, entry_function) compute_lcd_of_matches (match_list, matches, text); else /* There were no matches. */ { - free (match_list); + xfree (match_list); match_list = (char **)NULL; } return (match_list); @@ -2197,7 +2197,7 @@ rl_filename_completion_function (text, state) if (*dirname == '~') { temp = tilde_expand (dirname); - free (dirname); + xfree (dirname); dirname = temp; } @@ -2208,14 +2208,14 @@ rl_filename_completion_function (text, state) dequoting. */ if (rl_directory_completion_hook && (*rl_directory_completion_hook) (&dirname)) { - free (users_dirname); + xfree (users_dirname); users_dirname = savestring (dirname); } else if (rl_completion_found_quote && rl_filename_dequoting_function) { /* delete single and double quotes */ temp = (*rl_filename_dequoting_function) (dirname, rl_completion_quote_character); - free (dirname); + xfree (dirname); dirname = temp; } directory = opendir (dirname); @@ -2225,7 +2225,7 @@ rl_filename_completion_function (text, state) { /* delete single and double quotes */ temp = (*rl_filename_dequoting_function) (filename, rl_completion_quote_character); - free (filename); + xfree (filename); filename = temp; } filename_len = strlen (filename); @@ -2281,17 +2281,17 @@ rl_filename_completion_function (text, state) } if (dirname) { - free (dirname); + xfree (dirname); dirname = (char *)NULL; } if (filename) { - free (filename); + xfree (filename); filename = (char *)NULL; } if (users_dirname) { - free (users_dirname); + xfree (users_dirname); users_dirname = (char *)NULL; } @@ -2331,7 +2331,7 @@ rl_filename_completion_function (text, state) temp = savestring (convfn); if (convfn != dentry) - free (convfn); + xfree (convfn); return (temp); } diff --git a/lib/readline/complete.c~ b/lib/readline/complete.c~ index 5b707848..92609447 100644 --- a/lib/readline/complete.c~ +++ b/lib/readline/complete.c~ @@ -477,6 +477,14 @@ get_y_or_n (for_pager) { int c; + /* For now, disable pager in callback mode, until we later convert to state + driven functions. Have to wait until next major version to add new + state definition, since it will change value of RL_STATE_DONE. */ +#if defined (READLINE_CALLBACKS) + if (RL_ISSTATE (RL_STATE_CALLBACK)) + return 1; +#endif + for (;;) { RL_SETSTATE(RL_STATE_MOREINPUT); diff --git a/lib/readline/histexpand.c b/lib/readline/histexpand.c index fd22db3b..8fb3798b 100644 --- a/lib/readline/histexpand.c +++ b/lib/readline/histexpand.c @@ -245,7 +245,7 @@ get_history_event (string, caller_index, delimiting_quote) #define FAIL_SEARCH() \ do { \ - history_offset = history_length; free (temp) ; return (char *)NULL; \ + history_offset = history_length; xfree (temp) ; return (char *)NULL; \ } while (0) /* If there is no search string, try to use the previous search string, @@ -254,7 +254,7 @@ get_history_event (string, caller_index, delimiting_quote) { if (search_string) { - free (temp); + xfree (temp); temp = savestring (search_string); } else @@ -285,7 +285,7 @@ get_history_event (string, caller_index, delimiting_quote) search_match = history_find_word (entry->line, local_index); } else - free (temp); + xfree (temp); return (entry->line); } @@ -508,7 +508,7 @@ postproc_subst_rhs () } } new[j] = '\0'; - free (subst_rhs); + xfree (subst_rhs); subst_rhs = new; subst_rhs_len = j; } @@ -585,7 +585,7 @@ history_expand_internal (string, start, end_index_ptr, ret_string, current_line) if (event == 0) { *ret_string = hist_error (string, start, i, EVENT_NOT_FOUND); - free (result); + xfree (result); return (-1); } @@ -599,7 +599,7 @@ history_expand_internal (string, start, end_index_ptr, ret_string, current_line) if (word_spec == (char *)&error_pointer) { *ret_string = hist_error (string, starting_index, i, BAD_WORD_SPEC); - free (result); + xfree (result); return (-1); } @@ -632,8 +632,8 @@ history_expand_internal (string, start, end_index_ptr, ret_string, current_line) { default: *ret_string = hist_error (string, i+1, i+2, BAD_MODIFIER); - free (result); - free (temp); + xfree (result); + xfree (temp); return -1; case 'q': @@ -658,7 +658,7 @@ history_expand_internal (string, start, end_index_ptr, ret_string, current_line) { tstr++; t = savestring (tstr); - free (temp); + xfree (temp); temp = t; } break; @@ -683,7 +683,7 @@ history_expand_internal (string, start, end_index_ptr, ret_string, current_line) if (tstr) { t = savestring (tstr); - free (temp); + xfree (temp); temp = t; } break; @@ -759,8 +759,8 @@ history_expand_internal (string, start, end_index_ptr, ret_string, current_line) if (subst_lhs_len == 0) { *ret_string = hist_error (string, starting_index, i, NO_PREV_SUBST); - free (result); - free (temp); + xfree (result); + xfree (temp); return -1; } @@ -769,8 +769,8 @@ history_expand_internal (string, start, end_index_ptr, ret_string, current_line) if (subst_lhs_len > l_temp) { *ret_string = hist_error (string, starting_index, i, SUBST_FAILED); - free (result); - free (temp); + xfree (result); + xfree (temp); return (-1); } @@ -811,7 +811,7 @@ history_expand_internal (string, start, end_index_ptr, ret_string, current_line) temp + si + subst_lhs_len, l_temp - (si + subst_lhs_len)); new_event[len] = '\0'; - free (temp); + xfree (temp); temp = new_event; failed = 0; @@ -847,8 +847,8 @@ history_expand_internal (string, start, end_index_ptr, ret_string, current_line) continue; /* don't want to increment i */ *ret_string = hist_error (string, starting_index, i, SUBST_FAILED); - free (result); - free (temp); + xfree (result); + xfree (temp); return (-1); } } @@ -869,7 +869,7 @@ history_expand_internal (string, start, end_index_ptr, ret_string, current_line) else x = savestring (temp); - free (temp); + xfree (temp); temp = x; } @@ -877,7 +877,7 @@ history_expand_internal (string, start, end_index_ptr, ret_string, current_line) if (n >= result_len) result = (char *)xrealloc (result, n + 2); strcpy (result, temp); - free (temp); + xfree (temp); *end_index_ptr = i; *ret_string = result; @@ -1064,7 +1064,7 @@ history_expand (hstring, output) if (string[i] != history_expansion_char) { - free (result); + xfree (result); *output = savestring (string); return (0); } @@ -1144,7 +1144,7 @@ history_expand (hstring, output) strncpy (temp, string + quote, slen); temp[slen - 1] = '\0'; ADD_STRING (temp); - free (temp); + xfree (temp); } else ADD_CHAR (string[i]); @@ -1157,7 +1157,7 @@ history_expand (hstring, output) temp = (char *)xmalloc (l - i + 1); strcpy (temp, string + i); ADD_STRING (temp); - free (temp); + xfree (temp); i = l; } else @@ -1190,7 +1190,7 @@ history_expand (hstring, output) temp = (char *)xmalloc (1 + strlen (result)); strcpy (temp, result); ADD_STRING (temp); - free (temp); + xfree (temp); } i++; break; @@ -1201,9 +1201,9 @@ history_expand (hstring, output) if (r < 0) { *output = temp; - free (result); + xfree (result); if (string != hstring) - free (string); + xfree (string); return -1; } else @@ -1213,7 +1213,7 @@ history_expand (hstring, output) modified++; if (*temp) ADD_STRING (temp); - free (temp); + xfree (temp); } only_printing = r == 1; i = eindex; @@ -1224,7 +1224,7 @@ history_expand (hstring, output) *output = result; if (string != hstring) - free (string); + xfree (string); if (only_printing) { @@ -1405,8 +1405,8 @@ history_arg_extract (first, last, string) } for (i = 0; i < len; i++) - free (list[i]); - free (list); + xfree (list[i]); + xfree (list); return (result); } @@ -1629,7 +1629,7 @@ freewords (words, start) register int i; for (i = start; words[i]; i++) - free (words[i]); + xfree (words[i]); } /* Find and return the word which contains the character at index IND @@ -1653,8 +1653,8 @@ history_find_word (line, ind) } s = words[wind]; for (i = 0; i < wind; i++) - free (words[i]); + xfree (words[i]); freewords (words, wind + 1); - free (words); + xfree (words); return s; } diff --git a/lib/readline/histexpand.c~ b/lib/readline/histexpand.c~ index 055abcc0..fd22db3b 100644 --- a/lib/readline/histexpand.c~ +++ b/lib/readline/histexpand.c~ @@ -1,6 +1,6 @@ /* histexpand.c -- history expansion. */ -/* Copyright (C) 1989-2009 Free Software Foundation, Inc. +/* Copyright (C) 1989-2010 Free Software Foundation, Inc. This file contains the GNU History Library (History), a set of routines for managing the text of previously typed lines. diff --git a/lib/readline/histfile.c b/lib/readline/histfile.c index f9c5bba2..30a61824 100644 --- a/lib/readline/histfile.c +++ b/lib/readline/histfile.c @@ -417,7 +417,7 @@ history_truncate_file (fname, lines) FREE (buffer); - free (filename); + xfree (filename); return rv; } @@ -520,7 +520,7 @@ mmap_error: #else if (write (file, buffer, buffer_size) < 0) rv = errno; - free (buffer); + xfree (buffer); #endif } diff --git a/lib/readline/histfile.c~ b/lib/readline/histfile.c~ index 80e26042..f9c5bba2 100644 --- a/lib/readline/histfile.c~ +++ b/lib/readline/histfile.c~ @@ -1,6 +1,6 @@ /* histfile.c - functions to manipulate the history file. */ -/* Copyright (C) 1989-2009 Free Software Foundation, Inc. +/* Copyright (C) 1989-2010 Free Software Foundation, Inc. This file contains the GNU History Library (History), a set of routines for managing the text of previously typed lines. diff --git a/lib/readline/history.c b/lib/readline/history.c index 8e613bbd..d7894cfd 100644 --- a/lib/readline/history.c +++ b/lib/readline/history.c @@ -338,7 +338,7 @@ free_history_entry (hist) FREE (hist->line); FREE (hist->timestamp); x = hist->data; - free (hist); + xfree (hist); return (x); } diff --git a/lib/readline/history.c~ b/lib/readline/history.c~ new file mode 100644 index 00000000..8e613bbd --- /dev/null +++ b/lib/readline/history.c~ @@ -0,0 +1,519 @@ +/* history.c -- standalone history library */ + +/* Copyright (C) 1989-2009 Free Software Foundation, Inc. + + This file contains the GNU History Library (History), a set of + routines for managing the text of previously typed lines. + + History is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + History is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with History. If not, see . +*/ + +/* The goal is to make the implementation transparent, so that you + don't have to know what data types are used, just what functions + you can call. I think I have done that. */ +#define READLINE_LIBRARY + +#if defined (HAVE_CONFIG_H) +# include +#endif + +#include + +#if defined (HAVE_STDLIB_H) +# include +#else +# include "ansi_stdlib.h" +#endif /* HAVE_STDLIB_H */ + +#if defined (HAVE_UNISTD_H) +# ifdef _MINIX +# include +# endif +# include +#endif + +#include "history.h" +#include "histlib.h" + +#include "xmalloc.h" + +/* The number of slots to increase the_history by. */ +#define DEFAULT_HISTORY_GROW_SIZE 50 + +static char *hist_inittime PARAMS((void)); + +/* **************************************************************** */ +/* */ +/* History Functions */ +/* */ +/* **************************************************************** */ + +/* An array of HIST_ENTRY. This is where we store the history. */ +static HIST_ENTRY **the_history = (HIST_ENTRY **)NULL; + +/* Non-zero means that we have enforced a limit on the amount of + history that we save. */ +static int history_stifled; + +/* The current number of slots allocated to the input_history. */ +static int history_size; + +/* If HISTORY_STIFLED is non-zero, then this is the maximum number of + entries to remember. */ +int history_max_entries; +int max_input_history; /* backwards compatibility */ + +/* The current location of the interactive history pointer. Just makes + life easier for outside callers. */ +int history_offset; + +/* The number of strings currently stored in the history list. */ +int history_length; + +/* The logical `base' of the history array. It defaults to 1. */ +int history_base = 1; + +/* Return the current HISTORY_STATE of the history. */ +HISTORY_STATE * +history_get_history_state () +{ + HISTORY_STATE *state; + + state = (HISTORY_STATE *)xmalloc (sizeof (HISTORY_STATE)); + state->entries = the_history; + state->offset = history_offset; + state->length = history_length; + state->size = history_size; + state->flags = 0; + if (history_stifled) + state->flags |= HS_STIFLED; + + return (state); +} + +/* Set the state of the current history array to STATE. */ +void +history_set_history_state (state) + HISTORY_STATE *state; +{ + the_history = state->entries; + history_offset = state->offset; + history_length = state->length; + history_size = state->size; + if (state->flags & HS_STIFLED) + history_stifled = 1; +} + +/* Begin a session in which the history functions might be used. This + initializes interactive variables. */ +void +using_history () +{ + history_offset = history_length; +} + +/* Return the number of bytes that the primary history entries are using. + This just adds up the lengths of the_history->lines and the associated + timestamps. */ +int +history_total_bytes () +{ + register int i, result; + + for (i = result = 0; the_history && the_history[i]; i++) + result += HISTENT_BYTES (the_history[i]); + + return (result); +} + +/* Returns the magic number which says what history element we are + looking at now. In this implementation, it returns history_offset. */ +int +where_history () +{ + return (history_offset); +} + +/* Make the current history item be the one at POS, an absolute index. + Returns zero if POS is out of range, else non-zero. */ +int +history_set_pos (pos) + int pos; +{ + if (pos > history_length || pos < 0 || !the_history) + return (0); + history_offset = pos; + return (1); +} + +/* Return the current history array. The caller has to be careful, since this + is the actual array of data, and could be bashed or made corrupt easily. + The array is terminated with a NULL pointer. */ +HIST_ENTRY ** +history_list () +{ + return (the_history); +} + +/* Return the history entry at the current position, as determined by + history_offset. If there is no entry there, return a NULL pointer. */ +HIST_ENTRY * +current_history () +{ + return ((history_offset == history_length) || the_history == 0) + ? (HIST_ENTRY *)NULL + : the_history[history_offset]; +} + +/* Back up history_offset to the previous history entry, and return + a pointer to that entry. If there is no previous entry then return + a NULL pointer. */ +HIST_ENTRY * +previous_history () +{ + return history_offset ? the_history[--history_offset] : (HIST_ENTRY *)NULL; +} + +/* Move history_offset forward to the next history entry, and return + a pointer to that entry. If there is no next entry then return a + NULL pointer. */ +HIST_ENTRY * +next_history () +{ + return (history_offset == history_length) ? (HIST_ENTRY *)NULL : the_history[++history_offset]; +} + +/* Return the history entry which is logically at OFFSET in the history array. + OFFSET is relative to history_base. */ +HIST_ENTRY * +history_get (offset) + int offset; +{ + int local_index; + + local_index = offset - history_base; + return (local_index >= history_length || local_index < 0 || the_history == 0) + ? (HIST_ENTRY *)NULL + : the_history[local_index]; +} + +HIST_ENTRY * +alloc_history_entry (string, ts) + char *string; + char *ts; +{ + HIST_ENTRY *temp; + + temp = (HIST_ENTRY *)xmalloc (sizeof (HIST_ENTRY)); + + temp->line = string ? savestring (string) : string; + temp->data = (char *)NULL; + temp->timestamp = ts; + + return temp; +} + +time_t +history_get_time (hist) + HIST_ENTRY *hist; +{ + char *ts; + time_t t; + + if (hist == 0 || hist->timestamp == 0) + return 0; + ts = hist->timestamp; + if (ts[0] != history_comment_char) + return 0; + t = (time_t) atol (ts + 1); /* XXX - should use strtol() here */ + return t; +} + +static char * +hist_inittime () +{ + time_t t; + char ts[64], *ret; + + t = (time_t) time ((time_t *)0); +#if defined (HAVE_VSNPRINTF) /* assume snprintf if vsnprintf exists */ + snprintf (ts, sizeof (ts) - 1, "X%lu", (unsigned long) t); +#else + sprintf (ts, "X%lu", (unsigned long) t); +#endif + ret = savestring (ts); + ret[0] = history_comment_char; + + return ret; +} + +/* Place STRING at the end of the history list. The data field + is set to NULL. */ +void +add_history (string) + const char *string; +{ + HIST_ENTRY *temp; + + if (history_stifled && (history_length == history_max_entries)) + { + register int i; + + /* If the history is stifled, and history_length is zero, + and it equals history_max_entries, we don't save items. */ + if (history_length == 0) + return; + + /* If there is something in the slot, then remove it. */ + if (the_history[0]) + (void) free_history_entry (the_history[0]); + + /* Copy the rest of the entries, moving down one slot. */ + for (i = 0; i < history_length; i++) + the_history[i] = the_history[i + 1]; + + history_base++; + } + else + { + if (history_size == 0) + { + history_size = DEFAULT_HISTORY_GROW_SIZE; + the_history = (HIST_ENTRY **)xmalloc (history_size * sizeof (HIST_ENTRY *)); + history_length = 1; + } + else + { + if (history_length == (history_size - 1)) + { + history_size += DEFAULT_HISTORY_GROW_SIZE; + the_history = (HIST_ENTRY **) + xrealloc (the_history, history_size * sizeof (HIST_ENTRY *)); + } + history_length++; + } + } + + temp = alloc_history_entry (string, hist_inittime ()); + + the_history[history_length] = (HIST_ENTRY *)NULL; + the_history[history_length - 1] = temp; +} + +/* Change the time stamp of the most recent history entry to STRING. */ +void +add_history_time (string) + const char *string; +{ + HIST_ENTRY *hs; + + if (string == 0) + return; + hs = the_history[history_length - 1]; + FREE (hs->timestamp); + hs->timestamp = savestring (string); +} + +/* Free HIST and return the data so the calling application can free it + if necessary and desired. */ +histdata_t +free_history_entry (hist) + HIST_ENTRY *hist; +{ + histdata_t x; + + if (hist == 0) + return ((histdata_t) 0); + FREE (hist->line); + FREE (hist->timestamp); + x = hist->data; + free (hist); + return (x); +} + +HIST_ENTRY * +copy_history_entry (hist) + HIST_ENTRY *hist; +{ + HIST_ENTRY *ret; + char *ts; + + if (hist == 0) + return hist; + + ret = alloc_history_entry (hist->line, (char *)NULL); + + ts = hist->timestamp ? savestring (hist->timestamp) : hist->timestamp; + ret->timestamp = ts; + + ret->data = hist->data; + + return ret; +} + +/* Make the history entry at WHICH have LINE and DATA. This returns + the old entry so you can dispose of the data. In the case of an + invalid WHICH, a NULL pointer is returned. */ +HIST_ENTRY * +replace_history_entry (which, line, data) + int which; + const char *line; + histdata_t data; +{ + HIST_ENTRY *temp, *old_value; + + if (which < 0 || which >= history_length) + return ((HIST_ENTRY *)NULL); + + temp = (HIST_ENTRY *)xmalloc (sizeof (HIST_ENTRY)); + old_value = the_history[which]; + + temp->line = savestring (line); + temp->data = data; + temp->timestamp = savestring (old_value->timestamp); + the_history[which] = temp; + + return (old_value); +} + +/* Replace the DATA in the specified history entries, replacing OLD with + NEW. WHICH says which one(s) to replace: WHICH == -1 means to replace + all of the history entries where entry->data == OLD; WHICH == -2 means + to replace the `newest' history entry where entry->data == OLD; and + WHICH >= 0 means to replace that particular history entry's data, as + long as it matches OLD. */ +void +replace_history_data (which,old, new) + int which; + histdata_t *old, *new; +{ + HIST_ENTRY *entry; + register int i, last; + + if (which < -2 || which >= history_length || history_length == 0 || the_history == 0) + return; + + if (which >= 0) + { + entry = the_history[which]; + if (entry && entry->data == old) + entry->data = new; + return; + } + + last = -1; + for (i = 0; i < history_length; i++) + { + entry = the_history[i]; + if (entry == 0) + continue; + if (entry->data == old) + { + last = i; + if (which == -1) + entry->data = new; + } + } + if (which == -2 && last >= 0) + { + entry = the_history[last]; + entry->data = new; /* XXX - we don't check entry->old */ + } +} + +/* Remove history element WHICH from the history. The removed + element is returned to you so you can free the line, data, + and containing structure. */ +HIST_ENTRY * +remove_history (which) + int which; +{ + HIST_ENTRY *return_value; + register int i; + + if (which < 0 || which >= history_length || history_length == 0 || the_history == 0) + return ((HIST_ENTRY *)NULL); + + return_value = the_history[which]; + + for (i = which; i < history_length; i++) + the_history[i] = the_history[i + 1]; + + history_length--; + + return (return_value); +} + +/* Stifle the history list, remembering only MAX number of lines. */ +void +stifle_history (max) + int max; +{ + register int i, j; + + if (max < 0) + max = 0; + + if (history_length > max) + { + /* This loses because we cannot free the data. */ + for (i = 0, j = history_length - max; i < j; i++) + free_history_entry (the_history[i]); + + history_base = i; + for (j = 0, i = history_length - max; j < max; i++, j++) + the_history[j] = the_history[i]; + the_history[j] = (HIST_ENTRY *)NULL; + history_length = j; + } + + history_stifled = 1; + max_input_history = history_max_entries = max; +} + +/* Stop stifling the history. This returns the previous maximum + number of history entries. The value is positive if the history + was stifled, negative if it wasn't. */ +int +unstifle_history () +{ + if (history_stifled) + { + history_stifled = 0; + return (history_max_entries); + } + else + return (-history_max_entries); +} + +int +history_is_stifled () +{ + return (history_stifled); +} + +void +clear_history () +{ + register int i; + + /* This loses because we cannot free the data. */ + for (i = 0; i < history_length; i++) + { + free_history_entry (the_history[i]); + the_history[i] = (HIST_ENTRY *)NULL; + } + + history_offset = history_length = 0; +} diff --git a/lib/readline/keymaps.c b/lib/readline/keymaps.c index 9379dec5..58661e29 100644 --- a/lib/readline/keymaps.c +++ b/lib/readline/keymaps.c @@ -142,11 +142,11 @@ rl_discard_keymap (map) case ISKMAP: rl_discard_keymap ((Keymap)map[i].function); - free ((char *)map[i].function); + xfree ((char *)map[i].function); break; case ISMACR: - free ((char *)map[i].function); + xfree ((char *)map[i].function); break; } } @@ -158,5 +158,5 @@ rl_free_keymap (map) Keymap map; { rl_discard_keymap (map); - free ((char *)map); + xfree ((char *)map); } diff --git a/lib/readline/keymaps.c~ b/lib/readline/keymaps.c~ new file mode 100644 index 00000000..3dae37e7 --- /dev/null +++ b/lib/readline/keymaps.c~ @@ -0,0 +1,162 @@ +/* keymaps.c -- Functions and keymaps for the GNU Readline library. */ + +/* Copyright (C) 1988,1989-2009 Free Software Foundation, Inc. + + This file is part of the GNU Readline Library (Readline), a library + for reading lines of text with interactive input and history editing. + + Readline is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Readline is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Readline. If not, see . +*/ + +#define READLINE_LIBRARY + +#if defined (HAVE_CONFIG_H) +# include +#endif + +#if defined (HAVE_STDLIB_H) +# include +#else +# include "ansi_stdlib.h" +#endif /* HAVE_STDLIB_H */ + +#include /* for FILE * definition for readline.h */ + +#include "readline.h" +#include "rlconf.h" + +#include "emacs_keymap.c" + +#if defined (VI_MODE) +#include "vi_keymap.c" +#endif + +#include "xmalloc.h" + +/* **************************************************************** */ +/* */ +/* Functions for manipulating Keymaps. */ +/* */ +/* **************************************************************** */ + + +/* Return a new, empty keymap. + Free it with free() when you are done. */ +Keymap +rl_make_bare_keymap () +{ + register int i; + Keymap keymap; + + keymap = (Keymap)xmalloc (KEYMAP_SIZE * sizeof (KEYMAP_ENTRY)); + for (i = 0; i < KEYMAP_SIZE; i++) + { + keymap[i].type = ISFUNC; + keymap[i].function = (rl_command_func_t *)NULL; + } + +#if 0 + for (i = 'A'; i < ('Z' + 1); i++) + { + keymap[i].type = ISFUNC; + keymap[i].function = rl_do_lowercase_version; + } +#endif + + return (keymap); +} + +/* Return a new keymap which is a copy of MAP. Just copies pointers, does + not copy text of macros or descend into child keymaps. */ +Keymap +rl_copy_keymap (map) + Keymap map; +{ + register int i; + Keymap temp; + + temp = rl_make_bare_keymap (); + for (i = 0; i < KEYMAP_SIZE; i++) + { + temp[i].type = map[i].type; + temp[i].function = map[i].function; + } + return (temp); +} + +/* Return a new keymap with the printing characters bound to rl_insert, + the uppercase Meta characters bound to run their lowercase equivalents, + and the Meta digits bound to produce numeric arguments. */ +Keymap +rl_make_keymap () +{ + register int i; + Keymap newmap; + + newmap = rl_make_bare_keymap (); + + /* All ASCII printing characters are self-inserting. */ + for (i = ' '; i < 127; i++) + newmap[i].function = rl_insert; + + newmap[TAB].function = rl_insert; + newmap[RUBOUT].function = rl_rubout; /* RUBOUT == 127 */ + newmap[CTRL('H')].function = rl_rubout; + +#if KEYMAP_SIZE > 128 + /* Printing characters in ISO Latin-1 and some 8-bit character sets. */ + for (i = 128; i < 256; i++) + newmap[i].function = rl_insert; +#endif /* KEYMAP_SIZE > 128 */ + + return (newmap); +} + +/* Free the storage associated with MAP. */ +void +rl_discard_keymap (map) + Keymap map; +{ + int i; + + if (map == 0) + return; + + for (i = 0; i < KEYMAP_SIZE; i++) + { + switch (map[i].type) + { + case ISFUNC: + break; + + case ISKMAP: + rl_discard_keymap ((Keymap)map[i].function); + xfree ((char *)map[i].function); + break; + + case ISMACR: + xfree ((char *)map[i].function); + break; + } + } +} + +/* Convenience function that discards, then frees, MAP. */ +void +rl_free_keymap (map) + Keymap map; +{ + rl_discard_keymap (map); + free ((char *)map); +} diff --git a/lib/readline/kill.c b/lib/readline/kill.c index a4d6d148..60f30410 100644 --- a/lib/readline/kill.c +++ b/lib/readline/kill.c @@ -147,7 +147,7 @@ _rl_copy_to_kill_ring (text, append) strcat (new, old); } xfree (old); - free (text); + xfree (text); rl_kill_ring[slot] = new; } else @@ -601,7 +601,7 @@ rl_yank_nth_arg_internal (count, ignore, history_skip) #endif /* VI_MODE */ rl_insert_text (arg); - free (arg); + xfree (arg); rl_end_undo_group (); return 0; diff --git a/lib/readline/kill.c~ b/lib/readline/kill.c~ new file mode 100644 index 00000000..a4d6d148 --- /dev/null +++ b/lib/readline/kill.c~ @@ -0,0 +1,694 @@ +/* kill.c -- kill ring management. */ + +/* Copyright (C) 1994 Free Software Foundation, Inc. + + This file is part of the GNU Readline Library (Readline), a library + for reading lines of text with interactive input and history editing. + + Readline is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Readline is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Readline. If not, see . +*/ + +#define READLINE_LIBRARY + +#if defined (HAVE_CONFIG_H) +# include +#endif + +#include + +#if defined (HAVE_UNISTD_H) +# include /* for _POSIX_VERSION */ +#endif /* HAVE_UNISTD_H */ + +#if defined (HAVE_STDLIB_H) +# include +#else +# include "ansi_stdlib.h" +#endif /* HAVE_STDLIB_H */ + +#include + +/* System-specific feature definitions and include files. */ +#include "rldefs.h" + +/* Some standard library routines. */ +#include "readline.h" +#include "history.h" + +#include "rlprivate.h" +#include "xmalloc.h" + +/* **************************************************************** */ +/* */ +/* Killing Mechanism */ +/* */ +/* **************************************************************** */ + +/* What we assume for a max number of kills. */ +#define DEFAULT_MAX_KILLS 10 + +/* The real variable to look at to find out when to flush kills. */ +static int rl_max_kills = DEFAULT_MAX_KILLS; + +/* Where to store killed text. */ +static char **rl_kill_ring = (char **)NULL; + +/* Where we are in the kill ring. */ +static int rl_kill_index; + +/* How many slots we have in the kill ring. */ +static int rl_kill_ring_length; + +static int _rl_copy_to_kill_ring PARAMS((char *, int)); +static int region_kill_internal PARAMS((int)); +static int _rl_copy_word_as_kill PARAMS((int, int)); +static int rl_yank_nth_arg_internal PARAMS((int, int, int)); + +/* How to say that you only want to save a certain amount + of kill material. */ +int +rl_set_retained_kills (num) + int num; +{ + return 0; +} + +/* Add TEXT to the kill ring, allocating a new kill ring slot as necessary. + This uses TEXT directly, so the caller must not free it. If APPEND is + non-zero, and the last command was a kill, the text is appended to the + current kill ring slot, otherwise prepended. */ +static int +_rl_copy_to_kill_ring (text, append) + char *text; + int append; +{ + char *old, *new; + int slot; + + /* First, find the slot to work with. */ + if (_rl_last_command_was_kill == 0) + { + /* Get a new slot. */ + if (rl_kill_ring == 0) + { + /* If we don't have any defined, then make one. */ + rl_kill_ring = (char **) + xmalloc (((rl_kill_ring_length = 1) + 1) * sizeof (char *)); + rl_kill_ring[slot = 0] = (char *)NULL; + } + else + { + /* We have to add a new slot on the end, unless we have + exceeded the max limit for remembering kills. */ + slot = rl_kill_ring_length; + if (slot == rl_max_kills) + { + register int i; + xfree (rl_kill_ring[0]); + for (i = 0; i < slot; i++) + rl_kill_ring[i] = rl_kill_ring[i + 1]; + } + else + { + slot = rl_kill_ring_length += 1; + rl_kill_ring = (char **)xrealloc (rl_kill_ring, slot * sizeof (char *)); + } + rl_kill_ring[--slot] = (char *)NULL; + } + } + else + slot = rl_kill_ring_length - 1; + + /* If the last command was a kill, prepend or append. */ + if (_rl_last_command_was_kill && rl_editing_mode != vi_mode) + { + old = rl_kill_ring[slot]; + new = (char *)xmalloc (1 + strlen (old) + strlen (text)); + + if (append) + { + strcpy (new, old); + strcat (new, text); + } + else + { + strcpy (new, text); + strcat (new, old); + } + xfree (old); + free (text); + rl_kill_ring[slot] = new; + } + else + rl_kill_ring[slot] = text; + + rl_kill_index = slot; + return 0; +} + +/* The way to kill something. This appends or prepends to the last + kill, if the last command was a kill command. if FROM is less + than TO, then the text is appended, otherwise prepended. If the + last command was not a kill command, then a new slot is made for + this kill. */ +int +rl_kill_text (from, to) + int from, to; +{ + char *text; + + /* Is there anything to kill? */ + if (from == to) + { + _rl_last_command_was_kill++; + return 0; + } + + text = rl_copy_text (from, to); + + /* Delete the copied text from the line. */ + rl_delete_text (from, to); + + _rl_copy_to_kill_ring (text, from < to); + + _rl_last_command_was_kill++; + return 0; +} + +/* Now REMEMBER! In order to do prepending or appending correctly, kill + commands always make rl_point's original position be the FROM argument, + and rl_point's extent be the TO argument. */ + +/* **************************************************************** */ +/* */ +/* Killing Commands */ +/* */ +/* **************************************************************** */ + +/* Delete the word at point, saving the text in the kill ring. */ +int +rl_kill_word (count, key) + int count, key; +{ + int orig_point; + + if (count < 0) + return (rl_backward_kill_word (-count, key)); + else + { + orig_point = rl_point; + rl_forward_word (count, key); + + if (rl_point != orig_point) + rl_kill_text (orig_point, rl_point); + + rl_point = orig_point; + if (rl_editing_mode == emacs_mode) + rl_mark = rl_point; + } + return 0; +} + +/* Rubout the word before point, placing it on the kill ring. */ +int +rl_backward_kill_word (count, ignore) + int count, ignore; +{ + int orig_point; + + if (count < 0) + return (rl_kill_word (-count, ignore)); + else + { + orig_point = rl_point; + rl_backward_word (count, ignore); + + if (rl_point != orig_point) + rl_kill_text (orig_point, rl_point); + + if (rl_editing_mode == emacs_mode) + rl_mark = rl_point; + } + return 0; +} + +/* Kill from here to the end of the line. If DIRECTION is negative, kill + back to the line start instead. */ +int +rl_kill_line (direction, ignore) + int direction, ignore; +{ + int orig_point; + + if (direction < 0) + return (rl_backward_kill_line (1, ignore)); + else + { + orig_point = rl_point; + rl_end_of_line (1, ignore); + if (orig_point != rl_point) + rl_kill_text (orig_point, rl_point); + rl_point = orig_point; + if (rl_editing_mode == emacs_mode) + rl_mark = rl_point; + } + return 0; +} + +/* Kill backwards to the start of the line. If DIRECTION is negative, kill + forwards to the line end instead. */ +int +rl_backward_kill_line (direction, ignore) + int direction, ignore; +{ + int orig_point; + + if (direction < 0) + return (rl_kill_line (1, ignore)); + else + { + if (!rl_point) + rl_ding (); + else + { + orig_point = rl_point; + rl_beg_of_line (1, ignore); + if (rl_point != orig_point) + rl_kill_text (orig_point, rl_point); + if (rl_editing_mode == emacs_mode) + rl_mark = rl_point; + } + } + return 0; +} + +/* Kill the whole line, no matter where point is. */ +int +rl_kill_full_line (count, ignore) + int count, ignore; +{ + rl_begin_undo_group (); + rl_point = 0; + rl_kill_text (rl_point, rl_end); + rl_mark = 0; + rl_end_undo_group (); + return 0; +} + +/* The next two functions mimic unix line editing behaviour, except they + save the deleted text on the kill ring. This is safer than not saving + it, and since we have a ring, nobody should get screwed. */ + +/* This does what C-w does in Unix. We can't prevent people from + using behaviour that they expect. */ +int +rl_unix_word_rubout (count, key) + int count, key; +{ + int orig_point; + + if (rl_point == 0) + rl_ding (); + else + { + orig_point = rl_point; + if (count <= 0) + count = 1; + + while (count--) + { + while (rl_point && whitespace (rl_line_buffer[rl_point - 1])) + rl_point--; + + while (rl_point && (whitespace (rl_line_buffer[rl_point - 1]) == 0)) + rl_point--; + } + + rl_kill_text (orig_point, rl_point); + if (rl_editing_mode == emacs_mode) + rl_mark = rl_point; + } + + return 0; +} + +/* This deletes one filename component in a Unix pathname. That is, it + deletes backward to directory separator (`/') or whitespace. */ +int +rl_unix_filename_rubout (count, key) + int count, key; +{ + int orig_point, c; + + if (rl_point == 0) + rl_ding (); + else + { + orig_point = rl_point; + if (count <= 0) + count = 1; + + while (count--) + { + c = rl_line_buffer[rl_point - 1]; + while (rl_point && (whitespace (c) || c == '/')) + { + rl_point--; + c = rl_line_buffer[rl_point - 1]; + } + + while (rl_point && (whitespace (c) == 0) && c != '/') + { + rl_point--; + c = rl_line_buffer[rl_point - 1]; + } + } + + rl_kill_text (orig_point, rl_point); + if (rl_editing_mode == emacs_mode) + rl_mark = rl_point; + } + + return 0; +} + +/* Here is C-u doing what Unix does. You don't *have* to use these + key-bindings. We have a choice of killing the entire line, or + killing from where we are to the start of the line. We choose the + latter, because if you are a Unix weenie, then you haven't backspaced + into the line at all, and if you aren't, then you know what you are + doing. */ +int +rl_unix_line_discard (count, key) + int count, key; +{ + if (rl_point == 0) + rl_ding (); + else + { + rl_kill_text (rl_point, 0); + rl_point = 0; + if (rl_editing_mode == emacs_mode) + rl_mark = rl_point; + } + return 0; +} + +/* Copy the text in the `region' to the kill ring. If DELETE is non-zero, + delete the text from the line as well. */ +static int +region_kill_internal (delete) + int delete; +{ + char *text; + + if (rl_mark != rl_point) + { + text = rl_copy_text (rl_point, rl_mark); + if (delete) + rl_delete_text (rl_point, rl_mark); + _rl_copy_to_kill_ring (text, rl_point < rl_mark); + } + + _rl_last_command_was_kill++; + return 0; +} + +/* Copy the text in the region to the kill ring. */ +int +rl_copy_region_to_kill (count, ignore) + int count, ignore; +{ + return (region_kill_internal (0)); +} + +/* Kill the text between the point and mark. */ +int +rl_kill_region (count, ignore) + int count, ignore; +{ + int r, npoint; + + npoint = (rl_point < rl_mark) ? rl_point : rl_mark; + r = region_kill_internal (1); + _rl_fix_point (1); + rl_point = npoint; + return r; +} + +/* Copy COUNT words to the kill ring. DIR says which direction we look + to find the words. */ +static int +_rl_copy_word_as_kill (count, dir) + int count, dir; +{ + int om, op, r; + + om = rl_mark; + op = rl_point; + + if (dir > 0) + rl_forward_word (count, 0); + else + rl_backward_word (count, 0); + + rl_mark = rl_point; + + if (dir > 0) + rl_backward_word (count, 0); + else + rl_forward_word (count, 0); + + r = region_kill_internal (0); + + rl_mark = om; + rl_point = op; + + return r; +} + +int +rl_copy_forward_word (count, key) + int count, key; +{ + if (count < 0) + return (rl_copy_backward_word (-count, key)); + + return (_rl_copy_word_as_kill (count, 1)); +} + +int +rl_copy_backward_word (count, key) + int count, key; +{ + if (count < 0) + return (rl_copy_forward_word (-count, key)); + + return (_rl_copy_word_as_kill (count, -1)); +} + +/* Yank back the last killed text. This ignores arguments. */ +int +rl_yank (count, ignore) + int count, ignore; +{ + if (rl_kill_ring == 0) + { + _rl_abort_internal (); + return -1; + } + + _rl_set_mark_at_pos (rl_point); + rl_insert_text (rl_kill_ring[rl_kill_index]); + return 0; +} + +/* If the last command was yank, or yank_pop, and the text just + before point is identical to the current kill item, then + delete that text from the line, rotate the index down, and + yank back some other text. */ +int +rl_yank_pop (count, key) + int count, key; +{ + int l, n; + + if (((rl_last_func != rl_yank_pop) && (rl_last_func != rl_yank)) || + !rl_kill_ring) + { + _rl_abort_internal (); + return -1; + } + + l = strlen (rl_kill_ring[rl_kill_index]); + n = rl_point - l; + if (n >= 0 && STREQN (rl_line_buffer + n, rl_kill_ring[rl_kill_index], l)) + { + rl_delete_text (n, rl_point); + rl_point = n; + rl_kill_index--; + if (rl_kill_index < 0) + rl_kill_index = rl_kill_ring_length - 1; + rl_yank (1, 0); + return 0; + } + else + { + _rl_abort_internal (); + return -1; + } +} + +/* Yank the COUNTh argument from the previous history line, skipping + HISTORY_SKIP lines before looking for the `previous line'. */ +static int +rl_yank_nth_arg_internal (count, ignore, history_skip) + int count, ignore, history_skip; +{ + register HIST_ENTRY *entry; + char *arg; + int i, pos; + + pos = where_history (); + + if (history_skip) + { + for (i = 0; i < history_skip; i++) + entry = previous_history (); + } + + entry = previous_history (); + + history_set_pos (pos); + + if (entry == 0) + { + rl_ding (); + return -1; + } + + arg = history_arg_extract (count, count, entry->line); + if (!arg || !*arg) + { + rl_ding (); + FREE (arg); + return -1; + } + + rl_begin_undo_group (); + + _rl_set_mark_at_pos (rl_point); + +#if defined (VI_MODE) + /* Vi mode always inserts a space before yanking the argument, and it + inserts it right *after* rl_point. */ + if (rl_editing_mode == vi_mode) + { + rl_vi_append_mode (1, ignore); + rl_insert_text (" "); + } +#endif /* VI_MODE */ + + rl_insert_text (arg); + free (arg); + + rl_end_undo_group (); + return 0; +} + +/* Yank the COUNTth argument from the previous history line. */ +int +rl_yank_nth_arg (count, ignore) + int count, ignore; +{ + return (rl_yank_nth_arg_internal (count, ignore, 0)); +} + +/* Yank the last argument from the previous history line. This `knows' + how rl_yank_nth_arg treats a count of `$'. With an argument, this + behaves the same as rl_yank_nth_arg. */ +int +rl_yank_last_arg (count, key) + int count, key; +{ + static int history_skip = 0; + static int explicit_arg_p = 0; + static int count_passed = 1; + static int direction = 1; + static int undo_needed = 0; + int retval; + + if (rl_last_func != rl_yank_last_arg) + { + history_skip = 0; + explicit_arg_p = rl_explicit_arg; + count_passed = count; + direction = 1; + } + else + { + if (undo_needed) + rl_do_undo (); + if (count < 1) + direction = -direction; + history_skip += direction; + if (history_skip < 0) + history_skip = 0; + } + + if (explicit_arg_p) + retval = rl_yank_nth_arg_internal (count_passed, key, history_skip); + else + retval = rl_yank_nth_arg_internal ('$', key, history_skip); + + undo_needed = retval == 0; + return retval; +} + +/* A special paste command for users of Cygnus's cygwin32. */ +#if defined (__CYGWIN__) +#include + +int +rl_paste_from_clipboard (count, key) + int count, key; +{ + char *data, *ptr; + int len; + + if (OpenClipboard (NULL) == 0) + return (0); + + data = (char *)GetClipboardData (CF_TEXT); + if (data) + { + ptr = strchr (data, '\r'); + if (ptr) + { + len = ptr - data; + ptr = (char *)xmalloc (len + 1); + ptr[len] = '\0'; + strncpy (ptr, data, len); + } + else + ptr = data; + _rl_set_mark_at_pos (rl_point); + rl_insert_text (ptr); + if (ptr != data) + xfree (ptr); + CloseClipboard (); + } + return (0); +} +#endif /* __CYGWIN__ */ diff --git a/lib/readline/misc.c b/lib/readline/misc.c index 12ae4a53..9f457736 100644 --- a/lib/readline/misc.c +++ b/lib/readline/misc.c @@ -328,7 +328,7 @@ _rl_free_history_entry (entry) FREE (entry->line); FREE (entry->timestamp); - free (entry); + xfree (entry); } /* Perhaps put back the current line if it has changed. */ @@ -342,9 +342,9 @@ rl_maybe_replace_line () if (temp && ((UNDO_LIST *)(temp->data) != rl_undo_list)) { temp = replace_history_entry (where_history (), rl_line_buffer, (histdata_t)rl_undo_list); - free (temp->line); + xfree (temp->line); FREE (temp->timestamp); - free (temp); + xfree (temp); } return 0; } @@ -480,7 +480,7 @@ _rl_revert_all_lines () _rl_set_the_line (); /* and clean up */ - free (lbuf); + xfree (lbuf); } /* **************************************************************** */ diff --git a/lib/readline/misc.c~ b/lib/readline/misc.c~ new file mode 100644 index 00000000..12ae4a53 --- /dev/null +++ b/lib/readline/misc.c~ @@ -0,0 +1,655 @@ +/* misc.c -- miscellaneous bindable readline functions. */ + +/* Copyright (C) 1987-2009 Free Software Foundation, Inc. + + This file is part of the GNU Readline Library (Readline), a library + for reading lines of text with interactive input and history editing. + + Readline is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Readline is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Readline. If not, see . +*/ + +#define READLINE_LIBRARY + +#if defined (HAVE_CONFIG_H) +# include +#endif + +#if defined (HAVE_UNISTD_H) +# include +#endif /* HAVE_UNISTD_H */ + +#if defined (HAVE_STDLIB_H) +# include +#else +# include "ansi_stdlib.h" +#endif /* HAVE_STDLIB_H */ + +#if defined (HAVE_LOCALE_H) +# include +#endif + +#include + +/* System-specific feature definitions and include files. */ +#include "rldefs.h" +#include "rlmbutil.h" + +/* Some standard library routines. */ +#include "readline.h" +#include "history.h" + +#include "rlprivate.h" +#include "rlshell.h" +#include "xmalloc.h" + +static int rl_digit_loop PARAMS((void)); +static void _rl_history_set_point PARAMS((void)); + +/* Forward declarations used in this file */ +void _rl_free_history_entry PARAMS((HIST_ENTRY *)); + +/* If non-zero, rl_get_previous_history and rl_get_next_history attempt + to preserve the value of rl_point from line to line. */ +int _rl_history_preserve_point = 0; + +_rl_arg_cxt _rl_argcxt; + +/* Saved target point for when _rl_history_preserve_point is set. Special + value of -1 means that point is at the end of the line. */ +int _rl_history_saved_point = -1; + +/* **************************************************************** */ +/* */ +/* Numeric Arguments */ +/* */ +/* **************************************************************** */ + +int +_rl_arg_overflow () +{ + if (rl_numeric_arg > 1000000) + { + _rl_argcxt = 0; + rl_explicit_arg = rl_numeric_arg = 0; + rl_ding (); + rl_restore_prompt (); + rl_clear_message (); + RL_UNSETSTATE(RL_STATE_NUMERICARG); + return 1; + } + return 0; +} + +void +_rl_arg_init () +{ + rl_save_prompt (); + _rl_argcxt = 0; + RL_SETSTATE(RL_STATE_NUMERICARG); +} + +int +_rl_arg_getchar () +{ + int c; + + rl_message ("(arg: %d) ", rl_arg_sign * rl_numeric_arg); + RL_SETSTATE(RL_STATE_MOREINPUT); + c = rl_read_key (); + RL_UNSETSTATE(RL_STATE_MOREINPUT); + + return c; +} + +/* Process C as part of the current numeric argument. Return -1 if the + argument should be aborted, 0 if we should not read any more chars, and + 1 if we should continue to read chars. */ +int +_rl_arg_dispatch (cxt, c) + _rl_arg_cxt cxt; + int c; +{ + int key, r; + + key = c; + + /* If we see a key bound to `universal-argument' after seeing digits, + it ends the argument but is otherwise ignored. */ + if (_rl_keymap[c].type == ISFUNC && _rl_keymap[c].function == rl_universal_argument) + { + if ((cxt & NUM_SAWDIGITS) == 0) + { + rl_numeric_arg *= 4; + return 1; + } + else if (RL_ISSTATE (RL_STATE_CALLBACK)) + { + _rl_argcxt |= NUM_READONE; + return 0; /* XXX */ + } + else + { + RL_SETSTATE(RL_STATE_MOREINPUT); + key = rl_read_key (); + RL_UNSETSTATE(RL_STATE_MOREINPUT); + rl_restore_prompt (); + rl_clear_message (); + RL_UNSETSTATE(RL_STATE_NUMERICARG); + if (key < 0) + return -1; + return (_rl_dispatch (key, _rl_keymap)); + } + } + + c = UNMETA (c); + + if (_rl_digit_p (c)) + { + r = _rl_digit_value (c); + rl_numeric_arg = rl_explicit_arg ? (rl_numeric_arg * 10) + r : r; + rl_explicit_arg = 1; + _rl_argcxt |= NUM_SAWDIGITS; + } + else if (c == '-' && rl_explicit_arg == 0) + { + rl_numeric_arg = 1; + _rl_argcxt |= NUM_SAWMINUS; + rl_arg_sign = -1; + } + else + { + /* Make M-- command equivalent to M--1 command. */ + if ((_rl_argcxt & NUM_SAWMINUS) && rl_numeric_arg == 1 && rl_explicit_arg == 0) + rl_explicit_arg = 1; + rl_restore_prompt (); + rl_clear_message (); + RL_UNSETSTATE(RL_STATE_NUMERICARG); + + r = _rl_dispatch (key, _rl_keymap); + if (RL_ISSTATE (RL_STATE_CALLBACK)) + { + /* At worst, this will cause an extra redisplay. Otherwise, + we have to wait until the next character comes in. */ + if (rl_done == 0) + (*rl_redisplay_function) (); + r = 0; + } + return r; + } + + return 1; +} + +/* Handle C-u style numeric args, as well as M--, and M-digits. */ +static int +rl_digit_loop () +{ + int c, r; + + while (1) + { + if (_rl_arg_overflow ()) + return 1; + + c = _rl_arg_getchar (); + + if (c < 0) + { + _rl_abort_internal (); + return -1; + } + + r = _rl_arg_dispatch (_rl_argcxt, c); + if (r <= 0 || (RL_ISSTATE (RL_STATE_NUMERICARG) == 0)) + break; + } + + return r; +} + +/* Create a default argument. */ +void +_rl_reset_argument () +{ + rl_numeric_arg = rl_arg_sign = 1; + rl_explicit_arg = 0; + _rl_argcxt = 0; +} + +/* Start a numeric argument with initial value KEY */ +int +rl_digit_argument (ignore, key) + int ignore, key; +{ + _rl_arg_init (); + if (RL_ISSTATE (RL_STATE_CALLBACK)) + { + _rl_arg_dispatch (_rl_argcxt, key); + rl_message ("(arg: %d) ", rl_arg_sign * rl_numeric_arg); + return 0; + } + else + { + rl_execute_next (key); + return (rl_digit_loop ()); + } +} + +/* C-u, universal argument. Multiply the current argument by 4. + Read a key. If the key has nothing to do with arguments, then + dispatch on it. If the key is the abort character then abort. */ +int +rl_universal_argument (count, key) + int count, key; +{ + _rl_arg_init (); + rl_numeric_arg *= 4; + + return (RL_ISSTATE (RL_STATE_CALLBACK) ? 0 : rl_digit_loop ()); +} + +int +_rl_arg_callback (cxt) + _rl_arg_cxt cxt; +{ + int c, r; + + c = _rl_arg_getchar (); + + if (_rl_argcxt & NUM_READONE) + { + _rl_argcxt &= ~NUM_READONE; + rl_restore_prompt (); + rl_clear_message (); + RL_UNSETSTATE(RL_STATE_NUMERICARG); + rl_execute_next (c); + return 0; + } + + r = _rl_arg_dispatch (cxt, c); + return (r != 1); +} + +/* What to do when you abort reading an argument. */ +int +rl_discard_argument () +{ + rl_ding (); + rl_clear_message (); + _rl_reset_argument (); + + return 0; +} + +/* **************************************************************** */ +/* */ +/* History Utilities */ +/* */ +/* **************************************************************** */ + +/* We already have a history library, and that is what we use to control + the history features of readline. This is our local interface to + the history mechanism. */ + +/* While we are editing the history, this is the saved + version of the original line. */ +HIST_ENTRY *_rl_saved_line_for_history = (HIST_ENTRY *)NULL; + +/* Set the history pointer back to the last entry in the history. */ +void +_rl_start_using_history () +{ + using_history (); + if (_rl_saved_line_for_history) + _rl_free_history_entry (_rl_saved_line_for_history); + + _rl_saved_line_for_history = (HIST_ENTRY *)NULL; +} + +/* Free the contents (and containing structure) of a HIST_ENTRY. */ +void +_rl_free_history_entry (entry) + HIST_ENTRY *entry; +{ + if (entry == 0) + return; + + FREE (entry->line); + FREE (entry->timestamp); + + free (entry); +} + +/* Perhaps put back the current line if it has changed. */ +int +rl_maybe_replace_line () +{ + HIST_ENTRY *temp; + + temp = current_history (); + /* If the current line has changed, save the changes. */ + if (temp && ((UNDO_LIST *)(temp->data) != rl_undo_list)) + { + temp = replace_history_entry (where_history (), rl_line_buffer, (histdata_t)rl_undo_list); + free (temp->line); + FREE (temp->timestamp); + free (temp); + } + return 0; +} + +/* Restore the _rl_saved_line_for_history if there is one. */ +int +rl_maybe_unsave_line () +{ + if (_rl_saved_line_for_history) + { + /* Can't call with `1' because rl_undo_list might point to an undo + list from a history entry, as in rl_replace_from_history() below. */ + rl_replace_line (_rl_saved_line_for_history->line, 0); + rl_undo_list = (UNDO_LIST *)_rl_saved_line_for_history->data; + _rl_free_history_entry (_rl_saved_line_for_history); + _rl_saved_line_for_history = (HIST_ENTRY *)NULL; + rl_point = rl_end; /* rl_replace_line sets rl_end */ + } + else + rl_ding (); + return 0; +} + +/* Save the current line in _rl_saved_line_for_history. */ +int +rl_maybe_save_line () +{ + if (_rl_saved_line_for_history == 0) + { + _rl_saved_line_for_history = (HIST_ENTRY *)xmalloc (sizeof (HIST_ENTRY)); + _rl_saved_line_for_history->line = savestring (rl_line_buffer); + _rl_saved_line_for_history->timestamp = (char *)NULL; + _rl_saved_line_for_history->data = (char *)rl_undo_list; + } + + return 0; +} + +int +_rl_free_saved_history_line () +{ + if (_rl_saved_line_for_history) + { + _rl_free_history_entry (_rl_saved_line_for_history); + _rl_saved_line_for_history = (HIST_ENTRY *)NULL; + } + return 0; +} + +static void +_rl_history_set_point () +{ + rl_point = (_rl_history_preserve_point && _rl_history_saved_point != -1) + ? _rl_history_saved_point + : rl_end; + if (rl_point > rl_end) + rl_point = rl_end; + +#if defined (VI_MODE) + if (rl_editing_mode == vi_mode && _rl_keymap != vi_insertion_keymap) + rl_point = 0; +#endif /* VI_MODE */ + + if (rl_editing_mode == emacs_mode) + rl_mark = (rl_point == rl_end ? 0 : rl_end); +} + +void +rl_replace_from_history (entry, flags) + HIST_ENTRY *entry; + int flags; /* currently unused */ +{ + /* Can't call with `1' because rl_undo_list might point to an undo list + from a history entry, just like we're setting up here. */ + rl_replace_line (entry->line, 0); + rl_undo_list = (UNDO_LIST *)entry->data; + rl_point = rl_end; + rl_mark = 0; + +#if defined (VI_MODE) + if (rl_editing_mode == vi_mode) + { + rl_point = 0; + rl_mark = rl_end; + } +#endif +} + +/* Process and free undo lists attached to each history entry prior to the + current entry, inclusive, reverting each line to its saved state. This + is destructive, and state about the current line is lost. This is not + intended to be called while actively editing, and the current line is + not assumed to have been added to the history list. */ +void +_rl_revert_all_lines () +{ + int hpos; + HIST_ENTRY *entry; + UNDO_LIST *ul, *saved_undo_list; + char *lbuf; + + lbuf = savestring (rl_line_buffer); + saved_undo_list = rl_undo_list; + hpos = where_history (); + + entry = (hpos == history_length) ? previous_history () : current_history (); + while (entry) + { + if (ul = (UNDO_LIST *)entry->data) + { + if (ul == saved_undo_list) + saved_undo_list = 0; + /* Set up rl_line_buffer and other variables from history entry */ + rl_replace_from_history (entry, 0); /* entry->line is now current */ + /* Undo all changes to this history entry */ + while (rl_undo_list) + rl_do_undo (); + /* And copy the reverted line back to the history entry, preserving + the timestamp. */ + FREE (entry->line); + entry->line = savestring (rl_line_buffer); + entry->data = 0; + } + entry = previous_history (); + } + + /* Restore history state */ + rl_undo_list = saved_undo_list; /* may have been set to null */ + history_set_pos (hpos); + + /* reset the line buffer */ + rl_replace_line (lbuf, 0); + _rl_set_the_line (); + + /* and clean up */ + free (lbuf); +} + +/* **************************************************************** */ +/* */ +/* History Commands */ +/* */ +/* **************************************************************** */ + +/* Meta-< goes to the start of the history. */ +int +rl_beginning_of_history (count, key) + int count, key; +{ + return (rl_get_previous_history (1 + where_history (), key)); +} + +/* Meta-> goes to the end of the history. (The current line). */ +int +rl_end_of_history (count, key) + int count, key; +{ + rl_maybe_replace_line (); + using_history (); + rl_maybe_unsave_line (); + return 0; +} + +/* Move down to the next history line. */ +int +rl_get_next_history (count, key) + int count, key; +{ + HIST_ENTRY *temp; + + if (count < 0) + return (rl_get_previous_history (-count, key)); + + if (count == 0) + return 0; + + rl_maybe_replace_line (); + + /* either not saved by rl_newline or at end of line, so set appropriately. */ + if (_rl_history_saved_point == -1 && (rl_point || rl_end)) + _rl_history_saved_point = (rl_point == rl_end) ? -1 : rl_point; + + temp = (HIST_ENTRY *)NULL; + while (count) + { + temp = next_history (); + if (!temp) + break; + --count; + } + + if (temp == 0) + rl_maybe_unsave_line (); + else + { + rl_replace_from_history (temp, 0); + _rl_history_set_point (); + } + return 0; +} + +/* Get the previous item out of our interactive history, making it the current + line. If there is no previous history, just ding. */ +int +rl_get_previous_history (count, key) + int count, key; +{ + HIST_ENTRY *old_temp, *temp; + + if (count < 0) + return (rl_get_next_history (-count, key)); + + if (count == 0) + return 0; + + /* either not saved by rl_newline or at end of line, so set appropriately. */ + if (_rl_history_saved_point == -1 && (rl_point || rl_end)) + _rl_history_saved_point = (rl_point == rl_end) ? -1 : rl_point; + + /* If we don't have a line saved, then save this one. */ + rl_maybe_save_line (); + + /* If the current line has changed, save the changes. */ + rl_maybe_replace_line (); + + temp = old_temp = (HIST_ENTRY *)NULL; + while (count) + { + temp = previous_history (); + if (temp == 0) + break; + + old_temp = temp; + --count; + } + + /* If there was a large argument, and we moved back to the start of the + history, that is not an error. So use the last value found. */ + if (!temp && old_temp) + temp = old_temp; + + if (temp == 0) + rl_ding (); + else + { + rl_replace_from_history (temp, 0); + _rl_history_set_point (); + } + + return 0; +} + +/* **************************************************************** */ +/* */ +/* Editing Modes */ +/* */ +/* **************************************************************** */ +/* How to toggle back and forth between editing modes. */ +int +rl_vi_editing_mode (count, key) + int count, key; +{ +#if defined (VI_MODE) + _rl_set_insert_mode (RL_IM_INSERT, 1); /* vi mode ignores insert mode */ + rl_editing_mode = vi_mode; + rl_vi_insert_mode (1, key); +#endif /* VI_MODE */ + + return 0; +} + +int +rl_emacs_editing_mode (count, key) + int count, key; +{ + rl_editing_mode = emacs_mode; + _rl_set_insert_mode (RL_IM_INSERT, 1); /* emacs mode default is insert mode */ + _rl_keymap = emacs_standard_keymap; + return 0; +} + +/* Function for the rest of the library to use to set insert/overwrite mode. */ +void +_rl_set_insert_mode (im, force) + int im, force; +{ +#ifdef CURSOR_MODE + _rl_set_cursor (im, force); +#endif + + rl_insert_mode = im; +} + +/* Toggle overwrite mode. A positive explicit argument selects overwrite + mode. A negative or zero explicit argument selects insert mode. */ +int +rl_overwrite_mode (count, key) + int count, key; +{ + if (rl_explicit_arg == 0) + _rl_set_insert_mode (rl_insert_mode ^ 1, 0); + else if (count > 0) + _rl_set_insert_mode (RL_IM_OVERWRITE, 0); + else + _rl_set_insert_mode (RL_IM_INSERT, 0); + + return 0; +} diff --git a/lib/readline/nls.c b/lib/readline/nls.c index 7f10f015..e3599eb7 100644 --- a/lib/readline/nls.c +++ b/lib/readline/nls.c @@ -145,7 +145,7 @@ _rl_init_eightbit () _rl_output_meta_chars = 1; break; } - free (t); + xfree (t); return (legal_lang_values[i] ? 1 : 0); #endif /* !HAVE_SETLOCALE */ diff --git a/lib/readline/nls.c~ b/lib/readline/nls.c~ new file mode 100644 index 00000000..7f10f015 --- /dev/null +++ b/lib/readline/nls.c~ @@ -0,0 +1,252 @@ +/* nls.c -- skeletal internationalization code. */ + +/* Copyright (C) 1996-2009 Free Software Foundation, Inc. + + This file is part of the GNU Readline Library (Readline), a library + for reading lines of text with interactive input and history editing. + + Readline is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Readline is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Readline. If not, see . +*/ + +#define READLINE_LIBRARY + +#if defined (HAVE_CONFIG_H) +# include +#endif + +#include + +#include + +#if defined (HAVE_UNISTD_H) +# include +#endif /* HAVE_UNISTD_H */ + +#if defined (HAVE_STDLIB_H) +# include +#else +# include "ansi_stdlib.h" +#endif /* HAVE_STDLIB_H */ + +#if defined (HAVE_LOCALE_H) +# include +#endif + +#include + +#include "rldefs.h" +#include "readline.h" +#include "rlshell.h" +#include "rlprivate.h" + +#if !defined (HAVE_SETLOCALE) +/* A list of legal values for the LANG or LC_CTYPE environment variables. + If a locale name in this list is the value for the LC_ALL, LC_CTYPE, + or LANG environment variable (using the first of those with a value), + readline eight-bit mode is enabled. */ +static char *legal_lang_values[] = +{ + "iso88591", + "iso88592", + "iso88593", + "iso88594", + "iso88595", + "iso88596", + "iso88597", + "iso88598", + "iso88599", + "iso885910", + "koi8r", + 0 +}; + +static char *normalize_codeset PARAMS((char *)); +static char *find_codeset PARAMS((char *, size_t *)); +#endif /* !HAVE_SETLOCALE */ + +static char *_rl_get_locale_var PARAMS((const char *)); + +static char * +_rl_get_locale_var (v) + const char *v; +{ + char *lspec; + + lspec = sh_get_env_value ("LC_ALL"); + if (lspec == 0 || *lspec == 0) + lspec = sh_get_env_value (v); + if (lspec == 0 || *lspec == 0) + lspec = sh_get_env_value ("LANG"); + + return lspec; +} + +/* Check for LC_ALL, LC_CTYPE, and LANG and use the first with a value + to decide the defaults for 8-bit character input and output. Returns + 1 if we set eight-bit mode. */ +int +_rl_init_eightbit () +{ +/* If we have setlocale(3), just check the current LC_CTYPE category + value, and go into eight-bit mode if it's not C or POSIX. */ +#if defined (HAVE_SETLOCALE) + char *lspec, *t; + + /* Set the LC_CTYPE locale category from environment variables. */ + lspec = _rl_get_locale_var ("LC_CTYPE"); + /* Since _rl_get_locale_var queries the right environment variables, + we query the current locale settings with setlocale(), and, if + that doesn't return anything, we set lspec to the empty string to + force the subsequent call to setlocale() to define the `native' + environment. */ + if (lspec == 0 || *lspec == 0) + lspec = setlocale (LC_CTYPE, (char *)NULL); + if (lspec == 0) + lspec = ""; + t = setlocale (LC_CTYPE, lspec); + + if (t && *t && (t[0] != 'C' || t[1]) && (STREQ (t, "POSIX") == 0)) + { + _rl_meta_flag = 1; + _rl_convert_meta_chars_to_ascii = 0; + _rl_output_meta_chars = 1; + return (1); + } + else + return (0); + +#else /* !HAVE_SETLOCALE */ + char *lspec, *t; + int i; + + /* We don't have setlocale. Finesse it. Check the environment for the + appropriate variables and set eight-bit mode if they have the right + values. */ + lspec = _rl_get_locale_var ("LC_CTYPE"); + + if (lspec == 0 || (t = normalize_codeset (lspec)) == 0) + return (0); + for (i = 0; t && legal_lang_values[i]; i++) + if (STREQ (t, legal_lang_values[i])) + { + _rl_meta_flag = 1; + _rl_convert_meta_chars_to_ascii = 0; + _rl_output_meta_chars = 1; + break; + } + free (t); + return (legal_lang_values[i] ? 1 : 0); + +#endif /* !HAVE_SETLOCALE */ +} + +#if !defined (HAVE_SETLOCALE) +static char * +normalize_codeset (codeset) + char *codeset; +{ + size_t namelen, i; + int len, all_digits; + char *wp, *retval; + + codeset = find_codeset (codeset, &namelen); + + if (codeset == 0) + return (codeset); + + all_digits = 1; + for (len = 0, i = 0; i < namelen; i++) + { + if (ISALNUM ((unsigned char)codeset[i])) + { + len++; + all_digits &= _rl_digit_p (codeset[i]); + } + } + + retval = (char *)malloc ((all_digits ? 3 : 0) + len + 1); + if (retval == 0) + return ((char *)0); + + wp = retval; + /* Add `iso' to beginning of an all-digit codeset */ + if (all_digits) + { + *wp++ = 'i'; + *wp++ = 's'; + *wp++ = 'o'; + } + + for (i = 0; i < namelen; i++) + if (ISALPHA ((unsigned char)codeset[i])) + *wp++ = _rl_to_lower (codeset[i]); + else if (_rl_digit_p (codeset[i])) + *wp++ = codeset[i]; + *wp = '\0'; + + return retval; +} + +/* Isolate codeset portion of locale specification. */ +static char * +find_codeset (name, lenp) + char *name; + size_t *lenp; +{ + char *cp, *language, *result; + + cp = language = name; + result = (char *)0; + + while (*cp && *cp != '_' && *cp != '@' && *cp != '+' && *cp != ',') + cp++; + + /* This does not make sense: language has to be specified. As + an exception we allow the variable to contain only the codeset + name. Perhaps there are funny codeset names. */ + if (language == cp) + { + *lenp = strlen (language); + result = language; + } + else + { + /* Next is the territory. */ + if (*cp == '_') + do + ++cp; + while (*cp && *cp != '.' && *cp != '@' && *cp != '+' && *cp != ',' && *cp != '_'); + + /* Now, finally, is the codeset. */ + result = cp; + if (*cp == '.') + do + ++cp; + while (*cp && *cp != '@'); + + if (cp - result > 2) + { + result++; + *lenp = cp - result; + } + else + { + *lenp = strlen (language); + result = language; + } + } + + return result; +} +#endif /* !HAVE_SETLOCALE */ diff --git a/lib/readline/readline.c b/lib/readline/readline.c index c0e78d4f..f2e4d933 100644 --- a/lib/readline/readline.c +++ b/lib/readline/readline.c @@ -382,7 +382,7 @@ readline_internal_setup () nprompt = _rl_strip_prompt (rl_prompt); fprintf (_rl_out_stream, "%s", nprompt); fflush (_rl_out_stream); - free (nprompt); + xfree (nprompt); } } else @@ -426,7 +426,7 @@ readline_internal_teardown (eof) _rl_free_history_entry (entry); strcpy (the_line, temp); - free (temp); + xfree (temp); } if (_rl_revert_all_at_newline) @@ -629,7 +629,7 @@ void _rl_keyseq_cxt_dispose (cxt) _rl_keyseq_cxt *cxt; { - free (cxt); + xfree (cxt); } void diff --git a/lib/readline/readline.c~ b/lib/readline/readline.c~ new file mode 100644 index 00000000..c0e78d4f --- /dev/null +++ b/lib/readline/readline.c~ @@ -0,0 +1,1257 @@ +/* readline.c -- a general facility for reading lines of input + with emacs style editing and completion. */ + +/* Copyright (C) 1987-2009 Free Software Foundation, Inc. + + This file is part of the GNU Readline Library (Readline), a library + for reading lines of text with interactive input and history editing. + + Readline is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Readline is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Readline. If not, see . +*/ + +#define READLINE_LIBRARY + +#if defined (HAVE_CONFIG_H) +# include +#endif + +#include +#include "posixstat.h" +#include +#if defined (HAVE_SYS_FILE_H) +# include +#endif /* HAVE_SYS_FILE_H */ + +#if defined (HAVE_UNISTD_H) +# include +#endif /* HAVE_UNISTD_H */ + +#if defined (HAVE_STDLIB_H) +# include +#else +# include "ansi_stdlib.h" +#endif /* HAVE_STDLIB_H */ + +#if defined (HAVE_LOCALE_H) +# include +#endif + +#include +#include "posixjmp.h" +#include + +#if !defined (errno) +extern int errno; +#endif /* !errno */ + +/* System-specific feature definitions and include files. */ +#include "rldefs.h" +#include "rlmbutil.h" + +#if defined (__EMX__) +# define INCL_DOSPROCESS +# include +#endif /* __EMX__ */ + +/* Some standard library routines. */ +#include "readline.h" +#include "history.h" + +#include "rlprivate.h" +#include "rlshell.h" +#include "xmalloc.h" + +#ifndef RL_LIBRARY_VERSION +# define RL_LIBRARY_VERSION "5.1" +#endif + +#ifndef RL_READLINE_VERSION +# define RL_READLINE_VERSION 0x0501 +#endif + +extern void _rl_free_history_entry PARAMS((HIST_ENTRY *)); + +/* Forward declarations used in this file. */ +static char *readline_internal PARAMS((void)); +static void readline_initialize_everything PARAMS((void)); + +static void bind_arrow_keys_internal PARAMS((Keymap)); +static void bind_arrow_keys PARAMS((void)); + +static void readline_default_bindings PARAMS((void)); +static void reset_default_bindings PARAMS((void)); + +static int _rl_subseq_result PARAMS((int, Keymap, int, int)); +static int _rl_subseq_getchar PARAMS((int)); + +/* **************************************************************** */ +/* */ +/* Line editing input utility */ +/* */ +/* **************************************************************** */ + +const char *rl_library_version = RL_LIBRARY_VERSION; + +int rl_readline_version = RL_READLINE_VERSION; + +/* True if this is `real' readline as opposed to some stub substitute. */ +int rl_gnu_readline_p = 1; + +/* A pointer to the keymap that is currently in use. + By default, it is the standard emacs keymap. */ +Keymap _rl_keymap = emacs_standard_keymap; + + +/* The current style of editing. */ +int rl_editing_mode = emacs_mode; + +/* The current insert mode: input (the default) or overwrite */ +int rl_insert_mode = RL_IM_DEFAULT; + +/* Non-zero if we called this function from _rl_dispatch(). It's present + so functions can find out whether they were called from a key binding + or directly from an application. */ +int rl_dispatching; + +/* Non-zero if the previous command was a kill command. */ +int _rl_last_command_was_kill = 0; + +/* The current value of the numeric argument specified by the user. */ +int rl_numeric_arg = 1; + +/* Non-zero if an argument was typed. */ +int rl_explicit_arg = 0; + +/* Temporary value used while generating the argument. */ +int rl_arg_sign = 1; + +/* Non-zero means we have been called at least once before. */ +static int rl_initialized; + +#if 0 +/* If non-zero, this program is running in an EMACS buffer. */ +static int running_in_emacs; +#endif + +/* Flags word encapsulating the current readline state. */ +int rl_readline_state = RL_STATE_NONE; + +/* The current offset in the current input line. */ +int rl_point; + +/* Mark in the current input line. */ +int rl_mark; + +/* Length of the current input line. */ +int rl_end; + +/* Make this non-zero to return the current input_line. */ +int rl_done; + +/* The last function executed by readline. */ +rl_command_func_t *rl_last_func = (rl_command_func_t *)NULL; + +/* Top level environment for readline_internal (). */ +procenv_t _rl_top_level; + +/* The streams we interact with. */ +FILE *_rl_in_stream, *_rl_out_stream; + +/* The names of the streams that we do input and output to. */ +FILE *rl_instream = (FILE *)NULL; +FILE *rl_outstream = (FILE *)NULL; + +/* Non-zero means echo characters as they are read. Defaults to no echo; + set to 1 if there is a controlling terminal, we can get its attributes, + and the attributes include `echo'. Look at rltty.c:prepare_terminal_settings + for the code that sets it. */ +int _rl_echoing_p = 0; + +/* Current prompt. */ +char *rl_prompt = (char *)NULL; +int rl_visible_prompt_length = 0; + +/* Set to non-zero by calling application if it has already printed rl_prompt + and does not want readline to do it the first time. */ +int rl_already_prompted = 0; + +/* The number of characters read in order to type this complete command. */ +int rl_key_sequence_length = 0; + +/* If non-zero, then this is the address of a function to call just + before readline_internal_setup () prints the first prompt. */ +rl_hook_func_t *rl_startup_hook = (rl_hook_func_t *)NULL; + +/* If non-zero, this is the address of a function to call just before + readline_internal_setup () returns and readline_internal starts + reading input characters. */ +rl_hook_func_t *rl_pre_input_hook = (rl_hook_func_t *)NULL; + +/* What we use internally. You should always refer to RL_LINE_BUFFER. */ +static char *the_line; + +/* The character that can generate an EOF. Really read from + the terminal driver... just defaulted here. */ +int _rl_eof_char = CTRL ('D'); + +/* Non-zero makes this the next keystroke to read. */ +int rl_pending_input = 0; + +/* Pointer to a useful terminal name. */ +const char *rl_terminal_name = (const char *)NULL; + +/* Non-zero means to always use horizontal scrolling in line display. */ +int _rl_horizontal_scroll_mode = 0; + +/* Non-zero means to display an asterisk at the starts of history lines + which have been modified. */ +int _rl_mark_modified_lines = 0; + +/* The style of `bell' notification preferred. This can be set to NO_BELL, + AUDIBLE_BELL, or VISIBLE_BELL. */ +int _rl_bell_preference = AUDIBLE_BELL; + +/* String inserted into the line by rl_insert_comment (). */ +char *_rl_comment_begin; + +/* Keymap holding the function currently being executed. */ +Keymap rl_executing_keymap; + +/* Keymap we're currently using to dispatch. */ +Keymap _rl_dispatching_keymap; + +/* Non-zero means to erase entire line, including prompt, on empty input lines. */ +int rl_erase_empty_line = 0; + +/* Non-zero means to read only this many characters rather than up to a + character bound to accept-line. */ +int rl_num_chars_to_read; + +/* Line buffer and maintenence. */ +char *rl_line_buffer = (char *)NULL; +int rl_line_buffer_len = 0; + +/* Key sequence `contexts' */ +_rl_keyseq_cxt *_rl_kscxt = 0; + +/* Forward declarations used by the display, termcap, and history code. */ + +/* **************************************************************** */ +/* */ +/* `Forward' declarations */ +/* */ +/* **************************************************************** */ + +/* Non-zero means do not parse any lines other than comments and + parser directives. */ +unsigned char _rl_parsing_conditionalized_out = 0; + +/* Non-zero means to convert characters with the meta bit set to + escape-prefixed characters so we can indirect through + emacs_meta_keymap or vi_escape_keymap. */ +int _rl_convert_meta_chars_to_ascii = 1; + +/* Non-zero means to output characters with the meta bit set directly + rather than as a meta-prefixed escape sequence. */ +int _rl_output_meta_chars = 0; + +/* Non-zero means to look at the termios special characters and bind + them to equivalent readline functions at startup. */ +int _rl_bind_stty_chars = 1; + +/* Non-zero means to go through the history list at every newline (or + whenever rl_done is set and readline returns) and revert each line to + its initial state. */ +int _rl_revert_all_at_newline = 0; + +/* Non-zero means to honor the termios ECHOCTL bit and echo control + characters corresponding to keyboard-generated signals. */ +int _rl_echo_control_chars = 1; + +/* **************************************************************** */ +/* */ +/* Top Level Functions */ +/* */ +/* **************************************************************** */ + +/* Non-zero means treat 0200 bit in terminal input as Meta bit. */ +int _rl_meta_flag = 0; /* Forward declaration */ + +/* Set up the prompt and expand it. Called from readline() and + rl_callback_handler_install (). */ +int +rl_set_prompt (prompt) + const char *prompt; +{ + FREE (rl_prompt); + rl_prompt = prompt ? savestring (prompt) : (char *)NULL; + rl_display_prompt = rl_prompt ? rl_prompt : ""; + + rl_visible_prompt_length = rl_expand_prompt (rl_prompt); + return 0; +} + +/* Read a line of input. Prompt with PROMPT. An empty PROMPT means + none. A return value of NULL means that EOF was encountered. */ +char * +readline (prompt) + const char *prompt; +{ + char *value; +#if 0 + int in_callback; +#endif + + /* If we are at EOF return a NULL string. */ + if (rl_pending_input == EOF) + { + rl_clear_pending_input (); + return ((char *)NULL); + } + +#if 0 + /* If readline() is called after installing a callback handler, temporarily + turn off the callback state to avoid ensuing messiness. Patch supplied + by the gdb folks. XXX -- disabled. This can be fooled and readline + left in a strange state by a poorly-timed longjmp. */ + if (in_callback = RL_ISSTATE (RL_STATE_CALLBACK)) + RL_UNSETSTATE (RL_STATE_CALLBACK); +#endif + + rl_set_prompt (prompt); + + rl_initialize (); + if (rl_prep_term_function) + (*rl_prep_term_function) (_rl_meta_flag); + +#if defined (HANDLE_SIGNALS) + rl_set_signals (); +#endif + + value = readline_internal (); + if (rl_deprep_term_function) + (*rl_deprep_term_function) (); + +#if defined (HANDLE_SIGNALS) + rl_clear_signals (); +#endif + +#if 0 + if (in_callback) + RL_SETSTATE (RL_STATE_CALLBACK); +#endif + + return (value); +} + +#if defined (READLINE_CALLBACKS) +# define STATIC_CALLBACK +#else +# define STATIC_CALLBACK static +#endif + +STATIC_CALLBACK void +readline_internal_setup () +{ + char *nprompt; + + _rl_in_stream = rl_instream; + _rl_out_stream = rl_outstream; + + if (rl_startup_hook) + (*rl_startup_hook) (); + + /* If we're not echoing, we still want to at least print a prompt, because + rl_redisplay will not do it for us. If the calling application has a + custom redisplay function, though, let that function handle it. */ + if (_rl_echoing_p == 0 && rl_redisplay_function == rl_redisplay) + { + if (rl_prompt && rl_already_prompted == 0) + { + nprompt = _rl_strip_prompt (rl_prompt); + fprintf (_rl_out_stream, "%s", nprompt); + fflush (_rl_out_stream); + free (nprompt); + } + } + else + { + if (rl_prompt && rl_already_prompted) + rl_on_new_line_with_prompt (); + else + rl_on_new_line (); + (*rl_redisplay_function) (); + } + +#if defined (VI_MODE) + if (rl_editing_mode == vi_mode) + rl_vi_insert_mode (1, 'i'); +#endif /* VI_MODE */ + + if (rl_pre_input_hook) + (*rl_pre_input_hook) (); + + RL_CHECK_SIGNALS (); +} + +STATIC_CALLBACK char * +readline_internal_teardown (eof) + int eof; +{ + char *temp; + HIST_ENTRY *entry; + + RL_CHECK_SIGNALS (); + + /* Restore the original of this history line, iff the line that we + are editing was originally in the history, AND the line has changed. */ + entry = current_history (); + + if (entry && rl_undo_list) + { + temp = savestring (the_line); + rl_revert_line (1, 0); + entry = replace_history_entry (where_history (), the_line, (histdata_t)NULL); + _rl_free_history_entry (entry); + + strcpy (the_line, temp); + free (temp); + } + + if (_rl_revert_all_at_newline) + _rl_revert_all_lines (); + + /* At any rate, it is highly likely that this line has an undo list. Get + rid of it now. */ + if (rl_undo_list) + rl_free_undo_list (); + + /* Restore normal cursor, if available. */ + _rl_set_insert_mode (RL_IM_INSERT, 0); + + return (eof ? (char *)NULL : savestring (the_line)); +} + +void +_rl_internal_char_cleanup () +{ +#if defined (VI_MODE) + /* In vi mode, when you exit insert mode, the cursor moves back + over the previous character. We explicitly check for that here. */ + if (rl_editing_mode == vi_mode && _rl_keymap == vi_movement_keymap) + rl_vi_check (); +#endif /* VI_MODE */ + + if (rl_num_chars_to_read && rl_end >= rl_num_chars_to_read) + { + (*rl_redisplay_function) (); + _rl_want_redisplay = 0; + rl_newline (1, '\n'); + } + + if (rl_done == 0) + { + (*rl_redisplay_function) (); + _rl_want_redisplay = 0; + } + + /* If the application writer has told us to erase the entire line if + the only character typed was something bound to rl_newline, do so. */ + if (rl_erase_empty_line && rl_done && rl_last_func == rl_newline && + rl_point == 0 && rl_end == 0) + _rl_erase_entire_line (); +} + +STATIC_CALLBACK int +#if defined (READLINE_CALLBACKS) +readline_internal_char () +#else +readline_internal_charloop () +#endif +{ + static int lastc, eof_found; + int c, code, lk; + + lastc = -1; + eof_found = 0; + +#if !defined (READLINE_CALLBACKS) + while (rl_done == 0) + { +#endif + lk = _rl_last_command_was_kill; + + code = setjmp (_rl_top_level); + + if (code) + { + (*rl_redisplay_function) (); + _rl_want_redisplay = 0; + /* If we get here, we're not being called from something dispatched + from _rl_callback_read_char(), which sets up its own value of + _rl_top_level (saving and restoring the old, of course), so + we can just return here. */ + if (RL_ISSTATE (RL_STATE_CALLBACK)) + return (0); + } + + if (rl_pending_input == 0) + { + /* Then initialize the argument and number of keys read. */ + _rl_reset_argument (); + rl_key_sequence_length = 0; + } + + RL_SETSTATE(RL_STATE_READCMD); + c = rl_read_key (); + RL_UNSETSTATE(RL_STATE_READCMD); + + /* look at input.c:rl_getc() for the circumstances under which this will + be returned; punt immediately on read error without converting it to + a newline. */ + if (c == READERR) + { +#if defined (READLINE_CALLBACKS) + RL_SETSTATE(RL_STATE_DONE); + return (rl_done = 1); +#else + eof_found = 1; + break; +#endif + } + + /* EOF typed to a non-blank line is a . */ + if (c == EOF && rl_end) + c = NEWLINE; + + /* The character _rl_eof_char typed to blank line, and not as the + previous character is interpreted as EOF. */ + if (((c == _rl_eof_char && lastc != c) || c == EOF) && !rl_end) + { +#if defined (READLINE_CALLBACKS) + RL_SETSTATE(RL_STATE_DONE); + return (rl_done = 1); +#else + eof_found = 1; + break; +#endif + } + + lastc = c; + _rl_dispatch ((unsigned char)c, _rl_keymap); + RL_CHECK_SIGNALS (); + + /* If there was no change in _rl_last_command_was_kill, then no kill + has taken place. Note that if input is pending we are reading + a prefix command, so nothing has changed yet. */ + if (rl_pending_input == 0 && lk == _rl_last_command_was_kill) + _rl_last_command_was_kill = 0; + + _rl_internal_char_cleanup (); + +#if defined (READLINE_CALLBACKS) + return 0; +#else + } + + return (eof_found); +#endif +} + +#if defined (READLINE_CALLBACKS) +static int +readline_internal_charloop () +{ + int eof = 1; + + while (rl_done == 0) + eof = readline_internal_char (); + return (eof); +} +#endif /* READLINE_CALLBACKS */ + +/* Read a line of input from the global rl_instream, doing output on + the global rl_outstream. + If rl_prompt is non-null, then that is our prompt. */ +static char * +readline_internal () +{ + int eof; + + readline_internal_setup (); + eof = readline_internal_charloop (); + return (readline_internal_teardown (eof)); +} + +void +_rl_init_line_state () +{ + rl_point = rl_end = rl_mark = 0; + the_line = rl_line_buffer; + the_line[0] = 0; +} + +void +_rl_set_the_line () +{ + the_line = rl_line_buffer; +} + +#if defined (READLINE_CALLBACKS) +_rl_keyseq_cxt * +_rl_keyseq_cxt_alloc () +{ + _rl_keyseq_cxt *cxt; + + cxt = (_rl_keyseq_cxt *)xmalloc (sizeof (_rl_keyseq_cxt)); + + cxt->flags = cxt->subseq_arg = cxt->subseq_retval = 0; + + cxt->okey = 0; + cxt->ocxt = _rl_kscxt; + cxt->childval = 42; /* sentinel value */ + + return cxt; +} + +void +_rl_keyseq_cxt_dispose (cxt) + _rl_keyseq_cxt *cxt; +{ + free (cxt); +} + +void +_rl_keyseq_chain_dispose () +{ + _rl_keyseq_cxt *cxt; + + while (_rl_kscxt) + { + cxt = _rl_kscxt; + _rl_kscxt = _rl_kscxt->ocxt; + _rl_keyseq_cxt_dispose (cxt); + } +} +#endif + +static int +_rl_subseq_getchar (key) + int key; +{ + int k; + + if (key == ESC) + RL_SETSTATE(RL_STATE_METANEXT); + RL_SETSTATE(RL_STATE_MOREINPUT); + k = rl_read_key (); + RL_UNSETSTATE(RL_STATE_MOREINPUT); + if (key == ESC) + RL_UNSETSTATE(RL_STATE_METANEXT); + + return k; +} + +#if defined (READLINE_CALLBACKS) +int +_rl_dispatch_callback (cxt) + _rl_keyseq_cxt *cxt; +{ + int nkey, r; + + /* For now */ + /* The first time this context is used, we want to read input and dispatch + on it. When traversing the chain of contexts back `up', we want to use + the value from the next context down. We're simulating recursion using + a chain of contexts. */ + if ((cxt->flags & KSEQ_DISPATCHED) == 0) + { + nkey = _rl_subseq_getchar (cxt->okey); + if (nkey < 0) + { + _rl_abort_internal (); + return -1; + } + r = _rl_dispatch_subseq (nkey, cxt->dmap, cxt->subseq_arg); + cxt->flags |= KSEQ_DISPATCHED; + } + else + r = cxt->childval; + + /* For now */ + if (r != -3) /* don't do this if we indicate there will be other matches */ + r = _rl_subseq_result (r, cxt->oldmap, cxt->okey, (cxt->flags & KSEQ_SUBSEQ)); + + RL_CHECK_SIGNALS (); + if (r == 0) /* success! */ + { + _rl_keyseq_chain_dispose (); + RL_UNSETSTATE (RL_STATE_MULTIKEY); + return r; + } + + if (r != -3) /* magic value that says we added to the chain */ + _rl_kscxt = cxt->ocxt; + if (_rl_kscxt) + _rl_kscxt->childval = r; + if (r != -3) + _rl_keyseq_cxt_dispose (cxt); + + return r; +} +#endif /* READLINE_CALLBACKS */ + +/* Do the command associated with KEY in MAP. + If the associated command is really a keymap, then read + another key, and dispatch into that map. */ +int +_rl_dispatch (key, map) + register int key; + Keymap map; +{ + _rl_dispatching_keymap = map; + return _rl_dispatch_subseq (key, map, 0); +} + +int +_rl_dispatch_subseq (key, map, got_subseq) + register int key; + Keymap map; + int got_subseq; +{ + int r, newkey; + char *macro; + rl_command_func_t *func; +#if defined (READLINE_CALLBACKS) + _rl_keyseq_cxt *cxt; +#endif + + if (META_CHAR (key) && _rl_convert_meta_chars_to_ascii) + { + if (map[ESC].type == ISKMAP) + { + if (RL_ISSTATE (RL_STATE_MACRODEF)) + _rl_add_macro_char (ESC); + map = FUNCTION_TO_KEYMAP (map, ESC); + key = UNMETA (key); + rl_key_sequence_length += 2; + return (_rl_dispatch (key, map)); + } + else + rl_ding (); + return 0; + } + + if (RL_ISSTATE (RL_STATE_MACRODEF)) + _rl_add_macro_char (key); + + r = 0; + switch (map[key].type) + { + case ISFUNC: + func = map[key].function; + if (func) + { + /* Special case rl_do_lowercase_version (). */ + if (func == rl_do_lowercase_version) + return (_rl_dispatch (_rl_to_lower (key), map)); + + rl_executing_keymap = map; + + rl_dispatching = 1; + RL_SETSTATE(RL_STATE_DISPATCHING); + (*map[key].function)(rl_numeric_arg * rl_arg_sign, key); + RL_UNSETSTATE(RL_STATE_DISPATCHING); + rl_dispatching = 0; + + /* If we have input pending, then the last command was a prefix + command. Don't change the state of rl_last_func. Otherwise, + remember the last command executed in this variable. */ + if (rl_pending_input == 0 && map[key].function != rl_digit_argument) + rl_last_func = map[key].function; + + RL_CHECK_SIGNALS (); + } + else if (map[ANYOTHERKEY].function) + { + /* OK, there's no function bound in this map, but there is a + shadow function that was overridden when the current keymap + was created. Return -2 to note that. */ + _rl_unget_char (key); + return -2; + } + else if (got_subseq) + { + /* Return -1 to note that we're in a subsequence, but we don't + have a matching key, nor was one overridden. This means + we need to back up the recursion chain and find the last + subsequence that is bound to a function. */ + _rl_unget_char (key); + return -1; + } + else + { +#if defined (READLINE_CALLBACKS) + RL_UNSETSTATE (RL_STATE_MULTIKEY); + _rl_keyseq_chain_dispose (); +#endif + _rl_abort_internal (); + return -1; + } + break; + + case ISKMAP: + if (map[key].function != 0) + { +#if defined (VI_MODE) + /* The only way this test will be true is if a subsequence has been + bound starting with ESC, generally the arrow keys. What we do is + check whether there's input in the queue, which there generally + will be if an arrow key has been pressed, and, if there's not, + just dispatch to (what we assume is) rl_vi_movement_mode right + away. This is essentially an input test with a zero timeout. */ + if (rl_editing_mode == vi_mode && key == ESC && map == vi_insertion_keymap + && _rl_input_queued (0) == 0) + return (_rl_dispatch (ANYOTHERKEY, FUNCTION_TO_KEYMAP (map, key))); +#endif + + rl_key_sequence_length++; + _rl_dispatching_keymap = FUNCTION_TO_KEYMAP (map, key); + + /* Allocate new context here. Use linked contexts (linked through + cxt->ocxt) to simulate recursion */ +#if defined (READLINE_CALLBACKS) + if (RL_ISSTATE (RL_STATE_CALLBACK)) + { + /* Return 0 only the first time, to indicate success to + _rl_callback_read_char. The rest of the time, we're called + from _rl_dispatch_callback, so we return -3 to indicate + special handling is necessary. */ + r = RL_ISSTATE (RL_STATE_MULTIKEY) ? -3 : 0; + cxt = _rl_keyseq_cxt_alloc (); + + if (got_subseq) + cxt->flags |= KSEQ_SUBSEQ; + cxt->okey = key; + cxt->oldmap = map; + cxt->dmap = _rl_dispatching_keymap; + cxt->subseq_arg = got_subseq || cxt->dmap[ANYOTHERKEY].function; + + RL_SETSTATE (RL_STATE_MULTIKEY); + _rl_kscxt = cxt; + + return r; /* don't indicate immediate success */ + } +#endif + + newkey = _rl_subseq_getchar (key); + if (newkey < 0) + { + _rl_abort_internal (); + return -1; + } + + r = _rl_dispatch_subseq (newkey, _rl_dispatching_keymap, got_subseq || map[ANYOTHERKEY].function); + return _rl_subseq_result (r, map, key, got_subseq); + } + else + { + _rl_abort_internal (); + return -1; + } + break; + + case ISMACR: + if (map[key].function != 0) + { + macro = savestring ((char *)map[key].function); + _rl_with_macro_input (macro); + return 0; + } + break; + } +#if defined (VI_MODE) + if (rl_editing_mode == vi_mode && _rl_keymap == vi_movement_keymap && + key != ANYOTHERKEY && + _rl_vi_textmod_command (key)) + _rl_vi_set_last (key, rl_numeric_arg, rl_arg_sign); +#endif + + return (r); +} + +static int +_rl_subseq_result (r, map, key, got_subseq) + int r; + Keymap map; + int key, got_subseq; +{ + Keymap m; + int type, nt; + rl_command_func_t *func, *nf; + + if (r == -2) + /* We didn't match anything, and the keymap we're indexed into + shadowed a function previously bound to that prefix. Call + the function. The recursive call to _rl_dispatch_subseq has + already taken care of pushing any necessary input back onto + the input queue with _rl_unget_char. */ + { + m = _rl_dispatching_keymap; + type = m[ANYOTHERKEY].type; + func = m[ANYOTHERKEY].function; + if (type == ISFUNC && func == rl_do_lowercase_version) + r = _rl_dispatch (_rl_to_lower (key), map); + else if (type == ISFUNC && func == rl_insert) + { + /* If the function that was shadowed was self-insert, we + somehow need a keymap with map[key].func == self-insert. + Let's use this one. */ + nt = m[key].type; + nf = m[key].function; + + m[key].type = type; + m[key].function = func; + r = _rl_dispatch (key, m); + m[key].type = nt; + m[key].function = nf; + } + else + r = _rl_dispatch (ANYOTHERKEY, m); + } + else if (r && map[ANYOTHERKEY].function) + { + /* We didn't match (r is probably -1), so return something to + tell the caller that it should try ANYOTHERKEY for an + overridden function. */ + _rl_unget_char (key); + _rl_dispatching_keymap = map; + return -2; + } + else if (r && got_subseq) + { + /* OK, back up the chain. */ + _rl_unget_char (key); + _rl_dispatching_keymap = map; + return -1; + } + + return r; +} + +/* **************************************************************** */ +/* */ +/* Initializations */ +/* */ +/* **************************************************************** */ + +/* Initialize readline (and terminal if not already). */ +int +rl_initialize () +{ + /* If we have never been called before, initialize the + terminal and data structures. */ + if (!rl_initialized) + { + RL_SETSTATE(RL_STATE_INITIALIZING); + readline_initialize_everything (); + RL_UNSETSTATE(RL_STATE_INITIALIZING); + rl_initialized++; + RL_SETSTATE(RL_STATE_INITIALIZED); + } + + /* Initalize the current line information. */ + _rl_init_line_state (); + + /* We aren't done yet. We haven't even gotten started yet! */ + rl_done = 0; + RL_UNSETSTATE(RL_STATE_DONE); + + /* Tell the history routines what is going on. */ + _rl_start_using_history (); + + /* Make the display buffer match the state of the line. */ + rl_reset_line_state (); + + /* No such function typed yet. */ + rl_last_func = (rl_command_func_t *)NULL; + + /* Parsing of key-bindings begins in an enabled state. */ + _rl_parsing_conditionalized_out = 0; + +#if defined (VI_MODE) + if (rl_editing_mode == vi_mode) + _rl_vi_initialize_line (); +#endif + + /* Each line starts in insert mode (the default). */ + _rl_set_insert_mode (RL_IM_DEFAULT, 1); + + return 0; +} + +#if 0 +#if defined (__EMX__) +static void +_emx_build_environ () +{ + TIB *tibp; + PIB *pibp; + char *t, **tp; + int c; + + DosGetInfoBlocks (&tibp, &pibp); + t = pibp->pib_pchenv; + for (c = 1; *t; c++) + t += strlen (t) + 1; + tp = environ = (char **)xmalloc ((c + 1) * sizeof (char *)); + t = pibp->pib_pchenv; + while (*t) + { + *tp++ = t; + t += strlen (t) + 1; + } + *tp = 0; +} +#endif /* __EMX__ */ +#endif + +/* Initialize the entire state of the world. */ +static void +readline_initialize_everything () +{ +#if 0 +#if defined (__EMX__) + if (environ == 0) + _emx_build_environ (); +#endif +#endif + +#if 0 + /* Find out if we are running in Emacs -- UNUSED. */ + running_in_emacs = sh_get_env_value ("EMACS") != (char *)0; +#endif + + /* Set up input and output if they are not already set up. */ + if (!rl_instream) + rl_instream = stdin; + + if (!rl_outstream) + rl_outstream = stdout; + + /* Bind _rl_in_stream and _rl_out_stream immediately. These values + may change, but they may also be used before readline_internal () + is called. */ + _rl_in_stream = rl_instream; + _rl_out_stream = rl_outstream; + + /* Allocate data structures. */ + if (rl_line_buffer == 0) + rl_line_buffer = (char *)xmalloc (rl_line_buffer_len = DEFAULT_BUFFER_SIZE); + + /* Initialize the terminal interface. */ + if (rl_terminal_name == 0) + rl_terminal_name = sh_get_env_value ("TERM"); + _rl_init_terminal_io (rl_terminal_name); + + /* Bind tty characters to readline functions. */ + readline_default_bindings (); + + /* Initialize the function names. */ + rl_initialize_funmap (); + + /* Decide whether we should automatically go into eight-bit mode. */ + _rl_init_eightbit (); + + /* Read in the init file. */ + rl_read_init_file ((char *)NULL); + + /* XXX */ + if (_rl_horizontal_scroll_mode && _rl_term_autowrap) + { + _rl_screenwidth--; + _rl_screenchars -= _rl_screenheight; + } + + /* Override the effect of any `set keymap' assignments in the + inputrc file. */ + rl_set_keymap_from_edit_mode (); + + /* Try to bind a common arrow key prefix, if not already bound. */ + bind_arrow_keys (); + + /* Enable the meta key, if this terminal has one. */ + if (_rl_enable_meta) + _rl_enable_meta_key (); + + /* If the completion parser's default word break characters haven't + been set yet, then do so now. */ + if (rl_completer_word_break_characters == (char *)NULL) + rl_completer_word_break_characters = (char *)rl_basic_word_break_characters; +} + +/* If this system allows us to look at the values of the regular + input editing characters, then bind them to their readline + equivalents, iff the characters are not bound to keymaps. */ +static void +readline_default_bindings () +{ + if (_rl_bind_stty_chars) + rl_tty_set_default_bindings (_rl_keymap); +} + +/* Reset the default bindings for the terminal special characters we're + interested in back to rl_insert and read the new ones. */ +static void +reset_default_bindings () +{ + if (_rl_bind_stty_chars) + { + rl_tty_unset_default_bindings (_rl_keymap); + rl_tty_set_default_bindings (_rl_keymap); + } +} + +/* Bind some common arrow key sequences in MAP. */ +static void +bind_arrow_keys_internal (map) + Keymap map; +{ + Keymap xkeymap; + + xkeymap = _rl_keymap; + _rl_keymap = map; + +#if defined (__MSDOS__) + rl_bind_keyseq_if_unbound ("\033[0A", rl_get_previous_history); + rl_bind_keyseq_if_unbound ("\033[0B", rl_backward_char); + rl_bind_keyseq_if_unbound ("\033[0C", rl_forward_char); + rl_bind_keyseq_if_unbound ("\033[0D", rl_get_next_history); +#endif + + rl_bind_keyseq_if_unbound ("\033[A", rl_get_previous_history); + rl_bind_keyseq_if_unbound ("\033[B", rl_get_next_history); + rl_bind_keyseq_if_unbound ("\033[C", rl_forward_char); + rl_bind_keyseq_if_unbound ("\033[D", rl_backward_char); + rl_bind_keyseq_if_unbound ("\033[H", rl_beg_of_line); + rl_bind_keyseq_if_unbound ("\033[F", rl_end_of_line); + + rl_bind_keyseq_if_unbound ("\033OA", rl_get_previous_history); + rl_bind_keyseq_if_unbound ("\033OB", rl_get_next_history); + rl_bind_keyseq_if_unbound ("\033OC", rl_forward_char); + rl_bind_keyseq_if_unbound ("\033OD", rl_backward_char); + rl_bind_keyseq_if_unbound ("\033OH", rl_beg_of_line); + rl_bind_keyseq_if_unbound ("\033OF", rl_end_of_line); + +#if defined (__MINGW32__) + rl_bind_keyseq_if_unbound ("\340H", rl_get_previous_history); + rl_bind_keyseq_if_unbound ("\340P", rl_get_next_history); + rl_bind_keyseq_if_unbound ("\340M", rl_forward_char); + rl_bind_keyseq_if_unbound ("\340K", rl_backward_char); +#endif + + _rl_keymap = xkeymap; +} + +/* Try and bind the common arrow key prefixes after giving termcap and + the inputrc file a chance to bind them and create `real' keymaps + for the arrow key prefix. */ +static void +bind_arrow_keys () +{ + bind_arrow_keys_internal (emacs_standard_keymap); + +#if defined (VI_MODE) + bind_arrow_keys_internal (vi_movement_keymap); + /* Unbind vi_movement_keymap[ESC] to allow users to repeatedly hit ESC + in vi command mode while still allowing the arrow keys to work. */ + if (vi_movement_keymap[ESC].type == ISKMAP) + rl_bind_keyseq_in_map ("\033", (rl_command_func_t *)NULL, vi_movement_keymap); + bind_arrow_keys_internal (vi_insertion_keymap); +#endif +} + +/* **************************************************************** */ +/* */ +/* Saving and Restoring Readline's state */ +/* */ +/* **************************************************************** */ + +int +rl_save_state (sp) + struct readline_state *sp; +{ + if (sp == 0) + return -1; + + sp->point = rl_point; + sp->end = rl_end; + sp->mark = rl_mark; + sp->buffer = rl_line_buffer; + sp->buflen = rl_line_buffer_len; + sp->ul = rl_undo_list; + sp->prompt = rl_prompt; + + sp->rlstate = rl_readline_state; + sp->done = rl_done; + sp->kmap = _rl_keymap; + + sp->lastfunc = rl_last_func; + sp->insmode = rl_insert_mode; + sp->edmode = rl_editing_mode; + sp->kseqlen = rl_key_sequence_length; + sp->inf = rl_instream; + sp->outf = rl_outstream; + sp->pendingin = rl_pending_input; + sp->macro = rl_executing_macro; + + sp->catchsigs = rl_catch_signals; + sp->catchsigwinch = rl_catch_sigwinch; + + return (0); +} + +int +rl_restore_state (sp) + struct readline_state *sp; +{ + if (sp == 0) + return -1; + + rl_point = sp->point; + rl_end = sp->end; + rl_mark = sp->mark; + the_line = rl_line_buffer = sp->buffer; + rl_line_buffer_len = sp->buflen; + rl_undo_list = sp->ul; + rl_prompt = sp->prompt; + + rl_readline_state = sp->rlstate; + rl_done = sp->done; + _rl_keymap = sp->kmap; + + rl_last_func = sp->lastfunc; + rl_insert_mode = sp->insmode; + rl_editing_mode = sp->edmode; + rl_key_sequence_length = sp->kseqlen; + rl_instream = sp->inf; + rl_outstream = sp->outf; + rl_pending_input = sp->pendingin; + rl_executing_macro = sp->macro; + + rl_catch_signals = sp->catchsigs; + rl_catch_sigwinch = sp->catchsigwinch; + + return (0); +} diff --git a/lib/readline/search.c b/lib/readline/search.c index 82984f19..04468fc4 100644 --- a/lib/readline/search.c +++ b/lib/readline/search.c @@ -211,7 +211,7 @@ _rl_nsearch_init (dir, pchar) p = _rl_make_prompt_for_search (pchar ? pchar : ':'); rl_message ("%s", p, 0); - free (p); + xfree (p); RL_SETSTATE(RL_STATE_NSEARCH); diff --git a/lib/readline/search.c~ b/lib/readline/search.c~ new file mode 100644 index 00000000..82984f19 --- /dev/null +++ b/lib/readline/search.c~ @@ -0,0 +1,570 @@ +/* search.c - code for non-incremental searching in emacs and vi modes. */ + +/* Copyright (C) 1992-2009 Free Software Foundation, Inc. + + This file is part of the GNU Readline Library (Readline), a library + for reading lines of text with interactive input and history editing. + + Readline is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Readline is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Readline. If not, see . +*/ + +#define READLINE_LIBRARY + +#if defined (HAVE_CONFIG_H) +# include +#endif + +#include +#include + +#if defined (HAVE_UNISTD_H) +# include +#endif + +#if defined (HAVE_STDLIB_H) +# include +#else +# include "ansi_stdlib.h" +#endif + +#include "rldefs.h" +#include "rlmbutil.h" + +#include "readline.h" +#include "history.h" + +#include "rlprivate.h" +#include "xmalloc.h" + +#ifdef abs +# undef abs +#endif +#define abs(x) (((x) >= 0) ? (x) : -(x)) + +_rl_search_cxt *_rl_nscxt = 0; + +extern HIST_ENTRY *_rl_saved_line_for_history; + +/* Functions imported from the rest of the library. */ +extern int _rl_free_history_entry PARAMS((HIST_ENTRY *)); + +static char *noninc_search_string = (char *) NULL; +static int noninc_history_pos; + +static char *prev_line_found = (char *) NULL; + +static int rl_history_search_len; +static int rl_history_search_pos; +static char *history_search_string; +static int history_string_size; + +static void make_history_line_current PARAMS((HIST_ENTRY *)); +static int noninc_search_from_pos PARAMS((char *, int, int)); +static int noninc_dosearch PARAMS((char *, int)); +static int noninc_search PARAMS((int, int)); +static int rl_history_search_internal PARAMS((int, int)); +static void rl_history_search_reinit PARAMS((void)); + +static _rl_search_cxt *_rl_nsearch_init PARAMS((int, int)); +static int _rl_nsearch_cleanup PARAMS((_rl_search_cxt *, int)); +static void _rl_nsearch_abort PARAMS((_rl_search_cxt *)); +static int _rl_nsearch_dispatch PARAMS((_rl_search_cxt *, int)); + +/* Make the data from the history entry ENTRY be the contents of the + current line. This doesn't do anything with rl_point; the caller + must set it. */ +static void +make_history_line_current (entry) + HIST_ENTRY *entry; +{ + _rl_replace_text (entry->line, 0, rl_end); + _rl_fix_point (1); +#if defined (VI_MODE) + if (rl_editing_mode == vi_mode) + /* POSIX.2 says that the `U' command doesn't affect the copy of any + command lines to the edit line. We're going to implement that by + making the undo list start after the matching line is copied to the + current editing buffer. */ + rl_free_undo_list (); +#endif + + if (_rl_saved_line_for_history) + _rl_free_history_entry (_rl_saved_line_for_history); + _rl_saved_line_for_history = (HIST_ENTRY *)NULL; +} + +/* Search the history list for STRING starting at absolute history position + POS. If STRING begins with `^', the search must match STRING at the + beginning of a history line, otherwise a full substring match is performed + for STRING. DIR < 0 means to search backwards through the history list, + DIR >= 0 means to search forward. */ +static int +noninc_search_from_pos (string, pos, dir) + char *string; + int pos, dir; +{ + int ret, old; + + if (pos < 0) + return -1; + + old = where_history (); + if (history_set_pos (pos) == 0) + return -1; + + RL_SETSTATE(RL_STATE_SEARCH); + if (*string == '^') + ret = history_search_prefix (string + 1, dir); + else + ret = history_search (string, dir); + RL_UNSETSTATE(RL_STATE_SEARCH); + + if (ret != -1) + ret = where_history (); + + history_set_pos (old); + return (ret); +} + +/* Search for a line in the history containing STRING. If DIR is < 0, the + search is backwards through previous entries, else through subsequent + entries. Returns 1 if the search was successful, 0 otherwise. */ +static int +noninc_dosearch (string, dir) + char *string; + int dir; +{ + int oldpos, pos; + HIST_ENTRY *entry; + + if (string == 0 || *string == '\0' || noninc_history_pos < 0) + { + rl_ding (); + return 0; + } + + pos = noninc_search_from_pos (string, noninc_history_pos + dir, dir); + if (pos == -1) + { + /* Search failed, current history position unchanged. */ + rl_maybe_unsave_line (); + rl_clear_message (); + rl_point = 0; + rl_ding (); + return 0; + } + + noninc_history_pos = pos; + + oldpos = where_history (); + history_set_pos (noninc_history_pos); + entry = current_history (); +#if defined (VI_MODE) + if (rl_editing_mode != vi_mode) +#endif + history_set_pos (oldpos); + + make_history_line_current (entry); + + rl_point = 0; + rl_mark = rl_end; + + rl_clear_message (); + return 1; +} + +static _rl_search_cxt * +_rl_nsearch_init (dir, pchar) + int dir, pchar; +{ + _rl_search_cxt *cxt; + char *p; + + cxt = _rl_scxt_alloc (RL_SEARCH_NSEARCH, 0); + if (dir < 0) + cxt->sflags |= SF_REVERSE; /* not strictly needed */ + + cxt->direction = dir; + cxt->history_pos = cxt->save_line; + + rl_maybe_save_line (); + + /* Clear the undo list, since reading the search string should create its + own undo list, and the whole list will end up being freed when we + finish reading the search string. */ + rl_undo_list = 0; + + /* Use the line buffer to read the search string. */ + rl_line_buffer[0] = 0; + rl_end = rl_point = 0; + + p = _rl_make_prompt_for_search (pchar ? pchar : ':'); + rl_message ("%s", p, 0); + free (p); + + RL_SETSTATE(RL_STATE_NSEARCH); + + _rl_nscxt = cxt; + + return cxt; +} + +static int +_rl_nsearch_cleanup (cxt, r) + _rl_search_cxt *cxt; + int r; +{ + _rl_scxt_dispose (cxt, 0); + _rl_nscxt = 0; + + RL_UNSETSTATE(RL_STATE_NSEARCH); + + return (r != 1); +} + +static void +_rl_nsearch_abort (cxt) + _rl_search_cxt *cxt; +{ + rl_maybe_unsave_line (); + rl_clear_message (); + rl_point = cxt->save_point; + rl_mark = cxt->save_mark; + rl_restore_prompt (); + + RL_UNSETSTATE (RL_STATE_NSEARCH); +} + +/* Process just-read character C according to search context CXT. Return -1 + if the caller should abort the search, 0 if we should break out of the + loop, and 1 if we should continue to read characters. */ +static int +_rl_nsearch_dispatch (cxt, c) + _rl_search_cxt *cxt; + int c; +{ + switch (c) + { + case CTRL('W'): + rl_unix_word_rubout (1, c); + break; + + case CTRL('U'): + rl_unix_line_discard (1, c); + break; + + case RETURN: + case NEWLINE: + return 0; + + case CTRL('H'): + case RUBOUT: + if (rl_point == 0) + { + _rl_nsearch_abort (cxt); + return -1; + } + _rl_rubout_char (1, c); + break; + + case CTRL('C'): + case CTRL('G'): + rl_ding (); + _rl_nsearch_abort (cxt); + return -1; + + default: +#if defined (HANDLE_MULTIBYTE) + if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) + rl_insert_text (cxt->mb); + else +#endif + _rl_insert_char (1, c); + break; + } + + (*rl_redisplay_function) (); + return 1; +} + +/* Perform one search according to CXT, using NONINC_SEARCH_STRING. Return + -1 if the search should be aborted, any other value means to clean up + using _rl_nsearch_cleanup (). Returns 1 if the search was successful, + 0 otherwise. */ +static int +_rl_nsearch_dosearch (cxt) + _rl_search_cxt *cxt; +{ + rl_mark = cxt->save_mark; + + /* If rl_point == 0, we want to re-use the previous search string and + start from the saved history position. If there's no previous search + string, punt. */ + if (rl_point == 0) + { + if (noninc_search_string == 0) + { + rl_ding (); + rl_restore_prompt (); + RL_UNSETSTATE (RL_STATE_NSEARCH); + return -1; + } + } + else + { + /* We want to start the search from the current history position. */ + noninc_history_pos = cxt->save_line; + FREE (noninc_search_string); + noninc_search_string = savestring (rl_line_buffer); + + /* If we don't want the subsequent undo list generated by the search + matching a history line to include the contents of the search string, + we need to clear rl_line_buffer here. For now, we just clear the + undo list generated by reading the search string. (If the search + fails, the old undo list will be restored by rl_maybe_unsave_line.) */ + rl_free_undo_list (); + } + + rl_restore_prompt (); + return (noninc_dosearch (noninc_search_string, cxt->direction)); +} + +/* Search non-interactively through the history list. DIR < 0 means to + search backwards through the history of previous commands; otherwise + the search is for commands subsequent to the current position in the + history list. PCHAR is the character to use for prompting when reading + the search string; if not specified (0), it defaults to `:'. */ +static int +noninc_search (dir, pchar) + int dir; + int pchar; +{ + _rl_search_cxt *cxt; + int c, r; + + cxt = _rl_nsearch_init (dir, pchar); + + if (RL_ISSTATE (RL_STATE_CALLBACK)) + return (0); + + /* Read the search string. */ + r = 0; + while (1) + { + c = _rl_search_getchar (cxt); + + if (c == 0) + break; + + r = _rl_nsearch_dispatch (cxt, c); + if (r < 0) + return 1; + else if (r == 0) + break; + } + + r = _rl_nsearch_dosearch (cxt); + return ((r >= 0) ? _rl_nsearch_cleanup (cxt, r) : (r != 1)); +} + +/* Search forward through the history list for a string. If the vi-mode + code calls this, KEY will be `?'. */ +int +rl_noninc_forward_search (count, key) + int count, key; +{ + return noninc_search (1, (key == '?') ? '?' : 0); +} + +/* Reverse search the history list for a string. If the vi-mode code + calls this, KEY will be `/'. */ +int +rl_noninc_reverse_search (count, key) + int count, key; +{ + return noninc_search (-1, (key == '/') ? '/' : 0); +} + +/* Search forward through the history list for the last string searched + for. If there is no saved search string, abort. */ +int +rl_noninc_forward_search_again (count, key) + int count, key; +{ + int r; + + if (!noninc_search_string) + { + rl_ding (); + return (-1); + } + r = noninc_dosearch (noninc_search_string, 1); + return (r != 1); +} + +/* Reverse search in the history list for the last string searched + for. If there is no saved search string, abort. */ +int +rl_noninc_reverse_search_again (count, key) + int count, key; +{ + int r; + + if (!noninc_search_string) + { + rl_ding (); + return (-1); + } + r = noninc_dosearch (noninc_search_string, -1); + return (r != 1); +} + +#if defined (READLINE_CALLBACKS) +int +_rl_nsearch_callback (cxt) + _rl_search_cxt *cxt; +{ + int c, r; + + c = _rl_search_getchar (cxt); + r = _rl_nsearch_dispatch (cxt, c); + if (r != 0) + return 1; + + r = _rl_nsearch_dosearch (cxt); + return ((r >= 0) ? _rl_nsearch_cleanup (cxt, r) : (r != 1)); +} +#endif + +static int +rl_history_search_internal (count, dir) + int count, dir; +{ + HIST_ENTRY *temp; + int ret, oldpos; + + rl_maybe_save_line (); + temp = (HIST_ENTRY *)NULL; + + /* Search COUNT times through the history for a line whose prefix + matches history_search_string. When this loop finishes, TEMP, + if non-null, is the history line to copy into the line buffer. */ + while (count) + { + ret = noninc_search_from_pos (history_search_string, rl_history_search_pos + dir, dir); + if (ret == -1) + break; + + /* Get the history entry we found. */ + rl_history_search_pos = ret; + oldpos = where_history (); + history_set_pos (rl_history_search_pos); + temp = current_history (); + history_set_pos (oldpos); + + /* Don't find multiple instances of the same line. */ + if (prev_line_found && STREQ (prev_line_found, temp->line)) + continue; + prev_line_found = temp->line; + count--; + } + + /* If we didn't find anything at all, return. */ + if (temp == 0) + { + rl_maybe_unsave_line (); + rl_ding (); + /* If you don't want the saved history line (last match) to show up + in the line buffer after the search fails, change the #if 0 to + #if 1 */ +#if 0 + if (rl_point > rl_history_search_len) + { + rl_point = rl_end = rl_history_search_len; + rl_line_buffer[rl_end] = '\0'; + rl_mark = 0; + } +#else + rl_point = rl_history_search_len; /* rl_maybe_unsave_line changes it */ + rl_mark = rl_end; +#endif + return 1; + } + + /* Copy the line we found into the current line buffer. */ + make_history_line_current (temp); + + rl_point = rl_history_search_len; + rl_mark = rl_end; + + return 0; +} + +static void +rl_history_search_reinit () +{ + rl_history_search_pos = where_history (); + rl_history_search_len = rl_point; + prev_line_found = (char *)NULL; + if (rl_point) + { + if (rl_history_search_len >= history_string_size - 2) + { + history_string_size = rl_history_search_len + 2; + history_search_string = (char *)xrealloc (history_search_string, history_string_size); + } + history_search_string[0] = '^'; + strncpy (history_search_string + 1, rl_line_buffer, rl_point); + history_search_string[rl_point + 1] = '\0'; + } + _rl_free_saved_history_line (); +} + +/* Search forward in the history for the string of characters + from the start of the line to rl_point. This is a non-incremental + search. */ +int +rl_history_search_forward (count, ignore) + int count, ignore; +{ + if (count == 0) + return (0); + + if (rl_last_func != rl_history_search_forward && + rl_last_func != rl_history_search_backward) + rl_history_search_reinit (); + + if (rl_history_search_len == 0) + return (rl_get_next_history (count, ignore)); + return (rl_history_search_internal (abs (count), (count > 0) ? 1 : -1)); +} + +/* Search backward through the history for the string of characters + from the start of the line to rl_point. This is a non-incremental + search. */ +int +rl_history_search_backward (count, ignore) + int count, ignore; +{ + if (count == 0) + return (0); + + if (rl_last_func != rl_history_search_forward && + rl_last_func != rl_history_search_backward) + rl_history_search_reinit (); + + if (rl_history_search_len == 0) + return (rl_get_previous_history (count, ignore)); + return (rl_history_search_internal (abs (count), (count > 0) ? -1 : 1)); +} diff --git a/lib/readline/shell.c b/lib/readline/shell.c index 18b4f03a..ac0fb360 100644 --- a/lib/readline/shell.c +++ b/lib/readline/shell.c @@ -130,12 +130,12 @@ sh_set_lines_and_columns (lines, cols) b = (char *)xmalloc (INT_STRLEN_BOUND (int) + 1); sprintf (b, "%d", lines); setenv ("LINES", b, 1); - free (b); + xfree (b); b = (char *)xmalloc (INT_STRLEN_BOUND (int) + 1); sprintf (b, "%d", cols); setenv ("COLUMNS", b, 1); - free (b); + xfree (b); #else /* !HAVE_SETENV */ # if defined (HAVE_PUTENV) b = (char *)xmalloc (INT_STRLEN_BOUND (int) + sizeof ("LINES=") + 1); diff --git a/lib/readline/shell.c~ b/lib/readline/shell.c~ new file mode 100644 index 00000000..18b4f03a --- /dev/null +++ b/lib/readline/shell.c~ @@ -0,0 +1,208 @@ +/* shell.c -- readline utility functions that are normally provided by + bash when readline is linked as part of the shell. */ + +/* Copyright (C) 1997-2009 Free Software Foundation, Inc. + + This file is part of the GNU Readline Library (Readline), a library + for reading lines of text with interactive input and history editing. + + Readline is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Readline is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Readline. If not, see . +*/ + +#define READLINE_LIBRARY + +#if defined (HAVE_CONFIG_H) +# include +#endif + +#include + +#if defined (HAVE_UNISTD_H) +# include +#endif /* HAVE_UNISTD_H */ + +#if defined (HAVE_STDLIB_H) +# include +#else +# include "ansi_stdlib.h" +#endif /* HAVE_STDLIB_H */ + +#if defined (HAVE_STRING_H) +# include +#else +# include +#endif /* !HAVE_STRING_H */ + +#if defined (HAVE_LIMITS_H) +# include +#endif + +#if defined (HAVE_FCNTL_H) +#include +#endif +#if defined (HAVE_PWD_H) +#include +#endif + +#include + +#include "rlstdc.h" +#include "rlshell.h" +#include "xmalloc.h" + +#if defined (HAVE_GETPWUID) && !defined (HAVE_GETPW_DECLS) +extern struct passwd *getpwuid PARAMS((uid_t)); +#endif /* HAVE_GETPWUID && !HAVE_GETPW_DECLS */ + +#ifndef NULL +# define NULL 0 +#endif + +#ifndef CHAR_BIT +# define CHAR_BIT 8 +#endif + +/* Nonzero if the integer type T is signed. */ +#define TYPE_SIGNED(t) (! ((t) 0 < (t) -1)) + +/* Bound on length of the string representing an integer value of type T. + Subtract one for the sign bit if T is signed; + 302 / 1000 is log10 (2) rounded up; + add one for integer division truncation; + add one more for a minus sign if t is signed. */ +#define INT_STRLEN_BOUND(t) \ + ((sizeof (t) * CHAR_BIT - TYPE_SIGNED (t)) * 302 / 1000 \ + + 1 + TYPE_SIGNED (t)) + +/* All of these functions are resolved from bash if we are linking readline + as part of bash. */ + +/* Does shell-like quoting using single quotes. */ +char * +sh_single_quote (string) + char *string; +{ + register int c; + char *result, *r, *s; + + result = (char *)xmalloc (3 + (4 * strlen (string))); + r = result; + *r++ = '\''; + + for (s = string; s && (c = *s); s++) + { + *r++ = c; + + if (c == '\'') + { + *r++ = '\\'; /* insert escaped single quote */ + *r++ = '\''; + *r++ = '\''; /* start new quoted string */ + } + } + + *r++ = '\''; + *r = '\0'; + + return (result); +} + +/* Set the environment variables LINES and COLUMNS to lines and cols, + respectively. */ +void +sh_set_lines_and_columns (lines, cols) + int lines, cols; +{ + char *b; + +#if defined (HAVE_SETENV) + b = (char *)xmalloc (INT_STRLEN_BOUND (int) + 1); + sprintf (b, "%d", lines); + setenv ("LINES", b, 1); + free (b); + + b = (char *)xmalloc (INT_STRLEN_BOUND (int) + 1); + sprintf (b, "%d", cols); + setenv ("COLUMNS", b, 1); + free (b); +#else /* !HAVE_SETENV */ +# if defined (HAVE_PUTENV) + b = (char *)xmalloc (INT_STRLEN_BOUND (int) + sizeof ("LINES=") + 1); + sprintf (b, "LINES=%d", lines); + putenv (b); + + b = (char *)xmalloc (INT_STRLEN_BOUND (int) + sizeof ("COLUMNS=") + 1); + sprintf (b, "COLUMNS=%d", cols); + putenv (b); +# endif /* HAVE_PUTENV */ +#endif /* !HAVE_SETENV */ +} + +char * +sh_get_env_value (varname) + const char *varname; +{ + return ((char *)getenv (varname)); +} + +char * +sh_get_home_dir () +{ + char *home_dir; + struct passwd *entry; + + home_dir = (char *)NULL; +#if defined (HAVE_GETPWUID) + entry = getpwuid (getuid ()); + if (entry) + home_dir = entry->pw_dir; +#endif + return (home_dir); +} + +#if !defined (O_NDELAY) +# if defined (FNDELAY) +# define O_NDELAY FNDELAY +# endif +#endif + +int +sh_unset_nodelay_mode (fd) + int fd; +{ +#if defined (HAVE_FCNTL) + int flags, bflags; + + if ((flags = fcntl (fd, F_GETFL, 0)) < 0) + return -1; + + bflags = 0; + +#ifdef O_NONBLOCK + bflags |= O_NONBLOCK; +#endif + +#ifdef O_NDELAY + bflags |= O_NDELAY; +#endif + + if (flags & bflags) + { + flags &= ~bflags; + return (fcntl (fd, F_SETFL, flags)); + } +#endif + + return 0; +} diff --git a/lib/readline/terminal.c b/lib/readline/terminal.c index ee130926..37676121 100644 --- a/lib/readline/terminal.c +++ b/lib/readline/terminal.c @@ -350,9 +350,9 @@ rl_reset_screen_size () void rl_resize_terminal () { + _rl_get_screen_size (fileno (rl_instream), 1); if (_rl_echoing_p) { - _rl_get_screen_size (fileno (rl_instream), 1); if (CUSTOM_REDISPLAY_FUNC ()) rl_forced_update_display (); else if (RL_ISSTATE(RL_STATE_REDISPLAYING) == 0) diff --git a/lib/readline/terminal.c~ b/lib/readline/terminal.c~ new file mode 100644 index 00000000..37676121 --- /dev/null +++ b/lib/readline/terminal.c~ @@ -0,0 +1,731 @@ +/* terminal.c -- controlling the terminal with termcap. */ + +/* Copyright (C) 1996-2009 Free Software Foundation, Inc. + + This file is part of the GNU Readline Library (Readline), a library + for reading lines of text with interactive input and history editing. + + Readline is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Readline is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Readline. If not, see . +*/ + +#define READLINE_LIBRARY + +#if defined (HAVE_CONFIG_H) +# include +#endif + +#include +#include "posixstat.h" +#include +#if defined (HAVE_SYS_FILE_H) +# include +#endif /* HAVE_SYS_FILE_H */ + +#if defined (HAVE_UNISTD_H) +# include +#endif /* HAVE_UNISTD_H */ + +#if defined (HAVE_STDLIB_H) +# include +#else +# include "ansi_stdlib.h" +#endif /* HAVE_STDLIB_H */ + +#if defined (HAVE_LOCALE_H) +# include +#endif + +#include + +/* System-specific feature definitions and include files. */ +#include "rldefs.h" + +#if defined (GWINSZ_IN_SYS_IOCTL) && !defined (TIOCGWINSZ) +# include +#endif /* GWINSZ_IN_SYS_IOCTL && !TIOCGWINSZ */ + +#include "rltty.h" +#include "tcap.h" + +/* Some standard library routines. */ +#include "readline.h" +#include "history.h" + +#include "rlprivate.h" +#include "rlshell.h" +#include "xmalloc.h" + +#if defined (__MINGW32__) +# include +# include + +static void _win_get_screensize PARAMS((int *, int *)); +#endif + +#if defined (__EMX__) +static void _emx_get_screensize PARAMS((int *, int *)); +#endif + +#define CUSTOM_REDISPLAY_FUNC() (rl_redisplay_function != rl_redisplay) +#define CUSTOM_INPUT_FUNC() (rl_getc_function != rl_getc) + +/* If the calling application sets this to a non-zero value, readline will + use the $LINES and $COLUMNS environment variables to set its idea of the + window size before interrogating the kernel. */ +int rl_prefer_env_winsize = 0; + +/* **************************************************************** */ +/* */ +/* Terminal and Termcap */ +/* */ +/* **************************************************************** */ + +static char *term_buffer = (char *)NULL; +static char *term_string_buffer = (char *)NULL; + +static int tcap_initialized; + +#if !defined (__linux__) +# if defined (__EMX__) || defined (NEED_EXTERN_PC) +extern +# endif /* __EMX__ || NEED_EXTERN_PC */ +char PC, *BC, *UP; +#endif /* __linux__ */ + +/* Some strings to control terminal actions. These are output by tputs (). */ +char *_rl_term_clreol; +char *_rl_term_clrpag; +char *_rl_term_cr; +char *_rl_term_backspace; +char *_rl_term_goto; +char *_rl_term_pc; + +/* Non-zero if we determine that the terminal can do character insertion. */ +int _rl_terminal_can_insert = 0; + +/* How to insert characters. */ +char *_rl_term_im; +char *_rl_term_ei; +char *_rl_term_ic; +char *_rl_term_ip; +char *_rl_term_IC; + +/* How to delete characters. */ +char *_rl_term_dc; +char *_rl_term_DC; + +char *_rl_term_forward_char; + +/* How to go up a line. */ +char *_rl_term_up; + +/* A visible bell; char if the terminal can be made to flash the screen. */ +static char *_rl_visible_bell; + +/* Non-zero means the terminal can auto-wrap lines. */ +int _rl_term_autowrap = -1; + +/* Non-zero means that this terminal has a meta key. */ +static int term_has_meta; + +/* The sequences to write to turn on and off the meta key, if this + terminal has one. */ +static char *_rl_term_mm; +static char *_rl_term_mo; + +/* The key sequences output by the arrow keys, if this terminal has any. */ +static char *_rl_term_ku; +static char *_rl_term_kd; +static char *_rl_term_kr; +static char *_rl_term_kl; + +/* How to initialize and reset the arrow keys, if this terminal has any. */ +static char *_rl_term_ks; +static char *_rl_term_ke; + +/* The key sequences sent by the Home and End keys, if any. */ +static char *_rl_term_kh; +static char *_rl_term_kH; +static char *_rl_term_at7; /* @7 */ + +/* Delete key */ +static char *_rl_term_kD; + +/* Insert key */ +static char *_rl_term_kI; + +/* Cursor control */ +static char *_rl_term_vs; /* very visible */ +static char *_rl_term_ve; /* normal */ + +static void bind_termcap_arrow_keys PARAMS((Keymap)); + +/* Variables that hold the screen dimensions, used by the display code. */ +int _rl_screenwidth, _rl_screenheight, _rl_screenchars; + +/* Non-zero means the user wants to enable the keypad. */ +int _rl_enable_keypad; + +/* Non-zero means the user wants to enable a meta key. */ +int _rl_enable_meta = 1; + +#if defined (__EMX__) +static void +_emx_get_screensize (swp, shp) + int *swp, *shp; +{ + int sz[2]; + + _scrsize (sz); + + if (swp) + *swp = sz[0]; + if (shp) + *shp = sz[1]; +} +#endif + +#if defined (__MINGW32__) +static void +_win_get_screensize (swp, shp) + int *swp, *shp; +{ + HANDLE hConOut; + CONSOLE_SCREEN_BUFFER_INFO scr; + + hConOut = GetStdHandle (STD_OUTPUT_HANDLE); + if (hConOut != INVALID_HANDLE_VALUE) + { + if (GetConsoleScreenBufferInfo (hConOut, &scr)) + { + *swp = scr.dwSize.X; + *shp = scr.srWindow.Bottom - scr.srWindow.Top + 1; + } + } +} +#endif + +/* Get readline's idea of the screen size. TTY is a file descriptor open + to the terminal. If IGNORE_ENV is true, we do not pay attention to the + values of $LINES and $COLUMNS. The tests for TERM_STRING_BUFFER being + non-null serve to check whether or not we have initialized termcap. */ +void +_rl_get_screen_size (tty, ignore_env) + int tty, ignore_env; +{ + char *ss; +#if defined (TIOCGWINSZ) + struct winsize window_size; +#endif /* TIOCGWINSZ */ + int wr, wc; + + wr = wc = -1; +#if defined (TIOCGWINSZ) + if (ioctl (tty, TIOCGWINSZ, &window_size) == 0) + { + wc = (int) window_size.ws_col; + wr = (int) window_size.ws_row; + } +#endif /* TIOCGWINSZ */ + +#if defined (__EMX__) + _emx_get_screensize (&wc, &wr); +#elif defined (__MINGW32__) + _win_get_screensize (&wc, &wr); +#endif + + if (ignore_env || rl_prefer_env_winsize == 0) + { + _rl_screenwidth = wc; + _rl_screenheight = wr; + } + else + _rl_screenwidth = _rl_screenheight = -1; + + /* Environment variable COLUMNS overrides setting of "co" if IGNORE_ENV + is unset. If we prefer the environment, check it first before + assigning the value returned by the kernel. */ + if (_rl_screenwidth <= 0) + { + if (ignore_env == 0 && (ss = sh_get_env_value ("COLUMNS"))) + _rl_screenwidth = atoi (ss); + + if (_rl_screenwidth <= 0) + _rl_screenwidth = wc; + +#if !defined (__DJGPP__) + if (_rl_screenwidth <= 0 && term_string_buffer) + _rl_screenwidth = tgetnum ("co"); +#endif + } + + /* Environment variable LINES overrides setting of "li" if IGNORE_ENV + is unset. */ + if (_rl_screenheight <= 0) + { + if (ignore_env == 0 && (ss = sh_get_env_value ("LINES"))) + _rl_screenheight = atoi (ss); + + if (_rl_screenheight <= 0) + _rl_screenheight = wr; + +#if !defined (__DJGPP__) + if (_rl_screenheight <= 0 && term_string_buffer) + _rl_screenheight = tgetnum ("li"); +#endif + } + + /* If all else fails, default to 80x24 terminal. */ + if (_rl_screenwidth <= 1) + _rl_screenwidth = 80; + + if (_rl_screenheight <= 0) + _rl_screenheight = 24; + + /* If we're being compiled as part of bash, set the environment + variables $LINES and $COLUMNS to new values. Otherwise, just + do a pair of putenv () or setenv () calls. */ + sh_set_lines_and_columns (_rl_screenheight, _rl_screenwidth); + + if (_rl_term_autowrap == 0) + _rl_screenwidth--; + + _rl_screenchars = _rl_screenwidth * _rl_screenheight; +} + +void +_rl_set_screen_size (rows, cols) + int rows, cols; +{ + if (_rl_term_autowrap == -1) + _rl_init_terminal_io (rl_terminal_name); + + if (rows > 0) + _rl_screenheight = rows; + if (cols > 0) + { + _rl_screenwidth = cols; + if (_rl_term_autowrap == 0) + _rl_screenwidth--; + } + + if (rows > 0 || cols > 0) + _rl_screenchars = _rl_screenwidth * _rl_screenheight; +} + +void +rl_set_screen_size (rows, cols) + int rows, cols; +{ + _rl_set_screen_size (rows, cols); +} + +void +rl_get_screen_size (rows, cols) + int *rows, *cols; +{ + if (rows) + *rows = _rl_screenheight; + if (cols) + *cols = _rl_screenwidth; +} + +void +rl_reset_screen_size () +{ + _rl_get_screen_size (fileno (rl_instream), 0); +} + +void +rl_resize_terminal () +{ + _rl_get_screen_size (fileno (rl_instream), 1); + if (_rl_echoing_p) + { + if (CUSTOM_REDISPLAY_FUNC ()) + rl_forced_update_display (); + else if (RL_ISSTATE(RL_STATE_REDISPLAYING) == 0) + _rl_redisplay_after_sigwinch (); + } +} + +struct _tc_string { + const char * const tc_var; + char **tc_value; +}; + +/* This should be kept sorted, just in case we decide to change the + search algorithm to something smarter. */ +static const struct _tc_string tc_strings[] = +{ + { "@7", &_rl_term_at7 }, + { "DC", &_rl_term_DC }, + { "IC", &_rl_term_IC }, + { "ce", &_rl_term_clreol }, + { "cl", &_rl_term_clrpag }, + { "cr", &_rl_term_cr }, + { "dc", &_rl_term_dc }, + { "ei", &_rl_term_ei }, + { "ic", &_rl_term_ic }, + { "im", &_rl_term_im }, + { "kD", &_rl_term_kD }, /* delete */ + { "kH", &_rl_term_kH }, /* home down ?? */ + { "kI", &_rl_term_kI }, /* insert */ + { "kd", &_rl_term_kd }, + { "ke", &_rl_term_ke }, /* end keypad mode */ + { "kh", &_rl_term_kh }, /* home */ + { "kl", &_rl_term_kl }, + { "kr", &_rl_term_kr }, + { "ks", &_rl_term_ks }, /* start keypad mode */ + { "ku", &_rl_term_ku }, + { "le", &_rl_term_backspace }, + { "mm", &_rl_term_mm }, + { "mo", &_rl_term_mo }, + { "nd", &_rl_term_forward_char }, + { "pc", &_rl_term_pc }, + { "up", &_rl_term_up }, + { "vb", &_rl_visible_bell }, + { "vs", &_rl_term_vs }, + { "ve", &_rl_term_ve }, +}; + +#define NUM_TC_STRINGS (sizeof (tc_strings) / sizeof (struct _tc_string)) + +/* Read the desired terminal capability strings into BP. The capabilities + are described in the TC_STRINGS table. */ +static void +get_term_capabilities (bp) + char **bp; +{ +#if !defined (__DJGPP__) /* XXX - doesn't DJGPP have a termcap library? */ + register int i; + + for (i = 0; i < NUM_TC_STRINGS; i++) + *(tc_strings[i].tc_value) = tgetstr ((char *)tc_strings[i].tc_var, bp); +#endif + tcap_initialized = 1; +} + +int +_rl_init_terminal_io (terminal_name) + const char *terminal_name; +{ + const char *term; + char *buffer; + int tty, tgetent_ret; + + term = terminal_name ? terminal_name : sh_get_env_value ("TERM"); + _rl_term_clrpag = _rl_term_cr = _rl_term_clreol = (char *)NULL; + tty = rl_instream ? fileno (rl_instream) : 0; + + if (term == 0) + term = "dumb"; + + /* I've separated this out for later work on not calling tgetent at all + if the calling application has supplied a custom redisplay function, + (and possibly if the application has supplied a custom input function). */ + if (CUSTOM_REDISPLAY_FUNC()) + { + tgetent_ret = -1; + } + else + { + if (term_string_buffer == 0) + term_string_buffer = (char *)xmalloc(2032); + + if (term_buffer == 0) + term_buffer = (char *)xmalloc(4080); + + buffer = term_string_buffer; + + tgetent_ret = tgetent (term_buffer, term); + } + + if (tgetent_ret <= 0) + { + FREE (term_string_buffer); + FREE (term_buffer); + buffer = term_buffer = term_string_buffer = (char *)NULL; + + _rl_term_autowrap = 0; /* used by _rl_get_screen_size */ + + /* Allow calling application to set default height and width, using + rl_set_screen_size */ + if (_rl_screenwidth <= 0 || _rl_screenheight <= 0) + { +#if defined (__EMX__) + _emx_get_screensize (&_rl_screenwidth, &_rl_screenheight); + _rl_screenwidth--; +#else /* !__EMX__ */ + _rl_get_screen_size (tty, 0); +#endif /* !__EMX__ */ + } + + /* Defaults. */ + if (_rl_screenwidth <= 0 || _rl_screenheight <= 0) + { + _rl_screenwidth = 79; + _rl_screenheight = 24; + } + + /* Everything below here is used by the redisplay code (tputs). */ + _rl_screenchars = _rl_screenwidth * _rl_screenheight; + _rl_term_cr = "\r"; + _rl_term_im = _rl_term_ei = _rl_term_ic = _rl_term_IC = (char *)NULL; + _rl_term_up = _rl_term_dc = _rl_term_DC = _rl_visible_bell = (char *)NULL; + _rl_term_ku = _rl_term_kd = _rl_term_kl = _rl_term_kr = (char *)NULL; + _rl_term_kh = _rl_term_kH = _rl_term_kI = _rl_term_kD = (char *)NULL; + _rl_term_ks = _rl_term_ke = _rl_term_at7 = (char *)NULL; + _rl_term_mm = _rl_term_mo = (char *)NULL; + _rl_term_ve = _rl_term_vs = (char *)NULL; + _rl_term_forward_char = (char *)NULL; + _rl_terminal_can_insert = term_has_meta = 0; + + /* Reasonable defaults for tgoto(). Readline currently only uses + tgoto if _rl_term_IC or _rl_term_DC is defined, but just in case we + change that later... */ + PC = '\0'; + BC = _rl_term_backspace = "\b"; + UP = _rl_term_up; + + return 0; + } + + get_term_capabilities (&buffer); + + /* Set up the variables that the termcap library expects the application + to provide. */ + PC = _rl_term_pc ? *_rl_term_pc : 0; + BC = _rl_term_backspace; + UP = _rl_term_up; + + if (!_rl_term_cr) + _rl_term_cr = "\r"; + + _rl_term_autowrap = tgetflag ("am") && tgetflag ("xn"); + + /* Allow calling application to set default height and width, using + rl_set_screen_size */ + if (_rl_screenwidth <= 0 || _rl_screenheight <= 0) + _rl_get_screen_size (tty, 0); + + /* "An application program can assume that the terminal can do + character insertion if *any one of* the capabilities `IC', + `im', `ic' or `ip' is provided." But we can't do anything if + only `ip' is provided, so... */ + _rl_terminal_can_insert = (_rl_term_IC || _rl_term_im || _rl_term_ic); + + /* Check to see if this terminal has a meta key and clear the capability + variables if there is none. */ + term_has_meta = tgetflag ("km") != 0; + if (term_has_meta == 0) + _rl_term_mm = _rl_term_mo = (char *)NULL; + + /* Attempt to find and bind the arrow keys. Do not override already + bound keys in an overzealous attempt, however. */ + + bind_termcap_arrow_keys (emacs_standard_keymap); + +#if defined (VI_MODE) + bind_termcap_arrow_keys (vi_movement_keymap); + bind_termcap_arrow_keys (vi_insertion_keymap); +#endif /* VI_MODE */ + + return 0; +} + +/* Bind the arrow key sequences from the termcap description in MAP. */ +static void +bind_termcap_arrow_keys (map) + Keymap map; +{ + Keymap xkeymap; + + xkeymap = _rl_keymap; + _rl_keymap = map; + + rl_bind_keyseq_if_unbound (_rl_term_ku, rl_get_previous_history); + rl_bind_keyseq_if_unbound (_rl_term_kd, rl_get_next_history); + rl_bind_keyseq_if_unbound (_rl_term_kr, rl_forward_char); + rl_bind_keyseq_if_unbound (_rl_term_kl, rl_backward_char); + + rl_bind_keyseq_if_unbound (_rl_term_kh, rl_beg_of_line); /* Home */ + rl_bind_keyseq_if_unbound (_rl_term_at7, rl_end_of_line); /* End */ + + rl_bind_keyseq_if_unbound (_rl_term_kD, rl_delete); + + _rl_keymap = xkeymap; +} + +char * +rl_get_termcap (cap) + const char *cap; +{ + register int i; + + if (tcap_initialized == 0) + return ((char *)NULL); + for (i = 0; i < NUM_TC_STRINGS; i++) + { + if (tc_strings[i].tc_var[0] == cap[0] && strcmp (tc_strings[i].tc_var, cap) == 0) + return *(tc_strings[i].tc_value); + } + return ((char *)NULL); +} + +/* Re-initialize the terminal considering that the TERM/TERMCAP variable + has changed. */ +int +rl_reset_terminal (terminal_name) + const char *terminal_name; +{ + _rl_screenwidth = _rl_screenheight = 0; + _rl_init_terminal_io (terminal_name); + return 0; +} + +/* A function for the use of tputs () */ +#ifdef _MINIX +void +_rl_output_character_function (c) + int c; +{ + putc (c, _rl_out_stream); +} +#else /* !_MINIX */ +int +_rl_output_character_function (c) + int c; +{ + return putc (c, _rl_out_stream); +} +#endif /* !_MINIX */ + +/* Write COUNT characters from STRING to the output stream. */ +void +_rl_output_some_chars (string, count) + const char *string; + int count; +{ + fwrite (string, 1, count, _rl_out_stream); +} + +/* Move the cursor back. */ +int +_rl_backspace (count) + int count; +{ + register int i; + + if (_rl_term_backspace) + for (i = 0; i < count; i++) + tputs (_rl_term_backspace, 1, _rl_output_character_function); + else + for (i = 0; i < count; i++) + putc ('\b', _rl_out_stream); + return 0; +} + +/* Move to the start of the next line. */ +int +rl_crlf () +{ +#if defined (NEW_TTY_DRIVER) || defined (__MINT__) + if (_rl_term_cr) + tputs (_rl_term_cr, 1, _rl_output_character_function); +#endif /* NEW_TTY_DRIVER || __MINT__ */ + putc ('\n', _rl_out_stream); + return 0; +} + +/* Ring the terminal bell. */ +int +rl_ding () +{ + if (_rl_echoing_p) + { + switch (_rl_bell_preference) + { + case NO_BELL: + default: + break; + case VISIBLE_BELL: + if (_rl_visible_bell) + { + tputs (_rl_visible_bell, 1, _rl_output_character_function); + break; + } + /* FALLTHROUGH */ + case AUDIBLE_BELL: + fprintf (stderr, "\007"); + fflush (stderr); + break; + } + return (0); + } + return (-1); +} + +/* **************************************************************** */ +/* */ +/* Controlling the Meta Key and Keypad */ +/* */ +/* **************************************************************** */ + +void +_rl_enable_meta_key () +{ +#if !defined (__DJGPP__) + if (term_has_meta && _rl_term_mm) + tputs (_rl_term_mm, 1, _rl_output_character_function); +#endif +} + +void +_rl_control_keypad (on) + int on; +{ +#if !defined (__DJGPP__) + if (on && _rl_term_ks) + tputs (_rl_term_ks, 1, _rl_output_character_function); + else if (!on && _rl_term_ke) + tputs (_rl_term_ke, 1, _rl_output_character_function); +#endif +} + +/* **************************************************************** */ +/* */ +/* Controlling the Cursor */ +/* */ +/* **************************************************************** */ + +/* Set the cursor appropriately depending on IM, which is one of the + insert modes (insert or overwrite). Insert mode gets the normal + cursor. Overwrite mode gets a very visible cursor. Only does + anything if we have both capabilities. */ +void +_rl_set_cursor (im, force) + int im, force; +{ + if (_rl_term_ve && _rl_term_vs) + { + if (force || im != rl_insert_mode) + { + if (im == RL_IM_OVERWRITE) + tputs (_rl_term_vs, 1, _rl_output_character_function); + else + tputs (_rl_term_ve, 1, _rl_output_character_function); + } + } +} diff --git a/lib/readline/text.c b/lib/readline/text.c index 6f4e2316..4c90e651 100644 --- a/lib/readline/text.c +++ b/lib/readline/text.c @@ -150,7 +150,7 @@ rl_delete_text (from, to) if (_rl_doing_an_undo == 0) rl_add_undo (UNDO_DELETE, from, to, text); else - free (text); + xfree (text); rl_end -= diff; rl_line_buffer[rl_end] = '\0'; @@ -752,7 +752,7 @@ _rl_insert_char (count, c) string[i] = '\0'; rl_insert_text (string); - free (string); + xfree (string); return 0; } @@ -779,7 +779,7 @@ _rl_insert_char (count, c) count -= decreaser; } - free (string); + xfree (string); incoming_length = 0; stored_count = 0; #else /* !HANDLE_MULTIBYTE */ @@ -1407,8 +1407,8 @@ rl_transpose_words (count, key) /* I think that does it. */ rl_end_undo_group (); - free (word1); - free (word2); + xfree (word1); + xfree (word2); return 0; } @@ -1467,7 +1467,7 @@ rl_transpose_chars (count, key) rl_end_undo_group (); #if defined (HANDLE_MULTIBYTE) - free (dummy); + xfree (dummy); #endif return 0; diff --git a/lib/readline/text.c~ b/lib/readline/text.c~ index a1f8e5c4..6f4e2316 100644 --- a/lib/readline/text.c~ +++ b/lib/readline/text.c~ @@ -1,6 +1,6 @@ /* text.c -- text handling commands for readline. */ -/* Copyright (C) 1987-2009 Free Software Foundation, Inc. +/* Copyright (C) 1987-2010 Free Software Foundation, Inc. This file is part of the GNU Readline Library (Readline), a library for reading lines of text with interactive input and history editing. diff --git a/lib/readline/vi_mode.c b/lib/readline/vi_mode.c index a02a0d8a..d6c2ea8f 100644 --- a/lib/readline/vi_mode.c +++ b/lib/readline/vi_mode.c @@ -1011,7 +1011,7 @@ static void _rl_mvcxt_dispose (m) _rl_vimotion_cxt *m; { - free (m); + xfree (m); } static int diff --git a/lib/readline/vi_mode.c~ b/lib/readline/vi_mode.c~ index 5e8781ea..a02a0d8a 100644 --- a/lib/readline/vi_mode.c~ +++ b/lib/readline/vi_mode.c~ @@ -1113,6 +1113,7 @@ rl_domove_read_callback (m) return (0); } #if defined (READLINE_CALLBACKS) + /* XXX - these need to handle rl_universal_argument bindings */ /* Reading vi motion char continuing numeric argument */ else if (_rl_digit_p (c) && RL_ISSTATE (RL_STATE_CALLBACK) && RL_VIMOVENUMARG()) { @@ -1146,6 +1147,7 @@ rl_domove_read_callback (m) else { RL_UNSETSTATE (RL_STATE_VIMOTION); + RL_UNSETSTATE (RL_STATE_NUMERICARG); return (1); } } diff --git a/lib/readline/xfree.c b/lib/readline/xfree.c new file mode 100644 index 00000000..37a81e6c --- /dev/null +++ b/lib/readline/xfree.c @@ -0,0 +1,50 @@ +/* xfree.c -- safe version of free that ignores attempts to free NUL */ + +/* Copyright (C) 1991-2010 Free Software Foundation, Inc. + + This file is part of the GNU Readline Library (Readline), a library + for reading lines of text with interactive input and history editing. + + Readline is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Readline is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Readline. If not, see . +*/ + +#define READLINE_LIBRARY + +#if defined (HAVE_CONFIG_H) +#include +#endif + +#if defined (HAVE_STDLIB_H) +# include +#else +# include "ansi_stdlib.h" +#endif /* HAVE_STDLIB_H */ + +#include "xmalloc.h" + +/* **************************************************************** */ +/* */ +/* Memory Deallocation. */ +/* */ +/* **************************************************************** */ + +/* Use this as the function to call when adding unwind protects so we + don't need to know what free() returns. */ +void +xfree (string) + PTR_T string; +{ + if (string) + free (string); +} diff --git a/lib/readline/xfree.c~ b/lib/readline/xfree.c~ new file mode 100644 index 00000000..97d8f2e5 --- /dev/null +++ b/lib/readline/xfree.c~ @@ -0,0 +1,89 @@ +/* xmalloc.c -- safe versions of malloc and realloc */ + +/* Copyright (C) 1991-2009 Free Software Foundation, Inc. + + This file is part of the GNU Readline Library (Readline), a library + for reading lines of text with interactive input and history editing. + + Readline is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Readline is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Readline. If not, see . +*/ + +#define READLINE_LIBRARY + +#if defined (HAVE_CONFIG_H) +#include +#endif + +#include + +#if defined (HAVE_STDLIB_H) +# include +#else +# include "ansi_stdlib.h" +#endif /* HAVE_STDLIB_H */ + +#include "xmalloc.h" + +/* **************************************************************** */ +/* */ +/* Memory Allocation and Deallocation. */ +/* */ +/* **************************************************************** */ + +static void +memory_error_and_abort (fname) + char *fname; +{ + fprintf (stderr, "%s: out of virtual memory\n", fname); + exit (2); +} + +/* Return a pointer to free()able block of memory large enough + to hold BYTES number of bytes. If the memory cannot be allocated, + print an error message and abort. */ +PTR_T +xmalloc (bytes) + size_t bytes; +{ + PTR_T temp; + + temp = malloc (bytes); + if (temp == 0) + memory_error_and_abort ("xmalloc"); + return (temp); +} + +PTR_T +xrealloc (pointer, bytes) + PTR_T pointer; + size_t bytes; +{ + PTR_T temp; + + temp = pointer ? realloc (pointer, bytes) : malloc (bytes); + + if (temp == 0) + memory_error_and_abort ("xrealloc"); + return (temp); +} + +/* Use this as the function to call when adding unwind protects so we + don't need to know what free() returns. */ +void +xfree (string) + PTR_T string; +{ + if (string) + free (string); +} diff --git a/lib/readline/xmalloc.c b/lib/readline/xmalloc.c index 97d8f2e5..c77d7634 100644 --- a/lib/readline/xmalloc.c +++ b/lib/readline/xmalloc.c @@ -77,13 +77,3 @@ xrealloc (pointer, bytes) memory_error_and_abort ("xrealloc"); return (temp); } - -/* Use this as the function to call when adding unwind protects so we - don't need to know what free() returns. */ -void -xfree (string) - PTR_T string; -{ - if (string) - free (string); -} diff --git a/lib/readline/xmalloc.c~ b/lib/readline/xmalloc.c~ new file mode 100644 index 00000000..97d8f2e5 --- /dev/null +++ b/lib/readline/xmalloc.c~ @@ -0,0 +1,89 @@ +/* xmalloc.c -- safe versions of malloc and realloc */ + +/* Copyright (C) 1991-2009 Free Software Foundation, Inc. + + This file is part of the GNU Readline Library (Readline), a library + for reading lines of text with interactive input and history editing. + + Readline is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Readline is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Readline. If not, see . +*/ + +#define READLINE_LIBRARY + +#if defined (HAVE_CONFIG_H) +#include +#endif + +#include + +#if defined (HAVE_STDLIB_H) +# include +#else +# include "ansi_stdlib.h" +#endif /* HAVE_STDLIB_H */ + +#include "xmalloc.h" + +/* **************************************************************** */ +/* */ +/* Memory Allocation and Deallocation. */ +/* */ +/* **************************************************************** */ + +static void +memory_error_and_abort (fname) + char *fname; +{ + fprintf (stderr, "%s: out of virtual memory\n", fname); + exit (2); +} + +/* Return a pointer to free()able block of memory large enough + to hold BYTES number of bytes. If the memory cannot be allocated, + print an error message and abort. */ +PTR_T +xmalloc (bytes) + size_t bytes; +{ + PTR_T temp; + + temp = malloc (bytes); + if (temp == 0) + memory_error_and_abort ("xmalloc"); + return (temp); +} + +PTR_T +xrealloc (pointer, bytes) + PTR_T pointer; + size_t bytes; +{ + PTR_T temp; + + temp = pointer ? realloc (pointer, bytes) : malloc (bytes); + + if (temp == 0) + memory_error_and_abort ("xrealloc"); + return (temp); +} + +/* Use this as the function to call when adding unwind protects so we + don't need to know what free() returns. */ +void +xfree (string) + PTR_T string; +{ + if (string) + free (string); +} diff --git a/lib/tilde/tilde.c b/lib/tilde/tilde.c index 088ff154..1c53a457 100644 --- a/lib/tilde/tilde.c +++ b/lib/tilde/tilde.c @@ -378,7 +378,7 @@ tilde_expand_word (filename) { dirname = glue_prefix_and_suffix (expansion, filename, user_len); xfree (username); - free (expansion); + xfree (expansion); return (dirname); } } @@ -401,7 +401,7 @@ tilde_expand_word (filename) if (expansion) { dirname = glue_prefix_and_suffix (expansion, filename, user_len); - free (expansion); + xfree (expansion); } } /* If we don't have a failure hook, or if the failure hook did not diff --git a/lib/tilde/tilde.c~ b/lib/tilde/tilde.c~ new file mode 100644 index 00000000..088ff154 --- /dev/null +++ b/lib/tilde/tilde.c~ @@ -0,0 +1,502 @@ +/* tilde.c -- Tilde expansion code (~/foo := $HOME/foo). */ + +/* Copyright (C) 1988-2009 Free Software Foundation, Inc. + + This file is part of the GNU Readline Library (Readline), a library + for reading lines of text with interactive input and history editing. + + Readline is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Readline is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Readline. If not, see . +*/ + +#if defined (HAVE_CONFIG_H) +# include +#endif + +#if defined (HAVE_UNISTD_H) +# ifdef _MINIX +# include +# endif +# include +#endif + +#if defined (HAVE_STRING_H) +# include +#else /* !HAVE_STRING_H */ +# include +#endif /* !HAVE_STRING_H */ + +#if defined (HAVE_STDLIB_H) +# include +#else +# include "ansi_stdlib.h" +#endif /* HAVE_STDLIB_H */ + +#include +#if defined (HAVE_PWD_H) +#include +#endif + +#include "tilde.h" + +#if defined (TEST) || defined (STATIC_MALLOC) +static void *xmalloc (), *xrealloc (); +#else +# include "xmalloc.h" +#endif /* TEST || STATIC_MALLOC */ + +#if !defined (HAVE_GETPW_DECLS) +# if defined (HAVE_GETPWUID) +extern struct passwd *getpwuid PARAMS((uid_t)); +# endif +# if defined (HAVE_GETPWNAM) +extern struct passwd *getpwnam PARAMS((const char *)); +# endif +#endif /* !HAVE_GETPW_DECLS */ + +#if !defined (savestring) +#define savestring(x) strcpy ((char *)xmalloc (1 + strlen (x)), (x)) +#endif /* !savestring */ + +#if !defined (NULL) +# if defined (__STDC__) +# define NULL ((void *) 0) +# else +# define NULL 0x0 +# endif /* !__STDC__ */ +#endif /* !NULL */ + +/* If being compiled as part of bash, these will be satisfied from + variables.o. If being compiled as part of readline, they will + be satisfied from shell.o. */ +extern char *sh_get_home_dir PARAMS((void)); +extern char *sh_get_env_value PARAMS((const char *)); + +/* The default value of tilde_additional_prefixes. This is set to + whitespace preceding a tilde so that simple programs which do not + perform any word separation get desired behaviour. */ +static const char *default_prefixes[] = + { " ~", "\t~", (const char *)NULL }; + +/* The default value of tilde_additional_suffixes. This is set to + whitespace or newline so that simple programs which do not + perform any word separation get desired behaviour. */ +static const char *default_suffixes[] = + { " ", "\n", (const char *)NULL }; + +/* If non-null, this contains the address of a function that the application + wants called before trying the standard tilde expansions. The function + is called with the text sans tilde, and returns a malloc()'ed string + which is the expansion, or a NULL pointer if the expansion fails. */ +tilde_hook_func_t *tilde_expansion_preexpansion_hook = (tilde_hook_func_t *)NULL; + +/* If non-null, this contains the address of a function to call if the + standard meaning for expanding a tilde fails. The function is called + with the text (sans tilde, as in "foo"), and returns a malloc()'ed string + which is the expansion, or a NULL pointer if there is no expansion. */ +tilde_hook_func_t *tilde_expansion_failure_hook = (tilde_hook_func_t *)NULL; + +/* When non-null, this is a NULL terminated array of strings which + are duplicates for a tilde prefix. Bash uses this to expand + `=~' and `:~'. */ +char **tilde_additional_prefixes = (char **)default_prefixes; + +/* When non-null, this is a NULL terminated array of strings which match + the end of a username, instead of just "/". Bash sets this to + `:' and `=~'. */ +char **tilde_additional_suffixes = (char **)default_suffixes; + +static int tilde_find_prefix PARAMS((const char *, int *)); +static int tilde_find_suffix PARAMS((const char *)); +static char *isolate_tilde_prefix PARAMS((const char *, int *)); +static char *glue_prefix_and_suffix PARAMS((char *, const char *, int)); + +/* Find the start of a tilde expansion in STRING, and return the index of + the tilde which starts the expansion. Place the length of the text + which identified this tilde starter in LEN, excluding the tilde itself. */ +static int +tilde_find_prefix (string, len) + const char *string; + int *len; +{ + register int i, j, string_len; + register char **prefixes; + + prefixes = tilde_additional_prefixes; + + string_len = strlen (string); + *len = 0; + + if (*string == '\0' || *string == '~') + return (0); + + if (prefixes) + { + for (i = 0; i < string_len; i++) + { + for (j = 0; prefixes[j]; j++) + { + if (strncmp (string + i, prefixes[j], strlen (prefixes[j])) == 0) + { + *len = strlen (prefixes[j]) - 1; + return (i + *len); + } + } + } + } + return (string_len); +} + +/* Find the end of a tilde expansion in STRING, and return the index of + the character which ends the tilde definition. */ +static int +tilde_find_suffix (string) + const char *string; +{ + register int i, j, string_len; + register char **suffixes; + + suffixes = tilde_additional_suffixes; + string_len = strlen (string); + + for (i = 0; i < string_len; i++) + { +#if defined (__MSDOS__) + if (string[i] == '/' || string[i] == '\\' /* || !string[i] */) +#else + if (string[i] == '/' /* || !string[i] */) +#endif + break; + + for (j = 0; suffixes && suffixes[j]; j++) + { + if (strncmp (string + i, suffixes[j], strlen (suffixes[j])) == 0) + return (i); + } + } + return (i); +} + +/* Return a new string which is the result of tilde expanding STRING. */ +char * +tilde_expand (string) + const char *string; +{ + char *result; + int result_size, result_index; + + result_index = result_size = 0; + if (result = strchr (string, '~')) + result = (char *)xmalloc (result_size = (strlen (string) + 16)); + else + result = (char *)xmalloc (result_size = (strlen (string) + 1)); + + /* Scan through STRING expanding tildes as we come to them. */ + while (1) + { + register int start, end; + char *tilde_word, *expansion; + int len; + + /* Make START point to the tilde which starts the expansion. */ + start = tilde_find_prefix (string, &len); + + /* Copy the skipped text into the result. */ + if ((result_index + start + 1) > result_size) + result = (char *)xrealloc (result, 1 + (result_size += (start + 20))); + + strncpy (result + result_index, string, start); + result_index += start; + + /* Advance STRING to the starting tilde. */ + string += start; + + /* Make END be the index of one after the last character of the + username. */ + end = tilde_find_suffix (string); + + /* If both START and END are zero, we are all done. */ + if (!start && !end) + break; + + /* Expand the entire tilde word, and copy it into RESULT. */ + tilde_word = (char *)xmalloc (1 + end); + strncpy (tilde_word, string, end); + tilde_word[end] = '\0'; + string += end; + + expansion = tilde_expand_word (tilde_word); + xfree (tilde_word); + + len = strlen (expansion); +#ifdef __CYGWIN__ + /* Fix for Cygwin to prevent ~user/xxx from expanding to //xxx when + $HOME for `user' is /. On cygwin, // denotes a network drive. */ + if (len > 1 || *expansion != '/' || *string != '/') +#endif + { + if ((result_index + len + 1) > result_size) + result = (char *)xrealloc (result, 1 + (result_size += (len + 20))); + + strcpy (result + result_index, expansion); + result_index += len; + } + xfree (expansion); + } + + result[result_index] = '\0'; + + return (result); +} + +/* Take FNAME and return the tilde prefix we want expanded. If LENP is + non-null, the index of the end of the prefix into FNAME is returned in + the location it points to. */ +static char * +isolate_tilde_prefix (fname, lenp) + const char *fname; + int *lenp; +{ + char *ret; + int i; + + ret = (char *)xmalloc (strlen (fname)); +#if defined (__MSDOS__) + for (i = 1; fname[i] && fname[i] != '/' && fname[i] != '\\'; i++) +#else + for (i = 1; fname[i] && fname[i] != '/'; i++) +#endif + ret[i - 1] = fname[i]; + ret[i - 1] = '\0'; + if (lenp) + *lenp = i; + return ret; +} + +#if 0 +/* Public function to scan a string (FNAME) beginning with a tilde and find + the portion of the string that should be passed to the tilde expansion + function. Right now, it just calls tilde_find_suffix and allocates new + memory, but it can be expanded to do different things later. */ +char * +tilde_find_word (fname, flags, lenp) + const char *fname; + int flags, *lenp; +{ + int x; + char *r; + + x = tilde_find_suffix (fname); + if (x == 0) + { + r = savestring (fname); + if (lenp) + *lenp = 0; + } + else + { + r = (char *)xmalloc (1 + x); + strncpy (r, fname, x); + r[x] = '\0'; + if (lenp) + *lenp = x; + } + + return r; +} +#endif + +/* Return a string that is PREFIX concatenated with SUFFIX starting at + SUFFIND. */ +static char * +glue_prefix_and_suffix (prefix, suffix, suffind) + char *prefix; + const char *suffix; + int suffind; +{ + char *ret; + int plen, slen; + + plen = (prefix && *prefix) ? strlen (prefix) : 0; + slen = strlen (suffix + suffind); + ret = (char *)xmalloc (plen + slen + 1); + if (plen) + strcpy (ret, prefix); + strcpy (ret + plen, suffix + suffind); + return ret; +} + +/* Do the work of tilde expansion on FILENAME. FILENAME starts with a + tilde. If there is no expansion, call tilde_expansion_failure_hook. + This always returns a newly-allocated string, never static storage. */ +char * +tilde_expand_word (filename) + const char *filename; +{ + char *dirname, *expansion, *username; + int user_len; + struct passwd *user_entry; + + if (filename == 0) + return ((char *)NULL); + + if (*filename != '~') + return (savestring (filename)); + + /* A leading `~/' or a bare `~' is *always* translated to the value of + $HOME or the home directory of the current user, regardless of any + preexpansion hook. */ + if (filename[1] == '\0' || filename[1] == '/') + { + /* Prefix $HOME to the rest of the string. */ + expansion = sh_get_env_value ("HOME"); + + /* If there is no HOME variable, look up the directory in + the password database. */ + if (expansion == 0) + expansion = sh_get_home_dir (); + + return (glue_prefix_and_suffix (expansion, filename, 1)); + } + + username = isolate_tilde_prefix (filename, &user_len); + + if (tilde_expansion_preexpansion_hook) + { + expansion = (*tilde_expansion_preexpansion_hook) (username); + if (expansion) + { + dirname = glue_prefix_and_suffix (expansion, filename, user_len); + xfree (username); + free (expansion); + return (dirname); + } + } + + /* No preexpansion hook, or the preexpansion hook failed. Look in the + password database. */ + dirname = (char *)NULL; +#if defined (HAVE_GETPWNAM) + user_entry = getpwnam (username); +#else + user_entry = 0; +#endif + if (user_entry == 0) + { + /* If the calling program has a special syntax for expanding tildes, + and we couldn't find a standard expansion, then let them try. */ + if (tilde_expansion_failure_hook) + { + expansion = (*tilde_expansion_failure_hook) (username); + if (expansion) + { + dirname = glue_prefix_and_suffix (expansion, filename, user_len); + free (expansion); + } + } + /* If we don't have a failure hook, or if the failure hook did not + expand the tilde, return a copy of what we were passed. */ + if (dirname == 0) + dirname = savestring (filename); + } +#if defined (HAVE_GETPWENT) + else + dirname = glue_prefix_and_suffix (user_entry->pw_dir, filename, user_len); +#endif + + xfree (username); +#if defined (HAVE_GETPWENT) + endpwent (); +#endif + return (dirname); +} + + +#if defined (TEST) +#undef NULL +#include + +main (argc, argv) + int argc; + char **argv; +{ + char *result, line[512]; + int done = 0; + + while (!done) + { + printf ("~expand: "); + fflush (stdout); + + if (!gets (line)) + strcpy (line, "done"); + + if ((strcmp (line, "done") == 0) || + (strcmp (line, "quit") == 0) || + (strcmp (line, "exit") == 0)) + { + done = 1; + break; + } + + result = tilde_expand (line); + printf (" --> %s\n", result); + free (result); + } + exit (0); +} + +static void memory_error_and_abort (); + +static void * +xmalloc (bytes) + size_t bytes; +{ + void *temp = (char *)malloc (bytes); + + if (!temp) + memory_error_and_abort (); + return (temp); +} + +static void * +xrealloc (pointer, bytes) + void *pointer; + int bytes; +{ + void *temp; + + if (!pointer) + temp = malloc (bytes); + else + temp = realloc (pointer, bytes); + + if (!temp) + memory_error_and_abort (); + + return (temp); +} + +static void +memory_error_and_abort () +{ + fprintf (stderr, "readline: out of virtual memory\n"); + abort (); +} + +/* + * Local variables: + * compile-command: "gcc -g -DTEST -o tilde tilde.c" + * end: + */ +#endif /* TEST */ diff --git a/parse.y b/parse.y index 1b7f14ab..fdea495f 100644 --- a/parse.y +++ b/parse.y @@ -4801,6 +4801,8 @@ reserved_word_acceptable (toksym) if (last_read_token == WORD && token_before_that == COPROC) return 1; #endif + if (last_read_token == WORD && token_before_that == FUNCTION) + return 1; return 0; } } diff --git a/tests/histexp.tests b/tests/histexp.tests index 721208cb..dccbfe0c 100644 --- a/tests/histexp.tests +++ b/tests/histexp.tests @@ -120,5 +120,5 @@ var2=var1 echo ${!var2} # Bash-2.01[.1] fails this test -- it attempts history expansion after the -# history_expansion_char +# history_comment_char echo ok 3 # !1200 diff --git a/tests/histexp.tests~ b/tests/histexp.tests~ new file mode 100644 index 00000000..a53e7984 --- /dev/null +++ b/tests/histexp.tests~ @@ -0,0 +1,126 @@ +LC_ALL=C +LANG=C +trap 'rm /tmp/newhistory' 0 + +file=bax +histchars='!^#' # make sure history comment char is set correctly + +unset HISTFILESIZE + +history -c + +HISTFILE=history.list +HISTCONTROL=ignoreboth +HISTIGNORE='&:#*:history*:fc*' +# we will end up exercising the history stifling code as a result +HISTSIZE=32 + +shopt -s cmdhist +set -o history + +history -p '!!' + +# this should result in a failed history expansion error +history -p '!!:z' + +history + +HISTFILE=/tmp/newhistory +history -a + +history -w + +history -s "echo line 2 for history" +history +history -p '!e' +history -p '!!' + +set -H +!! +!e + +history + +echo a b c d e +!?ch? +!-2 +^2^8 + +!2 + +# we're selecting /bin/sh -c ...; we want `sh' +echo !-1:0:t +# we're selecting /bin/sh -c ...; we want `/bin' +echo !-2:0:h +# we're selecting `echo a b c d e'; we want `e' +echo !?d?:5 + +echo a b c d e +echo !-1:2-$ +echo !-2:2-4 +echo !-2:3* +echo !!:* + +echo !?a?:2- + +echo file.c +echo !!:$:r +echo !-2:$:e +echo !-3:$:r:q + +echo $file.c +echo !!:$:r +echo !-2:^:e +echo !-3:$:r:q + +echo a b c d e +echo !!:1-$:x +echo !-2:1-$:q + +echo foo.c foo.o foo.html foo.h +!!:s/foo/bar/ +!-2:gs/foo/bar/ +!!:gs/bar/x&/ +!-2:g& + +# make sure we can use any delimiter in the substitution, not just `/' +!!:gs+bar+whix+ + +!!:p + +# wow +echo !?.o?:%:r:q + +!!:0 !?.h?:%:q +!!:-$ +!:-$ + +history + +# make sure single quotes inhibit history expansion +echo '!!' + +# make sure backslashes can quote the history expansion character +echo \!\! + +# but other expansions on the line should still be processed + +echo '!!' !!:* +history -c +unset HISTFILE + +# make sure that the special bash cases are not history expanded +case p in +[!A-Z]) echo ok 1;; +esac + +var1='ok 2' +var2=var1 + +echo ${!var2} + +echo & echo $!; echo after + +# Bash-2.01[.1] fails this test -- it attempts history expansion after the +# history_comment_char +echo ok 3 # !1200